diff --git a/README.md b/README.md index 3489537b2b197fba113a8933ede71aa5b48f5b32..a329ee63cd79f4e36a9c1bc9dbd5b2ebcd84a2fe 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,15 @@ --- title: LSTM Forecaster -emoji: 📉 -colorFrom: pink -colorTo: blue +emoji: ⚡ +colorFrom: purple +colorTo: red sdk: gradio sdk_version: 4.39.0 -app_file: app.py +app_file: gradio_ui.py pinned: false --- -Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference +### On cloning the repo +1. git remote add space https://huggingface.co/spaces/nkapila6/lstm-forecaster +2. git push --force space main + diff --git a/classes/ElecDatasetClass.py b/classes/ElecDatasetClass.py new file mode 100644 index 0000000000000000000000000000000000000000..9311e25b6ee50832b644f855bf4395fa51f5edad --- /dev/null +++ b/classes/ElecDatasetClass.py @@ -0,0 +1,13 @@ +import torch +from torch.utils.data import Dataset + +class ElecDataset(Dataset): + def __init__(self, sequences, targets): + self.sequences = sequences + self.targets = targets + + def __len__(self): + return len(self.sequences) + + def __getitem__(self, idx): + return torch.tensor(self.sequences[idx], dtype=torch.float32), torch.tensor(self.targets[idx], dtype=torch.float32) \ No newline at end of file diff --git a/classes/LSTMModelClass.py b/classes/LSTMModelClass.py new file mode 100644 index 0000000000000000000000000000000000000000..30e80982b85eceed5fc79759918f0d51370a89e3 --- /dev/null +++ b/classes/LSTMModelClass.py @@ -0,0 +1,13 @@ +import torch.nn as nn +import torch + +class LSTMModel(nn.Module): + def __init__(self, input_size=1, hidden_size=50, num_layers=1, batch_first=True): + super().__init__() + self.lstm = nn.LSTM(input_size=input_size, hidden_size=hidden_size, num_layers=num_layers, batch_first=batch_first) + self.linear = nn.Linear(hidden_size, 1) + + def forward(self, x): + x, _ = self.lstm(x) + x = self.linear(x[:, -1, :]) # Use the output of the last time step + return x \ No newline at end of file diff --git a/classes/__pycache__/ElecDatasetClass.cpython-310.pyc b/classes/__pycache__/ElecDatasetClass.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..31f67e5be561c9b331e43551c75f752a07d5eb25 Binary files /dev/null and b/classes/__pycache__/ElecDatasetClass.cpython-310.pyc differ diff --git a/classes/__pycache__/LSTMModelClass.cpython-310.pyc b/classes/__pycache__/LSTMModelClass.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..91eee85e0fdb3e52ec899394416e339a9c028cf4 Binary files /dev/null and b/classes/__pycache__/LSTMModelClass.cpython-310.pyc differ diff --git a/datasets/README.md b/datasets/README.md new file mode 100644 index 0000000000000000000000000000000000000000..ce26c6c37860d4680cefb4a317a2218e9b7bf856 --- /dev/null +++ b/datasets/README.md @@ -0,0 +1,9 @@ +# List of datasets + +- Measured data: + - electricity.csv (saved on-device and not pushed to Github since size is large): fetched from [Building Data Genome Project 2](https://github.com/buds-lab/building-data-genome-project-2/tree/master) + - rsfmeasureddata2011.csv: fetched from [OEDI](https://data.openei.org/submissions/358) + +- Simulated data: + - GA_baseline_basic_metadata_and_annual_results.csv: metadata from Comstock focusing on GA (Atlanta) + - GA_filtered_building_list.csv: filtered list from baseline focusing on certain parameters diff --git a/datasets/comstock/GA_baseline_basic_metadata_and_annual_results.csv b/datasets/comstock/GA_baseline_basic_metadata_and_annual_results.csv new file mode 100644 index 0000000000000000000000000000000000000000..58cec6f1f007d49de09c35ccd1aa9983c346b6fa --- /dev/null +++ b/datasets/comstock/GA_baseline_basic_metadata_and_annual_results.csv @@ -0,0 +1,11366 @@ +bldg_id,in.cluster_id,in.cluster_name,in.nhgis_tract_gisjoin,in.energy_code_followed_during_last_hvac_replacement,in.interior_lighting_generation,in.floor_area_category,in.service_water_heating_fuel,out.utility_bills.electricity_bill_mean..usd,out.utility_bills.fuel_oil_bill..usd,out.utility_bills.natural_gas_bill..usd,out.utility_bills.propane_bill..usd,weight,in.comstock_building_type_group,in.hvac_category,in.vintage,calc.segment,calc.weighted.sqft,calc.weighted.district_cooling.total.energy_consumption..tbtu,calc.weighted.district_heating.total.energy_consumption..tbtu,calc.weighted.electricity.total.energy_consumption..tbtu,calc.weighted.natural_gas.total.energy_consumption..tbtu,calc.weighted.other_fuel.total.energy_consumption..tbtu,calc.weighted.site_energy.total.energy_consumption..tbtu,calc.weighted.enduse_group.site_energy.hvac.energy_consumption..tbtu,calc.weighted.enduse_group.site_energy.lighting.energy_consumption..tbtu,calc.weighted.enduse_group.site_energy.interior_equipment.energy_consumption..tbtu,calc.weighted.enduse_group.site_energy.refrigeration.energy_consumption..tbtu,calc.weighted.enduse_group.site_energy.water_systems.energy_consumption..tbtu,calc.weighted.enduse_group.electricity.hvac.energy_consumption..tbtu,calc.weighted.enduse_group.electricity.lighting.energy_consumption..tbtu,calc.weighted.enduse_group.electricity.interior_equipment.energy_consumption..tbtu,calc.weighted.enduse_group.electricity.refrigeration.energy_consumption..tbtu,calc.weighted.enduse_group.electricity.water_systems.energy_consumption..tbtu,calc.weighted.enduse_group.natural_gas.hvac.energy_consumption..tbtu,calc.weighted.enduse_group.natural_gas.interior_equipment.energy_consumption..tbtu,calc.weighted.enduse_group.natural_gas.water_systems.energy_consumption..tbtu,calc.weighted.enduse_group.district_heating.hvac.energy_consumption..tbtu,calc.weighted.enduse_group.district_heating.interior_equipment.energy_consumption..tbtu,calc.weighted.enduse_group.district_heating.water_systems.energy_consumption..tbtu,calc.weighted.enduse_group.district_cooling.hvac.energy_consumption..tbtu,calc.weighted.enduse_group.other_fuel.hvac.energy_consumption..tbtu,calc.weighted.enduse_group.other_fuel.water_systems.energy_consumption..tbtu,calc.weighted.enduse_group.other_fuel.interior_equipment.energy_consumption..tbtu,calc.weighted.emissions.natural_gas..co2e_mmt,calc.weighted.emissions.fuel_oil..co2e_mmt,calc.weighted.emissions.propane..co2e_mmt,calc.weighted.emissions.electricity.egrid_2021_subregion..co2e_mmt,calc.weighted.emissions.total_with_cambium_mid_case_15y..co2e_mmt,calc.weighted.emissions.total_with_egrid..co2e_mmt,calc.weighted.enduse_group.electricity.hvac.emissions.egrid_2021_subregion..co2e_mmt,calc.weighted.enduse_group.electricity.lighting.emissions.egrid_2021_subregion..co2e_mmt,calc.weighted.enduse_group.electricity.interior_equipment.emissions.egrid_2021_subregion..co2e_mmt,calc.weighted.enduse_group.electricity.refrigeration.emissions.egrid_2021_subregion..co2e_mmt,calc.weighted.enduse_group.electricity.water_systems.emissions.egrid_2021_subregion..co2e_mmt,calc.weighted.enduse_group.natural_gas.hvac.emissions..co2e_mmt,calc.weighted.enduse_group.natural_gas.interior_equipment.emissions..co2e_mmt,calc.weighted.enduse_group.natural_gas.water_systems.emissions..co2e_mmt,calc.weighted.enduse_group.other_fuel.hvac.emissions..co2e_mmt,calc.weighted.enduse_group.other_fuel.water_systems.emissions..co2e_mmt,calc.weighted.enduse_group.other_fuel.interior_equipment.emissions..co2e_mmt,calc.weighted.enduse_group.site_energy.hvac.emissions..co2e_mmt,calc.weighted.enduse_group.site_energy.lighting.emissions..co2e_mmt,calc.weighted.enduse_group.site_energy.interior_equipment.emissions..co2e_mmt,calc.weighted.enduse_group.site_energy.refrigeration.emissions..co2e_mmt,calc.weighted.enduse_group.site_energy.water_systems.emissions..co2e_mmt +93834,35.0,Eastern Counties in South Carolina and Georgia,G1302450001200,ComStock 90.1-2007,gen2_t8_halogen,over_1mil,Electricity,2769371.0,,479503.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,7402799.734385718,0.0,0.0,0.5756969054541381,0.32269691899118685,0.0,0.8983938244453249,0.5800225779054262,0.09946085674825247,0.17684731231430784,0.0010372492432667406,0.041025758069068274,0.2589838684364016,0.09946085674825247,0.17518910279214572,0.0010372492432667406,0.041025758069068274,0.3210387094690247,0.0016582095221621376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0215607231780086,0.0,0.0,0.06860468904151883,0.04354810955748171,0.09016541221952742,0.030862607723821392,0.011852558324304718,0.020876947238472332,0.00012360699027334673,0.00488896040321903,0.02144993130373151,0.00011079187427708968,0.0,0.0,0.0,0.0,0.05821274969890279,0.009982180313795474,0.017748909643919192,0.00010410134514368571,0.004117464175802855 +93946,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,341958.0,,8888.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,613226.2692080382,0.0,0.0,0.038468660152448354,0.0033032256297225136,0.0,0.04177188578217087,0.01927943324149488,0.004697432665465825,0.016940462137340646,0.0,0.0008545964862932858,0.01927943324149488,0.004697432665465825,0.014491871742335192,0.0,0.0,0.0,0.002448590395005455,0.0008545964862932858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022070175637748965,0.0,0.0,0.0045842381238125575,0.0016677406855806695,0.004804939880190048,0.0022974939215691624,0.0005597842457661039,0.001726969191631351,0.0,0.0,0.0,0.00016360014767509296,5.709901976475147e-05,0.0,0.0,0.0,0.002217676217267157,0.0005403366672624081,0.0019486288585826776,0.0,9.830259423465018e-05 +93992,50.0,the Greater Atlanta and Macon Area,G1301210001100,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,997727.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.0,0.021394254151446402,0.1642541842503317,0.0,0.0,0.1856484384017781,0.08450664877151681,0.027424258641432008,0.07328678518589238,0.0,0.00043080039682827294,0.06311239462007041,0.027424258641432008,0.07328678518589238,0.0,0.00043080039682827294,0.0,0.0,0.0,0.021394254151446402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019573853439814715,0.006685437943659129,0.019573853439814715,0.0075209819960888715,0.003268095858823629,0.008733444440706506,0.0,5.133765004414861e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.008909963218563358,0.0028914782368447923,0.0077269962766899425,0.0,4.5421463826597265e-05 +94020,50.0,the Greater Atlanta and Macon Area,G1301210010002,ComStock DOE Ref 1980-2004,gen3_t5_cfl,500001_1mil,Electricity,2050996.0,,35748.0,,5.759960461090961,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,4319970.345818221,0.0,0.0,0.32507959915295087,0.01871898969247088,0.0,0.34379858884542175,0.15185782230560835,0.014740842015866827,0.1764464742291009,0.0,0.0007533957009542728,0.13313883261313747,0.014740842015866827,0.1764464742291009,0.0,0.0007533957009542728,0.01871898969247088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012506936946111362,0.0,0.0,0.0387391075321458,0.013493581342385395,0.03998980122675694,0.015865897357889843,0.0017566376526087651,0.021026785306244543,0.0,8.978070955412953e-05,0.0012506936946111362,0.0,0.0,0.0,0.0,0.0,0.017663726163401682,0.0017146182714396893,0.02052381731780863,0.0,8.76331238805659e-05 +94105,50.0,the Greater Atlanta and Macon Area,G1300890021415,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,47404.0,,3100.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.005300396887783204,0.001152261877710426,0.0,0.00645265876549363,0.0038235394641340415,0.0005096192694504328,0.0019912814976473345,0.0,0.00012814103741427778,0.003052329585798278,0.0005096192694504328,0.0017384092841107224,0.0,0.0,0.0007712098783357636,0.0002528722135366123,0.00012814103741427778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.698611189097786e-05,0.0,0.0,0.0006316392527398776,0.0002852140096199066,0.0007086253646308555,0.0003637409083710679,6.0730458747239336e-05,0.00020716326803802814,0.0,0.0,5.1526871741135015e-05,1.6895159774036436e-05,8.561491476055545e-06,0.0,0.0,0.0,0.0004198977732158407,5.596594423501901e-05,0.0002186807994402089,0.0,1.4072337103498167e-05 +94160,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,427751.0,,27749.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,613226.2692080382,0.0,0.0,0.04498877992372918,0.01031300923221115,0.0,0.055301789155940334,0.03236977449599383,0.004091872298755715,0.018277747738562767,0.0,0.0005624333710517817,0.024435182263336897,0.004091872298755715,0.015899291990584784,0.0,0.0005624333710517817,0.007934592232656936,0.0023784557479779853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006890557451679824,0.0,0.0,0.005361226821813676,0.0022096325365660004,0.0060502825669816575,0.0029118939159541585,0.0004876205924391981,0.0018946882047541612,0.0,6.702410866615809e-05,0.0005301436506428185,0.00015891468347116542,0.0,0.0,0.0,0.0,0.003541409515305018,0.00044767057292969246,0.0019996737934551254,0.0,6.153292455634403e-05 +94222,85.0,Rural Climate Zone 3A,G1302850960600,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,54352.0,,728.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005848338348344228,0.0002707352368955424,0.0,0.00611907358523977,0.0035962024618632314,0.0005177951868663423,0.0018931704886564207,0.0,0.00011194419627754718,0.0035962024618632314,0.0005177951868663423,0.0016224352517608784,0.0,0.00011194419627754718,0.0,0.0002707352368955424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.808962907841215e-05,0.0,0.0,0.0006969356335631514,0.00022056573423707713,0.0007150252626415634,0.000428552777198604,6.170469202022375e-05,0.00019334259968411196,0.0,1.3340182238002425e-05,0.0,1.808962907841215e-05,0.0,0.0,0.0,0.0,0.0004202230246108795,6.0505341915926064e-05,0.00022122053396155916,0.0,1.3080889979429049e-05 +94280,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,500001_1mil,Electricity,1777415.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,4319970.345818221,0.0,0.027597321277085994,0.2817174182395053,0.0,0.0,0.30931473951659133,0.19263978672495966,0.08259930198860092,0.03326520448559119,0.0,0.0008104463174395781,0.16504246544787365,0.08259930198860092,0.03326520448559119,0.0,0.0008104463174395781,0.0,0.0,0.0,0.027597321277085994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.033571722021741086,0.011474620966858147,0.033571722021741086,0.019667792664095345,0.009843199695922449,0.003964150335344928,0.0,9.657932637837108e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.020908312938352352,0.008964981138257121,0.0036104655075020757,0.0,8.796243762953895e-05 +94377,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,223986.0,,14213.0,,4.088175128053588,Healthcare,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,306613.1346040191,0.0,0.0,0.02519740250735754,0.0052823013738816415,0.0,0.030479703881239183,0.014975180832044377,0.00443095975518521,0.01048303731572305,0.0,0.0005905259782865417,0.01184116956893455,0.00443095975518521,0.008925273183237778,0.0,0.0,0.003134011263109828,0.001557764132485272,0.0005905259782865417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035293300617415086,0.0,0.0,0.003002726585166927,0.0011388549314954382,0.003355659591341078,0.0014110896809195802,0.0005280290558050329,0.001063607848442314,0.0,0.0,0.00020939661298806145,0.00010408084266201016,3.945555052407927e-05,0.0,0.0,0.0,0.0016486908595607312,0.0004878260188900845,0.0011541288213283752,0.0,6.501389156188688e-05 +94443,50.0,the Greater Atlanta and Macon Area,G1300890022402,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,421637.0,,20908.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,613226.2692080382,0.0,0.0,0.047432178029949174,0.007770531406405937,0.0,0.055202709436355114,0.0331471066252856,0.006034912008806805,0.0154248562899194,0.0,0.000595834512343317,0.027594612492441217,0.006034912008806805,0.01320685776478161,0.0,0.000595834512343317,0.005552494132844374,0.0022179985251377906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005191804882652341,0.0,0.0,0.0056524019375118395,0.002140988913389036,0.006171582425777073,0.003288397193539761,0.0007191689217761523,0.0015738359805227533,0.0,7.100445924872484e-05,0.00037098448795966344,0.00014819341136737308,0.0,0.0,0.0,0.0,0.00370579819002954,0.000674694363283091,0.0017244764427506519,0.0,6.661342971379099e-05 +94611,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,37504.0,,2751.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.00421904462557569,0.0010224159096501764,0.0,0.005241460535225867,0.00247602427903609,0.0005797539164779027,0.002037392121936113,0.0,0.00014825146935198874,0.001898711513255829,0.0005797539164779027,0.0017405404474181868,0.0,0.0,0.0005773127657802613,0.00029685167451792615,0.00014825146935198874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.831182420528603e-05,0.0,0.0,0.0005027738315531367,0.00019330135017907153,0.0005710856557584226,0.000226265078294456,6.908793905107346e-05,0.0002074161966471841,0.0,0.0,3.857264719300221e-05,1.9833884834256654e-05,9.905292178027148e-06,0.0,0.0,0.0,0.000269776322756605,6.31673449308971e-05,0.0002219849616673285,0.0,1.6152804551905645e-05 +95179,50.0,the Greater Atlanta and Macon Area,G1301510070309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,70416.0,,838.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.007921534013845745,0.0003114598302800014,0.0,0.008232955095701973,0.004870134390217997,0.0009270172903233087,0.0023155283077721236,0.0,0.00012027510738854499,0.004870134390217997,0.0009270172903233087,0.0020040684774921217,0.0,0.00012027510738854499,0.0,0.0003114598302800014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0808765096928983e-05,0.0,0.0,0.0009439920683883536,0.0002982937735240696,0.0009648008334852827,0.0005803633776381666,0.0001104706446749479,0.00023882050420449358,0.0,1.4332924304925527e-05,0.0,2.0808765096928983e-05,0.0,0.0,0.0,0.0,0.0005707197068669341,0.00010863499727164949,0.0002713513696271205,0.0,1.4094759719578667e-05 +95242,50.0,the Greater Atlanta and Macon Area,G1301210011423,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,37886.0,,5871.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,71543.06474093779,0.0,0.0,0.004571422791359011,0.0021819624910297533,0.0,0.006753385282388765,0.004099738228781447,0.0005403080210779225,0.001975162153358148,0.0,0.0001382156275950193,0.0023421484749035445,0.0005403080210779225,0.0016889662953775446,0.0,0.0,0.001757589753877903,0.00028619585798060344,0.0001382156275950193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014578695443115774,0.0,0.0,0.00054476818911018,0.0002874892400598693,0.0006905551435413377,0.00027910959925040336,6.438753001815907e-05,0.00020127105984161768,0.0,0.0,0.00011743265909045986,1.912206221570441e-05,9.234822085488444e-06,0.0,0.0,0.0,0.0004192112848116204,5.524821514700045e-05,0.00020196661782151466,0.0,1.4132987910882858e-05 +95271,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,78862.0,,3994.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.008904581524943486,0.0014843746178609472,0.0,0.010388956142804433,0.00437306961006972,0.0015868641987381064,0.0041698728758089165,0.0,0.00025911070976391757,0.003746197610284964,0.0015868641987381064,0.003571480967496643,0.0,0.0,0.0006268719997847553,0.0005983919083122744,0.00025911070976391757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.91777390623198e-05,0.0,0.0,0.0010611413631550018,0.0003482844174033348,0.0011603191022173216,0.00044642695759372316,0.00018910346704939743,0.0004256063209388815,0.0,0.0,4.1884135495202305e-05,3.998125259317649e-05,1.7312350973941018e-05,0.0,0.0,0.0,0.0004884182909371887,0.00017723328668548696,0.0004657237055495811,0.0,2.8939491320925237e-05 +95378,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,170231.0,,19569.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,306613.1346040191,0.0,0.0,0.019150207248214982,0.0072729628967486215,0.0,0.02642317014496361,0.01400476530709634,0.0038271430675448446,0.00798787131534355,0.0,0.0006033904549788731,0.00845234867109951,0.0038271430675448446,0.006870715509570632,0.0,0.0,0.00555241663599683,0.001117155805772919,0.0006033904549788731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00048593681216312356,0.0,0.0,0.0022820934807679548,0.001067999099119498,0.002768030292931078,0.0010072501853102313,0.000456073301516069,0.0008187699939416548,0.0,0.0,0.00037097998136412745,7.464181223714295e-05,4.031501856185321e-05,0.0,0.0,0.0,0.001467106876379926,0.00040092267083117214,0.0008367909548930702,0.0,6.320979082690938e-05 +95508,46.0,the Tallahassee-Valdosta Area,G1301850011100,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,65333.0,,965.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.007181167880832559,0.000358539165163082,0.0,0.007539707045995641,0.00435633029100018,0.0006565532923941708,0.002396590010303321,0.0,0.00013023345229797023,0.00435633029100018,0.0006565532923941708,0.0020380508451402386,0.0,0.00013023345229797023,0.0,0.000358539165163082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3956735314932606e-05,0.0,0.0,0.0008557646049684,0.00027820609967230624,0.0008797213402833325,0.0005191346773190092,7.824006877851467e-05,0.0002428702134999727,0.0,1.5519645370903435e-05,0.0,2.3956735314932606e-05,0.0,0.0,0.0,0.0,0.0005082898710701145,7.660562125675573e-05,0.0002796304104538682,0.0,1.519543750259419e-05 +95582,50.0,the Greater Atlanta and Macon Area,G1302470060307,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,60498.0,,3016.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.007130639936233764,0.0011209918997263548,0.0,0.008251631835960118,0.005392424394241902,0.0006605056316189232,0.00201724294157463,0.0,0.00018145886852466368,0.004710025903191752,0.0006605056316189232,0.0017601084014230886,0.0,0.0,0.0006823984910501499,0.00025713454015154134,0.00018145886852466368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.4898372107396e-05,0.0,0.0,0.0008497454461435755,0.0003320836068919747,0.0009246438182509715,0.0005612852560564718,7.871125980830426e-05,0.0002097489302787993,0.0,0.0,4.55940280395213e-05,1.718028334962599e-05,1.2124060718248723e-05,0.0,0.0,0.0,0.0006042528290940601,7.401353590872236e-05,0.00022604392111979856,0.0,2.0333532128390637e-05 +95583,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,779344.0,,106265.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,2590979.907035001,0.0,0.0,0.20186618785852134,0.07151413594779635,0.0,0.2733803238063177,0.17228700809210135,0.01785313425576715,0.0648794735690629,0.0009989391514840416,0.01736176873790224,0.11264114211657604,0.01785313425576715,0.06347287574860912,0.0009989391514840416,0.006900096586084998,0.05964586597552531,0.001406597820453788,0.010461672151817241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004778157110599528,0.0,0.0,0.024056007199910127,0.012246389241535002,0.028834164310509655,0.013423229291185473,0.002127523835238301,0.00756394110477619,0.00011904166653810332,0.0008222713021720599,0.0039851885903629475,9.39806555512493e-05,0.0006989878646853307,0.0,0.0,0.0,0.0181715780811397,0.0018830184975312482,0.006843014066349188,0.00010536082198255964,0.001831192843506955 +95743,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock 90.1-2007,gen1_t12_incandescent,200001_500000,NaturalGas,464311.0,,59621.0,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.0,0.0,0.09181202115787872,0.031219625969717585,0.0,0.12303159253370492,0.0673638393168902,0.030685042585388296,0.024194920778906854,0.0,0.00078784444641095,0.03693205779358356,0.030685042585388296,0.024194920778906854,0.0,0.0,0.030431781523306643,0.0,0.00078784444641095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020859114339600374,0.0,0.0,0.010941060728806636,0.005556844773929931,0.013026972162766671,0.004401121792804786,0.003656677090415422,0.002883261845586426,0.0,0.0,0.002033272310719274,0.0,5.263912324076388e-05,0.0,0.0,0.0,0.00713269528164328,0.003249028866009801,0.002561834346579055,0.0,8.341944910754625e-05 +96025,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,50840.0,,2868.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.00565823858131839,0.0010657366474273648,0.0,0.0067239364803219825,0.0032912523667769397,0.0007236655623674181,0.0025450352217741695,0.0,0.0001639833294034543,0.0027421097050789826,0.0007236655623674181,0.002192424565448216,0.0,0.0,0.0005491426616979571,0.0003526106563259533,0.0001639833294034543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.120551485634448e-05,0.0,0.0,0.0006742793031675474,0.00024059809791620446,0.0007454848180238919,0.0003267709190019368,8.623756388260307e-05,0.0002612662027222941,0.0,0.0,3.6690101677723745e-05,2.3559125406949344e-05,1.0956287771671387e-05,0.0,0.0,0.0,0.00036490211930138855,8.023301404623003e-05,0.0002821688046460931,0.0,1.8180880030180197e-05 +96094,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock 90.1-2004,gen5_led,100001_200000,Electricity,488484.0,,8386.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,613226.2692080382,0.0,0.0,0.054952239625092374,0.0031165357239886183,0.0,0.05806881409750476,0.030820535016738416,0.005602092115272642,0.020792714183489804,0.0,0.0008534340335801234,0.030820535016738416,0.005602092115272642,0.017676178459501184,0.0,0.0008534340335801234,0.0,0.0031165357239886183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020822949385324428,0.0,0.0,0.0065485546719563454,0.0022584546158469546,0.006756784165809591,0.003672824983167685,0.000667590743243284,0.0021064368226485367,0.0,0.00010170212289683855,0.0,0.00020822949385324426,0.0,0.0,0.0,0.0,0.0035862227637920136,0.0006518494976722361,0.002419403325910963,0.0,9.930406973654687e-05 +96120,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,69828.0,,1098.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.007610306674108376,0.0004080209023200317,0.0,0.008018327576428407,0.005438883754344629,0.0005175239478999377,0.0019327326293277175,0.0,0.0001292259932798961,0.005438883754344629,0.0005175239478999377,0.0016539377202875818,0.0,0.0,0.0,0.00027879490904013566,0.0001292259932798961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7261491501757363e-05,0.0,0.0,0.0009069047115820083,0.0002927751526337167,0.0009341662030837657,0.0006481406747172753,6.167227245963301e-05,0.00019709638197566457,0.0,0.0,0.0,1.862739139175159e-05,8.634100110005774e-06,0.0,0.0,0.0,0.0006336510123066389,6.0293543361313924e-05,0.00022517083328234334,0.0,1.5055328474841413e-05 +96385,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,408302.0,,12968.0,,4.088175128053588,Healthcare,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,613226.2692080382,0.0,0.0,0.04593211030046054,0.0048197614393142895,0.0,0.05075187173977482,0.02657812509162816,0.006843204128692453,0.01667371798809363,0.0,0.0006568245313605753,0.024194554551712263,0.006843204128692453,0.014237527088695242,0.0,0.0006568245313605753,0.0023835705399159004,0.002436190899398389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032202840294773266,0.0,0.0,0.005473642692144295,0.0015413788322067767,0.005795671095092028,0.002883219295725206,0.0008154916903413765,0.0016966591692274538,0.0,7.827253685025804e-05,0.00015925630841836562,0.00016277209452936705,0.0,0.0,0.0,0.0,0.0030351209930759675,0.0007814679342238825,0.0019040752996618247,0.0,7.50068681303525e-05 +96442,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,45803.0,,3667.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.005152610399516482,0.0013627045672166072,0.0,0.006515314966733089,0.0033171750622804632,0.0006270269934798437,0.0024155767379516408,0.0,0.00015553617302114029,0.0024392907733001563,0.0006270269934798437,0.002086253884312709,0.0,0.0,0.0008778842889803075,0.00032932285363893157,0.00015553617302114029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.104795219139757e-05,0.0,0.0,0.0006140252325613511,0.00024812408884178317,0.0007050731847527487,0.00029068490885725376,7.47214257708743e-05,0.00024861428036890634,0.0,0.0,5.865509567926249e-05,2.200342770913012e-05,1.0392017746140523e-05,0.0,0.0,0.0,0.00035897745504040164,6.785549455031984e-05,0.0002614084495282992,0.0,1.683178563372783e-05 +96506,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,192479.0,,10872.0,,4.088175128053588,Healthcare,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,306613.1346040191,0.0,0.0,0.021653006688077583,0.004040569385681476,0.0,0.025693576073759064,0.012675616874866354,0.0035230841862053117,0.008982543353572917,0.0,0.0005123316591144786,0.01046056322993524,0.0035230841862053117,0.00766935927193703,0.0,0.0,0.0022150536449311122,0.0013131840816358853,0.0005123316591144786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026996770796495616,0.0,0.0,0.0025803474869514386,0.0008934804162416266,0.0028503151949163946,0.001246565358395335,0.0004198392194280681,0.0009139429091280353,0.0,0.0,0.0001479972000135861,8.773944036491617e-05,3.4231067586453874e-05,0.0,0.0,0.0,0.0014061687357046968,0.0003908331156427263,0.0009964778642017318,0.0,5.683547936723923e-05 +96564,50.0,the Greater Atlanta and Macon Area,G1301350050435,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,342745.0,,25544.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,555209.9800789288,0.0,0.0,0.0676621474335502,0.017190425799929066,0.0,0.08485257323347925,0.04823872040471197,0.0090573897764712,0.02326931118780031,0.0010030087216734123,0.0032840729778191025,0.0358366350876007,0.0090573897764712,0.02055911777168578,0.0010030087216734123,0.0012059960761191054,0.012402085317111275,0.0027101934161145314,0.0020780769016999967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011485621087441366,0.0,0.0,0.00806316893450264,0.003565782437180208,0.009211731043246777,0.004270583386955441,0.001079351848018822,0.0024499908150305057,0.00011952663449788943,0.00014371624999998066,0.0008286336493599128,0.00018107902045857562,0.0001388447509170412,0.0,0.0,0.0,0.005236872628669562,0.000983284718368283,0.0025261536339484386,0.00010888823079841192,0.0003565242142371228 +96805,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2004,gen5_led,50001_100000,Electricity,169177.0,,2910.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,306613.1346040191,0.0,0.0,0.01903167581989618,0.0010815072559026025,0.0,0.020113183075798787,0.01028619532296087,0.001635377225300754,0.007760379319377653,0.0,0.00043126995658328147,0.01028619532296087,0.001635377225300754,0.0066788720634750505,0.0,0.00043126995658328147,0.0,0.0010815072559026025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225996532639552e-05,0.0,0.0,0.002267969814610169,0.0007230348414803042,0.0023402297799365646,0.0012257869837857933,0.00019488489703074803,0.0007959089036063236,0.0,5.139364776572031e-05,0.0,7.225996532639552e-05,0.0,0.0,0.0,0.0,0.0011968299859012358,0.00019028109422838631,0.0009029436424045562,0.0,5.017956589887311e-05 +96952,50.0,the Greater Atlanta and Macon Area,G1300670030901,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,68762.0,,2737.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.008432005748619164,0.001017107375593401,0.0,0.009449113124212566,0.00651198260228869,0.0007336239072768435,0.002090748701470271,0.0,0.00011275791317676092,0.005764603004572758,0.0007336239072768435,0.001821059672016575,0.0,0.00011275791317676092,0.0007473795977159328,0.0002696890294536962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.795642341040985e-05,0.0,0.0,0.001004826905799489,0.00036375864039743484,0.0010727833292098988,0.0006869573352930715,8.742463688313315e-05,0.0002170123942109866,0.0,1.343715699202015e-05,4.99349877991537e-05,1.801884669650092e-05,0.0,0.0,0.0,0.0,0.0007393229696805402,8.32903032581708e-05,0.00023736834589875463,0.0,1.280171037243316e-05 +97039,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,972948.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,2015986.1613818365,0.0,0.0,0.15945953033434562,0.0,0.0,0.1594595303343456,0.05849107630919517,0.007788036979994987,0.09278794156007135,0.0,0.00039253007897545084,0.05849107630919517,0.007788036979994987,0.09278794156007135,0.0,0.00039253007897545084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019002487296020873,0.006830665187913949,0.019002487296020873,0.006970269711478451,0.0009280854738691013,0.011057361557645393,0.0,4.677705887755576e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.006970269711478453,0.0009280854738691016,0.011057361557645397,0.0,4.677705887755577e-05 +97064,50.0,the Greater Atlanta and Macon Area,G1300210012500,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,56241.0,,1169.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006238999956814366,0.00043444732733259215,0.0,0.006673408535723187,0.003127075295254625,0.0011682262283045242,0.0022411313341297243,0.0,0.00013697567803431265,0.003127075295254625,0.0011682262283045242,0.001943698433255217,0.0,0.0,0.0,0.00029743290087450746,0.00013697567803431265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9026024249617813e-05,0.0,0.0,0.0007434884545995485,0.00026351401266535055,0.0007725144788491663,0.00037264696181732383,0.00013921505355295405,0.00023162643922927065,0.0,0.0,0.0,1.9871901724943483e-05,9.151533689118712e-06,0.0,0.0,0.0,0.00036199056735463937,0.00013523399191067167,0.0002594336005880602,0.0,1.5856318995795025e-05 +97129,50.0,the Greater Atlanta and Macon Area,G1300770170404,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,44437.0,,2463.0,,4.088175128053588,Healthcare,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.004916400008201864,0.0009153927631916838,0.0,0.005831792771393549,0.003007575156341522,0.0005337207890366684,0.0020772255015738144,0.0,0.00021327132444154363,0.002596066895882003,0.0005337207890366684,0.001786573574859421,0.0,0.0,0.0004115082604595191,0.00029065192671439295,0.00021327132444154363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.116095070810651e-05,0.0,0.0,0.0005858782496536555,0.00026195717640478406,0.0006470392003617619,0.00030936846603322516,6.360251427119681e-05,0.00021290265177160379,0.0,0.0,2.7494467343383466e-05,1.9419585644323857e-05,1.424948665329403e-05,0.0,0.0,0.0,0.0003336913879609793,5.921648558033612e-05,0.00023046880782566132,0.0,2.3662518994785097e-05 +97139,50.0,the Greater Atlanta and Macon Area,G1301210009801,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,388304.0,,21251.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,613226.2692080382,0.0,0.0,0.04368245431310095,0.00789781997849723,0.0,0.05158027429159818,0.03136983267213147,0.0038274530549350216,0.01570183002304225,0.0,0.0006811585414894433,0.026392520141759888,0.0038274530549350216,0.013462442367982268,0.0,0.0,0.004977312530371578,0.00223938765505998,0.0006811585414894433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005276862682573457,0.0,0.0,0.005205551993630618,0.0020593522475103473,0.005733238261887964,0.0031451446124369908,0.00045611003763287004,0.0016042927259874598,0.0,0.0,0.00033255499394176596,0.00014962282225949365,4.551104099976882e-05,0.0,0.0,0.0,0.003486812108212904,0.00042542814286095825,0.001745286040179716,0.0,7.57119706343864e-05 +97172,50.0,the Greater Atlanta and Macon Area,G1300670031117,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,163319.0,,9347.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,306613.1346040191,0.0,0.0,0.02033652899042107,0.0034737961911672217,0.0,0.02381028643316452,0.010566113936290396,0.004060447327076555,0.008534766568462727,0.0,0.0006489973497586145,0.008936161490317734,0.004060447327076555,0.007339920173026783,0.0,0.0,0.0016299524459726623,0.001194846395435945,0.0006489973497586145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002320980128559607,0.0,0.0,0.0024234626797611436,0.0008625336844082156,0.0026555606926171047,0.001064904137884316,0.0004838752259513375,0.0008746833159254901,0.0,0.0,0.00010890354613258212,7.98323962568478e-05,4.33620704665308e-05,0.0,0.0,0.0,0.0011784384417922926,0.0004528615960372383,0.000951882317060389,0.0,7.238265933798745e-05 +97284,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,570891.0,,45955.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,1110419.9601578575,0.0,0.0,0.11629330070152341,0.030927049479140965,0.0,0.14722035018066437,0.08130418868836084,0.02138931009031746,0.03561428219225387,0.00099178232115101,0.007920786888581194,0.058808236166547546,0.02138931009031746,0.03188543325873783,0.00099178232115101,0.003218538864769577,0.022495952521813297,0.003728848933516043,0.004702248023811618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020663651302802004,0.0,0.0,0.013858448892783738,0.006393770825713837,0.01592481402306394,0.007008064355148011,0.0025489229297856277,0.0037997257329088477,0.0001181887909924776,0.0003835470839487754,0.001503048387944866,0.00024913994519577056,0.0003141767971395633,0.0,0.0,0.0,0.008794667874172029,0.002313680037114101,0.0038523941817864876,0.00010728101785052575,0.0008567909121407956 +97431,50.0,the Greater Atlanta and Macon Area,G1300770170306,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,45907.0,,767.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005164273675071877,0.00028507215369121306,0.0,0.00544934582876309,0.0025120215647203552,0.0008513803671202032,0.0019693498897923357,0.0,0.00011655525870642504,0.0025120215647203552,0.0008513803671202032,0.0016842777361011226,0.0,0.00011655525870642504,0.0,0.00028507215369121306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.904687823234905e-05,0.0,0.0,0.0006154168879828961,0.0002063586783402333,0.0006344637662152452,0.0002993529373488537,0.00010145741472842424,0.0002007122449481347,0.0,1.3889673379897145e-05,0.0,1.904687823234905e-05,0.0,0.0,0.0,0.0,0.000292473025726127,9.912565859807282e-05,0.00022929011799510522,0.0,1.3570452442335837e-05 +97696,50.0,the Greater Atlanta and Macon Area,G1300890023212,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,241756.0,,4126.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,306613.1346040191,0.0,0.0,0.025568224922856375,0.0015332751286613157,0.0,0.02710150005151769,0.013575006539040167,0.0027486581886964653,0.010286466561927273,0.0,0.0004913300134300098,0.013575006539040167,0.0027486581886964653,0.008753191433265957,0.0,0.0004913300134300098,0.0,0.0015332751286613157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010244564350670387,0.0,0.0,0.003046914260907326,0.0010312462940978951,0.0031493599044140294,0.0016177063969245978,0.0003275521026104674,0.001043100328119704,0.0,5.85508156803418e-05,0.0,0.00010244564350670387,0.0,0.0,0.0,0.0,0.0015774987072649954,0.000319410876666038,0.001195350267942649,0.0,5.709554973673961e-05 +97886,50.0,the Greater Atlanta and Macon Area,G1300590001800,ComStock 90.1-2007,gen5_led,200001_500000,NaturalGas,865877.0,,216274.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,2590979.907035001,0.0,0.0,0.1726577599693537,0.14554845848286554,0.0,0.3182062184522193,0.21655796772717995,0.015289305036463443,0.06807626128282032,0.000996343046363236,0.017286341359392346,0.08555317079108046,0.015289305036463443,0.06394838397573614,0.000996343046363236,0.006870627284713692,0.13100479693609948,0.004127877307084192,0.010415714074678657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00972469590459963,0.0,0.0,0.02057529571192006,0.016224575672360048,0.030299991616519695,0.010195208071918272,0.0018219972992283785,0.007620606863159378,0.0001187322991626763,0.000818759539880875,0.00875297358369048,0.0002758005956319838,0.0006959170372624209,0.0,0.0,0.0,0.020620918844831995,0.001455866628504675,0.006482306210691446,9.487302322005641e-05,0.0016460269092715236 +97930,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock 90.1-2004,gen1_t12_incandescent,200001_500000,NaturalGas,850342.0,,141279.0,,9.525004485617233,Lodging,Zone-by-Zone,Before 1946,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.28215858023397783,0.12233475764577968,0.0,0.4044933378797576,0.23087271243140067,0.03765517944915299,0.09325189926073782,0.0006603051642697825,0.04205333185381951,0.16020290672612114,0.03765517944915299,0.062420956531184645,0.0006603051642697825,0.021219232363249303,0.07066980570527952,0.030830942729553192,0.020834099490570204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008173695842038116,0.0,0.0,0.03362429556314227,0.018308357540564785,0.04179799140518038,0.019091072408171043,0.004487295343744476,0.007438585386976871,7.868729700463226e-05,0.0025286551272452502,0.004721744728701083,0.002059943986845817,0.0013920131584497144,0.0,0.0,0.0,0.023857044717920658,0.0038910674653536395,0.009636109470301671,6.823209926179051e-05,0.00434554698131435 +97987,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,37105.0,,717.0,,4.088175128053588,Healthcare,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.004798643548358505,0.00026631791658552495,0.0,0.005064922716520257,0.002394110111181907,0.0007004940049517126,0.001860854303230504,0.0,0.00010954179400367805,0.002394110111181907,0.0007004940049517126,0.0015945363866449788,0.0,0.00010954179400367805,0.0,0.00026631791658552495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7792622309758878e-05,0.0,0.0,0.0005718430548552534,0.0001828299526389323,0.0005896356771650124,0.0002853004658173519,8.347622149105118e-05,0.00019001714739342,0.0,1.3053837711870876e-05,0.0,1.7792622309758878e-05,0.0,0.0,0.0,0.0,0.0002787116044258601,8.154838288302689e-05,0.00021663234536865161,0.0,1.2752366324279071e-05 +98161,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,37088.0,,2784.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.004020497702167538,0.001034737908409699,0.0,0.005055235610577237,0.0024240238943339554,0.0006962704267605556,0.0018268331871586151,0.0,0.00010810810232411098,0.0016495978968251086,0.0006962704267605556,0.0015664825278339908,0.0,0.00010810810232411098,0.0007744259975088466,0.00026035065932462426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.913606915929168e-05,0.0,0.0,0.000479114603805826,0.00019167713824362414,0.0005482506729651177,0.00019657925493905712,8.297314272291452e-05,0.00018667456401910319,0.0,1.2883024553226751e-05,5.174331479245069e-05,1.7395343344865216e-05,0.0,0.0,0.0,0.0,0.0002628903643128844,7.551195620605227e-05,0.0001981238069614637,0.0,1.1724545484717339e-05 +98195,50.0,the Greater Atlanta and Macon Area,G1300890022402,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,NaturalGas,735705.0,,18710.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,2590979.907035001,0.22574719754478603,0.032844448523364066,0.14986662327880448,0.012591320330917026,0.0,0.42104958967787165,0.2928791782136657,0.046790865562338364,0.0629133098475706,0.00099192265115754,0.01747431340313933,0.03428753214551567,0.046790865562338364,0.06084716099642567,0.00099192265115754,0.006949141923367245,0.0,0.002066148851144944,0.010525171479772081,0.032844448523364066,0.0,0.0,0.22574719754478603,0.0,0.0,0.0,0.0008412803991571846,0.0,0.0,0.0178593136827615,0.006249730512764321,0.018700594081918685,0.00408597844268062,0.005575976340049486,0.0072510376971597935,0.00011820549091242746,0.000828115711959172,0.0,0.00013804831300664582,0.0007032320861505388,0.0,0.0,0.0,0.013008003715215424,0.002078180349949654,0.0027942463278719763,4.405548257189682e-05,0.0007761082063097275 +98356,50.0,the Greater Atlanta and Macon Area,G1300670030336,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,39534.0,,2735.0,,4.088175128053588,Healthcare,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.004821892602621754,0.0010164874008130476,0.0,0.005838418751858575,0.003268855777836676,0.0006731763661923943,0.0017899059393038203,0.0,0.0001064806685256835,0.0025062867980020866,0.0006731763661923943,0.0015359875183253617,0.0,0.0001064806685256835,0.0007625689798345893,0.00025391842097845853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.791643352314682e-05,0.0,0.0,0.0005746176237032607,0.00022551140241957386,0.0006425340572264075,0.0002986703941526555,8.022140594013829e-05,0.00018304130152921671,0.0,1.2689139672106143e-05,5.095091723156061e-05,1.6965516291586216e-05,0.0,0.0,0.0,0.0,0.000359746577744662,7.408491240215282e-05,0.00019698407635944542,0.0,1.1718490720147121e-05 +98710,85.0,Rural Climate Zone 3A,G1301330950302,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,51756.0,,722.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005652038833514856,0.0002684490798929895,0.0,0.0059204879134078445,0.0032494428175268626,0.0006858083523420934,0.0018727888177523056,0.0,0.00011244792578658426,0.0032494428175268626,0.0006858083523420934,0.0016043397378593157,0.0,0.00011244792578658426,0.0,0.0002684490798929895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7936872950321877e-05,0.0,0.0,0.0006735435736213783,0.00021824461029113223,0.0006914804465717002,0.0003872304122571473,8.172658080776593e-05,0.00019118635808603536,0.0,1.340022247042978e-05,0.0,1.7936872950321877e-05,0.0,0.0,0.0,0.0,0.0003795170606605197,8.009864603661506e-05,0.00021873144020801623,0.0,1.3133299666549348e-05 +98797,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,46504.0,,1423.0,,4.088175128053588,Healthcare,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.0049079916002433225,0.0005287997392176137,0.0,0.005436791339460936,0.0024481254139201904,0.000572895445470244,0.002194710722450769,0.0,0.00022102100919596017,0.0024481254139201904,0.000572895445470244,0.0018869319924291156,0.0,0.0,0.0,0.00030777873002165357,0.00022102100919596017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.533181879000216e-05,0.0,0.0,0.0005848748392455136,0.00019985476037655535,0.0006202066580355157,0.000291737858281673,6.827072229652636e-05,0.00022486164110070638,0.0,0.0,0.0,2.056427322114657e-05,1.4767545568855596e-05,0.0,0.0,0.0,0.0002792720166394689,6.535354172229422e-05,0.0002503635172912238,0.0,2.5213162122689623e-05 +98884,50.0,the Greater Atlanta and Macon Area,G1300670031406,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,46286.0,,767.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.00567462916457398,0.00028507215369121306,0.0,0.005959701318265193,0.003308224176389112,0.0005642157985452976,0.0019693498897923357,0.0,0.00011791145353844792,0.003308224176389112,0.0005642157985452976,0.0016842777361011226,0.0,0.00011791145353844792,0.0,0.00028507215369121306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9046878232349044e-05,0.0,0.0,0.0006762335759725469,0.00022585270791562864,0.0006952804542048961,0.0003942340900238183,6.723640541172469e-05,0.00020071182158034728,0.0,1.4051258956656699e-05,0.0,1.9046878232349044e-05,0.0,0.0,0.0,0.0,0.00038594947718638146,6.582346928693796e-05,0.00022975152826312304,0.0,1.3755979468453551e-05 +99077,50.0,the Greater Atlanta and Macon Area,G1300210010200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,46938.0,,678.0,,4.088175128053588,Healthcare,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.004960030733369229,0.00025190350294231024,0.0,0.005211934236311539,0.0026377601998607636,0.0006515934941513442,0.0017808388081411528,0.0,0.00014174173415827884,0.0026377601998607636,0.0006515934941513442,0.0015289353051988427,0.0,0.00014174173415827884,0.0,0.00025190350294231024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6830219671370195e-05,0.0,0.0,0.00059107946350912,0.00016460621298407615,0.0006079096831804902,0.0003143379482127387,7.764942470172775e-05,0.00018220093957426104,0.0,1.6891151020392492e-05,0.0,1.6830219671370195e-05,0.0,0.0,0.0,0.0,0.0003076631236502836,7.600057418842978e-05,0.0002077135102953166,0.0,1.6532475046460285e-05 +99295,50.0,the Greater Atlanta and Macon Area,G1300670031306,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,157339.0,,7704.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,306613.1346040191,0.0,0.0,0.01953827271229239,0.002863082284095425,0.0,0.022401354996387818,0.010301462201927068,0.002823093910762636,0.008975491140446396,0.0,0.00030134649167548784,0.008598468977144032,0.002823093910762636,0.00781540208113401,0.0,0.00030134649167548784,0.0017029932247830384,0.0011600890593123868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019129419270124266,0.0,0.0,0.002328339231709093,0.000729808847914209,0.0025196334244103357,0.0010246633848816351,0.0003364227945847155,0.0009313467748680122,0.0,3.591089495155348e-05,0.00011378391599858727,7.751027670265541e-05,0.0,0.0,0.0,0.0,0.0011586758251213144,0.00031753265724121656,0.00100953480187311,0.0,3.3894498474613845e-05 +99302,81.0,the Columbus-Albany Area,G1302150001800,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Propane,63279.0,,843.0,3821.0,4.088175128053588,Healthcare,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.007233013271839606,0.0003134747483161497,0.0004594400606655856,0.00800592808082134,0.004554877214408332,0.0011770221205007869,0.002132248263330172,0.0,0.00014170298573450675,0.004237178887901026,0.0011770221205007869,0.0018187735150140218,0.0,0.0,0.0,0.0003134747483161497,0.0,0.0,0.0,0.0,0.0,0.0003176983265073068,0.00014170298573450675,0.0,2.094485321864617e-05,0.0,3.7052300465296487e-05,0.0008619428430628859,0.00030345775383951927,0.0009199399967468285,0.0005049356167259684,0.00014026322844480635,0.00021673938032467472,0.0,0.0,0.0,2.094485321864617e-05,0.0,2.5621304842284385e-05,1.1427870692552014e-05,0.0,0.0005233888797780862,0.0001352484952117324,0.00024501100192623164,0.0,1.628271487323233e-05 +99330,85.0,Rural Climate Zone 3A,G1302850960300,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,56024.0,,776.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.0063025086233768094,0.0002885207634069284,0.0,0.006591029386783738,0.003343368996750391,0.0011418385517157357,0.00199287018302199,0.0,0.00011295165529562135,0.003343368996750391,0.0011418385517157357,0.0017043494196150614,0.0,0.00011295165529562135,0.0,0.0002885207634069284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9278558947348e-05,0.0,0.0,0.0007510563722928665,0.0002771597028344369,0.0007703349312402145,0.00039842207920540596,0.0001360704398269077,0.00020310364788199184,0.0,1.3460205378561015e-05,0.0,1.9278558947348e-05,0.0,0.0,0.0,0.0,0.0003907604981077418,0.00013345383104908137,0.00023291923390407574,0.0,1.3201368179315606e-05 +99369,81.0,the Columbus-Albany Area,G1302150010501,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,63102.0,,791.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.007098672486621795,0.00029410053643010833,0.0,0.007392773023051905,0.003931066340101571,0.0011314152257210454,0.002219393468393586,0.0,0.00011085924041192887,0.003931066340101571,0.0011314152257210454,0.0019252929319634774,0.0,0.00011085924041192887,0.0,0.00029410053643010833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9650368417820668e-05,0.0,0.0,0.0008459336337947283,0.0002539838869332345,0.000865584002212549,0.0004684567769589843,0.00013482833516106674,0.0002294330452805892,0.0,1.3210858827213673e-05,0.0,1.9650368417820668e-05,0.0,0.0,0.0,0.0,0.000460269526065262,0.00013247193119416849,0.0002598580363371482,0.0,1.2979971750625573e-05 +99464,50.0,the Greater Atlanta and Macon Area,G1301210010115,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,NaturalGas,344155.0,,13321.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,613226.2692080382,0.0,0.0,0.03528621335962342,0.004950614866392613,0.0,0.04023678947759226,0.017770492122962434,0.0036108881144728514,0.01817955923272431,0.0,0.000675850007432668,0.015839968153789727,0.0036108881144728514,0.015835357091360847,0.0,0.0,0.0019305239691727082,0.002344202141363464,0.000675850007432668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003307701073668526,0.0,0.0,0.004204987949028778,0.0012350821386851723,0.00453575805639563,0.0018876175383528392,0.0004303023634727472,0.0018870680472031923,0.0,0.0,0.00012898592150490615,0.00015662539197952336,4.515620494738416e-05,0.0,0.0,0.0,0.002003207856773198,0.0004070432822450803,0.002049320617328863,0.0,7.618630004849003e-05 +99585,50.0,the Greater Atlanta and Macon Area,G1301350050722,ComStock DOE Ref Pre-1980,gen3_t5_cfl,10001_25000,NaturalGas,37550.0,,3864.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.004033788411521362,0.0014362490755360207,0.0,0.005470037487057384,0.002787987838825129,0.0005648357733256509,0.001976324606071311,0.0,0.00014088926883529297,0.001778940135376321,0.0005648357733256509,0.001690012502819391,0.0,0.0,0.001009047703448808,0.00028631210325191965,0.00014088926883529297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.596270739850676e-05,0.0,0.0,0.0004806990350652265,0.000210407080396965,0.0005766617424637333,0.00021199297515748548,6.73104247194656e-05,0.0002013956351882755,0.0,0.0,6.74193293952548e-05,1.912988844136314e-05,9.413489561888805e-06,0.0,0.0,0.0,0.0002939149738751564,5.9546060154523976e-05,0.00020834789408803877,0.0,1.4852814346014205e-05 +99599,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,59192.0,,1829.0,,4.088175128053588,Healthcare,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.0062140459719051445,0.0006796473529623321,0.0,0.006893693324867478,0.003565397464964426,0.0011251379810699681,0.0020378571030213776,0.0,0.000165223278964161,0.003347398832822688,0.0011251379810699681,0.0017414704095887168,0.0,0.0,0.00021799863214173775,0.0002963866934326612,0.000165223278964161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.540969483502361e-05,0.0,0.0,0.0007405148757820239,0.00020976682480928753,0.0007859245706170477,0.0003989025253575035,0.00013408034251060136,0.00020752739034521323,0.0,0.0,1.4565276119831401e-05,1.980266566665311e-05,1.1039164126370618e-05,0.0,0.0,0.0,0.0004064778254093779,0.00012827283474701795,0.0002323285781938618,0.0,1.8836497136800785e-05 +99605,50.0,the Greater Atlanta and Macon Area,G1300890021603,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,84577.0,,4115.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.0089173297563645,0.0015294777831316515,0.0,0.010446807539496152,0.004522367286863555,0.0015170782875245854,0.004172275278082786,0.0,0.00023504793860145418,0.0038267555833071242,0.0015170782875245854,0.003573457137109019,0.0,0.0,0.0006956117035564302,0.0005988181409737674,0.00023504793860145418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010219154004202236,0.0,0.0,0.0010626608277319474,0.0003474713367092334,0.00116485236777397,0.0004560270133312739,0.00018078726623341708,0.0004258419305930269,0.0,0.0,4.647706036771346e-05,4.0009831267972584e-05,1.570464840633633e-05,0.0,0.0,0.0,0.0005042583796179159,0.00016915906880071838,0.00046522200378489357,0.0,2.6208594997577585e-05 +99843,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,46369.0,,4616.0,,4.088175128053588,Healthcare,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.007096502574890559,0.0017156639593565095,0.0,0.008812166534247068,0.005611275491706625,0.0008127094401956643,0.0022126124942334715,0.0,0.0001755691081113071,0.0043641187241783685,0.0008127094401956643,0.0019196744105165254,0.0,0.0,0.0012471567675282566,0.00029293808371694583,0.0001755691081113071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011463128621431129,0.0,0.0,0.0008456761633699414,0.0003411844748182975,0.0009603074495842527,0.0005200633890013072,9.684897512064969e-05,0.00022876379924798455,0.0,0.0,8.332819698926809e-05,1.9572521258897243e-05,1.1730567966145955e-05,0.0,0.0,0.0,0.0006114897664965455,8.856515894635525e-05,0.00024111984867716121,0.0,1.9132675464190696e-05 +99871,50.0,the Greater Atlanta and Macon Area,G1300670031112,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,852340.0,,86657.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,2590979.907035001,0.0,0.0,0.22157371298557965,0.05831827394874794,0.0,0.2798919167693243,0.15372794373848486,0.033260597157728874,0.07418566844711187,0.001005955651810543,0.017711751774188142,0.11012123618931623,0.033260597157728874,0.07022387170275596,0.001005955651810543,0.006961982118964743,0.043606707549168636,0.003961796744355898,0.010749769655223397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003896485556046308,0.0,0.0,0.026404509369387884,0.011935683717483115,0.030300994925434192,0.01312293400489531,0.003963600814595929,0.00836844250766691,0.00011987778277267421,0.0008296458980297869,0.0029135448395025587,0.0002647040583529731,0.0007182366581907753,0.0,0.0,0.0,0.016642530076909263,0.0036007798914888495,0.00803131290500436,0.00010890438513751258,0.0019174676668942113 +100074,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,51384.0,,1143.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005694700848087919,0.00042464397611825523,0.0,0.006119344824206175,0.0035754333067213955,0.0005140365897604503,0.0018736412830752914,0.0,0.0001561948962252657,0.0035754333067213955,0.0005140365897604503,0.0016051922031823018,0.0,0.0,0.0,0.0002684490798929895,0.0001561948962252657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.837173765393757e-05,0.0,0.0,0.0006786271817249048,0.00023983220134204435,0.0007069989193788424,0.00042607790876326594,6.125680900863184e-05,0.00019128784637355517,0.0,0.0,0.0,1.7935888171044754e-05,1.0435849482892814e-05,0.0,0.0,0.0,0.00041308792963649785,5.938925226835347e-05,0.00021647127274114007,0.0,1.8045987931081927e-05 +100130,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,44311.0,,765.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.004711072110633597,0.00028421968836822727,0.0,0.0049952917990018246,0.0023610577057043207,0.0005623171257804654,0.0019643513431257366,0.0,0.00010756562439130184,0.0023610577057043207,0.0005623171257804654,0.0016801316547575098,0.0,0.00010756562439130184,0.0,0.00028421968836822727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8990126032537443e-05,0.0,0.0,0.0005614112658549361,0.0001699331632515185,0.0005804013918874736,0.0002813636395681795,6.701047277195312e-05,0.0002002187223947001,0.0,1.2818431120103496e-05,0.0,1.8990126032537443e-05,0.0,0.0,0.0,0.0,0.0002743305564234031,6.533545098413708e-05,0.00022823736822221807,0.0,1.249801625771531e-05 +100182,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,40777.0,,770.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005003738955384139,0.00028631210325191965,0.0,0.005290089807059831,0.0024027122612593093,0.0007953501463457713,0.001976324606071311,0.0,0.00011566404495966716,0.0024027122612593093,0.0007953501463457713,0.001690012502819391,0.0,0.00011566404495966716,0.0,0.00028631210325191965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9130121971351403e-05,0.0,0.0,0.0005962880239359172,0.0002075393655380207,0.0006154181459072685,0.00028632759604920745,9.478067727561012e-05,0.00020139624083483076,0.0,1.3783509776268939e-05,0.0,1.9130121971351403e-05,0.0,0.0,0.0,0.0,0.00027951750894654345,9.252638995995279e-05,0.0002299140599004888,0.0,1.3455679335012137e-05 +100206,50.0,the Greater Atlanta and Macon Area,G1301510070104,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,46024.0,,714.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.0050225706893373715,0.00026538795441499496,0.0,0.005287919895328594,0.0028588199574804967,0.0004668410096060535,0.0018557782597163608,0.0,0.00010655816537322768,0.0028588199574804967,0.0004668410096060535,0.001590390305301366,0.0,0.00010655816537322768,0.0,0.00026538795441499496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.77307717963077e-05,0.0,0.0,0.0005985282596436616,0.0002085295504991781,0.0006162590314399693,0.00034067903462621285,5.5632375190455444e-05,0.00018952317457810865,0.0,1.2698292809906414e-05,0.0,1.77307717963077e-05,0.0,0.0,0.0,0.0,0.0003331694982018459,5.440607915986716e-05,0.00021627409936948185,0.0,1.2418386262419877e-05 +100514,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,48879.0,,1171.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005498672572224953,0.000435299792655578,0.0,0.00593397236488053,0.003355497253391053,0.0005157415204064218,0.0019006101860206607,0.0,0.00016216215348616644,0.003355497253391053,0.0005157415204064218,0.0016274337984274773,0.0,0.0,0.0,0.00027317638759318365,0.00016216215348616644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9085312094974054e-05,0.0,0.0,0.0006552644280308394,0.00021192706136614377,0.0006843497401258136,0.0003998670514786909,6.145975559408958e-05,0.00019393762095805885,0.0,0.0,0.0,1.8252755053370756e-05,1.0835146084873279e-05,0.0,0.0,0.0,0.0003869808506257311,5.947914040704042e-05,0.00021919247460295516,0.0,1.870174324594021e-05 +100537,50.0,the Greater Atlanta and Macon Area,G1301530020105,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,47816.0,,3109.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,71543.06474093779,0.0,0.0,0.005379133684888077,0.0011552842547646483,0.0,0.006534417939652724,0.00412899328872937,0.00044525813756500336,0.001706984312431563,0.0,0.0002532596977743331,0.0034664727390742982,0.00044525813756500336,0.0014674415566725471,0.0,0.0,0.0006625205496550715,0.00023954275575901576,0.0002532596977743331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.718960916969386e-05,0.0,0.0,0.0006410201524751052,0.0002634076130507481,0.0007182097616447989,0.00041309233306374623,5.306048444836866e-05,0.00017487195253190925,0.0,0.0,4.4265904329479306e-05,1.6004902360793137e-05,1.692139143159883e-05,0.0,0.0,0.0,0.0004538251628711857,4.893913181010328e-05,0.0001876177507293081,0.0,2.7836234053679835e-05 +100643,50.0,the Greater Atlanta and Macon Area,G1300150960401,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,44720.0,,811.0,5179.0,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.0050307466067532804,0.00030150148537057617,0.0006226871700173704,0.005954935262141227,0.0029114015685392123,0.0008575801149237363,0.0020632373205920923,0.0,0.0001227162580861862,0.002288714398521842,0.0008575801149237363,0.0017617358352215162,0.0,0.0001227162580861862,0.0,0.00030150148537057617,0.0,0.0,0.0,0.0,0.0,0.0006226871700173704,0.0,0.0,2.0144625874622977e-05,0.0,5.021824052962157e-05,0.0005995066709968232,0.00020844456600017716,0.0006698695374010676,0.0002727427273077952,0.00010219656047093291,0.00020994346730396875,0.0,1.4623915914126356e-05,0.0,2.0144625874622977e-05,0.0,5.0218240529621576e-05,0.0,0.0,0.00032750300986560956,9.646902436043537e-05,0.00023209317459425727,0.0,1.3804328580765354e-05 +100687,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2004,gen3_t5_cfl,10001_25000,Electricity,58558.0,,805.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006587542028644251,0.0002991378315204791,0.0,0.00688667986016473,0.003932461283357366,0.0005905259782865417,0.0022472535850857137,0.0,0.0001164390134351088,0.003932461283357366,0.0005905259782865417,0.0019481157535652343,0.0,0.0001164390134351088,0.0,0.0002991378315204791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9987112495260198e-05,0.0,0.0,0.0007850226524027372,0.0002470793466789799,0.0008050097648979976,0.0004686226173144593,7.037166029020819e-05,0.00023215259794950836,0.0,1.3875776848561396e-05,0.0,1.9987112495260198e-05,0.0,0.0,0.0,0.0,0.0004596801067372788,6.902879015712483e-05,0.0002626898762436097,0.0,1.3610991759984262e-05 +101145,50.0,the Greater Atlanta and Macon Area,G1300890023310,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,54769.0,,772.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.00606978559020168,0.00028708707172736135,0.0,0.0063568726619290415,0.0029128740086425513,0.001138118703033616,0.0021842098996085347,0.0,0.00012170879906811205,0.0029128740086425513,0.001138118703033616,0.0018971228278811733,0.0,0.00012170879906811205,0.0,0.00028708707172736135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9182028157896313e-05,0.0,0.0,0.0007233257683584201,0.000233615777264784,0.0007425077965163166,0.00034712211809159423,0.0001356276219515565,0.00022607682046670995,0.0,1.4503825430676799e-05,0.0,1.9182028157896313e-05,0.0,0.0,0.0,0.0,0.0003402351717126426,0.00013293675291382314,0.00025512433014433116,0.0,1.4216067714228463e-05 +101221,50.0,the Greater Atlanta and Macon Area,G1301210009602,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,380741.0,,12635.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,613226.2692080382,0.0,0.0,0.04283161642391356,0.004695843980091169,0.0,0.04752746040400473,0.020728740535842095,0.009048958151918265,0.016857308019925757,0.0,0.0008924536963186107,0.01936487351591232,0.009048958151918265,0.01441778475608297,0.0,0.0,0.0013638670199297696,0.0024395232638427878,0.0008924536963186107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003137499589433977,0.0,0.0,0.005104159424955958,0.001561959704701281,0.005417909383899354,0.0023076738615481996,0.0010783465321509218,0.0017181390312568361,0.0,0.0,9.112594526594803e-05,0.00016299526285736568,5.9628750820083975e-05,0.0,0.0,0.0,0.002362979989061034,0.0010315391327254569,0.0019216546925099726,0.0,0.00010173556960289092 +101306,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,319811.0,,69927.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.1507295047425984,0.06055036273795659,0.0,0.21127986748055502,0.0642266392753137,0.028617376647692268,0.07575299989097957,0.0006637357899523436,0.042019206156240343,0.058019554060082,0.028617376647692268,0.04226178750384671,0.0006637357899523436,0.02116714102064831,0.0062070852152316955,0.03349121238713285,0.020852065135592037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004045622320549349,0.0,0.0,0.01796214351914287,0.008854601545399658,0.02200776583969222,0.006914078028210575,0.0034102774195737397,0.005036255468469517,7.909611020267814e-05,0.0025224472511344294,0.00041472125610490855,0.0022376876082809746,0.0013932134561634659,0.0,0.0,0.0,0.006690106609289561,0.0029809017381490516,0.00789073896692189,6.91374053708108e-05,0.004376890523851733 +101372,50.0,the Greater Atlanta and Macon Area,G1301210005000,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,40208.0,,3002.0,,4.088175128053588,Healthcare,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.004460912286761032,0.0011158383593646679,0.0,0.005576750646125699,0.0031712484983548003,0.000437159716996638,0.0017829699714486172,0.0,0.00018537245932564403,0.002490361195831761,0.000437159716996638,0.0015333526255088602,0.0,0.0,0.0006808873025230388,0.0002496173459397573,0.00018537245932564403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.455355948626209e-05,0.0,0.0,0.0005315966472295208,0.0002367156336664888,0.0006061502067157828,0.0002967706103577963,5.209531703837961e-05,0.00018272610227289116,0.0,0.0,4.5492764777323946e-05,1.6677918887748738e-05,1.2385464756130078e-05,0.0,0.0,0.0,0.000344690493587034,4.751592273708996e-05,0.00019379521971498467,0.0,2.01485706766742e-05 +101418,50.0,the Greater Atlanta and Macon Area,G1301130140204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,54249.0,,3420.0,,4.088175128053588,Healthcare,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.006053162516403457,0.001270870802876771,0.0,0.007324033319280228,0.004395311205314895,0.0008231715146141267,0.0019683036823504893,0.0,0.00013728566542448928,0.003546643227858738,0.0008231715146141267,0.0016833477739305928,0.0,0.0,0.000848667977456157,0.00028495590841989685,0.00013728566542448928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.491252610204366e-05,0.0,0.0,0.0007213449326862124,0.0002757574291065111,0.0008062574587882562,0.00042264735392927164,9.809592906012723e-05,0.0002006016496968136,0.0,0.0,5.670327906235015e-05,1.9039170588280665e-05,9.172665405803424e-06,0.0,0.0,0.0,0.000483852583473637,9.061785283970962e-05,0.00021667835956970107,0.0,1.5112928479151343e-05 +101451,50.0,the Greater Atlanta and Macon Area,G1301210010604,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,493248.0,,168418.0,,9.525004485617233,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.23498133808438368,0.14583517552868566,0.0,0.38081651361306934,0.2348664121240179,0.0081589306693625,0.09444331944844202,0.0006580481736891502,0.042689983756804266,0.14284664916105885,0.0081589306693625,0.06167199677690763,0.0006580481736891502,0.021645803582988805,0.09201976296295904,0.032771322671534375,0.02104418017381546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009743855475277076,0.0,0.0,0.028002274205691763,0.018229885238052,0.03774612968096884,0.017022760495711265,0.000972284078775107,0.007349333264666925,7.841833547471347e-05,0.002579488789512855,0.006148223622523506,0.00218958855905304,0.0014060493256581681,0.0,0.0,0.0,0.023279710130282547,0.0008087045705604652,0.009361121842064245,6.522503833862871e-05,0.00423138599656432 +101702,35.0,Eastern Counties in South Carolina and Georgia,G1300730030302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,54718.0,,2077.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.005908747141004904,0.0007717523562685728,0.0,0.006680499497273477,0.003789557096485924,0.0006977816152876668,0.002038283335682871,0.0,0.0001548387013932428,0.0034340403083770654,0.0006977816152876668,0.0017768864689164004,0.0,0.0,0.0003555167881088596,0.00026139686676647045,0.0001548387013932428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.156412341272906e-05,0.0,0.0,0.0007041346559864288,0.00024673852144483857,0.000755698779399158,0.00040922834121674397,8.315336667980595e-05,0.00021174833051065427,0.0,0.0,2.375361913499971e-05,1.746505882122158e-05,1.0345445456507774e-05,0.0,0.0,0.0,0.00042867508237170326,7.893312695783836e-05,0.00023057081726805703,0.0,1.7515369575939697e-05 +101732,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock 90.1-2004,gen3_t5_cfl,10001_25000,Electricity,61741.0,,775.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.006520623500789863,0.00028821077601675173,0.0,0.0068088342768066155,0.004048667806249842,0.0005431366560132844,0.0020559526169229405,0.0,0.00016103844919677606,0.004048667806249842,0.0005431366560132844,0.0017677418409061888,0.0,0.00016103844919677606,0.0,0.00028821077601675173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9256872140569843e-05,0.0,0.0,0.0007770498202823194,0.00021922805660452496,0.0007963066924228892,0.000482471743821456,6.472452226274667e-05,0.00021065830278581477,0.0,1.9190633839193487e-05,0.0,1.9256872140569843e-05,0.0,0.0,0.0,0.0,0.0004734997414309095,6.352091070226691e-05,0.0002404477420954255,0.0,1.8833766489164674e-05 +101835,50.0,the Greater Atlanta and Macon Area,G1301390001606,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,45895.0,,776.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005182717924787389,0.00028840451813561213,0.0,0.005471122442923001,0.0027789207076624614,0.0005858761674338918,0.0019883366174406566,0.0,0.0001179889503859921,0.0027789207076624614,0.0005858761674338918,0.0016999320993050441,0.0,0.0001179889503859921,0.0,0.00028840451813561213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9270117910165254e-05,0.0,0.0,0.0006176151336933126,0.00022062081288474645,0.0006368852516034779,0.0003311589612426136,6.981780462077776e-05,0.0002025778377326813,0.0,1.4060530097239966e-05,0.0,1.9270117910165254e-05,0.0,0.0,0.0,0.0,0.00032349003930172687,6.820097597838881e-05,0.00023145931754993673,0.0,1.3734918773425522e-05 +101935,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,126239.0,,3443.0,23356.0,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,306613.1346040191,0.0,0.0,0.025308726728854734,0.00127978294034435,0.0028083695097292443,0.029396879178928328,0.016855254353465837,0.0033569696934943926,0.008845645172386146,0.0,0.0003389712111581802,0.014046884843736595,0.0033569696934943926,0.007565862232041797,0.0,0.0003389712111581802,0.0,0.00127978294034435,0.0,0.0,0.0,0.0,0.0,0.0028083695097292443,0.0,0.0,8.55077167648102e-05,0.0,0.00022649119058686153,0.0030159938521168027,0.0012146980056513843,0.0033279927594684748,0.0016739411185708185,0.0004000438293791508,0.000901609718350037,0.0,4.039456823926601e-05,0.0,8.55077167648102e-05,0.0,0.00022649119058686153,0.0,0.0,0.0019081673298008473,0.00038003934926917373,0.0010014070849952564,0.0,3.837460873096014e-05 +102450,50.0,the Greater Atlanta and Macon Area,G1301210010115,ComStock 90.1-2007,gen4_led,over_1mil,NaturalGas,2342765.0,,562467.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,7402799.734385718,0.0,0.0,0.48322834210626076,0.37853029934930416,0.0,0.861758641455565,0.56140506610409,0.05852568169839933,0.1914551748390614,0.00101402462718602,0.0493586240218249,0.22066353256322582,0.05852568169839933,0.18335497603713158,0.00101402462718602,0.01966998685031149,0.3407415335408642,0.008100198801929841,0.029688637171513415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.025291184634938676,0.0,0.0,0.0575853877566275,0.04364497365408387,0.08287657239156618,0.02629604677369342,0.006974392395184011,0.02185005818612262,0.00012083935535891254,0.002344034323412827,0.02276635992518465,0.0005412079926797894,0.001983621405090117,0.0,0.0,0.0,0.053991135526508915,0.0056284992835702865,0.018412520506308833,9.752021201651786e-05,0.004746890115291982 +102805,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,83902.0,,3328.0,,4.088175128053588,Healthcare,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.009080615614140057,0.0012369659320761988,0.0,0.010317581546216256,0.004245122314774302,0.0011151408877367705,0.004632645300918901,0.0,0.0003247117912100538,0.0036547900786066206,0.0011151408877367705,0.003986011605010383,0.0,0.0003247117912100538,0.0005903322361676812,0.0006466336959085174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.264707293784665e-05,0.0,0.0,0.0010821185913675068,0.0003760028663885069,0.0011647656643053535,0.0004355339395103633,0.00013288908350387235,0.00047500493870391056,0.0,3.869524722062791e-05,3.9442663791250616e-05,4.320440914659602e-05,0.0,0.0,0.0,0.0,0.00047923757044003026,0.0001258897553734495,0.0005229855618049098,0.0,3.665715104866419e-05 +102867,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Propane,313055.0,,6745.0,34883.0,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,613226.2692080382,0.0,0.0,0.03521731866215665,0.00250690677278244,0.004194323131209101,0.04191850981772443,0.019601471391464658,0.004291930410690977,0.01728524561206464,0.0,0.0007398624035041488,0.016147049412183482,0.004291930410690977,0.014778338839282198,0.0,0.0,0.0,0.00250690677278244,0.0,0.0,0.0,0.0,0.0,0.0034544219792811805,0.0007398624035041488,0.0,0.0001674955718374921,0.0,0.000338266502616063,0.004196777704923661,0.0014985297959962415,0.004702539779377216,0.0019242117102506997,0.0005114607966456893,0.001761105198027272,0.0,0.0,0.0,0.0001674955718374921,0.0,0.0002785944727998709,5.966890480808452e-05,0.0,0.00219894980411999,0.00048148117798927894,0.00193910889104817,0.0,8.299990621977622e-05 +102903,50.0,the Greater Atlanta and Macon Area,G1300590001700,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,60091.0,,812.0,,4.088175128053588,Healthcare,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.006241944837021044,0.0003018502211845249,0.0,0.006543756309781797,0.003031056701147404,0.001129981534041478,0.002261590501881384,0.0,0.00012112757271153081,0.003031056701147404,0.001129981534041478,0.0019597402806968596,0.0,0.00012112757271153081,0.0,0.0003018502211845249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0166845742860205e-05,0.0,0.0,0.0007438391917664973,0.00021162833444149804,0.0007640060375093574,0.0003612045325052765,0.00013465747822815084,0.00023353805016346478,0.0,1.4434513302969607e-05,0.0,2.0166845742860205e-05,0.0,0.0,0.0,0.0,0.0003538862864205638,0.00013192922740586622,0.00026404846330055516,0.0,1.4142060382372196e-05 +102906,85.0,Rural Climate Zone 3A,G1301410480400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,42223.0,,727.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.0044916785352360645,0.000270076513691417,0.0,0.004761793797351256,0.0020454905425044785,0.0007219606317214465,0.0018827859110855027,0.0,0.00011151796361605426,0.0020454905425044785,0.0007219606317214465,0.0016127093973940857,0.0,0.00011151796361605426,0.0,0.000270076513691417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8046122648196188e-05,0.0,0.0,0.0005352654967052923,0.00014516137913699685,0.0005533116193534884,0.00024375754022701781,8.603478924605119e-05,0.0001921837660165656,0.0,1.3289401215657754e-05,0.0,1.8046122648196188e-05,0.0,0.0,0.0,0.0,0.00023768221233665305,8.389048817474321e-05,0.00021877623553084868,0.0,1.2958180816171689e-05 +102952,50.0,the Greater Atlanta and Macon Area,G1300590001800,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,514138.0,,104878.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1110419.9601578575,0.0,0.0,0.10274331593099648,0.07058129222938794,0.0,0.17332460816038442,0.11123664924622019,0.015265378770350075,0.03821319391319008,0.0010088324169444088,0.007600553813679659,0.04732818915734187,0.015265378770350075,0.03601899393108648,0.0010088324169444088,0.0031219216552736493,0.06390846008887832,0.002194199982103599,0.004478632158406009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004715830334668244,0.0,0.0,0.012243721309138096,0.008438304522881081,0.016959551643806338,0.005640008333951823,0.0018191455244458625,0.0042923135148172946,0.00012022059876855827,0.00037203333715455777,0.004269990605294996,0.00014660364678934415,0.0002992360825839037,0.0,0.0,0.0,0.010884338453715494,0.0014936943020719348,0.003739103422901376,9.871273131212093e-05,0.00074370273380541 +103175,35.0,Eastern Counties in South Carolina and Georgia,G1300510004001,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,58709.0,,734.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006455371155157676,0.00027282765177923487,0.0,0.006728198806936911,0.003961328859067567,0.0005518937997857752,0.00210803049847262,0.0,0.0001069456496109485,0.003961328859067567,0.0005518937997857752,0.0018352028466933846,0.0,0.0001069456496109485,0.0,0.00027282765177923487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8229625017226262e-05,0.0,0.0,0.0007692724767468512,0.0002464251175980719,0.0007875021017640773,0.00047206290535114126,6.57679783327755e-05,0.0002186971136556142,0.0,1.2744479407320117e-05,0.0,1.8229625017226262e-05,0.0,0.0,0.0,0.0,0.0004636537789397779,6.459641573518327e-05,0.000246734452379497,0.0,1.2517454709619173e-05 +103482,50.0,the Greater Atlanta and Macon Area,G1301210001900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,421946.0,,60115.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.0,0.10414350384550668,0.05205432795547085,0.0,0.15619783180097757,0.09408355514988921,0.01224435445917662,0.030365641551450037,0.0006377352584634596,0.018866725941244653,0.06277178314703812,0.01224435445917662,0.018908435127174737,0.0006377352584634596,0.009581286133276969,0.031311772002851096,0.0114572064242753,0.009285439807967685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034779665644916594,0.0,0.0,0.01241058188085149,0.006932565693505597,0.01588854844534315,0.007480393167000036,0.0014591362685396807,0.0022532819976240443,7.599768925777538e-05,0.0011417835168797345,0.0020920699657108292,0.0007655037041337996,0.0006203989266048599,0.0,0.0,0.0,0.009570242471827788,0.0012455039661143593,0.0030888134700799304,6.487085916986907e-05,0.0019191360447591175 +103485,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,56089.0,,750.0,,4.088175128053588,Healthcare,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.005981051699763611,0.0002788724058876798,0.0,0.006259924105651291,0.003171984718406469,0.0010486485925438765,0.0019331976104129827,0.0,0.0001060544358641906,0.003171984718406469,0.0010486485925438765,0.0016543252045253026,0.0,0.0001060544358641906,0.0,0.0002788724058876798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.863139182378582e-05,0.0,0.0,0.0007127509095718164,0.00018674987996498822,0.0007313823013956022,0.00037799957376751436,0.00012496552039274189,0.00019714288614151138,0.0,1.2638311691790806e-05,0.0,1.863139182378582e-05,0.0,0.0,0.0,0.0,0.00037060089614272335,0.0001225195398579363,0.00022586639925552604,0.0,1.2390938942141363e-05 +103540,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,92285.0,,846.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.010042351492163154,0.00031452095575799596,0.0,0.010356872447921148,0.007147379255303303,0.0009501500993152421,0.0021399979480845885,0.0,0.000119345145218015,0.007147379255303303,0.0009501500993152421,0.0018254769923265923,0.0,0.000119345145218015,0.0,0.00031452095575799596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1014359618602894e-05,0.0,0.0,0.0011967283767895928,0.00036433045443572636,0.0012177427364081954,0.0008517399118297826,0.00011322762272833685,0.00021753870292217595,0.0,1.4222139309297234e-05,0.0,2.1014359618602894e-05,0.0,0.0,0.0,0.0,0.0008403762058735437,0.00011171696742976734,0.00025161717210599855,0.0,1.4032390998885993e-05 +103572,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,555253.0,,4119.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,2590979.907035001,0.20264179180461284,0.03104303222953803,0.1443254824759563,0.0027720087839910113,0.0,0.3807823854591015,0.26413748792621705,0.02957307541113594,0.07079873357450624,0.0010069379618562533,0.015266150585385987,0.030452663892066183,0.02957307541113594,0.06802672479051523,0.0010069379618562533,0.015266150585385987,0.0,0.0027720087839910113,0.0,0.03104303222953803,0.0,0.0,0.20264179180461284,0.0,0.0,0.0,0.0001852112525729621,0.0,0.0,0.017198990785391857,0.00571427776934163,0.017384202037964817,0.0036289855172147844,0.003524166645876687,0.008106614249686448,0.00011999486459580745,0.0018192378694469238,0.0,0.0001852112525729621,0.0,0.0,0.0,0.0,0.012058907216450119,0.0013501263122014209,0.00323223850548479,4.597064790037603e-05,0.0006969593559281105 +103635,50.0,the Greater Atlanta and Macon Area,G1300630040203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,500001_1mil,NaturalGas,1257880.0,,98460.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,5552099.800789288,0.0,0.0,0.46417117639446587,0.0662615838033772,0.0,0.5304327601978432,0.27665464384868294,0.07524677379148871,0.14440041869944337,0.0010143052871990801,0.03311668873603233,0.23591691311801757,0.07524677379148871,0.14026454258198695,0.0010143052871990801,0.011728641615773647,0.040737730730665375,0.004135876117456403,0.021388047120258685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004427212833792669,0.0,0.0,0.055314386560407505,0.020616788244472637,0.05974159939420017,0.028113764903958997,0.008967013344638975,0.01671505583212958,0.0001208728107208339,0.0013976796689591279,0.002721857733518279,0.00027633513681944846,0.0014290246514715135,0.0,0.0,0.0,0.03115906886518195,0.008474896259952756,0.016263535387745068,0.00011423921122191838,0.0037298675726449015 +103858,50.0,the Greater Atlanta and Macon Area,G1301210001202,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,246088.0,,16152.0,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,863994.0691636442,0.0,0.0,0.03900460569179566,0.008457576463799564,0.0,0.04746218215559524,0.02387773027002683,0.00989863682049442,0.01257957904417279,0.0,0.0011062360209011905,0.016526389827128455,0.00989863682049442,0.01257957904417279,0.0,0.0,0.007351340442898376,0.0,0.0011062360209011905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005650858650489752,0.0,0.0,0.004648104870328406,0.0020442798561317458,0.005213190735377381,0.0019694185258890945,0.0011796017726345084,0.0014990845718048033,0.0,0.0,0.0004911736348143518,0.0,7.391223023462339e-05,0.0,0.0,0.0,0.002622702045545735,0.0010872547241147755,0.0013817262913247224,0.0,0.00012150767439214677 +103894,35.0,Eastern Counties in South Carolina and Georgia,G1300510004208,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,50536.0,,1435.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.008005463099736078,0.0005332945563751753,0.0,0.008538757656111251,0.0047983335609683275,0.001036287845360582,0.0025182213125238885,0.0,0.00018583744041090905,0.0047983335609683275,0.001036287845360582,0.002170802944983394,0.0,0.0,0.0,0.00034741836754049424,0.00018583744041090905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5631337970209176e-05,0.0,0.0,0.0009539964708289015,0.0003170452227857856,0.0009896278087991107,0.0005718086793972698,0.00012349253689889272,0.0002586906369535846,0.0,0.0,0.0,2.3212277573268584e-05,1.2416471474614781e-05,0.0,0.0,0.0,0.0005561188780700126,0.00012010403749488762,0.00029185766126066604,0.0,2.153825021782385e-05 +103998,50.0,the Greater Atlanta and Macon Area,G1300570091008,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,52143.0,,2935.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.005865813887465437,0.0010908843744554465,0.0,0.006956698261920883,0.003819315885942884,0.0008140656350276872,0.0022068389790914312,0.0,0.00011647776185888086,0.003020323387762537,0.0008140656350276872,0.0019149471028163316,0.0,0.00011647776185888086,0.000798992498180347,0.0002918918762750996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.288535921486558e-05,0.0,0.0,0.0006990194618298024,0.00027447934849820084,0.000771904821044668,0.0003599270057949267,9.701087232023831e-05,0.00022820111904736914,0.0,1.3880464667268143e-05,5.338316012540505e-05,1.950219908946053e-05,0.0,0.0,0.0,0.0,0.0004237855710357857,9.03275037476115e-05,0.00024486754823826545,0.0,1.2924198023005386e-05 +104168,35.0,Eastern Counties in South Carolina and Georgia,G1302450001601,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,66366.0,,3577.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,71543.06474093779,0.0,0.0,0.00746581380186228,0.0013295359164677044,0.0,0.008795349718329985,0.006123180918159611,0.0005386418388557229,0.0019702798519628663,0.0,0.0001632471093517848,0.0052422355037013086,0.0005386418388557229,0.0016849364593052483,0.0,0.0,0.0008809454144583022,0.00028534339265761765,0.0001632471093517848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.883124661330194e-05,0.0,0.0,0.0008896879650688855,0.0003885636311613591,0.0009785192116821874,0.0006247080306953945,6.418900527534893e-05,0.00020079092909814204,0.0,0.0,5.885924433881498e-05,1.9064854863032046e-05,1.0907147411454919e-05,0.0,0.0,0.0,0.0006812293265085334,5.992614329339293e-05,0.00021920182247194047,0.0,1.8161919408320582e-05 +104261,35.0,Eastern Counties in South Carolina and Georgia,G1300730030102,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,63595.0,,2404.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,71543.06474093779,0.0,0.0,0.006919577271947228,0.0008935774006080012,0.0,0.007813154672555228,0.004680964585362689,0.0010591881638098832,0.0019443184080355702,0.0,0.000128722263770859,0.0041968417787542865,0.0010591881638098832,0.0016635473293830582,0.0,0.0,0.0004841228066084024,0.00028077107865251183,0.000128722263770859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9703152176233604e-05,0.0,0.0,0.0008245923793318018,0.000281988443337019,0.0008842955315080354,0.0005001293593543818,0.0001262213649520084,0.0001982416550254115,0.0,0.0,3.2346003351539944e-05,1.875933570395857e-05,8.600402043686223e-06,0.0,0.0,0.0,0.000529793180790807,0.00011987928046187799,0.00022005862575511664,0.0,1.4568830060155793e-05 +104287,50.0,the Greater Atlanta and Macon Area,G1301350050435,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Propane,48932.0,,765.0,1432.0,4.088175128053588,Healthcare,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.005263508388352183,0.00028429718521577136,0.00017219799524313592,0.005719964820387317,0.00260645147345292,0.0007767896513589436,0.0021645644487560886,0.0,0.00017219799524313592,0.00260645147345292,0.0007767896513589436,0.001880267263540317,0.0,0.0,0.0,0.00028429718521577136,0.0,0.0,0.0,0.0,0.0,0.0,0.00017219799524313592,0.0,1.8994449196250083e-05,0.0,1.388798333542525e-05,0.0006272402644401995,0.00018622517443676257,0.0006601226969718748,0.00031060486482305716,9.256824733309292e-05,0.00022406715228404916,0.0,0.0,0.0,1.8994449196250083e-05,0.0,0.0,1.388798333542525e-05,0.0,0.00030080216053943366,8.9646789051438e-05,0.0002498054038006399,0.0,1.9872815411013642e-05 +104339,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,41826.0,,753.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005085459381119461,0.00027976361963443766,0.0,0.005365223000753898,0.0024709482355219476,0.0007343213789047409,0.0019960088053475283,0.0,0.00016398332940345436,0.0024709482355219476,0.0007343213789047409,0.0017162451857130909,0.0,0.00016398332940345436,0.0,0.00027976361963443766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8693119263884368e-05,0.0,0.0,0.0006060234056282004,0.00019232595108163974,0.0006247165248920848,0.0002944576591018547,8.750752085871267e-05,0.00020452129776128445,0.0,1.9541545473804656e-05,0.0,1.8693119263884368e-05,0.0,0.0,0.0,0.0,0.0002877125880259951,8.550300703603057e-05,0.00023241152965226142,0.0,1.909391197174193e-05 +104458,50.0,the Greater Atlanta and Macon Area,G1301210011000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,164237.0,,3106.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,306613.1346040191,0.0,0.0,0.03300807728079135,0.00115419929889903,0.0,0.03416227657969038,0.021135443991753874,0.0037723915447548913,0.008963711619619683,0.0,0.0002907294235619372,0.021135443991753874,0.0037723915447548913,0.0078095123207206525,0.0,0.0002907294235619372,0.0,0.00115419929889903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.711556202542363e-05,0.0,0.0,0.0039335097025921684,0.001254767247841912,0.004010625264617592,0.0025186706060742734,0.0004495487155171333,0.0009306447093161708,0.0,3.464567168459111e-05,0.0,7.711556202542363e-05,0.0,0.0,0.0,0.0,0.002481285035395801,0.00044287589564269246,0.0010523329205690424,0.0,3.413141301005714e-05 +104480,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,43729.0,,3078.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.005731938083332891,0.0011441247087182883,0.0,0.006876062792051179,0.0037526298486311306,0.0008749006603498573,0.0021014045180075937,0.0,0.00014712776506259833,0.003063605377115954,0.0008749006603498573,0.00179343204586708,0.0,0.0,0.0006890244715151761,0.00030797247214051397,0.00014712776506259833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.644400033488883e-05,0.0,0.0,0.0006830648780411656,0.0002772445896262148,0.0007595088783760545,0.0003650844099957866,0.00010426035734714745,0.00021372011069823165,0.0,0.0,4.603675327513778e-05,2.0576994434304075e-05,9.830252625446977e-06,0.0,0.0,0.0,0.0004145040226492916,9.663885268775534e-05,0.0002321147198264913,0.0,1.6251283212516363e-05 +104539,50.0,the Greater Atlanta and Macon Area,G1300570090602,ComStock 90.1-2007,gen4_led,10001_25000,Propane,46591.0,,648.0,8257.0,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.006135154181105184,0.00024089895059103866,0.0009928508623120776,0.007368903994008299,0.005022880676727548,0.000450256684231602,0.0017179113679352902,0.0,0.00017789401353763206,0.00420788507952933,0.000450256684231602,0.0014770124173442518,0.0,0.0,0.0,0.00024089895059103866,0.0,0.0,0.0,0.0,0.0,0.0008149955971982173,0.00017789401353763206,0.0,1.609565615296779e-05,0.0,8.007258051326904e-05,0.0007311135877369302,0.0003178401637708598,0.0008272818244031671,0.000501444929738538,5.365615436771317e-05,0.00017601250363067907,0.0,0.0,0.0,1.609565615296779e-05,0.0,6.572870413049164e-05,1.434700141031175e-05,0.0,0.0005639017543696201,5.0548788732179664e-05,0.00019286407473676292,0.0,1.9971556718540173e-05 +104669,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,997501.0,,214594.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,2590979.907035001,0.0,0.0,0.19751146709588135,0.1444181002802661,0.0,0.3419296375411508,0.23469527024617037,0.02069530804302318,0.0678163701107267,0.0010032192166832075,0.01771939975954403,0.1077077004070062,0.02069530804302318,0.060910379664367444,0.0010032192166832075,0.007194859764801332,0.12698756983916418,0.0069059904463592585,0.010524539994742694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009649175424627092,0.0,0.0,0.02353706201526665,0.017185772259088593,0.03318623743989374,0.01283531969701181,0.002466220093424848,0.007258572905226264,0.00011955170636506439,0.0008573976132386649,0.008484569010028815,0.00046141801594398073,0.0007031883986542979,0.0,0.0,0.0,0.022778525489683777,0.002008598644874282,0.00658196866756084,9.736819355153544e-05,0.0017197696343062812 +104718,50.0,the Greater Atlanta and Macon Area,G1301210010115,ComStock 90.1-2004,gen4_led,100001_200000,NaturalGas,483531.0,,25574.0,,4.088175128053588,Healthcare,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,613226.2692080382,0.0,0.0,0.05249082350181836,0.009504600867054186,0.0,0.06199542436887254,0.03744322186574396,0.0044718005938409865,0.019252929319634772,0.0,0.0008274725896528279,0.031329689305103596,0.0044718005938409865,0.016689294854450004,0.0,0.0,0.006113532560640362,0.002563634465184769,0.0008274725896528279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006350428888304448,0.0,0.0,0.006255228391198104,0.0024317814474363675,0.006890271280028548,0.0037334975707117796,0.0005328956981100075,0.0019888305048027244,0.0,0.0,0.0004084711638681701,0.00017128734382938998,5.528697008020771e-05,0.0,0.0,0.0,0.004161499963581336,0.0004970031178176369,0.002139801562744131,0.0,9.196663588544473e-05 +93594,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,87894.0,,3755.0,,3.3063363735822096,Lodging,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,123987.61400933286,0.0,0.0,0.008910559219406994,0.0011285135175867554,0.0,0.010039104075015955,0.002691215332809358,0.001916602099971908,0.0038676446863459665,0.0,0.0015636106178665175,0.002691215332809358,0.001916602099971908,0.0027391311687592116,0.0,0.0015636106178665175,0.0,0.0011285135175867554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.540156788769087e-05,0.0,0.0,0.0010618557282063078,0.0005044849957101924,0.0011372572960939985,0.0003207074153950175,0.00022839811379232947,0.0003264174616022556,0.0,0.00018633273741670527,0.0,7.540156788769087e-05,0.0,0.0,0.0,0.0,0.0003048682680971824,0.00021711795251994808,0.0004381374179786202,0.0,0.0001771301074409786 +93595,85.0,Rural Climate Zone 3A,G1302710950100,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,74404.0,,389.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,120171.9144447585,0.0,0.0,0.006084287571373257,0.00011323277870393879,0.0,0.006197520350077195,0.004084186048397299,0.0013306066441690317,0.0007827580311103022,0.0,0.0,0.00397095326969336,0.0013306066441690317,0.0007827580311103022,0.0,0.0,0.00011323277870393879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.565208532350567e-06,0.0,0.0,0.00072505320600872,0.00020488315291444212,0.0007326184145410706,0.00047321109749126134,0.00015856591293128325,9.327981515139017e-05,0.0,0.0,7.565208532350567e-06,0.0,0.0,0.0,0.0,0.0,0.00048279791569063907,0.00015729305834659958,9.253103101374676e-05,0.0,0.0 +93596,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030401,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5464.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013119823107266338,0.0,0.0,0.0013119823107266338,0.0005381749288216733,0.00044512947086495255,0.00027194085845484283,0.0,5.665434551142559e-05,0.0005381749288216733,0.00044512947086495255,0.00027194085845484283,0.0,5.665434551142559e-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.00015634344689031696,5.63037771110835e-05,0.00015634344689031696,6.413205628918188e-05,5.304421806491116e-05,3.240605518346858e-05,0.0,6.751261496555955e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.413205628918188e-05,5.304421806491116e-05,3.240605518346858e-05,0.0,6.751261496555955e-06 +93597,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,69168.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006178584987885013,0.0,0.0,0.006178584987885013,0.00224933331437753,0.0016459756545646935,0.0022832453293364914,0.0,0.0,0.00224933331437753,0.0016459756545646935,0.0022832453293364914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007362888677591208,0.0002533211250316325,0.0007362888677591208,0.0002680482800678964,0.00019614742751533553,0.0002720895029606013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002680482800678964,0.00019614742751533553,0.0002720895029606013,0.0,0.0 +93598,85.0,Rural Climate Zone 3A,G1302930010500,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,37827.0,,1082.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,14029.891188970922,0.0,0.0,0.0018757481257116466,0.00018400569081730795,0.0,0.002059753816528954,0.0010239815630923095,0.0003225152742307605,0.00043767397165400343,0.0,0.00027558300755188076,0.0010239815630923095,0.0003225152742307605,0.00025366828083669545,0.0,0.00027558300755188076,0.0,0.00018400569081730795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2293752058581235e-05,0.0,0.0,0.00022352974571180468,8.142975020791875e-05,0.00023582349777038589,0.00012202615866923003,3.8433602171199666e-05,3.022922189463186e-05,0.0,3.2840762976743075e-05,0.0,1.2293752058581235e-05,0.0,0.0,0.0,0.0,0.00011723678428121559,3.69251312672123e-05,5.0109778193025594e-05,0.0,3.1551804028932426e-05 +93599,85.0,Rural Climate Zone 3A,G1302610950800,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,307320.0,,5466.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.014995985081852261,0.0009294610063620081,0.0,0.015925428357852846,0.007380989885915201,0.003726283677483977,0.002454077054510928,0.0,0.0023640777399427403,0.006847625153677173,0.003726283677483977,0.0020579985107483686,0.0,0.0023640777399427403,0.0005333647322380284,0.0003960785437625595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.21005883276495e-05,0.0,0.0,0.001787042430122993,0.0005758975065462436,0.0018491430184506426,0.0008160181960975324,0.0004440539919179558,0.0002452476872818416,0.0,0.000281722554825663,3.563599057785571e-05,2.6463413121425392e-05,0.0,0.0,0.0,0.0,0.0008570259844888131,0.00043266851554347064,0.0002849492867707472,0.0,0.00027449923164761167 +93600,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,NaturalGas,64960.0,,6734.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005163147421224557,0.0019618307876843903,0.0,0.007124978208908948,0.005263258804971387,0.0013707301690263022,0.0004909892349112581,0.0,0.0,0.003301428017286997,0.0013707301690263022,0.0004909892349112581,0.0,0.0,0.0019618307876843903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001310782309207717,0.0,0.0,0.0006152807427500192,0.00024156969806308535,0.0007463589736707908,0.00039342380081223733,0.0001633468517752172,5.851009016256476e-05,0.0,0.0,0.0001310782309207717,0.0,0.0,0.0,0.0,0.0,0.000551339291807285,0.0001435873531311083,5.1432328732397455e-05,0.0,0.0 +93601,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5097.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001223816570120532,0.0,0.0,0.001223816570120532,0.0007403937241142799,0.0002446475241208714,0.00019369996669745798,0.0,4.499264811418324e-05,0.0007403937241142799,0.0002446475241208714,0.00019369996669745798,0.0,4.499264811418324e-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.000145844437568127,4.669981042109499e-05,0.000145844437568127,8.823406130363403e-05,2.9155088621106965e-05,2.308357591299273e-05,0.0,5.361855378594383e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.823406130363403e-05,2.9155088621106965e-05,2.308357591299273e-05,0.0,5.361855378594383e-06 +93602,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5601.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011450794359207112,0.0,0.0,0.0011450794359207112,0.0007393185321556691,0.0001870006937245741,0.00017533899632733173,0.0,4.34212137131364e-05,0.0007393185321556691,0.0001870006937245741,0.00017533899632733173,0.0,4.34212137131364e-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.00013645689894213812,3.9070021053839414e-05,0.00013645689894213812,8.810315779297745e-05,2.2284510545913636e-05,2.0894808649861523e-05,0.0,5.17442195338552e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.810315779297745e-05,2.2284510545913636e-05,2.0894808649861523e-05,0.0,5.17442195338552e-06 +93603,50.0,the Greater Atlanta and Macon Area,G1300770170503,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,74655.0,,1686.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006651695958570398,0.0004963123130464493,0.0,0.007147977582010551,0.003120396409925228,0.001448365279613785,0.0025792158924715374,0.0,0.0,0.002624084096878779,0.001448365279613785,0.0025792158924715374,0.0,0.0,0.0004963123130464493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3159726092317814e-05,0.0,0.0,0.0007926683353343679,0.0002823670120250666,0.0008258280614266857,0.00031270647152329187,0.00017259858272209762,0.0003073596238744444,0.0,0.0,3.3159726092317814e-05,0.0,0.0,0.0,0.0,0.0,0.0003605090934499712,0.00016733414135369152,0.00029798482662302296,0.0,0.0 +93604,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,20211.0,,140.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0010403821474058584,2.3794145025710858e-05,0.0,0.0010641585620701493,0.0004281704979328552,0.00013476847715382137,0.00028701909066781474,0.0,0.00021420049631565795,0.0004043763529071443,0.00013476847715382137,0.00028701909066781474,0.0,0.00021420049631565795,2.3794145025710858e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5893708901341542e-06,0.0,0.0,0.00012397932958090616,3.528034636873551e-05,0.0001255687004710403,4.818835968764659e-05,1.6059969394738533e-05,3.420323438521607e-05,0.0,2.552565323744721e-05,1.5893708901341542e-06,0.0,0.0,0.0,0.0,0.0,5.052331007972729e-05,1.5902425769845837e-05,3.386771061205951e-05,0.0,2.5275254009407655e-05 +93605,33.0,Rural Lower Plains-Upper South Appalachia,G1302810960300,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,5524.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013263733415572732,0.0,0.0,0.0013263733415572732,0.0005086485034967407,0.0003456328611565657,0.000426685793421087,0.0,4.532347640914047e-05,0.0005086485034967407,0.0003456328611565657,0.000426685793421087,0.0,4.532347640914047e-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.00015806203644738135,4.98449636263036e-05,0.00015806203644738135,6.061492324944786e-05,4.118857955438091e-05,5.0847542933967725e-05,0.0,5.401134624503647e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.061492324944786e-05,4.118857955438091e-05,5.0847542933967725e-05,0.0,5.401134624503647e-06 +93606,50.0,the Greater Atlanta and Macon Area,G1301170130602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,151568.0,,17451.0,,9.325022323477118,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,1398753.3485215676,0.0,0.0,0.04224753916611035,0.014793563606922223,0.0,0.05704110277303257,0.036865297477195816,0.007582565303692627,0.011587339889320685,0.0,0.0010058117186653856,0.023077545588938972,0.007582565303692627,0.011587339889320685,0.0,0.0,0.013787751888256839,0.0,0.0010058117186653856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009884173242067854,0.0,0.0,0.005034556561382357,0.0021598689231250535,0.006022973885589143,0.002750105943652058,0.0009035994676925133,0.0013808406174706427,0.0,0.0,0.0009212150087921359,0.0,6.72023154146496e-05,0.0,0.0,0.0,0.003892609244830368,0.0008006435813773625,0.0012235079997404738,0.0,0.00010620372715173368 +93607,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,36638.0,,2119.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.009320342846756292,0.0016807731525302053,0.0,0.011001115999286498,0.0072462975585956815,0.0020539474692419604,0.0014115616275087598,0.0,0.00028922663686635806,0.0058547510429318335,0.0020539474692419604,0.0014115616275087598,0.0,0.0,0.0013915465156638474,0.0,0.00028922663686635806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011229782622275255,0.0,0.0,0.0011106855082554355,0.0004623204806006283,0.0012229833344781877,0.0006976982762056778,0.0002447645678183305,0.00016821280820469706,0.0,0.0,9.297367021935891e-05,0.0,1.9324156003393648e-05,0.0,0.0,0.0,0.0008055638311065231,0.00022833533660943903,0.00015692192920646275,0.0,3.2153043091052924e-05 +93608,50.0,the Greater Atlanta and Macon Area,G1300670031118,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14272.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035241484120318895,0.0,0.0,0.0035241484120318895,0.0017619087918684662,0.0006999499650557588,0.0009737103791328663,0.0,8.857927597479825e-05,0.0017619087918684662,0.0006999499650557588,0.0009737103791328663,0.0,8.857927597479825e-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.00041996600172721486,0.00013339368757533517,0.00041996600172721486,0.00020996328877716166,8.341169379529264e-05,0.00011603519686304858,0.0,1.055582229171197e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00020996328877716166,8.341169379529264e-05,0.00011603519686304858,0.0,1.055582229171197e-05 +93609,50.0,the Greater Atlanta and Macon Area,G1300570090702,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,4828.0,,962.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00020366866163214653,0.00016359804482282721,0.0,0.0003672667064549737,0.0002583490962515894,5.132939631105286e-05,9.148866492747246e-06,0.0,4.843934739958426e-05,9.475105142876218e-05,5.132939631105286e-05,9.148866492747246e-06,0.0,4.843934739958426e-05,0.00016359804482282721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0930685730773626e-05,0.0,0.0,2.4270296539506495e-05,1.6801523042884124e-05,3.520098227028012e-05,1.1291065091592471e-05,6.116697874281474e-06,1.0902300874366981e-06,0.0,5.772303486195853e-06,1.0930685730773626e-05,0.0,0.0,0.0,0.0,0.0,2.4761683530957403e-05,4.919708587064832e-06,8.768807015286542e-07,0.0,4.642709450729231e-06 +93610,81.0,the Columbus-Albany Area,G1302150001600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,54657.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.004720767309531536,0.0,0.0,0.004720767309531535,0.0021441293439890046,0.0014081618953637944,0.0011685374493913313,0.0,0.0,0.0021441293439890046,0.0014081618953637944,0.0011685374493913313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000562566511570677,0.00016594239296708965,0.000562566511570677,0.00025551256529183114,0.00016780846698418922,0.00013925279376013404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025551256529183114,0.00016780846698418925,0.00013925279376013407,0.0,0.0 +93611,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,47742.0,,15998.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.0099408900225608,0.011005070952490438,0.0,0.020945960975051237,0.004704399778797992,0.0010286078243058937,0.009252019700955856,0.0002797796069318987,0.005681010624117567,0.003887007269133072,0.0010286078243058937,0.004066020316788038,0.0002797796069318987,0.000679331565459868,0.0008173925096649191,0.005185999384167819,0.005001679058657699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007352950176819112,0.0,0.0,0.0011846333027467286,0.0010258235474143852,0.0019199283204286398,0.0004632058345463394,0.00012257685995652155,0.00048453841315821203,3.334070078722567e-05,8.095440088608091e-05,5.461342706846585e-05,0.00034649840290372003,0.0003341831877097253,0.0,0.0,0.0,0.00043121012097227973,9.428325083063138e-05,0.0008480496390777511,2.5644886451700808e-05,0.0005207272752436998 +93612,50.0,the Greater Atlanta and Macon Area,G1300890020900,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,64811.0,,3651.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0031521745747026676,0.0006209704480145093,0.0,0.0037731627530785974,0.001467719318351971,0.0007288596972555305,0.0009169256408380308,0.0,0.0006596935573559047,0.0010307900218776097,0.0007288596972555305,0.0007328667589364626,0.0,0.0006596935573559047,0.00043692929647436114,0.0001840588819015681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.148994954936825e-05,0.0,0.0,0.00037563945327590025,0.00013575626163357375,0.0004171294028252685,0.0001228375494707117,8.685700988427364e-05,8.733452482622768e-05,0.0,7.86145948906337e-05,2.9193296597809487e-05,1.2297837600205341e-05,0.0,0.0,0.0,0.0,0.00016225880589957012,8.05766488634879e-05,0.00010136765096757998,0.0,7.293021733637723e-05 +93613,46.0,the Tallahassee-Valdosta Area,G1301850011500,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,256870.0,,777.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.012285615653014469,0.00013214438366365353,0.0,0.012417760036678122,0.007351734789572114,0.0021445581352010673,0.0013781455324578641,0.0,0.0015433038490856562,0.007219590405908461,0.0021445581352010673,0.0013781455324578641,0.0,0.0015433038490856562,0.00013214438366365353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.829110925104424e-06,0.0,0.0,0.0014640539872136193,0.0003542238074082611,0.0014728830981387236,0.0008603451726268183,0.000255563007775043,0.00016423104211798318,0.0,0.0001839126517995524,8.829110925104424e-06,0.0,0.0,0.0,0.0,0.0,0.0008719967112889933,0.0002543682130258439,0.0001634632377769465,0.0,0.00018305283303080943 +93614,50.0,the Greater Atlanta and Macon Area,G1301210003000,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,61305.0,,3333.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005220117893601457,0.0009811774029438555,0.0,0.0062012952965453125,0.0019091083389611975,0.001605342615826535,0.002686875031363879,0.0,0.0,0.0009279309360173415,0.001605342615826535,0.002686875031363879,0.0,0.0,0.0009811774029438555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.555619069178556e-05,0.0,0.0,0.0006220723924979915,0.00025278778561035783,0.000687628583189777,0.00011057991968893243,0.0001913058942653911,0.0003201902357708041,0.0,0.0,6.555619069178556e-05,0.0,0.0,0.0,0.0,0.0,0.00021169084836308353,0.00017800788636366543,0.00029793325146989824,0.0,0.0 +93615,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,740100.0,,55275.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.03638456332189746,0.009399999331900872,0.0,0.045784544923436914,0.02693903242186989,0.0037728081458501955,0.004644539095428512,0.0,0.010428182990649737,0.01792447341687954,0.0037728081458501955,0.004259098768517985,0.0,0.010428182990649737,0.009014559004990345,0.0003854403269105278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006280524442120084,0.0,0.0,0.004335877763103814,0.0018956139120336602,0.004963930207315823,0.0021360246931098914,0.0004495982210731586,0.0005075485303451736,0.0,0.0012427063185755896,0.0006022995977631268,2.5752846448881574e-05,0.0,0.0,0.0,0.0,0.002920712153378373,0.00040904537443608454,0.0005035578698753223,0.0,0.0011306167319401512 +93616,50.0,the Greater Atlanta and Macon Area,G1301210005502,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,4748.0,,1106.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005673894412319291,0.00032543258518084026,0.0,0.0008928220264127691,0.0004309741412386401,0.00023891858502761616,0.000222929300146513,0.0,0.0,0.00010554155605779987,0.00023891858502761616,0.000222929300146513,0.0,0.0,0.00032543258518084026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1743329265586915e-05,0.0,0.0,6.761534866844898e-05,4.3325334865489846e-05,8.93586779340359e-05,1.2577303335720252e-05,2.8471737850707225e-05,2.6566307482021493e-05,0.0,0.0,2.1743329265586915e-05,0.0,0.0,0.0,0.0,0.0,4.3134329514219246e-05,2.391232324063212e-05,2.231202517918455e-05,0.0,0.0 +93617,85.0,Rural Climate Zone 3A,G1300310110200,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,32307.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0028489221328633703,0.0,0.0,0.0028489221328633703,0.0018139721056214142,0.0006707705699833112,0.00036420983085808215,0.0,0.0,0.0018139721056214142,0.0006707705699833112,0.00036420983085808215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033949963639206095,8.686075118975496e-05,0.00033949963639206095,0.00021616697177498676,7.99342186242726e-05,4.3402065546262125e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021616697177498676,7.99342186242726e-05,4.3402065546262125e-05,0.0,0.0 +93618,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,29089.0,,2191.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003944285249387013,0.0006381493241871657,0.0,0.004582464947173618,0.0030220212760591176,0.0012793663819175446,0.00028104691559751764,0.0,0.0,0.0023838719518719516,0.0012793663819175446,0.00028104691559751764,0.0,0.0,0.0006381493241871657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.263768779318162e-05,0.0,0.0,0.00047003435654752683,0.00016041038607026952,0.0005126720443407084,0.00028408232370211265,0.00015246010774869963,3.349192509671464e-05,0.0,0.0,4.263768779318162e-05,0.0,0.0,0.0,0.0,0.0,0.0003380944193787949,0.00014313156478872526,3.144266206856615e-05,0.0,0.0 +93619,50.0,the Greater Atlanta and Macon Area,G1301210002500,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,53944.0,,7778.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004539913459619173,0.002289383250596032,0.0,0.006829327399821503,0.0029790093937117116,0.0013507723315870903,0.0024995149849164028,0.0,0.0,0.0006896261431156792,0.0013507723315870903,0.0024995149849164028,0.0,0.0,0.002289383250596032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015296398321642453,0.0,0.0,0.00054101434810224,0.0003237383279059528,0.0006939783313186646,8.218166305823992e-05,0.00016096941470541466,0.00029786327033858533,0.0,0.0,0.00015296398321642453,0.0,0.0,0.0,0.0,0.0,0.00030271911814986566,0.0001372619401276225,0.000253994154443909,0.0,0.0 +93620,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,56552.0,,2607.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004792673057087053,0.0007673629158677603,0.0,0.005560035972954813,0.0015826323071662348,0.0015057855329967873,0.002471587443185494,0.0,0.0,0.0008152693912984745,0.0015057855329967873,0.002471587443185494,0.0,0.0,0.0007673629158677603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1270744445381834e-05,0.0,0.0,0.0005711325723891438,0.0002190949670200719,0.0006224033168345256,9.715390536683789e-05,0.0001794412334584567,0.00029453377634926746,0.0,0.0,5.1270744445381834e-05,0.0,0.0,0.0,0.0,0.0,0.00017716352953491005,0.00016856112347787163,0.0002766752283560663,0.0,0.0 +93621,50.0,the Greater Atlanta and Macon Area,G1301210002800,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,105812.0,,1612.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.01185302658660881,0.0005990893799401719,0.0,0.012452115966548981,0.006415189039706027,0.001707875526178321,0.004111479001184389,0.0,0.00021761114790401693,0.006415189039706027,0.001707875526178321,0.0035123896212442165,0.0,0.00021761114790401693,0.0,0.0005990893799401719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.002830034490372e-05,0.0,0.0,0.0014125017434539013,0.0005094035465992334,0.0014525300437988051,0.0007644853942543663,0.000203524149777455,0.00041856452674306167,0.0,2.5932290252068865e-05,0.0,4.002830034490372e-05,0.0,0.0,0.0,0.0,0.0007483270186251164,0.00019922240681880064,0.00047960096016704055,0.0,2.5384178162591528e-05 +93622,50.0,the Greater Atlanta and Macon Area,G1302230120501,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,13076.0,,657.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031397259332915884,0.0005214680999263332,0.0,0.0036611940332179215,0.002002172841081154,0.0011023198787974895,0.0004793701993930258,0.0,7.724840687251313e-05,0.0014807047411548207,0.0011023198787974895,0.0004793701993930258,0.0,7.724840687251313e-05,0.0005214680999263332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.484011935048575e-05,0.0,0.0,0.00037415710318675907,0.00016225861296375943,0.0004089972225372448,0.00017645368047923047,0.00013136204286584284,5.712593040594424e-05,0.0,9.205593340088324e-06,3.484011935048575e-05,0.0,0.0,0.0,0.0,0.0,0.0002236655920478375,0.0001231417304533038,5.355113068032329e-05,0.0,8.629530030266037e-06 +93623,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,7985.0,,1269.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016778784049493295,0.001006793208628589,0.0,0.002684671613577919,0.0020953837131853534,0.0003325651435057552,0.00020726392679070439,0.0,4.929341594862722e-05,0.0010885905045567642,0.0003325651435057552,0.00020726392679070439,0.0,4.929341594862722e-05,0.001006793208628589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.726844548492267e-05,0.0,0.0,0.00019994527986099317,0.00013174601420013382,0.00026721372534591585,0.00012972247121459022,3.963030365855246e-05,2.4698716977948877e-05,0.0,5.874076344316653e-06,6.726844548492267e-05,0.0,0.0,0.0,0.0,0.0,0.0002085600656697097,3.310124428884559e-05,2.0629624020852283e-05,0.0,4.906327181335978e-06 +93624,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,75000.0,,13175.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0038606443563251372,0.0022406035030134923,0.0,0.00610124785933863,0.00252186022621979,0.0011106830304363677,0.001440272718873729,0.0,0.0010284141534473224,0.0020901968470871846,0.0011106830304363677,0.0004756524058157565,0.0,0.00018411207298582832,0.00043166337913260545,0.0009646203130579725,0.0008443020804614942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001497036667263385,0.0,0.0,0.0004600655368737972,0.00025550572435376046,0.0006097692036001358,0.0002490847241734631,0.00013235795311141295,5.6682579188734175e-05,0.0,2.1940280400186966e-05,2.8841153984058347e-05,6.445013482718698e-05,5.6411193278849684e-05,0.0,0.0,0.0,0.00025203904794315153,0.0001110035721438112,0.00014394333241361476,0.0,0.00010278147909674632 +93625,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030201,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,17893.0,,15379.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0037255656143769314,0.010579126044628724,0.0,0.014304691659005657,0.0026821117560708067,0.0002927609216857243,0.008917661196081079,0.0003776056473971922,0.0020345521377708544,0.0016908700366640463,0.0002927609216857243,0.0011097231115245498,0.0003776056473971922,0.00025467761707643485,0.0009912417194067602,0.007807938084556528,0.0017798745206944193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007068333658133974,0.0,0.0,0.0004439707364536775,0.0008184817704173433,0.0011508041022670749,0.00020149875029130065,3.488793258776252e-05,0.0001322442383465089,4.499876655427968e-05,3.0349595448100122e-05,6.622879034688056e-05,0.0005216793082044604,0.00011892047536636531,0.0,0.0,0.0,0.00021577432671761527,2.355244542774301e-05,0.000717420642941099,3.03781541345093e-05,0.00016367853304610823 +93626,50.0,the Greater Atlanta and Macon Area,G1300890022900,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,16553.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003779382441591392,0.0,0.0,0.003779382441591392,0.0021794968071782296,0.0004940093514448833,0.001026642906326023,0.0,7.915066956851721e-05,0.0021794968071782296,0.0004940093514448833,0.001026642906326023,0.0,7.915066956851721e-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.00045038004031681565,0.0001514554217549084,0.00045038004031681565,0.000259725464426399,5.8869922549289655e-05,0.00012234259979982128,0.0,9.432197535521547e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.000259725464426399,5.8869922549289655e-05,0.00012234259979982128,0.0,9.432197535521547e-06 +93627,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,15628.0,,1767.0,,8.72605822017302,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0035997426774296163,0.0014019676069549998,0.0,0.005001710284384617,0.002852070730826277,0.0005050920993259504,0.0015471185213674847,0.0,9.742893286490413e-05,0.0015475320567361812,0.0005050920993259504,0.0015471185213674847,0.0,0.0,0.0013045386740900959,0.0,9.742893286490413e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.36717029358336e-05,0.0,0.0,0.000428975494669616,0.00024188099455964835,0.0005226471976054496,0.00018441688449506442,6.019100601845751e-05,0.00018436760415609405,0.0,0.0,8.716204179145204e-05,0.0,6.50966114438157e-06,0.0,0.0,0.0,0.0002980234140095299,5.27789406494664e-05,0.00016166413358259676,0.0,1.018070936385646e-05 +93628,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,128160.0,,15457.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010733904629865633,0.00454982620245333,0.0,0.015283700142712664,0.0078313123558352,0.0029935869567031203,0.004458831519780642,0.0,0.0,0.00328148615338187,0.0029935869567031203,0.004458831519780642,0.0,0.0,0.00454982620245333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030399213994637285,0.0,0.0,0.0012791375629790456,0.0006269586801952393,0.0015831297029254186,0.00039104802454714114,0.0003567396633755094,0.0005313498750563952,0.0,0.0,0.00030399213994637285,0.0,0.0,0.0,0.0,0.0,0.0008111899008513952,0.0003100843634194503,0.0004618586175724299,0.0,0.0 +93629,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890200,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,3722.0,,347.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00033166257525927396,0.00010201225133356404,0.0,0.000433674826592838,0.0001525273432995828,0.0001855186700696133,9.562881322364188e-05,0.0,0.0,5.051509196601878e-05,0.0001855186700696133,9.562881322364188e-05,0.0,0.0,0.00010201225133356404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.815809272255248e-06,0.0,0.0,3.9524243146386675e-05,2.0573511281517626e-05,4.6340052418641923e-05,6.019885649944708e-06,2.2108267772731325e-05,1.1396089723710641e-05,0.0,0.0,6.815809272255248e-06,0.0,0.0,0.0,0.0,0.0,1.6298213892905692e-05,1.9823481485435597e-05,1.0218357040300633e-05,0.0,0.0 +93630,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,49568.0,,2559.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.004335121716794603,0.0007532456969708171,0.0,0.005088367413765419,0.0024804874290118278,0.001116426497897832,0.0014914534868557597,0.0,0.0,0.0017272417320410105,0.001116426497897832,0.0014914534868557597,0.0,0.0,0.0007532456969708171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.032783475469257e-05,0.0,0.0,0.0005166084386755191,0.00021406526028508175,0.0005669362734302116,0.00020583220326848855,0.0001330424813080982,0.0001777337540989322,0.0,0.0,5.032783475469256e-05,0.0,0.0,0.0,0.0,0.0,0.00027637121790578383,0.00012439012885835573,0.00016617492666607208,0.0,0.0 +93631,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,15079.0,,3340.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0012778231374174509,0.0009832642961720992,0.0,0.0022610874335895503,0.0011788798467136567,0.000486645087062673,0.0005955318102069224,0.0,0.0,0.00019561555054155752,0.000486645087062673,0.0005955318102069224,0.0,0.0,0.0009832642961720992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.569638335023588e-05,0.0,0.0,0.00015227587800203463,0.00011250679634990342,0.0002179722613522705,2.331115225364384e-05,5.7992617082841283e-05,7.096845144053322e-05,0.0,0.0,6.569638335023588e-05,0.0,0.0,0.0,0.0,0.0,0.00011364580698361428,4.691332521123505e-05,5.741017063278149e-05,0.0,0.0 +93632,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,19947.0,,3160.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,30661.31346040191,0.0,0.0,0.002243921220641314,0.0011745809698031455,0.0,0.00341850219044446,0.002142749086172406,0.00035330812795385084,0.0008151893393170777,0.0,0.00010721688857735307,0.001192056508924355,0.00035330812795385084,0.0006984790869155644,0.0,0.0,0.0009506925772480511,0.00011671025240151332,0.00010721688857735307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.847961342987222e-05,0.0,0.0,0.0002674024187294362,0.00016274459849281576,0.0003458820321593084,0.00014205436038322185,4.2102836366344316e-05,8.323598687647759e-05,0.0,0.0,6.352051316273265e-05,7.797994116411278e-06,7.163695126198544e-06,0.0,0.0,0.0,0.00021680208671636186,3.5747507670659283e-05,8.248037578145756e-05,0.0,1.0848141448202921e-05 +93633,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,23559.0,,1072.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006588698325989778,0.0008315722930767392,0.0,0.007420270619066518,0.0027131218542983115,0.0006863463266856636,0.0027629320966685244,0.0004263789091203468,0.0008315722930767392,0.0027131218542983115,0.0006863463266856636,0.0027629320966685244,0.0004263789091203468,0.0,0.0,0.0,0.0008315722930767392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.555859318971234e-05,0.0,0.0,0.0007851662449000133,0.0002725204486219112,0.0008407248380897256,0.00032331905224626474,8.179096103079592e-05,0.0003292548712843149,5.081099640850457e-05,0.0,0.0,0.0,5.555859318971234e-05,0.0,0.0,0.0,0.00030739969588327443,7.77637951496806e-05,0.0003130432512334397,4.830920026204828e-05,9.421805717711065e-05 +93634,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,1802.0,,320.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00032264029465703826,0.00025357988808471653,0.0,0.0005762201827417549,0.00039988870152955135,0.00011388764053902634,5.1940042308285064e-05,0.0,1.0503798364892041e-05,0.0001568126118097269,0.00011388764053902634,5.1940042308285064e-05,0.0,0.0,0.0002430760897198245,0.0,1.0503798364892041e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.694220941432643e-05,0.0,0.0,3.8450054115793856e-05,3.029678500038418e-05,5.5392263530120293e-05,1.868784993682265e-05,1.3572346710445564e-05,6.189857468525646e-06,0.0,0.0,1.6240428398142654e-05,0.0,7.017810161837758e-07,0.0,0.0,0.0,3.8441451725008114e-05,1.0948061845984733e-05,4.99301586004242e-06,0.0,1.0097340990850116e-06 +93635,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,3551.0,,549.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000796055584740834,0.0004351219149424963,0.0,0.0012311774996833303,0.0008058150194420722,0.00018791047153570649,0.00018129390563656188,0.0,5.6075395995250426e-05,0.0004267685004948263,0.00018791047153570649,0.00018129390563656188,0.0,0.0,0.00037904651894724587,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9073421773955104e-05,0.0,0.0,9.48598838903964e-05,6.21443531934544e-05,0.0001239333056643515,5.085475333760472e-05,2.2391860384309675e-05,2.1603414596129756e-05,0.0,0.0,2.5326647403542337e-05,0.0,3.746774370412766e-06,0.0,0.0,0.0,8.111528933815509e-05,1.8915522670254378e-05,1.8249483139611615e-05,0.0,5.644685022197387e-06 +93636,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,6981.0,,42.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001661833232643904,3.300012242198365e-05,0.0,0.0016948333550658877,0.0008801686787337096,0.00038582849899386907,0.00039583605491632534,0.0,3.300012242198365e-05,0.0008801686787337096,0.00038582849899386907,0.00039583605491632534,0.0,0.0,0.0,0.0,3.300012242198365e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2046271978343994e-06,0.0,0.0,0.0001980372048867422,7.333031460954643e-05,0.00020024183208457662,0.00010488786813341514,4.597837857943822e-05,4.717095817388883e-05,0.0,0.0,0.0,0.0,2.2046271978343994e-06,0.0,0.0,0.0,0.00010399051225083273,4.5585015941564995e-05,4.676739256084247e-05,0.0,3.898911331336427e-06 +93637,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,19826.0,,7032.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004128273251629588,0.004837153445147887,0.0,0.008965426696777476,0.002451747209168664,0.0009024523952894339,0.003691642068086547,0.0003698598905275062,0.0015497251337053236,0.0019596764880305565,0.0009024523952894339,0.0007078761139240812,0.0003698598905275062,0.0001883366438869946,0.0004920707211381074,0.0029837659541624663,0.001361388489818329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032319081232556386,0.0,0.0,0.0004919554261472658,0.00045463837167935287,0.0008151462384728297,0.00023352947419342767,0.00010754286977660299,8.435572794207039e-05,4.407522684875957e-05,2.2443580706775765e-05,3.287733951168647e-05,0.00019935810460642648,9.096016012400998e-05,0.0,0.0,0.0,0.00022291549335386846,8.205194245639101e-05,0.0003356480675560529,3.3628059067599814e-05,0.00014090267603891735 +93638,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,38086.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033584696370310943,0.0,0.0,0.0033584696370310943,0.0019974286462254355,0.0011017415724055718,0.0002592690448006496,0.0,0.0,0.0019974286462254355,0.0011017415724055718,0.0002592690448006496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040022263778322173,0.00011236055165402684,0.00040022263778322173,0.0002380298909841572,0.00013129251293556057,3.089661429763034e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002380298909841572,0.00013129251293556057,3.089661429763034e-05,0.0,0.0 +93639,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,217868.0,,13108.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010457012558318742,0.0022291674198975588,0.0,0.012686197708577722,0.004833030567685093,0.002139611364364872,0.003376658680641956,0.0,0.0023368970958857994,0.004833030567685093,0.002139611364364872,0.0011474912607443975,0.0,0.0023368970958857994,0.0,0.0022291674198975588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001489405009059468,0.0,0.0,0.0012461427762976104,0.0004686379839550389,0.0013950832772035569,0.0005759432816933163,0.00025497351475077854,0.00013674440357286624,0.0,0.00027848368917490865,0.0,0.0001489405009059468,0.0,0.0,0.0,0.0,0.0005314815579952836,0.00023529004534761952,0.00037132639474810356,0.0,0.0002569852791125498 +93640,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010702,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,16964.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004073406088734631,0.0,0.0,0.004073406088734631,0.0025286033654318457,0.0005185733523454575,0.0009525373682556037,0.0,7.360929562798359e-05,0.0025286033654318457,0.0005185733523454575,0.0009525373682556037,0.0,7.360929562798359e-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.00048542302048534635,0.00016141173981663463,0.00048542302048534635,0.0003013306939006008,6.179777747544457e-05,0.00011351275967857979,0.0,8.771933325860553e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0003013306939006008,6.179777747544457e-05,0.00011351275967857979,0.0,8.771933325860553e-06 +93641,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4593.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011028161212399252,0.0,0.0,0.001102816121239925,0.0005164229684282356,0.00025316635271602,0.0002896401722350546,0.0,4.358662786061501e-05,0.0005164229684282356,0.00025316635271602,0.0002896401722350546,0.0,4.358662786061501e-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.00013141654284784925,4.0081872336575464e-05,0.00013141654284784925,6.153929005114525e-05,3.0168444402074886e-05,3.451482923752573e-05,0.0,5.1939791571033866e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.153929005114526e-05,3.016844440207489e-05,3.4514829237525734e-05,0.0,5.193979157103387e-06 +93642,85.0,Rural Climate Zone 3A,G1300690010801,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,70351.0,,9045.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.005275630685947626,0.0027187614543266376,0.0,0.007994392140274264,0.0024857319212180013,0.0008125635777264441,0.0028962913501120635,0.0,0.0017998366292399576,0.0024857319212180013,0.0008125635777264441,0.0019773351870031796,0.0,0.0,0.0,0.0009189561631088838,0.0017998366292399576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001816525842387771,0.0,0.0,0.0006286863867505833,0.0004174717991586759,0.0008103389709893605,0.0002962197153306658,9.683158092295553e-05,0.00023563509049696188,0.0,0.0,0.0,6.139956176192886e-05,0.0001202551163099461,0.0,0.0,0.0,0.00025196230205516256,8.236422755910626e-05,0.00029357801208068797,0.0,0.0001824376058236781 +93643,81.0,the Columbus-Albany Area,G1302150010301,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,10481.0,,412.0,,4.088175128053588,Healthcare,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0011109948063931579,0.00015313377074727117,0.0,0.0012641285771404288,0.0007866704994208247,0.00011845393147125709,0.0003235493384968913,0.0,3.545480775145575e-05,0.00068053856670909,0.00011845393147125709,0.00027654750046135485,0.0,3.545480775145575e-05,0.00010613193271173476,4.700183803553641e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0231535676573097e-05,0.0,0.0,0.00013239364465449324,5.2359029946487806e-05,0.0001426251803310663,8.109757188430749e-05,1.4115770497655754e-05,3.295526792337884e-05,0.0,4.225034349151134e-06,7.09113770701764e-06,3.1403979695554564e-06,0.0,0.0,0.0,0.0,8.87560204475634e-05,1.3364552975480313e-05,3.6504421768158526e-05,0.0,4.000185139864078e-06 +93644,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,186074.0,,16552.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.009578171733810986,0.0028148721790475827,0.0,0.012393043912858568,0.004609397519093968,0.0030898700846726016,0.0027702803200761504,0.0,0.001923495989015848,0.003677915251530073,0.0030898700846726016,0.0024643074730502992,0.0,0.00034607892455801065,0.000931482267563894,0.00030597284702585116,0.0015774170644578373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000188073231593422,0.0,0.0,0.0011414129146025127,0.000498716223346201,0.0013294861461959349,0.00043829032132415693,0.0003682140722784899,0.0002936669391050827,0.0,4.1241581894783064e-05,6.223617595736973e-05,2.044330913081181e-05,0.00010539374650524046,0.0,0.0,0.0,0.0004944814354758333,0.00033147138830479225,0.0002971868196802793,0.0,0.00020634650273503008 +93645,50.0,the Greater Atlanta and Macon Area,G1301510070111,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,114238.0,,7936.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005880416207851873,0.0013495464594873191,0.0,0.007229962667339192,0.003324070428670079,0.0017563341415475907,0.001212543956794571,0.0,0.0009370318706883706,0.002638969263399239,0.0017563341415475907,0.0005480986625780924,0.0,0.0009370318706883706,0.0006851011652708402,0.0006644452942164787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.016879187847931e-05,0.0,0.0,0.0007007575999586016,0.0002428677303291573,0.0007909263918370809,0.00031448076156835743,0.00020929887515663473,6.531583645659159e-05,0.0,0.00011166423966921387,4.577444811383354e-05,4.439434376464576e-05,0.0,0.0,0.0,0.0,0.00036363881133675863,0.00019213529714472895,0.00013264702195818332,0.0,0.00010250720102164166 +93646,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7396.0,,318.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0014795468421224703,0.0002521738678311483,0.0,0.0017317207099536189,0.0009719735305843408,0.0003285124968925291,0.0003807833674957713,0.0,5.045131498097753e-05,0.0007197996627531925,0.0003285124968925291,0.0003807833674957713,0.0,5.045131498097753e-05,0.0002521738678311483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.684909573868232e-05,0.0,0.0,0.00017631532006809575,7.198922253079641e-05,0.00019316441580677804,8.577741799724062e-05,3.9148328655066044e-05,4.537736785697987e-05,0.0,6.0122055588092365e-06,1.684909573868232e-05,0.0,0.0,0.0,0.0,0.0,0.00010841857935625445,3.664385612687566e-05,4.2474399196408724e-05,0.0,5.627581127239211e-06 +93647,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,NaturalGas,23495.0,,5571.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0012093879524618016,0.0009474573232033616,0.0,0.0021568452756651636,0.0010357545230752245,0.00022661174930969485,0.0005518220384763033,0.0,0.00034263923444252035,0.000661147446992349,0.00022661174930969485,0.0002513987945749287,0.0,7.022996158482916e-05,0.0003746070760828756,0.00030042324390137465,0.00027240927285769123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.330325305855477e-05,0.0,0.0,0.000144120403560701,9.825021522721423e-05,0.00020742365661925578,7.878765178676118e-05,2.7004880192190575e-05,2.9958704032945017e-05,0.0,8.369167548804231e-06,2.502893370924912e-05,2.0072427715331174e-05,1.8200707000610727e-05,0.0,0.0,0.0,9.960843875086982e-05,2.179323579908019e-05,5.306868615716866e-05,0.0,3.2951590784541476e-05 +93648,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,6259.0,,288.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001137222263915477,0.000228685058889185,0.0,0.001365907322804662,0.0008853792243792859,0.0002495272414714905,0.00019990299722790603,0.0,3.1097859725979586e-05,0.0006877920252160805,0.0002495272414714905,0.00019990299722790603,0.0,0.0,0.0001975871991632054,0.0,3.1097859725979586e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5277357012654994e-05,0.0,0.0,0.00013552262817897025,5.507167797150785e-05,0.00015079998519162527,8.196408552264122e-05,2.973612867025115e-05,2.3822413986077898e-05,0.0,0.0,1.3199857469523608e-05,0.0,2.0774995431313847e-06,0.0,0.0,0.0,9.774834038609435e-05,2.7548504712269663e-05,2.2069849482782817e-05,0.0,3.4332906104784193e-06 +93649,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,111757.0,,7858.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009854866205575767,0.00228931893682223,0.0,0.012144185142397998,0.008467946908049143,0.0024902099235035212,0.0011860283108453332,0.0,0.0,0.006178627971226914,0.0024902099235035212,0.0011860283108453332,0.0,0.0,0.00228931893682223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001529596673402556,0.0,0.0,0.0011743848529089727,0.00043807104866220507,0.0013273445202492283,0.0007362948364598978,0.000296753375816662,0.00014133664063241302,0.0,0.0,0.0001529596673402556,0.0,0.0,0.0,0.0,0.0,0.0009255361964895895,0.00027217688609611966,0.00012963143766351915,0.0,0.0 +93651,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,22224.0,,869.0,,3.3063363735822096,Lodging,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24797.522801866573,0.0,0.0,0.002059848199466203,0.00026117107704779147,0.0,0.0023210192765139945,0.000883262155818575,0.00024308903823610733,0.000823187167253586,0.0,0.00037151225322792995,0.000883262155818575,0.00024308903823610733,0.0005620160902057947,0.0,0.00037151225322792995,0.0,0.00026117107704779147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.745007713972582e-05,0.0,0.0,0.0002454677400249178,0.00011419304248276325,0.00026291781716464356,0.00010525647729502978,2.8968404980576402e-05,6.697426516973795e-05,0.0,4.427232706519702e-05,0.0,1.745007713972582e-05,0.0,0.0,0.0,0.0,0.00010005317936899814,2.7536367300525757e-05,9.324807222511417e-05,0.0,4.208374814331995e-05 +93652,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,36281.0,,1772.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0031992816023778373,0.0005161385752457166,0.0,0.003715420177623554,0.002191121089839978,0.0012594109270869416,0.00026488816069663364,0.0,0.0,0.001674982514594262,0.0012594109270869416,0.00026488816069663364,0.0,0.0,0.0005161385752457166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.448608387802036e-05,0.0,0.0,0.00038125131284995963,0.00011832996397262371,0.00041573739672797996,0.0001996039617816585,0.00015008121479916382,3.156613626913727e-05,0.0,0.0,3.448608387802036e-05,0.0,0.0,0.0,0.0,0.0,0.0002451757632399181,0.00014092194024009158,2.963969324797025e-05,0.0,0.0 +93653,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3404.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0008173940097655753,0.0,0.0,0.0008173940097655753,0.0006440399832079869,0.00010065450874073713,4.67294966627087e-05,0.0,2.5887314080403227e-05,0.0006440399832079869,0.00010065450874073713,4.67294966627087e-05,0.0,2.5887314080403227e-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,9.740574052720337e-05,3.698128559716256e-05,9.740574052720337e-05,7.674779940153118e-05,1.1994615624972831e-05,5.568576687025185e-06,0.0,3.084892925732536e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.674779940153118e-05,1.1994615624972831e-05,5.568576687025185e-06,0.0,3.084892925732536e-06 +93654,81.0,the Columbus-Albany Area,G1302150003400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,25316.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0022323988114758835,0.0,0.0,0.0022323988114758835,0.001692963685461411,0.0004410246638361564,9.841046217831591e-05,0.0,0.0,0.001692963685461411,0.0004410246638361564,9.841046217831591e-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.000266029752951842,6.62643754475507e-05,0.000266029752951842,0.00020174652874948665,5.255587924652025e-05,1.1727344955835101e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020174652874948665,5.255587924652025e-05,1.1727344955835101e-05,0.0,0.0 +93655,50.0,the Greater Atlanta and Macon Area,G1300590030200,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,34388.0,,2006.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002996747986151784,0.0005904066459552061,0.0,0.0035871853217132876,0.001394903985443187,0.0008353710834234697,0.0013568795632403334,0.0,0.0,0.0008044973394879809,0.0008353710834234697,0.0013568795632403334,0.0,0.0,0.0005904066459552061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9448253299728745e-05,0.0,0.0,0.00035711766060164256,0.00014737800664016732,0.0003965659139013714,9.587066018424998e-05,9.954983482930053e-05,0.00016169716558809205,0.0,0.0,3.9448253299728745e-05,0.0,0.0,0.0,0.0,0.0,0.00015420763751557186,9.235087329872978e-05,0.00015000401032904995,0.0,0.0 +93656,50.0,the Greater Atlanta and Macon Area,G1301210011201,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,47779.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006632484265028036,0.0,0.0,0.006632484265028036,0.0019397365660463043,0.002490246723814497,0.0022025009751672356,0.0,0.0,0.0019397365660463043,0.002490246723814497,0.0022025009751672356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007903820908187549,0.00023043492723485802,0.0007903820908187549,0.00023115517224718047,0.00029675854982442795,0.0002624683687471466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023115517224718047,0.00029675854982442795,0.0002624683687471466,0.0,0.0 +93657,85.0,Rural Climate Zone 3A,G1302610950200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,90225.0,,711.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.004443778213069254,0.00012086787380049995,0.0,0.004564628356508334,0.0021907102659774647,0.0018426278105789875,0.0004663439660702288,0.0,6.496404424307346e-05,0.0020698423921769646,0.0018426278105789875,0.0004663439660702288,0.0,6.496404424307346e-05,0.00012086787380049995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.075109877280378e-06,0.0,0.0,0.0005295558835250263,0.00015192845504868188,0.0005376309934023066,0.00024665884843739035,0.00021958215542107064,5.557324851464998e-05,0.0,7.741631151915351e-06,8.075109877280378e-06,0.0,0.0,0.0,0.0,0.0,0.0002580262059834016,0.0002170283630779722,5.492691850543011e-05,0.0,7.651594152684052e-06 +93658,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,116604.0,,13996.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012542140042231423,0.004077534230120431,0.0,0.016619674272351854,0.011731073816445135,0.00396339024343336,0.0009251798388739205,0.0,0.0,0.007653539586324705,0.00396339024343336,0.0009251798388739205,0.0,0.0,0.004077534230120431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027243739873176776,0.0,0.0,0.0014946224141356283,0.0006042080714471609,0.0017670598128673957,0.0009120574140200751,0.00047230950012164285,0.00011025188043119091,0.0,0.0,0.00027243739873176776,0.0,0.0,0.0,0.0,0.0,0.0012472873272436108,0.00042140101587506874,9.836824032519918e-05,0.0,0.0 +93659,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000600,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,17809.0,,6972.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.003464289759967061,0.004796057901755942,0.0,0.008260275941751988,0.0023207148221231423,0.00030394923716415965,0.0036260182946072634,0.00036742141151297543,0.0016421004563734304,0.0014955765555885374,0.00030394923716415965,0.0011007581151475986,0.00036742141151297543,0.00019644100061175866,0.000825138266534605,0.002525260179459665,0.0014456594557616716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032044226176074887,0.0,0.0,0.0004128312705504674,0.00042196074122941956,0.0007332735323112163,0.00017822434392871867,3.622091639427946e-05,0.00013117475809801821,4.378474626896972e-05,2.34094124596346e-05,5.5130521317702706e-05,0.00016872191704444265,9.658982339860351e-05,0.0,0.0,0.0,0.0002060123374939338,2.698189895232374e-05,0.00032188552317875965,3.261639177271225e-05,0.00014577101425493257 +93660,50.0,the Greater Atlanta and Macon Area,G1301350050536,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,14660.0,,1983.0,,8.72605822017302,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.003496028006960525,0.0015731712495953665,0.0,0.005069199256555891,0.0031807486418662847,0.0008530407585472168,0.0008703265369587321,0.0,0.0001650833191836576,0.0017726607114545757,0.0008530407585472168,0.0008703265369587321,0.0,0.0,0.0014080879304117088,0.0,0.0001650833191836576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010511146769197342,0.0,0.0,0.00041661663924474126,0.00024361359154788522,0.0005217281069367147,0.0002112454324327546,0.00010165564270570763,0.00010371556410627897,0.0,0.0,9.408142250438186e-05,0.0,1.1030045187591553e-05,0.0,0.0,0.0,0.0003273664899670779,8.779598464611895e-05,8.957505782733272e-05,0.0,1.6990574496185126e-05 +93661,50.0,the Greater Atlanta and Macon Area,G1301510070309,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,17794.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004272730136446361,0.0,0.0,0.004272730136446361,0.002350535035671117,0.0005001296749015921,0.0013518471202689799,0.0,7.0218305604672e-05,0.002350535035671117,0.0005001296749015921,0.0013518471202689799,0.0,7.0218305604672e-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.0005091766059409829,0.00016780091493880992,0.0005091766059409829,0.00028011070519042865,5.95999097215525e-05,0.0001610981518767613,0.0,8.367839152240462e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00028011070519042865,5.95999097215525e-05,0.0001610981518767613,0.0,8.367839152240462e-06 +93662,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,Electricity,74393.0,,5589.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006628310478571549,0.001645208414407251,0.0,0.008273518892978799,0.0038619186772903226,0.0018054081592812593,0.0026061306771946223,0.0,0.0,0.0022167102628830723,0.0018054081592812593,0.0026061306771946223,0.0,0.0,0.001645208414407251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010992396681790824,0.0,0.0,0.0007898812193933267,0.00033677023988087267,0.0008998051862112348,0.00026416049929289424,0.00021514652986850862,0.00031056687580580474,0.0,0.0,0.00010992396681790824,0.0,0.0,0.0,0.0,0.0,0.0004200116660760696,0.00019635123167821344,0.0002834356130224078,0.0,0.0 +93663,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,70798.0,,6171.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.014215687174975284,0.004245320244327065,0.0,0.01846100741930235,0.007930077195196113,0.0017742803629552017,0.004651757320072532,0.00036878409096227204,0.0037361084501162257,0.005117076492021817,0.0017742803629552017,0.0032194377789197645,0.00036878409096227204,0.0037361084501162257,0.0028130007031742965,0.0014323195411527683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028364602222572725,0.0,0.0,0.0016940586034751572,0.0007260273983971308,0.0019777046257008846,0.0006097930651716883,0.00021143789089087846,0.0003836547752213365,4.394735579291391e-05,0.00044522551639833983,0.00018794729585825139,9.569872636747587e-05,0.0,0.0,0.0,0.0,0.0008495392475009974,0.00019007643523493876,0.0004983369412400714,3.950737822782065e-05,0.00040024462349705575 +93664,50.0,the Greater Atlanta and Macon Area,G1301170130506,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,8704.0,,437.0,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0017346154575344948,0.00034687346726265526,0.0,0.0020814889247971497,0.0010488084020881575,0.00038855783242726626,0.0005604231316575471,0.0,8.36995586241791e-05,0.000701934934825502,0.00038855783242726626,0.0005604231316575471,0.0,8.36995586241791e-05,0.00034687346726265526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.31752718090228e-05,0.0,0.0,0.00020671144264354998,7.229618034492773e-05,0.0002298867144525728,8.364850110693788e-05,4.630383624371324e-05,6.67847582774374e-05,0.0,9.974347015461428e-06,2.31752718090228e-05,0.0,0.0,0.0,0.0,0.0,0.00011583396614507395,4.291364820988545e-05,6.189503624312127e-05,0.0,9.244063854492139e-06 +93665,50.0,the Greater Atlanta and Macon Area,G1301430010400,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,6323.0,,1121.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0005633691028069299,0.0003300974053380911,0.0,0.0008934358185387234,0.0004153531316331094,0.0002390106538465093,0.00023907203305910464,0.0,0.0,8.525572629501835e-05,0.0002390106538465093,0.00023907203305910464,0.0,0.0,0.0003300974053380911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.205503694668335e-05,0.0,0.0,6.713394891407389e-05,4.443113367922159e-05,8.918898586075723e-05,1.0159509183597391e-05,2.84817341691348e-05,2.848904843060606e-05,0.0,0.0,2.205503694668335e-05,0.0,0.0,0.0,0.0,0.0,4.146344238250509e-05,2.3859708088883534e-05,2.3865835389368605e-05,0.0,0.0 +93666,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6985.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00166828438439557,0.0,0.0,0.00166828438439557,0.0010319361590453388,0.00026358744400717274,0.00033148995154714416,0.0,4.118812272217509e-05,0.0010319361590453388,0.00026358744400717274,0.00033148995154714416,0.0,4.118812272217509e-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.00019880230229561507,6.420649475871555e-05,0.00019880230229561507,0.00012297141072541715,3.141058635745006e-05,3.950223725154059e-05,0.0,4.908212113589623e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012297141072541715,3.141058635745006e-05,3.950223725154059e-05,0.0,4.908212113589623e-06 +93667,50.0,the Greater Atlanta and Macon Area,G1300890021502,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,32460.0,,4077.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0028712274963941793,0.0012002091230905604,0.0,0.004071436619484739,0.0017348220647965427,0.0012757362441892068,0.0010608783104989897,0.0,0.0,0.0005346129417059826,0.0012757362441892068,0.0010608783104989897,0.0,0.0,0.0012002091230905604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.019060485380684e-05,0.0,0.0,0.0003421587296532067,0.00017762644141686832,0.00042234933450701354,6.370880928801545e-05,0.00015202706620513854,0.00012642285416005267,0.0,0.0,8.019060485380684e-05,0.0,0.0,0.0,0.0,0.0,0.0001799612797724529,0.00013233814107806917,0.0001100499136564915,0.0,0.0 +93668,50.0,the Greater Atlanta and Macon Area,G1301510070111,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,NaturalGas,235070.0,,9781.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.020944520782749138,0.0028790840356063907,0.0,0.02382360481835553,0.010699624339631097,0.0047292069512634045,0.008394773527461024,0.0,0.0,0.007820540304024707,0.0047292069512634045,0.008394773527461024,0.0,0.0,0.0028790840356063907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019236400956232453,0.0,0.0,0.0024959164258264934,0.0009258337394646983,0.002688280435388818,0.000931958062259914,0.0005635700827546856,0.0010003882808118933,0.0,0.0,0.00019236400956232453,0.0,0.0,0.0,0.0,0.0,0.0012073567790244154,0.0005336486488472477,0.0009472750075171541,0.0,0.0 +93669,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,160179.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,240343.828889517,0.0,0.0,0.014124817188134357,0.0,0.0,0.014124817188134357,0.010793896405793302,0.0023421993734433566,0.0009887517824971352,0.0,0.0,0.010793896405793302,0.0023421993734433566,0.0009887517824971352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016832273568677684,0.0005575433206519574,0.0016832273568677684,0.0012862879197254745,0.0002791154043345983,0.00011782765237124968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012862879197254745,0.0002791154043345983,0.00011782765237124968,0.0,0.0 +93670,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,47658.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.004119358676546216,0.0,0.0,0.004119358676546216,0.003295596286194948,0.0006423105073101378,0.0001814518830411294,0.0,0.0,0.003295596286194948,0.0006423105073101378,0.0001814518830411294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004908957279075105,0.00017551565427782205,0.0004908957279075105,0.00039272961274577835,7.654285746562253e-05,2.1623257696109565e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039272961274577835,7.654285746562253e-05,2.1623257696109565e-05,0.0,0.0 +93671,50.0,the Greater Atlanta and Macon Area,G1300670030224,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,7878.0,,848.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0018915934834917,0.0006726566307217872,0.0,0.0025642501142134873,0.0011919743467308985,0.000378798397726028,0.0009240034278155426,0.0,6.947394194101823e-05,0.0005887916579501296,0.000378798397726028,0.0009240034278155426,0.0,0.0,0.0006031826887807688,0.0,6.947394194101823e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.494174523421482e-05,0.0,0.0,0.00022542131148763103,0.00011245171600582188,0.00027036305672184583,7.01663380036048e-05,4.514142829842815e-05,0.00011011354518559809,0.0,0.0,4.0300030492208114e-05,0.0,4.641714742006695e-06,0.0,0.0,0.0,0.00012567644089392472,3.993880788885479e-05,9.742278640486589e-05,0.0,7.325021534200442e-06 +93672,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020200,ComStock 90.1-2007,gen3_t5_cfl,200001_500000,NaturalGas,277398.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02471584374224864,0.0,0.0,0.02471584374224864,0.006910746925329308,0.006647675620145401,0.011157390507167634,0.0,0.0,0.006910746925329308,0.006647675620145401,0.011157390507167634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002945341048979712,0.0010160075388592421,0.002945341048979712,0.0008235408352047987,0.0007921911179122287,0.0013296054386394821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008235408352047987,0.0007921911179122287,0.0013296054386394821,0.0,0.0 +93673,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,31115.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.002690554185394932,0.0,0.0,0.0026905541853949316,0.0014192368073283916,0.0008788297261319112,0.00039248765193462907,0.0,0.0,0.0014192368073283916,0.0008788297261319112,0.00039248765193462907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032062894370770225,0.00010377328919192008,0.00032062894370770225,0.00016912813013576227,0.00010472870173668077,4.677211183525918e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001691281301357623,0.00010472870173668079,4.6772111835259185e-05,0.0,0.0 +93674,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,19587.0,,1783.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0017092576227505565,0.0005249457157222061,0.0,0.0022342033384727625,0.0009757760322354599,0.0005750004635937594,0.000683457532249841,0.0,0.0,0.0004508303165132539,0.0005750004635937594,0.000683457532249841,0.0,0.0,0.0005249457157222061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.507467196723363e-05,0.0,0.0,0.00020368857664007986,0.00010446945341969821,0.00023876324860731352,5.3724484977875455e-05,6.852157593910651e-05,8.144617293786838e-05,0.0,0.0,3.507467196723363e-05,0.0,0.0,0.0,0.0,0.0,0.00010427853694326281,6.144873936684926e-05,7.303925201215485e-05,0.0,0.0 +93675,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,60040.0,,3071.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005349474584146275,0.0009038702846799422,0.0,0.0062533141792199196,0.001897415598961772,0.0016421394537774806,0.0027137591264806667,0.0,0.0,0.00099354531428183,0.0016421394537774806,0.0027137591264806667,0.0,0.0,0.0009038702846799422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0390339556771816e-05,0.0,0.0,0.0006374858207974874,0.00024799967658851817,0.0006978761603542592,0.00011839873995317428,0.00019569036193903906,0.0003233930616883731,0.0,0.0,6.0390339556771816e-05,0.0,0.0,0.0,0.0,0.0,0.0002117534918043896,0.00018326441690339469,0.0003028582516464749,0.0,0.0 +93676,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970100,ComStock 90.1-2004,gen1_t12_incandescent,200001_500000,Electricity,333264.0,,10075.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.028418237846003502,0.0029655673461533175,0.0,0.03138380519215682,0.006576414354322134,0.013022152365028652,0.011785238472806036,0.0,0.0,0.0036108470081688162,0.013022152365028652,0.011785238472806036,0.0,0.0,0.0029655673461533175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019814132506235094,0.0,0.0,0.003386547544770002,0.001121840947819986,0.0035846888698323524,0.0004302977945472399,0.0015518252172560558,0.0014044245329667062,0.0,0.0,0.00019814132506235094,0.0,0.0,0.0,0.0,0.0,0.0007511644682664482,0.0014874029569825785,0.001346121444583326,0.0,0.0 +93677,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,70290.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005884026146639662,0.0,0.0,0.005884026146639662,0.001997064750610413,0.0016306001618095443,0.0022563305446134064,0.0,0.0,0.001997064750610413,0.0016306001618095443,0.0022563305446134064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000701187534413748,0.0002130893257359578,0.000701187534413748,0.00023798618049051943,0.0001943153341911742,0.00026888236251353836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023798618049051943,0.0001943153341911742,0.00026888236251353836,0.0,0.0 +93678,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,62421.0,,6773.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0058868288014284325,0.0019731297666752334,0.0,0.007859958568103667,0.00612489707382153,0.0013242889354859796,0.00041080293239559345,0.0,0.0,0.004151767307146297,0.0013242889354859796,0.00041080293239559345,0.0,0.0,0.0019731297666752334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013183255275721144,0.0,0.0,0.0007015231650683828,0.00034206869864580555,0.0008333557178255941,0.0004947588999411665,0.00015781321265224125,4.895467204407255e-05,0.0,0.0,0.00013183255275721144,0.0,0.0,0.0,0.0,0.0,0.0006493950258562103,0.00014040834272573924,4.355556961847761e-05,0.0,0.0 +93679,50.0,the Greater Atlanta and Macon Area,G1302550160100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5688.0,,136.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013657419086571835,0.00010809814537727479,0.0,0.0014739227611081976,0.0007245966730300723,0.0002743393635932828,0.00036688857910756773,0.0,0.00010809814537727479,0.0007245966730300723,0.0002743393635932828,0.00036688857910756773,0.0,0.0,0.0,0.0,0.00010809814537727479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.223664156815042e-06,0.0,0.0,0.00016275768710980658,5.728171817211946e-05,0.00016998135126662162,8.635136539508359e-05,3.269346866972861e-05,4.372270938164488e-05,0.0,0.0,0.0,0.0,7.223664156815042e-06,0.0,0.0,0.0,8.356470559715347e-05,3.1638412106581225e-05,4.231172629026056e-05,0.0,1.2466507272626364e-05 +93680,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,79466.0,,401.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.01022108130863102,0.000118124294639858,0.0,0.010339205603270877,0.004269445959317518,0.0019876430414770183,0.00408211660247634,0.0,0.0,0.0041513216646776605,0.0019876430414770183,0.00408211660247634,0.0,0.0,0.000118124294639858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.892957853491853e-06,0.0,0.0,0.0012180253804632115,0.00045198610974681426,0.0012259183383167033,0.0004947045226784739,0.00023686336100034032,0.0004864574967843971,0.0,0.0,7.892957853491853e-06,0.0,0.0,0.0,0.0,0.0,0.0005062276829395564,0.00023567459126679928,0.00048401606411034755,0.0,0.0 +93681,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020902,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,204652.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,240343.828889517,0.0,0.0,0.015814925755248618,0.0,0.0,0.015814925755248618,0.010952385847659493,0.0032624586892083616,0.0016000508447813282,0.0,0.0,0.010952385847659493,0.0032624586892083616,0.0016000508447813282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018846334360979045,0.0005926661346871323,0.0018846334360979045,0.0013051741685663123,0.00038878075210246616,0.00019067489586733024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013051741685663123,0.00038878075210246616,0.00019067489586733024,0.0,0.0 +93682,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,4539.0,,562.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00028645678518275777,0.000165416977944618,0.0,0.0004518737631273759,0.0002327806637680756,0.00011698877920684301,0.00010210432015245717,0.0,0.0,6.736368582345761e-05,0.00011698877920684301,0.00010210432015245717,0.0,0.0,0.000165416977944618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1052810513033703e-05,0.0,0.0,3.413633745274282e-05,2.2551816062609593e-05,4.518914796577652e-05,8.027561678676934e-06,1.3941259735360577e-05,1.2167516038705312e-05,0.0,0.0,1.1052810513033703e-05,0.0,0.0,0.0,0.0,0.0,2.3278979035616327e-05,1.1699336596409945e-05,1.0210832333750234e-05,0.0,0.0 +93683,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,593311.0,,80034.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,654728.2554853096,0.0,0.0,0.039285268180579515,0.013610587831573593,0.0,0.05289585601215311,0.023466026957271364,0.00943186079137271,0.006093535152120907,0.0,0.013904450841749549,0.023466026957271364,0.00943186079137271,0.004494469316369184,0.0,0.0018929288459276774,0.0,0.0015990658357517222,0.01201152199582187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009093803118602271,0.0,0.0,0.0046815496264676045,0.0020550112642091028,0.005590929938327832,0.002796401165737745,0.0011239766561291678,0.0005355972384482748,0.0,0.00022557667904538528,0.0,0.00010684027805379605,0.0008025400338064309,0.0,0.0,0.0,0.002480287163116771,0.0009969187919089627,0.0006440679985293817,0.0,0.001469657858817603 +93684,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,6769.0,,337.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012636813796628782,0.00026764009062039875,0.0,0.001531321470283277,0.0009981916729597013,0.000328760618113747,0.0001736848548525456,0.0,3.068432435728305e-05,0.0007612359066965855,0.000328760618113747,0.0001736848548525456,0.0,0.0,0.00023695576626311571,0.0,3.068432435728305e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.788215934760201e-05,0.0,0.0,0.00015059270604209112,4.940346229354331e-05,0.00016847486538969312,9.07163601290272e-05,3.917834979496775e-05,2.0697996118096166e-05,0.0,0.0,1.583201067085283e-05,0.0,2.0501486767491804e-06,0.0,0.0,0.0,0.00010982031598099952,3.617000215630733e-05,1.9108680384464247e-05,0.0,3.375866867922017e-06 +93685,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,25950.0,,2769.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0022781201650847755,0.0008151773224795813,0.0,0.003093297487564357,0.001244340776946657,0.0007880477105124122,0.0010608783104989897,0.0,0.0,0.0004291634544670757,0.0007880477105124122,0.0010608783104989897,0.0,0.0,0.0008151773224795813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.446615762474674e-05,0.0,0.0,0.00027147869943569433,0.0001315217767021458,0.00032594485706044106,5.114248943040979e-05,9.390995735083401e-05,0.00012642259543981733,0.0,0.0,5.446615762474674e-05,0.0,0.0,0.0,0.0,0.0,0.0001311178372939851,8.303763197442289e-05,0.0001117861539875321,0.0,0.0 +93686,35.0,Eastern Counties in South Carolina and Georgia,G1301030030401,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,49736.0,,21463.0,,1.8706521585294562,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,32736.412774265485,0.0,0.0,0.003564582781333096,0.003650007662654909,0.0,0.007214590443988007,0.0019394533142938959,0.0009673330583552408,0.003510859786230336,0.0,0.0007969442851085333,0.0019394533142938959,0.0009673330583552408,0.0005269286110425493,0.0,0.0001308500672799897,0.0,0.002983931175187786,0.0006660942178285436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002438723362663836,0.0,0.0,0.0004247840718721904,0.0003559014831781345,0.000668656408138574,0.00023112070236272364,0.0001152751108871837,6.279300964947785e-05,0.0,1.5593136081737158e-05,0.0,0.00019936896965904846,4.4504551247221446e-05,0.0,0.0,0.0,0.0001797507283270486,8.965352271832884e-05,0.0003253904587328562,0.0,7.386169836034028e-05 +93687,81.0,the Columbus-Albany Area,G1302150010602,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,14175.0,,1384.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0012630000575756604,0.0004072817651768137,0.0,0.001670281822752474,0.0007088378366580412,0.00044125515934837064,0.0005201888267460621,0.0,0.0,0.00030155607148122754,0.00044125515934837064,0.0005201888267460621,0.0,0.0,0.0004072817651768137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7211909714317874e-05,0.0,0.0,0.00015051069166044872,7.132373631440903e-05,0.00017772260137476656,3.593619225969697e-05,5.25840191644538e-05,6.199048023629793e-05,0.0,0.0,2.7211909714317874e-05,0.0,0.0,0.0,0.0,0.0,7.54223045283047e-05,4.695076826029202e-05,5.5349528586169824e-05,0.0,0.0 +93688,50.0,the Greater Atlanta and Macon Area,G1300890021812,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,13851.0,,1724.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001100982232419628,0.0005021970931037886,0.0,0.0016032096991228546,0.0011792549981707145,0.00033204418905350287,9.191051189863704e-05,0.0,0.0,0.0006770579050669258,0.00033204418905350287,9.191051189863704e-05,0.0,0.0,0.0005021970931037886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.355438037263704e-05,0.0,0.0,0.0001312035552580673,6.45504556097094e-05,0.0001647579356307043,8.068468467936377e-05,3.9569556005329715e-05,1.0952934181497234e-05,0.0,0.0,3.355438037263704e-05,0.0,0.0,0.0,0.0,0.0,0.00012118914898475066,3.412336836320139e-05,9.445418282752236e-06,0.0,0.0 +93689,35.0,Eastern Counties in South Carolina and Georgia,G1302450010504,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,21141.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0017397694021949867,0.0,0.0,0.0017397694021949867,0.0010497419701681408,0.0005684115398780877,0.00012161589214875829,0.0,0.0,0.0010497419701681408,0.0005684115398780877,0.00012161589214875829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002073257127000356,6.013054867781413e-05,0.0002073257127000356,0.00012509617759782698,6.773675147032012e-05,1.449278363188852e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012509617759782698,6.773675147032012e-05,1.449278363188852e-05,0.0,0.0 +93690,50.0,the Greater Atlanta and Macon Area,G1301210001500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,19965.0,,3290.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,24034.3828889517,0.0,0.0,0.0016840945944255874,0.0009584085566588209,0.0,0.0026425031510844085,0.0019277516091152325,0.0005925585514311002,0.0001221929905380756,0.0,0.0,0.0009693430524564119,0.0005925585514311002,0.0001221929905380756,0.0,0.0,0.0009584085566588209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.403512534935243e-05,0.0,0.0,0.00020069175649450817,0.00012544475996910005,0.00026472688184386064,0.00011551557762085158,7.061457052720412e-05,1.4561608346452523e-05,0.0,0.0,6.403512534935243e-05,0.0,0.0,0.0,0.0,0.0,0.00019312282456167984,5.936272112519398e-05,1.22413361569868e-05,0.0,0.0 +93691,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,310860.0,,15527.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.016001597990513396,0.0026404408833971033,0.0,0.0186420388739105,0.011359682988575051,0.003254726985156253,0.0021545403286805567,0.0,0.0018730885714986387,0.009785297815920043,0.003254726985156253,0.0010884846179384617,0.0,0.0018730885714986387,0.0015743851726550085,0.0010660557107420947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017641845316440424,0.0,0.0,0.001906879411779132,0.0007152512241811084,0.002083297864943536,0.00116609497091275,0.0003878595051966618,0.00012971260177987594,0.0,0.00022321233388984438,0.00010519099237981251,7.122746078459173e-05,0.0,0.0,0.0,0.0,0.0012694750545582105,0.00036372447375590034,0.00024077566284644246,0.0,0.00020932267378298284 +93692,81.0,the Columbus-Albany Area,G1302150000900,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,8094.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017149311739845395,0.0,0.0,0.0017149311739845393,0.000965274257611457,0.00037540740770271644,0.000326610234196525,0.0,4.772198154758038e-05,0.000965274257611457,0.00037540740770271644,0.000326610234196525,0.0,4.772198154758038e-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.00020436422038901843,6.586878851241617e-05,0.00020436422038901843,0.00011502940999084805,4.473639721947213e-05,3.892135550114462e-05,0.0,5.686913680466054e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011502940999084806,4.473639721947214e-05,3.8921355501144624e-05,0.0,5.686913680466055e-06 +93693,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,29489.0,,2808.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0015179671626164007,0.00047749636340344194,0.0,0.001995463526019843,0.00107453082350088,0.00026368593503902526,0.0002884197892199989,0.0,0.0003688269782599384,0.0008948690712314851,0.00026368593503902526,0.0002884197892199989,0.0,7.099236712589143e-05,0.00017966175226939504,0.0,0.00029783461113404693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.190306161483433e-05,0.0,0.0,0.00018089355805563927,7.599180850272668e-05,0.0002127966196704736,0.00010664002112535531,3.142300319344344e-05,3.437049441552881e-05,0.0,8.460039321311698e-06,1.2003777184030162e-05,0.0,1.989928443080417e-05,0.0,0.0,0.0,0.00011458817662721028,2.8119519549862567e-05,3.075714258456256e-05,0.0,3.9331780908838164e-05 +93694,35.0,Eastern Counties in South Carolina and Georgia,G1300510003501,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,10256.0,,636.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0010360553548179497,0.00023621039131461669,0.0,0.0012723044945563383,0.0006942555087244072,0.00018808484898968984,0.00035563303338017585,0.0,3.429235503829326e-05,0.0005388355809745832,0.00018808484898968984,0.0003091349248536765,0.0,0.0,0.00015541992774982405,4.6498108526499346e-05,3.429235503829326e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5782333404696506e-05,0.0,0.0,0.00012346678817593722,4.577430659566822e-05,0.00013924912158063375,6.421307339272132e-05,2.241408444184304e-05,3.6839630341372846e-05,0.0,0.0,1.0384340434094107e-05,3.1067585442315958e-06,2.2912344263708013e-06,0.0,0.0,0.0,7.598375243978116e-05,2.05852059129708e-05,3.892274822192955e-05,0.0,3.7531741312276793e-06 +93695,35.0,Eastern Counties in South Carolina and Georgia,G1300510002800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,60763.0,,16024.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0028896765738787855,0.0027250324377321752,0.0,0.005614709011610961,0.0016863346746612221,0.0006994095669368229,0.002698472356324936,0.0,0.0005304924136879798,0.001511336007445301,0.0006994095669368229,0.0005818395403604527,0.0,9.709145913620916e-05,0.00017499866721592115,0.0021166328159644833,0.00043340095455177065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018207072316264952,0.0,0.0,0.00034435757684341217,0.0002572114467965804,0.0005264283000060617,0.00018010320256065174,8.334738422583327e-05,6.933677493231283e-05,0.0,1.157021512461437e-05,1.1692387015773984e-05,0.00014142102021844804,2.895731592842748e-05,0.0,0.0,0.0,0.00015810869168596064,6.557579182984007e-05,0.00025300549186357666,0.0,4.973832462668428e-05 +93696,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,6295.0,,,2495.0,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.000574121776572385,0.0,0.00023512203324763687,0.0008092438098200218,0.0006325605818906195,0.00014788905566241362,2.879417226698873e-05,0.0,0.0,0.00039743854864298257,0.00014788905566241362,2.879417226698873e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023512203324763687,0.0,0.0,0.0,0.0,1.8962998213352054e-05,6.841756262969909e-05,4.208142935867222e-05,8.738056084305115e-05,4.736238530365107e-05,1.7623802372447615e-05,3.431374953600399e-06,0.0,0.0,0.0,0.0,0.0,1.8962998213352054e-05,0.0,0.0,6.830265210814786e-05,1.596877043669317e-05,3.1091382982101305e-06,0.0,0.0 +93697,50.0,the Greater Atlanta and Macon Area,G1300890022007,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10466.0,,1174.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0023156326505531294,0.0009316951856732981,0.0,0.0032473278362264275,0.0021330981388104774,0.0006915138435343494,0.00034811407336874495,0.0,7.46017805128553e-05,0.0012014029531371797,0.0006915138435343494,0.00034811407336874495,0.0,7.46017805128553e-05,0.0009316951856732981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.22512106658799e-05,0.0,0.0,0.0002759497181221216,0.00014712564928687265,0.0003382009287880015,0.00014316899797992493,8.240644307518603e-05,4.1484118993357015e-05,0.0,8.890158073653608e-06,6.22512106658799e-05,0.0,0.0,0.0,0.0,0.0,0.00022215674182745446,7.201940670851644e-05,3.625519469395355e-05,0.0,7.769585558077003e-06 +93698,50.0,the Greater Atlanta and Macon Area,G1301530020700,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,29885.0,,,,9.325022323477118,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,349688.3371303919,0.011753413722305945,0.0,0.007668386321163989,0.0,0.0,0.019421800043469932,0.013196992175817521,0.0017846529194456475,0.0040006205301994745,0.0,0.00043953441800729024,0.0014435784535115769,0.0017846529194456475,0.0040006205301994745,0.0,0.00043953441800729024,0.0,0.0,0.0,0.0,0.0,0.0,0.011753413722305945,0.0,0.0,0.0,0.0,0.0,0.0,0.0009138263094217127,0.0003006534406626608,0.0009138263094217127,0.00017202836624080628,0.00021267353034558014,0.0004767459725417165,0.0,5.237844029360984e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000620939286188837,8.39707332649651e-05,0.00018823550269935518,0.0,2.0680787268555436e-05 +93699,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12780.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028537248723010636,0.0,0.0,0.0028537248723010636,0.0012030570946119658,0.0009565073077950904,0.0006291527099349115,0.0,6.500775995909564e-05,0.0012030570946119658,0.0009565073077950904,0.0006291527099349115,0.0,6.500775995909564e-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.00034007038548432224,9.625067931107985e-05,0.00034007038548432224,0.00014336493818846948,0.00011398429191184172,7.497436304136444e-05,0.0,7.74679234264657e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014336493818846948,0.00011398429191184172,7.497436304136444e-05,0.0,7.74679234264657e-06 +93700,50.0,the Greater Atlanta and Macon Area,G1302970110800,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,6914.0,,885.0,,3.3063363735822096,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,9919.009120746628,0.0,0.0,0.0005406748970848989,0.00026602847048940505,0.0,0.0008066720295521001,0.00021043481909958242,0.00015506053386518746,0.0002589774154935144,0.0,0.00018216792307161167,0.00021043481909958242,0.00015506053386518746,0.000175148206097925,0.0,0.0,0.0,8.382920939558942e-05,0.00018216792307161167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.777351675891217e-05,0.0,0.0,6.443092143347529e-05,4.4551447231367534e-05,8.220443819238745e-05,2.507700906658474e-05,1.8478189257105178e-05,2.0871988633379318e-05,0.0,0.0,0.0,5.600678210636125e-06,1.2170744836795435e-05,0.0,0.0,0.0,2.1444497201425024e-05,1.5801544624370965e-05,2.639126208080066e-05,0.0,1.8563940764241795e-05 +93701,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000300,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,6058.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014546520129269389,0.0,0.0,0.0014546520129269389,0.0009697404395933796,0.00017674501658089997,0.0002645799288920444,0.0,4.358662786061501e-05,0.0009697404395933796,0.00017674501658089997,0.0002645799288920444,0.0,4.358662786061501e-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.00017334888150646874,5.762992067279329e-05,0.00017334888150646874,0.00011556263564153663,2.1062460756158954e-05,3.15296265601088e-05,0.0,5.1941585486643755e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011556263564153663,2.1062460756158954e-05,3.15296265601088e-05,0.0,5.1941585486643755e-06 +93702,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,10416.0,,1705.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.00048130839110875336,0.00028999779138638357,0.0,0.0007713061824951371,0.00030666433112123325,0.00012287140464096593,0.00014799532677318075,0.0,0.0001937751199597571,0.0001958318418844832,0.00012287140464096593,7.278313362931676e-05,0.0,8.98220109539875e-05,0.00011083248923675006,7.521219314386399e-05,0.00010395310900576959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9375925937140187e-05,0.0,0.0,5.735566777048285e-05,3.4452933150735185e-05,7.673159370762304e-05,2.333652657942176e-05,1.4642112195146475e-05,8.673285795249103e-06,0.0,1.0703743200665517e-05,7.405167096665647e-06,5.025230974892926e-06,6.945527865581619e-06,0.0,0.0,0.0,3.0507784579261827e-05,1.2223574649299518e-05,1.4722969350317905e-05,0.0,1.9277265128743787e-05 +93703,50.0,the Greater Atlanta and Macon Area,G1300670031505,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6399.0,,823.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015026221156957372,0.0006531377613193107,0.0,0.002155842584088787,0.0016554647879659773,0.0002515949183149732,0.0002073466338644437,0.0,4.135353686965371e-05,0.0010023270266466665,0.0002515949183149732,0.0002073466338644437,0.0,4.135353686965371e-05,0.0006531377613193107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3640941163325316e-05,0.0,0.0,0.00017906763904013053,9.876220617974343e-05,0.00022270858020345582,0.00011944741950282593,2.998259345883296e-05,2.47095206447384e-05,0.0,4.9281054337332264e-06,4.3640941163325316e-05,0.0,0.0,0.0,0.0,0.0,0.00017101722325452205,2.5990926915480423e-05,2.141987303652512e-05,0.0,4.2720129709862625e-06 +93704,81.0,the Columbus-Albany Area,G1300950000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,4347.0,,129.0,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011734479622132936,0.00010222594314178397,0.0,0.0012756739053550778,0.000735514006763661,0.00026151976716369004,0.00017641418828594273,0.0,0.00010222594314178397,0.000735514006763661,0.00026151976716369004,0.00017641418828594273,0.0,0.0,0.0,0.0,0.00010222594314178397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.830097215177217e-06,0.0,0.0,0.00013984154308322298,4.842893423682243e-05,0.00014667164029840018,8.76523007216734e-05,3.1165700537718564e-05,2.102354182383103e-05,0.0,0.0,0.0,0.0,6.830097215177218e-06,0.0,0.0,0.0,8.456631854082423e-05,3.0068447006194325e-05,2.028336415692995e-05,0.0,1.1753510594451674e-05 +93705,50.0,the Greater Atlanta and Macon Area,G1301350050529,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,63943.0,,5847.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005457041654219723,0.0017210731211751717,0.0,0.0071781147753948935,0.0026980153584499444,0.0016048822717320695,0.0028752171452128806,0.0,0.0,0.0009769422372747727,0.0016048822717320695,0.0028752171452128806,0.0,0.0,0.0017210731211751717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011499271272585003,0.0,0.0,0.0006503053962046607,0.00031453942359238916,0.0007652981089305107,0.00011642037003488457,0.00019125080358760576,0.0003426342225821704,0.0,0.0,0.00011499271272585003,0.0,0.0,0.0,0.0,0.0,0.0002876501861972004,0.00017110528405351203,0.0003065426386797984,0.0,0.0 +93706,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7228.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014706144781586252,0.0,0.0,0.0014706144781586254,0.0008227699695586302,0.00023430913990345794,0.00037482845818654124,0.0,3.870691050999587e-05,0.0008227699695586302,0.00023430913990345794,0.00037482845818654124,0.0,3.870691050999587e-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.00017524560025489457,5.75283338570952e-05,0.00017524560025489457,9.804528605453524e-05,2.792142092807583e-05,4.466638886199776e-05,0.0,4.612504410285735e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.804528605453523e-05,2.7921420928075828e-05,4.466638886199775e-05,0.0,4.612504410285734e-06 +93707,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,12735.0,,3808.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.002853011009006864,0.002953682683927181,0.0,0.0058066128321509775,0.0014998058043550525,0.0002660319762954563,0.003309550990211772,0.00043567789917322745,0.0002956270228985374,0.0010683326659013885,0.0002660319762954563,0.001082968467636792,0.00043567789917322745,0.0,0.000431473138453664,0.0022265825225749798,0.0002956270228985374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019734551534172974,0.0,0.0,0.0003399858285566474,0.0002893590098574095,0.0005373313438983772,0.0001273103978372141,3.170233188649973e-05,0.00012905450788932855,5.1918590943605024e-05,0.0,2.882817755868019e-05,0.0001487654979864726,1.9751839796576983e-05,0.0,0.0,0.0,0.00013878877268663276,2.4618021465334363e-05,0.00030625866278257454,4.0316686825295305e-05,2.735668281983661e-05 +93708,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,26204.0,,220.0,,8.53126424238864,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006808397073586967,0.00017069711305766206,0.0,0.00697909418664463,0.0018086939956768289,0.0006808477934370038,0.0037157147035649877,0.00031349725595668205,0.0004603404380091285,0.0016379968826191666,0.0006808477934370038,0.0037157147035649877,0.00031349725595668205,0.0004603404380091285,0.00017069711305766206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1407007438853044e-05,0.0,0.0,0.00081133975683596,0.0002178998658658352,0.0008227467642748131,0.00019519601722379178,8.113493928144972e-05,0.0004427924857317313,3.735868878790742e-05,5.485762581107995e-05,1.1407007438853044e-05,0.0,0.0,0.0,0.0,0.0,0.00021322210199628108,8.026332702113227e-05,0.0004380356773485832,3.69573537839584e-05,5.4268304124858194e-05 +93709,50.0,the Greater Atlanta and Macon Area,G1302550160400,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,13262.0,,121.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003184305046037075,9.618832675881453e-05,0.0,0.00328049337279589,0.0021839629891601516,0.0005565358991917996,0.0004438061576851237,0.0,9.618832675881453e-05,0.0021839629891601516,0.0005565358991917996,0.0004438061576851237,0.0,0.0,0.0,0.0,9.618832675881453e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.424638392374779e-06,0.0,0.0,0.0003794694137658786,0.00012772893852415167,0.00038589405215825337,0.00026025997610196595,6.632164580739713e-05,5.288779185651554e-05,0.0,0.0,0.0,0.0,6.424638392374779e-06,0.0,0.0,0.0,0.0002569059686690913,6.546694929842897e-05,5.220621933948134e-05,0.0,1.131491485125173e-05 +93710,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,65688.0,,14451.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005647545640960899,0.0024574458231807384,0.0,0.008104991464141637,0.0036212490164315844,0.0015371691440343178,0.0009277234309428429,0.0,0.0020188676030943125,0.0029017509500058416,0.0015371691440343178,0.0009277234309428429,0.0,0.0002809021159778966,0.0007194980664257426,0.0,0.0017379654871164157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001641926867735657,0.0,0.0,0.000673006694306825,0.00031135960745920575,0.0008371993810803907,0.0003457958445525454,0.0001831813658509839,0.00011055494177176699,0.0,3.347454213152864e-05,4.807280776669213e-05,0.0,0.00011612106364974609,0.0,0.0,0.0,0.00037405436498082363,0.00015878080337222123,9.58285379614993e-05,0.0,0.00020853750621103353 +93711,50.0,the Greater Atlanta and Macon Area,G1300890021218,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,53596.0,,6488.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004775302739922553,0.0019099062687249373,0.0,0.006685209008647491,0.0027566938856911525,0.001591501603386271,0.0023370442091763645,0.0,0.0,0.0008467876169662151,0.001591501603386271,0.0023370442091763645,0.0,0.0,0.0019099062687249373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012760846995469807,0.0,0.0,0.0005690638766316212,0.000285033476399662,0.0006966723465863193,0.00010091009308495945,0.00018965626294577514,0.00027850117782374413,0.0,0.0,0.00012760846995469807,0.0,0.0,0.0,0.0,0.0,0.00028727783913418136,0.0001658519808719218,0.00024354572477491837,0.0,0.0 +93712,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,53104.0,,3851.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004523709347493986,0.0011337047462434385,0.0,0.005657414093737424,0.0019490048271482104,0.0015597071712618506,0.0021487020953273625,0.0,0.0,0.0008153000809047721,0.0015597071712618506,0.0021487020953273625,0.0,0.0,0.0011337047462434385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.574777469095677e-05,0.0,0.0,0.0005390807989402752,0.0002230823563574739,0.0006148285736312319,9.715757252036844e-05,0.00018586697849244015,0.00025605624792746654,0.0,0.0,7.574777469095677e-05,0.0,0.0,0.0,0.0,0.0,0.00021181123354615386,0.0001695036848108497,0.00023351365527422832,0.0,0.0 +93713,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5646.0,,135.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010079511076609396,0.00010702295341866378,0.0,0.0011149740610796033,0.0005782878595852373,0.0002861664751380037,0.00014349677293769837,0.0,0.00010702295341866378,0.0005782878595852373,0.0002861664751380037,0.00014349677293769837,0.0,0.0,0.0,0.0,0.00010702295341866378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.152829936549245e-06,0.0,0.0,0.00012011128302832963,4.204344823498923e-05,0.00012726411296487886,6.891097816805452e-05,3.4100684276525845e-05,1.709962058374923e-05,0.0,0.0,0.0,0.0,7.152829936549245e-06,0.0,0.0,0.0,6.600628127367649e-05,3.266329136254587e-05,1.6378846969369098e-05,0.0,1.2215693359287383e-05 +93714,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970100,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,23401.0,,328.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0026324904142277605,0.00012205753488206076,0.0,0.0027545479491098215,0.0015104910554833313,0.0002491911132782644,0.0009289159630881406,0.0,6.594981726008491e-05,0.0015104910554833313,0.0002491911132782644,0.0008068584282060799,0.0,6.594981726008491e-05,0.0,0.00012205753488206076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.155655717715125e-06,0.0,0.0,0.0003137090533529529,9.610585447434679e-05,0.000321864709070668,0.00018000244808214562,2.9695647827619883e-05,9.61518387054158e-05,0.0,7.859118737771582e-06,0.0,8.155655717715125e-06,0.0,0.0,0.0,0.0,0.0001764985664105444,2.9117599932948818e-05,0.00010854240758709097,0.0,7.706135140083798e-06 +93715,50.0,the Greater Atlanta and Macon Area,G1301350050714,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,3909.0,,276.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.0006159195781366225,0.00021900833126168602,0.0,0.0008349279093983085,0.0005003777961228098,0.00013026364113940918,0.00019369996669745798,0.0,1.0503798364892041e-05,0.00029195597029975525,0.00013026364113940918,0.00019369996669745798,0.0,0.0,0.00020842182582305466,0.0,1.0503798364892041e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4630767416273775e-05,0.0,0.0,7.340224541025094e-05,3.679995317060726e-05,8.803301282652472e-05,3.479386683203785e-05,1.5524175711178354e-05,2.3084202867034736e-05,0.0,0.0,1.3923539988296794e-05,0.0,7.0170221369591e-07,0.0,0.0,0.0,5.2758764497322874e-05,1.373471968318736e-05,2.0423310157476065e-05,0.0,1.107498031596695e-06 +93716,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,43241.0,,10417.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003080082925168733,0.0017714226791160552,0.0,0.004851505604284789,0.001900889778205281,0.0007792139236884807,0.0013760888105331381,0.0,0.0007953130918578884,0.0018012983381088443,0.0007792139236884807,0.0003748730315041764,0.0,0.0001246976318672314,9.959144009643659e-05,0.0010012157790289615,0.0006706154599906571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011835651201796813,0.0,0.0,0.00036704703946067844,0.0002199755521919339,0.0004854035514786466,0.00021465695510521744,9.285729337327104e-05,4.467283502755687e-05,0.0,1.4859955954633095e-05,6.654140547947904e-06,6.68956137799662e-05,4.480675769005404e-05,0.0,0.0,0.0,0.0001901881033581378,7.79620259710612e-05,0.00013768063983949212,0.0,7.95727823099554e-05 +93717,85.0,Rural Climate Zone 3A,G1302690950200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,35382.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.003152467048506328,0.0,0.0,0.003152467048506328,0.00110402789695356,0.0009067857972782242,0.0011416226646682457,0.0,0.0,0.00110402789695356,0.0009067857972782242,0.0011416226646682457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000375671629046977,0.00011654040798108771,0.000375671629046977,0.00013156424862818656,0.00010805939996155635,0.00013604432325345833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013156424862818656,0.00010805939996155635,0.00013604432325345833,0.0,0.0 +93718,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,31392.0,,2698.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0065532689116094296,0.0018560411299129984,0.0,0.008409310041522428,0.0031285685756429855,0.0005368957030228644,0.0031497976870636063,0.00036770829139703786,0.0012263397843959335,0.0031285685756429855,0.0005368957030228644,0.0012937565571506078,0.00036770829139703786,0.0012263397843959335,0.0,0.0018560411299129984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001240095140338059,0.0,0.0,0.0007809411948753407,0.00034819390016063695,0.0009049507089091466,0.00037282585449588076,6.398088915584255e-05,0.00015417462723513805,4.381913153914035e-05,0.00014614069244933898,0.0,0.0001240095140338059,0.0,0.0,0.0,0.0,0.00033667451151395963,5.777693350129527e-05,0.00033895903894067393,3.9570176070149714e-05,0.00013197004888306808 +93719,50.0,the Greater Atlanta and Macon Area,G1300890021502,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,67796.0,,473.0,,9.325022323477118,Office,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,349688.3371303919,0.0,0.0,0.01616077814787432,0.0004012640775694948,0.0,0.01656204222544382,0.007401466163838026,0.002601057387399265,0.006158166212478976,0.0,0.0004012640775694948,0.007401466163838026,0.002601057387399265,0.006158166212478976,0.0,0.0,0.0,0.0,0.0004012640775694948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6809368338083108e-05,0.0,0.0,0.0019258460264549855,0.0006514512869151606,0.0019526553947930684,0.0008820171944160605,0.0003099625518195199,0.0007338557476647203,0.0,0.0,0.0,0.0,2.6809368338083108e-05,0.0,0.0,0.0,0.0008726286672541912,0.00030666319228850027,0.0007260443074077017,0.0,4.73088074005162e-05 +93720,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Propane,5923.0,,,813.0,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014222308400211304,0.0,0.00020866994704427265,0.001630900787065403,0.000990582622175685,0.00025680546396054954,0.0002762416262892868,0.0,0.00010727107463988173,0.0008891837497712942,0.00025680546396054954,0.0002762416262892868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010139887240439091,0.00010727107463988173,0.0,0.0,0.0,1.6830495177608996e-05,0.00016948280476794197,5.3404394680690005e-05,0.00018631329994555097,0.00010596124878228335,3.060270462924284e-05,3.2918851356415804e-05,0.0,0.0,0.0,0.0,0.0,8.178433249206749e-06,8.652061928402245e-06,0.0,0.0001131636692250045,2.9337329293115054e-05,3.1557706872465146e-05,0.0,1.2254594554966256e-05 +93721,50.0,the Greater Atlanta and Macon Area,G1301210000600,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,30274.0,,1990.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026480833690035828,0.0005858032050105506,0.0,0.003233886574014133,0.0011912170684453334,0.0008606900086190745,0.001181979496949725,0.0,0.0,0.0006054138634347828,0.0008606900086190745,0.001181979496949725,0.0,0.0,0.0005858032050105506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.913989619155277e-05,0.0,0.0,0.00031556607536532795,0.00012902935302334874,0.00035470597155688076,7.214579385684611e-05,0.000102566471775498,0.0001408538097329838,0.0,0.0,3.913989619155277e-05,0.0,0.0,0.0,0.0,0.0,0.00013065758428056564,9.44040178062209e-05,0.0001296443694700942,0.0,0.0 +93722,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,33239.0,,1211.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002931082719342489,0.0003527589838700496,0.0,0.0032838720768119767,0.0020721780744417423,0.000977361682707978,0.00023430194606281754,0.0,0.0,0.001719419090571693,0.000977361682707978,0.00023430194606281754,0.0,0.0,0.0003527589838700496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3570266994579697e-05,0.0,0.0,0.0003492915630995896,0.00010379706150724002,0.0003728618300941693,0.0002048999087626518,0.00011647033623919534,2.7921318097742336e-05,0.0,0.0,2.3570266994579697e-05,0.0,0.0,0.0,0.0,0.0,0.0002352820362806107,0.00011097291768813288,2.6603427405253814e-05,0.0,0.0 +93723,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,53522.0,,710.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005829894098628717,0.0002639930111592,0.0,0.006093925858211689,0.0032488228427465095,0.0006880557609208741,0.0020578125412640006,0.0,9.923471328030402e-05,0.0032488228427465095,0.0006880557609208741,0.0017938195301048006,0.0,9.923471328030402e-05,0.0,0.0002639930111592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.76393806013497e-05,0.0,0.0,0.0006947380732484344,0.00022444328250134958,0.0007123774538497841,0.00038715641895212347,8.19943768347509e-05,0.00021376627139651737,0.0,1.1825623645536808e-05,0.0,1.76393806013497e-05,0.0,0.0,0.0,0.0,0.00037978606871399506,8.043343855439161e-05,0.0002405574489670595,0.0,1.1600497614337833e-05 +93724,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,36152.0,,13953.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.006989900095152469,0.009597925121164148,0.0,0.016587825216316618,0.005307277855155218,0.0006297730654880807,0.00605173115429726,0.00038104820600594157,0.0042179949353701165,0.00455213828033185,0.0006297730654880807,0.0009162943496954469,0.00038104820600594157,0.0005106461936311507,0.0007551395748233686,0.005135436804601813,0.0037073487417389655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006412784304765288,0.0,0.0,0.0008329687117817624,0.000828300817389122,0.0014742471422582914,0.0005424668031879445,7.50484630586148e-05,0.00010919247967621713,4.540855076078128e-05,6.085241509820491e-05,5.045410494666446e-05,0.000343120498679928,0.0002477038268499362,0.0,0.0,0.0,0.0004716856555395206,5.597123974719636e-05,0.0005378491299246588,3.386575524164153e-05,0.00037487536180527405 +93725,50.0,the Greater Atlanta and Macon Area,G1301130140206,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,NaturalGas,13030.0,,434.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.002807739739302008,0.00034397871968177955,0.0,0.0031517184589837876,0.0013031326538365277,0.0007092131573145612,0.0009868608038574164,0.0,0.0001525118439752829,0.001111665778130031,0.0007092131573145612,0.0009868608038574164,0.0,0.0,0.00019146687570649666,0.0,0.0001525118439752829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2983863873963873e-05,0.0,0.0,0.0003345917343767393,0.00011220751360109882,0.00035757559825070316,0.00013247459354771276,8.451526223284258e-05,0.000117601878596184,0.0,0.0,1.2793374577597105e-05,0.0,1.0190489296366767e-05,0.0,0.0,0.0,0.00014784583215782086,8.046318930904506e-05,0.00011196347228402634,0.0,1.7303104499810972e-05 +93726,50.0,the Greater Atlanta and Macon Area,G1301350050529,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,25989.0,,14906.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005209810414545003,0.01025380425610191,0.0,0.015463614670646917,0.0036341943713030424,0.0005075622348774795,0.008801833442890867,0.00037523888835367704,0.002144714013250832,0.002325376620239157,0.0005075622348774795,0.0017325393398241163,0.00037523888835367704,0.000269021611279557,0.0013088177510638859,0.00706929410306675,0.0018756924019712755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006851001537615303,0.0,0.0,0.0006208431644237701,0.0008394802442642658,0.0013059433181853003,0.0002771106939622513,6.048522287175316e-05,0.00020646340665719104,4.471650219938003e-05,3.2058792001122797e-05,8.744766528638293e-05,0.0004723295233683047,0.0001253229651068427,0.0,0.0,0.0,0.00030691736423042195,4.2864978423166585e-05,0.0007433382050279948,3.168992046206126e-05,0.00018112679309967118 +93727,50.0,the Greater Atlanta and Macon Area,G1300630040617,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,40092.0,,3629.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.009521923231800622,0.0028143595547001077,0.0,0.012336363647283799,0.004468205150800706,0.0012479244650965887,0.005850277655007983,0.00041813110924735695,0.0003516635455650272,0.004468205150800706,0.0012479244650965887,0.0030359181003078743,0.00041813110924735695,0.0003516635455650272,0.0,0.0028143595547001077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018804156146299907,0.0,0.0,0.001134713612573996,0.0005444867930608066,0.0013227551740369952,0.0005324694481314391,0.0001487133264506949,0.0003617859030383814,4.98280704384464e-05,4.190722845422615e-05,0.0,0.00018804156146299907,0.0,0.0,0.0,0.0,0.00047909916170327195,0.00013380754574118854,0.0006272906067760637,4.483372118367692e-05,3.770679818754805e-05 +93728,50.0,the Greater Atlanta and Macon Area,G1301210006100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,37608.0,,6091.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0049912024748074435,0.0017743345583551482,0.0,0.006765537033162593,0.004446816452084617,0.0019588845485389284,0.0003598360325390459,0.0,0.0,0.0026724818937294693,0.0019588845485389284,0.0003598360325390459,0.0,0.0,0.0017743345583551482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011855072748625916,0.0,0.0,0.0005947905099052791,0.00025500632205454406,0.0007133412373915381,0.00031847372978899264,0.00023343591957086278,4.2880860545423714e-05,0.0,0.0,0.00011855072748625916,0.0,0.0,0.0,0.0,0.0,0.0004688611613290177,0.00020653986829316376,3.7940207769356535e-05,0.0,0.0 +93729,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Propane,163402.0,,,6950.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.0144090229580734,0.0,0.0006550370454745559,0.015064060003547954,0.007804405254732018,0.005393834908954282,0.0018658198398616562,0.0,0.0,0.007149368209257462,0.005393834908954282,0.0018658198398616562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006550370454745559,0.0,0.0,0.0,0.0,5.2827394342110555e-05,0.0017170966784098062,0.0005518013614541869,0.0017699240727519169,0.0008519770174955756,0.0006427733534054014,0.00022234630750882908,0.0,0.0,0.0,0.0,0.0,5.282739434211056e-05,0.0,0.0,0.0009169642666458051,0.0006337387296359249,0.00021922107647018703,0.0,0.0 +93730,50.0,the Greater Atlanta and Macon Area,G1301510070305,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,66877.0,,7187.0,,7.56685751697572,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.01392500613244901,0.004944087921932162,0.0,0.018869094054381173,0.003714520738840528,0.00078110220433102,0.010472048127902416,0.0002840828051928354,0.00361741189808539,0.003714520738840528,0.00078110220433102,0.005527960205970253,0.0002840828051928354,0.00361741189808539,0.0,0.004944087921932162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003303333385114166,0.0,0.0,0.00165941926088711,0.0007202200695184639,0.001989752599398527,0.00044265310911662263,9.308261915718908e-05,0.0006587576013936885,3.385366398692736e-05,0.0004310808139794603,0.0,0.0003303333385114166,0.0,0.0,0.0,0.0,0.00039169751734379545,8.236750195766289e-05,0.0011042811553892415,2.995663164579035e-05,0.00038145735595818565 +93731,50.0,the Greater Atlanta and Macon Area,G1302550160900,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,48390.0,,5731.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002490867554457538,0.0009746556976217227,0.0,0.003465523252079261,0.0014281274213009932,0.0005293754009185165,0.00102077236767528,0.0,0.0004872835229073111,0.0014281274213009932,0.0005293754009185165,0.0004376207805697433,0.0,9.57616820297052e-05,0.0,0.0005831515871055367,0.00039152184087760597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.51212218663407e-05,0.0,0.0,0.00029683140721433,0.00014800130316986802,0.0003619526290806707,0.00017018691796259161,6.308454454677513e-05,5.2150340908447055e-05,0.0,1.14117166861082e-05,0.0,3.8963034821705e-05,2.6159371691483423e-05,0.0,0.0,0.0,0.00014915914198294656,5.529001082827212e-05,0.00010661340735523605,0.0,5.089377256902578e-05 +93732,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,7799.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015995548061182056,0.0,0.0,0.0015995548061182056,0.0010915679592113793,0.0002360459884519834,0.00023025649329023182,0.0,4.151895101713233e-05,0.0010915679592113793,0.0002360459884519834,0.00023025649329023182,0.0,4.151895101713233e-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.0001906148230876768,6.155803443754557e-05,0.0001906148230876768,0.0001300793399747238,2.8128991990291084e-05,2.743907277539256e-05,0.0,4.9477063697008145e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001300793399747238,2.8128991990291084e-05,2.743907277539256e-05,0.0,4.9477063697008145e-06 +93733,50.0,the Greater Atlanta and Macon Area,G1300890020900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,38373.0,,15409.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007799977167773796,0.010599566236368171,0.0,0.01839954340414197,0.009705505077687564,0.0011413516187424343,0.0034132968605749612,0.0003670628116578974,0.0037723270354791095,0.004690772984305026,0.0011413516187424343,0.00119600223665633,0.0003670628116578974,0.00040478751641210886,0.00501473209338254,0.002217294623918631,0.003367539519067001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007082013122616304,0.0,0.0,0.0009295051562900938,0.0009911134856957875,0.0016377064685517242,0.0005589885178012918,0.0001360122205414005,0.00014252480770066576,4.374202241616738e-05,4.823758783056834e-05,0.00033505520603179797,0.0001481467191498844,0.000224999387079948,0.0,0.0,0.0,0.0008638675480779819,0.00010158941925078889,0.00030381071012841176,3.267152492934131e-05,0.0003357672661652 +93734,50.0,the Greater Atlanta and Macon Area,G1300890023501,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,81390.0,,5207.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006681280668322268,0.001516827182321888,0.0,0.00819807747704472,0.005125879014714434,0.002675002902482803,0.0003972259334469183,0.0,0.0,0.003609051832392547,0.002675002902482803,0.0003972259334469183,0.0,0.0,0.001516827182321888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010134496124503479,0.0,0.0,0.0007961938465536343,0.0002835100260338516,0.0008975388077986691,0.00043008294419782673,0.0003187743422556648,4.733656010014288e-05,0.0,0.0,0.00010134496124503479,0.0,0.0,0.0,0.0,0.0,0.0005611895414100774,0.00029286365281069393,4.348893892878682e-05,0.0,0.0 +93735,50.0,the Greater Atlanta and Macon Area,G1300890023312,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,33663.0,,2399.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007902766911636423,0.0018602831752745493,0.0,0.009762969226127903,0.0038199442529403193,0.0006623306741143109,0.004029858845786217,0.00040964072702516155,0.000841194726261894,0.0028008558039276637,0.0006623306741143109,0.004029858845786217,0.00040964072702516155,0.0,0.001019088449012655,0.0,0.000841194726261894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012429276708366262,0.0,0.0,0.0009417526940559527,0.0003757095489156419,0.0010660454611396153,0.00033377088410987163,7.892826698261906e-05,0.0004802280602628233,4.881584672615653e-05,0.0,6.808926991025818e-05,0.0,5.620349717340442e-05,0.0,0.0,0.0,0.00041711021906687683,7.232170793117817e-05,0.00044003137079308093,4.4729797629025584e-05,9.185236571945383e-05 +93736,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7118.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017091416788227879,0.0,0.0,0.0017091416788227879,0.000996785652706133,0.0002785574243539874,0.00039261047904049233,0.0,4.110541564843579e-05,0.000996785652706133,0.0002785574243539874,0.00039261047904049233,0.0,4.110541564843579e-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.00020367821023113913,6.971989146574118e-05,0.00020367821023113913,0.00011878682747184558,3.319565507178692e-05,4.678734401002746e-05,0.0,4.8985274853557295e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011878682747184558,3.319565507178692e-05,4.678734401002746e-05,0.0,4.8985274853557295e-06 +93737,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,240829.0,,14804.0,,3.3063363735822096,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,495950.45603733143,0.0,0.0,0.03721913481690898,0.004449623096695682,0.0,0.04166875791360465,0.012906971838989026,0.007276187347403938,0.015409281573952922,0.0,0.006076348491280973,0.012906971838989026,0.007276187347403938,0.010959658477257241,0.0,0.006076348491280973,0.0,0.004449623096695682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002972976105286152,0.0,0.0,0.004435333136639461,0.002003197010553328,0.0047326307471680755,0.0015380991571338916,0.0008670893348030182,0.001306041546896646,0.0,0.0007241068322980949,0.0,0.0002972976105286152,0.0,0.0,0.0,0.0,0.001465940787212386,0.0008264107136065164,0.0017501467147128457,0.0,0.0006901360909285857 +93738,50.0,the Greater Atlanta and Macon Area,G1302550160700,ComStock 90.1-2004,gen3_t5_cfl,5001_10000,Electricity,6651.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0015970735939060264,0.0,0.0,0.0015970735939060264,0.000857672354676618,0.0003433997701656044,0.0003266929412702643,0.0,6.922582071980031e-05,0.000857672354676618,0.0003433997701656044,0.0003266929412702643,0.0,6.922582071980031e-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.0001903213661454985,5.8276254294111954e-05,0.0001903213661454985,0.00010220779735519521,4.09225433576442e-05,3.8931610371554586e-05,0.0,8.249558957212958e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010220779735519521,4.09225433576442e-05,3.8931610371554586e-05,0.0,8.249558957212958e-06 +93739,50.0,the Greater Atlanta and Macon Area,G1300630040514,ComStock DOE Ref 1980-2004,gen4_led,_1000,Propane,3454.0,,,376.0,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005101372308240482,0.0,9.651915505377176e-05,0.00060665638587782,0.00033885088110994246,0.0001271207723373155,0.0001271207723373155,0.0,1.348125301950711e-05,0.0002558129790756778,0.0001271207723373155,0.0001271207723373155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.303790203426468e-05,1.348125301950711e-05,0.0,0.0,0.0,7.786258843171436e-06,6.0788771613207134e-05,2.874282176982814e-05,6.857503045637856e-05,3.0483085376078087e-05,1.5147915364704825e-05,1.5147915364704825e-05,0.0,0.0,0.0,0.0,0.0,6.698717976473115e-06,1.087540866698324e-06,0.0,3.8302917488722956e-05,1.4369437193108905e-05,1.4369437193108905e-05,0.0,1.5238895656973011e-06 +93740,50.0,the Greater Atlanta and Macon Area,G1300570090902,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,8838.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021314439973356913,0.0,0.0,0.0021314439973356913,0.000833770010365958,0.00037937734724220317,0.000846920435090508,0.0,7.137620463702231e-05,0.000833770010365958,0.00037937734724220317,0.000846920435090508,0.0,7.137620463702231e-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.0002539970691438913,7.004803157547835e-05,0.0002539970691438913,9.935759008341036e-05,4.520913259722283e-05,0.00010092468231863131,0.0,8.505664144626838e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.935759008341036e-05,4.520913259722283e-05,0.00010092468231863131,0.0,8.505664144626838e-06 +93741,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,191940.0,,13523.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,306613.1346040191,0.0,0.0,0.021333254695110354,0.005025670563239137,0.0,0.02635892525834949,0.015356077837723954,0.0019145983670023827,0.008384267690531959,0.0,0.0007039426146674279,0.01210493008955112,0.0019145983670023827,0.007313687490133083,0.0,0.0,0.003251147748172834,0.001070580200398875,0.0007039426146674279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033578698584272015,0.0,0.0,0.0025422426664439435,0.0010767126210627239,0.0028780296522866633,0.0014425210868096643,0.00022815898123660307,0.0008715579808230223,0.0,0.0,0.00021722337131956505,7.15301359433193e-05,4.703347857983575e-05,0.0,0.0,0.0,0.0016766710678308957,0.00020904763067709065,0.0009154459367957914,0.0,7.686078619155057e-05 +93742,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,4743.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0008333564749972615,0.0,0.0,0.0008333564749972616,0.0005985510926513678,0.00010991770099953957,9.759434701238276e-05,0.0,2.729333433397145e-05,0.0005985510926513678,0.00010991770099953957,9.759434701238276e-05,0.0,2.729333433397145e-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,9.931408289289888e-05,3.6418083591935534e-05,9.931408289289888e-05,7.133148252242052e-05,1.309928703500026e-05,1.1630668699247786e-05,0.0,3.2526446362303126e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.133148252242052e-05,1.3099287035000258e-05,1.1630668699247785e-05,0.0,3.252644636230312e-06 +93743,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Propane,60221.0,,2615.0,18561.0,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.01219598107120466,0.0017986651531005098,0.004130926890557165,0.018125573114862334,0.008348706666014236,0.0007229373078373594,0.004538439765867867,0.00038449076461469087,0.004130926890557165,0.008348706666014236,0.0007229373078373594,0.0027397746127673576,0.00038449076461469087,0.0,0.0,0.0017986651531005098,0.0,0.0,0.0,0.0,0.0,0.0,0.004130926890557165,0.0,0.00012017767331488757,0.0,0.00033315559469251243,0.0014533698900823543,0.0009411846418735723,0.0019067031580897544,0.0009948981405164163,8.615094673349093e-05,0.00032649328533393716,4.5818970777603656e-05,0.0,0.0,0.00012017767331488757,0.0,0.0,0.00033315559469251243,0.0,0.0008782345951313238,7.604873176805299e-05,0.0004774170383216659,4.044615585402104e-05,0.0004345490924976504 +93744,50.0,the Greater Atlanta and Macon Area,G1301350050429,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,27610.0,,388.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0013557875467071778,6.593921412117635e-05,0.0,0.001421709030466934,0.0009154894815630066,0.0002521080090317308,0.00011742818368500972,0.0,0.00013668335618718705,0.00084955026744183,0.0002521080090317308,0.00011742818368500972,0.0,0.00013668335618718705,6.593921412117635e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.405505260428128e-06,0.0,0.0,0.00016156560014782024,5.088422864201602e-05,0.00016597110540824835,0.00010123864845074092,3.0043041684672546e-05,1.3993604689330214e-05,0.0,1.6288192443008696e-05,4.405505260428128e-06,0.0,0.0,0.0,0.0,0.0,0.00010687475284217118,2.9431229628981516e-05,1.3708631678229455e-05,0.0,1.5956491258866202e-05 +93745,50.0,the Greater Atlanta and Macon Area,G1301350050549,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,15109.0,,109.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034099299431979055,8.659430620505486e-05,0.0,0.003496524249402961,0.0014539903563370244,0.0005845735971894248,0.0013713659896714566,0.0,8.659430620505486e-05,0.0014539903563370244,0.0005845735971894248,0.0013713659896714566,0.0,0.0,0.0,0.0,8.659430620505486e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.786034179805414e-06,0.0,0.0,0.0004063547676988163,0.00012582215427043761,0.00041214080187862163,0.00017326922351124669,6.966250692704731e-05,0.00016342303726052233,0.0,0.0,0.0,0.0,5.786034179805414e-06,0.0,0.0,0.0,0.0001713841256747603,6.89046075238456e-05,0.00016164506187788403,0.0,1.020700680213163e-05 +93746,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,19254.0,,119.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0009598331154745585,2.0265803103120352e-05,0.0,0.000980116648939099,0.0004173017863823628,0.0001288997275237839,0.0002370017411018458,0.0,0.00019691339393110643,0.00039703598327924243,0.0001288997275237839,0.0002370017411018458,0.0,0.00019691339393110643,2.0265803103120352e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3543861341090688e-06,0.0,0.0,0.00011438200467140114,3.386956989141485e-05,0.00011573639080551022,4.7314237196022644e-05,1.5360804912922998e-05,2.8243174590239568e-05,0.0,2.3465900875230093e-05,1.3543861341090688e-06,0.0,0.0,0.0,0.0,0.0,4.9276790354356784e-05,1.5221034410102558e-05,2.798618527645679e-05,0.0,2.3252380764594086e-05 +93747,50.0,the Greater Atlanta and Macon Area,G1300630040414,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,193326.0,,37307.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.05162161772135204,0.03230421590096672,0.0,0.08392583362231876,0.04350340316206414,0.0063522548493779646,0.024001830910299237,0.0006639163491987941,0.009404518631001845,0.030840060971498953,0.0063522548493779646,0.008863292289766225,0.0006639163491987941,0.004902183541133332,0.012663342190565193,0.015138538620533012,0.004502335089868516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021583809367463976,0.0,0.0,0.006151647375626452,0.004035187650776772,0.00831002831237285,0.003675149840587219,0.0007569858055285851,0.0010562212336712202,7.911761481847041e-05,0.0005841836394673569,0.0008460913109113521,0.0010114696257889904,0.0003008200000460551,0.0,0.0,0.0,0.004307547466113991,0.0006289769832170083,0.0023765732886367225,6.57385624993303e-05,0.0009312009510630591 +93748,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,67520.0,,6226.0,,9.325022323477118,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,699376.6742607838,0.0,0.0,0.017325681351038624,0.005278301919041901,0.0,0.022603983270080525,0.011070380948857254,0.004742163616280545,0.00620748457267364,0.0,0.0005839541322690863,0.006376033162084441,0.004742163616280545,0.00620748457267364,0.0,0.0,0.004694347786772814,0.0,0.0005839541322690863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003526636239328765,0.0,0.0,0.0020646679447954867,0.0008674148040606523,0.0024173315687283634,0.0007598195429075915,0.0005651144684663696,0.0007397339334215257,0.0,0.0,0.00031364740552489737,0.0,3.9016218407979155e-05,0.0,0.0,0.0,0.0011838967064244496,0.0005071398999345119,0.0006638453161386024,0.0,6.244964623079956e-05 +93750,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301090970300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,25715.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003082555859738557,0.0,0.0,0.003082555859738557,0.0019362562169578028,0.0008944721298423534,0.0002518882601372759,0.0,0.0,0.0019362562169578028,0.0008944721298423534,0.0002518882601372759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003673438837752837,9.446534119570785e-05,0.0003673438837752837,0.00023074095363892066,0.00010659299654440259,3.0017172750950142e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023074095363892066,0.00010659299654440259,3.0017172750950142e-05,0.0,0.0 +93751,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,39660.0,,1211.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003500548563134873,0.00035661322517930634,0.0,0.0038571310987078815,0.001055998663097655,0.001188608451910029,0.001612523983700197,0.0,0.0,0.0006993854379183487,0.001188608451910029,0.001612523983700197,0.0,0.0,0.00035661322517930634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382626197137951e-05,0.0,0.0,0.00041715234325207716,0.0001616032851390881,0.0004409786052234566,8.334415849461776e-05,0.0001416437429679471,0.00019216078457952082,0.0,0.0,2.3826261971379514e-05,0.0,0.0,0.0,0.0,0.0,0.00012073035778499639,0.00013589138763151826,0.00018435685980694192,0.0,0.0 +93752,50.0,the Greater Atlanta and Macon Area,G1301170130306,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,29210.0,,2874.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025008960171997996,0.0008459896872024749,0.0,0.003346916394008572,0.001292155183558478,0.0008049576835824463,0.0012497421476550528,0.0,0.0,0.0004461654963560031,0.0008049576835824463,0.0012497421476550528,0.0,0.0,0.0008459896872024749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.652446261180759e-05,0.0,0.0,0.00029802821549713054,0.00015274478739690136,0.00035455267810893814,5.3168906576233703e-05,9.592566037887149e-05,0.00014892999130536447,0.0,0.0,5.6524462611807595e-05,0.0,0.0,0.0,0.0,0.0,0.00013688333586196882,8.52724923124544e-05,0.00013239034778099692,0.0,0.0 +93753,35.0,Eastern Counties in South Carolina and Georgia,G1300290920102,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,26913.0,,505.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0013853617895558258,8.585040999589567e-05,0.0,0.0014712121995517215,0.000985932207484876,0.0002652107461211498,8.631139939281704e-05,0.0,0.00013375784655287833,0.0009000817974889804,0.0002652107461211498,8.631139939281704e-05,0.0,0.00013375784655287833,8.585040999589567e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.735732553449313e-06,0.0,0.0,0.00016509112122485383,6.007015843633081e-05,0.00017082685377830314,0.00010726116041440716,3.160469688719989e-05,1.0285577246081634e-05,0.0,1.5939686677165126e-05,5.735732553449313e-06,0.0,0.0,0.0,0.0,0.0,0.0001144795408131181,3.0794413859453323e-05,1.0021875027932797e-05,0.0,1.5531024077798892e-05 +93754,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960101,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,108674.0,,,23312.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009583083237806765,0.0,0.0021972565569264046,0.011780309421133731,0.008102613254011865,0.0026713276969508354,0.001006398843770469,0.0,0.0,0.00590535669708546,0.0026713276969508354,0.001006398843770469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021972565569264046,0.0,0.0,0.0,0.0,0.0001772050907721411,0.0011419961711890121,0.000409870443285598,0.0013192012619611534,0.0007037291203911561,0.000318336586065927,0.00011993046473192903,0.0,0.0,0.0,0.0,0.0,0.0001772050907721411,0.0,0.0,0.0009073596666909041,0.00029914484780911414,0.0001127001488056395,0.0,0.0 +93755,50.0,the Greater Atlanta and Macon Area,G1300970080402,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,161532.0,,18215.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009290673923384828,0.0030976005222517447,0.0,0.012388256715275155,0.00530180359326987,0.0023967547960398977,0.002589501555037292,0.0,0.0021001967709280947,0.004727091658200278,0.0023967547960398977,0.0018071493573774615,0.0,0.00035966038140577115,0.0005747119350695915,0.0007823521976598298,0.0017405363895223232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020696313579133372,0.0,0.0,0.001107151280643326,0.0005007830249009232,0.0013141144164346597,0.0005633181861997894,0.0002856165401677173,0.000215354423353315,0.0,4.286001803031667e-05,3.839881334092871e-05,5.2272093498749904e-05,0.0001162922289516551,0.0,0.0,0.0,0.0005624016917917307,0.0002542415856019001,0.00027468766615552757,0.0,0.0002227834728855011 +93756,50.0,the Greater Atlanta and Macon Area,G1300970080301,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,11293.0,,2310.0,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0025857539533857077,0.0018322925116206167,0.0,0.004417963757932584,0.003021041282475682,0.0006954010760000968,0.0006232805076994207,0.0,7.832359883112413e-05,0.0012670723696861898,0.0006954010760000968,0.0006232805076994207,0.0,0.0,0.0017539689127894923,0.0,7.832359883112413e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012242109114735515,0.0,0.0,0.0003081362382790676,0.00021761653699041487,0.0004305573294264228,0.00015099306456100675,8.286877851363871e-05,7.427439520442213e-05,0.0,0.0,0.00011718805091459603,0.0,5.23304023275911e-06,0.0,0.0,0.0,0.0002944187725248319,6.777104715385295e-05,6.074246091239722e-05,0.0,7.633109140663505e-06 +93757,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,56260.0,,2519.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005391519344774128,0.0007415222673650946,0.0,0.006133041612139222,0.0014186577407176088,0.0017843243997547379,0.0029300594716668757,0.0,0.0,0.0006771354733525142,0.0017843243997547379,0.0029300594716668757,0.0,0.0,0.0007415222673650946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.954389941446085e-05,0.0,0.0,0.0006424974388558097,0.00025149545654454275,0.0006920413382702705,8.069298829635063e-05,0.00021263465520930582,0.00034916979535015323,0.0,0.0,4.954389941446084e-05,0.0,0.0,0.0,0.0,0.0,0.0001600787771422357,0.00020133994249614347,0.0003306226186318914,0.0,0.0 +93758,81.0,the Columbus-Albany Area,G1301450120401,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,237546.0,,9850.0,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,1459415.2837631335,0.0,0.0,0.056880523683021704,0.008712040521240104,0.0,0.06559256420426181,0.05116167075229329,0.007374337052512437,0.002020018921996385,0.0006610132678781141,0.004375524209581578,0.042449630231053186,0.007374337052512437,0.002020018921996385,0.0006610132678781141,0.004375524209581578,0.008712040521240104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005820895549740433,0.0,0.0,0.006778337348353489,0.002487237582332979,0.007360426903327532,0.005058636865272571,0.0008787848814639571,0.0002407215830088409,7.877161867187272e-05,0.0005214223999362467,0.0005820895549740433,0.0,0.0,0.0,0.0,0.0,0.005741073586507196,0.0008275064329927649,0.00022667510866615623,7.417517365528453e-05,0.0004909966015061301 +93759,50.0,the Greater Atlanta and Macon Area,G1301210001001,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,17274.0,,1484.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014843641878009904,0.00043668240801001285,0.0,0.0019210465958110034,0.0006521848234324817,0.0007172467887836116,0.0005515842939886121,0.0,0.0,0.00021550241542246892,0.0007172467887836116,0.0005515842939886121,0.0,0.0,0.00043668240801001285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9176600717079653e-05,0.0,0.0,0.00017688826875556475,7.9408551885672e-05,0.00020606486947264438,2.568092755807835e-05,8.547265137565496e-05,6.573103261198267e-05,0.0,0.0,2.9176600717079653e-05,0.0,0.0,0.0,0.0,0.0,6.995789732831435e-05,7.693689795586252e-05,5.9166782207039384e-05,0.0,0.0 +93760,50.0,the Greater Atlanta and Macon Area,G1300590140400,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,Electricity,31331.0,,2502.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002597476208218671,0.0007364277927196759,0.0,0.003333934690544644,0.001474696961817214,0.0007982980390158447,0.0010608783104989897,0.0,0.0,0.0007382691690975381,0.0007982980390158447,0.0010608783104989897,0.0,0.0,0.0007364277927196759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9204397185610904e-05,0.0,0.0,0.00030953719882741035,0.00012904915153651365,0.00035874159601302126,8.797838835251936e-05,9.513193539348743e-05,0.00012642321784876493,0.0,0.0,4.9204397185610904e-05,0.0,0.0,0.0,0.0,0.0,0.00015868191516116222,8.589931693107783e-05,0.00011415375932929027,0.0,0.0 +93761,50.0,the Greater Atlanta and Macon Area,G1300670031313,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,15224.0,,2646.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0013564192191458677,0.0007788101390168035,0.0,0.0021352293581626716,0.0012432052615136422,0.00040949141683024827,0.00048253267981878084,0.0,0.0,0.0004643951224968385,0.00040949141683024827,0.00048253267981878084,0.0,0.0,0.0007788101390168035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.20360379235639e-05,0.0,0.0,0.0001616426395335623,0.00010133848011715911,0.0002136786774571262,5.534133719674792e-05,4.8798537021953974e-05,5.75027653148604e-05,0.0,0.0,5.20360379235639e-05,0.0,0.0,0.0,0.0,0.0,0.00012441120438534998,4.0979009605611704e-05,4.828846346616449e-05,0.0,0.0 +93762,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030700,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,239628.0,,6286.0,,1.8706521585294562,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,140298.9118897092,0.0,0.0,0.012334906057762215,0.0010689989507378236,0.0,0.013403905008500038,0.0046818437758563035,0.002083246545410524,0.002375052833661753,0.0,0.004263761853571457,0.0046818437758563035,0.002083246545410524,0.0013060538829239297,0.0,0.004263761853571457,0.0,0.0010689989507378236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.142445310521523e-05,0.0,0.0,0.0014699276976886783,0.00044873510813193414,0.0015413521507938934,0.0005579265711595573,0.0002482565966755915,0.00015563999986652668,0.0,0.0005081045299870027,0.0,7.142445310521523e-05,0.0,0.0,0.0,0.0,0.0005383781792709573,0.00023955828852608287,0.00027311390159003626,0.0,0.0004903017814068168 +93763,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,130557.0,,2306.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,140298.9118897092,0.0,0.0,0.006815036749387116,0.000392213324972988,0.0,0.007207250074360104,0.0029958459780620623,0.00342164060756463,0.0006346228263079501,0.0,0.00015515839278688203,0.002758773315514536,0.00342164060756463,0.0006346228263079501,0.0,0.0,0.000237072662547526,0.0,0.00015515839278688203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6205738230909123e-05,0.0,0.0,0.0008121337940752614,0.0002249995727826268,0.0008383395323061705,0.0003287572939241888,0.0004077498142373699,7.562668591370275e-05,0.0,0.0,1.5840012923714383e-05,0.0,1.0366909961515559e-05,0.0,0.0,0.0,0.00034847356345309806,0.00039800153415936695,7.381864066164836e-05,0.0,1.804785640851799e-05 +93764,50.0,the Greater Atlanta and Macon Area,G1300670030505,ComStock 90.1-2004,gen5_led,100001_200000,NaturalGas,276280.0,,66573.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.016163547111724158,0.011321332216823474,0.0,0.027484879328547634,0.012174109410043755,0.004482607704579171,0.0031703127344353812,0.0,0.007657831749127905,0.00830378427638327,0.004482607704579171,0.002421258155522411,0.0,0.0009558792448778867,0.003870325133660486,0.0007490545789129706,0.006701952504250019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007564249021196783,0.0,0.0,0.0019261784819946679,0.001294236872036891,0.0026826033841143462,0.0009895458268991914,0.0005341836444749838,0.0002885366266627526,0.0,0.00011391027106504335,0.0002585923859782192,5.004742601710505e-05,0.0004477850901243542,0.0,0.0,0.0,0.001188228142156716,0.00043751542272449037,0.00030943165398087156,0.0,0.0007474264347179266 +93765,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,128073.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.010209660220608149,0.0,0.0,0.010209660220608147,0.007309862308686542,0.0021014885978991728,0.0007983396876218689,0.0,0.0,0.007309862308686542,0.0021014885978991728,0.0007983396876218689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012166669535591552,0.0002642598663003309,0.0012166669535591552,0.0008711032212506665,0.0002504306387380429,9.513671313798232e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008711032212506666,0.000250430638738043,9.513671313798233e-05,0.0,0.0 +93766,50.0,the Greater Atlanta and Macon Area,G1300350150100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,90217.0,,30431.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.02415354284634984,0.026916463956686912,0.0,0.05107000680303675,0.039277633387414294,0.004313830867476325,0.004058481294547406,0.0006526214978757552,0.002767531972975737,0.01680078463098632,0.004313830867476325,0.001495394970969796,0.0006526214978757552,0.000890910879041638,0.022476848756427976,0.0025630863235776087,0.001876621093934099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017984021949568596,0.0,0.0,0.0028783308391281603,0.002460593913483434,0.00467673303408502,0.0020021169081713575,0.0005140708549311859,0.00017820331737668845,7.777163770811694e-05,0.00010616812094081077,0.001501772825892727,0.0001712505802249237,0.0001253849502618262,0.0,0.0,0.0,0.003596847094069281,0.0003950388218899265,0.0003716551989434504,5.9763777389747746e-05,0.0002534365865824106 +93767,50.0,the Greater Atlanta and Macon Area,G1300590001900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,26075.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.005724652815939902,0.0,0.0,0.005724652815939902,0.002852401559121234,0.0015404192483946008,0.0011762600027204302,0.0,0.0001556547127773766,0.002852401559121234,0.0015404192483946008,0.0011762600027204302,0.0,0.0001556547127773766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006821975144013848,0.00020000141398791296,0.0006821975144013848,0.00033991602919375527,0.00018356924274338005,0.00014017298095550878,0.0,1.8549117575465306e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00033991602919375527,0.00018356924274338005,0.00014017298095550878,0.0,1.8549117575465306e-05 +93768,35.0,Eastern Counties in South Carolina and Georgia,G1300510004212,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,3041.0,,216.0,,8.72605822017302,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0006819198229805897,0.0001716171780090629,0.0,0.0008536197080633919,0.00033678320426645987,0.0002482866353654009,0.00016086525842295293,0.0,0.00010768461000857827,0.0002727679291922359,0.0002482866353654009,0.00016086525842295293,0.0,0.0,6.401527507422394e-05,0.0,0.00010768461000857827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1469028368478155e-05,0.0,0.0,8.126438998664833e-05,3.157960400423249e-05,9.273341835512648e-05,3.250575599465934e-05,2.95883200412272e-05,1.9170313950761795e-05,0.0,0.0,4.278085762507032e-06,0.0,7.196469848558342e-06,0.0,0.0,0.0,3.658661753144803e-05,2.6972747011151025e-05,1.747568052521277e-05,0.0,1.1698373287314668e-05 +93769,50.0,the Greater Atlanta and Macon Area,G1301210002500,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,180397.0,,30194.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008661937577068336,0.005134712667247291,0.0,0.013796650244315627,0.004542412213649008,0.0020017046132397016,0.005439284815720958,0.0,0.00181324860170596,0.0038584989825933107,0.0020017046132397016,0.0024698393458133555,0.0,0.00033189463542196846,0.0006839132310556967,0.0029694454699076027,0.0014813539662839915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003430717536821678,0.0,0.0,0.0010322257446656478,0.0005885513947976184,0.0013752974983478156,0.0004598095922721983,0.00023853912783579885,0.00029432580588967624,0.0,3.9551218667974517e-05,4.569512000960725e-05,0.00019840114351927517,9.897549015328537e-05,0.0,0.0,0.0,0.0004528032560997874,0.0001995367932266084,0.0005422065985143312,0.0,0.00018075085050708861 +93770,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,114687.0,,8267.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009768808580621772,0.0024335937105889375,0.0,0.012202402291210713,0.0049222752644822515,0.0029289239562338603,0.0043512030704945985,0.0,0.0,0.002488681553893314,0.0029289239562338603,0.0043512030704945985,0.0,0.0,0.0024335937105889375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016259769507994567,0.0,0.0,0.0011641318932721788,0.00048366775477868174,0.0013267295883521242,0.0002965718434520673,0.0003490347632754765,0.0005185252865446352,0.0,0.0,0.00016259769507994567,0.0,0.0,0.0,0.0,0.0,0.0005351838170510298,0.00031845287362536784,0.0004730928976757263,0.0,0.0 +93771,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,Electricity,281266.0,,11796.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.03245465762470256,0.0034722220565220926,0.0,0.035926848991618354,0.008663461030597413,0.014222361488119211,0.013040995783295439,0.0,0.0,0.005191238974075319,0.014222361488119211,0.013040995783295439,0.0,0.0,0.0034722220565220926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023199322850443087,0.0,0.0,0.0038675572941420998,0.001300898385844553,0.004099550522646531,0.0006186296707236872,0.0016948506605546194,0.0015540696484245499,0.0,0.0,0.00023199322850443087,0.0,0.0,0.0,0.0,0.0,0.0009885725353815287,0.0016228890400460526,0.0014880854452811218,0.0,0.0 +93772,50.0,the Greater Atlanta and Macon Area,G1300570091102,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,10607.0,,462.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0023913096230245958,0.0003662269225176533,0.0,0.002757536545542249,0.0011437561227408825,0.0006399873365947608,0.0008891010426975548,0.0,8.460933643531147e-05,0.0008621385366585406,0.0006399873365947608,0.0008891010426975548,0.0,0.0,0.00028161758608234174,0.0,8.460933643531147e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4468664284403587e-05,0.0,0.0,0.00028496614801308675,0.0001034649000061927,0.00030943481229749037,0.00010273880700336927,7.626562630392089e-05,0.00010595185871893896,0.0,0.0,1.8815673416529854e-05,0.0,5.652990867873727e-06,0.0,0.0,0.0,0.0001283457010666145,7.181567972040372e-05,9.976977991655983e-05,0.0,9.494370684152621e-06 +93773,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,58300.0,,5760.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0027632413665923897,0.0009794783559279768,0.0,0.0037427197225203667,0.0015883035063697503,0.0007044449895801179,0.000868344450547086,0.0,0.0005816267760234122,0.0014356805552659356,0.0007044449895801179,0.0005190563305720459,0.0,0.00010405949117428991,0.0001526229511038145,0.00034928811997504016,0.0004775672848491223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.544329187101156e-05,0.0,0.0,0.0003292899425892191,0.0001504750320510982,0.00039473323446023067,0.00017108717802780167,8.394729934944472e-05,6.18549039403739e-05,0.0,1.240056127159878e-05,1.0197416078519768e-05,2.3337488004976703e-05,3.190838778751511e-05,0.0,0.0,0.0,0.00016751352675472626,7.429566461071017e-05,9.158164089274197e-05,0.0,6.134240220205223e-05 +93774,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,50593.0,,2967.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004268740098372671,0.0008732420575948349,0.0,0.005142012845573804,0.0018768535627423112,0.0011702560673440025,0.002094872525881192,0.0,0.0,0.0010036115051474765,0.0011702560673440025,0.002094872525881192,0.0,0.0,0.0008732420575948349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.834543624291341e-05,0.0,0.0,0.0005086985334271906,0.00020251348413356042,0.000567043969670104,0.0001195986846315153,0.0001394574350917051,0.0002496424137039702,0.0,0.0,5.834543624291341e-05,0.0,0.0,0.0,0.0,0.0,0.0002069731303030449,0.00012905192302825087,0.0002310155319917236,0.0,0.0 +93775,50.0,the Greater Atlanta and Macon Area,G1300670030310,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,66931.0,,5126.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006479742094484369,0.0015088544936265572,0.0,0.007988596588110927,0.004210460536013334,0.0013065486089121007,0.002471587443185494,0.0,0.0,0.002701606042386776,0.0013065486089121007,0.002471587443185494,0.0,0.0,0.0015088544936265572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010081354804720912,0.0,0.0,0.0007721787854736984,0.0003193456658949369,0.0008729923335209076,0.0003219453555743148,0.00015569896197734073,0.000294534467922043,0.0,0.0,0.00010081354804720912,0.0,0.0,0.0,0.0,0.0,0.000460118335929286,0.0001427793863881154,0.00027009461120350634,0.0,0.0 +93776,85.0,Rural Climate Zone 3A,G1300910960300,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,109599.0,,1306.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005298009295925978,0.00022203731606332126,0.0,0.005520046611989299,0.0024403714851332276,0.001557062609547617,0.0010730414731415958,0.0,0.0004495710441668588,0.0024403714851332276,0.001557062609547617,0.0008510041570782745,0.0,0.0004495710441668588,0.0,0.00022203731606332126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4835463373764107e-05,0.0,0.0,0.0006313541095329251,0.00018932666895368132,0.0006461895729066891,0.00029081462108996605,0.000185552312657113,0.0001014126140197845,0.0,5.357456176606153e-05,0.0,1.4835463373764107e-05,0.0,0.0,0.0,0.0,0.0002856755963413158,0.0001822733924867988,0.0001256127456848867,0.0,5.262783839368781e-05 +93777,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,6283.0,,171.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,24284.436554246196,0.0,0.0,0.0004721289032838596,5.0208195903041745e-05,0.0,0.0005223064095806036,5.0515091966018764e-05,0.0002326885949491825,0.00023907203305910464,0.0,0.0,3.068960629770278e-07,0.0002326885949491825,0.00023907203305910464,0.0,0.0,5.0208195903041745e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3536221860218168e-06,0.0,0.0,5.626135303828023e-05,2.309711582639225e-05,5.9614975224302045e-05,3.65713423285753e-08,2.7728391753525788e-05,2.848907567396015e-05,0.0,0.0,3.3536221860218168e-06,0.0,0.0,0.0,0.0,0.0,5.765688302438518e-06,2.6558595813541227e-05,2.728718826002191e-05,0.0,0.0 +93778,35.0,Eastern Counties in South Carolina and Georgia,G1300510000601,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,16516.0,,648.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0014431787361494734,0.0001908279719591159,0.0,0.0016340373977148874,0.0006318376144571048,0.00045061548926916996,0.0005515842939886121,0.0,0.0,0.00044100964249798897,0.00045061548926916996,0.0005515842939886121,0.0,0.0,0.0001908279719591159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2750126189121349e-05,0.0,0.0,0.00017198245884102894,6.585809986103369e-05,0.00018473258503015028,5.2554767326859874e-05,5.369948842451521e-05,6.57318603455569e-05,0.0,0.0,1.2750126189121349e-05,0.0,0.0,0.0,0.0,0.0,7.143104313351236e-05,5.094336537445901e-05,6.235817652217885e-05,0.0,0.0 +93779,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,81637.0,,8861.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010101668050526657,0.002608309639241759,0.0,0.012710008379374717,0.004362312707974366,0.0033506605259768923,0.0049970044558171585,0.0,0.0,0.001754003068732607,0.0033506605259768923,0.0049970044558171585,0.0,0.0,0.002608309639241759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001742727129189497,0.0,0.0,0.0012037974520963772,0.0005017859060419292,0.0013780701650153268,0.00020902136306087159,0.00039929213510441977,0.0005954839539310861,0.0,0.0,0.0001742727129189497,0.0,0.0,0.0,0.0,0.0,0.0004729794673528325,0.0003632920739404326,0.0005417952962316655,0.0,0.0 +93780,50.0,the Greater Atlanta and Macon Area,G1300890021704,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,16522.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0037105701562402883,0.0,0.0,0.0037105701562402875,0.0016921040216324906,0.00040096389348816237,0.0015519982387181036,0.0,6.550400240153148e-05,0.0016921040216324906,0.00040096389348816237,0.0015519982387181036,0.0,6.550400240153148e-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.00044218068107645963,0.00012917152877382366,0.00044218068107645963,0.00020164440429171023,4.778200654998832e-05,0.00018494829886768374,0.0,7.805971367077301e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00020164440429171025,4.778200654998833e-05,0.0001849482988676838,0.0,7.805971367077303e-06 +93781,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,63294.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005639429984446971,0.0,0.0,0.005639429984446971,0.0016775552594450293,0.0015171713769332347,0.0024446726584624085,0.0,0.0,0.0016775552594450293,0.0015171713769332347,0.0024446726584624085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006720387108814491,0.00021924087971608543,0.0006720387108814491,0.0001999106429371494,0.00018079804149575423,0.00029132636923433924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001999106429371494,0.00018079804149575423,0.00029132636923433924,0.0,0.0 +93782,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,8113.0,,40.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017000439007114642,3.2090344610851275e-05,0.0,0.0017321342453223156,0.0008360031013569194,0.00024224901898243142,0.0006217917803721132,0.0,3.2090344610851275e-05,0.0008360031013569194,0.00024224901898243142,0.0006217917803721132,0.0,0.0,0.0,0.0,3.2090344610851275e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.143536029557992e-06,0.0,0.0,0.00020259020270653412,6.648196613451202e-05,0.0002047337387360921,9.962450834140825e-05,2.886824148515876e-05,7.409745287996708e-05,0.0,0.0,0.0,0.0,2.143536029557992e-06,0.0,0.0,0.0,9.881338065914235e-05,2.86332006282774e-05,7.349416262321254e-05,0.0,3.7929948254597577e-06 +93783,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,53292.0,,7210.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.00507498674541962,0.0021222476546987426,0.0,0.007197234400118365,0.0031646508222065157,0.0016685938944061003,0.00236395899389945,0.0,0.0,0.0010424031675077727,0.0016685938944061003,0.00236395899389945,0.0,0.0,0.0021222476546987426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014179670547407398,0.0,0.0,0.0006047747239036933,0.00033691605664223136,0.0007465714293777673,0.0001242208343489423,0.00019884257091067523,0.0002817076614329132,0.0,0.0,0.00014179670547407398,0.0,0.0,0.0,0.0,0.0,0.00032827024332810243,0.000173083779066205,0.00024521422354076955,0.0,0.0 +93784,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,15013.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013376371800916736,0.0,0.0,0.0013376371800916734,0.00038558421352433776,0.0004318334502149758,0.0005201888267460621,0.0,0.0,0.00038558421352433776,0.0004318334502149758,0.0005201888267460621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015940509476027975,5.646786434914823e-05,0.00015940509476027975,4.594974557353634e-05,5.146122810929877e-05,6.19904638229418e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5949745573536344e-05,5.146122810929878e-05,6.199046382294181e-05,0.0,0.0 +93785,81.0,the Columbus-Albany Area,G1302150010602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,35374.0,,199.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008493851058879393,0.00015805321791581648,0.0,0.008651986983868949,0.005098312146512127,0.002618505954586473,0.0007771983719282718,0.0,0.00015805321791581648,0.005098312146512127,0.002618505954586473,0.0007771983719282718,0.0,0.0,0.0,0.0,0.00015805321791581648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0562484087989793e-05,0.0,0.0,0.001012200360416748,0.0003318713579710742,0.001022762844504738,0.0006075587335407661,0.0003120436952111458,9.261764383762277e-05,0.0,0.0,0.0,0.0,1.0562484087989793e-05,0.0,0.0,0.0,0.0006026782336660507,0.00030953705818774507,9.187364926690588e-05,0.0,1.868368029680293e-05 +93786,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,4530.0,,375.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0010484775737932004,0.0002973319300928102,0.0,0.00134589221095975,0.0008605671022574937,0.00019436162328737242,0.00025647463566559235,0.0,3.448884974929119e-05,0.0005977240219139748,0.00019436162328737242,0.00025647463566559235,0.0,0.0,0.00026284308034351896,0.0,3.448884974929119e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.986853078889317e-05,0.0,0.0,0.00012494647667981733,5.1288535660153326e-05,0.00014481500746871048,7.123043203952352e-05,2.316196420269548e-05,3.056393659257818e-05,0.0,0.0,1.7563891751627952e-05,0.0,2.3046390372652157e-06,0.0,0.0,0.0,9.259510555594742e-05,2.0912878237047226e-05,2.75961001757802e-05,0.0,3.710923499935614e-06 +93787,50.0,the Greater Atlanta and Macon Area,G1300670031211,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,92255.0,,19649.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,357187.66821064625,0.0,0.0,0.024180223445792414,0.017013826954168768,0.0,0.041194050399961185,0.021094104805459046,0.0016057133786850357,0.012858255897108598,0.0006414367230156966,0.004994539595692804,0.014466767944113619,0.0016057133786850357,0.004883495659125696,0.0006414367230156966,0.0025828097408523666,0.0066273368613454274,0.007974760237982905,0.0024117298548404385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011367669941368809,0.0,0.0,0.0028815068669781623,0.002038878722470119,0.004018273861115043,0.0017239746054206423,0.00019134951905850795,0.000581956006658713,7.643867833749574e-05,0.00030778805750280306,0.00044280089501899265,0.0005328280491575652,0.00016113804996032325,0.0,0.0,0.0,0.002057624563266475,0.000156629319898557,0.0012542586385467093,6.25689484920301e-05,0.000487192390911271 +93788,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,70028.0,,4370.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00562825834941485,0.0012731397940328052,0.0,0.006901398143447655,0.004349134956292808,0.0019550878486092097,0.0005972360857445141,0.0,0.0,0.003075995162260003,0.0019550878486092097,0.0005972360857445141,0.0,0.0,0.0012731397940328052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.506317687185231e-05,0.0,0.0,0.000670710428910097,0.0002270268627269413,0.0007557736057819494,0.00036656135993104927,0.0002329846513946775,7.117165672964118e-05,0.0,0.0,8.506317687185231e-05,0.0,0.0,0.0,0.0,0.0,0.0004762747112439024,0.0002141020938440897,6.540345313286627e-05,0.0,0.0 +93789,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,46159.0,,10975.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0027795001080145776,0.0018664751466889583,0.0,0.0046459929850649565,0.002292659844142768,0.0007989832766718395,0.0007701891697256736,0.0,0.0007841252338018351,0.0014407691689934908,0.0007989832766718395,0.0004096245398874799,0.0,0.00013010539210034746,0.000851890675149277,0.00036056462983819377,0.0006540198417014877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012470723420955412,0.0,0.0,0.00033122869217421517,0.00020716810036161722,0.00045593592638376937,0.00017169421443610964,9.521359075971461e-05,4.881431745160523e-05,0.0,1.550445662727261e-05,5.6918480878374155e-05,2.4090874084596683e-05,4.369787924658329e-05,0.0,0.0,0.0,0.00022499086702936264,7.840846544227435e-05,7.558274705072797e-05,0.0,7.695036691264634e-05 +93790,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,3216.0,,15.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0004226331468078609,1.190981861846027e-05,0.0,0.00043454296542632124,0.00026127164594247213,0.00010660941804996728,5.4834789889160824e-05,0.0,1.190981861846027e-05,0.00026127164594247213,0.00010660941804996728,5.4834789889160824e-05,0.0,0.0,0.0,0.0,1.190981861846027e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.948505408403746e-07,0.0,0.0,5.036930284854872e-05,1.7389634330312434e-05,5.11641533893891e-05,3.113828330695996e-05,1.2705681286062487e-05,6.535195261954561e-06,0.0,0.0,0.0,0.0,7.948505408403746e-07,0.0,0.0,0.0,3.076276371470882e-05,1.2552454076688725e-05,6.456382508025309e-06,0.0,1.4022912234625104e-06 +93791,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock 90.1-2004,gen5_led,1001_5000,Electricity,5029.0,,271.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001017214299919742,0.0002152865129434172,0.0,0.0012325008128631593,0.0007109500058630866,0.00023240687720745386,0.0002467152009643541,0.0,4.242872882826471e-05,0.0004956634929196694,0.00023240687720745386,0.0002467152009643541,0.0,4.242872882826471e-05,0.0002152865129434172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4386660185283275e-05,0.0,0.0,0.00012121479665749474,4.677779008459045e-05,0.00013560145684277802,5.9064987102070576e-05,2.7694412440650476e-05,2.9399442103366687e-05,0.0,5.0559550114070086e-06,1.4386660185283276e-05,0.0,0.0,0.0,0.0,0.0,7.821971030871829e-05,2.556972847458101e-05,2.714395019205522e-05,0.0,4.668067867423509e-06 +93792,85.0,Rural Climate Zone 3A,G1301470960400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,12671.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005914139355272812,0.0,0.0,0.0005914139355272813,0.00031671744604640326,0.00010413041261997013,4.322662114208873e-05,0.0,0.00012735718608023928,0.00031671744604640326,0.00010413041261997013,4.322662114208873e-05,0.0,0.00012735718608023928,0.0,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.047869122716459e-05,2.1173442087084895e-05,7.047869122716459e-05,3.774316049259028e-05,1.2409202349716326e-05,5.151308586515987e-06,0.0,1.517713272229054e-05,0.0,0.0,0.0,0.0,0.0,0.0,3.7743160492590274e-05,1.2409202349716323e-05,5.151308586515986e-06,0.0,1.5177132722290539e-05 +93793,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,35165.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0031331632861450725,0.0,0.0,0.0031331632861450725,0.0011541747136440063,0.0008911954772789912,0.0010877930952220751,0.0,0.0,0.0011541747136440063,0.0008911954772789912,0.0010877930952220751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003733732825016158,0.00014066093968137468,0.0003733732825016158,0.00013754086910160214,0.00010620211917255438,0.00012963029422745925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013754086910160214,0.00010620211917255438,0.00012963029422745925,0.0,0.0 +93794,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,268736.0,,4804.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.022453498034800883,0.001413992920560358,0.0,0.023867490955361243,0.005115711852976672,0.007343255546882834,0.011408523555501735,0.0,0.0,0.003701718932416314,0.007343255546882834,0.011408523555501735,0.0,0.0,0.001413992920560358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.44738946957537e-05,0.0,0.0,0.0026757410618662744,0.0008178496605299688,0.002770214956562028,0.00044112687170624887,0.0008750819299566625,0.001359532260203363,0.0,0.0,9.447389469575371e-05,0.0,0.0,0.0,0.0,0.0,0.0005937625163483856,0.000852305606143426,0.0013241468340702163,0.0,0.0 +93795,50.0,the Greater Atlanta and Macon Area,G1300670030505,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,62830.0,,3772.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006024001440963483,0.0011102578870319936,0.0,0.007134259327995478,0.002368163469962235,0.0017832195739280203,0.002982876284105222,0.0,0.0,0.0012579055829302415,0.0017832195739280203,0.002982876284105222,0.0,0.0,0.0011102578870319936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.418120325735013e-05,0.0,0.0,0.0007178696403469649,0.0002982406781996561,0.000792050843604315,0.00014990239249745984,0.00021250313545586284,0.00035546411239364235,0.0,0.0,7.418120325735013e-05,0.0,0.0,0.0,0.0,0.0,0.000262915291965358,0.00019797438009002956,0.0003311611715489273,0.0,0.0 +93796,50.0,the Greater Atlanta and Macon Area,G1302230120101,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,247839.0,,7186.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012757562413293434,0.0012219942394314592,0.0,0.013979556652724896,0.0066403040375924965,0.002802319083162186,0.0027206884991842627,0.0,0.0018162273024245291,0.0056253472284629935,0.002802319083162186,0.002513651068882306,0.0,0.0018162273024245291,0.0010149568091295026,0.00020703743030195656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.164670416954023e-05,0.0,0.0,0.001520294274963309,0.0004307306914144121,0.001601940979132849,0.0006703618535466928,0.0003339469971405037,0.00029954698283859966,0.0,0.0002164363285443059,6.781364074057488e-05,1.3833063428965357e-05,0.0,0.0,0.0,0.0,0.0007609236412835237,0.0003211224710082973,0.00031176828468656645,0.0,0.0002081245504024368 +93797,50.0,the Greater Atlanta and Macon Area,G1300670031110,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,4415.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010206052899430535,0.0,0.0,0.0010206052899430537,0.0003056853445404802,0.0003071740718677878,0.0003656479730014782,0.0,4.193248638582886e-05,0.0003056853445404802,0.0003071740718677878,0.0003656479730014782,0.0,4.193248638582886e-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.00012162530749776915,3.9760026326953786e-05,0.00012162530749776915,3.642845514681968e-05,3.660586645435289e-05,4.3574188366907426e-05,0.0,4.997085162185492e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.642845514681967e-05,3.6605866454352886e-05,4.357418836690741e-05,0.0,4.997085162185491e-06 +93798,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,21517.0,,,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0077753303175204245,0.0,0.0,0.007775330317520423,0.004194167956981466,0.00045686342433718177,0.002049982572353315,0.0004182119700304255,0.0006561852546011027,0.004194167956981466,0.00045686342433718177,0.002049982572353315,0.0004182119700304255,0.0006561852546011027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009265740019807526,0.0003169509969422217,0.0009265740019807526,0.0004998124620021386,5.4443702602943626e-05,0.00024429322980350915,4.983766900219902e-05,7.819657462351992e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004998124620021387,5.444370260294364e-05,0.0002442932298035092,4.983766900219903e-05,7.819657462351994e-05 +93799,50.0,the Greater Atlanta and Macon Area,G1301210011617,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,173035.0,,26789.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.008907024362977727,0.004555709984714047,0.0,0.013462734347691772,0.004937781542954764,0.0021992740305433497,0.0036880570182623437,0.0,0.002637604025569895,0.004222521032908415,0.0021992740305433497,0.0021446999780924273,0.0,0.0003405115910721141,0.00071526051004635,0.0015433570401699162,0.0022970924344977803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030438619460545254,0.0,0.0,0.0010614318935237169,0.0005427450941039065,0.0013658180881291693,0.0005031892035720602,0.00026208299242113585,0.0002555795141022689,0.0,4.057807053730986e-05,4.778957078810387e-05,0.00010311819188471505,0.0001534784319326336,0.0,0.0,0.0,0.0005009466258802228,0.00022312022016417955,0.00037415987387867346,0.0,0.00026758956942972976 +93800,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9174.0,,129.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.001032025518745653,4.808679390115474e-05,0.0,0.0010801123126468078,0.0005482514479511994,0.00016340210304687316,0.0003298653315717408,0.0,3.859343007699445e-05,0.0005482514479511994,0.00016340210304687316,0.000281778537670586,0.0,3.859343007699445e-05,0.0,4.808679390115474e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213617544388624e-06,0.0,0.0,0.00012298222761801173,4.2637236389246175e-05,0.00012619584516240036,6.533286545645596e-05,1.9471955165020486e-05,3.357838699550128e-05,0.0,4.599020001034004e-06,0.0,3.2136175443886235e-06,0.0,0.0,0.0,0.0,6.405542648261175e-05,1.9091224360532466e-05,3.854009793246688e-05,0.0,4.5090963867892636e-06 +93801,50.0,the Greater Atlanta and Macon Area,G1300670030209,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,15997.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0014667107432495977,0.0,0.0,0.0014667107432495977,0.0009427965265478166,0.00041220011796972995,0.0001117140987320512,0.0,0.0,0.0009427965265478166,0.00041220011796972995,0.0001117140987320512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001747857135519726,4.037015824600263e-05,0.0001747857135519726,0.00011235164423892047,4.912126816902028e-05,1.3312801144031876e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011235164423892047,4.912126816902028e-05,1.3312801144031876e-05,0.0,0.0 +93802,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,26049.0,,786.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.0062548051586088635,0.00062336321477316,0.0,0.006878168373382024,0.003432508974328737,0.001609066119598226,0.001595667573652458,0.0,0.00024092570580260252,0.0030500714653581796,0.001609066119598226,0.001595667573652458,0.0,0.0,0.0003824375089705575,0.0,0.00024092570580260252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.165175411134866e-05,0.0,0.0,0.0007453711201843653,0.00024441645201353366,0.000787022874295714,0.0003634701844624736,0.00019174880521496347,0.00019015213050692828,0.0,0.0,2.5553630225670185e-05,0.0,1.6098123885678474e-05,0.0,0.0,0.0,0.0003927590795067605,0.00018411469066078803,0.00018258158452421402,0.0,2.7567519603951454e-05 +93803,50.0,the Greater Atlanta and Macon Area,G1300630040416,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,25574.0,,5807.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005263815552719758,0.003994300345772426,0.0,0.009258115898492186,0.00422660133189199,0.0002962752002654893,0.003161488042339151,0.00037416308878844285,0.0011995882352071104,0.002230132498730426,0.0002962752002654893,0.0011636565297282893,0.00037416308878844285,0.0011995882352071104,0.0019964688331615644,0.001997831512610861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002668763084063696,0.0,0.0,0.0006272803218432382,0.000428526321813397,0.0008941566302496078,0.0002657612557936002,3.5306632824678e-05,0.0001386710524280805,4.458840557887802e-05,0.0001429529752180015,0.00013339263097890416,0.0001334836774274654,0.0,0.0,0.0,0.0,0.0004082087160896905,2.861450835143066e-05,0.00030533917759366125,3.613698621869129e-05,0.0001158572419961339 +93804,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010202,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,224384.0,,37280.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.06007363827754563,0.03297356977058733,0.0,0.09304720804813295,0.07131363034905677,0.01044941356348671,0.005873501263629025,0.0006471806799621379,0.004763482191998323,0.040082413352365794,0.01044941356348671,0.004131148489732668,0.0006471806799621379,0.004763482191998323,0.03123121699669097,0.001742352773896357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022031011596365785,0.0,0.0,0.007158862649681816,0.0037855379060767573,0.009361963809318396,0.004776545920718998,0.0012452369893948074,0.0004923012068421857,7.712330616586587e-05,0.0005676552265599603,0.0020866873335518114,0.00011641382608476667,0.0,0.0,0.0,0.0,0.007175235457829259,0.0010513698762391432,0.0005909635271983226,6.511621606917395e-05,0.0004792787319824993 +93805,81.0,the Columbus-Albany Area,G1300950000100,ComStock 90.1-2007,gen3_t5_cfl,100001_200000,Electricity,325769.0,,7059.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.020927447000232465,0.001200487311028935,0.0,0.0221279343112614,0.010994136127177822,0.004310109018323476,0.0024718251462924018,0.0,0.00435184628910628,0.010109869812075529,0.004310109018323476,0.0021556041503657595,0.0,0.00435184628910628,0.0008842663151022934,0.0003162209959266417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.02095221163135e-05,0.0,0.0,0.0024938834143869134,0.0005700266734362213,0.002574092936503227,0.001204773647051455,0.0005136273619461073,0.00025687918065309383,0.0,0.0005186011118433524,5.908148958035836e-05,2.112803253595515e-05,0.0,0.0,0.0,0.0,0.0012789231814341073,0.0005013853088843913,0.00028754187172836114,0.0,0.0005062405119232154 +93806,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,179988.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.015680516752141962,0.0,0.0,0.015680516752141962,0.007656074703875318,0.0027583511244312284,0.0052660909238354155,0.0,0.0,0.007656074703875318,0.0027583511244312284,0.0052660909238354155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018686155218314215,0.0006634578426347989,0.0018686155218314215,0.0009123589645735423,0.0003287071342893894,0.0006275494229684899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009123589645735423,0.0003287071342893894,0.0006275494229684899,0.0,0.0 +93807,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,228783.0,,6439.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.01936937673951954,0.0018952673265209326,0.0,0.021264644066040474,0.006949906862965177,0.004789788234095069,0.009524918279373929,0.0,0.0,0.005054639536444245,0.004789788234095069,0.009524918279373929,0.0,0.0,0.0018952673265209326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001266306779206677,0.0,0.0,0.0023082122697519773,0.0007880606749207956,0.002434842947672645,0.0006023519060058025,0.0005707900734304236,0.0011350666330929731,0.0,0.0,0.0001266306779206677,0.0,0.0,0.0,0.0,0.0,0.0007957778018629861,0.0005484400334382533,0.0010906215983520209,0.0,0.0 +93808,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,6315.0,,1320.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,9613.75315558068,0.0,0.0,0.0005407411907902956,0.0003844690216830625,0.0,0.0009252102124733583,0.0007111978308349589,0.0001540245227488395,5.998785888955985e-05,0.0,0.0,0.00032672880915189634,0.0001540245227488395,5.998785888955985e-05,0.0,0.0,0.0003844690216830625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5688613866675793e-05,0.0,0.0,6.443819457226952e-05,4.140394742293983e-05,9.01268084389453e-05,3.8935104140532676e-05,1.8354551742738798e-05,7.148538688998051e-06,0.0,0.0,2.568861386667579e-05,0.0,0.0,0.0,0.0,0.0,6.92793808344409e-05,1.5003875302645731e-05,5.84355230185867e-06,0.0,0.0 +93809,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,5384.0,,862.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0012390346716885645,0.0006838220856765937,0.0,0.0019228567573651583,0.0012028089733907479,0.0002928657481108876,0.0003902946809757917,0.0,3.6887354887731115e-05,0.0005558742426018852,0.0002928657481108876,0.0003902946809757917,0.0,0.0,0.0006469347307888626,0.0,3.6887354887731115e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5688003966486286e-05,0.0,0.0,0.000147656111942197,9.223887269439261e-05,0.00019334411590868328,6.624369056561685e-05,3.4900893958168316e-05,4.651152741841183e-05,0.0,0.0,4.3223459969261704e-05,0.0,2.464543997224587e-06,0.0,0.0,0.0,0.0001209429858342286,2.944778332111693e-05,3.924430654966134e-05,0.0,3.7090402036764056e-06 +93810,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,34506.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007939465543604817,0.0,0.0,0.007939465543604815,0.0032193728453025414,0.0014326519313122832,0.0031183048011931076,0.0,0.00016913596579688368,0.0032193728453025414,0.0014326519313122832,0.0031183048011931076,0.0,0.00016913596579688368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009461274373328651,0.0002632560677873216,0.0009461274373328651,0.00038364509087120965,0.00017072576144049054,0.00037160104973968437,0.0,2.0155535281480378e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003836450908712097,0.00017072576144049056,0.0003716010497396845,0.0,2.0155535281480385e-05 +93811,81.0,the Columbus-Albany Area,G1302150001400,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,71807.0,,913.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.0078095123207206525,0.0003393974438196731,0.0,0.008148909764540328,0.004995098056882964,0.000757764175286851,0.002261048023948575,0.0,0.00013499950842193645,0.004995098056882964,0.000757764175286851,0.0019216505801289022,0.0,0.00013499950842193645,0.0,0.0003393974438196731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2675894075970305e-05,0.0,0.0,0.0009306452056453224,0.00030205967937924565,0.0009533210997212927,0.0005952566392695599,9.030136169570876e-05,0.00022899956180074071,0.0,1.6087642879313224e-05,0.0,2.2675894075970308e-05,0.0,0.0,0.0,0.0,0.000584364351845535,8.864898468471488e-05,0.0002645144996074087,0.0,1.5793263583634014e-05 +93813,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,118133.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013480501635084838,0.0,0.0,0.013480501635084838,0.0043924805909650085,0.0036066425321060313,0.0054813785120138014,0.0,0.0,0.0043924805909650085,0.0036066425321060313,0.0054813785120138014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016064448276733262,0.000517499130643982,0.0016064448276733262,0.0005234432602749954,0.0004297964866447568,0.0006532050807535744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005234432602749954,0.0004297964866447568,0.0006532050807535744,0.0,0.0 +93814,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,68577.0,,2859.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006110147165841136,0.0008416317631082011,0.0,0.006951778928949337,0.0026785888376634993,0.0017207355355058974,0.002552423866173643,0.0,0.0,0.0018369570745552979,0.0017207355355058974,0.002552423866173643,0.0,0.0,0.0008416317631082011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.623246291738771e-05,0.0,0.0,0.0007281334978555559,0.0003148405008371184,0.0007843659607729436,0.0002189063444468327,0.00020505646596480657,0.0003041670302275232,0.0,0.0,5.6232462917387704e-05,0.0,0.0,0.0,0.0,0.0,0.00030222392406933864,0.0001941497845857441,0.0002879887894239554,0.0,0.0 +93815,35.0,Eastern Counties in South Carolina and Georgia,G1300290920305,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,10102.0,,33.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.00309655284079967,2.6135435301621144e-05,0.0,0.003122688276101291,0.0012874183098260594,0.0008367474650205731,0.0009369884383926137,0.0,6.145135578830542e-05,0.0012612828745244382,0.0008367474650205731,0.0009369884383926137,0.0,6.145135578830542e-05,2.6135435301621144e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7463177347655654e-06,0.0,0.0,0.0003690102540837033,0.0001270167720618825,0.0003707565718184689,0.00015030465744595285,9.971358815611181e-05,0.00011165911240689835,0.0,7.323040031629048e-06,1.7463177347655654e-06,0.0,0.0,0.0,0.0,0.0,0.0001528550905002195,9.934697100030325e-05,0.00011124857511737033,0.0,7.296115395198708e-06 +93816,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,14141.0,,2518.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006731686320351447,0.00042818822829427517,0.0,0.00110137459069084,0.00038301126739598057,0.00010015881166187826,0.00039691187074930204,0.0,0.00022129264088367905,0.00027561846827472086,0.00010015881166187826,0.00021372177655731652,0.0,8.368730590264924e-05,0.00010739279912125981,0.00018319009419198555,0.0001376053349810298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.860942848485064e-05,0.0,0.0,8.022112982732008e-05,4.9150663164632335e-05,0.00010883055831217072,3.284529889550638e-05,1.1935869634011932e-05,2.5469104720902793e-05,0.0,9.972969494164693e-06,7.1754579019768245e-06,1.22398598387361e-05,9.194110744137714e-06,0.0,0.0,0.0,3.7846642207725804e-05,9.89703184110004e-06,3.922020796510277e-05,0.0,2.18666762982421e-05 +93817,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,111308.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008818883475952928,0.0,0.0,0.008818883475952928,0.006405427638228606,0.0019732512610729845,0.0004402045766513372,0.0,0.0,0.006405427638228606,0.0019732512610729845,0.0004402045766513372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010509305384278787,0.00022917450745127586,0.0010509305384278787,0.0007633233316961378,0.00023514881627675012,5.245839045499092e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007633233316961378,0.00023514881627675012,5.245839045499092e-05,0.0,0.0 +93818,50.0,the Greater Atlanta and Macon Area,G1301210001900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,34808.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.00275786208174899,0.0,0.0,0.00275786208174899,0.0015474133969557045,0.0010217071378870958,0.00018877192050562754,0.0,0.0,0.0015474133969557045,0.0010217071378870958,0.00018877192050562754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003286501165633983,8.178248530689054e-05,0.0003286501165633983,0.00018440283749024088,0.00012175524373840384,2.249565490915571e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018440283749024088,0.00012175524373840384,2.249565490915571e-05,0.0,0.0 +93819,50.0,the Greater Atlanta and Macon Area,G1300890022302,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,14560.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011617901784940073,0.0,0.0,0.0011617901784940073,0.0006974993374885329,0.00038559284486225945,7.872836974265272e-05,0.0,0.0,0.0006974993374885329,0.00038559284486225945,7.872836974265272e-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.00013844680414764886,3.5512739797814976e-05,0.00013844680414764886,8.311875582866948e-05,4.5949860879853654e-05,9.381806963417145e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.311875582866948e-05,4.5949860879853654e-05,9.381806963417145e-06,0.0,0.0 +93820,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,54927.0,,8076.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004856476748579977,0.002377370351851546,0.0,0.007233847100431525,0.0034422076215629397,0.0013738509155229628,0.002417788563345621,0.0,0.0,0.0010648372697113935,0.0013738509155229628,0.002417788563345621,0.0,0.0,0.002377370351851546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015884257860206017,0.0,0.0,0.0005787363096541946,0.00032634464742177483,0.0007375788882562547,0.0001268944594525678,0.00016371897777484076,0.0002881228724267861,0.0,0.0,0.00015884257860206017,0.0,0.0,0.0,0.0,0.0,0.0003509750255169404,0.0001400808472770756,0.0002465230154622386,0.0,0.0 +93821,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,17467.0,,1187.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015095603545714046,0.00034952392612453694,0.0,0.001859084280695942,0.0008754823988545672,0.00041320485919227025,0.0005704277122554017,0.0,0.0,0.0005259584727300302,0.00041320485919227025,0.0005704277122554017,0.0,0.0,0.00034952392612453694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3353810073543917e-05,0.0,0.0,0.00017989111226743182,7.969560423786317e-05,0.00020324492234097572,6.267735793362702e-05,4.9240748466469496e-05,6.797666308275911e-05,0.0,0.0,2.335381007354392e-05,0.0,0.0,0.0,0.0,0.0,9.571236442248728e-05,4.517373977580429e-05,6.236217329269714e-05,0.0,0.0 +93822,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock 90.1-2007,gen4_led,_1000,Electricity,2618.0,,,753.0,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00048003185598294025,0.0,0.00019336913840250076,0.000673400994385441,0.00042982866222318063,0.00014539903563370247,6.641378021266387e-05,0.0,3.1676809242154745e-05,0.00023645952382067993,0.00014539903563370247,6.641378021266387e-05,0.0,3.1676809242154745e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019336913840250076,0.0,0.0,0.0,0.0,1.559434883358467e-05,5.7200900176696104e-05,3.567606168108062e-05,7.279524901028076e-05,2.8176666713503476e-05,1.732584123201788e-05,7.913908139539451e-06,0.0,3.7746286643133374e-06,0.0,0.0,0.0,1.559434883358467e-05,0.0,0.0,4.6464862331912204e-05,1.5717765630075366e-05,7.179388965273332e-06,0.0,3.4242913744703437e-06 +93823,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,24239.0,,4079.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0021493158874533167,0.0012006694671850258,0.0,0.0033499853546383428,0.0016040229627557335,0.0006850533917773214,0.0010608783104989897,0.0,0.0,0.00040335349557070775,0.0006850533917773214,0.0010608783104989897,0.0,0.0,0.0012006694671850258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.022209724916755e-05,0.0,0.0,0.0002561299664459537,0.00016051840589330647,0.0003363520636951212,4.8066883927794644e-05,8.163653526867776e-05,0.0001264228900263262,0.0,0.0,8.022209724916755e-05,0.0,0.0,0.0,0.0,0.0,0.00016105038578459653,6.87821281805335e-05,0.0001065164683695315,0.0,0.0 +93824,50.0,the Greater Atlanta and Macon Area,G1301350050429,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,59221.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005161071091084678,0.0,0.0,0.005161071091084677,0.0015467561574042203,0.001331100293950263,0.002283214639730194,0.0,0.0,0.0015467561574042203,0.001331100293950263,0.002283214639730194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006150354096104474,0.00021815677788541657,0.0006150354096104474,0.00018432410444411338,0.00015862478932647878,0.00027208651583985526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001843241044441134,0.0001586247893264788,0.0002720865158398553,0.0,0.0 +93825,50.0,the Greater Atlanta and Macon Area,G1300670030226,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,160579.0,,5754.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.014307433076776444,0.0016938514403891096,0.0,0.016001284517165554,0.008946480579874827,0.0027574304362422974,0.004297373501048428,0.0,0.0,0.007252629139485717,0.0027574304362422974,0.004297373501048428,0.0,0.0,0.0016938514403891096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011317384546062558,0.0,0.0,0.001704987651146204,0.0006335138195993064,0.0018181614966068297,0.0008642810387306964,0.00032859736735857994,0.0005121092450569275,0.0,0.0,0.00011317384546062559,0.0,0.0,0.0,0.0,0.0,0.0010165525463296063,0.00031331571183358946,0.0004882932384436335,0.0,0.0 +93826,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,8850.0,,579.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0006932168270525106,0.0001702966253459527,0.0,0.0008635134523984631,0.0003339949853378994,0.00031466053337034667,0.0002148579336902172,0.0,0.0,0.00016369835999194664,0.00031466053337034667,0.0002148579336902172,0.0,0.0,0.0001702966253459527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1379158035152106e-05,0.0,0.0,8.260852717677055e-05,3.6255510775135665e-05,9.398768521192265e-05,1.950743244027333e-05,3.749713251033417e-05,2.560396222616303e-05,0.0,0.0,1.1379158035152106e-05,0.0,0.0,0.0,0.0,0.0,3.635312855533121e-05,3.424870229512184e-05,2.3385854361469616e-05,0.0,0.0 +93827,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3047.0,,98.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00039492627710519294,7.757923516747036e-05,0.0,0.0004725055122726633,0.00023976780677025222,0.00013009822699193058,7.542885125024837e-05,0.0,2.729333433397145e-05,0.00016218857160278186,0.00013009822699193058,7.542885125024837e-05,0.0,2.729333433397145e-05,7.757923516747036e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.181190656062424e-06,0.0,0.0,4.706484354765599e-05,1.8482542677575522e-05,5.224603420371842e-05,1.9328619517686576e-05,1.5504292963447724e-05,8.989138704808852e-06,0.0,3.2526488734505713e-06,5.181190656062424e-06,0.0,0.0,0.0,0.0,0.0,2.651168443139851e-05,1.4385263749772286e-05,8.340343636231612e-06,0.0,3.0178874999522277e-06 +93828,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Electricity,3369.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0008088751811704267,0.0,0.0,0.0008088751811704267,0.000546114807900647,0.00013539147971124626,0.00010024097337204059,0.0,2.7127920186492836e-05,0.000546114807900647,0.00013539147971124626,0.00010024097337204059,0.0,2.7127920186492836e-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,9.63965995738437e-05,3.23700400997787e-05,9.63965995738437e-05,6.508248946688037e-05,1.613509545014132e-05,1.19460816649794e-05,0.0,3.2329329918426105e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.508248946688037e-05,1.613509545014132e-05,1.19460816649794e-05,0.0,3.2329329918426105e-06 +93829,46.0,the Tallahassee-Valdosta Area,G1300270960500,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,43042.0,,7403.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.008819333115818676,0.0050921896620793996,0.0,0.013911522777898075,0.004597250142100669,0.00044301426096342956,0.006245877115836519,0.0003797572465276606,0.002245624012469797,0.004597250142100669,0.00044301426096342956,0.0031079849439615047,0.0003797572465276606,0.00029132652226541213,0.0,0.003137892171875014,0.001954297490204385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003402303089324401,0.0,0.0,0.0010509788649379521,0.0006522577151010998,0.0013912091738703923,0.0005478433202069036,5.279295146518009e-05,0.0003703711432319214,4.525476412629571e-05,3.471668590765121e-05,0.0,0.00020965558902567732,0.00013057471990676273,0.0,0.0,0.0,0.0004597438162864987,4.4303237959464944e-05,0.0006246132563017521,3.797727780400953e-05,0.00022457158551866704 +93830,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,51787.0,,10457.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,364853.82094078336,0.0,0.0,0.013864679519941225,0.00924883714963275,0.0,0.023113516669573977,0.016695656962824903,0.0039016197475802354,0.0006359301751238106,0.0006192388523718662,0.001261163148925933,0.007446819813192153,0.0039016197475802354,0.0006359301751238106,0.0006192388523718662,0.001261163148925933,0.00924883714963275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006179506970182675,0.0,0.0,0.001652228680842974,0.0010603890773799819,0.0022701793778612416,0.0008874239940944521,0.0004649489401773577,7.578264415285303e-05,7.379356953109168e-05,0.0001502905222497706,0.0006179506970182675,0.0,0.0,0.0,0.0,0.0,0.0016398255911764354,0.00038321198880447515,6.246023008805836e-05,6.082083019740602e-05,0.0001238697950528257 +93831,50.0,the Greater Atlanta and Macon Area,G1300890022001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,8924.0,,864.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,12264.525384160763,0.0,0.0,0.0008969097650524003,0.0003212631814943384,0.0,0.0012182116949705107,0.0006949917287760769,0.00016669571906750014,0.00032091444568038967,0.0,3.557105302277199e-05,0.0004558364572547819,0.00016669571906750014,0.0002743775887301182,0.0,0.0,0.00023915527152129496,4.653685695027143e-05,3.557105302277199e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1465281576938688e-05,0.0,0.0,0.00010688516336875731,5.1809818385804726e-05,0.000128350444945696,5.4322247456260465e-05,1.9865208139819152e-05,3.2697707772677694e-05,0.0,0.0,1.5979220587729534e-05,3.1093719905805526e-06,2.3766889986285986e-06,0.0,0.0,0.0,7.322413500893806e-05,1.7563014541059964e-05,3.381145663158035e-05,0.0,3.747756240979323e-06 +93832,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,13805.0,,2087.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0011498167895497326,0.0006144366076863073,0.0,0.0017642227076297419,0.0007919146009059227,0.0004395979206082947,0.0005327408757218226,0.0,0.0,0.00017747799321961522,0.0004395979206082947,0.0005327408757218226,0.0,0.0,0.0006144366076863073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1052598403489954e-05,0.0,0.0,0.00013701977902444968,8.065704326868846e-05,0.00017807237742793964,2.1149452359429683e-05,5.2385397820589785e-05,6.348492884443021e-05,0.0,0.0,4.1052598403489954e-05,0.0,0.0,0.0,0.0,0.0,7.993215090892661e-05,4.4370955263504296e-05,5.377236892063467e-05,0.0,0.0 +93833,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,81254.0,,1190.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007239678125628086,0.0003501684078567887,0.0,0.007589846533484875,0.0027575531946674877,0.0025759934838102787,0.0022563305446134064,0.0,0.0,0.0024073847868106993,0.0025759934838102787,0.0022563305446134064,0.0,0.0,0.0003501684078567887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3397011198351772e-05,0.0,0.0,0.0008627369522028809,0.00027775322684050287,0.0008861339634012327,0.00028688289419945143,0.00030697563186542274,0.0002688820833527258,0.0,0.0,2.3397011198351775e-05,0.0,0.0,0.0,0.0,0.0,0.000321951376869075,0.0003007538170151198,0.00026343235260693884,0.0,0.0 +93835,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010403,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,16051.0,,269.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014498997599286705,7.905642582288236e-05,0.0,0.0015289561857515525,0.0005898542330418474,0.0004314651749394034,0.0005076367777703017,0.0,0.0,0.0005107978072189651,0.0004314651749394034,0.0005076367777703017,0.0,0.0,7.905642582288236e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.28239860394609e-06,0.0,0.0,0.0001727814262359765,6.405293053308023e-05,0.00017806382483992258,6.087067264142732e-05,5.141677401260675e-05,6.0493979581942395e-05,0.0,0.0,5.28239860394609e-06,0.0,0.0,0.0,0.0,0.0,6.869503639950446e-05,5.0248882244569884e-05,5.911990619584824e-05,0.0,0.0 +93836,50.0,the Greater Atlanta and Macon Area,G1301210008700,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,128680.0,,7775.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.011465207258333592,0.002288554631225994,0.0,0.013753731199953288,0.00398740847744163,0.0038006315335138104,0.005965752568210444,0.0,0.0,0.0016988538462156355,0.0038006315335138104,0.005965752568210444,0.0,0.0,0.002288554631225994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015290698247516604,0.0,0.0,0.0013662859517770739,0.0005822539466807819,0.00151919293425224,0.00020244903488506454,0.00045291370274588605,0.0007109268713654833,0.0,0.0,0.00015290698247516604,0.0,0.0,0.0,0.0,0.0,0.00044043632210344347,0.00041980554130867744,0.0006589578505906268,0.0,0.0 +93837,50.0,the Greater Atlanta and Macon Area,G1301170130307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,17786.0,,1511.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.00155277132023857,0.0004448765328914995,0.0,0.0019976478531300696,0.0010454107489249475,0.0004320482774590598,0.0005201888267460621,0.0,0.0,0.0006005342160334481,0.0004320482774590598,0.0005201888267460621,0.0,0.0,0.0004448765328914995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972373213179923e-05,0.0,0.0,0.00018504004281029676,8.765220138284083e-05,0.00021476377494209598,7.156422558526143e-05,5.1486159433223135e-05,6.19896577918122e-05,0.0,0.0,2.972373213179923e-05,0.0,0.0,0.0,0.0,0.0,0.00011239035871731638,4.6448786696288753e-05,5.5924629528490855e-05,0.0,0.0 +93838,50.0,the Greater Atlanta and Macon Area,G1301210009102,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,49281.0,,12279.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.004345641992357467,0.003577311420980096,0.0,0.007922953413337562,0.00594951991066795,0.0015504811304989173,0.0004229827457701319,0.0,0.0,0.0023722084896878547,0.0015504811304989173,0.0004229827457701319,0.0,0.0,0.003577311420980096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023901523556614474,0.0,0.0,0.0005178624662391723,0.0003766534123191091,0.000756877701805317,0.00028269188788762086,0.00018476809261084218,5.040610530880539e-05,0.0,0.0,0.00023901523556614474,0.0,0.0,0.0,0.0,0.0,0.0005683561068591983,0.00014811706361531922,4.0407432912941716e-05,0.0,0.0 +93839,50.0,the Greater Atlanta and Macon Area,G1300970080604,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,149497.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01318284074877136,0.0,0.0,0.013182840748771357,0.007606278265599563,0.00464728220837378,0.0009292499011985792,0.0,0.0,0.007606278265599563,0.00464728220837378,0.0009292499011985792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015709722382871798,0.0004108473285082663,0.0015709722382871798,0.0009064246636718071,0.000553807140052236,0.00011073681500325553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009064246636718074,0.0005538071400522362,0.00011073681500325556,0.0,0.0 +93840,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,34875.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.007991488292986841,0.0,0.0,0.007991488292986841,0.003699818236654178,0.0020603159139198873,0.002071812197169651,0.0,0.000159541945243124,0.003699818236654178,0.0020603159139198873,0.002071812197169651,0.0,0.000159541945243124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009523340757206091,0.0003062574979174694,0.0009523340757206091,0.0004409019761476002,0.0002455248609069806,0.00024689485631728406,0.0,1.9012382348744147e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004409019761476002,0.0002455248609069806,0.00024689485631728406,0.0,1.9012382348744147e-05 +93841,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,32573.0,,2093.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028090112232021644,0.0006096892615139923,0.0,0.0034186701111167186,0.0020793158703096143,0.0009388479586209087,0.00040050628218619554,0.0,0.0,0.001469626608795622,0.0009388479586209087,0.00040050628218619554,0.0,0.0,0.0006096892615139923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.073491364264953e-05,0.0,0.0,0.0003347434787963596,0.00013756038177957028,0.00037547839243900913,0.00017513206052596024,0.00011188037596067853,4.772742275695591e-05,0.0,0.0,4.073491364264953e-05,0.0,0.0,0.0,0.0,0.0,0.0002283748226592541,0.00010311527897977655,4.398829079997845e-05,0.0,0.0 +93842,85.0,Rural Climate Zone 3A,G1302330010500,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,90978.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008022609193092826,0.0,0.0,0.008022609193092826,0.005039253509117968,0.00203478817353387,0.0009485371368415517,0.0,0.0,0.005039253509117968,0.00203478817353387,0.0009485371368415517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009560372697996473,0.00023232903547005008,0.0009560372697996473,0.0006005171198957704,0.0002424813777194573,0.00011303515262719329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006005171198957704,0.0002424813777194573,0.00011303515262719329,0.0,0.0 +93843,50.0,the Greater Atlanta and Macon Area,G1300890023601,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,31772.0,,1861.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002742553787632363,0.0005421080027649944,0.0,0.003284661790397358,0.0020023795429337885,0.000895990809814241,0.0003863218112487654,0.0,0.0,0.0014602715401687944,0.000895990809814241,0.0003863218112487654,0.0,0.0,0.0005421080027649944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.622053314710767e-05,0.0,0.0,0.00032682496073676036,0.0001326486075140353,0.000363045493883868,0.00017401780447583702,0.00010677353441838543,4.60372414070797e-05,0.0,0.0,3.622053314710767e-05,0.0,0.0,0.0,0.0,0.0,0.00022131802800294049,9.903163455530894e-05,4.269918844398029e-05,0.0,0.0 +93844,50.0,the Greater Atlanta and Macon Area,G1300670031308,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,42532.0,,4271.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003976390143992718,0.0012443759953652542,0.0,0.005220766139357971,0.004086707057150632,0.0007006278182306213,0.00043343126397671854,0.0,0.0,0.002842331061785378,0.0007006278182306213,0.00043343126397671854,0.0,0.0,0.0012443759953652542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.314105736516852e-05,0.0,0.0,0.00047385859977941414,0.00023742862990224522,0.0005569996571445826,0.00033871500739984263,8.349244035191837e-05,5.165115202765315e-05,0.0,0.0,8.314105736516852e-05,0.0,0.0,0.0,0.0,0.0,0.00043600773697233215,7.474946092651534e-05,4.6242459245735206e-05,0.0,0.0 +93845,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,34076.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028627724942069848,0.0,0.0,0.0028627724942069843,0.001754743586717798,0.000933654073117053,0.00017437483437213321,0.0,0.0,0.001754743586717798,0.000933654073117053,0.00017437483437213321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034115223758808034,9.589429965788623e-05,0.00034115223758808034,0.0002091101204211961,0.00011126213376076899,2.0779983406115192e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020911012042119616,0.000111262133760769,2.0779983406115196e-05,0.0,0.0 +93846,50.0,the Greater Atlanta and Macon Area,G1300670030505,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,NaturalGas,8858.0,,1193.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007908097750792053,0.00035127323368350607,0.0,0.0011420830087627112,0.0006478882785508035,0.00026316337400280135,0.00023100066660280884,0.0,0.0,0.0002966150448672974,0.00026316337400280135,0.00023100066660280884,0.0,0.0,0.00035127323368350607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3470764571682815e-05,0.0,0.0,9.423923492639678e-05,5.599909958458275e-05,0.00011770999949807959,3.534702753662003e-05,3.136065816104674e-05,2.7527892009119393e-05,0.0,0.0,2.3470764571682815e-05,0.0,0.0,0.0,0.0,0.0,6.67752942280851e-05,2.7123212922449418e-05,2.3808329290644522e-05,0.0,0.0 +93847,50.0,the Greater Atlanta and Macon Area,G1301210007002,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,Electricity,16716.0,,3726.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0023559490066557493,0.0010968158394735997,0.0,0.003452764846129349,0.0015072893237053743,0.0008442096900372082,0.0011012658323867666,0.0,0.0,0.00041047348423177475,0.0008442096900372082,0.0011012658323867666,0.0,0.0,0.0010968158394735997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.328262908740605e-05,0.0,0.0,0.0002807536534530544,0.0001619461236452559,0.00035403628254046044,4.891529061881542e-05,0.00010060275247419622,0.00013123561036004278,0.0,0.0,7.328262908740605e-05,0.0,0.0,0.0,0.0,0.0,0.00015455298366924585,8.656276163158398e-05,0.00011292053723963063,0.0,0.0 +93848,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,54189.0,,3749.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004828180931573495,0.001103690311284285,0.0,0.005931871242857781,0.0021740823997355627,0.0015822026526780672,0.0021755861904441502,0.0,0.0,0.0010703920884512776,0.0015822026526780672,0.0021755861904441502,0.0,0.0,0.001103690311284285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.374184407162386e-05,0.0,0.0,0.0005753663568173374,0.00023934079277963168,0.0006491082008889612,0.0001275568594107352,0.00018854848004244665,0.0002592610173641556,0.0,0.0,7.374184407162386e-05,0.0,0.0,0.0,0.0,0.0,0.00023790380089181262,0.00017313604346321198,0.00023806835653393651,0.0,0.0 +93849,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,345533.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.028902120868499383,0.0,0.0,0.028902120868499383,0.008655297595322223,0.00758257309679232,0.012664280865991138,0.0,0.0,0.008655297595322223,0.00758257309679232,0.012664280865991138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003444211577598191,0.0009761305350798095,0.003444211577598191,0.0010314355932909214,0.0009036010252251303,0.0015091786163050054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010314355932909214,0.0009036010252251303,0.0015091786163050054,0.0,0.0 +93850,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000602,ComStock 90.1-2004,gen5_led,25001_50000,Electricity,48596.0,,4779.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004285289650274653,0.0013921739302293545,0.0,0.005677493954103447,0.003910449059613358,0.001238544264273206,0.0005284702566174439,0.0,0.0,0.0025182751293840035,0.001238544264273206,0.0005284702566174439,0.0,0.0,0.0013921739302293545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.301775647265098e-05,0.0,0.0,0.0005106709753485736,0.00022123441262599064,0.0006036887318212246,0.0003000987381182416,0.0001475952990501452,6.297693818018678e-05,0.0,0.0,9.301775647265098e-05,0.0,0.0,0.0,0.0,0.0,0.0004157985992998339,0.0001316945860705218,5.6192316821762476e-05,0.0,0.0 +93851,85.0,Rural Climate Zone 3A,G1300690010700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,22165.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005322117488050694,0.0,0.0,0.005322117488050694,0.0031136732050637064,0.0012593806118284343,0.0008111909792351273,0.0,0.00013778998484968618,0.0031136732050637064,0.0012593806118284343,0.0008111909792351273,0.0,0.00013778998484968618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000634223407325987,0.00014682353423849613,0.000634223407325987,0.00037104863503086965,0.00015007723233232537,9.666759668453714e-05,0.0,1.6420087283486837e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00037104863503086965,0.00015007723233232537,9.666759668453714e-05,0.0,1.6420087283486837e-05 +93852,85.0,Rural Climate Zone 3A,G1302610950300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,36637.0,,1710.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003078090940621208,0.0004981574043785676,0.0,0.003576248344999775,0.002286099335281829,0.0009522427159729574,0.000337906293744989,0.0,0.0,0.0017879419309032613,0.0009522427159729574,0.000337906293744989,0.0,0.0,0.0004981574043785676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328408261856002e-05,0.0,0.0,0.00036680932115831083,0.00011693507142263021,0.00040009340377687085,0.00021306510385711575,0.00011347666815636517,4.02675491448299e-05,0.0,0.0,3.328408261856002e-05,0.0,0.0,0.0,0.0,0.0,0.00025575775958171226,0.00010653231898395371,3.78033252112049e-05,0.0,0.0 +93853,50.0,the Greater Atlanta and Macon Area,G1301350050535,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,5100.0,,584.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012247263479316646,0.00046349044123507885,0.0,0.0016882167891667432,0.0008960484368916565,0.00035340732608806066,0.0003912044587869241,0.0,4.755656740010177e-05,0.0004325579956565778,0.00035340732608806066,0.0003912044587869241,0.0,4.755656740010177e-05,0.00046349044123507885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096789632145669e-05,0.0,0.0,0.00014594586812016305,8.292172828231805e-05,0.00017691376444161976,5.154625136875018e-05,4.2114174397451155e-05,4.6618311467340024e-05,0.0,5.667130886621673e-06,3.096789632145669e-05,0.0,0.0,0.0,0.0,0.0,9.389984930239605e-05,3.703471073187544e-05,4.099559601258385e-05,0.0,4.983608394764421e-06 +93854,50.0,the Greater Atlanta and Macon Area,G1300670030414,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,116003.0,,,,9.325022323477118,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,699376.6742607838,0.0,0.0,0.032347983159007075,0.0,0.0,0.032347983159007075,0.013369252899866629,0.0054584288331579,0.012694439853117051,0.0,0.0008258615728654977,0.013369252899866629,0.0054584288331579,0.012694439853117051,0.0,0.0008258615728654977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038548462918666653,0.0013636053655068606,0.0038548462918666653,0.0015931878878738866,0.0006504703567912544,0.0015127717284435097,0.0,9.841631875801482e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0015931878878738866,0.0006504703567912544,0.0015127717284435097,0.0,9.841631875801482e-05 +93855,50.0,the Greater Atlanta and Macon Area,G1300670030226,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,DistrictHeating,3775.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,5759.960461090961,0.0,0.0004655767056331911,0.0005982398616707913,0.0,0.0,0.0010638165673039824,0.0008904809621931262,9.439283818477808e-05,7.506660063855978e-05,0.0,3.876166287518359e-06,0.0004287804228474535,9.439283818477808e-05,7.506660063855978e-05,0.0,0.0,0.0,0.0,0.0,0.0004617005393456728,0.0,3.876166287518359e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.129351406858464e-05,2.2521577888517025e-05,7.129351406858464e-05,5.10986730694163e-05,1.1248994873570254e-05,8.94584612559809e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9677127577372675e-05,6.325899919151332e-06,5.030718559186282e-06,0.0,2.5976801287434615e-07 +93856,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,41590.0,,8814.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.009763535251609383,0.006836213182962541,0.0,0.016599748434571928,0.011001109536473198,0.0010151262706422973,0.003010446953641288,0.0004192631602103164,0.0011538025136048223,0.005340531278543984,0.0010151262706422973,0.0018348120286079631,0.0004192631602103164,0.0011538025136048223,0.005660578257929216,0.0011756349250333247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045675766389534724,0.0,0.0,0.0011635009966127036,0.0007956190776143676,0.001620258660508051,0.0006364204465798387,0.00012097057030498886,0.00021865088503986797,4.9962753467529654e-05,0.0001374963412204784,0.0003782082904951313,7.85493734002159e-05,0.0,0.0,0.0,0.0,0.0010737899475961588,9.908385889101198e-05,0.0002938419680191474,4.092319645928765e-05,0.00011261968954244464 +93857,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,17206.0,,9999.0,,8.53126424238864,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.003821965772517032,0.007754953400187153,0.0,0.011576919172704188,0.0023769835790824413,0.0006231131943260748,0.007559836330642795,0.00031867234607306787,0.0006983137225798056,0.0021213017830197566,0.0006231131943260748,0.0007589593098812015,0.00031867234607306787,0.0,0.0002556817960626847,0.006800877020761593,0.0006983137225798056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000518138924106983,0.0,0.0,0.0004554556459041217,0.0006352066614186938,0.0009735945700111048,0.00025279108481040765,7.425509261069609e-05,9.04435893127425e-05,3.7975515180217146e-05,0.0,1.708310596972296e-05,0.00045439333038884214,4.6657085121608944e-05,0.0,0.0,0.0,0.00019989932304758943,5.24025099811105e-05,0.0006357663461139349,2.679967451798034e-05,5.872671635048926e-05 +93858,50.0,the Greater Atlanta and Macon Area,G1300670030310,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,59152.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0055919315244873,0.0,0.0,0.0055919315244873,0.0031920223121122146,0.0019662653332023026,0.0004336438791727828,0.0,0.0,0.0031920223121122146,0.0019662653332023026,0.0004336438791727828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006663787543709875,0.00015962576497681737,0.0006663787543709875,0.0003803866057649483,0.00023431571680812717,5.1676431797912e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003803866057649483,0.00023431571680812717,5.1676431797912e-05,0.0,0.0 +93859,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,100302.0,,3693.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008471773749661961,0.0010870565446709302,0.0,0.00955883029433289,0.0035031878692764746,0.00213498384131229,0.003920658583744126,0.0,0.0,0.0024161313246055444,0.00213498384131229,0.003920658583744126,0.0,0.0,0.0010870565446709302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.263092073513436e-05,0.0,0.0,0.0010095632160629267,0.0003392286681992291,0.001082194136798061,0.0002879252188004292,0.0002544214726182484,0.000467216524644249,0.0,0.0,7.263092073513436e-05,0.0,0.0,0.0,0.0,0.0,0.00039661017671594465,0.00024171022228489195,0.0004438737377972245,0.0,0.0 +93860,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,19927.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,24034.3828889517,0.0,0.0,0.0016961225398029374,0.0,0.0,0.0016961225398029374,0.0010730081473374587,0.0004573049131347914,0.0001658094793306872,0.0,0.0,0.0010730081473374587,0.0004573049131347914,0.0001658094793306872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020212297401378003,7.008956184589296e-05,0.00020212297401378003,0.0001278678826507791,5.449596176267812e-05,1.9759129600322788e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001278678826507791,5.449596176267812e-05,1.9759129600322788e-05,0.0,0.0 +93861,50.0,the Greater Atlanta and Macon Area,G1300670031205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,161892.0,,14468.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.014424391166376987,0.004258643217900726,0.0,0.018683065073884012,0.01025085022673979,0.003273752372594849,0.005158462474549373,0.0,0.0,0.005992207008839063,0.003273752372594849,0.005158462474549373,0.0,0.0,0.004258643217900726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002845377792619706,0.0,0.0,0.0017189286118464825,0.0008500791066269921,0.0020034663911084535,0.0007140804736084829,0.0003901271503556312,0.0006147246451072555,0.0,0.0,0.0002845377792619706,0.0,0.0,0.0,0.0,0.0,0.0010992432894893391,0.00035105871683086866,0.0005531643847882461,0.0,0.0 +93862,50.0,the Greater Atlanta and Macon Area,G1300670031313,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,145999.0,,6834.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01300837273180098,0.002011519555176631,0.0,0.015019892286977615,0.005811169021288914,0.0036735151842287256,0.005535177391853674,0.0,0.0,0.0037996494661122833,0.0036735151842287256,0.005535177391853674,0.0,0.0,0.002011519555176631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013439769505419865,0.0,0.0,0.0015501814145673835,0.0006138656017783758,0.0016845791096215823,0.0004527965261818467,0.00043776535944431243,0.0006596158717230402,0.0,0.0,0.00013439769505419865,0.0,0.0,0.0,0.0,0.0,0.0006517605951296253,0.0004120087428053479,0.000620806329646635,0.0,0.0 +93863,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,73737.0,,6320.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0037956448513592244,0.0010747081271150806,0.0,0.004870352978474305,0.002817797688681892,0.0005550666946161732,0.0010667649251988969,0.0,0.0004307236699773427,0.001968956635696864,0.0005550666946161732,0.0008408978510688444,0.0,0.0004307236699773427,0.0008488410529850279,0.00022586707413005258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.180569468106347e-05,0.0,0.0,0.00045232055216540995,0.00019845010991835718,0.0005241262468464734,0.00023463721910895559,6.614635552836528e-05,0.00010020836911913944,0.0,5.1328608408949625e-05,5.671458133196808e-05,1.5091113349095379e-05,0.0,0.0,0.0,0.0,0.00030323915606711487,5.973386830163347e-05,0.00011480061075308499,0.0,4.635261172464005e-05 +93864,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,125864.0,,8895.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006478869096862915,0.0015127012452746448,0.0,0.007991552611776141,0.0038927185801340127,0.001578463155781621,0.0014637831781167193,0.0,0.0010565876977437865,0.003805662505561554,0.001578463155781621,0.0009049576468794951,0.0,0.00018976805827882517,8.705607457245924e-05,0.0005588255312372242,0.0008668196394649614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001010694087312751,0.0,0.0,0.0007720739732239739,0.00029576091580715803,0.0008731433819552491,0.00045351324860709444,0.00018810232187930166,0.0001078420069274095,0.0,2.261428291818307e-05,5.816552350300182e-06,3.7337290626631605e-05,5.791556575434331e-05,0.0,0.0,0.0,0.00042531177997248194,0.00017246018703549596,0.00015993044864732187,0.0,0.00011544096629994916 +93865,85.0,Rural Climate Zone 3A,G1302710950100,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,120481.0,,2021.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.00579905157929525,0.0003437030561277235,0.0,0.006142754635422974,0.002566629388805424,0.001410538902772301,0.001150292657848766,0.0,0.0010153114163579037,0.0024160454292649156,0.001410538902772301,0.0009571735612615505,0.0,0.0010153114163579037,0.00015058395954050844,0.00019311909658721512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2963641870617106e-05,0.0,0.0,0.0006910626153478073,0.00023969330082312387,0.0007140262572184245,0.0002879158169774094,0.00016809140078697404,0.00011406466308195327,0.0,0.00012099284739696161,1.0060882662220847e-05,1.2902759208396264e-05,0.0,0.0,0.0,0.0,0.00029834184904397676,0.00016395931030674136,0.00013370860630721463,0.0,0.00011801855251593533 +93866,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,388771.0,,15561.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.020012099361560818,0.0026462209812200405,0.0,0.02265830261241944,0.012057018103225726,0.0058188386626400294,0.002646983386761103,0.0,0.0021354979205154196,0.010360399818940873,0.0058188386626400294,0.001697380689825915,0.0,0.0021354979205154196,0.0016966182842848524,0.0009496026969351882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017680469029766728,0.0,0.0,0.002384802747451643,0.0007621495034236096,0.0025616074377493104,0.001234628586762157,0.0006934196247444319,0.0002022735375951329,0.0,0.00025448311124242,0.00011335790640131714,6.344678389635015e-05,0.0,0.0,0.0,0.0,0.0013630918334267576,0.0006578418804024588,0.0002992515567962079,0.0,0.00024142617609370734 +93867,35.0,Eastern Counties in South Carolina and Georgia,G1300730030505,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,49037.0,,675.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005278232789385573,0.00025077979865291975,0.0,0.005529012588038494,0.0027171169717459896,0.0007397461582328327,0.0019617164503092353,0.0,0.00011039425932666388,0.0027171169717459896,0.0007397461582328327,0.0017109366516563154,0.0,0.00011039425932666388,0.0,0.00025077979865291975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6755898538250516e-05,0.0,0.0,0.0006289946930932025,0.00021299327115436453,0.0006457505916314532,0.00032379249342290707,8.815382464756738e-05,0.00020388833101007468,0.0,1.3155426453350764e-05,0.0,1.6755898538250516e-05,0.0,0.0,0.0,0.0,0.00031734054934740176,8.639725660407929e-05,0.00022911497093367145,0.0,1.2893289197266873e-05 +93868,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,35004.0,,3929.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0020602857273715556,0.0006681864004761098,0.0,0.0027284721278476656,0.0007023705372939718,0.0004469646810381111,0.0013030751822053607,0.0,0.00027606172731022217,0.0007023705372939718,0.0004469646810381111,0.0006348887817292508,0.0,0.00027606172731022217,0.0,0.0006681864004761098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.464396997199066e-05,0.0,0.0,0.0002455210274214742,0.00010906634351425586,0.00029016499739346484,8.370039827776251e-05,5.3264081894888545e-05,7.565870302241935e-05,0.0,3.289784422640385e-05,0.0,4.4643969971990666e-05,0.0,0.0,0.0,0.0,7.469504380970919e-05,4.753338111271164e-05,0.00013857821855280372,0.0,2.935835391824032e-05 +93869,85.0,Rural Climate Zone 3A,G1300230790200,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7153.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,9613.75315558068,0.0,0.0,0.0006307685395237922,0.0,0.0,0.000630768539523792,0.0004357700311334254,0.00015098716280506432,4.404171918474015e-05,0.0,0.0,0.0004357700311334254,0.00015098716280506432,4.404171918474015e-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,7.516819450024231e-05,2.5006526250235562e-05,7.516819450024231e-05,5.193037446405241e-05,1.799302233643302e-05,5.248417297893357e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1930374464052423e-05,1.7993022336433022e-05,5.248417297893358e-06,0.0,0.0 +93870,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4205.0,,406.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0002623654442390611,0.00011944394771065922,0.0,0.00038180939194972034,0.00021528758817838503,8.37826251927286e-05,8.2708488972309e-05,0.0,0.0,9.58436404677258e-05,8.37826251927286e-05,8.2708488972309e-05,0.0,0.0,0.00011944394771065922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.979668661460851e-06,0.0,0.0,3.126602859494137e-05,1.8669543324192383e-05,3.9245697256402214e-05,1.1421664206574091e-05,9.98435583859983e-06,9.856351276566498e-06,0.0,0.0,7.979668661460851e-06,0.0,0.0,0.0,0.0,0.0,2.2129134816627403e-05,8.61190848886569e-06,8.501499405675104e-06,0.0,0.0 +93871,50.0,the Greater Atlanta and Macon Area,G1301350050421,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,153889.0,,5512.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.031784856754698505,0.0037919783075373867,0.0,0.03557683506223589,0.01882061135397462,0.0014521859731240927,0.006748777552597984,0.0003719397696869589,0.008183320412852236,0.01882061135397462,0.0014521859731240927,0.0029567992450605972,0.0003719397696869589,0.008183320412852236,0.0,0.0037919783075373867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025335800449331205,0.0,0.0,0.003787739876259318,0.001439437810744514,0.004041097880752631,0.002242815837466081,0.00017305419246017124,0.00035235604467381864,4.432334265598815e-05,0.0009751904590032594,0.0,0.00025335800449331205,0.0,0.0,0.0,0.0,0.002137793666130454,0.00016495075090812916,0.0007665794503014641,4.224785629245149e-05,0.0009295261571201325 +93872,50.0,the Greater Atlanta and Macon Area,G1301590010500,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,37782.0,,2435.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003366312225188721,0.0007166636862639554,0.0,0.0040829759114526755,0.0015099900090595722,0.0014313632377248578,0.0011416226646682457,0.0,0.0,0.0007933263227956171,0.0014313632377248578,0.0011416226646682457,0.0,0.0,0.0007166636862639554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.788388641343523e-05,0.0,0.0,0.00040115644568933934,0.00017207244581230157,0.00044904033210277453,9.453905242156844e-05,0.00017057258819891494,0.00013604480506885586,0.0,0.0,4.788388641343523e-05,0.0,0.0,0.0,0.0,0.0,0.00016606671943326278,0.0001574194503143648,0.00012555416235514698,0.0,0.0 +93873,85.0,Rural Climate Zone 3A,G1301410480400,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,54364.0,,858.0,,4.088175128053588,Healthcare,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.005795330504624018,0.00031878328237292506,0.0,0.006114113786996944,0.003228712410808798,0.0005931608711030433,0.0021690980143374227,0.0,0.00012314249074767911,0.003228712410808798,0.0005931608711030433,0.001850314731964497,0.0,0.00012314249074767911,0.0,0.00031878328237292506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.129865710559368e-05,0.0,0.0,0.0006906188544213525,0.00019315600319641163,0.0007119175115269463,0.0003847597069105273,7.068588770940717e-05,0.00022049859615231319,0.0,1.4674663649104782e-05,0.0,2.129865710559368e-05,0.0,0.0,0.0,0.0,0.00037594604631461295,6.906669159296846e-05,0.0002525662613458833,0.0,1.4338512273481432e-05 +93874,81.0,the Columbus-Albany Area,G1302150010302,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5806.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010289587043907239,0.0,0.0,0.0010289587043907239,0.0005353628883145369,0.0002274444527830954,0.0002247151193496983,0.0,4.143624394339302e-05,0.0005353628883145369,0.0002274444527830954,0.0002247151193496983,0.0,4.143624394339302e-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.0001226143587985881,3.7656062861594795e-05,0.0001226143587985881,6.37957354314975e-05,2.7103085499245814e-05,2.6777848473254866e-05,0.0,4.937689394589874e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.37957354314975e-05,2.7103085499245814e-05,2.6777848473254866e-05,0.0,4.937689394589874e-06 +93875,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,15359.0,,791.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0013110292914315653,0.0002327806637680756,0.0,0.0015437792655933432,0.0006821378791790397,0.00039795212486231203,0.0004636892615519913,0.0,0.0,0.0004493572154109641,0.00039795212486231203,0.0004636892615519913,0.0,0.0,0.0002327806637680756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.555224245413937e-05,0.0,0.0,0.00015623141265447632,6.263335960501716e-05,0.0001717836551086157,5.354854617586652e-05,4.742275633536821e-05,5.5256452955277094e-05,0.0,0.0,1.555224245413937e-05,0.0,0.0,0.0,0.0,0.0,7.59047234180705e-05,4.4282024050124645e-05,5.159690764042053e-05,0.0,0.0 +93876,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,91418.0,,11483.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008145236338654403,0.003379999789597496,0.0,0.0115252054386456,0.004842359529683033,0.0026007599960925247,0.00408211660247634,0.0,0.0,0.0014623597400855374,0.0026007599960925247,0.00408211660247634,0.0,0.0,0.003379999789597496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022583156570569183,0.0,0.0,0.0009706507673994391,0.00048659325617836493,0.001196482333105131,0.00017426634966893588,0.00030992712563156986,0.0004864572920989332,0.0,0.0,0.00022583156570569183,0.0,0.0,0.0,0.0,0.0,0.0005027066683238131,0.00026999634883184855,0.0004237825019726549,0.0,0.0 +93877,50.0,the Greater Atlanta and Macon Area,G1300670031208,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,39416.0,,1834.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034757421044602542,0.0005342412405106167,0.0,0.004009952971371434,0.0021050423090333897,0.0015114510552214063,0.0003934899807160748,0.0,0.0,0.0015708010685227733,0.0015114510552214063,0.0003934899807160748,0.0,0.0,0.0005342412405106167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.56944589227059e-05,0.0,0.0,0.000414196302302348,0.00015195493082232678,0.0004498907612250539,0.00018718880017012777,0.0001801161937130849,4.6891308419135366e-05,0.0,0.0,3.56944589227059e-05,0.0,0.0,0.0,0.0,0.0,0.00023617211812289223,0.00016957502261065384,4.4147028212712923e-05,0.0,0.0 +93878,50.0,the Greater Atlanta and Macon Area,G1301210009102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,47735.0,,3738.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00425311908876714,0.001100191696166347,0.0,0.005353310784933486,0.001917762807937149,0.0013945357101676143,0.0020410429564350213,0.0,0.0,0.0008175711117708022,0.0013945357101676143,0.0020410429564350213,0.0,0.0,0.001100191696166347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.350736867204343e-05,0.0,0.0,0.0005068368442077502,0.00021145569643597347,0.0005803442128797937,9.742853504848625e-05,0.0001661844081307513,0.00024322755825580432,0.0,0.0,7.350736867204343e-05,0.0,0.0,0.0,0.0,0.0,0.00020790172511463034,0.00015117947781543634,0.00022126633696288318,0.0,0.0 +93879,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,709785.0,,135231.0,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,2664908.3895131643,0.0,0.0,0.14871220223368176,0.09360488633875197,0.0,0.24231708857243378,0.19668118924202171,0.02782060376455343,0.008882028489859166,0.0007888577254919769,0.008144481517530193,0.10677363597893808,0.02782060376455343,0.008882028489859166,0.0007888577254919769,0.004447220608884602,0.08990755326308365,0.0,0.003697260908645591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00625412995299579,0.0,0.0,0.0177217500421251,0.01075894897037168,0.023975879995120887,0.012724010938485242,0.0033153283895405485,0.0010584544267388126,9.400667342684166e-05,0.0005299668139470945,0.006007095824338702,0.0,0.00024702930687954853,0.0,0.0,0.0,0.01946047065167993,0.002752688475998067,0.0008788255522575392,7.805292755473986e-05,0.0008058495281417729 +93880,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,6976.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013687193633117984,0.0,0.0,0.0013687193633117982,0.0005390019995590665,0.0004087383584196573,0.00038318187263421127,0.0,3.77971326988635e-05,0.0005390019995590665,0.0004087383584196573,0.00038318187263421127,0.0,3.77971326988635e-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.00016310685655292537,5.327889945094083e-05,0.00016310685655292537,6.423151756332194e-05,4.870832588582738e-05,4.566282351862368e-05,0.0,4.50418958515239e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.423151756332194e-05,4.8708325885827386e-05,4.566282351862369e-05,0.0,4.504189585152391e-06 +93881,50.0,the Greater Atlanta and Macon Area,G1300210013502,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,30216.0,,895.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026922457124659766,0.0002635930284909692,0.0,0.0029558387409569457,0.0007257478097280755,0.0012499569748991364,0.0009801646459360316,0.0,0.0,0.00046215478123710614,0.0012499569748991364,0.0009801646459360316,0.0,0.0,0.0002635930284909692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7611777312922834e-05,0.0,0.0,0.0003208308469474098,0.00011336883587418291,0.0003384426242603326,5.507428582708513e-05,0.00014895548093839898,0.00011680473741586066,0.0,0.0,1.7611777312922834e-05,0.0,0.0,0.0,0.0,0.0,8.309790039359125e-05,0.00014311968813982478,0.00011222854967737302,0.0,0.0 +93882,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,12674.0,,1168.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0027825967888852584,0.0009265673471014611,0.0,0.00370908142891298,0.0021872712721097243,0.00054098696932881,0.0008349279093983085,0.0,0.00014581257100239897,0.0014065164960106622,0.00054098696932881,0.0008349279093983085,0.0,0.0,0.000780754776099062,0.0,0.00014581257100239897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.190544843874123e-05,0.0,0.0,0.0003315924126915308,0.0001390780865840045,0.000393497861130272,0.00016760969475187773,6.446754165424158e-05,9.949546445491036e-05,0.0,0.0,5.216347703844659e-05,0.0,9.741971400294633e-06,0.0,0.0,0.0,0.00023204844212306952,5.739351357207131e-05,8.857781983031032e-05,0.0,1.5469311179874895e-05 +93883,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,134983.0,,9520.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012026827053581553,0.0028023907094684316,0.0,0.014829187073443686,0.004651592936936513,0.0034582275960503405,0.00671939723006313,0.0,0.0,0.0018492022274680811,0.0034582275960503405,0.00671939723006313,0.0,0.0,0.0028023907094684316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001872387772033303,0.0,0.0,0.0014332122417425378,0.0006679472720960739,0.001620451018945868,0.00022036562578453073,0.0004121098693204558,0.0008007367466375511,0.0,0.0,0.00018723877720333034,0.0,0.0,0.0,0.0,0.0,0.0005083001837557741,0.0003778958619924632,0.0007342583267869779,0.0,0.0 +93884,50.0,the Greater Atlanta and Macon Area,G1300890021410,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,129340.0,,2455.0,,9.325022323477118,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.03230750321461791,0.0020810933855619656,0.0,0.03438868498433792,0.020527220708263256,0.008485497862382048,0.004895510130505892,0.0,0.00048036789902867935,0.01844612732270129,0.008485497862382048,0.004895510130505892,0.0,0.00048036789902867935,0.0020810933855619656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013904864257838884,0.0,0.0,0.003850025106932585,0.0012803338048131936,0.003989073749510974,0.0021981907065459073,0.0010112010079507481,0.0005833888427862967,0.0,5.7244549649633e-05,0.00013904864257838884,0.0,0.0,0.0,0.0,0.0,0.002381149419207067,0.0009843143693856315,0.0005678772235972454,0.0,5.572248479393071e-05 +93885,50.0,the Greater Atlanta and Macon Area,G1301210011622,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,70532.0,,4687.0,,9.325022323477118,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,699376.6742607838,0.0,0.0,0.0180984240449131,0.003973133057044383,0.0,0.022071645486115538,0.007998854688131465,0.005993418141864541,0.006886893595642079,0.0,0.001192390676319395,0.005218112307406477,0.005993418141864541,0.006886893595642079,0.0,0.0,0.002780742380724988,0.0,0.001192390676319395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002654629413566481,0.0,0.0,0.002156758326073528,0.0008296721725588656,0.002422221267430176,0.0006218335440399227,0.000714225418026918,0.0008206993640066869,0.0,0.0,0.00018579394169383274,0.0,7.966899966281536e-05,0.0,0.0,0.0,0.0008778229041810093,0.0006577391294617565,0.0007557923193532031,0.0,0.0001308572148407862 +93886,35.0,Eastern Counties in South Carolina and Georgia,G1300510000900,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,11754.0,,73.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002593280297095984,5.7977658691254505e-05,0.0,0.0026512579557872386,0.0012028916804644873,0.0004342121371313639,0.0009427779335543654,0.0,7.145891171076161e-05,0.0011449140217732327,0.0004342121371313639,0.0009427779335543654,0.0,7.145891171076161e-05,5.7977658691254505e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.87562986824119e-06,0.0,0.0,0.0003090356465858871,8.785401041057566e-05,0.0003129112764541283,0.00013643694644198488,5.1744128355155705e-05,0.00011234882268960382,0.0,8.515605123591339e-06,3.87562986824119e-06,0.0,0.0,0.0,0.0,0.0,0.000141969728124184,5.124732347717036e-05,0.00011127014101262193,0.0,8.433845235100037e-06 +93887,50.0,the Greater Atlanta and Macon Area,G1300890022900,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,218304.0,,4799.0,,9.325022323477118,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.052080365133882124,0.00406814602695346,0.0,0.056148511160835586,0.03959884271751946,0.004496102120255551,0.011385028551532892,0.0,0.0006684493873696231,0.03619914607793563,0.004496102120255551,0.011385028551532892,0.0,0.0,0.003399696639583836,0.0,0.0006684493873696231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000271810090636158,0.0,0.0,0.006206315648648612,0.0017104125336778772,0.00647812573928477,0.004313781713965919,0.000535791730244811,0.001356731671869959,0.0,0.0,0.00022714815191448283,0.0,4.4661938721675124e-05,0.0,0.0,0.0,0.004568710317526335,0.0005187370825959915,0.0013135458977872503,0.0,7.712224406670893e-05 +93888,85.0,Rural Climate Zone 3A,G1300930970300,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,46674.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003812858684619862,0.0,0.0,0.003812858684619862,0.0026627015947105134,0.0009194696021796232,0.00023068748772972508,0.0,0.0,0.0026627015947105134,0.0009194696021796232,0.00023068748772972508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004543722749487095,0.00010006986986098835,0.0004543722749487095,0.00031730989296258023,0.00010957172280571754,2.7490659180411755e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031730989296258023,0.00010957172280571754,2.7490659180411755e-05,0.0,0.0 +93889,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,81474.0,,3535.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0072592580944460215,0.001040408343098422,0.0,0.008299666437544442,0.0036904558469050574,0.0018415912051062513,0.002767588695926837,0.0,0.0,0.0026500475038066357,0.0018415912051062513,0.002767588695926837,0.0,0.0,0.001040408343098422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.951373574259669e-05,0.0,0.0,0.0008650717391030277,0.00033826850301232723,0.0009345854748456243,0.0003158010326947317,0.00021945886009163597,0.0003298081890956677,0.0,0.0,6.951373574259669e-05,0.0,0.0,0.0,0.0,0.0,0.00041556446346740366,0.0002073727183914354,0.0003116448371779899,0.0,0.0 +93890,50.0,the Greater Atlanta and Macon Area,G1300570091005,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,53645.0,,3605.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0056463351458639535,0.001061031758530478,0.0,0.006707397594000729,0.002002496810925107,0.0019372813975424884,0.002767588695926837,0.0,0.0,0.0009414650523946283,0.0019372813975424884,0.002767588695926837,0.0,0.0,0.001061031758530478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.089290648279849e-05,0.0,0.0,0.0006728643021024137,0.0002747652152132169,0.0007437572085852122,0.00011219281340346202,0.00023086257932958046,0.0003298089093693713,0.0,0.0,7.089290648279849e-05,0.0,0.0,0.0,0.0,0.0,0.00022204907602712854,0.0002148175927082374,0.0003068871367988728,0.0,0.0 +93891,35.0,Eastern Counties in South Carolina and Georgia,G1301270000404,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,53522.0,,1291.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0047687658537811425,0.00037990663635926276,0.0,0.005148703179746703,0.001756611685267912,0.0013779326331605573,0.002014158861318234,0.0,0.0,0.0013767050489086493,0.0013779326331605573,0.002014158861318234,0.0,0.0,0.00037990663635926276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5383735924077758e-05,0.0,0.0,0.0005682863213616706,0.00018977348111890753,0.0005936700572857483,0.00016405977391907418,0.00016420606320231195,0.0002400241414723654,0.0,0.0,2.5383735924077758e-05,0.0,0.0,0.0,0.0,0.0,0.00020254571363213068,0.00015888221105505142,0.00023224213259856629,0.0,0.0 +93892,50.0,the Greater Atlanta and Macon Area,G1300670030334,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,44965.0,,2821.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004203372052591037,0.0008216969855894998,0.0,0.005025099411779975,0.003778931374047892,0.0009671561532968936,0.00027898151083575047,0.0,0.0,0.002957234388458393,0.0009671561532968936,0.00027898151083575047,0.0,0.0,0.0008216969855894998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4901639676460586e-05,0.0,0.0,0.0005009091760812466,0.00020189512792130729,0.0005558108157577072,0.0003524089284670193,0.00011525446375636109,3.324578385786623e-05,0.0,0.0,5.4901639676460586e-05,0.0,0.0,0.0,0.0,0.0,0.0004179759956147744,0.00010697417234550216,3.085728826686255e-05,0.0,0.0 +93893,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,54628.0,,2661.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00486724880039047,0.0007833215111425657,0.0,0.005650601001139333,0.0025836045061721083,0.0011604353933287374,0.0019064997224258922,0.0,0.0,0.001800282995029543,0.0011604353933287374,0.0019064997224258922,0.0,0.0,0.0007833215111425657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.233724297345649e-05,0.0,0.0,0.0005800222882120476,0.00023001253524607105,0.0006323595311855041,0.00021453685747942525,0.00013828723777317172,0.00022719453572794284,0.0,0.0,5.233724297345649e-05,0.0,0.0,0.0,0.0,0.0,0.00028913153378947354,0.0001298644836449198,0.00021335664479503092,0.0,0.0 +93894,35.0,Eastern Counties in South Carolina and Georgia,G1300510003501,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,16006.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.001299109221552083,0.0,0.0,0.001299109221552083,0.0010852487079108727,0.00014251292856193155,7.134758507927903e-05,0.0,0.0,0.0010852487079108727,0.00014251292856193155,7.134758507927903e-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.00015481149837633058,4.576578004482319e-05,0.00015481149837633058,0.000129326292043354,1.6982898468161677e-05,8.502307864814958e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000129326292043354,1.6982898468161677e-05,8.502307864814958e-06,0.0,0.0 +93895,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,168270.0,,3474.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.014630962906366824,0.001022546992233159,0.0,0.01565347920899369,0.00589393888947382,0.0051931110400594786,0.0045664599690666855,0.0,0.0,0.004871391897240661,0.0051931110400594786,0.0045664599690666855,0.0,0.0,0.001022546992233159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.831991567040671e-05,0.0,0.0,0.0017435428206607456,0.0005592396841393822,0.0018118627363311523,0.0005805141071995235,0.0006188527391351416,0.0005441759743260806,0.0,0.0,6.831991567040671e-05,0.0,0.0,0.0,0.0,0.0,0.0006822130787330025,0.0006010934855752474,0.0005285597242909507,0.0,0.0 +93896,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,26794.0,,4544.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.001311550294964146,0.0007727778024930014,0.0,0.002084345827818567,0.0008645678835646148,0.00036295822862990096,0.0005871763791478887,0.0,0.0002696433364761631,0.0007990187373946796,0.00036295822862990096,9.001704492960808e-05,0.0,5.957401437137742e-05,6.554914616993521e-05,0.0004971593342182805,0.00021006932210478562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1632850344184264e-05,0.0,0.0,0.0001562956270096826,9.399404991060177e-05,0.00020792847735386688,9.521795316053839e-05,4.325322798511886e-05,1.072720621759799e-05,0.0,7.099352548971686e-06,4.379640879257754e-06,3.3217508859720695e-05,1.4035700605205808e-05,0.0,0.0,0.0,8.62468603815075e-05,3.6207692032111894e-05,5.857506409200573e-05,0.0,2.689886084824179e-05 +93897,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,42736.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0037685436030401817,0.0,0.0,0.0037685436030401817,0.0021032806402660003,0.0012991395951515209,0.0003660929940232227,0.0,0.0,0.0021032806402660003,0.0012991395951515209,0.0003660929940232227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044909113862499645,0.00014145458545974292,0.00044909113862499645,0.0002506444921648153,0.00015481632733365316,4.362669955467412e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002506444921648153,0.00015481632733365316,4.362669955467412e-05,0.0,0.0 +93898,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,17010.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0014514342402435554,0.0,0.0,0.0014514342402435554,0.0006581692966605339,0.0003358363617157615,0.0004573978922609623,0.0,0.0,0.0006581692966605339,0.0003358363617157615,0.0004573978922609623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017296346049328369,6.405489725645743e-05,0.00017296346049328369,7.843224032094901e-05,4.002070343337428e-05,5.45068595422654e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.843224032094901e-05,4.002070343337428e-05,5.45068595422654e-05,0.0,0.0 +93899,85.0,Rural Climate Zone 3A,G1302850961000,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,137953.0,,10466.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006840533009109153,0.0017798977918748406,0.0,0.008620448531345413,0.003758659317436993,0.0019265278808186775,0.001550715140159238,0.0,0.0013845461929305036,0.0029500484545140655,0.0019265278808186775,0.0005794282112073256,0.0,0.0013845461929305036,0.0008086108629229281,0.0009712869289519124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011892295336343218,0.0,0.0,0.0008151733696636276,0.00034870310009673446,0.0009340963230270597,0.00035155168992458184,0.00022958068066722333,6.904936308019602e-05,0.0,0.00016499374888523342,5.402691793850487e-05,6.489603542492731e-05,0.0,0.0,0.0,0.0,0.00040728157417365047,0.0002087551016792601,0.00016803270795226965,0.0,0.00015002693922187935 +93900,50.0,the Greater Atlanta and Macon Area,G1301210011422,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,16675.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00419630880031124,0.0,0.0,0.00419630880031124,0.0020030826188922866,0.0010600565641167032,0.0009961239961162186,0.0,0.0001370456211860324,0.0020030826188922866,0.0010600565641167032,0.0009961239961162186,0.0,0.0001370456211860324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005000681791093384,0.0001302079868909248,0.0005000681791093384,0.00023870451997258543,0.0001263254400466009,0.0001187066864259391,0.0,1.6331532664212976e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00023870451997258543,0.0001263254400466009,0.0001187066864259391,0.0,1.6331532664212976e-05 +93901,50.0,the Greater Atlanta and Macon Area,G1301350050542,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,54960.0,,4759.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004761707244332671,0.0014007963898523457,0.0,0.006162503634185017,0.0022325460997326867,0.0016467428947221359,0.0022832453293364914,0.0,0.0,0.0008317497098803409,0.0016467428947221359,0.0022832453293364914,0.0,0.0,0.0014007963898523457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.35927067438368e-05,0.0,0.0,0.0005674452537975501,0.00025869377623001993,0.0006610379605413869,9.911832059411568e-05,0.000196239792134863,0.0002720907983012699,0.0,0.0,9.35927067438368e-05,0.0,0.0,0.0,0.0,0.0,0.00023948021911018237,0.0001766424215353994,0.0002449186119011265,0.0,0.0 +93902,50.0,the Greater Atlanta and Macon Area,G1301210007300,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,33852.0,,7807.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004652820521188422,0.0022979456507530908,0.0,0.006950766171941514,0.0032882071771610667,0.0014062284501670393,0.0022563305446134064,0.0,0.0,0.0009902615264079755,0.0014062284501670393,0.0022563305446134064,0.0,0.0,0.0022979456507530908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015353578326655307,0.0,0.0,0.0005544672999639163,0.00031258893456929607,0.0007080030832304694,0.0001180074821939046,0.00016757742714249555,0.00026888239062751614,0.0,0.0,0.00015353578326655307,0.0,0.0,0.0,0.0,0.0,0.00033493585629860295,0.00014323803359458568,0.0002298291933372806,0.0,0.0 +93903,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,49860.0,,642.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004272714980107424,0.00018691913093992472,0.0,0.004459634111047349,0.0026689281825952524,0.0013981879029180298,0.00039248765193462907,0.0,0.0,0.002482009051655328,0.0013981879029180298,0.00039248765193462907,0.0,0.0,0.00018691913093992472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2489291386054371e-05,0.0,0.0,0.0005091718132668139,0.00015939342279569225,0.0005216611046528683,0.00029577658590843216,0.00016661955527831585,4.6772052512467084e-05,0.0,0.0,1.248929138605437e-05,0.0,0.0,0.0,0.0,0.0,0.00031219512392796595,0.0001635515891632646,4.591083864114233e-05,0.0,0.0 +93904,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen5_led,_1000,Electricity,3353.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00046961076469178756,0.0,0.0,0.00046961076469178756,0.00023563245308328684,0.00011421846883398354,9.337628625167808e-05,0.0,2.6466263596578376e-05,0.00023563245308328684,0.00011421846883398354,9.337628625167808e-05,0.0,2.6466263596578376e-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,5.596622668079128e-05,1.6225888474369408e-05,5.596622668079128e-05,2.808168013624064e-05,1.3612074506194565e-05,1.1128191250900554e-05,0.0,3.1541374670400156e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.808168013624064e-05,1.3612074506194565e-05,1.1128191250900554e-05,0.0,3.1541374670400156e-06 +93905,85.0,Rural Climate Zone 3A,G1302330010400,ComStock DOE Ref 1980-2004,gen3_t5_cfl,_1000,NaturalGas,2202.0,,386.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.000481024340867812,0.0003065124152778733,0.0,0.0007875367561456853,0.0004793701993930258,0.00013109071187680226,0.00012108315595434607,0.0,5.6075395995250426e-05,0.00022893318011040298,0.00013109071187680226,0.00012108315595434607,0.0,0.0,0.0002504370192826229,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.047870559428746e-05,0.0,0.0,5.7325864712037045e-05,3.6909261807375314e-05,7.780457030632451e-05,2.7283011265976368e-05,1.5622678055120136e-05,1.443003197015513e-05,0.0,0.0,1.6732196583783714e-05,0.0,3.7465090105037503e-06,0.0,0.0,0.0,4.7359303664719264e-05,1.2951086319630787e-05,1.1962391401854556e-05,0.0,5.539959952498216e-06 +93906,50.0,the Greater Atlanta and Macon Area,G1301350050220,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,11338.0,,1140.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0009998077726924768,0.0003322568042495672,0.0,0.0013320645769420438,0.0008278628262753636,0.00043355275837446953,7.064899229221074e-05,0.0,0.0,0.0004956060220257965,0.00043355275837446953,7.064899229221074e-05,0.0,0.0,0.0003322568042495672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2199505473336316e-05,0.0,0.0,0.00011914347781393608,4.823123028220359e-05,0.0001413429832872724,5.9059577953337036e-05,5.166491485603559e-05,8.418985004563457e-06,0.0,0.0,2.2199505473336316e-05,0.0,0.0,0.0,0.0,0.0,8.784303977740554e-05,4.6003505642159036e-05,7.496437867707854e-06,0.0,0.0 +93907,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,14131.0,,7755.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0029423118109154433,0.005334890043996227,0.0,0.008277273574882685,0.0019696455640017263,0.0002763370483231494,0.004013377858062579,0.00037416308878844285,0.0016437500157067896,0.0014260799036744103,0.0002763370483231494,0.0006642703715465896,0.00037416308878844285,0.0002015331185538671,0.0005435656603273161,0.003349107486515989,0.0014422168971529226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035644677749947074,0.0,0.0,0.00035063374615252794,0.00044063919944843004,0.0007070805236519987,0.00016994518972570058,3.293094025413017e-05,7.916074971029163e-05,4.45888178836743e-05,2.4016595409838e-05,3.631794214785896e-05,0.00022376816789531208,9.636066745629978e-05,0.0,0.0,0.0,0.0001682556465246367,2.3605906348884872e-05,0.0003428401020963531,3.1962630008339575e-05,0.00014041623867378468 +93908,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030201,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,25340.0,,7172.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0022577729561093986,0.002111045948400081,0.0,0.004368849594115778,0.0024098399553145154,0.000871185853972889,0.0010877930952220751,0.0,0.0,0.0002987940069144343,0.000871185853972889,0.0010877930952220751,0.0,0.0,0.002111045948400081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014104802224461453,0.0,0.0,0.0002690562420896284,0.0002199581218377773,0.0004101042643342429,3.560694286897322e-05,0.00010381822999399576,0.00012963106922665938,0.0,0.0,0.00014104802224461453,0.0,0.0,0.0,0.0,0.0,0.00022621187128268392,8.17782864906021e-05,0.00010211122572513445,0.0,0.0 +93909,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,8744.0,,1307.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.000711016798705178,0.00038472490454800206,0.0,0.0010957417032531802,0.0006539341309914509,0.00022154826786311639,0.0002202593043986129,0.0,0.0,0.00026920922644344875,0.00022154826786311639,0.0002202593043986129,0.0,0.0,0.00038472490454800206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.570506217845001e-05,0.0,0.0,8.473185808765037e-05,5.422711060467025e-05,0.00011043692026610038,3.20816582849132e-05,2.6401902776879667e-05,2.624829702585751e-05,0.0,0.0,2.570506217845001e-05,0.0,0.0,0.0,0.0,0.0,6.590829870686944e-05,2.2329266395949434e-05,2.2199355163281494e-05,0.0,0.0 +93910,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4131.0,,357.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00036802975872205173,0.00010517328078222744,0.0,0.0004732030395042792,0.00024993615368849143,0.00012766876219844357,9.562881322364188e-05,0.0,0.0,0.00014476287290626403,0.00012766876219844357,9.562881322364188e-05,0.0,0.0,0.00010517328078222744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.027559351232426e-06,0.0,0.0,4.385739979502601e-05,2.2787650408150796e-05,5.088495914625843e-05,1.7251113645191603e-05,1.5214041289802217e-05,1.1395902081496085e-05,0.0,0.0,7.027559351232426e-06,0.0,0.0,0.0,0.0,0.0,2.6876393234783618e-05,1.3728609510891438e-05,1.0283256547100415e-05,0.0,0.0 +93911,50.0,the Greater Atlanta and Macon Area,G1300210013603,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,20387.0,,6732.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004668982475159861,0.005221423345084041,0.0,0.009890405820243904,0.004729547201678188,0.0006624923956804479,0.003667359955290007,0.0004279961247817174,0.0004030910035966108,0.0025897282993357384,0.0006624923956804479,0.000585755512548415,0.0004279961247817174,0.0004030910035966108,0.00213981890234245,0.003081604442741592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034886408822612036,0.0,0.0,0.0005563949541895231,0.0005071612997478743,0.0009052590424156433,0.00030861365750208447,7.894812801431848e-05,6.980351999703687e-05,5.100359350418499e-05,4.8035691218281156e-05,0.00014296982278549586,0.00020589426544062454,0.0,0.0,0.0,0.0,0.00043289076794881187,6.0637272385102005e-05,0.00033566982201317164,3.917406111733735e-05,3.689452005855406e-05 +93912,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,81410.0,,5802.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00419057092162948,0.0009867655344716186,0.0,0.005177354186462519,0.002119097336201871,0.001657806523136357,0.0008014655272706469,0.0,0.0005989493391308036,0.0020427858606499637,0.001657806523136357,0.000342160514684179,0.0,0.00014780029279756017,7.631147555190726e-05,0.0004593050125864678,0.00045114904633324353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.593026896493104e-05,0.0,0.0,0.0004993830059756228,0.00019955077524981494,0.0005653132749405538,0.00024343521747609647,0.00019755790328634105,4.077466997807307e-05,0.0,1.7613102338958287e-05,5.098714874493536e-06,3.068824554455275e-05,3.014330854588476e-05,0.0,0.0,0.0,0.0002313834077989935,0.00018101524467121013,8.751170687877896e-05,0.0,6.539904364913903e-05 +93913,35.0,Eastern Counties in South Carolina and Georgia,G1300510010808,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,75956.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006767549222344227,0.0,0.0,0.0067675492223442275,0.0027279684141965034,0.0017025672885776573,0.0023370442091763645,0.0,0.0,0.0027279684141965034,0.0017025672885776573,0.0023370442091763645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008064769943370631,0.0002490829678970631,0.0008064769943370631,0.0003250872206535001,0.00020289196346223064,0.0002785014674479933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032508722065350003,0.00020289196346223062,0.00027850146744799325,0.0,0.0 +93914,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,34852.0,,15247.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.006741103515699314,0.010488185121380927,0.0,0.01722936035705126,0.005793754418554106,0.0006356541031113607,0.005776613345481375,0.0003679951712811003,0.004655271598652297,0.0037097872207534966,0.0006356541031113607,0.0015005252335886143,0.0003679951712811003,0.0005271417869647413,0.00208396719780061,0.004276088111892761,0.004128129811687556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007007612074476791,0.0,0.0,0.0008033251898647429,0.0008800104801334758,0.0015040863973124216,0.00044208867532283263,7.574975697688331e-05,0.00017881489512245883,4.385332314660817e-05,6.281853929595988e-05,0.00013923890100252473,0.0002857040215979808,0.0002758182848471735,0.0,0.0,0.0,0.0005057823987499087,5.5491246922253966e-05,0.0005042860196441411,3.212519327068544e-05,0.00040639527772498953 +93915,50.0,the Greater Atlanta and Macon Area,G1301350050320,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,64628.0,,4016.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0056989984625053745,0.0011700517975410758,0.0,0.00686905026004645,0.004164372350912964,0.0021992004672904204,0.0005055078154425037,0.0,0.0,0.002994320553371888,0.0021992004672904204,0.0005055078154425037,0.0,0.0,0.0011700517975410758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.817610732505059e-05,0.0,0.0,0.0006791396556564573,0.00025103674331350845,0.000757315762981508,0.0003568279308936766,0.0002620748641891264,6.0240480142250285e-05,0.0,0.0,7.817610732505059e-05,0.0,0.0,0.0,0.0,0.0,0.00045912385335340685,0.00024246280297621103,5.573245535436892e-05,0.0,0.0 +93916,50.0,the Greater Atlanta and Macon Area,G1301210008301,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,NaturalGas,190454.0,,22138.0,,9.729435225087556,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1459415.2837631335,0.0,0.0,0.04492990546164048,0.01958104258484476,0.0,0.06451094804648524,0.04305485206100353,0.012685220856972322,0.0027083284966953588,0.0006586156193060115,0.005403931012508019,0.02722769718479638,0.012685220856972322,0.0027083284966953588,0.0006586156193060115,0.0016499510866176364,0.015827154876207148,0.0,0.0037539799258903828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013082934383645943,0.0,0.0,0.005354209357200912,0.002574549742156214,0.006662502795565506,0.0032446716623148416,0.0015116730719264128,0.00032274623394791156,7.848594105539801e-05,0.0001966214586058781,0.001057480100091727,0.0,0.00025081949970304565,0.0,0.0,0.0,0.004446579703221768,0.0013100926583972069,0.00027970827784983476,6.801990263214682e-05,0.0005581022534645483 +93917,35.0,Eastern Counties in South Carolina and Georgia,G1300510010808,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,39397.0,,688.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.0044319672142032855,0.00025581709374329056,0.0,0.0046878230563703474,0.002052813994597402,0.0007408698625222228,0.0017826987324822128,0.0,0.00011147921519228219,0.002052813994597402,0.0007408698625222228,0.0015268816387389223,0.0,0.00011147921519228219,0.0,0.00025581709374329056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7092642615689748e-05,0.0,0.0,0.0005281511323109314,0.00014480930079010496,0.0005452437749266213,0.0002446308790813664,8.828839155943458e-05,0.00018195627978030961,0.0,1.3284817077222454e-05,0.0,1.7092642615689748e-05,0.0,0.0,0.0,0.0,0.00023876414236997993,8.6171059725056e-05,0.00020734685903612193,0.0,1.2966220650051577e-05 +93918,50.0,the Greater Atlanta and Macon Area,G1301210000600,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,351868.0,,9465.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01725658843254757,0.0016096508615194938,0.0,0.018866239294067066,0.01163171992384292,0.004417909615757397,0.0015196515469513058,0.0,0.0012969759378768625,0.010022069062323426,0.004417909615757397,0.0015196515469513058,0.0,0.0012969759378768625,0.0016096508615194938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010754723520683822,0.0,0.0,0.002056434558739238,0.0007012408582724444,0.002163981793946076,0.0011943107555929958,0.000526473818781843,0.00018109396133583625,0.0,0.00015455813592174004,0.00010754723520683822,0.0,0.0,0.0,0.0,0.0,0.0013341731627135396,0.0005067398874138507,0.0001743059774386919,0.0,0.0001487648000751416 +93919,50.0,the Greater Atlanta and Macon Area,G1301530020108,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,242843.0,,9902.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.012500418981618407,0.001683994266953775,0.0,0.014184395518210763,0.007961606031337672,0.0031616425877009757,0.0016820616575589893,0.0,0.001379085241613127,0.007774249302211973,0.0031616425877009757,0.0012883767125881369,0.0,0.0002761503791173224,0.00018735672912569796,0.0003936849449708524,0.0011029348624958047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011251414162601663,0.0,0.0,0.001489650336808079,0.0004972242176270197,0.0016021644784340958,0.000926441994344311,0.00037676672698419924,0.00015353331809636066,0.0,3.290829738320811e-05,1.2518024537915285e-05,2.63036071581216e-05,7.3691325296258e-05,0.0,0.0,0.0,0.0008992841717025742,0.00035711577846342537,0.00018999325243131205,0.0,0.0001557712758367842 +93920,50.0,the Greater Atlanta and Macon Area,G1300630040416,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,46269.0,,1352.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.0042739734822424946,0.00040626611985212005,0.0,0.004680239602094615,0.0015779007559915226,0.00119639167368053,0.0013019694704856665,0.0,0.0006039777019368952,0.0015779007559915226,0.00119639167368053,0.0008957033506335467,0.0,0.0006039777019368952,0.0,0.00040626611985212005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.714456443958486e-05,0.0,0.0,0.0005093203492809,0.00022012213868030612,0.0005364649137204848,0.00018803508433340368,0.0001425714566661308,0.0001067390673555112,0.0,7.197474092585427e-05,0.0,2.714456443958486e-05,0.0,0.0,0.0,0.0,0.00018086432851506978,0.00013713446544695874,0.0001492361500762068,0.0,6.92299696822494e-05 +93921,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13025.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031274025793044317,0.0,0.0,0.0031274025793044317,0.0016123744025477984,0.0004947537151085371,0.0009508832267808176,0.0,6.939123486727895e-05,0.0016123744025477984,0.0004947537151085371,0.0009508832267808176,0.0,6.939123486727895e-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.00037268890773224916,0.00010272074974162934,0.00037268890773224916,0.00019214477180441112,5.8959221591894704e-05,0.00011331564203310155,0.0,8.269272302841803e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019214477180441112,5.8959221591894704e-05,0.00011331564203310155,0.0,8.269272302841803e-06 +93922,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,48145.0,,5595.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.010024658948707035,0.0038489956844947972,0.0,0.013873582913230818,0.005441250761012379,0.0012284196635553861,0.003544974727359623,0.00036483949255641346,0.003294169988718031,0.003766159117971767,0.0012284196635553861,0.0013710706859054365,0.00036483949255641346,0.003294169988718031,0.0016750916430406115,0.0021739040414541864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002571657677706652,0.0,0.0,0.001194616496567905,0.0005390263409093591,0.0014517822643385703,0.00044880487546252064,0.0001463880619081744,0.00016338746961107951,4.3477117639355624e-05,0.0003925589719467747,0.00011191912482627419,0.00014524664294439103,0.0,0.0,0.0,0.0,0.0005693923047897739,0.000128546309332515,0.0003709590715604595,3.81781337911317e-05,0.00034471394990376845 +93923,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970301,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,11024.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002491964131765333,0.0,0.0,0.002491964131765333,0.0014123059911724137,0.00042122712655429275,0.0005796938798388058,0.0,7.873713419982066e-05,0.0014123059911724137,0.00042122712655429275,0.0005796938798388058,0.0,7.873713419982066e-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.00029696523412947416,0.00010298659508721347,0.00029696523412947416,0.00016830329697958515,5.019727638305383e-05,6.908162383051723e-05,0.0,9.383036936317933e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016830329697958515,5.019727638305383e-05,6.908162383051723e-05,0.0,9.383036936317933e-06 +93924,35.0,Eastern Counties in South Carolina and Georgia,G1300510010101,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,20048.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0017129096858999834,0.0,0.0,0.0017129096858999834,0.0004443548095844386,0.0007169705823269324,0.0005515842939886121,0.0,0.0,0.0004443548095844386,0.0007169705823269324,0.0005515842939886121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020412351651064205,5.971634552740967e-05,0.00020412351651064205,5.295274295978761e-05,8.54397390031465e-05,6.573103454770791e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.295274295978761e-05,8.54397390031465e-05,6.573103454770791e-05,0.0,0.0 +93925,81.0,the Columbus-Albany Area,G1302150000800,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11487.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002408843522657329,0.0,0.0,0.002408843522657329,0.0013425839280101777,0.0005404907268863739,0.0004575355319258486,0.0,6.823333583492861e-05,0.0013425839280101777,0.0005404907268863739,0.0004575355319258486,0.0,6.823333583492861e-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.0002870533435727083,8.35051551698254e-05,0.0002870533435727083,0.0001599909674237176,6.44083639570008e-05,5.452288743842823e-05,0.0,8.131124753561692e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001599909674237176,6.44083639570008e-05,5.452288743842823e-05,0.0,8.131124753561692e-06 +93926,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,72617.0,,7501.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006462621125969894,0.002185258985148492,0.0,0.008647880111118387,0.006663876595844437,0.0014784653262320078,0.0005055078154425037,0.0,0.0,0.004478617610695944,0.0014784653262320078,0.0005055078154425037,0.0,0.0,0.002185258985148492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014600621061153303,0.0,0.0,0.000770136971295035,0.0003785000999608491,0.0009161431819065681,0.0005337074439393724,0.00017618560431053627,6.024030348714471e-05,0.0,0.0,0.00014600621061153303,0.0,0.0,0.0,0.0,0.0,0.0007059608863564708,0.00015662635361599097,5.3552724201473785e-05,0.0,0.0 +93927,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,120313.0,,5289.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011007103505127782,0.0015568530378761644,0.0,0.012563956543003948,0.0048639036333040205,0.0030259031121346014,0.004674119107959026,0.0,0.0,0.0033070505954278565,0.0030259031121346014,0.004674119107959026,0.0,0.0,0.0015568530378761644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010402028725434517,0.0,0.0,0.0013116937324667557,0.0004843626605866711,0.001415714019721101,0.0003940943715985174,0.00036059060818221405,0.0005570050954691901,0.0,0.0,0.00010402028725434517,0.0,0.0,0.0,0.0,0.0,0.0005480675248017482,0.00034096054403754235,0.0005266824927589055,0.0,0.0 +93928,50.0,the Greater Atlanta and Macon Area,G1301210007200,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,76720.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.011824244962410418,0.0,0.0,0.011824244962410418,0.005172364866202232,0.002462104354839504,0.004189745051762384,0.0,0.0,0.005172364866202232,0.002462104354839504,0.004189745051762384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001409071986019328,0.00047357519323439366,0.001409071986019328,0.0006163805348760671,0.00029340412720554036,0.0004992836667177769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006163805348760671,0.00029340412720554036,0.0004992836667177769,0.0,0.0 +93929,35.0,Eastern Counties in South Carolina and Georgia,G1302450010600,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,318829.0,,22134.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.07530940391171842,0.0195774461119866,0.0,0.09488685002370502,0.07036702024934013,0.012030017276018918,0.006719594557822898,0.0006721715554636682,0.005098138602312173,0.05814463778403637,0.012030017276018918,0.002884094580481029,0.0006721715554636682,0.0015784827157184263,0.01222238246530376,0.0038354999773418685,0.003519655886593747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001308051486099444,0.0,0.0,0.00897447890089183,0.0033530631800363347,0.010282530386991272,0.006928986260527757,0.0014335943536023196,0.0003436920838072912,8.010141003585438e-05,0.00018810479291860602,0.0008166287602563119,0.00025626587945118434,0.0002351630078143238,0.0,0.0,0.0,0.007625408829306796,0.001303647641014445,0.0007281771416356816,7.284069860681082e-05,0.0005524660696637301 +93930,50.0,the Greater Atlanta and Macon Area,G1302070050200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,20158.0,,1011.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004732296468302517,0.0007837835702832394,0.0,0.0055160800385857574,0.002334127364056122,0.000638315021542958,0.0017494230416875976,0.000418292830813494,0.0003759217804855855,0.002334127364056122,0.000638315021542958,0.0009656394714043585,0.000418292830813494,0.0003759217804855855,0.0,0.0007837835702832394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.236641566525948e-05,0.0,0.0,0.0005639414778583154,0.000186798037893058,0.0006163078935235749,0.00027815485441627603,7.606715238557759e-05,0.0001150739718505913,4.984740046751873e-05,4.4798098738351934e-05,0.0,5.236641566525948e-05,0.0,0.0,0.0,0.0,0.00026079047238154,7.131850581929872e-05,0.00019546185373708224,4.6735575196761104e-05,4.2001486388892785e-05 +93931,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,7221.0,,1130.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005467353361935752,0.0003327674010859913,0.0,0.0008795027372795664,0.00043585378863997493,0.00022612101920147412,0.00021755861904441503,0.0,0.0,0.00010308638755398364,0.00022612101920147412,0.00021755861904441503,0.0,0.0,0.0003327674010859913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2232648187640335e-05,0.0,0.0,6.515506427502996e-05,4.2891931949182064e-05,8.738771246267029e-05,1.2284920623060654e-05,2.6947095906731444e-05,2.5926705060100326e-05,0.0,0.0,2.2232648187640335e-05,0.0,0.0,0.0,0.0,0.0,4.330659126229476e-05,2.2467466865271645e-05,2.1616703665568767e-05,0.0,0.0 +93932,50.0,the Greater Atlanta and Macon Area,G1300890021416,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,35394.0,,2302.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029634002291442562,0.0006707098227844358,0.0,0.003634110051928692,0.002321514952226247,0.0009323783819406678,0.00038024709136121504,0.0,0.0,0.0016508051294418116,0.0009323783819406678,0.00038024709136121504,0.0,0.0,0.0006707098227844358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4812274787564994e-05,0.0,0.0,0.00035314261129561415,0.00013389417524268992,0.0003979548860831791,0.00019672321963733544,0.00011110970879866212,4.531330242207547e-05,0.0,0.0,4.481227478756499e-05,0.0,0.0,0.0,0.0,0.0,0.0002542185583684467,0.00010210052185257759,4.163913193707589e-05,0.0,0.0 +93933,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,25022.0,,3786.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002163248968712474,0.001114339604669588,0.0,0.003277588573382062,0.0015504389101599445,0.0006528293051647336,0.0010743510476636812,0.0,0.0,0.00043609930549035655,0.0006528293051647336,0.0010743510476636812,0.0,0.0,0.001114339604669588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.445447796376411e-05,0.0,0.0,0.0002577905007825709,0.0001477262169447729,0.000332244978746335,5.1969172286351326e-05,7.77964977392868e-05,0.00012802848798228718,0.0,0.0,7.445447796376411e-05,0.0,0.0,0.0,0.0,0.0,0.00015716601739980938,6.61764751015191e-05,0.00010890559721130496,0.0,0.0 +93934,50.0,the Greater Atlanta and Macon Area,G1300890022900,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,26516.0,,175.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006064909717303413,0.00013894788388203646,0.0,0.00620385760118545,0.0029011987326274255,0.0008728904562446508,0.002290820528431337,0.0,0.00013894788388203646,0.0029011987326274255,0.0008728904562446508,0.002290820528431337,0.0,0.0,0.0,0.0,0.00013894788388203646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.283727735412959e-06,0.0,0.0,0.0007227459089764257,0.00023551604482605518,0.0007320296367118387,0.00034573136499488696,0.0001040210053639329,0.0002729935386176059,0.0,0.0,0.0,0.0,9.283727735412959e-06,0.0,0.0,0.0,0.0003423294973547244,0.00010299747748109248,0.00027030738405072,0.0,1.639527782530181e-05 +93935,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5875.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0014106518496976273,0.0,0.0,0.0014106518496976275,0.0006255135986903818,0.0003568810231851116,0.0003872345192474374,0.0,4.094000150095717e-05,0.0006255135986903818,0.0003568810231851116,0.0003872345192474374,0.0,4.094000150095717e-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.00016810336984485308,5.727326040007786e-05,0.00016810336984485308,7.454067695453937e-05,4.252849676832441e-05,4.614563658616336e-05,0.0,4.878703569019833e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.454067695453936e-05,4.25284967683244e-05,4.614563658616335e-05,0.0,4.8787035690198325e-06 +93936,50.0,the Greater Atlanta and Macon Area,G1300970080301,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,55787.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005403703118474315,0.0,0.0,0.005403703118474316,0.001777756824007029,0.0012619873005678362,0.00236395899389945,0.0,0.0,0.001777756824007029,0.0012619873005678362,0.00236395899389945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006439485749765693,0.00020488246287421217,0.0006439485749765693,0.00021185175209947822,0.0001503885217270469,0.00028170830115004417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021185175209947817,0.00015038852172704687,0.0002817083011500441,0.0,0.0 +93937,50.0,the Greater Atlanta and Macon Area,G1300890021303,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,25416.0,,2427.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0022093452495026296,0.0007071277685103,0.0,0.0029164730180129303,0.0018715604501553917,0.0006561608686537526,0.00038875169920378553,0.0,0.0,0.0011644326816450917,0.0006561608686537526,0.00038875169920378553,0.0,0.0,0.0007071277685103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7245794537498503e-05,0.0,0.0,0.0002632840085611093,0.0001114786337404658,0.00031052980309860783,0.00013876351113167968,7.81936022896334e-05,4.632689513979623e-05,0.0,0.0,4.7245794537498503e-05,0.0,0.0,0.0,0.0,0.0,0.00019927333271537194,6.986435467964199e-05,4.139211570359385e-05,0.0,0.0 +93938,50.0,the Greater Atlanta and Macon Area,G1301210010209,ComStock 90.1-2007,gen4_led,_1000,Electricity,1512.0,,220.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0002974146371665495,0.0001741810972949814,0.0,0.00047167844153527027,0.0002649107571870016,8.24589525180895e-05,9.775976115986137e-05,0.0,2.6466263596578376e-05,9.072965989202025e-05,8.24589525180895e-05,9.775976115986137e-05,0.0,2.6466263596578376e-05,0.0001741810972949814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.163841605077565e-05,0.0,0.0,3.5447237425040465e-05,2.1810575054065807e-05,4.708565347581612e-05,1.081357604429071e-05,9.827835292760104e-06,1.165145568309172e-05,0.0,3.1543704048979274e-06,1.163841605077565e-05,0.0,0.0,0.0,0.0,0.0,2.6444914620908113e-05,8.231526655337308e-06,9.7589413306005e-06,0.0,2.642014573428223e-06 +93939,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,136168.0,,21400.0,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,699376.6742607838,0.0,0.0,0.037765666895301635,0.018141025209095583,0.0,0.05590669210439722,0.03837454536014223,0.009947636989085164,0.006884949144164871,0.0,0.0006993838426888574,0.020932992377893554,0.009947636989085164,0.006884949144164871,0.0,0.0,0.01744155298224867,0.0,0.0006993838426888574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012120752302618818,0.0,0.0,0.004500461014912166,0.0027828200114374175,0.005712536245174047,0.00249454395664025,0.0011854405374063619,0.0008204659882974748,0.0,0.0,0.0011653406631332178,0.0,4.672866182576673e-05,0.0,0.0,0.0,0.00392110448696438,0.0010164478475648085,0.0007035029269622697,0.0,7.146292152625792e-05 +93940,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,16617.0,,1594.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014653439312748988,0.00046429084100547426,0.0,0.0019296043986809352,0.0012724412012457371,0.0005331781645302955,0.00012401540650434068,0.0,0.0,0.0008081503602402626,0.0005331781645302955,0.00012401540650434068,0.0,0.0,0.00046429084100547426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.102056061120862e-05,0.0,0.0,0.00017462096179895263,7.780980264741687e-05,0.00020564152241016125,9.630503131134923e-05,6.353735932797476e-05,1.477857115962863e-05,0.0,0.0,3.102056061120862e-05,0.0,0.0,0.0,0.0,0.0,0.000135606420663459,5.682178665472416e-05,1.3216552062848283e-05,0.0,0.0 +93941,85.0,Rural Climate Zone 3A,G1300930970300,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,27417.0,,1241.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0013133942525518313,0.00021109768306714865,0.0,0.00152449193561898,0.0005505277220926396,0.00024304779434608387,0.0004671772930569712,0.0,0.0002637568564847055,0.0005505277220926396,0.00024304779434608387,0.0002560796099898227,0.0,0.0002637568564847055,0.0,0.00021109768306714865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4104315688940059e-05,0.0,0.0,0.00015651432087531274,5.2798639912048025e-05,0.00017061863656425276,6.560518471810655e-05,2.8963474142215938e-05,3.051644711380397e-05,0.0,3.143132778958303e-05,0.0,1.4104315688940059e-05,0.0,0.0,0.0,0.0,6.1614159537113e-05,2.7201510432680995e-05,5.228571625260514e-05,0.0,2.95192346948178e-05 +93942,35.0,Eastern Counties in South Carolina and Georgia,G1301030030203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,228647.0,,14609.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.061215011215119214,0.012921758110335513,0.0,0.07413676932545472,0.05657279471051761,0.008673585926833692,0.0030976697379037008,0.0006635953509557628,0.005129215816496732,0.047209054863929484,0.008673585926833692,0.0030976697379037008,0.0006635953509557628,0.0015711975527493453,0.009363739846588127,0.0,0.0035580182637473872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008633572478993683,0.0,0.0,0.007294873168334638,0.00240253051799201,0.008158230416234006,0.005625810741406173,0.0010336142719725027,0.0003691432445546092,7.907936018025565e-05,0.00018723653957076098,0.0006256310166903496,0.0,0.0002377262312090187,0.0,0.0,0.0,0.006225438452984224,0.0009544671715525936,0.0003408767836142634,7.302400449192461e-05,0.0005644341514515479 +93943,46.0,the Tallahassee-Valdosta Area,G1301850010302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,23611.0,,343.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.002706306161513578,0.0001275210626339244,0.0,0.002833865972571275,0.0014037003995674708,0.0004107332919840776,0.0009509638162144558,0.0,6.839096795772613e-05,0.0014037003995674708,0.0004107332919840776,0.0008234427535805314,0.0,6.839096795772613e-05,0.0,0.0001275210626339244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.521032810684683e-06,0.0,0.0,0.0003225072207398889,0.0001097921498129562,0.00033102825355057363,0.00016727727300550112,4.8946587916367033e-05,9.812867356704866e-05,0.0,8.150068648338473e-06,0.0,8.521032810684683e-06,0.0,0.0,0.0,0.0,0.00016396840791854897,4.7978389111042324e-05,0.00011108354958143403,0.0,7.988854413300916e-06 +93944,50.0,the Greater Atlanta and Macon Area,G1301510070305,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,78855.0,,2720.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006953549613682276,0.0007923560885326317,0.0,0.007745905702214907,0.005149205939082629,0.0018891467642298502,0.0007075529989024287,0.0,0.0,0.004356849850549997,0.0018891467642298502,0.0007075529989024287,0.0,0.0,0.0007923560885326317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.294067572838992e-05,0.0,0.0,0.0008286399560978074,0.0002494746185666909,0.0008815806318261975,0.0005191966793162296,0.00022512566656510317,8.431761021647472e-05,0.0,0.0,5.294067572838992e-05,0.0,0.0,0.0,0.0,0.0,0.0005860438274999449,0.00021500845247134163,8.052835185491105e-05,0.0,0.0 +93945,50.0,the Greater Atlanta and Macon Area,G1300570090803,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,7023.0,,592.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0016863145264707391,0.0004697761788392661,0.0,0.002156090705310005,0.001018041370657135,0.0006721603882793515,0.00038921948901718075,0.0,7.658675028259868e-05,0.0006248519421004677,0.0006721603882793515,0.00038921948901718075,0.0,0.0,0.0003931894285566674,0.0,7.658675028259868e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.139011259415559e-05,0.0,0.0,0.0002009513517052922,8.663679530632975e-05,0.00023234146429944777,7.446110462178051e-05,8.009866277448181e-05,4.638172843813355e-05,0.0,0.0,2.6272640012784454e-05,0.0,5.117472581371142e-06,0.0,0.0,0.0,0.00010970467160466082,7.243235568535857e-05,4.1942496106225835e-05,0.0,8.253028345593949e-06 +93947,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,167800.0,,,,9.325022323477118,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,699376.6742607838,0.0,0.0,0.04036469144706564,0.0,0.0,0.04036469144706564,0.019104766068526815,0.004351152101045425,0.01633109442044622,0.0,0.0005776788570471846,0.019104766068526815,0.004351152101045425,0.01633109442044622,0.0,0.0005776788570471846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004810186292195668,0.0015915609297750637,0.004810186292195668,0.0022766799537894946,0.0005185188203198467,0.0019461465875640742,0.0,6.884093052225305e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0022766799537894946,0.0005185188203198467,0.0019461465875640742,0.0,6.884093052225305e-05 +93948,50.0,the Greater Atlanta and Macon Area,G1300670030332,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,12434.0,,3252.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,24034.3828889517,0.0,0.0,0.0011025920331898288,0.0009472614456651659,0.0,0.002049853478854995,0.0016793259393138606,0.0002770376004717344,9.352031266883785e-05,0.0,0.0,0.0007320644936486943,0.0002770376004717344,9.352031266883785e-05,0.0,0.0,0.0009472614456651659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.329002203029486e-05,0.0,0.0,0.00013139510729994803,9.717774289053034e-05,0.0001946851293302429,8.72396043123701e-05,3.301437353469123e-05,1.1144749053098812e-05,0.0,0.0,6.329002203029486e-05,0.0,0.0,0.0,0.0,0.0,0.00015949422290688418,2.6311685997823995e-05,8.882105162515082e-06,0.0,0.0 +93949,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,51150.0,,9622.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.004221930321847503,0.0028030276241129267,0.0,0.007024957945960431,0.004764159819010249,0.0019007494792150715,0.00036004864773511003,0.0,0.0,0.0019611321948973222,0.0019007494792150715,0.00036004864773511003,0.0,0.0,0.0028030276241129267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001872821855571331,0.0,0.0,0.0005031198332969677,0.00031488357703067754,0.0006904020188541008,0.00023370459191716055,0.0002265088924308701,4.290634894893708e-05,0.0,0.0,0.00018728218555713307,0.0,0.0,0.0,0.0,0.0,0.00046821427010529615,0.00018680272364343027,3.538502510537436e-05,0.0,0.0 +93950,81.0,the Columbus-Albany Area,G1302150001600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,53523.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.004351838206642767,0.0,0.0,0.004351838206642767,0.002655624546041517,0.0012716818612597935,0.0004245621729408949,0.0,0.0,0.002655624546041517,0.0012716818612597935,0.0004245621729408949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000518600975821259,0.00014110895003095772,0.000518600975821259,0.0003164661496123196,0.0001515441114462508,5.0594334331606315e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003164661496123196,0.0001515441114462508,5.0594334331606315e-05,0.0,0.0 +93951,50.0,the Greater Atlanta and Macon Area,G1301210005200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,129527.0,,8559.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006307895221689346,0.0014555740207792347,0.0,0.007763469242468581,0.0037242446859206703,0.0015840482196289374,0.0010199213103271175,0.0,0.0014352727569532742,0.0024909562062646385,0.0015840482196289374,0.0007976357692039156,0.0,0.0014352727569532742,0.0012332884796560327,0.00022228554112320196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.725289904433058e-05,0.0,0.0,0.0007516993521262165,0.0002959566089734061,0.0008489522511705472,0.00029684230644567327,0.00018876788192953922,9.505267127482546e-05,0.0,0.00017103860536815346,8.240108595804308e-05,1.4851813086287502e-05,0.0,0.0,0.0,0.0,0.00040725425853776684,0.00017321911892950043,0.00011153061413349509,0.0,0.0001569501984233785 +93952,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960202,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,223376.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.02433496338633351,0.0,0.0,0.024334963386333505,0.018838647952876254,0.0038204520844793005,0.001675863348977957,0.0,0.0,0.018838647952876254,0.0038204520844793005,0.001675863348977957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028999513381667676,0.0008154009017391511,0.0028999513381667676,0.0022449658737056875,0.00045527601414061664,0.00019970945032046335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022449658737056883,0.00045527601414061675,0.0001997094503204634,0.0,0.0 +93953,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5422.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0009346726403279131,0.0,0.0,0.0009346726403279131,0.0005892879003925654,0.0001726923699676739,0.00013233131798289188,0.0,4.0278344911042716e-05,0.0005892879003925654,0.0001726923699676739,0.00013233131798289188,0.0,4.0278344911042716e-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.00011138126060473405,3.142819746077954e-05,0.00011138126060473405,7.022312023791967e-05,2.05790701834072e-05,1.5769402439392487e-05,0.0,4.799811867490089e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.022312023791967e-05,2.05790701834072e-05,1.5769402439392487e-05,0.0,4.799811867490089e-06 +93954,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,34301.0,,2449.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0031989171191845844,0.0007135973451905414,0.0,0.003912514464375126,0.0022700924483781333,0.00144979264836277,0.00019265974123365982,0.0,0.0,0.0015564951031875921,0.00144979264836277,0.00019265974123365982,0.0,0.0,0.0007135973451905414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.767828993296174e-05,0.0,0.0,0.0003812097486225283,0.00014461364508577514,0.00042888803855549,0.0001854849891108106,0.00017276943116864498,2.2958947915501446e-05,0.0,0.0,4.767828993296174e-05,0.0,0.0,0.0,0.0,0.0,0.00024884649153112466,0.00015892560421953256,2.1119272344852405e-05,0.0,0.0 +93955,50.0,the Greater Atlanta and Macon Area,G1301950020400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,17533.0,,927.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015480758104750214,0.00027301473762436396,0.0,0.0018210905480993851,0.0007738691124028733,0.0004956371417078999,0.0005515842939886121,0.0,0.0,0.0005008543747785093,0.0004956371417078999,0.0005515842939886121,0.0,0.0,0.00027301473762436396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8241459096053366e-05,0.0,0.0,0.000184480499939387,7.975166759133085e-05,0.0002027219590354404,5.968562058186063e-05,5.906389536746625e-05,6.573098399006012e-05,0.0,0.0,1.8241459096053366e-05,0.0,0.0,0.0,0.0,0.0,8.614632735701083e-05,5.517382561927843e-05,6.140180605915117e-05,0.0,0.0 +93956,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,219067.0,,15522.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.01951865098455157,0.0045688844479642035,0.0,0.02408753543251577,0.007655859876631234,0.006153327441902004,0.010278378803588829,0.0,0.0,0.00308697542866703,0.006153327441902004,0.010278378803588829,0.0,0.0,0.0045688844479642035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003052654928393716,0.0,0.0,0.002326000521417815,0.0009013073529338199,0.0026312660142571867,0.00036786899168218606,0.0007332803301645509,0.0012248548567931011,0.0,0.0,0.0003052654928393716,0.0,0.0,0.0,0.0,0.0,0.0008363082208942713,0.0006721750931237475,0.0011227860526999568,0.0,0.0 +93957,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,8601.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001765713317260474,0.0,0.0,0.001765713317260474,0.0008030029789349359,0.0003209861531822521,0.0005914382843097873,0.0,5.028590083349892e-05,0.0008030029789349359,0.0003209861531822521,0.0005914382843097873,0.0,5.028590083349892e-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.00021041502406564443,6.26798444233863e-05,0.00021041502406564443,9.569157659156597e-05,3.8251005124304e-05,7.048001485284666e-05,0.0,5.992427496927811e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.569157659156597e-05,3.8251005124304e-05,7.048001485284666e-05,0.0,5.992427496927811e-06 +93958,50.0,the Greater Atlanta and Macon Area,G1301350050103,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,86959.0,,5928.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,153306.56730200956,0.0,0.0,0.01413964857024696,0.0022032741241043994,0.0,0.016342922694351357,0.009233865630158645,0.002465058475108591,0.004430068541438454,0.0,0.00021385255079812494,0.007677922673590661,0.002465058475108591,0.0037827373739020382,0.0,0.00021385255079812494,0.0015559429565679844,0.0006473311675364151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014721088516592485,0.0,0.0,0.0016849926266068664,0.000588170765236863,0.0018322035117727914,0.0009149621384424537,0.00029375591154739674,0.0004507809760440057,0.0,2.5484365434240582e-05,0.00010395971041377591,4.325117475214894e-05,0.0,0.0,0.0,0.0,0.0010352077991938535,0.00027635747162778215,0.0004966545636187294,0.0,2.397498916820551e-05 +93959,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,41149.0,,1763.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003628551683231584,0.0005137390608901343,0.0,0.004142290744121719,0.0025553916678969363,0.0012694342149013997,0.000317464861323382,0.0,0.0,0.0020416526070068017,0.0012694342149013997,0.000317464861323382,0.0,0.0,0.0005137390608901343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4325386090264496e-05,0.0,0.0,0.00043240680319991677,0.0001286795566297364,0.0004667321892901812,0.00024329940816892118,0.0001512757812641241,3.783161376687144e-05,0.0,0.0,3.4325386090264496e-05,0.0,0.0,0.0,0.0,0.0,0.000287928496893645,0.0001430333713589716,3.577032103756451e-05,0.0,0.0 +93960,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9628.0,,191.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0021027446427481517,0.0001518501873853684,0.0,0.002254594830133521,0.0014998927822623403,0.00046597165344725803,0.00024795580707044363,0.0,4.0774587353478564e-05,0.0013480425948769717,0.00046597165344725803,0.00024795580707044363,0.0,4.0774587353478564e-05,0.0001518501873853684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.014838462901645e-05,0.0,0.0,0.00025057935150615417,9.23299398870725e-05,0.00026072773613517066,0.0001606432052469638,5.552879430403055e-05,2.9548336053156472e-05,0.0,4.859015902003384e-06,1.014838462901645e-05,0.0,0.0,0.0,0.0,0.0,0.00017345185234084076,5.38862826627128e-05,2.867431228661927e-05,0.0,4.715288844997767e-06 +93961,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890101,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,16129.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.001325109022670799,0.0,0.0,0.001325109022670799,0.0007880734110119088,0.00043874664387832506,9.831934138000264e-05,0.0,0.0,0.0007880734110119088,0.00043874664387832506,9.831934138000264e-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.0001579121478531012,4.8373683603409745e-05,0.0001579121478531012,9.391405753768452e-05,5.2285075199716834e-05,1.171663471245991e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.391405753768452e-05,5.2285075199716834e-05,1.171663471245991e-05,0.0,0.0 +93962,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,35823.0,,14290.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0018439930484083315,0.002430123336232437,0.0,0.004274098654279349,0.0011015518943050405,0.0002472498900026363,0.0026136148465685633,0.0,0.00031169975376452825,0.001027084376340819,0.0002472498900026363,0.0005051911879415644,0.0,6.4467594123312e-05,7.446751796422177e-05,0.0021084236586269988,0.0002472321596412162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016236610866856302,0.0,0.0,0.000219744055963267,0.0002188721777001817,0.00038211016463183005,0.00012239508541989704,2.946415319328242e-05,6.020237482511264e-05,0.0,7.682442524974894e-06,4.975468089945751e-06,0.00014087208651999736,1.6518554058619893e-05,0.0,0.0,0.0,9.848021997853794e-05,2.210447250194295e-05,0.0002336606803183154,0.0,2.7866376951176552e-05 +93963,50.0,the Greater Atlanta and Macon Area,G1301210009102,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,43435.0,,9559.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.003869990043746619,0.002813837932617475,0.0,0.0066838279763640936,0.0035181950867560516,0.0011235771761651965,0.0020420557134428457,0.0,0.0,0.0007043571541385767,0.0011235771761651965,0.0020420557134428457,0.0,0.0,0.002813837932617475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018800440450315056,0.0,0.0,0.00046117747938331105,0.0003622645933638506,0.0006491818838864615,8.393656140178407e-05,0.0001338940111315723,0.00024334690684995466,0.0,0.0,0.0001880044045031506,0.0,0.0,0.0,0.0,0.0,0.00034171264167436304,0.00010912997020481956,0.00019833927200727894,0.0,0.0 +93964,50.0,the Greater Atlanta and Macon Area,G1300890021213,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,30738.0,,213.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007073853309849225,0.00016913596579688366,0.0,0.007242989275646108,0.0025750020337995975,0.003507606997284028,0.0009913269858393388,0.0,0.00016913596579688366,0.0025750020337995975,0.003507606997284028,0.0009913269858393388,0.0,0.0,0.0,0.0,0.00016913596579688366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1302696167298792e-05,0.0,0.0,0.0008429734336415177,0.00026393962725184544,0.0008542761298088165,0.00030685656190292197,0.0004179927664387139,0.00011813396129531774,0.0,0.0,0.0,0.0,1.1302696167298794e-05,0.0,0.0,0.0,0.0003037092404762566,0.000413705559471897,0.00011692230218887427,0.0,1.994878257769463e-05 +93965,35.0,Eastern Counties in South Carolina and Georgia,G1300730030307,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,22979.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0019992814357911383,0.0,0.0,0.0019992814357911387,0.001434271739050079,0.0004390200062732649,0.00012595931686835678,0.0,0.0,0.001434271739050079,0.0004390200062732649,0.00012595931686835678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023824935273370748,8.171163840962553e-05,0.00023824935273370748,0.00017091856471808335,5.231691269636765e-05,1.5010255773615373e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017091856471808332,5.2316912696367646e-05,1.501025577361537e-05,0.0,0.0 +93966,50.0,the Greater Atlanta and Macon Area,G1300890022007,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,128925.0,,6345.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00643014606368061,0.0010789634138558932,0.0,0.007509109477536504,0.00361649727957101,0.00100066613782494,0.001378712904023306,0.0,0.0015132508864786668,0.0028398010672041774,0.00100066613782494,0.0010764457025342457,0.0,0.0015132508864786668,0.000776696212366833,0.0003022672014890602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.20897845648319e-05,0.0,0.0,0.0007662677585121787,0.0002733500031888673,0.0008383575430770106,0.0003384134632147796,0.00011924739980342724,0.00012827790029529173,0.0,0.0001803311080906997,5.189412532696333e-05,2.0195659237868578e-05,0.0,0.0,0.0,0.0,0.0004037652910662476,0.0001117197727982119,0.0001539269558238945,0.0,0.00016894750290197724 +93967,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,337133.0,,19780.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.022309262717504285,0.0033637509775281574,0.0,0.02567301369503244,0.011467501316370393,0.004267893027782331,0.006724594175783426,0.0,0.003213025175096289,0.011467501316370393,0.004267893027782331,0.003360843198255269,0.0,0.003213025175096289,0.0,0.0033637509775281574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022474572754557057,0.0,0.0,0.0026585527745467182,0.000895753551262346,0.002883298502092289,0.001366560510215068,0.0005085967651264731,0.00040050534715911754,0.0,0.00038289015204605916,0.0,0.00022474572754557055,0.0,0.0,0.0,0.0,0.0012878982483708107,0.0004793208043384472,0.0007552293059371729,0.0,0.00036085014344585845 +93968,35.0,Eastern Counties in South Carolina and Georgia,G1300510000601,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,68291.0,,1379.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005500628484577418,0.0004018730941608943,0.0,0.0059025319523377485,0.003935355411152314,0.0014216059480845365,0.0005455402195014605,0.0,0.0,0.0035334823169914206,0.0014216059480845365,0.0005455402195014605,0.0,0.0,0.0004018730941608943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.68516929026545e-05,0.0,0.0,0.0006554998390437145,0.0001551522135755812,0.000682351531946369,0.00042107862702340425,0.00016941018153939015,6.501103048092013e-05,0.0,0.0,2.6851692902654498e-05,0.0,0.0,0.0,0.0,0.0,0.00045493964543295357,0.0001643421847323271,6.306619049605434e-05,0.0,0.0 +93969,50.0,the Greater Atlanta and Macon Area,G1301590010100,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,19416.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.001729973107001506,0.0,0.0,0.001729973107001506,0.0006697699678410655,0.0004772233779292783,0.000582979761231162,0.0,0.0,0.0006697699678410655,0.0004772233779292783,0.000582979761231162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020615813085748429,7.310894261264357e-05,0.00020615813085748429,7.981541684998646e-05,5.6869947398152923e-05,6.947276660934488e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.981541684998646e-05,5.6869947398152923e-05,6.947276660934488e-05,0.0,0.0 +93970,50.0,the Greater Atlanta and Macon Area,G1301350050426,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6002.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001107861252738023,0.0,0.0,0.001107861252738023,0.00042470082365134366,0.00025407613052715234,0.0003869036909524801,0.0,4.2097900533307484e-05,0.00042470082365134366,0.00025407613052715234,0.0003869036909524801,0.0,4.2097900533307484e-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.000132018374882105,4.242140659336244e-05,0.000132018374882105,5.060950765357292e-05,3.027700243656786e-05,4.610540930933089e-05,0.0,5.016599687569352e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.060950765357292e-05,3.027700243656786e-05,4.610540930933089e-05,0.0,5.016599687569352e-06 +93971,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,Electricity,197064.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.017898822874552515,0.0,0.0,0.017898822874552515,0.009781974421723487,0.004140334785623082,0.003976482977599647,0.0,0.0,0.009781974421723487,0.004140334785623082,0.003976482977599647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021329669324384,0.0006878893950770684,0.0021329669324384,0.001165698332327682,0.0004933954176123021,0.0004738695252793982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001165698332327682,0.0004933954176123021,0.0004738695252793982,0.0,0.0 +93972,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,62627.0,,4266.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005134292501758692,0.0012428876889928045,0.0,0.006377180190751497,0.004131113259528625,0.0018977728664701715,0.0003482636911532624,0.0,0.0,0.0028882255705358208,0.0018977728664701715,0.0003482636911532624,0.0,0.0,0.0012428876889928045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.304259313067231e-05,0.0,0.0,0.0006118419816071702,0.0002283241663741915,0.0006948845747378426,0.00034418328441549134,0.0002261532841893397,4.150179344944814e-05,0.0,0.0,8.304259313067231e-05,0.0,0.0,0.0,0.0,0.0,0.0004501436049595346,0.00020678937270404149,3.7948287438173845e-05,0.0,0.0 +93973,50.0,the Greater Atlanta and Macon Area,G1301210004100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,26690.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003654733725946926,0.0,0.0,0.003654733725946926,0.002046330141320216,0.0012413082618220415,0.0003670649492052308,0.0,0.0,0.002046330141320216,0.0012413082618220415,0.0003670649492052308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043552700720820805,0.00011273554436563639,0.00043552700720820805,0.00024385690149785906,0.0001479241205606855,4.3742365591070874e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024385690149785906,0.0001479241205606855,4.3742365591070874e-05,0.0,0.0 +93974,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,33276.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028588288954499077,0.0,0.0,0.0028588288954499073,0.0007085309405950642,0.0009010468409005537,0.0012492511139542896,0.0,0.0,0.0007085309405950642,0.0009010468409005537,0.0012492511139542896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034068012533861644,0.00011111011422631799,0.00034068012533861644,8.443401773096558e-05,0.00010737569890332868,0.00014887040870432215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.443401773096559e-05,0.0001073756989033287,0.00014887040870432218,0.0,0.0 +93975,50.0,the Greater Atlanta and Macon Area,G1300670031002,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,110124.0,,1634.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.013677302377798465,0.0006073815426273977,0.0,0.014284645172002093,0.00857928850737685,0.0013251960930052314,0.004158829575033873,0.0,0.00022133099658613688,0.00857928850737685,0.0013251960930052314,0.0035514480324064764,0.0,0.00022133099658613688,0.0,0.0006073815426273977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0580741661617254e-05,0.0,0.0,0.0016298970250294802,0.0005789294993621518,0.0016704777666910972,0.0010223768129701857,0.00015792099274459308,0.00042321902540973493,0.0,2.6375576332079406e-05,0.0,4.0580741661617254e-05,0.0,0.0,0.0,0.0,0.0010032808328827964,0.00015497134042993379,0.0004863426607311217,0.0,2.588293264724508e-05 +93976,85.0,Rural Climate Zone 3A,G1301930000400,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,30995.0,,2584.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00727625756442147,0.002003891926004254,0.0,0.009280149490425722,0.004412896375181833,0.0006503632782201687,0.003329685325195835,0.00042015262882407015,0.00046697102222074776,0.004412896375181833,0.0006503632782201687,0.001325793399191581,0.00042015262882407015,0.00046697102222074776,0.0,0.002003891926004254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013388845047417305,0.0,0.0,0.000867096908988037,0.0004281465871156165,0.00100098535946221,0.0005258759427806092,7.750247751281637e-05,0.00015799212001742352,5.0068739668854136e-05,5.5647992992231075e-05,0.0,0.00013388845047417305,0.0,0.0,0.0,0.0,0.0004759885246394056,7.01501759752765e-05,0.00035915006170706635,4.5318949940014496e-05,5.036892530861889e-05 +93977,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,33409.0,,2111.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002946087277464738,0.0006150653886144744,0.0,0.0035611526660792128,0.002113060939284956,0.0012441026329703144,0.00020401946742337897,0.0,0.0,0.001497995550670482,0.0012441026329703144,0.00020401946742337897,0.0,0.0,0.0006150653886144744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.109496962933616e-05,0.0,0.0,0.0003510806678970265,0.00011771721819991735,0.0003921756375263626,0.00017851381473285688,0.00014825778810312082,2.4312684635953677e-05,0.0,0.0,4.109496962933616e-05,0.0,0.0,0.0,0.0,0.0,0.0002327030314902257,0.0001370080951262724,2.2467855834061816e-05,0.0,0.0 +93978,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,67878.0,,5042.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0033261803416790663,0.0008574048175509134,0.0,0.004183585159229978,0.001822698884342848,0.0012885185554794973,0.0006969273163380155,0.0,0.00037545813343103815,0.00143378340659399,0.0012885185554794973,0.0005108826339574015,0.0,9.3013476009597e-05,0.00038891547774885815,0.00018604468238061405,0.00028244465742144115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.728662828514703e-05,0.0,0.0,0.00039637388453505246,0.0001664665483489459,0.00045366051282019944,0.00017086093959856473,0.00015355003417315675,6.088080421429333e-05,0.0,1.1084219438751398e-05,2.5984990930863556e-05,1.2430385677572433e-05,1.8871251676711036e-05,0.0,0.0,0.0,0.00019765021605057438,0.00013972465395320466,7.557355514343176e-05,0.0,4.071401032175721e-05 +93979,35.0,Eastern Counties in South Carolina and Georgia,G1300730030302,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,54121.0,,2227.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026644655231212754,0.00037872051993232786,0.0,0.003043168312692183,0.0012562492976950013,0.0005458823674005857,0.0009641061325767915,0.0,0.00027696597574264483,0.001085169040352912,0.0005458823674005857,0.000756465869986553,0.0,0.00027696597574264483,0.00017108025734208947,0.00020764026259023838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.530331239036346e-05,0.0,0.0,0.0003175191333030822,0.00010722257946441224,0.0003428224456934457,0.00012931746730824974,6.50517316431343e-05,9.01465548445604e-05,0.0,3.30054923995518e-05,1.143032121978544e-05,1.387299117057802e-05,0.0,0.0,0.0,0.0,0.00014152041963642656,6.149535912052136e-05,0.00010860957670317887,0.0,3.120108499485723e-05 +93980,50.0,the Greater Atlanta and Macon Area,G1301690030104,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,324900.0,,,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,1459415.2837631335,0.0,0.0,0.08698475363357171,0.0,0.0,0.0869847536335717,0.066505607223969,0.012646674045313137,0.002712017186806286,0.0006594455745809701,0.0044610096029023116,0.066505607223969,0.012646674045313137,0.002712017186806286,0.0006594455745809701,0.0044610096029023116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010365802083451576,0.003084502217107943,0.010365802083451576,0.007925342466652257,0.0015070792833405768,0.00032318575648069875,7.85848326904511e-05,0.0005316097442875923,0.0,0.0,0.0,0.0,0.0,0.0,0.007925342466652259,0.001507079283340577,0.0003231857564806988,7.858483269045112e-05,0.0005316097442875924 +93981,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen3_t5_cfl,200001_500000,Electricity,319914.0,,3798.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.027444702155027773,0.0011179302886064192,0.0,0.028562663133240494,0.008110833289994679,0.0076619671082844764,0.012789832045355038,0.0,0.0,0.006992903001388258,0.0076619671082844764,0.012789832045355038,0.0,0.0,0.0011179302886064192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.46945651619437e-05,0.0,0.0,0.00327053252089859,0.001075343691244273,0.003345227086060534,0.0008333308393124557,0.000913061925764388,0.0015241397558217462,0.0,0.0,7.46945651619437e-05,0.0,0.0,0.0,0.0,0.0,0.000949931702294086,0.0008973609982925371,0.0014979307911416255,0.0,0.0 +93982,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,6680.0,,361.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013181853412570818,0.00028666271758043954,0.0,0.0016048480588375213,0.0008343489598821333,0.00033678320426645987,0.0003874826404686553,0.0,4.631596129401216e-05,0.0005476862423016938,0.00033678320426645987,0.0003874826404686553,0.0,4.631596129401216e-05,0.00028666271758043954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.915234848504603e-05,0.0,0.0,0.00015708464059363225,6.471132701325192e-05,0.00017623698907867828,6.526631258696404e-05,4.0133558570540255e-05,4.617527551644918e-05,0.0,5.519349901646007e-06,1.915234848504603e-05,0.0,0.0,0.0,0.0,0.0,9.162434270386036e-05,3.698397338323944e-05,4.255155090876148e-05,0.0,5.086204591015246e-06 +93983,50.0,the Greater Atlanta and Macon Area,G1300670030345,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,357677.0,,62452.0,,9.525004485617233,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.0,0.09211446628772238,0.054077494311949637,0.0,0.14619196059967202,0.08855311571073109,0.0099708427074941,0.028151082393733637,0.0006489299317433957,0.018867719017100132,0.0531442738466698,0.0099708427074941,0.018666034338814832,0.0006489299317433957,0.0096842049037538,0.03540884186406128,0.009485048054918807,0.009183514113346333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036131412211969157,0.0,0.0,0.010977107346362093,0.007142113166068765,0.01459024856755901,0.006333102957326838,0.0011882065341613202,0.0022243961336978584,7.733175697685316e-05,0.00115404844729411,0.002365811281785152,0.0006337353190694684,0.0006135885883870014,0.0,0.0,0.0,0.008837777155129557,0.0009951099426646474,0.0028095340392563922,6.476449845961288e-05,0.001883035901790681 +93984,50.0,the Greater Atlanta and Macon Area,G1301530020109,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,363576.0,,53758.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.018715141154045375,0.009142075764323366,0.0,0.02785721691836874,0.011402980531162819,0.004279931943186546,0.007836075072483696,0.0,0.0043382471018971,0.010397261240333164,0.004279931943186546,0.003412651314324663,0.0,0.0006253143865624222,0.0010057192908296553,0.004423423758159033,0.003712932715334678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006108199549066157,0.0,0.0,0.002230247831471063,0.001131938103093469,0.0028410677863776783,0.0012390218777205892,0.000510031362123724,0.00040667917653906035,0.0,7.451752798119019e-05,6.719627223727681e-05,0.0002955472663041893,0.00024807641636514957,0.0,0.0,0.0,0.0011629532393961624,0.0004364964672281468,0.000799176045665592,0.0,0.0004424438423502039 +93985,50.0,the Greater Atlanta and Macon Area,G1300590030200,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,10756.0,,1583.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0023694749555574182,0.001255576086436426,0.0,0.0036250510419938444,0.002811461557620277,0.00035787350806998325,0.0003845051858140402,0.0,7.112808341580438e-05,0.0016270135545996558,0.00035787350806998325,0.0003845051858140402,0.0,0.0,0.0011844480030206216,0.0,7.112808341580438e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.389020124397058e-05,0.0,0.0,0.00028236776859244804,0.00016794835153405622,0.0003662579698364187,0.00019388944618488042,4.264739902612736e-05,4.582106726888516e-05,0.0,0.0,7.91378415133985e-05,0.0,4.7523597305720766e-06,0.0,0.0,0.0,0.00028405674580537024,3.615784247050385e-05,3.8848580921047463e-05,0.0,7.186444308905317e-06 +93986,50.0,the Greater Atlanta and Macon Area,G1300570090100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,94563.0,,26552.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005900221021558072,0.004515391142844848,0.0,0.01041561216440292,0.0036527913293978587,0.0015444208618551195,0.0034385731027207797,0.0,0.0017798091400677404,0.0027076389531791034,0.0015444208618551195,0.0013774717787239023,0.0,0.0002706716974385261,0.0009451523762187547,0.0020611013239968776,0.0015091374426292141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030169252204093755,0.0,0.0,0.0007031178697518845,0.0004824641662114448,0.001004810391792822,0.0003226640706950636,0.0001840456319212911,0.0001641506342153825,0.0,3.2255420027442774e-05,6.314965748787158e-05,0.00013771096167468824,0.00010083190287837765,0.0,0.0,0.0,0.000352390491206437,0.0001489926954651168,0.0003317245239181957,0.0,0.0001717009707273822 +93987,50.0,the Greater Atlanta and Macon Area,G1300670031005,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,55821.0,,7202.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003056306510504442,0.0012247069847287273,0.0,0.004281013495233169,0.0016256081867975414,0.001056729540635147,0.0012786782048913679,0.0,0.00031997983254769286,0.0013365678349278407,0.001056729540635147,0.000591999037454143,0.0,7.099236712589143e-05,0.0002890403518697008,0.0006866791674372248,0.00024898746542180146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.182748236151213e-05,0.0,0.0,0.0003642150079222213,0.0001596722364168627,0.00044604249028373343,0.00015927658528806516,0.0001259287171267883,7.054754926420026e-05,0.0,8.460043345229202e-06,1.9311920801710788e-05,4.587973136605673e-05,1.66358301937446e-05,0.0,0.0,0.0,0.00016937351976866572,0.0001101015627225007,0.00013322658557753865,0.0,3.3338974873371975e-05 +93988,85.0,Rural Climate Zone 3A,G1302930010300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,59401.0,,7412.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0028901552936371274,0.001260557775520074,0.0,0.004150713069157202,0.0017404477377152233,0.0007695863374373919,0.000862245206218588,0.0,0.0007784515181474182,0.001349422346957379,0.0007695863374373919,0.0006556333045907125,0.0,0.00011553103501306406,0.0003910253907578445,0.0002066119016278753,0.0006629204831343541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.422260919295615e-05,0.0,0.0,0.0003444145562397005,0.00016943589260269516,0.0004286371654326566,0.0001608082097977444,9.171020584263278e-05,7.813062991933821e-05,0.0,1.3767623574947475e-05,2.6125878012004266e-05,1.3804518748249101e-05,4.4292212432702785e-05,0.0,0.0,0.0,0.00017973311391274074,7.947388815817232e-05,8.904261386983248e-05,0.0,8.038938047654776e-05 +93989,50.0,the Greater Atlanta and Macon Area,G1301210011618,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,20679.0,,592.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.004610505825597692,0.0004699415929867447,0.0,0.005080447418584438,0.0027375214336973364,0.0009030785381594977,0.0012982529364859085,0.0,0.00014151180316795503,0.002267579840710592,0.0009030785381594977,0.0012982529364859085,0.0,0.00014151180316795503,0.0004699415929867447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1398900559458663e-05,0.0,0.0,0.0005494217474102492,0.00015485134146735871,0.0005808206479697077,0.00027022147365228814,0.00010761747349488764,0.0001547093581325443,0.0,1.686358614797626e-05,3.1398900559458663e-05,0.0,0.0,0.0,0.0,0.0,0.00031296632795268126,0.00010324418667981893,0.00014842238284761586,0.0,1.6178295027856966e-05 +93990,35.0,Eastern Counties in South Carolina and Georgia,G1302450001500,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,233893.0,,18027.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01062988358216426,0.0030656504109728097,0.0,0.013695533993137068,0.006034510778953551,0.002849464114178106,0.0020212434715245996,0.0,0.0027903333588422297,0.006034510778953551,0.002849464114178106,0.0013389614337195477,0.0,0.000406964985674472,0.0,0.0006822820378050518,0.002383368373167758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020482906392826553,0.0,0.0,0.0012667426509701508,0.0004611702058450746,0.0014715717148984164,0.0007191209689507443,0.00033956512297977394,0.00015956144232309283,0.0,4.849722960939047e-05,0.0,4.558614727839486e-05,0.00015924291664987065,0.0,0.0,0.0,0.000648402273325567,0.00030617212845762795,0.00021718063151894473,0.0,0.0002998185867062469 +93991,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,75904.0,,1952.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007076041144848735,0.0005746628779244846,0.0,0.007650734712379519,0.0029459259981227883,0.0019371893287235952,0.002767588695926837,0.0,0.0,0.0023712631201983033,0.0019371893287235952,0.002767588695926837,0.0,0.0,0.0005746628779244846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.839609000060521e-05,0.0,0.0,0.0008432398786640439,0.00030639025913623805,0.0008816359686646492,0.0002825794232714688,0.00023085158227087793,0.00032980887312169724,0.0,0.0,3.839609000060521e-05,0.0,0.0,0.0,0.0,0.0,0.0003394751508984907,0.00022323291220025345,0.00031892436903486663,0.0,0.0 +93993,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,17767.0,,15329.0,,7.56685751697572,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0036994595449272496,0.010544772178512244,0.0,0.014244231723439497,0.002172469642033874,0.0004458830598040539,0.009587382285424852,0.00028150088623627334,0.0017569958499404396,0.0018039724309556646,0.0004458830598040539,0.0009547362541598143,0.00028150088623627334,0.00021336691377144286,0.0003684972110782095,0.008632646031265038,0.0015436289361689967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007045405802603361,0.0,0.0,0.00044085560685591717,0.0008135036086910633,0.001145396187116253,0.00021497501219896247,5.313480105120462e-05,0.00011377360006331605,3.354577676145699e-05,2.5426416780976956e-05,2.462084856099633e-05,0.0005767833900141853,0.00010313634168515455,0.0,0.0,0.0,0.0001746909551124995,3.585400508185301e-05,0.0007709331978980127,2.2635832386403896e-05,0.0001412821966374835 +93994,35.0,Eastern Counties in South Carolina and Georgia,G1300510010502,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,33746.0,,1361.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0029629280400117154,0.0004004993621850213,0.0,0.0033634274021967364,0.0014503907936294332,0.000811801465786834,0.0011012658323867666,0.0,0.0,0.0010498914314444122,0.000811801465786834,0.0011012658323867666,0.0,0.0,0.0004004993621850213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6758296661630798e-05,0.0,0.0,0.0003530882080362656,0.000127934295261702,0.0003798465046978964,0.000125114170562128,9.674130487311924e-05,0.00013123638984073078,0.0,0.0,2.6758296661630794e-05,0.0,0.0,0.0,0.0,0.0,0.000163798948966856,9.168027503324747e-05,0.0001243707466086894,0.0,0.0 +93995,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,464069.0,,3549.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.02388806275015288,0.0006035592331000175,0.0,0.0244916219832529,0.011008072191253982,0.005838093835142206,0.002557019532915755,0.0,0.0050884364239409535,0.010404512958153967,0.005838093835142206,0.002557019532915755,0.0,0.0050884364239409535,0.0006035592331000175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.032662698379464e-05,0.0,0.0,0.002846693973567415,0.0008188137800317445,0.00288702060055121,0.0012398855715368307,0.0006957142867315198,0.0003047150441112627,0.0,0.0006063790711878023,4.032662698379464e-05,0.0,0.0,0.0,0.0,0.0,0.0012976082682574605,0.0006881821539435658,0.00030141605454254777,0.0,0.0005998141238076355 +93996,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock 90.1-2004,gen4_led,100001_200000,NaturalGas,166528.0,,52595.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.044584090763741084,0.046520007551208324,0.0,0.09110409831494941,0.07366609246730044,0.009310253839979687,0.001997517912319731,0.0006493938940286941,0.005480840201320847,0.03097697403079533,0.009310253839979687,0.001997517912319731,0.0006493938940286941,0.0016499510866176364,0.042689118436505115,0.0,0.00383088911470321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031081970334801852,0.0,0.0,0.005312998426087339,0.004403607342174077,0.008421195459567522,0.003691465082078392,0.0011094846424122748,0.00023804028168871127,7.738699338220326e-05,0.00019662142652575695,0.002852239246525725,0.0,0.00025595778695446,0.0,0.0,0.0,0.006809315660697521,0.0008605921008472643,0.0001846403080076525,6.0026639997686565e-05,0.0005066207500173961 +93997,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,114333.0,,2967.0,,9.325022323477118,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.02915952465717458,0.0025149712174537386,0.0,0.03167449587462832,0.016679062850708574,0.004464990896620207,0.009990414921583762,0.0,0.0005401155898738288,0.014164091633254836,0.004464990896620207,0.009990414921583762,0.0,0.0005401155898738288,0.0025149712174537386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001680354151322713,0.0,0.0,0.003474887817798257,0.0012207922545622836,0.0036429232329305288,0.001687909183885321,0.0005320848901227952,0.0011905396783352476,0.0,6.436459803516373e-05,0.0001680354151322713,0.0,0.0,0.0,0.0,0.0,0.0019182797984489705,0.0005135241658305298,0.001149010066916507,0.0,6.211936690665441e-05 +93998,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,10056.0,,1553.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0008959523662551352,0.00045699892737909205,0.0,0.0013529512936342272,0.00046135685147336583,0.0003776662950995304,0.0005139281470613308,0.0,0.0,4.3579240942737955e-06,0.0003776662950995304,0.0005139281470613308,0.0,0.0,0.00045699892737909205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.053437230274629e-05,0.0,0.0,0.00010676804081781953,6.684552137343129e-05,0.00013730241312056584,5.193211548993072e-07,4.500539529711882e-05,6.124332436580139e-05,0.0,0.0,3.053437230274629e-05,0.0,0.0,0.0,0.0,0.0,4.6820169591504274e-05,3.8326947847605375e-05,5.215529568145617e-05,0.0,0.0 +93999,50.0,the Greater Atlanta and Macon Area,G1300210013410,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,173883.0,,8019.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008950658782432477,0.0013637484789847812,0.0,0.010314407261417257,0.0057088040396671815,0.0018819892129315048,0.0015977892497294787,0.0,0.0011258247590890925,0.005409728303233731,0.0018819892129315048,0.001408641754100355,0.0,0.0002502817818054654,0.00029907573643345067,0.00018914749562912327,0.0008755429772836273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.111827829630675e-05,0.0,0.0,0.001066631806422296,0.0003148004955683649,0.0011577500847186027,0.0006446663215066591,0.0002242728275818451,0.0001678649734393747,0.0,2.9825571003300445e-05,1.998261893886971e-05,1.2637809985763694e-05,5.849903401827869e-05,0.0,0.0,0.0,0.0006407899351899758,0.00021124560195149368,0.00017934531692930246,0.0,0.0001263692306478307 +94000,50.0,the Greater Atlanta and Macon Area,G1301390000500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,14363.0,,,3454.0,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.003313162666922916,0.0,0.000886454416337897,0.004199617083260813,0.002288422023292897,0.001013161653306516,0.0007635517047612861,0.0,0.00013456440897385318,0.001401967606955,0.001013161653306516,0.0007635517047612861,0.0,0.00013456440897385318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000886454416337897,0.0,0.0,0.0,0.0,7.149198840491501e-05,0.00039482162390438395,0.00018196092365471502,0.0004663136123092989,0.00016706910673764227,0.0001207360366666343,9.099061963317289e-05,0.0,1.6035716869927675e-05,0.0,0.0,0.0,7.149198840491501e-05,0.0,0.0,0.00025409991411438237,0.00011249860666815509,8.478262340901289e-05,0.0,1.4941651677476598e-05 +94001,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12619.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0010384748979016668,0.0,0.0,0.0010384748979016668,0.0006144366076863074,0.00020110899006884632,0.000222929300146513,0.0,0.0,0.0006144366076863074,0.00020110899006884632,0.000222929300146513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012375424018578972,4.792943680663194e-05,0.00012375424018578972,7.322192927358875e-05,2.3966000825624444e-05,2.6566310086576526e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.322192927358875e-05,2.3966000825624444e-05,2.6566310086576526e-05,0.0,0.0 +94002,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,28694.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.00286186716647338,0.0,0.0,0.00286186716647338,0.000968870870818477,0.0007110167987051781,0.001181979496949725,0.0,0.0,0.000968870870818477,0.0007110167987051781,0.001181979496949725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003410447758684571,0.00012198622925143036,0.0003410447758684571,0.00011545900971740222,8.473089442929282e-05,0.00014085487172176207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011545900971740222,8.473089442929282e-05,0.00014085487172176207,0.0,0.0 +94003,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,20585.0,,311.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0024502953256514276,0.00011574154180721125,0.0,0.0025660756158824107,0.0014407826411173543,0.0002584132381360201,0.0007990312466041191,0.0,6.780974160114489e-05,0.0014407826411173543,0.0002584132381360201,0.0006832897047969079,0.0,6.780974160114489e-05,0.0,0.00011574154180721125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.734052563518036e-06,0.0,0.0,0.00029199866057862865,0.00010201227165155223,0.0002997327131421467,0.0001716962837038261,3.079478568218853e-05,8.142678823207567e-05,0.0,8.080802960538302e-06,0.0,7.734052563518036e-06,0.0,0.0,0.0,0.0,0.00016829188017583415,3.018418494722421e-05,9.333154562853658e-05,0.0,7.920576346924933e-06 +94004,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000300,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,136030.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.007002198444537194,0.0,0.0,0.007002198444537194,0.003344744030085861,0.001464651965826302,0.0007891251957222902,0.0,0.0014036772529027403,0.003344744030085861,0.001464651965826302,0.0007891251957222902,0.0,0.0014036772529027403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008344379244120969,0.00024430699344866905,0.0008344379244120969,0.00039858642799990893,0.00017453963294965927,9.403846458157887e-05,0.0,0.00016727339888094985,0.0,0.0,0.0,0.0,0.0,0.0,0.00039858642799990893,0.00017453963294965927,9.403846458157887e-05,0.0,0.00016727339888094985 +94005,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,5382.0,,948.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0012922153201029392,0.0007516418861428258,0.0,0.002043857206245765,0.0012798092590420428,0.00027814388898529083,0.0004355354503111929,0.0,5.045131498097752e-05,0.0005786186878801947,0.00027814388898529083,0.0004355354503111929,0.0,0.0,0.0007011905711618483,0.0,5.045131498097752e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0220811489356726e-05,0.0,0.0,0.00015398915352455108,0.00010228477233318684,0.00020420996501390777,6.89521324921761e-05,3.3145514804343654e-05,5.190136216463685e-05,0.0,0.0,4.684991635197693e-05,0.0,3.3708951373797975e-06,0.0,0.0,0.0,0.00012787087239499872,2.7790470716322915e-05,4.35160924151521e-05,0.0,5.040793082651495e-06 +94006,50.0,the Greater Atlanta and Macon Area,G1301210010304,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,4084.0,,480.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011471471127641939,0.00038061795334829276,0.0,0.0015277650661124865,0.0007972134837731842,0.00039815185298102594,0.00022198578591630115,0.0,0.00011041394344197541,0.0005270094738668669,0.00039815185298102594,0.00022198578591630115,0.0,0.0,0.00027020400990631727,0.0,0.00011041394344197541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5432799411591228e-05,0.0,0.0,0.00013670352765255878,7.057703032807127e-05,0.00016213632706415002,6.28028030426896e-05,4.74470643200734e-05,2.645366028979581e-05,0.0,0.0,1.805496646624696e-05,0.0,7.377832945344262e-06,0.0,0.0,0.0,8.460545997029787e-05,4.225445422730718e-05,2.3558569826774515e-05,0.0,1.171784303977048e-05 +94007,50.0,the Greater Atlanta and Macon Area,G1301350050212,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,16655.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003999052429442992,0.0,0.0,0.003999052429442992,0.0022014141817191454,0.0007000326721294981,0.0009977781375910047,0.0,9.974473092960475e-05,0.0022014141817191454,0.0007000326721294981,0.0009977781375910047,0.0,9.974473092960475e-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.0004765585983994831,0.00015941022237561325,0.0004765585983994831,0.0002623378601422701,8.34214091837613e-05,0.0001189031049613535,0.0,1.1886368085493396e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002623378601422701,8.34214091837613e-05,0.0001189031049613535,0.0,1.1886368085493396e-05 +94008,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,117071.0,,20279.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.011729194950497648,0.0060952453186699585,0.0,0.01782444026916761,0.004282591438348584,0.0025757347209877705,0.007063402176639058,0.0,0.003902680595169992,0.004282591438348584,0.0025757347209877705,0.004870837453139091,0.0,0.0,0.0,0.0021925647234999675,0.003902680595169992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004072490288719815,0.0,0.0,0.0013977449108648703,0.000986405405880604,0.0018049939397368519,0.0005103479321069026,0.00030694520068880367,0.0005804480435791812,0.0,0.0,0.0,0.00014649449000014495,0.00026075453887183667,0.0,0.0,0.0,0.00043367710154463716,0.0002608320649369727,0.000715276212337016,0.0,0.00039520538746989843 +94009,50.0,the Greater Atlanta and Macon Area,G1301210010510,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,647349.0,,,,7.614023970037612,Education,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,2664908.3895131643,0.0,0.0,0.13924843537357368,0.0,0.0,0.1392484353735737,0.09618110471626665,0.02499735766822449,0.010867992788442433,0.0008143326845166468,0.006387647516123488,0.09618110471626665,0.02499735766822449,0.010867992788442433,0.0008143326845166468,0.006387647516123488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01659397159768959,0.0039555837470931655,0.01659397159768959,0.011461719592140051,0.0029788876410063157,0.00129511806126573,9.704247952005377e-05,0.0007612038237574441,0.0,0.0,0.0,0.0,0.0,0.0,0.01146171959214005,0.0029788876410063152,0.0012951180612657297,9.704247952005376e-05,0.000761203823757444 +94010,85.0,Rural Climate Zone 3A,G1301330950301,ComStock 90.1-2004,gen2_t8_halogen,_1000,NaturalGas,5157.0,,819.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,1870.6521585294563,0.0,0.0,0.000200122589348136,0.00013936064076161499,0.0,0.000339483230109751,0.00021361539438879615,5.893572136025552e-05,8.971562878546717e-06,0.0,5.7960551482152615e-05,9.776521287017115e-05,5.893572136025552e-05,8.971562878546717e-06,0.0,3.4450092239162594e-05,0.00011585018151862498,0.0,2.3510459242990014e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.31093026117932e-06,0.0,0.0,2.3848361625663845e-05,1.6345533055820503e-05,3.3159291886843165e-05,1.1650559582166247e-05,7.0232970712949955e-06,1.0691300595894305e-06,0.0,4.10537491261317e-06,7.740155003377313e-06,0.0,1.570775257802008e-06,0.0,0.0,0.0,2.0865051895998665e-05,5.7565930031789164e-06,8.763044703996783e-07,0.0,5.661342517265907e-06 +94011,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,31954.0,,,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007501373984484251,0.0,0.0,0.007501373984484251,0.004252064277658531,0.0006663737132677371,0.0017552450180685318,0.0004115813858188062,0.00041610958967064376,0.004252064277658531,0.0006663737132677371,0.0017552450180685318,0.0004115813858188062,0.00041610958967064376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008939251450825571,0.00028881128181153037,0.0008939251450825571,0.0005067107951380985,7.941054792684359e-05,0.00020916936826210336,4.904740795384466e-05,4.958702580166692e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005067107951380985,7.941054792684359e-05,0.00020916936826210336,4.904740795384466e-05,4.958702580166692e-05 +94012,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,42391.0,,15773.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.00828265257270886,0.010850227535067734,0.0,0.019132880107776595,0.007216750363474846,0.0010872747605966634,0.005518851769651271,0.00036749313148399105,0.00494251008256982,0.004326363811574706,0.0010872747605966634,0.0019253943418850938,0.00036749313148399105,0.0005761982471394193,0.0028903865519001406,0.003593457427766176,0.0043663118354304005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007249497731791202,0.0,0.0,0.0009870284824110153,0.0009648420892942917,0.0017119782555901353,0.0005155648229610487,0.00012956853465659029,0.00022944570457723105,4.379348097495836e-05,6.866448597830124e-05,0.00019311899851203495,0.00024009414906446495,0.0002917318336868239,0.0,0.0,0.0,0.0006457428065557919,9.728753525387388e-05,0.0004938176674001054,3.288267352512202e-05,0.0004422475728552418 +94013,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4800.0,,374.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011526057796309881,0.0002965875664291564,0.0,0.0014491933460601446,0.0007531306134701335,0.0002879033236865292,0.00036490360933782436,0.0,4.325579956565778e-05,0.000456543047040977,0.0002879033236865292,0.00036490360933782436,0.0,4.325579956565778e-05,0.0002965875664291564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.981457972493626e-05,0.0,0.0,0.00013735256615360374,6.064016812043625e-05,0.00015716714587853998,5.4404862598155336e-05,3.430857367829325e-05,4.348446626504734e-05,0.0,5.154663612107833e-06,1.981457972493626e-05,0.0,0.0,0.0,0.0,0.0,8.16781206694433e-05,3.1223538112270166e-05,3.957433213195517e-05,0.0,4.691154964871385e-06 +94014,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300490010200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Electricity,6177.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.0003046430699193473,0.0,0.0,0.0003046430699193473,0.00014772937135187997,7.264129073795635e-05,2.2499828642047007e-05,0.0,6.179030954888402e-05,0.00014772937135187997,7.264129073795635e-05,2.2499828642047007e-05,0.0,6.179030954888402e-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,3.630290941902054e-05,9.59228624850238e-06,3.630290941902054e-05,1.760422775458498e-05,8.656327545671468e-06,2.681200794595336e-06,0.0,7.363266169554567e-06,0.0,0.0,0.0,0.0,0.0,0.0,1.760422775458498e-05,8.656327545671468e-06,2.681200794595336e-06,0.0,7.363266169554567e-06 +94015,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,40330.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.003074476482288115,0.0,0.0,0.0030744764822881153,0.0018334112092615756,0.001003088121431754,0.00023797715159478553,0.0,0.0,0.0018334112092615756,0.001003088121431754,0.00023797715159478553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003663803558891969,0.00010374896019182579,0.0003663803558891969,0.00021848462826444553,0.0001195363779933288,2.8359349631422593e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002184846282644455,0.00011953637799332879,2.835934963142259e-05,0.0,0.0 +94016,50.0,the Greater Atlanta and Macon Area,G1301390001403,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,28568.0,,919.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006706593347703692,0.0007124643596167978,0.0,0.007419138568103559,0.0033328388957355086,0.00041287515834790265,0.0027995620313985676,0.00041465409557541025,0.00045928924782923764,0.0033328388957355086,0.00041287515834790265,0.00208709767178177,0.00041465409557541025,0.00045928924782923764,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.0007992164823242645,0.0003092440359566066,0.0008468217610193379,0.0003971703129004004,4.920182491858806e-05,0.0002487168630970773,4.941381868047778e-05,5.473293488789272e-05,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.0003804108087445947,4.712564207608269e-05,0.00031954249509560023,4.732869027930905e-05,5.2423354287534215e-05 +94017,81.0,the Columbus-Albany Area,G1303210950500,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,32950.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0028821223066298634,0.0,0.0,0.002882122306629864,0.0008804848046810928,0.0007658284355528753,0.0012358090663958955,0.0,0.0,0.0008804848046810928,0.0007658284355528753,0.0012358090663958955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034345523009615724,0.0001111831314166648,0.00034345523009615724,0.00010492514855885031,9.126183886850998e-05,0.00014726824266879696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001049251485588503,9.126183886850997e-05,0.00014726824266879694,0.0,0.0 +94018,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,8168.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0016926829711486659,0.0,0.0,0.0016926829711486659,0.0007379952189758403,0.00042436999535638636,0.00046191900683403196,0.0,6.839874998240724e-05,0.0007379952189758403,0.00042436999535638636,0.00046191900683403196,0.0,6.839874998240724e-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.00020171736228159423,8.189141445698289e-05,0.00020171736228159423,8.794703526036672e-05,5.057225573472393e-05,5.5046978810842546e-05,0.0,8.151092475661018e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.794703526036672e-05,5.057225573472393e-05,5.5046978810842546e-05,0.0,8.151092475661018e-06 +94019,35.0,Eastern Counties in South Carolina and Georgia,G1300510010102,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,86140.0,,3336.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004228992614826735,0.0005672829136345893,0.0,0.004796275528461324,0.001777575114528814,0.0015437471081211575,0.000984921576883933,0.0,0.0004900317289274193,0.001777575114528814,0.0015437471081211575,0.00041763866324934375,0.0,0.0004900317289274193,0.0,0.0005672829136345893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7902294585929635e-05,0.0,0.0,0.0005039610614381712,0.00018044476038706682,0.0005418633560241007,0.0002118302685994931,0.00018396542677167116,4.976921058950147e-05,0.0,5.8396155477505485e-05,0.0,3.7902294585929635e-05,0.0,0.0,0.0,0.0,0.00020082307853829862,0.00017440615825658896,0.00011127236287905446,0.0,5.536175635015856e-05 +94021,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,62172.0,,3604.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005539443247129055,0.0010608783104989895,0.0,0.0066002908680217465,0.002486962935940643,0.0014802824701633961,0.0026330454619177077,0.0,0.0,0.0014260846254416529,0.0014802824701633961,0.0026330454619177077,0.0,0.0,0.0010608783104989895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.088114816551885e-05,0.0,0.0,0.0006601234913158277,0.00027612683208307683,0.0007310046394813465,0.0001699434256946791,0.00017640206582932667,0.00031377434257770265,0.0,0.0,7.088114816551885e-05,0.0,0.0,0.0,0.0,0.0,0.0002754395951243358,0.0001639463131352388,0.00029161873122177193,0.0,0.0 +94022,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010601,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,129881.0,,2483.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.0066856405717435705,0.0004222840179413976,0.0,0.007107924589684967,0.003058806491464669,0.0015249706553773215,0.0012575436140786652,0.0,0.001266603828764312,0.0028590385093449347,0.0015249706553773215,0.0010350275782570024,0.0,0.001266603828764312,0.0001997679821197349,0.00022251603582166263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8214485710861425e-05,0.0,0.0,0.000796715699378803,0.00022952423009847014,0.0008249301850896644,0.0003407064500521951,0.00018172799587313717,0.0001233423651837628,0.0,0.00015093888826970783,1.3347298589422499e-05,1.4867187121438922e-05,0.0,0.0,0.0,0.0,0.00035499839275436834,0.00017698475963325838,0.0001459477619987267,0.0,0.000146999270703311 +94023,50.0,the Greater Atlanta and Macon Area,G1302170100600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,50903.0,,5408.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00453540208749341,0.0015919312578744386,0.0,0.006127333345367848,0.0024769888138938896,0.0014747276514235118,0.0021755861904441502,0.0,0.0,0.0008850575560194507,0.0014747276514235118,0.0021755861904441502,0.0,0.0,0.0015919312578744386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010636310757170641,0.0,0.0,0.0005404755747944831,0.0002495207544465609,0.0006468386823661895,0.00010547069082031154,0.0001757405980092385,0.00025926062874065967,0.0,0.0,0.00010636310757170642,0.0,0.0,0.0,0.0,0.0,0.0002614860478949064,0.000155681246168353,0.00022966814852089446,0.0,0.0 +94024,35.0,Eastern Counties in South Carolina and Georgia,G1302450001601,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,84879.0,,2545.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.007562594163092517,0.0007492560481521157,0.0,0.00831188090085093,0.004021105665156508,0.0022765549951635927,0.002014158861318234,0.0,0.0,0.0032718496170043914,0.0022765549951635927,0.002014158861318234,0.0,0.0,0.0007492560481521157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.006189449738184e-05,0.0,0.0,0.0009012205869934108,0.0002922331466272553,0.0009512824814907927,0.0003899003660385619,0.0002712929167978963,0.0002400236469324068,0.0,0.0,5.006189449738184e-05,0.0,0.0,0.0,0.0,0.0,0.0004602095989001914,0.0002605483537219324,0.00023051750410852556,0.0,0.0 +94025,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,50448.0,,24412.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011171963325043765,0.016792585733566186,0.0,0.027964549058609955,0.009688507444556864,0.001251298334309366,0.011137466018985255,0.00037265696939711506,0.005514405131448303,0.005009496535498401,0.001251298334309366,0.003900634063626038,0.00037265696939711506,0.0006377339822708134,0.004679010909058465,0.007236831955359217,0.00487667114917749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001121981153888286,0.0,0.0,0.0013313412311572641,0.0014981110481927767,0.00245332238504555,0.0005969719995498074,0.00014911479893691285,0.00046483100646425624,4.440880926670483e-05,7.599752347951102e-05,0.00031262380565416474,0.00048352226372973386,0.00032583029260056085,0.0,0.0,0.0,0.0008499701583456647,0.00010977606710186557,0.0009770869052740186,3.269309592831395e-05,0.00048377728247425 +94026,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,25003.0,,1947.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033681284416523,0.0005671054751022642,0.0,0.003935264290354002,0.002519368578963763,0.0011639467040540875,0.00025191863373671356,0.0,0.0,0.0019522631038614987,0.0011639467040540875,0.00025191863373671356,0.0,0.0,0.0005671054751022642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7891214361764755e-05,0.0,0.0,0.00040137493270671175,0.00013499535067160948,0.00043926614706847643,0.00023264833438293715,0.00013870582375555865,3.0020774568215947e-05,0.0,0.0,3.7891214361764755e-05,0.0,0.0,0.0,0.0,0.0,0.0002812195692775802,0.00012992326470578628,2.8119922691730153e-05,0.0,0.0 +94027,35.0,Eastern Counties in South Carolina and Georgia,G1301270000101,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,183389.0,,18300.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.04615347122221935,0.015846421146242524,0.0,0.0619999826480851,0.03609045301941223,0.0025672816456576157,0.013942875290537253,0.0006484785336272692,0.008750894158850735,0.030175783503807257,0.0025672816456576157,0.008242168481976217,0.0006484785336272692,0.0045197590571509965,0.005914669515604976,0.005700706808561035,0.0042311351016997385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010587682212565056,0.0,0.0,0.005500021236138738,0.0026449809247994474,0.006558789457395243,0.0035959906306714446,0.0003059380626493018,0.0009822035154070632,7.72779514016927e-05,0.0005386110760092362,0.00039518475904207906,0.0003808889812975972,0.00028270051289056117,0.0,0.0,0.0,0.0038178991778096915,0.00027158491135841534,0.001474974339596477,6.860057032343416e-05,0.0009257304583072249 +94028,50.0,the Greater Atlanta and Macon Area,G1300670030313,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,66709.0,,4609.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006271237075912617,0.0013426042159469435,0.0,0.007613841291859562,0.005057386547982304,0.0019244712603759553,0.0006319531099018645,0.0,0.0,0.0037147823320353604,0.0019244712603759553,0.0006319531099018645,0.0,0.0,0.0013426042159469435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.970570283760602e-05,0.0,0.0,0.0007473294528188462,0.00027662025461483886,0.0008370351556564522,0.00044268239486658286,0.00022933498392309828,7.53084544744947e-05,0.0,0.0,8.970570283760602e-05,0.0,0.0,0.0,0.0,0.0,0.0005559887807132527,0.00021156864705170804,6.947438873986488e-05,0.0,0.0 +94029,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,37133.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.003308462317317551,0.0,0.0,0.003308462317317551,0.0013247475454466384,0.0008824489394841457,0.0011012658323867666,0.0,0.0,0.0013247475454466384,0.0008824489394841457,0.0011012658323867666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003942646246540357,0.0001317217788792661,0.0003942646246540357,0.0001578682311214436,0.00010516015191738841,0.00013123624161520366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001578682311214436,0.00010516015191738841,0.00013123624161520366,0.0,0.0 +94030,35.0,Eastern Counties in South Carolina and Georgia,G1301790010103,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,23902.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0021077151857839126,0.0,0.0,0.0021077151857839126,0.0016788399617228566,0.0003079579246993658,0.00012091729936169001,0.0,0.0,0.0016788399617228566,0.0003079579246993658,0.00012091729936169001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000251173460161519,6.709329866296288e-05,0.000251173460161519,0.00020006500170777512,3.669891361632501e-05,1.4409544837418863e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020006500170777512,3.669891361632501e-05,1.4409544837418863e-05,0.0,0.0 +94031,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,28001.0,,2525.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002473520888382249,0.0007432101957114682,0.0,0.0032167310840937173,0.0012171190961605945,0.0008445165861001852,0.0011550647122266396,0.0,0.0,0.00047390890044912633,0.0008445165861001852,0.0011550647122266396,0.0,0.0,0.0007432101957114682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.965758119680716e-05,0.0,0.0,0.0002947638334569056,0.00013537936260699102,0.0003444214146537128,5.647464101145855e-05,0.00010063911224927576,0.00013764642298589984,0.0,0.0,4.965758119680716e-05,0.0,0.0,0.0,0.0,0.0,0.0001303192184682688,9.042397069542402e-05,0.00012367493949646318,0.0,0.0 +94032,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,28501.0,,3120.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028403537524586903,0.0009184785372776488,0.0,0.0037588322897363392,0.0014148522295366936,0.0009736584494009185,0.0013703523004050247,0.0,0.0,0.0004963736922590448,0.0009736584494009185,0.0013703523004050247,0.0,0.0,0.0009184785372776488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.136729156369502e-05,0.0,0.0,0.0003384810852851643,0.00016288108831757854,0.0003998483768488593,5.915217635036086e-05,0.0001160295503209811,0.00016330301585237497,0.0,0.0,6.136729156369502e-05,0.0,0.0,0.0,0.0,0.0,0.00015050588157550362,0.00010357358897367638,0.0001457721709277122,0.0,0.0 +94033,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010401,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,83775.0,,10291.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004312325313500983,0.0017500221328820514,0.0,0.006062347446383035,0.002609590054526212,0.0011472962267687768,0.0013239260872353427,0.0,0.000981535077852703,0.002609590054526212,0.0011472962267687768,0.0003692879676568598,0.0,0.00018615106454913436,0.0,0.0009546381195784828,0.0007953840133035686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011692607283974877,0.0,0.0,0.0005138907959443955,0.00022764423942124581,0.0006308168687841443,0.00031097939341694054,0.0001367208937860838,4.400727538753405e-05,0.0,2.218323335383714e-05,0.0,6.378324262768488e-05,5.314283021206389e-05,0.0,0.0,0.0,0.00027154059406288603,0.00011938177739547791,0.0001377609772844213,0.0,0.00010213352004135902 +94034,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,50856.0,,3450.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0024061164268696857,0.0005867863111966474,0.0,0.0029929204684277532,0.0012304161611059843,0.0006926365688743627,0.0005719637290494833,0.0,0.0004979040093979227,0.0012304161611059843,0.0006926365688743627,0.0003833481442629617,0.0,9.973328298779702e-05,0.0,0.0001886155847865217,0.0003981707264101257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.920593657014767e-05,0.0,0.0,0.00028673316893193626,0.00010325725667223891,0.00032593910550208393,0.00014662678872857978,8.2540427426393e-05,4.568300477117736e-05,0.0,1.1885060905502642e-05,0.0,1.2602288963082971e-05,2.66036476070647e-05,0.0,0.0,0.0,0.00013399645836792583,7.543045198776619e-05,6.228877385571098e-05,0.0,5.4223421290680915e-05 +94035,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,59684.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00531774153123445,0.0,0.0,0.00531774153123445,0.0014474139018185565,0.0013987401862304,0.002471587443185494,0.0,0.0,0.0014474139018185565,0.0013987401862304,0.002471587443185494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006337059278150508,0.00020587792144188068,0.0006337059278150508,0.00017248577506011396,0.0001666854137759433,0.00029453473897899366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017248577506011396,0.0001666854137759433,0.00029453473897899366,0.0,0.0 +94036,50.0,the Greater Atlanta and Macon Area,G1301350050725,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,35606.0,,2548.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002998147626901045,0.0007424218910569677,0.0,0.0037405695179580124,0.0024340187645436797,0.0010955453581202705,0.00021100539529406192,0.0,0.0,0.0016915968734867123,0.0010955453581202705,0.00021100539529406192,0.0,0.0,0.0007424218910569677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.960379811492655e-05,0.0,0.0,0.00035728470563032254,0.00013988019584351035,0.00040688850374524907,0.00020158503389427056,0.00013055447879504507,2.5145192941006905e-05,0.0,0.0,4.960379811492655e-05,0.0,0.0,0.0,0.0,0.0,0.0002647656321954111,0.00011917030532664828,2.29525662231896e-05,0.0,0.0 +94037,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,129416.0,,8779.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.011023767961347436,0.0025842489879043602,0.0,0.013608016949251798,0.005897897848686225,0.0026590702480581603,0.0050510488525074134,0.0,0.0,0.003313648860781863,0.0026590702480581603,0.0050510488525074134,0.0,0.0,0.0025842489879043602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017266429657003098,0.0,0.0,0.0013136804176227162,0.0006101502025006693,0.001486344714192747,0.0003948809186251122,0.00031687609229487206,0.000601923406702732,0.0,0.0,0.00017266429657003098,0.0,0.0,0.0,0.0,0.0,0.000644201820510338,0.0002904387187793553,0.0005517041749030538,0.0,0.0 +94038,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,Electricity,631545.0,,29402.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.032508919079810954,0.005000156954430511,0.0,0.03750909376460289,0.015114317513969692,0.010313503012984835,0.007536307851954863,0.0,0.004544965385693495,0.013933298139779976,0.010313503012984835,0.00371715254135265,0.0,0.004544965385693495,0.001181019374189717,0.0038191553106022135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033408175046770205,0.0,0.0,0.0038740257716562794,0.001310126067366429,0.00420810752212398,0.001660404516839199,0.0012290404479542074,0.00044296596595611997,0.0,0.0005416148409067531,7.890892695197573e-05,0.0002551740081565753,0.0,0.0,0.0,0.0,0.001695660087696588,0.0011570615350175817,0.0008454908017740809,0.0,0.0005098950976357293 +94039,50.0,the Greater Atlanta and Macon Area,G1300670030332,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,4629.0,,249.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010708911907765524,0.0001975871991632054,0.0,0.001268478389939758,0.0007037544904477668,0.0001515193590904112,0.000386324741436305,0.0,2.687979896527491e-05,0.000532964383176097,0.0001515193590904112,0.000386324741436305,0.0,0.0,0.0001707901072716698,0.0,2.687979896527491e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3202196404085888e-05,0.0,0.0,0.00012761623569131918,5.67516364787708e-05,0.00014081843209540508,6.35124361132886e-05,1.805629779012178e-05,4.603764573016311e-05,0.0,0.0,1.1411693417512498e-05,0.0,1.79602923035911e-06,0.0,0.0,0.0,7.812636361086274e-05,1.6820719019285526e-05,4.2887324530066975e-05,0.0,2.9840249351898447e-06 +94040,50.0,the Greater Atlanta and Macon Area,G1301950020300,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,68231.0,,6873.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0032731311003102678,0.0011687676944484608,0.0,0.0044419165251201485,0.0018531951059853392,0.0010354708372925037,0.000783398288983613,0.0,0.0007698522928586926,0.0015218323814059722,0.0010354708372925037,0.0006016798147894919,0.0,0.00011416579718372,0.0003313627245793668,0.00018171847419412115,0.0006556864956749726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.809050341579002e-05,0.0,0.0,0.0003900534553039516,0.00017258618047093766,0.00046814395871974164,0.0001813541714551465,0.0001233952950781994,7.170115817329664e-05,0.0,1.3604943494264242e-05,2.2139799122221205e-05,1.2141409449603782e-05,4.380929484396501e-05,0.0,0.0,0.0,0.0001953125612086016,0.00010913069036024855,8.256417566269793e-05,0.0,8.113653148819356e-05 +94041,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,28225.0,,12454.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006626056007767438,0.009658820537535638,0.0,0.016284957406086143,0.004763508730566969,0.0006502015566540317,0.00982070382523883,0.0004184545523796311,0.0006320078804636128,0.0036632360553535124,0.0006502015566540317,0.001894163843380263,0.0004184545523796311,0.0,0.001100272675213457,0.007926539981858568,0.0006320078804636128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000645348484409755,0.0,0.0,0.0007896152925508593,0.0008759377679441333,0.0014349637769606144,0.00043654131600155693,7.74833614102492e-05,0.00022572413145567565,4.986648368337763e-05,0.0,7.351407976026403e-05,0.0005296071651840524,4.222723946543864e-05,0.0,0.0,0.0,0.00041974088781126547,5.729309928518733e-05,0.0008653602156926465,3.687250202721607e-05,5.568994702313445e-05 +94042,50.0,the Greater Atlanta and Macon Area,G1302970110800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3442.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0004839190884486878,0.0,0.0,0.0004839190884486878,0.0002673919693991809,0.00011057935758945403,8.02258615271282e-05,0.0,2.5721899932924608e-05,0.0002673919693991809,0.00011057935758945403,8.02258615271282e-05,0.0,2.5721899932924608e-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,5.7668967926143e-05,1.7927025297347807e-05,5.7668967926143e-05,3.186528342252953e-05,1.3177817487139496e-05,9.560570652599335e-06,0.0,3.065296363874632e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.186528342252953e-05,1.3177817487139496e-05,9.560570652599335e-06,0.0,3.065296363874632e-06 +94043,50.0,the Greater Atlanta and Macon Area,G1300670030313,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,36228.0,,2099.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034065206713416174,0.0006116331718780083,0.0,0.004018153843219627,0.002238868388156124,0.0013320645769420438,0.00044722087812145784,0.0,0.0,0.0016272352162781162,0.0013320645769420438,0.00044722087812145784,0.0,0.0,0.0006116331718780083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0864775589274825e-05,0.0,0.0,0.0004059496739874971,0.00016845737472421694,0.0004468144495767719,0.00019391504390575616,0.0001587400262353164,5.329460384642463e-05,0.0,0.0,4.0864775589274825e-05,0.0,0.0,0.0,0.0,0.0,0.00024895979237252283,0.00014812416944946297,4.9730487754785956e-05,0.0,0.0 +94044,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,32580.0,,2666.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0026392835495440067,0.0007766833112227517,0.0,0.0034159668607667585,0.002476025452566091,0.0006805508690022673,0.0002593601655989628,0.0,0.0,0.0016993421413433391,0.0006805508690022673,0.0002593601655989628,0.0,0.0,0.0007766833112227517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.189316322271116e-05,0.0,0.0,0.0003145174016599981,0.0001233357047441017,0.0003664105648827093,0.00020250672759999051,8.109969504907034e-05,3.090735945835989e-05,0.0,0.0,5.1893163222711164e-05,0.0,0.0,0.0,0.0,0.0,0.00026558860835525347,7.299866728993007e-05,2.782003124112795e-05,0.0,0.0 +94045,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,10034.0,,853.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002409422472173504,0.0006769573985562312,0.0,0.0030863798707297355,0.0016718407885663602,0.000489377755315482,0.0008490708190077301,0.0,7.609050784016281e-05,0.0010709738978502917,0.000489377755315482,0.0008490708190077301,0.0,0.0,0.0006008668907160684,0.0,7.609050784016281e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5229791365985326e-05,0.0,0.0,0.00028712796750338766,0.00013155600491266862,0.00033235775886937297,0.00012762666659348366,5.831855635443995e-05,0.00010118274455546403,0.0,0.0,4.014592966082876e-05,0.0,5.0838617051565665e-06,0.0,0.0,0.0,0.00018003268584788445,5.269879302275315e-05,9.14324504261592e-05,0.0,8.193829572576119e-06 +94046,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000300,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,25924.0,,348.0,5443.0,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.006224865197915234,0.00027574538384685093,0.0013969224754569022,0.007897533057218986,0.004369166584426393,0.0010067932086285892,0.0022458278803171544,0.0,0.00027574538384685093,0.0029722441089694907,0.0010067932086285892,0.0022458278803171544,0.0,0.0,0.0,0.0,0.00027574538384685093,0.0,0.0,0.0,0.0,0.0013969224754569022,0.0,0.0,1.8424181362779133e-05,0.0,0.00011266031516535972,0.000741807230717521,0.00033162090128887277,0.0008728917272456598,0.0003541975771988673,0.00011997793659019428,0.0002676317169284594,0.0,0.0,0.0,0.0,1.8424181362779133e-05,0.00011266031516535972,0.0,0.0,0.0004829114786696389,0.00011127797205681778,0.00024822492838501856,0.0,3.0477348134184718e-05 +94047,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,264057.0,,7474.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.023527173911126017,0.0022000151170571214,0.0,0.025727158338576837,0.010501062586884961,0.005701177472317948,0.009524918279373929,0.0,0.0,0.00830104746982784,0.005701177472317948,0.009524918279373929,0.0,0.0,0.0022000151170571214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001469919110865149,0.0,0.0,0.0028036865240708276,0.0009748712456412228,0.0029506784351573424,0.00098921931782986,0.0006793979808562991,0.0011350655681653214,0.0,0.0,0.0001469919110865149,0.0,0.0,0.0,0.0,0.0,0.0012043793765943395,0.0006538748353466225,0.0010924242232163805,0.0,0.0 +94048,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7195.0,,280.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017275853562666536,0.00022239932128499763,0.0,0.0019500673846253906,0.0009961239961162186,0.0005133628066998812,0.0003902119739020525,0.0,5.028590083349892e-05,0.000773724674831221,0.0005133628066998812,0.0003902119739020525,0.0,5.028590083349892e-05,0.00022239932128499763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.486182683179034e-05,0.0,0.0,0.00020587526587779355,8.771515132014196e-05,0.0002207370927095839,9.22042853450191e-05,6.117712444003566e-05,4.650131675657938e-05,0.0,5.992539336159446e-06,1.486182683179034e-05,0.0,0.0,0.0,0.0,0.0,0.0001127558548050822,5.8109896278241887e-05,4.416988732733128e-05,0.0,5.692092305005811e-06 +94049,81.0,the Columbus-Albany Area,G1302150000300,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,68588.0,,8510.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0033978819232617593,0.0014471520991047094,0.0,0.004845034022366469,0.002427038253345348,0.00100733275371888,0.0009398509981541589,0.0,0.0004708297475095022,0.0018750566416162642,0.00100733275371888,0.0004171776738524224,0.0,9.833258443561285e-05,0.0005519816117290838,0.0005226733243017365,0.0003724971630738893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.668995057701262e-05,0.0,0.0,0.00040491997470968943,0.00021211826105238318,0.000501609925286702,0.0002234474019549394,0.00012004217991440443,4.971437411916116e-05,0.0,1.1718131619060217e-05,3.6880072792986495e-05,3.4921870289876934e-05,2.4888007494149208e-05,0.0,0.0,0.0,0.0002512730501599033,0.0001042898986878479,9.730346304864013e-05,0.0,4.874534902763053e-05 +94050,50.0,the Greater Atlanta and Macon Area,G1301350050428,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,10379.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002295038589192041,0.0,0.0,0.002295038589192041,0.0011384628700215665,0.0006979649952860154,0.00038218938774933964,0.0,7.642133613512006e-05,0.0011384628700215665,0.0006979649952860154,0.00038218938774933964,0.0,7.642133613512006e-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.0002734968158869355,8.689735799460951e-05,0.0002734968158869355,0.0001356691653999664,8.317559657176293e-05,4.554502094538648e-05,0.0,9.107032969819758e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001356691653999664,8.317559657176293e-05,4.554502094538648e-05,0.0,9.107032969819758e-06 +94051,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,16198.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0037485327030866307,0.0,0.0,0.00374853270308663,0.0014859152868003972,0.001225966954037754,0.0009632892878417137,0.0,7.344388148050498e-05,0.0014859152868003972,0.001225966954037754,0.0009632892878417137,0.0,7.344388148050498e-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.00044670982502023604,0.00014626472030511856,0.00044670982502023604,0.00017707540798962029,0.00014609756053824677,0.00011479446047284357,0.0,8.752252159344473e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001770754079896203,0.0001460975605382468,0.0001147944604728436,0.0,8.752252159344475e-06 +94052,50.0,the Greater Atlanta and Macon Area,G1301530021202,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,60630.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00540204587973424,0.0,0.0,0.00540204587973424,0.0012668976375754687,0.0015559016600809358,0.0025792465820778355,0.0,0.0,0.0012668976375754687,0.0015559016600809358,0.0025792465820778355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006437512185884378,0.0002278165713954608,0.0006437512185884378,0.00015097370814187602,0.0001854137510083775,0.00030736375943818433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015097370814187602,0.0001854137510083775,0.00030736375943818433,0.0,0.0 +94053,81.0,the Columbus-Albany Area,G1302150010106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,25582.0,,972.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0022693122480773346,0.0002861805787260784,0.0,0.002555492826803413,0.0008145021511410319,0.0007474146717742536,0.0009936066934944253,0.0,0.0,0.0005283215724149534,0.0007474146717742536,0.0009936066934944253,0.0,0.0,0.0002861805787260784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.912009658191691e-05,0.0,0.0,0.0002704301307704459,0.00010388999865972335,0.0002895502273523628,6.295919481246926e-05,8.906815163885426e-05,0.00011840644154798167,0.0,0.0,1.912009658191691e-05,0.0,0.0,0.0,0.0,0.0,9.228720212722273e-05,8.468585232126534e-05,0.00011258065019106868,0.0,0.0 +94054,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,4995.0,,591.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00033675704990469266,0.00017391799888908166,0.0,0.0005106750487937743,0.00030824640565412675,0.00011217051101810367,9.025813212154388e-05,0.0,0.0,0.00013432840676504506,0.00011217051101810367,9.025813212154388e-05,0.0,0.0,0.00017391799888908166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1619981957616062e-05,0.0,0.0,4.0130256969754303e-05,2.6530479961880473e-05,5.1750238927370365e-05,1.600748516874278e-05,1.3366999838189371e-05,1.0755771962822145e-05,0.0,0.0,1.1619981957616062e-05,0.0,0.0,0.0,0.0,0.0,3.123674277563149e-05,1.1367014620164584e-05,9.146481531574294e-06,0.0,0.0 +94055,50.0,the Greater Atlanta and Macon Area,G1300210013800,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,160078.0,,5709.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013237270238963808,0.0016631975580124144,0.0,0.014900467796976227,0.009998928187709026,0.0032681689259026585,0.0016333706833645421,0.0,0.0,0.008335730629696612,0.0032681689259026585,0.0016333706833645421,0.0,0.0,0.0016631975580124144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011112494117182415,0.0,0.0,0.0015774612005528936,0.000547814030664377,0.0016885861417247178,0.0009933537209130855,0.00038946169296213035,0.00019464578667767845,0.0,0.0,0.00011112494117182414,0.0,0.0,0.0,0.0,0.0,0.0011331222482352141,0.0003703631880748388,0.00018510070541466494,0.0,0.0 +94056,50.0,the Greater Atlanta and Macon Area,G1300670031205,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,66194.0,,5616.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00589780577986733,0.001653249091257249,0.0,0.0075510548711245785,0.0025283325252299462,0.0019051800693550911,0.0031175115869332437,0.0,0.0,0.0008750834339726973,0.0019051800693550911,0.0031175115869332437,0.0,0.0,0.001653249091257249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011046124495230574,0.0,0.0,0.0007028287482228858,0.00034333127468074597,0.0008132899931751915,0.0001042817985951803,0.0002270361848562179,0.00037150710755753675,0.0,0.0,0.00011046124495230572,0.0,0.0,0.0,0.0,0.0,0.00027231526949328573,0.00020519833480862407,0.00033577308343448907,0.0,0.0 +94057,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,62459.0,,5549.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00597314876332819,0.0016332701575574446,0.0,0.007606449610491932,0.0027020050072686466,0.0018677387496718937,0.003036675163945095,0.0,0.0,0.0010687348497112018,0.0018677387496718937,0.003036675163945095,0.0,0.0,0.0016332701575574446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010912627463635551,0.0,0.0,0.0007118092520349652,0.0003371450727075786,0.0008209355266713206,0.0001273591842659475,0.0002225750228360125,0.00036187504493300523,0.0,0.0,0.00010912627463635551,0.0,0.0,0.0,0.0,0.0,0.0002916172481641111,0.00020157802557863353,0.0003277369407146787,0.0,0.0 +94058,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000500,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,136550.0,,12015.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.007028935829558633,0.002043193658962625,0.0,0.009072147218882678,0.003588110970937506,0.0018838863616034503,0.0016599164361453436,0.0,0.0019401979894735385,0.0023440069708152403,0.0018838863616034503,0.0008608267773049838,0.0,0.0019401979894735385,0.001244104000122265,0.0007990896588403597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001365145312776386,0.0,0.0,0.0008376255342499805,0.00032245396913758913,0.000974140065527619,0.0002793310593273807,0.00022449932085998696,0.00010258316574815749,0.0,0.00023120987541944298,8.31239240060861e-05,5.339060727155248e-05,0.0,0.0,0.0,0.0,0.00038528063665835364,0.0002022860894407963,0.0001782368679502254,0.0,0.0002083326638117632 +94059,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,166041.0,,1127.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007811819938061066,0.00019164747658935075,0.0,0.008003449684288995,0.004227024544709109,0.0011801683168415546,0.0010421551835478637,0.0,0.0015541016391904684,0.004227024544709109,0.0011801683168415546,0.0008505077069585129,0.0,0.0015541016391904684,0.0,0.00019164747658935075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2804407006748996e-05,0.0,0.0,0.0009309187215024234,0.0002849567162168293,0.0009437231285091724,0.0005037259327685757,0.00014063826219533874,0.00010135327663303693,0.0,0.00018519913701429996,0.0,1.2804407006748996e-05,0.0,0.0,0.0,0.0,0.0004984276761867748,0.00013915901018575082,0.00012288525435981583,0.0,0.00018325118777683106 +94060,50.0,the Greater Atlanta and Macon Area,G1301210004300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,90346.0,,1798.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007733504580564422,0.0005293650190290753,0.0,0.008262869599593497,0.0018272898485715214,0.003452703466916754,0.002982876284105222,0.0,0.0,0.001297924829542446,0.003452703466916754,0.002982876284105222,0.0,0.0,0.0005293650190290753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5368951966769625e-05,0.0,0.0,0.0009215861017031825,0.00031246164190550465,0.0009569550536699521,0.00015467107719414978,0.0004114516898858088,0.00035546333462322397,0.0,0.0,3.5368951966769625e-05,0.0,0.0,0.0,0.0,0.0,0.00021162554171208814,0.00039987101232389055,0.0003454584996339734,0.0,0.0 +94061,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,104588.0,,4697.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.005133631115200669,0.0007987173212505385,0.0,0.005932348436451207,0.0028336309014299985,0.0004407767849025127,0.0019490454398221444,0.0,0.0007088775799351311,0.0027704398933289308,0.0004407767849025127,0.001213519126672674,0.0,0.0007088775799351311,6.31910081010682e-05,0.0007355263131494705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3365793492414314e-05,0.0,0.0,0.0006117643411341652,0.0002031375380502937,0.0006651301346265795,0.000330147667014039,5.252646973497645e-05,0.00014461259726753794,0.0,8.447549422663287e-05,4.222067306139333e-06,4.9143726186274986e-05,0.0,0.0,0.0,0.0,0.0003177044172539599,4.94195385559414e-05,0.00021852540687204223,0.0,7.947878403077608e-05 +94062,50.0,the Greater Atlanta and Macon Area,G1301210003000,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,8651.0,,878.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0006909151065801828,0.000258345105814062,0.0,0.0009492909020005424,0.0005544691169805961,0.00019610658424232076,0.00019871520077762553,0.0,0.0,0.00029612401116653415,0.00019610658424232076,0.00019871520077762553,0.0,0.0,0.000258345105814062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.726154885448869e-05,0.0,0.0,8.233683512293078e-05,4.5210868385795186e-05,9.959838397741947e-05,3.528930493941985e-05,2.337015841671601e-05,2.3681029068581563e-05,0.0,0.0,1.726154885448869e-05,0.0,0.0,0.0,0.0,0.0,5.817418864994303e-05,2.0575251313064477e-05,2.0848944014411974e-05,0.0,0.0 +94063,50.0,the Greater Atlanta and Macon Area,G1300570090701,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,74702.0,,35850.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.018686997047972536,0.024660768593775827,0.0,0.04334776564174837,0.025110524532014726,0.0027440060910572787,0.006497112174304205,0.00037280040933914625,0.00862332243503301,0.01196425384485322,0.0027440060910572787,0.002720338500622127,0.00037280040933914625,0.0008855982021007653,0.013146270687161505,0.003776773673682078,0.007737724232932245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001647688026815834,0.0,0.0,0.0022268946850612717,0.0022776314195043995,0.0038745827118771064,0.001425757880168242,0.00032699810270554877,0.00032417767996919665,4.4425931465327825e-05,0.00010553509075295653,0.0008783567602991507,0.0002523418821459535,0.0005169893843707299,0.0,0.0,0.0,0.002244471030917617,0.00024526935597013596,0.0005807357803798906,3.3322271623961486e-05,0.0007707842729855009 +94064,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7880.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006948872079368862,0.0,0.0,0.0006948872079368862,0.0004636833690167193,0.00017051738724353874,6.065607807719038e-05,0.0,0.0,0.0004636833690167193,0.00017051738724353874,6.065607807719038e-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,8.280768046432891e-05,2.7864631757254738e-05,8.280768046432891e-05,5.5255793774300425e-05,2.032005936387545e-05,7.228207792956762e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5255793774300425e-05,2.032005936387545e-05,7.228207792956762e-06,0.0,0.0 +94065,50.0,the Greater Atlanta and Macon Area,G1300630040413,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,42036.0,,2692.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0035266786307173643,0.0007841855902838764,0.0,0.004310864221001241,0.0026419564262945287,0.0012367825955058164,0.0004321251992008952,0.0,0.0,0.0018577708360106523,0.0012367825955058164,0.0004321251992008952,0.0,0.0,0.0007841855902838764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.239411904573601e-05,0.0,0.0,0.0004202673577770044,0.0001550624550880007,0.00047266147682274045,0.0002213868975202196,0.00014738494997262804,5.149551028415676e-05,0.0,0.0,5.239411904573601e-05,0.0,0.0,0.0,0.0,0.0,0.0002896753324009047,0.0001356061008028378,4.738004361899786e-05,0.0,0.0 +94066,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,53366.0,,4524.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004605957492371829,0.0013317447756825143,0.0,0.005937702268054344,0.002179882735325828,0.0015822026526780672,0.0021755861904441502,0.0,0.0,0.0008481379596433141,0.0015822026526780672,0.0021755861904441502,0.0,0.0,0.0013317447756825143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.898005443507646e-05,0.0,0.0,0.0005488825963379512,0.0002450417306474326,0.0006378626507730278,0.00010107087746962075,0.00018854787552273478,0.00025926018612756603,0.0,0.0,8.898005443507646e-05,0.0,0.0,0.0,0.0,0.0,0.0002341757328268527,0.00016996944820341255,0.0002337141728860424,0.0,0.0 +94067,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,32016.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027521211343527947,0.0,0.0,0.0027521211343527947,0.0010805196585295194,0.0006510799976057645,0.0010205214782175107,0.0,0.0,0.0010805196585295194,0.0006510799976057645,0.0010205214782175107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032796483581668526,0.00011043721772895447,0.00032796483581668526,0.0001287633919826247,7.758791640852601e-05,0.00012161352742553455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001287633919826247,7.758791640852601e-05,0.00012161352742553455,0.0,0.0 +94068,50.0,the Greater Atlanta and Macon Area,G1301350050718,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,37458.0,,3330.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.003924401611212772,0.001237624655280324,0.0,0.005162026266493098,0.0025682067791898753,0.0007070037401454225,0.0017441440508289905,0.0,0.00014263294790503673,0.001722328688245308,0.0007070037401454225,0.0014950691828220426,0.0,0.0,0.0008458780909445672,0.0002490748680069481,0.00014263294790503673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.268985947779466e-05,0.0,0.0,0.00046766437014741105,0.00019359833679177005,0.0005503542296252056,0.00020524702641892473,8.42524521145515e-05,0.00017816489161393492,0.0,0.0,5.6515955929876574e-05,1.664152838833012e-05,9.529786247268697e-06,0.0,0.0,0.0,0.00027381175346856683,7.537786106892785e-05,0.00018595353953932813,0.0,1.5206944349157264e-05 +94069,50.0,the Greater Atlanta and Macon Area,G1302970110800,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,127206.0,,7443.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010983441818672253,0.0021908696143804057,0.0,0.013174342122658958,0.006567268851645418,0.002309638390752516,0.004297373501048428,0.0,0.0,0.004376399237265013,0.002309638390752516,0.004297373501048428,0.0,0.0,0.0021908696143804057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001463821110158063,0.0,0.0,0.0013088768108960869,0.0005067035112011509,0.001455258921911893,0.0005215275476892319,0.00027523541173332916,0.0005121101942488889,0.0,0.0,0.0001463821110158063,0.0,0.0,0.0,0.0,0.0,0.000725431031012437,0.00025512635418446653,0.00047469475666890294,0.0,0.0 +94070,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,6411.0,,730.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001539426763509729,0.0005794457586175877,0.0,0.0021189552292010566,0.0010487256950144181,0.0005072424832431723,0.00048540781577599535,0.0,7.741382101999174e-05,0.000546693757416822,0.0005072424832431723,0.00048540781577599535,0.0,0.0,0.000502031937597596,0.0,7.741382101999174e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8717940226829725e-05,0.0,0.0,0.00018345309600402776,8.4922212555609e-05,0.00022217103623085746,6.514935607299326e-05,6.0447957760312796e-05,5.78459259897727e-05,0.0,0.0,3.354523225476112e-05,0.0,5.172707972068601e-06,0.0,0.0,0.0,0.0001099581865498545,5.3184034551282135e-05,5.089468429503913e-05,0.0,8.116787272134369e-06 +94071,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,56719.0,,10788.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011267637766378591,0.007420865400985277,0.0,0.018688503167363864,0.007070656782516047,0.0006059620351108978,0.006262659589054172,0.00036756485145500667,0.004381659909227742,0.004414077336126798,0.0006059620351108978,0.0014984453544291617,0.00036756485145500667,0.004381659909227742,0.0026565794463892485,0.0047642142346250105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004958182043579729,0.0,0.0,0.0013427436697292028,0.0008377977640139365,0.001838561874087176,0.00052601747799036,7.221138126832861e-05,0.00017856697701966971,4.380202734053546e-05,0.000522154352847351,0.0001774968793623627,0.0003183165330926009,0.0,0.0,0.0,0.0,0.0006956062702652294,5.961412130880262e-05,0.0006161160713464259,3.616077307463764e-05,0.00043106463809208047 +94072,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5754.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013646667166985725,0.0,0.0,0.0013646667166985725,0.0009791690459996607,0.00018485030980735208,0.0001579705108420772,0.0,4.259414297574332e-05,0.0009791690459996607,0.00018485030980735208,0.0001579705108420772,0.0,4.259414297574332e-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.00016262065235148542,5.33461431097664e-05,0.00016262065235148542,0.00011668278201146886,2.2027706545792116e-05,1.8824572484323467e-05,0.0,5.075735512788787e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011668278201146886,2.2027706545792116e-05,1.8824572484323467e-05,0.0,5.075735512788787e-06 +94073,81.0,the Columbus-Albany Area,G1300950000502,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,94161.0,,4939.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.013299272755478026,0.0018356678277786497,0.0,0.015134940583256677,0.008348929128051819,0.0015109172881448243,0.004962355638795555,0.0,0.0003128160251120243,0.007573805658915075,0.0015109172881448243,0.004214588556841902,0.0,0.0,0.000775123469136744,0.0007477670819536535,0.0003128160251120243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001226495734945516,0.0,0.0,0.0015848484759795574,0.0005799242563286915,0.0017074980494741088,0.0009025556943294272,0.0001800530754932562,0.0005022443237311952,0.0,0.0,5.1789632882699584e-05,4.996182440363611e-05,2.0900705172067277e-05,0.0,0.0,0.0,0.0009419118709403317,0.00017045909815318662,0.0005598444557763188,0.0,3.52913676657522e-05 +94074,85.0,Rural Climate Zone 3A,G1300310110403,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,62493.0,,886.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.007030204021816525,0.00032943909891024783,0.0,0.007359643120726773,0.0037699116456334785,0.001061086836574715,0.0023941101111819075,0.0,0.0001346120241842156,0.0037699116456334785,0.001061086836574715,0.0020646710122716595,0.0,0.0001346120241842156,0.0,0.00032943909891024783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2011346081324693e-05,0.0,0.0,0.0008377770462876569,0.0002861270551090348,0.0008597883923689817,0.0004492537390725931,0.00012644785173255652,0.0002460432125225512,0.0,1.6041478122951408e-05,0.0,2.2011346081324693e-05,0.0,0.0,0.0,0.0,0.00044041894695190414,0.00012396119355477267,0.00027969129071630096,0.0,1.5726014695051133e-05 +94075,50.0,the Greater Atlanta and Macon Area,G1300670030408,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,145067.0,,19052.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,306613.1346040191,0.0,0.0,0.01800674126270082,0.007080809463262864,0.0,0.02508755072596368,0.013501113294906806,0.003213755519232774,0.00789053527482808,0.0,0.00048214663699602605,0.008042584089709731,0.003213755519232774,0.0067504016537583145,0.0,0.0,0.005458529205197074,0.001140133621069764,0.00048214663699602605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004730971288606555,0.0,0.0,0.0021458299505205743,0.001056423183644693,0.00261892707938123,0.0009584198255254362,0.0003829772831303588,0.0008044328418647794,0.0,0.0,0.0003647061127938874,7.617687574339178e-05,3.2214140323376285e-05,0.0,0.0,0.0,0.0014094014834709282,0.00033548876284359927,0.0008237048218769982,0.0,5.033201118970455e-05 +94076,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,31765.0,,1523.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002801083713748911,0.0004436064197883653,0.0,0.003244690133537276,0.0019154199277435055,0.0009728360163917531,0.00035640381580257993,0.0,0.0,0.0014718135079551402,0.0009728360163917531,0.00035640381580257993,0.0,0.0,0.0004436064197883653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.963929209403945e-05,0.0,0.0,0.000333800113792985,0.00011628344044985051,0.0003634394058870244,0.0001753933715104659,0.00011593112029446132,4.247200242078145e-05,0.0,0.0,2.963929209403945e-05,0.0,0.0,0.0,0.0,0.0,0.0002145471684238625,0.00010896786111204674,3.9920974188665166e-05,0.0,0.0 +94077,50.0,the Greater Atlanta and Macon Area,G1301430010400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,22592.0,,9835.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004704184618884944,0.006765488305844621,0.0,0.011469672924729567,0.004614821534999493,0.0005716081689944202,0.003853514042668781,0.00036806689125211596,0.0020615905668437393,0.002699754868940647,0.0005716081689944202,0.0008117983519257015,0.00036806689125211596,0.0002528846178010445,0.0019150666660588457,0.00304171569074308,0.0018087059490426948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004520302104306096,0.0,0.0,0.0005605870150148201,0.0006139981010091892,0.0010126172254454298,0.00032172366645123377,6.811724946514182e-05,9.674016897063239e-05,4.3861696895245645e-05,3.0135686526234626e-05,0.00012795351184028892,0.00020322958544897364,0.00012084711314134696,0.0,0.0,0.0,0.0004074264200351806,5.0465281959443456e-05,0.0003402132496462856,3.249533588655757e-05,0.00018201060601307425 +94078,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,14465.0,,287.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003249478220143649,0.00022785798815179193,0.0,0.0034773362082954414,0.0020423684789184575,0.0004633250270876001,0.0008315369193749968,0.0,0.00014002307584064745,0.0019546162736810524,0.0004633250270876001,0.0008315369193749968,0.0,0.0,8.775220523740518e-05,0.0,0.00014002307584064745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5223589453710116e-05,0.0,0.0,0.00038723110076430714,0.00012704411459149361,0.00040245469021801724,0.00023292607611196192,5.5213129030559405e-05,9.909189562178584e-05,0.0,0.0,5.862877825911592e-06,0.0,9.355185824004075e-06,0.0,0.0,0.0,0.000236376560751682,5.3623612753337746e-05,9.623916505213457e-05,0.0,1.620577943438072e-05 +94079,50.0,the Greater Atlanta and Macon Area,G1301210001700,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,3315.0,,14.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00046936264347056966,1.11654549548065e-05,0.0,0.0004805280984253762,0.0002452264736370465,0.00012985010577071265,9.420335698907116e-05,0.0,1.11654549548065e-05,0.0002452264736370465,0.00012985010577071265,9.420335698907116e-05,0.0,0.0,0.0,0.0,1.11654549548065e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.467315478044858e-07,0.0,0.0,5.5932856207863756e-05,2.0352663784229487e-05,5.6679587755668236e-05,2.922306936675172e-05,1.547393555001693e-05,1.1225995281190629e-05,0.0,0.0,0.0,0.0,7.467315478044858e-07,0.0,0.0,0.0,2.8925125248804866e-05,1.5316170873734786e-05,1.1111540525594855e-05,0.0,1.3169955846842012e-06 +94080,50.0,the Greater Atlanta and Macon Area,G1300570091008,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,63436.0,,4876.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,71543.06474093779,0.0,0.0,0.007136219709256944,0.0018120700377014514,0.0,0.008948289746958394,0.005854809335114165,0.0008571151338384712,0.002088346299196402,0.0,0.00014798023038558415,0.004464554638595606,0.0008571151338384712,0.001814511188399093,0.0,0.0,0.0013902546965185582,0.00027383511079730904,0.00014798023038558415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012107181125937449,0.0,0.0,0.0008504078142685573,0.00038351474069455685,0.0009714796255279318,0.0005320312863918208,0.00010214055021296035,0.00021623136009821464,0.0,0.0,9.288860293328552e-05,1.8296043839837473e-05,9.887164486251495e-06,0.0,0.0,0.0,0.000635632969120998,9.305352338850598e-05,0.00022672331116742905,0.0,1.6065615091351912e-05 +94081,50.0,the Greater Atlanta and Macon Area,G1301210008500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,282203.0,,11986.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01311466962265472,0.0020383178095721103,0.0,0.015152969701865407,0.007730969489985624,0.002997548092758387,0.0021612778660201762,0.0,0.0022631919834626402,0.0064580181918329335,0.002997548092758387,0.001395911354600757,0.0,0.0022631919834626402,0.001272951298152691,0.0007653665114194191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013618799088899167,0.0,0.0,0.0015628496844542039,0.00048677937736385827,0.0016990376753431957,0.0007695894737501259,0.00035721197908113585,0.00016634804252295196,0.0,0.0002697001890999899,8.505085859566776e-05,5.1137132293323894e-05,0.0,0.0,0.0,0.0,0.0008668405394354702,0.00033610224553030503,0.0002423348421795874,0.0,0.00025376203622741694 +94082,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,51891.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0043710592457692115,0.0,0.0,0.004371059245769212,0.0013219854808798452,0.0016787214644843423,0.0013703523004050247,0.0,0.0,0.0013219854808798452,0.0016787214644843423,0.0013703523004050247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005208918041032395,0.00016601892714194713,0.0005208918041032395,0.00015753879401207032,0.0002000504232626113,0.00016330258682855796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015753879401207027,0.00020005042326261128,0.00016330258682855793,0.0,0.0 +94083,50.0,the Greater Atlanta and Macon Area,G1300670030601,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,6259.0,,5187.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0013031518733536529,0.0035684271578817275,0.0,0.004871579031235381,0.0010465378170597965,0.00013476182553833317,0.00268612807444768,0.00037072053017969355,0.0006335025039808924,0.0005784932862119189,0.00013476182553833317,0.00012221083061060122,0.00037072053017969355,9.703712078412176e-05,0.00046804453084787773,0.002563917243837079,0.0005364653831967707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002384190875057097,0.0,0.0,0.00015529433930571882,0.00028163756034675527,0.00039371342681142856,6.893803747055191e-05,1.6059332061389416e-05,1.4563651853436701e-05,4.417811997090042e-05,1.1563744693485833e-05,3.127169058511228e-05,0.00017130427010836333,3.5843126812234123e-05,0.0,0.0,0.0,8.457955574578382e-05,1.089124076523628e-05,0.00021708868567344027,2.9961055622941105e-05,5.119868530033637e-05 +94084,50.0,the Greater Atlanta and Macon Area,G1301210011305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,31010.0,,4037.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027345351573807965,0.0011760353966303128,0.0,0.00391057055401111,0.0027631470880511585,0.0009088692159758479,0.00023852387638466507,0.0,0.0,0.001587111691420846,0.0009088692159758479,0.00023852387638466507,0.0,0.0,0.0011760353966303128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.857658724942303e-05,0.0,0.0,0.000325869217868579,0.00015969528883490522,0.000404445805118002,0.00018913300279114583,0.0001083081706795678,2.84244248352988e-05,0.0,0.0,7.857658724942303e-05,0.0,0.0,0.0,0.0,0.0,0.0002857749868596639,9.39986471859663e-05,2.466902972133119e-05,0.0,0.0 +94085,50.0,the Greater Atlanta and Macon Area,G1300670030101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,16667.0,,1096.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004110789686064798,0.000869251345000121,0.0,0.004980041031064917,0.003142786095019943,0.0007514764719953472,0.0010093571279145078,0.0,7.642133613512006e-05,0.0023499560861549415,0.0007514764719953472,0.0010093571279145078,0.0,0.0,0.0007928300088650009,0.0,7.642133613512006e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8078981626721174e-05,0.0,0.0,0.0004898730563641832,0.0002162983433522565,0.0005479520379909044,0.00028003869284501,8.955166871466445e-05,0.0001202826948045086,0.0,0.0,5.297289418399136e-05,0.0,5.106087442729816e-06,0.0,0.0,0.0,0.0003457995697210964,8.268467303049768e-05,0.00011105918442264955,0.0,8.408610816660782e-06 +94086,50.0,the Greater Atlanta and Macon Area,G1300670031116,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,10208.0,,1248.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.00248154304047418,0.000989838258512031,0.0,0.0034714640060599503,0.002148647068673467,0.0007204613193431071,0.0005175808674605859,0.0,8.460933643531147e-05,0.0012434181465967478,0.0007204613193431071,0.0005175808674605859,0.0,0.0,0.0009052289220767196,0.0,8.460933643531147e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.613768681167029e-05,0.0,0.0,0.00029572476635176414,0.00013791649799462319,0.0003618624531634344,0.0001481777808736309,8.585716703406938e-05,6.16799622660092e-05,0.0,0.0,6.0484373508834503e-05,0.0,5.653313302835787e-06,0.0,0.0,0.0,0.00022397314156083343,7.510027468864932e-05,5.3952189071469115e-05,0.0,8.819605212546003e-06 +94087,85.0,Rural Climate Zone 3A,G1301470960500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5217.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0008734694057608257,0.0,0.0,0.0008734694057608256,0.0003789638118735066,0.00028567023269556786,0.00016541414747861484,0.0,4.35039207868757e-05,0.0003789638118735066,0.00028567023269556786,0.00016541414747861484,0.0,4.35039207868757e-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.00010409222844422769,2.726890192380006e-05,0.00010409222844422769,4.516149898034762e-05,3.404360922700147e-05,1.9712570484656318e-05,0.0,5.184406037464611e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.5161498980347624e-05,3.404360922700147e-05,1.9712570484656318e-05,0.0,5.184406037464612e-06 +94088,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,28950.0,,13451.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005960431631194389,0.009252880340608043,0.0,0.015213311971802432,0.003379086434400514,0.0006084005141254285,0.009248290262463044,0.00037222664957102134,0.0016053081112424221,0.0024133053047042962,0.0006084005141254285,0.0009611910515512194,0.00037222664957102134,0.0016053081112424221,0.0009657811296962181,0.008287099210911825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006182225648823545,0.0,0.0,0.0007102968431228772,0.0007954434760246465,0.0013285194080052318,0.00028759043731865774,7.250229367214994e-05,0.00011454388067831588,4.435776307420231e-05,0.00019130246837955115,6.452776488370088e-05,0.0005536947999986537,0.0,0.0,0.0,0.0,0.0002950824855066989,5.3129252351763284e-05,0.0008076172451679683,3.2505106649257515e-05,0.00014018531832954353 +94089,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7403.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,9713.774621698478,0.0,0.0,0.0005707346083183787,0.0,0.0,0.0005707346083183786,0.0003578101198249167,0.00012370980298603992,8.91839959011243e-05,0.0,0.0,0.0003578101198249167,0.00012370980298603992,8.91839959011243e-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,6.801159441364672e-05,2.763946077053002e-05,6.801159441364672e-05,4.2638445946588536e-05,1.4741879716159052e-05,1.0627611623705833e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.263844594658855e-05,1.4741879716159055e-05,1.0627611623705834e-05,0.0,0.0 +94090,50.0,the Greater Atlanta and Macon Area,G1302230120102,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,33695.0,,3603.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0030022107360727747,0.0010606021040423103,0.0,0.004062812840115086,0.0020670063633628777,0.0007734701475210032,0.0012223363292312042,0.0,0.0,0.0010064042593205674,0.0007734701475210032,0.0012223363292312042,0.0,0.0,0.0010606021040423103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.086366045573644e-05,0.0,0.0,0.000357766164835521,0.00018703681043122337,0.0004286298252912575,0.00011993075229697154,9.217255969690403e-05,0.00014566285284164546,0.0,0.0,7.086366045573644e-05,0.0,0.0,0.0,0.0,0.0,0.00021807073357064878,8.16016851493803e-05,0.00012895740657122834,0.0,0.0 +94091,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300490010100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,DistrictHeating,6974.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.003330445749348873,0.0003112397747203122,0.001105307924747841,0.0,0.0,0.0047470480427084,0.0038136562818957037,0.00014833160286179415,0.0007737592224365874,0.0,1.1300935514314089e-05,0.00018327169334083287,0.00014833160286179415,0.0007737592224365874,0.0,0.0,0.0,0.0,0.0,0.0002999388392059981,0.0,1.1300935514314089e-05,0.003330445749348873,0.0,0.0,0.0,0.0,0.0,0.0,0.00013171979499301776,4.494157281166562e-05,0.00013171979499301776,2.1840529081871014e-05,1.7676710609306988e-05,9.220906126820313e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010582029486656148,4.115864879428067e-06,2.147005996913286e-05,0.0,3.135752778953293e-07 +94092,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,27849.0,,6417.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,22700.572550927158,0.0,0.0,0.006114557848906936,0.004414077336126798,0.0,0.010528635185033735,0.004227246811631131,0.0005257791075154447,0.0035702201571571174,0.0003630464932810232,0.0018422708954780008,0.0036927895876227974,0.0005257791075154447,0.001307741951498652,0.0003630464932810232,0.00022512898901800308,0.0005344572240083336,0.002262478205658466,0.0016171419064599979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000294922711037569,0.0,0.0,0.0007286565321302098,0.0005246108285237652,0.0010235792431677788,0.000440060478826738,6.265577832699833e-05,0.00015584033037982368,4.3263340593543246e-05,2.6828057313933664e-05,3.570929130490957e-05,0.00015116549966514724,0.0001080479200675122,0.0,0.0,0.0,0.00041096704521431616,5.111551226592953e-05,0.00034709182929995515,3.5294874245005495e-05,0.0001791030096269174 +94093,50.0,the Greater Atlanta and Macon Area,G1301210007604,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,23210.0,,2469.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003400354830655754,0.0007191557138876499,0.0,0.004119480170943966,0.0028085556192105976,0.0009618711469947249,0.0003490837783380817,0.0,0.0,0.0020893999053229477,0.0009618711469947249,0.0003490837783380817,0.0,0.0,0.0007191557138876499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.804881129988625e-05,0.0,0.0,0.00040521238125026547,0.00014990457010946668,0.00045326119255015165,0.0002489889300337269,0.00011462394877610213,4.1599502440436444e-05,0.0,0.0,4.804881129988625e-05,0.0,0.0,0.0,0.0,0.0,0.0003090218222885921,0.00010583346564974679,3.840924658053997e-05,0.0,0.0 +94094,50.0,the Greater Atlanta and Macon Area,G1301350050436,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13613.0,,1595.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0012003950233793897,0.0004646249505992896,0.0,0.0016650199739786792,0.0012718033556575442,0.00030479907035783953,8.841754796329555e-05,0.0,0.0,0.0008071784050582546,0.00030479907035783953,8.841754796329555e-05,0.0,0.0,0.0004646249505992896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1043941682330685e-05,0.0,0.0,0.00014304805744017786,6.587833363469612e-05,0.00017409199912250855,9.618942148409014e-05,3.632213902513056e-05,1.0536496930957155e-05,0.0,0.0,3.1043941682330685e-05,0.0,0.0,0.0,0.0,0.0,0.00013297785740555435,3.186933509420945e-05,9.244806622744764e-06,0.0,0.0 +94095,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,35526.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0030530941033143663,0.0,0.0,0.0030530941033143663,0.0011693660687613692,0.0007286326327200595,0.0011550647122266396,0.0,0.0,0.0011693660687613692,0.0007286326327200595,0.0011550647122266396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003638306336118619,0.0001209752690152567,0.0003638306336118619,0.00013935083011683177,8.682957795013043e-05,0.0001376465683307665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013935083011683177,8.682957795013043e-05,0.0001376465683307665,0.0,0.0 +94096,50.0,the Greater Atlanta and Macon Area,G1300890021303,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,164310.0,,6528.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.014833882583207237,0.0019215069399054691,0.0,0.01675538952311271,0.00875381123153785,0.003112232974650039,0.004889376006531114,0.0,0.0,0.0068323042916323806,0.003112232974650039,0.004889376006531114,0.0,0.0,0.0019215069399054691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012838408800706656,0.0,0.0,0.0017677256061327926,0.0006808551284270288,0.0018961096941398593,0.0008141927224691717,0.0003708788909902648,0.0005826576498954345,0.0,0.0,0.00012838408800706656,0.0,0.0,0.0,0.0,0.0,0.0009906177540004927,0.0003521932513425325,0.0005533021617605587,0.0,0.0 +94097,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,352257.0,,4171.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,1459415.2837631335,0.0,0.0,0.09430883228332276,0.0036889667626852952,0.0,0.09799779904600806,0.07960562128391507,0.01001737573424439,0.002416921977932128,0.0006593533573281971,0.005298434475335508,0.07960562128391507,0.01001737573424439,0.002416921977932128,0.0006593533573281971,0.0016094677126502128,0.0,0.0,0.0036889667626852952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024647582662757484,0.0,0.0,0.011238599943297099,0.003499683987035519,0.011485075769924673,0.009486446912626506,0.0011937511644789307,0.000288019886860002,7.857385596737818e-05,0.00019179713401379733,0.0,0.0,0.00024647582662757484,0.0,0.0,0.0,0.009329562511179031,0.0011740092169783094,0.0002832566885865938,7.727442189301941e-05,0.0006209621236762688 +94098,50.0,the Greater Atlanta and Macon Area,G1301510070402,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,9078.0,,828.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.00041194721723350686,0.0001408322607594794,0.0,0.0005527794779929862,0.00026318948491926375,0.00015372223351185782,3.978693102659849e-05,0.0,9.608082853526614e-05,0.00017560149950420298,0.00015372223351185782,3.978693102659849e-05,0.0,4.2836553190847576e-05,8.758798541506084e-05,0.0,5.3244275344418565e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.409533558006854e-06,0.0,0.0,4.909060071746212e-05,2.2482963854143064e-05,5.850013427546897e-05,2.0925940841256123e-05,1.8318649746939682e-05,4.741297581560859e-06,0.0,5.1047125477054526e-06,5.852083063899517e-06,0.0,3.5574504941073377e-06,0.0,0.0,0.0,2.7853096615616036e-05,1.6268279955361838e-05,4.2106136355054165e-06,0.0,1.0168144068985676e-05 +94099,35.0,Eastern Counties in South Carolina and Georgia,G1302450000200,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,15062.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0012578011263167407,0.0,0.0,0.001257801126316741,0.0007751646312508644,0.0003101144502594461,0.0001724916712069926,0.0,0.0,0.0007751646312508644,0.0003101144502594461,0.0001724916712069926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014988872095130385,3.8248218283309854e-05,0.00014988872095130385,9.237424953269001e-05,3.6955491075144586e-05,2.0555360804676404e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.237424953269e-05,3.695549107514458e-05,2.05553608046764e-05,0.0,0.0 +94100,50.0,the Greater Atlanta and Macon Area,G1301210000500,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,NaturalGas,513722.0,,38445.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.024630574825701856,0.00653799985219879,0.0,0.031168592408262075,0.012772757333030418,0.008226586282760361,0.004873792668589795,0.0,0.005295438393520071,0.011501384037044112,0.008226586282760361,0.004120447342213171,0.0,0.0007821571636842095,0.0012713732959863061,0.0007533453263766234,0.004513281229835861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043683107173745825,0.0,0.0,0.002935179172943416,0.0011954428961722101,0.003372010244680875,0.0013705982553979547,0.0009803467800671658,0.0004910259426610651,0.0,9.320819481723028e-05,8.494575895062234e-05,5.033414710140005e-05,0.0003015511656854359,0.0,0.0,0.0,0.0013818355354534558,0.0008900027585739106,0.0005272769008516061,0.0,0.0005728931316222297 +94101,50.0,the Greater Atlanta and Macon Area,G1300890022800,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,79315.0,,11237.0,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,285525.89887641044,0.0,0.0,0.014025444367046858,0.007778378211206816,0.0,0.021803822578253678,0.01869443423678928,0.0015683337380286927,0.0004265792713734402,0.0007283817604419105,0.00038616573864308555,0.010916056025582464,0.0015683337380286927,0.0004265792713734402,0.0007283817604419105,0.00038616573864308555,0.007778378211206816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005197062390610742,0.0,0.0,0.001671383191593494,0.0008530385496123412,0.002191089430654568,0.0013008438151534292,0.00018689508723936985,5.0834569329648226e-05,8.679974763054298e-05,4.601857223531512e-05,0.0005197062390610742,0.0,0.0,0.0,0.0,0.0,0.0018786236734997575,0.00015760353327039708,4.28674068268598e-05,7.319586146227305e-05,3.880620773651273e-05 +94102,35.0,Eastern Counties in South Carolina and Georgia,G1300510003502,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,130493.0,,1251.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00650720221441216,0.00021278206740205368,0.0,0.006719984281814214,0.003943711099578084,0.0013760888105331384,0.0007505261989108351,0.0,0.0006496581727921547,0.003943711099578084,0.0013760888105331384,0.0005377441315087815,0.0,0.0006496581727921547,0.0,0.00021278206740205368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4216545131047174e-05,0.0,0.0,0.0007754517748789917,0.0002514315138550377,0.000789668320010039,0.00046996507423798726,0.0001639860688754453,6.408201673611529e-05,0.0,7.741861502944378e-05,0.0,1.4216545131047174e-05,0.0,0.0,0.0,0.0,0.0004634272325660876,0.0001617048037060213,8.819466501154307e-05,0.0,7.634161872638671e-05 +94103,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,166459.0,,4214.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.008192082999436938,0.000716608017514274,0.0,0.008908691016951211,0.004118957991853887,0.0015675235227854483,0.0020152683397260417,0.0,0.0012069234322244142,0.0036400077388140002,0.0015675235227854483,0.001777610575251654,0.0,0.0012069234322244142,0.0004789502530398863,0.00023765776447438772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.78794529754635e-05,0.0,0.0,0.0009762350444181649,0.0003149382537762557,0.0010241144973936285,0.000433772841025633,0.00018679881490435947,0.00021183449179021675,0.0,0.00014382678380430328,3.200058547705658e-05,1.5878867498406927e-05,0.0,0.0,0.0,0.0,0.0004735021773217274,0.00018019746802706976,0.0002316687736643645,0.0,0.00013874404015508222 +94104,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,184446.0,,16834.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009494413506462655,0.002862850537050246,0.0,0.012357246313151483,0.006040361798222169,0.002267730955986174,0.0020659949037488126,0.0,0.001983176385555746,0.004830654699254806,0.002267730955986174,0.0020659949037488126,0.0,0.0003300329474728629,0.0012097070989673627,0.0,0.0016531434380828828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019127875886957798,0.0,0.0,0.0011314299813857168,0.00044818678882163577,0.0013227087402552947,0.0005756593129989971,0.0002702408939291276,0.0002462004181617323,0.0,3.9329356295859924e-05,8.082548127874331e-05,0.0,0.00011045327759083464,0.0,0.0,0.0,0.0006465549963432787,0.00024273592028655042,0.00022114227128442864,0.0,0.00021227745018327635 +94106,35.0,Eastern Counties in South Carolina and Georgia,G1300510010603,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,137274.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.012141606181134962,0.0,0.0,0.012141606181134962,0.0033725422152671544,0.0031262274351217915,0.005642805841139718,0.0,0.0,0.0033725422152671544,0.0031262274351217915,0.005642805841139718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014468900497216653,0.00046219922894766497,0.0014468900497216653,0.0004018988674758819,0.0003725460455201305,0.000672441479508863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004018988674758819,0.0003725460455201305,0.000672441479508863,0.0,0.0 +94107,50.0,the Greater Atlanta and Macon Area,G1300890021504,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,9370.0,,981.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0022499632340041193,0.000778356270960622,0.0,0.003028319504964741,0.0017868863281377367,0.0007948149786347444,0.000376648013808806,0.0,6.997018438345408e-05,0.0010785002415605687,0.0007948149786347444,0.000376648013808806,0.0,0.0,0.000708386086577168,0.0,6.997018438345408e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2006081935914315e-05,0.0,0.0,0.0002681213215598707,0.00012171044186522191,0.000320127403495785,0.00012852161568668996,9.471569990407138e-05,4.4884005969109354e-05,0.0,0.0,4.733100539593095e-05,0.0,4.675076539983373e-06,0.0,0.0,0.0,0.0001888939656568738,8.402087525862336e-05,3.9815927776042736e-05,0.0,7.396634804245096e-06 +94108,50.0,the Greater Atlanta and Macon Area,G1300670030507,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,20456.0,,113.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.005129161885016889,8.973717500714854e-05,0.0,0.005218899060024038,0.002795250971167373,0.0007967172413307484,0.0015371109654450283,0.0,8.973717500714854e-05,0.002795250971167373,0.0007967172413307484,0.0015371109654450283,0.0,0.0,0.0,0.0,8.973717500714854e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.997951055319623e-06,0.0,0.0,0.0006112303197859266,0.00020150207179554487,0.0006172282708412463,0.0003331035719460295,9.494294489321838e-05,0.00018317394693662033,0.0,0.0,0.0,0.0,5.997951055319623e-06,0.0,0.0,0.0,0.00033058848306083264,9.422608093395867e-05,0.00018179089734845027,0.0,1.0613027905465082e-05 +94109,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,151520.0,,13301.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013361255271868716,0.003874972695470064,0.0,0.017236258340938216,0.012473829817095917,0.0037790832420450822,0.0009833149081977775,0.0,0.0,0.008598857121625853,0.0037790832420450822,0.0009833149081977775,0.0,0.0,0.003874972695470064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025890401329624487,0.0,0.0,0.0015922351483072825,0.000712125831890672,0.0018511391616035276,0.0010247093005663517,0.00045034609727366196,0.00011717975046726838,0.0,0.0,0.00025890401329624487,0.0,0.0,0.0,0.0,0.0,0.001339664004383165,0.00040586586983869054,0.00010560602531874109,0.0,0.0 +94110,50.0,the Greater Atlanta and Macon Area,G1301210007808,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,63614.0,,6861.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005599531822235396,0.0011667287028851545,0.0,0.00676627825548197,0.0034181299960034596,0.0016905190399563546,0.0010088398344395844,0.0,0.0006487893850825722,0.0026100687742845533,0.0016905190399563546,0.0006501723532733363,0.0,0.0006487893850825722,0.0008080612217189064,0.0003586674811662481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.79541651424176e-05,0.0,0.0,0.000667286437909575,0.0002385079295348571,0.0007452406030519927,0.00031103734211765914,0.0002014562045904145,7.747990500210287e-05,0.0,7.731509909563534e-05,5.399004735830166e-05,2.3964117784115943e-05,0.0,0.0,0.0,0.0,0.0003764742098018069,0.0001861944456374133,0.00011111402431484465,0.0,7.145792329792782e-05 +94111,85.0,Rural Climate Zone 3A,G1302850960902,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,125861.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011214043520393194,0.0,0.0,0.011214043520393192,0.003584576705177983,0.0029553477072561825,0.004674088418352729,0.0,0.0,0.003584576705177983,0.0029553477072561825,0.004674088418352729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013363545991649777,0.00038681064482580513,0.0013363545991649777,0.00042716666448751935,0.000352182733511007,0.0005570015439489231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004271666644875194,0.00035218273351100707,0.0005570015439489232,0.0,0.0 +94112,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,8461.0,,355.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0020316165593323473,0.00028136946486112383,0.0,0.0023129860241934714,0.0011459065066581045,0.0004746558961898853,0.0006229496794044636,0.0,6.947394194101823e-05,0.0009340109837379987,0.0004746558961898853,0.0006229496794044636,0.0,0.0,0.0002118955229201056,0.0,6.947394194101823e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8796959596926284e-05,0.0,0.0,0.0002421041105036217,7.620887420522094e-05,0.00026090107010054794,0.00011130441784389351,5.656389391712608e-05,7.423579874260214e-05,0.0,0.0,1.4155735005092633e-05,0.0,4.64122459183365e-06,0.0,0.0,0.0,0.00012925639441618725,5.354041483612403e-05,7.026771293704239e-05,0.0,7.836547911194316e-06 +94114,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,34153.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008200737189547289,0.0,0.0,0.008200737189547287,0.004347745452327912,0.0025804607006663914,0.0011327560819335545,0.0,0.00013977495461942955,0.004347745452327912,0.0025804607006663914,0.0011327560819335545,0.0,0.00013977495461942955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000977261511545671,0.0003031713426484943,0.000977261511545671,0.0005181100423475889,0.00030750710168248307,0.00013498773284113105,0.0,1.6656634674467835e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000518110042347589,0.0003075071016824831,0.00013498773284113108,0.0,1.665663467446784e-05 +94115,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2004,gen4_led,_1000,Electricity,3332.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0004574528248521094,0.0,0.0,0.0004574528248521094,0.00025051972635636215,0.00011057935758945402,7.038371975215063e-05,0.0,2.5970021154142532e-05,0.00025051972635636215,0.00011057935758945402,7.038371975215063e-05,0.0,2.5970021154142532e-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,5.451151979837996e-05,1.9368918778573647e-05,5.451151979837996e-05,2.9852719846192885e-05,1.3176984626728257e-05,8.3871457870948e-06,0.0,3.0946695383640035e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.9852719846192885e-05,1.3176984626728257e-05,8.3871457870948e-06,0.0,3.0946695383640035e-06 +94116,35.0,Eastern Counties in South Carolina and Georgia,G1300510003602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12853.0,,180.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029443718251193443,0.00014266970220030528,0.0,0.0030870415273196498,0.0018343601884640993,0.0005705961017274819,0.0006105436183435674,0.0,7.137620463702231e-05,0.001691690486263794,0.0005705961017274819,0.0006105436183435674,0.0,7.137620463702231e-05,0.00014266970220030528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.530254863740272e-06,0.0,0.0,0.00035087404109638236,0.000114813048599269,0.00036040429596012266,0.0002015948774321743,6.799662948100961e-05,7.27570834655476e-05,0.0,8.505738692870169e-06,9.530254863740272e-06,0.0,0.0,0.0,0.0,0.0,0.00021415691574278793,6.661565272147049e-05,7.127942432090088e-05,0.0,8.332991491321791e-06 +94117,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301090970200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,85927.0,,11209.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006146992191802368,0.0019061379651856163,0.0,0.008053147887349402,0.002772549806337917,0.001661405786504628,0.0027544648376894632,0.0,0.0008647274568173952,0.002573437847590724,0.001661405786504628,0.0010474388312510393,0.0,0.0008647274568173952,0.00019911195874719296,0.001707026006438424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012735730818856877,0.0,0.0,0.0007325257636615146,0.00029877795658428353,0.0008598830718500833,0.00030667185929662036,0.00019798667454531404,0.0001248213607256784,0.0,0.00010304798198849045,1.3303529732553485e-05,0.00011405377845601533,0.0,0.0,0.0,0.0,0.00029604183080709443,0.00017739829583078906,0.0002941107898510263,0.0,9.233215536117362e-05 +94118,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,24372.0,,3107.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0023170038962639643,0.0009145195780652451,0.0,0.0032315234743292096,0.0014885993534700735,0.0006954571683122427,0.001047436262940596,0.0,0.0,0.0005740797754048283,0.0006954571683122427,0.001047436262940596,0.0,0.0,0.0009145195780652451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110349512151533e-05,0.0,0.0,0.0002761122742744276,0.00014928510537691648,0.00033721576939594293,6.841182816203666e-05,8.287610595423463e-05,0.00012482068294506103,0.0,0.0,6.110349512151533e-05,0.0,0.0,0.0,0.0,0.0,0.00015533824225334256,7.257231022993497e-05,0.0001093020143924664,0.0,0.0 +94119,50.0,the Greater Atlanta and Macon Area,G1300670030334,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,19868.0,,1548.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0017801662894471966,0.00045083533645455027,0.0,0.0022309712523023092,0.001343910280722767,0.0006016402576629881,0.00028542071391655385,0.0,0.0,0.0008930749442682168,0.0006016402576629881,0.00028542071391655385,0.0,0.0,0.00045083533645455027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.012177165290582e-05,0.0,0.0,0.00021213732440035068,8.538163939115534e-05,0.0002422590960532565,0.00010642518639361719,7.169574846392442e-05,3.4012770007850246e-05,0.0,0.0,3.012177165290582e-05,0.0,0.0,0.0,0.0,0.0,0.000145933969094667,6.53315567469865e-05,3.0993570211602985e-05,0.0,0.0 +94120,50.0,the Greater Atlanta and Macon Area,G1300670030332,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,124378.0,,43878.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.007003315457306657,0.0074618048732678,0.0,0.014465120330574458,0.003982983850123503,0.0014894567414529558,0.006223764656751195,0.0,0.0027688973518853856,0.0038817257560535804,0.0014894567414529558,0.0012743697270662952,0.0,0.00035776323273382547,0.00010125809406992154,0.0049493949296848996,0.0024111341191515607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004985540282602505,0.0,0.0,0.0008345717518494031,0.0007562210566904395,0.0013331257801096539,0.00046257785818411013,0.0001774957203621888,0.000151864210901987,0.0,4.263396240111713e-05,6.765471832876616e-06,0.000330689534442977,0.00016109783734565895,0.0,0.0,0.0,0.0003670773786193023,0.00013727042257589007,0.0005735908809353696,0.0,0.00025518546392411283 +94121,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,23539.0,,4708.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006584574426053283,0.0036515112418085763,0.0,0.010236166528644926,0.004025007198802106,0.000638153299976821,0.004542111906525341,0.00042645976990341534,0.0006043534926541764,0.004025007198802106,0.000638153299976821,0.0008906006647167646,0.00042645976990341534,0.0006043534926541764,0.0,0.0036515112418085763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002439752767686068,0.0,0.0,0.0007846712509087894,0.0004718483270434036,0.0010286465276773962,0.0004796524770233303,7.604751890769075e-05,0.00010613119275840167,5.0820402270547525e-05,7.201965994881916e-05,0.0,0.0002439752767686068,0.0,0.0,0.0,0.0,0.0004044785386539044,6.412890746844152e-05,0.0004564431057168395,4.285553192961994e-05,6.0732318096696906e-05 +94122,50.0,the Greater Atlanta and Macon Area,G1301210009403,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5693.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013670652218370125,0.0,0.0,0.001367065221837012,0.0007208748547118034,0.0002128880078049773,0.0003851668424039547,0.0,4.813551691627692e-05,0.0007208748547118034,0.0002128880078049773,0.0003851668424039547,0.0,4.813551691627692e-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.00016290979929855837,5.15479568239504e-05,0.00016290979929855837,8.59048829745438e-05,2.536934015333591e-05,4.589938504043719e-05,0.0,5.736191130241452e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.590488297454383e-05,2.5369340153335915e-05,4.5899385040437206e-05,0.0,5.7361911302414536e-06 +94123,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,19937.0,,3298.0,,8.72605822017302,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.004787168135104853,0.0026161074494480325,0.0,0.007403275584552886,0.0046183629976029265,0.001144748607625754,0.0014625918920059128,0.0,0.000177572087318293,0.0021798276354731863,0.001144748607625754,0.0014625918920059128,0.0,0.0,0.0024385353621297397,0.0,0.000177572087318293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017479308245304067,0.0,0.0,0.0005704788653671372,0.00030778183502691824,0.000745271947820178,0.0002597664341600226,0.00013641778779818157,0.0001742946434089331,0.0,0.0,0.00016292874847603463,0.0,1.186433397700605e-05,0.0,0.0,0.0,0.0004649207432107286,0.00011523939840221516,0.00014723600327611974,0.0,1.7875802931114508e-05 +94124,50.0,the Greater Atlanta and Macon Area,G1300890023603,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,191701.0,,17292.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.04324463516721073,0.015294876893200388,0.0,0.058539512060411095,0.050206668882574294,0.004283583608566724,0.0009947475056642323,0.0006390655617180987,0.002415354284634984,0.034911791989373914,0.004283583608566724,0.0009947475056642323,0.0006390655617180987,0.002415354284634984,0.015294876893200388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010219122756442297,0.0,0.0,0.005153379792010442,0.002069004267096478,0.006175292067654672,0.004160370937233091,0.0005104663993676779,0.00011854214225698354,7.61562107945579e-05,0.000287833113005925,0.0010219122756442297,0.0,0.0,0.0,0.0,0.0,0.005296266285478643,0.0004518722303633069,0.00010493521665688559,6.741457786522825e-05,0.0002547940293572956 +94125,85.0,Rural Climate Zone 3A,G1300310110500,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,2862.0,,100.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006076488707626917,7.898525542103858e-05,0.0,0.0006866341261837301,0.00032859520396626835,0.00012538392378879005,0.0002047827145785252,0.0,2.7872283850146604e-05,0.00024960994854522975,0.00012538392378879005,0.0002047827145785252,0.0,2.7872283850146604e-05,7.898525542103858e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.278234299522089e-06,0.0,0.0,7.241564355876402e-05,3.1430001865441404e-05,7.769387785828611e-05,2.9746891555784643e-05,1.4942441218876581e-05,2.4404673125289197e-05,0.0,3.3216376588135943e-06,5.278234299522089e-06,0.0,0.0,0.0,0.0,0.0,3.718113427258139e-05,1.4187414940154392e-05,2.3171529941835276e-05,0.0,3.1537987037150595e-06 +94126,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13189.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031670192676255603,0.0,0.0,0.00316701926762556,0.0016213894735853827,0.0005101372308240483,0.0009673419344549396,0.0,6.798521461371071e-05,0.0016213894735853827,0.0005101372308240483,0.0009673419344549396,0.0,6.798521461371071e-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.00037740338928595466,0.00010737477521859321,0.00037740338928595466,0.00019321571199106482,6.0791395203065085e-05,0.00011527499323849694,0.0,8.101576987178907e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019321571199106485,6.07913952030651e-05,0.00011527499323849695,0.0,8.101576987178909e-06 +94127,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,78059.0,,9213.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0067251668760471,0.002711794991677613,0.0,0.00943699255733101,0.005115159440063314,0.0023345890406725484,0.001987244076595148,0.0,0.0,0.0024033644483857004,0.0023345890406725484,0.001987244076595148,0.0,0.0,0.002711794991677613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018118665573055014,0.0,0.0,0.0008014269688050315,0.0004162617404392437,0.0009826136245355815,0.00028640495028662525,0.00027820909915790516,0.00023681657658992036,0.0,0.0,0.00018118665573055014,0.0,0.0,0.0,0.0,0.0,0.0005326088080437712,0.0002430858120444563,0.00020691900444735415,0.0,0.0 +94128,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,194381.0,,15886.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008989665577556594,0.002701539708850605,0.0,0.011691205286407198,0.006499454046471596,0.0023729606510141865,0.001434510351412212,0.0,0.0013843156982320424,0.0051400317756733075,0.0023729606510141865,0.0012241573435247057,0.0,0.0002525512680672321,0.0013594222707982884,0.00021035300788750647,0.0011317644301648104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018050060791408877,0.0,0.0,0.0010712819900997549,0.0004061231953072168,0.0012517825980138436,0.0006125281771956564,0.00028278137676149653,0.00014588058964511798,0.0,3.0096072286909034e-05,9.082840629258778e-05,1.4054520714931937e-05,7.561768090656906e-05,0.0,0.0,0.0,0.0006958994622584402,0.0002540739620888136,0.00015359366725484658,0.0,0.00014821930320725525 +94129,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6245.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011467335773954976,0.0,0.0,0.0011467335773954976,0.00040303157033164507,0.00029973043523125013,0.0003868209838787408,0.0,5.698517380638282e-05,0.00040303157033164507,0.00029973043523125013,0.0003868209838787408,0.0,5.698517380638282e-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.00013665010760303733,4.663857788593781e-05,0.00013665010760303733,4.8027116794057044e-05,3.5717272986181556e-05,4.6095387901868414e-05,0.0,6.790618401622265e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.8027116794057044e-05,3.5717272986181556e-05,4.6095387901868414e-05,0.0,6.790618401622265e-06 +94130,50.0,the Greater Atlanta and Macon Area,G1300670030324,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,6237.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,9713.774621698478,0.0,0.0,0.0005628780691061668,0.0,0.0,0.0005628780691061668,0.0002955715982531755,0.0001587880229843142,0.00010854913747497474,0.0,0.0,0.0002955715982531755,0.0001587880229843142,0.00010854913747497474,0.0,0.0,0.0,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.707878364921502e-05,2.830578530591741e-05,6.707878364921502e-05,3.5223584609649954e-05,1.892293913096551e-05,1.2935917221922113e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5223584609649954e-05,1.892293913096551e-05,1.2935917221922113e-05,0.0,0.0 +94131,50.0,the Greater Atlanta and Macon Area,G1300630040616,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,10300.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0009082617439870929,0.0,0.0,0.0009082617439870929,0.0006309507811204186,0.00021222033927157202,6.509062359510217e-05,0.0,0.0,0.0006309507811204186,0.00021222033927157202,6.509062359510217e-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.00010823594149035053,3.368457660705139e-05,0.00010823594149035053,7.518928577664619e-05,2.5289921519348532e-05,7.75673419435579e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.518928577664619e-05,2.5289921519348532e-05,7.75673419435579e-06,0.0,0.0 +94132,35.0,Eastern Counties in South Carolina and Georgia,G1302450001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,159806.0,,12215.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.008126569313989843,0.002077271413611966,0.0,0.010203840727601807,0.005461394576411764,0.0015661582849561043,0.0023376417710654416,0.0,0.0008386460951684977,0.004877374201596645,0.0015661582849561043,0.0008443907322685948,0.0,0.0008386460951684977,0.0005840203748151192,0.0014932510387968467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013879121188457933,0.0,0.0,0.0009684266141233735,0.0004249068137096175,0.0011072178260079528,0.0005812266900540258,0.00018663587382074045,0.00010062431344064375,0.0,9.99397368079634e-05,3.902084968518133e-05,9.9770362199398e-05,0.0,0.0,0.0,0.0,0.0005926154270037752,0.00016994369255124577,0.00025365729521267995,0.0,9.100141124025185e-05 +94133,35.0,Eastern Counties in South Carolina and Georgia,G1302450010101,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,168517.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013779378241728805,0.0,0.0,0.013779378241728805,0.008998634437425544,0.003684439106197047,0.0010962743245067766,0.0,0.0,0.008998634437425544,0.003684439106197047,0.0010962743245067766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016420612741882795,0.00041477681360598695,0.0016420612741882795,0.00107234948276009,0.0004390673270778861,0.00013064084478848302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00107234948276009,0.0004390673270778861,0.00013064084478848302,0.0,0.0 +94134,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4791.0,,119.0,,8.72605822017302,Office,Residential Style Central Systems,2013 to 2018,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.00082996548497395,9.445147821028907e-05,0.0,0.0009244996702579784,0.0003077530213839629,0.0004087383584196573,0.0001796397641617757,0.0,2.820311214510383e-05,0.00024150465531877767,0.0004087383584196573,0.0001796397641617757,0.0,0.0,6.624836606518524e-05,0.0,2.820311214510383e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.312325313608259e-06,0.0,0.0,9.890960341036562e-05,3.465186152274783e-05,0.00010522192872397387,2.8780871146812915e-05,4.871063876970871e-05,2.140823703112248e-05,0.0,0.0,4.4274716078810985e-06,0.0,1.8848537057271596e-06,0.0,0.0,0.0,3.5026909713893964e-05,4.6520555712460086e-05,2.0445699515876828e-05,0.0,3.2099371707707177e-06 +94135,50.0,the Greater Atlanta and Macon Area,G1301170130205,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,28857.0,,1335.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002880158171826811,0.00039285765021689317,0.0,0.0032730158220437046,0.0011476071378962978,0.0008223280007469462,0.0013030806834004602,0.0,0.0,0.0007547494876794045,0.0008223280007469462,0.0013030806834004602,0.0,0.0,0.00039285765021689317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6248951434677537e-05,0.0,0.0,0.00034322325868096123,0.00013058737983327927,0.0003694722101156388,8.994213622816554e-05,9.799534583961679e-05,0.00015528577661317892,0.0,0.0,2.6248951434677534e-05,0.0,0.0,0.0,0.0,0.0,0.0001295468670598336,9.282794841066059e-05,0.00014709739464514453,0.0,0.0 +94136,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,143098.0,,164.0,,9.325022323477118,Office,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,699376.6742607838,0.0,0.0,0.03671884492729876,0.0001393818172526637,0.0,0.036858226744551414,0.02383853318979213,0.006652056887690064,0.005657823493729877,0.0,0.000709813173339342,0.023699151372539466,0.006652056887690064,0.005657823493729877,0.0,0.000709813173339342,0.0001393818172526637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.314630526302483e-06,0.0,0.0,0.004375713206387782,0.001409447653913031,0.004385027836914085,0.0028241816932511243,0.0007927126583295148,0.000674231801951896,0.0,8.458705285524538e-05,9.314630526302483e-06,0.0,0.0,0.0,0.0,0.0,0.0028360732694198694,0.0007913960383232214,0.0006731119673308623,0.0,8.444656184013115e-05 +94137,50.0,the Greater Atlanta and Macon Area,G1300670030219,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,15508.0,,4092.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0036405950360943254,0.003173543153090508,0.0,0.006814057328401763,0.0028414479170280654,0.000855264502515818,0.002127285480966828,0.0004115813858188062,0.0005786397636383844,0.0017427924574759787,0.000855264502515818,0.0006310375510667905,0.0004115813858188062,0.0,0.0010986554595520865,0.0014962479299000374,0.0005786397636383844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021203638715777432,0.0,0.0,0.0004338396073581309,0.0003343200625934267,0.0006458759945159054,0.00020768374069675045,0.00010191949730197787,7.519899375481094e-05,4.904701155971139e-05,0.0,7.340531486005759e-05,9.996996733425373e-05,3.866110496346301e-05,0.0,0.0,0.0,0.00026932896376234347,8.106694506870537e-05,0.00020163649341661157,3.9012078131768015e-05,5.484684304733436e-05 +94138,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,65065.0,,8894.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012546548289528968,0.006118287287399746,0.0,0.018664835576928714,0.003954926081684856,0.0007019233563297855,0.010698396356427683,0.00037057709023766237,0.002939012692248725,0.003954926081684856,0.0007019233563297855,0.004580109069027938,0.00037057709023766237,0.002939012692248725,0.0,0.006118287287399746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004087889689593877,0.0,0.0,0.001495148094458648,0.0007739140086713523,0.0019039370634180357,0.00047130095531461243,8.364686003307909e-05,0.0005458028127692308,4.416096104944514e-05,0.0003502365052922802,0.0,0.0004087889689593877,0.0,0.0,0.0,0.0,0.00040342869986522047,7.160083935842363e-05,0.0010913074084251244,3.78013218519439e-05,0.0002997987939173231 +94139,46.0,the Tallahassee-Valdosta Area,G1301850010800,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Propane,82058.0,,,2369.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0065272865191728655,0.0,0.00022324595586747592,0.006750532475040343,0.003784914973137131,0.002555179052700872,0.00041043844920234037,0.0,0.0,0.0035616690172696544,0.002555179052700872,0.00041043844920234037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022324595586747592,0.0,0.0,0.0,0.0,1.8004383679518467e-05,0.000777844486586364,0.00016284312159934135,0.0007958488702658824,0.00042443741361605504,0.00030449589313205156,4.8911179838257506e-05,0.0,0.0,0.0,0.0,0.0,1.8004383679518467e-05,0.0,0.0,0.00044621965993958223,0.0003012408828396731,4.838832748662708e-05,0.0,0.0 +94140,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,111205.0,,5346.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005450011684380091,0.0009091597425360475,0.0,0.006359171426916138,0.003547774398706886,0.0011189985699423725,0.0010402225741530779,0.0,0.000652140423390962,0.0031603482713173123,0.0011189985699423725,0.0010402225741530779,0.0,0.0001304245386059084,0.0003874261273895738,0.0,0.0005217158847850536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.07441910841006e-05,0.0,0.0,0.0006494677266379761,0.0002503746120624484,0.0007102119177220766,0.0003766128085632128,0.00013334897233606264,0.00012396138385702336,0.0,1.5542448987578854e-05,2.5885315431454303e-05,0.0,3.485769102423425e-05,0.0,0.0,0.0,0.0003962264091019814,0.0001249732185113358,0.00011617527184753391,0.0,7.283305789810878e-05 +94141,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,25375.0,,2641.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023240318161061387,0.0007773984171271091,0.0,0.003101430233233248,0.001069317952230858,0.0009174044010572292,0.0011147078799451605,0.0,0.0,0.0002919195351037489,0.0009174044010572292,0.0011147078799451605,0.0,0.0,0.0007773984171271091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.194175073597214e-05,0.0,0.0,0.00027694910227902414,0.00015165441890460603,0.00032889085301499634,3.478732632849681e-05,0.00010932480508176567,0.0001328369708687617,0.0,0.0,5.194175073597214e-05,0.0,0.0,0.0,0.0,0.0,0.00011339571326962255,9.728605621699703e-05,0.00011820908352837675,0.0,0.0 +94142,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,15625.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035312612203734694,0.0,0.0,0.0035312612203734694,0.002108120602541207,0.000778852513403058,0.0005355283024620157,0.0,0.00010884250904092856,0.002108120602541207,0.000778852513403058,0.0005355283024620157,0.0,0.00010884250904092856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004208182140837046,0.00013146608392015788,0.0004208182140837046,0.0002512234274587677,9.281537197925442e-05,6.381857635825342e-05,0.0,1.2970694438217989e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002512234274587677,9.281537197925442e-05,6.381857635825342e-05,0.0,1.2970694438217989e-05 +94143,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,52800.0,,1877.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.004803836761667028,0.0005642724278044796,0.0,0.0053681091894715064,0.0016410155327102956,0.0009870536853580861,0.0019580309653255412,0.0,0.0007819776680553805,0.0016410155327102956,0.0009870536853580861,0.0013937585375210617,0.0,0.0007819776680553805,0.0,0.0005642724278044796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.770078394387434e-05,0.0,0.0,0.0005724640128500395,0.0002568791554001846,0.0006101647967939138,0.00019555667347001662,0.00011762529445784615,0.00016609153160658814,0.0,9.318677882359065e-05,0.0,3.770078394387434e-05,0.0,0.0,0.0,0.0,0.00018652562265604946,0.00011219321181700735,0.00022255910301103074,0.0,8.888329728132153e-05 +94144,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970800,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,51289.0,,289.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.0025429770866710736,4.9113101133546255e-05,0.0,0.00259210791816604,0.0016899339380294926,0.0005962011331106955,0.0002568597458923049,0.0,4.9113101133546255e-05,0.0016899339380294926,0.0005962011331106955,0.0002568597458923049,0.0,0.0,0.0,0.0,4.9113101133546255e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.281969066264576e-06,0.0,0.0,0.00030304185247356417,0.00010146015601787252,0.00030632382153982873,0.0002013862861064167,7.104818080025147e-05,3.060949846110875e-05,0.0,0.0,0.0,0.0,3.281969066264576e-06,0.0,0.0,0.0,0.0001997089003969034,7.045640662602451e-05,3.0354545970118868e-05,0.0,5.803968546781891e-06 +94145,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,24369.0,,1690.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001322259433261858,0.0002874091586190559,0.0,0.0016096685918809137,0.0006331866670329257,0.0003754404030696181,0.00038476657317656587,0.0,0.00021627494860180412,0.00044090089743245304,0.0003754404030696181,0.00028964318415798256,0.0,0.00021627494860180412,0.00019228576960047262,9.512338901858327e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.920294357591009e-05,0.0,0.0,0.00015757085964490975,5.7703684692527e-05,0.00017677380322081985,5.2541227295510224e-05,4.474043865293075e-05,3.4516165564782844e-05,0.0,2.577302813168592e-05,1.284737341645558e-05,6.3555701594545116e-06,0.0,0.0,0.0,0.0,6.953655916795453e-05,4.1230864706021416e-05,4.225506469824655e-05,0.0,2.375131464859737e-05 +94146,50.0,the Greater Atlanta and Macon Area,G1300970080508,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,365661.0,,5091.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02425515215299365,0.0008657912785025982,0.0,0.025120943431496255,0.012391129033825202,0.006380962041101383,0.003969189628938701,0.0,0.002379662727630967,0.012391129033825202,0.006380962041101383,0.0031033983504361027,0.0,0.002379662727630967,0.0,0.0008657912785025982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7846777607809844e-05,0.0,0.0,0.002890439901524051,0.0008458617307541596,0.002948286679131861,0.0014766270505493827,0.000760406992187571,0.0003698260215332148,0.0,0.0002835798372538829,0.0,5.7846777607809844e-05,0.0,0.0,0.0,0.0,0.0014542686571248306,0.0007488932665736561,0.00046583875091554605,0.0,0.00027928600451782823 +94147,50.0,the Greater Atlanta and Macon Area,G1301350050433,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,32874.0,,3002.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0026948064893162174,0.0008746381694095014,0.0,0.00356941428512628,0.0026707809721609552,0.0006670346172524678,0.00023162906931229537,0.0,0.0,0.001796142802751454,0.0006670346172524678,0.00023162906931229537,0.0,0.0,0.0008746381694095014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.843789325941321e-05,0.0,0.0,0.0003211332884151899,0.00012534237856725837,0.00037957118167460303,0.00021404180485597992,7.94888319344242e-05,2.7602651624785707e-05,0.0,0.0,5.843789325941321e-05,0.0,0.0,0.0,0.0,0.0,0.0002840105991118691,7.093239889340231e-05,2.463141359505878e-05,0.0,0.0 +94148,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,62695.0,,5411.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005569242854844124,0.0015926678084255837,0.0,0.007161910663269708,0.002509734623813538,0.002476589849012019,0.0021755861904441502,0.0,0.0,0.0009170668153879547,0.002476589849012019,0.0021755861904441502,0.0,0.0,0.0015926678084255837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010641289117037154,0.0,0.0,0.0006636746400222021,0.00028557131587001746,0.0007700875311925737,0.00010928487129081085,0.00029512986223900186,0.0002592599064923894,0.0,0.0,0.00010641289117037154,0.0,0.0,0.0,0.0,0.0,0.0002698602972406704,0.000266296391043161,0.00023393084290874227,0.0,0.0 +94149,50.0,the Greater Atlanta and Macon Area,G1302190030600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,32061.0,,3266.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0027792200567136665,0.0009614746757007303,0.0,0.003740694732414396,0.0016416177304704196,0.0008901827202711668,0.0012088942816728106,0.0,0.0,0.000680143054769689,0.0008901827202711668,0.0012088942816728106,0.0,0.0,0.0009614746757007303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.424048664949773e-05,0.0,0.0,0.0003311948628446605,0.00015868426145412625,0.0003954353494941582,8.105147528532078e-05,0.00010608154011939423,0.0001440618474399455,0.0,0.0,6.424048664949773e-05,0.0,0.0,0.0,0.0,0.0,0.00017353826693187205,9.410276440197191e-05,0.00012779431816031431,0.0,0.0 +94150,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,141673.0,,11524.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.03309852414809498,0.010193234035282831,0.0,0.04329175818337781,0.02960358248524445,0.00930130876646069,0.0010769130778851307,0.0006557568844700432,0.0026541969693175053,0.021201115281563886,0.00930130876646069,0.0010769130778851307,0.0006557568844700432,0.0008634301377152319,0.008402467203680557,0.0,0.0017907668316022736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006810549816389644,0.0,0.0,0.003944282782735308,0.0016436117382403659,0.004625337764374272,0.002526493133219413,0.001108417760873711,0.00012833350794129857,7.814519395192447e-05,0.00010289318674896202,0.0005614059411680995,0.0,0.00011964904047086489,0.0,0.0,0.0,0.0031628784271077234,0.0009937617805537546,0.00011505854548552736,7.006176716454744e-05,0.0002835772440627203 +94151,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150002100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,199621.0,,15060.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.00975476613355471,0.0025610443249581066,0.0,0.012315828188874237,0.00597351833566857,0.003419903032145465,0.0013619045213970958,0.0,0.001560502299663107,0.0048958669685577605,0.003419903032145465,0.0011615337069890792,0.0,0.00027746242586240634,0.0010776513671108092,0.00020037081440801673,0.0012830398738007008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017111448950639686,0.0,0.0,0.0011624572273210264,0.0004773536214567363,0.0013335717168274231,0.0005834313056491825,0.00040754344512469504,0.00013841779843617874,0.0,3.3064678110970086e-05,7.200256620004154e-05,1.3387643972140008e-05,8.572546397663387e-05,0.0,0.0,0.0,0.0006468192784301736,0.0003703109436100716,0.0001474685520861078,0.0,0.0001689729427010702 +94152,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,24905.0,,6362.0,,8.53126424238864,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005756802589780764,0.004934044122058494,0.0,0.01069084671183926,0.003471595999481102,0.0005421715504744785,0.005720819541315269,0.00042840042869706,0.0005278591918713491,0.003471595999481102,0.0005421715504744785,0.000786775419256775,0.00042840042869706,0.0005278591918713491,0.0,0.004934044122058494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003296615298827873,0.0,0.0,0.0006860277648635255,0.0005167506453014807,0.0010156892947463128,0.00041370382376163363,6.460960422802397e-05,9.375860538980958e-05,5.1051705175252944e-05,6.290402630880543e-05,0.0,0.0003296615298827873,0.0,0.0,0.0,0.0,0.0003298207323889742,5.150928215284448e-05,0.0005435093516825643,4.070039923128562e-05,5.014952929064411e-05 +94153,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,15253.0,,84.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003490900168388688,6.666190143388178e-05,0.0,0.003557644776896309,0.0023003318419113575,0.0005722502432022681,0.0006183180832750624,0.0,6.666190143388178e-05,0.0023003318419113575,0.0005722502432022681,0.0006183180832750624,0.0,0.0,0.0,0.0,6.666190143388178e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.456419288049427e-06,0.0,0.0,0.00041600743921763023,0.0001392362077105466,0.0004204638585056796,0.0002741284805477623,6.819454776219635e-05,7.368441090767163e-05,0.0,0.0,0.0,0.0,4.456419288049427e-06,0.0,0.0,0.0,0.0002718670532748685,6.763197575266296e-05,7.3076550184551e-05,0.0,7.87850447415036e-06 +94154,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,32063.0,,2247.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028273265036631284,0.0006546421886818649,0.0,0.003481968692344994,0.0022602817757597397,0.0009567380086897447,0.00026494890789550914,0.0,0.0,0.0016056395870778747,0.0009567380086897447,0.00026494890789550914,0.0,0.0,0.0006546421886818649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.373971588170626e-05,0.0,0.0,0.00033692769783429945,0.00012774490364029703,0.00038066741371600563,0.00019134134275785114,0.0001140128436813944,3.157351139505392e-05,0.0,0.0,4.373971588170626e-05,0.0,0.0,0.0,0.0,0.0,0.00024710607528995854,0.00010459570879324884,2.896562963279817e-05,0.0,0.0 +94155,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,30778.0,,4097.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,22700.572550927158,0.0,0.0,0.006564170347203802,0.0028182362610584357,0.0,0.009382406608262237,0.003781937511595202,0.00050117915745709,0.003455898523358234,0.0003617555338027422,0.001281564162077954,0.00319010431077438,0.00050117915745709,0.0012294954631206201,0.0003617555338027422,0.001281564162077954,0.0005918332008208224,0.0022264030602376136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018829834420146647,0.0,0.0,0.0007822404637495619,0.00043440690844406983,0.0009705388079510284,0.0003801590366302159,5.972462562886575e-05,0.0001465167797875852,4.310976125815668e-05,0.00015272171370380683,3.9542891878114305e-05,0.00014875545232335218,0.0,0.0,0.0,0.0,0.0003912127535611805,5.184318292280835e-05,0.00035748649289044684,3.742086643712726e-05,0.00013256809325238442 +94156,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,22838.0,,516.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.0054837271101373,0.0004090691867146145,0.0,0.005892879003925655,0.002407685623624978,0.0009741239145015628,0.0022535196381749095,0.0,0.00025754982762420326,0.002256166264534567,0.0009741239145015628,0.0022535196381749095,0.0,0.0,0.0001515193590904112,0.0,0.00025754982762420326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7333364836197315e-05,0.0,0.0,0.000653487226110377,0.00021196030927478075,0.0006808205909465742,0.00026886382276918047,0.00011608483098997058,0.00026854842842449723,0.0,0.0,1.0124287177499695e-05,0.0,1.720907765869762e-05,0.0,0.0,0.0,0.0002781665715515188,0.00011254322694973683,0.000260355349354685,0.0,2.975544309063342e-05 +94157,81.0,the Columbus-Albany Area,G1302150000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,37067.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0031755456324422003,0.0,0.0,0.0031755456324422003,0.0010471293668776192,0.0008926071991686856,0.0012358090663958955,0.0,0.0,0.0010471293668776192,0.0008926071991686856,0.0012358090663958955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037842420236973125,0.00011819169991558947,0.00037842420236973125,0.00012478456974143235,0.00010637043408351584,0.00014726919854478305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012478456974143235,0.00010637043408351584,0.00014726919854478305,0.0,0.0 +94158,50.0,the Greater Atlanta and Macon Area,G1300670030230,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,121480.0,,10223.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010823763797105307,0.0030091465870960552,0.0,0.013832910384201362,0.005944822256715411,0.0030525110007947097,0.004835546437084943,0.0,0.0,0.0029356756696193548,0.0030525110007947097,0.004835546437084943,0.0,0.0,0.0030091465870960552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002010542655916826,0.0,0.0,0.001289846176782097,0.0005540395537301693,0.0014909004423737796,0.00034983856906997755,0.0003637616006562641,0.0005762423498371565,0.0,0.0,0.0002010542655916826,0.0,0.0,0.0,0.0,0.0,0.0006407283706900272,0.00032899728799178594,0.000521171475989803,0.0,0.0 +94159,50.0,the Greater Atlanta and Macon Area,G1301350050542,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,237574.0,,11310.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.01166852815415095,0.0019234427979315878,0.0,0.013591988682443957,0.008513215305476935,0.0023565600667006382,0.0012906816595727435,0.0,0.0014315316506936433,0.006809079347949979,0.0023565600667006382,0.0010713570888066905,0.0,0.0014315316506936433,0.0017041359575269551,0.00021932457076605317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012851357542054012,0.0,0.0,0.0013905167138417128,0.0005790356954094355,0.001519030289262253,0.0008114252726750882,0.00028082686321954676,0.00012767162394415144,0.0,0.00017059295400292666,0.00011386073198537831,1.4654028077690345e-05,0.0,0.0,0.0,0.0,0.0009514304499630597,0.00026336735583129447,0.0001442455979395165,0.0,0.00015998688552838278 +94161,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,306792.0,,6654.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.015792202422142573,0.0011316048569120299,0.0,0.016923807279054598,0.007057038452409416,0.0032359682627738375,0.003183982843090242,0.0,0.0034467999904196846,0.007057038452409416,0.0032359682627738375,0.0020523779861782126,0.0,0.0034467999904196846,0.0,0.0011316048569120299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.560692701218473e-05,0.0,0.0,0.0018819266085051186,0.0005905297908935851,0.0019575335355173033,0.000840973797436369,0.00038562415901239065,0.00024457796573601053,0.0,0.0004107485734270327,0.0,7.560692701218473e-05,0.0,0.0,0.0,0.0,0.0008162696020016523,0.0003742961787380574,0.0003682831581032428,0.0,0.0003986825458487594 +94162,81.0,the Columbus-Albany Area,G1302150010205,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13934.0,,293.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029995374433034626,0.00023240687720745384,0.0,0.003231944320510916,0.0018281571579336514,0.00060905489101626,0.0007142582888126589,0.0,8.039127567460682e-05,0.0015957502807261974,0.00060905489101626,0.0007142582888126589,0.0,8.039127567460682e-05,0.00023240687720745384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5529715595984178e-05,0.0,0.0,0.0003574444434294612,9.667685733321357e-05,0.0003729741590254453,0.00019016001024424472,7.257895280598208e-05,8.511567577844393e-05,0.0,9.57994868650388e-06,1.5529715595984178e-05,0.0,0.0,0.0,0.0,0.0,0.0002109737393120875,7.028640138862706e-05,8.242712688649961e-05,0.0,9.277346842713948e-06 +94163,50.0,the Greater Atlanta and Macon Area,G1301210011621,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,20468.0,,1313.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004914702442810865,0.0010416128866728375,0.0,0.005956315329483703,0.0028825069339623423,0.0007275741276846873,0.0022241586269974556,0.0,0.00012215834791295708,0.0018408940472895046,0.0007275741276846873,0.0022241586269974556,0.0,0.00012215834791295708,0.0010416128866728375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.959267647911581e-05,0.0,0.0,0.0005856748023513294,0.0002338537795850459,0.0006552674788304452,0.0002193754901424682,8.670348579312124e-05,0.0002650483278331951,0.0,1.4557354611394805e-05,6.959267647911581e-05,0.0,0.0,0.0,0.0,0.0,0.0003171109900745473,8.00420457846262e-05,0.00024468463058317254,0.0,1.3438911176979987e-05 +94164,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960202,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,10204.0,,96.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0022899107506202045,7.625592198764145e-05,0.0,0.0023662493796815856,0.0009133342153031719,0.0004031969844791237,0.0009732968437641697,0.0,7.625592198764145e-05,0.0009133342153031719,0.0004031969844791237,0.0009732968437641697,0.0,0.0,0.0,0.0,7.625592198764145e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.097331394751977e-06,0.0,0.0,0.0002728889882479937,8.64598239902667e-05,0.0002779863196427457,0.0001088421677040703,4.8049041705817504e-05,0.00011598792262442263,0.0,0.0,0.0,0.0,5.097331394751977e-06,0.0,0.0,0.0,0.0001072982498362405,4.736746970494181e-05,0.000114342642766719,0.0,8.958524526760276e-06 +94165,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,3605.0,,495.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00019862313195873242,0.00014556080267000428,0.0,0.0003442146242350344,0.00018699177117190307,7.340953826410507e-05,8.378262519272859e-05,0.0,0.0,4.143096850189876e-05,7.340953826410507e-05,8.378262519272859e-05,0.0,0.0,0.00014556080267000428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.726304225357484e-06,0.0,0.0,2.3671034624676296e-05,1.7008272375053092e-05,3.339733885003378e-05,4.937561301500772e-06,8.748627135696184e-06,9.98484618747934e-06,0.0,0.0,9.726304225357484e-06,0.0,0.0,0.0,0.0,0.0,1.814283038634592e-05,7.122542308245437e-06,8.128988503975767e-06,0.0,0.0 +94166,50.0,the Greater Atlanta and Macon Area,G1300770170503,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,47525.0,,7646.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002446364347293206,0.001300202863655312,0.0,0.0037465494805870975,0.0013080042226801354,0.0006438426142463773,0.00122899773219238,0.0,0.0005657049114682048,0.0010857718726411936,0.0006438426142463773,0.0006140024159764285,0.0,0.00010272971406778595,0.00022223235003894184,0.0006149953162159514,0.0004629751974004188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.687157025529064e-05,0.0,0.0,0.00029152771717688535,0.0001613128178330223,0.000378399287432176,0.00012938898318894665,7.672527101701915e-05,7.316928194639313e-05,0.0,1.224206813737805e-05,1.4848200807012122e-05,4.109021008393349e-05,3.093315936434502e-05,0.0,0.0,0.0,0.00013210765489286434,6.502772423310448e-05,0.0001241280459599006,0.0,5.713586234630661e-05 +94167,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,18413.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,56663.68529324113,0.0,0.0,0.0015965040092127964,0.0,0.0,0.0015965040092127969,0.0007335122801213944,0.00033003602612549567,0.0005329863925722043,0.0,0.0,0.0007335122801213944,0.00033003602612549567,0.0005329863925722043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019025323711379072,7.040790651916302e-05,0.00019025323711379072,8.741167259869501e-05,3.932994967266498e-05,6.351527208156713e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.741167259869498e-05,3.932994967266497e-05,6.351527208156712e-05,0.0,0.0 +94168,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000500,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,104049.0,,14026.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.0053559521170467115,0.0023853364432853837,0.0,0.007741288560332095,0.002672107308893318,0.0009597799243902983,0.002870297288846668,0.0,0.0012391040382018102,0.00216897284287648,0.0009597799243902983,0.0009880953115781227,0.0,0.0012391040382018102,0.0005031344660168383,0.0018822019772685454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001593744909386913,0.0,0.0,0.000638258230609146,0.0003143504286217917,0.0007976327215478372,0.00025847220786898563,0.00011437507709708844,0.00011774936583801898,0.0,0.0001476615798050529,3.361655737112732e-05,0.000125757933567564,0.0,0.0,0.0,0.0,0.0002753237020490308,9.889204713298653e-05,0.0002957444384499124,0.0,0.00012767253391590737 +94169,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,192787.0,,35302.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.05161427302890403,0.031224392919985754,0.0,0.08283866594888979,0.05636318489496418,0.013312574827588231,0.007822697335495612,0.0006516993253480234,0.004688509565493733,0.030974760816728772,0.013312574827588231,0.0019867284937452696,0.0006516993253480234,0.004688509565493733,0.02538842407823541,0.005835968841750342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002086230340316657,0.0,0.0,0.00615077565670729,0.0035077263260324494,0.008237005997023948,0.003691203878763835,0.0015864344564490832,0.00023675469087730794,7.766178056210244e-05,0.0005587208500549614,0.0016963052169042725,0.0003899251234123842,0.0,0.0,0.0,0.0,0.0056044346764062255,0.0013237267577236246,0.000777844550335183,6.480127594594699e-05,0.00046619873661296694 +94170,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,257329.0,,14098.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.01247004687250586,0.0023975172015809594,0.0,0.014867564074086822,0.008510892628130907,0.0032586631253915047,0.0015081800031125315,0.0,0.0015898283174518744,0.007939053011611364,0.0032586631253915047,0.000961375656918103,0.0,0.00031095507858488607,0.000571839616519543,0.0005468043461944284,0.0012788732388669885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001601879582829494,0.0,0.0,0.0014860315532734196,0.0005908958698800972,0.001646219511556369,0.0009460817107573635,0.00038832863062424533,0.00011456529196206447,0.0,3.705591992974599e-05,3.820695032976893e-05,3.6534241230623645e-05,8.544676672255684e-05,0.0,0.0,0.0,0.0009423734402873875,0.00036081733308004893,0.0001669940910085158,0.0,0.00017603464718041645 +94171,50.0,the Greater Atlanta and Macon Area,G1301430010400,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,24257.0,,2140.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0021612848339094205,0.0006297814108351587,0.0,0.0027910662447445797,0.0009421402237331775,0.0007207454039015499,0.0011281499275035544,0.0,0.0,0.00031235881289801897,0.0007207454039015499,0.0011281499275035544,0.0,0.0,0.0006297814108351587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2078219689649596e-05,0.0,0.0,0.00025755462435874657,0.0001147824999475465,0.0002996328440483962,3.722297748953941e-05,8.588933251540901e-05,0.00013443865715420206,0.0,0.0,4.2078219689649596e-05,0.0,0.0,0.0,0.0,0.0,0.00010114276408204644,7.737508760763742e-05,0.00012111169769881845,0.0,0.0 +94172,50.0,the Greater Atlanta and Macon Area,G1300670030223,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,14777.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.001303057789478991,0.0,0.0,0.001303057789478991,0.0006048294856039521,0.0005459958234930268,0.00015223248038201214,0.0,0.0,0.0006048294856039521,0.0005459958234930268,0.00015223248038201214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001552813589759806,5.175174498060192e-05,0.0001552813589759806,7.2075655609163e-05,6.506463040377211e-05,1.8141072963045495e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.2075655609163e-05,6.506463040377211e-05,1.8141072963045495e-05,0.0,0.0 +94173,50.0,the Greater Atlanta and Macon Area,G1300670031308,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,144637.0,,13856.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008170274654890274,0.002356347302363597,0.0,0.010526621957253868,0.004957249479793983,0.00315632347927496,0.0011600088959069547,0.0,0.0012530401022779714,0.003960147144614474,0.00315632347927496,0.0008186462474866781,0.0,0.0002351577835141603,0.0009971023351795093,0.0003413626484202766,0.0010178823187638115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015743689519449774,0.0,0.0,0.0009736367271002612,0.0003698947845615991,0.001131073622294759,0.0004719235114587055,0.000376133311527243,9.755658000784114e-05,0.0,2.8023324106471386e-05,6.662035587215081e-05,2.2807790451242415e-05,6.800874887110456e-05,0.0,0.0,0.0,0.0005326508492941186,0.00033914338762564033,0.00012464164374056285,0.0,0.00013463774163443724 +94174,50.0,the Greater Atlanta and Macon Area,G1300670030340,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,17449.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.004277527146723241,0.0,0.0,0.004277527146723241,0.0028896197423039227,0.0004806108054991154,0.0008336873032922188,0.0,7.360929562798359e-05,0.0028896197423039227,0.0004806108054991154,0.0008336873032922188,0.0,7.360929562798359e-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.0005097408647025667,0.0001491069238614752,0.0005097408647025667,0.00034434784761844337,5.7273036307481095e-05,9.934816829795378e-05,0.0,8.771812478688379e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00034434784761844337,5.7273036307481095e-05,9.934816829795378e-05,0.0,8.771812478688379e-06 +94175,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,15299.0,,116.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003673682801352557,9.180485185063123e-05,0.0,0.003765404946129449,0.0022493015774142045,0.0008307925557113432,0.00059350596115327,0.0,9.180485185063123e-05,0.0022493015774142045,0.0008307925557113432,0.00059350596115327,0.0,0.0,0.0,0.0,9.180485185063123e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.132711039914853e-06,0.0,0.0,0.0004377822695944072,0.00015252462031998116,0.00044391498063432207,0.00026804283407378765,9.900317209410196e-05,7.072640746115236e-05,0.0,0.0,0.0,0.0,6.132711039914854e-06,0.0,0.0,0.0,0.00026517696780659875,9.794464780178279e-05,6.997021330269718e-05,0.0,1.0823151723243294e-05 +94176,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,2901.0,,18.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0003587005788073763,1.4639152051857411e-05,0.0,0.000373422437932973,0.00018898566349431748,0.0001102485292944968,5.938367894482273e-05,0.0,1.4639152051857411e-05,0.00018898566349431748,0.0001102485292944968,5.938367894482273e-05,0.0,0.0,0.0,0.0,1.4639152051857411e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.805039404254209e-07,0.0,0.0,4.27477175209983e-05,1.6525490178677903e-05,4.372822146142371e-05,2.2522143079428434e-05,1.3138738172813174e-05,7.076979750997643e-06,0.0,0.0,0.0,0.0,9.805039404254209e-07,0.0,0.0,0.0,2.213045095002285e-05,1.2910236812420334e-05,6.953900998738034e-06,0.0,1.7142625024744174e-06 +94177,50.0,the Greater Atlanta and Macon Area,G1301210011623,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,26867.0,,15204.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0063073028009113016,0.011791766273317263,0.0,0.018099069074228567,0.0038156586314376873,0.0008946437038701912,0.012474797307897117,0.00041942488177645345,0.0004945445492471156,0.0038156586314376873,0.0008946437038701912,0.0006830310345798538,0.00041942488177645345,0.0004945445492471156,0.0,0.011791766273317263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000787859545611428,0.0,0.0,0.0007516275543802145,0.000987626820274932,0.0015394870999916425,0.00045470373882840903,0.00010661274405352036,8.139532257954503e-05,4.998195077780278e-05,5.89337981409373e-05,0.0,0.000787859545611428,0.0,0.0,0.0,0.0,0.00032455576676230005,7.609741890858034e-05,0.0010610926701121863,3.567582356099116e-05,4.20654206475847e-05 +94178,35.0,Eastern Counties in South Carolina and Georgia,G1302450010201,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9080.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006853195241139944,0.0,0.0,0.0006853195241139944,0.0004475246141158354,0.00020198443626104963,3.58104737371094e-05,0.0,0.0,0.0004475246141158354,0.00020198443626104963,3.58104737371094e-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,8.166902111431464e-05,1.81698654274155e-05,8.166902111431464e-05,5.333117746302849e-05,2.40703359664137e-05,4.2675076848724445e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.333117746302849e-05,2.40703359664137e-05,4.2675076848724445e-06,0.0,0.0 +94179,50.0,the Greater Atlanta and Macon Area,G1301170130205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5070.0,,372.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010046428247113672,0.0002948507178806309,0.0,0.0012994935425919983,0.000638415902193714,0.0002240534627597838,0.00039443003466275707,0.0,4.251143590200402e-05,0.000343565184313083,0.0002240534627597838,0.00039443003466275707,0.0,4.251143590200402e-05,0.0002948507178806309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9697739733149055e-05,0.0,0.0,0.0001197231542145293,5.4297320529005944e-05,0.00013942089394767832,4.0942618144986805e-05,2.6700421895707574e-05,4.700417571820945e-05,0.0,5.0660822644495e-06,1.9697739733149055e-05,0.0,0.0,0.0,0.0,0.0,6.849477344590942e-05,2.4038391147165255e-05,4.231786171311595e-05,0.0,4.5609941120867276e-06 +94180,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,22930.0,,5587.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0020051054274604113,0.0016444718638561062,0.0,0.003649577291316517,0.0020216778148611707,0.0006477348305193148,0.0009801646459360316,0.0,0.0,0.0003772059510050649,0.0006477348305193148,0.0009801646459360316,0.0,0.0,0.0016444718638561062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010987411470032245,0.0,0.0,0.00023894400852238223,0.0001804480385800245,0.0003488181232227047,4.4950804450120146e-05,7.718913666294327e-05,0.00011680406740931881,0.0,0.0,0.00010987411470032245,0.0,0.0,0.0,0.0,0.0,0.00019322727122911957,6.190899106735177e-05,9.368186092623335e-05,0.0,0.0 +94181,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,10876.0,,1618.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0009917039379039678,0.0004761492417088586,0.0,0.0014678224900065288,0.0006207586665836342,0.00035827046391938234,0.0004887933595035122,0.0,0.0,0.00014460942487477552,0.00035827046391938234,0.0004887933595035122,0.0,0.0,0.0004761492417088586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1812935447342213e-05,0.0,0.0,0.0001181784823629144,7.15365777394331e-05,0.00014999141781025661,1.7232685798540962e-05,4.26940522097129e-05,5.8248087163277134e-05,0.0,0.0,3.1812935447342213e-05,0.0,0.0,0.0,0.0,0.0,6.343306030041107e-05,3.6610349826815584e-05,4.994800768302996e-05,0.0,0.0 +94182,50.0,the Greater Atlanta and Macon Area,G1301350050610,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,87441.0,,6086.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007710672326867115,0.001773119614377638,0.0,0.009483791941244754,0.006260575942509968,0.0026771594280428834,0.00054608694429134,0.0,0.0,0.004487456328132329,0.0026771594280428834,0.00054608694429134,0.0,0.0,0.001773119614377638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011846853702080003,0.0,0.0,0.0009188670383284161,0.00033457045925632857,0.001037335575349216,0.0005347621492734877,0.0003190323036043541,6.507620501812643e-05,0.0,0.0,0.00011846853702080003,0.0,0.0,0.0,0.0,0.0,0.0006847807488371212,0.00029282725019650154,5.9730898574816496e-05,0.0,0.0 +94183,50.0,the Greater Atlanta and Macon Area,G1301210010512,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,18559.0,,5375.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0040220962106116386,0.004169020253447154,0.0,0.00819119732484186,0.003213892683841704,0.0007347010749606431,0.0029507716957367144,0.0004203143503902072,0.000871517519912592,0.001920281876311397,0.0007347010749606431,0.0009468797697324599,0.0004203143503902072,0.0,0.0012936108075303067,0.002003891926004254,0.000871517519912592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002785509899453363,0.0,0.0,0.000479309851798588,0.00041659135665545946,0.0007578608417439243,0.00022883839007082423,8.755371451000122e-05,0.00011283887265156442,5.008851067829478e-05,0.0,8.6431955024351e-05,0.00013388903046715003,5.823000445383517e-05,0.0,0.0,0.0,0.00029735377113478795,6.797555388040766e-05,0.0002730094554483641,3.888806175108508e-05,8.063399952927952e-05 +94184,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,7435.0,,1034.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005204819999653152,0.0003010934912264338,0.0,0.0008215754911917491,0.0005999697096939118,0.00019168778605165176,2.9917995446185542e-05,0.0,0.0,0.00029887621846747794,0.00019168778605165176,2.9917995446185542e-05,0.0,0.0,0.0003010934912264338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0118181540727976e-05,0.0,0.0,6.202490977597762e-05,3.443136462999893e-05,8.214309131670558e-05,3.561654482934289e-05,2.284309089613648e-05,3.5652740504982465e-06,0.0,0.0,2.0118181540727976e-05,0.0,0.0,0.0,0.0,0.0,5.9986412909123645e-05,1.9165405349540795e-05,2.9912730580411467e-06,0.0,0.0 +94185,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970600,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,81274.0,,6766.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003921477226357338,0.0011505763436314865,0.0,0.005072053569988825,0.0021154626121107603,0.0009929711609686373,0.0010145667411782615,0.0,0.0009490353253697462,0.001913655638427719,0.0009929711609686373,0.000860614012967943,0.0,0.0001542186836316193,0.000201806973683041,0.00015395272821031847,0.000794816641738127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.687508216207651e-05,0.0,0.0,0.00046731484157251136,0.00019345866354898448,0.0005441899237345879,0.00022804663392802344,0.00011833044895817724,0.00010255770412793666,0.0,1.837794166556363e-05,1.3483614336966312e-05,1.0286261051474123e-05,5.310520677363607e-05,0.0,0.0,0.0,0.0002269718609360948,0.00010653769580737266,0.0001088547251890843,0.0,0.0001018237394790627 +94186,81.0,the Columbus-Albany Area,G1300950000502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,76572.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.008448082574016856,0.0,0.0,0.008448082574016856,0.004736216107527517,0.0027949178730630477,0.0009169485934262897,0.0,0.0,0.004736216107527517,0.0027949178730630477,0.0009169485934262897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010067425296494353,0.00031126399218062785,0.0010067425296494353,0.0005644062002570504,0.00033306524469161724,0.00010927108470076758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005644062002570504,0.00033306524469161724,0.00010927108470076758,0.0,0.0 +94187,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970600,ComStock 90.1-2007,gen5_led,1001_5000,Propane,6544.0,,,519.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0004699099569014585,0.0,4.887112149534268e-05,0.0005187810783968012,0.00031974288128121345,0.00016161792260827745,3.7420274507310245e-05,0.0,0.0,0.0002708717597858707,0.00016161792260827745,3.7420274507310245e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.887112149534268e-05,0.0,0.0,0.0,0.0,3.9404746363469215e-06,5.5998647789904564e-05,1.812869358001162e-05,5.9939122426251486e-05,3.227948684573517e-05,1.9259828381493256e-05,4.4593325626761305e-06,0.0,0.0,0.0,0.0,0.0,3.9404746363469215e-06,0.0,0.0,3.694257270381437e-05,1.8673072039232092e-05,4.323477683205025e-06,0.0,0.0 +94188,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,6699.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012801400873370004,0.0,0.0,0.0012801400873370004,0.000543716302762207,0.0002975800513140281,0.00038930219609092004,0.0,4.9541537169845144e-05,0.000543716302762207,0.0002975800513140281,0.00038930219609092004,0.0,4.9541537169845144e-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.00015254802491165847,4.6160573573794734e-05,0.00015254802491165847,6.479200903018754e-05,3.546115736090885e-05,4.6391236158365185e-05,0.0,5.903622362196887e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.479200903018754e-05,3.546115736090885e-05,4.6391236158365185e-05,0.0,5.903622362196887e-06 +94189,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,29482.0,,2998.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0025874100173530236,0.0008824182498778481,0.0,0.003469797577624574,0.0012327707953724229,0.0008796868749173526,0.001357401286547394,0.0,0.0,0.000350352545494575,0.0008796868749173526,0.001357401286547394,0.0,0.0,0.0008824182498778481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.895737449736096e-05,0.0,0.0,0.0003083356499546534,0.00015186293340268447,0.00036729302445201434,4.17507001611017e-05,0.0001048302443428363,0.0001617583626599096,0.0,0.0,5.895737449736096e-05,0.0,0.0,0.0,0.0,0.0,0.0001304941005228413,9.311864615466466e-05,0.00014368677502863583,0.0,0.0 +94190,50.0,the Greater Atlanta and Macon Area,G1301350050320,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,164270.0,,20525.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.014945510183356539,0.006169359741182321,0.0,0.02111486992453886,0.0057038020833203125,0.0035528855913294056,0.008010374531598283,0.0,0.00384780771829086,0.0057038020833203125,0.0035528855913294056,0.005688822508706821,0.0,0.0,0.0,0.0023215520228914615,0.00384780771829086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041220077080704194,0.0,0.0,0.0017810261617416331,0.0010446333603433744,0.002193226932548675,0.0006797105356164182,0.00042339017605964646,0.0006779254500655684,0.0,0.0,0.0,0.0001551126167787899,0.000257088154028252,0.0,0.0,0.0,0.0005924607819879126,0.0003690424991968288,0.0008320472361558734,0.0,0.0003996764152080603 +94191,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,450146.0,,53628.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.023171383811192926,0.00911985962146404,0.0,0.03229124343265697,0.016328705428351947,0.006033376035822667,0.0032990706190678047,0.0,0.006630091349414544,0.013540854320108526,0.006033376035822667,0.0026381536667739167,0.0,0.000958999788487816,0.002787851108243422,0.0006609169522938882,0.005671091560926728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006093359518689344,0.0,0.0,0.002761288836155026,0.0012540173036965222,0.0033706247880239603,0.0016136373283004318,0.0007189857121953521,0.00031438365215828804,0.0,0.00011428214350095422,0.0001862679886774031,4.41586249073932e-05,0.00037890933828413803,0.0,0.0,0.0,0.0017044230392652883,0.0006297758977360111,0.0003443636114311294,0.0,0.0006920622395915307 +94192,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,32237.0,,1778.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00322370197632579,0.0005178394968142308,0.0,0.0037415414731400212,0.0022157540789839955,0.0011452061932009947,0.0003805812009550303,0.0,0.0,0.0016979145821697647,0.0011452061932009947,0.0003805812009550303,0.0,0.0,0.0005178394968142308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4598807250902764e-05,0.0,0.0,0.00038416303053856145,0.00014265219255168798,0.00041876183778946413,0.0002023375660256854,0.00013647225612122222,4.5353208391653784e-05,0.0,0.0,3.4598807250902764e-05,0.0,0.0,0.0,0.0,0.0,0.0002479922397936534,0.00012817408374475543,4.25955142510552e-05,0.0,0.0 +94193,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,99711.0,,3357.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008627216605559825,0.0009882973916049227,0.0,0.00961548330755845,0.0027634455990766475,0.002500865327593502,0.0043512030704945985,0.0,0.0,0.0017751482074717245,0.002500865327593502,0.0043512030704945985,0.0,0.0,0.0009882973916049227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.603123665497377e-05,0.0,0.0,0.0010280880312031903,0.0003500074503901977,0.0010941192678581642,0.0002115408374628438,0.0002980230853706593,0.0005185241083696874,0.0,0.0,6.603123665497377e-05,0.0,0.0,0.0,0.0,0.0,0.0003144448364078477,0.00028456655310166135,0.000495111370434128,0.0,0.0 +94194,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,105746.0,,4307.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.012263604884897798,0.0016008911281436002,0.0,0.013864496013041397,0.007314423710184751,0.0016451805765150909,0.004640472482520862,0.0,0.00026445799224446504,0.006587425783372934,0.0016451805765150909,0.004030998525009773,0.0,0.0,0.0007269979268118171,0.00060947395751109,0.00026445799224446504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010696333706020754,0.0,0.0,0.0014614289822615044,0.0005163956738538003,0.001568392319321712,0.0007850102028460884,0.00019605284075432613,0.00048036593866108984,0.0,0.0,4.8574273990647796e-05,4.072192493331729e-05,1.7669727107247163e-05,0.0,0.0,0.0,0.0008274289924803292,0.000186107636200871,0.0005249438127980619,0.0,2.991626117742109e-05 +94195,35.0,Eastern Counties in South Carolina and Georgia,G1300730030201,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,44656.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0036071990428268442,0.0,0.0,0.0036071990428268442,0.0023718743800940395,0.0009919106368386612,0.00024338365229470532,0.0,0.0,0.0023718743800940395,0.0009919106368386612,0.00024338365229470532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042986229892687987,0.00011394251101196664,0.00042986229892687987,0.0002826512653413161,0.00011820389771099195,2.90035163168135e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002826512653413161,0.00011820389771099195,2.90035163168135e-05,0.0,0.0 +94196,50.0,the Greater Atlanta and Macon Area,G1302170100700,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,48802.0,,3535.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004348164799471126,0.0010405004119173151,0.0,0.005388665211388441,0.0018600663480974678,0.001326128577730035,0.0022025009751672356,0.0,0.0,0.0008195659361801528,0.001326128577730035,0.0022025009751672356,0.0,0.0,0.0010405004119173151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.95206018336871e-05,0.0,0.0,0.0005181631501375632,0.00021554789948564386,0.0005876837519712503,9.766623088623553e-05,0.00015803240976690222,0.0002624681667108206,0.0,0.0,6.95206018336871e-05,0.0,0.0,0.0,0.0,0.0,0.0002028574289705643,0.0001446265796044656,0.0002402030903814696,0.0,0.0 +94197,50.0,the Greater Atlanta and Macon Area,G1301350050212,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,28304.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0024958594129989428,0.0,0.0,0.0024958594129989428,0.0012665487229548134,0.0009840438745842837,0.0002452971890592837,0.0,0.0,0.0012665487229548134,0.0009840438745842837,0.0002452971890592837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029742693238496995,8.122638265695148e-05,0.00029742693238496995,0.00015093225981503266,0.00011726668153882415,2.923161059656595e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015093225981503266,0.00011726668153882415,2.923161059656595e-05,0.0,0.0 +94198,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030700,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,16696.0,,1577.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014722691119467063,0.0004595525594931851,0.0,0.0019318216714398915,0.0011954441266710362,0.0006187102205470046,0.00011769769782128831,0.0,0.0,0.0007358915671778511,0.0006187102205470046,0.00011769769782128831,0.0,0.0,0.0004595525594931851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.070447071359008e-05,0.0,0.0,0.00017544806502411267,7.427522042430608e-05,0.0002061525357377028,8.769507590782723e-05,7.37307535183441e-05,1.4025855173469977e-05,0.0,0.0,3.070447071359008e-05,0.0,0.0,0.0,0.0,0.0,0.00012757069748694233,6.602508023296446e-05,1.2559999307939974e-05,0.0,0.0 +94199,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010403,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,35469.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003165356683151363,0.0,0.0,0.003165356683151363,0.001222765983719372,0.0007471691549238719,0.0011954215445081188,0.0,0.0,0.001222765983719372,0.0007471691549238719,0.0011954215445081188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037720918186913806,0.00012092813795410654,0.00037720918186913806,0.0001457145600024439,8.903864362170266e-05,0.00014245597824499149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001457145600024439,8.903864362170266e-05,0.00014245597824499149,0.0,0.0 +94200,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,12443.0,,253.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00298787574590622,0.00020031653259660256,0.0,0.0031881922785028226,0.0015194943587385564,0.0005992127492412823,0.000983304399686626,0.0,8.618077083635833e-05,0.0013191778261419536,0.0005992127492412823,0.000983304399686626,0.0,8.618077083635833e-05,0.00020031653259660256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.338387459785738e-05,0.0,0.0,0.0003560597125702102,0.00010043761917362584,0.0003694435871680676,0.00015720401969481407,7.140709233159422e-05,0.0001171785949938335,0.0,1.0270005549968415e-05,1.338387459785738e-05,0.0,0.0,0.0,0.0,0.0,0.00017607703599283335,6.943599639495304e-05,0.00011394403880463722,0.0,9.986515975644037e-06 +94201,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,26056.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0022130508286340353,0.0,0.0,0.0022130508286340353,0.00166176999883884,0.00042987755284250155,0.00012143365055213179,0.0,0.0,0.00166176999883884,0.00042987755284250155,0.00012143365055213179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026372580736064,6.44472204392738e-05,0.00026372580736064,0.0001980305327473954,5.122783590089538e-05,1.4471058286708099e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001980305327473954,5.122783590089538e-05,1.4471058286708099e-05,0.0,0.0 +94202,50.0,the Greater Atlanta and Macon Area,G1300890021502,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,124220.0,,,,9.325022323477118,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,699376.6742607838,0.0,0.0,0.03162950833817835,0.0,0.0,0.03162950833817835,0.012504590681615007,0.0062594544576099545,0.0122832767498454,0.0,0.0005820980649499323,0.012504590681615007,0.0062594544576099545,0.0122832767498454,0.0,0.0005820980649499323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037692294702142914,0.0012229818672698837,0.0037692294702142914,0.0014901487309310743,0.000745927504051948,0.0014637751627783221,0.0,6.936753987780644e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0014901487309310743,0.000745927504051948,0.0014637751627783221,0.0,6.936753987780644e-05 +94203,50.0,the Greater Atlanta and Macon Area,G1300670030339,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,Electricity,444226.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,863994.0691636442,0.0,0.0,0.06855322183435324,0.0,0.0,0.06855322183435324,0.021430340713644292,0.010490161633526273,0.035977210633461085,0.0,0.0006555634476129642,0.021430340713644292,0.010490161633526273,0.035977210633461085,0.0,0.0006555634476129642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008169354110166888,0.002725273686828593,0.008169354110166888,0.0025538120208896597,0.0012500921585310253,0.004287334215611167,0.0,7.812222098288594e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0025538120208896597,0.0012500921585310253,0.004287334215611167,0.0,7.812222098288594e-05 +94204,50.0,the Greater Atlanta and Macon Area,G1301210000200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,50828.0,,8756.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0024859917050670233,0.0014890134824174543,0.0,0.003975022917845899,0.0011496898255604839,0.0006771047722703965,0.0014551307617437334,0.0,0.000693079827909864,0.0009571912916229705,0.0006771047722703965,0.0007301540136391945,0.0,0.00012154162753446198,0.00019249853393751325,0.000724976748104539,0.000571538200375402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.94875927953774e-05,0.0,0.0,0.0002962513658861862,0.00017405061193330853,0.00039573895868156363,0.00011406684381918426,8.068941389639589e-05,8.701120096539526e-05,0.0,1.4483907205210766e-05,1.2861680558452655e-05,4.843891096569685e-05,3.8187001271227907e-05,0.0,0.0,0.0,0.00011445897640777643,6.741011134643021e-05,0.00014486757543275623,0.0,6.900053032370465e-05 +94205,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,132296.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010845798934427057,0.0,0.0,0.010845798934427055,0.00225040745059795,0.004459476001512894,0.0041359154823162134,0.0,0.0,0.00225040745059795,0.004459476001512894,0.0041359154823162134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012924715379519609,0.0003936746922648713,0.0012924715379519609,0.0002681764244642558,0.0005314265773303042,0.000492868536157401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026817642446425586,0.0005314265773303043,0.0004928685361574011,0.0,0.0 +94206,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,37107.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.008909950346861848,0.0,0.0,0.008909950346861848,0.0035092611387588144,0.0017117883051824458,0.0035372988367564392,0.0,0.0001516847732378898,0.0035092611387588144,0.0017117883051824458,0.0035372988367564392,0.0,0.0001516847732378898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010617860851937814,0.00033011124879162083,0.0010617860851937814,0.00041819364882967594,0.0002039913728453406,0.00042153486134330445,0.0,1.8076058259571657e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00041819364882967594,0.0002039913728453406,0.00042153486134330445,0.0,1.8076058259571657e-05 +94207,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,38491.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003914579869136893,0.0,0.0,0.003914579869136892,0.002346360556566328,0.001282008885068629,0.0002862104275019354,0.0,0.0,0.002346360556566328,0.001282008885068629,0.0002862104275019354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004664943518365566,0.0001078657387465545,0.0004664943518365566,0.0002796121125641017,0.00015277499090104343,3.410724837141139e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027961211256410175,0.00015277499090104348,3.41072483714114e-05,0.0,0.0 +94208,50.0,the Greater Atlanta and Macon Area,G1300630040613,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,41316.0,,14392.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.008359321221724546,0.009900081359052916,0.0,0.01825933086080645,0.007210869325851567,0.0006971898382427551,0.005398792538171137,0.0003737327689623492,0.004578818109549656,0.004597465302013716,0.0006971898382427551,0.0021518860103523943,0.0003737327689623492,0.0005390473021533327,0.002613404023837851,0.0032469065278187435,0.004039770807396323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006614651238805202,0.0,0.0,0.0009961601996652338,0.0009560548731333805,0.001657625323545754,0.000547868879748964,8.308243576805576e-05,0.0002564350789820744,4.4536834974523044e-05,6.423697019161682e-05,0.00017461226364538955,0.00021693916956431504,0.0002699136906708158,0.0,0.0,0.0,0.0006546198045497785,6.329254560311509e-05,0.0004901151797983839,3.39283463777217e-05,0.0004156759581256738 +94209,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,6347.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011473952339854118,0.0,0.0,0.0011473952339854118,0.00072964180452817,0.00023695576626311577,0.00013762457070220753,0.0,4.317309249191848e-05,0.00072964180452817,0.00023695576626311577,0.00013762457070220753,0.0,4.317309249191848e-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.0001367358703156499,4.804756346155206e-05,0.0001367358703156499,8.695191003565656e-05,2.8238179806410795e-05,1.6400813681629167e-05,0.0,5.144966791953381e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.695191003565656e-05,2.8238179806410795e-05,1.6400813681629167e-05,0.0,5.144966791953381e-06 +94210,35.0,Eastern Counties in South Carolina and Georgia,G1301270001000,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,53028.0,,10025.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002597356105146375,0.0017048629023451772,0.0,0.004302219007491552,0.001497240370116359,0.0007399589035044837,0.0014242799328728418,0.0,0.0006407398009978681,0.0013524187780373678,0.0007399589035044837,0.0003860786199216498,0.0,0.0001188998036828741,0.00014482159207899128,0.0010382013129511918,0.000521839997314994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011390900035638594,0.0,0.0,0.00030952141866818556,0.0001972851218329702,0.00042343041902457153,0.0001611648776162056,8.817933325163188e-05,4.600817035401074e-05,0.0,1.4169037446337361e-05,9.67613452145973e-06,6.936655936631665e-05,3.4866306468609545e-05,0.0,0.0,0.0,0.0001473604937812128,7.282779143188034e-05,0.00014017962538273227,0.0,6.306250842874614e-05 +94211,50.0,the Greater Atlanta and Macon Area,G1300890021411,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,29735.0,,3779.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026869364105764743,0.0011123140906539395,0.0,0.003799250501230413,0.0013677743734760175,0.0013163079037147702,0.0011151989136459239,0.0,0.0,0.000255460282822078,0.0013163079037147702,0.0011151989136459239,0.0,0.0,0.0011123140906539395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.431818919957231e-05,0.0,0.0,0.00032019855440388565,0.00017420450269228774,0.0003945167436034579,3.0442854153622348e-05,0.0001568626210359222,0.0001328967364529468,0.0,0.0,7.431818919957231e-05,0.0,0.0,0.0,0.0,0.0,0.00014203061673171113,0.00013668630367617626,0.00011580301002506104,0.0,0.0 +94212,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock 90.1-2004,gen3_t5_cfl,50001_100000,NaturalGas,212757.0,,23008.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010171429626925953,0.003912771618900092,0.0,0.014084201245826045,0.005921763410683435,0.00214567514797053,0.00397229244218721,0.0,0.0020444879753462883,0.00504352541846396,0.00214567514797053,0.0026444302147166153,0.0,0.0003378165761362661,0.0008782379922194754,0.0013278622274705944,0.0017066713992100223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002614285729338717,0.0,0.0,0.0012121105761673397,0.0005455994650441503,0.0014735391491012113,0.0006010276554149017,0.00025569616418420066,0.0003151318889047074,0.0,4.025698055811642e-05,5.867873910483622e-05,8.872000745037437e-05,0.00011402982637866107,0.0,0.0,0.0,0.0006195559169493659,0.00022448815354190666,0.0004155953414096799,0.0,0.00021390159221363323 +94213,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5065.0,,688.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012162075193365158,0.0005459493937531682,0.0,0.0017621569130896841,0.0012595460259759129,0.00028294089926217067,0.0001728577841151525,0.0,4.6812203736448e-05,0.0007135966322227446,0.00028294089926217067,0.0001728577841151525,0.0,4.6812203736448e-05,0.0005459493937531682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.647712630166857e-05,0.0,0.0,0.00014493677886595992,8.37794648241311e-05,0.00018141390516762847,8.504009031319296e-05,3.3718376096596315e-05,2.059965099148971e-05,0.0,5.5786614646809455e-06,3.647712630166857e-05,0.0,0.0,0.0,0.0,0.0,0.0001296701568477337,2.912874164922824e-05,1.779569425515552e-05,0.0,4.819312415511015e-06 +94214,85.0,Rural Climate Zone 3A,G1302850960100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,53483.0,,7030.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002753064139137279,0.0011954696187470599,0.0,0.00394855148824576,0.0017587454707007177,0.0006966259001938747,0.0008374936216761941,0.0,0.0006557042260363926,0.0014919035313289229,0.0006966259001938747,0.0004558653224709777,0.0,0.00010868711550492368,0.0002668419393717947,0.00038162829920521644,0.0005470171105314691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.987474331538044e-05,0.0,0.0,0.00032807819218354386,0.00016751926730396307,0.00040795293549892426,0.0001777877262329309,8.301577965977202e-05,5.4324731759541826e-05,0.0,1.2952067429737908e-05,1.7828919345887666e-05,2.5498316279128642e-05,3.6548692336167864e-05,0.0,0.0,0.0,0.0001817085023973071,7.197337600248197e-05,8.652742212973365e-05,0.0,6.774546681913432e-05 +94215,50.0,the Greater Atlanta and Macon Area,G1300570091005,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,31167.0,,2726.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.008267934207973893,0.0021141860341097264,0.0,0.010382120242083619,0.00350523408523761,0.0006430858077440012,0.005161909808745606,0.00041643303280291795,0.0006553766467704173,0.002580186726933652,0.0006430858077440012,0.004628147779710255,0.00041643303280291795,0.0,0.0009250473583039573,0.0005337620290353516,0.0006553766467704173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014125820963597135,0.0,0.0,0.0009852733154489116,0.00039137287287186487,0.001126531525084883,0.0003074757329916119,7.663525978508538e-05,0.0005515271883640321,4.9625498289097165e-05,0.0,6.180654471947954e-05,3.566302462353885e-05,4.378864029295295e-05,0.0,0.0,0.0,0.000380342031083022,6.977923765723024e-05,0.0005601027529642407,4.518585111715525e-05,7.11128783115618e-05 +94216,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,53471.0,,11248.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0025728172849410224,0.0019128577721638162,0.0,0.0044856573267434184,0.0018607305095888615,0.00046524468366218553,0.0014191558584224463,0.0,0.0007405440054313454,0.0012516571340872077,0.00046524468366218553,0.0007407922304912261,0.0,0.00011512323670040285,0.0006090733755016538,0.0006783636279312202,0.0006254207687309425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012780549866158567,0.0,0.0,0.00030659723088182557,0.00020186014837412174,0.00043440272954341127,0.00014915735119270883,5.544223156779159e-05,8.827865385418828e-05,0.0,1.3718994267136847e-05,4.0694571028889674e-05,4.5324123415385396e-05,4.178680421731062e-05,0.0,0.0,0.0,0.00018019798514054872,4.5055505975339685e-05,0.00013743474671387818,0.0,7.171620876798828e-05 +94217,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,21127.0,,2756.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0052050894669042,0.002137473939633462,0.0,0.007342563406537662,0.0028167045174090953,0.00043058366983991027,0.0032571532027833657,0.00041319860148017674,0.0004249234150251133,0.0028167045174090953,0.00043058366983991027,0.0011196792631499037,0.00041319860148017674,0.0004249234150251133,0.0,0.002137473939633462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014281583608522085,0.0,0.0,0.0006202806360026887,0.00033333012315342047,0.0007630964720879096,0.0003356613331238859,5.1311838975848094e-05,0.00013343005338940255,4.924009336461666e-05,5.0637317148935535e-05,0.0,0.00014281583608522085,0.0,0.0,0.0,0.0,0.0002927339079203815,4.474961416076338e-05,0.0003385087714572224,4.2942822227511896e-05,4.416135632203034e-05 +94218,46.0,the Tallahassee-Valdosta Area,G1301850011200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,97291.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008106501074739895,0.0,0.0,0.008106501074739897,0.0045100239125145805,0.003062782646504581,0.0005336641421212995,0.0,0.0,0.0045100239125145805,0.003062782646504581,0.0005336641421212995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009660359682304398,0.0002569730289187701,0.0009660359682304398,0.0005374507789364911,0.00036498585174003404,6.359571799113813e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000537450778936491,0.000364985851740034,6.359571799113812e-05,0.0,0.0 +94219,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,27301.0,,,3283.0,3.20458438519356,Mercantile,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,56080.226740887294,0.0,0.0,0.0024151263856933983,0.0,0.00030941585747237783,0.002724542243165776,0.0016729474834319324,0.0007492255773310243,0.0003023691824028194,0.0,0.0,0.0013635316259595549,0.0007492255773310243,0.0003023691824028194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030941585747237783,0.0,0.0,0.0,0.0,2.4953804396335423e-05,0.0002878054016295423,0.00010514502088520171,0.00031275920602587775,0.0001624891225438717,8.928359586985841e-05,3.6032683215812236e-05,0.0,0.0,0.0,0.0,0.0,2.4953804396335423e-05,0.0,0.0,0.00019204316906945652,8.600607947559478e-05,3.470995748082645e-05,0.0,0.0 +94220,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,9171.0,,844.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0018694279877295656,0.0006695964689934328,0.0,0.002539107163796738,0.0014168548802280755,0.0004334677734677103,0.0006249346491742069,0.0,6.376715385300602e-05,0.0007472584112346426,0.0004334677734677103,0.0006249346491742069,0.0,6.376715385300602e-05,0.0006695964689934328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.473954487468491e-05,0.0,0.0,0.00022278077300597786,0.00010086508905768959,0.00026752031788066275,8.905120046493873e-05,5.1656595643247814e-05,7.447380970814354e-05,0.0,7.5991671896477866e-06,4.473954487468491e-05,0.0,0.0,0.0,0.0,0.0,0.00014927982298415746,4.567016241083236e-05,6.584311146274551e-05,0.0,6.718507006058337e-06 +94221,50.0,the Greater Atlanta and Macon Area,G1300890022900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,34708.0,,679.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008274925434691447,0.0005386711712641091,0.0,0.008813596605955556,0.005268606011341361,0.0011873427506014975,0.002197526949253398,0.0,0.00016012089475929913,0.004890055734836552,0.0011873427506014975,0.002197526949253398,0.0,0.0,0.00037855027650481006,0.0,0.00016012089475929913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599159333740587e-05,0.0,0.0,0.0009861087318998076,0.00035233560929723735,0.0010221003252372134,0.0005827395905445835,0.0001414936078115525,0.0002618755335436716,0.0,0.0,2.5293032812115258e-05,0.0,1.0698560525290613e-05,0.0,0.0,0.0,0.0006109927829122496,0.0001376944584391111,0.0002548440903264964,0.0,1.8568993559356298e-05 +94223,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Propane,20516.0,,,4864.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0018091123297113742,0.0,0.0004584894835128638,0.0022676018132242377,0.0014784045790331322,0.0006211704821014625,0.00016802675208964308,0.0,0.0,0.0010199150955202685,0.0006211704821014625,0.00016802675208964308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004584894835128638,0.0,0.0,0.0,0.0,3.697732379718347e-05,0.00021558913074227787,7.869418420196182e-05,0.0002525664545394613,0.00012154171151396777,7.402392990178846e-05,2.0023489326521625e-05,0.0,0.0,0.0,0.0,0.0,3.697732379718347e-05,0.0,0.0,0.00016466533088998675,6.918623252724491e-05,1.8714891122229668e-05,0.0,0.0 +94224,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,33839.0,,1488.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002983993529563052,0.00043337051677784294,0.0,0.003417364046340895,0.0020207859441930664,0.0009781513962933597,0.0004184570794539069,0.0,0.0,0.0015874154274152237,0.0009781513962933597,0.0004184570794539069,0.0,0.0,0.00043337051677784294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8954653073466343e-05,0.0,0.0,0.0003555975812246888,0.00011589917858769411,0.0003845522342981552,0.00018916967506637535,0.00011656468660118155,4.986683912881873e-05,0.0,0.0,2.8954653073466346e-05,0.0,0.0,0.0,0.0,0.0,0.0002273968296441287,0.00011007030559978838,4.708851696212534e-05,0.0,0.0 +94225,50.0,the Greater Atlanta and Macon Area,G1301210001900,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,9257.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0019078040699446043,0.0,0.0,0.0019078040699446043,0.0010256504214411512,0.0003040312030656941,0.0005117913722988343,0.0,6.616565899144594e-05,0.0010256504214411512,0.0003040312030656941,0.0005117913722988343,0.0,6.616565899144594e-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.00022734987256329238,7.037844513210989e-05,0.00022734987256329238,0.0001222250734667442,3.62308983197929e-05,6.0989335909379334e-05,0.0,7.884852735537084e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001222250734667442,3.62308983197929e-05,6.0989335909379334e-05,0.0,7.884852735537084e-06 +94226,50.0,the Greater Atlanta and Macon Area,G1301350050320,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,78439.0,,9965.0,,9.325022323477118,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.020127370777222642,0.008447846211050635,0.0,0.028575216988273273,0.015939817752736934,0.0019279236396527292,0.010197764156380686,0.0,0.0005097998236609793,0.008001682981189223,0.0019279236396527292,0.010197764156380686,0.0,0.0,0.007938134771547709,0.0,0.0005097998236609793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005644364650296491,0.0,0.0,0.002398541358357523,0.0014129749721772712,0.0029629778233871726,0.0009535456855878625,0.0002297470760907961,0.001215248596678864,0.0,0.0,0.0005303804801181499,0.0,3.406189023227436e-05,0.0,0.0,0.0,0.0016528072745545454,0.00019990731800284065,0.0010574110095432885,0.0,5.286138588183124e-05 +94227,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,19952.0,,74.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0010037689510734493,1.2535365523977332e-05,0.0,0.0010162865862360067,0.0005241981353838613,0.0001436336578638478,0.00016535335060341243,0.0,0.00018311917274630536,0.0005116627698598839,0.0001436336578638478,0.00016535335060341243,0.0,0.00018311917274630536,1.2535365523977332e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.370589413297624e-07,0.0,0.0,0.00011961618460172007,3.292478372927822e-05,0.00012045324354304986,6.097334278763603e-05,1.7116399262687626e-05,1.9704670969488303e-05,0.0,2.182177158190813e-05,8.370589413297624e-07,0.0,0.0,0.0,0.0,0.0,6.212948839565012e-05,1.7023879096673826e-05,1.959816028336996e-05,0.0,2.170381722138591e-05 +94228,50.0,the Greater Atlanta and Macon Area,G1300970080403,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,38170.0,,1370.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0034009301010925292,0.0004033228059644099,0.0,0.0038042222174506416,0.0008666437922408288,0.0016076443362988628,0.001329964778517248,0.0,0.0,0.00046332098627641896,0.0016076443362988628,0.001329964778517248,0.0,0.0,0.0004033228059644099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.694709842321963e-05,0.0,0.0,0.00040528139174334155,0.00014216194463336255,0.0004322284901665612,5.521294721161219e-05,0.00019157945464218673,0.0001584889898895427,0.0,0.0,2.694709842321963e-05,0.0,0.0,0.0,0.0,0.0,9.846641873710063e-05,0.00018265749067333407,0.00015110806765080185,0.0,0.0 +94229,50.0,the Greater Atlanta and Macon Area,G1300630040415,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,52534.0,,2699.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004680686683706735,0.0007946152862601206,0.0,0.005475301969966856,0.0015897522958273022,0.0015754202496862746,0.002310129424453279,0.0,0.0,0.0007951370095671815,0.0015754202496862746,0.002310129424453279,0.0,0.0,0.0007946152862601206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3091254554380474e-05,0.0,0.0,0.0005577898202790723,0.00021000969813420243,0.0006108810748334528,9.475518436377903e-05,0.0001877402691779008,0.00027529436673739245,0.0,0.0,5.3091254554380474e-05,0.0,0.0,0.0,0.0,0.0,0.00017736913808971347,0.00017577010742451593,0.00025774182931922335,0.0,0.0 +94230,35.0,Eastern Counties in South Carolina and Georgia,G1300730030505,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,44731.0,,1302.0,,3.3063363735822096,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.004059276692123174,0.0003912238691942199,0.0,0.004450500561317393,0.0017782760699636344,0.0008022847064435458,0.001297864189576948,0.0,0.0005720755953332654,0.0017782760699636344,0.0008022847064435458,0.0009066403203827281,0.0,0.0005720755953332654,0.0,0.0003912238691942199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.61392102010811e-05,0.0,0.0,0.00048373564630453886,0.00019967163501296903,0.00050987485650562,0.00021191349820547084,9.560661675140118e-05,0.00010804246042087369,0.0,6.817307092679304e-05,0.0,2.61392102010811e-05,0.0,0.0,0.0,0.0,0.00020372950042538452,9.191433501436726e-05,0.00014869076147884926,0.0,6.554025958701903e-05 +94231,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,30107.0,,445.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007260688589426321,0.00035324191194058193,0.0,0.0076138477942931625,0.004129895020098577,0.001873232513121574,0.0014520880936410203,0.0,0.00015871487450573092,0.003935450689737465,0.001873232513121574,0.0014520880936410203,0.0,0.0,0.00019444433036111173,0.0,0.00015871487450573092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3599265085900478e-05,0.0,0.0,0.0008652376193454697,0.0003124988376506489,0.0008888368844313701,0.0004689775554895371,0.00022322830957027776,0.00017304161027530425,0.0,0.0,1.2990370455853906e-05,0.0,1.0603369164093426e-05,0.0,0.0,0.0,0.00048212193385904577,0.00021868025153149213,0.00016951605705057207,0.0,1.8528297173779565e-05 +94232,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,5158.0,,306.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012383730150986498,0.00024274526142486726,0.0,0.0014812009835972566,0.0007324538450353066,0.00033281326472697304,0.00038715181217369805,0.0,2.8782061661278978e-05,0.0005184906452717183,0.00033281326472697304,0.00038715181217369805,0.0,0.0,0.00021396319976358828,0.0,2.8782061661278978e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6220367368135475e-05,0.0,0.0,0.00014757812490658037,5.972151252207299e-05,0.00016379849227471586,6.17890379375778e-05,3.966168267041204e-05,4.613726058156033e-05,0.0,0.0,1.4297134712560978e-05,0.0,1.9232326555744955e-06,0.0,0.0,0.0,8.099834985676944e-05,3.680412825470191e-05,4.2813152177002904e-05,0.0,3.182861986241616e-06 +94233,50.0,the Greater Atlanta and Macon Area,G1301210011201,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,6343.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0019320372425502214,0.0,0.0,0.0019320372425502218,0.0011332523243759902,0.00035291108364562474,0.00039732478224363283,0.0,4.8631759358712767e-05,0.0011332523243759902,0.00035291108364562474,0.00039732478224363283,0.0,4.8631759358712767e-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.0002302343756602292,7.538958096808251e-05,0.0002302343756602292,0.00013504586538084162,4.205522606773107e-05,4.734785704930398e-05,0.0,5.795283085968098e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001350458653808416,4.205522606773106e-05,4.734785704930397e-05,0.0,5.795283085968097e-06 +94234,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,41508.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0038118563558384158,0.0,0.0,0.0038118563558384166,0.0024132128489288206,0.0010309103385167347,0.0003677331683928613,0.0,0.0,0.0024132128489288206,0.0010309103385167347,0.0003677331683928613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045425138773039626,0.0001250948572827423,0.00045425138773039626,0.0002875778054531727,0.00012285154743031724,4.3822034846906415e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028757780545317265,0.00012285154743031722,4.38220348469064e-05,0.0,0.0 +94235,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,7505.0,,,1405.0,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015810284216006007,0.0,0.0003606855485771197,0.0019417139701777204,0.0012865085320149271,0.00033951253769985695,0.0002697077674638815,0.0,4.598513299905493e-05,0.0009258229834378074,0.00033951253769985695,0.0002697077674638815,0.0,4.598513299905493e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003606855485771197,0.0,0.0,0.0,0.0,2.9086998519565293e-05,0.0001884122705180274,9.393576476973818e-05,0.0002174992690375927,0.00011033097699198574,4.045994823584968e-05,3.214126460343625e-05,0.0,5.480080686755767e-06,0.0,0.0,0.0,2.9086998519565296e-05,0.0,0.0,0.00014410704646589237,3.803017844696162e-05,3.021106258600289e-05,0.0,5.15098153873585e-06 +94236,50.0,the Greater Atlanta and Macon Area,G1300590140400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,57435.0,,4226.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004902204261963554,0.0012440031912773822,0.0,0.006146207453240936,0.0021064731970617235,0.0017026593573965505,0.0023370442091763645,0.0,0.0,0.0008624700057843414,0.0017026593573965505,0.0023370442091763645,0.0,0.0,0.0012440031912773822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.31170641931167e-05,0.0,0.0,0.0005841857598634577,0.0002452720298767596,0.0006673028240565744,0.00010277880495472347,0.00020290246944767667,0.00027850082824279064,0.0,0.0,8.31170641931167e-05,0.0,0.0,0.0,0.0,0.0,0.0002287029072631705,0.00018486024206650398,0.00025373634271100114,0.0,0.0 +94237,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,74783.0,,8788.0,,9.325022323477118,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.01918926132362735,0.00745025421908436,0.0,0.02663951554271171,0.017761326866091498,0.0036167681317668056,0.004718299893605708,0.0,0.0005431206512476972,0.010854104914096782,0.0036167681317668056,0.004718299893605708,0.0,0.0,0.006907221951994718,0.0,0.0005431206512476972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004977842031316021,0.0,0.0,0.0022867430904548454,0.001162522111550023,0.0027845272935864474,0.0012934603889531568,0.00043100249642812337,0.0005622696725231284,0.0,0.0,0.0004615018325709387,0.0,3.628827589441353e-05,0.0,0.0,0.0,0.0018565239803121308,0.00037804702421601093,0.0004931859519744761,0.0,5.6770337083829504e-05 +94238,35.0,Eastern Counties in South Carolina and Georgia,G1300290920303,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,29888.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0035966594038219445,0.0,0.0,0.0035966594038219436,0.002556120634283443,0.0006116635454774462,0.0004288752240610558,0.0,0.0,0.002556120634283443,0.0006116635454774462,0.0004288752240610558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004286063857931161,0.00014305044162876576,0.0004286063857931161,0.00030460755487362543,7.289066661967143e-05,5.110816429981927e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003046075548736255,7.289066661967144e-05,5.1108164299819287e-05,0.0,0.0 +94239,50.0,the Greater Atlanta and Macon Area,G1301170130506,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,41856.0,,3891.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002046012786428413,0.0006616616274735304,0.0,0.0027076744139019437,0.001121906349215261,0.0005786126145820032,0.0007470687784339249,0.0,0.00026010440203217463,0.0008000293679956225,0.0005786126145820032,0.000407284132180033,0.0,0.00026010440203217463,0.00032187698121963855,0.0003397846462538919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.42085166760728e-05,0.0,0.0,0.00024381889467405034,0.00010063706801442134,0.0002880274113501231,9.533776010851763e-05,6.895200707817393e-05,4.8535164386613156e-05,0.0,3.0996075989361145e-05,2.1506013498510788e-05,2.2702503177562012e-05,0.0,0.0,0.0,0.0,0.00011934218526520418,6.154960607409876e-05,7.946904001753237e-05,0.0,2.7668466050960004e-05 +94240,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12809.0,,2.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,24284.436554246196,0.0,0.0,0.00109307170750528,6.137921259540556e-07,0.0,0.0010936548100249366,0.0006370855371340121,0.00023093928739021345,0.00022562998550071085,0.0,0.0,0.000636471745008058,0.00023093928739021345,0.00022562998550071085,0.0,0.0,6.137921259540556e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.02899973905918e-08,0.0,0.0,0.00013025772970529082,4.983246504436598e-05,0.0001302980197026814,7.584622669955432e-05,2.7520268861282915e-05,2.688757696586737e-05,0.0,0.0,4.02899973905918e-08,0.0,0.0,0.0,0.0,0.0,7.590236252688188e-05,2.7514103666592137e-05,2.688155350920736e-05,0.0,0.0 +94241,50.0,the Greater Atlanta and Macon Area,G1300590130500,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5633.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010388835532394404,0.0,0.0,0.0010388835532394404,0.0005517388889149198,0.000308580092121356,0.00013911329802951506,0.0,3.9451274173649644e-05,0.0005517388889149198,0.000308580092121356,0.00013911329802951506,0.0,3.9451274173649644e-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.00012379997181940282,4.0166334471722814e-05,0.00012379997181940282,6.574871523025527e-05,3.677236644042608e-05,1.6577625396085946e-05,0.0,4.701264752635551e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.574871523025527e-05,3.677236644042608e-05,1.6577625396085946e-05,0.0,4.701264752635551e-06 +94242,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,60020.0,,5064.0,,9.325022323477118,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,349688.3371303919,0.0,0.0,0.01648576669704239,0.0042927301725711004,0.0,0.020778496869613493,0.016525097647376846,0.0017394002305215108,0.0021475582724192924,0.0,0.0003664407192958426,0.012598808194101589,0.0017394002305215108,0.0021475582724192924,0.0,0.0,0.003926289453275257,0.0,0.0003664407192958426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002868165986973046,0.0,0.0,0.001964574013310166,0.000821642123974055,0.0022513906120074706,0.0015013733744789462,0.00020728065333117492,0.00025591998550004514,0.0,0.0,0.0002623330470862146,0.0,2.4483551611089883e-05,0.0,0.0,0.0,0.0017905265207233932,0.00018846740330127662,0.00023269212222634244,0.0,3.970456575645796e-05 +94243,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,210882.0,,4441.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.009785811996401224,0.0007552247446871492,0.0,0.010541036741088371,0.005779601372817453,0.0015312117425971801,0.001498268731078722,0.0,0.001731972624956438,0.005325899154439722,0.0015312117425971801,0.001196746204769304,0.0,0.001731972624956438,0.0004537022183777311,0.0003015225263094179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0459152029958303e-05,0.0,0.0,0.0011661567909934379,0.00033480226608538467,0.0012166159430233962,0.0006346773746910478,0.000182471620416913,0.00014261399200194967,0.0,0.00020639591677731528,3.0313399255654487e-05,2.014575277430381e-05,0.0,0.0,0.0,0.0,0.0006670648577744742,0.00017672802627913243,0.00017292583926385203,0.0,0.00019989926609292123 +94244,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,35798.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004387284197186624,0.0,0.0,0.004387284197186624,0.0021807029452328296,0.001822658955060612,0.0003838919232937453,0.0,0.0,0.0021807029452328296,0.001822658955060612,0.0003838919232937453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005228248299380629,0.0001437550487451265,0.0005228248299380629,0.00025987047914924235,0.00021720301566644022,4.5747715554728325e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025987047914924235,0.00021720301566644022,4.5747715554728325e-05,0.0,0.0 +94245,50.0,the Greater Atlanta and Macon Area,G1301210011303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,3991.0,,683.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0011079439598117623,0.000541565918844985,0.0,0.0016495098786567474,0.0008986950632513144,0.0004390918544819831,0.00020544437116843965,0.0,0.00010627858975501002,0.00046349044123507874,0.0004390918544819831,0.00020544437116843965,0.0,0.0,0.0004352046220162357,0.0,0.00010627858975501002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.618313932583599e-05,0.0,0.0,0.0001320357800046018,7.610649644495985e-05,0.0001682189193304378,5.523503367764918e-05,5.2327407886266865e-05,2.4483194799300604e-05,0.0,0.0,2.9076921064836435e-05,0.0,7.100692430314484e-06,0.0,0.0,0.0,9.164995875674572e-05,4.477909359834006e-05,2.0951453851624922e-05,0.0,1.0838413123727061e-05 +94246,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,29134.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0025691205348428,0.0,0.0,0.0025691205348428,0.0016775035233475956,0.0007101347548546375,0.0001814518830411294,0.0,0.0,0.0016775035233475956,0.0007101347548546375,0.0001814518830411294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003061561207173498,9.902262524117912e-05,0.0003061561207173498,0.00019990419454150334,8.462510761339778e-05,2.162319901122491e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019990419454150334,8.462510761339778e-05,2.162319901122491e-05,0.0,0.0 +94247,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030401,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,5405.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012977566940434726,0.0,0.0,0.0012977566940434724,0.0006522279835081783,0.00031073047603857797,0.0002913770207835801,0.0,4.35039207868757e-05,0.0006522279835081783,0.00031073047603857797,0.0002913770207835801,0.0,4.35039207868757e-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.00015465595382277759,5.002827711245718e-05,0.00015465595382277759,7.772715899856123e-05,3.703029880263689e-05,3.4723913410085116e-05,0.0,5.184438959325793e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.772715899856125e-05,3.703029880263689e-05,3.472391341008512e-05,0.0,5.184438959325794e-06 +94248,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,29762.0,,3591.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026517354321530092,0.001056919351286586,0.0,0.0037086547834395958,0.0014739604112660692,0.001052776254436396,0.001181979496949725,0.0,0.0,0.00041704105997948307,0.001052776254436396,0.001181979496949725,0.0,0.0,0.001056919351286586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.061686594510706e-05,0.0,0.0,0.00031600396474349676,0.00016780496371148854,0.00038662083068860385,4.969825677795702e-05,0.00012545801755177257,0.00014085500489706654,0.0,0.0,7.061686594510706e-05,0.0,0.0,0.0,0.0,0.0,0.00015365781715527676,0.00010975009910249463,0.00012321931310731925,0.0,0.0 +94249,50.0,the Greater Atlanta and Macon Area,G1300570090602,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,13464.0,,821.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031981171273515394,0.0006515663269182637,0.0,0.003849766161343543,0.0024414301097106152,0.00042453540950386504,0.000910108639427339,0.0,7.360929562798359e-05,0.0017898637827923516,0.00042453540950386504,0.000910108639427339,0.0,7.360929562798359e-05,0.0006515663269182637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.353564090743812e-05,0.0,0.0,0.00038111785541772764,0.00014041495460802831,0.00042465349632516574,0.00021329708050830254,5.059165076702172e-05,0.00010845714495232946,0.0,8.7719791900739e-06,4.353564090743812e-05,0.0,0.0,0.0,0.0,0.0,0.0002693051444351422,4.682893412329636e-05,0.0001003907249352724,0.0,8.119569719410433e-06 +94250,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,29023.0,,304.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0069689807403477836,0.00024100841287634183,0.0,0.007209906446150387,0.0039755636205010296,0.001904330372847553,0.0010891694540729395,0.0,0.00024100841287634183,0.0039755636205010296,0.001904330372847553,0.0010891694540729395,0.0,0.0,0.0,0.0,0.00024100841287634183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6101926198847134e-05,0.0,0.0,0.0008304751561290402,0.00028575595526934654,0.0008465770823278873,0.00047375748928698565,0.00022693405573006662,0.00012979346709703573,0.0,0.0,0.0,0.0,1.6101926198847134e-05,0.0,0.0,0.0,0.0004668050931853177,0.00022360379609286712,0.00012788874661224614,0.0,2.8298869134185228e-05 +94251,35.0,Eastern Counties in South Carolina and Georgia,G1300510010603,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,73061.0,,3458.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003527242640182465,0.0005881338186645715,0.0,0.004115358728485615,0.0015789418755399623,0.0008651352551300564,0.0011673138048120164,0.0,0.0005039855233650008,0.0014983928436086624,0.0008651352551300564,0.0010635734601432876,0.0,0.00010014108130045823,8.054903193129988e-05,0.00010374034466872893,0.0004038444420645427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.929541999288534e-05,0.0,0.0,0.00042033382343890685,0.0001498093029445992,0.00045962924343179217,0.00017856021181886827,0.00010309628417335057,0.00012674373288565414,0.0,1.1933594561033817e-05,5.381782069508852e-06,6.931280406932927e-06,2.6982357516443564e-05,0.0,0.0,0.0,0.0001763461966641882,9.662376697059503e-05,0.00013037297507978573,0.0,5.628828495592006e-05 +94252,50.0,the Greater Atlanta and Macon Area,G1301170130509,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,54658.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004411097099145822,0.0,0.0,0.004411097099145822,0.003147221252941531,0.0010405083959390642,0.00022333707666578916,0.0,0.0,0.003147221252941531,0.0010405083959390642,0.00022333707666578916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005256621807497568,0.00011589786584528955,0.0005256621807497568,0.0003750484629874925,0.00012399543700900942,2.6614661188289876e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003750484629874925,0.00012399543700900942,2.6614661188289876e-05,0.0,0.0 +94253,85.0,Rural Climate Zone 3A,G1302850960600,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,23315.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,43199.70345818221,0.0,0.0005882491795494411,0.003770254138253774,0.0,0.0,0.004358503317803215,0.0020354240520781266,0.0003670347317040272,0.001928692994442938,0.0,2.735153957812251e-05,0.0014471748725286857,0.0003670347317040272,0.001928692994442938,0.0,2.735153957812251e-05,0.0,0.0,0.0,0.0005882491795494411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004492938820383018,0.00015536891642432187,0.0004492938820383018,0.00017245702613772522,4.373881796906316e-05,0.00022983860794452827,0.0,3.2594299869850737e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002098205524398322,3.783557047590033e-05,0.00019881824093003224,0.0,2.8195181925369725e-06 +94254,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,26247.0,,2307.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002338547999884952,0.0006790996081555672,0.0,0.0030176782976468167,0.0011260016550627152,0.0008038528577557289,0.0010877930952220751,0.0,0.0,0.00044690204690714803,0.0008038528577557289,0.0010877930952220751,0.0,0.0,0.0006790996081555672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.537448734564202e-05,0.0,0.0,0.00027868194552739534,0.00012605474185873176,0.0003240564328730373,5.325677809409359e-05,9.579417584250742e-05,0.00012963099159079433,0.0,0.0,4.537448734564202e-05,0.0,0.0,0.0,0.0,0.0,0.00012091682537310193,8.632255129456687e-05,0.00011681376057098931,0.0,0.0 +94255,50.0,the Greater Atlanta and Macon Area,G1301170130306,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,6456.0,,368.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0011826284473983569,0.00029162514200479795,0.0,0.001474253589403155,0.0006131902447032251,0.00041998652044820305,0.0003534073260880606,0.0,8.758679108992654e-05,0.00040915189378835383,0.00041998652044820305,0.0003534073260880606,0.0,0.0,0.00020403835091487135,0.0,8.758679108992654e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9483138046428817e-05,0.0,0.0,0.00014093165630997027,5.208064932101148e-05,0.0001604147943563991,4.8757878436633534e-05,5.004902096244695e-05,4.211490086107441e-05,0.0,0.0,1.3631565955910346e-05,0.0,5.851572090518467e-06,0.0,0.0,0.0,6.672175513931795e-05,4.5699092608235314e-05,3.8454553508268904e-05,0.0,9.53039367312351e-06 +94256,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,9794.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0020846317935992436,0.0,0.0,0.0020846317935992436,0.0012126511151657256,0.0004221369043654251,0.0003984826812759832,0.0,5.136109279210991e-05,0.0012126511151657256,0.0004221369043654251,0.0003984826812759832,0.0,5.136109279210991e-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.0002484202549101485,8.327539991716753e-05,0.0002484202549101485,0.00014450854106298742,5.03049784194167e-05,4.748616497350111e-05,0.0,6.120570454243294e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014450854106298742,5.03049784194167e-05,4.748616497350111e-05,0.0,6.120570454243294e-06 +94257,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,12946.0,,1416.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031685907020266068,0.001122913940158577,0.0,0.004291421935111445,0.002677972340605035,0.000382851044339254,0.001154177214032035,0.0,7.642133613512006e-05,0.0016314797365815782,0.000382851044339254,0.001154177214032035,0.0,0.0,0.0010464926040234567,0.0,7.642133613512006e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.502455940184481e-05,0.0,0.0,0.0003775932136077066,0.00019817432610837632,0.00045261777300955144,0.000194419454768229,4.562342371094656e-05,0.0001375404791285935,0.0,0.0,6.991866760783252e-05,0.0,5.105891794012271e-06,0.0,0.0,0.0,0.00028244667975169623,4.0379433601118065e-05,0.0001217314745957232,0.0,8.060185061013847e-06 +94258,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000602,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,4666.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011203500208726584,0.0,0.0,0.0011203500208726584,0.000703506369226549,0.00023414372575597932,0.00014333135879021977,0.0,3.936856709991033e-05,0.000703506369226549,0.00023414372575597932,0.00014333135879021977,0.0,3.936856709991033e-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.00013350981179967192,3.54984146481363e-05,0.00013350981179967192,8.383540965362538e-05,2.790242707846384e-05,1.7080503753789414e-05,0.0,4.691471313793284e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.383540965362538e-05,2.790242707846384e-05,1.7080503753789414e-05,0.0,4.691471313793284e-06 +94259,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,13280.0,,2229.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001146348864038092,0.0006562358514637786,0.0,0.0018025847155018707,0.0008410793501948425,0.0004162124406094451,0.0005453236143038808,0.0,0.0,0.00018484349873106384,0.0004162124406094451,0.0005453236143038808,0.0,0.0,0.0006562358514637786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.384595759733011e-05,0.0,0.0,0.00013660753339743255,8.781078571825301e-05,0.00018045349099476263,2.2027338464185906e-05,4.959899788332878e-05,6.4984854253714e-05,0.0,0.0,4.384595759733011e-05,0.0,0.0,0.0,0.0,0.0,8.419893036983221e-05,4.1666273577890394e-05,5.459135932794091e-05,0.0,0.0 +94260,81.0,the Columbus-Albany Area,G1302730120400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,146003.0,,8083.0,,9.729435225087556,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.03332067551002556,0.007149695824756983,0.0,0.040470279117529775,0.03176635371453371,0.004670434983950191,0.0011349177298794573,0.0006631342646918971,0.002235346207221747,0.02461665788977672,0.004670434983950191,0.0011349177298794573,0.0006631342646918971,0.002235346207221747,0.007149695824756983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004776989868426891,0.0,0.0,0.003970756336530668,0.001388437199865666,0.004448455323373357,0.002933516466994447,0.0005565661266769588,0.00013524581054798668,7.902434579105973e-05,0.0002663816078397007,0.0004776989868426891,0.0,0.0,0.0,0.0,0.0,0.0034917279635061694,0.0005133698560982528,0.000124749098033432,7.289109969597866e-05,0.0002457071696051346 +94261,35.0,Eastern Counties in South Carolina and Georgia,G1302450010706,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,16377.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,9613.75315558068,0.0,0.0,0.0013243800562842928,0.0,0.0,0.0013243800562842928,0.0010784146480373785,0.00020547740019639108,4.048800805052319e-05,0.0,0.0,0.0010784146480373785,0.00020547740019639108,4.048800805052319e-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.00015782546948143932,3.729468634165745e-05,0.00015782546948143932,0.00012851393926882333,2.4486601863218977e-05,4.824928349397029e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012851393926882333,2.4486601863218977e-05,4.824928349397029e-06,0.0,0.0 +94262,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,52219.0,,7036.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002834286924802541,0.0011965334404322634,0.0,0.004030820365234804,0.0018586915180255552,0.0007547992160130679,0.0008328659973455602,0.0,0.0005844813642120407,0.0014926482065085653,0.0007547992160130679,0.0004880281980869534,0.0,9.881130419395427e-05,0.00036604331151699,0.0003448377992586069,0.00048567006001808637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.994576563114791e-05,0.0,0.0,0.00033775640453524643,0.0001630540788721352,0.00041770217016639437,0.00017787595428484722,8.994793967952191e-05,5.815736157663293e-05,0.0,1.1775148994244334e-05,2.4456995353857127e-05,2.3040159972737578e-05,3.244979494952069e-05,0.0,0.0,0.0,0.0001926107864903373,7.821764355658298e-05,8.630747664905519e-05,0.0,6.056810081611328e-05 +94263,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5355.0,,206.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001628998524369399,0.00016367729893008938,0.0,0.0017926758232994886,0.0008442738087308502,0.0002734295857821504,0.0006263406694277751,0.0,4.8631759358712767e-05,0.0006805965098007609,0.0002734295857821504,0.0006263406694277751,0.0,4.8631759358712767e-05,0.00016367729893008938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0936925275763201e-05,0.0,0.0,0.0001941242577922803,7.403175627875877e-05,0.0002050611830680435,8.11052252930887e-05,3.2584016869480034e-05,7.46396732463921e-05,0.0,5.795342383319498e-06,1.0936925275763201e-05,0.0,0.0,0.0,0.0,0.0,9.657506605575953e-05,3.127715207487667e-05,7.164605948670327e-05,0.0,5.562905450704017e-06 +94264,46.0,the Tallahassee-Valdosta Area,G1301850010402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3965.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006377542456037996,0.0,0.0,0.0006377542456037996,0.0003627532254206023,0.00017302319826263113,6.963935608849685e-05,0.0,3.23384658320692e-05,0.0003627532254206023,0.00017302319826263113,6.963935608849685e-05,0.0,3.23384658320692e-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,7.600196458146149e-05,2.538026799945957e-05,7.600196458146149e-05,4.322975186801842e-05,2.061938917188658e-05,8.299008452547084e-06,0.0,3.853815089009395e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.322975186801842e-05,2.061938917188658e-05,8.299008452547084e-06,0.0,3.853815089009395e-06 +94265,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,4974.0,,424.0,,8.72605822017302,Office,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0009831389855391474,0.00033661779011898114,0.0,0.0013197567756581285,0.0007398147745981048,0.00017351944070506697,0.00036358029615799544,0.0,4.2924971270700556e-05,0.00040319698447912364,0.00017351944070506697,0.00036358029615799544,0.0,4.2924971270700556e-05,0.00033661779011898114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2488915641400593e-05,0.0,0.0,0.00011715728333055049,6.288240679629054e-05,0.00013964619897195108,4.804759453490649e-05,2.0677713504458223e-05,4.3326610374451074e-05,0.0,5.115220833562355e-06,2.248891564140059e-05,0.0,0.0,0.0,0.0,0.0,7.828133419841463e-05,1.8360451553747783e-05,3.847118447582234e-05,0.0,4.54198015080796e-06 +94266,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010701,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,54343.0,,10709.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004724879716775428,0.0031523749796874344,0.0,0.007877254696462862,0.003992196056024071,0.0015749292159855115,0.002310129424453279,0.0,0.0,0.0008398210763366367,0.0015749292159855115,0.002310129424453279,0.0,0.0,0.0031523749796874344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021062414478939043,0.0,0.0,0.0005630546441010695,0.0003899131838752751,0.0007736787888904599,0.00010007982966559343,0.00018768122414686362,0.0002752935902886124,0.0,0.0,0.00021062414478939043,0.0,0.0,0.0,0.0,0.0,0.00039210074177554376,0.00015468451578174976,0.00022689353133316636,0.0,0.0 +94267,50.0,the Greater Atlanta and Macon Area,G1301130140403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6777.0,,531.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014085014657804053,0.00042147524777551054,0.0,0.001829976713555916,0.000936740317171396,0.00024580542315322165,0.0006094684263849564,0.0,3.804525392008141e-05,0.0005152650693958853,0.00024580542315322165,0.0006094684263849564,0.0,3.804525392008141e-05,0.00042147524777551054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8159280257295818e-05,0.0,0.0,0.00016785006434973213,7.41644942005753e-05,0.00019600934460702792,6.140375225477577e-05,2.9292448106130588e-05,7.262989572479014e-05,0.0,4.5338244040444384e-06,2.8159280257295818e-05,0.0,0.0,0.0,0.0,0.0,0.00010033453118589887,2.6328291248851438e-05,6.528034260187963e-05,0.0,4.07503834941846e-06 +94268,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302530200100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7778.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005520401697811393,0.0,0.0,0.0005520401697811394,0.0003130910630043458,0.00019183965404884052,4.710945272795307e-05,0.0,0.0,0.0003130910630043458,0.00019183965404884052,4.710945272795307e-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,6.578490671846931e-05,1.7374634388371072e-05,6.578490671846931e-05,3.73100862973305e-05,2.286093374601663e-05,5.613886675122196e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7310086297330495e-05,2.2860933746016628e-05,5.613886675122195e-06,0.0,0.0 +94269,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970600,ComStock 90.1-2007,gen4_led,200001_500000,Electricity,104641.0,,15153.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.020958883518496462,0.004460243241670336,0.0,0.025419126760166794,0.007429032996484911,0.005953691552935446,0.01203637152114014,0.0,0.0,0.0029687897548145758,0.005953691552935446,0.01203637152114014,0.0,0.0,0.004460243241670336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029800757515192265,0.0,0.0,0.0024976286733800405,0.0010554346494914821,0.0027956362485319635,0.00035378480014539027,0.000709489640607481,0.0014343505754075183,0.0,0.0,0.00029800757515192265,0.0,0.0,0.0,0.0,0.0,0.0008170569403296437,0.0006547965268440117,0.001323779406066284,0.0,0.0 +94270,50.0,the Greater Atlanta and Macon Area,G1300890023306,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,34095.0,,6457.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029411077299340486,0.0019005152491978396,0.0,0.004841622979131889,0.0024317830238173724,0.0010529603920741825,0.0013568795632403334,0.0,0.0,0.0005312677746195329,0.0010529603920741825,0.0013568795632403334,0.0,0.0,0.0019005152491978396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000126981016036087,0.0,0.0,0.0003504863592482254,0.0002347975791838054,0.00047746737528431244,6.331019643285296e-05,0.0001254793391260577,0.00016169682368931477,0.0,0.0,0.000126981016036087,0.0,0.0,0.0,0.0,0.0,0.00023981566979658052,0.0001038400215896499,0.00013381168389808197,0.0,0.0 +94271,50.0,the Greater Atlanta and Macon Area,G1300450911000,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,15901.0,,1113.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014021972180438128,0.00032420780039856293,0.0,0.001726405018442376,0.0012165841518797114,0.00041220011796972995,9.762074859293435e-05,0.0,0.0,0.0008923763514811485,0.00041220011796972995,9.762074859293435e-05,0.0,0.0,0.00032420780039856293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1662057148465712e-05,0.0,0.0,0.00016709581679224078,6.125529348079221e-05,0.0001887578739407065,0.00010634192781015994,4.912070463960792e-05,1.1633184342472909e-05,0.0,0.0,2.1662057148465712e-05,0.0,0.0,0.0,0.0,0.0,0.00013301620160138385,4.50682296882304e-05,1.0673442651092217e-05,0.0,0.0 +94272,81.0,the Columbus-Albany Area,G1302150010502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,28525.0,,1732.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025415290559379585,0.0005097236709985455,0.0,0.003051252726936504,0.0009743643103457656,0.0009218237043640984,0.0011550647122266396,0.0,0.0,0.00046464063934722013,0.0009218237043640984,0.0011550647122266396,0.0,0.0,0.0005097236709985455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.405621341946682e-05,0.0,0.0,0.0003028694125231606,0.00012991332016713914,0.00033692562594262745,5.537038309465369e-05,0.00010985206056896386,0.00013764696885954297,0.0,0.0,3.405621341946682e-05,0.0,0.0,0.0,0.0,0.0,0.0001075913188905231,0.00010178967669893987,0.00012754463035316444,0.0,0.0 +94273,50.0,the Greater Atlanta and Macon Area,G1301130140204,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,196629.0,,40050.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.05366315595101842,0.035424335480287214,0.0,0.08908749143130565,0.07139579592127766,0.008321316021240166,0.0033473940584134573,0.0006490250250176014,0.005373960405356738,0.03970137166390704,0.008321316021240166,0.0033473940584134573,0.0006490250250176014,0.0016440491824401533,0.031694424257370624,0.0,0.0037299112229165847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023668451641518083,0.0,0.0,0.00639493319855305,0.0038124437375901946,0.008761778362704859,0.004731134708390071,0.0009916349334439436,0.000398902394267052,7.734304115406793e-05,0.00019591812129791461,0.002117634495243472,0.0,0.000249210668908336,0.0,0.0,0.0,0.007021795426504968,0.0008184036332457637,0.0003292170916617311,6.383178299995217e-05,0.0005285304282924428 +94274,81.0,the Columbus-Albany Area,G1300950010700,ComStock 90.1-2007,gen4_led,200001_500000,Electricity,183205.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,1133273.7058648225,0.0,0.0,0.020639036441661804,0.0,0.0,0.0206390364416618,0.0042605459734911845,0.005472263698943382,0.010906257458833531,0.0,0.0,0.0042605459734911845,0.005472263698943382,0.010906257458833531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002459515624092764,0.0006863842878968755,0.002459515624092764,0.0005077213472918966,0.0006521194971843954,0.0012996784368398304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005077213472918967,0.0006521194971843955,0.0012996784368398307,0.0,0.0 +94275,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,228136.0,,32475.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010404140620564144,0.005522635244756626,0.0,0.015926775865320774,0.006714895668086658,0.002004825156849631,0.002577569021801596,0.0,0.004629468288221467,0.005735488233604362,0.002004825156849631,0.002114079643919996,0.0,0.0005497298558287372,0.0009794074344822968,0.0004634893778816003,0.0040797384323927295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003689897322586898,0.0,0.0,0.0012398416463527944,0.0006472970724449046,0.0016088313786114842,0.0006834872223981462,0.00023891120023934904,0.00025193084963288123,0.0,6.551026118897541e-05,6.543819589840011e-05,3.096761127066162e-05,0.00027258392508962807,0.0,0.0,0.0,0.0006783001748924631,0.00020251591710990747,0.0002603712112154971,0.0,0.0004676422843743889 +94276,50.0,the Greater Atlanta and Macon Area,G1302230120501,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5557.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013343959277099858,0.0,0.0,0.001334395927709986,0.0005304004638901785,0.00034257269942821134,0.0004185805001946349,0.0,4.2842264196961245e-05,0.0005304004638901785,0.00034257269942821134,0.0004185805001946349,0.0,4.2842264196961245e-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.0001590139538153898,5.6999077089919335e-05,0.0001590139538153898,6.320543484678909e-05,4.082284595905197e-05,4.9880353307282e-05,0.0,5.105319702266761e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.320543484678907e-05,4.0822845959051965e-05,4.9880353307281994e-05,0.0,5.10531970226676e-06 +94277,50.0,the Greater Atlanta and Macon Area,G1301530021113,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,29340.0,,3235.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001510307646482938,0.0005502263059484985,0.0,0.0020605339524314365,0.0008791599710133182,0.0003274088539826951,0.0005087549905869951,0.0,0.00034522786720984813,0.0008192136190521197,0.0003274088539826951,0.00029969629908315246,0.0,6.398887436497056e-05,5.9946351961198526e-05,0.00020905869150384258,0.00028123899284487755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.676322740282005e-05,0.0,0.0,0.00017997963894891388,7.605707684515831e-05,0.00021674286635173392,9.762366741794765e-05,3.901650598519222e-05,3.571406913612606e-05,0.0,7.625396409647933e-06,4.0052999016831956e-06,1.3968202052867954e-05,1.8790910097751804e-05,0.0,0.0,0.0,9.247683197565482e-05,3.44393905266198e-05,5.3514776983148925e-05,0.0,3.631373188258496e-05 +94278,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,128828.0,,7452.0,,9.325022323477118,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.03305708925908198,0.006317611233610114,0.0,0.03937478887685015,0.022122819913629355,0.004766734412219823,0.01207619266752264,0.0,0.0004089534993202759,0.01580520868001924,0.004766734412219823,0.01207619266752264,0.0,0.0004089534993202759,0.006317611233610114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004221070943576587,0.0,0.0,0.003939354371043807,0.0016046268878580688,0.004361461465401465,0.0018834785304573537,0.0005680432386291885,0.0014390983427950367,0.0,4.873425916222753e-05,0.0004221070943576587,0.0,0.0,0.0,0.0,0.0,0.002450497623265715,0.0005280010140428463,0.0013376541302328156,0.0,4.529890773522676e-05 +94279,46.0,the Tallahassee-Valdosta Area,G1301850011301,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,28417.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.002461245045863168,0.0,0.0,0.002461245045863168,0.0007014109519339971,0.0006989250938238831,0.0010608783104989897,0.0,0.0,0.0007014109519339971,0.0006989250938238831,0.0010608783104989897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029330048026263747,9.145137569325307e-05,0.00029330048026263747,8.358540707252772e-05,8.328917351431837e-05,0.000126422242471369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.358540707252772e-05,8.328917351431837e-05,0.000126422242471369,0.0,0.0 +94281,35.0,Eastern Counties in South Carolina and Georgia,G1300730030307,ComStock 90.1-2004,gen5_led,_1000,NaturalGas,4349.0,,91.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007335290369939176,7.195515415319745e-05,0.0,0.0008055668982208543,0.0005643103641232944,7.766194224120967e-05,0.00015383515715511182,0.0,9.676727627498967e-06,0.000502031937597596,7.766194224120967e-05,0.00015383515715511182,0.0,0.0,6.227842652569847e-05,0.0,9.676727627498967e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.808258980312889e-06,0.0,0.0,8.741754142300183e-05,3.323815360951994e-05,9.222580040331472e-05,5.982912125804725e-05,9.255279219325595e-06,1.8333140945628977e-05,0.0,0.0,4.161631048477706e-06,0.0,6.466279318351817e-07,0.0,0.0,0.0,6.460540412236305e-05,8.891173160032086e-06,1.7611908495910203e-05,0.0,1.1078458570008028e-06 +94282,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6034.0,,268.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014489452248389267,0.00021247447243628076,0.0,0.0016614196972752075,0.0009266500541752005,0.0003151139509467613,0.00037681342795628465,0.0,4.284226419696124e-05,0.0007570178459358809,0.0003151139509467613,0.00037681342795628465,0.0,0.0,0.0001696322082393195,0.0,4.284226419696124e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4198098735542437e-05,0.0,0.0,0.00017266658596684788,7.322981402391297e-05,0.00018686468470239032,9.021161375389914e-05,3.755121254259321e-05,4.490375967035556e-05,0.0,0.0,1.1335266837912625e-05,0.0,2.86283189762981e-06,0.0,0.0,0.0,0.00010422301510382225,3.54417786099217e-05,4.238129746635257e-05,0.0,4.818593522293815e-06 +94283,81.0,the Columbus-Albany Area,G1302150011500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,158765.0,,4362.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014000133562442384,0.001270618785279472,0.0,0.015270752347721857,0.009621323599498894,0.004706358859280208,0.0009430698889427564,0.0,0.0,0.008350704814219422,0.004706358859280208,0.0009430698889427564,0.0,0.0,0.001270618785279472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.4894613494386e-05,0.0,0.0,0.0016683698216194902,0.0004963358086075124,0.0017532644351138762,0.000995137927731724,0.0005608480130217287,0.00011238388086603755,0.0,0.0,8.4894613494386e-05,0.0,0.0,0.0,0.0,0.0,0.0011046426594849316,0.0005403461086244442,0.00010827566700450061,0.0,0.0 +94284,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,33559.0,,2314.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.00705459150900855,0.0015917530367204715,0.0,0.008646344545729025,0.0034818611528658855,0.0002844414050479135,0.003207173663876095,0.0003786097269914107,0.0012943303169187328,0.0034818611528658855,0.0002844414050479135,0.0016154206271556232,0.0003786097269914107,0.0012943303169187328,0.0,0.0015917530367204715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010635141168446963,0.0,0.0,0.0008406812319568383,0.00037469722129218554,0.000947032643641308,0.00041492626748920416,3.389630009191283e-05,0.00019250636996224013,4.511814628976494e-05,0.00015424269484587763,0.0,0.00010635141168446963,0.0,0.0,0.0,0.0,0.00038136765831513897,3.115481858939279e-05,0.00035128118448826695,4.146905883343533e-05,0.0001417677788912687 +94285,50.0,the Greater Atlanta and Macon Area,G1301510070502,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,30764.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0073869822910262424,0.0,0.0,0.0073869822910262424,0.0033517868703591726,0.0016328857568351466,0.002267331719489374,0.0,0.0001349779443425497,0.0033517868703591726,0.0016328857568351466,0.002267331719489374,0.0,0.0001349779443425497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008802928320222112,0.0002698819867452429,0.0008802928320222112,0.00039942615809810365,0.00019458793464271977,0.0002701936706830532,0.0,1.608506859833453e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00039942615809810365,0.00019458793464271977,0.0002701936706830532,0.0,1.608506859833453e-05 +94286,50.0,the Greater Atlanta and Macon Area,G1301210006900,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,51217.0,,5989.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004405677121673021,0.0017628723649526432,0.0,0.006168549486625663,0.0025847093319988257,0.0013813391794596022,0.0022025009751672356,0.0,0.0,0.0008218369670461828,0.0013813391794596022,0.0022025009751672356,0.0,0.0,0.0017628723649526432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011778542464898318,0.0,0.0,0.000525016386122179,0.0002674128285387763,0.0006428018107711621,9.793678985180579e-05,0.00016461163266850065,0.00026246796360187256,0.0,0.0,0.00011778542464898318,0.0,0.0,0.0,0.0,0.0,0.0002693430347812319,0.00014394426562856351,0.0002295145103613668,0.0,0.0 +94287,50.0,the Greater Atlanta and Macon Area,G1300770170200,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,61758.0,,7979.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0031790183418926275,0.0013568690987538008,0.0,0.004535887440646429,0.002346365108884108,0.0005234534602042189,0.0008257738527775393,0.0,0.0008402595580577224,0.0021101080429619043,0.0005234534602042189,0.0003986139854456271,0.0,0.00014682512291945725,0.00023625706592220357,0.0004271598673319121,0.000693434435138265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.065749563675178e-05,0.0,0.0,0.0003788374552644326,0.0002172553564316499,0.00046949495090118433,0.00025145748635498104,6.237893446536962e-05,4.7502056181636004e-05,0.0,1.749686536963472e-05,1.5785217559059657e-05,2.854014719946456e-05,4.6330946246515807e-05,0.0,0.0,0.0,0.00024286461822668192,5.418096454408725e-05,8.547316474194083e-05,0.0,8.697253296442904e-05 +94288,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,30415.0,,3264.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.00624523163609738,0.002245121972672688,0.0,0.00849035360877007,0.0022971189516590063,0.00045212269728241205,0.003662452039883194,0.0003704336502956311,0.0017082262696498241,0.0022971189516590063,0.00045212269728241205,0.0014173300672105059,0.0003704336502956311,0.0017082262696498241,0.0,0.002245121972672688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015000621344891493,0.0,0.0,0.0007442318675661847,0.00034567782063271084,0.0008942380810150997,0.0002737431094682621,5.387856511561161e-05,0.00016890041304167463,4.414384340452633e-05,0.00020356593653611,0.0,0.00015000621344891493,0.0,0.0,0.0,0.0,0.00024194177743941324,4.7619375096882854e-05,0.0003857441320903268,3.9015557166148476e-05,0.00017991723922232807 +94289,85.0,Rural Climate Zone 3A,G1300910960400,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,47390.0,,6591.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.009756784856963727,0.004533634527809822,0.0,0.014290419384773548,0.0046620132759277655,0.0002988571192220512,0.0074470431904059735,0.0003785380070203952,0.0015038960722263482,0.0046620132759277655,0.0002988571192220512,0.0029134086625961526,0.0003785380070203952,0.0015038960722263482,0.0,0.004533634527809822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030290946958836024,0.0,0.0,0.0011626989500465301,0.000649338949205574,0.0014656084196348904,0.0005555639506753499,3.5614279071184145e-05,0.0003471858037988103,4.510971080818574e-05,0.0001792166589497625,0.0,0.00030290946958836024,0.0,0.0,0.0,0.0,0.00047813053806731537,3.0650430782063944e-05,0.0007637598944697888,3.8822407887625045e-05,0.0001542377929131507 +94290,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,38494.0,,1526.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0033866901237703953,0.0004490810089542848,0.0,0.00383577113272468,0.0012864469167871053,0.0013668536852870863,0.0011824705306504883,0.0,0.0,0.0008373659078328205,0.0013668536852870863,0.0011824705306504883,0.0,0.0,0.0004490810089542848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.000518229076629e-05,0.0,0.0,0.0004035846595529652,0.0001434028320753498,0.00043358984184373146,9.978711440470722e-05,0.00016288504677870074,0.00014091249836955722,0.0,0.0,3.000518229076629e-05,0.0,0.0,0.0,0.0,0.0,0.00014541803874358356,0.00015450709980346686,0.00013366470329668104,0.0,0.0 +94291,50.0,the Greater Atlanta and Macon Area,G1300970080301,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,34731.0,,1381.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0033721432503852843,0.00040648383541307326,0.0,0.003778627085798357,0.000887574103735862,0.0016148870833851204,0.0012761658986773748,0.0,0.0,0.00048109026832278884,0.0016148870833851204,0.0012761658986773748,0.0,0.0,0.00040648383541307326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.715919481045393e-05,0.0,0.0,0.0004018510599772661,0.00014703885594775115,0.00042901025478772,5.733049278027306e-05,0.00019244262121063846,0.00015207794598635457,0.0,0.0,2.715919481045393e-05,0.0,0.0,0.0,0.0,0.0,0.00010077162518043314,0.00018334784125702405,0.00014489078835026287,0.0,0.0 +94292,50.0,the Greater Atlanta and Macon Area,G1301350050719,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11446.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002459460251785785,0.0,0.0,0.002459460251785785,0.0011428463449297502,0.0006441226902817262,0.0005774607888478445,0.0,9.503042772646422e-05,0.0011428463449297502,0.0006441226902817262,0.0005774607888478445,0.0,9.503042772646422e-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.0002930849406839161,8.847516416013282e-05,0.0002930849406839161,0.00013618884589468856,7.675776030017617e-05,6.88139037513906e-05,0.0,1.1324430737660812e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00013618884589468856,7.675776030017617e-05,6.88139037513906e-05,0.0,1.1324430737660812e-05 +94293,50.0,the Greater Atlanta and Macon Area,G1300590000600,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,NaturalGas,8000.0,,44.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0015559681782575906,3.523321341294496e-05,0.0,0.001591284098744275,0.0009711464598469477,0.00019295560303380423,0.00039186611537683855,0.0,3.523321341294496e-05,0.0009711464598469477,0.00019295560303380423,0.00039186611537683855,0.0,0.0,0.0,0.0,3.523321341294496e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.35670927739087e-06,0.0,0.0,0.00018542326601241765,5.785893059628938e-05,0.0001877799752898085,0.00011573061125380364,2.299433793690376e-05,4.6698316821710244e-05,0.0,0.0,0.0,0.0,2.35670927739087e-06,0.0,0.0,0.0,0.00011460044022104631,2.2769785984985614e-05,4.6242282896211674e-05,0.0,4.157706313589314e-06 +94294,85.0,Rural Climate Zone 3A,G1301750950500,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,4715.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,5759.960461090961,0.0,0.0,0.0006444262937727708,0.0,0.0,0.0006444262937727708,0.0005174409024380144,7.17363732647764e-05,5.142744567383513e-05,0.0,3.87616628751836e-06,0.0005174409024380144,7.17363732647764e-05,5.142744567383513e-05,0.0,3.87616628751836e-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,7.679509571428853e-05,2.4344043858485958e-05,7.679509571428853e-05,6.166248027617984e-05,8.548691610350316e-06,6.128514076826481e-06,0.0,4.6191560451664567e-07,0.0,0.0,0.0,0.0,0.0,0.0,6.166248027617984e-05,8.548691610350316e-06,6.128514076826481e-06,0.0,4.6191560451664567e-07 +94295,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,24669.0,,548.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0020755495439793333,0.0001597347594431368,0.0,0.0022352843034224696,0.0015873243066169102,0.0005732409421886902,7.471905461686949e-05,0.0,0.0,0.0014275895471737732,0.0005732409421886902,7.471905461686949e-05,0.0,0.0,0.0001597347594431368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0671995533023892e-05,0.0,0.0,0.00024733875454690125,6.20558253515858e-05,0.0002580107500799251,0.00017012276176513747,6.831188448742451e-05,8.90410829433923e-06,0.0,0.0,1.0671995533023892e-05,0.0,0.0,0.0,0.0,0.0,0.000183219080607896,6.616712032745543e-05,8.62454914457375e-06,0.0,0.0 +94296,85.0,Rural Climate Zone 3A,G1302770960300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,623517.0,,2151.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,280597.8237794184,0.0,0.0,0.03209567754619379,0.00036579508645710935,0.0,0.032461472632650895,0.0200056277796425,0.0059435185641458395,0.0022270575068885725,0.0,0.004285268781973981,0.0200056277796425,0.0059435185641458395,0.001861262420431463,0.0,0.004285268781973981,0.0,0.00036579508645710935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4439745663768183e-05,0.0,0.0,0.003824780006734023,0.0010933013792547113,0.0038492197523977913,0.0023840320879224917,0.0007082776470781614,0.00022180305378210856,0.0,0.0005106672179512611,0.0,2.443974566376818e-05,0.0,0.0,0.0,0.0,0.0023722293341387865,0.0007047711394596965,0.00026408024806055217,0.0,0.0005081390307387557 +94297,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,12178.0,,1334.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010850617202615796,0.0003927655813980001,0.0,0.00147782730165958,0.000575951841388988,0.00041305141116078174,0.0004887933595035122,0.0,0.0,0.0001831862599909879,0.00041305141116078174,0.0004887933595035122,0.0,0.0,0.0003927655813980001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.624295713087171e-05,0.0,0.0,0.0001293035055134702,6.656519573125967e-05,0.0001555464626443419,2.182974953076998e-05,4.9222080572061187e-05,5.82480182235841e-05,0.0,0.0,2.624295713087171e-05,0.0,0.0,0.0,0.0,0.0,6.0620934178808886e-05,4.347509741101876e-05,5.144720086672826e-05,0.0,0.0 +94298,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030402,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,23133.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0020610832693474215,0.0,0.0,0.0020610832693474215,0.0010099028744385056,0.00041796174816841416,0.0006332186467405015,0.0,0.0,0.0010099028744385056,0.00041796174816841416,0.0006332186467405015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024561613492018216,9.205839250725416e-05,0.00024561613492018216,0.00012034857802853577,4.980786106818089e-05,7.545969582346548e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012034857802853577,4.980786106818089e-05,7.545969582346548e-05,0.0,0.0 +94299,50.0,the Greater Atlanta and Macon Area,G1301210010002,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,386688.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,2015986.1613818365,0.0,0.0,0.061289449993217934,0.0,0.0,0.06128944999321795,0.034004460368679726,0.006572886145803669,0.02032978245744594,0.0,0.00038232102128860665,0.034004460368679726,0.006572886145803669,0.02032978245744594,0.0,0.00038232102128860665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0073037469071445,0.0023327305275385123,0.0073037469071445,0.004052246712514876,0.000783278310765372,0.002422661416653632,0.0,4.5560467210620775e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.004052246712514875,0.0007832783107653718,0.0024226614166536317,0.0,4.556046721062076e-05 +94300,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,104730.0,,5222.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.009795109573218904,0.001537027552207848,0.0,0.011332137125426755,0.0015497637388213947,0.0037626071113109573,0.006019766275294401,0.0,0.0,1.2736186613546659e-05,0.0037626071113109573,0.006019766275294401,0.0,0.0,0.001537027552207848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010269530105176188,0.0,0.0,0.0011672642836802931,0.0004808169823178468,0.0012699595847320549,1.517746752412755e-06,0.0004483826200947195,0.0007173639168331611,0.0,0.0,0.00010269530105176188,0.0,0.0,0.0,0.0,0.0,0.00017367750605226616,0.00042166441437324143,0.0006746176643065471,0.0,0.0 +94301,50.0,the Greater Atlanta and Macon Area,G1302470060404,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,37035.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003076784875845384,0.0,0.0,0.003076784875845384,0.0020691407144979674,0.0006943708567464444,0.0003132733046009723,0.0,0.0,0.0020691407144979674,0.0006943708567464444,0.0003132733046009723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036665626617963165,9.30431718985847e-05,0.00036665626617963165,0.00024657668286595045,8.274722996636221e-05,3.733235334731901e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024657668286595045,8.274722996636221e-05,3.733235334731901e-05,0.0,0.0 +94302,50.0,the Greater Atlanta and Macon Area,G1302270050600,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,27215.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.002669110424191879,0.0,0.0,0.002669110424191879,0.0016565153661361087,0.0008083933490357648,0.00020423208261944323,0.0,0.0,0.0016565153661361087,0.0008083933490357648,0.00020423208261944323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003180738301133132,8.11824388058476e-05,0.0003180738301133132,0.00019740441698210977,9.633500601376749e-05,2.433802669308933e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019740441698210977,9.633500601376749e-05,2.433802669308933e-05,0.0,0.0 +94303,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,47230.0,,5682.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.003965158512875795,0.0016724914744059088,0.0,0.005637680676888001,0.0024168678751566894,0.001206653940413078,0.002014158861318234,0.0,0.0,0.000744376400750781,0.001206653940413078,0.002014158861318234,0.0,0.0,0.0016724914744059088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011174678083355385,0.0,0.0,0.00047252136022518665,0.00024662340076057486,0.0005842681410587406,8.870610046486821e-05,0.00014379494776655075,0.00024002396922322416,0.0,0.0,0.00011174678083355385,0.0,0.0,0.0,0.0,0.0,0.0002504751477662381,0.00012505310163390073,0.00020873989165860182,0.0,0.0 +94304,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7095.0,,152.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016955777187295416,0.00012075232765938884,0.0,0.0018163300463889301,0.0009983570871071798,0.0004459565416023456,0.0003264448200490464,0.0,4.5488890556619085e-05,0.000877604759447791,0.0004459565416023456,0.0003264448200490464,0.0,4.5488890556619085e-05,0.00012075232765938884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.065519594904288e-06,0.0,0.0,0.00020205825412850965,7.510206366632456e-05,0.00021012377372341395,0.0001045822220651488,5.314365671240056e-05,3.8901708650564735e-05,0.0,5.420810680975577e-06,8.065519594904288e-06,0.0,0.0,0.0,0.0,0.0,0.00011549583682962205,5.159088328931506e-05,3.77650623781392e-05,0.0,5.2624231841845855e-06 +94305,50.0,the Greater Atlanta and Macon Area,G1300630040616,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Propane,12007.0,,,2015.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.001058762929201153,0.0,0.0001898957436848244,0.0012486282992865399,0.001006854447762035,0.00020256153465036692,3.9212316874137596e-05,0.0,0.0,0.0008169587040772107,0.00020256153465036692,3.9212316874137596e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001898957436848244,0.0,0.0,0.0,0.0,1.5313710016702683e-05,0.00012616927200993528,4.4347514009682495e-05,0.00014148298202663794,9.735426327532357e-05,2.413858726932866e-05,4.672801944025085e-06,0.0,0.0,0.0,0.0,0.0,1.5313710016702683e-05,0.0,0.0,0.00011408741081517479,2.295239502628739e-05,4.443176185175741e-06,0.0,0.0 +94306,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,61153.0,,12623.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0033539106269400284,0.002146597126764373,0.0,0.0055005077537044,0.001951634072589472,0.001048307618960622,0.001781316220788445,0.0,0.0007192143806430219,0.0016579306356662975,0.001048307618960622,0.000524517281889422,0.0,0.00012313736006226673,0.00029370343692317465,0.0012567989388990227,0.0005960770205807552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001434230704864115,0.0,0.0,0.000399678828946717,0.00023884214518131696,0.0005431018994331285,0.0001975722816271218,0.00012492472463536357,6.250567659852785e-05,0.0,1.4674033193955179e-05,1.9623546594152144e-05,8.397195754783463e-05,3.982638170533057e-05,0.0,0.0,0.0,0.0001926978779564349,0.00010350641877821279,0.0001758812579347265,0.0,7.101284348954627e-05 +94307,50.0,the Greater Atlanta and Macon Area,G1301210011410,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6666.0,,436.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013325763720877211,0.0003460463965252622,0.0,0.0016786227686129834,0.0011288688494678072,0.0002712792018649284,0.00023505350356711172,0.0,4.325579956565778e-05,0.0007828224529425448,0.0002712792018649284,0.00023505350356711172,0.0,4.325579956565778e-05,0.0003460463965252622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.312224921368673e-05,0.0,0.0,0.00015879722145772075,7.344771941582971e-05,0.00018191947067140748,9.328548293801682e-05,3.232714041592131e-05,2.8010284470136697e-05,0.0,5.154601962660623e-06,2.3122249213686725e-05,0.0,0.0,0.0,0.0,0.0,0.00012234030622753454,2.939967795635675e-05,2.547374535120911e-05,0.0,4.687814503406883e-06 +94308,50.0,the Greater Atlanta and Macon Area,G1301350050220,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,3098.0,,16.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007437847141375917,1.2323353987156806e-05,0.0,0.0007561080681247485,0.0004195729850795066,0.00019444433036111175,0.00012976739869697334,0.0,1.2323353987156806e-05,0.0004195729850795066,0.00019444433036111175,0.00012976739869697334,0.0,0.0,0.0,0.0,1.2323353987156806e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.221999846022307e-07,0.0,0.0,8.863466279358379e-05,3.389260895662599e-05,8.945686277818602e-05,4.999929326719122e-05,2.317136575422167e-05,1.5464003772170906e-05,0.0,0.0,0.0,0.0,8.221999846022307e-07,0.0,0.0,0.0,4.964063277988817e-05,2.3005150338166193e-05,1.5353075661668547e-05,0.0,1.4580039984631061e-06 +94309,50.0,the Greater Atlanta and Macon Area,G1300590030200,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,51511.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.004066174503930712,0.0,0.0,0.004066174503930712,0.0029949280253606433,0.0008927104610749639,0.00017850564389566747,0.0,0.0,0.0029949280253606433,0.0008927104610749639,0.00017850564389566747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000484557900968231,0.00013864900311164483,0.000484557900968231,0.0003568995959511361,0.00010638252410778415,2.1272161348080955e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003568995959511361,0.00010638252410778415,2.1272161348080955e-05,0.0,0.0 +94310,50.0,the Greater Atlanta and Macon Area,G1300970080604,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,50935.0,,5475.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004538256220879097,0.001611511226692373,0.0,0.00614976744757147,0.0025225015000333822,0.0014785638522107247,0.0021487020953273625,0.0,0.0,0.0009109902733410093,0.0014785638522107247,0.0021487020953273625,0.0,0.0,0.001611511226692373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010767104144244276,0.0,0.0,0.0005408170060843743,0.00025759852398171457,0.000648488047526817,0.00010856130818123675,0.00017619817765650262,0.00025605752024663485,0.0,0.0,0.00010767104144244275,0.0,0.0,0.0,0.0,0.0,0.0002659957610732246,0.00015591337295892425,0.0002265789134946681,0.0,0.0 +94311,35.0,Eastern Counties in South Carolina and Georgia,G1300730030308,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,245536.0,,4057.0,,9.729435225087556,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1459415.2837631335,0.0,0.0,0.05513439000176164,0.003588818826173628,0.0,0.05872320882793527,0.042655643573748465,0.008160673566909294,0.0020640065515691894,0.0006753991593107294,0.005167393759144826,0.042655643573748465,0.008160673566909294,0.0020640065515691894,0.0006753991593107294,0.0015785749329711993,0.0,0.0,0.003588818826173628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002397854045816339,0.0,0.0,0.00657025528993298,0.0016032493438496813,0.006810040694514614,0.005083187967200904,0.0009724911923517945,0.00024596354405064604,8.048597071874414e-05,0.00018811562626480912,0.0,0.0,0.0002397854045816339,0.0,0.0,0.0,0.004946709731736427,0.0009463808295650326,0.00023935968232111286,7.832500729692749e-05,0.0005992547493013831 +94312,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,79818.0,,1212.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0038900767562824253,0.00020613318186953384,0.0,0.00409620993815196,0.001812326622912117,0.0007331859054420235,0.0010105951402201697,0.0,0.0005401199999390685,0.0017090649980017294,0.0007331859054420235,0.0009077235832610233,0.0,0.0005401199999390685,0.00010326162491038751,0.00010287155695914635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3772475586749644e-05,0.0,0.0,0.0004635728090772861,0.00013156111182498814,0.0004773452846640358,0.00020366592014921353,8.737232477809652e-05,0.00010817163714788715,0.0,6.436503989444656e-05,6.899268692347319e-06,6.873206894402326e-06,0.0,0.0,0.0,0.0,0.00021119658923255652,8.544064880199457e-05,0.00011776809103347086,0.0,6.294202177537146e-05 +94313,50.0,the Greater Atlanta and Macon Area,G1300890021602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,18268.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001533259299617712,0.0,0.0,0.001533259299617712,0.0010115016084760113,0.00041851782665278234,0.00010330061168779395,0.0,0.0,0.0010115016084760113,0.00041851782665278234,0.00010330061168779395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018271619727936714,5.4593158620563594e-05,0.00018271619727936714,0.00012053912047934794,4.987413792219492e-05,1.2310178029855935e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012053912047934794,4.987413792219492e-05,1.2310178029855935e-05,0.0,0.0 +94314,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,179969.0,,3522.0,,9.325022323477118,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.0465752694652712,0.0029857052432544283,0.0,0.049560974708525635,0.027472271079905495,0.004603046951502047,0.01674243429203398,0.0,0.0007432223850841149,0.025229788221735182,0.004603046951502047,0.01674243429203398,0.0,0.0,0.0022424828581703135,0.0,0.0007432223850841149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019948495198094675,0.0,0.0,0.0055502892996464204,0.0019386035060184148,0.005749774251627367,0.0030065875132264616,0.000548536649041653,0.001995165137378307,0.0,0.0,0.000149827778978141,0.0,4.965717300280575e-05,0.0,0.0,0.0,0.003187172121168858,0.0005340185699823509,0.0019423592487445612,0.0,8.62243117315973e-05 +94315,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,NaturalGas,30338.0,,3530.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002729993928212151,0.0010391193796339183,0.0,0.003769082618239772,0.0018158733150287758,0.0008250900653137393,0.0011281499275035544,0.0,0.0,0.0007767539353948573,0.0008250900653137393,0.0011281499275035544,0.0,0.0,0.0010391193796339183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.942705995883248e-05,0.0,0.0,0.0003253276157882658,0.00017229266252268848,0.00039475467574709823,9.256412743073471e-05,9.832424203774411e-05,0.000134439246319787,0.0,0.0,6.942705995883248e-05,0.0,0.0,0.0,0.0,0.0,0.00019018539901541413,8.641576589987002e-05,0.0001181567251061641,0.0,0.0 +94316,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,74567.0,,3137.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006130759178513017,0.0009137897390847635,0.0,0.007044548917597782,0.004885927579156196,0.0016945431126321742,0.00046407822580941005,0.0,0.0,0.003972137840071432,0.0016945431126321742,0.00046407822580941005,0.0,0.0,0.0009137897390847635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.10547136252094e-05,0.0,0.0,0.0007305912534966038,0.0002470750437383692,0.0007916459671218132,0.0004733523335592749,0.0002019355744882237,5.530334544910504e-05,0.0,0.0,6.10547136252094e-05,0.0,0.0,0.0,0.0,0.0,0.0005490663644943818,0.00019042783816550663,5.2151764461924626e-05,0.0,0.0 +94317,50.0,the Greater Atlanta and Macon Area,G1300590140300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,35211.0,,1289.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0017399690179568817,0.0002192181885975328,0.0,0.001959187206554415,0.0008032031026898122,0.0003340400091537948,0.0005512014758266015,0.0,0.0002707248885227863,0.000766873592140124,0.0003340400091537948,0.0003683127977787569,0.0,0.0002707248885227863,3.632951054968819e-05,0.00018288867804784465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4647044887969452e-05,0.0,0.0,0.0002073478227468242,6.885348692164355e-05,0.00022199486763479367,9.138643735105359e-05,3.9806725231060974e-05,4.38909290459039e-05,0.0,3.2261618235300954e-05,2.4273532008613244e-06,1.221969168710813e-05,0.0,0.0,0.0,0.0,9.101068334305098e-05,3.784996521452242e-05,6.245646064697838e-05,0.0,3.06757494087337e-05 +94318,50.0,the Greater Atlanta and Macon Area,G1300570091006,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,34785.0,,9058.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002046154629319774,0.001540325148367087,0.0,0.003586497508048281,0.0016992423777750206,0.00046973046510145894,0.00075550843046987,0.0,0.0006619985043405114,0.0010495842049828659,0.00046973046510145894,0.00041980176734259027,0.0,0.00010705592225427883,0.0006496581727921547,0.0003357066631272798,0.0005549425820862326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001029159540916583,0.0,0.0,0.00024383668208525475,0.00015601677157731195,0.00034675263617691305,0.00012507712097848276,5.597696109740264e-05,5.0027045178092415e-05,0.0,1.2757667727555094e-05,4.340654358414333e-05,2.2430050932621107e-05,3.707817493081799e-05,0.0,0.0,0.0,0.00016428751802413977,4.5414858563550315e-05,7.304467362138838e-05,0.0,6.400387174677378e-05 +94319,50.0,the Greater Atlanta and Macon Area,G1301350050421,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,7267.0,,900.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0014788851855325562,0.000713762046370223,0.0,0.002192647231902779,0.0016432241410525598,0.00023199334183875733,0.0002775649394691158,0.0,3.994751661608548e-05,0.0009694096112984223,0.00023199334183875733,0.0002775649394691158,0.0,0.0,0.0006738145297541375,0.0,3.994751661608548e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.768803105250771e-05,0.0,0.0,0.00017624055931171904,0.00010292578020108147,0.00022392859036422674,0.00011552573098219666,2.7646930757193214e-05,3.307775387562939e-05,0.0,0.0,4.501904854980072e-05,0.0,2.6689825027069778e-06,0.0,0.0,0.0,0.00016781763167577447,2.369279529145095e-05,2.834688805636699e-05,0.0,4.079721969971767e-06 +94320,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,40253.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0041518740775910185,0.0,0.0,0.004151874077591019,0.0013344454610367126,0.0015412627178769314,0.0012761658986773748,0.0,0.0,0.0013344454610367126,0.0015412627178769314,0.0012761658986773748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004947717004079829,0.00016904895037921224,0.0004947717004079829,0.00015902357285410107,0.0001836696300148523,0.00015207849753902958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015902357285410104,0.00018366963001485226,0.00015207849753902952,0.0,0.0 +94321,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4209.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010105977340205974,0.0,0.0,0.0010105977340205974,0.0004772198154758038,0.0003600238919872052,0.0001304290552868878,0.0,4.2924971270700556e-05,0.0004772198154758038,0.0003600238919872052,0.0001304290552868878,0.0,4.2924971270700556e-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.00012043346532408004,3.6992835281725474e-05,0.00012043346532408004,5.687053727145772e-05,4.2904237217097996e-05,1.5543299354781425e-05,0.0,5.115391480742904e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.687053727145772e-05,4.2904237217097996e-05,1.5543299354781425e-05,0.0,5.115391480742904e-06 +94322,46.0,the Tallahassee-Valdosta Area,G1301850010401,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,112161.0,,2749.0,,5.759960461090961,Office,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,215998.51729091106,0.0,0.0,0.01901903771945963,0.001439367946062275,0.0,0.020458351071630528,0.010707663696758287,0.0014242454381518167,0.008030543045476067,0.0,0.0002959534851357327,0.009564249235831745,0.0014242454381518167,0.008030543045476067,0.0,0.0,0.0011434144609265425,0.0,0.0002959534851357327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.616910773449768e-05,0.0,0.0,0.0022664600643004917,0.0008350420432799645,0.0023626291720349893,0.001139752139817778,0.00016972443374621806,0.0009569834907364955,0.0,0.0,7.63954406368792e-05,0.0,1.9773667097618507e-05,0.0,0.0,0.0,0.0012365727093901551,0.00016447874066358224,0.0009274058891693611,0.0,3.4178137578092565e-05 +94323,50.0,the Greater Atlanta and Macon Area,G1300590140400,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,233230.0,,24614.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010794634100479388,0.004185836915130326,0.0,0.01498047101560971,0.007361787904497283,0.002096952114788225,0.0028556165495908638,0.0,0.0026660967163719194,0.006486564073719218,0.002096952114788225,0.0018268477889151406,0.0,0.00038425239269538437,0.0008752238307780665,0.0010287687606757236,0.002281844323676535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002796731259093558,0.0,0.0,0.0012863761733677306,0.0005789925461811655,0.0015660492992770863,0.0007729915987689627,0.00024988982600501975,0.0002177020032504478,0.0,4.579063244959193e-05,5.84773343030355e-05,6.873630792830719e-05,0.00015245948367801303,0.0,0.0,0.0,0.0007695968155641646,0.00021921409457418498,0.0002985244116710979,0.0,0.0002787121239464747 +94324,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,6095.0,,806.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001414621789237114,0.0006393256800048463,0.0,0.002053947469241961,0.0014677197305777493,0.00026813633306283467,0.0002582114842141178,0.0,5.9962628460997896e-05,0.000828394050572903,0.00026813633306283467,0.0002582114842141178,0.0,5.9962628460997896e-05,0.0006393256800048463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2717026921242455e-05,0.0,0.0,0.00016857973465069304,9.14477235326713e-05,0.0002112967615719355,9.871928334081743e-05,3.1953665793822896e-05,3.077092677616135e-05,0.0,7.145714898371872e-06,4.2717026921242455e-05,0.0,0.0,0.0,0.0,0.0,0.0001509894632703377,2.758412261481094e-05,2.656311869322633e-05,0.0,6.1685653595736996e-06 +94325,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,Electricity,133680.0,,11469.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.011667175557378775,0.003375979451172497,0.0,0.015043155008551273,0.005245129922734086,0.005123936667464457,0.004674088418352729,0.0,0.0,0.0018691504715615884,0.005123936667464457,0.004674088418352729,0.0,0.0,0.003375979451172497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022556240141388616,0.0,0.0,0.0013903553783839906,0.0006022437786240884,0.0016159177797978768,0.00022274314793361064,0.000610609900320099,0.0005570023301302809,0.0,0.0,0.00022556240141388613,0.0,0.0,0.0,0.0,0.0,0.0005634256041819597,0.0005504071691614834,0.0005020850064544337,0.0,0.0 +94326,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,102200.0,,7794.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009105913084591393,0.00229407876035958,0.0,0.011399991844950972,0.0037757422628063734,0.0030577589234716167,0.0045664599690666855,0.0,0.0,0.0014816635024467928,0.0030577589234716167,0.0045664599690666855,0.0,0.0,0.00229407876035958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015327777540684065,0.0,0.0,0.001085134009681109,0.0004500034483979004,0.0012384117850879498,0.0001765669672521798,0.0003643872031767628,0.0005441761820312783,0.0,0.0,0.00015327777540684065,0.0,0.0,0.0,0.0,0.0,0.0004101690404090079,0.0003321725785674348,0.0004960668322170067,0.0,0.0 +94327,50.0,the Greater Atlanta and Macon Area,G1301210001001,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,9829.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0020134210031096996,0.0,0.0,0.0020134210031097,0.0013294335032856275,0.000227609866930574,0.00041568575261375913,0.0,4.060917320599995e-05,0.0013294335032856275,0.000227609866930574,0.00041568575261375913,0.0,4.060917320599995e-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.000239937769687133,6.806634941079597e-05,0.000239937769687133,0.0001584275266986106,2.7124085695817863e-05,4.953693848371388e-05,0.0,4.839362673200063e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015842752669861055,2.7124085695817856e-05,4.9536938483713866e-05,0.0,4.839362673200062e-06 +94328,50.0,the Greater Atlanta and Macon Area,G1301350050436,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,89798.0,,5188.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.00791854924141909,0.0015114510552214058,0.0,0.009429969923041057,0.005824502175382165,0.0026386760775552517,0.0009667916701036405,0.0,0.0,0.004313051120160758,0.0026386760775552517,0.0009667916701036405,0.0,0.0,0.0015114510552214058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010098540942689021,0.0,0.0,0.0009436364582120126,0.00030763139446637503,0.0010446218676389027,0.0005139770125855114,0.00031444534500953326,0.00011521048106054106,0.0,0.0,0.00010098540942689021,0.0,0.0,0.0,0.0,0.0,0.0006452196974295777,0.00029230408524367254,0.00010709808496565253,0.0,0.0 +94329,50.0,the Greater Atlanta and Macon Area,G1301350050545,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,21525.0,,1304.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0018980766024645488,0.00037991298176739974,0.0,0.0022779895842319495,0.0012693734677025241,0.0007526274204680525,0.00025601906966081007,0.0,0.0,0.0008894604859351243,0.0007526274204680525,0.00025601906966081007,0.0,0.0,0.00037991298176739974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5383273994713678e-05,0.0,0.0,0.00022619039891660898,9.142202300772034e-05,0.00025157367291132264,0.0001059954176101195,8.968926557031662e-05,3.0509335303773295e-05,0.0,0.0,2.5383273994713678e-05,0.0,0.0,0.0,0.0,0.0,0.0001401854283165108,8.31176954502015e-05,2.82739035049739e-05,0.0,0.0 +94330,50.0,the Greater Atlanta and Macon Area,G1300130180503,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,70015.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005915697820338892,0.0,0.0,0.00591569782033889,0.0013366244230838494,0.0017576858214883317,0.002821418265373008,0.0,0.0,0.0013366244230838494,0.0017576858214883317,0.002821418265373008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007049611431971998,0.0002181757182275949,0.0007049611431971998,0.0001592826932577345,0.00020945968569215044,0.00033622242146250683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015928269325773454,0.0002094596856921505,0.00033622242146250694,0.0,0.0 +94331,50.0,the Greater Atlanta and Macon Area,G1300450910600,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,NaturalGas,47324.0,,3794.0,,9.325022323477118,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.01214327624348635,0.003216653048252025,0.0,0.015359840907580321,0.00836564894405953,0.0033805172772859112,0.0030123972589870245,0.0,0.0006014541955639674,0.00575045009137147,0.0033805172772859112,0.0030123972589870245,0.0,0.0,0.0026151988526880578,0.0,0.0006014541955639674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021491578760231072,0.0,0.0,0.0014470894070745767,0.0006347074300145866,0.001662005194676887,0.0006852693825192596,0.00040284933359866957,0.00035898122351609113,0.0,0.0,0.00017473053908239743,0.0,4.0185248519913296e-05,0.0,0.0,0.0,0.0009052015633188254,0.0003657874654659583,0.0003259551920486367,0.0,6.508010098556386e-05 +94332,50.0,the Greater Atlanta and Macon Area,G1301170130606,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,18221.0,,7534.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0036537739233903055,0.0051827002655011,0.0,0.008836474188891405,0.0025379546143294283,0.00048733720305107716,0.0036529850037091338,0.00036756485145500667,0.0017906325163467613,0.0015706673652418823,0.00048733720305107716,0.0010184953083926926,0.00036756485145500667,0.00020970919524964673,0.0009672872490875462,0.0026344896953164406,0.0015809233210971145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034627795615122724,0.0,0.0,0.0004354112996508456,0.0004554122873803297,0.0007816892558020728,0.00018717258734622668,5.807478223824705e-05,0.00012137159419651895,4.3801804116411494e-05,2.499053175344141e-05,6.462852074521681e-05,0.00017602131330422252,0.00010562812210178796,0.0,0.0,0.0,0.0002245117013105314,4.3110662401589884e-05,0.0003231491506641029,3.25154002660998e-05,0.000158402341159749 +94333,81.0,the Columbus-Albany Area,G1302150003302,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,50250.0,,3045.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004477183904346668,0.0008964433999558982,0.0,0.005373627304302567,0.001766401669676879,0.0014585235392983247,0.0021487020953273625,0.0,0.0,0.0008699582697209807,0.0014585235392983247,0.0021487020953273625,0.0,0.0,0.0008964433999558982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.989564408393273e-05,0.0,0.0,0.0005335365499710682,0.00020273887121696188,0.000593432194055001,0.00010367108963183492,0.00017380916974469804,0.00025605629059453525,0.0,0.0,5.989564408393273e-05,0.0,0.0,0.0,0.0,0.0,0.00019507114264873945,0.00016107086982263398,0.00023729018158362745,0.0,0.0 +94334,50.0,the Greater Atlanta and Macon Area,G1301210004400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,141435.0,,9510.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.007253419935497921,0.0016173458383757966,0.0,0.008870765773873716,0.004743385860345306,0.0018335144048090802,0.001588604922513891,0.0,0.0007052783165668604,0.004093355349963331,0.0018335144048090802,0.0006212718641586502,0.0,0.0007052783165668604,0.0006500305103819758,0.0009673330583552408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010806208444401044,0.0,0.0,0.0008643756414392543,0.0003824441973283306,0.0009724377258832647,0.00048779702371119825,0.00021849626849657468,7.403573360783647e-05,0.0,8.404661562364497e-05,4.343143577419519e-05,6.463183331429112e-05,0.0,0.0,0.0,0.0,0.0005199829954485154,0.000200994888562834,0.00017414723796745803,0.0,7.731454755540912e-05 +94335,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,34552.0,,3111.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003078597166147757,0.0009157778519234509,0.0,0.00399434432846491,0.001489151766383432,0.001309801707179657,0.0011954215445081188,0.0,0.0,0.0005733739144599811,0.001309801707179657,0.0011954215445081188,0.0,0.0,0.0009157778519234509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.118644316766445e-05,0.0,0.0,0.0003668687480938449,0.0001551517014687957,0.0004280551912615094,6.832753973161576e-05,0.00015608580357574423,0.00014245540478648492,0.0,0.0,6.118644316766445e-05,0.0,0.0,0.0,0.0,0.0,0.0001595854267330159,0.00014036532010672023,0.0001281077332832767,0.0,0.0 +94336,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,20176.0,,,,8.72605822017302,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,152706.01885302784,0.0,0.0,0.007279628509312621,0.0,0.0,0.00727962850931262,0.005208808797027842,0.0008967928005553104,0.0010284624619482877,0.0,0.00014556444978118104,0.005208808797027842,0.0008967928005553104,0.0010284624619482877,0.0,0.00014556444978118104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00086749632535649,0.00028960838621037234,0.00086749632535649,0.0006207215773614913,0.00010686870327141825,0.00012255946925943798,0.0,1.7346575464142406e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0006207215773614915,0.00010686870327141828,0.000122559469259438,0.0,1.734657546414241e-05 +94337,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,108533.0,,7460.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.009178156417816186,0.002195964089025825,0.0,0.011374120506842009,0.00426646906750664,0.0024873619008225125,0.004620289538512857,0.0,0.0,0.0020705049784808163,0.0024873619008225125,0.004620289538512857,0.0,0.0,0.002195964089025825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014672244010168934,0.0,0.0,0.0010937424534032967,0.00043286132299203117,0.0012404648935049859,0.00024673791683822466,0.0002964139184451615,0.0005505906181199106,0.0,0.0,0.00014672244010168934,0.0,0.0,0.0,0.0,0.0,0.00046530235847979084,0.00027127241297963294,0.0005038901220455622,0.0,0.0 +94338,50.0,the Greater Atlanta and Macon Area,G1300570091005,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,75293.0,,29205.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.018840979825743055,0.020090198280892965,0.0,0.03893117810663602,0.015906915811494407,0.0025198094616624787,0.008566233338104584,0.00037172460977391206,0.011566423165629624,0.010840832218864688,0.0025198094616624787,0.003801301903769417,0.00037172460977391206,0.0013072399117015428,0.005066083592629718,0.004764931434335167,0.010259183253928083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001342308805552547,0.0,0.0,0.0022452474472971526,0.001922558807984441,0.0035875562528496995,0.0012918834949722541,0.00030028139798455347,0.000452994667728619,4.429778806153414e-05,0.00015578155180350818,0.00033848588853996597,0.00031836467379444566,0.0006854582432181355,0.0,0.0,0.0,0.0014658419821452346,0.0002322035609971986,0.000789389005678414,3.425488292390506e-05,0.0010658602120208404 +94339,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,23883.0,,8644.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005183776065066335,0.00594615935696228,0.0,0.011129935422028617,0.005474528827563623,0.0004920707211381074,0.0034805701933876038,0.0003692861307593813,0.0013134078292088853,0.003270072078456786,0.0004920707211381074,0.0008944914785067011,0.0003692861307593813,0.00015785565620535992,0.0022044567491068365,0.0025860787148809026,0.0011555521730035251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039728723044671674,0.0,0.0,0.0006177431011851029,0.0005750819528826672,0.0010150303316318195,0.00038968976311650524,5.8639356612399216e-05,0.00010659525662000337,4.4007294446471885e-05,1.8811430389723172e-05,0.00014728877312491836,0.00017278649774988796,7.720716766726371e-05,0.0,0.0,0.0,0.0004992673003629196,4.487597531559492e-05,0.0003174218163628948,3.367823887188431e-05,0.00011978045998462174 +94340,85.0,Rural Climate Zone 3A,G1301630960400,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,68870.0,,15734.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0035450793837710375,0.002675635650815908,0.0,0.006220715034586946,0.002322322738798516,0.0006445163679803395,0.0018036032850934512,0.0,0.0014502726427146387,0.002132820635940992,0.0006445163679803395,0.0005638786842419393,0.0,0.00020386369560776714,0.00018950210285752434,0.0012397246008515118,0.0012464089471068717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001787704704183581,0.0,0.0,0.0004224604261563979,0.0003050662554539783,0.0006012308965747561,0.000254164213895918,7.680580038016256e-05,6.71963596459605e-05,0.0,2.4294052234356937e-05,1.2661432457284362e-05,8.283121433811564e-05,8.327782362295809e-05,0.0,0.0,0.0,0.00022445204041989777,6.229238144223319e-05,0.00017431790624273692,0.0,0.00014016856846988816 +94341,50.0,the Greater Atlanta and Macon Area,G1301350050544,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,3200.0,,582.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.000768348715038166,0.00046183629976029257,0.0,0.0012301850147984586,0.0006838220856765937,0.00017641418828594275,0.00034323435601812583,0.0,2.6714384817796296e-05,0.0002487001707340974,0.00017641418828594275,0.00034323435601812583,0.0,0.0,0.0004351219149424963,0.0,2.6714384817796296e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.085692592616233e-05,0.0,0.0,9.15668628895383e-05,5.8124512585047136e-05,0.00012242378881570064,2.9638488343255292e-05,2.1023909423399913e-05,4.0904465122883093e-05,0.0,0.0,2.9072042854143986e-05,0.0,1.7848830720183443e-06,0.0,0.0,0.0,6.805162605406836e-05,1.7556134297693256e-05,3.4157504611076894e-05,0.0,2.658523852862129e-06 +94342,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,7693.0,,342.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0015194943587385561,0.00027119649479118906,0.0,0.0017906908535297449,0.000778025442665665,0.0003969112468749363,0.0005577765052978893,0.0,5.789495161751519e-05,0.000564723899491991,0.0003969112468749363,0.0005577765052978893,0.0,0.0,0.00021330154317367381,0.0,5.789495161751519e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8120591428618498e-05,0.0,0.0,0.00018107090152785318,6.523581616558453e-05,0.0001991914929564717,6.729545589114856e-05,4.729802179578528e-05,6.646756803308524e-05,0.0,0.0,1.425221265459198e-05,0.0,3.868378774026516e-06,0.0,0.0,0.0,8.654539625151399e-05,4.415130823971677e-05,6.204551422559907e-05,0.0,6.440074133736556e-06 +94343,50.0,the Greater Atlanta and Macon Area,G1300150960102,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,96624.0,,10615.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004973756446276052,0.001805234478344096,0.0,0.006778990924620149,0.0028285600180638637,0.0016126295622380625,0.001205717767647851,0.0,0.0011320835766703713,0.0023587763618781446,0.0016126295622380625,0.0008096037631624512,0.0,0.00019274675899739406,0.00046978365618571897,0.00039611400448539966,0.0009393368176729771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012061496757920714,0.0,0.0,0.0005927132774046568,0.00026393501591165836,0.0007133282449838639,0.00028109097886371096,0.0001921740566507645,9.647897018006233e-05,0.0,2.2969271710119085e-05,3.138813330889715e-05,2.6465967929275035e-05,6.276086634103494e-05,0.0,0.0,0.0,0.0002976389518665834,0.0001696910688082727,0.00012687323949918058,0.0,0.00011912498480982717 +94344,50.0,the Greater Atlanta and Macon Area,G1301210005000,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,114610.0,,12808.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005321448833723288,0.0021781749004534862,0.0,0.0074996237341767745,0.0038123113910940743,0.0015549349661772105,0.0009627763554702873,0.0,0.0011696187517966233,0.0030218032271810196,0.0015549349661772105,0.0005632226608693973,0.0,0.00018150570985708055,0.0007905081639130541,0.0003995536946008899,0.0009881130419395426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014553270310481162,0.0,0.0,0.0006341471225713779,0.00031363403391342423,0.0007796798256761896,0.0003601026489909857,0.00018529869691464844,6.711819298042991e-05,0.0,2.162969657938239e-05,5.2817057939992084e-05,2.6695803536564355e-05,6.601984162825523e-05,0.0,0.0,0.0,0.0003963375212127032,0.00016165496648078674,0.0001000926616594625,0.0,0.00012159651961639313 +94345,50.0,the Greater Atlanta and Macon Area,G1301210009000,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,14438.0,,645.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003398268245800663,0.0005117913722988343,0.0,0.003909976911025758,0.0019418793843251987,0.0009221838721932778,0.0009667629849387646,0.0,7.915066956851721e-05,0.0014300880120263646,0.0009221838721932778,0.0009667629849387646,0.0,7.915066956851721e-05,0.0005117913722988343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.41929877228793e-05,0.0,0.0,0.0004049601824372752,0.00016979945025681316,0.0004391531701601545,0.00017041877225766467,0.00010989354639251409,0.00011520588912843922,0.0,9.43211873521399e-06,3.41929877228793e-05,0.0,0.0,0.0,0.0,0.0,0.0002181042259585461,0.00010357605176701689,0.00010858300171342245,0.0,8.889890721169071e-06 +94346,50.0,the Greater Atlanta and Macon Area,G1301350050427,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,14049.0,,4645.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00315534947690009,0.0036023478857029113,0.0,0.006757697362603001,0.0029928193029323483,0.00044788787741657516,0.002035265909834844,0.00041667561515212344,0.0008649677964840412,0.001431074138746804,0.00044788787741657516,0.0008596309848015186,0.00041667561515212344,0.0,0.0015617451641855445,0.0011756349250333247,0.0008649677964840412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024069009885716527,0.0,0.0,0.0003760166174731835,0.00034602559504736953,0.000616706716330349,0.00017053821167650046,5.3373892783147024e-05,0.00010244048640145082,4.965439059605643e-05,0.0,0.00010434766710050031,7.85497945518367e-05,5.77926372048282e-05,0.0,0.0,0.0,0.00027312435965178375,4.087419831706555e-05,0.00018573814256012643,3.802577070370804e-05,7.893686575151656e-05 +94347,50.0,the Greater Atlanta and Macon Area,G1300670030314,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,NaturalGas,18734.0,,760.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004650039806845082,0.0006030172746332905,0.0,0.005252974374404632,0.003147748519444301,0.0015077499542675745,0.0005210545645576367,0.0,7.642133613512006e-05,0.002621152580946131,0.0015077499542675745,0.0005210545645576367,0.0,0.0,0.0005265959384981704,0.0,7.642133613512006e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.028810424004366e-05,0.0,0.0,0.0005541344282449496,0.00022521079518928616,0.0005944225324849932,0.0003123566565273809,0.00017967505517146775,6.209286053649185e-05,0.0,0.0,3.518232885699602e-05,0.0,5.1057753830476385e-06,0.0,0.0,0.0,0.0003561967969367902,0.00017061582301578304,5.896213302245929e-05,0.0,8.647779509960697e-06 +94348,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,80479.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007096791508630713,0.0,0.0,0.007096791508630715,0.004385947758811363,0.0021734132813677693,0.0005373697212527052,0.0,0.0,0.004385947758811363,0.0021734132813677693,0.0005373697212527052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008457096012068581,0.0002424727079035042,0.0008457096012068581,0.0005226640976429288,0.000259001053815356,6.403721063364748e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005226640976429286,0.00025900105381535595,6.403721063364746e-05,0.0,0.0 +94349,85.0,Rural Climate Zone 3A,G1302770960900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,107981.0,,2515.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009010253581761454,0.0007402333039005912,0.0,0.009750517575268342,0.00306813201040024,0.0026002382727854634,0.00408211660247634,0.0,0.0,0.0023278987064996493,0.0026002382727854634,0.00408211660247634,0.0,0.0,0.0007402333039005912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.945902797730318e-05,0.0,0.0,0.001073734885070188,0.0003620579246077881,0.001123193913047491,0.0002774112878618665,0.00030986547910659244,0.00048645811810172886,0.0,0.0,4.945902797730318e-05,0.0,0.0,0.0,0.0,0.0,0.0003534281305485336,0.0002995299252496735,0.0004702323220134647,0.0,0.0 +94350,81.0,the Columbus-Albany Area,G1302150010106,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,14059.0,,736.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012014367073424686,0.00021669931006807933,0.0,0.0014181360174105478,0.00047145373194531007,0.00040138936076765467,0.0005453236143038808,0.0,0.0,0.0002547544218772308,0.00040138936076765467,0.0005453236143038808,0.0,0.0,0.00021669931006807933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4477918765280063e-05,0.0,0.0,0.00014317269914159716,6.0607776108975824e-05,0.0001576506179068772,3.035855153710018e-05,4.7832730460635255e-05,6.498507436004495e-05,0.0,0.0,1.4477918765280065e-05,0.0,0.0,0.0,0.0,0.0,5.241032682562807e-05,4.462144672258752e-05,6.062225604508432e-05,0.0,0.0 +94351,50.0,the Greater Atlanta and Macon Area,G1301130140407,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,35186.0,,46.0,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,43199.70345818221,0.0,0.001788714256961289,0.005416805902078474,2.402131220433913e-05,0.0,0.007229596065135475,0.004523322275859805,0.0007201480211078125,0.0019621044559635188,0.0,2.402131220433913e-05,0.002734608018898516,0.0007201480211078125,0.0019621044559635188,0.0,0.0,0.0,0.0,2.402131220433913e-05,0.001788714256961289,0.0,0.0,0.0,0.0,0.0,0.0,1.6054776807805274e-06,0.0,0.0,0.0006455111787703663,0.00023463470059135688,0.0006471166564511469,0.00032587840097367114,8.581876596613489e-05,0.00023382051768803635,0.0,0.0,0.0,0.0,1.6054776807805274e-06,0.0,0.0,0.0,0.00040487976933058966,6.446000238057075e-05,0.0001756267519943683,0.0,2.15013274561831e-06 +94352,46.0,the Tallahassee-Valdosta Area,G1300270960500,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,41122.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034367727763816185,0.0,0.0,0.0034367727763816185,0.0021456214378822265,0.0009885999144999462,0.00030252105040000815,0.0,0.0,0.0021456214378822265,0.0009885999144999462,0.00030252105040000815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004095523888805328,0.00010006939034268884,0.0004095523888805328,0.0002556888228273064,0.00011780920153145012,3.605074496906855e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002556888228273064,0.00011780920153145012,3.605074496906855e-05,0.0,0.0 +94353,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010101,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,136229.0,,11.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.012137862049166642,3.0996502360679804e-06,0.0,0.01214093100979641,0.004484426651432926,0.0029824159400107563,0.004674088418352729,0.0,0.0,0.004481327001196858,0.0029824159400107563,0.004674088418352729,0.0,0.0,3.0996502360679804e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.064818085783435e-07,0.0,0.0,0.0014464446797520822,0.0005231628316220584,0.0014466511615606607,0.000534030752108901,0.00035540852678685257,0.0005570017436374894,0.0,0.0,2.0648180857834354e-07,0.0,0.0,0.0,0.0,0.0,0.0005343413136104965,0.00035536940951169606,0.0005569404384384682,0.0,0.0 +94354,35.0,Eastern Counties in South Carolina and Georgia,G1300510003602,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,127549.0,,2397.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010129413170893607,0.0006984409190711031,0.0,0.010827854089964709,0.007388438810432006,0.002467946075115649,0.0009714692044170543,0.0,0.0,0.006689997891360903,0.002467946075115649,0.0009714692044170543,0.0,0.0,0.0006984409190711031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.666507022638829e-05,0.0,0.0,0.0012071025879921578,0.00031199192064737595,0.001253767658218546,0.0007972341173256151,0.0002941003633712355,0.00011576810729530718,0.0,0.0,4.66650702263883e-05,0.0,0.0,0.0,0.0,0.0,0.0008555144489647023,0.0002857658540185855,0.00011248735523525826,0.0,0.0 +94355,50.0,the Greater Atlanta and Macon Area,G1300210013410,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,15596.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003744893591842101,0.0,0.0,0.003744893591842101,0.0018804280285368937,0.0005074906044643904,0.001290313057406935,0.0,6.66619014338818e-05,0.0018804280285368937,0.0005074906044643904,0.001290313057406935,0.0,6.66619014338818e-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.0004462721816616389,0.00012959097351076748,0.0004462721816616389,0.0002240871998555406,6.0476735499366525e-05,0.00015376426833859467,0.0,7.943977968137128e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002240871998555406,6.0476735499366525e-05,0.00015376426833859467,0.0,7.943977968137128e-06 +94356,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6600.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012937040474302467,0.0,0.0,0.0012937040474302467,0.0006401527507422395,0.00022165495762134388,0.0003900465597545738,0.0,4.184977931208955e-05,0.0006401527507422395,0.00022165495762134388,0.0003900465597545738,0.0,4.184977931208955e-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.0001541679579564714,5.3799651661830344e-05,0.0001541679579564714,7.628564087604453e-05,2.6414149553979242e-05,4.648101839424109e-05,0.0,4.987149132206529e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.628564087604453e-05,2.6414149553979242e-05,4.648101839424109e-05,0.0,4.987149132206529e-06 +94357,50.0,the Greater Atlanta and Macon Area,G1300590150400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,16575.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014008911532679897,0.0,0.0,0.0014008911532679897,0.000833208579776408,0.0004391718742704536,0.00012844995202225247,0.0,0.0,0.000833208579776408,0.0004391718742704536,0.00012844995202225247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001669401174078027,4.751406259212719e-05,0.0001669401174078027,9.929103899941119e-05,5.2334832782607404e-05,1.530700655907371e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.929103899941119e-05,5.2334832782607404e-05,1.530700655907371e-05,0.0,0.0 +94358,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,108203.0,,3680.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0055697625454111275,0.0006258285670436037,0.0,0.006195591112454732,0.0024543962010164897,0.0015484988449817317,0.001417967924207303,0.0,0.0007747104118877873,0.0024543962010164897,0.0015484988449817317,0.0007921393571636991,0.0,0.0007747104118877873,0.0,0.0006258285670436037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1814265219547994e-05,0.0,0.0,0.0006637383579911169,0.00018147458818940372,0.0007055526232106648,0.00029248588086838647,0.00018453175917995074,9.4397790199719e-05,0.0,9.232081484850198e-05,0.0,4.1814265219547994e-05,0.0,0.0,0.0,0.0,0.00027950612727562033,0.00017634272538083478,0.0001614778913575946,0.0,8.822386006675593e-05 +94359,50.0,the Greater Atlanta and Macon Area,G1301170130406,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,54624.0,,9427.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.012323021618077492,0.0073113511442732095,0.0,0.019634291901567635,0.007295502430791779,0.0010577399033194115,0.00923535261660576,0.000415381842623027,0.0016303151082276562,0.005346191533358781,0.0010577399033194115,0.005503708338776272,0.000415381842623027,0.0,0.0019493108974329985,0.0037316442778294865,0.0016303151082276562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000488499056037654,0.0,0.0,0.00146850671103512,0.0008634915711497817,0.0019570057670727737,0.0006370935951049095,0.00012604848021004477,0.0006558645177751309,4.9500117945034785e-05,0.0,0.0001302408425651658,0.0002493252849188964,0.00010892752593847731,0.0,0.0,0.0,0.00072716349549703,0.00010542794724844718,0.0009205138857187446,4.140229072817622e-05,0.0001624981478803755 +94360,50.0,the Greater Atlanta and Macon Area,G1301210011612,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,131897.0,,14597.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006360164327155662,0.0024823924416987526,0.0,0.008842556768854414,0.0034705941354453954,0.001528162120432931,0.0031172989537894234,0.0,0.0007265015591866636,0.0027068410869152014,0.001528162120432931,0.0013986595606208655,0.0,0.0007265015591866636,0.0007637530485301944,0.001718639393168558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001658591450739249,0.0,0.0,0.0007579283861823847,0.000351019416921982,0.0009237875312563097,0.0003225689763860718,0.0001821081013299478,0.00016667553369238456,0.0,8.657577477398057e-05,5.1029573547257216e-05,0.00011482957152666766,0.0,0.0,0.0,0.0,0.0003625751773139127,0.00015964806893482183,0.0003256662049207389,0.0,7.589808008683618e-05 +94361,50.0,the Greater Atlanta and Macon Area,G1301210010601,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,6541.0,,600.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0019394808791867591,0.0004756483810747569,0.0,0.002415129260261516,0.001271125016299416,0.0004766408659596287,0.0005913555772360481,0.0,7.59250936926842e-05,0.0008714017289173432,0.0004766408659596287,0.0005913555772360481,0.0,0.0,0.0003997232873820727,0.0,7.59250936926842e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.177824539220695e-05,0.0,0.0,0.00023112512736660654,8.565665862882095e-05,0.00026290337275881344,0.00010384368195883015,5.6800601663699505e-05,7.047098766188643e-05,0.0,0.0,2.6705661620680957e-05,0.0,5.072583771525992e-06,0.0,0.0,0.0,0.0001383706700431562,5.188562505424615e-05,6.437310760677772e-05,0.0,8.26496682280027e-06 +94362,50.0,the Greater Atlanta and Macon Area,G1301350050511,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6035.0,,723.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011616208506685728,0.0005732427280871397,0.0,0.0017347808716819731,0.001222245135719485,0.0003464599318939588,0.0001249703884200935,0.0,4.118812272217509e-05,0.0006490024076323454,0.0003464599318939588,0.0001249703884200935,0.0,4.118812272217509e-05,0.0005732427280871397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8299389773654535e-05,0.0,0.0,0.0001384235862979789,8.312145735580143e-05,0.0001767229760716334,7.733783422429623e-05,4.1285610751316026e-05,1.4891992801441515e-05,0.0,4.908148520925132e-06,3.8299389773654535e-05,0.0,0.0,0.0,0.0,0.0,0.00012451070991116085,3.529404275394862e-05,1.2730794605208013e-05,0.0,4.195854211378948e-06 +94363,85.0,Rural Climate Zone 3A,G1301050000300,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,52918.0,,4295.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004358875472069024,0.0012642276418275682,0.0,0.00562313380350289,0.0022521874477632164,0.0013299033993046524,0.0020410429564350213,0.0,0.0,0.0009879598059356481,0.0013299033993046524,0.0020410429564350213,0.0,0.0,0.0012642276418275682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.44687428942912e-05,0.0,0.0,0.0005194404544483484,0.00024355235901152728,0.0006039091973426398,0.00011773364342714783,0.00015848253306013988,0.00024322793519402,0.0,0.0,8.44687428942912e-05,0.0,0.0,0.0,0.0,0.0,0.0002418787746072444,0.00014282798924631848,0.0002192024334890769,0.0,0.0 +94364,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,43624.0,,8056.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.004225242857715338,0.0024214576376776816,0.0,0.006646669157370818,0.003203560657821879,0.0005001548343751802,0.001924185901345266,0.0,0.001018767763828492,0.0024178224271020226,0.0005001548343751802,0.0013072655962381356,0.0,0.0,0.0007857382307198556,0.0006169203051071302,0.001018767763828492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016178685291187895,0.0,0.0,0.0005035128244655306,0.00032896699591524506,0.0006652996773774094,0.00028812653859724307,5.9602342825450716e-05,0.00015578394304283688,0.0,0.0,5.249817861056234e-05,4.121880684910183e-05,6.806777363900495e-05,0.0,0.0,0.0,0.0003206610441478531,5.0063098082676954e-05,0.00019260177226656944,0.0,0.00010197376288030985 +94365,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,31790.0,,3198.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0027536556146676803,0.0009412195355442465,0.0,0.003694875150211927,0.0017154569232226925,0.000891625131767159,0.0010877930952220751,0.0,0.0,0.0007742373876784459,0.000891625131767159,0.0010877930952220751,0.0,0.0,0.0009412195355442465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.288667057378946e-05,0.0,0.0,0.00032814761229647057,0.0001565230151956334,0.00039103428287026005,9.226431539370259e-05,0.00010625317722900117,0.00012963011967376676,0.0,0.0,6.288667057378946e-05,0.0,0.0,0.0,0.0,0.0,0.00018154942738152685,9.436205008704403e-05,0.00011512280540168916,0.0,0.0 +94366,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6260.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011504553957137663,0.0,0.0,0.0011504553957137663,0.0006905213586494777,0.0002634220298596941,0.0001550757632612014,0.0,4.135353686965371e-05,0.0006905213586494777,0.0002634220298596941,0.0001550757632612014,0.0,4.135353686965371e-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.00013710050353542752,4.68054894232371e-05,0.00013710050353542752,8.22898708854985e-05,3.139217137026143e-05,1.848047765125281e-05,0.0,4.928127373667416e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.22898708854985e-05,3.139217137026143e-05,1.848047765125281e-05,0.0,4.928127373667416e-06 +94367,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,53686.0,,9315.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.004734089955566874,0.0027136684945670607,0.0,0.007447758450133937,0.004930941253522943,0.0019549359806120205,0.000561881215998971,0.0,0.0,0.002217272758955883,0.0019549359806120205,0.000561881215998971,0.0,0.0,0.0027136684945670607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001813119093494811,0.0,0.0,0.0005641513076414337,0.0003346120184981209,0.0007454632169909148,0.00026422762095844185,0.00023296551188696157,6.695817479603036e-05,0.0,0.0,0.0001813119093494811,0.0,0.0,0.0,0.0,0.0,0.0004935492140696806,0.0001956740239195214,5.623997900171257e-05,0.0,0.0 +94368,50.0,the Greater Atlanta and Macon Area,G1300670030220,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,30771.0,,1979.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028299082596153374,0.000576430170129654,0.0,0.003406338429744992,0.002220006382905281,0.0009595627534374555,0.00022679966700169289,0.0,0.0,0.0016435762127756269,0.0009595627534374555,0.00022679966700169289,0.0,0.0,0.000576430170129654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.851358107922439e-05,0.0,0.0,0.00033723440000762674,0.0001243613743163441,0.00037574798108685114,0.00019586162770433293,0.00011434913775937472,2.7027254103863358e-05,0.0,0.0,3.851358107922439e-05,0.0,0.0,0.0,0.0,0.0,0.0002448855078792127,0.0001058478993695456,2.5017924303380512e-05,0.0,0.0 +94369,50.0,the Greater Atlanta and Macon Area,G1300890021603,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,68211.0,,4356.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005639010603615814,0.0012689178637109578,0.0,0.0069079284673267734,0.004543100762302291,0.0017422600373488825,0.0006225676676755991,0.0,0.0,0.0032741828985913333,0.0017422600373488825,0.0006225676676755991,0.0,0.0,0.0012689178637109578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.478208910700659e-05,0.0,0.0,0.0006719897681527743,0.0002663801916704026,0.0007567718572597808,0.00039017791622937494,0.0002076216912607325,7.419016066266687e-05,0.0,0.0,8.478208910700659e-05,0.0,0.0,0.0,0.0,0.0,0.0004977021429604209,0.00019086667885028616,6.820303544907369e-05,0.0,0.0 +94370,50.0,the Greater Atlanta and Macon Area,G1300630040416,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,62887.0,,4523.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005229422615197731,0.0013175763700102364,0.0,0.0065469989852079665,0.004593126080576269,0.0013950290485765036,0.000558813482455758,0.0,0.0,0.0032755497105660322,0.0013950290485765036,0.000558813482455758,0.0,0.0,0.0013175763700102364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.803235829678527e-05,0.0,0.0,0.0006231791848378472,0.0002483123513375175,0.0007112115431346325,0.000390340301163287,0.0001662426484313033,6.659261568593083e-05,0.0,0.0,8.803235829678527e-05,0.0,0.0,0.0,0.0,0.0,0.0004989590337434287,0.00015154435865919375,6.070485119666976e-05,0.0,0.0 +94371,35.0,Eastern Counties in South Carolina and Georgia,G1300730030603,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,23517.0,,1563.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002053901901473759,0.00046009857761516017,0.0,0.0025140004790889193,0.0008531710550761373,0.0006672227305183563,0.0009936066934944253,0.0,0.0,0.0003930724774609773,0.0006672227305183563,0.0009936066934944253,0.0,0.0,0.00046009857761516017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0740360196243126e-05,0.0,0.0,0.0002447606119504431,0.00010226418861322126,0.00027550097214668626,4.6841896419294365e-05,7.951199797406925e-05,0.00011840671755707951,0.0,0.0,3.0740360196243126e-05,0.0,0.0,0.0,0.0,0.0,9.349618547649298e-05,7.311872548361275e-05,0.00010888606118658047,0.0,0.0 +94372,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,26027.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0012426323801244007,0.0,0.0,0.0012426323801244007,0.0007774408875464755,0.0002713986422567483,7.420156254292098e-05,0.0,0.00011959128777825618,0.0007774408875464755,0.0002713986422567483,7.420156254292098e-05,0.0,0.00011959128777825618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001480826394837219,3.623465716202855e-05,0.0001480826394837219,9.264646609234841e-05,3.234216968791227e-05,8.842489066695813e-06,0.0,1.425151463676542e-05,0.0,0.0,0.0,0.0,0.0,0.0,9.264646609234841e-05,3.234216968791227e-05,8.842489066695813e-06,0.0,1.425151463676542e-05 +94373,35.0,Eastern Counties in South Carolina and Georgia,G1300290920303,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,6213.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017536380844945354,0.0,0.0,0.0017536380844945351,0.0009211086802346668,0.00038028712505333557,0.00041386619699149434,0.0,3.8376082215038644e-05,0.0009211086802346668,0.00038028712505333557,0.00041386619699149434,0.0,3.8376082215038644e-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.00020897433599271207,6.222658470535313e-05,0.00020897433599271207,0.0001097649945739204,4.531736060437156e-05,4.931885003572755e-05,0.0,4.573130778692562e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010976499457392041,4.5317360604371565e-05,4.9318850035727555e-05,0.0,4.573130778692563e-06 +94374,50.0,the Greater Atlanta and Macon Area,G1300890020400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,37794.0,,3680.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003175013096427073,0.0010720058185560127,0.0,0.004247018914983086,0.0027037059539514784,0.0012118458703674223,0.0003314974642636234,0.0,0.0,0.0016317001353954657,0.0012118458703674223,0.0003314974642636234,0.0,0.0,0.0010720058185560127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.162570086365636e-05,0.0,0.0,0.00037836095908776006,0.00016753882412073203,0.0004499866599514164,0.00019444695483826542,0.00014441362975627992,3.9503994063863835e-05,0.0,0.0,7.162570086365636e-05,0.0,0.0,0.0,0.0,0.0,0.00028646719877258405,0.00012839935175676636,3.512332761224493e-05,0.0,0.0 +94375,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,11895.0,,522.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0028562060845132423,0.0004141970252864515,0.0,0.0032704031097996944,0.001291305542291807,0.0003873172263211766,0.0015145319343141974,0.0,7.71656997987738e-05,0.0009542742168041291,0.0003873172263211766,0.0015145319343141974,0.0,0.0,0.0003370313254876777,0.0,7.71656997987738e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.767436471396878e-05,0.0,0.0,0.0003403644373174004,0.00012591506925991867,0.0003680388020313692,0.00011371763704662553,4.615528638319876e-05,0.00018048165796479516,0.0,0.0,2.251857751785599e-05,0.0,5.155787196112793e-06,0.0,0.0,0.0,0.000145318643875266,4.358721637531995e-05,0.00017043969811335875,0.0,8.683936126024667e-06 +94376,50.0,the Greater Atlanta and Macon Area,G1300630040417,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,91894.0,,7373.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.008402384549822855,0.0021703075781609456,0.0,0.010572692127983799,0.004330794482306626,0.0022135799230407066,0.00402828703303017,0.0,0.0,0.0021604869041456803,0.0022135799230407066,0.00402828703303017,0.0,0.0,0.0021703075781609456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014500668523589267,0.0,0.0,0.0010012969963982194,0.00044390499642483084,0.001146303681634112,0.0002574613236339398,0.00026378832283685354,0.00048004369270245327,0.0,0.0,0.00014500668523589267,0.0,0.0,0.0,0.0,0.0,0.0004695498175274579,0.0002399989316492849,0.00043675160505425754,0.0,0.0 +94378,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12358.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002672265552517023,0.0,0.0,0.002672265552517023,0.001292628855471636,0.000656942286711319,0.0006254308916166427,0.0,9.718081164368624e-05,0.001292628855471636,0.000656942286711319,0.0006254308916166427,0.0,9.718081164368624e-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.0003184498009569094,9.681054092022872e-05,0.0003184498009569094,0.00015404060474018995,7.828680807801707e-05,7.453164329421691e-05,0.0,1.1580888768937436e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00015404060474018995,7.828680807801707e-05,7.453164329421691e-05,0.0,1.1580888768937436e-05 +94379,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,13674.0,,106.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0032833054133030257,8.427850814035425e-05,0.0,0.00336758392144338,0.0012185233174012164,0.0005677840612203454,0.0014969980346814643,0.0,8.427850814035425e-05,0.0012185233174012164,0.0005677840612203454,0.0014969980346814643,0.0,0.0,0.0,0.0,8.427850814035425e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.631045259655807e-06,0.0,0.0,0.00039126580518082085,0.00012689656397033082,0.0003968968504404767,0.00014520930796838719,6.766184071153044e-05,0.00017839465650090327,0.0,0.0,0.0,0.0,5.631045259655807e-06,0.0,0.0,0.0,0.00014361277347396776,6.691791827182437e-05,0.0001764332586627853,0.0,9.932900031899347e-06 +94380,50.0,the Greater Atlanta and Macon Area,G1301170130405,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,13862.0,,3343.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001235072515844751,0.0009839394675106488,0.0,0.0022190119833554,0.001225558737892463,0.0005360246635956769,0.0004573978922609623,0.0,0.0,0.000241619270381814,0.0005360246635956769,0.0004573978922609623,0.0,0.0,0.0009839394675106488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.574108880243714e-05,0.0,0.0,0.00014718297070976012,0.00010440361377861528,0.00021292405951219725,2.879364696347135e-05,6.387778964359084e-05,5.450787683774636e-05,0.0,0.0,6.574108880243714e-05,0.0,0.0,0.0,0.0,0.0,0.00011759780641117603,5.143394818394353e-05,4.388936011299063e-05,0.0,0.0 +94381,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,73555.0,,4859.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006553704045661834,0.0014302584118981404,0.0,0.007983962457559975,0.0028077613905705297,0.002058842928087689,0.003117419518114351,0.0,0.0,0.0013775029786723893,0.002058842928087689,0.003117419518114351,0.0,0.0,0.0014302584118981404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.556234441957609e-05,0.0,0.0,0.0007809912550099172,0.0003520802438703912,0.0008765535994294934,0.0001641541596321208,0.0002453480216794131,0.000371496388131251,0.0,0.0,9.55623444195761e-05,0.0,0.0,0.0,0.0,0.0,0.00030826214004968215,0.00022603891098791091,0.0003422592871723012,0.0,0.0 +94382,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,69857.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005941661227266747,0.0,0.0,0.005941661227266747,0.001410279478198336,0.0018175919329814474,0.0027137898160869644,0.0,0.0,0.001410279478198336,0.0018175919329814474,0.0027137898160869644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000708055323272717,0.00023579701165953523,0.000708055323272717,0.00016806005149841774,0.0002165986235935367,0.0003233966481807627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016806005149841774,0.0002165986235935367,0.0003233966481807627,0.0,0.0 +94383,50.0,the Greater Atlanta and Macon Area,G1300570090100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,3132.0,,647.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00021817241117036909,0.00019030624865205495,0.0,0.00040847865982242406,0.000240176858885822,8.448848613757577e-05,8.378262519272859e-05,0.0,0.0,4.987061023376702e-05,8.448848613757577e-05,8.378262519272859e-05,0.0,0.0,0.00019030624865205495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2716006692850877e-05,0.0,0.0,2.5999032527144013e-05,2.0427471383238977e-05,3.871503921999489e-05,5.942949480462656e-06,1.006827071982381e-05,9.98415512717726e-06,0.0,0.0,1.2716006692850877e-05,0.0,0.0,0.0,0.0,0.0,2.276362862026146e-05,8.00770120004853e-06,7.940800681486555e-06,0.0,0.0 +94384,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,108742.0,,5648.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009688739397791066,0.001662517352359155,0.0,0.011351256750150222,0.005109359104473047,0.0022136413022533015,0.00402828703303017,0.0,0.0,0.003446841752113893,0.0022136413022533015,0.00402828703303017,0.0,0.0,0.001662517352359155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011107890282243837,0.0,0.0,0.0011545898736608912,0.0004846932208533565,0.0012656687764833296,0.00041075401243732417,0.0002637957041224452,0.00048004381432702127,0.0,0.0,0.00011107890282243837,0.0,0.0,0.0,0.0,0.0,0.0005696951825432706,0.00024682171677235847,0.0004491552990686678,0.0,0.0 +94385,50.0,the Greater Atlanta and Macon Area,G1300770170306,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,34248.0,,2538.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0030200166184962264,0.0007394756519115058,0.0,0.00375952264400717,0.0024036147915064907,0.0009994432894992239,0.0003564645630014554,0.0,0.0,0.0016641391395949847,0.0009994432894992239,0.0003564645630014554,0.0,0.0,0.0007394756519115058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9408451870687364e-05,0.0,0.0,0.00035989055602779756,0.00014284945432617218,0.0004092990078984849,0.00019831280284632249,0.00011910206022483057,4.2479312529968435e-05,0.0,0.0,4.9408451870687364e-05,0.0,0.0,0.0,0.0,0.0,0.0002616814001910435,0.0001088093318163428,3.880827589109858e-05,0.0,0.0 +94386,50.0,the Greater Atlanta and Macon Area,G1300890023214,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,90511.0,,5879.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00790039465961133,0.001730648278340055,0.0,0.009631042937951384,0.003006844866623727,0.0025959417279037855,0.00402828703303017,0.0,0.0,0.0012761965882836727,0.0025959417279037855,0.00402828703303017,0.0,0.0,0.001730648278340055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011563141113552105,0.0,0.0,0.0009414745948707572,0.000372131758732767,0.0010571060060062783,0.0001520818538436057,0.0003093533034597218,0.0004800430947878472,0.0,0.0,0.00011563141113552105,0.0,0.0,0.0,0.0,0.0,0.0003300321458553478,0.00028493130074167466,0.0004421459279091524,0.0,0.0 +94387,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,84214.0,,11683.0,,3.3063363735822096,Lodging,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,123987.61400933286,0.0,0.0,0.008478345217169997,0.0035117074301534035,0.0,0.011990052647323403,0.003537028552094202,0.0019162260437054605,0.00434708508804433,0.0,0.0021897129634794073,0.003537028552094202,0.0019162260437054605,0.003025090621370334,0.0,0.0,0.0,0.001321994466673996,0.0021897129634794073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023463199831252408,0.0,0.0,0.0010103483038909182,0.0006312101758444679,0.0012449803022034423,0.00042150097771260326,0.00022835301978605394,0.0003604943063922609,0.0,0.0,0.0,8.832803120511362e-05,0.00014630396710741046,0.0,0.0,0.0,0.00036726534947046,0.00019897024217946984,0.0004513771094929815,0.0,0.0002273676010605307 +94388,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,42230.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.003614458333092467,0.0,0.0,0.003614458333092467,0.002962671262757751,0.0005709021750319832,8.08848953027331e-05,0.0,0.0,0.002962671262757751,0.0005709021750319832,8.08848953027331e-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.00043072837674433176,0.00012128645943166177,0.00043072837674433176,0.0003530561058488981,6.803336612845765e-05,9.638904766976095e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003530561058488981,6.803336612845765e-05,9.638904766976095e-06,0.0,0.0 +94389,50.0,the Greater Atlanta and Macon Area,G1300890021216,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,1944.0,,175.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0004668814312583904,0.00013903059095577574,0.0,0.0006059947292879055,0.0003272718907864395,0.00012224105498669636,0.00012753430770601204,0.0,2.8864768735018292e-05,0.0001882412998306637,0.00012224105498669636,0.00012753430770601204,0.0,2.8864768735018292e-05,0.00013903059095577574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.291553193793358e-06,0.0,0.0,5.564007311484471e-05,2.690349531589241e-05,6.493162630863805e-05,2.2433446662424543e-05,1.4567941198182545e-05,1.5198758679024009e-05,0.0,3.4399265752136054e-06,9.291553193793358e-06,0.0,0.0,0.0,0.0,0.0,3.506680023246633e-05,1.3097986035780953e-05,1.3665151872242376e-05,0.0,3.0928262019536896e-06 +94390,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,31516.0,,,2874.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002779153974954854,0.0,0.0002708717597858707,0.003050025734740725,0.0016911412694951462,0.001158388335356979,0.0002004961298885998,0.0,0.0,0.0014202695097092753,0.001158388335356979,0.0002004961298885998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002708717597858707,0.0,0.0,0.0,0.0,2.1844636154571054e-05,0.0003311871594232501,0.00010602832559046337,0.0003530317955778212,0.00016925115656598623,0.00013804321234203552,2.3892790515228297e-05,0.0,0.0,0.0,0.0,0.0,2.1844636154571054e-05,0.0,0.0,0.00019574478737845118,0.00013408015196378047,2.320685623558957e-05,0.0,0.0 +94391,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,2335.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.000560671252878765,0.0,0.0,0.000560671252878765,0.0002310835640276249,0.00016996303653427677,0.0001312561260242809,0.0,2.8368526292582448e-05,0.0002310835640276249,0.00016996303653427677,0.0001312561260242809,0.0,2.8368526292582448e-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,6.681522106196118e-05,2.3271484094113613e-05,6.681522106196118e-05,2.7538239806331246e-05,2.0254503508235763e-05,1.5641799059644842e-05,0.0,3.3806786877493264e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.7538239806331246e-05,2.0254503508235763e-05,1.5641799059644842e-05,0.0,3.3806786877493264e-06 +94392,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,31348.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007393268028630429,0.0,0.0,0.007393268028630429,0.004295226460503452,0.001662081353865122,0.0012404406919421327,0.0,0.00019551952231972275,0.004295226460503452,0.001662081353865122,0.0012404406919421327,0.0,0.00019551952231972275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008810408955225177,0.0002922599495992066,0.0008810408955225177,0.000511853506809085,0.00019806689528498972,0.00014782082481510131,0.0,2.3299668613341743e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000511853506809085,0.00019806689528498972,0.00014782082481510131,0.0,2.3299668613341743e-05 +94393,50.0,the Greater Atlanta and Macon Area,G1301210011617,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,5993.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.0017057861359649456,0.0003332411129438319,0.0009498245221161186,0.0,0.0,0.00298890636491627,0.0021690153042690763,0.00011164450785880349,0.0006968910233827023,0.0,1.1300935514314089e-05,0.00012998805536029877,0.00011164450785880349,0.0006968910233827023,0.0,1.1300935514314089e-05,0.0,0.0,0.0,0.0003332411129438319,0.0,0.0,0.0017057861359649456,0.0,0.0,0.0,0.0,0.0,0.0,0.00011319012598130742,4.035823118493823e-05,0.00011319012598130742,1.5490613286670474e-05,1.3304621659488086e-05,8.304816405054543e-05,0.0,1.346726984603439e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.214078514717146e-05,4.227986549860703e-06,2.6391319466489905e-05,0.0,4.279673426998361e-07 +94394,81.0,the Columbus-Albany Area,G1302150002700,ComStock 90.1-2004,gen3_t5_cfl,100001_200000,NaturalGas,371345.0,,57982.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.0,0.09733028123994038,0.05020720686428139,0.0,0.14753748810422176,0.07025722782713993,0.005847952874041485,0.05337412576740139,0.0006810694776115995,0.01737720243765057,0.056476133621422404,0.005847952874041485,0.025481152816468865,0.0006810694776115995,0.008844062730019238,0.013781094205717529,0.027892972950932526,0.008533139707631332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003354553949292094,0.0,0.0,0.011598663953410616,0.006844402157012338,0.014953217902702709,0.006730153112862768,0.0006968893887625484,0.003036540374676779,8.116175047586555e-05,0.001053930085083141,0.000920772671507541,0.0018636464446823294,0.0005701348331022233,0.0,0.0,0.0,0.007120709796800382,0.0005927016566020595,0.00540957381897689,6.90277463475043e-05,0.0017612140339952705 +94395,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,93902.0,,5856.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009342622017965574,0.0017238658753482628,0.0,0.011066487893313838,0.004982089307156474,0.002163740002413237,0.003920658583744126,0.0,0.0,0.0032582234318082118,0.002163740002413237,0.003920658583744126,0.0,0.0,0.0017238658753482628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011517871616866486,0.0,0.0,0.0011133439037203027,0.00045173367449224293,0.0012285226198889675,0.0003882767800930725,0.00025784910663089264,0.00046721801699633775,0.0,0.0,0.00011517871616866486,0.0,0.0,0.0,0.0,0.0,0.0005530760497055835,0.00024020299503777593,0.0004352435751456081,0.0,0.0 +94396,50.0,the Greater Atlanta and Macon Area,G1301350050525,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,6071.0,,,,8.72605822017302,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,26178.17466051906,0.0,0.0,0.001457629467581554,0.0,0.0,0.001457629467581554,0.0009073793059939417,0.00026027916105760045,0.00024489564534208925,0.0,4.499264811418324e-05,0.0009073793059939417,0.00026027916105760045,0.00024489564534208925,0.0,4.499264811418324e-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.00017370587928750047,5.912789393055253e-05,0.00017370587928750047,0.00010813250122918563,3.101749898534748e-05,2.918424356390654e-05,0.0,5.3617792971175815e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010813250122918563,3.101749898534748e-05,2.918424356390654e-05,0.0,5.3617792971175815e-06 +94397,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,200373.0,,2023.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.010606993685570968,0.0003440753937175447,0.0,0.010951086809649933,0.006606013518606115,0.0019734956082203977,0.0011274382219783178,0.0,0.0012441394608451051,0.006606013518606115,0.0019734956082203977,0.000783362828260773,0.0,0.0012441394608451051,0.0,0.0003440753937175447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2989674771107875e-05,0.0,0.0,0.0012640160179041692,0.0004459826350299395,0.0012870056926752769,0.0007872265365226461,0.0002351778584960885,9.335191403944246e-05,0.0,0.00014826182174070154,0.0,2.2989674771107872e-05,0.0,0.0,0.0,0.0,0.0007763592008826093,0.00023193132575765796,0.00013250003721522607,0.0,0.0001462151288197838 +94398,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,18043.0,,5618.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004038106645659207,0.004357425877996823,0.0,0.008395532523656032,0.00373859830517338,0.0006382341607598895,0.00280983135084827,0.0004117431073849433,0.0007971255994895464,0.0021821899526703586,0.0006382341607598895,0.0008059394248440162,0.0004117431073849433,0.0,0.0015564083525030218,0.002003891926004254,0.0007971255994895464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002911375994887699,0.0,0.0,0.0004812165776848491,0.0004211488662008979,0.0007723541771736189,0.0002600490955361746,7.605763927324363e-05,9.60428849152945e-05,4.90669579601364e-05,0.0,0.00010399006300029399,0.00013388828664138015,5.325924984709571e-05,0.0,0.0,0.0,0.0003439355406746054,5.871489612944005e-05,0.00025849283233268875,3.7878658443064583e-05,7.333224959381985e-05 +94399,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,69492.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006191658760167833,0.0,0.0,0.006191658760167835,0.0015392678934675811,0.0024767739866498055,0.0021755861904441502,0.0,0.0,0.0015392678934675811,0.0024767739866498055,0.0021755861904441502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007378462406939738,0.00020181066271373759,0.0007378462406939738,0.000183431140605236,0.0002951516622419045,0.0002592597806345238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018343114060523594,0.0002951516622419044,0.0002592597806345237,0.0,0.0 +94400,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,32830.0,,84.0,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,100799.30806909183,0.013232521984999824,0.008105172894983637,0.005203507568482218,4.372970699017192e-05,0.0,0.026584932155455848,0.02202295740450361,0.0005719801999201389,0.003946210250150557,0.0,4.372970699017192e-05,0.0006852625245201471,0.0005719801999201389,0.003946210250150557,0.0,0.0,0.0,0.0,4.372970699017192e-05,0.008105172894983637,0.0,0.0,0.013232521984999824,0.0,0.0,0.0,2.922597072927435e-06,0.0,0.0,0.0006200918014662327,0.00021767736926567942,0.0006230143985391601,8.166139238093596e-05,6.816175971758017e-05,0.0004702621435206496,0.0,0.0,0.0,0.0,2.922597072927435e-06,0.0,0.0,0.0,0.0005161051185381553,1.3404280971859547e-05,9.24789196801492e-05,0.0,1.0247999483114916e-06 +94401,50.0,the Greater Atlanta and Macon Area,G1300210010300,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,196565.0,,23157.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008882467812410954,0.003938108305369347,0.0,0.012820576117780301,0.0065752690719037415,0.0019564212701728865,0.0021734231635929125,0.0,0.0021154448817493404,0.004782552228722203,0.0019564212701728865,0.0017969898602837717,0.0,0.0003465044532320919,0.0017927168431815387,0.00037643330330914106,0.0017689404285172483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026312079479140943,0.0,0.0,0.0010585075657063322,0.0005208721985261644,0.0013216283604977415,0.0005699280677848088,0.00023314317146111844,0.0002141440197453016,0.0,4.129230671510324e-05,0.00011977859521302147,2.5151017258111553e-05,0.00011818999768378935,0.0,0.0,0.0,0.0006778214959684829,0.0002016806274528926,0.00022405059382498641,0.0,0.00021807381549042098 +94402,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010401,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,19999.0,,8182.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,22700.572550927158,0.0,0.0,0.0041642766770794235,0.005628583325305155,0.0,0.009792860002384579,0.0041500761228183344,0.0004615180134854571,0.0033828158728933266,0.0003778925272812547,0.0014206291858772238,0.0025985579898376203,0.0004615180134854571,0.0005410554613417697,0.0003778925272812547,0.00018532440510433897,0.0015515181329807139,0.0028417604115515563,0.0012353047807728847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003760686219264214,0.0,0.0,0.0004962463458991285,0.000522625600456712,0.0008723149678255499,0.0003096635999624069,5.499793734152373e-05,6.447621434412665e-05,4.503249912237585e-05,2.20846418167051e-05,0.0001036632581311707,0.00018986961017572116,8.25357536195296e-05,0.0,0.0,0.0,0.0003696747955825305,4.111046936098822e-05,0.00030132983812738637,3.366139286139036e-05,0.0001265448604665819 +94403,50.0,the Greater Atlanta and Macon Area,G1300890023416,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,3876.0,,403.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,3237.924873899493,0.0,0.0,0.0002344072129018539,0.00011864601794691896,0.0,0.0003530532308487728,0.00025484649069612396,6.671920409120585e-05,3.151822566774076e-05,0.0,0.0,0.00013620047274920497,6.671920409120585e-05,3.151822566774076e-05,0.0,0.0,0.00011864601794691896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.92745115410461e-06,0.0,0.0,2.793460153400215e-05,1.857942151244571e-05,3.586205268810676e-05,1.62311811479316e-05,7.95101122478668e-06,3.7560664801545173e-06,0.0,0.0,7.92745115410461e-06,0.0,0.0,0.0,0.0,0.0,2.5886516474447027e-05,6.777129915155086e-06,3.201523653571423e-06,0.0,0.0 +94404,50.0,the Greater Atlanta and Macon Area,G1301350050423,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,8569.0,,1396.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,24284.436554246196,0.0,0.0,0.0006633558401248457,0.00041087244911364477,0.0,0.001074197599632193,0.0005405053461151415,0.0002731068064432571,0.000260616136680092,0.0,0.0,0.00012963289700149654,0.0002731068064432571,0.000260616136680092,0.0,0.0,0.00041087244911364477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7451438825136983e-05,0.0,0.0,7.904933286237308e-05,5.429061852559123e-05,0.00010650077168751005,1.5447808559364505e-05,3.254499251178617e-05,3.1056531791222395e-05,0.0,0.0,2.7451438825136986e-05,0.0,0.0,0.0,0.0,0.0,5.35881261345188e-05,2.707703466222364e-05,2.5838653596089803e-05,0.0,0.0 +94405,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,29970.0,,,7211.0,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026702719543568215,0.0,0.0006867106305173975,0.0033570132744805163,0.0010857062019938315,0.0009547536519215337,0.0013165227309588539,0.0,0.0,0.0003989955714764339,0.0009547536519215337,0.0013165227309588539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006867106305173975,0.0,0.0,0.0,0.0,5.5383572339011594e-05,0.00031821195407120246,0.00015262384178862433,0.00037359552641021403,4.754765156339808e-05,0.0001137764356693573,0.00015688786683844708,0.0,0.0,0.0,0.0,0.0,5.5383572339011594e-05,0.0,0.0,0.00012082614720178216,0.00010625269071564699,0.0001465132731057481,0.0,0.0 +94406,35.0,Eastern Counties in South Carolina and Georgia,G1300730030201,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,19956.0,,704.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,14029.891188970922,0.0,0.0,0.0009995313946940566,0.00011969766994677647,0.0,0.0011192290646408333,0.0006676367592720883,0.00035717813080696377,6.886472375548509e-05,0.0,2.5549450806296093e-05,0.0005479390893253118,0.00035717813080696377,6.886472375548509e-05,0.0,2.5549450806296093e-05,0.00011969766994677647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.997486273263179e-06,0.0,0.0,0.00011911202850687948,4.4525460060277294e-05,0.00012710951478014267,6.529673482414949e-05,4.256415748875523e-05,8.206462530966756e-06,0.0,3.0446736630080067e-06,7.997486273263179e-06,0.0,0.0,0.0,0.0,0.0,7.58227133314261e-05,4.056429584548078e-05,7.820884838116026e-06,0.0,2.9016207651197723e-06 +94407,50.0,the Greater Atlanta and Macon Area,G1302070050200,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7363.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017678637011776961,0.0,0.0,0.0017678637011776961,0.0011400343044226135,0.00019237665351762908,0.00039368567099910335,0.0,4.168436516461094e-05,0.0011400343044226135,0.00019237665351762908,0.00039368567099910335,0.0,4.168436516461094e-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.000210672192347444,7.253494809561404e-05,0.000210672192347444,0.00013585522803823008,2.2925076931001396e-05,4.691460283386356e-05,0.0,4.967428535350258e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013585522803823008,2.2925076931001396e-05,4.691460283386356e-05,0.0,4.967428535350258e-06 +94408,50.0,the Greater Atlanta and Macon Area,G1301350050320,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,16309.0,,568.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003916097234482468,0.00045083625895296473,0.0,0.004366933493435431,0.002342181621223447,0.0014424113660135216,0.0004954153716984514,0.0,8.68424274262728e-05,0.0018913453622704823,0.0014424113660135216,0.0004954153716984514,0.0,8.68424274262728e-05,0.00045083625895296473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0121927883005197e-05,0.0,0.0,0.00046667333233930936,0.00018474320409255863,0.0004967952602223146,0.00022538777511532082,0.00017188922503110003,5.903764093671382e-05,0.0,1.03488352226293e-05,3.0121927883005197e-05,0.0,0.0,0.0,0.0,0.0,0.0002664535032999191,0.00016409297989161304,5.635991683203911e-05,0.0,9.879451197602848e-06 +94409,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,247421.0,,19771.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01258894667618873,0.003362261627168873,0.0,0.015951208303357604,0.009021438385221327,0.00226666713430097,0.0021881925546558168,0.0,0.0024749279595409107,0.008400716162266699,0.00226666713430097,0.0015508924437734387,0.0,0.0003706709358476239,0.0006207222229546284,0.000637300110882378,0.002104257023693287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002246471349284737,0.0,0.0,0.001500199982463428,0.0006952342950495153,0.0017248471173919016,0.0010010968005091422,0.0002701142583724266,0.00018481679816408295,0.0,4.417212541777639e-05,4.147311673976013e-05,4.258075660812759e-05,0.00014059444622215644,0.0,0.0,0.0,0.0009755124312558988,0.0002451008223535667,0.00023661515469032188,0.0,0.0002676206263238501 +94410,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,63355.0,,2970.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005552056675317411,0.0008743161938152544,0.0,0.006426372869132665,0.0027991069215945776,0.0014785331626044269,0.0021487020953273625,0.0,0.0,0.0019247907277793236,0.0014785331626044269,0.0021487020953273625,0.0,0.0,0.0008743161938152544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.84172483061334e-05,0.0,0.0,0.0006616264239764452,0.00025704890123627854,0.0007200436722825786,0.00022937309191838314,0.0001761935560660726,0.00025605611877887807,0.0,0.0,5.84172483061334e-05,0.0,0.0,0.0,0.0,0.0,0.00031362625044951097,0.00016566241481362273,0.00024075156839904898,0.0,0.0 +94411,50.0,the Greater Atlanta and Macon Area,G1300890022500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,304264.0,,3462.0,,7.614023970037612,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.05182797421492969,0.0023966668249554984,0.0,0.05422464103988519,0.034162136553150674,0.011792741017740228,0.005209737371079115,0.0007794760125367159,0.002280405751332996,0.034162136553150674,0.011792741017740228,0.003842027956247541,0.0007794760125367159,0.0012515205082318053,0.0,0.0013677094148315748,0.0010288852431011904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016013103359328762,0.0,0.0,0.006176237486420504,0.0018237806768687328,0.006336368520013792,0.004071034447937308,0.0014053176927072508,0.00045784689536285415,9.288861934734939e-05,0.00014914123106395086,0.0,9.138221465401948e-05,6.874399716770555e-05,0.0,0.0,0.0,0.003991983763849637,0.0013780294625559922,0.0006087788732684068,9.108492326045244e-05,0.0002664746310625902 +94412,50.0,the Greater Atlanta and Macon Area,G1301170130506,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,95338.0,,3594.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007847839501928003,0.0010471602142159316,0.0,0.008894999716143935,0.00490409099161997,0.003275974940958161,0.0007149337835658024,0.0,0.0,0.003856930777404039,0.003275974940958161,0.0007149337835658024,0.0,0.0,0.0010471602142159316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.996514205225571e-05,0.0,0.0,0.0009352122240346031,0.0003148678400899332,0.0010051773660868586,0.0004596231624509379,0.00039039175172509994,8.519730985856513e-05,0.0,0.0,6.996514205225571e-05,0.0,0.0,0.0,0.0,0.0,0.0005541856574835089,0.00037020078331676383,8.079092528658568e-05,0.0,0.0 +94413,50.0,the Greater Atlanta and Macon Area,G1301210011503,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4852.0,,339.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011650945477656236,0.0002685498684315312,0.0,0.001433644416197155,0.0007179801071309277,0.0004901221189791359,0.00017889540049812193,0.0,4.67294966627087e-05,0.0004494302386993965,0.0004901221189791359,0.00017889540049812193,0.0,4.67294966627087e-05,0.0002685498684315312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7940514663475965e-05,0.0,0.0,0.0001388467624818335,5.8232325072829705e-05,0.00015678727714530947,5.355954478073992e-05,5.840888155514627e-05,2.1319340331383962e-05,0.0,5.568852190121101e-06,1.7940514663475965e-05,0.0,0.0,0.0,0.0,0.0,7.852026957992566e-05,5.3601096363395864e-05,1.9564490623358964e-05,0.0,5.110465650576892e-06 +94414,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,86676.0,,5169.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.007722763218360226,0.001521590680240104,0.0,0.009244353898600332,0.005057462980223633,0.0016883886904681185,0.0024985022279085793,0.0,0.0,0.0035358722999835283,0.0016883886904681185,0.0024985022279085793,0.0,0.0,0.001521590680240104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010166388563322978,0.0,0.0,0.0009203064217680289,0.0003603631303578873,0.0010219703074012586,0.000421362910167984,0.00020120194162941694,0.0002977415699706279,0.0,0.0,0.00010166388563322978,0.0,0.0,0.0,0.0,0.0,0.0005591063532684739,0.0001866526452726743,0.00027621130886011023,0.0,0.0 +94415,81.0,the Columbus-Albany Area,G1302150010106,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,21953.0,,465.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001930376236125505,0.0001369370233003498,0.0,0.0020673439490321525,0.000752018112718909,0.0007386067547668129,0.0005767190815464307,0.0,0.0,0.0006150810894185592,0.0007386067547668129,0.0005767190815464307,0.0,0.0,0.0001369370233003498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.14983114307586e-06,0.0,0.0,0.00023004041350302765,7.847783089627802e-05,0.00023919024464610355,7.329840965703785e-05,8.801880177706466e-05,6.872685930920343e-05,0.0,0.0,9.14983114307586e-06,0.0,0.0,0.0,0.0,0.0,8.700796809536573e-05,8.545628338847401e-05,6.672599316226382e-05,0.0,0.0 +94416,50.0,the Greater Atlanta and Macon Area,G1300450910600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6778.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.0011359896916997468,0.0,0.0,0.001135989691699747,0.00041682436063665747,0.00028940221817091305,0.0004180800201382479,0.0,1.1628498862555079e-05,0.00041682436063665747,0.00028940221817091305,0.0004180800201382479,0.0,1.1628498862555079e-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.00013537303523188034,4.861650695966771e-05,0.00013537303523188034,4.967191099555011e-05,3.448733466763734e-05,4.9821544781129363e-05,0.0,1.3857389707992366e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.96719109955501e-05,3.4487334667637336e-05,4.982154478112935e-05,0.0,1.3857389707992364e-06 +94417,50.0,the Greater Atlanta and Macon Area,G1300890021202,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,534852.0,,88540.0,,9.525004485617233,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.1297751527938921,0.07666771303349822,0.0,0.20644286582739033,0.0809900305546555,0.013907395398609714,0.06755136695983151,0.0006650899843007229,0.04332898292999288,0.05387608047253402,0.013907395398609714,0.039606934623660564,0.0006650899843007229,0.021719562035163873,0.027113950082121488,0.027944432336170943,0.02160942089482901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00512248956892087,0.0,0.0,0.015465050780186404,0.009207260932888244,0.020587540349107276,0.006420306987951875,0.0016573170705583072,0.004719880824761875,7.925747078055572e-05,0.0025882776676879166,0.0018115960548767544,0.0018670840369127317,0.0014438155090894266,0.0,0.0,0.0,0.00807674082239066,0.0013869167276492934,0.006736568431895729,6.632618101236202e-05,0.004320988186159231 +94418,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,NaturalGas,13498.0,,1263.0,,8.53126424238864,Food Service,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,8531.26424238864,0.0,0.0,0.0030914694582759527,0.0009794666653090765,0.0,0.004070936123585029,0.0009045895801876199,0.0004482113205488493,0.0020841866835913025,0.00042039521117327575,0.0002136341888670503,0.0007266149966537904,0.0004482113205488493,0.001496328790683106,0.00042039521117327575,0.0,0.00017797458353382956,0.0005878578929081966,0.0002136341888670503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.544036748180524e-05,0.0,0.0,0.0003684060429027185,0.00016836808211285751,0.0004338464103845237,8.658968145856425e-05,5.341270913919671e-05,0.00017831538564330417,5.0097902726805645e-05,0.0,1.1890881600549271e-05,3.9276105968193186e-05,1.427337991306278e-05,0.0,0.0,0.0,9.640361094392028e-05,4.7766623354085116e-05,0.0002221152294698798,4.480221447192649e-05,2.276734961239272e-05 +94419,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,45131.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0039824674508277,0.0,0.0,0.0039824674508277,0.0014220029078040586,0.0014323146155200866,0.0011281499275035544,0.0,0.0,0.0014220029078040586,0.0014323146155200866,0.0011281499275035544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004745835565165638,0.0001614148346157868,0.0004745835565165638,0.00016945755506985637,0.00017068638292144742,0.00013443961852525996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016945755506985637,0.00017068638292144742,0.00013443961852525996,0.0,0.0 +94420,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,26154.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006280113523173091,0.0,0.0,0.006280113523173091,0.00254489665895849,0.0013092529772932367,0.0022679933760792878,0.0,0.00015805321791581648,0.00254489665895849,0.0013092529772932367,0.0022679933760792878,0.0,0.00015805321791581648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007483913457240357,0.00022210560785397018,0.0007483913457240357,0.0003032713705411234,0.000156021637818199,0.0002702732376658656,0.0,1.883495577198852e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003032713705411234,0.000156021637818199,0.0002702732376658656,0.0,1.883495577198852e-05 +94421,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,49645.0,,3934.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.0044233236452942,0.0011579495352186237,0.0,0.005581273180512823,0.002059548789032536,0.0014268518655990955,0.002094872525881192,0.0,0.0,0.0009015992538139125,0.0014268518655990955,0.002094872525881192,0.0,0.0,0.0011579495352186237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.736831589511976e-05,0.0,0.0,0.0005271181745743977,0.00023024125999546717,0.0006044864904695175,0.00010744168660903385,0.00017003493551343896,0.0002496415524519249,0.0,0.0,7.736831589511976e-05,0.0,0.0,0.0,0.0,0.0,0.00022306190347031734,0.00015453690381387692,0.00022688768318532333,0.0,0.0 +94422,50.0,the Greater Atlanta and Macon Area,G1300770170405,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,7921.0,,33.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016643144448560832,2.621814237536045e-05,0.0,0.0016904498801577044,0.0009441839538079336,0.0002429933826460852,0.00047713710840206454,0.0,2.621814237536045e-05,0.0009441839538079336,0.0002429933826460852,0.00047713710840206454,0.0,0.0,0.0,0.0,2.621814237536045e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.749807768903532e-06,0.0,0.0,0.00019832937886261982,7.074858818596422e-05,0.00020007918663152334,0.00011251444561425573,2.8956503259870648e-05,5.685842998849346e-05,0.0,0.0,0.0,0.0,1.749807768903532e-06,0.0,0.0,0.0,0.00011175223810291455,2.876034298759311e-05,5.647325347019219e-05,0.0,3.1031411596552125e-06 +94423,50.0,the Greater Atlanta and Macon Area,G1301510070108,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,115312.0,,8292.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010168352125372804,0.002415764231281591,0.0,0.012584116356654393,0.008724330460903207,0.002465759175956131,0.0013940267197950578,0.0,0.0,0.006308566229621615,0.002465759175956131,0.0013940267197950578,0.0,0.0,0.002415764231281591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016140633346313954,0.0,0.0,0.0012117442726117798,0.0004712535005578394,0.0013731506060749193,0.000751780514962823,0.00029384009545157624,0.0001661236621973805,0.0,0.0,0.00016140633346313954,0.0,0.0,0.0,0.0,0.0,0.0009519794096350892,0.0002690581214396143,0.00015211307500021605,0.0,0.0 +94424,50.0,the Greater Atlanta and Macon Area,G1301390001102,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,68067.0,,3501.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005614049680038771,0.00103067973790205,0.0,0.00664472941794082,0.0019931671706106048,0.002476006746492363,0.0021755861904441502,0.0,0.0,0.0009624874327085548,0.002476006746492363,0.0021755861904441502,0.0,0.0,0.00103067973790205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.886372807879952e-05,0.0,0.0,0.0006690149404226417,0.00024336035022733972,0.0007378786685014411,0.0001146976797766079,0.00029506071381598585,0.0002592602040483303,0.0,0.0,6.886372807879952e-05,0.0,0.0,0.0,0.0,0.0,0.00022133565498995257,0.00027495364316408073,0.0002415927783425883,0.0,0.0 +94425,50.0,the Greater Atlanta and Macon Area,G1300670030101,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,235610.0,,45472.0,,7.614023970037612,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.05507592324004102,0.03147499746169574,0.0,0.0865509928687595,0.0745916181955293,0.005423784760504529,0.002996807786001265,0.0007667746165357473,0.0027720796772114,0.04436705873672436,0.005423784760504529,0.002996807786001265,0.0007667746165357473,0.0015215695072978536,0.03022455945880494,0.0,0.0012505101699135462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021029776790302194,0.0,0.0,0.006563293541421995,0.0036520251464852763,0.008666271220452213,0.00528713842507012,0.0006463421654056309,0.0003571239124039894,9.137507993287066e-05,0.00018132255861690776,0.002019430628318279,0.0,8.355187249590304e-05,0.0,0.0,0.0,0.007468790046523012,0.0005430785738895174,0.0003000676041744651,7.677643631348291e-05,0.00027756578556927116 +94426,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,14076.0,,949.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011999329166338811,0.00027927541730909526,0.0,0.0014791776443366788,0.0005171198661162919,0.00043560827178959336,0.0005264801960370913,0.0,0.0,0.00023784444880719656,0.00043560827178959336,0.0005264801960370913,0.0,0.0,0.00027927541730909526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8659010718503456e-05,0.0,0.0,0.00014299263370184042,6.218171500995826e-05,0.0001616516444203439,2.8343254589356842e-05,5.19102136311395e-05,6.273916548134408e-05,0.0,0.0,1.8659010718503456e-05,0.0,0.0,0.0,0.0,0.0,5.651334512807159e-05,4.7605366216489516e-05,5.7536286983505535e-05,0.0,0.0 +94427,50.0,the Greater Atlanta and Macon Area,G1301430010302,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,43297.0,,978.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002228741891223477,0.00016634625084293537,0.0,0.002395088142066413,0.0014466733793463687,0.0008105789330405541,0.0001069140793629184,0.0,3.092175031657209e-05,0.001280327128503433,0.0008105789330405541,0.0001069140793629184,0.0,3.092175031657209e-05,0.00016634625084293537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1114803907962111e-05,0.0,0.0,0.00026559402550496876,7.284981175393135e-05,0.0002767088294129309,0.00015257362791156308,9.659482000294871e-05,1.2740703996714148e-05,0.0,3.684873593742865e-06,1.1114803907962111e-05,0.0,0.0,0.0,0.0,0.0,0.00016713677058933162,9.364763816788784e-05,1.2351975373545151e-05,0.0,3.5724452821662925e-06 +94428,50.0,the Greater Atlanta and Macon Area,G1300590001800,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,51355.0,,3226.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00439140645474459,0.000949659177276115,0.0,0.005341065632020704,0.0016714173381854886,0.0014940621033910646,0.0021755861904441502,0.0,0.0,0.0007217581609093741,0.0014940621033910646,0.0021755861904441502,0.0,0.0,0.000949659177276115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.344976051650704e-05,0.0,0.0,0.0005233155385105751,0.00020584117597974522,0.0005867652990270822,8.601054458136224e-05,0.00017804453362762384,0.0002592604603015889,0.0,0.0,6.344976051650704e-05,0.0,0.0,0.0,0.0,0.0,0.00018362060341662852,0.00016413649583437494,0.0002390081997760787,0.0,0.0 +94429,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,14173.0,,2466.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0012548980015130667,0.0007259012577595638,0.0,0.001980799259272631,0.0010687348497112016,0.00041701037037318535,0.0004950847287945412,0.0,0.0,0.0003428335919516378,0.00041701037037318535,0.0004950847287945412,0.0,0.0,0.0007259012577595638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.850114372969707e-05,0.0,0.0,0.00014954345124361255,9.698677005302504e-05,0.0001980445949733096,4.085472961218869e-05,4.969421412321367e-05,5.899816472149565e-05,0.0,0.0,4.850114372969707e-05,0.0,0.0,0.0,0.0,0.0,0.00010685442225106569,4.169359894174938e-05,4.949964219372248e-05,0.0,0.0 +94430,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,62690.0,,4014.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005528116592068583,0.0011694139519528826,0.0,0.006697530544021466,0.004187274044889029,0.0021100235793411813,0.00040023291979125584,0.0,0.0,0.0030178600929361456,0.0021100235793411813,0.00040023291979125584,0.0,0.0,0.0011694139519528826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.813340404203539e-05,0.0,0.0,0.000658776301807519,0.00022526284739388336,0.0007369097058495544,0.000359633281658598,0.0002514479402115697,4.7695079937351257e-05,0.0,0.0,7.813340404203539e-05,0.0,0.0,0.0,0.0,0.0,0.00046071352186441905,0.0002321597258822371,4.403645810289825e-05,0.0,0.0 +94431,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,139823.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011595208430610661,0.0,0.0,0.011595208430610661,0.003794524301860568,0.0030189672611113205,0.004781747557245071,0.0,0.0,0.003794524301860568,0.0030189672611113205,0.004781747557245071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013817784163046493,0.0003846320843390897,0.0013817784163046493,0.00045218607425914705,0.00035976445148854397,0.0005698315477775974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045218607425914705,0.00035976445148854397,0.0005698315477775974,0.0,0.0 +94432,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,46988.0,,3341.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002418704983477923,0.0005682403531512722,0.0,0.0029869453366291954,0.0012537847774576139,0.0007386291263979797,0.0006949415158589696,0.0,0.0002995899169146322,0.0008844436187164939,0.0007386291263979797,0.0004960423214488172,0.0,0.0002995899169146322,0.0003693411587411199,0.00019889919441015233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7966369424660854e-05,0.0,0.0,0.00028823268978392684,0.00010992003496274219,0.0003261990592085877,0.00010539754328298457,8.802109447358528e-05,5.911246453557443e-05,0.0,3.5701587491782574e-05,2.4677133186218298e-05,1.3289236238442556e-05,0.0,0.0,0.0,0.0,0.00013692363560903492,8.066439086795806e-05,7.589334357688893e-05,0.0,3.271768915470575e-05 +94433,85.0,Rural Climate Zone 3A,G1302850960600,ComStock DOE Ref 1980-2004,gen3_t5_cfl,200001_500000,Electricity,243931.0,,9237.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02007944216042949,0.002719099117976466,0.0,0.022798541278405957,0.006355510568191269,0.006164651906625855,0.010278378803588829,0.0,0.0,0.003636411450214803,0.006164651906625855,0.010278378803588829,0.0,0.0,0.002719099117976466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018167447199174684,0.0,0.0,0.0023928284555009447,0.0007879502857848069,0.0025745029274926914,0.000433344149925195,0.000734629696511299,0.0012248546090644504,0.0,0.0,0.00018167447199174687,0.0,0.0,0.0,0.0,0.0,0.0007176898014530862,0.0006961372741691191,0.0011606758518704857,0.0,0.0 +94434,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010702,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,74699.0,,2435.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006655593538570206,0.0007166943758702529,0.0,0.00737228791444046,0.003289342692594082,0.0017190169175532262,0.00236395899389945,0.0,0.0,0.002572648316723829,0.0017190169175532262,0.00236395899389945,0.0,0.0,0.0007166943758702529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.788454485674774e-05,0.0,0.0,0.000793135449395986,0.00028808269887059773,0.0008410199942527337,0.00030657800344894925,0.0002048522415802118,0.0002817088615935685,0.0,0.0,4.788454485674774e-05,0.0,0.0,0.0,0.0,0.0,0.0003752434799788622,0.00019610297575182176,0.0002696770395481643,0.0,0.0 +94435,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,61626.0,,2233.0,,9.729435225087556,Education,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,729707.6418815667,0.0,0.0,0.022838340387298824,0.0019747402508847565,0.0,0.024813080638183584,0.015256514516046746,0.004876909412909328,0.0011365776404293744,0.0006434919898512109,0.0028995870789469223,0.015256514516046746,0.004876909412909328,0.0011365776404293744,0.0006434919898512109,0.000924846828062166,0.0,0.0,0.0019747402508847565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013194340222605713,0.0,0.0,0.0027215964957221744,0.0008079937524870917,0.0028535398979482314,0.0018180864169490682,0.0005811709319960074,0.00013544354234377973,7.668357310141135e-05,0.00011021203133190806,0.0,0.0,0.00013194340222605713,0.0,0.0,0.0,0.0017545210733798141,0.000560851584345425,0.00013070806045300867,7.40025027051598e-05,0.0003334566770648236 +94436,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,29701.0,,942.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0068498825541631805,0.0007469275829396852,0.0,0.007596810137102865,0.004279512116492985,0.0012776588751248212,0.00187248814945792,0.0,0.0001671509960271403,0.003699735529580439,0.0012776588751248212,0.00187248814945792,0.0,0.0,0.0005797765869125449,0.0,0.0001671509960271403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.990425684148607e-05,0.0,0.0,0.0008162869701842717,0.00023223533950459492,0.0008661912270257579,0.0004408901732320671,0.00015225608378800824,0.0002231407131641964,0.0,0.0,3.873644562715284e-05,0.0,1.1167811214333224e-05,0.0,0.0,0.0,0.000487951625005376,0.00014567915859310532,0.0002135018222778291,0.0,1.905862114944755e-05 +94437,50.0,the Greater Atlanta and Macon Area,G1300210012400,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,58608.0,,3732.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0048573667471626105,0.0010986572158514618,0.0,0.005955993273407774,0.0024397009422421805,0.001286907260881571,0.002229415759890321,0.0,0.0,0.0013410437263907185,0.001286907260881571,0.002229415759890321,0.0,0.0,0.0010986572158514618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.340508398658511e-05,0.0,0.0,0.0005788418198313686,0.00023769334571698654,0.0006522469038179537,0.00015980926116210693,0.00015335793643295032,0.0002656746222363113,0.0,0.0,7.340508398658511e-05,0.0,0.0,0.0,0.0,0.0,0.0002671741408647927,0.0001409305279370453,0.0002441455958662323,0.0,0.0 +94438,85.0,Rural Climate Zone 3A,G1301070970100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,47742.0,,1329.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.00425379426010569,0.00039107765305162654,0.0,0.004644871913157316,0.0027534100978172985,0.0008036687201179429,0.0010877930952220751,0.0,0.0,0.0023623324447656717,0.0008036687201179429,0.0010877930952220751,0.0,0.0,0.00039107765305162654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6129158122653206e-05,0.0,0.0,0.0005069175914987517,0.00017798293407156627,0.0005330467496214049,0.0002815152308730181,9.577186555208477e-05,0.00012963049507364892,0.0,0.0,2.6129158122653206e-05,0.0,0.0,0.0,0.0,0.0,0.0003159820831353367,9.222923840327541e-05,0.00012483542808279285,0.0,0.0 +94439,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,119755.0,,15423.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009963534132580696,0.004539882770012875,0.0,0.014503416902593571,0.007132018986735744,0.0028587675162373124,0.004512661089226813,0.0,0.0,0.00259213621672287,0.0028587675162373124,0.004512661089226813,0.0,0.0,0.004539882770012875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030332771216168644,0.0,0.0,0.001187335957170165,0.0005980714835470076,0.0014906636693318516,0.0003089000845527211,0.00034067404397393567,0.0005377654858671988,0.0,0.0,0.00030332771216168644,0.0,0.0,0.0,0.0,0.0,0.0007330301310314518,0.00029382461416791795,0.00046381207841546506,0.0,0.0 +94440,50.0,the Greater Atlanta and Macon Area,G1300670030209,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,15125.0,,771.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0017671993629733795,0.00028662209064209636,0.0,0.0020538214536154763,0.0008619974352337536,0.00030068776847136245,0.000800774925673863,0.0,9.040007266026915e-05,0.0006870483019027999,0.00030068776847136245,0.0006891019683627203,0.0,9.040007266026915e-05,0.00017494913333095376,0.00011167295731114259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9151019517747326e-05,0.0,0.0,0.00021059306645890432,7.679827397791324e-05,0.00022974408597665162,8.187395929096044e-05,3.5832266882739444e-05,8.211868997972142e-05,0.0,1.0772767865648339e-05,1.1689448847185234e-05,7.461570670562092e-06,0.0,0.0,0.0,0.0,9.6424551668489e-05,3.36354634966949e-05,8.957609389467743e-05,0.0,1.011231138373572e-05 +94441,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,NaturalGas,7528.0,,1202.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0018075630965725638,0.0009534471460667359,0.0,0.0027610102426393,0.0017146003456895821,0.0003813623170119465,0.0005189868877141541,0.0,0.00014614339929735617,0.0009072965989202025,0.0003813623170119465,0.0005189868877141541,0.0,0.0,0.0008073037467693797,0.0,0.00014614339929735617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.37029470746154e-05,0.0,0.0,0.0002154076931332014,0.0001239258585183492,0.00027911064020781683,0.00010812273592638845,4.544703148191221e-05,6.184778194513103e-05,0.0,0.0,5.3938624774056286e-05,0.0,9.764322300559105e-06,0.0,0.0,0.0,0.00017332902022431325,3.855193248055127e-05,5.24644060541009e-05,0.0,1.4773642310373906e-05 +94442,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7675.0,,142.0,,4.088175128053588,Healthcare,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,12264.525384160763,0.0,0.0,0.001105608775488838,5.269785633003259e-05,0.0,0.0011583066318188709,0.0005432529012846007,0.0001852562140543278,0.00039314150759155197,0.0,3.657851204084615e-05,0.0005432529012846007,0.0001852562140543278,0.0003404436512615194,0.0,3.657851204084615e-05,0.0,5.269785633003259e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5214934275999425e-06,0.0,0.0,0.0001317524272687241,4.2121636312958554e-05,0.00013527392069632408,6.473798865550458e-05,2.207648528972663e-05,4.056975523018996e-05,0.0,4.358963002196599e-06,0.0,3.5214934275999425e-06,0.0,0.0,0.0,0.0,6.34442969311365e-05,2.163531980226559e-05,4.5913397764858126e-05,0.0,4.2718556564188915e-06 +94444,81.0,the Columbus-Albany Area,G1302150003200,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,185781.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,240343.828889517,0.0,0.0,0.016382395713544134,0.0,0.0,0.016382395713544134,0.012348356477818567,0.002862620626209796,0.0011714186095157745,0.0,0.0,0.012348356477818567,0.002862620626209796,0.0011714186095157745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00195225748557166,0.0007005769997036869,0.00195225748557166,0.0014715290602093079,0.00034113280155048133,0.00013959562381187106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014715290602093079,0.00034113280155048133,0.00013959562381187106,0.0,0.0 +94445,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,98075.0,,7207.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.009825031939359165,0.0021213269665098116,0.0,0.011946328216262677,0.0033374026160562847,0.0032332114026755836,0.005375744887137108,0.0,0.0,0.0012160756495464729,0.0032332114026755836,0.005375744887137108,0.0,0.0,0.0021213269665098116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014173401685721804,0.0,0.0,0.0011708293432451844,0.0004737339363895658,0.0013125633601024024,0.00014491729521927906,0.00038529531573353905,0.0006406167322923662,0.0,0.0,0.00014173401685721804,0.0,0.0,0.0,0.0,0.0,0.0003666860906920411,0.0003552384252125384,0.0005906422161169629,0.0,0.0 +94446,50.0,the Greater Atlanta and Macon Area,G1300570090601,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,85338.0,,27602.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.021460766927001294,0.0189872885666149,0.0,0.04044805549361619,0.018035707991179775,0.0034843713518514317,0.007816759640991449,0.0003700750504405531,0.010741069739181973,0.013401091744179973,0.0034843713518514317,0.0030207017392355063,0.0003700750504405531,0.001184527041293832,0.004634616246999802,0.004796057901755942,0.009556542697888143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012686188058761247,0.0,0.0,0.002557439211735265,0.0020530267797018503,0.0038260580176113896,0.0015969828861757498,0.00041522597742116226,0.00035997134217780936,4.410114738680604e-05,0.00014115785857373806,0.00030965776436878573,0.00032044434500966306,0.0006385119045915718,0.0,0.0,0.0,0.001706031707107457,0.0003295932717752196,0.0007394020684350737,3.500609847807121e-05,0.0010160180876879563 +94447,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,16539.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0014080698265449016,0.0,0.0,0.0014080698265449014,0.0004295317297426482,0.0004771619987166829,0.0005013760980855704,0.0,0.0,0.0004295317297426482,0.0004771619987166829,0.0005013760980855704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016779535056067073,5.656086808200401e-05,0.00016779535056067073,5.1185975162859295e-05,5.686192782453103e-05,5.974744757328038e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.11859751628593e-05,5.6861927824531035e-05,5.974744757328039e-05,0.0,0.0 +94448,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,107221.0,,19042.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005519213285002557,0.0032382377490356037,0.0,0.008757451034038162,0.0038575592734380482,0.0010256659474272144,0.0016247571294493786,0.0,0.0022494686837235193,0.0029624065164238424,0.0010256659474272144,0.0012442458430136256,0.0,0.00028689497813787446,0.0008951527570142057,0.0003805112864357532,0.0019625737055856446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021636048161464893,0.0,0.0,0.0006577132432190559,0.0003585175557590559,0.0008740737248337048,0.0003530238635540405,0.0001222264916948913,0.00014827420621595723,0.0,3.418868175416673e-05,5.980897532429603e-05,2.5423582693261975e-05,0.0001311279235970909,0.0,0.0,0.0,0.00038501970376944523,0.0001023708441666737,0.00016216562451426978,0.0,0.00022451755238331593 +94449,50.0,the Greater Atlanta and Macon Area,G1302890060100,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,46292.0,,12922.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0022289014644762575,0.0021974655336785037,0.0,0.004426366998154763,0.0012990503901630088,0.00021992740305433497,0.0025498210061792132,0.0,0.000357585929119625,0.0012990503901630088,0.00021992740305433497,0.00035235547250070935,0.0,0.000357585929119625,0.0,0.0021974655336785037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014682141682235825,0.0,0.0,0.0002656137957508578,0.00020421294137273029,0.000412435212573216,0.00015480527537986414,2.620831528262157e-05,4.198950738564483e-05,0.0,4.261281059496227e-05,0.0,0.00014682141682235825,0.0,0.0,0.0,0.0,0.00012104150515164014,2.049215649475131e-05,0.0002375844499892519,0.0,3.331875299791555e-05 +94450,50.0,the Greater Atlanta and Macon Area,G1301350050540,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5412.0,,1055.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.00047726036796539445,0.00030744157350892393,0.0,0.0007847323150737562,0.0005870305563334295,0.00015636328990554637,4.130809523534248e-05,0.0,0.0,0.00027958898282450553,0.00015636328990554637,4.130809523534248e-05,0.0,0.0,0.00030744157350892393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0541900351301122e-05,0.0,0.0,5.687541570060506e-05,3.703178736951111e-05,7.741731605190618e-05,3.33187934528142e-05,1.8633910776218088e-05,4.922711471572766e-06,0.0,0.0,2.0541900351301122e-05,0.0,0.0,0.0,0.0,0.0,5.791316253813248e-05,1.5425930602075128e-05,4.075226421682629e-06,0.0,0.0 +94451,50.0,the Greater Atlanta and Macon Area,G1301170130509,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,106376.0,,7033.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.00805835891963106,0.002048820776474111,0.0,0.010107179696105173,0.006626152585342748,0.0027363879469465,0.0007446391638159238,0.0,0.0,0.0045773318088686375,0.0027363879469465,0.0007446391638159238,0.0,0.0,0.002048820776474111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001368894706784173,0.0,0.0,0.0009602996967869834,0.00034131613505002545,0.0010971891674654006,0.000545472147863974,0.00032609027991329373,8.873726900971584e-05,0.0,0.0,0.0001368894706784173,0.0,0.0,0.0,0.0,0.0,0.0007193047969071421,0.00029704975113181616,8.08346194264422e-05,0.0,0.0 +94452,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,80850.0,,18847.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.030762476700844935,0.016670112783806732,0.0,0.04743268170190444,0.037367260778965225,0.005661309364997949,0.0012966667912436053,0.0006383278236959132,0.0024691169430017443,0.020697147995158493,0.005661309364997949,0.0012966667912436053,0.0006383278236959132,0.0024691169430017443,0.016670112783806732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011138022205115893,0.0,0.0,0.0036659083532881546,0.0019261364738503487,0.004779710573799744,0.0024664414527653658,0.0006746479320738309,0.0001545214212651714,7.606836483873952e-05,0.00029424017170720176,0.0011138022205115893,0.0,0.0,0.0,0.0,0.0,0.0037654352452937846,0.0005704805054770025,0.0001306629047826576,6.432320794435359e-05,0.0002488087103019456 +94453,50.0,the Greater Atlanta and Macon Area,G1300850970202,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,10454.0,,131.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0011760146614827125,4.882301395282431e-05,0.0,0.0012248376754355368,0.0006491910918774751,0.00016758693281425808,0.0003715973839742739,0.0,3.650101519330198e-05,0.0006491910918774751,0.00016758693281425808,0.00032277437002144963,0.0,3.650101519330198e-05,0.0,4.882301395282431e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2614093887492464e-06,0.0,0.0,0.00014014409957181792,4.667277326988538e-05,0.00014340550896056717,7.736323704205067e-05,1.9971111388735176e-05,3.846459141460439e-05,0.0,4.3497773244366545e-06,0.0,3.2614093887492464e-06,0.0,0.0,0.0,0.0,7.600809544844488e-05,1.9621285234244007e-05,4.3507081016508676e-05,0.0,4.2735839747185784e-06 +94454,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,23551.0,,2943.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.005315666336299028,0.0023342417421444734,0.0,0.007649908078443502,0.00445319697134553,0.0014238022744221773,0.0016156826854973705,0.0,0.0001571434401046841,0.0021189552292010566,0.0014238022744221773,0.0016156826854973705,0.0,0.0001571434401046841,0.0023342417421444734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015596167743886383,0.0,0.0,0.0006334536625237194,0.0003019007689541351,0.0007894153399625832,0.00025251019641607715,0.00016967068818511972,0.00019253656077236793,0.0,1.8726361170591196e-05,0.00015596167743886383,0.0,0.0,0.0,0.0,0.0,0.00045953780947526713,0.00014692612577524885,0.0001667268002915763,0.0,1.621606964699232e-05 +94455,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,111855.0,,1772.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.01220838838102258,0.0006584132167352307,0.0,0.012866801597757811,0.006827046035979494,0.0013556911025138607,0.004450915193427834,0.0,0.00023314926583662212,0.006827046035979494,0.0013556911025138607,0.003792501976692603,0.0,0.00023314926583662212,0.0,0.0006584132167352307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.39905728146818e-05,0.0,0.0,0.0014548522405055033,0.0004722751133910334,0.001498842813320185,0.0008135671074257752,0.00016155533198727274,0.0004519458118230862,0.0,2.7783989269369193e-05,0.0,4.39905728146818e-05,0.0,0.0,0.0,0.0,0.0007952768067098418,0.00015792330756379366,0.0005184833386666558,0.0,2.7159360379893853e-05 +94456,85.0,Rural Climate Zone 3A,G1302770960700,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,95503.0,,8265.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004369629841610594,0.0014055212104904257,0.0,0.005775133321739599,0.002784234114513732,0.0011850973573163295,0.0012151503199233189,0.0,0.0005906515299862188,0.0026640045337243535,0.0011850973573163295,0.00039707144400208253,0.0,0.0001234387762064076,0.00012022958078937803,0.0008180788759212363,0.00046721275377981125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.390816927187741e-05,0.0,0.0,0.0005207200560948588,0.00021516526722148015,0.0006146282253667362,0.0003174640966216484,0.00014122568381036386,4.7318210486730974e-05,0.0,1.4709952284376914e-05,8.032991419827943e-06,5.4658932917100916e-05,3.121624493494854e-05,0.0,0.0,0.0,0.0002963167735656064,0.00012612596887975148,0.00012932440570277928,0.0,6.286107721859902e-05 +94457,85.0,Rural Climate Zone 3A,G1301930000400,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Propane,21951.0,,,3078.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0019356487449690481,0.0,0.00029012862182940547,0.0022257773667984536,0.0016308800482106463,0.0004888327093511779,0.00010606460923662937,0.0,0.0,0.0013407514263812411,0.0004888327093511779,0.00010606460923662937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029012862182940547,0.0,0.0,0.0,0.0,2.3397561550703774e-05,0.00023066882745372585,7.810907871074243e-05,0.00025406638900442964,0.0001597756618984178,5.825357941627329e-05,1.2639586139034815e-05,0.0,0.0,0.0,0.0,0.0,2.3397561550703774e-05,0.0,0.0,0.00018616048978171184,5.579891463751761e-05,1.2106984585200168e-05,0.0,0.0 +94458,85.0,Rural Climate Zone 3A,G1302770960900,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,173922.0,,10554.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.04098724903657619,0.00933506028097567,0.0,0.050322217100299084,0.03738708748831146,0.006091871718195901,0.0035485198867117504,0.0006682062135944216,0.0026265317934855525,0.030892410810002335,0.006091871718195901,0.0024776931475096495,0.0006682062135944216,0.0008569749300211096,0.006494676678309126,0.001070826739202101,0.0017695568634644432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006237134597334665,0.0,0.0,0.004884366715935935,0.0016962671128275249,0.0055080801756694,0.0036813854718755054,0.000725955904763328,0.0002952616295667741,7.962876908742165e-05,0.00010212395130132618,0.0004339358438995602,7.15463028818324e-05,0.00011823131295207387,0.0,0.0,0.0,0.00409224965207588,0.0006667933127198504,0.00038840760934695485,7.31393330906454e-05,0.0002874902684360698 +94459,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970800,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,78457.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.007223084935092885,0.0,0.0,0.007223084935092885,0.005645449806696618,0.0012476867177039694,0.00032991803709286037,0.0,0.0,0.005645449806696618,0.0012476867177039694,0.00032991803709286037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008607599104449324,0.00025594141088288754,0.0008607599104449324,0.0006727564349166902,0.00014868421416124327,3.9315641808740064e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006727564349166902,0.00014868421416124327,3.9315641808740064e-05,0.0,0.0 +94460,50.0,the Greater Atlanta and Macon Area,G1300670030311,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,49880.0,,1881.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0047616458651200755,0.0005535791183979628,0.0,0.005315224983518037,0.00254070043656792,0.0011350550889205376,0.001639438768423283,0.0,0.0,0.0019871213181699575,0.0011350550889205376,0.001639438768423283,0.0,0.0,0.0005535791183979628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6986439918642904e-05,0.0,0.0,0.0005674370053208016,0.00022884972300968328,0.0006044234452394445,0.00023680177021376418,0.00013526252870864523,0.0001953690491717136,0.0,0.0,3.6986439918642904e-05,0.0,0.0,0.0,0.0,0.0,0.0002889170102777704,0.00012907335239981327,0.00018642959267805935,0.0,0.0 +94461,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,113630.0,,10152.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00584915758066832,0.0017264584825548014,0.0,0.007575598332861702,0.00328399981186076,0.0017413519861476459,0.0011593174118115725,0.0,0.0013909645837645625,0.00328399981186076,0.0017413519861476459,0.00061113009742638,0.0,0.00021269341559495343,0.0,0.0005481873143851925,0.001178271168169609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011535135679495335,0.0,0.0,0.0006970322183914396,0.00029213261490573436,0.0008123835751863929,0.00039134758167975884,0.00020751337627086935,7.282713137063654e-05,0.0,2.5346241961301958e-05,0.0,3.662651093615651e-05,7.872484585879685e-05,0.0,0.0,0.0,0.0003521659136147854,0.00018673716451254413,0.00012432158918694277,0.0,0.00014916271056961502 +94462,50.0,the Greater Atlanta and Macon Area,G1300670030219,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5954.0,,438.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014297571837314075,0.0003477005380000484,0.0,0.001777457721731456,0.0010776731708231758,0.0002902191217512298,0.0003589487000285942,0.0,5.0699436202195455e-05,0.0007299726328231273,0.0002902191217512298,0.0003589487000285942,0.0,5.0699436202195455e-05,0.0003477005380000484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3233817835314325e-05,0.0,0.0,0.0001703770980627773,7.780054451382446e-05,0.00019361091589809165,8.69872313010975e-05,3.458397854470328e-05,4.277414274266521e-05,0.0,6.041601267569994e-06,2.3233817835314325e-05,0.0,0.0,0.0,0.0,0.0,0.00011738635866884437,3.161233557705103e-05,3.909875645608477e-05,0.0,5.522474126170499e-06 +94463,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11705.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026169345201854264,0.0,0.0,0.0026169345201854264,0.0014331481737547191,0.0005493403837764799,0.0005615810306898975,0.0,7.294763903806914e-05,0.0014331481737547191,0.0005493403837764799,0.0005615810306898975,0.0,7.294763903806914e-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.0003118575260188384,9.435656866172852e-05,0.0003118575260188384,0.00017078686548637628,6.546435598802581e-05,6.692306190284483e-05,0.0,8.693098762637574e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017078686548637628,6.546435598802581e-05,6.692306190284483e-05,0.0,8.693098762637574e-06 +94464,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,58710.0,,7035.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005654437201926547,0.0020709039433626855,0.0,0.007725341145289233,0.004047774933029211,0.001447137695361877,0.0022304285168981454,0.0,0.0,0.001976870989666525,0.001447137695361877,0.0022304285168981454,0.0,0.0,0.0020709039433626855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013836635271853776,0.0,0.0,0.0006738268041134799,0.0003354650299239104,0.0008121931568320175,0.0002355793536194534,0.00017245220586154943,0.0002657952446324772,0.0,0.0,0.00013836635271853776,0.0,0.0,0.0,0.0,0.0,0.00042555727173384497,0.00015214283888075064,0.00023449304621742196,0.0,0.0 +94465,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,217408.0,,2871.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.010525824090989967,0.0004883118838696742,0.0,0.01101413597485964,0.006661598201657979,0.0015839241070989972,0.0012146893305263974,0.0,0.0015539243355762677,0.006374313155568864,0.0015839241070989972,0.0010136802231072587,0.0,0.0015539243355762677,0.00028728504608911557,0.0002010091074191386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.262562016686741e-05,0.0,0.0,0.0012543429023572025,0.0003807117050258241,0.0012869685225240701,0.0007596150567378477,0.00018875329327541868,0.00012079838900242052,0.0,0.00018517827623574723,1.9194398299399176e-05,1.3430037247441116e-05,0.0,0.0,0.0,0.0,0.0007783876297519584,0.0001850767479679159,0.0001419327795300104,0.0,0.00018157136527418544 +94466,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,403499.0,,55712.0,,9.525004485617233,Lodging,Zone-by-Zone,Before 1946,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.0,0.1014538933103788,0.048241819466666794,0.0,0.14969571277704558,0.08391364587318334,0.004334956668408824,0.043557209817506416,0.0006821528330903029,0.01720783786447992,0.06720306817342833,0.004334956668408824,0.02039669471604367,0.0006821528330903029,0.008837111199030889,0.016710577699755015,0.023160515101462744,0.008370726665449031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003223236465345825,0.0,0.0,0.012090062420604524,0.006590164483077469,0.015313298885950349,0.008008458449073354,0.0005165883240314933,0.002430634293516613,8.129082150867325e-05,0.0010531012909208563,0.0011165031500534872,0.0015474502756432902,0.0005592830396490471,0.0,0.0,0.0,0.008584045033939624,0.0004434494875605215,0.004455735973995145,6.978162584100008e-05,0.001760295999874227 +94467,50.0,the Greater Atlanta and Macon Area,G1301350050606,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,21207.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.005092274530129158,0.0,0.0,0.005092274530129157,0.0026506790062710635,0.0009361613676552206,0.0014404263962437779,0.0,6.500775995909564e-05,0.0026506790062710635,0.0009361613676552206,0.0014404263962437779,0.0,6.500775995909564e-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.0006068331964915397,0.00019079082479820563,0.0006068331964915397,0.00031587456739251834,0.00011155993099054307,0.00017165189134475643,0.0,7.746806763721783e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00031587456739251845,0.0001115599309905431,0.00017165189134475648,0.0,7.746806763721785e-06 +94468,50.0,the Greater Atlanta and Macon Area,G1301350050308,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,17186.0,,12231.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0038627196071835705,0.0094862636264674,0.0,0.013348902372867903,0.0031285036969213383,0.00041934402099338486,0.008507282125856734,0.0004173225014166717,0.0008763691668967036,0.0019643510030837447,0.00041934402099338486,0.0010616212209067005,0.0004173225014166717,0.0,0.0011641526938375936,0.007445660904950034,0.0008763691668967036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006338142237759586,0.0,0.0,0.0004603094595009459,0.0007667211716863007,0.0010941236832769047,0.00023408619844371946,4.997205059602063e-05,0.00012651042272949378,4.973115177903249e-05,0.0,7.778157608256737e-05,0.0004974736073961801,5.855363767332537e-05,0.0,0.0,0.0,0.00025642332923029616,3.437093267997715e-05,0.0006972872071592201,3.420524172027807e-05,7.183034484874515e-05 +94469,50.0,the Greater Atlanta and Macon Area,G1300890023507,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5446.0,,694.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0009878532887422878,0.0005507464040300482,0.0,0.0015386823998460753,0.0010055526025224996,0.00029344469762706274,0.0001992413406379916,0.0,4.0361051984782014e-05,0.0004951672504772335,0.00029344469762706274,0.0001992413406379916,0.0,0.0,0.000510385352045266,0.0,4.0361051984782014e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6798435687283894e-05,0.0,0.0,0.00011772457806877008,6.662687565555585e-05,0.00015452301375605396,5.9010134703426526e-05,3.4970428917280334e-05,2.3744014448063228e-05,0.0,0.0,3.4101688936210974e-05,0.0,2.696746751072914e-06,0.0,0.0,0.0,0.00010098316497775232,2.946934276534506e-05,2.0008919594621265e-05,0.0,4.053280515639342e-06 +94470,50.0,the Greater Atlanta and Macon Area,G1301350050537,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12330.0,,1235.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028513263671626236,0.000979334460147139,0.0,0.0038305781202360237,0.0023844449359042333,0.0004392572686294617,0.0009384771657199212,0.0,6.839874998240724e-05,0.0014051104757570939,0.0004392572686294617,0.0009384771657199212,0.0,6.839874998240724e-05,0.000979334460147139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.543116626224567e-05,0.0,0.0,0.00033978351138697635,0.00018155767657708241,0.00040521467764922204,0.00016744255474846528,5.2344894241515044e-05,0.00011183534456005859,0.0,8.150861897520795e-06,6.543116626224567e-05,0.0,0.0,0.0,0.0,0.0,0.00025223662218778087,4.6466482845622756e-05,9.927606493113941e-05,0.0,7.235507684678972e-06 +94471,85.0,Rural Climate Zone 3A,G1300310110601,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,60248.0,,4537.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0031012707070656956,0.0007715898682778577,0.0,0.0038728783057049754,0.0014554676386107144,0.000764533184432677,0.0009309680870827126,0.0,0.0007219093955788699,0.0014554676386107144,0.000764533184432677,0.0007557211948069106,0.0,0.00012556641957681394,0.0,0.0001752468922758019,0.0005963429760020559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.155343392444494e-05,0.0,0.0,0.0003695734743665043,0.00015131210806307774,0.0004211269082909492,0.00017344575267288294,9.110819787370675e-05,9.00580871514611e-05,0.0,1.4963549567291073e-05,0.0,1.1709043175449558e-05,3.984439074899539e-05,0.0,0.0,0.0,0.00015826383851585716,8.313338835658569e-05,0.00010123109514005669,0.0,7.849858627844949e-05 +94472,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,26767.0,,3215.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0069741616788774495,0.002493746549833395,0.0,0.009467908228710844,0.0037278438210252667,0.0008629462769073281,0.003851884262252387,0.000413683766178588,0.0006115501023472753,0.0037278438210252667,0.0008629462769073281,0.001358137712418992,0.000413683766178588,0.0006115501023472753,0.0,0.002493746549833395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016661746026496027,0.0,0.0,0.0008310962690062983,0.0004357509693357862,0.0009977137292712587,0.00044423935574590276,0.0001028355039807443,0.0001618464322395597,4.9297829681923526e-05,7.287714735816801e-05,0.0,0.00016661746026496027,0.0,0.0,0.0,0.0,0.0003928344963819281,9.093596254800087e-05,0.0004059056888996035,4.359336435490747e-05,6.444421708681883e-05 +94473,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,22614.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0019246231283731445,0.0,0.0,0.001924623128373144,0.001184570378072321,0.0006214742180958401,0.00011860890580442088,0.0,0.0,0.001184570378072321,0.0006214742180958401,0.00011860890580442088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022935370114857275,7.088309741799245e-05,0.00022935370114857275,0.00014116301341109976,7.405990813857725e-05,1.413439916334217e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014116301341109982,7.405990813857727e-05,1.4134399163342173e-05,0.0,0.0 +94474,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,33556.0,,3356.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0030685616648884087,0.000987744978691564,0.0,0.0040563373331862695,0.0030361841302443317,0.0004182993338376889,0.0006018231794979517,0.0,0.0,0.0020484391515527677,0.0004182993338376889,0.0006018231794979517,0.0,0.0,0.000987744978691564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.59962016482113e-05,0.0,0.0,0.00036567552546830676,0.0001922312937202472,0.0004316717271165181,0.00024410917717736377,4.984805436839809e-05,7.171829392254489e-05,0.0,0.0,6.59962016482113e-05,0.0,0.0,0.0,0.0,0.0,0.00032310795175331857,4.4515034391276146e-05,6.404547501195344e-05,0.0,0.0 +94475,50.0,the Greater Atlanta and Macon Area,G1300890021705,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,7414.0,,344.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015216447426557778,0.00027268522211849655,0.0,0.0017943299647742742,0.001215215034451644,0.0003162718499791116,0.0002329031196498897,0.0,2.9939960693629282e-05,0.0009724697730267766,0.0003162718499791116,0.0002329031196498897,0.0,0.0,0.00024274526142486726,0.0,2.9939960693629282e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8218361493783767e-05,0.0,0.0,0.0001813303494891574,8.127022476603938e-05,0.00019954871098294114,0.00011588663166069751,3.768927364096847e-05,2.775444418749143e-05,0.0,0.0,1.6218043974599745e-05,0.0,2.000317519184023e-06,0.0,0.0,0.0,0.00013514492788533553,3.517281727581318e-05,2.590132150854862e-05,0.0,3.3296443132438205e-06 +94476,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000800,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,32178.0,,8362.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.003836875958551397,0.002461275735469465,0.0,0.0062981516940208634,0.003273292028500383,0.001145244038211375,0.0018796156273091047,0.0,0.0,0.0008120162930309179,0.001145244038211375,0.0018796156273091047,0.0,0.0,0.002461275735469465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001644482129235091,0.0,0.0,0.0004572341298236257,0.00030132947582784157,0.0006216823427471348,9.676663180082956e-05,0.00013647682825925232,0.0002239906697635439,0.0,0.0,0.0001644482129235091,0.0,0.0,0.0,0.0,0.0,0.0003231023887064379,0.00011304554594459061,0.00018553440809610623,0.0,0.0 +94477,50.0,the Greater Atlanta and Macon Area,G1300150960401,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,20386.0,,7423.0,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,43199.70345818221,0.0,0.0,0.003231084867049107,0.0038871396596844325,0.0,0.00711822452673354,0.00627982613691073,0.00021439021142372674,0.0006024435913065506,0.0,2.150999320115822e-05,0.00241425106431883,0.00021439021142372674,0.0006024435913065506,0.0,0.0,0.003865575072591901,0.0,2.150999320115822e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002597144925726226,0.0,0.0,0.0003850418014764536,0.0003887825303013068,0.0006447562940490762,0.00028770138119917093,2.554844475530605e-05,7.179197552197664e-05,0.0,0.0,0.0002582736810030353,0.0,1.4371639453605046e-06,0.0,0.0,0.0,0.0005688156382396528,1.9419089364042813e-05,5.456828396542206e-05,0.0,1.948337461021866e-06 +94478,85.0,Rural Climate Zone 3A,G1300230790300,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,23852.0,,4495.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004966464552889034,0.0030921348303670545,0.0,0.008058599383256088,0.002323153301137673,0.0003091847950482992,0.0030022697066844945,0.00037444996867250533,0.002049469891742101,0.002323153301137673,0.0003091847950482992,0.0017044251111859967,0.00037444996867250533,0.00025517965687354413,0.0,0.0012978445954984976,0.001794290234868557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020659854292536819,0.0,0.0,0.0005918442694223913,0.00036152689705177556,0.0007984428123477595,0.0002768458233469573,3.68449723527023e-05,0.00020311314496914174,4.462250073149124e-05,3.040928128761651e-05,0.0,8.671446010060452e-05,0.00011988408282476367,0.0,0.0,0.0,0.0002301771023795289,3.06339061607233e-05,0.0002974636849441054,3.7100353529375175e-05,0.00020306065934790743 +94479,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12176.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,24284.436554246196,0.0,0.0,0.0010136163168005276,0.0,0.0,0.0010136163168005274,0.000509785050211141,0.00024858581101139254,0.00025524545557799403,0.0,0.0,0.000509785050211141,0.00024858581101139254,0.00025524545557799403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012079141774125126,4.672173367954062e-05,0.00012079141774125126,6.0750461429693736e-05,2.9623667303625264e-05,3.0417289007932258e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.075046142969375e-05,2.962366730362527e-05,3.0417289007932265e-05,0.0,0.0 +94480,50.0,the Greater Atlanta and Macon Area,G1300890022500,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,100703.0,,1203.0,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,699376.6742607838,0.0,0.0,0.02467809430715615,0.0010194228790058484,0.0,0.025697605570320057,0.016407811869637922,0.0030989253497228256,0.005697242828222387,0.0,0.0004935371385788677,0.015388388990632072,0.0030989253497228256,0.005697242828222387,0.0,0.0004935371385788677,0.0010194228790058484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.811446913702237e-05,0.0,0.0,0.002940843104842709,0.001107703426573515,0.0030089575739797314,0.0018338060100781283,0.0003692932336558879,0.0006789299481335502,0.0,5.881391297514341e-05,6.811446913702237e-05,0.0,0.0,0.0,0.0,0.0,0.0019212066144638342,0.0003628561764920166,0.0006670956915371455,0.0,5.778874249989792e-05 +94481,50.0,the Greater Atlanta and Macon Area,G1301390001606,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,146659.0,,3732.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.007193757269319444,0.0006347292084764702,0.0,0.007828504208157333,0.003179231106229668,0.0014217976822740342,0.001711157180649296,0.0,0.0015163005086429157,0.0029643568561800483,0.0014217976822740342,0.0012913022222224458,0.0,0.0015163005086429157,0.00021487425004961992,0.0004198549584268503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.240921212318052e-05,0.0,0.0,0.0008572669249385424,0.00027178129389237015,0.0008996761370617228,0.0003532569965011297,0.0001694330349685425,0.0001538821291527491,0.0,0.00018069476431612115,1.4356748560597354e-05,2.805246356258316e-05,0.0,0.0,0.0,0.0,0.0003653671613919239,0.00016339742720438555,0.0001966515238744887,0.0,0.00017425798696245234 +94482,50.0,the Greater Atlanta and Macon Area,G1301390001403,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,40420.0,,10719.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.009488770310742524,0.008313377968058405,0.0,0.01780214827880093,0.0032582852537463253,0.0008236479363360236,0.012681800912552547,0.00031398242065509325,0.0007244317555109399,0.0032582852537463253,0.0008236479363360236,0.0050928547000050825,0.00031398242065509325,0.0,0.0,0.007588946212547465,0.0007244317555109399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005554513518767844,0.0,0.0,0.0011307608242993063,0.0008820970558350783,0.0016862121761760905,0.00038828438234586783,9.815274149584341e-05,0.000606906942630346,3.7416757827249164e-05,0.0,0.0,0.0005070490538594117,4.840229801737277e-05,0.0,0.0,0.0,0.00030862344152388544,7.801559437553783e-05,0.0012012149758381578,2.97402859768519e-05,6.861787846165751e-05 +94483,50.0,the Greater Atlanta and Macon Area,G1301210002800,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,13966.0,,531.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006670161966223864,9.030073071232891e-05,0.0,0.0007573169273347154,0.0003872842844982134,0.00017886388600549266,5.705630304972992e-05,0.0,0.0001341124537812794,0.0003872842844982134,0.00017886388600549266,5.705630304972992e-05,0.0,4.3811723068950476e-05,0.0,0.0,9.030073071232891e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.033041237390916e-06,0.0,0.0,7.948710022813076e-05,2.5896464612253097e-05,8.552014146552166e-05,4.6151959869299854e-05,2.1314882166437616e-05,6.79929528267211e-06,0.0,5.220962909721189e-06,0.0,0.0,6.033041237390916e-06,0.0,0.0,0.0,4.37341430016948e-05,2.0198234427555603e-05,6.443092623698843e-06,0.0,1.5144671412572423e-05 +94485,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2004,gen2_t8_halogen,_1000,NaturalGas,11301.0,,1935.0,,8.53126424238864,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.002483396369600624,0.0015006144121857377,0.0,0.003984010781786363,0.0011061755123774595,0.00027549268791447404,0.0019611165717610033,0.00043203916393514373,0.00020918684579828128,0.0011061755123774595,0.00027549268791447404,0.0006696890053735468,0.00043203916393514373,0.0,0.0,0.0012914275663874564,0.00020918684579828128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010026187747035904,0.0,0.0,0.00029594627865636215,0.00018424134111930728,0.0003962081561267212,0.00013182290609595708,3.283045621848873e-05,7.980682078119274e-05,5.148609556072359e-05,0.0,0.0,8.628529179217071e-05,1.397658567818832e-05,0.0,0.0,0.0,0.00011000867821825746,2.739762914397684e-05,0.00019503219830609636,4.296610875147292e-05,2.0803541706917547e-05 +94486,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,17245.0,,641.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004140812353832166,0.0005085657964230013,0.0,0.004649378150255167,0.0029806802304909005,0.0010820566457313593,0.000438761026187026,0.0,0.0001477975407721423,0.002619911974840041,0.0010820566457313593,0.000438761026187026,0.0,0.0,0.00036076825565085896,0.0,0.0001477975407721423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.397970538205401e-05,0.0,0.0,0.000493448394374869,0.00019289741139802815,0.000527428099756923,0.0003122071822916295,0.00012894549881369417,5.22858573115224e-05,0.0,0.0,2.4104647077007575e-05,0.0,9.87505830504643e-06,0.0,0.0,0.0,0.00033813005936386643,0.00012274912085955396,4.9773300172738194e-05,0.0,1.6766237023314436e-05 +94487,50.0,the Greater Atlanta and Macon Area,G1301390001202,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,15981.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0013817381443414726,0.0,0.0,0.0013817381443414723,0.0004887012906846191,0.0004167955431291015,0.0004762413105277518,0.0,0.0,0.0004887012906846191,0.0004167955431291015,0.0004762413105277518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016465739835114208,6.0572700754887117e-05,0.00016465739835114208,5.823699911919654e-05,4.966821684487618e-05,5.6752182387069336e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.823699911919655e-05,4.966821684487619e-05,5.675218238706934e-05,0.0,0.0 +94488,50.0,the Greater Atlanta and Macon Area,G1300590030100,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,138891.0,,,,9.729435225087556,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,729707.6418815667,0.0,0.0,0.031556836116233056,0.0,0.0,0.031556836116233056,0.022221130314487973,0.004162502355675546,0.0021262531971910823,0.0006500394147981063,0.002396726399574802,0.022221130314487973,0.004162502355675546,0.0021262531971910823,0.0006500394147981063,0.002396726399574802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003760562719799865,0.0008535709803868953,0.003760562719799865,0.002648046019084031,0.0004960367738443963,0.00025338118424675994,7.74638490590888e-05,0.00028561291488802913,0.0,0.0,0.0,0.0,0.0,0.0,0.002648046019084031,0.0004960367738443963,0.00025338118424675994,7.74638490590888e-05,0.00028561291488802913 +94489,50.0,the Greater Atlanta and Macon Area,G1301210007002,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,31762.0,,3784.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004972943804479759,0.0011137258125436338,0.0,0.006086669617023393,0.0016969510906251776,0.0015404340985068934,0.0028493151174976195,0.0,0.0,0.0005832252780815437,0.0015404340985068934,0.0028493151174976195,0.0,0.0,0.0011137258125436338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.441220376330497e-05,0.0,0.0,0.0005926177104892173,0.00025566295406377696,0.0006670299142525223,6.950201783594844e-05,0.00018357105258143527,0.0003395482973028289,0.0,0.0,7.441220376330497e-05,0.0,0.0,0.0,0.0,0.0,0.0001859665813476477,0.00016881409527550598,0.0003122526008619318,0.0,0.0 +94490,50.0,the Greater Atlanta and Macon Area,G1300890023111,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6868.0,,764.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0004964868564094913,0.00022260811027928305,0.0,0.0007190949666887744,0.000446947515726518,0.000195575606779684,7.657184418257235e-05,0.0,0.0,0.00022433940544723494,0.000195575606779684,7.657184418257235e-05,0.0,0.0,0.00022260811027928305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.487239993587054e-05,0.0,0.0,5.9166696684558516e-05,3.050223917430334e-05,7.403909662042905e-05,2.6734688713578197e-05,2.3306886085395348e-05,9.125121885584977e-06,0.0,0.0,1.487239993587054e-05,0.0,0.0,0.0,0.0,0.0,4.601838676957185e-05,2.0136757893936335e-05,7.883951956920873e-06,0.0,0.0 +94491,46.0,the Tallahassee-Valdosta Area,G1301850010800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,82881.0,,707.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,120171.9144447585,0.0,0.0,0.006779782251298897,0.00020602412498627056,0.0,0.0069858063762851695,0.0041456622136593095,0.002014346741112263,0.000825736674314721,0.0,0.0,0.003939638088673039,0.002014346741112263,0.000825736674314721,0.0,0.0,0.00020602412498627056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3765887886137923e-05,0.0,0.0,0.000807931832747306,0.00020040960965568759,0.000821697720633444,0.000469478060410111,0.00024004529850845866,9.840123471781778e-05,0.0,0.0,1.3765887886137923e-05,0.0,0.0,0.0,0.0,0.0,0.00048762891611827227,0.00023693529946037912,9.712635973295538e-05,0.0,0.0 +94492,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970302,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,23449.0,,2457.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005605188621527275,0.0019052417706606503,0.0,0.007510349531404856,0.0036211884481578784,0.000475137961310669,0.0023862825691353226,0.0004140072093108621,0.000613814204273194,0.0036211884481578784,0.000475137961310669,0.0010948550027478656,0.0004140072093108621,0.0,0.0,0.0012914275663874564,0.000613814204273194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012729535425694835,0.0,0.0,0.000667954873144654,0.0003612464690015523,0.0007952502274016024,0.0004315270428603564,5.662088077724704e-05,0.0001304708518931118,4.9336097613938874e-05,0.0,0.0,8.628444541370522e-05,4.1010908843243145e-05,0.0,0.0,0.0,0.00038343767155174383,5.03110501314795e-05,0.000252676889113358,4.3838083164257154e-05,6.499509556638203e-05 +94493,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,16745.0,,1242.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001422678079142608,0.00036569734864342636,0.0,0.0017883754277860343,0.0006354282983939361,0.0005071764336758362,0.000645770695716262,0.0,0.0,0.00026973094975050977,0.0005071764336758362,0.000645770695716262,0.0,0.0,0.00036569734864342636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4433722572818072e-05,0.0,0.0,0.0001695387768160534,7.851316232293974e-05,0.0001939724993888715,3.214350172436296e-05,6.0439584650907055e-05,7.69556904407834e-05,0.0,0.0,2.4433722572818075e-05,0.0,0.0,0.0,0.0,0.0,6.89204365631868e-05,5.50098591955192e-05,7.004220363016551e-05,0.0,0.0 +94494,81.0,the Columbus-Albany Area,G1302150000900,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,13586.0,,526.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031077182957544762,0.0004175880153097631,0.0,0.0035253063110642397,0.002789378768931882,0.0003387681740362032,0.0003351290627916737,0.0,6.194759823074125e-05,0.0024337383518528606,0.0003387681740362032,0.0003351290627916737,0.0,0.0,0.0003556404170790219,0.0,6.194759823074125e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.789955454943078e-05,0.0,0.0,0.0003703438988073681,0.00013929556617774458,0.0003982434533567989,0.0002900263357632898,4.037068821064483e-05,3.993701870838205e-05,0.0,0.0,2.376076145029756e-05,0.0,4.138793099133225e-06,0.0,0.0,0.0,0.0003151078901067802,3.826964116341611e-05,3.7858541502480973e-05,0.0,6.998037410009439e-06 +94495,85.0,Rural Climate Zone 3A,G1300310110403,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,53741.0,,1867.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0027663087191180584,0.00031755077303314563,0.0,0.0030838772225126243,0.00153780743704544,0.0005790558736175045,0.0006821756556365316,0.0,0.0002848737169359884,0.0013752732139078157,0.0005790558736175045,0.0005271413753795899,0.0,0.0002848737169359884,0.00016253422313762403,0.00015503428025694167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1217272572364812e-05,0.0,0.0,0.00032965623308000923,0.00011401188513490423,0.000350873505652374,0.00016388893402224057,6.900508852116076e-05,6.281852741426959e-05,0.0,3.394790891544413e-05,1.0859784347898842e-05,1.0358672885134446e-05,0.0,0.0,0.0,0.0,0.00017496672128042772,6.58830912143877e-05,7.761572413342622e-05,0.0,3.241200362967535e-05 +94496,50.0,the Greater Atlanta and Macon Area,G1301210001500,ComStock 90.1-2004,gen3_t5_cfl,50001_100000,Electricity,276092.0,,13952.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013287150578548991,0.002372588313424365,0.0,0.015659756622334778,0.007714639827117754,0.002153582889163874,0.0027254225056834165,0.0,0.003066111400369731,0.006443443834745649,0.002153582889163874,0.0016240301846311565,0.0,0.003066111400369731,0.0012711959923721056,0.0011013923210522602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015852295370925968,0.0,0.0,0.0015834049198175512,0.0005116260420607694,0.0017419278735268109,0.000767853168231235,0.0002566384509438862,0.0001935326441192478,0.0,0.00036538276941724,8.493413809467611e-05,7.358881561458362e-05,0.0,0.0,0.0,0.0,0.0008581452747426476,0.00023955583429914395,0.00030316495615366744,0.0,0.00034106180833135165 +94497,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,124797.0,,5442.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011004780306689615,0.0015853500226534563,0.0,0.01259016070294251,0.007834141008581576,0.0037998891576599414,0.0009561001631015519,0.0,0.0,0.00624879098592812,0.0037998891576599414,0.0009561001631015519,0.0,0.0,0.0015853500226534563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010592420324502915,0.0,0.0,0.0013114197265141267,0.0003800927404964594,0.001417343929759156,0.000744657097863946,0.00045282590483820606,0.00011393672381197436,0.0,0.0,0.00010592420324502916,0.0,0.0,0.0,0.0,0.0,0.0008819325237679669,0.00042777451046420873,0.00010763347620312829,0.0,0.0 +94498,50.0,the Greater Atlanta and Macon Area,G1301530021105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5251.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012607866320820025,0.0,0.0,0.0012607866320820027,0.0005391674137065452,0.00035009904313848826,0.0003153620721679792,0.0,5.615810306898974e-05,0.0005391674137065452,0.00035009904313848826,0.0003153620721679792,0.0,5.615810306898974e-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.00015024464914884889,4.185033145871457e-05,0.00015024464914884889,6.425117212026672e-05,4.1720388339482886e-05,3.758087425902393e-05,0.0,6.6922144300753335e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.425117212026671e-05,4.172038833948288e-05,3.758087425902392e-05,0.0,6.692214430075332e-06 +94499,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,51845.0,,1342.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004414730555530844,0.0003950673018703278,0.0,0.004809767167794873,0.0012516142136392123,0.0014902259026038514,0.0020679577411581067,0.0,0.0,0.0008565469117688848,0.0014902259026038514,0.0020679577411581067,0.0,0.0,0.0003950673018703278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6395073823267063e-05,0.0,0.0,0.0005260944484636946,0.00016950513936238244,0.0005524895222869617,0.00010207295087710002,0.00017758718554963172,0.00024643431203696275,0.0,0.0,2.6395073823267063e-05,0.0,0.0,0.0,0.0,0.0,0.00014377073044434546,0.00017117963683192818,0.0002375426802719597,0.0,0.0 +94500,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,11179.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013871015391232503,0.0,0.0,0.0013871015391232501,0.00099476575518581,0.000292254773790048,0.00010008101014739225,0.0,0.0,0.00099476575518581,0.000292254773790048,0.00010008101014739225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016529861448908483,5.463006061067629e-05,0.00016529861448908483,0.00011854460285390245,3.482752186682084e-05,1.1926489768361532e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011854460285390247,3.4827521866820845e-05,1.1926489768361533e-05,0.0,0.0 +94501,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,36915.0,,2187.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003047960329978957,0.0006371773690051575,0.0,0.003685137698984115,0.002615440273985372,0.0008311735486140787,0.00023852387638466507,0.0,0.0,0.0019782629049802138,0.0008311735486140787,0.00023852387638466507,0.0,0.0,0.0006371773690051575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.257187373313909e-05,0.0,0.0,0.0003632195374119555,0.0001362389983826866,0.00040579141114509455,0.0002357457641947411,9.904934420151834e-05,2.842442901569609e-05,0.0,0.0,4.257187373313909e-05,0.0,0.0,0.0,0.0,0.0,0.00028800096122291784,9.152523317963448e-05,2.6265216742542283e-05,0.0,0.0 +94502,50.0,the Greater Atlanta and Macon Area,G1301170130613,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,12395.0,,,2368.0,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028730783275560615,0.0,0.0006078142849101701,0.0034808099053924924,0.002206459313217244,0.0005319718982912254,0.000675303257081445,0.0,6.70754368025783e-05,0.0015986450283070734,0.0005319718982912254,0.000675303257081445,0.0,6.70754368025783e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006078142849101701,0.0,0.0,0.0,0.0,4.9017628750613106e-05,0.00034237546705506434,0.00016229010386304476,0.00039139309580567744,0.00019050536595967927,6.339337336916845e-05,8.047370857575565e-05,0.0,7.993163215546579e-06,0.0,0.0,0.0,4.9017628750613106e-05,0.0,0.0,0.0002481011502614614,5.98165753985201e-05,7.59331993359634e-05,0.0,7.542170809732555e-06 +94503,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,61116.0,,9727.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0033546907628425105,0.0016542427204909262,0.0,0.005008951213694858,0.001999612430592135,0.001246745823973853,0.0008346567638489856,0.0,0.0009279361952798836,0.0014836411829071783,0.001246745823973853,0.00048781543374991273,0.0,0.00013650605257298654,0.0005159712476849566,0.00034684133009907294,0.0007914301427068968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001105272873964996,0.0,0.0,0.0003997726654069113,0.00021009964261682672,0.0005102999528034109,0.00017680294016003467,0.0001485725321259251,5.813211707525316e-05,0.0,1.6267188942041004e-05,3.447432572910541e-05,2.317400638853511e-05,5.287895527885909e-05,0.0,0.0,0.0,0.0002037157251934142,0.00012701547848824077,8.50328320297216e-05,0.0,9.453591709203422e-05 +94504,50.0,the Greater Atlanta and Macon Area,G1301530021105,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,4555.0,,44.0,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010938010502023407,3.481967804424842e-05,0.0,0.0011287034353203284,0.0004758965022959749,0.0002594520903202074,0.00035836975051241907,0.0,3.481967804424842e-05,0.0004758965022959749,0.0002594520903202074,0.00035836975051241907,0.0,0.0,0.0,0.0,3.481967804424842e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.32778422701807e-06,0.0,0.0,0.00013034999115680288,4.482214903722863e-05,0.00013267777538382094,5.6713334526748103e-05,3.091931359235468e-05,4.270748670566555e-05,0.0,0.0,0.0,0.0,2.32778422701807e-06,0.0,0.0,0.0,5.594108005851144e-05,3.0498291300582277e-05,4.212594714868441e-05,0.0,4.093012635494145e-06 +94505,50.0,the Greater Atlanta and Macon Area,G1301350050511,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,139788.0,,14751.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.012049383914210362,0.004341934809392692,0.0,0.016391288033996757,0.0106888829774269,0.0017817771624320281,0.003920658583744126,0.0,0.0,0.006346948168034209,0.0017817771624320281,0.003920658583744126,0.0,0.0,0.004341934809392692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029010260205546655,0.0,0.0,0.0014359001746170818,0.0006617753477651221,0.0017260027766725482,0.0007563526938516617,0.00021233070145997934,0.0004672167793054408,0.0,0.0,0.00029010260205546655,0.0,0.0,0.0,0.0,0.0,0.0011255394731824657,0.00018762115114998309,0.0004128453839559172,0.0,0.0 +94506,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010401,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6263.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001503862721801827,0.0,0.0,0.0015038627218018268,0.000825664717139506,0.0002749183131094579,0.0003588659929548549,0.0,4.44964056717474e-05,0.000825664717139506,0.0002749183131094579,0.0003588659929548549,0.0,4.44964056717474e-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.00017920882437778924,4.8674248805140846e-05,0.00017920882437778924,9.839089774863719e-05,3.2760827818939196e-05,4.276451020047447e-05,0.0,5.302444454449244e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.83908977486372e-05,3.27608278189392e-05,4.276451020047448e-05,0.0,5.302444454449245e-06 +94507,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,90743.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008044812294281823,0.0,0.0,0.008044812294281823,0.0061583384068024955,0.00133522343128357,0.0005512808297951955,0.0,0.0,0.0061583384068024955,0.00133522343128357,0.0005512808297951955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009586841174789493,0.00029714021956981615,0.0009586841174789493,0.0007338768146099079,0.0001591158935761816,6.569502885367824e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007338768146099079,0.0001591158935761816,6.569502885367824e-05,0.0,0.0 +94508,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,26753.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.003168148662954141,0.0,0.0,0.003168148662954141,0.001791374147639727,0.0011191152712839662,0.0002576592440304487,0.0,0.0,0.001791374147639727,0.0011191152712839662,0.0002576592440304487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003775437146706726,9.152779730746725e-05,0.0003775437146706726,0.00021347547795761443,0.0001333633555791703,3.070488113388795e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021347547795761443,0.0001333633555791703,3.070488113388795e-05,0.0,0.0 +94509,50.0,the Greater Atlanta and Macon Area,G1301390001403,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,39540.0,,2239.0,,9.325022323477118,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,163187.89066084955,0.0,0.0,0.010145971039760482,0.0018984033308623743,0.0,0.012044374370622857,0.005909806728344554,0.001371015059748459,0.004555761426942646,0.0,0.0002077027714291438,0.004219106168911323,0.001371015059748459,0.004555761426942646,0.0,0.0,0.0016907005594332305,0.0,0.0002077027714291438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012683911328592625,0.0,0.0,0.0012090751127536606,0.000497812404464821,0.0013359142260395867,0.0005027824588602954,0.00016338112748954462,0.000542900993840161,0.0,0.0,0.00011296174859381177,0.0,1.3877364692114469e-05,0.0,0.0,0.0,0.0006554923185380594,0.00015206755171109514,0.0005053069851049768,0.0,2.303756746525745e-05 +94510,85.0,Rural Climate Zone 3A,G1303030950300,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,12540.0,,71.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0005855983769815041,1.214529757273617e-05,0.0,0.0005977436745542401,0.0002816467911575388,0.0001824986100966035,2.698561008132037e-05,0.0,0.00010659493285735744,0.00026950149358480265,0.0001824986100966035,2.698561008132037e-05,0.0,0.00010659493285735744,1.214529757273617e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.118962110396965e-07,0.0,0.0,6.978412662197231e-05,1.9038492410268233e-05,7.059602283301201e-05,3.211574193575085e-05,2.174785077267655e-05,3.2157999490929474e-06,0.0,1.2702621086693031e-05,8.118962110396965e-07,0.0,0.0,0.0,0.0,0.0,3.3263661575724376e-05,2.1553847566819705e-05,3.187113183396443e-06,0.0,1.2589306477384635e-05 +94511,50.0,the Greater Atlanta and Macon Area,G1301350050317,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,56137.0,,7711.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011087333759245343,0.005304695936198656,0.0,0.016392029695444,0.005627794405623984,0.0008006100364472662,0.0061128365696025595,0.00037401964884641167,0.0034766973149527617,0.0036731383155645197,0.0008006100364472662,0.0027627967234633687,0.00037401964884641167,0.0034766973149527617,0.0019546560900594637,0.0033500398461391917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035442749010920315,0.0,0.0,0.001321257270604071,0.0006838337904044973,0.0016756847607132743,0.00043772117000871643,9.540723266244856e-05,0.00032923742870400813,4.457123697345419e-05,0.0004143116555177691,0.00013059822096474262,0.0002238292691444605,0.0,0.0,0.0,0.0,0.0005753045533191425,8.184282619507814e-05,0.0006248882703806234,3.823437593902469e-05,0.00035540740326369335 +94512,50.0,the Greater Atlanta and Macon Area,G1302170100501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,62230.0,,890.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.007000600226054654,0.0003306790484709545,0.0,0.007331318022949379,0.003922619183719257,0.001057366987892595,0.002211217550977676,0.0,0.00014007555193607928,0.003922619183719257,0.001057366987892595,0.0018805385025067215,0.0,0.00014007555193607928,0.0,0.0003306790484709545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.209458982032694e-05,0.0,0.0,0.000834250202541345,0.00029190318103566735,0.0008563447923616719,0.00046745218164737513,0.000126004713214007,0.0002241007307865064,0.0,1.6692576893456293e-05,0.0,2.209458982032694e-05,0.0,0.0,0.0,0.0,0.0004581869862800756,0.00012350722078384224,0.0002582843396823051,0.0,1.6361719551949198e-05 +94513,50.0,the Greater Atlanta and Macon Area,G1302190030400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6615.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011889968920762836,0.0,0.0,0.0011889968920762836,0.0006985439448021905,0.0002039556438411321,0.00023794825114798745,0.0,4.8631759358712767e-05,0.0006985439448021905,0.0002039556438411321,0.00023794825114798745,0.0,4.8631759358712767e-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.00014168695529570249,3.986953113162396e-05,0.00014168695529570249,8.324207181604779e-05,2.4304398425097544e-05,2.8355131495947132e-05,0.0,5.795209356835911e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.324207181604779e-05,2.4304398425097544e-05,2.8355131495947132e-05,0.0,5.795209356835911e-06 +94514,50.0,the Greater Atlanta and Macon Area,G1301210003100,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,37435.0,,134.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008776874665215305,0.00010603046853379211,0.0,0.008882987840822833,0.0032456736947516413,0.002032691751290959,0.0034145615393273068,0.0,0.00019006085545292844,0.0031396432262178493,0.002032691751290959,0.0034145615393273068,0.0,0.00019006085545292844,0.00010603046853379211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.086303062295085e-06,0.0,0.0,0.0010459250605878712,0.0003099378461984804,0.001053011363650166,0.00037414588414037104,0.00024223238045672927,0.00040690742674679846,0.0,2.2649225303721517e-05,7.086303062295084e-06,0.0,0.0,0.0,0.0,0.0,0.00038475019267360754,0.00024096031101952586,0.0004047705757594956,0.0,2.2530284197537143e-05 +94515,81.0,the Columbus-Albany Area,G1300950000400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,22971.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.002489450583517577,0.0,0.0,0.0024894505835175774,0.0016093147926098427,0.0006567987142419453,0.00022333707666578916,0.0,0.0,0.0016093147926098427,0.0006567987142419453,0.00022333707666578916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029666311765532284,8.904474966165446e-05,0.00029666311765532284,0.0001917790000835718,7.826946055048987e-05,2.66146570212612e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019177900008357176,7.826946055048985e-05,2.6614657021261195e-05,0.0,0.0 +94516,50.0,the Greater Atlanta and Macon Area,G1301350050529,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,54082.0,,10040.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.004884218788620181,0.003017820200219015,0.0,0.007902038988839196,0.002631579076555225,0.0008695674401154451,0.002789930102751828,0.0,0.0016109310313944948,0.00209529150257888,0.0008695674401154451,0.0019193598459258563,0.0,0.0,0.0005362875739763446,0.0008705702568259715,0.0016109310313944948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020163237799258492,0.0,0.0,0.0005820432292777774,0.00041797502050577173,0.0007836756072703624,0.0002496919743400413,0.00010362472747921011,0.00022872652745852605,0.0,0.0,3.5831471610163204e-05,5.816620588618789e-05,0.00010763260668032717,0.0,0.0,0.0,0.0002609838212405918,8.623834843861125e-05,0.00027668810171703343,0.0,0.0001597622279619003 +94517,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,8186.0,,1565.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0017188184064502866,0.0012411850556057864,0.0,0.0029600034620560736,0.0018132698846605756,0.0006962281467374899,0.00031263273873458205,0.0,0.00013778998484968616,0.0007098748139044756,0.0006962281467374899,0.00031263273873458205,0.0,0.0,0.0011033950707561003,0.0,0.00013778998484968616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.293027926368318e-05,0.0,0.0,0.00020482595777804313,0.00014593826662536927,0.0002877562370417263,8.459345566398539e-05,8.296722705108111e-05,3.725541913198937e-05,0.0,0.0,7.372378594367944e-05,0.0,9.206493320003743e-06,0.0,0.0,0.0,0.0001762767258348321,6.768370179153517e-05,3.039253893704002e-05,0.0,1.3395230124102824e-05 +94518,50.0,the Greater Atlanta and Macon Area,G1300630040416,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,244828.0,,19398.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011448618481458034,0.0032988401243693437,0.0,0.01474745860582738,0.006971117120967841,0.0041759611038193565,0.001698515432956798,0.0,0.001901847217721964,0.006012259175371385,0.0041759611038193565,0.000919673846858139,0.0,0.0003407066250477346,0.0009588579455964554,0.0007788415860986595,0.0015611405926742293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022040909464791513,0.0,0.0,0.0013643094465750668,0.0005269212597148248,0.001584718541222982,0.0007164691531560378,0.0004976411076758333,0.0001095957314909839,0.0,4.0601341359759896e-05,6.406524830459244e-05,5.203761394740814e-05,0.00010430623239591457,0.0,0.0,0.0,0.0007490957493021507,0.000448736502032531,0.00018251747444108233,0.0,0.0002043669101947107 +94519,50.0,the Greater Atlanta and Macon Area,G1300210013407,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,143725.0,,7080.0,,3.3063363735822096,Lodging,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,247975.22801866572,0.0,0.0,0.013076291172957015,0.002128071073804221,0.0,0.015204362246761237,0.004240441798484258,0.0015834789239438274,0.006558421286844469,0.0,0.002821988899466478,0.004240441798484258,0.0015834789239438274,0.004430350213040249,0.0,0.002821988899466478,0.0,0.002128071073804221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001421858137310851,0.0,0.0,0.0015582762113166499,0.0007619620561752133,0.0017004620250477352,0.0005053252097747956,0.00018870010660254852,0.0005279562265376733,0.0,0.00033629093391041764,0.0,0.0001421858137310851,0.0,0.0,0.0,0.0,0.00047425272633737684,0.00017709692349664348,0.0007334964901220596,0.0,0.00031561238023457316 +94520,35.0,Eastern Counties in South Carolina and Georgia,G1301790010207,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,4810.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013006514416243485,0.0,0.0,0.0013006514416243485,0.0008953867803017421,0.00024588813022696093,0.00012083503473312813,0.0,3.8541496362517266e-05,0.0008953867803017421,0.00024588813022696093,0.00012083503473312813,0.0,3.8541496362517266e-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.00015499335446565594,5.1401212859875855e-05,0.00015499335446565594,0.00010669960927414417,2.9301490704972342e-05,1.4399420760162998e-05,0.0,4.5928337263764266e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010669960927414417,2.9301490704972342e-05,1.4399420760162998e-05,0.0,4.5928337263764266e-06 +94521,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,43727.0,,8379.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0021801429705711126,0.0014249004955225431,0.0,0.0036050257357322364,0.00188386863124203,0.00030088423329829606,0.0010912860150428297,0.0,0.0003290045865104998,0.0015666192743530255,0.00030088423329829606,0.0002496966798786036,0.0,6.29605134026075e-05,0.0003172493568890048,0.0008415893351642261,0.0002660440731078923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.520310805787274e-05,0.0,0.0,0.00025980241935014744,0.00017036730748659827,0.0003550055274080201,0.00018669026901977316,3.5855653877017935e-05,2.975575565999078e-05,0.0,7.502853678096093e-06,2.119665541566002e-05,5.6229835464132236e-05,1.7775432544122202e-05,0.0,0.0,0.0,0.00018551428645090142,2.9629626460662e-05,0.000107464577432368,0.0,3.23987830644693e-05 +94522,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,47500.0,,2664.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002282642189940438,0.00045299300392092896,0.0,0.002735635193861367,0.0013004688190766131,0.0005336129572979092,0.0006132577407967864,0.0,0.00028833113741289873,0.0010552047295530225,0.0005336129572979092,0.00040552882639944773,0.0,0.00028833113741289873,0.00024526408952359034,0.00020772891439733862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0266235143917322e-05,0.0,0.0,0.00027201901133428835,0.000101509692662207,0.0003022852464782057,0.00012574714887564925,6.358984764192527e-05,4.83262558235684e-05,0.0,3.4359984793759595e-05,1.638705353422084e-05,1.3879181609696481e-05,0.0,0.0,0.0,0.0,0.00014370064341690024,5.89637553584336e-05,6.776443282620619e-05,0.0,3.1860333254879296e-05 +94523,50.0,the Greater Atlanta and Macon Area,G1300890023310,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,14928.0,,178.0,,4.088175128053588,Healthcare,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,12264.525384160763,0.0,0.0,0.001578610784474653,6.622105622648949e-05,0.0,0.0016448318407011424,0.0009821175489272106,0.00015181632433902036,0.00047025087089799675,0.0,4.060834811314276e-05,0.0009821175489272106,0.00015181632433902036,0.0004040298146715072,0.0,4.060834811314276e-05,0.0,6.622105622648949e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4246869249164775e-06,0.0,0.0,0.0001881180735475368,5.6636098099088895e-05,0.00019254276047245327,0.00011703585400431683,1.8091473052509796e-05,4.814696006087791e-05,0.0,4.839168902253768e-06,0.0,4.4246869249164775e-06,0.0,0.0,0.0,0.0,0.00011496593104513183,1.777150311034587e-05,5.50472082049917e-05,0.0,4.753582251057292e-06 +94524,50.0,the Greater Atlanta and Macon Area,G1300670030310,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,23643.0,,4744.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002200598219576778,0.0013964691553643698,0.0,0.003597036685334851,0.0017782171681014947,0.0007175843744528864,0.0011012658323867666,0.0,0.0,0.00038174801273712494,0.0007175843744528864,0.0011012658323867666,0.0,0.0,0.0013964691553643698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.330317931290325e-05,0.0,0.0,0.00026223940129582024,0.00016867016981122348,0.0003555425806087235,4.549188916698568e-05,8.551260973570697e-05,0.0001312349023931276,0.0,0.0,9.330317931290327e-05,0.0,0.0,0.0,0.0,0.0,0.00017576465744904873,7.092832868167576e-05,0.00010885262793658596,0.0,0.0 +94525,50.0,the Greater Atlanta and Macon Area,G1300890023306,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,6746.0,,1884.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005034629913138142,0.0005544691169805961,0.0,0.001057962797900708,0.0006395100160315305,0.00020353346896636486,0.0002148579336902172,0.0,0.0,8.50408990509344e-05,0.00020353346896636486,0.0002148579336902172,0.0,0.0,0.0005544691169805961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.704717777899407e-05,0.0,0.0,5.9997169972267945e-05,5.660895947503028e-05,9.7044347751262e-05,1.0134237000497071e-05,2.4254875419450226e-05,2.5604400303312885e-05,0.0,0.0,3.704717777899407e-05,0.0,0.0,0.0,0.0,0.0,5.866069441130153e-05,1.8669628819260575e-05,1.9708394355193498e-05,0.0,0.0 +94526,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,206507.0,,11105.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.020641123334890047,0.003268719277162025,0.0,0.02390984261205207,0.006674559715262187,0.006454576617320253,0.010780675589863332,0.0,0.0,0.003405840438100162,0.006454576617320253,0.010780675589863332,0.0,0.0,0.003268719277162025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002183969370240916,0.0,0.0,0.0024597611079311727,0.0008732539179655292,0.002678158044955264,0.0004058671475160133,0.0007691788995131684,0.0012847114036834,0.0,0.0,0.0002183969370240916,0.0,0.0,0.0,0.0,0.0,0.0007476220604209811,0.0007229816011311988,0.0012075509458390088,0.0,0.0 +94527,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6304.0,,57.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015630809865991712,4.482723396670462e-05,0.0,0.0016079082205658754,0.0007877021702931639,0.00031561019338919715,0.0004597686229168099,0.0,4.482723396670462e-05,0.0007877021702931639,0.00031561019338919715,0.0004597686229168099,0.0,0.0,0.0,0.0,4.482723396670462e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9977333060669e-06,0.0,0.0,0.00018626718642842475,6.476916857720896e-05,0.00018926491973449166,9.386785986265501e-05,3.7610221885330904e-05,5.478910468043881e-05,0.0,0.0,0.0,0.0,2.9977333060669e-06,0.0,0.0,0.0,9.271946379050969e-05,3.7150091749746427e-05,5.411880504110072e-05,0.0,5.276559153134843e-06 +94528,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,8982.0,,235.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001958834334441757,0.00018666986542961682,0.0,0.0021455869069451137,0.0014673889022827923,0.0003585351646598977,0.00027111378771744977,0.0,4.8383638137494846e-05,0.0012807190368531755,0.0003585351646598977,0.00027111378771744977,0.0,4.8383638137494846e-05,0.00018666986542961682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2474692843477656e-05,0.0,0.0,0.0002334335294654444,9.089821519975063e-05,0.00024590822230892206,0.0001526227919174298,4.272649680090786e-05,3.230852514726089e-05,0.0,5.765859429880299e-06,1.2474692843477654e-05,0.0,0.0,0.0,0.0,0.0,0.00016817915658796136,4.1092134134190767e-05,3.107266797967182e-05,0.0,5.545305298385606e-06 +94529,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,139114.0,,,,9.325022323477118,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.000815520626373068,0.035696505371077096,0.0,0.0,0.03651202599745016,0.0196049320189598,0.004206025313519188,0.01220708960560203,0.0,0.0004938906752110874,0.018789411392586736,0.004206025313519188,0.01220708960560203,0.0,0.0004938906752110874,0.0,0.0,0.0,0.000815520626373068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004253881578115239,0.0013957207891513981,0.004253881578115239,0.002239096801092314,0.0005012236747623618,0.0014546945998177873,0.0,5.885596987837435e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0022840983724507313,0.0004900285073064733,0.0014222030187889022,0.0,5.754138225663136e-05 +94530,50.0,the Greater Atlanta and Macon Area,G1300670030313,ComStock 90.1-2004,gen5_led,_1000,Electricity,3544.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007977097262156202,0.0,0.0,0.0007977097262156202,0.00047225739105144547,9.610561968507523e-05,0.0002028804518825211,0.0,2.6383556522839068e-05,0.00047225739105144547,9.610561968507523e-05,0.0002028804518825211,0.0,2.6383556522839068e-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,9.505828665755054e-05,3.265987761738994e-05,9.505828665755054e-05,5.627608261426787e-05,1.1452330647597069e-05,2.417604739978968e-05,0.0,3.1439702896587477e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.627608261426787e-05,1.1452330647597069e-05,2.417604739978968e-05,0.0,3.1439702896587477e-06 +94531,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8660.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002079338540879928,0.0,0.0,0.002079338540879928,0.0011653426689868416,0.0005106334732664841,0.0003464599318939588,0.0,5.698517380638282e-05,0.0011653426689868416,0.0005106334732664841,0.0003464599318939588,0.0,5.698517380638282e-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.00024779493101795193,8.947454011345287e-05,0.00024779493101795193,0.00013887397390887165,6.08522295893097e-05,4.1287656260061274e-05,0.0,6.790927467935598e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013887397390887165,6.08522295893097e-05,4.1287656260061274e-05,0.0,6.790927467935598e-06 +94532,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,7191.0,,998.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005569856646970078,0.0002936688426627179,0.0,0.0008506545073597259,0.0004092152103735688,0.0002373227255001356,0.00020411657148602125,0.0,0.0,0.00011554636771085095,0.0002373227255001356,0.00020411657148602125,0.0,0.0,0.0002936688426627179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.962206194050641e-05,0.0,0.0,6.637521476354508e-05,4.234154550445439e-05,8.599727670405149e-05,1.3769501547454248e-05,2.8281422434651718e-05,2.4324290781439112e-05,0.0,0.0,1.962206194050641e-05,0.0,0.0,0.0,0.0,0.0,4.136978452889177e-05,2.3992241170085503e-05,2.0635251005074193e-05,0.0,0.0 +94533,50.0,the Greater Atlanta and Macon Area,G1301210011800,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,210488.0,,25598.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.018754264960494683,0.007535065586243476,0.0,0.026289361236344455,0.010861880288127054,0.005776950110266977,0.00965050014834413,0.0,0.0,0.003326814701883578,0.005776950110266977,0.00965050014834413,0.0,0.0,0.007535065586243476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005034496336877473,0.0,0.0,0.0022349106243344636,0.0011137523431632558,0.002738360258022211,0.00039645027614217853,0.0006884283230978339,0.0011500320250944515,0.0,0.0,0.0005034496336877473,0.0,0.0,0.0,0.0,0.0,0.0011313984026086533,0.0006017403942345389,0.0010052182644791272,0.0,0.0 +94534,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,31288.0,,5211.0,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,215998.51729091106,0.0,0.0,0.013912161338708501,0.0027287664725215515,0.0,0.016640927811230055,0.011472087363770006,0.0010975555921728043,0.003961714915300631,0.0,0.00010956993998661052,0.008852890831235064,0.0010975555921728043,0.003961714915300631,0.0,0.0,0.002619196532534941,0.0,0.00010956993998661052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018231976257285446,0.0,0.0,0.0016578839490093392,0.000756608278848846,0.0018402037115821937,0.0010549809806043454,0.00013079346588268161,0.0004721095025223118,0.0,0.0,0.0001749989582297034,0.0,7.3208043431510485e-06,0.0,0.0,0.0,0.0012686178310417342,0.00012137098948420316,0.0004380983184391251,0.0,1.2116572617130704e-05 +94535,50.0,the Greater Atlanta and Macon Area,G1300670031312,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,18939.0,,2156.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0016700619914853463,0.0006280349155743944,0.0,0.0022980969070597406,0.0014895820636262249,0.0005872431715294937,0.00022127167190402205,0.0,0.0,0.0008615471480518305,0.0005872431715294937,0.00022127167190402205,0.0,0.0,0.0006280349155743944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1961322925820484e-05,0.0,0.0,0.00019901750253323828,9.237128371268774e-05,0.00024097882545905875,0.00010266862104167219,6.998043783605465e-05,2.636844365551144e-05,0.0,0.0,4.1961322925820484e-05,0.0,0.0,0.0,0.0,0.0,0.00015619782395372993,6.157841703685442e-05,2.3202584468474424e-05,0.0,0.0 +94536,50.0,the Greater Atlanta and Macon Area,G1300890021209,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,30624.0,,2962.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002661464037349381,0.0008718610253114383,0.0,0.0035333250626608187,0.001340675451115146,0.0008357700483053399,0.0013568795632403334,0.0,0.0,0.0004688144258037078,0.0008357700483053399,0.0013568795632403334,0.0,0.0,0.0008718610253114383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8253333643031523e-05,0.0,0.0,0.00031716114049036527,0.00015423691250345553,0.00037541447413339684,5.586764122288255e-05,9.959698045448809e-05,0.00016169651881299462,0.0,0.0,5.8253333643031523e-05,0.0,0.0,0.0,0.0,0.0,0.00014244626818595723,8.880025687325566e-05,0.00014416794907418402,0.0,0.0 +94537,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,12268.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002951980875903361,0.0,0.0,0.002951980875903361,0.001352674191006373,0.0008787626584801415,0.0006295662453036082,0.0,9.097778111323817e-05,0.001352674191006373,0.0008787626584801415,0.0006295662453036082,0.0,9.097778111323817e-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.0003517863791094576,0.00010328715754216696,0.0003517863791094576,0.00016119764177785438,0.00010472179418463485,7.502515739608852e-05,0.0,1.0841785750879841e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00016119764177785438,0.00010472179418463485,7.502515739608852e-05,0.0,1.0841785750879841e-05 +94538,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,14331.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032049818144719022,0.0,0.0,0.0032049818144719022,0.0016099758974093584,0.0005600923033625898,0.0009645298939478031,0.0,7.038371975215063e-05,0.0016099758974093584,0.0005600923033625898,0.0009645298939478031,0.0,7.038371975215063e-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.00038193093715990344,0.00011836924038530165,0.00038193093715990344,0.0001918574391049181,6.674502094002388e-05,0.00011494099737190766,0.0,8.387479743053801e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001918574391049181,6.674502094002388e-05,0.00011494099737190766,0.0,8.387479743053801e-06 +94539,81.0,the Columbus-Albany Area,G1302150011400,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,12177.0,,624.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026369496320303386,0.0004950018363297548,0.0,0.0031320341754338325,0.0017672020445877814,0.00047763335084450036,0.0008050706557784184,0.0,8.221083129687158e-05,0.001354328332481159,0.00047763335084450036,0.0008050706557784184,0.0,0.0,0.0004128737121066226,0.0,8.221083129687158e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.307558538820529e-05,0.0,0.0,0.00031424340728071715,0.00011067818769843743,0.00034731899266892243,0.0001613943416310179,5.691922582712234e-05,9.593969596557729e-05,0.0,0.0,2.7587856684698548e-05,0.0,5.4932551171054405e-06,0.0,0.0,0.0,0.0001959693922827871,5.296594002120539e-05,8.927627015868628e-05,0.0,9.116561797589293e-06 +94540,50.0,the Greater Atlanta and Macon Area,G1300770170405,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,5477.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0004103777020034649,0.0,0.0,0.0004103777020034649,0.00028359829795028877,0.0001008707237327738,2.5908680320402298e-05,0.0,0.0,0.00028359829795028877,0.0001008707237327738,2.5908680320402298e-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,4.890357894501117e-05,1.6768181062038337e-05,4.890357894501117e-05,3.379562701573305e-05,1.2020485950439055e-05,3.087465978839058e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.379562701573305e-05,1.2020485950439055e-05,3.087465978839058e-06,0.0,0.0 +94541,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock DOE Ref 1980-2004,gen3_t5_cfl,_1000,NaturalGas,12333.0,,9588.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.002386410315573442,0.00659572713445067,0.0,0.008982137450024111,0.0012244033451785119,0.00013110410701653701,0.006532756999898964,0.00037287212931016187,0.0007210725885909534,0.0012244033451785119,0.00013110410701653701,0.0005492315380375495,0.00037287212931016187,0.00010887091600169758,0.0,0.005983525461861414,0.0006122016725892559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044068746272388784,0.0,0.0,0.0002843876841025074,0.0005193636643470847,0.0007250751468263953,0.00014591171915002724,1.562363065875409e-05,6.545173062622473e-05,4.44350414632727e-05,1.2974109048133865e-05,0.0,0.0003997837691251154,4.090369359877243e-05,0.0,0.0,0.0,9.883888330807673e-05,1.0583263746905125e-05,0.0005273510639575203,3.0099774737505328e-05,5.820795060797818e-05 +94542,50.0,the Greater Atlanta and Macon Area,G1301510070403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,229787.0,,15119.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.020473803601354968,0.004450238430017285,0.0,0.024924011341765955,0.008492151648243636,0.00615351157953979,0.010278378803588829,0.0,0.0,0.0040419132182263505,0.00615351157953979,0.010278378803588829,0.0,0.0,0.004450238430017285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029733797493946293,0.0,0.0,0.002439822726755652,0.0010114319854857422,0.002737160701695115,0.00048166681293895406,0.0007333018179446465,0.0012248540958720517,0.0,0.0,0.00029733797493946293,0.0,0.0,0.0,0.0,0.0,0.0009326100620671973,0.0006757800677420471,0.0011287739422255467,0.0,0.0 +94543,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,104844.0,,,,9.325022323477118,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.026902900333715472,0.0,0.0,0.026902900333715472,0.012735450102454549,0.002342798877562687,0.011446720693855253,0.0,0.00037801904400104174,0.012735450102454549,0.002342798877562687,0.011446720693855253,0.0,0.00037801904400104174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032059641090204554,0.000839335874863729,0.0032059641090204554,0.0015176577779430576,0.00027918659411998325,0.0013640825061709417,0.0,4.5047763347461736e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0015176577779430576,0.00027918659411998325,0.0013640825061709417,0.0,4.5047763347461736e-05 +94544,50.0,the Greater Atlanta and Macon Area,G1300890023102,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,112781.0,,19538.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005343664976582615,0.0033226165390336346,0.0,0.008666281515616249,0.0039173105914236265,0.0011622429214458814,0.002721078567135503,0.0,0.0008656317052498179,0.0027988971234081156,0.0011622429214458814,0.0012089978845105606,0.0,0.00017350931685663674,0.0011184134680155109,0.001512080682624943,0.0006921223883931811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022199742401647534,0.0,0.0,0.0006367939760276038,0.0003896151618827463,0.0008587914000440792,0.0003335390290218209,0.00013850218797413757,0.00014407388435844597,0.0,2.067676178113088e-05,7.472571871233399e-05,0.00010102821451236174,4.624349079177965e-05,0.0,0.0,0.0,0.000388188710596828,0.00011517329824807263,0.0002696472377558192,0.0,8.578039644044182e-05 +94545,50.0,the Greater Atlanta and Macon Area,G1301210011612,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,95250.0,,5817.0,,5.759960461090961,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,431997.0345818221,0.0,0.0,0.01430343575818236,0.0030461207630756953,0.0,0.017349556521258056,0.00977126927192005,0.004124786868833269,0.003288517640774027,0.0,0.00016492814583933752,0.006725148508844355,0.004124786868833269,0.003288517640774027,0.0,0.00016492814583933752,0.0030461207630756953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002035251927691064,0.0,0.0,0.0017045118859135369,0.0007422874283466941,0.0019080370786826433,0.0008014225226481948,0.0004915426170082534,0.000391886082511967,0.0,1.9654157900070594e-05,0.0002035251927691064,0.0,0.0,0.0,0.0,0.0,0.0010746063770432268,0.000453628095781809,0.00036165844267031593,0.0,1.8138159162411588e-05 +94546,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen4_led,_1000,Electricity,4812.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00017666532118940613,0.0,0.0,0.00017666532118940613,9.230426155279489e-05,5.179038570797424e-05,8.563764565885505e-06,0.0,2.3989179001331444e-05,9.230426155279489e-05,5.179038570797424e-05,8.563764565885505e-06,0.0,2.3989179001331444e-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,2.105219149983643e-05,5.989709399071387e-06,2.105219149983643e-05,1.0999368621853517e-05,6.171562763049198e-06,1.0204946301104974e-06,0.0,2.8586526595020764e-06,0.0,0.0,0.0,0.0,0.0,0.0,1.0999368621853517e-05,6.171562763049198e-06,1.0204946301104974e-06,0.0,2.8586526595020764e-06 +94547,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,79675.0,,3753.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0037590493853882356,0.0006381866289533804,0.0,0.004397218283980195,0.0015669738815814265,0.001150416770378706,0.0011705052698676257,0.0,0.0005093400925138569,0.0015669738815814265,0.001150416770378706,0.0005323186409142452,0.0,0.0005093400925138569,0.0,0.0006381866289533804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2639322456154514e-05,0.0,0.0,0.00044795768191137277,0.00014983492359263637,0.0004905970043675272,0.0001867328453670702,0.000137092646798943,6.343524651446682e-05,0.0,6.0696943230892605e-05,0.0,4.2639322456154514e-05,0.0,0.0,0.0,0.0,0.00017482704805142366,0.0001283518317428384,0.0001305931027089415,0.0,5.682700003816841e-05 +94548,50.0,the Greater Atlanta and Macon Area,G1301210007806,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,38353.0,,5710.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0064722495569916605,0.0016635012940067917,0.0,0.008135750850998453,0.005713729658232684,0.001659218616486069,0.0007628025762796993,0.0,0.0,0.004050228364225893,0.001659218616486069,0.0007628025762796993,0.0,0.0,0.0016635012940067917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011114453739321179,0.0,0.0,0.0007712858888719725,0.0003430220430584235,0.0008824304262651843,0.0004826581479173437,0.00019772598293385477,9.090175802077414e-05,0.0,0.0,0.00011114453739321179,0.0,0.0,0.0,0.0,0.0,0.0006197300028256793,0.00017996433492469173,8.273608851481333e-05,0.0,0.0 +94549,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock 90.1-2007,gen4_led,10001_25000,Propane,17105.0,,,7104.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029673791706706022,0.0,0.0006695252524063634,0.0036368740494775276,0.0026975401132656148,0.0006942189887492557,0.0002451149474626572,0.0,0.0,0.0020280148608592514,0.0006942189887492557,0.0002451149474626572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006695252524063634,0.0,0.0,0.0,0.0,5.399554341316853e-05,0.0003536158737667858,0.0001275863155076543,0.0004076114171799543,0.00024167395057663076,8.272850895444703e-05,2.9209794682463573e-05,0.0,0.0,0.0,0.0,0.0,5.399554341316852e-05,0.0,0.0,0.000302333304235799,7.780626493732179e-05,2.7471848006833514e-05,0.0,0.0 +94550,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,13259.0,,1842.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011139713293940156,0.0005421318952489197,0.0,0.0016561032246429352,0.000740540199963568,0.000401665567224334,0.0005139281470613308,0.0,0.0,0.00019840830471464847,0.000401665567224334,0.0005139281470613308,0.0,0.0,0.0005421318952489197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.622221106539174e-05,0.0,0.0,0.00013275127980347793,7.644656839874085e-05,0.00016897349086886966,2.364419593171758e-05,4.78662391886032e-05,6.124450194470883e-05,0.0,0.0,3.622221106539174e-05,0.0,0.0,0.0,0.0,0.0,7.555788845441921e-05,4.0982247993843304e-05,5.243648570483648e-05,0.0,0.0 +94551,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,110586.0,,8104.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009963687580612186,0.0023853496494889485,0.0,0.012349037230101133,0.004719324898035542,0.002955593224106564,0.004674088418352729,0.0,0.0,0.0023339752485465946,0.002955593224106564,0.004674088418352729,0.0,0.0,0.0023853496494889485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015937493486272765,0.0,0.0,0.0011873530419517163,0.0005224428295106892,0.001346727976814444,0.0002781352374590956,0.0003522122283564405,0.0005570019189161901,0.0,0.0,0.00015937493486272765,0.0,0.0,0.0,0.0,0.0,0.0005146673990397702,0.00032232310979557347,0.0005097341211148364,0.0,0.0 +94552,35.0,Eastern Counties in South Carolina and Georgia,G1301030030402,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,11703.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002810138244440448,0.0,0.0,0.002810138244440448,0.0016662167075520873,0.0005642276570495552,0.0005146034128059708,0.0,6.509046703283493e-05,0.0016662167075520873,0.0005642276570495552,0.0005146034128059708,0.0,6.509046703283493e-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.00033487770808693563,0.00010240374055656108,0.00033487770808693563,0.00019855921085202947,6.723771152747667e-05,6.132410453297566e-05,0.0,7.756681174453846e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019855921085202947,6.723771152747667e-05,6.132410453297566e-05,0.0,7.756681174453846e-06 +94553,50.0,the Greater Atlanta and Macon Area,G1300670030601,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,61383.0,,4991.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005469133359101018,0.0014692649015025205,0.0,0.006938398260603539,0.003402679408651498,0.0013063030920617191,0.002229415759890321,0.0,0.0,0.0019334145071489776,0.0013063030920617191,0.002229415759890321,0.0,0.0,0.0014692649015025205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.816797447377863e-05,0.0,0.0,0.0006517465992748718,0.0002928792373274913,0.0007499145737486504,0.00023040146350173754,0.0001556697454555066,0.0002656753903176276,0.0,0.0,9.816797447377863e-05,0.0,0.0,0.0,0.0,0.0,0.0003677677156168657,0.0001411875896534074,0.00024095926847837723,0.0,0.0 +94554,81.0,the Columbus-Albany Area,G1300950011400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4130.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011023198787974895,0.0,0.0,0.0011023198787974895,0.00048003185598294025,0.0003865728626575229,0.00018228639052143353,0.0,5.34287696355926e-05,0.00048003185598294025,0.0003865728626575229,0.00018228639052143353,0.0,5.34287696355926e-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.00013135667700359946,3.782496480081281e-05,0.00013135667700359946,5.720244247665749e-05,4.606550932734272e-05,2.172194748769006e-05,0.0,6.366777711909157e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.720244247665749e-05,4.606550932734272e-05,2.172194748769006e-05,0.0,6.366777711909157e-06 +94555,35.0,Eastern Counties in South Carolina and Georgia,G1301270000600,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,126601.0,,4509.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.0062152718136309895,0.0007668558617787036,0.0,0.006982127675409694,0.004058922988085588,0.0014749710361727727,0.0007453666637375998,0.0,0.0007029024481365732,0.004058922988085588,0.0014749710361727727,0.0005350136558500934,0.0,0.00014638186388395594,0.0,0.00021035300788750647,0.0005565205842526172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.123705402286221e-05,0.0,0.0,0.0007406625522149908,0.000307373762586465,0.000791899606237853,0.0004836944142983955,0.00017576959541801564,6.375659692674059e-05,0.0,1.7444058466517653e-05,0.0,1.4054620908816847e-05,3.718361775842406e-05,0.0,0.0,0.0,0.0004603553050648192,0.00016728840219738887,8.453806560934776e-05,0.0,7.972185525385908e-05 +94556,50.0,the Greater Atlanta and Macon Area,G1301350050547,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,28759.0,,2372.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006905544414789734,0.0018815859275692437,0.0,0.008787130342358979,0.005522185899426078,0.0021127521986706085,0.0009635374090629314,0.0,0.00018857212812562092,0.0036405999718568337,0.0021127521986706085,0.0009635374090629314,0.0,0.00018857212812562092,0.0018815859275692437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001257176425751334,0.0,0.0,0.0008229172017146036,0.0003186881769945546,0.000948634844289737,0.0004338415860429901,0.0002517716233238263,0.00011482244712165103,0.0,2.247168922209136e-05,0.0001257176425751334,0.0,0.0,0.0,0.0,0.0,0.0005961602658365381,0.0002280870175951709,0.00010402089469499863,0.0,2.0357737330866686e-05 +94557,35.0,Eastern Counties in South Carolina and Georgia,G1302450000600,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,4816.0,,126.0,,3.3063363735822096,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,3306.3363735822095,0.0,0.0,0.0003330604999836727,3.78249928001781e-05,0.0,0.0003709168308060547,9.974892467520042e-05,8.555280061680717e-05,0.00011529258368836394,0.0,7.029118380347928e-05,9.974892467520042e-05,8.555280061680717e-05,7.746759088818582e-05,0.0,7.029118380347928e-05,0.0,3.78249928001781e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5277477996627984e-06,0.0,0.0,3.969173963237304e-05,1.8512395698155294e-05,4.221948743203584e-05,1.1887354840971335e-05,1.0195563529956567e-05,9.232026756795834e-06,0.0,8.376794504649295e-06,0.0,2.5277477996627984e-06,0.0,0.0,0.0,0.0,1.135388885570886e-05,9.738019659467546e-06,1.3123140779187217e-05,0.0,8.00087109750392e-06 +94558,50.0,the Greater Atlanta and Macon Area,G1301430010400,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,7446.0,,45.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017878788130226088,3.581216292912011e-05,0.0,0.0018236909759517287,0.0009842141774977582,0.00019709095672076958,0.0006066563858778199,0.0,3.581216292912011e-05,0.0009842141774977582,0.00019709095672076958,0.0006066563858778199,0.0,0.0,0.0,0.0,3.581216292912011e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3923591511928075e-06,0.0,0.0,0.00021306186102853874,7.632548229353355e-05,0.00021545422017973153,0.00011728899228568303,2.3487367110654007e-05,7.229535785004078e-05,0.0,0.0,0.0,0.0,2.3923591511928075e-06,0.0,0.0,0.0,0.0001162768807319186,2.32846896457279e-05,7.167150589652293e-05,0.0,4.230915072010147e-06 +94559,50.0,the Greater Atlanta and Macon Area,G1300670030507,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,30086.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.007632870421253203,0.0,0.0,0.007632870421253203,0.0027648974751050474,0.0011713802853698112,0.003512238593413429,0.0,0.00018435406736491623,0.0027648974751050474,0.0011713802853698112,0.003512238593413429,0.0,0.00018435406736491623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009095914321277425,0.0003000064451011773,0.0009095914321277425,0.0003294864075072646,0.00013959066675218036,0.0004185453120312144,0.0,2.1969045837083236e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003294864075072646,0.00013959066675218036,0.0004185453120312144,0.0,2.1969045837083236e-05 +94560,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,5603.0,,755.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.0003882235196659402,0.00022228481841426125,0.0,0.0006105083380802015,0.00032715120313351167,0.00017910454235339345,0.00010425259259329635,0.0,0.0,0.00010486638471925042,0.00017910454235339345,0.00010425259259329635,0.0,0.0,0.00022228481841426125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4851886720065003e-05,0.0,0.0,4.626363617877645e-05,3.239663555144299e-05,6.111552289884145e-05,1.2496667574931156e-05,2.1343445117734337e-05,1.2423523486110955e-05,0.0,0.0,1.4851886720065001e-05,0.0,0.0,0.0,0.0,0.0,3.274978505512743e-05,1.7929432043313666e-05,1.0436305800400362e-05,0.0,0.0 +94561,50.0,the Greater Atlanta and Macon Area,G1301210011625,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,10770.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0009496609600207485,0.0,0.0,0.0009496609600207485,0.0007515035972888557,0.00015171612919157035,4.6441233540322536e-05,0.0,0.0,0.0007515035972888557,0.00015171612919157035,4.6441233540322536e-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.00011317062075172384,3.1019881492111064e-05,0.00011317062075172384,8.955630712720372e-05,1.8079935094187314e-05,5.534378530332814e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.955630712720372e-05,1.8079935094187314e-05,5.534378530332814e-06,0.0,0.0 +94562,50.0,the Greater Atlanta and Macon Area,G1301350050522,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,31781.0,,10289.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0015651121936323213,0.001749791638183591,0.0,0.003314903831815912,0.0008449581038340363,0.00045035118006934115,0.0017039586539127542,0.0,0.00031563589399977995,0.0007429553345844725,0.00045035118006934115,0.0003110791911148264,0.0,6.0726487863680844e-05,0.00010200276924956378,0.0013928794627979279,0.0002549094061360991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011691069398686864,0.0,0.0,0.00018651218094555344,0.00016685796479420475,0.0003034228749324221,8.853692429351585e-05,5.366770582190541e-05,3.7070862151390965e-05,0.0,7.236688678741182e-06,6.815219756066586e-06,9.306394034709453e-05,1.7031533883707507e-05,0.0,0.0,0.0,7.734149467688358e-05,4.122196501579744e-05,0.00015596833566449596,0.0,2.8891079575245117e-05 +94563,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5693.0,,130.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0010617107055914895,0.00010321842802665565,0.0,0.001164929133618145,0.0004802799772041582,0.00036465548811660646,0.0002721062726023214,0.0,4.797010276879831e-05,0.00037706154917750256,0.00036465548811660646,0.0002721062726023214,0.0,4.797010276879831e-05,0.00010321842802665565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.89471042466602e-06,0.0,0.0,0.0001265206916252521,4.5171103323461405e-05,0.0001334154020499181,4.493322685358918e-05,4.345483597224714e-05,3.242603999743548e-05,0.0,5.716444741189235e-06,6.89471042466602e-06,0.0,0.0,0.0,0.0,0.0,5.500484484940536e-05,4.176276234562222e-05,3.116341304538378e-05,0.0,5.493853971526624e-06 +94564,50.0,the Greater Atlanta and Macon Area,G1301210007705,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,7258.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.00212689510828003,0.0,0.0,0.00212689510828003,0.000989507430217074,0.0004796183206142437,0.0005797765869125451,0.0,7.799277053616689e-05,0.000989507430217074,0.0004796183206142437,0.0005797765869125451,0.0,7.799277053616689e-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.0002534613196032362,6.934184232609567e-05,0.0002534613196032362,0.00011791924201793115,5.715594152975449e-05,6.90917658430038e-05,0.0,9.29437021254673e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011791924201793115,5.715594152975449e-05,6.90917658430038e-05,0.0,9.29437021254673e-06 +94565,50.0,the Greater Atlanta and Macon Area,G1300630040204,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,15011.0,,4105.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005371177515326956,0.003183974194106348,0.0,0.008555070848650235,0.004111043071987019,0.0011232371376049188,0.002314235611421264,0.0004223358699669204,0.0005842191576701129,0.0024233976685637767,0.0011232371376049188,0.0008179876815212267,0.0004223358699669204,0.0005842191576701129,0.0016876454034232423,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021273244489504814,0.0,0.0,0.0006400686762783862,0.0004111535298948286,0.0008528011211734343,0.0002887897362147269,0.0001338531273192783,9.747737642803394e-05,5.032862169668063e-05,6.961981461966639e-05,0.00011275748825184247,9.99695540516551e-05,0.0,0.0,0.0,0.0,0.0004098039867824062,0.00011196843453894305,0.0002306915698297135,4.210000241860914e-05,5.8237127603762414e-05 +94566,81.0,the Columbus-Albany Area,G1300950000502,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,26341.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002802784635317425,0.0,0.0,0.002802784635317425,0.0016799334113026157,0.0006864737208926291,0.00043634712952274264,0.0,0.0,0.0016799334113026157,0.0006864737208926291,0.00043634712952274264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033400258015712397,8.388097905863674e-05,0.00033400258015712397,0.0002001945089882676,8.180578382620978e-05,5.1998667777856265e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002001945089882676,8.180578382620978e-05,5.1998667777856265e-05,0.0,0.0 +94567,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,16964.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0038473560584005506,0.0014962479299000374,0.0,0.005343684849083655,0.0020015469632952677,0.0004191014386441793,0.002100844004903419,0.00043212002471821226,0.00039007241752257786,0.0020015469632952677,0.0004191014386441793,0.000604596075003382,0.00043212002471821226,0.00039007241752257786,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99716943603331e-05,0.0,0.0,0.00045848533478147686,0.00022068462606075764,0.0005584570291418099,0.0002385222255537179,4.994387326970144e-05,7.204907205046453e-05,5.149528434367826e-05,4.648451565754191e-05,0.0,9.99716943603331e-05,0.0,0.0,0.0,0.0,0.00020917737523412614,4.379939142077629e-05,0.00021955469583314464,4.515993589670625e-05,4.076563075705669e-05 +94568,50.0,the Greater Atlanta and Macon Area,G1301210005502,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,11556.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.004032631501381152,0.0,0.0,0.004032631501381152,0.0020171428214279686,0.00039443003466275707,0.0015517501174968859,0.0,6.930852779353962e-05,0.0020171428214279686,0.00039443003466275707,0.0015517501174968859,0.0,6.930852779353962e-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.0004805577958879831,0.00014149155066784955,0.0004805577958879831,0.00024037745772820905,4.700316109335475e-05,0.00018491786714898762,0.0,8.259309917431597e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00024037745772820905,4.700316109335475e-05,0.00018491786714898762,0.0,8.259309917431597e-06 +94569,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,15722.0,,159.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003774998966683208,0.00012629370159992242,0.0,0.0039012926682831313,0.0015877276945734846,0.0006145135578830541,0.0015728404213004093,0.0,0.00012629370159992242,0.0015877276945734846,0.0006145135578830541,0.0015728404213004093,0.0,0.0,0.0,0.0,0.00012629370159992242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.438982763309118e-06,0.0,0.0,0.0004498615933214876,0.0001620554150862179,0.00045830057608479675,0.00018920739230533925,7.323076130794762e-05,0.0001874332957998977,0.0,0.0,0.0,0.0,8.438982763309118e-06,0.0,0.0,0.0,0.00018651677250582666,7.218938478503369e-05,0.0001847679045029591,0.0,1.4836230224326575e-05 +94570,85.0,Rural Climate Zone 3A,G1300310110601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,43103.0,,607.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.002218724237021148,0.00010320843382612736,0.0,0.002321932670847275,0.001166214522403973,0.0004907764041070617,0.00044730155790509207,0.0,0.00021762245606972812,0.001158750040246131,0.0004907764041070617,0.00035155760623680697,0.0,0.00021762245606972812,7.464482157842229e-06,9.574395166828512e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.895732193492022e-06,0.0,0.0,0.00026440052823643834,8.556502909598129e-05,0.00027129626042993036,0.0001380857150352349,5.8484753682640736e-05,4.1894353179891625e-05,0.0,2.5933593450170963e-05,4.987292996839274e-07,6.397002893808093e-06,0.0,0.0,0.0,0.0,0.00013626133210478677,5.734266321034587e-05,5.2263031339255956e-05,0.0,2.5427162147535588e-05 +94571,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,10242.0,,1940.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0007800244071609045,0.000565040070340497,0.0,0.0013450644775014017,0.0009967400391492638,0.00027995346601775856,6.837097233437936e-05,0.0,0.0,0.0004316999688087666,0.00027995346601775856,6.837097233437936e-05,0.0,0.0,0.000565040070340497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.775227503550292e-05,0.0,0.0,9.295538005557163e-05,6.0206503465330826e-05,0.00013070765509107457,5.144561414001946e-05,3.336200840980506e-05,8.147757505747119e-06,0.0,0.0,3.775227503550292e-05,0.0,0.0,0.0,0.0,0.0,9.68589650769737e-05,2.7204689209972777e-05,6.644000804128103e-06,0.0,0.0 +94572,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,4514.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,9713.774621698478,0.0,0.0,0.00040221798013769265,0.0,0.0,0.00040221798013769276,0.00017729385558182896,0.00012822117511180226,9.670294944406145e-05,0.0,0.0,0.00017729385558182896,0.00012822117511180226,9.670294944406145e-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,4.793195344968039e-05,1.902225979056016e-05,4.793195344968039e-05,2.1127948655486312e-05,1.5280001641443975e-05,1.1524003152750107e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.112794865548631e-05,1.5280001641443972e-05,1.1524003152750103e-05,0.0,0.0 +94573,85.0,Rural Climate Zone 3A,G1301070970100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,21386.0,,6460.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004453021280388275,0.004443912844069291,0.0,0.008896934124457566,0.0026626756439255763,0.0006651310111987768,0.0035411018489247804,0.0003743065287304741,0.0016537190916779596,0.0019784671204366466,0.0006651310111987768,0.0012378866997294468,0.0003743065287304741,0.00019730164026394601,0.0006842085234889293,0.002303215149195333,0.0014564174514140136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002969167497918625,0.0,0.0,0.0005306603683397338,0.00043180353790361425,0.0008275771181315962,0.00023577118202934333,7.926273987312875e-05,0.0001475172406955146,4.4605589756077094e-05,2.3512162755119387e-05,4.5714886430624706e-05,0.00015388761664917003,9.730945479525115e-05,0.0,0.0,0.0,0.00024767739145797814,6.18693133755667e-05,0.00032938704750972933,3.481733302858341e-05,0.00015382603275973872 +94574,85.0,Rural Climate Zone 3A,G1303010970400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,15702.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035662463125651967,0.0,0.0,0.0035662463125651967,0.0023165424283642616,0.0006015285473059829,0.0005831675769358567,0.0,6.492505288535632e-05,0.0023165424283642616,0.0006015285473059829,0.0005831675769358567,0.0,6.492505288535632e-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.0004249797982212161,0.00012940570069066776,0.0004249797982212161,0.0002760560116973502,7.168250823216922e-05,6.94944817193765e-05,0.0,7.736940597037376e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002760560116973502,7.168250823216922e-05,6.94944817193765e-05,0.0,7.736940597037376e-06 +94576,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030202,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,16906.0,,4771.0,,8.53126424238864,Food Service,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.00396880895456948,0.0037005937371311715,0.0,0.007669402691700651,0.0024918867518228197,0.00045831891843241534,0.0036924267980412507,0.0004077809290145854,0.0006190701551726484,0.0024918867518228197,0.00045831891843241534,0.0006108223552996585,0.0004077809290145854,0.0,0.0,0.003081604442741592,0.0006190701551726484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024725318151940374,0.0,0.0,0.0004729554199006898,0.0003821070790742792,0.0007202086014200935,0.00029695340807382655,5.461699441744651e-05,7.279053913715434e-05,4.85944782722623e-05,0.0,0.0,0.00020589574451446472,4.136283967469803e-05,0.0,0.0,0.0,0.0002340049603041005,4.3039235324776646e-05,0.00034674376179791815,3.829337751285261e-05,5.8134859852944586e-05 +94577,50.0,the Greater Atlanta and Macon Area,G1300670031207,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,363768.0,,8149.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,280597.8237794184,0.0,0.0,0.01709836268723502,0.001385769587868487,0.0,0.018484132275103513,0.009604714084856802,0.006822341658292179,0.0017421675827729685,0.0,0.0003149089491815578,0.008533853446169875,0.006822341658292179,0.0017421675827729685,0.0,0.0,0.0010708606386869292,0.0,0.0003149089491815578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.258867902809768e-05,0.0,0.0,0.002037579245672849,0.0006141282047300561,0.0021301679247009465,0.0010169630265540552,0.0008130054335672403,0.00020761078555155363,0.0,0.0,7.154838208833409e-05,0.0,2.1040296939763592e-05,0.0,0.0,0.0,0.0011068766207133621,0.0007862275142566128,0.0002007727194895318,0.0,3.629107024143919e-05 +94578,35.0,Eastern Counties in South Carolina and Georgia,G1300290920303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,21965.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002608555156092141,0.0,0.0,0.002608555156092141,0.0007545039708290228,0.00083349901743931,0.0010205214782175107,0.0,0.0,0.0007545039708290228,0.00083349901743931,0.0010205214782175107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031085587069524953,9.528612471171267e-05,0.00031085587069524953,8.991260477943843e-05,9.932627346775551e-05,0.00012161333523411295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.991260477943843e-05,9.932627346775551e-05,0.00012161333523411295,0.0,0.0 +94579,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,54011.0,,4907.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004641496056464569,0.001444529078826572,0.0,0.006085994445684843,0.0022630515683926032,0.0015397282375620462,0.0022832453293364914,0.0,0.0,0.0008185224895660309,0.0015397282375620462,0.0022832453293364914,0.0,0.0,0.001444529078826572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.65144005405841e-05,0.0,0.0,0.0005531169453667249,0.00025030569524537005,0.0006496313459073089,9.754153696030096e-05,0.00018348605042312847,0.00027208935798329534,0.0,0.0,9.651440054058409e-05,0.0,0.0,0.0,0.0,0.0,0.0002415626976582133,0.00016435370361011958,0.00024371822050957078,0.0,0.0 +94580,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,25808.0,,2218.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0022995108206742745,0.0006529213739836267,0.0,0.0029524015050516033,0.0012736493509609632,0.0006582306758731293,0.0010205214782175107,0.0,0.0,0.0006207279769773366,0.0006582306758731293,0.0010205214782175107,0.0,0.0,0.0006529213739836267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.362395244821289e-05,0.0,0.0,0.000274026649048268,0.00012587040635864615,0.0003176506014964809,7.39705184130134e-05,7.843961628212753e-05,0.00012161285715356148,0.0,0.0,4.362395244821289e-05,0.0,0.0,0.0,0.0,0.0,0.00013703267720739122,7.081942268244445e-05,0.00010979850160664516,0.0,0.0 +94581,35.0,Eastern Counties in South Carolina and Georgia,G1301270000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,495556.0,,17378.0,,3.3063363735822096,Lodging,Zone-by-Zone,Before 1946,E: Lodging with Zone-by-Zone Systems,495950.45603733143,0.0,0.0,0.04475320274902929,0.0052234528789780335,0.0,0.04997665562800733,0.020306442965743337,0.007307932763896549,0.016464025387271562,0.0,0.005898254511095876,0.020306442965743337,0.007307932763896549,0.011240572508293524,0.0,0.005898254511095876,0.0,0.0052234528789780335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000349001542794395,0.0,0.0,0.005333152196649771,0.002148122779129216,0.005682153739444166,0.002419879343970446,0.0008708721449793685,0.001339517180488427,0.0,0.0007028835272115287,0.0,0.000349001542794395,0.0,0.0,0.0,0.0,0.0023087645498220542,0.0008308838788866552,0.0018718964333452113,0.0,0.0006706088773902448 +94582,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4400.0,,1015.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0002711426716402041,0.0002986712484892435,0.0,0.0005698139201294475,0.0003624749399821675,0.00011922912046657531,8.81098596807047e-05,0.0,0.0,6.380369149292409e-05,0.00011922912046657531,8.81098596807047e-05,0.0,0.0,0.0002986712484892435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9955819271256574e-05,0.0,0.0,3.2311502287175234e-05,3.053357295252295e-05,5.2267321558431804e-05,7.603351811549215e-06,1.4208283688248531e-05,1.0499866787377487e-05,0.0,0.0,1.9955819271256574e-05,0.0,0.0,0.0,0.0,0.0,3.324873888763063e-05,1.0936529555367456e-05,8.082053115433711e-06,0.0,0.0 +94583,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,134159.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.010829524637933786,0.0,0.0,0.010829524637933786,0.0059877602723600815,0.0036401240246173687,0.0012016403409563377,0.0,0.0,0.0059877602723600815,0.0036401240246173687,0.0012016403409563377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012905324630358569,0.00034803427435943263,0.0012905324630358569,0.0007135492342193383,0.000433786189173096,0.00014319703964342292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007135492342193383,0.000433786189173096,0.00014319703964342292,0.0,0.0 +94584,50.0,the Greater Atlanta and Macon Area,G1301210011503,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,4715.0,,410.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011320944253436402,0.0003250387997954781,0.0,0.001457133225139118,0.0007551155832398767,0.00048805444213565315,0.00017244424874645597,0.0,4.151895101713233e-05,0.0004300767834443986,0.00048805444213565315,0.00017244424874645597,0.0,4.151895101713233e-05,0.0003250387997954781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1716545706713924e-05,0.0,0.0,0.00013491339158833724,5.9377645133258444e-05,0.00015662993729505115,5.125289569399134e-05,5.8162180286585184e-05,2.055043990807153e-05,0.0,4.947875699689164e-06,2.1716545706713924e-05,0.0,0.0,0.0,0.0,0.0,8.116876646065485e-05,5.2461871947899705e-05,1.8536350281540563e-05,0.0,4.46294860495605e-06 +94585,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,65013.0,,4873.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.005792601809478806,0.0014342787503231393,0.0,0.007226849870195646,0.005485859194533265,0.0007473839821679559,0.0009936066934944253,0.0,0.0,0.004051580444210126,0.0007473839821679559,0.0009936066934944253,0.0,0.0,0.0014342787503231393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.582944304152954e-05,0.0,0.0,0.0006902920072651965,0.00032511523683929563,0.000786121450306726,0.0004828182031869832,8.906415566220214e-05,0.00011840599120106173,0.0,0.0,9.582944304152954e-05,0.0,0.0,0.0,0.0,0.0,0.0005967401653063852,8.129884950577838e-05,0.00010808243549456249,0.0,0.0 +94586,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,14127.0,,2393.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011999329166338811,0.000704418533351172,0.0,0.001904351449985053,0.0009669067360154238,0.0003921824788783438,0.0005453236143038808,0.0,0.0,0.00026248820266425193,0.0003921824788783438,0.0005453236143038808,0.0,0.0,0.000704418533351172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.706549230275382e-05,0.0,0.0,0.00014299449108590753,9.18174378131974e-05,0.00019005998338866137,3.128038779144651e-05,4.6735890984086856e-05,6.498552679366456e-05,0.0,0.0,4.7065492302753824e-05,0.0,0.0,0.0,0.0,0.0,9.650019075361253e-05,3.9140987038672456e-05,5.4424931425790045e-05,0.0,0.0 +94587,50.0,the Greater Atlanta and Macon Area,G1301530020109,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,286574.0,,3418.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.014751465667508313,0.0005812898991564311,0.0,0.015332755566664741,0.00839787930443949,0.004577518329260713,0.00126593007503035,0.0,0.0010914278579341903,0.00781658940528306,0.004577518329260713,0.00126593007503035,0.0,0.0010914278579341903,0.0005812898991564311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.883849348611166e-05,0.0,0.0,0.0017579027359892676,0.00048683329268644864,0.0017967412294753794,0.000931487366161683,0.0005454937276349725,0.0001508583616452834,0.0,0.00013006328054732856,3.883849348611166e-05,0.0,0.0,0.0,0.0,0.0,0.000984090297457644,0.0005364082062811518,0.00014834572621669087,0.0,0.00012789699951989297 +94588,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,30544.0,,5946.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0015390131016220034,0.0010112157028698712,0.0,0.002550228804491875,0.0011237857675257866,0.0005427263630678164,0.0005589496437671646,0.0,0.00032476703013110714,0.0007152959707691903,0.0005427263630678164,0.00021779975968392866,0.0,6.31910081010682e-05,0.00040848979675659646,0.00034114988408323594,0.00026157602203003894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.75637993049707e-05,0.0,0.0,0.00018340088121046136,0.00012272624182103626,0.0002509646805154321,8.524028237777956e-05,6.467553339076995e-05,2.5954728917746423e-05,0.0,7.530336524165439e-06,2.7293012329479778e-05,2.279373454713835e-05,1.7477052428352582e-05,0.0,0.0,0.0,0.00011059028727859278,5.3408991410774766e-05,5.500550324157707e-05,0.0,3.195989858448746e-05 +94589,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,86871.0,,10424.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006674009454652016,0.0017727169954997193,0.0,0.008446726450151735,0.0037212127941178424,0.0013335891342092716,0.002069842392176964,0.0,0.0013220821296476574,0.0029161657338403453,0.0013335891342092716,0.0011021724569547423,0.0,0.0013220821296476574,0.0008050470602774974,0.0009676699352222217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011844218326982977,0.0,0.0,0.0007953291828487411,0.00035432630808782556,0.0009137713661185709,0.0003475139982803142,0.0001589213146270441,0.00013134382345490847,0.0,0.0001575500464864744,5.378835521760537e-05,6.46538280522244e-05,0.0,0.0,0.0,0.0,0.0004025627819920559,0.00014426838281064467,0.00022391665238735172,0.0,0.00014302354892851868 +94590,85.0,Rural Climate Zone 3A,G1300310110601,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Electricity,14630.0,,,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.0034344000392695787,0.0,0.0,0.0034344000392695787,0.0011922922463454418,0.0003363808575650754,0.0013197288404614414,0.000424114807194428,0.00016196414848626108,0.0011922922463454418,0.0003363808575650754,0.0013197288404614414,0.000424114807194428,0.00016196414848626108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004092724784243425,0.00011433079667299809,0.0004092724784243425,0.00014208374012589014,4.008601959468991e-05,0.00015727017447233994,5.054114730147803e-05,1.9301032992347095e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00014208374012589014,4.008601959468991e-05,0.00015727017447233994,5.054114730147803e-05,1.9301032992347095e-05 +94591,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,15292.0,,1832.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012881962243460744,0.000539400520288424,0.0,0.0018275967446344985,0.0008799017021614364,0.00042124553604226846,0.0005264801960370913,0.0,0.0,0.0003405011818730124,0.00042124553604226846,0.0005264801960370913,0.0,0.0,0.000539400520288424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6040305701816245e-05,0.0,0.0,0.00015351207237955725,8.251420168285361e-05,0.00018955237808137348,4.057692538537672e-05,5.019908768271121e-05,6.27397165377321e-05,0.0,0.0,3.6040305701816245e-05,0.0,0.0,0.0,0.0,0.0,9.126053688386522e-05,4.369021412814113e-05,5.460481009531262e-05,0.0,0.0 +94592,81.0,the Columbus-Albany Area,G1300950010402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,14934.0,,43.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0007110406840283775,7.340369627901859e-06,0.0,0.0007183987840176995,0.0004063621533861902,0.00015044211664914806,3.994650427937896e-05,0.0,0.00012164800970298227,0.00039902178375828836,0.00015044211664914806,3.994650427937896e-05,0.0,0.00012164800970298227,7.340369627901859e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.90761184255094e-07,0.0,0.0,8.473424030360074e-05,2.5688426639030652e-05,8.522500148785583e-05,4.7551157719685185e-05,1.792808590320057e-05,4.760398060095566e-06,0.0,1.4496711535870252e-05,4.90761184255094e-07,0.0,0.0,0.0,0.0,0.0,4.82075079989182e-05,1.784723178894459e-05,4.738929077253052e-06,0.0,1.4431332622739988e-05 +94593,50.0,the Greater Atlanta and Macon Area,G1300630040609,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,9740.0,,1335.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002128218421459859,0.001058650543863135,0.0,0.0031868689653229937,0.0021655193117162863,0.0005798592939862843,0.00035903140710233356,0.0,8.25416595918288e-05,0.0011893277203712407,0.0005798592939862843,0.00035903140710233356,0.0,0.0,0.0009761915913450456,0.0,8.25416595918288e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.07349098533323e-05,0.0,0.0,0.00025361628909700834,0.00014794857797837454,0.00032435119895034064,0.00014173022840101738,6.910087839496054e-05,4.2785182301030355e-05,0.0,0.0,6.522532351553759e-05,0.0,5.515112502627002e-06,0.0,0.0,0.0,0.0002204008990479801,5.90165643060531e-05,3.654127879797127e-05,0.0,8.400874508264297e-06 +94594,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,10036.0,,165.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0021336770883266533,0.00013109071187680224,0.0,0.002264767800203455,0.001219019559843652,0.00037830215528359215,0.00061740830546393,0.0,4.995507253854169e-05,0.0010879288479668499,0.00037830215528359215,0.00061740830546393,0.0,4.995507253854169e-05,0.00013109071187680224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.7565823382815e-06,0.0,0.0,0.00025426537209752704,8.521734629432345e-05,0.00026302195443580855,0.00012964596885692186,4.5081394370652316e-05,7.357512220745947e-05,0.0,5.95303065148098e-06,8.7565823382815e-06,0.0,0.0,0.0,0.0,0.0,0.00014157252990648877,4.3934646298411e-05,7.170357118881463e-05,0.0,5.801601741198129e-06 +94595,85.0,Rural Climate Zone 3A,G1302770960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,97343.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.008583852563503604,0.0,0.0,0.008583852563503604,0.0057824043665614415,0.0020602108762632684,0.0007412373206788955,0.0,0.0,0.0057824043665614415,0.0020602108762632684,0.0007412373206788955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010229204045566131,0.0003138557230316823,0.0010229204045566131,0.0006890774707736477,0.0002455111766457208,8.83317571372447e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006890774707736477,0.0002455111766457208,8.83317571372447e-05,0.0,0.0 +94596,50.0,the Greater Atlanta and Macon Area,G1301350050543,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,77773.0,,4005.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00685811576424886,0.0011668625696001117,0.0,0.00802497833384897,0.004900415786088004,0.002547889388835812,0.0005766427853257183,0.0,0.0,0.003733553216487892,0.002547889388835812,0.0005766427853257183,0.0,0.0,0.0011668625696001117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.796240677539113e-05,0.0,0.0,0.0008172677829882584,0.00023897964619052,0.0008952301897636496,0.00044491998455525313,0.00030362682458178353,6.87173542908167e-05,0.0,0.0,7.796240677539113e-05,0.0,0.0,0.0,0.0,0.0,0.0005466681617813463,0.00028423098557703855,6.432765406425552e-05,0.0,0.0 +94597,35.0,Eastern Counties in South Carolina and Georgia,G1300510004210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,32886.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0072861623681380275,0.0,0.0,0.007286162368138026,0.0046742729794506995,0.0014863288221690937,0.0009823119148017546,0.0,0.00014324865171648046,0.0046742729794506995,0.0014863288221690937,0.0009823119148017546,0.0,0.00014324865171648046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008682825451131124,0.00023130344397388378,0.0008682825451131124,0.0005570270650155814,0.00017712388324359494,0.00011706084031407144,0.0,1.7070756539864586e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005570270650155815,0.000177123883243595,0.00011706084031407147,0.0,1.707075653986459e-05 +94598,50.0,the Greater Atlanta and Macon Area,G1300670030329,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,44156.0,,980.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004149550034387341,0.00028535996671767835,0.0,0.004434910001105019,0.0022091933815054413,0.0018430700138827804,0.00038267697931623524,0.0,0.0,0.001923833414787763,0.0018430700138827804,0.00038267697931623524,0.0,0.0,0.00028535996671767835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9065737613716476e-05,0.0,0.0,0.0004944941743441645,0.00017265078833370536,0.0005135599119578809,0.00022925965662241914,0.00021963523206631601,4.5602905220888524e-05,0.0,0.0,1.9065737613716476e-05,0.0,0.0,0.0,0.0,0.0,0.0002558232654599931,0.00021342639959458267,4.431376414786005e-05,0.0,0.0 +94599,50.0,the Greater Atlanta and Macon Area,G1300210011800,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,121529.0,,8739.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005579266019132275,0.0014861234335059857,0.0,0.0070654071829996815,0.0033602049052441465,0.0012747952557403766,0.001243430246388303,0.0,0.0011869590452654349,0.003090721142020764,0.0012747952557403766,0.0010280063551346614,0.0,0.00018572553587505313,0.0002694837632233825,0.00021542389125364151,0.0010012335093903817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.929465636709645e-05,0.0,0.0,0.000664870544504329,0.00026142310604941913,0.0007641652008714254,0.00036831537366378944,0.0001519149316252642,0.00012250556663698825,0.0,2.2132559684761157e-05,1.800543418028942e-05,1.4393448601257745e-05,6.689695823152469e-05,0.0,0.0,0.0,0.0003634258564125501,0.00013787657914702083,0.00013448426953894448,0.0,0.00012837657813039553 +94600,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,101010.0,,15294.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,149297.12424180118,0.0,0.0,0.022693012742700833,0.011861225685973127,0.0,0.034554157567890896,0.016977206569935812,0.004644724240239303,0.007924518462281855,0.0004191014386441793,0.004588606856789743,0.012697164461335569,0.004644724240239303,0.004932022602481782,0.0004191014386441793,0.0,0.004280042108600241,0.002992495859800075,0.004588606856789743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007924959800865425,0.0,0.0,0.0027042793898094035,0.0015348806506623443,0.003496775369895946,0.0015130948257566427,0.0005535021804571714,0.0005877389320312097,4.9943451564379435e-05,0.0,0.0002859667504411487,0.00019994063026064184,0.0003065831967520709,0.0,0.0,0.0,0.0017180415313771667,0.00047003192861283234,0.0008019371018595566,4.241178750370484e-05,0.00046435302054268537 +94601,50.0,the Greater Atlanta and Macon Area,G1301350050430,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,18932.0,,5765.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004298478367139867,0.004471035278208103,0.0,0.00876951364534797,0.004465375023393308,0.0004364865070039128,0.0027800745826790526,0.00041610958967064376,0.0006714679426010543,0.0019661299403112525,0.0004364865070039128,0.001479752330154058,0.00041610958967064376,0.0,0.0024992450830820553,0.0013003222525249946,0.0006714679426010543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002987297842489326,0.0,0.0,0.0005122416223584575,0.0004489502796988147,0.0008109714066073901,0.0002343000253512274,5.2015280149945515e-05,0.00017633931581030065,4.958700104698399e-05,0.0,0.00016698569749454742,8.688032229228087e-05,4.4863764462104364e-05,0.0,0.0,0.0,0.0004129409691575988,4.036461893618091e-05,0.0002570907676259422,3.84802388005904e-05,6.209481208707785e-05 +94602,50.0,the Greater Atlanta and Macon Area,G1300670030313,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,10969.0,,81.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026818595730707826,6.393256800048463e-05,0.0,0.0027458748481450066,0.0011629441638484014,0.0005973104865452782,0.000921687629750842,0.0,6.393256800048463e-05,0.0011629441638484014,0.0005973104865452782,0.000921687629750842,0.0,0.0,0.0,0.0,6.393256800048463e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.273396302956829e-06,0.0,0.0,0.00031959519425540483,9.785507475464272e-05,0.00032386859055836165,0.0001385871839395931,7.118104277161949e-05,0.0001098368236841495,0.0,0.0,0.0,0.0,4.273396302956829e-06,0.0,0.0,0.0,0.00013716615216388922,7.045117352447252e-05,0.00010871058955368622,0.0,7.540675316313659e-06 +94603,50.0,the Greater Atlanta and Macon Area,G1300670030410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,19383.0,,1367.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0048160329038398715,0.0010846205650172772,0.0,0.005900653468857149,0.003302493454410545,0.001196936771155257,0.0012922153201029392,0.0,0.00010900792318840718,0.0022178728893932674,0.001196936771155257,0.0012922153201029392,0.0,0.00010900792318840718,0.0010846205650172772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.24678572276921e-05,0.0,0.0,0.0005739196181288893,0.00027122645616962216,0.0006463874753565814,0.00026430067799663906,0.00014263720957515517,0.00015399141531248096,0.0,1.299031524461405e-05,7.24678572276921e-05,0.0,0.0,0.0,0.0,0.0,0.0003617718643612398,0.00013111851793227804,0.00014155581289206136,0.0,1.1941280171002107e-05 +94604,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,145547.0,,3833.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,70149.4559448546,0.0,0.0,0.007492070600211833,0.0006518390072468212,0.0,0.008143909607458654,0.005986355117336689,0.0017871849704184824,0.0002931006046348929,0.0,7.725118470717006e-05,0.005411767294797037,0.0017871849704184824,0.0002931006046348929,0.0,0.0,0.0005745878225396512,0.0,7.725118470717006e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.355218498064971e-05,0.0,0.0,0.0008928150935493373,0.000326099227105898,0.000936367278529987,0.0006449095025125427,0.00021297526434268138,3.4928213802345946e-05,0.0,0.0,3.839069901718842e-05,0.0,5.161485963461288e-06,0.0,0.0,0.0,0.0006882968156229102,0.0002054862599957886,3.370000757942005e-05,0.0,8.882156737253228e-06 +94605,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,41512.0,,0.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.0035962080659648118,6.137921259540556e-08,0.0,0.0035962694451774076,0.0008925458199560902,0.001535216865436284,0.0011685374493913313,0.0,0.0,0.0008924844407434948,0.001535216865436284,0.0011685374493913313,0.0,0.0,6.137921259540556e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.774304973781195e-09,0.0,0.0,0.0004285535561208944,0.00012913964935033268,0.00042855733042586824,0.00010635574300692725,0.00018294899378214395,0.00013925247655623125,0.0,0.0,3.774304973781195e-09,0.0,0.0,0.0,0.0,0.0,0.0001063621788395447,0.0001829474825248215,0.00013925132625569936,0.0,0.0 +94606,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,36981.0,,2187.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0035735591365171075,0.0006436838024880181,0.0,0.004217242939005126,0.0016873145542476988,0.0014017477676475747,0.0011281499275035544,0.0,0.0,0.0010436307517596808,0.0014017477676475747,0.0011281499275035544,0.0,0.0,0.0006436838024880181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.300686635435182e-05,0.0,0.0,0.00042585484107392495,0.00017453415684135724,0.0004688617074282768,0.0001243676656666829,0.00016704384900681474,0.0001344396691733007,0.0,0.0,4.300686635435182e-05,0.0,0.0,0.0,0.0,0.0,0.00018759108600458938,0.00015584254007383814,0.00012542466936210815,0.0,0.0 +94607,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,8199.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,9613.75315558068,0.0,0.0,0.0006084135703376067,0.0,0.0,0.0006084135703376067,0.0003588033301581623,0.0002055988945941421,4.398097198586464e-05,0.0,0.0,0.0003588033301581623,0.0002055988945941421,4.398097198586464e-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,7.250187688189987e-05,2.1891095751797514e-05,7.250187688189987e-05,4.275696029184181e-05,2.450028478925567e-05,5.241012317157957e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.275696029184181e-05,2.450028478925567e-05,5.241012317157957e-06,0.0,0.0 +94608,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,26691.0,,,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006190539830160347,0.0,0.0,0.006190539830160347,0.002523826761134888,0.0007429488748336331,0.0019309554996764428,0.000429775062009225,0.0005629527717230902,0.002523826761134888,0.0007429488748336331,0.0019309554996764428,0.000429775062009225,0.0005629527717230902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007377137276405192,0.00020109450660700634,0.0007377137276405192,0.00030075917431379983,8.85356687682684e-05,0.0002301079419009849,5.121539829161368e-05,6.708590835488512e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00030075917431379983,8.85356687682684e-05,0.0002301079419009849,5.121539829161368e-05,6.708590835488512e-05 +94609,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,104361.0,,616.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,70149.4559448546,0.0,0.0,0.004992213752514327,0.0001048041663539321,0.0,0.00509701791886826,0.002897194247120888,0.0017183202466629975,0.00037671698909186194,0.0,0.0001048041663539321,0.002897194247120888,0.0017183202466629975,0.00037671698909186194,0.0,0.0,0.0,0.0,0.0001048041663539321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.00198074032298e-06,0.0,0.0,0.0005949134579989941,0.00018147560144379462,0.0006019154387393171,0.00034525361562921846,0.00020476924478185886,4.489271048434855e-05,0.0,0.0,0.0,0.0,7.00198074032298e-06,0.0,0.0,0.0,0.0003421345528163264,0.00020291933472238246,4.448714432224921e-05,0.0,1.2376500686629407e-05 +94610,50.0,the Greater Atlanta and Macon Area,G1300670031313,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,14594.0,,499.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035043814214081952,0.00039591876199006457,0.0,0.00390030018339826,0.0023285349540564607,0.0007465967546447281,0.0007089650360933433,0.0,0.00011620343860372692,0.002048736923596384,0.0007465967546447281,0.0007089650360933433,0.0,0.0,0.00027979803046007695,0.0,0.00011620343860372692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6454832744444793e-05,0.0,0.0,0.0004176079626211995,0.00015693780951438923,0.0004440627953656443,0.00024414261740553044,8.896998132169568e-05,8.448550790844969e-05,0.0,0.0,1.869578006568973e-05,0.0,7.764579069551897e-06,0.0,0.0,0.0,0.0002651118355469771,8.500264756278193e-05,8.071814499924302e-05,0.0,1.3230167256642142e-05 +94612,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960102,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,9841.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0023628583896582738,0.0,0.0,0.0023628583896582738,0.0008848829819368502,0.0005116259581513556,0.0008957176085966993,0.0,7.071454804710786e-05,0.0008848829819368502,0.0005116259581513556,0.0008957176085966993,0.0,7.071454804710786e-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.000281578449195106,9.661745752219526e-05,0.000281578449195106,0.00010545023724801145,6.0969732462491706e-05,0.00010674138418506066,0.0,8.426951383031106e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010545023724801145,6.0969732462491706e-05,0.00010674138418506066,0.0,8.426951383031106e-06 +94613,50.0,the Greater Atlanta and Macon Area,G1301210004400,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,17893.0,,2052.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014988156378553015,0.0005976916897360802,0.0,0.002096507327591382,0.0013815127968267037,0.000608018713544916,0.00010700619081919967,0.0,0.0,0.0007838211070906235,0.000608018713544916,0.00010700619081919967,0.0,0.0,0.0005976916897360802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.993465690293366e-05,0.0,0.0,0.00017861084248849772,9.090021126975882e-05,0.00021854549939143137,9.34063835216263e-05,7.245636616817466e-05,1.275171235940051e-05,0.0,0.0,3.993465690293366e-05,0.0,0.0,0.0,0.0,0.0,0.00014401256800996554,6.338148769728895e-05,1.1154609908959387e-05,0.0,0.0 +94614,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,8201.0,,1246.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00196925542573291,0.0009882668241109843,0.0,0.0029575222498438945,0.0019543681524598344,0.0004935958160761867,0.0003671367003287857,0.0,0.00014233887390534803,0.001108440202254198,0.0004935958160761867,0.0003671367003287857,0.0,0.0,0.0008459279502056362,0.0,0.00014233887390534803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.603192865764475e-05,0.0,0.0,0.000234668150895827,0.0001372133622968025,0.0003007000795534717,0.000132088305682733,5.88198036348717e-05,4.3750185713001936e-05,0.0,0.0,5.652142993642903e-05,0.0,9.510498721215716e-06,0.0,0.0,0.0,0.00019870642019767152,5.0185354030457194e-05,3.7327879782372574e-05,0.0,1.4472016468903621e-05 +94615,50.0,the Greater Atlanta and Macon Area,G1301170130608,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,19178.0,,2042.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004468663194134779,0.0016199834533318145,0.0,0.0060885639403928556,0.0038205705643135665,0.0006251827703954248,0.0015557200570363726,0.0,8.709054864749071e-05,0.002200587110981753,0.0006251827703954248,0.0015557200570363726,0.0,8.709054864749071e-05,0.0016199834533318145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010823520163727729,0.0,0.0,0.0005325179569362761,0.00027886583042695213,0.0006407531585735534,0.00026223774347961323,7.45012629369112e-05,0.00018539076013272915,0.0,1.0378334418913546e-05,0.00010823520163727729,0.0,0.0,0.0,0.0,0.0,0.0004020722588451793,6.579348410206327e-05,0.0001637221108559082,0.0,9.165304770402516e-06 +94616,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,7174.0,,131.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014850055089892648,0.00010388008461657013,0.0,0.0015888028865320956,0.0009172214477689192,0.0002664821915880485,0.0003677156498449608,0.0,3.738359733016695e-05,0.0008507249604825162,0.0002664821915880485,0.0003677156498449608,0.0,0.0,6.649648728640316e-05,0.0,3.738359733016695e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.939574605294336e-06,0.0,0.0,0.00017696111740908265,6.578038424622851e-05,0.000183900692014377,0.00010137688965022691,3.175542858769503e-05,4.381894335843951e-05,0.0,0.0,4.442211769631087e-06,0.0,2.497362835663248e-06,0.0,0.0,0.0,0.00010616651090262575,3.0844769894342666e-05,4.256233611118793e-05,0.0,4.327075106220635e-06 +94617,50.0,the Greater Atlanta and Macon Area,G1300890021909,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,76613.0,,5651.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006975752714871272,0.0016464009575233372,0.0,0.008622123298795172,0.005620756070353726,0.0023552903948010273,0.0006461072072398568,0.0,0.0,0.003974355112830389,0.0023552903948010273,0.0006461072072398568,0.0,0.0,0.0016464009575233372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011000251145641033,0.0,0.0,0.000831285378306502,0.00037018794966963293,0.0009412878897629123,0.00047361531128394614,0.00028067486719961416,7.699519982294173e-05,0.0,0.0,0.00011000251145641033,0.0,0.0,0.0,0.0,0.0,0.0006136249085042255,0.00025712997235969855,7.053632482249443e-05,0.0,0.0 +94618,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,127230.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.009824887462930707,0.0,0.0,0.009824887462930707,0.00556909057771011,0.0033514229619615358,0.0009044042968584982,0.0,0.0,0.00556909057771011,0.0033514229619615358,0.0009044042968584982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011708124946933599,0.000341526872825261,0.0011708124946933599,0.000663657559138807,0.0003993824757455616,0.00010777607937103354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000663657559138807,0.0003993824757455616,0.00010777607937103354,0.0,0.0 +94619,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970800,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,DistrictHeating,86004.0,,,,9.729435225087556,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1459415.2837631335,0.0,0.021228319371131975,0.04904860462224877,0.0,0.0,0.07027692399338074,0.047368037407710444,0.013484744438515746,0.004012464885413592,0.0006481950697426428,0.004763482191998323,0.030903200228576795,0.013484744438515746,0.004012464885413592,0.0006481950697426428,0.0,0.0,0.0,0.0,0.01646483717913365,0.0,0.004763482191998323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005845027356135869,0.0014454775732735622,0.005845027356135869,0.0036826746065318364,0.0016069509161504847,0.00047815768055792154,7.724415289562708e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003939664099137469,0.0011215445363125078,0.00033372216209955367,5.391126559715387e-05,0.00039618529298918523 +94620,50.0,the Greater Atlanta and Macon Area,G1300670030412,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,61654.0,,5090.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005892005444277064,0.001498358648272743,0.0,0.007390364092549808,0.0023552431457109025,0.0020253298780105976,0.003009791068828307,0.0,0.0,0.0008568844974381595,0.0020253298780105976,0.003009791068828307,0.0,0.0,0.001498358648272743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010011161204684297,0.0,0.0,0.000702137811772445,0.0003203448664538535,0.0008022494238192879,0.00010211311100490365,0.0002413542726857065,0.0003586704280818348,0.0,0.0,0.00010011161204684297,0.0,0.0,0.0,0.0,0.0,0.0002556697387217617,0.00021985651956118966,0.00032672316553633655,0.0,0.0 +94621,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,62842.0,,3160.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005449369252645297,0.0009302326564896691,0.0,0.0063796019091349665,0.0029245353425332893,0.0014140236101666558,0.0020410429564350213,0.0,0.0,0.0019943026860436202,0.0014140236101666558,0.0020410429564350213,0.0,0.0,0.0009302326564896691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.215282318830628e-05,0.0,0.0,0.0006493913731747236,0.000260934106951796,0.0007115441963630299,0.0002376574057974199,0.0001685066089918305,0.00024322735838547323,0.0,0.0,6.215282318830628e-05,0.0,0.0,0.0,0.0,0.0,0.00032618589367753973,0.0001577120810459488,0.00022764622163954138,0.0,0.0 +94622,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,8336.0,,812.0,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,9613.75315558068,0.0,0.0,0.0007351018535924697,0.00023651921882177342,0.0,0.000971621072414243,0.0005603017888282079,0.00034717024157350333,6.414904201253185e-05,0.0,0.0,0.0003237825700064344,0.00034717024157350333,6.414904201253185e-05,0.0,0.0,0.00023651921882177342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5803124156892355e-05,0.0,0.0,8.760009969904347e-05,4.34483080891883e-05,0.00010340322385593581,3.858429314898782e-05,4.1371338714158616e-05,7.644467835897026e-06,0.0,0.0,1.5803124156892355e-05,0.0,0.0,0.0,0.0,0.0,5.962922474820869e-05,3.694703956589285e-05,6.82695954183427e-06,0.0,0.0 +94623,35.0,Eastern Counties in South Carolina and Georgia,G1300510011103,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,50610.0,,2253.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.004744357195523914,0.0006771206457609348,0.0,0.005421477841284849,0.00179074860280081,0.0009372575680759958,0.0018870190070113708,0.0,0.0008064213253744682,0.00179074860280081,0.0009372575680759958,0.001209898361250436,0.0,0.0008064213253744682,0.0,0.0006771206457609348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5240940732652564e-05,0.0,0.0,0.0005653766642089454,0.0002576668623415875,0.0006106176049415979,0.00021340034693078123,0.00011169132835178071,0.00014418144994668815,0.0,9.609980448296018e-05,0.0,4.5240940732652564e-05,0.0,0.0,0.0,0.0,0.0002016908774518944,0.00010556272444273589,0.00021253375191652207,0.0,9.082672154891408e-05 +94624,50.0,the Greater Atlanta and Macon Area,G1300770170200,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13564.0,,674.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003501486673827319,0.0005344531105034046,0.0,0.004035939784330723,0.0024927084954289866,0.0005230395343273801,0.000940544842563404,0.0,7.964691201095305e-05,0.001958255384925582,0.0005230395343273801,0.000940544842563404,0.0,7.964691201095305e-05,0.0005344531105034046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.570719115616e-05,0.0,0.0,0.00041726668181900773,0.00014645700605106293,0.0004529738729751678,0.0002333622266021506,6.232980196105927e-05,0.00011208325551884345,0.0,9.49139773695447e-06,3.570719115616e-05,0.0,0.0,0.0,0.0,0.0,0.00027976924377225675,5.870336433245135e-05,0.00010556209032078381,0.0,8.939174549675942e-06 +94625,85.0,Rural Climate Zone 3A,G1302370960202,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,59287.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0030517852683423284,0.0,0.0,0.0030517852683423284,0.0012408770743438154,0.0007405262750699253,0.0006723175746869822,0.0,0.00039804661388018544,0.0012408770743438154,0.0007405262750699253,0.0006723175746869822,0.0,0.00039804661388018544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003636759855485185,7.896967768303279e-05,0.0003636759855485185,0.00014787318021286422,8.82472386587387e-05,8.011892550640983e-05,0.0,4.7434528273923385e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00014787318021286422,8.82472386587387e-05,8.011892550640983e-05,0.0,4.7434528273923385e-05 +94626,50.0,the Greater Atlanta and Macon Area,G1300590150500,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,10347.0,,190.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.00047985450147230903,3.2286988145916155e-05,0.0,0.0005121237592568052,0.00030535228437614936,9.625813214946666e-05,3.9538705966717756e-05,0.0,7.097463676447137e-05,0.00027306529623023323,9.625813214946666e-05,3.9538705966717756e-05,0.0,7.097463676447137e-05,3.2286988145916155e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1566709996776932e-06,0.0,0.0,5.718308978376363e-05,1.6373163762966503e-05,5.9339760783441327e-05,3.254052489505409e-05,1.1470846675881347e-05,4.711731089927317e-06,0.0,8.45787423900406e-06,2.1566709996776932e-06,0.0,0.0,0.0,0.0,0.0,3.538115774174029e-05,1.1153426163041925e-05,4.581348377893441e-06,0.0,8.22382850076567e-06 +94627,50.0,the Greater Atlanta and Macon Area,G1301210010601,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,8276.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0026082502774427987,0.0,0.0,0.0026082502774427987,0.0017262620430868246,0.00034695617433639465,0.0004666333100371725,0.0,6.831604290866793e-05,0.0017262620430868246,0.00034695617433639465,0.0004666333100371725,0.0,6.831604290866793e-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.00031082169852177593,9.718526199254091e-05,0.00031082169852177593,0.00020571633978775075,4.134630344047597e-05,5.560806770230404e-05,0.0,8.141131499841036e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00020571633978775075,4.134630344047597e-05,5.560806770230404e-05,0.0,8.141131499841036e-06 +94628,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,99491.0,,7916.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0045488483348444875,0.001346230881901769,0.0,0.005895079216746256,0.0028353152857649036,0.0016402357349690848,0.0007896039154806315,0.0,0.0006299065501702159,0.002398811517964624,0.0016402357349690848,0.0003852984840191675,0.0,0.00012450259789161078,0.0004365037678002798,0.00040430543146146404,0.0005054039522786051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.994686534565483e-05,0.0,0.0,0.00054207832750132,0.00020055091270153235,0.0006320251928469748,0.0002858621875098461,0.00019546403363442474,4.5915348772129324e-05,0.0,1.4836757584919797e-05,2.9164496337907962e-05,2.7013201591994617e-05,3.376798278208159e-05,0.0,0.0,0.0,0.00030398076503823716,0.00017585349892558654,8.465527749596877e-05,0.0,6.753375047377918e-05 +94629,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10797.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002216880404508396,0.0,0.0,0.002216880404508396,0.0012186887315486948,0.0006177391337588871,0.00031370793069319307,0.0,6.674460850762109e-05,0.0012186887315486948,0.0006177391337588871,0.00031370793069319307,0.0,6.674460850762109e-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.00026418434134761667,6.896537003887532e-05,0.00026418434134761667,0.00014523042343520114,7.361561130895943e-05,3.738439064063238e-05,0.0,7.953915962823708e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014523042343520114,7.361561130895943e-05,3.738439064063238e-05,0.0,7.953915962823708e-06 +94630,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,32464.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,32736.412774265485,0.0,0.0,0.0015943495596139883,0.0,0.0,0.001594349559613988,0.0008335220207181024,0.0005507936775139402,0.00017659439974372594,0.0,3.3439461638219584e-05,0.0008335220207181024,0.0005507936775139402,0.00017659439974372594,0.0,3.3439461638219584e-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.00018999569697822008,4.332581480585627e-05,0.00018999569697822008,9.93292821627978e-05,6.563706686493188e-05,2.1044428970697628e-05,0.0,3.9849189797927425e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.932928216279782e-05,6.563706686493188e-05,2.104442897069763e-05,0.0,3.984918979792743e-06 +94631,50.0,the Greater Atlanta and Macon Area,G1302170100501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,95352.0,,11492.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0049082959519132175,0.0019543468178867397,0.0,0.006862642769799958,0.0032861983766768466,0.0014903255291625385,0.001060435186171938,0.0,0.0010256659474272144,0.0027032063628240907,0.0014903255291625385,0.0005344462842846516,0.0,0.00018030004528051698,0.0005829920138527561,0.0005259889018872864,0.0008453659021466976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001305785687213648,0.0,0.0,0.0005849115851511838,0.0002520478553935899,0.0007154901538725485,0.00032213557091109995,0.00017759904378095856,6.36888701051625e-05,0.0,2.1485987463072606e-05,3.8952279118603565e-05,3.514364868259765e-05,5.6482640920163607e-05,0.0,0.0,0.0,0.000342614742024926,0.00015537938924537297,0.00011055958469307608,0.0,0.000106934589364896 +94632,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock 90.1-2004,gen5_led,_1000,Electricity,2346.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005633178792384229,0.0,0.0,0.0005633178792384229,0.00037838486235733143,9.933119556090822e-05,5.69024667326435e-05,0.0,2.8616647513800372e-05,0.00037838486235733143,9.933119556090822e-05,5.69024667326435e-05,0.0,2.8616647513800372e-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,6.713006857286363e-05,2.518181033635905e-05,6.713006857286363e-05,4.5091772679614016e-05,1.1837206336222173e-05,6.781014120999879e-06,0.0,3.4102193108516835e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.5091772679614016e-05,1.1837206336222173e-05,6.781014120999879e-06,0.0,3.4102193108516835e-06 +94633,50.0,the Greater Atlanta and Macon Area,G1302470060309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,3684.0,,319.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005533103233159668,0.00025300093856854143,0.0,0.0008063112618845081,0.00047738522962328245,0.00012083503473312816,0.0001970082496470303,0.0,1.11654549548065e-05,0.00023554974600954756,0.00012083503473312816,0.0001970082496470303,0.0,0.0,0.0002418354836137349,0.0,1.11654549548065e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6901683461307724e-05,0.0,0.0,6.593627268104808e-05,3.627529088846303e-05,8.28379561423558e-05,2.8069731628643484e-05,1.4399535782811847e-05,2.3476861214687072e-05,0.0,0.0,1.615577719544419e-05,0.0,7.459062658635312e-07,0.0,0.0,0.0,4.9045100302972365e-05,1.2414222373985213e-05,2.0240025800706897e-05,0.0,1.1471047368158816e-06 +94634,50.0,the Greater Atlanta and Macon Area,G1301210011423,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,74078.0,,5854.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007010014135037056,0.0017053257404325759,0.0,0.008715309501870196,0.00662399605978267,0.0016010227999633364,0.0004903210157236276,0.0,0.0,0.004918670319350093,0.0016010227999633364,0.0004903210157236276,0.0,0.0,0.0017053257404325759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011393987944560131,0.0,0.0,0.0008353680845328801,0.00028827661718416246,0.0009493079639784815,0.0005861472065494625,0.00019079039270607275,5.843048527734499e-05,0.0,0.0,0.00011393987944560131,0.0,0.0,0.0,0.0,0.0,0.0007215133566472194,0.00017439009988000757,5.3407815870747323e-05,0.0,0.0 +94635,50.0,the Greater Atlanta and Macon Area,G1301350050730,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,110712.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00976271270488163,0.0,0.0,0.009762712704881629,0.00602290252690956,0.0028783541507185514,0.0008614560272535172,0.0,0.0,0.00602290252690956,0.0028783541507185514,0.0008614560272535172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011634042976246602,0.0002844906896994015,0.0011634042976246602,0.0007177380811869303,0.00034300810545795363,0.00010265811097977607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007177380811869304,0.0003430081054579537,0.00010265811097977609,0.0,0.0 +94636,50.0,the Greater Atlanta and Macon Area,G1300670031002,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,66198.0,,2083.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0063695970974819134,0.0006131169546155061,0.0,0.00698271405209742,0.0015687299155133752,0.002888567123952381,0.0025254170126316642,0.0,0.0,0.0009556129608978692,0.002888567123952381,0.0025254170126316642,0.0,0.0,0.0006131169546155061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0964304686324296e-05,0.0,0.0,0.0007590537972359067,0.0002425075851759527,0.0008000181019222311,0.0001138787329176805,0.00034422551543701976,0.00030094954888120655,0.0,0.0,4.0964304686324296e-05,0.0,0.0,0.0,0.0,0.0,0.0001797313079232652,0.000330946673533797,0.00028934012046516884,0.0,0.0 +94637,85.0,Rural Climate Zone 3A,G1300690010400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4510.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010828837164687521,0.0,0.0,0.0010828837164687521,0.0006020247897484187,0.00025647463566559235,0.0001814593197840405,0.0,4.2924971270700556e-05,0.0006020247897484187,0.00025647463566559235,0.0001814593197840405,0.0,4.2924971270700556e-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.00012904231832313714,4.073736075495553e-05,0.00012904231832313714,7.174055106347784e-05,3.0562913703509375e-05,2.1623680317800575e-05,0.0,5.115173238349361e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.174055106347784e-05,3.0562913703509375e-05,2.1623680317800575e-05,0.0,5.115173238349361e-06 +94638,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,7435.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0009159312999549397,0.0,0.0,0.0009159312999549397,0.00026043199904230585,0.0004002845349409374,0.00025524545557799403,0.0,0.0,0.00026043199904230585,0.0004002845349409374,0.00025524545557799403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001091494796801207,3.833988851933826e-05,0.0001091494796801207,3.1035097489211064e-05,4.770101067072589e-05,3.0417028731766248e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1035097489211064e-05,4.770101067072589e-05,3.0417028731766248e-05,0.0,0.0 +94639,50.0,the Greater Atlanta and Macon Area,G1301350050536,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,25194.0,,923.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005859010619579383,0.0007159413732887446,0.0,0.006574871132085059,0.0030330071121174077,0.0004799087475117121,0.0019356454250944175,0.0004105301956389153,0.0007159413732887446,0.0030330071121174077,0.0004799087475117121,0.0019356454250944175,0.0004105301956389153,0.0,0.0,0.0,0.0007159413732887446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.783240170581441e-05,0.0,0.0,0.0006982044399895274,0.00024217461860794186,0.0007460368416953418,0.0003614362850143143,5.718959053986923e-05,0.00023066628784218873,4.892191258145174e-05,0.0,0.0,0.0,4.783240170581441e-05,0.0,0.0,0.0,0.0003441489576459591,5.4454239345990744e-05,0.00021963362787941478,4.658200053236647e-05,8.123636649863556e-05 +94640,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020200,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,8304.0,,2224.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,12264.525384160763,0.0,0.0,0.0009341082518735999,0.0008263876337872095,0.0,0.0017605346340845813,0.0012612611937812947,0.00013205462821525818,0.0003314152685226241,0.0,3.5764795141632406e-05,0.0005189963880032769,0.00013205462821525818,0.00028305723565506477,0.0,0.0,0.0007422648057780177,4.835803286755931e-05,3.5764795141632406e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521495719542631e-05,0.0,0.0,0.00011131768340307925,9.301097900340716e-05,0.00016653264059850555,6.184880124033864e-05,1.5736950472381223e-05,3.373193169035939e-05,0.0,0.0,4.959430393564901e-05,3.231034209213299e-06,2.3896190505640026e-06,0.0,0.0,0.0,0.00011930532522243549,1.2491322530201544e-05,3.134926103310263e-05,0.0,3.38306651859625e-06 +94641,85.0,Rural Climate Zone 3A,G1302770960900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,125863.0,,3717.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010510361537593165,0.0010942379125445927,0.0,0.01160456876053146,0.004233539119949206,0.0028583992409617395,0.004512661089226813,0.0,0.0,0.003139301207404613,0.0028583992409617395,0.004512661089226813,0.0,0.0,0.0010942379125445927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.310961351252406e-05,0.0,0.0,0.0012524983398645743,0.00037971371263645056,0.001325607953377098,0.00037410411968659434,0.00034062960547735614,0.0005377646147006239,0.0,0.0,7.310961351252406e-05,0.0,0.0,0.0,0.0,0.0,0.0004836037636680548,0.0003265193947260829,0.0005154883007044598,0.0,0.0 +94642,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,27169.0,,286.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006223707298882884,0.00022686550326692025,0.0,0.006450572802149803,0.003638945830382048,0.0014448925782257005,0.0011398688902751351,0.0,0.00022686550326692025,0.003638945830382048,0.0014448925782257005,0.0011398688902751351,0.0,0.0,0.0,0.0,0.00022686550326692025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5159262096242054e-05,0.0,0.0,0.000741663705831086,0.00018151456558042104,0.000756822967927328,0.0004336441160020747,0.00017218425170590127,0.00013583533812311003,0.0,0.0,0.0,0.0,1.5159262096242054e-05,0.0,0.0,0.0,0.00042694468661119055,0.00016952415280461605,0.00013373679873802057,0.0,2.661732977350097e-05 +94643,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,28777.0,,2478.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026183758301074065,0.0007292771144523112,0.0,0.0033476529445597173,0.0015064300147290387,0.0007937866668900824,0.001047436262940596,0.0,0.0,0.0007771529002767277,0.0007937866668900824,0.001047436262940596,0.0,0.0,0.0007292771144523112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8726799757224165e-05,0.0,0.0,0.0003120270079258175,0.00014817661013445657,0.00036075380768304166,9.261187465371289e-05,9.459408987553935e-05,0.0001248210433965652,0.0,0.0,4.872679975722416e-05,0.0,0.0,0.0,0.0,0.0,0.00016233772521272982,8.554099463446311e-05,0.0001128750878358487,0.0,0.0 +94644,35.0,Eastern Counties in South Carolina and Georgia,G1302450010400,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,113151.0,,9290.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005211591514364641,0.001579810663249545,0.0,0.006791402177614187,0.0038316020243190905,0.0010318361132013929,0.0013006993137750734,0.0,0.0006272824566800481,0.0035454694517222793,0.0010318361132013929,0.0004960777821716575,0.0,0.0001382081672693116,0.0002861325725968121,0.0008046215316034162,0.0004890742894107365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010555404209276726,0.0,0.0,0.0006210553040621147,0.0002576581593107672,0.000726609346154882,0.000422506752939704,0.00012296191849653945,5.911663202994498e-05,0.0,1.647000059592627e-05,1.9117765384537697e-05,5.376027456411607e-05,3.267718678690593e-05,0.0,0.0,0.0,0.0004099415361960291,0.00011039572446814547,0.000139161288524695,0.0,6.711269393014157e-05 +94645,50.0,the Greater Atlanta and Macon Area,G1302470060405,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,264566.0,,37747.0,,9.729435225087556,Education,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.060957725079882064,0.03338716414927501,0.0,0.09434488922915707,0.0726700539200974,0.013505032234125842,0.001988111752536867,0.0006459818556760865,0.005535709466720886,0.043155184432020745,0.013505032234125842,0.001988111752536867,0.0006459818556760865,0.001663507022775293,0.029514869488076648,0.0,0.0038722024439455925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002230734611042574,0.0,0.0,0.007264220021798988,0.0039799537255223155,0.009494954632841562,0.005142723984280937,0.0016093698611885183,0.00023691962223699385,7.698047004824628e-05,0.00019823707340475586,0.0019720105790682037,0.0,0.0002587178705580672,0.0,0.0,0.0,0.007313579683807954,0.001359158608651572,0.00020008535755981131,6.501219582107137e-05,0.0005571187870011555 +94646,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,4252.0,,391.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.00102101882531175,0.0003102342335961421,0.0,0.0013313357659816315,0.0007417997443678484,0.00024266255435112798,0.00030047479889490385,0.0,4.631596129401216e-05,0.00043156551077170615,0.00024266255435112798,0.00030047479889490385,0.0,4.631596129401216e-05,0.0003102342335961421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0730725005665657e-05,0.0,0.0,0.00012167501621163685,5.728056496707222e-05,0.0001424057412173025,5.142974763809812e-05,2.891814480072439e-05,3.580764146592764e-05,0.0,5.519482306886728e-06,2.0730725005665657e-05,0.0,0.0,0.0,0.0,0.0,7.934628147965375e-05,2.5956292770799876e-05,3.214015393194135e-05,0.0,4.954166309355122e-06 +94647,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950900,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,23993.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,24034.3828889517,0.0,0.0,0.002023063964150898,0.0,0.0,0.002023063964150898,0.0013888024606917642,0.00044369754058667867,0.00019059433647189268,0.0,0.0,0.0013888024606917642,0.00044369754058667867,0.00019059433647189268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002410852828431071,7.284006736589457e-05,0.0002410852828431071,0.00016550135832685086,5.287472317467059e-05,2.2712820914639778e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016550135832685086,5.287472317467059e-05,2.2712820914639778e-05,0.0,0.0 +94648,50.0,the Greater Atlanta and Macon Area,G1301350050511,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,22596.0,,594.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00503107129556207,0.00047126490616657363,0.0,0.005502336201728644,0.0017983826113875004,0.0022161360408447426,0.0013466365746234033,0.0,0.00014118097487299776,0.001327117705220927,0.0022161360408447426,0.0013466365746234033,0.0,0.00014118097487299776,0.00047126490616657363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1487935142267765e-05,0.0,0.0,0.0005995430834456428,0.0001887837139159305,0.0006310310185879104,0.0001581500627481306,0.00026409266679148445,0.0001604760888486266,0.0,1.6824265057401155e-05,3.1487935142267765e-05,0.0,0.0,0.0,0.0,0.0,0.00020624606884583216,0.0002541557861812028,0.0001544379365778072,0.0,1.6191226983068227e-05 +94649,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,91823.0,,6627.0,,9.325022323477118,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.023561625622605966,0.005617697085972927,0.0,0.029179322708578894,0.018714550010714186,0.003173786731595372,0.006799570047483784,0.0,0.0004914159187855488,0.013096852924741258,0.003173786731595372,0.006799570047483784,0.0,0.0004914159187855488,0.005617697085972927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003753437529111552,0.0,0.0,0.002807792683126057,0.001170789950941294,0.003183136436037212,0.0015607262590058677,0.0003782139358935471,0.0008102914176435535,0.0,5.8561070583088416e-05,0.0003753437529111552,0.0,0.0,0.0,0.0,0.0,0.0020415472496772757,0.00034622449213265875,0.0007417567358809688,0.0,5.360795834630825e-05 +94650,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,7743.0,,140.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015663892695487434,0.00011132372125310778,0.0,0.001677712990801851,0.0009926502990191678,0.00019866239112181644,0.00037499387233401986,0.0,0.00011132372125310778,0.0009926502990191678,0.00019866239112181644,0.00037499387233401986,0.0,0.0,0.0,0.0,0.00011132372125310778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.437776475284861e-06,0.0,0.0,0.00018666280537106786,7.26336821820237e-05,0.0001941005818463527,0.00011829172554324709,2.367411471045488e-05,4.4687109116237477e-05,0.0,0.0,0.0,0.0,7.437776475284861e-06,0.0,0.0,0.0,0.00011484324295390316,2.2983958471527694e-05,4.3384374566988574e-05,0.0,1.287943717846639e-05 +94651,50.0,the Greater Atlanta and Macon Area,G1300450910104,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4092.0,,,2383.0,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.000982560036022972,0.0,0.0006115361032284391,0.0015941788463251507,0.0011660870326504953,0.00023472267527215447,0.00015085770250049675,0.0,4.259414297574332e-05,0.0005545509294220563,0.00023472267527215447,0.00015085770250049675,0.0,4.259414297574332e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006115361032284391,0.0,0.0,0.0,0.0,4.932258783712426e-05,0.00011709113187107017,7.714743855678695e-05,0.00016641371970819443,6.608552518480854e-05,2.797177039142232e-05,1.797762832767946e-05,0.0,5.075920278922654e-06,0.0,0.0,0.0,4.932258783712426e-05,0.0,0.0,0.0001217259161694336,2.4502315773377732e-05,1.5747788573164545e-05,0.0,4.446332848234506e-06 +94652,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970302,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,84373.0,,6.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.007219791260747174,1.8106867715644639e-06,0.0,0.007221601947518739,0.0014966707199263688,0.0031188005503977475,0.0026061306771946223,0.0,0.0,0.0014948600331548046,0.0031188005503977475,0.0026061306771946223,0.0,0.0,1.8106867715644639e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2099189673003691e-07,0.0,0.0,0.0008603679674806181,0.0002607754505266813,0.0008604889593773483,0.00017813945610670016,0.00037166117324082405,0.00031056733813309394,0.0,0.0,1.2099189673003691e-07,0.0,0.0,0.0,0.0,0.0,0.00017833558809794063,0.00037162023878086294,0.00031053313249854457,0.0,0.0 +94653,81.0,the Columbus-Albany Area,G1302150010302,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,120120.0,,2886.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00582949460985348,0.0004908118648299017,0.0,0.0063203064746833815,0.002926289770211195,0.0015472222589594878,0.0009437694080279909,0.0,0.0009030250374847094,0.0027813617959636834,0.0015472222589594878,0.0005978855174456006,0.0,0.0009030250374847094,0.00014492797424751157,0.00034588389058239007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.279332379813038e-05,0.0,0.0,0.0006946891860205469,0.00019101535797387914,0.0007274825098186773,0.0003314493093107468,0.0001843793748179576,7.124881850747558e-05,0.0,0.00010761168338436697,9.683282592512017e-06,2.311004120561836e-05,0.0,0.0,0.0,0.0,0.00033682300613382916,0.00017808901145914096,0.00010863013374310847,0.0,0.0001039403584825989 +94654,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,112755.0,,828.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005589195021527506,0.00014088545184373955,0.0,0.005730080473371245,0.003057458983996745,0.0010166234631029877,0.0008470857472044427,0.0,0.0008089122790670691,0.0029165735321530057,0.0010166234631029877,0.0008470857472044427,0.0,0.0008089122790670691,0.00014088545184373955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.413271588739877e-06,0.0,0.0,0.0006660541747476047,0.00021779591982059088,0.0006754674463363447,0.00034756274733064733,0.00012114916354467382,0.00010094566321654636,0.0,9.639660065573708e-05,9.413271588739877e-06,0.0,0.0,0.0,0.0,0.0,0.00036041623181311884,0.00011984056030259805,9.985528984298238e-05,0.0,9.535536437764539e-05 +94655,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,253505.0,,14435.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.02258702851180219,0.004249098750342141,0.0,0.026836127262144332,0.010824193451593474,0.005356932158476616,0.010655063031286835,0.0,0.0,0.006575094701251333,0.005356932158476616,0.010655063031286835,0.0,0.0,0.004249098750342141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002838999921938054,0.0,0.0,0.0026916535222702674,0.0010692958465687151,0.002975553514464073,0.0007835416156063298,0.0006383754864165608,0.0012697437346922003,0.0,0.0,0.0002838999921938054,0.0,0.0,0.0,0.0,0.0,0.0012001719380561023,0.00059396939637359,0.0011814189856785024,0.0,0.0 +94656,81.0,the Columbus-Albany Area,G1302150001000,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,18556.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004455595476483969,0.0,0.0,0.004455595476483969,0.0026974085029337724,0.0007033409550790703,0.0009807404804007076,0.0,7.402283099668014e-05,0.0026974085029337724,0.0007033409550790703,0.0009807404804007076,0.0,7.402283099668014e-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.0005309638590169755,0.0001355236301010487,0.0005309638590169755,0.00032144444791319497,8.381564926270344e-05,0.00011687276210690706,0.0,8.821143707681042e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00032144444791319497,8.381564926270344e-05,0.00011687276210690706,0.0,8.821143707681042e-06 +94657,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000201,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Propane,12371.0,,,5862.0,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,24034.3828889517,0.0,0.0,0.0010908678238068566,0.0,0.0005524654001732679,0.001643333223980124,0.0010982486084702304,0.00044327231019455015,0.00010178193171590634,0.0,0.0,0.0005457832082969626,0.00044327231019455015,0.00010178193171590634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005524654001732679,0.0,0.0,0.0,0.0,4.455585084966802e-05,0.00012999521454870328,8.176055295720622e-05,0.0001745510653983713,6.503923180358205e-05,5.282333735552767e-05,1.2129025865312674e-05,0.0,0.0,0.0,0.0,0.0,4.455585084966802e-05,0.0,0.0,0.0001166534345459543,4.708336256882729e-05,1.0811042069901343e-05,0.0,0.0 +94658,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,37723.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.003361094992118111,0.0,0.0,0.003361094992118111,0.0013915281287504395,0.0009356340271980648,0.0010339942153822022,0.0,0.0,0.0013915281287504395,0.0009356340271980648,0.0010339942153822022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040053564084009154,0.00014786681109372582,0.00040053564084009154,0.00016582590260111422,0.00011149782304706829,0.0001232192296422024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016582590260111422,0.00011149782304706829,0.0001232192296422024,0.0,0.0 +94659,50.0,the Greater Atlanta and Macon Area,G1300970080404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,58955.0,,3784.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0052528023243085115,0.001113817881362527,0.0,0.006366620205671037,0.0022853936017773304,0.001636523255825001,0.0024446726584624085,0.0,0.0,0.0011715757204148038,0.001636523255825001,0.0024446726584624085,0.0,0.0,0.001113817881362527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.44192829374023e-05,0.0,0.0,0.000625966843391992,0.0002503757653891823,0.0007003861263293943,0.00013961453529460498,0.0001950214825038588,0.00029132716836928994,0.0,0.0,7.44192829374023e-05,0.0,0.0,0.0,0.0,0.0,0.00025141408159717584,0.00018003244213849446,0.00026893622645791264,0.0,0.0 +94660,85.0,Rural Climate Zone 3A,G1302610950200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,136891.0,,3184.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006784061807986284,0.0005414143163227324,0.0,0.007325476124309016,0.003927434627794476,0.0016317783525717196,0.0011542642588068571,0.0,0.0006119988851359626,0.0035772422593870136,0.0016317783525717196,0.0009630423108915879,0.0,0.0006119988851359626,0.0003501923684074629,0.00019122194791526946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.617379062244795e-05,0.0,0.0,0.0008084440915080944,0.0002780044739315656,0.0008446178821305422,0.00042629334023608063,0.00019445600661161988,0.00011476397004462251,0.0,7.293077461577134e-05,2.339758116924186e-05,1.2776209453206089e-05,0.0,0.0,0.0,0.0,0.0004528281112713095,0.00018814192454768175,0.00013308516977582634,0.0,7.056267653572448e-05 +94661,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,13873.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,56663.68529324113,0.0,0.0,0.0011884243142722426,0.0,0.0,0.0011884243142722426,0.0003738300943123176,0.0003320615401411441,0.00048253267981878084,0.0,0.0,0.0003738300943123176,0.0003320615401411441,0.00048253267981878084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000141622917215928,4.514746039991306e-05,0.000141622917215928,4.454882642824138e-05,3.9571324353794573e-05,5.750276643389206e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.454882642824138e-05,3.9571324353794573e-05,5.750276643389206e-05,0.0,0.0 +94662,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,11864.0,,1428.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010174218279814426,0.00042023277903444414,0.0,0.001437654607015887,0.0005764121854834536,0.00040384452927147093,0.0004573978922609623,0.0,0.0,0.00015617940644900948,0.00040384452927147093,0.0004573978922609623,0.0,0.0,0.00042023277903444414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8077692348437386e-05,0.0,0.0,0.00012124294058735605,6.863304522676125e-05,0.00014932063293579344,1.8611405786952673e-05,4.8124874975537474e-05,5.450665982486591e-05,0.0,0.0,2.8077692348437386e-05,0.0,0.0,0.0,0.0,0.0,5.9868505236419504e-05,4.194492920913877e-05,4.7507198490235144e-05,0.0,0.0 +94663,50.0,the Greater Atlanta and Macon Area,G1301350050610,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,31935.0,,2040.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,32736.412774265485,0.0,0.0,0.0016438527286987757,0.00034687679082191303,0.0,0.0019907295195206883,0.0009808081330344811,0.0007418737825378494,0.00021898769389907218,0.0,4.9059910049286105e-05,0.0006829912522618541,0.0007418737825378494,0.00021898769389907218,0.0,0.0,0.00029781688077262693,0.0,4.9059910049286105e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.317668566870094e-05,0.0,0.0,0.00019589479055726254,7.963399444088697e-05,0.00021907147622596347,8.139076328339096e-05,8.840768197356364e-05,2.609634530030793e-05,0.0,0.0,1.989873181236811e-05,0.0,3.277953856332831e-06,0.0,0.0,0.0,0.00010793384208721078,8.164011389806342e-05,2.4098681868815577e-05,0.0,5.398838371873751e-06 +94664,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,38634.0,,1029.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0092765908047482,0.000816566939028182,0.0,0.010093157743776381,0.004858627046815615,0.0015017950449583443,0.003589735121507161,0.0,0.00014300053049526255,0.004042060107787433,0.0015017950449583443,0.003589735121507161,0.0,0.00014300053049526255,0.000816566939028182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.455556469525617e-05,0.0,0.0,0.0011054751101186612,0.0004000345150775817,0.0011600306748139172,0.00048168523726145406,0.00017896629027241536,0.0004277824593398857,0.0,1.7041123244906165e-05,5.455556469525617e-05,0.0,0.0,0.0,0.0,0.0,0.0005584135862002177,0.00017260488378965962,0.00041257681303682114,0.0,1.643539178721894e-05 +94665,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,131741.0,,27650.0,,7.614023970037612,Education,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,571051.7977528209,0.0,0.0,0.02760200985269585,0.019138694428732252,0.0,0.04674077644845084,0.04048187490088262,0.002842153856284926,0.0015251778584344925,0.0005657172912022328,0.0013258525416465646,0.021939352246945834,0.002842153856284926,0.0015251778584344925,0.0005657172912022328,0.0007296085998283675,0.018542522653936785,0.0,0.000596243941818197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012787380868735613,0.0,0.0,0.0032892824161070196,0.002170380489322783,0.004568020502980581,0.002614473581879717,0.00033869441947306946,0.00018175273242627146,6.741552330318643e-05,8.694615902477545e-05,0.0012389052990316965,0.0,3.983760962952248e-05,0.0,0.0,0.0,0.0039563321065124455,0.0002777663974507032,0.0001490570815763949,5.528808850560045e-05,0.0001295768289354371 +94666,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,77897.0,,4580.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006990210548203642,0.0013341907289026863,0.0,0.00832437090350689,0.005878962039174054,0.001972795657081418,0.00047261320725141843,0.0,0.0,0.004544771310271367,0.001972795657081418,0.00047261320725141843,0.0,0.0,0.0013341907289026863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.914208213505942e-05,0.0,0.0,0.0008330092693034476,0.00034302730665815474,0.0009221513514385072,0.000541591215631311,0.00023509407298364138,5.632036112801129e-05,0.0,0.0,8.914208213505942e-05,0.0,0.0,0.0,0.0,0.0,0.0006512555546024691,0.000218540980739247,5.235481609679119e-05,0.0,0.0 +94667,50.0,the Greater Atlanta and Macon Area,G1300670031505,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,60577.0,,4352.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005715430579801198,0.0012677332933328854,0.0,0.006983163873134084,0.004314569800132647,0.0019224666028130636,0.0007460970965889358,0.0,0.0,0.003046836506799761,0.0019224666028130636,0.0007460970965889358,0.0,0.0,0.0012677332933328854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.470300156183698e-05,0.0,0.0,0.0006810953015414284,0.0002626588391106744,0.0007657983031032654,0.0003630848105617963,0.00022909612010226424,8.891075132227414e-05,0.0,0.0,8.470300156183698e-05,0.0,0.0,0.0,0.0,0.0,0.0004731508942921715,0.00021082444704912846,8.181963088625765e-05,0.0,0.0 +94668,35.0,Eastern Counties in South Carolina and Georgia,G1300510010603,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,307113.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.026038258877616648,0.0,0.0,0.02603825887761665,0.005437308237370301,0.006806494332736012,0.013794456307510338,0.0,0.0,0.005437308237370301,0.006806494332736012,0.013794456307510338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003102927867583226,0.0009801932700515875,0.003102927867583226,0.0006479532803508418,0.0008111164822832825,0.001643858104949102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006479532803508417,0.0008111164822832824,0.0016438581049491017,0.0,0.0 +94669,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,3399.0,,578.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00028467678801749103,0.0001700511084955711,0.0,0.0004547278965130621,0.00021850999683964377,0.00014384218471733294,9.240640456238307e-05,0.0,0.0,4.8458888344072696e-05,0.00014384218471733294,9.240640456238307e-05,0.0,0.0,0.0001700511084955711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1361494490168307e-05,0.0,0.0,3.392587474229269e-05,2.380689049465289e-05,4.528736923246101e-05,5.775006060595101e-06,1.7142149085503e-05,1.1012376978120233e-05,0.0,0.0,1.1361494490168309e-05,0.0,0.0,0.0,0.0,0.0,2.1761899772904252e-05,1.4325565201629528e-05,9.202960704524538e-06,0.0,0.0 +94670,50.0,the Greater Atlanta and Macon Area,G1300670030312,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5868.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001391132980295151,0.0,0.0,0.001391132980295151,0.0008262436666556811,0.0003208207390347735,0.0001905570978953643,0.0,5.351147670933191e-05,0.0008262436666556811,0.0003208207390347735,0.0001905570978953643,0.0,5.351147670933191e-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.0001657776915695436,5.763226543107739e-05,0.0001657776915695436,9.846130432697624e-05,3.823137131975384e-05,2.2708192709644974e-05,0.0,6.376823213168532e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.846130432697624e-05,3.823137131975384e-05,2.2708192709644974e-05,0.0,6.376823213168532e-06 +94671,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,274756.0,,2464.0,,1.8706521585294562,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,140298.9118897092,0.0,0.0,0.013037436168308969,0.0004189507099944276,0.0,0.013456386878303393,0.00408312493142396,0.0038065844843553965,0.003936867180069944,0.0,0.0016298102824540937,0.00408312493142396,0.0038065844843553965,0.0035179164700755165,0.0,0.0016298102824540937,0.0,0.0004189507099944276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7991982605482105e-05,0.0,0.0,0.001553646705409498,0.0004185896977101201,0.0015816386880149803,0.0004865783053958405,0.00045362350132593335,0.0004192234779200117,0.0,0.00019422142076771224,0.0,2.7991982605482105e-05,0.0,0.0,0.0,0.0,0.000479922910803891,0.0004474188609545346,0.0004627320467141724,0.0,0.0001915648695423825 +94672,85.0,Rural Climate Zone 3A,G1302330010400,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,59934.0,,13725.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,32736.412774265485,0.0,0.0,0.0030851183478120283,0.0023340956987814307,0.0,0.005419214046593459,0.0030278138197024173,0.0005234357298427989,0.001274688873571856,0.0,0.0005932933538378069,0.002043956064503687,0.0005234357298427989,0.0004185251813203465,0.0,9.92191025066155e-05,0.0009838577551987298,0.0008561636922515097,0.0004940742513311914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015595037252843212,0.0,0.0,0.00036764760340497266,0.0002535423070196278,0.0005235979759334048,0.0002435743021374768,6.237682640269423e-05,4.9874838670672634e-05,0.0,1.1823749087103751e-05,6.573551526543327e-05,5.72037585355423e-05,3.301109872745655e-05,0.0,0.0,0.0,0.0002925437478329425,5.057373381462862e-05,0.00012315891352669518,0.0,5.7323293845440784e-05 +94673,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,10494.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002519836415615479,0.0,0.0,0.0025198364156154792,0.001202312730948312,0.0005012875739339423,0.0007408899665567159,0.0,7.534614417650906e-05,0.001202312730948312,0.0005012875739339423,0.0007408899665567159,0.0,7.534614417650906e-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.00030028253830636066,8.68456755376583e-05,0.00030028253830636066,0.00014327657003838795,5.9737173488523726e-05,8.828998516914626e-05,0.0,8.978809610302774e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014327657003838793,5.973717348852371e-05,8.828998516914625e-05,0.0,8.978809610302772e-06 +94674,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,43833.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003666822418523151,0.0,0.0,0.003666822418523151,0.002495039325814123,0.0009015491785113496,0.0002702035405982403,0.0,0.0,0.002495039325814123,0.0009015491785113496,0.0002702035405982403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004369671125571351,0.00011343509482808205,0.0004369671125571351,0.0002973283146765006,0.00010743562038137308,3.2199557944636315e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002973283146765006,0.00010743562038137308,3.2199557944636315e-05,0.0,0.0 +94675,50.0,the Greater Atlanta and Macon Area,G1300890023314,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,196478.0,,,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.04116551310723021,0.0,0.0,0.04116551310723021,0.0317705935868092,0.0055551287418781825,0.001548559973799912,0.0007462070150569062,0.001545095956708739,0.0317705935868092,0.0055551287418781825,0.001548559973799912,0.0007462070150569062,0.001545095956708739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004905613446431303,0.0012728973502980753,0.004905613446431303,0.003786039316322319,0.000661993795190379,0.0001845388544117017,8.892402621945177e-05,0.00018412605428998668,0.0,0.0,0.0,0.0,0.0,0.0,0.003786039316322319,0.000661993795190379,0.0001845388544117017,8.892402621945177e-05,0.00018412605428998668 +94676,50.0,the Greater Atlanta and Macon Area,G1301210010001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12949.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003109207023081784,0.0,0.0,0.0031092070230817844,0.0014210729409887802,0.0007922510593488258,0.000807634575064337,0.0,8.833115475358033e-05,0.0014210729409887802,0.0007922510593488258,0.000807634575064337,0.0,8.833115475358033e-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.00037052301684414326,0.0001037131163382052,0.00037052301684414326,0.00016934872118256242,9.441225702524533e-05,9.62455047344734e-05,0.0,1.0526390072341791e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0001693487211825624,9.441225702524532e-05,9.624550473447338e-05,0.0,1.052639007234179e-05 +94677,50.0,the Greater Atlanta and Macon Area,G1300890022100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,129081.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.010241339884821721,0.0,0.0,0.010241339884821721,0.005671267366218707,0.0037237729174689352,0.0008463299747335168,0.0,0.0,0.005671267366218707,0.0037237729174689352,0.0008463299747335168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001220442506438147,0.0003181093974816161,0.001220442506438147,0.0006758349822338031,0.00044375548550416947,0.00010085565826873123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006758349822338031,0.00044375548550416947,0.00010085565826873123,0.0,0.0 +94678,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,19884.0,,6337.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002042608557035763,0.0010776513671108092,0.0,0.003120259924146573,0.0012652563212963881,0.0005268399592354491,0.0008523339341847782,0.0,0.00047582970942995704,0.0007479375661435075,0.0005268399592354491,0.0006672644216822672,0.0,0.0001005666099745395,0.0005173187551528807,0.00018506951250251113,0.00037526309945541756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.200234766755511e-05,0.0,0.0,0.00024341458581471064,0.00013345056299283547,0.0003154169334822658,8.913059345168358e-05,6.278272458333316e-05,7.951689631046509e-05,0.0,1.1984371469228837e-05,3.45642069413665e-05,1.2365260035438306e-05,2.5072880690750314e-05,0.0,0.0,0.0,0.00012790064886710134,5.325653901202408e-05,8.615966693767317e-05,0.0,4.8100078665467115e-05 +94679,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,NaturalGas,103427.0,,19846.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004914271083711776,0.0033749565659456303,0.0,0.008289227649657406,0.004198975112942586,0.0011044596735779292,0.0009855953306178952,0.0,0.0020001798021575764,0.002912406897219294,0.0011044596735779292,0.0006006159931042887,0.0,0.0002967885198102639,0.0012865682157232915,0.00038497933751360645,0.0017033912823473127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022549465812501184,0.0,0.0,0.0005856244650192454,0.000371782372848517,0.0008111191231442573,0.00034706606576008785,0.00013161638714197157,7.157428103824385e-05,0.0,3.536773107894211e-05,8.59608869892946e-05,2.5722044832746072e-05,0.00011381054166497402,0.0,0.0,0.0,0.0004108789329552692,0.00010807380371773816,9.644266681213685e-05,0.0,0.00019572198470432412 +94680,50.0,the Greater Atlanta and Macon Area,G1301210011412,ComStock 90.1-2007,gen3_t5_cfl,100001_200000,Electricity,142788.0,,25025.0,,9.325022323477118,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,1398753.3485215676,0.0,0.0,0.03407447930245257,0.02121414238466636,0.0,0.055288621687118934,0.034774128297615586,0.007304862279083959,0.012281862603316521,0.0,0.0009277685071028606,0.013559985912949222,0.007304862279083959,0.012281862603316521,0.0,0.0009277685071028606,0.02121414238466636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014174060237439558,0.0,0.0,0.0040605901736487015,0.0025895299362694935,0.005477996197392657,0.0016159174455520815,0.0008705063906338374,0.001463605948559306,0.0,0.00011056038890347606,0.0014174060237439558,0.0,0.0,0.0,0.0,0.0,0.0034454203553850437,0.0007237656965614293,0.0012168868491352132,0.0,9.192329631096957e-05 +94681,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,4598.0,,503.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,9713.774621698478,0.0,0.0,0.00026426819982951867,0.0001479239023549274,0.0,0.00041219210218444604,0.00018840349306159735,0.00013353047700130483,9.025813212154388e-05,0.0,0.0,4.047959070666997e-05,0.00013353047700130483,9.025813212154388e-05,0.0,0.0,0.0001479239023549274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.882601928066172e-06,0.0,0.0,3.14940413143685e-05,2.193191239619014e-05,4.1376643242434664e-05,4.824136626832197e-06,1.5913433255001433e-05,1.0756471432534867e-05,0.0,0.0,9.882601928066172e-06,0.0,0.0,0.0,0.0,0.0,1.8912308306552483e-05,1.3404048451182584e-05,9.060286484699602e-06,0.0,0.0 +94682,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,61277.0,,5077.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005076275708884125,0.0014943689994540415,0.0,0.006570644708338166,0.0024464219660213773,0.001652635299131295,0.002471587443185494,0.0,0.0,0.0009520529665673356,0.001652635299131295,0.002471587443185494,0.0,0.0,0.0014943689994540415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.984461464997502e-05,0.0,0.0,0.0006049314934102008,0.00028755948607732016,0.0007047761080601757,0.00011345459858755218,0.00019694185203854316,0.00029453504278410537,0.0,0.0,9.984461464997502e-05,0.0,0.0,0.0,0.0,0.0,0.0002624064804017604,0.0001772638646382086,0.00026510576302020666,0.0,0.0 +94683,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,4917.0,,254.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.0002072856553618373,4.3155699696408515e-05,0.0,0.00025044135505824584,0.00011244595212597485,5.6737156544168974e-05,1.6134628892248053e-05,0.0,6.514134785727401e-05,6.929025242956635e-05,5.6737156544168974e-05,1.6134628892248053e-05,0.0,6.514134785727401e-05,4.3155699696408515e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8839319884658965e-06,0.0,0.0,2.4701024025844193e-05,9.671462805371154e-06,2.7584956014310087e-05,8.256915738003517e-06,6.761036428252624e-06,1.92266973428434e-06,0.0,7.762514949187544e-06,2.8839319884658965e-06,0.0,0.0,0.0,0.0,0.0,1.2385401135770231e-05,6.249335167843702e-06,1.777154688355553e-06,0.0,7.17501793958055e-06 +94684,50.0,the Greater Atlanta and Macon Area,G1301210011419,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4627.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010727934534725569,0.0,0.0,0.0010727934534725569,0.0005835811123045531,0.0002538280093059345,0.00019452703743485107,0.0,4.0774587353478564e-05,0.0005835811123045531,0.0002538280093059345,0.00019452703743485107,0.0,4.0774587353478564e-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.00012784163113773288,3.839733999130554e-05,0.00012784163113773288,6.954363960433604e-05,3.024793508300841e-05,2.3181213201445353e-05,0.0,4.858987290949217e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.954363960433604e-05,3.024793508300841e-05,2.3181213201445353e-05,0.0,4.858987290949217e-06 +94685,50.0,the Greater Atlanta and Macon Area,G1300970080508,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,205491.0,,16306.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011876168416741188,0.002773010795734838,0.0,0.01464917921247603,0.008309209766977806,0.003135915833280479,0.0016516186270007587,0.0,0.0015524527155784033,0.006959539194960546,0.003135915833280479,0.0014662654287155266,0.0,0.0003144479597846365,0.0013496705720172592,0.000185353198285232,0.0012380047557937668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018527611651691534,0.0,0.0,0.0014152598265256603,0.0005454133863445391,0.0016005359430425758,0.0008293547117329536,0.0003737009734512862,0.0001747319912842671,0.0,3.747215005715346e-05,9.017697390328984e-05,1.2384200167953971e-05,8.271612708314693e-05,0.0,0.0,0.0,0.0009078453268564084,0.00034262301885467695,0.00018045208802292608,0.0,0.00016961744648745475 +94686,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,86645.0,,19787.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004572341063726056,0.0033650275635504013,0.0,0.007937368627276458,0.003011023167437627,0.0007396042962760826,0.003308981891101614,0.0,0.000877759272461134,0.002663490353243172,0.0007396042962760826,0.0010280240854960816,0.0,0.00014122232871072057,0.00034753281419445497,0.0022809578056055325,0.0007365369437504134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000224831446592836,0.0,0.0,0.000544876229456979,0.00038483543745682563,0.000769707676049815,0.0003174025210812942,8.813708221422367e-05,0.0001225074594587645,0.0,1.6829166702696732e-05,2.322010856617706e-05,0.00015240025032972704,4.9211087696931856e-05,0.0,0.0,0.0,0.0002919868981234159,7.172138914234334e-05,0.00032088074538182024,0.0,8.511864340223544e-05 +94687,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,38603.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003439506936208742,0.0,0.0,0.0034395069362087413,0.0009063254531837586,0.0013781167707983437,0.0011550647122266396,0.0,0.0,0.0009063254531837586,0.0013781167707983437,0.0011550647122266396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004098790141967268,0.00012581180010695867,0.0004098790141967268,0.00010800495250689486,0.00016422735989171455,0.00013764670179811734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010800495250689488,0.0001642273598917146,0.00013764670179811737,0.0,0.0 +94688,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000300,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,108548.0,,1618.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.011729961592708674,0.0006013367885189528,0.0,0.012331298381227627,0.006861415887865332,0.001110684819002981,0.004164293102785738,0.0,0.00019490457157357645,0.006861415887865332,0.001110684819002981,0.003562956314266785,0.0,0.00019490457157357645,0.0,0.0006013367885189528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017829599363309e-05,0.0,0.0,0.0013978351704668373,0.0004929043071257262,0.0014380134664604704,0.000817660686393034,0.00013235800399133662,0.00042459010692880953,0.0,2.3226373153656972e-05,0.0,4.017829599363309e-05,0.0,0.0,0.0,0.0,0.0008001435161731846,0.00012952242962111274,0.00048561873818661,0.0,2.272878247956312e-05 +94689,50.0,the Greater Atlanta and Macon Area,G1300210013407,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,70633.0,,8073.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003635823373518867,0.0013728796151161085,0.0,0.005008702988634976,0.001707735220895226,0.0005566446967825578,0.0020483531941358603,0.0,0.0006959521464599127,0.0014750951487027132,0.0005566446967825578,0.0014908219792822998,0.0,0.00011326154875129732,0.0002326400721925128,0.0005575312148535603,0.0005826905977086153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.172743128550245e-05,0.0,0.0,0.0004332745096113459,0.00020297157376816485,0.0005250019408968484,0.00017578442666913197,6.633434390207941e-05,0.0001776585646860501,0.0,1.3497174354084513e-05,1.5543588819685623e-05,3.72508307625192e-05,3.893182706883229e-05,0.0,0.0,0.0,0.00017900129185983993,5.834635171298601e-05,0.00021470416692778618,0.0,7.294827193623592e-05 +94690,85.0,Rural Climate Zone 3A,G1301470960500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,85199.0,,8020.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.017178582617572206,0.005516771890491818,0.0,0.022695354508064026,0.005869634147888624,0.001067264888683308,0.010877839723908746,0.0003720832096289902,0.004508532537954357,0.005869634147888624,0.001067264888683308,0.005361067833416927,0.0003720832096289902,0.004508532537954357,0.0,0.005516771890491818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003685999995550005,0.0,0.0,0.0020471391390559,0.0009167892266345909,0.0024157391386109,0.0006994731791079516,0.0001271839344375732,0.0006388682950882735,4.434045103569182e-05,0.0005372732793864097,0.0,0.0003685999995550005,0.0,0.0,0.0,0.0,0.0006247756533321999,0.0001136018193477165,0.0011578591184925417,3.960528450883364e-05,0.00047989726292960833 +94691,50.0,the Greater Atlanta and Macon Area,G1300210013606,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10237.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0024580542315322165,0.0,0.0,0.002458054231532217,0.0011056281617470617,0.0005882127084339544,0.0006881228535110379,0.0,7.609050784016282e-05,0.0011056281617470617,0.0005882127084339544,0.0006881228535110379,0.0,7.609050784016282e-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.00029292028428341317,7.738109526135113e-05,0.00029292028428341317,0.00013175499193474657,7.009586345301597e-05,8.200191000127854e-05,0.0,9.067518894372143e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013175499193474654,7.009586345301595e-05,8.200191000127853e-05,0.0,9.067518894372142e-06 +94692,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,162161.0,,5036.0,,9.325022323477118,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.04161020100237607,0.004268866449896262,0.0,0.04587915583643038,0.02555822375306739,0.004657579977021953,0.014990306742752554,0.0,0.0006729569794304258,0.021962314282601553,0.004657579977021953,0.014990306742752554,0.0,0.0,0.0035959094704658364,0.0,0.0006729569794304258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028522180014988266,0.0,0.0,0.004958611948013231,0.0018247542185750446,0.005243833748163114,0.0026172090349073545,0.0005550353318785806,0.0017863675812272953,0.0,0.0,0.0002402585755211904,0.0,4.496322462869224e-05,0.0,0.0,0.0,0.0029212193166164965,0.0005323457814993828,0.0017133418206998748,0.0,7.691672733431315e-05 +94693,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,5773.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016232090292076474,0.0,0.0,0.0016232090292076476,0.0007202959051956283,0.0005762201827417549,0.00027930178801764124,0.0,4.739115325262316e-05,0.0007202959051956283,0.0005762201827417549,0.00027930178801764124,0.0,4.739115325262316e-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.0001934380127746755,6.255743932290285e-05,0.0001934380127746755,8.583774856081979e-05,6.866822760629595e-05,3.328442724651378e-05,0.0,5.6476093610460145e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.583774856081977e-05,6.866822760629595e-05,3.328442724651377e-05,0.0,5.647609361046014e-06 +94694,50.0,the Greater Atlanta and Macon Area,G1301210004400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,15831.0,,439.0,,8.72605822017302,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0035112461085285572,0.000347865952147527,0.0,0.0038590293536023453,0.001670931010755228,0.000552317838431095,0.001556877956068723,0.0,7.890254834729927e-05,0.001401967606955,0.000552317838431095,0.001556877956068723,0.0,0.0,0.0002689634038002278,0.0,7.890254834729927e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3240626018526508e-05,0.0,0.0,0.0004184261061513004,0.0001448194757005982,0.0004416667321698269,0.0001670688492337752,6.581828654257278e-05,0.0001855291143871503,0.0,0.0,1.796921441090067e-05,0.0,5.271411607625842e-06,0.0,0.0,0.0,0.0001912384103822845,6.321289434900244e-05,0.00017818501396011104,0.0,9.030413478428916e-06 +94695,50.0,the Greater Atlanta and Macon Area,G1301390001403,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,22596.0,,15924.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0047050452585371315,0.010953791173214275,0.0,0.015658764711780394,0.003911678939162441,0.0006174372304733954,0.008856627500746794,0.00037165288980289644,0.001901511591536896,0.002564993043402313,0.0006174372304733954,0.0009188045486809931,0.00037165288980289644,0.00023215754617753295,0.0013466858957601286,0.0079378229520658,0.0016693540453593628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007318672396856283,0.0,0.0,0.0005606869593554786,0.0008987679448857125,0.0012925541990411067,0.0003056629790465274,7.357825149903687e-05,0.00010949134393706135,4.4288825562551874e-05,2.766555931030112e-05,8.997754966003434e-05,0.0005303581637787335,0.00011153631814916967,0.0,0.0,0.0,0.0003228899042279692,5.096641399128339e-05,0.0007310711461690784,3.0678122581348656e-05,0.00015696045233487012 +94696,85.0,Rural Climate Zone 3A,G1300310110200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,155574.0,,4740.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.008008201421149568,0.0008060576908784404,0.0,0.008814259112028012,0.0043462789556203835,0.0021899833211592424,0.0011455586513496117,0.0,0.0011324381838987724,0.003862576965719923,0.0021899833211592424,0.0008232029503716316,0.0,0.0011324381838987724,0.00048370198990046044,0.00032235570097798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3856169614750936e-05,0.0,0.0,0.0009543215507256047,0.0002972302421709735,0.0010081777203403556,0.0004602956701348424,0.00026097598814040423,9.809947013642629e-05,0.0,0.00013495042231393193,3.2318203406361807e-05,2.1537966208389136e-05,0.0,0.0,0.0,0.0,0.0004971287494216218,0.00025049097879330744,0.00013102935765273805,0.0,0.0001295286344726881 +94697,50.0,the Greater Atlanta and Macon Area,G1300570090905,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,19527.0,,2745.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0018179908978633173,0.0008081494026374072,0.0,0.002626140300500725,0.001732397585899024,0.0004048879758855928,0.0004887933595035122,0.0,0.0,0.000924248183261617,0.0004048879758855928,0.0004887933595035122,0.0,0.0,0.0008081494026374072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3995084273090155e-05,0.0,0.0,0.00021664769045357614,0.00012660270994358538,0.0002706427747266663,0.0001101414944073044,4.824999122445103e-05,5.824889033819689e-05,0.0,0.0,5.3995084273090155e-05,0.0,0.0,0.0,0.0,0.0,0.00017853611609710746,4.1726637844233547e-05,5.03736952129999e-05,0.0,0.0 +94698,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,818318.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,2015986.1613818365,0.0,0.0,0.12970209255728443,0.0,0.0,0.12970209255728443,0.07270492349163363,0.0145919644740913,0.041894697113325906,0.0,0.0005105620721249536,0.07270492349163363,0.0145919644740913,0.041894697113325906,0.0,0.0005105620721249536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015456347252180024,0.004714154175298847,0.015456347252180024,0.008664104967570604,0.0017388961546893926,0.004992509942138953,0.0,6.084269362940714e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.008664104967570604,0.0017388961546893926,0.004992509942138953,0.0,6.084269362940714e-05 +94699,81.0,the Columbus-Albany Area,G1302150001800,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,35637.0,,2710.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.003109839185358819,0.0007976535572835932,0.0,0.003907492742642411,0.0019663444547064132,0.0008937120249954028,0.001047436262940596,0.0,0.0,0.0011686908974228199,0.0008937120249954028,0.001047436262940596,0.0,0.0,0.0007976535572835932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3294253015072864e-05,0.0,0.0,0.0003705931955687007,0.00017220875306012988,0.0004238874485837736,0.00013927051159013632,0.00010650183997311938,0.000124820844005445,0.0,0.0,5.3294253015072864e-05,0.0,0.0,0.0,0.0,0.0,0.00021331037287575342,9.695048333928727e-05,0.00011362659236873302,0.0,0.0 +94700,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,38725.0,,,,8.53126424238864,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.009136217296563746,0.0,0.0,0.009136217296563744,0.0033707626029946475,0.0012161461773506571,0.003504506338189993,0.0004185354131626997,0.0006262667648657473,0.0033707626029946475,0.0012161461773506571,0.003504506338189993,0.0004185354131626997,0.0006262667648657473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010887493071916792,0.00032560180557334557,0.0010887493071916792,0.00040168872188475074,0.00014492631524124769,0.0004176267621380103,4.987623721334429e-05,7.463127071432601e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004016887218847508,0.0001449263152412477,0.0004176267621380104,4.98762372133443e-05,7.463127071432602e-05 +94701,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,75599.0,,1004.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006388870170236872,0.0002956636670720686,0.0,0.006684564526915239,0.0030621475371721885,0.0013929705402464317,0.002229415759890321,0.0,0.0,0.0027664838701001197,0.0013929705402464317,0.002229415759890321,0.0,0.0,0.0002956636670720686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.975511239465822e-05,0.0,0.0,0.0007613506448238728,0.00022839656266828153,0.0007811057572185312,0.00032967711383583774,0.00016599789802865237,0.00026567563295938276,0.0,0.0,1.975511239465822e-05,0.0,0.0,0.0,0.0,0.0,0.000357818532696778,0.00016277160677277613,0.0002605120316024047,0.0,0.0 +94702,35.0,Eastern Counties in South Carolina and Georgia,G1300290920303,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,28500.0,,2210.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.002000534409385978,0.00037584820138227926,0.0,0.0023763826107682574,0.000791767019573878,0.00038031625246013267,0.0009333084947901597,0.0,0.00027099084394408696,0.000791767019573878,0.00038031625246013267,0.000772582768517381,0.0,5.586836883458638e-05,0.0,0.00016072572627277862,0.00021512247510950062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.511160015627175e-05,0.0,0.0,0.00023840017045209875,8.127781607595104e-05,0.0002635117706083705,9.435348451851816e-05,4.532161955666013e-05,9.206733102852719e-05,0.0,6.657735348393288e-06,0.0,1.0738591160326604e-05,1.4373008995945142e-05,0.0,0.0,0.0,8.779727990425498e-05,4.217242148751052e-05,0.00010349249858652988,0.0,3.0049570630075076e-05 +94703,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,32684.0,,2911.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027011849451981456,0.0008479094019042798,0.0,0.0035490943471024245,0.002498744904945529,0.0006641794989053192,0.0003861699432515767,0.0,0.0,0.0016508355030412493,0.0006641794989053192,0.0003861699432515767,0.0,0.0,0.0008479094019042798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.665200116927905e-05,0.0,0.0,0.0003218958592259272,0.00012722622226191428,0.0003785478603952063,0.00019672740796100805,7.914920111650868e-05,4.601925014841044e-05,0.0,0.0,5.665200116927905e-05,0.0,0.0,0.0,0.0,0.0,0.0002665171575990384,7.084165807940211e-05,4.118904471676582e-05,0.0,0.0 +94704,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,42319.0,,3599.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0025318601500607,0.0006120343458588027,0.0,0.003143894495919503,0.0012956638911317785,0.0005116273091370437,0.0005985060800953024,0.0,0.0007380972155553781,0.0012956638911317785,0.0005116273091370437,0.0005985060800953024,0.0,0.00012606286969657542,0.0,0.0,0.0006120343458588027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.089235638992791e-05,0.0,0.0,0.00030171747455474,0.00012699603537957055,0.0003426098309446679,0.000154402065649114,6.0969757599907415e-05,7.132295320011348e-05,0.0,1.5022698105605133e-05,0.0,0.0,4.089235638992791e-05,0.0,0.0,0.0,0.00014119659144984714,5.575522528431757e-05,6.522294790329303e-05,0.0,8.043506630721013e-05 +94705,50.0,the Greater Atlanta and Macon Area,G1301170130503,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,8905.0,,1536.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0006988023353986923,0.0004522420384029482,0.0,0.0011510136841953427,0.0006532589596529014,0.00024253995857074508,0.00025524545557799403,0.0,0.0,0.00020101692124995324,0.00024253995857074508,0.00025524545557799403,0.0,0.0,0.0004522420384029482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0215330873655664e-05,0.0,0.0,8.327384210697149e-05,5.654680277950009e-05,0.00011348917298062713,2.395448685993251e-05,2.8902642695274294e-05,3.0416712551764684e-05,0.0,0.0,3.0215330873655664e-05,0.0,0.0,0.0,0.0,0.0,6.441089284270442e-05,2.3914276338245467e-05,2.516702977416014e-05,0.0,0.0 +94706,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,17172.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.0015045272591385813,0.0,0.0,0.0015045272591385813,0.0007024237089418214,0.0003384449782510663,0.0004636892615519913,0.0,0.0,0.0007024237089418214,0.0003384449782510663,0.0004636892615519913,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.378837887199409e-11,0.0,0.0,0.00017929183995449302,6.30997881583671e-05,0.0001792918837428719,8.370658520068611e-05,4.03318866477266e-05,5.5257025331927924e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.370660564431405e-05,4.033189649796816e-05,5.525703882733051e-05,0.0,0.0 +94707,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020700,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,29493.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0025289666363860924,0.0,0.0,0.0025289666363860924,0.001233289631570475,0.001127650252725974,0.00016802675208964308,0.0,0.0,0.001233289631570475,0.001127650252725974,0.00016802675208964308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003013734230023755,8.453520163088899e-05,0.0003013734230023755,0.00014696940342038932,0.00013438050614189174,2.0023513440094414e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014696940342038932,0.00013438050614189174,2.0023513440094414e-05,0.0,0.0 +94708,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,47056.0,,34.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.005971338076556626,9.9434324404557e-06,0.0,0.005981281508997081,0.0023735034614580357,0.0014590759522116832,0.0021486714057210653,0.0,0.0,0.00236356002901758,0.0014590759522116832,0.0021486714057210653,0.0,0.0,9.9434324404557e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.648381169077823e-07,0.0,0.0,0.0007115919858901059,0.00024003468658401848,0.0007122568240070136,0.0002816605513297211,0.00017387505799998612,0.0002560527193436054,0.0,0.0,6.648381169077823e-07,0.0,0.0,0.0,0.0,0.0,0.00028263910245401874,0.00017374818458955262,0.0002558658824152525,0.0,0.0 +94709,50.0,the Greater Atlanta and Macon Area,G1300890023000,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,18072.0,,2107.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0015212617278398,0.0006138504446369643,0.0,0.0021351121724767644,0.0015662754022065482,0.0004375924470996906,0.0001312443231705256,0.0,0.0,0.000952424957569584,0.0004375924470996906,0.0001312443231705256,0.0,0.0,0.0006138504446369643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1013783117160564e-05,0.0,0.0,0.00018128655164058118,9.856960171775244e-05,0.00022230033475774172,0.00011349909952667873,5.2147256653406285e-05,1.564019546049618e-05,0.0,0.0,4.1013783117160564e-05,0.0,0.0,0.0,0.0,0.0,0.0001630750602809939,4.556057931367502e-05,1.3664695163072792e-05,0.0,0.0 +94710,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2004,gen3_t5_cfl,1001_5000,Electricity,4638.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001113568040826035,0.0,0.0,0.001113568040826035,0.0005941676177431845,0.0002885649802764436,0.00018683527957709547,0.0,4.4000163229311556e-05,0.0005941676177431845,0.0002885649802764436,0.00018683527957709547,0.0,4.4000163229311556e-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.00013270648447457305,3.819944356803467e-05,0.00013270648447457305,7.080833217954047e-05,3.4388957540982286e-05,2.226559331759214e-05,0.0,5.243601436458176e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.080833217954047e-05,3.4388957540982286e-05,2.226559331759214e-05,0.0,5.243601436458176e-06 +94711,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13319.0,,1658.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011745167166584253,0.00048294023106025395,0.0,0.0016574569477186794,0.0011818975013217986,0.00032678955635077184,0.00014876989004610844,0.0,0.0,0.0006989572702615449,0.00032678955635077184,0.00014876989004610844,0.0,0.0,0.00048294023106025395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2268048619113804e-05,0.0,0.0,0.00013996448788622617,6.344659229209798e-05,0.00017223253650533996,8.329314942816821e-05,3.894276875967589e-05,1.772856969838206e-05,0.0,0.0,3.2268048619113804e-05,0.0,0.0,0.0,0.0,0.0,0.00012281537980347423,3.395792226833829e-05,1.5459234433527372e-05,0.0,0.0 +94712,50.0,the Greater Atlanta and Macon Area,G1301210001600,ComStock 90.1-2004,gen4_led,100001_200000,NaturalGas,323512.0,,11243.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,280597.8237794184,0.0,0.0,0.015334723636782368,0.0019120244451770747,0.0,0.017246748081959445,0.009992743044534663,0.004993454877813731,0.0019504106776514886,0.0,0.0003101394819595636,0.00839085808131715,0.004993454877813731,0.0019504106776514886,0.0,0.0,0.0016018849632175106,0.0,0.0003101394819595636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012775024817159825,0.0,0.0,0.0018274088449133712,0.0005736830995958115,0.0019551590930849696,0.0009999220486394877,0.0005950601932274089,0.00023242660304647497,0.0,0.0,0.00010702854877696737,0.0,2.0721699394630847e-05,0.0,0.0,0.0,0.001132816594498772,0.0005660776549800346,0.00022110621396790762,0.0,3.515862963825533e-05 +94713,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,46566.0,,3012.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0041102282818450365,0.0008864692779091447,0.0,0.004996697559754181,0.002393359636732649,0.0014482732107948923,0.0011550647122266396,0.0,0.0,0.0015068903588235042,0.0014482732107948923,0.0011550647122266396,0.0,0.0,0.0008864692779091447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.92286859766256e-05,0.0,0.0,0.0004898090180188204,0.0002050094949125403,0.000549037703995446,0.00017957359939775624,0.00017258829207510065,0.00013764712654596345,0.0,0.0,5.92286859766256e-05,0.0,0.0,0.0,0.0,0.0,0.0002629826328435445,0.00015913642739106648,0.00012691864376083504,0.0,0.0 +94714,50.0,the Greater Atlanta and Macon Area,G1301210010510,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,153966.0,,4296.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.03258682947059507,0.0029554365656113,0.0,0.03554226603620637,0.018363468258721115,0.0027946403905943,0.006241143597749489,0.00037782080731023907,0.0077651212618602096,0.018363468258721115,0.0027946403905943,0.003285707032138189,0.00037782080731023907,0.0077651212618602096,0.0,0.0029554365656113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019746425886008748,0.0,0.0,0.003883310339093869,0.0013960701278892648,0.004080774597953956,0.0021883395012411923,0.0003330319671828447,0.0003915514426050317,4.502418526713613e-05,0.0009253546960654571,0.0,0.00019746425886008748,0.0,0.0,0.0,0.0,0.0021083960916894132,0.00032086579692853454,0.0007165750273191501,4.337938249293025e-05,0.0008915500650170004 +94715,46.0,the Tallahassee-Valdosta Area,G1300270960500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,17703.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,56663.68529324113,0.0,0.0,0.001539881685593535,0.0,0.0,0.001539881685593535,0.0004907881839128629,0.0005916956094197096,0.0004573978922609623,0.0,0.0,0.0004907881839128629,0.0005916956094197096,0.0004573978922609623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001835032391203183,5.48819467396399e-05,0.0001835032391203183,5.848580596325196e-05,7.051065151147434e-05,5.450678164559199e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.848580596325196e-05,7.051065151147434e-05,5.450678164559199e-05,0.0,0.0 +94716,50.0,the Greater Atlanta and Macon Area,G1301530021105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5358.0,,34.0,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012866739461624057,2.687979896527491e-05,0.0,0.0013134710380539412,0.0005701825663587853,0.00034836219458996286,0.00036804647813991803,0.0,2.687979896527491e-05,0.0005701825663587853,0.00034836219458996286,0.00036804647813991803,0.0,0.0,0.0,0.0,2.687979896527491e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7942422802187591e-06,0.0,0.0,0.0001533258466129056,5.5259315215033194e-05,0.00015512008889312438,6.79455156231517e-05,4.151240380109007e-05,4.3858071442272284e-05,0.0,0.0,0.0,0.0,1.7942422802187591e-06,0.0,0.0,0.0,6.733819613558336e-05,4.1141352208163206e-05,4.346605349627879e-05,0.0,3.174487053099013e-06 +94717,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10600.0,,830.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0009444112545992075,0.00024444271416120266,0.0,0.0011888539687604106,0.0007736849747650872,0.00018146764203831657,0.0002337013519570067,0.0,0.0,0.0005292422606038845,0.00018146764203831657,0.0002337013519570067,0.0,0.0,0.00024444271416120266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.633247811718325e-05,0.0,0.0,0.00011254310248775004,5.322540655072964e-05,0.0001288755806049333,6.306846269136092e-05,2.1625040295390966e-05,2.7849599500998175e-05,0.0,0.0,1.633247811718325e-05,0.0,0.0,0.0,0.0,0.0,8.38699309992867e-05,1.9671674018198424e-05,2.5333975587448164e-05,0.0,0.0 +94718,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,22099.0,,625.0,,3.20458438519356,Mercantile,Residential Style Central Systems,2013 to 2018,H: Buildings with Residential Style Central Systems,56080.226740887294,0.0,0.0,0.0018990181840471195,0.0001821201022287599,0.0,0.002081168659875317,0.0010901388574203507,0.0006119065342729482,0.0003790928945825805,0.0,0.0,0.0009080187551915906,0.0006119065342729482,0.0003790928945825805,0.0,0.0,0.0001821201022287599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2168728427451656e-05,0.0,0.0,0.0002263040708664908,7.006689889931068e-05,0.00023847279929394244,0.00010820767407558526,7.292028104789232e-05,4.5176115743013205e-05,0.0,0.0,1.2168728427451656e-05,0.0,0.0,0.0,0.0,0.0,0.00012491465490533851,7.01159242629893e-05,4.34387397362439e-05,0.0,0.0 +94719,85.0,Rural Climate Zone 3A,G1301750950500,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7414.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006395161361618647,0.0,0.0,0.0006395161361618646,0.00038234286972242,0.00019527187078530645,6.190139565413821e-05,0.0,0.0,0.00038234286972242,0.00019527187078530645,6.190139565413821e-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,7.621105051784989e-05,2.2682520886754327e-05,7.621105051784989e-05,4.5563747514542606e-05,2.32705221457733e-05,7.3767808575339846e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.556374751454261e-05,2.3270522145773307e-05,7.376780857533986e-06,0.0,0.0 +94720,46.0,the Tallahassee-Valdosta Area,G1301850011600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,19312.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016594919788810085,0.0,0.0,0.001659491978881009,0.0009420068129624351,0.0006020654880551165,0.00011541967786345694,0.0,0.0,0.0009420068129624351,0.0006020654880551165,0.00011541967786345694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019775817906502564,5.2718168744605466e-05,0.00019775817906502564,0.00011225697645366985,7.174688164263375e-05,1.3754320968722042e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011225697645366982,7.174688164263374e-05,1.3754320968722038e-05,0.0,0.0 +94721,85.0,Rural Climate Zone 3A,G1302930010201,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,127304.0,,2300.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005933908708256173,0.00039116723364920485,0.0,0.006325075941905377,0.0032063762895637687,0.0014107339367479216,0.0008248696043451165,0.0,0.00088307838088715,0.0032063762895637687,0.0014107339367479216,0.00043370237069591163,0.0,0.00088307838088715,0.0,0.00039116723364920485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6135975834115996e-05,0.0,0.0,0.0007071323857414921,0.00020239849578316854,0.000733268361575608,0.00038209764030739415,0.0001681144256484875,5.1683469896534355e-05,0.0,0.0001052347369963121,0.0,2.6135975834115996e-05,0.0,0.0,0.0,0.0,0.0003717163730582881,0.0001635468999770835,9.562743417582703e-05,0.0,0.00010237559887714125 +94722,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,369140.0,,24371.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01751098365820249,0.004144542903383022,0.0,0.021655526561585512,0.008621086824356534,0.003114550747769316,0.006851898170779406,0.0,0.0030679908186802573,0.008621086824356534,0.003114550747769316,0.0027073552673963826,0.0,0.0030679908186802573,0.0,0.004144542903383022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002769142707366784,0.0,0.0,0.002086750432720284,0.0007902449992791326,0.002363664703456963,0.001027358428994835,0.0003711550560206542,0.00032263034938762963,0.0,0.0003656065983171654,0.0,0.0002769142707366784,0.0,0.0,0.0,0.0,0.0009409772869857886,0.0003399480335281596,0.0007478732882294251,0.0,0.00033486609471358985 +94723,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,5940.0,,393.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010809814537727478,0.0003119710821446675,0.0,0.0013929525359174155,0.0007703336848079093,0.0004236256316927326,0.00015424869252380835,0.0,4.474452689296532e-05,0.00045836260266324177,0.0004236256316927326,0.00015424869252380835,0.0,4.474452689296532e-05,0.0003119710821446675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0844510754874378e-05,0.0,0.0,0.00012881538801519897,5.1636694999814675e-05,0.00014965989877007332,5.46208783764524e-05,5.04814397409219e-05,1.8381078703010416e-05,0.0,5.331991194814281e-06,2.0844510754874378e-05,0.0,0.0,0.0,0.0,0.0,8.276524742574889e-05,4.551466580574252e-05,1.6572598931610663e-05,0.0,4.807386606971243e-06 +94724,50.0,the Greater Atlanta and Macon Area,G1300670030310,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,25225.0,,2303.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023793651762608965,0.0006778720239036589,0.0,0.003057237200164556,0.0010304342210516685,0.0008986223620030354,0.0011281499275035544,0.0,0.0,0.00035256219714800956,0.0008986223620030354,0.0011281499275035544,0.0,0.0,0.0006778720239036589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.529161418697443e-05,0.0,0.0,0.00028354265546540007,0.00012638507527054283,0.0003288342696523745,4.201390463029171e-05,0.00010708645033770647,0.00013443864329818275,0.0,0.0,4.529161418697443e-05,0.0,0.0,0.0,0.0,0.0,0.00011083277558120143,9.665518530477604e-05,0.00012134300781406258,0.0,0.0 +94725,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,27148.0,,10370.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0015537647623234873,0.0017635149379227116,0.0,0.0033172974306076197,0.0013745462690895934,0.0003482420286512571,0.0013636775575391008,0.0,0.00023083157532766742,0.0009571558309001306,0.0003482420286512571,0.00019478575056070012,0.0,5.3581152211399566e-05,0.000417390438189463,0.001168891806978401,0.00017725042311626785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011782807402615471,0.0,0.0,0.0001851597530123261,0.00017132319875303129,0.0003029878270384808,0.0001140627857840929,4.1499466056338335e-05,2.321231780942584e-05,0.0,6.38518336246904e-06,2.788766366035318e-05,7.809872624240448e-05,1.1842868765666314e-05,0.0,0.0,0.0,0.0001255452053809426,3.180694458416116e-05,0.0001245525035312358,0.0,2.1083173542141135e-05 +94726,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,106389.0,,12284.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.00896501710207864,0.003615818724389044,0.0,0.012580835826467685,0.00578812112695934,0.0023877127491738724,0.004405001950334471,0.0,0.0,0.002172302402570296,0.0023877127491738724,0.004405001950334471,0.0,0.0,0.003615818724389044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002415874686752947,0.0,0.0,0.0010683453578188438,0.0005349540990586097,0.0013099328264941385,0.0002588694657399595,0.00028453953878050285,0.0005249363532983816,0.0,0.0,0.0002415874686752947,0.0,0.0,0.0,0.0,0.0,0.0006026666250565877,0.0002486117260827173,0.0004586544753548333,0.0,0.0 +94727,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,139540.0,,4593.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006907784269975412,0.000781057881276166,0.0,0.007688842151251579,0.004523759873435112,0.001055275650998703,0.0009869428380858193,0.0,0.001122863788731944,0.0040943482502028535,0.001055275650998703,0.0006352965800419119,0.0,0.001122863788731944,0.00042941162323225886,0.0003516462580439072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.218587761008374e-05,0.0,0.0,0.0008231874361942401,0.0003128827988448291,0.0008753733138043237,0.00048791564809288075,0.0001257551804852357,7.570707805985547e-05,0.0,0.00013380952955626823,2.8690860116194913e-05,2.3495017493888833e-05,0.0,0.0,0.0,0.0,0.0005150292584195297,0.00012014294550726096,0.0001123632668892801,0.0,0.00012783784298825285 +94728,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2896.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006953183689263575,0.0,0.0,0.0006953183689263575,0.0004263549651261298,0.00011827111544720959,0.00012538392378879005,0.0,2.530836456422807e-05,0.0004263549651261298,0.00011827111544720959,0.00012538392378879005,0.0,2.530836456422807e-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,8.286200855903161e-05,2.9447406116934587e-05,8.286200855903161e-05,5.080928442034114e-05,1.4094525067136337e-05,1.4942167833411674e-05,0.0,3.0160312381424612e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.080928442034114e-05,1.4094525067136337e-05,1.4942167833411674e-05,0.0,3.0160312381424612e-06 +94729,46.0,the Tallahassee-Valdosta Area,G1301850010402,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5687.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010345827854049967,0.0,0.0,0.0010345827854049967,0.0003664750437388712,0.00023248958428119317,0.00039418191344153916,0.0,4.160165809087163e-05,0.0003664750437388712,0.00023248958428119317,0.00039418191344153916,0.0,4.160165809087163e-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.0001232923605504118,3.842649640157611e-05,0.0001232923605504118,4.3673231241416145e-05,2.7706037693437325e-05,4.6975089166461144e-05,0.0,4.9577150337242875e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.3673231241416145e-05,2.7706037693437325e-05,4.6975089166461144e-05,0.0,4.9577150337242875e-06 +94730,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,23829.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006113293355440908,0.0,0.0,0.006113293355440908,0.003949841720568105,0.0012198466305810452,0.0008111082721613879,0.0,0.0001324140250566312,0.003949841720568105,0.0012198466305810452,0.0008111082721613879,0.0,0.0001324140250566312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007285119729457308,0.0002192750560139612,0.0007285119729457308,0.00047069669609645223,0.0001453672879520609,9.665855264396647e-05,0.0,1.5779580175689845e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00047069669609645223,0.0001453672879520609,9.665855264396647e-05,0.0,1.5779580175689845e-05 +94731,50.0,the Greater Atlanta and Macon Area,G1301210001700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,69665.0,,4593.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0057035241288216,0.0013381696704290321,0.0,0.00704169379925063,0.004431508157967992,0.00215057233459058,0.00045964368029149835,0.0,0.0,0.003093338487538959,0.00215057233459058,0.00045964368029149835,0.0,0.0,0.0013381696704290321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.940848998764277e-05,0.0,0.0,0.0006796784984510715,0.000264389774376527,0.0007690869884387142,0.00036862746802226277,0.00025627975654535207,5.477489344953411e-05,0.0,0.0,8.940848998764277e-05,0.0,0.0,0.0,0.0,0.0,0.0004840050363757503,0.00023488343108669373,5.020183835143406e-05,0.0,0.0 +94732,81.0,the Columbus-Albany Area,G1300950000502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,33502.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003607624273218973,0.0,0.0,0.003607624273218973,0.0023972667092240006,0.000980702778646131,0.00022965478534884155,0.0,0.0,0.0023972667092240006,0.000980702778646131,0.00022965478534884155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004299132315126778,9.764818702549025e-05,0.0004299132315126778,0.00028567738758467363,0.0001168683512446335,2.736749268337072e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028567738758467363,0.0001168683512446335,2.736749268337072e-05,0.0,0.0 +94733,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,13224.0,,1251.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.003175289974999491,0.0009926502990191678,0.0,0.004167940274018659,0.0028947475808757594,0.00044719714770843525,0.0007420478655890662,0.0,8.403038691913633e-05,0.0019020972818565923,0.00044719714770843525,0.0007420478655890662,0.0,8.403038691913633e-05,0.0009926502990191678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.632316416899861e-05,0.0,0.0,0.0003783954511302391,0.00015785340482200584,0.00044471861529923776,0.00022667062370007395,5.329194114037306e-05,8.842894320536842e-05,0.0,1.0013799185984653e-05,6.632316416899861e-05,0.0,0.0,0.0,0.0,0.0,0.0003088691418715188,4.7715870002837214e-05,7.917639831060763e-05,0.0,8.966029946898946e-06 +94734,35.0,Eastern Counties in South Carolina and Georgia,G1300510003601,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,14767.0,,527.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0012190218517510523,0.00015516664944118525,0.0,0.0013741885011922376,0.0004184220922628797,0.00040421280454704334,0.0005515842939886121,0.0,0.0,0.00026325544282169446,0.00040421280454704334,0.0005515842939886121,0.0,0.0,0.00015516664944118525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0367791332331813e-05,0.0,0.0,0.0001452688800005577,5.6357763813603054e-05,0.00015563667133288952,3.137172912677888e-05,4.8169391971182636e-05,6.573141613378373e-05,0.0,0.0,1.0367791332331813e-05,0.0,0.0,0.0,0.0,0.0,4.7389293095844195e-05,4.577998968500542e-05,6.247086436934192e-05,0.0,0.0 +94735,35.0,Eastern Counties in South Carolina and Georgia,G1300290920101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,181341.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,1133273.7058648225,0.0,0.0,0.022592798157786156,0.0,0.0,0.022592798157786156,0.0071676803092536765,0.005774679079400946,0.009650469458737833,0.0,0.0,0.0071676803092536765,0.005774679079400946,0.009650469458737833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026923414891992163,0.0007750823769870835,0.0026923414891992163,0.0008541590529488854,0.0006881577024545674,0.0011500283910187315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008541590529488854,0.0006881577024545674,0.0011500283910187315,0.0,0.0 +94736,35.0,Eastern Counties in South Carolina and Georgia,G1300730030603,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,10600.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0008350917429415485,0.0,0.0,0.0008350917429415485,0.0005636428847663605,0.00021048904410362013,6.092944047213015e-05,0.0,0.0,0.0005636428847663605,0.00021048904410362013,6.092944047213015e-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,9.951479377623067e-05,3.4552427862664864e-05,9.951479377623067e-05,6.716723751020268e-05,2.5083200729951212e-05,7.260736026591937e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.716723751020268e-05,2.5083200729951212e-05,7.260736026591937e-06,0.0,0.0 +94737,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,17052.0,,1396.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.002224258686826566,0.00040664174927262134,0.0,0.0026309004360991874,0.0020265569280862395,0.00044075130144121674,0.00016362258017116907,0.0,0.0,0.0016199151788136178,0.00044075130144121674,0.00016362258017116907,0.0,0.0,0.00040664174927262134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7169601128605806e-05,0.0,0.0,0.00026506190346781676,7.907068618409906e-05,0.00029223150459642264,0.00019304310388705545,5.2523737282827934e-05,1.9498681878753638e-05,0.0,0.0,2.7169601128605806e-05,0.0,0.0,0.0,0.0,0.0,0.00022510307578306953,4.895716090418492e-05,1.817464170566082e-05,0.0,0.0 +94738,50.0,the Greater Atlanta and Macon Area,G1300670030322,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5214.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012204255800972203,0.0,0.0,0.00122042558009722,0.0007579276237470132,0.00023091814988014634,0.00018633903713465962,0.0,4.532347640914047e-05,0.0007579276237470132,0.00023091814988014634,0.00018633903713465962,0.0,4.532347640914047e-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.00014543806306120644,4.838389196062451e-05,0.00014543806306120644,9.0322201808952e-05,2.751850583267067e-05,2.2206014914400793e-05,0.0,5.401196703547108e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.032220180895203e-05,2.7518505832670675e-05,2.22060149144008e-05,0.0,5.401196703547109e-06 +94739,50.0,the Greater Atlanta and Macon Area,G1300670030311,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,Electricity,44869.0,,5804.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004330579655062542,0.0017085517618057088,0.0,0.006039100727261953,0.00263301477231141,0.0013919577832386075,0.002014158861318234,0.0,0.0,0.0009244630105057008,0.0013919577832386075,0.002014158861318234,0.0,0.0,0.0017085517618057088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011415504581487622,0.0,0.0,0.0005160654131119163,0.00026283780174626815,0.0006302204589267926,0.0001101661725274097,0.0001658764705093515,0.0002400227700751552,0.0,0.0,0.00011415504581487622,0.0,0.0,0.0,0.0,0.0,0.0002747726612136608,0.0001452600830119098,0.0002101909173664265,0.0,0.0 +94740,50.0,the Greater Atlanta and Macon Area,G1300890022005,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,18394.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004313918259168536,0.0,0.0,0.004313918259168536,0.0016145247864650203,0.0011723727702546828,0.0014482835682490122,0.0,7.873713419982066e-05,0.0016145247864650203,0.0011723727702546828,0.0014482835682490122,0.0,7.873713419982066e-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.0005140785220688745,0.0001732914098464735,0.0005140785220688745,0.00019239875820676198,0.0001397086418513832,0.0001725882206320685,0.0,9.382901378660796e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019239875820676198,0.0001397086418513832,0.0001725882206320685,0.0,9.382901378660796e-06 +94741,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000500,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,181809.0,,1155.0,,7.614023970037612,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1142103.5955056418,0.0,0.0,0.03809213611010947,0.0007996106118791603,0.0,0.038891746721988626,0.029389226170673053,0.0054794255350315,0.001510888787933403,0.0007667746165357473,0.0017454316118149253,0.029389226170673053,0.0054794255350315,0.001510888787933403,0.0007667746165357473,0.0009458209999357652,0.0,0.0,0.0007996106118791603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3426383633489234e-05,0.0,0.0,0.004539365289805266,0.0011628536351910449,0.004592791673438754,0.0035022565494294724,0.0006529724143034718,0.00018004965909172607,9.137502998899454e-05,0.00011271163699160118,0.0,0.0,5.3426383633489234e-05,0.0,0.0,0.0,0.003470623065874315,0.0006470745619222106,0.00017842339389681407,9.054970195613534e-05,0.00020612094978927895 +94742,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,39508.0,,11377.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,22700.572550927158,0.0,0.0,0.008226280675490588,0.007825939797281446,0.0,0.01605229219274305,0.004997375860396762,0.0003133445533672047,0.008506777482132641,0.0003667042118028193,0.001868233524985652,0.004247615283399564,0.0003133445533672047,0.001430526541877378,0.0003667042118028193,0.001868233524985652,0.0007497605769971979,0.007076250940255264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005228858708377814,0.0,0.0,0.0009803114336995693,0.0008430550548592157,0.0015031973045373506,0.0005061808601644027,3.7340720608835385e-05,0.00017047333789513172,4.3699497476075826e-05,0.00022263411104132586,5.009484130700862e-05,0.0004727958214612594,0.0,0.0,0.0,0.0,0.00046797316127253737,2.9342768145348186e-05,0.0007966067915971373,3.43395682140456e-05,0.00017494844756653117 +94743,85.0,Rural Climate Zone 3A,G1301330950303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,13359.0,,731.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0006876543373153279,0.00012423664247030998,0.0,0.0008118909797856378,0.00047311696413268893,0.00015663001278474646,4.038976331488029e-05,0.0,0.00014175423955332212,0.000437869005629624,0.00015663001278474646,4.038976331488029e-05,0.0,5.2783285947497186e-05,3.524795850306497e-05,0.0,8.897095360582494e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.300399909068885e-06,0.0,0.0,8.194685701588372e-05,3.132923155187483e-05,9.02472569249526e-05,5.2180269721128934e-05,1.866539126645825e-05,4.813194623612395e-06,0.0,6.290114308381957e-06,2.354958615560003e-06,0.0,5.944256706680128e-06,0.0,0.0,0.0,5.259019903005908e-05,1.7410501357800254e-05,4.489599512459699e-06,0.0,1.5756957024633576e-05 +94744,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970200,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,8060.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0006308248574492808,0.0,0.0,0.0006308248574492808,0.0003428335919516378,0.0001772631659755313,0.00011069740991581393,0.0,0.0,0.0003428335919516378,0.0001772631659755313,0.00011069740991581393,0.0,0.0,0.0,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.517352720142793e-05,3.1701809151546995e-05,7.517352720142793e-05,4.085446228981519e-05,2.112392571712224e-05,1.3191482005135027e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.085446228981519e-05,2.112392571712224e-05,1.3191482005135027e-05,0.0,0.0 +94745,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,82500.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006616767143116483,0.0,0.0,0.006616767143116483,0.004812544962914587,0.001316027316438911,0.0004882252373624228,0.0,0.0,0.004812544962914587,0.001316027316438911,0.0004882252373624228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007885089796924694,0.00020847614314356325,0.0007885089796924694,0.0005735028657279606,0.00015682875550671263,5.818097802840885e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005735028657279606,0.00015682875550671263,5.818097802840885e-05,0.0,0.0 +94746,50.0,the Greater Atlanta and Macon Area,G1301390001403,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,3965.0,,,378.0,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009520411258131679,0.0,9.709810456994691e-05,0.0010491392303831146,0.0005754758190781011,0.00020056465381782052,0.0002290158871841423,0.0,4.4082870303050854e-05,0.00047837771450815413,0.00020056465381782052,0.0002290158871841423,0.0,4.4082870303050854e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.709810456994691e-05,0.0,0.0,0.0,0.0,7.831704573365404e-06,0.00011345543116357714,3.427578780564066e-05,0.00012128713573694255,5.700861904700983e-05,2.3901435198651253e-05,2.7291989305181572e-05,0.0,5.25338761273448e-06,0.0,0.0,0.0,7.831704573365404e-06,0.0,0.0,6.652864725720508e-05,2.3186543489324852e-05,2.647568615337753e-05,0.0,5.096258837035111e-06 +94747,85.0,Rural Climate Zone 3A,G1302330010500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,16151.0,,3603.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004112822009214526,0.0027940634981499075,0.0,0.006906885507364435,0.0030732757820855342,0.0007225719575003639,0.0019763992597609547,0.00040907470154368186,0.0007257255280400365,0.0017886405214758336,0.0007225719575003639,0.0011926156894777158,0.00040907470154368186,0.0,0.0012846352606097002,0.0007837835702832394,0.0007257255280400365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000186684007804806,0.0,0.0,0.0004901134131877415,0.00031851729252350356,0.0006767974209925476,0.0002131472524175303,8.61068647198486e-05,0.00014212065216573936,4.874827983636012e-05,0.0,8.58322866236891e-05,5.2368122001851734e-05,4.848900185356642e-05,0.0,0.0,0.0,0.00030114660523857965,7.08039588605243e-05,0.00019366499132373935,4.008473901918e-05,7.11129734526864e-05 +94748,35.0,Eastern Counties in South Carolina and Georgia,G1300510010806,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,85455.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.010586287623573684,0.0,0.0,0.010586287623573682,0.002930212919698364,0.002981955595916291,0.004674119107959026,0.0,0.0,0.002930212919698364,0.002981955595916291,0.004674119107959026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001261546676503721,0.00035366306773933204,0.001261546676503721,0.00034918760019915745,0.000355353671208864,0.0005570054050956992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003491876001991575,0.0003553536712088641,0.0005570054050956993,0.0,0.0 +94749,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,69932.0,,8574.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006166660773048439,0.0024979248177607097,0.0,0.008664585590809149,0.006507695547535516,0.0013606157604135309,0.0007963046564595397,0.0,0.0,0.004009770729774807,0.0013606157604135309,0.0007963046564595397,0.0,0.0,0.0024979248177607097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016689666708423912,0.0,0.0,0.0007348695446660585,0.00038881890603812303,0.0009017662117502977,0.0004778369524205634,0.0001621420605282094,9.489415128288387e-05,0.0,0.0,0.00016689666708423912,0.0,0.0,0.0,0.0,0.0,0.0006772880133298279,0.00014160600147078472,8.287535808017598e-05,0.0,0.0 +94750,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,28388.0,,1811.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002330049933668256,0.0005276197958331868,0.0,0.0028576393559020044,0.0018938546721427017,0.000695768042320581,0.0002680470150381598,0.0,0.0,0.0013662348763095148,0.000695768042320581,0.0002680470150381598,0.0,0.0,0.0005276197958331868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.525167791571743e-05,0.0,0.0,0.00027766620303385924,0.0001036187519532012,0.00031291788094957665,0.00016281078146684422,8.291293148353751e-05,3.194249008347747e-05,0.0,0.0,3.525167791571743e-05,0.0,0.0,0.0,0.0,0.0,0.00020738130919473237,7.618815193937219e-05,2.935174579233245e-05,0.0,0.0 +94751,50.0,the Greater Atlanta and Macon Area,G1300570090601,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,23563.0,,,6798.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0022657186500590976,0.0,0.0006407614537388125,0.0029064801037979103,0.0018298271245279208,0.000747281666967008,0.0003293713123029808,0.0,0.0,0.0011890656707891083,0.000747281666967008,0.0003293713123029808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006407614537388125,0.0,0.0,0.0,0.0,5.1675702983973105e-05,0.00027000131005017896,0.00011667321286113205,0.00032167701303415213,0.00014169865655666472,8.905211114906563e-05,3.9250542344448565e-05,0.0,0.0,0.0,0.0,0.0,5.1675702983973105e-05,0.0,0.0,0.00020251758235601526,8.270599692425872e-05,3.645343375387806e-05,0.0,0.0 +94752,35.0,Eastern Counties in South Carolina and Georgia,G1300510004211,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,56643.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006910449476080107,0.0,0.0,0.006910449476080107,0.0044514332391991564,0.001967055046787684,0.0004919915636927041,0.0,0.0,0.0044514332391991564,0.001967055046787684,0.0004919915636927041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008235046033785141,0.00020170809051809697,0.0008235046033785141,0.0005304684994516472,0.00023441006142012325,5.862966206854568e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005304684994516472,0.00023441006142012325,5.862966206854568e-05,0.0,0.0 +94753,50.0,the Greater Atlanta and Macon Area,G1301430010100,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,NaturalGas,195959.0,,62120.0,,7.614023970037612,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1142103.5955056418,0.0,0.0,0.04105668523694919,0.04299848331761998,0.0,0.08405516855456917,0.0707351568347352,0.005575479842288825,0.0044297561893832695,0.000787197883969123,0.002527505637170021,0.028879005319952324,0.005575479842288825,0.0044297561893832695,0.000787197883969123,0.0013851738343329065,0.04185615151478287,0.0,0.0011423318028371146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028729073386466286,0.0,0.0,0.004892647342898323,0.0038747088617312356,0.007765554681544952,0.0034414563140877296,0.0006644193626037746,0.0005278856469924782,9.38088794336117e-05,0.00016506853977344544,0.0027965834042581023,0.0,7.632393438852653e-05,0.0,0.0,0.0,0.006534966710002926,0.0005150985279749572,0.00040924924077970985,7.272638099809513e-05,0.00023350715453761324 +94754,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,24343.0,,3059.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0058451570223780735,0.002426790957658758,0.0,0.008271947980036831,0.005933405470057914,0.0008051533628521577,0.001395764576424552,0.0,0.00013762457070220753,0.003506614512399156,0.0008051533628521577,0.001395764576424552,0.0,0.00013762457070220753,0.002426790957658758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016214451584905607,0.0,0.0,0.0006965535892668466,0.0003780880625205949,0.0008586981051159025,0.0004178749887189699,9.594822904804878e-05,0.0001663299756974701,0.0,1.64003958023578e-05,0.00016214451584905607,0.0,0.0,0.0,0.0,0.0,0.0006159376299656535,8.358172327454193e-05,0.00014489215839560038,0.0,1.4286593480106601e-05 +94755,50.0,the Greater Atlanta and Macon Area,G1300670030101,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,31919.0,,1271.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00814069185401255,0.0010085300571771145,0.0,0.009149221911189664,0.006869566837713135,0.0012382903080249109,0.0008631310215434122,0.0,0.00017831645098194678,0.006039270524444228,0.0012382903080249109,0.0008631310215434122,0.0,0.0,0.0008302963132689071,0.0,0.00017831645098194678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.738498311843603e-05,0.0,0.0,0.000970112958077839,0.00037830299539240095,0.001037497941196275,0.0007196900089287988,0.0001475650344245683,0.00010285791472447198,0.0,0.0,5.547628715154825e-05,0.0,1.1914222043902584e-05,0.0,0.0,0.0,0.0007789909918264126,0.00014041889656298597,9.787681034807115e-05,0.0,2.0220621225607644e-05 +94756,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,199940.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01700757551077138,0.0,0.0,0.01700757551077138,0.009956769631689424,0.005981928541268033,0.0010688469642144867,0.0,0.0,0.009956769631689424,0.005981928541268033,0.0010688469642144867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020267596844169983,0.0004918526243303854,0.0020267596844169983,0.0011865288655490641,0.0007128547860820612,0.00012737241322312184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011865288655490641,0.0007128547860820612,0.00012737241322312184,0.0,0.0 +94757,50.0,the Greater Atlanta and Macon Area,G1300130180501,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,62643.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005422853432804082,0.0,0.0,0.005422853432804082,0.0014517411363065326,0.001607183992204397,0.00236395899389945,0.0,0.0,0.0014517411363065326,0.001607183992204397,0.00236395899389945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006462322730416743,0.00021553024306167356,0.0006462322730416743,0.00017300153618541802,0.0001915253984545526,0.00028170899563018727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017300153618541802,0.0001915253984545526,0.00028170899563018727,0.0,0.0 +94758,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970202,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,24445.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.0038745830646685284,0.0,0.0,0.0038745830646685284,0.0027779009747576997,0.0002066924727400635,0.0008078804045450238,0.0,8.205461873436753e-05,0.0027779009747576997,0.0002066924727400635,0.0008078804045450238,0.0,8.205461873436753e-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.0004617254616759116,0.0001633900908193818,0.0004617254616759116,0.0003310362918157474,2.4631083088937754e-05,9.627331419706836e-05,0.0,9.778266741329488e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0003310362918157474,2.4631083088937754e-05,9.627331419706836e-05,0.0,9.778266741329488e-06 +94759,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,30752.0,,2583.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027399680502589044,0.0007604270648444794,0.0,0.0035003951151033846,0.001588401953150203,0.0007165716174450622,0.0011954215445081188,0.0,0.0,0.0008279748883057235,0.0007165716174450622,0.0011954215445081188,0.0,0.0,0.0007604270648444794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.080710794960075e-05,0.0,0.0,0.00032651799222745717,0.00015561911412061144,0.00037732510017705797,9.866855860556192e-05,8.539279346459338e-05,0.0001424566401573019,0.0,0.0,5.080710794960075e-05,0.0,0.0,0.0,0.0,0.0,0.00017122179250788182,7.724283929258907e-05,0.00012886046837658698,0.0,0.0 +94760,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,60642.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005191822076594975,0.0,0.0,0.005191822076594976,0.0012812910629290913,0.0016542004690524778,0.0022563305446134064,0.0,0.0,0.0012812910629290913,0.0016542004690524778,0.0022563305446134064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006187002181561237,0.000184530164619324,0.0006187002181561237,0.00015268918088110427,0.00019712813266281197,0.0002688829046122076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015268918088110424,0.00019712813266281194,0.00026888290461220753,0.0,0.0 +94761,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,384010.0,,54325.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.01976701257565143,0.009238493469725611,0.0,0.029005506045377046,0.013308905732011397,0.006055538987597734,0.004250180396723697,0.0,0.005390898659405634,0.010293609547471536,0.006055538987597734,0.0026458131829073792,0.0,0.0007720508576747793,0.0030152961845398597,0.001604367213816318,0.004618847801730855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006172621170960302,0.0,0.0,0.002355596298408503,0.0011378657860694249,0.0029728584155045332,0.0012266693540304628,0.0007216267592010426,0.00031529639170736697,0.0,9.200379346963035e-05,0.00020146446091452784,0.00010719443665192445,0.00030860440416866043,0.0,0.0,0.0,0.0013640683373932249,0.0006206497487591657,0.00043561331217754294,0.0,0.0005525288344107501 +94762,81.0,the Columbus-Albany Area,G1300950000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,13866.0,,3680.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00402144932434709,0.002853738756054481,0.0,0.0068751880804015725,0.002595307693367466,0.0008714366591295235,0.002267012914109244,0.00042589374442193566,0.0007155370693734019,0.0019534347973694933,0.0008714366591295235,0.0007707649842092065,0.00042589374442193566,0.0,0.0006418728959979732,0.0014962479299000374,0.0007155370693734019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001906690095577176,0.0,0.0,0.0004792297704214828,0.0003226094343890394,0.0006698987799792004,0.00023278774242137381,0.00010384773160340863,9.185084695589598e-05,5.075308549273019e-05,0.0,4.288594009603203e-05,9.996994652771186e-05,4.780772032121282e-05,0.0,0.0,0.0,0.0002528794030251386,8.491031051850445e-05,0.00022089129309611126,4.149787561482445e-05,6.971989772462149e-05 +94763,50.0,the Greater Atlanta and Macon Area,G1301210011414,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,12582.0,,900.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0010323986448891845,0.0002622152839461115,0.0,0.0012945835552358584,0.0007160879803444368,0.00039172831194868524,0.00018676726294273595,0.0,0.0,0.0004538726963983255,0.00039172831194868524,0.00018676726294273595,0.0,0.0,0.0002622152839461115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7518678926762795e-05,0.0,0.0,0.0001230271518744574,4.8751228127211445e-05,0.0001405458308012202,5.408634099617584e-05,4.6680823116354136e-05,2.2256368251722225e-05,0.0,0.0,1.7518678926762795e-05,0.0,0.0,0.0,0.0,0.0,7.77417415177506e-05,4.252779268554588e-05,2.0276296597923675e-05,0.0,0.0 +94764,50.0,the Greater Atlanta and Macon Area,G1301210009403,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,9963.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002392219400835728,0.0,0.0,0.0023922194008357276,0.001493358923436935,0.00033893358818368186,0.000492603331191315,0.0,6.724085095005695e-05,0.001493358923436935,0.00033893358818368186,0.000492603331191315,0.0,6.724085095005695e-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.0002850760507249898,8.50454350269677e-05,0.0002850760507249898,0.0001779606268804597,4.039004480262095e-05,5.870256389565894e-05,0.0,8.012959107987025e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017796062688045972,4.0390044802620955e-05,5.8702563895658955e-05,0.0,8.012959107987027e-06 +94765,50.0,the Greater Atlanta and Macon Area,G1301990970800,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,38954.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003434980734014792,0.0,0.0,0.003434980734014791,0.0025095275327459312,0.0007025717285946373,0.00022288147267422286,0.0,0.0,0.0025095275327459312,0.0007025717285946373,0.00022288147267422286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040933983943470886,0.00013134207648594876,0.00040933983943470886,0.00029905541744059663,8.372407906875214e-05,2.6560342925360044e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029905541744059674,8.372407906875216e-05,2.656034292536005e-05,0.0,0.0 +94766,50.0,the Greater Atlanta and Macon Area,G1301170130509,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,19534.0,,1460.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016086465734222119,0.00042544300732458973,0.0,0.0020340895807468016,0.0014921334459789962,0.0003929736295256331,0.00014898250524217268,0.0,0.0,0.0010666904386544063,0.0003929736295256331,0.00014898250524217268,0.0,0.0,0.00042544300732458973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8424704330287596e-05,0.0,0.0,0.00019170017586671138,7.4235260135649e-05,0.00022012488019699895,0.00012711601669617911,4.683012113144353e-05,1.775403803908877e-05,0.0,0.0,2.8424704330287596e-05,0.0,0.0,0.0,0.0,0.0,0.00016147553143331652,4.252677656809528e-05,1.6122572195587213e-05,0.0,0.0 +94767,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,8713.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0022284593948318993,0.0,0.0,0.002228459394831899,0.0014897198121924054,0.00030254247573838656,0.0003938510851465819,0.0,4.226331468078609e-05,0.0014897198121924054,0.00030254247573838656,0.0003938510851465819,0.0,4.226331468078609e-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.00026555968558499737,8.610299838838291e-05,0.00026555968558499737,0.0001775260190304696,3.605319662521973e-05,4.693420512009195e-05,0.0,5.036408823260602e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017752601903046964,3.6053196625219736e-05,4.6934205120091954e-05,0.0,5.0364088232606025e-06 +94768,85.0,Rural Climate Zone 3A,G1302770960300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,6975.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001674735536147236,0.0,0.0,0.001674735536147236,0.0010773423425282187,0.0003849187211827368,0.00016863972335444782,0.0,4.375204200809363e-05,0.0010773423425282187,0.0003849187211827368,0.00016863972335444782,0.0,4.375204200809363e-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.0001995742580007497,4.526789849876453e-05,0.0001995742580007497,0.00012838432933565933,4.586985020176252e-05,2.0096395479457185e-05,0.0,5.213826978240732e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012838432933565933,4.586985020176252e-05,2.0096395479457185e-05,0.0,5.213826978240732e-06 +94769,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,54136.0,,3143.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005271308156906025,0.0009252916298757387,0.0,0.0061965997867817636,0.0017238965649545605,0.0024047147910627995,0.0020679577411581067,0.0,0.0,0.0007986049350788217,0.0024047147910627995,0.0020679577411581067,0.0,0.0,0.0009252916298757387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.182248093853446e-05,0.0,0.0,0.000628170261382016,0.00022800481898794668,0.0006899927423205506,9.516800306053038e-05,0.0002865646010226317,0.00024643400008560906,0.0,0.0,6.182248093853446e-05,0.0,0.0,0.0,0.0,0.0,0.00019195625976479837,0.000267765518232047,0.00023026754702932796,0.0,0.0 +94770,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,69011.0,,3597.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006414004957794691,0.0010587914172707458,0.0,0.0074727963750654365,0.003865049017132688,0.001459014572999088,0.0021487020953273625,0.0,0.0,0.0028062575998619426,0.001459014572999088,0.0021487020953273625,0.0,0.0,0.0010587914172707458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.074226435686127e-05,0.0,0.0,0.0007643451163442386,0.0003011682814745066,0.0008350873807011,0.00033441653160116546,0.00017386807008804692,0.0002560568574313648,0.0,0.0,7.074226435686127e-05,0.0,0.0,0.0,0.0,0.0,0.00043192046163179895,0.00016304534434204667,0.00024011814515395246,0.0,0.0 +94771,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020200,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,230874.0,,7504.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02457592982713741,0.00220885372367086,0.0,0.026784783550808267,0.00581377763782422,0.006925324488320717,0.014045650735057038,0.0,0.0,0.0036049239141533597,0.006925324488320717,0.014045650735057038,0.0,0.0,0.00220885372367086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014758352189110958,0.0,0.0,0.0029286651332903263,0.0010419620900645468,0.003076248655181436,0.000429591679737278,0.0008252772736708691,0.0016737925226622673,0.0,0.0,0.00014758352189110958,0.0,0.0,0.0,0.0,0.0,0.0006677158919710952,0.0007953777227088623,0.0016131515157815604,0.0,0.0 +94772,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,5846.0,,514.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0010971093331519131,0.0004080767018297427,0.0,0.0015051860349816555,0.0008814092848397991,0.00031445229435684684,0.00025415883760089174,0.0,5.5165618184118056e-05,0.0004733325830100564,0.00031445229435684684,0.00025415883760089174,0.0,5.5165618184118056e-05,0.0004080767018297427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7267360145650124e-05,0.0,0.0,0.00013073715207457862,6.76511562882337e-05,0.00015800451222022874,5.6404728331912045e-05,3.747174158971337e-05,3.028686530909763e-05,0.0,6.573816843855554e-06,2.7267360145650124e-05,0.0,0.0,0.0,0.0,0.0,9.252453908077245e-05,3.3009129922595186e-05,2.6679920108399533e-05,0.0,5.790923108461596e-06 +94773,50.0,the Greater Atlanta and Macon Area,G1301130140306,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,53998.0,,6323.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0027564860988913494,0.0010752754986805223,0.0,0.0038317615975718704,0.0015340131397015486,0.0007951889793279482,0.0010262333189926562,0.0,0.0004763261595497185,0.001280681735731834,0.0007951889793279482,0.00020428922428184843,0.0,0.0004763261595497185,0.00025333140396971443,0.0008219440947108077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.184388002292599e-05,0.0,0.0,0.00032848504549118655,0.00015796124882479774,0.00040032892551411254,0.00015261633221760177,9.476111203814459e-05,2.434474643589605e-05,0.0,5.676285479954411e-05,1.6926184047877294e-05,5.491769597504868e-05,0.0,0.0,0.0,0.0,0.0001602682777369039,8.307853752612031e-05,0.00010721723454284027,0.0,4.976487570824816e-05 +94774,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,76278.0,,10788.0,,9.325022323477118,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.02353572906429586,0.009145727523052557,0.0,0.03268154497150647,0.018763868370908852,0.0033337620576748403,0.010235946112660427,0.0,0.0003478800461043022,0.009618140847856293,0.0033337620576748403,0.010235946112660427,0.0,0.0003478800461043022,0.009145727523052557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006110660078539206,0.0,0.0,0.0028047093985351158,0.0015779387602926896,0.0034157754063890364,0.001146176095022282,0.00039727827211543114,0.0012197988082990618,0.0,4.1456223098341346e-05,0.0006110660078539206,0.0,0.0,0.0,0.0,0.0,0.0019611422950154725,0.0003484346427712264,0.0010698298695252068,0.0,3.635936143449051e-05 +94775,50.0,the Greater Atlanta and Macon Area,G1300670031114,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,96374.0,,9220.0,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,699376.6742607838,0.0,0.0,0.02710379752497439,0.007816253017589926,0.0,0.03492005054256431,0.018134396397241462,0.0037275134818096647,0.01248611839258152,0.0,0.0005720222709316676,0.010318143379651533,0.0037275134818096647,0.01248611839258152,0.0,0.0005720222709316676,0.007816253017589926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000522239217174735,0.0,0.0,0.0032299066744352675,0.0016606190260394051,0.003752145891610002,0.001229593016956691,0.00044420050964632694,0.0014879463697597157,0.0,6.81667780725335e-05,0.000522239217174735,0.0,0.0,0.0,0.0,0.0,0.0019485338618224159,0.0004005198783903585,0.0013416285801698753,0.0,6.146357122735335e-05 +94776,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,163667.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01597529836027995,0.0,0.0,0.01597529836027995,0.010518620474088958,0.0038042325823795407,0.0016524453038114502,0.0,0.0,0.010518620474088958,0.0038042325823795407,0.0016524453038114502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019037443620411557,0.0004464552754669292,0.0019037443620411557,0.0012534829692937648,0.0004533427900542449,0.0001969186026931459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012534829692937648,0.0004533427900542449,0.0001969186026931459,0.0,0.0 +94777,50.0,the Greater Atlanta and Macon Area,G1300590140300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8183.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0006331879571342038,0.0,0.0,0.0006331879571342038,0.0003028143453394333,0.00015047113967763676,0.00017990247211713373,0.0,0.0,0.0003028143453394333,0.00015047113967763676,0.00017990247211713373,0.0,0.0,0.0,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.545421899291099e-05,2.6900489327335307e-05,7.545421899291099e-05,3.60850513184884e-05,1.7930982731787642e-05,2.143818494263495e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.60850513184884e-05,1.7930982731787642e-05,2.143818494263495e-05,0.0,0.0 +94778,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,113642.0,,7565.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.0063127178799956005,0.0012865327550004512,0.0,0.0075992506349960515,0.0035074555568376854,0.002100923715746317,0.001133324701969775,0.0,0.0008575643908036939,0.0028102268243555295,0.002100923715746317,0.0005440206794514801,0.0,0.0008575643908036939,0.0006972287324821562,0.0005893040225182949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.595850876177238e-05,0.0,0.0,0.000752275369318196,0.0002848111490511222,0.0008382338780799683,0.00033488973566508093,0.0002503633449517498,6.482997740925234e-05,0.0,0.00010219442418776874,4.6584699749837196e-05,3.937380901193518e-05,0.0,0.0,0.0,0.0,0.00038688920984677,0.0002317419859387395,0.0001250111630324511,0.0,9.459347500611018e-05 +94779,35.0,Eastern Counties in South Carolina and Georgia,G1302450010400,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,45057.0,,2073.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003952000143644203,0.0006038575304219439,0.0,0.004555857674066147,0.003248638701464184,0.0009216868749385791,0.0003855624712628216,0.0,0.0,0.00264478117104224,0.0009216868749385791,0.0003855624712628216,0.0,0.0,0.0006038575304219439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.034614772502638e-05,0.0,0.0,0.000470953624265098,0.0002013968513380406,0.0005112997719901244,0.00031517440096595574,0.0001098359712582478,4.5946871614835974e-05,0.0,0.0,4.034614772502638e-05,0.0,0.0,0.0,0.0,0.0,0.0003645917730907619,0.00010344008147686124,4.327132622399989e-05,0.0,0.0 +94780,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302050090400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,12025.0,,217.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0006189846475354634,3.689688211512988e-05,0.0,0.0006558992600120135,0.0003979579620730852,0.00015209104026121296,3.077990742521166e-05,0.0,7.505261989108352e-05,0.00036106107995795533,0.00015209104026121296,3.077990742521166e-05,0.0,7.505261989108352e-05,3.689688211512988e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4657175625464353e-06,0.0,0.0,7.376347291418633e-05,2.8136418576002153e-05,7.622919047673275e-05,4.302710785782391e-05,1.8124461363406674e-05,3.6679954449608274e-06,0.0,8.943908247994922e-06,2.4657175625464353e-06,0.0,0.0,0.0,0.0,0.0,4.6251025335881554e-05,1.7676154837656136e-05,3.5772679876627474e-06,0.0,8.72268167729056e-06 +94781,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Propane,23287.0,,,8533.0,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027045867883351738,0.0,0.0008042929131116684,0.0035088797014468415,0.0021870206539158824,0.0009168270990285389,0.0004050623221018583,0.0,0.0,0.001382727740804214,0.0009168270990285389,0.0004050623221018583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008042929131116684,0.0,0.0,0.0,0.0,6.486501358918443e-05,0.00032230204649732336,0.00016295270760534992,0.00038716706008650777,0.000164777844265129,0.00010925707822561548,4.82707435884316e-05,0.0,0.0,0.0,0.0,0.0,6.486501358918443e-05,0.0,0.0,0.0002413141597803825,0.00010116198979182888,4.469426191366008e-05,0.0,0.0 +94782,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080100,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,39288.0,,1702.0,,3.3063363735822096,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.004129599213948856,0.0005115932124796251,0.0,0.0046411924264284825,0.0017501658640466837,0.0004623611795972061,0.0016580320787670452,0.0,0.0007706019659953435,0.0017501658640466837,0.0004623611795972061,0.00114643886628742,0.0,0.0007706019659953435,0.0,0.0005115932124796251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.418204410911118e-05,0.0,0.0,0.000492116401671705,0.00023457566147046957,0.0005262984457808163,0.00020856390238405622,5.5098693163127855e-05,0.00013661891636076364,0.0,9.183115527187977e-05,0.0,3.418204410911118e-05,0.0,0.0,0.0,0.0,0.0001984639914650612,5.243048506796146e-05,0.0001880162738224011,0.0,8.738414177993579e-05 +94783,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10524.0,,523.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0023232417013371457,0.0004152722172450625,0.0,0.0027385139185822083,0.0011169590308493468,0.0009066349423302878,0.0006396565082998036,0.0,7.518073002903045e-05,0.0007016868136042843,0.0009066349423302878,0.0006396565082998036,0.0,7.518073002903045e-05,0.0004152722172450625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.77471230934733e-05,0.0,0.0,0.00027685748424772193,0.0001099837010343842,0.00030460460734119517,8.361904223416422e-05,0.00010804242585701414,7.622697697301107e-05,0.0,8.959183096517594e-06,2.77471230934733e-05,0.0,0.0,0.0,0.0,0.0,0.00012423923234401984,0.00010084490669790042,7.114892432052198e-05,0.0,8.36234447987516e-06 +94784,85.0,Rural Climate Zone 3A,G1300310110500,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,13231.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004608851684122906,0.0,0.0,0.004608851684122906,0.003137823670595584,0.0006497467712959992,0.0007360102492060968,0.0,8.535370009896524e-05,0.003137823670595584,0.0006497467712959992,0.0007360102492060968,0.0,8.535370009896524e-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.0005492257100678266,0.00016992134273235052,0.0005492257100678266,0.00037392685893698107,7.742875151714394e-05,8.770856157727392e-05,0.0,1.0171394038402816e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00037392685893698107,7.742875151714394e-05,8.770856157727392e-05,0.0,1.0171394038402816e-05 +94785,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2004,gen4_led,25001_50000,FuelOil,79926.0,21581.0,4827.0,,3.3063363735822096,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.007271768686273179,0.0014509504280432858,0.0022297629558560668,0.010952513408194737,0.0036537626848039484,0.0010253800865135275,0.00404357634299899,0.0,0.0022297629558560668,0.0036537626848039484,0.0010253800865135275,0.0025926259149557044,0.0,0.0,0.0,0.0014509504280432858,0.0,0.0,0.0,0.0,0.0,0.0,0.0022297629558560668,0.0,9.694487299843244e-05,0.00019813489174114876,0.0,0.0008665624484931394,0.000632757557728021,0.0011616422132327206,0.00043541175124745034,0.0001221925389462105,0.0003089581582994787,0.0,0.0,0.0,9.694487299843243e-05,0.0,0.0,0.00019813489174114876,0.0,0.0003875242890483135,0.00010875355717082489,0.0004288685890986768,0.0,0.00023649245415093315 +94786,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,47938.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0045958900781251045,0.0,0.0,0.0045958900781251045,0.0035361855673413808,0.0006820391753747171,0.0003776653354090062,0.0,0.0,0.0035361855673413808,0.0006820391753747171,0.0003776653354090062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005476831102150595,0.000207848614865037,0.0005476831102150595,0.00042140022430850075,8.127725652875619e-05,4.5005629377802486e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042140022430850075,8.127725652875619e-05,4.5005629377802486e-05,0.0,0.0 +94787,50.0,the Greater Atlanta and Macon Area,G1300570090902,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Propane,176732.0,,,21825.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01730739331082143,0.0,0.002057052021921742,0.019364445332743174,0.010933037864817646,0.007734910459218442,0.0006965273823065248,0.0,0.0,0.008875985842895904,0.007734910459218442,0.0006965273823065248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002057052021921742,0.0,0.0,0.0,0.0,0.00016589923663319088,0.0020624876487359803,0.0007347854034076821,0.0022283868853691714,0.001057733584865263,0.0009217539001810339,8.300378325113766e-05,0.0,0.0,0.0,0.0,0.0,0.00016589923663319088,0.0,0.0,0.0012581325091717943,0.0008901041434779634,8.015372799797634e-05,0.0,0.0 +94788,85.0,Rural Climate Zone 3A,G1303030950300,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,49409.0,,1539.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.011525734297021807,0.001193424297308401,0.0,0.012719077733547142,0.004201041123542291,0.00043333293646424017,0.007084374926199853,0.00042872387182933414,0.0005716048755114227,0.004201041123542291,0.00043333293646424017,0.005890950628891452,0.00042872387182933414,0.0005716048755114227,0.0,0.001193424297308401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.973736982094198e-05,0.0,0.0,0.0013734950487700737,0.0004832259958643886,0.0014532324185910156,0.0005006283360493372,5.163928192032177e-05,0.0007020109359472293,5.109003036789439e-05,6.811682849314324e-05,0.0,7.973736982094198e-05,0.0,0.0,0.0,0.0,0.0004799946411572934,4.951093817534617e-05,0.0008094331620485966,4.898432435261904e-05,6.530935285716031e-05 +94789,50.0,the Greater Atlanta and Macon Area,G1300890021706,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,124906.0,,6549.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,240343.828889517,0.0,0.0,0.010313143073892568,0.0019080087694806939,0.0,0.012221151843373261,0.007983730985812506,0.002776481098204332,0.0014609701329558625,0.0,0.0,0.0060757222163318105,0.002776481098204332,0.0014609701329558625,0.0,0.0,0.0019080087694806939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012748168068566949,0.0,0.0,0.001228998290689769,0.0005268092519819384,0.0013564799713754385,0.0007240326411722419,0.0003308681455669605,0.00017410112351654394,0.0,0.0,0.00012748168068566949,0.0,0.0,0.0,0.0,0.0,0.0008861497932354414,0.0003081739797430671,0.00016215956969775543,0.0,0.0 +94790,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,19976.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.004961431939473574,0.0,0.0,0.004961431939473574,0.002587738923155451,0.000823514333222284,0.0014055240111257904,0.0,0.000144737379043788,0.002587738923155451,0.000823514333222284,0.0014055240111257904,0.0,0.000144737379043788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005912486726235121,0.0001535560313213917,0.0005912486726235121,0.00030837815011409693,9.813734469080996e-05,0.0001674948313423345,0.0,1.724820259203751e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00030837815011409693,9.813734469080996e-05,0.0001674948313423345,0.0,1.724820259203751e-05 +94791,50.0,the Greater Atlanta and Macon Area,G1300890022402,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,224224.0,,11573.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011541968834334613,0.0019681410390715408,0.0,0.013510109873406154,0.006293817314721825,0.003525256839703418,0.0023578898438071424,0.0,0.0013331281448123503,0.005092248451646266,0.003525256839703418,0.001591317667811159,0.0,0.0013331281448123503,0.0012015688630755582,0.000766572175995983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013149964668009335,0.0,0.0,0.0013754351615167361,0.00048462176274035034,0.0015069348081968295,0.0006068338662237612,0.00042009836279244966,0.00018963439469176643,0.0,0.0001588664249142542,8.028178764606003e-05,5.1217859034033354e-05,0.0,0.0,0.0,0.0,0.0007020203741388987,0.00039321162369227217,0.000263002026839249,0.0,0.0001486988058593859 +94793,50.0,the Greater Atlanta and Macon Area,G1302550160400,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12648.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030370037477073686,0.0,0.0,0.0030370037477073686,0.0019194657673418467,0.0004980619980581093,0.0005303177568164393,0.0,8.915822549097339e-05,0.0019194657673418467,0.0004980619980581093,0.0005303177568164393,0.0,8.915822549097339e-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.0003619112803169572,0.00011976633135982828,0.0003619112803169572,0.00022873739089313572,5.9352661494246095e-05,6.319649045186084e-05,0.0,1.0624737477714591e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00022873739089313572,5.9352661494246095e-05,6.319649045186084e-05,0.0,1.0624737477714591e-05 +94794,35.0,Eastern Counties in South Carolina and Georgia,G1300510010603,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,Electricity,153286.0,,978.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013737465708615506,0.0002878991966787497,0.0,0.014025364905294256,0.0056968502378299726,0.002847136155450483,0.0054813785120138014,0.0,0.0,0.005408951041151222,0.002847136155450483,0.0054813785120138014,0.0,0.0,0.0002878991966787497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9234964210978217e-05,0.0,0.0,0.0016370688023780184,0.0005218341885800303,0.0016563037665889965,0.0006445748576104127,0.0003392880371877718,0.000653205907579834,0.0,0.0,1.9234964210978217e-05,0.0,0.0,0.0,0.0,0.0,0.0006727607139155029,0.0003362281388118659,0.0006473149138616277,0.0,0.0 +94795,85.0,Rural Climate Zone 3A,G1302370960300,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,31417.0,,3225.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0016171862651230163,0.0005484532698064933,0.0,0.002165639534929509,0.0010909314078144288,0.00026019305383927487,0.0005378327833158817,0.0,0.000276700020321344,0.000948201998383004,0.00026019305383927487,0.00034999733443184236,0.0,5.879387846889509e-05,0.00014272940943142506,0.0001878354488840394,0.00021790614185244892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6644786850599024e-05,0.0,0.0,0.0001927166460970274,9.323030217528771e-05,0.0002293614329476264,0.0001129952145227818,3.1006652576185466e-05,4.1708437605035854e-05,0.0,7.00634139302426e-06,9.536434686170827e-06,1.2550184977055122e-05,1.4559351837644652e-05,0.0,0.0,0.0,0.00011553981487137623,2.755687209669337e-05,5.6961509927161605e-05,0.0,2.9305113863100285e-05 +94796,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,40515.0,,3920.0,,4.088175128053588,Healthcare,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.004557783346191239,0.0014568632369827686,0.0,0.006014646583174007,0.002828092457429234,0.0009316283527521864,0.0020554101389901316,0.0,0.00019951563400245426,0.0018742225094318724,0.0009316283527521864,0.0017519324840071793,0.0,0.0,0.0009538699479973618,0.00030347765498295234,0.00019951563400245426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.733857294271948e-05,0.0,0.0,0.000543144447876392,0.00024902269288096756,0.0006404830208191114,0.0002233483851165415,0.00011102080306305707,0.00020877525969679325,0.0,0.0,6.373167855021344e-05,2.0276496177652507e-05,1.3330398214853519e-05,0.0,0.0,0.0,0.0003011557163403855,9.920651752352353e-05,0.00021887492085161196,0.0,2.1245866103590344e-05 +94797,50.0,the Greater Atlanta and Macon Area,G1302470060307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,194591.0,,3224.0,,9.729435225087556,Education,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1459415.2837631335,0.05954698554695803,0.0,0.04496513245219984,0.0028514496729993254,0.0,0.1073635676721572,0.08624738448039741,0.009215270069623317,0.006587908320862805,0.0006549269291950846,0.004657985654825812,0.02670039893343937,0.009215270069623317,0.0037364586478634797,0.0006549269291950846,0.004657985654825812,0.0,0.0028514496729993254,0.0,0.0,0.0,0.0,0.05954698554695803,0.0,0.0,0.0,0.00019051579494009245,0.0,0.0,0.005358411246198497,0.0015894619604517213,0.0055489270411385894,0.0031818369060742833,0.001098166603430303,0.000445266831159702,7.804642467289115e-05,0.0005550834915027323,0.0,0.00019051579494009245,0.0,0.0,0.0,0.0,0.004457568375821262,0.0004762775901493148,0.0003404862880283889,3.3848928702496096e-05,0.00024074109232494792 +94798,50.0,the Greater Atlanta and Macon Area,G1300630040616,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,11899.0,,1540.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0010602031391604403,0.00045319341619817695,0.0,0.0015133965553586174,0.0006677444538254171,0.00036311942171441937,0.00048253267981878084,0.0,0.0,0.00021455103762724016,0.00036311942171441937,0.00048253267981878084,0.0,0.0,0.00045319341619817695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.027916400509169e-05,0.0,0.0,0.0001263440989814475,6.987967735373819e-05,0.00015662326298653917,2.5567984599643937e-05,4.3272835614788594e-05,5.750327876701496e-05,0.0,0.0,3.027916400509169e-05,0.0,0.0,0.0,0.0,0.0,6.91056913199586e-05,3.7579673669351525e-05,4.993789799722903e-05,0.0,0.0 +94799,50.0,the Greater Atlanta and Macon Area,G1300670031503,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,23675.0,,4677.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0022322773170781324,0.0013624989235786712,0.0,0.003594806614256241,0.0025820900618027205,0.000774709027259298,0.00023797715159478553,0.0,0.0,0.001219591138224049,0.000774709027259298,0.00023797715159478553,0.0,0.0,0.0013624989235786712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.103513173643323e-05,0.0,0.0,0.0002660165588289155,0.0001571737215927817,0.00035705169056534866,0.0001453365293310671,9.23207112075859e-05,2.835931829026251e-05,0.0,0.0,9.103513173643323e-05,0.0,0.0,0.0,0.0,0.0,0.00025646431663456663,7.694744044983891e-05,2.3636916644102872e-05,0.0,0.0 +94800,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970701,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,76834.0,,2257.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003955040800525498,0.0003838800551055632,0.0,0.004338920855631061,0.0018958543555619859,0.0009513048116315132,0.0009245674266100735,0.0,0.0005672119921889092,0.0018958543555619859,0.0009513048116315132,0.0005406873715045102,0.0,0.0005672119921889092,0.0,0.0003838800551055632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5648694950978832e-05,0.0,0.0,0.0004713152653158736,0.00015655348562049366,0.0004969639602668524,0.00022592563355433107,0.00011336532347044322,6.443276436484075e-05,0.0,6.759365682228629e-05,0.0,2.5648694950978832e-05,0.0,0.0,0.0,0.0,0.00021714415173222017,0.0001089589375652599,0.00010589653629325011,0.0,6.496636544619654e-05 +94801,50.0,the Greater Atlanta and Macon Area,G1301210007100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,35130.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005069186409829354,0.0,0.0,0.005069186409829354,0.0015265623964603318,0.001501581056934002,0.0020410429564350213,0.0,0.0,0.0015265623964603318,0.001501581056934002,0.0020410429564350213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006040845708531996,0.0001952858284296545,0.0006040845708531996,0.00018191731682193455,0.00017894034171250884,0.00024322691231875633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018191731682193455,0.00017894034171250884,0.00024322691231875633,0.0,0.0 +94802,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300010950300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,67014.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.0070143879333560925,0.0,0.0,0.007014387933356093,0.00443017171959273,0.001935922107363988,0.0006482637327999372,0.0,0.0,0.00443017171959273,0.001935922107363988,0.0006482637327999372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008358904511727653,0.0001941259844291836,0.0008358904511727653,0.0005279346213307303,0.0002306999297921015,7.725228048939899e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005279346213307302,0.00023069992979210147,7.725228048939897e-05,0.0,0.0 +94803,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,99526.0,,10572.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008990274648061649,0.0031120181474059553,0.0,0.012102292795467604,0.0044217584753730175,0.0031678732308677744,0.004512661089226813,0.0,0.0,0.0013097403279670617,0.0031678732308677744,0.004512661089226813,0.0,0.0,0.0031120181474059553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020792596639407663,0.0,0.0,0.0010713544918541282,0.0005064605920943852,0.001279280458248205,0.00015607934556621664,0.0003775096254980804,0.0005377655207898312,0.0,0.0,0.00020792596639407663,0.0,0.0,0.0,0.0,0.0,0.00046740475579607046,0.00033486202878635325,0.00047701367366578145,0.0,0.0 +94804,50.0,the Greater Atlanta and Macon Area,G1301210011201,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,3947.0,,875.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010794927264454405,0.000694408591115225,0.0,0.0017739013175606653,0.0013202530181005642,0.00023323394794484695,0.0001793089358668185,0.0,4.110541564843579e-05,0.0006258444269853393,0.00023323394794484695,0.0001793089358668185,0.0,4.110541564843579e-05,0.000694408591115225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.639742951048414e-05,0.0,0.0,0.0001286408039387549,7.590970947085127e-05,0.00017503823344923903,7.4580521253797e-05,2.779398307594919e-05,2.136785649243186e-05,0.0,4.898443116576861e-06,4.639742951048414e-05,0.0,0.0,0.0,0.0,0.0,0.0001302748657473985,2.3014165345340088e-05,1.7693159740672802e-05,0.0,4.056042615827667e-06 +94805,81.0,the Columbus-Albany Area,G1301770020402,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,37346.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.003293196771839366,0.0,0.0,0.003293196771839366,0.0017493674596173164,0.0011700214239416381,0.00037380788828041166,0.0,0.0,0.0017493674596173164,0.0011700214239416381,0.00037380788828041166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039244549978398346,0.00010418441414332826,0.00039244549978398346,0.00020846959187680223,0.00013942976210932025,4.454614579786101e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020846959187680223,0.00013942976210932025,4.454614579786101e-05,0.0,0.0 +94806,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050200,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,NaturalGas,6624.0,,1504.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005040767834397682,0.0004427896396632557,0.0,0.0009468664231030243,0.0005291501917849912,0.00023241238849250318,0.0001852731532192317,0.0,0.0,8.636055212173563e-05,0.00023241238849250318,0.0001852731532192317,0.0,0.0,0.0004427896396632557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9584705543084605e-05,0.0,0.0,6.006841834909748e-05,4.5936947377997966e-05,8.965312389218208e-05,1.0291173773781447e-05,2.7695472277486465e-05,2.2078115164292325e-05,0.0,0.0,2.9584705543084602e-05,0.0,0.0,0.0,0.0,0.0,5.010206988458181e-05,2.2005740357031558e-05,1.754240783512472e-05,0.0,0.0 +94807,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,140502.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012518535925683347,0.0,0.0,0.012518535925683347,0.004852057445273108,0.0025618455753070373,0.005104632905103202,0.0,0.0,0.004852057445273108,0.0025618455753070373,0.005104632905103202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014918103249338876,0.0004966040642966418,0.0014918103249338876,0.0005782105381173515,0.00030529030733445086,0.0006083094794820853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005782105381173515,0.00030529030733445086,0.0006083094794820853,0.0,0.0 +94808,85.0,Rural Climate Zone 3A,G1300090970200,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,26686.0,,11176.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005376272467272236,0.007687878853076396,0.0,0.013064079600377617,0.002807836865261173,0.0007729261276352403,0.00758747089365454,0.0003776056473971922,0.0015182400664294701,0.0021707483627294998,0.0007729261276352403,0.0018748317623190885,0.0003776056473971922,0.00018008884722019937,0.0006370885025316729,0.0057126391313354515,0.0013381512192092706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005136579354101567,0.0,0.0,0.0006406759556287155,0.0006678586497999224,0.001154333891038872,0.00025868225432905113,9.210753146675204e-05,0.00022341866753942334,4.4998251199076695e-05,2.1460704418021192e-05,4.256643101926825e-05,0.000381684269227373,8.940723516351535e-05,0.0,0.0,0.0,0.0002480987067765289,6.829526852951856e-05,0.0006704241758878496,3.336499849753319e-05,0.0001341507413474416 +94809,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,4505.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000777777321444447,0.0,0.0,0.0007777773214444469,0.00047300175471509925,0.00014316594464274118,0.0001346471160475925,0.0,2.696250603901422e-05,0.00047300175471509925,0.00014316594464274118,0.0001346471160475925,0.0,2.696250603901422e-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,9.268945716759154e-05,3.159471483299162e-05,9.268945716759154e-05,5.6368673494412603e-05,1.7061404759368456e-05,1.6046196966061146e-05,0.0,3.2131819477493453e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.636867349441261e-05,1.706140475936846e-05,1.604619696606115e-05,0.0,3.2131819477493457e-06 +94810,50.0,the Greater Atlanta and Macon Area,G1302230120202,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,7974.0,,987.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007112009363429644,0.0002903850547888637,0.0,0.0010015553015255303,0.0004058086640745239,0.0003513039232898038,0.0002444734037675003,0.0,0.0,0.00011542360928566017,0.0003513039232898038,0.0002444734037675003,0.0,0.0,0.0002903850547888637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.94012039358521e-05,0.0,0.0,8.475154159055891e-05,4.512086895217822e-05,0.000104152745526411,1.3754662463195481e-05,4.186376527949978e-05,2.913311384786365e-05,0.0,0.0,1.94012039358521e-05,0.0,0.0,0.0,0.0,0.0,4.220045209424644e-05,3.653244915093694e-05,2.5423035724326336e-05,0.0,0.0 +94811,50.0,the Greater Atlanta and Macon Area,G1301350050524,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,33021.0,,2454.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002942089797335575,0.000722371953035328,0.0,0.003664492439977201,0.0012774241725355808,0.0009897704927072123,0.00139726708512811,0.0,0.0,0.0005550522195002526,0.0009897704927072123,0.00139726708512811,0.0,0.0,0.000722371953035328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.826500877980439e-05,0.0,0.0,0.00035060454101538,0.00015925583320879535,0.0003988695497951843,6.614476173830309e-05,0.00011794950297589363,0.00016651027630118327,0.0,0.0,4.826500877980439e-05,0.0,0.0,0.0,0.0,0.0,0.0001390439775610297,0.0001077336949913696,0.00015208853676667599,0.0,0.0 +94812,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,97320.0,,6725.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008381454238327821,0.001979418226989234,0.0,0.010360872465317056,0.003367846705503605,0.0024803646705866367,0.004512661089226813,0.0,0.0,0.0013884284785143715,0.0024803646705866367,0.004512661089226813,0.0,0.0,0.001979418226989234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013225387071187086,0.0,0.0,0.0009988011450916831,0.000451154776825111,0.001131055015803554,0.00016545624599087832,0.00029558009896396586,0.000537764800136839,0.0,0.0,0.00013225387071187086,0.0,0.0,0.0,0.0,0.0,0.0003676543574364671,0.0002707714925630151,0.0004926291658040716,0.0,0.0 +94813,50.0,the Greater Atlanta and Macon Area,G1301210007500,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,28637.0,,3783.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004038660119958793,0.00111351098529955,0.0,0.005152171105258343,0.0018262157123511019,0.0013656261010351785,0.001960329291872063,0.0,0.0,0.0007127047270515518,0.0013656261010351785,0.001960329291872063,0.0,0.0,0.00111351098529955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.439824029423936e-05,0.0,0.0,0.0004812788657568057,0.00021251054433346357,0.0005556771060510451,8.493156454531866e-05,0.00016273886918733967,0.0002336084320241474,0.0,0.0,7.439824029423936e-05,0.0,0.0,0.0,0.0,0.0,0.00019696284174811464,0.0001472868707711425,0.00021142739353178795,0.0,0.0 +94814,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6290.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011511170523036806,0.0,0.0,0.0011511170523036806,0.0005679494753678241,0.00028418150536826036,0.000249113706102794,0.0,4.9872365464802375e-05,0.0005679494753678241,0.00028418150536826036,0.000249113706102794,0.0,4.9872365464802375e-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.0001371773910802322,4.230926899024774e-05,0.0001371773910802322,6.768193307572602e-05,3.386560682222144e-05,2.9686614595032297e-05,0.0,5.943236587252481e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.768193307572602e-05,3.386560682222144e-05,2.9686614595032297e-05,0.0,5.943236587252481e-06 +94815,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,21332.0,,3567.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0018599129000659792,0.0010499835002633054,0.0,0.002909896400329285,0.0012851579533226017,0.0009350509246784086,0.0006897182119345723,0.0,0.0,0.00023517445305929648,0.0009350509246784086,0.0006897182119345723,0.0,0.0,0.0010499835002633054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.015348636436682e-05,0.0,0.0,0.00022164325032928876,0.00014108074829803562,0.0002917967366936556,2.8025414614106994e-05,0.00011142872666874748,8.219276628441086e-05,0.0,0.0,7.015348636436682e-05,0.0,0.0,0.0,0.0,0.0,0.00012887225018491958,9.376444069715663e-05,6.916312328436056e-05,0.0,0.0 +94816,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,6934.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0020661881161553783,0.0,0.0,0.0020661881161553783,0.0011664178609454526,0.0004551370267874088,0.00037416680159662674,0.0,7.054913389962922e-05,0.0011664178609454526,0.0004551370267874088,0.00037416680159662674,0.0,7.054913389962922e-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.00024622737829912576,6.201653232257274e-05,0.00024622737829912576,0.0001390018699924974,5.4238622319273436e-05,4.458941075275177e-05,0.0,8.407331426193028e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001390018699924974,5.4238622319273436e-05,4.458941075275177e-05,0.0,8.407331426193028e-06 +94817,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,23063.0,,1427.0,,9.325022323477118,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,163187.89066084955,0.0,0.0,0.0058463469028610954,0.0012096255871401117,0.0,0.007055972490001208,0.0040935122803152325,0.0011493475913466323,0.0016123038112384857,0.0,0.00020089719125891228,0.003084695500275978,0.0011493475913466323,0.0016123038112384857,0.0,0.0,0.0010088167800392542,0.0,0.00020089719125891228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.082110553634806e-05,0.0,0.0,0.0006966977092578343,0.0002914037281895046,0.0007775188147941825,0.0003675971208188985,0.0001369655012500775,0.0001921350871888584,0.0,0.0,6.740406974951605e-05,0.0,1.3422941172301557e-05,0.0,0.0,0.0,0.00045107642086847,0.00012665006535622547,0.00017766460260137384,0.0,2.213746528412031e-05 +94818,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,238078.0,,11557.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.019599702234783797,0.003401820099675162,0.0,0.02300152233445896,0.00742412265947728,0.0060524813956077525,0.009524887589767632,0.0,0.0,0.004022302559802118,0.0060524813956077525,0.009524887589767632,0.0,0.0,0.003401820099675162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022729032146471948,0.0,0.0,0.0023356584404880375,0.0008585692313261216,0.0025629487619527568,0.00047932998223440044,0.0007212624502253823,0.0011350623508074907,0.0,0.0,0.00022729032146471948,0.0,0.0,0.0,0.0,0.0,0.0008272342022417826,0.0006743988277843636,0.0010613123123317106,0.0,0.0 +94819,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970100,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,22223.0,,317.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.002476179272731178,0.00011787270511467585,0.0,0.002594051977845854,0.0012615711811714717,0.00036535888774696864,0.0008979172240704747,0.0,6.920468485693987e-05,0.0012615711811714717,0.00036535888774696864,0.0007800445189557987,0.0,6.920468485693987e-05,0.0,0.00011787270511467585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.876206629771668e-06,0.0,0.0,0.00029507984781986706,9.901011700641763e-05,0.0003029560544496387,0.0001503381585709695,4.353886900809851e-05,9.29558778239507e-05,0.0,8.246942416848441e-06,0.0,7.876206629771668e-06,0.0,0.0,0.0,0.0,0.000147337305003605,4.266980308615367e-05,0.00010486661861442776,0.0,8.082327745452378e-06 +94820,85.0,Rural Climate Zone 3A,G1300810010400,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,122174.0,,4758.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006071460852152943,0.0008092136952112099,0.0,0.006880674547364151,0.0036448835882045153,0.0010212688177950414,0.0011197432451220146,0.0,0.0010947788962425804,0.0033851160630393212,0.0010212688177950414,0.0005702970750759984,0.0,0.0010947788962425804,0.00025976752516519355,0.0005494461700460162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.406691642888676e-05,0.0,0.0,0.0007235250090814975,0.00023879375630387877,0.0007775919255103842,0.00040339815900879194,0.00012170275797920834,6.796127101391034e-05,0.0,0.00013046282107958678,1.735614357142024e-05,3.671077285746651e-05,0.0,0.0,0.0,0.0,0.0004119119467289562,0.00011541461248115206,0.00012654330619157425,0.0,0.00012372206010870167 +94821,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,33345.0,,1919.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0077509761225529345,0.0015225545204669104,0.0,0.009273530643019844,0.00606540595974585,0.0018198864505597203,0.0011696434368212857,0.0,0.00021859479589298955,0.004542851439278938,0.0018198864505597203,0.0011696434368212857,0.0,0.00021859479589298955,0.0015225545204669104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010172924974252442,0.0,0.0,0.0009236650150320451,0.00039824688737825827,0.0010253942647745695,0.0005413605817647482,0.00021687145194806777,0.00013938356996226025,0.0,2.604941135696888e-05,0.00010172924974252442,0.0,0.0,0.0,0.0,0.0,0.0006706650060335147,0.0002012287661279788,0.00012932999502735307,0.0,2.4170497585722965e-05 +94822,35.0,Eastern Counties in South Carolina and Georgia,G1300290920305,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,3687.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0008906724770986016,0.0,0.0,0.0008906724770986017,0.00037532470062897705,0.00030700865772030915,0.00016665475358470445,0.0,4.168436516461094e-05,0.00037532470062897705,0.00030700865772030915,0.00016665475358470445,0.0,4.168436516461094e-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.00010614286386948471,2.8293718362350885e-05,0.00010614286386948471,4.472804496608056e-05,3.658671285017432e-05,1.9860513575727704e-05,0.0,4.967592477502116e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.472804496608055e-05,3.6586712850174314e-05,1.9860513575727704e-05,0.0,4.967592477502116e-06 +94823,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,64946.0,,1933.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005786586646644456,0.0005689239215468142,0.0,0.006355510568191269,0.0026618016230186554,0.0014911772803990805,0.0022025009751672356,0.0,0.0,0.0020928777014718415,0.0014911772803990805,0.0022025009751672356,0.0,0.0,0.0005689239215468142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.801231417530202e-05,0.0,0.0,0.0006895756859135893,0.0002469381237594043,0.0007275880000888913,0.00024940395169967554,0.00017770054416211647,0.00026246753283423437,0.0,0.0,3.801231417530202e-05,0.0,0.0,0.0,0.0,0.0,0.00030472688208851135,0.00017071212195817826,0.00025214548265188786,0.0,0.0 +94824,50.0,the Greater Atlanta and Macon Area,G1301210010603,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,14764.0,,2610.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.004599473461202153,0.0017950791545497287,0.0,0.006394624335722896,0.0010415174190887037,0.000128522188059975,0.004376639511256648,0.00037509544841164585,0.0004728497689059237,0.0010415174190887037,0.000128522188059975,0.0025815603567069197,0.00037509544841164585,0.0004728497689059237,0.0,0.0017950791545497287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011993806276526591,0.0,0.0,0.0005481125717157257,0.0002651481615572504,0.0006680506344809915,0.00012411611804674443,1.531580247484961e-05,0.0003076407980369485,4.469957976755774e-05,5.634882015439927e-05,0.0,0.00011993806276526591,0.0,0.0,0.0,0.0,0.00010880801374965467,1.3426798005741714e-05,0.00045723042494552575,3.918646962613235e-05,4.939892815393701e-05 +94825,50.0,the Greater Atlanta and Macon Area,G1301350050313,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,8833.0,,5337.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0016312707407500732,0.0036715604762021757,0.0,0.005302759496981235,0.0015933308760828152,0.00013655482481372345,0.0026169183024176155,0.0003705053702666467,0.0005853784034294175,0.0007289617854026708,0.00013655482481372345,0.00030552707652650306,0.0003705053702666467,8.95782437984982e-05,0.0008643690906801443,0.0023113912258911126,0.0004958001596309192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024530983848135296,0.0,0.0,0.00019439416752249327,0.0003047514924912906,0.00043970400600384625,8.686842465151119e-05,1.627287293747317e-05,3.640884386220362e-05,4.4152133190644115e-05,1.0674799526735286e-05,5.775153191602887e-05,0.0001544321581969614,3.3126148368362736e-05,0.0,0.0,0.0,0.00013211875241599534,1.1323105176451888e-05,0.00021699446516721448,3.072224860375549e-05,4.853948763140773e-05 +94826,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960202,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,15795.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0038432323025181375,0.0,0.0,0.0038432323025181367,0.0021240003606991537,0.000827815101056728,0.0008037473425985895,0.0,8.758679108992656e-05,0.0021240003606991537,0.000827815101056728,0.0008037473425985895,0.0,8.758679108992656e-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.0004579900696458573,0.0001569237140129987,0.0004579900696458573,0.000253112743793046,9.86490188320002e-05,9.578091367862704e-05,0.0,1.0437537310729165e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00025311274379304603,9.864901883200023e-05,9.578091367862705e-05,0.0,1.0437537310729167e-05 +94827,50.0,the Greater Atlanta and Macon Area,G1300670030506,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,23290.0,,3271.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005743945725272868,0.0025366027648597153,0.0,0.008280548490132584,0.004469903227245145,0.0009373381973303737,0.0018379655991476356,0.0004170799190674661,0.0006182615473419631,0.002551562009727393,0.0009373381973303737,0.0018379655991476356,0.0004170799190674661,0.0,0.0019183412175177523,0.0,0.0006182615473419631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016948236953546352,0.0,0.0,0.0006844934288184679,0.000369746857027138,0.0008539757983539314,0.0003040640549921413,0.00011170053954900658,0.0002190263340190579,4.970250025826224e-05,0.0,0.00012817340563784944,0.0,4.1308963897614095e-05,0.0,0.0,0.0,0.00046098264886682266,9.666800893041135e-05,0.00018955002096171926,4.3013594725937e-05,6.376152486904116e-05 +94828,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,16233.0,,2556.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0010639457977331085,0.0004346420798511744,0.0,0.0014985878775842828,0.0006511652535128592,0.0003349974486704777,0.0002996431079988923,0.0,0.00021279979776347375,0.00041584789674591847,0.0003349974486704777,0.00010030065455323872,0.0,0.00021279979776347375,0.0002353173567669408,0.00019934245344565361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.904077135274309e-05,0.0,0.0,0.00012678771496135784,5.985383950800398e-05,0.00015582848631410091,4.955553629915988e-05,3.992079401536313e-05,1.1952573925315404e-05,0.0,2.535881072151944e-05,1.5722816243518247e-05,1.3319139769882128e-05,0.0,0.0,0.0,0.0,6.77104741824123e-05,3.483422368900774e-05,3.115795386600141e-05,0.0,2.2127678242588703e-05 +94829,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,129368.0,,6910.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00652409924884547,0.0011751683549210995,0.0,0.00769926760376657,0.004021139587899456,0.001553091008589525,0.0012155226575131398,0.0,0.0009094966194030284,0.0037886413585983027,0.001553091008589525,0.0010069072250447988,0.0,0.00017544192625142252,0.0002324982293011524,0.00020861543246834127,0.000734054693151606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.851828959197042e-05,0.0,0.0,0.0007774646223108609,0.0002974882152014284,0.0008559829119028314,0.000451485256521073,0.00018507893095297845,0.00011999123795672867,0.0,2.0907083986297417e-05,1.5534253642418653e-05,1.3938536441447255e-05,4.9045499508104525e-05,0.0,0.0,0.0,0.0004470589867449273,0.0001726682890372845,0.0001351383894427773,0.0,0.00010111527546614014 +94830,85.0,Rural Climate Zone 3A,G1301670960100,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,36549.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0038588443141686184,0.0,0.0,0.0038588443141686184,0.002365344056214923,0.0012482030688944113,0.0002452971890592837,0.0,0.0,0.002365344056214923,0.0012482030688944113,0.0002452971890592837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045985140794234207,0.0001110991031961998,0.00045985140794234207,0.0002818737181297316,0.00014874607314980832,2.923161666280209e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002818737181297316,0.00014874607314980832,2.923161666280209e-05,0.0,0.0 +94831,46.0,the Tallahassee-Valdosta Area,G1301850010402,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,315284.0,,26834.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014849620948329726,0.004563422691931769,0.0,0.019413043640261494,0.008183271009811172,0.004288885775703672,0.004020607677056854,0.0,0.0029202614473283765,0.008183271009811172,0.004288885775703672,0.0019495241595804864,0.0,0.00042792227287297445,0.0,0.002071083517476368,0.002492339174455402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000304901179294374,0.0,0.0,0.0017696009127882236,0.0007197657429162884,0.0020745020920825974,0.000975184747068179,0.0005110983108550876,0.00023232106356791302,0.0,5.099467840380141e-05,0.0,0.0001383776716568789,0.00016652350763749515,0.0,0.0,0.0,0.0008744745617696183,0.0004583156912060965,0.0004296471584805774,0.0,0.0003120627859377371 +94832,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970201,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,12771.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003066447465958562,0.0,0.0,0.003066447465958562,0.0012909747139968496,0.0006890326313221701,0.001008033814734679,0.0,7.832359883112413e-05,0.0012909747139968496,0.0006890326313221701,0.001008033814734679,0.0,7.832359883112413e-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.0003654178448304706,9.020979426055548e-05,0.0003654178448304706,0.00015384095209728166,8.210961444823202e-05,0.00012012387239167592,0.0,9.333549979891458e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015384095209728166,8.210961444823202e-05,0.00012012387239167592,0.0,9.333549979891458e-06 +94833,50.0,the Greater Atlanta and Macon Area,G1301530020105,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10697.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0025685508820479314,0.0,0.0,0.002568550882047931,0.0012807190368531755,0.0005984683855776285,0.0006161676993578402,0.0,7.319576025928708e-05,0.0012807190368531755,0.0005984683855776285,0.0006161676993578402,0.0,7.319576025928708e-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.00030609227578698645,7.858366195207859e-05,0.00030609227578698645,0.00015262232388464338,7.131902716366029e-05,7.342824106816875e-05,0.0,8.722683670514009e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001526223238846434,7.13190271636603e-05,7.342824106816877e-05,0.0,8.722683670514009e-06 +94834,50.0,the Greater Atlanta and Macon Area,G1302470060307,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8233.0,,,,8.72605822017302,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,26178.17466051906,0.0,0.0,0.0017342846292395374,0.0,0.0,0.0017342846292395372,0.0009153191850729153,0.0001970082496470303,0.0005825059203459421,0.0,3.953398124738895e-05,0.0009153191850729153,0.0001970082496470303,0.0005825059203459421,0.0,3.953398124738895e-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.00020666959786367457,6.96809514234821e-05,0.00020666959786367457,0.00010907589487134752,2.3476893610151787e-05,6.94155170849282e-05,0.0,4.711148255941458e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010907589487134754,2.347689361015179e-05,6.941551708492822e-05,0.0,4.711148255941459e-06 +94835,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302010950100,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,20009.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016515948430271931,0.0,0.0,0.0016515948430271931,0.0010499849589636428,0.0005215754495450743,8.00648081179138e-05,0.0,0.0,0.0010499849589636428,0.0005215754495450743,8.00648081179138e-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.0001968173380014518,5.290456491902678e-05,0.0001968173380014518,0.0001251246608314732,6.215512961896663e-05,9.5411671136499e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001251246608314732,6.215512961896663e-05,9.5411671136499e-06,0.0,0.0 +94836,50.0,the Greater Atlanta and Macon Area,G1301690030301,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,280552.0,,17077.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.06591624676149564,0.015104356048971007,0.0,0.08102060281046666,0.0601335794918482,0.012737046953030845,0.0022652245971202557,0.0006588000538115579,0.0052260439319085665,0.048645707444882766,0.012737046953030845,0.0022652245971202557,0.0006588000538115579,0.0016094677126502128,0.011487872046965428,0.0,0.003616576219258353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010091875612625871,0.0,0.0,0.007855110879782077,0.002845360116873699,0.008864298441044664,0.00579701431101816,0.0015178491041679205,0.00026994240801318277,7.850792064998282e-05,0.00019179713593283176,0.000767554574162961,0.0,0.00024163914853438917,0.0,0.0,0.0,0.006579091940243676,0.0013935342558902605,0.0002478335900788326,7.207796643556345e-05,0.0005717707776973427 +94837,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,294517.0,,23619.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.026241147864850763,0.006952269962650099,0.0,0.03319341782750087,0.016158998403929446,0.006379295013071989,0.01065509372089313,0.0,0.0,0.009206728441279347,0.006379295013071989,0.01065509372089313,0.0,0.0,0.006952269962650099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004645098937314968,0.0,0.0,0.003127105524789454,0.0013915860469729882,0.00359161541852095,0.001097147560855169,0.00076020792925602,0.0012697463774587752,0.0,0.0,0.0004645098937314968,0.0,0.0,0.0,0.0,0.0,0.0017484462768195153,0.0006902565577100803,0.0011529092632949513,0.0,0.0 +94838,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,74194.0,,5491.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006237127523744023,0.0015995952407897617,0.0,0.007836722764533786,0.0051958597878190155,0.002057902482705999,0.0005829604940087707,0.0,0.0,0.003596264547029253,0.002057902482705999,0.0005829604940087707,0.0,0.0,0.0015995952407897617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010687649734027652,0.0,0.0,0.0007432652696943639,0.00033564926842090235,0.0008501417670346403,0.00042855922510230183,0.00024523587789255374,6.947016669950828e-05,0.0,0.0,0.00010687649734027652,0.0,0.0,0.0,0.0,0.0,0.0005636562060446289,0.0002232449590982477,6.324060189176372e-05,0.0,0.0 +94839,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,30223.0,,2286.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0025584594014401493,0.0006660930356698974,0.0,0.0032245524371100473,0.0019152376861468789,0.0009369344218563304,0.00037238032910683733,0.0,0.0,0.0012491446504769817,0.0009369344218563304,0.00037238032910683733,0.0,0.0,0.0006660930356698974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.450389605590702e-05,0.0,0.0,0.0003048862922013471,0.00011968427364510029,0.0003493901882572541,0.00014885797315865044,0.00011165252876586319,4.437579027683349e-05,0.0,0.0,4.450389605590702e-05,0.0,0.0,0.0,0.0,0.0,0.00020752190227055954,0.00010151973038790836,4.0348555598786156e-05,0.0,0.0 +94840,50.0,the Greater Atlanta and Macon Area,G1302170100700,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,17931.0,,1280.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001597608835039514,0.0003768683653357901,0.0,0.0019744772003753037,0.0009738118974324068,0.00044282032926955343,0.0005578756632796413,0.0,0.0,0.0005969435320966169,0.00044282032926955343,0.0005578756632796413,0.0,0.0,0.0003768683653357901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5179792008629257e-05,0.0,0.0,0.00019038518489568373,8.804667690777569e-05,0.000215564976904313,7.1137065743434e-05,5.277038309660219e-05,6.648139330030042e-05,0.0,0.0,2.5179792008629257e-05,0.0,0.0,0.0,0.0,0.0,0.00010631661846450341,4.8345229832791896e-05,6.090647916698949e-05,0.0,0.0 +94841,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,18896.0,,756.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0041891132848959215,0.0005993781633887609,0.0,0.004788574155358422,0.003460381258178883,0.0005853179608530787,0.0006576039433012334,0.0,8.518828595148664e-05,0.002946191380741609,0.0005853179608530787,0.0006576039433012334,0.0,0.0,0.0005141898774372742,0.0,8.518828595148664e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0047761991681075e-05,0.0,0.0,0.0004992122467798527,0.000191260693524392,0.0005392600087715338,0.0003510945440235323,6.975172893309017e-05,7.83659738232302e-05,0.0,0.0,3.435586260553073e-05,0.0,5.691899386150339e-06,0.0,0.0,0.0,0.00038968702730650796,6.59149380302626e-05,7.405534439432218e-05,0.0,9.593385074349368e-06 +94842,50.0,the Greater Atlanta and Macon Area,G1300670030222,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,15425.0,,1459.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0037038708832674043,0.001157402789907868,0.0,0.004861273673175273,0.002292226548684905,0.0010297030680543775,0.0014026292635449147,0.0,0.0001367147928910752,0.0011348237587770372,0.0010297030680543775,0.0014026292635449147,0.0,0.0001367147928910752,0.001157402789907868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.7333141678578e-05,0.0,0.0,0.00044138212863719083,0.00019251240625963806,0.0005187152703157688,0.00013523444581718276,0.00012270744482354971,0.00016714823749097024,0.0,1.6292000505488168e-05,7.7333141678578e-05,0.0,0.0,0.0,0.0,0.0,0.0002445887628970776,0.000109872996502566,0.00014966555403108568,0.0,1.4587956885039485e-05 +94843,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,63651.0,,3558.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005304360862888651,0.001047221435696512,0.0,0.006351582298585162,0.0022680846638254266,0.0017195386408602872,0.00236395899389945,0.0,0.0,0.0012208632281289144,0.0017195386408602872,0.00236395899389945,0.0,0.0,0.001047221435696512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.996957695522828e-05,0.0,0.0,0.0006321094950744487,0.0002380129441126774,0.000702079072029677,0.00014548769562168634,0.00020491379265687355,0.00028170800679588886,0.0,0.0,6.996957695522828e-05,0.0,0.0,0.0,0.0,0.0,0.0002507052103249933,0.00019007107781052952,0.0002613027838941543,0.0,0.0 +94844,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,94888.0,,4458.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00845440343249746,0.0013123489445023661,0.0,0.009766752376999827,0.002766176974037143,0.0024340847442897006,0.0045664599690666855,0.0,0.0,0.0014538280295347764,0.0024340847442897006,0.0045664599690666855,0.0,0.0,0.0013123489445023661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.76841367800937e-05,0.0,0.0,0.001007494034784813,0.00036094238327033366,0.0010951781715649068,0.00017324972472085616,0.0002900649205603576,0.0005441757322857338,0.0,0.0,8.76841367800937e-05,0.0,0.0,0.0,0.0,0.0,0.00031018055170367083,0.0002729419541712699,0.0005120522243631449,0.0,0.0 +94845,35.0,Eastern Counties in South Carolina and Georgia,G1300510011500,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,41042.0,,17801.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011793201713980989,0.012245180971321367,0.0,0.024038382685302357,0.005732362123364745,0.0006400290213433132,0.014129910089640608,0.00038255432539726936,0.0031535271255564183,0.005732362123364745,0.0006400290213433132,0.0018847291183192426,0.00038255432539726936,0.0031535271255564183,0.0,0.012245180971321367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000818152133250116,0.0,0.0,0.0014053702635645788,0.0011830802026883296,0.0022235223968146947,0.0006831131582028418,7.627086996637132e-05,0.00022459908021585292,4.5588169027411985e-05,0.00037579898615210073,0.0,0.000818152133250116,0.0,0.0,0.0,0.0,0.0005302368189581649,5.920193892405149e-05,0.0013070002237922456,3.538582947343015e-05,0.0002916975856668023 +94846,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970300,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,7775.0,,,325.0,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018145104907666657,0.0,8.353414447670049e-05,0.0018980446352433661,0.0012454858234402304,0.00024133924117129905,0.00037300890256427644,0.0,3.821066806756003e-05,0.00116195167896353,0.00024133924117129905,0.00037300890256427644,0.0,3.821066806756003e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.353414447670049e-05,0.0,0.0,0.0,0.0,6.73930645248695e-06,0.00021622846354379406,5.725874947411656e-05,0.00022296776999628103,0.00013846545805764907,2.875949936737276e-05,4.445008298384207e-05,0.0,4.553423134930163e-06,0.0,0.0,0.0,6.739306452486949e-06,0.0,0.0,0.00014631015069824376,2.83506886073096e-05,4.381823359114678e-05,0.0,4.48869709958089e-06 +94847,50.0,the Greater Atlanta and Macon Area,G1301210010119,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,45697.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.010972747472993918,0.0,0.0,0.010972747472993915,0.006448422418232583,0.0008260782525082026,0.003568810231851115,0.0,0.00012951927747575543,0.006448422418232583,0.0008260782525082026,0.003568810231851115,0.0,0.00012951927747575543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013076030085302887,0.0004221542041113967,0.0013076030085302887,0.0007684471528309416,9.844229177056247e-05,0.0004252888355926882,0.0,1.5434584392541132e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0007684471528309418,9.84422917705625e-05,0.0004252888355926883,0.0,1.5434584392541135e-05 +94848,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302670950201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,71755.0,,11575.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.00369362435174824,0.0019684779159385222,0.0,0.005662102267686762,0.0018597376093493385,0.0007692494605704109,0.0026736675806982827,0.0,0.0003594653474301505,0.001843744823348451,0.0007692494605704109,0.0007211824507606478,0.0,0.0003594653474301505,1.599278600088763e-05,0.0019524851299376346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001315217830533678,0.0,0.0,0.00044016259060152983,0.0002442390968374093,0.0005716843736548978,0.00021971576440064846,9.1670078800309e-05,8.594201943489995e-05,0.0,4.2836840861048834e-05,1.0685411879893155e-06,0.0001304532418653785,0.0,0.0,0.0,0.0,0.00018777176393136648,7.76686600240849e-05,0.0002699516723595609,0.0,3.629406751782366e-05 +94849,50.0,the Greater Atlanta and Macon Area,G1301210005502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,12466.0,,1245.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0017613071950314603,0.00036640320958827345,0.0,0.0021277104046197337,0.0008675337908234622,0.0005830104508374598,0.0006771661629588118,0.0,0.0,0.0005011305812351888,0.0005830104508374598,0.0006771661629588118,0.0,0.0,0.00036640320958827345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4481560518480685e-05,0.0,0.0,0.0002098910785915248,9.018890697295302e-05,0.00023437263911000548,5.97186217755573e-05,6.947606453979191e-05,8.069639227617561e-05,0.0,0.0,2.4481560518480685e-05,0.0,0.0,0.0,0.0,0.0,9.55610235448094e-05,6.422006382767598e-05,7.459155173752014e-05,0.0,0.0 +94850,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,52587.0,,5052.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0025711329006061173,0.0008591246626086583,0.0,0.0034302575632147755,0.001565785947366283,0.0005699779285704374,0.0007042144948816571,0.0,0.0005902791923963979,0.0011197255147605946,0.0005699779285704374,0.000291132534517267,0.0,0.0005902791923963979,0.0004460604326056883,0.00041308196036439016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.740197462624681e-05,0.0,0.0,0.0003063960591064724,0.00013866636923650562,0.0003637980337327192,0.0001334351425096443,6.792297319616701e-05,3.4693601887611984e-05,0.0,7.03422286262106e-05,2.980329950773124e-05,2.7599859763539332e-05,0.0,0.0,0.0,0.0,0.0001660603725524126,6.0449352814965384e-05,7.468589277708014e-05,0.0,6.260241558826104e-05 +94851,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,41862.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005075337345250016,0.0,0.0,0.005075337345250016,0.0029755800425187956,0.0013066722478120834,0.0007931154285185756,0.0,0.0,0.0029755800425187956,0.0013066722478120834,0.0007931154285185756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006048173452912402,0.0001522724476895175,0.0006048173452912402,0.000354593655474375,0.00015571340116476748,9.451390821046976e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000354593655474375,0.00015571340116476748,9.451390821046976e-05,0.0,0.0 +94852,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,10729.0,,654.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002251369254257687,0.0005191523018616327,0.0,0.0027705215561193196,0.0017841569947043396,0.0005667088692617345,0.00035266296242440683,0.0,6.699272972883901e-05,0.001265004692842707,0.0005667088692617345,0.00035266296242440683,0.0,6.699272972883901e-05,0.0005191523018616327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.468637342626736e-05,0.0,0.0,0.00026828984777248075,9.699976423445825e-05,0.0003029762211987481,0.00015074733557474352,6.753322937941437e-05,4.202593258520474e-05,0.0,7.98335023311816e-06,3.468637342626736e-05,0.0,0.0,0.0,0.0,0.0,0.00019511024669232176,6.197364223696407e-05,3.856620118190525e-05,0.0,7.326131087557049e-06 +94853,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,11428.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0009433128777382585,0.0,0.0,0.0009433128777382583,0.0006582262734155198,0.0002432925314963921,4.1824446425784263e-05,0.0,0.0,0.0006582262734155198,0.0002432925314963921,4.1824446425784263e-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.0001124140448238176,4.395339727062859e-05,0.0001124140448238176,7.844044065353868e-05,2.8993028915825062e-05,4.984194858563185e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.84404406535387e-05,2.8993028915825065e-05,4.984194858563186e-06,0.0,0.0 +94854,50.0,the Greater Atlanta and Macon Area,G1300670030328,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,205520.0,,15411.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011317289694419704,0.0026208311036665247,0.0,0.013938120798086229,0.007630225576396884,0.002235922687598599,0.002616469434757192,0.0,0.0014555030993335543,0.006477805275177712,0.002235922687598599,0.0023073228530371514,0.0,0.0002962388786062422,0.001152420301219172,0.0003091465817200406,0.0011592642207273122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000175108481403261,0.0,0.0,0.0013486598448872102,0.0005099151123483503,0.0015237683262904712,0.0007719477095243416,0.0002664506455572481,0.00027495926720124114,0.0,3.530222260437961e-05,7.699792962715644e-05,2.065535180053079e-05,7.745519997557378e-05,0.0,0.0,0.0,0.0008341652525612655,0.00024443956403827485,0.00028604238040020154,0.0,0.00015912112929072943 +94855,50.0,the Greater Atlanta and Macon Area,G1300590130300,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,106193.0,,3857.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009302111737652606,0.0011354233641961097,0.0,0.010437535101848716,0.0028074238049012545,0.002633076151524006,0.004997035145423456,0.0,0.0,0.0016720004407051452,0.002633076151524006,0.004997035145423456,0.0,0.0,0.0011354233641961097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.58624742483752e-05,0.0,0.0,0.001108515743651273,0.0004455120819455967,0.0011843782178996482,0.00019924925266284068,0.00031377889779397855,0.0005954875931944539,0.0,0.0,7.58624742483752e-05,0.0,0.0,0.0,0.0,0.0,0.0003185667468892208,0.00029878299900363463,0.0005670284720067928,0.0,0.0 +94856,50.0,the Greater Atlanta and Macon Area,G1301390001606,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,9154.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007192416131929624,0.0,0.0,0.0007192416131929624,0.0002560433853417343,0.0002294968758942214,0.0002337013519570067,0.0,0.0,0.0002560433853417343,0.0002294968758942214,0.0002337013519570067,0.0,0.0,0.0,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.571079880691255e-05,3.454357973047306e-05,8.571079880691255e-05,3.051225441398154e-05,2.734875206853098e-05,2.784979232440003e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.051225441398154e-05,2.734875206853098e-05,2.784979232440003e-05,0.0,0.0 +94857,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,109225.0,,641.0,,9.325022323477118,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.0262763450372639,0.0005437393403540818,0.0,0.026820084377617983,0.010764306609512947,0.008307492168059368,0.007204457875533532,0.0,0.0005437393403540818,0.010764306609512947,0.008307492168059368,0.007204457875533532,0.0,0.0,0.0,0.0,0.0005437393403540818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.632991543522772e-05,0.0,0.0,0.003131297320576258,0.0008922628449495238,0.0031676272360114856,0.0012827600032054897,0.0009899865422554693,0.0008585402425592339,0.0,0.0,0.0,0.0,3.632991543522772e-05,0.0,0.0,0.0,0.0012713349560349147,0.000981169115055339,0.0008508935567064128,0.0,6.42191694681566e-05 +94858,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,177645.0,,7628.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.015827980310402424,0.0022452515967399354,0.0,0.018073231907142363,0.009846054319673092,0.0032839413218856864,0.004943205575977285,0.0,0.0,0.007600802722933156,0.0032839413218856864,0.004943205575977285,0.0,0.0,0.0022452515967399354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015001466432782297,0.0,0.0,0.001886189244314352,0.0007277001762959482,0.002036203908642175,0.0009057726925986588,0.0003913408204222584,0.000589072074073488,0.0,0.0,0.00015001466432782297,0.0,0.0,0.0,0.0,0.0,0.001109296577027738,0.0003699822029469249,0.0005569216710514849,0.0,0.0 +94859,50.0,the Greater Atlanta and Macon Area,G1300890021603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,75203.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005920270134409398,0.0,0.0,0.005920270134409396,0.0032563535957213724,0.0019036957183605333,0.0007602511939269282,0.0,0.0,0.0032563535957213724,0.0019036957183605333,0.0007602511939269282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007055083365596197,0.0001569445240368951,0.0007055083365596197,0.00038805401720009647,0.00022686012108976073,9.059781783899279e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003880540172000966,0.0002268601210897608,9.059781783899282e-05,0.0,0.0 +94860,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,NaturalGas,4566.0,,845.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010963649694882593,0.0006706716609520437,0.0,0.0017670366304403033,0.0012913055422918065,0.00019907592649051297,0.00024390316045721757,0.0,3.2669294127026434e-05,0.0006533031754667893,0.00019907592649051297,0.00024390316045721757,0.0,0.0,0.0006380023668250174,0.0,3.2669294127026434e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.481279324550105e-05,0.0,0.0,0.0001306510409660378,8.730391886395044e-05,0.00017546383421153885,7.785248737105706e-05,2.372337474390864e-05,2.9065322858241204e-05,0.0,0.0,4.262990345243497e-05,0.0,2.1828897930660898e-06,0.0,0.0,0.0,0.0001282245187711095,1.976791242439382e-05,2.4219183107410622e-05,0.0,3.244007232087893e-06 +94861,50.0,the Greater Atlanta and Macon Area,G1300890023213,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5756.0,,862.0,,8.72605822017302,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.001051620442595294,0.0006836566715291151,0.0,0.0017352771141244088,0.001221418064982092,0.00029261762688966963,0.00017244424874645597,0.0,4.879717350619138e-05,0.0005377613934529769,0.00029261762688966963,0.00017244424874645597,0.0,4.879717350619138e-05,0.0006836566715291151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.567639116147464e-05,0.0,0.0,0.0001253201728352858,7.888899859704775e-05,0.00017099656399676045,6.408429129178357e-05,3.487084321598435e-05,2.054994576182232e-05,0.0,5.8150925656955255e-06,4.567639116147464e-05,0.0,0.0,0.0,0.0,0.0,0.00012036019527687711,2.883493844051945e-05,1.699289051681262e-05,0.0,4.808539762551294e-06 +94862,50.0,the Greater Atlanta and Macon Area,G1300630040606,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,32233.0,,4596.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0028719026677327284,0.0013529819832405249,0.0,0.0042248846509732535,0.001907266962583335,0.0010683358848293315,0.0012492511139542896,0.0,0.0,0.0005542849793428098,0.0010683358848293315,0.0012492511139542896,0.0,0.0,0.0013529819832405249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.039857212958114e-05,0.0,0.0,0.00034223781807961036,0.0001988296664049935,0.0004326363902091914,6.605282416285536e-05,0.00012731104932911568,0.00014887028738016673,0.0,0.0,9.039857212958115e-05,0.0,0.0,0.0,0.0,0.0,0.0001953078396275787,0.00010939966861273499,0.00012792573929361385,0.0,0.0 +94863,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,92638.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009894928983234163,0.0,0.0,0.009894928983234163,0.0053088799513268895,0.0037651721335025907,0.0008208465248052431,0.0,0.0,0.0053088799513268895,0.0037651721335025907,0.0008208465248052431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011791612338310688,0.00030256391575031455,0.0011791612338310688,0.0006326498597690336,0.00044868892197709735,9.781883251666687e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006326498597690336,0.00044868892197709735,9.781883251666687e-05,0.0,0.0 +94864,50.0,the Greater Atlanta and Macon Area,G1300630040609,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,16783.0,,1828.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013796512511132287,0.0005381115568239205,0.0,0.001917762807937149,0.0009962459996360276,0.0004264320795065801,0.0004950847287945412,0.0,0.0,0.00045813444281210715,0.0004264320795065801,0.0004950847287945412,0.0,0.0,0.0005381115568239205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.595341358617467e-05,0.0,0.0,0.0001644110346700213,8.152367300688694e-05,0.00020036444825619596,5.459521578365204e-05,5.0817291218773114e-05,5.899852766759611e-05,0.0,0.0,3.595341358617467e-05,0.0,0.0,0.0,0.0,0.0,0.00010408601064655592,4.455286544063504e-05,5.1725572169004996e-05,0.0,0.0 +94865,50.0,the Greater Atlanta and Macon Area,G1302190030600,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,32653.0,,,2415.0,3.20458438519356,Mercantile,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,56080.226740887294,0.0,0.0,0.0027652124928129263,0.0,0.00022758938058707438,0.0029928018734000006,0.0020581150979020633,0.0007214033602460435,0.0002132834152518933,0.0,0.0,0.0018305257173149895,0.0007214033602460435,0.0002132834152518933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022758938058707438,0.0,0.0,0.0,0.0,1.8355492364426007e-05,0.0003295256516452384,9.500292903430791e-05,0.0003478811440096644,0.00021814062442556661,8.596840676873964e-05,2.541662045093216e-05,0.0,0.0,0.0,0.0,0.0,1.835549236442601e-05,0.0,0.0,0.0002392338233697833,8.385540936918127e-05,2.4791911270699796e-05,0.0,0.0 +94866,50.0,the Greater Atlanta and Macon Area,G1301170130608,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,25918.0,,4879.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0022451595279210424,0.0014361201267010014,0.0,0.003681279654622044,0.0019177014287245536,0.0007022088816977373,0.0010614000338060507,0.0,0.0,0.0004815813020235521,0.0007022088816977373,0.0010614000338060507,0.0,0.0,0.0014361201267010014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.595307679926151e-05,0.0,0.0,0.00026755290605349753,0.00017030663777185313,0.000363505982852759,5.738945284513421e-05,8.368137079719067e-05,0.00012648573965389796,0.0,0.0,9.595307679926151e-05,0.0,0.0,0.0,0.0,0.0,0.00018936239788015498,6.933923897604023e-05,0.00010480737642525902,0.0,0.0 +94867,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030500,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,297252.0,,37403.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.015301106871529949,0.006360784889805363,0.0,0.02166187403097389,0.011795335699027168,0.004600709641998142,0.002351843790562904,0.0,0.002913967169024258,0.008553888754574536,0.004600709641998142,0.0016380726308758385,0.0,0.0005084181137200142,0.003241446944452633,0.0007137711596870655,0.0024055490553042437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004249898940720856,0.0,0.0,0.0018234026363978452,0.0008440930449846866,0.0022483925304699307,0.0010193500011143662,0.0005482574666627102,0.0001952058748970429,0.0,6.058718083163078e-05,0.00021657424632785585,4.768995254552586e-05,0.0001607245105611863,0.0,0.0,0.0,0.0012242959515948065,0.00047753029950865,0.00024410944334606977,0.0,0.00030245499569891987 +94868,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5511.0,,513.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003884076573037264,0.00015102355259099536,0.0,0.0005394312098947219,0.0002851678217182543,0.00013923874377267753,0.00011502464440379004,0.0,0.0,0.00013414426912725886,0.00013923874377267753,0.00011502464440379004,0.0,0.0,0.00015102355259099536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0090558935968782e-05,0.0,0.0,4.6286704809492856e-05,2.7689098645523433e-05,5.637726374546164e-05,1.59860292922166e-05,1.65931399905712e-05,1.3707535526705063e-05,0.0,0.0,1.0090558935968782e-05,0.0,0.0,0.0,0.0,0.0,2.9803580515607304e-05,1.4552178734320956e-05,1.202150449553338e-05,0.0,0.0 +94869,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950203,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Propane,31957.0,,,7558.0,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0028473509826945666,0.0,0.0007197940261063212,0.0035671450088008874,0.0010643462360106302,0.0013611454185157139,0.0011416226646682457,0.0,0.0,0.00034455220990430913,0.0013611454185157139,0.0011416226646682457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007197940261063212,0.0,0.0,0.0,0.0,5.805123990918322e-05,0.00033931221479482123,0.0001496890700118089,0.0003973634547040045,4.105948798220996e-05,0.00016220454359908935,0.00013604452600429574,0.0,0.0,0.0,0.0,0.0,5.805123990918322e-05,0.0,0.0,0.00011856324772301824,0.0001516253038554628,0.0001271714844453319,0.0,0.0 +94870,50.0,the Greater Atlanta and Macon Area,G1301350050535,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,25114.0,,2462.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0022376098847718077,0.0007247964319328465,0.0,0.002962406316704654,0.0010350990412089194,0.000826041443108968,0.0011012658323867666,0.0,0.0,0.0003103026092760729,0.000826041443108968,0.0011012658323867666,0.0,0.0,0.0007247964319328465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8425928177222986e-05,0.0,0.0,0.00026665186169817323,0.0001297444690381463,0.0003150777898753962,3.6978192229296395e-05,9.84378421564377e-05,0.00013123582731243912,0.0,0.0,4.8425928177222986e-05,0.0,0.0,0.0,0.0,0.0,0.00011009182513796372,8.785672335784605e-05,0.00011712924137958641,0.0,0.0 +94871,35.0,Eastern Counties in South Carolina and Georgia,G1300510010200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,5018.0,,131.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0003330768914343865,3.8058120095503035e-05,0.0,0.00037110463793045166,0.00026227603114498696,8.820493276723129e-05,2.065404761767124e-05,0.0,0.0,0.00022421791104948393,8.820493276723129e-05,2.065404761767124e-05,0.0,0.0,3.8058120095503035e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5419416854313114e-06,0.0,0.0,3.969126518159906e-05,1.586366313965053e-05,4.2233206867030376e-05,2.6719033336728454e-05,1.0510982499303634e-05,2.461249345566967e-06,0.0,0.0,2.5419416854313114e-06,0.0,0.0,0.0,0.0,0.0,2.9848071803634584e-05,1.0038077651158638e-05,2.3505140505467887e-06,0.0,0.0 +94872,35.0,Eastern Counties in South Carolina and Georgia,G1300510004210,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,85934.0,,2637.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.007044579291197218,0.0007682698241784946,0.0,0.007812849115375713,0.004281584071143248,0.002822588222150839,0.0007087071956810633,0.0,0.0,0.0035133142469647534,0.002822588222150839,0.0007087071956810633,0.0,0.0,0.0007682698241784946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1330966367277735e-05,0.0,0.0,0.0008394896725878657,0.00028130980966225823,0.0008908206389551434,0.00041867525439996564,0.0003363626931454517,8.445534460892538e-05,0.0,0.0,5.1330966367277735e-05,0.0,0.0,0.0,0.0,0.0,0.000488185987169493,0.000321831358372874,8.080675660896244e-05,0.0,0.0 +94873,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,10985.0,,2075.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.002578812093621487,0.0016092104438467706,0.0,0.004188103398251327,0.0011642335546206625,0.000311799179512243,0.001981897793009615,0.0004123899936494915,0.0003178637382423825,0.0011642335546206625,0.000311799179512243,0.0006904702266221584,0.0004123899936494915,0.0,0.0,0.0012914275663874564,0.0003178637382423825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010751913242540267,0.0,0.0,0.0003073161149158078,0.00020019977360768277,0.0004148352473412105,0.00013874129633004517,3.715699671125532e-05,8.228308996820778e-05,4.91443680568989e-05,0.0,0.0,8.628652147962946e-05,2.1238013645759404e-05,0.0,0.0,0.0,0.00011531833593116476,3.0883977173952725e-05,0.00019630868271099095,4.084758391783166e-05,3.148467693745024e-05 +94874,50.0,the Greater Atlanta and Macon Area,G1300890020900,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,35415.0,,2364.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002998147626901045,0.0006886302464527092,0.0,0.003686777873353754,0.002521282115728341,0.0007435153406367269,0.00042201079058812384,0.0,0.0,0.0018326518692756315,0.0007435153406367269,0.00042201079058812384,0.0,0.0,0.0006886302464527092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.601003669497297e-05,0.0,0.0,0.0003572842197222594,0.00013390993818482842,0.00040329425641723234,0.00021839404679798154,8.860347500816731e-05,5.029031748696747e-05,0.0,0.0,4.601003669497297e-05,0.0,0.0,0.0,0.0,0.0,0.00027580142634298647,8.13326641141318e-05,4.616348850858888e-05,0.0,0.0 +94875,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,6282.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015084116108574886,0.0,0.0,0.0015084116108574886,0.0007385741684920152,0.000497152220246977,0.00021330154317367381,0.0,5.9300971871083426e-05,0.0007385741684920152,0.000497152220246977,0.00021330154317367381,0.0,5.9300971871083426e-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.00017975645868541318,5.775281195592583e-05,0.00017975645868541318,8.801541704467264e-05,5.92453159972595e-05,2.541901014089706e-05,0.0,7.0668593528589354e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.801541704467264e-05,5.92453159972595e-05,2.541901014089706e-05,0.0,7.0668593528589354e-06 +94876,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,136176.0,,15625.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006353550902345981,0.002657160614216213,0.0,0.009010711516562197,0.0038074178113421393,0.0016485335441136697,0.002185267045021508,0.0,0.0013694931160848785,0.0027609541499692023,0.0016485335441136697,0.0017341889201339447,0.0,0.00020987428812916503,0.0010464636613729363,0.00045107812488756334,0.0011596188279557136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017753562073149207,0.0,0.0,0.0007571400626148954,0.0003564460811256565,0.0009346756833463874,0.0003290174313725367,0.00019645247358482723,0.00020665985489963612,0.0,2.5010302757895417e-05,6.991845908780165e-05,3.0138349361291095e-05,7.747881228239935e-05,0.0,0.0,0.0,0.0003949411584268709,0.00017100139251286954,0.000226676435578429,0.0,0.0001420566968282179 +94877,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,22222.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0052166525588829985,0.0014962479299000374,0.0,0.006712981349566105,0.0033173136253863505,0.0004465941048874787,0.002100844004903419,0.00041384548774472496,0.000434222405077994,0.0033173136253863505,0.0004465941048874787,0.000604596075003382,0.00041384548774472496,0.000434222405077994,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99716943603331e-05,0.0,0.0,0.0006216632007945466,0.0003117424369411297,0.0007216348951548798,0.0003953209041850804,5.322016706433148e-05,7.20491017816416e-05,4.931754753489924e-05,5.1745844130990415e-05,0.0,9.99716943603331e-05,0.0,0.0,0.0,0.0,0.0003566059766285903,4.80081610949349e-05,0.0002258374132550251,4.448773646276966e-05,4.6678222900561374e-05 +94879,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,115006.0,,11532.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005490880167453312,0.0019611198159492004,0.0,0.007451999983402511,0.0034710551248423173,0.0008869258693153015,0.001963495684379487,0.0,0.0011305233048654068,0.0032621028155069946,0.0008869258693153015,0.0011609308747007974,0.0,0.0001809206079302188,0.00020895230933532226,0.0008025648096786901,0.0009496026969351882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013103068651085042,0.0,0.0,0.0006543371386843614,0.00031372451659713007,0.0007853678251952119,0.000388738227260028,0.0001056931708313135,0.0001383457958643407,0.0,2.1559944728679267e-05,1.3960985105330283e-05,5.36227399909016e-05,6.344696141461855e-05,0.0,0.0,0.0,0.00036581522015589364,9.347330148214615e-05,0.0002069332177745402,0.0,0.00011914608578263203 +94880,46.0,the Tallahassee-Valdosta Area,G1301850010800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,115377.0,,11404.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.0055984325398273525,0.0019394001232096356,0.0,0.007537832663036989,0.0031983621662019053,0.0014759284756894555,0.0017868835542743414,0.0,0.0010766761972327062,0.002957903004623149,0.0014759284756894555,0.000989549201214567,0.0,0.00017506958866160137,0.00024045916157875607,0.0007973343530597744,0.000901606608571105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012957961150217352,0.0,0.0,0.0006671547107262736,0.00032261342478336584,0.0007967343222284472,0.000352487756057982,0.00017588362961351938,0.00011792272326033578,0.0,2.0862714688368874e-05,1.6066104341556525e-05,5.327331604776558e-05,6.024019111285141e-05,0.0,0.0,0.0,0.00033806069020684475,0.0001560027830681936,0.0001888701329889074,0.0,0.00011380259002938449 +94881,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,523355.0,,5123.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.025914589869380656,0.0008711990387357144,0.0,0.02678578890811637,0.01023126959671863,0.004949873649443241,0.006797341848689903,0.0,0.004807303813264597,0.009594146789450453,0.004949873649443241,0.006563265617222367,0.0,0.004807303813264597,0.0006371228072681773,0.00023407623146753709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8208384586280535e-05,0.0,0.0,0.0030881917594617913,0.0009671984477983702,0.003146400144048072,0.0011433159931755383,0.0005898669086269822,0.0007821317217994401,0.0,0.0005728771358598307,4.256879053491136e-05,1.5639594051369172e-05,0.0,0.0,0.0,0.0,0.0012018189288110063,0.0005814382849447753,0.0007984516508073192,0.0,0.0005646912794849708 +94882,50.0,the Greater Atlanta and Macon Area,G1301710970300,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,7194.0,,657.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0006409831171338202,0.00019343658849442063,0.0,0.0008344197056282409,0.0003126963985672936,0.0003230081062833218,0.00019871520077762553,0.0,0.0,0.000119259810072873,0.0003230081062833218,0.00019871520077762553,0.0,0.0,0.00019343658849442063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2924470289075132e-05,0.0,0.0,7.638398350051764e-05,3.702596331976631e-05,8.930845378959277e-05,1.4211824182850309e-05,3.849188098932052e-05,2.3680278328346827e-05,0.0,0.0,1.2924470289075132e-05,0.0,0.0,0.0,0.0,0.0,3.3468087670093074e-05,3.45717560828079e-05,2.1268610036691796e-05,0.0,0.0 +94883,50.0,the Greater Atlanta and Macon Area,G1300670030101,ComStock 90.1-2004,gen2_t8_halogen,_1000,NaturalGas,3484.0,,184.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007814991397627158,0.0001462261063710955,0.0,0.0009277252461338114,0.0005281673728992173,0.00018882024934683886,0.00019998570430164537,0.0,1.0834626659849271e-05,0.000392775893187971,0.00018882024934683886,0.00019998570430164537,0.0,0.0,0.00013539147971124626,0.0,1.0834626659849271e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.77054715096542e-06,0.0,0.0,9.312704523636343e-05,4.2269644930742204e-05,0.00010289759238732885,4.6804988657793424e-05,2.250069258912242e-05,2.3831219746166453e-05,0.0,0.0,9.046598238761536e-06,0.0,7.239489122038857e-07,0.0,0.0,0.0,5.858108451328182e-05,2.0942783580304158e-05,2.2181187339980493e-05,0.0,1.2017103149451793e-06 +94884,50.0,the Greater Atlanta and Macon Area,G1301170130503,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,7659.0,,1488.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005867852724120772,0.000437909992261921,0.0,0.0010246952646739982,0.000562847379499869,0.00023891858502761616,0.000222929300146513,0.0,0.0,0.00012493738723794802,0.00023891858502761616,0.000222929300146513,0.0,0.0,0.000437909992261921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9258307526124632e-05,0.0,0.0,6.992535405823571e-05,5.117760371780468e-05,9.918366158436034e-05,1.488839520769234e-05,2.847117580247725e-05,2.6565783048066114e-05,0.0,0.0,2.9258307526124632e-05,0.0,0.0,0.0,0.0,0.0,5.447986922211413e-05,2.312572420360733e-05,2.1578068158638875e-05,0.0,0.0 +94885,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,53426.0,,7608.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.012347684156913391,0.005900734783642743,0.0,0.018248418940556135,0.010155952631840947,0.001597323908735697,0.00422190320557397,0.00043519273447481635,0.0018379655991476351,0.006805728667745706,0.001597323908735697,0.003509438845957173,0.00043519273447481635,0.0,0.0033502239640952414,0.0007124643596167978,0.0018379655991476351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003942511209637179,0.0,0.0,0.0014714538467300354,0.0008255813375693186,0.0018657049676937532,0.0008110278413906744,0.00019035054509934396,0.0004182142354893504,5.186122475066666e-05,0.0,0.00022384153868184234,4.7602524554105816e-05,0.00012280165510326015,0.0,0.0,0.0,0.001038337147925575,0.00016330922482939066,0.00043164428707057534,4.4493785969007836e-05,0.00018791225475205272 +94886,50.0,the Greater Atlanta and Macon Area,G1301170130306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,136467.0,,6897.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011295880883701027,0.0020092743500061583,0.0,0.013305124860107747,0.007547444603488637,0.00473454555955844,0.0010231346970606702,0.0,0.0,0.005538170253482478,0.00473454555955844,0.0010231346970606702,0.0,0.0,0.0020092743500061583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001342475354245846,0.0,0.0,0.001346106694186112,0.0004834352845184123,0.0014803542296106965,0.0006599722614384179,0.0005642059735993432,0.00012192483958950891,0.0,0.0,0.0001342475354245846,0.0,0.0,0.0,0.0,0.0,0.0008397434566755617,0.0005267748043004927,0.00011383596863464206,0.0,0.0 +94887,81.0,the Columbus-Albany Area,G1302150010302,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,89815.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007367146917226142,0.0,0.0,0.007367146917226142,0.004704323828117878,0.0019893796423744313,0.0006734434467338334,0.0,0.0,0.004704323828117878,0.0019893796423744313,0.0006734434467338334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008779285953040701,0.00020407670247034887,0.0008779285953040701,0.0005606051374675222,0.0002370705097345741,8.025294810197378e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005606051374675222,0.0002370705097345741,8.025294810197378e-05,0.0,0.0 +94888,50.0,the Greater Atlanta and Macon Area,G1300770170306,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,153599.0,,7173.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,306613.1346040191,0.0,0.0,0.017279200857956194,0.0026658915555192956,0.0,0.019945131161899263,0.008175646176943063,0.00288288272864296,0.00825147684226503,0.0,0.0006350866656244368,0.007303225415714619,0.00288288272864296,0.007093092713598615,0.0,0.0,0.0008724207612284438,0.001158384128666415,0.0006350866656244368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001781204502459996,0.0,0.0,0.002059130009386715,0.000680614462555865,0.0022372504596327144,0.0008703116968450176,0.00034354773631548155,0.0008452705762262159,0.0,0.0,5.829043513500989e-05,7.739696017593253e-05,4.2433054935057166e-05,0.0,0.0,0.0,0.0009170643210459872,0.00032337369242496893,0.0009255702661545312,0.0,7.123783358662957e-05 +94889,35.0,Eastern Counties in South Carolina and Georgia,G1302450010508,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,101231.0,,1845.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008288013704979901,0.0005374608420510185,0.0,0.008825474547030919,0.005928349511859839,0.0020864232925780477,0.000810701742593034,0.0,0.0,0.005390888669808821,0.0020864232925780477,0.000810701742593034,0.0,0.0,0.0005374608420510185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.590974187888588e-05,0.0,0.0,0.0009876670435612787,0.00027883570219180796,0.0010235767854401647,0.0006424220885975218,0.0002486351493072183,9.660980565653883e-05,0.0,0.0,3.590974187888588e-05,0.0,0.0,0.0,0.0,0.0,0.0006875687991595547,0.0002419829591603082,9.402502712030205e-05,0.0,0.0 +94890,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,52604.0,,4789.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0043654737374230305,0.001409727065284977,0.0,0.005775231492314306,0.0022384385041418456,0.0017917512844787817,0.0017450723932999758,0.0,0.0,0.0008287114388568683,0.0017917512844787817,0.0017450723932999758,0.0,0.0,0.001409727065284977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.419046353193556e-05,0.0,0.0,0.0005202265215954492,0.00023269273442339235,0.0006144169851273847,9.875621643239116e-05,0.00021352013420628424,0.00020795748541934699,0.0,0.0,9.419046353193555e-05,0.0,0.0,0.0,0.0,0.0,0.0002381436378677088,0.00019062134977145583,0.00018565526250286077,0.0,0.0 +94891,50.0,the Greater Atlanta and Macon Area,G1301350050434,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,33605.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0029633091083459432,0.0,0.0,0.0029633091083459432,0.001620067046810807,0.0009668524173025161,0.00037642001783205834,0.0,0.0,0.001620067046810807,0.0009668524173025161,0.00037642001783205834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035313359268032024,8.786137621650418e-05,0.00035313359268032024,0.00019306122841252665,0.00011521851255816768,4.485747129094534e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019306122841252665,0.00011521851255816768,4.485747129094534e-05,0.0,0.0 +94892,81.0,the Columbus-Albany Area,G1300950000900,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Propane,3111.0,,,317.0,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008236797473697626,0.0,8.13010534857392e-05,0.0009048980937817625,0.00032396360783686724,0.0002219030788425618,0.00032809896152383253,0.0,3.093244557850097e-05,0.0002736777070033683,0.0002219030788425618,0.00032809896152383253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.028590083349891e-05,3.093244557850097e-05,0.0,0.0,0.0,6.5547583657099e-06,9.815249591795456e-05,4.01514493529697e-05,0.00010470725428366448,3.261237162290508e-05,2.644272984716057e-05,3.909739444788892e-05,0.0,0.0,0.0,0.0,0.0,4.054214736878555e-06,2.493875512487795e-06,0.0,3.7486364594563e-05,2.5676772072303425e-05,3.796487320567562e-05,0.0,3.57924441112243e-06 +94893,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,8072.0,,1016.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0003565575681572619,0.00017271145059273433,0.0,0.0005292690187499963,0.0002524448858987118,0.00010193184780388356,5.4166254138261314e-05,0.0,0.00012074376127055959,0.00014420102942928943,0.00010193184780388356,5.4166254138261314e-05,0.0,5.6276167147247596e-05,0.00010824385646942236,0.0,6.446759412331198e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.153914238081548e-05,0.0,0.0,4.249078091089212e-05,2.227565971812575e-05,5.4029923291707595e-05,1.7184362066050996e-05,1.2147165562243598e-05,6.454964479501513e-06,0.0,6.70640172109257e-06,7.231954032941024e-06,0.0,4.307188347874457e-06,0.0,0.0,0.0,2.577059555215345e-05,1.0405615523902948e-05,5.529510423642982e-06,0.0,1.2326011779053588e-05 +94894,50.0,the Greater Atlanta and Macon Area,G1301350050320,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,33686.0,,1948.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003001443495915332,0.0005733432248536833,0.0,0.0035747560311627175,0.0012036770486022008,0.0010276414668785776,0.0013434375156819395,0.0,0.0,0.0006303338237485175,0.0010276414668785776,0.0013434375156819395,0.0,0.0,0.0005733432248536833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.830668248397203e-05,0.0,0.0,0.0003576746517629815,0.0001503343337064582,0.0003959813342469535,7.511533407525437e-05,0.00012246151037099628,0.00016009415011170264,0.0,0.0,3.830668248397203e-05,0.0,0.0,0.0,0.0,0.0,0.00013333319520350757,0.00011383345762192322,0.00014881468142152277,0.0,0.0 +94895,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,32407.0,,1875.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002887400918913069,0.0005518605004452914,0.0,0.0034392921089646572,0.0010522238415230374,0.0009897704927072123,0.00139726708512811,0.0,0.0,0.0005003633410777462,0.0009897704927072123,0.00139726708512811,0.0,0.0,0.0005518605004452914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.687240101199518e-05,0.0,0.0,0.00034408744134858764,0.00014899851582766973,0.00038095984236058287,5.962758432621246e-05,0.00011794953521250475,0.0001665103218098704,0.0,0.0,3.687240101199518e-05,0.0,0.0,0.0,0.0,0.0,0.00011655160890516337,0.00010963384293298794,0.00015477099112883348,0.0,0.0 +94896,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,44868.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0035989677973792137,0.0,0.0,0.0035989677973792137,0.0021873851371091357,0.0009954339743734404,0.00041617905949607547,0.0,0.0,0.0021873851371091357,0.0009954339743734404,0.00041617905949607547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004288838188011197,0.00010047007424113698,0.0004288838188011197,0.0002606675423645999,0.00011862443576309472,4.959546025160724e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002606675423645999,0.00011862443576309472,4.959546025160724e-05,0.0,0.0 +94897,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,49779.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,32736.412774265485,0.0,0.0,0.0023796095365467068,0.0,0.0,0.0023796095365467068,0.0012784654405543273,0.0009082554941036249,0.00016054842265857813,0.0,3.23047185073362e-05,0.0012784654405543273,0.0009082554941036249,0.00016054842265857813,0.0,3.23047185073362e-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.00028357308536321716,6.307028640019005e-05,0.00028357308536321716,0.00015235204933425824,0.00010823490526719987,1.9132219326015986e-05,0.0,3.84968565565998e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015235204933425824,0.00010823490526719987,1.9132219326015986e-05,0.0,3.84968565565998e-06 +94898,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,7982.0,,638.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0019164883126872316,0.0005059191700633435,0.0,0.002422407482750575,0.0013970051825306416,0.0005485133130390869,0.00039699395394867564,0.0,7.989503323217097e-05,0.0008910860124672982,0.0005485133130390869,0.00039699395394867564,0.0,7.989503323217097e-05,0.0005059191700633435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3802446747312896e-05,0.0,0.0,0.00022838398682632123,8.175728943698509e-05,0.00026218643357363416,0.00010618889496231595,6.536520803694815e-05,4.730895635967296e-05,0.0,9.520927467384182e-06,3.3802446747312896e-05,0.0,0.0,0.0,0.0,0.0,0.00015120321791431098,5.9367695293807984e-05,4.296817512217707e-05,0.0,8.647345243338135e-06 +94899,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,58684.0,,3990.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005228710983364814,0.001174337784981597,0.0,0.00640304876834641,0.001183207081201633,0.0020755073843073415,0.0031443036132311384,0.0,0.0,8.869296220036104e-06,0.0020755073843073415,0.0031443036132311384,0.0,0.0,0.001174337784981597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.846197505364738e-05,0.0,0.0,0.0006230956202000534,0.0002900755064506792,0.0007015575952537008,1.0569372922970373e-06,0.00024733429806490076,0.0003747007276203908,0.0,0.0,7.846197505364738e-05,0.0,0.0,0.0,0.0,0.0,0.00012963948028609792,0.0002274054160986802,0.00034450933632598855,0.0,0.0 +94900,35.0,Eastern Counties in South Carolina and Georgia,G1300330950400,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,19831.0,,8426.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0044155647810230955,0.006535330209164548,0.0,0.010950894990187646,0.0036055823170256522,0.00038538249210460325,0.0058578785686164234,0.0004248425542420447,0.0006772090581989198,0.002816138491927616,0.00038538249210460325,0.0007892012427488309,0.0004248425542420447,0.0,0.0007894438250980363,0.005068677325867592,0.0006772090581989198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004366520368881431,0.0,0.0,0.0005261942361315538,0.0005715256512794747,0.0009628462730196968,0.00033559372720994783,4.59252793488561e-05,9.404757164180352e-05,5.0627657930946264e-05,0.0,5.274595823091412e-05,0.0003386589824589389,4.524709619829005e-05,0.0,0.0,0.0,0.0003170171478335384,3.388436256054371e-05,0.0005150479986017684,3.735384827803118e-05,5.954291574581483e-05 +94901,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300830040101,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,15255.0,,3212.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013591505941063632,0.0009454547012133295,0.0,0.002304605295319693,0.001356050943870295,0.0004723437305279436,0.0004762413105277518,0.0,0.0,0.00041059624265696554,0.0004723437305279436,0.0004762413105277518,0.0,0.0,0.0009454547012133295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.316984091047497e-05,0.0,0.0,0.0001619689172417801,0.00010940156651535172,0.00022513875815225509,4.893043429850241e-05,5.6288834314093026e-05,5.6753305885653656e-05,0.0,0.0,6.316984091047497e-05,0.0,0.0,0.0,0.0,0.0,0.00013247371517984848,4.614364165873916e-05,4.652439940616686e-05,0.0,0.0 +94902,50.0,the Greater Atlanta and Macon Area,G1300890021213,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,28214.0,,1381.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0024148226496990208,0.0004022375773541474,0.0,0.002817060227053168,0.0015834364858888783,0.0007901691893731137,0.0004434545517911766,0.0,0.0,0.0011811989085347308,0.0007901691893731137,0.0004434545517911766,0.0,0.0,0.0004022375773541474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6874800690604745e-05,0.0,0.0,0.0002877703127779535,0.00011310216939917134,0.00031464511346855823,0.0001407614672673304,9.416311993004705e-05,5.284572558057609e-05,0.0,0.0,2.6874800690604748e-05,0.0,0.0,0.0,0.0,0.0,0.00017685832485517464,8.825614442391177e-05,4.95306441894719e-05,0.0,0.0 +94903,50.0,the Greater Atlanta and Macon Area,G1300670031205,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,90802.0,,6034.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00467407787755432,0.001026197858269816,0.0,0.005700275735824136,0.0021746288281694766,0.001587541100828688,0.0014625597831787358,0.0,0.0004755637540086563,0.0017567596702216717,0.001587541100828688,0.0008542310828567241,0.0,0.0004755637540086563,0.00041786915794780443,0.0006083287003220116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.856468792738853e-05,0.0,0.0,0.0005570000506759093,0.000222719188255821,0.0006255647386032978,0.00020934936279899268,0.00018918394104172514,0.00010179692527696927,0.0,5.6671934448180116e-05,2.791963379993595e-05,4.064505412745258e-05,0.0,0.0,0.0,0.0,0.0002386500544006323,0.0001742213499463825,0.00016050553882962704,0.0,5.2189741207776265e-05 +94904,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,49023.0,,6693.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009620301752121021,0.004604422139202229,0.0,0.01422472389132325,0.004910451255525842,0.0012814207221359228,0.0048856361455544405,0.0003639788529042261,0.0027833086351738336,0.0036062953025779703,0.0012814207221359228,0.0015853699593000824,0.0003639788529042261,0.0027833086351738336,0.0013041559529478714,0.003300266186254358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003076412644297179,0.0,0.0,0.0011464335034366473,0.0005511192444617352,0.001454074767866365,0.0004297555175179475,0.00015270452899574747,0.0001889255954245815,4.337468431484962e-05,0.0003316817239193466,8.713627340171326e-05,0.00022050499102800464,0.0,0.0,0.0,0.0,0.0005019544367995202,0.0001309889424437616,0.0004994177952768503,3.720651944378407e-05,0.00028451440523632955 +94905,81.0,the Columbus-Albany Area,G1302150001600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,36147.0,,1580.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003088479219375617,0.0004650702938353879,0.0,0.003553549513211005,0.0014669324914238955,0.0009315523095604705,0.0011550647122266396,0.0,0.0,0.0010018621975885073,0.0009315523095604705,0.0011550647122266396,0.0,0.0,0.0004650702938353879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.107395456262703e-05,0.0,0.0,0.00036804743572237337,0.00013462703054880297,0.0003991213902850004,0.00011938976647677649,0.0001110110881187341,0.00013764658112686283,0.0,0.0,3.107395456262703e-05,0.0,0.0,0.0,0.0,0.0,0.00016476037079396095,0.0001046284712039978,0.00012973254828704172,0.0,0.0 +94906,50.0,the Greater Atlanta and Macon Area,G1301210001202,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,843930.0,,69541.0,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.0,0.0,0.13376163972592636,0.03641396176444906,0.0,0.1701756014903754,0.08001799361667918,0.012796480574599697,0.07669448129153475,0.0,0.0006665914136704108,0.04427062326590053,0.012796480574599697,0.07669448129153475,0.0,0.0,0.03574737035077864,0.0,0.0006665914136704108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024329678598568726,0.0,0.0,0.01594011631955767,0.007830565827932831,0.01837308417941454,0.0052756446903887075,0.001524931880754624,0.009139533242565721,0.0,0.0,0.002388430121952725,0.0,4.453773790414711e-05,0.0,0.0,0.0,0.008639178117846997,0.0013815776923265955,0.008280353637801578,0.0,7.196883718571179e-05 +94907,50.0,the Greater Atlanta and Macon Area,G1301210011900,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,871386.0,,23905.0,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.0,0.0,0.13811337340119925,0.01251756038357249,0.0,0.15063093378477177,0.0617622876864038,0.00882330094211063,0.07952741290879693,0.0,0.0005179868413517492,0.04976265955029169,0.00882330094211063,0.07952741290879693,0.0,0.0,0.011999628136112118,0.0,0.0005179868413517492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008363504381135682,0.0,0.0,0.016458702037251614,0.006625819808533188,0.017295052475365183,0.005930119335658284,0.0010514556093663507,0.009477127092226978,0.0,0.0,0.0008017452236146548,0.0,3.46088621445866e-05,0.0,0.0,0.0,0.007091385412648513,0.0010130684910828697,0.00913113093657744,0.0,5.9473903385128224e-05 +94908,46.0,the Tallahassee-Valdosta Area,G1301850010800,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,222442.0,,20580.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.010926423876914641,0.0034998315014270628,0.0,0.014426255378341702,0.006896791445894981,0.002299432842205228,0.0023753719801673143,0.0,0.0028546591100741814,0.006525836824264636,0.002299432842205228,0.0016525228754331815,0.0,0.00044863133501159605,0.0003709546216303447,0.0007228491047341326,0.002406027775062585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002338386360305294,0.0,0.0,0.001302080507686377,0.0005670451133868958,0.0015359191437169066,0.000777671177773889,0.0002740189028264899,0.00019692791061799646,0.0,5.346251646800171e-05,2.478505685656326e-05,4.8296624748361896e-05,0.0001607569544256042,0.0,0.0,0.0,0.0007342802227025847,0.0002448135589874994,0.0002528985659899704,0.0,0.00030392679603685236 +94909,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950200,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,10879.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,24284.436554246196,0.0,0.0,0.0009124940640495969,0.0,0.0,0.0009124940640495969,0.0004053176303737606,0.00024656029699574413,0.000260616136680092,0.0,0.0,0.0004053176303737606,0.00024656029699574413,0.000260616136680092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010873906552373283,4.144535553307573e-05,0.00010873906552373283,4.83004351519167e-05,2.9381819944764045e-05,3.105681042705207e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.83004351519167e-05,2.9381819944764045e-05,3.105681042705207e-05,0.0,0.0 +94910,50.0,the Greater Atlanta and Macon Area,G1301130140408,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,200841.0,,39509.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.053770681267751946,0.03494554350388889,0.0,0.08871622477164084,0.061923331933669966,0.01803409816957476,0.0027299073338442814,0.0006548347119423114,0.005373960405356738,0.03070769965269766,0.01803409816957476,0.0027299073338442814,0.0006548347119423114,0.0016440491824401533,0.031215632280972305,0.0,0.0037299112229165847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023348569489003664,0.0,0.0,0.006407751127719451,0.0039484313022950385,0.008742608076619817,0.0036593789113334423,0.0021490896183381613,0.0003253179313445144,7.803542311513687e-05,0.00019591825423132805,0.0020856460835252406,0.0,0.00024921086537512565,0.0,0.0,0.0,0.006102282004086905,0.0017771839673939595,0.0002690208016259038,6.453118644547995e-05,0.0005295810294480136 +94911,35.0,Eastern Counties in South Carolina and Georgia,G1302450000700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5249.0,,345.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.000907462013067681,0.00027384312115084686,0.0,0.001181305134218528,0.000694077762820268,0.0002530836456422807,0.00020453459335730725,0.0,2.960913239867205e-05,0.0004498437740680931,0.0002530836456422807,0.00020453459335730725,0.0,0.0,0.0002442339887521748,0.0,2.960913239867205e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.829546562008464e-05,0.0,0.0,0.00010814510206465625,4.7331608669639475e-05,0.0001264405676847409,5.360929731404169e-05,3.0160773999074752e-05,2.437503075153982e-05,0.0,0.0,1.6317278760528525e-05,0.0,1.9781868595561164e-06,0.0,0.0,0.0,7.429036224955161e-05,2.7088716454197797e-05,2.189228620628469e-05,0.0,3.169202774706801e-06 +94912,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,13039.0,,1342.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013436369183278275,0.0003910297191616169,0.0,0.0017346970110888823,0.001116503141732319,0.0005169282888310983,0.00010126558052546457,0.0,0.0,0.0007254734225707022,0.0005169282888310983,0.00010126558052546457,0.0,0.0,0.0003910297191616169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.612705477558884e-05,0.0,0.0,0.00016011961372864927,7.087431565885904e-05,0.00018624666850423815,8.64538050480093e-05,6.160172945832408e-05,1.2067698808041157e-05,0.0,0.0,2.612705477558884e-05,0.0,0.0,0.0,0.0,0.0,0.00011987395446748998,5.5500281049055e-05,1.0872432987693126e-05,0.0,0.0 +94913,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,121347.0,,,,9.325022323477118,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.03420157572173559,0.0,0.0,0.03420157572173559,0.014025416889266616,0.011166012607872717,0.008483023105956508,0.0,0.0005272115027978054,0.014025416889266616,0.011166012607872717,0.008483023105956508,0.0,0.0005272115027978054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004075739449808533,0.0012205804976370997,0.004075739449808533,0.0016713833707745318,0.0013306333735391084,0.0010109064040757516,0.0,6.282683399818561e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0016713833707745318,0.0013306333735391084,0.0010109064040757516,0.0,6.282683399818561e-05 +94914,50.0,the Greater Atlanta and Macon Area,G1301210001001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,125972.0,,18708.0,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,699376.6742607838,0.0,0.0,0.03157356116612956,0.015859476553064977,0.0,0.04743303771919455,0.03817532746788635,0.0034047345365929697,0.005246660390458228,0.0,0.0006064037084150449,0.022922254623236417,0.0034047345365929697,0.005246660390458228,0.0,0.0,0.015253072844649935,0.0,0.0006064037084150449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001059636206499344,0.0,0.0,0.0037625647437709566,0.0023227923332383897,0.0048222009502703,0.002731604035393093,0.00040573611769287885,0.000625235123266826,0.0,0.0,0.001019119905533038,0.0,4.051630096630592e-05,0.0,0.0,0.0,0.0038810312230546182,0.0003461366782994966,0.0005333930091172502,0.0,6.164902522747639e-05 +94915,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,11618.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.0016736303339459553,0.0,0.0,0.0016736303339459553,0.0011181920831119868,0.00013359125219094967,0.00041027309367183765,0.0,1.1628498862555079e-05,0.0011181920831119868,0.00013359125219094967,0.00041027309367183765,0.0,1.1628498862555079e-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.0001994422561099741,6.813334694797136e-05,0.0001994422561099741,0.00013325209713088763,1.591972862412274e-05,4.889119763395275e-05,0.0,1.3857385357327924e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013325209713088763,1.591972862412274e-05,4.889119763395275e-05,0.0,1.3857385357327924e-06 +94916,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,52875.0,,5390.0,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,215998.51729091106,0.0,0.0,0.008186790762587017,0.0028225041840098473,0.0,0.011009294946596866,0.005588012345425763,0.0016507554934604598,0.003677499116810201,0.0,9.297339700906715e-05,0.002858481558424983,0.0016507554934604598,0.003677499116810201,0.0,0.0,0.00272953078700078,0.0,9.297339700906715e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018858221265406432,0.0,0.0,0.000975603410292088,0.00048583921178140985,0.0011641856229461522,0.00034063950545808446,0.00019671721626723392,0.00043824018272239793,0.0,0.0,0.00018237030727398946,0.0,6.211905380074886e-06,0.0,0.0,0.0,0.0005909082884005412,0.00017456029853029785,0.0003888797258094187,0.0,9.831537136524696e-06 +94917,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,69796.0,,4994.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003381038079912709,0.0008492311209362689,0.0,0.004230269200848978,0.002059381478939133,0.001131321171129309,0.0007326894553222621,0.0,0.0003068593650968539,0.001968424724854262,0.001131321171129309,0.0002041828421133281,0.0,7.709161145438959e-05,9.095675408487087e-05,0.0005285066132089339,0.00022976775364246424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.674030354795554e-05,0.0,0.0,0.0004029114902500564,0.00016264562806164425,0.00045965179379801185,0.00023457320520819572,0.00013481726269788636,2.4332057567803843e-05,0.0,9.186851884752615e-06,6.0771605152934826e-06,3.53115010993895e-05,1.5351641933272563e-05,0.0,0.0,0.0,0.00022376788472913285,0.00012292688265959343,7.96124327898983e-05,0.0,3.334266707711668e-05 +94918,50.0,the Greater Atlanta and Macon Area,G1301210011503,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,18081.0,,1565.0,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.004341459714723724,0.0012414331768270041,0.0,0.00558289289155073,0.0032663504631864682,0.0010493873516043326,0.0010845378579435383,0.0,0.00018261721881639075,0.0022075345051758544,0.0010493873516043326,0.0010845378579435383,0.0,0.0,0.0010588159580106136,0.0,0.00018261721881639075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.294466562244639e-05,0.0,0.0,0.0005173645760700183,0.00021285189597615916,0.0006003092416924647,0.0002630682370625021,0.00012505375564231488,0.0001292425833652014,0.0,0.0,7.07433450565329e-05,0.0,1.22013205659135e-05,0.0,0.0,0.0,0.0003512194139752972,0.00011283700717895755,0.00011661662004552887,0.0,1.9636200492681132e-05 +94919,50.0,the Greater Atlanta and Macon Area,G1301510070502,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,78978.0,,9940.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004065412300365326,0.001690377197064994,0.0,0.005755789497430322,0.0030258812103076313,0.0013090148532810784,0.0007526006511969812,0.0,0.0006682750522832102,0.002253848082994272,0.0013090148532810784,0.00035602565731466027,0.0,0.00014650597641389633,0.0007720331273133591,0.00039657499388232097,0.0005217690758693138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011294094674547681,0.0,0.0,0.000484467087448242,0.0002346952892826448,0.0005974080341937188,0.00026858658744671895,0.0001559926931245285,4.242686854678422e-05,0.0,1.7458825438350502e-05,5.158266005305646e-05,2.649678151268203e-05,3.4861505179738316e-05,0.0,0.0,0.0,0.0003140639084109375,0.00013586598164824483,7.811433614193672e-05,0.0,6.936196771328333e-05 +94920,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,9495.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0022799859017714878,0.0,0.0,0.002279985901771488,0.0012116586302808538,0.00042172336899672856,0.0005672878187779096,0.0,7.92333766422565e-05,0.0012116586302808538,0.00042172336899672856,0.0005672878187779096,0.0,7.92333766422565e-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.0002716970537660997,8.057325501896598e-05,0.0002716970537660997,0.0001443886472112802,5.025513393381007e-05,6.760148335987513e-05,0.0,9.441933380778593e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014438864721128016,5.0255133933810066e-05,6.760148335987512e-05,0.0,9.441933380778592e-06 +94921,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,20343.0,,460.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00480544639840124,0.0003647381951903457,0.0,0.005170184593591586,0.0024192646139484814,0.001109184565917852,0.0015470358142937455,0.0,9.461689235776768e-05,0.002149143311115904,0.001109184565917852,0.0015470358142937455,0.0,0.0,0.00027012130283257804,0.0,9.461689235776768e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4368751671409104e-05,0.0,0.0,0.0005726555080056104,0.00022121883960066907,0.0005970242596770194,0.000256109142121197,0.00013217932287809786,0.0001843571869685199,0.0,0.0,1.8047243301320214e-05,0.0,6.321508370088893e-06,0.0,0.0,0.0,0.00027936326816951137,0.00012808248570720033,0.00017864312095691465,0.0,1.0925834288944684e-05 +94922,50.0,the Greater Atlanta and Macon Area,G1300590150700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,21357.0,,1048.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004688581303207598,0.0008312060910800395,0.0,0.005519787394287637,0.0022032337373414103,0.0013123958460953304,0.001735773356566845,0.0,0.00026846716135779186,0.0016404948076191627,0.0013123958460953304,0.001735773356566845,0.0,0.0,0.0005627389297222477,0.0,0.00026846716135779186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.553650463453066e-05,0.0,0.0,0.0005587337287869753,0.00020370562361697248,0.000614270233421506,0.00019549618992202464,0.00015639695193761977,0.00020685044304983774,0.0,0.0,3.759904254063151e-05,0.0,1.7937462093899154e-05,0.0,0.0,0.0,0.0002451871431713915,0.0001460501365608184,0.00019316575598701133,0.0,2.9876401769373355e-05 +94923,81.0,the Columbus-Albany Area,G1302150010501,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,33239.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.002961516318122021,0.0,0.0,0.002961516318122021,0.000775464971930354,0.0011924139630909438,0.0009936066934944253,0.0,0.0,0.000775464971930354,0.0011924139630909438,0.0009936066934944253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003529199079829214,0.0001073499719259765,0.0003529199079829214,9.241111550288045e-05,0.00014209836479930806,0.00011840677044171508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.241111550288045e-05,0.00014209836479930806,0.00011840677044171508,0.0,0.0 +94924,50.0,the Greater Atlanta and Macon Area,G1301350050728,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,65706.0,,4906.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005854379986956082,0.0014439766659132135,0.0,0.007298325963262995,0.0022760025822502338,0.0019049345525047094,0.003117419518114351,0.0,0.0,0.0008320259163370203,0.0019049345525047094,0.003117419518114351,0.0,0.0,0.0014439766659132135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.647758125018013e-05,0.0,0.0,0.0006976536605401178,0.0003280509373818089,0.000794131241790298,9.915070895467697e-05,0.00022700688486318297,0.00037149606672225784,0.0,0.0,9.647758125018014e-05,0.0,0.0,0.0,0.0,0.0,0.0002476519637596751,0.00020727603142481043,0.00033920658594352953,0.0,0.0 +94925,50.0,the Greater Atlanta and Macon Area,G1300210011900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,409367.0,,10025.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.01988153298006355,0.0017047919808994968,0.0,0.021586324960963046,0.011155251921401845,0.0032360391842195173,0.0036432346645924496,0.0,0.0035517991907492376,0.01040866186272626,0.0032360391842195173,0.002685032742368536,0.0,0.0035517991907492376,0.0007465900586755834,0.0009582019222239134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001139042947856683,0.0,0.0,0.0023692439126472517,0.0007712944568381984,0.00248314820743292,0.001240380144820652,0.00038563254382789364,0.0003199701696289858,0.0,0.0004232610543697203,4.988280979745318e-05,6.402148498821512e-05,0.0,0.0,0.0,0.0,0.001283226480755056,0.00037225256795721316,0.00041909364576880767,0.0,0.00040857551295184376 +94926,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,65481.0,,18564.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.028667392935091178,0.01641946629076925,0.0,0.04508685922586043,0.03568761573695462,0.004512005743685877,0.0014312117630396665,0.0006468118109510452,0.002809121953976438,0.021175571102545716,0.004512005743685877,0.0014312117630396665,0.0006468118109510452,0.0009017002976160993,0.014512044634408906,0.0,0.001907421656360339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010970553042058508,0.0,0.0,0.0034162343520453896,0.0018314611873685457,0.004513289656251241,0.0025234493275510077,0.0005376864597735271,0.0001705545670308441,7.707923538365597e-05,0.00010745377296569547,0.0009696122431214829,0.0,0.00012744306108436758,0.0,0.0,0.0,0.003572405568438495,0.0004516612867157423,0.00014326731462206344,6.474722582211037e-05,0.00028119902951142373 +94927,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7941.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001588058522868442,0.0,0.0,0.001588058522868442,0.0008826498909458889,0.0004375204200809363,0.00022951212962657807,0.0,3.8376082215038644e-05,0.0008826498909458889,0.0004375204200809363,0.00022951212962657807,0.0,3.8376082215038644e-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.00018924527914670152,5.5358693249677506e-05,0.00018924527914670152,0.00010518335602591525,5.2138301478363156e-05,2.7350432249992012e-05,0.0,4.573189392431097e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010518335602591525,5.2138301478363156e-05,2.7350432249992012e-05,0.0,4.573189392431097e-06 +94928,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,13859.0,,5975.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0033016266334710566,0.00463437406000653,0.0,0.007936000693477588,0.0025512385665951184,0.0007027610656485747,0.003702130092009474,0.00041247085443256,0.0005675618363579963,0.0015659499249051085,0.0007027610656485747,0.000620525649267882,0.00041247085443256,0.0,0.0009852886416900106,0.003081604442741592,0.0005675618363579963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030964337603512195,0.0,0.0,0.00039344524550866323,0.00041209167643696835,0.0007030886215437851,0.00018660969911392746,8.374599271915438e-05,7.394623727152118e-05,4.9152952348453156e-05,0.0,6.58315659097929e-05,0.00020589585365795711,3.792135913999479e-05,0.0,0.0,0.0,0.0002260265436331101,6.226099618761244e-05,0.00032798958111306494,3.654278466839386e-05,5.028304363604323e-05 +94929,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,226289.0,,5756.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013257133076664842,0.0009788755236396951,0.0,0.014236008600304537,0.006788742623401179,0.004887001787847734,0.0013901844478620801,0.0,0.0011700797411935448,0.006207966904725929,0.004887001787847734,0.0009920846428976345,0.0,0.0011700797411935448,0.0005807757186752495,0.0003980998049644455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.540250841971499e-05,0.0,0.0,0.0015798279494056563,0.0004552227955456094,0.001645230457825371,0.0007397918968117251,0.0005823749349568704,0.00011822488602642219,0.0,0.00013943623161063876,3.880390091825941e-05,2.659860750145557e-05,0.0,0.0,0.0,0.0,0.0007845630364481518,0.0005647821952455226,0.00016066116984285285,0.0,0.00013522405628884395 +94930,50.0,the Greater Atlanta and Macon Area,G1301350050714,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7904.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005760960605358388,0.0,0.0,0.0005760960605358388,0.00038161390333591393,0.0001564240371044219,3.802774649606529e-05,0.0,0.0,0.00038161390333591393,0.0001564240371044219,3.802774649606529e-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,6.865336986976292e-05,1.8632281636096657e-05,6.865336986976292e-05,4.54769304077451e-05,1.8641053135934993e-05,4.531766704114682e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.54769304077451e-05,1.8641053135934993e-05,4.531766704114682e-06,0.0,0.0 +94931,50.0,the Greater Atlanta and Macon Area,G1300350150300,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,205628.0,,8493.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.018321203926027797,0.0024998832601919752,0.0,0.020821087186219778,0.00905303489294045,0.0062867044708718196,0.0054813785120138014,0.0,0.0,0.006553151632748475,0.0062867044708718196,0.0054813785120138014,0.0,0.0,0.0024998832601919752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016702747734531116,0.0,0.0,0.0021833038999287905,0.0008102838881331671,0.002350331377274102,0.0007809269289491756,0.0007491749147257094,0.0006532057134773822,0.0,0.0,0.00016702747734531116,0.0,0.0,0.0,0.0,0.0,0.001021927038589878,0.0007096574086351579,0.0006187503943611832,0.0,0.0 +94932,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock 90.1-2004,gen4_led,100001_200000,NaturalGas,386182.0,,47134.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.01818177642180735,0.008015577251500311,0.0,0.026197353673307656,0.012248647849453656,0.004967940887730275,0.0036159830990898294,0.0,0.005364746376311056,0.009941998750150467,0.004967940887730275,0.002527108413200126,0.0,0.000744710640365058,0.0023066490993031894,0.0010888746858897028,0.004620035735945998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005355537096495915,0.0,0.0,0.002166687267190769,0.001014882649505723,0.00270224097684036,0.001184768836808536,0.0005920199443598485,0.0003011506408759974,0.0,8.874573225337574e-05,0.0001541167208837628,7.275219975736783e-05,0.00030868360437003316,0.0,0.0,0.0,0.0012634405193149493,0.0005124400580591333,0.0003729864406830762,0.0,0.0005533703010313718 +94933,35.0,Eastern Counties in South Carolina and Georgia,G1300510011104,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,41962.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033693737592292473,0.0,0.0,0.003369373759229247,0.001853275543293865,0.0012191659078319205,0.0002969323081034618,0.0,0.0,0.001853275543293865,0.0012191659078319205,0.0002969323081034618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040152296282824115,8.49783582782712e-05,0.00040152296282824115,0.00022085192687281246,0.00014528608058128723,3.538495537414146e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022085192687281249,0.00014528608058128725,3.538495537414146e-05,0.0,0.0 +94934,50.0,the Greater Atlanta and Macon Area,G1301990970600,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,8685.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018496609971058713,0.0,0.0,0.001849660997105871,0.001048642987940679,0.00020230150236634598,0.0005560396567493639,0.0,4.259414297574332e-05,0.001048642987940679,0.00020230150236634598,0.0005560396567493639,0.0,4.259414297574332e-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.00022042176713117236,7.836355609631209e-05,0.00022042176713117236,0.00012496546169988082,2.4108014773870844e-05,6.626254428648148e-05,0.0,5.075890273321129e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012496546169988085,2.410801477387085e-05,6.626254428648151e-05,0.0,5.07589027332113e-06 +94935,85.0,Rural Climate Zone 3A,G1302850960502,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7325.0,,,1510.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005178698704136686,0.0,0.00014236106056474278,0.0006602309309784115,0.00042881447686218024,0.0002003138882919733,3.1102565824257865e-05,0.0,0.0,0.00028645341629743743,0.0002003138882919733,3.1102565824257865e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014236106056474278,0.0,0.0,0.0,0.0,1.1481049228034613e-05,6.171302431005416e-05,2.6171027221734792e-05,7.319407353808875e-05,3.413580834417131e-05,2.3870814975062008e-05,3.706400990820848e-06,0.0,0.0,0.0,0.0,0.0,1.1481049228034613e-05,0.0,0.0,4.7538939605775256e-05,2.2207062381363356e-05,3.448071550950125e-06,0.0,0.0 +94936,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,20857.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0019525341318724467,0.0,0.0,0.0019525341318724467,0.0008797482541299481,0.00047725406753557596,0.0005955318102069224,0.0,0.0,0.0008797482541299481,0.00047725406753557596,0.0005955318102069224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023267993667480677,8.097437500496943e-05,0.00023267993667480677,0.00010483799730784967,5.6873498086038156e-05,7.096844128091893e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010483799730784967,5.6873498086038156e-05,7.096844128091893e-05,0.0,0.0 +94937,50.0,the Greater Atlanta and Macon Area,G1302170100600,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,254530.0,,33083.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.0681446766747594,0.029261640911961512,0.0,0.09740631758672093,0.0775776716781802,0.00947707485024636,0.0043177039920927985,0.0006474573317204575,0.0053864097344811165,0.05205221276232384,0.00947707485024636,0.0043177039920927985,0.0006474573317204575,0.001650227738375956,0.02552545891585635,0.0,0.00373618199610516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001955093315211968,0.0,0.0,0.008120664730142202,0.004355329573881096,0.010075758045354169,0.006202958014201385,0.0011293640418697463,0.0005145321430040517,7.715619435790452e-05,0.0001966543367091157,0.0017054632802123053,0.0,0.0002496300349996624,0.0,0.0,0.0,0.008024673028578061,0.0009803133465524938,0.00044662545319049823,6.697330913159667e-05,0.0005571729079015185 +94938,50.0,the Greater Atlanta and Macon Area,G1301170130509,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,47558.0,,10152.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009010395118604263,0.006983373577790047,0.0,0.01599376869639431,0.005857370032844954,0.001149671135380245,0.00488169154714858,0.00036419401281727294,0.003740913688174272,0.004493686503954126,0.001149671135380245,0.002602717748156525,0.00036419401281727294,0.0004001257182960941,0.0013636835288908286,0.0022789737989920567,0.003340787969878178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004665880284445578,0.0,0.0,0.0010737483495265143,0.0006944535020967429,0.0015403363779710718,0.0005355024284060182,0.00013700370159838599,0.00031015997074269663,4.340017446766089e-05,4.7682074311752676e-05,9.111332826173178e-05,0.0001522676511436199,0.00022321184094665656,0.0,0.0,0.0,0.0005641147069272496,0.00011072313887650069,0.0004701485446517713,3.507499059356647e-05,0.000360281904167079 +94939,35.0,Eastern Counties in South Carolina and Georgia,G1301890950500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,46125.0,,3677.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0022458339596324083,0.0006253675776466823,0.0,0.0028712015372790913,0.0011983242069356888,0.0007788061253758195,0.0004731878855783691,0.0,0.00042088331938921336,0.0010852931528828522,0.0007788061253758195,0.00028918219476106125,0.0,9.255248661267564e-05,0.00011303105405283662,0.00018400569081730795,0.0003283308327765378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.178317042572821e-05,0.0,0.0,0.0002676315226779073,0.00011072558117431658,0.0003094146931036355,0.0001293322054429554,9.280876189053953e-05,3.446126138724416e-05,0.0,1.1029293957168273e-05,7.552031738936162e-06,1.229411535477325e-05,2.19370233320188e-05,0.0,0.0,0.0,0.00012913726602383833,8.392794972475215e-05,5.0993036363214216e-05,0.0,4.535644099183076e-05 +94940,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,9156.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0018819994629379405,0.0,0.0,0.0018819994629379405,0.0010517031496690334,0.00041179852014801163,0.0003459636894515229,0.0,7.245139659563332e-05,0.0010517031496690334,0.00041179852014801163,0.0003459636894515229,0.0,7.245139659563332e-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.00022427028091987522,7.193336666541803e-05,0.00022427028091987522,0.00012532722004733615,4.907236777411815e-05,4.122709668590806e-05,0.0,8.633740544311613e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012532722004733615,4.907236777411815e-05,4.122709668590806e-05,0.0,8.633740544311613e-06 +94941,50.0,the Greater Atlanta and Macon Area,G1301210011617,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5241.0,,136.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012583881269435625,0.00010785002415605687,0.0,0.0013662381510996192,0.0008160706965857465,0.0002525046961261055,0.00018981273423171054,0.0,0.00010785002415605687,0.0008160706965857465,0.0002525046961261055,0.00018981273423171054,0.0,0.0,0.0,0.0,0.00010785002415605687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.206602280251001e-06,0.0,0.0,0.0001499597534271331,5.1515315992867076e-05,0.0001571663557073841,9.724961466089533e-05,3.009051115432384e-05,2.261962761191393e-05,0.0,0.0,0.0,0.0,7.206602280251001e-06,0.0,0.0,0.0,9.387737948815058e-05,2.9047090258165964e-05,2.1835267652306226e-05,0.0,1.2406618308761358e-05 +94942,50.0,the Greater Atlanta and Macon Area,G1301510070111,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13028.0,,799.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011488510251335248,0.00023266177169317892,0.0,0.0013815127968267037,0.0009516656175836401,0.0002819277499812124,0.00014788905566241362,0.0,0.0,0.0007190038458904613,0.0002819277499812124,0.00014788905566241362,0.0,0.0,0.00023266177169317892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5545160013367568e-05,0.0,0.0,0.00013690481139693646,5.257732865577365e-05,0.00015244997141030403,8.568133183661909e-05,3.359640596939415e-05,1.7623454068625307e-05,0.0,0.0,1.5545160013367568e-05,0.0,0.0,0.0,0.0,0.0,0.00010501632451472268,3.111073420610417e-05,1.6319560962025557e-05,0.0,0.0 +94943,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,7470.0,,1923.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,24284.436554246196,0.0,0.0,0.0005814452809162769,0.0005660697881611278,0.0,0.0011475150690774048,0.0005697525409168522,0.00034136049084934806,0.00023640203731120456,0.0,0.0,3.682752755724334e-06,0.00034136049084934806,0.00023640203731120456,0.0,0.0,0.0005660697881611278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.782114403145694e-05,0.0,0.0,6.928890437644532e-05,5.9240364083059235e-05,0.00010711004840790224,4.388614232647228e-07,4.06787967581126e-05,2.8171246195068006e-05,0.0,0.0,3.782114403145694e-05,0.0,0.0,0.0,0.0,0.0,5.318119463755196e-05,3.1862883272474564e-05,2.2065970497875717e-05,0.0,0.0 +94944,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,171526.0,,1526.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.008292986486278459,0.000259572491189573,0.0,0.00855255897746803,0.004986149968908669,0.002103015898393883,0.0007281504827987285,0.0,0.0007352426273667497,0.004726577477719096,0.002103015898393883,0.0007281504827987285,0.0,0.0007352426273667497,0.000259572491189573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.734333574117238e-05,0.0,0.0,0.0009882595524327716,0.0002650121907065259,0.0010056028881739439,0.0005632573199532221,0.0002506124366589203,8.677231916692833e-05,0.0,8.76174766537008e-05,1.734333574117238e-05,0.0,0.0,0.0,0.0,0.0,0.0005862674344383638,0.0002472708889669291,8.561533810602596e-05,0.0,8.644922666262503e-05 +94945,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,138085.0,,15836.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.012303217647898664,0.00466150567977067,0.0,0.016964723327669337,0.007495660131757224,0.0032341934700771107,0.006234869725835001,0.0,0.0,0.0028341544519865543,0.0032341934700771107,0.006234869725835001,0.0,0.0,0.00466150567977067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003114547344005238,0.0,0.0,0.0014661515300964246,0.0007832279982319248,0.0017776062644969484,0.00033774090690977796,0.00038541281154944886,0.000742997811637198,0.0,0.0,0.0003114547344005238,0.0,0.0,0.0,0.0,0.0,0.0007854140706804087,0.00033888690442875774,0.0006533052893877818,0.0,0.0 +94946,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,135438.0,,13848.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.01186107248996766,0.004076346956492372,0.0,0.01593745013606633,0.007282858401688955,0.0029577414965474033,0.00569688092743627,0.0,0.0,0.0032065114451965823,0.0029577414965474033,0.00569688092743627,0.0,0.0,0.004076346956492372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002723581238191889,0.0,0.0,0.0014134629245569615,0.0007169433840540283,0.00168582104837615,0.0003821142690752822,0.0003524687965046553,0.0006788871734286821,0.0,0.0,0.0002723581238191889,0.0,0.0,0.0,0.0,0.0,0.0007703613740648649,0.00031286202171396294,0.0006026008988621776,0.0,0.0 +94947,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,31830.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028550879735492335,0.0,0.0,0.0028550879735492335,0.001635436088126309,0.0010029970006334406,0.00021665488478948375,0.0,0.0,0.001635436088126309,0.0010029970006334406,0.00021665488478948375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003402366543204836,7.773466786833222e-05,0.0003402366543204836,0.00019489252455060285,0.00011952568430484377,2.5818445465036965e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019489252455060285,0.00011952568430484377,2.5818445465036965e-05,0.0,0.0 +94948,50.0,the Greater Atlanta and Macon Area,G1302170100903,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7593.0,,345.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018231120264355536,0.0002736777070033683,0.0,0.002096789733438922,0.0011348237587770372,0.0006487542864111273,0.0002701213028325781,0.0,4.3090385418179165e-05,0.0008611460517736688,0.0006487542864111273,0.0002701213028325781,0.0,4.3090385418179165e-05,0.0002736777070033683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8285283746575666e-05,0.0,0.0,0.00021725698908775526,7.957489600088547e-05,0.00023554227283433094,0.0001026212298862091,7.731088428999464e-05,3.218987099580859e-05,0.0,5.135003915742888e-06,1.8285283746575666e-05,0.0,0.0,0.0,0.0,0.0,0.00012748010119753293,7.287762654277735e-05,3.0343999016918782e-05,0.0,4.840546077101862e-06 +94949,50.0,the Greater Atlanta and Macon Area,G1302170100600,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,17808.0,,2930.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0015866833351975318,0.0008625006953906389,0.0,0.00244918403058817,0.0016467122051158382,0.00034507393321137015,0.0004573978922609623,0.0,0.0,0.0007842115097251993,0.00034507393321137015,0.0004573978922609623,0.0,0.0,0.0008625006953906389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.762625199698529e-05,0.0,0.0,0.00018908259118375834,0.00012430392390914928,0.00024670884318074365,9.345326884428883e-05,4.112192520976729e-05,5.450739712970221e-05,0.0,0.0,5.7626251996985284e-05,0.0,0.0,0.0,0.0,0.0,0.00016587502535617021,3.475965456706075e-05,4.607416325751274e-05,0.0,0.0 +94950,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,53249.0,,8776.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.013091978669102689,0.006036813400326013,0.0,0.0191287920694287,0.004543029844012866,0.0011667404884819605,0.008301945244912056,0.00036648905188977243,0.004750515720161028,0.004543029844012866,0.0011667404884819605,0.006508945969521781,0.00036648905188977243,0.0005067015952252921,0.0,0.001792999275390276,0.0042438141249357365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040334433114968307,0.0,0.0,0.001560142544803209,0.0007821744225905235,0.0019634868759528918,0.0005413829583057935,0.00013903791938808173,0.0007756568953814456,4.3673701012607426e-05,6.038252400275373e-05,0.0,0.00011979765573756209,0.00028354667541212095,0.0,0.0,0.0,0.0004663221516238681,0.00011976081022065368,0.0008521583837651685,3.7618498907520295e-05,0.00048761966969421166 +94951,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,1366.0,,237.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,3237.924873899493,0.0,0.0,0.00010775120771123446,6.988023353986923e-05,0.0,0.0001776314412511037,9.578226125513038e-05,4.818268188739337e-05,3.366649810857995e-05,0.0,0.0,2.5902027715261147e-05,4.818268188739337e-05,3.366649810857995e-05,0.0,0.0,6.988023353986923e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.668798985833022e-06,0.0,0.0,1.28417227602743e-05,9.132763617369619e-06,1.751052174610732e-05,3.0869877555316174e-06,5.742382436237725e-06,4.012352568504958e-06,0.0,0.0,4.668798985833022e-06,0.0,0.0,0.0,0.0,0.0,9.442007320248954e-06,4.7497441502053385e-06,3.3187702756530287e-06,0.0,0.0 +94952,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,9258.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007353229668929587,0.0,0.0,0.0007353229668929588,0.00029271746486748913,0.00020086347321846473,0.0002417727184133025,0.0,0.0,0.00029271746486748913,0.00020086347321846473,0.0002417727184133025,0.0,0.0,0.0,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.7628736700459e-05,3.257750001200102e-05,8.7628736700459e-05,3.488325920905584e-05,2.3936981707199672e-05,2.881215307705409e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4883259209055836e-05,2.393698170719967e-05,2.8812153077054082e-05,0.0,0.0 +94953,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,20949.0,,1097.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,14029.891188970922,0.0,0.0,0.0010693890186890649,0.00018648794141611536,0.0,0.00125587696010518,0.0005985238104567225,0.00052049248984707,9.987512587915744e-05,0.0,3.70032642836502e-05,0.0004490391333242573,0.00052049248984707,9.987512587915744e-05,0.0,0.0,0.00014948467713246516,0.0,3.70032642836502e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2459982582417674e-05,0.0,0.0,0.00012743792147935614,5.011697434613908e-05,0.00013989790406177384,5.351150312342364e-05,6.202652158616536e-05,1.1902009677574245e-05,0.0,0.0,9.987650993759595e-06,0.0,2.4723315886580805e-06,0.0,0.0,0.0,6.667231685415208e-05,5.7980049576991096e-05,1.112554909617083e-05,0.0,4.121963600871387e-06 +94954,50.0,the Greater Atlanta and Macon Area,G1300570090501,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,13285.0,,2358.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0011598216012027836,0.0006939533776036552,0.0,0.001853744289200141,0.0009523291730240151,0.0004189131259636431,0.00048253267981878084,0.0,0.0,0.00025837579542035976,0.0004189131259636431,0.00048253267981878084,0.0,0.0,0.0006939533776036552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.636500643133815e-05,0.0,0.0,0.0001382130189893325,8.79710757168846e-05,0.00018457802542067063,3.078999277284056e-05,4.992082211061571e-05,5.750220410587623e-05,0.0,0.0,4.636500643133815e-05,0.0,0.0,0.0,0.0,0.0,9.482377873332169e-05,4.171133961876322e-05,4.8045962844381974e-05,0.0,0.0 +94955,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,112325.0,,4398.0,,3.3063363735822096,Lodging,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,123987.61400933286,0.0,0.0,0.010219423054777532,0.001321994466673996,0.0,0.011541417521451526,0.004877857170112777,0.0009438385527388269,0.004123268933463658,0.0,0.0015964842031584699,0.004877857170112777,0.0009438385527388269,0.002801274466789661,0.0,0.0015964842031584699,0.0,0.001321994466673996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.832755095413576e-05,0.0,0.0,0.0012178305485124677,0.0005381661353608075,0.0013061580994666035,0.0005812856010757679,0.00011247556894630991,0.0003338229176087953,0.0,0.00019025019537820612,0.0,8.832755095413576e-05,0.0,0.0,0.0,0.0,0.000552033806847563,0.0001068155075368602,0.00046663601795122014,0.0,0.00018067631369804787 +94956,50.0,the Greater Atlanta and Macon Area,G1302470060308,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,45465.0,,701.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.0049554584193641235,0.0002605444014434846,0.0,0.0052160028208076085,0.0026951078670434466,0.0005201975891402115,0.001830669281112051,0.0,0.00017002808351189927,0.0026951078670434466,0.0005201975891402115,0.0015701248796685665,0.0,0.00017002808351189927,0.0,0.0002605444014434846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7407256097664066e-05,0.0,0.0,0.0005905329909332396,0.00021388357869739277,0.0006079402470309036,0.00032117111575261597,6.199100309081964e-05,0.00018710893379836888,0.0,2.0261938291435123e-05,0.0,1.7407256097664066e-05,0.0,0.0,0.0,0.0,0.00031412263350954946,6.0630536775249467e-05,0.00021336981079677175,0.0,1.9817265949332933e-05 +94957,50.0,the Greater Atlanta and Macon Area,G1301350050542,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,17951.0,,8167.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.00351348966008377,0.005618327369449922,0.0,0.009131817029533695,0.002586006994909888,0.0005331662645300526,0.00403934048757023,0.0003672779715709442,0.0016060253109525782,0.001688718437533578,0.0005331662645300526,0.0007329781037795449,0.0003672779715709442,0.0001913488826696503,0.0008972885573763097,0.0033063623837906848,0.001414676428282928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003753850423947132,0.0,0.0,0.0004186952168593405,0.0004876084172430816,0.0007940802592540538,0.00020124104546265554,6.353630901084606e-05,8.734746813167159e-05,4.376774797478378e-05,2.2802646279383545e-05,5.99517758581546e-05,0.00022091254246956962,9.452072406698902e-05,0.0,0.0,0.0,0.0002248727825261409,4.6362821790479824e-05,0.0003512510742617183,3.193758547068162e-05,0.00013965599520503292 +94958,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Propane,10276.0,,136.0,310.0,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0011560204748163178,5.0682938293884274e-05,3.727598366874364e-05,0.0012440181452027176,0.0006879395156495579,0.00017413541643174007,0.0003446672294526764,0.0,3.727598366874364e-05,0.0006879395156495579,0.00017413541643174007,0.0002939842911587921,0.0,0.0,0.0,5.0682938293884274e-05,0.0,0.0,0.0,0.0,0.0,0.0,3.727598366874364e-05,0.0,3.3859079309779705e-06,0.0,3.00753228006661e-06,0.00013776299591410605,4.8569540324646376e-05,0.00014415643612515066,8.198177346178988e-05,2.0751722988469286e-05,3.503411711471217e-05,0.0,0.0,0.0,3.3859079309779705e-06,0.0,0.0,3.00753228006661e-06,0.0,7.97182173171134e-05,2.0178757948806334e-05,3.993993145407929e-05,0.0,4.319529405151689e-06 +94959,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,10979.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026363706825141635,0.0,0.0,0.0026363706825141635,0.001461351285899823,0.000743619299990113,0.00035903140710233356,0.0,7.228598244815468e-05,0.001461351285899823,0.000743619299990113,0.00035903140710233356,0.0,7.228598244815468e-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.00031417110811814613,0.00010946861459882671,0.00031417110811814613,0.00017414635805432062,8.861564917462202e-05,4.278506651841111e-05,0.0,8.614178331511471e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017414635805432062,8.861564917462202e-05,4.278506651841111e-05,0.0,8.614178331511471e-06 +94960,50.0,the Greater Atlanta and Macon Area,G1302970110603,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,64271.0,,2801.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0060504251919858065,0.000824506962794083,0.0,0.006874901465173592,0.002921067417021648,0.0016706194084217488,0.0022832453293364914,0.0,0.0,0.0020965604542275656,0.0016706194084217488,0.0022832453293364914,0.0,0.0,0.000824506962794083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.508785117600176e-05,0.0,0.0,0.0007210169629216608,0.0002792205273020689,0.0007761048140976626,0.0002498428793551743,0.0001990843442959565,0.00027208973927053,0.0,0.0,5.508785117600176e-05,0.0,0.0,0.0,0.0,0.0,0.0003297581057908416,0.00018859554161891826,0.0002577546312250033,0.0,0.0 +94961,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,129403.0,,6419.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011762109001725989,0.001091622891909811,0.0,0.0128537318936358,0.0066058362149919135,0.0037980561805123518,0.0012507351552933648,0.0,0.0011991220731995913,0.005860026292218812,0.0037980561805123518,0.0009049221861566549,0.0,0.0011991220731995913,0.000745809922773101,0.0003458129691367098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.29359787640698e-05,0.0,0.0,0.001401667011245054,0.00039258293371618715,0.001474602990009124,0.0006983276160445777,0.0004526067607686988,0.00010783776752055368,0.0,0.00014289697980294228,4.983074016911109e-05,2.3105238594958698e-05,0.0,0.0,0.0,0.0,0.0007578332825629132,0.00043571976188325163,0.0001434865621102848,0.0,0.0001375654175112794 +94962,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,12888.0,,1757.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011483436884474427,0.0005171198661162919,0.0,0.0016654635545637344,0.0007187505794921991,0.0003950979914766256,0.0005515842939886121,0.0,0.0,0.0002016307133759073,0.0003950979914766256,0.0005515842939886121,0.0,0.0,0.0005171198661162919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.45517412496013e-05,0.0,0.0,0.00013684465577294187,8.250057948695411e-05,0.00017139639702254316,2.402772431525544e-05,4.7082636656712105e-05,6.57306376131029e-05,0.0,0.0,3.45517412496013e-05,0.0,0.0,0.0,0.0,0.0,7.396815099631388e-05,4.0660374719323e-05,5.676471297424207e-05,0.0,0.0 +94963,50.0,the Greater Atlanta and Macon Area,G1300670030601,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,69130.0,,3407.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0061594346735552455,0.001002905644202629,0.0,0.0071623710073641725,0.0036124121780899987,0.0012397987152145973,0.002310129424453279,0.0,0.0,0.00260950653388737,0.0012397987152145973,0.002310129424453279,0.0,0.0,0.001002905644202629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.700917858151865e-05,0.0,0.0,0.0007340088305714273,0.0002930275079754581,0.0008010180091529459,0.0003109702336045057,0.00014774459886808997,0.0002752939980988317,0.0,0.0,6.700917858151865e-05,0.0,0.0,0.0,0.0,0.0,0.0004040013018256626,0.0001386553555506263,0.0002583579195434883,0.0,0.0 +94964,85.0,Rural Climate Zone 3A,G1301750950400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,10542.0,,505.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002619663853618823,0.00040071577226694446,0.0,0.003020379625885768,0.0019270748181258628,0.0005988819209463251,0.0004198211063007245,0.0,7.451907343911598e-05,0.001600960826371774,0.0005988819209463251,0.0004198211063007245,0.0,0.0,0.0003261139917540891,0.0,7.451907343911598e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6771291816811704e-05,0.0,0.0,0.00031218122720300345,9.551839456919554e-05,0.0003389525190198151,0.00019078398733878067,7.136781796353312e-05,5.00294219006897e-05,0.0,0.0,2.1787245332030658e-05,0.0,4.978520934354457e-06,0.0,0.0,0.0,0.0002162598563257945,6.720762316116217e-05,4.7113091446769666e-05,0.0,8.362666547190595e-06 +94965,85.0,Rural Climate Zone 3A,G1302370960102,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,46532.0,,4109.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004145920293969265,0.0012096001426176574,0.0,0.005355520436586922,0.0019386010506132888,0.0012682786698588655,0.0021487020953273625,0.0,0.0,0.0007290009079956319,0.0012682786698588655,0.0021487020953273625,0.0,0.0,0.0012096001426176574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.081870200210263e-05,0.0,0.0,0.0004940625777085659,0.0002244675492164555,0.0005748812797106684,8.687385241827252e-05,0.0001511387061142347,0.0002560573336369846,0.0,0.0,8.081870200210263e-05,0.0,0.0,0.0,0.0,0.0,0.00020809657362362035,0.00013614170151927778,0.00023064959323841435,0.0,0.0 +94966,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,56406.0,,3854.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011744719013574434,0.002650841848708,0.0,0.014395560862282436,0.004632034328043239,0.0006823438042425237,0.005420738849301915,0.0003691426908173501,0.003291301189877407,0.004632034328043239,0.0006823438042425237,0.002769897000593914,0.0003691426908173501,0.003291301189877407,0.0,0.002650841848708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017711140183364132,0.0,0.0,0.0013995985868503833,0.0005467114927622872,0.0015767099886840248,0.0005519918094488941,8.131377371056405e-05,0.0003300840082484438,4.399011911796018e-05,0.0003922188763245213,0.0,0.00017711140183364132,0.0,0.0,0.0,0.0,0.0005073352030408567,7.473542032562844e-05,0.0005937200482501205,4.043128110321731e-05,0.00036048803596420157 +94967,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,135372.0,,10842.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,240343.828889517,0.0,0.0,0.011937280183028032,0.003158611352730687,0.0,0.015095891535758717,0.007512666832132412,0.005663643592759831,0.0019195507372670399,0.0,0.0,0.004354055479401724,0.005663643592759831,0.0019195507372670399,0.0,0.0,0.003158611352730687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021104057923605822,0.0,0.0,0.0014225419630507837,0.0006887688271196891,0.0016335825422868417,0.0005188641410717908,0.0006749251547198642,0.00022874904769762847,0.0,0.0,0.00021104057923605822,0.0,0.0,0.0,0.0,0.0,0.0008129736063562728,0.00061288392785224,0.00020772172123821969,0.0,0.0 +94968,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,1172297.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,654728.2554853096,0.0,0.0,0.056156097139711,0.0,0.0,0.056156097139711,0.02648658905915298,0.017176589041820293,0.0056232905065382675,0.0,0.006869628532199458,0.02648658905915298,0.017176589041820293,0.0056232905065382675,0.0,0.006869628532199458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00669201401497115,0.0020544930558809185,0.00669201401497115,0.0031563558406072206,0.0020469010570888977,0.000670116706764461,0.0,0.00081864041051057,0.0,0.0,0.0,0.0,0.0,0.0,0.0031563558406072206,0.0020469010570888977,0.000670116706764461,0.0,0.00081864041051057 +94969,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,27428.0,,6194.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0064389441557468645,0.0048035348181858905,0.0,0.011242478973932754,0.0048230222669054055,0.0006348380078710113,0.004781702406757388,0.00041667561515212344,0.0005861598164637575,0.002743202065599804,0.0006348380078710113,0.0026442284671239257,0.00041667561515212344,0.0,0.0020798202013056015,0.002137473939633462,0.0005861598164637575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032094370544691786,0.0,0.0,0.0007673162618066412,0.0005401942636305473,0.0010882599672535592,0.00032690197390167403,7.565239195584503e-05,0.00031510748558757977,4.9654410361542404e-05,0.0,0.00013896124985775897,0.00014281333069243038,3.916372225881167e-05,0.0,0.0,0.0,0.00046686340854321427,6.145164169387344e-05,0.00046286369017541784,4.0333754890909414e-05,5.673964471263387e-05 +94970,85.0,Rural Climate Zone 3A,G1302930010500,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,89728.0,,8865.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004479770846751961,0.0015076480922699299,0.0,0.005987418939021891,0.0028377975363637112,0.00109460159262838,0.0013797412649856691,0.0,0.0006753140057669712,0.002176951505515503,0.00109460159262838,0.0005329392035639472,0.0,0.0006753140057669712,0.000660846030848208,0.0008468020614217218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010073175903812724,0.0,0.0,0.0005338461137499715,0.00025775030280018304,0.0006345778727880988,0.00025942333677273204,0.0001304416735407057,6.350939198014987e-05,0.0,8.047593724598936e-05,4.415366124363861e-05,5.6578097794488625e-05,0.0,0.0,0.0,0.0,0.0003007645769185431,0.00011601158316709577,0.00014623217213452538,0.0,7.157329888020513e-05 +94971,50.0,the Greater Atlanta and Macon Area,G1301350050421,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,50833.0,,7749.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.010196715159173487,0.005330371685822244,0.0,0.015527086844995729,0.004919703131786856,0.0006356541031113607,0.005755025634205677,0.00036742141151297543,0.0038492825643788612,0.003403758104429885,0.0006356541031113607,0.0019405989757404038,0.00036742141151297543,0.0038492825643788612,0.0015159450273569707,0.0038144266584652737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035614504172398986,0.0,0.0,0.001215119924310281,0.0006394957729987506,0.0015712649660342708,0.0004056183021357043,7.574948928188008e-05,0.00023125687475901067,4.37847944929563e-05,0.0004587104636407296,0.00010128680265493359,0.0002548582390690563,0.0,0.0,0.0,0.0,0.0004978498060476261,6.432507480028149e-05,0.0005823803426829502,3.718124316843531e-05,0.0003895284993349778 +94972,50.0,the Greater Atlanta and Macon Area,G1300570091005,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,139728.0,,18922.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008812237850826124,0.003217847833402543,0.0,0.012030067953867248,0.005998784100692145,0.0021417212773738583,0.0019380703461031321,0.0,0.0019515099600595318,0.005189889551986496,0.0021417212773738583,0.0011560018342260227,0.0,0.0003246429176011668,0.0008088945487056488,0.0007820685118771092,0.0016268670424583649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021499734610951128,0.0,0.0,0.0010501371286797084,0.00046769371673567817,0.0012651344747892197,0.000618468975139724,0.00025522473073542537,0.00013775847491778566,0.0,3.868706077922445e-05,5.404549570334194e-05,5.225314037040705e-05,0.00010869752539905844,0.0,0.0,0.0,0.0006308583294546889,0.00022523276126002614,0.00020381594009479724,0.0,0.00020522930858193317 +94973,46.0,the Tallahassee-Valdosta Area,G1300270960400,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,NaturalGas,9030.0,,480.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.000411982677956347,8.157739289366292e-05,0.0,0.0004935600708500099,0.0002649802514226891,0.00011957355741683613,3.475150838330349e-05,0.0,7.425475362718114e-05,0.00022494509533620987,0.00011957355741683613,3.475150838330349e-05,0.0,3.269478645857737e-05,4.003515608647923e-05,0.0,4.155996716860376e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.450889308156066e-06,0.0,0.0,4.909435708238621e-05,1.725973506933566e-05,5.454524639054228e-05,2.6805823218464176e-05,1.4249111041642824e-05,4.141200717915173e-06,0.0,3.896109246854887e-06,2.675094122542143e-06,0.0,2.776979904003004e-06,0.0,0.0,0.0,2.9283999975092657e-05,1.3214539701038804e-05,3.8405245868973975e-06,0.0,8.20618212751342e-06 +94974,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,51654.0,,769.0,,4.088175128053588,Healthcare,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.005552804120234553,0.0002857308768953385,0.0,0.00583853499712989,0.0028995445508649548,0.0008650585607117483,0.0019538892687072746,0.0,0.00012004261684591248,0.0028995445508649548,0.0008650585607117483,0.001668158391811936,0.0,0.00012004261684591248,0.0,0.0002857308768953385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9090891553048187e-05,0.0,0.0,0.0006617171203600298,0.00018617989305422,0.0006808080119130778,0.0003455332169132824,0.00010308738564197556,0.0001987912671566714,0.0,1.4305250648100348e-05,0.0,1.9090891553048187e-05,0.0,0.0,0.0,0.0,0.00033810419259251923,0.00010087098890322053,0.0002278351451487075,0.0,1.3997685268630559e-05 +94975,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,195516.0,,26054.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008912449853572263,0.004430675475979834,0.0,0.013343143059913519,0.0064269545986250015,0.002560583335561186,0.001715146511968808,0.0,0.002640458613758523,0.005047532480144893,0.002560583335561186,0.0009102412945826709,0.0,0.00039409274328351364,0.001379422118480108,0.0008049052173861369,0.0022463658704750095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029603237271635886,0.0,0.0,0.0010620798371109624,0.0005688379339939159,0.0013581122098273212,0.000601504924280258,0.00030513988595984407,0.0001084717380479336,0.0,4.6963288822926876e-05,9.21650897080848e-05,5.377915909354659e-05,0.0001500893085559834,0.0,0.0,0.0,0.0006541581300002218,0.0002606252122675326,0.00017457366747011984,0.0,0.00026875520008944693 +94976,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,16253.0,,2978.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014803131597696936,0.0008766179142875823,0.0,0.0023569310740572755,0.001110319266244589,0.0005003633410777462,0.000746248466734941,0.0,0.0,0.0002337013519570067,0.0005003633410777462,0.000746248466734941,0.0,0.0,0.0008766179142875823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.857029466145006e-05,0.0,0.0,0.00017640689952338025,0.00012016622891369509,0.00023497719418483028,2.7849871252628603e-05,5.962761666485316e-05,8.892941160589854e-05,0.0,0.0,5.857029466145006e-05,0.0,0.0,0.0,0.0,0.0,0.00011069466931096727,4.9884349717958225e-05,7.439817515590482e-05,0.0,0.0 +94977,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,13091.0,,2606.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001172117202302843,0.00075927923874492,0.0,0.0019313964410477631,0.0014587528601969066,0.0003577098805784032,0.0001149337002724529,0.0,0.0,0.0006994736214519867,0.0003577098805784032,0.0001149337002724529,0.0,0.0,0.00075927923874492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.073065357089543e-05,0.0,0.0,0.00013967878035603596,8.469230044873732e-05,0.0001904094339269314,8.335482334333122e-05,4.262754589927534e-05,1.3696411113429387e-05,0.0,0.0,5.073065357089543e-05,0.0,0.0,0.0,0.0,0.0,0.00014381320191244782,3.526533156189015e-05,1.1330900452593389e-05,0.0,0.0 +94978,50.0,the Greater Atlanta and Macon Area,G1300210013410,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,11207.0,,145.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0012607187158484858,5.3976554314511324e-05,0.0,0.001314695270162997,0.0007218831348739025,0.0001895960375168011,0.00036710256681671234,0.0,3.607478253180907e-05,0.0007218831348739025,0.0001895960375168011,0.00031312601250220104,0.0,3.607478253180907e-05,0.0,5.3976554314511324e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.607003055621545e-06,0.0,0.0,0.00015023712741678042,5.2658944795088644e-05,0.000153844130472402,8.602525460335074e-05,2.2593750444132853e-05,3.731455085612867e-05,0.0,4.2989539471669084e-06,0.0,3.607003055621545e-06,0.0,0.0,0.0,0.0,8.447393529726339e-05,2.218631054264679e-05,4.295792071960672e-05,0.0,4.221429616841234e-06 +94979,50.0,the Greater Atlanta and Macon Area,G1301350050530,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,5800.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001031026381234206,0.0,0.0,0.0010310263812342063,0.0005284154941204351,0.0001803841278254295,0.00028310631340964924,0.0,3.912044587869241e-05,0.0005284154941204351,0.0001803841278254295,0.00028310631340964924,0.0,3.912044587869241e-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.00012286238212412908,3.676717022850855e-05,0.00012286238212412908,6.296869560332591e-05,2.1495496182634815e-05,3.373639772267719e-05,0.0,4.661792615491182e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.29686956033259e-05,2.149549618263481e-05,3.3736397722677184e-05,0.0,4.661792615491181e-06 +94980,35.0,Eastern Counties in South Carolina and Georgia,G1301890950400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,246759.0,,23885.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01122142163022148,0.004061830767358476,0.0,0.015283270127941376,0.006348444558257007,0.003007264330816576,0.003146820005553811,0.0,0.0027807235029525617,0.005964529042428604,0.003007264330816576,0.0018352697105896655,0.0,0.000414358546386634,0.0003839155158284033,0.0013115502949641459,0.002366364956565927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002713881289826284,0.0,0.0,0.0013372357110899994,0.0005674617238246423,0.0016086238400726278,0.0007107817082541568,0.00035837003441922387,0.00021870563974467377,0.0,4.9378328671944994e-05,2.5651022776566544e-05,8.763023400120909e-05,0.00015810687220485276,0.0,0.0,0.0,0.0006681985712678844,0.00031652630984434546,0.0003312150893738856,0.0,0.00029268200339676133 +94981,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,12418.0,,2946.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011064523758510785,0.000867042757122699,0.0,0.0019734951329737774,0.0010358049021537666,0.00039868867541345684,0.0005390322450128517,0.0,0.0,0.0001687621450310676,0.00039868867541345684,0.0005390322450128517,0.0,0.0,0.000867042757122699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.793141921181692e-05,0.0,0.0,0.00013185386975810506,0.00010094665518701827,0.00018978528896992198,2.0111070640441004e-05,4.75109872140333e-05,6.423546912687869e-05,0.0,0.0,5.793141921181692e-05,0.0,0.0,0.0,0.0,0.0,9.961034582106891e-05,3.834073072091216e-05,5.183716375814805e-05,0.0,0.0 +94982,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001300,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,21069.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006196083136253955,0.0,0.0,0.006196083136253955,0.002683431007471829,0.001140695961012528,0.0021712260998042977,0.0,0.00020073006796529912,0.002683431007471829,0.001140695961012528,0.0021712260998042977,0.0,0.00020073006796529912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007383790902552708,0.0002435982463128868,0.0007383790902552708,0.00031978094910743043,0.0001359352396390717,0.0002587421629208895,0.0,2.3920738587878985e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00031978094910743043,0.0001359352396390717,0.0002587421629208895,0.0,2.3920738587878985e-05 +94983,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,128669.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.011321211625584773,0.0,0.0,0.011321211625584773,0.0022308888609926113,0.0032322293352740573,0.005858093429318102,0.0,0.0,0.0022308888609926113,0.0032322293352740573,0.005858093429318102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013491256728929335,0.0004304556502231621,0.0013491256728929335,0.0002658504703625788,0.00038517817006805135,0.0006980970324623031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002658504703625788,0.00038517817006805135,0.0006980970324623031,0.0,0.0 +94984,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,67308.0,,,18662.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0057452574544490705,0.0,0.0017589351434402082,0.007504192597889278,0.004497601110344539,0.0022730994347224713,0.0007334920528222687,0.0,0.0,0.0027386659669043304,0.0022730994347224713,0.0007334920528222687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017589351434402082,0.0,0.0,0.0,0.0,0.00014185685613907895,0.0006846512896056581,0.00032348974744621554,0.000826508145744737,0.0003263615601052257,0.0002708808911913015,8.74088383091309e-05,0.0,0.0,0.0,0.0,0.0,0.00014185685613907895,0.0,0.0,0.0004953636124765654,0.00025035807308761187,8.078646018055983e-05,0.0,0.0 +94985,50.0,the Greater Atlanta and Macon Area,G1302230120102,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,121211.0,,7571.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006239349644439422,0.0012875079248785542,0.0,0.007526857569317976,0.0034872074840959846,0.0010807541803593186,0.0011211262133127787,0.0,0.0018377696915498933,0.0026118240800651386,0.0010807541803593186,0.0007089839621036515,0.0,0.0018377696915498933,0.000875383404030847,0.00041214225120912734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.602428601788726e-05,0.0,0.0,0.0007435307989394188,0.00026505601883746127,0.0008295550849573061,0.00031124584381494823,0.00012879131078923187,8.448819858139636e-05,0.0,0.00021900333286218804,5.848836412464374e-05,2.753710653968532e-05,0.0,0.0,0.0,0.0,0.00038433445486269824,0.00011911280606139808,0.00012356231568984207,0.0,0.00020254550834336764 +94986,50.0,the Greater Atlanta and Macon Area,G1302230120604,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,17317.0,,1679.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015622850981908579,0.0004943174886370986,0.0,0.0020566025868279567,0.0009890646317623653,0.0005034016121012188,0.0005641363429643725,0.0,0.0,0.0004947471431252665,0.0005034016121012188,0.0005641363429643725,0.0,0.0,0.0004943174886370986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3027676827941295e-05,0.0,0.0,0.0001861746127004171,9.255655829138984e-05,0.0002192022895283584,5.895809789304647e-05,5.998943488242922e-05,6.72270799249414e-05,0.0,0.0,3.3027676827941295e-05,0.0,0.0,0.0,0.0,0.0,0.00010541911848327838,5.36548901725585e-05,6.01282808725215e-05,0.0,0.0 +94987,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,47038.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003954171633821218,0.0,0.0,0.003954171633821218,0.0016046060652753903,0.0010195701004222818,0.001329964778517248,0.0,0.0,0.0016046060652753903,0.0010195701004222818,0.001329964778517248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00047121177182419567,0.00016041167184483186,0.00047121177182419567,0.00019121812028366142,0.00012150039958044944,0.00015848959473295878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019121812028366142,0.00012150039958044944,0.00015848959473295878,0.0,0.0 +94988,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,22070.0,,3629.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.005124390405401808,0.0028143595547001077,0.0,0.007938749960101917,0.0015982942381325197,0.00017571048160791082,0.005568477826014163,0.00042435738954363367,0.00017182916402062146,0.0015982942381325197,0.00017571048160791082,0.002754118271314055,0.00042435738954363367,0.00017182916402062146,0.0,0.0028143595547001077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018804156146299904,0.0,0.0,0.0006106619339343759,0.00035110390504350164,0.000798703495397375,0.00019046508428111148,2.0939017916768957e-05,0.0003282020019535898,5.0569703648045785e-05,2.0476490139500244e-05,0.0,0.00018804156146299904,0.0,0.0,0.0,0.0,0.00016080153690261074,1.767791863246854e-05,0.000560234637195097,4.2693841225584396e-05,1.7287426182234535e-05 +94989,50.0,the Greater Atlanta and Macon Area,G1301530021105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,26711.0,,3606.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006270672866181259,0.002796489321641963,0.0,0.009067162187823222,0.0025619930507432337,0.000770845844992275,0.0048036965397520275,0.0004221741484007834,0.0005084526039349025,0.0025619930507432337,0.000770845844992275,0.0020072072181100643,0.0004221741484007834,0.0005084526039349025,0.0,0.002796489321641963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018684569379756645,0.0,0.0,0.0007472617495862612,0.0003933385952183773,0.0009341074433838276,0.0003053068546840204,9.185993705664582e-05,0.00023919429534848623,5.030952809952249e-05,6.059113439758617e-05,0.0,0.00018684569379756645,0.0,0.0,0.0,0.0,0.00026393889609814417,7.941325263551343e-05,0.000494881265007652,4.34927716364225e-05,5.238125800609551e-05 +94990,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300490010100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,21431.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,24034.3828889517,0.0,0.0,0.0018898453570169184,0.0,0.0,0.0018898453570169184,0.0012447708521579452,0.00048391218624226203,0.00016116231861671118,0.0,0.0,0.0012447708521579452,0.00048391218624226203,0.00016116231861671118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022521001842556752,6.708831692130182e-05,0.00022521001842556752,0.00014833746343806826,5.766708475660787e-05,1.9205470230891372e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014833746343806826,5.766708475660787e-05,1.9205470230891372e-05,0.0,0.0 +94991,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,8358.0,,793.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0020069698513580335,0.0006290700028611721,0.0,0.0026360398542192064,0.0015252011468265682,0.0005147688269534494,0.0005323854336599219,0.0,6.36017397055274e-05,0.0009597328836709234,0.0005147688269534494,0.0005323854336599219,0.0,0.0,0.0005654682631556447,0.0,6.36017397055274e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.203107737963086e-05,0.0,0.0,0.00023916874252198506,0.00013607113776400092,0.00028119981990161594,0.00011437048084666262,6.134452540413894e-05,6.344388014563661e-05,0.0,0.0,3.7781550886738905e-05,0.0,4.249526492891945e-06,0.0,0.0,0.0,0.0001627009876633314,5.4913017039020376e-05,5.6792270353498426e-05,0.0,6.784722060251713e-06 +94992,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,76031.0,,12356.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.01767260930432515,0.009583053983800428,0.0,0.027255663288125575,0.010445434235226276,0.0016257869043758187,0.01338035721748156,0.00042290189544840016,0.0013811830355935225,0.010445434235226276,0.0016257869043758187,0.0037973032336811314,0.00042290189544840016,0.0013811830355935225,0.0,0.009583053983800428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006402825725560213,0.0,0.0,0.002106009667859462,0.001342999412012954,0.0027462922404154835,0.0012447616028603632,0.0001937417887497133,0.00045251706662067473,5.039637696016118e-05,0.00016459283266854934,0.0,0.0006402825725560213,0.0,0.0,0.0,0.0,0.0010524864019900713,0.00016381498086680686,0.0013482104915922607,4.261177508869989e-05,0.0001391685908776449 +94993,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,43595.0,,275.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,32736.412774265485,0.0,0.0,0.0021646643650514064,4.677269342609929e-05,0.0,0.0022114370584775055,0.001013024199734717,0.0009307553227456721,0.0002208848425710178,0.0,4.677269342609929e-05,0.001013024199734717,0.0009307553227456721,0.0002208848425710178,0.0,0.0,0.0,0.0,4.677269342609929e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1250379248145294e-06,0.0,0.0,0.0002579590238375985,6.888380420921768e-05,0.0002610840617624131,0.00012072020859512149,0.00011091637963071504,2.6322435611762028e-05,0.0,0.0,0.0,0.0,3.1250379248145294e-06,0.0,0.0,0.0,0.00011959846278077928,0.00010988573210251175,2.607784456677952e-05,0.0,5.522022312342621e-06 +94994,81.0,the Columbus-Albany Area,G1302150000900,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,NaturalGas,142089.0,,12724.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006761952047295478,0.002163901959510344,0.0,0.008925854006805824,0.004418547908768519,0.0011913561748976079,0.0023887938637622945,0.0,0.0009271383290159811,0.0038157333508481435,0.0011913561748976079,0.001570005773384256,0.0,0.00018483901780405048,0.0006028145579203752,0.0008187880903780385,0.0007422993112119307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001445794074812871,0.0,0.0,0.0008058079930705329,0.000342256028003866,0.0009503874005518199,0.00045471313786808406,0.00014197147829677278,0.000187094376374041,0.0,2.202688764073425e-05,4.027658056418763e-05,5.470668226871923e-05,4.959614464838023e-05,0.0,0.0,0.0,0.00047046840089769203,0.00012685059573335774,0.0002543487255005664,0.0,9.871779056587754e-05 +94995,50.0,the Greater Atlanta and Macon Area,G1300890021214,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,18204.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004239481892803159,0.0,0.0,0.004239481892803159,0.002669122683714929,0.0006418068922170256,0.0008437775662884143,0.0,8.47747505827901e-05,0.002669122683714929,0.0006418068922170256,0.0008437775662884143,0.0,8.47747505827901e-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.0005052078109904172,0.00017207711759059378,0.0005052078109904172,0.0003180722697727764,7.64824248090216e-05,0.00010055073426567501,0.0,1.0102382142944217e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003180722697727764,7.64824248090216e-05,0.00010055073426567501,0.0,1.0102382142944217e-05 +94996,50.0,the Greater Atlanta and Macon Area,G1301350050317,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,28253.0,,3606.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006529023068085204,0.002796489321641963,0.0,0.009325512389727167,0.003042386962953357,0.0006348380078710113,0.004763427869783901,0.0004140880700939306,0.0004708523398080371,0.003042386962953357,0.0006348380078710113,0.0019669385481419378,0.0004140880700939306,0.0004708523398080371,0.0,0.002796489321641963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018684569379756645,0.0,0.0,0.0007780516499424226,0.00039824468463652484,0.000964897343739989,0.0003625556490771284,7.565247577154908e-05,0.00023439644289172486,4.9346112396650484e-05,5.611060583591012e-05,0.0,0.00018684569379756645,0.0,0.0,0.0,0.0,0.00031479139981805895,6.568577488296558e-05,0.0004928650251662997,4.28450965705855e-05,4.87184138509118e-05 +94997,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,39768.0,,7128.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.008053076945487889,0.004903637858279359,0.0,0.012956714803767247,0.004068171915918506,0.0006115561928501154,0.0063372483589104085,0.00037681672771602045,0.001562921608372196,0.0022884408351661178,0.0006115561928501154,0.0032133415813834377,0.00037681672771602045,0.001562921608372196,0.001779731080752388,0.0031239067775269704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003276322818284316,0.0,0.0,0.0009596678961050508,0.0005877057474622086,0.0012873001779334825,0.00027270858288212996,7.287783898194564e-05,0.00038292701978973764,4.49044407190269e-05,0.00018625001373221055,0.00011891117816609912,0.00020872110366233244,0.0,0.0,0.0,0.0,0.000404188755447732,6.076049429160677e-05,0.0006296303548845628,3.743821238514154e-05,0.00015528236092443942 +94998,50.0,the Greater Atlanta and Macon Area,G1302550161000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,60883.0,,3139.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005424572050756754,0.0009240947352301284,0.0,0.006348636096380584,0.0020296264228922755,0.0023317962864994575,0.001987244076595148,0.0,0.0,0.0011055316876621472,0.0023317962864994575,0.001987244076595148,0.0,0.0,0.0009240947352301284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.174168110458907e-05,0.0,0.0,0.000646434141328004,0.00023402105562129801,0.0007081758224325931,0.00013174374319999707,0.0002778749578973372,0.00023681544023066957,0.0,0.0,6.174168110458907e-05,0.0,0.0,0.0,0.0,0.0,0.00022640018099038558,0.00026010653750944295,0.0002216725272880884,0.0,0.0 +94999,85.0,Rural Climate Zone 3A,G1300430950100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,82360.0,,3748.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008937243008379218,0.001103291346402415,0.0,0.010040534354781633,0.003106125742996796,0.0027985238190749214,0.0041359154823162134,0.0,0.0,0.0020028343965943812,0.0027985238190749214,0.0041359154823162134,0.0,0.0,0.001103291346402415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.371499783057548e-05,0.0,0.0,0.0010650347470289342,0.0003658509559525524,0.0011387497448595097,0.0002386740768845429,0.00033349491615126487,0.0004928694112168418,0.0,0.0,7.371499783057548e-05,0.0,0.0,0.0,0.0,0.0,0.0003522820372259045,0.00031739528717783424,0.00046907590112523596,0.0,0.0 +95000,50.0,the Greater Atlanta and Macon Area,G1300670030601,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,4752.0,,778.0,,8.72605822017302,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0011410267893074853,0.0006172428913164513,0.0,0.0017582696806239364,0.0012000796399573507,0.0003205726178135556,0.00019667742135207305,0.0,4.1022708574696484e-05,0.0005828367486408994,0.0003205726178135556,0.00019667742135207305,0.0,4.1022708574696484e-05,0.0006172428913164513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1243077507849346e-05,0.0,0.0,0.000135973410415027,8.874400788010723e-05,0.00017721648792287632,6.945524957920376e-05,3.820186566893626e-05,2.3437573932076993e-05,0.0,4.888577237304537e-06,4.1243077507849346e-05,0.0,0.0,0.0,0.0,0.0,0.00012095635917780402,3.23106029064899e-05,1.9823171752227288e-05,0.0,4.134690155216457e-06 +95001,50.0,the Greater Atlanta and Macon Area,G1302230120501,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,1888.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.00045323476409140474,0.0,0.0,0.00045323476409140474,0.00026582053499813406,0.00010214323606804467,5.8225779912472426e-05,0.0,2.7045213112753528e-05,0.00026582053499813406,0.00010214323606804467,5.8225779912472426e-05,0.0,2.7045213112753528e-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,5.4012388890362774e-05,2.0070424859444032e-05,5.4012388890362774e-05,3.1678068958690867e-05,1.2172500051021537e-05,6.938817842849523e-06,0.0,3.2230020378008442e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.1678068958690867e-05,1.2172500051021537e-05,6.938817842849523e-06,0.0,3.2230020378008442e-06 +95002,50.0,the Greater Atlanta and Macon Area,G1300670031113,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,39843.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.003759765632802672,0.0,0.0,0.003759765632802672,0.0027347173989774234,0.000782029064723796,0.00024298879550201457,0.0,0.0,0.0027347173989774234,0.000782029064723796,0.00024298879550201457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004480422535177476,0.00012661307712934268,0.0004480422535177476,0.0003258897138380075,9.319252812416342e-05,2.8956392006575812e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003258897138380075,9.319252812416342e-05,2.8956392006575812e-05,0.0,0.0 +95003,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen1_t12_incandescent,200001_500000,NaturalGas,321635.0,,2172.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02684358483647467,0.0006392338095748512,0.0,0.027482818646049522,0.005550338057364739,0.01127738686779165,0.010655063031286835,0.0,0.0,0.004911104247789888,0.01127738686779165,0.010655063031286835,0.0,0.0,0.0006392338095748512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2709482308757894e-05,0.0,0.0,0.0031988975876921016,0.0008514227192220347,0.00324160707000086,0.0005852467033319941,0.0013439041717643774,0.001269743055375275,0.0,0.0,4.2709482308757894e-05,0.0,0.0,0.0,0.0,0.0,0.0006546641128541817,0.001330171314397662,0.0012567680229003378,0.0,0.0 +95004,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,8763.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0020614738129522375,0.0,0.0,0.0020614738129522375,0.001015560158444956,0.0006053330726979911,0.00037747508454619904,0.0,6.310549726309156e-05,0.001015560158444956,0.0006053330726979911,0.00037747508454619904,0.0,6.310549726309156e-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.0002456647875959854,6.744475581175121e-05,0.0002456647875959854,0.00012102378844096709,7.213723492136478e-05,4.4983514166021153e-05,0.0,7.52025006763237e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012102378844096709,7.213723492136478e-05,4.4983514166021153e-05,0.0,7.52025006763237e-06 +95005,50.0,the Greater Atlanta and Macon Area,G1301530020200,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,46858.0,,6140.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.009756784856963727,0.004223589093109334,0.0,0.013980373950073061,0.004122463933977323,0.0008191137889692939,0.006950310671151851,0.0003780359672232859,0.0017104495887513079,0.004122463933977323,0.0008191137889692939,0.0027267215780425163,0.0003780359672232859,0.0017104495887513079,0.0,0.004223589093109334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002821954792351629,0.0,0.0,0.0011626967901568138,0.0006379414804974063,0.0014448922693919767,0.0004912658886960722,9.761217318715799e-05,0.00032493802752846154,4.5049799918528126e-05,0.00020383090082659404,0.0,0.0002821954792351629,0.0,0.0,0.0,0.0,0.0004260627283878871,8.465661831798988e-05,0.0007183248598702462,3.907057483181198e-05,0.00017677748798404172 +95006,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,14022.0,,1871.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011537757487621362,0.0005508477434374672,0.0,0.001704654181805901,0.0007423508867351325,0.0004358230990336772,0.0005264801960370913,0.0,0.0,0.00019150314329766536,0.0004358230990336772,0.0005264801960370913,0.0,0.0,0.0005508477434374672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.68053971013779e-05,0.0,0.0,0.00013749382266816268,7.731628124800238e-05,0.00017429921976954058,2.282115849047307e-05,5.1936421750514116e-05,6.273989966411307e-05,0.0,0.0,3.68053971013779e-05,0.0,0.0,0.0,0.0,0.0,7.590465076974375e-05,4.4562484831168354e-05,5.383208416862848e-05,0.0,0.0 +95007,50.0,the Greater Atlanta and Macon Area,G1300130180502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,19299.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016336998120456121,0.0,0.0,0.0016336998120456126,0.0005918490574511982,0.0004714230423390125,0.0005704277122554017,0.0,0.0,0.0005918490574511982,0.0004714230423390125,0.0005704277122554017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019468325393353597,7.238127889749865e-05,0.00019468325393353597,7.052893040234895e-05,5.6178112518044195e-05,6.797621101314286e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.052893040234893e-05,5.617811251804418e-05,6.797621101314283e-05,0.0,0.0 +95008,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4591.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011023198787974895,0.0,0.0,0.0011023198787974895,0.0006391602658573676,0.00025010619098766567,0.0001671509960271403,0.0,4.598513299905493e-05,0.0006391602658573676,0.00025010619098766567,0.0001671509960271403,0.0,4.598513299905493e-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.00013136461408657952,4.0165313288515734e-05,0.00013136461408657952,7.616939808381498e-05,2.980541664149283e-05,1.991955920385483e-05,0.0,5.480096445988761e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.616939808381498e-05,2.980541664149283e-05,1.991955920385483e-05,0.0,5.480096445988761e-06 +95009,50.0,the Greater Atlanta and Macon Area,G1301210006700,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,150494.0,,27061.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014267302688210928,0.004601933036936125,0.0,0.018869253455508474,0.009300514273972958,0.003084763740583627,0.00457312119962854,0.0,0.0019108365109619307,0.007723717772164823,0.003084763740583627,0.0015479846645005504,0.0,0.0019108365109619307,0.0015767965018081355,0.0030251365351279887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030747456091926206,0.0,0.0,0.0017002078777224388,0.0008139158406882355,0.0020076824386417004,0.0009204210556484757,0.00036760554726203074,0.00018447044817743283,0.0,0.00022771082663449997,0.00010535242650450897,0.00020212213441475304,0.0,0.0,0.0,0.0,0.0009895716978003146,0.0003282178600192818,0.00048657861022021403,0.0,0.00020331238409719416 +95010,50.0,the Greater Atlanta and Macon Area,G1301210012000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,91588.0,,15096.0,,7.614023970037612,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,285525.89887641044,0.0,0.0,0.017343106736118045,0.01044942405659233,0.0,0.027792602959733115,0.02159648672194241,0.003261588592407821,0.0014974657217051066,0.0007272270880781859,0.0007096183345313886,0.01210991508265078,0.003261588592407821,0.0008712724654528071,0.0007272270880781859,0.0003729591734829875,0.009486571639291631,0.0006261932562522993,0.000336659161048401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006981709583921248,0.0,0.0,0.0020667467713946118,0.0012277201481870157,0.0027649177297867367,0.0014431167540939396,0.00038867763403301227,0.00010382796937007539,8.666234136852894e-05,4.444487250099807e-05,0.0006338386476986084,4.183866435973941e-05,2.249364633377715e-05,0.0,0.0,0.0,0.002148503654915517,0.00032447569374787155,0.00014897379456285727,7.234741820770663e-05,7.059562997284701e-05 +95011,50.0,the Greater Atlanta and Macon Area,G1302230120102,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,7134.0,,535.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0017130289112885354,0.0004244527024301256,0.0,0.0021373989066449215,0.0012458166517351878,0.00034323435601812583,0.0004822649469739016,0.0,6.608295191770663e-05,0.000821363949305062,0.00034323435601812583,0.0004822649469739016,0.0,6.608295191770663e-05,0.0004244527024301256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8358626838795875e-05,0.0,0.0,0.00020413407667929686,7.681506155936853e-05,0.00023249270351809274,9.787830800995062e-05,4.0901719689990444e-05,5.746938012345403e-05,0.0,7.874813019831893e-06,2.8358626838795875e-05,0.0,0.0,0.0,0.0,0.0,0.00013551203780880823,3.733485739272085e-05,5.2457723724567535e-05,0.0,7.188084591996134e-06 +95012,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5051.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00037205009714705084,0.0,0.0,0.00037205009714705084,0.00014046632802458564,0.00012091704881294897,0.00011069740991581393,0.0,0.0,0.00014046632802458564,0.00012091704881294897,0.00011069740991581393,0.0,0.0,0.0,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.433648435812478e-05,1.7597637653634573e-05,4.433648435812478e-05,1.673909831783693e-05,1.4409448846903542e-05,1.3191594413903823e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.673909831783693e-05,1.4409448846903542e-05,1.3191594413903823e-05,0.0,0.0 +95013,50.0,the Greater Atlanta and Macon Area,G1301390001004,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,19587.0,,2625.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,7566.85751697572,0.0021406259749029433,0.0005595592138637974,0.003979023991946101,0.0018059805901441018,0.0,0.008485189770856945,0.0030693995995551056,0.0002199651511048791,0.00431811601490791,0.0003677800113680534,0.0005099289939209945,0.0003692144107883657,0.0002199651511048791,0.0025121354247638083,0.0003677800113680534,0.0005099289939209945,0.0,0.0018059805901441018,0.0,0.0005595592138637974,0.0,0.0,0.0021406259749029433,0.0,0.0,0.0,0.00012066626189788523,0.0,0.0,0.0004741724971300026,0.0002475608323117428,0.0005948387590278878,4.3998558313360734e-05,2.621281630673609e-05,0.00029936625913793444,4.382762374337876e-05,6.076723962859262e-05,0.0,0.00012066626189788523,0.0,0.0,0.0,0.0,0.00021517466292043366,1.5420255886556774e-05,0.00030271365060900236,2.5782547175175454e-05,3.574764243671948e-05 +95014,50.0,the Greater Atlanta and Macon Area,G1301390000500,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,52091.0,,12064.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.010261119693145504,0.00829878956618737,0.0,0.018559909259332874,0.006051157394529135,0.0006839933635758825,0.005697936537277252,0.00036742141151297543,0.005759328832466614,0.006051157394529135,0.0006839933635758825,0.0024696054819515513,0.00036742141151297543,0.0006889420415759597,0.0,0.0032283310553257003,0.005070386790890655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005544743347379749,0.0,0.0,0.0012227985375063992,0.0009093851411785458,0.0017772728722443743,0.000721105165276853,8.151021620022456e-05,0.0002942982892564258,4.378492582507607e-05,8.209994094781977e-05,0.0,0.00021569732548815983,0.00033877221736023895,0.0,0.0,0.0,0.0005794509947600976,6.549831860127827e-05,0.0005456270229543626,3.5183798489498654e-05,0.000551505869627603 +95015,50.0,the Greater Atlanta and Macon Area,G1302970110800,ComStock 90.1-2007,gen4_led,200001_500000,Electricity,247373.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.020782725178347648,0.0,0.0,0.020782725178347648,0.005692430934523103,0.0048119461298420105,0.010278378803588829,0.0,0.0,0.005692430934523103,0.0048119461298420105,0.010278378803588829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024766378866999247,0.0007799825436592764,0.0024766378866999247,0.000678356182785431,0.0005734304809237393,0.0012248548802128475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000678356182785431,0.0005734304809237393,0.0012248548802128475,0.0,0.0 +95016,50.0,the Greater Atlanta and Macon Area,G1300890023802,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,64011.0,,3135.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006039162106474549,0.0009227750821593272,0.0,0.006961937188633877,0.003240423460155544,0.001303725165132712,0.002417788563345621,0.0,0.0,0.0023176483779962166,0.001303725165132712,0.002417788563345621,0.0,0.0,0.0009227750821593272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.165352781272198e-05,0.0,0.0,0.0007196768051298712,0.0002907430831253671,0.0007813303329425932,0.00027619026459027124,0.00015536273825208637,0.00028812380228751376,0.0,0.0,6.165352781272198e-05,0.0,0.0,0.0,0.0,0.0,0.0003636690582517504,0.00014631560006054352,0.00027134567463029925,0.0,0.0 +95017,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,NaturalGas,27010.0,,11263.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.00562392152718914,0.007747836748845446,0.0,0.013371758276034587,0.004590867064680279,0.0007571477340118059,0.004037260608410777,0.00036448089270133536,0.00362200197623039,0.002995456309438011,0.0007571477340118059,0.0011257883850320466,0.00036448089270133536,0.0003811199259769572,0.0015954107552422678,0.00291147222337873,0.003240882050253432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000517662943563681,0.0,0.0,0.0006701958750814225,0.0006838509596951921,0.0011878588186451037,0.0003569648781311062,9.02283728015632e-05,0.00013415882995795563,4.3434743826612125e-05,4.541759714573334e-05,0.00010659556396499166,0.00019452672147263813,0.00021653586623735866,0.0,0.0,0.0,0.000407822353308724,6.726001130868443e-05,0.0003586436067621922,3.237807876013397e-05,0.00032175476850536915 +95018,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,44011.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.003698076852344598,0.0,0.0,0.003698076852344598,0.0024317407445858487,0.000914852815065085,0.0003514529190942263,0.0,0.0,0.0024317407445858487,0.000914852815065085,0.0003514529190942263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000440692158745507,0.0001413883573036829,0.000440692158745507,0.0002897855077191037,0.00010902111505601235,4.188191641145812e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002897855077191037,0.00010902111505601235,4.188191641145812e-05,0.0,0.0 +95019,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970302,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,19097.0,,379.0,3237.0,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0020804416207468967,0.00014100551410660926,0.0003892279167905716,0.0026106750516440777,0.0012764118274761792,0.00031537342108098185,0.000943524118850216,0.0,7.544318108424519e-05,0.0008871839106856076,0.00031537342108098185,0.0008025186047436066,0.0,7.544318108424519e-05,0.0,0.00014100551410660926,0.0,0.0,0.0,0.0,0.0,0.0003892279167905716,0.0,0.0,9.420465180305803e-06,0.0,3.1391068593101236e-05,0.0002479226805409156,0.00010563033363879659,0.0002887342143143226,0.00010572419388100063,3.75825128405601e-05,9.563477373643447e-05,0.0,8.990435250100813e-06,0.0,9.420465180305803e-06,0.0,3.1391068593101236e-05,0.0,0.0,0.00014116799634475847,3.487952163716916e-05,0.00010435143775218932,0.0,8.343829540185324e-06 +95020,50.0,the Greater Atlanta and Macon Area,G1301510070403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,255341.0,,1700.0,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,431997.0345818221,0.0,0.0,0.04047110680187057,0.0008900988049535117,0.0,0.04136120560682408,0.020312967538902903,0.0046844834431943715,0.0160768091316677,0.0,0.0002869454930591056,0.019709759633117125,0.0046844834431943715,0.0160768091316677,0.0,0.0,0.0006032079057857796,0.0,0.0002869454930591056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.947273432674116e-05,0.0,0.0,0.004822860824271478,0.0017175622057022486,0.004882333558598219,0.002348772620816351,0.0005582405193595119,0.0019158411782508105,0.0,0.0,4.030386663249283e-05,0.0,1.917251543310547e-05,0.0,0.0,0.0,0.002397770607381409,0.0005529628642070373,0.0018977286466178162,0.0,3.387144039195613e-05 +95021,85.0,Rural Climate Zone 3A,G1301930000400,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,59487.0,,2058.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003062104338688799,0.0003500327951546824,0.0,0.003412119403482062,0.001539615933910285,0.00047159215305056447,0.0007685402461136089,0.0,0.0006323888007690233,0.001539615933910285,0.00047159215305056447,0.0004185074509589264,0.0,0.0006323888007690233,0.0,0.0003500327951546824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.338667440570101e-05,0.0,0.0,0.00036490481470686386,0.00010180674728362649,0.0003882914891125648,0.00018347293395098272,5.619868828500305e-05,4.9872691115091804e-05,0.0,7.536050135578627e-05,0.0,2.338667440570101e-05,0.0,0.0,0.0,0.0,0.0001752048193358599,5.3666122930790605e-05,8.745814589661066e-05,0.0,7.196441862442696e-05 +95022,50.0,the Greater Atlanta and Macon Area,G1301990970500,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,15147.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0012046169537012373,0.0,0.0,0.001204616953701237,0.000775316499248053,0.00030774530950330146,0.00012158551854932053,0.0,0.0,0.000775316499248053,0.00030774530950330146,0.00012158551854932053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014355106059655223,3.510719642764104e-05,0.00014355106059655223,9.239244510306586e-05,3.6673205899250306e-05,1.44890291368633e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.239244510306587e-05,3.667320589925031e-05,1.4489029136863303e-05,0.0,0.0 +95023,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301090970200,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,22219.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026356847680593103,0.0,0.0,0.0026356847680593107,0.0007438239878374223,0.0007905949478351213,0.0011012658323867666,0.0,0.0,0.0007438239878374223,0.0007905949478351213,0.0011012658323867666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031408907857691384,0.00010191211155492893,0.00031408907857691384,8.86399594498109e-05,9.421355759320784e-05,0.00013123556153389507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.863995944981089e-05,9.421355759320783e-05,0.00013123556153389504,0.0,0.0 +95024,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,121029.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010921847778832764,0.0,0.0,0.010921847778832764,0.003674804147693229,0.002626723403020381,0.004620258848906558,0.0,0.0,0.003674804147693229,0.002626723403020381,0.004620258848906558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013015353287931981,0.0004551465230432014,0.0013015353287931981,0.00043791925336004545,0.0003130215122229336,0.0005505872487689941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043791925336004545,0.0003130215122229336,0.0005505872487689941,0.0,0.0 +95025,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,4095.0,,516.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009832216926128868,0.0004091518937883537,0.0,0.0013923735864012406,0.0009407102567108825,0.000256391928591853,0.0001545795208187656,0.0,4.069188027973925e-05,0.0005315583629225287,0.000256391928591853,0.0001545795208187656,0.0,4.069188027973925e-05,0.0004091518937883537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.733919233951765e-05,0.0,0.0,0.00011716798147501224,5.424646093887119e-05,0.00014450717381452987,6.33444327843122e-05,3.055356179109504e-05,1.842084096372795e-05,0.0,4.84914593587702e-06,2.733919233951765e-05,0.0,0.0,0.0,0.0,0.0,9.763139857240643e-05,2.6609577595785124e-05,1.6043000169845934e-05,0.0,4.223197476492348e-06 +95026,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,42170.0,,1502.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.003937591151905202,0.0004514242098480245,0.0,0.004389015361753226,0.0012648965902183834,0.0009125945446014802,0.001538258157903515,0.0,0.0006732660690298479,0.0012648965902183834,0.0009125945446014802,0.0010868339480554904,0.0,0.0006732660690298479,0.0,0.0004514242098480245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0160627155096155e-05,0.0,0.0,0.0004692349043803032,0.00021195612234956607,0.0004993955315353994,0.0001507352103518705,0.00010875207642288287,0.00012951583951176132,0.0,8.023177809378851e-05,0.0,3.0160627155096155e-05,0.0,0.0,0.0,0.0,0.00014392378539251522,0.00010383778595286365,0.00017502769689510203,0.0,7.660626329491853e-05 +95027,50.0,the Greater Atlanta and Macon Area,G1301210007300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,18135.0,,2263.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.002460385736886832,0.0006660872150853411,0.0,0.0031264729519721733,0.0017406837795994044,0.0007776132443711931,0.0006081452383952785,0.0,0.0,0.0010745965645140628,0.0007776132443711931,0.0006081452383952785,0.0,0.0,0.0006660872150853411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.450364389199803e-05,0.0,0.0,0.00029319909856466935,0.0001484487973473879,0.0003377027424566674,0.0001280574583540214,9.266656803581879e-05,7.247141495768353e-05,0.0,0.0,4.450364389199803e-05,0.0,0.0,0.0,0.0,0.0,0.00018801815820915758,8.399309037013407e-05,6.568817897129122e-05,0.0,0.0 +95028,50.0,the Greater Atlanta and Macon Area,G1301210007300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,12848.0,,2703.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0017199682953484548,0.0007955666640553493,0.0,0.002515534959403804,0.001539237203861283,0.00045607823919016107,0.0005201888267460621,0.0,0.0,0.0007436705398059338,0.00045607823919016107,0.0005201888267460621,0.0,0.0,0.0007955666640553493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3155074037973996e-05,0.0,0.0,0.00020496434175376252,0.00012161533315103952,0.00025811941579173656,8.862136766428472e-05,5.434970885023669e-05,6.198960803522722e-05,0.0,0.0,5.3155074037973996e-05,0.0,0.0,0.0,0.0,0.0,0.00015794135809575252,4.67982558600534e-05,5.33766527708704e-05,0.0,0.0 +95029,50.0,the Greater Atlanta and Macon Area,G1301210007002,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,8981.0,,2073.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012394611295453222,0.000610232131623522,0.0,0.001849662571562547,0.0008305528152347304,0.0004926602498970229,0.0005264801960370913,0.0,0.0,0.0002203206836112083,0.0004926602498970229,0.0005264801960370913,0.0,0.0,0.000610232131623522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0771378230484394e-05,0.0,0.0,0.0001477024115898839,8.648857125385518e-05,0.00018847378982036832,2.6254874410175966e-05,5.8708664007042046e-05,6.273887317266592e-05,0.0,0.0,4.0771378230484394e-05,0.0,0.0,0.0,0.0,0.0,8.463026669833462e-05,5.020026129063171e-05,5.364638898902303e-05,0.0,0.0 +95030,50.0,the Greater Atlanta and Macon Area,G1300630040514,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5582.0,,280.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010165526433298276,0.00022198578591630112,0.0,0.0012386211363198678,0.0005964007087341459,0.00022289556372743352,0.0003750765794077592,0.0,4.424828445052947e-05,0.0003744149228178447,0.00022289556372743352,0.0003750765794077592,0.0,4.424828445052947e-05,0.00022198578591630112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.483356704336712e-05,0.0,0.0,0.00012114459817792185,5.005101055011987e-05,0.000135978165221289,4.4619770234435945e-05,2.6562907175128092e-05,4.469862116482594e-05,0.0,5.273155969830623e-06,1.483356704336712e-05,0.0,0.0,0.0,0.0,0.0,6.547399501941207e-05,2.44698955175864e-05,4.11766145351593e-05,0.0,4.857660149131251e-06 +95031,50.0,the Greater Atlanta and Macon Area,G1301210009402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,10475.0,,894.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,5611.956475588368,0.0,0.0,0.0004769999132836805,0.00015200238845411264,0.0,0.0006289845713763733,0.0002998736026973531,0.00014024715883261769,6.320873846248824e-05,0.0,0.0001256550713839142,0.00022180682136486063,0.00014024715883261769,6.320873846248824e-05,0.0,5.1719464262294025e-05,7.806678133249247e-05,0.0,7.393560712162018e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0155370740616204e-05,0.0,0.0,5.684305464304225e-05,2.565676834755546e-05,6.699842538365846e-05,2.6432242262366984e-05,1.6712952541592547e-05,7.532449533600181e-06,0.0,6.163297416412827e-06,5.215688483720185e-06,0.0,4.93968225689602e-06,0.0,0.0,0.0,3.194205408072771e-05,1.4938901896680433e-05,6.732893206278855e-06,0.0,1.3384576199971456e-05 +95032,50.0,the Greater Atlanta and Macon Area,G1302190030100,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,5571.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010005074710244016,0.0,0.0,0.001000507471024402,0.0003850841353302153,0.00016194045038156392,0.0004087383584196573,0.0,4.466181981922601e-05,0.0003850841353302153,0.00016194045038156392,0.0004087383584196573,0.0,4.466181981922601e-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.0001192273108620937,3.755217509125382e-05,0.0001192273108620937,4.58892584420855e-05,1.9297931277835787e-05,4.8708057392780634e-05,0.0,5.322207809004763e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.588925844208548e-05,1.929793127783578e-05,4.870805739278061e-05,0.0,5.322207809004761e-06 +95033,50.0,the Greater Atlanta and Macon Area,G1300130180502,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,15492.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034817196832036246,0.0,0.0,0.0034817196832036246,0.0022247375765136303,0.0008478302129016405,0.00033380574961184477,0.0,7.526343710276975e-05,0.0022247375765136303,0.0008478302129016405,0.00033380574961184477,0.0,7.526343710276975e-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.0004149102240128295,0.00013451072942298955,0.0004149102240128295,0.0002651179446450127,0.00010103438977493684,3.977902615663301e-05,0.0,8.969007384176422e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002651179446450127,0.00010103438977493684,3.977902615663301e-05,0.0,8.969007384176422e-06 +95034,35.0,Eastern Counties in South Carolina and Georgia,G1302450010600,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,148265.0,,1210.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013222279287695973,0.0003563063291163293,0.0,0.013578585616812298,0.006364318485198711,0.0023786900049223474,0.004835546437084943,0.0,0.0,0.0060080121560823815,0.0023786900049223474,0.004835546437084943,0.0,0.0,0.0003563063291163293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3806363806290393e-05,0.0,0.0,0.0015756726618339988,0.0004957031414868499,0.0015994790256402892,0.0007159628306380258,0.00028346374556024307,0.0005762424284165321,0.0,0.0,2.3806363806290393e-05,0.0,0.0,0.0,0.0,0.0,0.0007496799900106143,0.00028019595550973677,0.0005695994650614215,0.0,0.0 +95035,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970400,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,114230.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009878002199829,0.0,0.0,0.009878002199829,0.002249241245558637,0.002954672535917633,0.004674119107959026,0.0,0.0,0.002249241245558637,0.002954672535917633,0.004674119107959026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011771432658133258,0.0003437989583856902,0.0011771432658133258,0.0002680379222273064,0.0003521028653343724,0.0005570061354753095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002680379222273064,0.0003521028653343724,0.0005570061354753095,0.0,0.0 +95036,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5762.0,,483.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010595603216742675,0.0003830991655604719,0.0,0.0014425767801610001,0.000796634534257009,0.00042759557123221936,0.00017302319826263113,0.0,4.532347640914047e-05,0.00041353536869653714,0.00042759557123221936,0.00017302319826263113,0.0,4.532347640914047e-05,0.0003830991655604719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.559539384167835e-05,0.0,0.0,0.0001262623363302072,6.16937067017754e-05,0.00015185773017188555,4.927887609484319e-05,5.0954357882067846e-05,2.0618281758082386e-05,0.0,5.400964819994813e-06,2.559539384167835e-05,0.0,0.0,0.0,0.0,0.0,8.386043211877086e-05,4.5012295894315345e-05,1.821387292280613e-05,0.0,4.771129235993194e-06 +95037,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5421.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,9713.774621698478,0.0,0.0,0.00037235699321002785,0.0,0.0,0.00037235699321002785,0.00015937112550397055,0.00012380187180493303,8.91839959011243e-05,0.0,0.0,0.00015937112550397055,0.00012380187180493303,8.91839959011243e-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,4.437265356738864e-05,1.682462874366917e-05,4.437265356738864e-05,1.8991773673077492e-05,1.4753093586981437e-05,1.0627786307329713e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8991773673077492e-05,1.4753093586981437e-05,1.0627786307329713e-05,0.0,0.0 +95038,50.0,the Greater Atlanta and Macon Area,G1301210007704,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,509110.0,,98375.0,,7.614023970037612,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,2664908.3895131643,0.0,0.0,0.10666726178742994,0.06809377163569286,0.0,0.17476110559014557,0.1465414903569026,0.012382706428580675,0.010662388940676755,0.0007907340680830291,0.004383713628879758,0.08043057983781549,0.012382706428580675,0.010662388940676755,0.0007907340680830291,0.0024008525122739995,0.06611091051908709,0.0,0.001982861116605759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004549628507902854,0.0,0.0,0.012711336071663455,0.007262656481660897,0.01726096457956631,0.009584760250006834,0.0014756237317135777,0.001270616746699892,9.423028504047972e-05,0.0002861050582026722,0.004417145297667618,0.0,0.000132483210235236,0.0,0.0,0.0,0.014473743834165716,0.0012230264642761066,0.0010531125745462144,7.809994503609486e-05,0.0004329746336837223 +95040,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,252149.0,,9836.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.022466203531808133,0.002895196078912685,0.0,0.025361399610720817,0.00641161116850347,0.007164519279805013,0.011785269162412336,0.0,0.0,0.0035164150895907846,0.007164519279805013,0.011785269162412336,0.0,0.0,0.002895196078912685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019343952843661944,0.0,0.0,0.0026772535990388425,0.0009498672909398463,0.0028706931274754617,0.0004190443187694087,0.0008537817704751024,0.0014044275097943315,0.0,0.0,0.00019343952843661944,0.0,0.0,0.0,0.0,0.0,0.0007257394465598541,0.0008109621934866527,0.0013339914874289551,0.0,0.0 +95041,50.0,the Greater Atlanta and Macon Area,G1302970110300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,25032.0,,9322.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002890048911468607,0.0015853602663740214,0.0,0.004475409177842628,0.0016720794640794998,0.000842475853235229,0.0016364237072637733,0.0,0.00032443015326412617,0.001508676453232293,0.000842475853235229,0.00021446645173695873,0.0,0.00032443015326412617,0.00016340301084720663,0.0014219572555268145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010592468994845062,0.0,0.0,0.00034440176264892094,0.00020264517000458167,0.00045032645259737155,0.00017978617167973423,0.00010039628315353452,2.5557568840499067e-05,0.0,3.86617389751531e-05,1.091765299519008e-05,9.500703695326053e-05,0.0,0.0,0.0,0.0,0.00016824866366360052,8.477194985090707e-05,0.0001646608955191823,0.0,3.264494356368165e-05 +95042,50.0,the Greater Atlanta and Macon Area,G1300670031108,ComStock 90.1-2004,gen3_t5_cfl,100001_200000,Electricity,194704.0,,,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,1459415.2837631335,0.10147060856819301,0.0,0.06259854665847515,0.0,0.0,0.16406915522666818,0.14344697985801427,0.013162814009084593,0.0021779870759968327,0.0006493938940286941,0.0046319803895437765,0.04197637128982125,0.013162814009084593,0.0021779870759968327,0.0006493938940286941,0.0046319803895437765,0.0,0.0,0.0,0.0,0.0,0.0,0.10147060856819301,0.0,0.0,0.0,0.0,0.0,0.0,0.007459747777873305,0.0026011444054593854,0.007459747777873305,0.005002243009902756,0.0015685870966068887,0.00025954650894765543,7.738701481960328e-05,0.0005519841475964005,0.0,0.0,0.0,0.0,0.0,0.0,0.006522117382515331,0.0005984749078470793,9.902674410651982e-05,2.9526053518422927e-05,0.00021060268988595075 +95043,50.0,the Greater Atlanta and Macon Area,G1301530020400,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,61091.0,,2162.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0031446923621834054,0.000367674504767635,0.0,0.0035123668669510403,0.0013977198514656026,0.001026463813691117,0.0005889848760127341,0.0,0.0004991983257815867,0.0012216928232873182,0.001026463813691117,0.00039733739942338336,0.0,0.0004991983257815867,0.00017602702817828418,0.00019164747658935075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4565399947953634e-05,0.0,0.0,0.0003747468797786374,0.00010241886436044552,0.00039931227972659104,0.00014558676043497043,0.00012232169862216627,4.734992600353663e-05,0.0,5.948849471796402e-05,1.1760876244552422e-05,1.2804523703401207e-05,0.0,0.0,0.0,0.0,0.00015890330408233573,0.00011669612572608411,6.696023008817626e-05,0.0,5.6752619829994955e-05 +95044,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,17825.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015426744397666258,0.0,0.0,0.0015426744397666258,0.0007871577119297786,0.0003106708845516453,0.00044484584328520184,0.0,0.0,0.0007871577119297786,0.0003106708845516453,0.00044484584328520184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001838388326019078,6.715474175516948e-05,0.0001838388326019078,9.38047271053839e-05,3.7022310908331766e-05,5.301179458819213e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.38047271053839e-05,3.7022310908331766e-05,5.301179458819213e-05,0.0,0.0 +95045,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000900,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11494.0,,,927.0,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002683679128693047,0.0,0.00023803095822172676,0.0029217100869147737,0.0007575140883783167,0.0011138988691209923,0.0009664321566438071,0.0,8.386497277165772e-05,0.0005194831301565899,0.0011138988691209923,0.0009664321566438071,0.0,8.386497277165772e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023803095822172676,0.0,0.0,0.0,0.0,1.9197769917598482e-05,0.0003198102787068556,0.0001358010016596345,0.0003390080486244541,6.19060762006213e-05,0.00013274176632223657,0.00011516836497440852,0.0,9.994071209589238e-06,0.0,0.0,0.0,1.9197769917598482e-05,0.0,0.0,8.789488527858732e-05,0.0001292464586671049,0.0001121357936980339,0.0,9.730910980727976e-06 +95046,50.0,the Greater Atlanta and Macon Area,G1301390001102,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,68719.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.005848978616247684,0.0,0.0,0.005848978616247686,0.001978190642737326,0.0014261153150479506,0.0024446726584624085,0.0,0.0,0.001978190642737326,0.0014261153150479506,0.0024446726584624085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006970120385148751,0.00023548448933982723,0.0006970120385148751,0.00023573734542903075,0.0001699475426594314,0.00029132715042641305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023573734542903067,0.00016994754265943135,0.000291327150426413,0.0,0.0 +95047,50.0,the Greater Atlanta and Macon Area,G1301170130406,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,19873.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,24034.3828889517,0.0,0.0,0.001588691118591609,0.0,0.0,0.001588691118591609,0.001132935259028143,0.00034082215929101317,0.0001149337002724529,0.0,0.0,0.001132935259028143,0.00034082215929101317,0.0001149337002724529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018932069942502886,5.6595331381133515e-05,0.00018932069942502886,0.0001350093124663718,4.061499987091576e-05,1.3696387087741313e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001350093124663718,4.061499987091576e-05,1.3696387087741313e-05,0.0,0.0 +95048,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,34506.0,,8197.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006958630187789663,0.005638911001131403,0.0,0.012597541188921067,0.0037420612077105216,0.00045405913649983356,0.00634147983720033,0.0003879333232234402,0.0016719359643159247,0.0026677677618676845,0.00045405913649983356,0.0032304826544561687,0.0003879333232234402,0.00021831559177152006,0.001074293445842838,0.0031109971827441604,0.0014536203725444047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037675971902105407,0.0,0.0,0.0008292469231589914,0.0005972680447352253,0.0012060066421800454,0.0003179128863771709,5.410937666085621e-05,0.0003849705659350729,4.62292873730171e-05,2.6016260078288793e-05,7.177813175641496e-05,0.0002078590040188271,9.712258324581202e-05,0.0,0.0,0.0,0.0003582405966580284,4.346866792092108e-05,0.0006070920261519258,3.7138212728520315e-05,0.0001600602727171872 +95049,50.0,the Greater Atlanta and Macon Area,G1301350050536,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,9974.0,,790.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0019996089217952356,0.0006270850330914288,0.0,0.002626693954886665,0.001554231329709065,0.000601280426084765,0.0003834299938554292,0.0,8.775220523740518e-05,0.0010148985018550414,0.000601280426084765,0.0003834299938554292,0.0,0.0,0.0005393328278540235,0.0,8.775220523740518e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.189756728400022e-05,0.0,0.0,0.0002382912911236726,9.878304327294083e-05,0.0002801888584076728,0.00012094438654004162,7.165395567974106e-05,4.5692948903889894e-05,0.0,0.0,3.6034560308489236e-05,0.0,5.863006975510979e-06,0.0,0.0,0.0,0.0001657895093421388,6.413844896324762e-05,4.090039193859916e-05,0.0,9.36050816368717e-06 +95050,50.0,the Greater Atlanta and Macon Area,G1301350050434,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,9751.0,,903.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002341437257559793,0.0007163259656561414,0.0,0.0030578459302896747,0.0022527752745112556,0.00039633229735876115,0.0003468734672626553,0.0,6.178218408326264e-05,0.0015982314929383768,0.00039633229735876115,0.0003468734672626553,0.0,0.0,0.000654543781572879,0.0,6.178218408326264e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.786192588895205e-05,0.0,0.0,0.0002790286856135046,0.00013264810188136082,0.00032689061150245667,0.00019046097918740248,4.723085346025836e-05,4.1336852965843815e-05,0.0,0.0,4.373389695014047e-05,0.0,4.128028938811591e-06,0.0,0.0,0.0,0.00024082674662187368,4.2368814516925564e-05,3.708155427462141e-05,0.0,6.604654516724415e-06 +95051,50.0,the Greater Atlanta and Macon Area,G1300970080403,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,36642.0,,12721.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007629498796669688,0.00875076882352775,0.0,0.016380267620197436,0.004820586131843281,0.0005923352406179317,0.006043124757775387,0.00037287212931016187,0.0045512776406796615,0.004820586131843281,0.0005923352406179317,0.0013250264645134143,0.00037287212931016187,0.0005186071104138836,0.0,0.004718098293261972,0.004032670530265778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000584675351213083,0.0,0.0,0.0009091908936460096,0.0008252748547683564,0.0014938662448590926,0.0005744588379804557,7.058731131729377e-05,0.000157900542025306,4.44343663323175e-05,6.180128927658932e-05,0.0,0.00031523581896644346,0.00026943953224663956,0.0,0.0,0.0,0.0004396332874267009,5.402046182130394e-05,0.0005511277531254473,3.40056158141372e-05,0.00041507258587215477 +95052,50.0,the Greater Atlanta and Macon Area,G1300590000600,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11154.0,,114.0,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0023873396834851084,9.015071037584508e-05,0.0,0.002477490393860954,0.0008398903338226668,0.0006846491564139869,0.0008627174861747158,0.0,9.015071037584508e-05,0.0008398903338226668,0.0006846491564139869,0.0008627174861747158,0.0,0.0,0.0,0.0,9.015071037584508e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.021472102218335e-06,0.0,0.0,0.0002844979056689655,0.0001008866523800106,0.0002905193777711838,0.00010008925106767172,8.158924867928969e-05,0.00010280954976729533,0.0,0.0,0.0,0.0,6.021472102218335e-06,0.0,0.0,0.0,9.848854218882895e-05,8.028440691670371e-05,0.00010116533565452239,0.0,1.0571394484079128e-05 +95053,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,62629.0,,4041.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003223822965201101,0.0006871578871955663,0.0,0.003910980852396668,0.0017236393550890132,0.0005843395213206803,0.0009010215066442434,0.0,0.0007019627389813105,0.0014051488729006048,0.0005843395213206803,0.0005323541016370854,0.0,0.0007019627389813105,0.0003184904821884085,0.00036866740500715795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.591171248384328e-05,0.0,0.0,0.00038417623281615884,0.00016455021499058741,0.00043008794530000207,0.00016744864912368162,6.963451728267372e-05,6.343952366454101e-05,0.0,8.365142985521543e-05,2.1279597774467872e-05,2.4632114709375412e-05,0.0,0.0,0.0,0.0,0.000189547465622127,6.425942584924436e-05,9.908473170515822e-05,0.0,7.719437232750046e-05 +95054,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,152913.0,,67.0,,9.325022323477118,Office,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,699376.6742607838,0.0,0.0,0.039181315954867846,5.691939778739089e-05,0.0,0.03923814696849719,0.021184798844192117,0.0058136447643807624,0.011750850581722351,0.0,0.0004890295465180649,0.021127879446404728,0.0058136447643807624,0.011750850581722351,0.0,0.0004890295465180649,5.691939778739089e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.801941249477774e-06,0.0,0.0,0.004669157007423731,0.0015015543010276405,0.004672958948673208,0.002517766031207749,0.0006928001147676685,0.0014003247466225436,0.0,5.827664738448865e-05,3.801941249477774e-06,0.0,0.0,0.0,0.0,0.0,0.002522945219974054,0.0006923599972223846,0.0013994351574366489,0.0,5.8239625775445116e-05 +95055,50.0,the Greater Atlanta and Macon Area,G1301350050730,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,16665.0,,1668.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014848552215017536,0.0004910030111569468,0.0,0.001975858232658701,0.0007070271498864766,0.0007172467887836116,0.0005515842939886121,0.0,0.0,0.0002160241387295299,0.0007172467887836116,0.0005515842939886121,0.0,0.0,0.0004910030111569468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.280578815649062e-05,0.0,0.0,0.00017694838575916332,8.382254506222024e-05,0.00020975417391565394,2.574333314095345e-05,8.547342503725287e-05,6.573162758095701e-05,0.0,0.0,3.280578815649062e-05,0.0,0.0,0.0,0.0,0.0,7.50569516117678e-05,7.61418532910246e-05,5.855536901286148e-05,0.0,0.0 +95056,50.0,the Greater Atlanta and Macon Area,G1301390001403,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,88451.0,,0.0,,9.325022323477118,Office,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,349688.3371303919,0.0,0.0,0.022696521483564065,8.838415805495479e-08,0.0,0.02269660986772212,0.013148999577993682,0.0018170899054518164,0.007416756623181533,0.0,0.00031376376109508956,0.013148911193835629,0.0018170899054518164,0.007416756623181533,0.0,0.00031376376109508956,8.838415805495479e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.076707554530004e-09,0.0,0.0,0.0027046964238529067,0.0008960117714899979,0.002704704500560461,0.001566927914891302,0.00021653875782920134,0.0008838391878611521,0.0,3.739056327125174e-05,8.076707554530004e-09,0.0,0.0,0.0,0.0,0.0,0.0015669370246807002,0.00021653856121428585,0.000883838385344462,0.0,3.7390529321013405e-05 +95057,85.0,Rural Climate Zone 3A,G1300090970200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,69978.0,,2002.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0059342650321490015,0.0005893018201284887,0.0,0.006523566852277489,0.0018200164118789659,0.0018821321750255163,0.002821418265373008,0.0,0.0,0.0012307145917504771,0.0018821321750255163,0.002821418265373008,0.0,0.0,0.0005893018201284887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9373305565331146e-05,0.0,0.0,0.0007071767515876764,0.00025268210139555526,0.0007465500571530075,0.00014666226439341863,0.00022429064262928476,0.00033622384456497305,0.0,0.0,3.9373305565331146e-05,0.0,0.0,0.0,0.0,0.0,0.0002082807438132249,0.00021538920572941887,0.00032288010761036387,0.0,0.0 +95058,50.0,the Greater Atlanta and Macon Area,G1301350050212,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,47802.0,,6052.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004215187382772322,0.00176309632656318,0.0,0.0059783140829349395,0.004287810659027987,0.0013168170300242926,0.00037365602028322295,0.0,0.0,0.002524714332464807,0.0013168170300242926,0.00037365602028322295,0.0,0.0,0.00176309632656318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011780080166643096,0.0,0.0,0.000502317193427893,0.00021368755192632808,0.0006201179950943239,0.0003008662017907257,0.00015692299646826498,4.4527995168902426e-05,0.0,0.0,0.00011780080166643096,0.0,0.0,0.0,0.0,0.0,0.0004447656165825177,0.00013659067175738633,3.875855616458382e-05,0.0,0.0 +95059,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,14444.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003309275434457169,0.0,0.0,0.0033092754344571686,0.00150584769157157,0.0003552268817103254,0.0013848472426909635,0.0,6.335361848430949e-05,0.00150584769157157,0.0003552268817103254,0.0013848472426909635,0.0,6.335361848430949e-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.0003943595415494029,0.0001251281082331517,0.0003943595415494029,0.0001794487696938413,4.2331656276984036e-05,0.00016502939527399783,0.0,7.549720304579692e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017944876969384132,4.233165627698404e-05,0.00016502939527399785,0.0,7.549720304579693e-06 +95060,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,74856.0,,,,9.325022323477118,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.01920808714929306,0.0,0.0,0.01920808714929306,0.010748397461063054,0.0039040166454454087,0.004110128502029564,0.0,0.00044554454075502716,0.010748397461063054,0.0039040166454454087,0.004110128502029564,0.0,0.00044554454075502716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022889914410005536,0.000600652931984653,0.0022889914410005536,0.001280866210238478,0.0004652342847828617,0.0004897962451666801,0.0,5.309470081253323e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.001280866210238478,0.0004652342847828617,0.0004897962451666801,0.0,5.309470081253323e-05 +95061,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,57038.0,,3920.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.002724216841106853,0.0006666970501168255,0.0,0.003390896160862259,0.0015746865887991497,0.0007955790472791893,0.0006598176698858451,0.0,0.00036083058525949454,0.0015746865887991497,0.0007955790472791893,0.00026324267600352395,0.0,9.070852902499016e-05,0.0,0.00039657499388232097,0.00027012205623450444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4544471414735806e-05,0.0,0.0,0.00032463906237883305,0.00014108176601631303,0.0003691835337935688,0.00018765201433839452,9.480744412842826e-05,3.137006358170699e-05,0.0,1.0809540330303295e-05,0.0,2.6496627629737663e-05,1.804784378499814e-05,0.0,0.0,0.0,0.00017144386967083694,8.661860173623369e-05,7.18375932119231e-05,0.0,3.9285399566180646e-05 +95062,50.0,the Greater Atlanta and Macon Area,G1301210009601,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,88339.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.007484905362246306,0.0,0.0,0.007484905362246306,0.003321140483322098,0.003568290461947084,0.0005954744169771245,0.0,0.0,0.003321140483322098,0.003568290461947084,0.0005954744169771245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008919628494458738,0.00027751670729989504,0.0008919628494458738,0.0003957744000152588,0.0004252268230594788,7.096162637113622e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003957744000152588,0.0004252268230594788,7.096162637113622e-05,0.0,0.0 +95063,85.0,Rural Climate Zone 3A,G1300090970300,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,598932.0,,64007.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.027521864862469866,0.010885058943721656,0.0,0.03840692380619152,0.019582935963388438,0.005696233213420365,0.005958447528461525,0.0,0.0071693071009211904,0.015740855295470098,0.005696233213420365,0.005152443028667344,0.0,0.0009323333249120567,0.003842080667918341,0.0008060044997941801,0.0062369737760091335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007272763652007628,0.0,0.0,0.0032797271324999737,0.0014363750732228943,0.004007003497700737,0.0018758071249637036,0.0006788090384303165,0.0006140066192543653,0.0,0.00011110434985158826,0.00025670549671974496,5.3852535477896974e-05,0.00041671833300312074,0.0,0.0,0.0,0.0020430923678375194,0.0005942893662890793,0.0006216462481580654,0.0,0.0007479755154160729 +95064,50.0,the Greater Atlanta and Macon Area,G1300570090902,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Propane,11763.0,,,2740.0,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028132811132425416,0.0,0.0007031755409315917,0.003516456654174133,0.002040548923296193,0.0008858754668217217,0.0004165955304248915,0.0,0.00017343673363132765,0.0015108101159959288,0.0008858754668217217,0.0004165955304248915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005297388073002642,0.00017343673363132765,0.0,0.0,0.0,5.671228625006523e-05,0.00033525500167881633,0.00016160526147034117,0.00039196728792888154,0.00018004124990936174,0.0001055686115825901,4.964514018686456e-05,0.0,0.0,0.0,0.0,0.0,4.272432291598069e-05,1.3987963334084542e-05,0.0,0.00022745294653388925,9.874548112534398e-05,4.643646610291828e-05,0.0,1.9332394166730123e-05 +95065,50.0,the Greater Atlanta and Macon Area,G1300670030313,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,6399.0,,532.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0015075845401200957,0.0004221369043654251,0.0,0.0019297214444855208,0.0011268838796980635,0.00038442247874030097,0.00037152017523696895,0.0,4.6812203736448e-05,0.0007047469753326387,0.00038442247874030097,0.00037152017523696895,0.0,4.6812203736448e-05,0.0004221369043654251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8203864577783587e-05,0.0,0.0,0.00017965261508778011,7.431601573047969e-05,0.00020785647966556372,8.398178259616934e-05,4.581003702699156e-05,4.4272522875483226e-05,0.0,5.578416729190451e-06,2.8203864577783587e-05,0.0,0.0,0.0,0.0,0.0,0.00012138027324889873,4.140737688520231e-05,4.001762843552684e-05,0.0,5.0422924520276464e-06 +95066,50.0,the Greater Atlanta and Macon Area,G1300210010200,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,9933.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0021030754710431093,0.0,0.0,0.0021030754710431093,0.001403539041356047,0.00042552789438873666,0.00022008352322029707,0.0,5.392501207802844e-05,0.001403539041356047,0.00042552789438873666,0.00022008352322029707,0.0,5.392501207802844e-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.000250620138881215,8.15114032801103e-05,0.000250620138881215,0.00016725750184104997,5.070947831303489e-05,2.6227001319919507e-05,0.0,6.426157407210641e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016725750184104997,5.070947831303489e-05,2.6227001319919507e-05,0.0,6.426157407210641e-06 +95067,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,11986.0,,1815.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0009836018818413742,0.0005342753560367078,0.0,0.0015178465482717843,0.0006837337387065204,0.0003516108193527808,0.00048253267981878084,0.0,0.0,0.00014945838266981255,0.0003516108193527808,0.00048253267981878084,0.0,0.0,0.0005342753560367078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5696298891060954e-05,0.0,0.0,0.00011721214604066826,6.797136370214443e-05,0.0001529084449317292,1.7810394733792647e-05,4.1900142189951215e-05,5.75016091169244e-05,0.0,0.0,3.5696298891060954e-05,0.0,0.0,0.0,0.0,0.0,6.887959975401341e-05,3.542140914680782e-05,4.86105277136475e-05,0.0,0.0 +95068,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,15025.0,,109.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0036286901532383746,8.618077083635833e-05,0.0,0.003714870924074732,0.0014840957311781325,0.0006308068514096978,0.0015137048635768045,0.0,8.618077083635833e-05,0.0014840957311781325,0.0006308068514096978,0.0015137048635768045,0.0,0.0,0.0,0.0,8.618077083635833e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7557899629481185e-06,0.0,0.0,0.0004324235040789262,0.00013845185669893997,0.0004381792940418743,0.00017685662025783495,7.517194843437958e-05,0.00018038507935571194,0.0,0.0,0.0,0.0,5.7557899629481185e-06,0.0,0.0,0.0,0.00017505319379035076,7.440541178327045e-05,0.0001785456728015492,0.0,1.0165260138739714e-05 +95069,50.0,the Greater Atlanta and Macon Area,G1300970080508,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,418832.0,,29165.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02799081519166884,0.004959731730392789,0.0,0.032950546922061626,0.012850912766170012,0.004008905638519618,0.008501761491999578,0.0,0.007588967025372421,0.01078472282844558,0.004008905638519618,0.005608219699331222,0.0,0.007588967025372421,0.0020661899377244332,0.002893541792668357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003313803517358606,0.0,0.0,0.0033356119531915856,0.0012534041499782777,0.003666992304927446,0.0012851948088002955,0.0004777336235295948,0.0006683208237101159,0.0,0.0009043626971515795,0.00013805076272986114,0.00019332958900599955,0.0,0.0,0.0,0.0,0.001430149197107496,0.0004461420978050313,0.0009461419272715473,0.0,0.0008445590827433718 +95070,50.0,the Greater Atlanta and Macon Area,G1300770170503,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,79302.0,,2650.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004082114300823017,0.0004507057872977421,0.0,0.00453282008812076,0.0015836581516776962,0.0007959868455918506,0.0018543475794776426,0.0,0.00029884524173499005,0.0013475961197311134,0.0007959868455918506,0.0016397038241264832,0.0,0.00029884524173499005,0.00023606203194658298,0.0002146437553511592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0113673913211288e-05,0.0,0.0,0.0004864574142709788,0.00014367717215530286,0.0005165710881841902,0.00016059034009749143,9.48561637831298e-05,0.00019540023225072042,0.0,3.561279103142186e-05,1.577236248939792e-05,1.4341311423813372e-05,0.0,0.0,0.0,0.0,0.00018047749498548293,9.071257694195269e-05,0.000211325913753532,0.0,3.405712309788865e-05 +95071,50.0,the Greater Atlanta and Macon Area,G1302970110800,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,124823.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.010486577092712447,0.0,0.0,0.010486577092712447,0.0030012286686712485,0.0024345450883841665,0.0050508340252633285,0.0,0.0,0.0030012286686712485,0.0024345450883841665,0.0050508340252633285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012496657996870625,0.00037475860905312406,0.0012496657996870625,0.00035765081314141986,0.000290120189634049,0.0006018984541346375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035765081314141986,0.000290120189634049,0.0006018984541346375,0.0,0.0 +95072,50.0,the Greater Atlanta and Macon Area,G1302470060309,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,81338.0,,2059.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003971813722428869,0.000350227829130303,0.0,0.004322041551559173,0.001723976231955994,0.0011010554441852791,0.0009943009380751413,0.0,0.000502691206981337,0.001723976231955994,0.0011010554441852791,0.0006440731089448381,0.0,0.000502691206981337,0.0,0.000350227829130303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3400192797977378e-05,0.0,0.0,0.00047331249269565813,0.00014801322527782605,0.0004967126854936356,0.00020544253701711032,0.00013121040746210189,7.675280614280697e-05,0.0,5.9904629184629826e-05,0.0,2.3400192797977378e-05,0.0,0.0,0.0,0.0,0.00019812879022256127,0.00012653932176134703,0.00011427050926013818,0.0,5.777202657935121e-05 +95073,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,237990.0,,2449.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011398264255025086,0.00041639753794994,0.0,0.011814661792975027,0.00499623854455668,0.002838879088410335,0.0024285276037046325,0.0,0.001551034286664799,0.00499623854455668,0.002838879088410335,0.0020121300657546925,0.0,0.001551034286664799,0.0,0.00041639753794994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7820885292162953e-05,0.0,0.0,0.0013583088043911272,0.0003965396166481073,0.0013861296896832903,0.0005953919519735432,0.0003383036551981685,0.0002397815950520513,0.0,0.0001848337150597735,0.0,2.7820885292162953e-05,0.0,0.0,0.0,0.0,0.0005861729014932864,0.00033306536055110564,0.00028492175846387536,0.0,0.00018197174935140066 +95074,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,73652.0,,7852.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004081936997208817,0.0013353621703512768,0.0,0.005417299167560094,0.0038085880151958623,0.0004786311065343254,0.0006062542480358655,0.0,0.00052380806743262,0.0026856533050182386,0.0004786311065343254,0.00039382678786221287,0.0,0.00052380806743262,0.001122934710177624,0.00021242746017365263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.922108230917046e-05,0.0,0.0,0.00048643598131101206,0.0002306793109613365,0.0005756570636201825,0.0003200437443745482,5.703747807773667e-05,4.693152298806027e-05,0.0,6.242112298020281e-05,7.50279230826396e-05,1.4193159226530853e-05,0.0,0.0,0.0,0.0,0.0004047110055312168,5.086065377277728e-05,6.442223872763747e-05,0.0,5.5661281511730296e-05 +95075,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,57479.0,,10483.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011968270163230094,0.007210941045822581,0.0,0.019179211209052676,0.004948678000077163,0.0011267207446552497,0.009838473903950509,0.0003668476517448506,0.002898490908624905,0.003719828016695683,0.0011267207446552497,0.0038563828415094066,0.0003668476517448506,0.002898490908624905,0.0012288499833814795,0.005982091062441102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00048179241273777656,0.0,0.0,0.001426232855666351,0.0007807464827704083,0.001908025268404128,0.00044328385493327927,0.00013426887288400525,0.0004595567978977061,4.371644078941356e-05,0.00034540688916194707,8.210448464685818e-05,0.0003996879280909184,0.0,0.0,0.0,0.0,0.0004923144422585049,0.00011209072301276971,0.000978771056153325,3.649548365438047e-05,0.000288353563325148 +95076,85.0,Rural Climate Zone 3A,G1303030950300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,DistrictHeating,47964.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,100799.30806909183,0.0,0.0042485512205769895,0.007393213957581849,0.0,0.0,0.011641765178158837,0.008681466012322281,0.0015679365602468633,0.0013342201112769181,0.0,5.8197088204148885e-05,0.004491111879949441,0.0015679365602468633,0.0013342201112769181,0.0,0.0,0.0,0.0,0.0,0.00419035413237284,0.0,5.8197088204148885e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008810337126855884,0.00027255517358543727,0.0008810337126855884,0.0005351963295503481,0.00018684769260777497,0.00015899619636634444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006570021053800107,0.00011865940841354749,0.00010097205021652809,0.0,4.40428027050284e-06 +95077,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,18612.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.004128819828139966,0.0,0.0,0.004128819828139966,0.0021420305027743227,0.001131846304122422,0.0007666118664896405,0.0,8.824844767984103e-05,0.0021420305027743227,0.001131846304122422,0.0007666118664896405,0.0,8.824844767984103e-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.000492023516926788,0.00012438825447476539,0.000492023516926788,0.00025526165471218286,0.00013487994689896223,9.135566151307862e-05,0.0,1.0516397759677948e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00025526165471218286,0.00013487994689896223,9.135566151307862e-05,0.0,1.0516397759677948e-05 +95078,50.0,the Greater Atlanta and Macon Area,G1301350050427,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,48598.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003996339152874262,0.0,0.0,0.003996339152874261,0.0018835438969152106,0.0009308464486156231,0.001181979496949725,0.0,0.0,0.0018835438969152106,0.0009308464486156231,0.001181979496949725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004762367850947619,0.0001698917139064241,0.0004762367850947619,0.00022445864971360266,0.00011092735204587092,0.0001408544405622852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022445864971360269,0.00011092735204587095,0.00014085444056228524,0.0,0.0 +95079,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11375.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002578393023822909,0.0,0.0,0.002578393023822909,0.0014192533853665155,0.0003542343968254537,0.0007381606331233187,0.0,6.674460850762109e-05,0.0014192533853665155,0.0003542343968254537,0.0007381606331233187,0.0,6.674460850762109e-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.0003072656852866713,9.730182093481371e-05,0.0003072656852866713,0.00016913164906236664,4.2213919168654795e-05,8.796619859450012e-05,0.0,7.953918461149759e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016913164906236664,4.2213919168654795e-05,8.796619859450012e-05,0.0,7.953918461149759e-06 +95080,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,28198.0,,758.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006566542471429002,0.0005878578929081966,0.0,0.007154319503554129,0.0028715281283295574,0.0007027610656485747,0.0026385682123091286,0.00041109622112039506,0.0005304467369295419,0.0028715281283295574,0.0007027610656485747,0.002050710319400932,0.00041109622112039506,0.0005304467369295419,0.0,0.0005878578929081966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9274811748944617e-05,0.0,0.0,0.0007825180251698522,0.00026088894522332103,0.0008217928369187966,0.00034219264247157654,8.374623382857828e-05,0.0002443778893253451,4.898928233626648e-05,6.321197720808576e-05,0.0,3.9274811748944617e-05,0.0,0.0,0.0,0.0,0.00032984286565616275,8.07238213960833e-05,0.00030308353652923646,4.7221252787675464e-05,6.0930648758290905e-05 +95081,81.0,the Columbus-Albany Area,G1300950001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2807.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007291455620857341,0.0,0.0,0.0007291455620857342,0.00039343754977788544,0.00015218101568032565,0.00015763968254711992,0.0,2.5887314080403227e-05,0.00039343754977788544,0.00015218101568032565,0.00015763968254711992,0.0,2.5887314080403227e-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,8.688674123540108e-05,2.8651856263918152e-05,8.688674123540108e-05,4.688296597740507e-05,1.813425633769714e-05,1.878472422807106e-05,0.0,3.0847946922278297e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.6882965977405056e-05,1.813425633769714e-05,1.8784724228071057e-05,0.0,3.0847946922278293e-06 +95082,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,318593.0,,15064.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.015458729784554218,0.0025617890001377493,0.0,0.018020518784691963,0.00787121664881824,0.004427962730682567,0.0037272588473620796,0.0,0.0019940628274676586,0.007255529848506909,0.004427962730682567,0.0017811566475356645,0.0,0.0019940628274676586,0.0006156868003113335,0.001946102199826415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017116377916870677,0.0,0.0,0.0018421860395148616,0.0006566693360599808,0.0020133498186835686,0.0008646270413211858,0.0005276714995112878,0.00021225689018497288,0.0,0.00023762849560555815,4.113659615210707e-05,0.00013002718301659966,0.0,0.0,0.0,0.0,0.0008794148937698401,0.0004947159439455469,0.0004164295164963779,0.0,0.00022278748353993526 +95083,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,144740.0,,20117.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.019327485426923176,0.005921682293566942,0.0,0.02524913703088382,0.00861644455374933,0.006228793183788054,0.010403899293346435,0.0,0.0,0.002694762260182388,0.006228793183788054,0.010403899293346435,0.0,0.0,0.005921682293566942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039565135546272133,0.0,0.0,0.002303218225644547,0.0010853017560274911,0.002698869581107268,0.0003211294906881856,0.0007422729686649679,0.0012398121090716877,0.0,0.0,0.00039565135546272133,0.0,0.0,0.0,0.0,0.0,0.0009210081150483364,0.0006657930696867635,0.001112068396372168,0.0,0.0 +95084,85.0,Rural Climate Zone 3A,G1302930010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,18378.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004412835919360748,0.0,0.0,0.004412835919360748,0.0020425338930659363,0.0007776119072969683,0.001485253630210483,0.0,0.00010735378171362104,0.0020425338930659363,0.0007776119072969683,0.001485253630210483,0.0,0.00010735378171362104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005258656423486314,0.00017365138964920267,0.0005258656423486314,0.00024340320313825885,9.266589390613498e-05,0.00017699363143654248,0.0,1.2793057890891641e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00024340320313825885,9.266589390613498e-05,0.00017699363143654248,0.0,1.2793057890891641e-05 +95085,50.0,the Greater Atlanta and Macon Area,G1301210004900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,51644.0,,5369.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004349024108447461,0.0015802692074813112,0.0,0.005929262626322476,0.0023881117140557412,0.0014463090759918391,0.002094872525881192,0.0,0.0,0.0008078425065744302,0.0014463090759918391,0.002094872525881192,0.0,0.0,0.0015802692074813112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010558367079166844,0.0,0.0,0.0005182638086406446,0.00024871271001722915,0.000623847479432313,9.626884648117765e-05,0.00017235352840171944,0.0002496414337577476,0.0,0.0,0.00010558367079166844,0.0,0.0,0.0,0.0,0.0,0.00025126521918636765,0.0001521734368000508,0.00022041205245340183,0.0,0.0 +95086,50.0,the Greater Atlanta and Macon Area,G1301390001606,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,93741.0,,6995.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.008166995269519474,0.0020590884449380705,0.0,0.010226083714457544,0.0062187576825287055,0.001454994234574089,0.0025523317973547496,0.0,0.0,0.004159669237590635,0.001454994234574089,0.0025523317973547496,0.0,0.0,0.0020590884449380705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013757610578522906,0.0,0.0,0.0009732447162847539,0.00046843874140157436,0.001110820822069983,0.0004956995777977857,0.00017338879285371862,0.00030415634563324954,0.0,0.0,0.00013757610578522906,0.0,0.0,0.0,0.0,0.0,0.0006755201418304641,0.000158050524216974,0.00027725015602254497,0.0,0.0 +95087,50.0,the Greater Atlanta and Macon Area,G1300890023501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,13905.0,,533.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030840640726650342,0.00042304668217655743,0.0,0.0035070280477678523,0.0014271105573717495,0.0011134026266785566,0.0008163188178069643,0.0,0.00015027875298432157,0.0011543426281795137,0.0011134026266785566,0.0008163188178069643,0.0,0.0,0.0002727679291922358,0.0,0.00015027875298432157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.826333372369642e-05,0.0,0.0,0.0003675194125577587,0.00013966315095723163,0.00039578274628145516,0.0001375598283962734,0.0001326811212918702,9.727846286961514e-05,0.0,0.0,1.8223357697116472e-05,0.0,1.0039976026579941e-05,0.0,0.0,0.0,0.00016105538021098765,0.00012565213146336227,9.212498421804974e-05,0.0,1.6959584227375514e-05 +95088,35.0,Eastern Counties in South Carolina and Georgia,G1300730030307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,54230.0,,2289.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.005975161939350254,0.0008508766376111659,0.0,0.00682603857696142,0.0037262034236185695,0.0008967935197810841,0.002014918036148305,0.0,0.0001881235974134619,0.0033598370768535266,0.0008967935197810841,0.001718531342715644,0.0,0.0,0.0003663663467650427,0.0002963866934326612,0.0001881235974134619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.685141676233768e-05,0.0,0.0,0.0007120465408529971,0.00026697477439748305,0.0007688979576153347,0.0004003841891962759,0.00010686885645963636,0.00020479349519708488,0.0,0.0,2.4478808028047848e-05,1.980310974156933e-05,1.2569498992720498e-05,0.0,0.0,0.0,0.0004197266349694377,0.00010101652634803738,0.00022696419677229273,0.0,2.1190599525566943e-05 +95089,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,154694.0,,7769.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007962900347721335,0.0013211069597695545,0.0,0.009284007307490887,0.005449852111127311,0.001506336045524846,0.001794223923902243,0.0,0.0005336129572979092,0.005449852111127311,0.001506336045524846,0.0004731169641326888,0.0,0.0005336129572979092,0.0,0.0013211069597695545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.826858404741032e-05,0.0,0.0,0.0009489244097075382,0.00035523583645014366,0.0010371929937549483,0.0006494490037194477,0.0001795073378294743,5.638049156808882e-05,0.0,6.358968948557945e-05,0.0,8.826858404741032e-05,0.0,0.0,0.0,0.0,0.0006088479079611506,0.00016828521789274116,0.0002004475461363961,0.0,5.96143025695042e-05 +95090,50.0,the Greater Atlanta and Macon Area,G1300890022800,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,15815.0,,813.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035609530598458817,0.000644618932724162,0.0,0.0042054892854963034,0.002037488761567839,0.0005552125860119707,0.0015075018330463564,0.0,0.00010536881194387766,0.0013928698288436761,0.0005552125860119707,0.0015075018330463564,0.0,0.00010536881194387766,0.000644618932724162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3067796653491276e-05,0.0,0.0,0.0004243500541860118,0.0001699259422952175,0.00046741785083950316,0.00016598488590283643,6.616332397516425e-05,0.00017964530107184847,0.0,1.2556543236162559e-05,4.3067796653491276e-05,0.0,0.0,0.0,0.0,0.0,0.00022645607999195963,6.170893708082098e-05,0.00016755084108031044,0.0,1.171118513942588e-05 +95091,50.0,the Greater Atlanta and Macon Area,G1300890021308,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,14198.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032847941406303335,0.0,0.0,0.0032847941406303335,0.0023506177427448562,0.0004692799363968303,0.00039302401440918886,0.0,7.178974000571884e-05,0.0023506177427448562,0.0004692799363968303,0.00039302401440918886,0.0,7.178974000571884e-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.00039144220873876356,0.0001380992341553192,0.00039144220873876356,0.00028011831540347465,5.592313154355284e-05,4.6835869068551825e-05,0.0,8.5550366901311e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00028011831540347465,5.592313154355284e-05,4.6835869068551825e-05,0.0,8.5550366901311e-06 +95092,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,63984.0,,4371.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005700901265861269,0.001286753812850082,0.0,0.006987655078711351,0.0031193529633111055,0.0016388863555099242,0.002229415759890321,0.0,0.0,0.0018325991504610235,0.0016388863555099242,0.002229415759890321,0.0,0.0,0.001286753812850082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.597370028580813e-05,0.0,0.0,0.0006793650136159012,0.0002998032550906417,0.0007653387139017092,0.00021838717928003828,0.00019530281253830943,0.00026567502179755345,0.0,0.0,8.597370028580813e-05,0.0,0.0,0.0,0.0,0.0,0.00034165418273425697,0.00017950273180746934,0.00024418179935998283,0.0,0.0 +95093,35.0,Eastern Counties in South Carolina and Georgia,G1300510004208,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,9484.0,,133.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0013463527323847885,4.95204855807218e-05,0.0,0.0013958344695417383,0.0008500629207119523,0.0001720042531242755,0.00033800250056387817,0.0,3.576479514163241e-05,0.0008500629207119523,0.0001720042531242755,0.0002884820149831564,0.0,3.576479514163241e-05,0.0,4.95204855807218e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.307990191318189e-06,0.0,0.0,0.00016044050168472016,5.0232485513683866e-05,0.00016374849187603837,0.00010129924958151705,2.0497190668810016e-05,3.437746891851556e-05,0.0,4.2619749915097195e-06,0.0,3.307990191318189e-06,0.0,0.0,0.0,0.0,9.972279973285208e-05,2.017820712982634e-05,3.9651836177849784e-05,0.0,4.195648835510186e-06 +95094,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,9403.0,,,365.0,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0020488196306701237,0.0,9.370711454663531e-05,0.0021425267452167586,0.001470531771084886,0.0003196628400024232,0.000308580092121356,0.0,4.375204200809363e-05,0.0013768246565382509,0.0003196628400024232,0.000308580092121356,0.0,4.375204200809363e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.370711454663531e-05,0.0,0.0,0.0,0.0,7.559607315377534e-06,0.0002441535263805591,8.094794986242234e-05,0.0002517131336959366,0.0001640732986297904,3.8093548339288746e-05,3.677284058315299e-05,0.0,5.213838828326972e-06,0.0,0.0,0.0,7.5596073153775336e-06,0.0,0.0,0.00017276431256953306,3.7555346911206144e-05,3.625329866124453e-05,0.0,5.140175553952924e-06 +95095,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,18536.0,,1580.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0015239346045903223,0.00046022077868081564,0.0,0.001984155383271138,0.0015700113549373918,0.00032031997967053074,9.382404866321539e-05,0.0,0.0,0.0011097905762565761,0.00032031997967053074,9.382404866321539e-05,0.0,0.0,0.00046022077868081564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.074974185703064e-05,0.0,0.0,0.00018160419891514868,6.866653744177494e-05,0.0002123539407721793,0.000132251494229201,3.8171882920278993e-05,1.1180821765668672e-05,0.0,0.0,3.074974185703064e-05,0.0,0.0,0.0,0.0,0.0,0.00016803023648701032,3.4282199148616964e-05,1.0041505136552037e-05,0.0,0.0 +95096,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,5392.0,,683.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012946965323151183,0.0005414832117712457,0.0,0.001836179744086364,0.0013716141108926741,0.00022670008911944163,0.00019221123937015046,0.0,4.56543047040977e-05,0.0008301308991214286,0.00022670008911944163,0.00019221123937015046,0.0,4.56543047040977e-05,0.0005414832117712457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.617624932975931e-05,0.0,0.0,0.00015428692296035865,8.491890873407546e-05,0.000190463172290118,9.892537662917592e-05,2.7015488426877673e-05,2.29055071521575e-05,0.0,5.440550752147565e-06,3.617624932975931e-05,0.0,0.0,0.0,0.0,0.0,0.0001422747285824655,2.351513694190412e-05,1.9937679041585255e-05,0.0,4.735627724163108e-06 +95097,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6360.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015151108838303727,0.0,0.0,0.0015151108838303727,0.0009168079124002228,0.0002562265144443744,0.00030055750596864314,0.0,4.151895101713233e-05,0.0009168079124002228,0.0002562265144443744,0.00030055750596864314,0.0,4.151895101713233e-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.00018055287010471113,6.124763396375795e-05,0.00018055287010471113,0.00010925424778157775,3.053402432362001e-05,3.581686390963045e-05,0.0,4.947734089882908e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010925424778157775,3.053402432362001e-05,3.581686390963045e-05,0.0,4.947734089882908e-06 +95098,50.0,the Greater Atlanta and Macon Area,G1300590130300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13796.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003084973850476167,0.0,0.0,0.0030849738504761673,0.0010057180166699784,0.00045819718851576314,0.0015500132689483606,0.0,7.104537634206508e-05,0.0010057180166699784,0.00045819718851576314,0.0015500132689483606,0.0,7.104537634206508e-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.000367635186660882,0.000110528637956705,0.000367635186660882,0.00011985104208569238,5.4603188581803926e-05,0.00018471450491183887,0.0,8.466451081546854e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011985104208569237,5.460318858180392e-05,0.00018471450491183884,0.0,8.466451081546854e-06 +95099,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000400,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,296993.0,,13179.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.025293084547102128,0.003879350373667417,0.0,0.029172434920769545,0.01102076037993026,0.007119865902641855,0.011031808638197435,0.0,0.0,0.007141410006262843,0.007119865902641855,0.011031808638197435,0.0,0.0,0.003879350373667417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002591963381492884,0.0,0.0,0.0030141272068052415,0.0011210888644051728,0.00327332354495453,0.0008510278038545597,0.0008484604353412681,0.0013146389676094142,0.0,0.0,0.0002591963381492884,0.0,0.0,0.0,0.0,0.0,0.0012365959349263718,0.0007988919937376877,0.0012378356162904712,0.0,0.0 +95100,50.0,the Greater Atlanta and Macon Area,G1301530021105,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,61684.0,,847.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006939222722799675,0.0003149084399957168,0.0,0.0072541311627953905,0.003714036418554136,0.0012883850904217527,0.0021209337235887234,0.0,0.00013073718180700735,0.003714036418554136,0.0012883850904217527,0.0018060252835930067,0.0,0.00013073718180700735,0.0,0.0003149084399957168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1040851157793727e-05,0.0,0.0,0.0008269331307915731,0.00028171404983803156,0.0008479739819493668,0.000442594204878003,0.00015353424425867078,0.0002152203786662372,0.0,1.5579685417406176e-05,0.0,2.1040851157793727e-05,0.0,0.0,0.0,0.0,0.00043415347479500046,0.00015060618713545916,0.00024792722583598473,0.0,1.5282564673535016e-05 +95101,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,53278.0,,898.0,,9.325022323477118,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.02277403439017826,0.0007609876008531609,0.0,0.023535021991031423,0.015385560697574312,0.0035762881873776364,0.004306341332911563,0.0,0.00026692015732596354,0.01462457309672115,0.0035762881873776364,0.004306341332911563,0.0,0.00026692015732596354,0.0007609876008531609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.084387963934255e-05,0.0,0.0,0.002713940980098853,0.0008819121512178298,0.0027647848597381953,0.00174278424119531,0.00042617987230902926,0.0005131790010259455,0.0,3.180839815073693e-05,5.084387963934255e-05,0.0,0.0,0.0,0.0,0.0,0.001807424071727934,0.0004201256934576128,0.0005058889395827118,0.0,3.1356537929515625e-05 +95102,50.0,the Greater Atlanta and Macon Area,G1301350050424,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,114822.0,,9881.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010138741094934284,0.0029085460576521857,0.0,0.01304728715258647,0.00448639078623598,0.0033486043223549464,0.005212261354389245,0.0,0.0,0.0015778447285837932,0.0033486043223549464,0.005212261354389245,0.0,0.0,0.0029085460576521857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019433195822193353,0.0,0.0,0.0012082143166057978,0.0005523258075006419,0.0014025462748277315,0.00018802872788697882,0.0003990467499893808,0.0006211351815079591,0.0,0.0,0.00019433195822193353,0.0,0.0,0.0,0.0,0.0,0.0004822742544920032,0.00035996544440734026,0.0005603032768829628,0.0,0.0 +95103,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2004,gen5_led,_1000,Electricity,2084.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005002950890490705,0.0,0.0,0.0005002950890490705,0.00026441451474456585,0.0001570607330309448,5.1774628160806454e-05,0.0,2.7045213112753528e-05,0.00026441451474456585,0.0001570607330309448,5.1774628160806454e-05,0.0,2.7045213112753528e-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,5.962090832412701e-05,2.0663769581871565e-05,5.962090832412701e-05,3.151067017891124e-05,1.8717160672428037e-05,6.1700592843285706e-06,0.0,3.2230181884591725e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.151067017891124e-05,1.8717160672428037e-05,6.1700592843285706e-06,0.0,3.2230181884591725e-06 +95104,35.0,Eastern Counties in South Carolina and Georgia,G1300730030307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2932.0,,98.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.0003778886199148956,7.757923516747036e-05,0.0,0.000455467855082366,0.0002105722097402767,0.00012348166109278598,9.552667016890008e-05,0.0,2.5887314080403227e-05,0.00013299297457280634,0.00012348166109278598,9.552667016890008e-05,0.0,2.5887314080403227e-05,7.757923516747036e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.183625690847338e-06,0.0,0.0,4.503565858062408e-05,2.03265614248184e-05,5.0219284271471415e-05,1.584971306580073e-05,1.4716182591567465e-05,1.1384588675994927e-05,0.0,3.085174247260963e-06,5.183625690847338e-06,0.0,0.0,0.0,0.0,0.0,2.321741379247616e-05,1.3614924898730129e-05,1.0532644513083254e-05,0.0,2.854301067181869e-06 +95105,85.0,Rural Climate Zone 3A,G1300690010801,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,173300.0,,22305.0,,3.3063363735822096,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.013027967942718509,0.006704205766137284,0.0,0.019732173708855796,0.005805243261194527,0.0016350299704693393,0.008328392780924055,0.0,0.003963507696267876,0.005805243261194527,0.0016350299704693393,0.005587694711054646,0.0,0.0,0.0,0.0027406980698694086,0.003963507696267876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044793642620681297,0.0,0.0,0.00155251847207192,0.0010171897386009763,0.0020004548982787335,0.0006917999366825947,0.00019484345085171983,0.000665875084537606,0.0,0.0,0.0,0.00018311766397894206,0.0002648187622278709,0.0,0.0,0.0,0.0005885376587955047,0.000165759929013294,0.000844335468520202,0.0,0.00040182184194973304 +95106,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,19808.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0018309509477071175,0.0,0.0,0.0018309509477071179,0.0012520908896224434,0.00043191258400483094,0.0001469474740798433,0.0,0.0,0.0012520908896224434,0.00043191258400483094,0.0001469474740798433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021819256209078817,6.669082088480903e-05,0.00021819256209078817,0.00014921039775499015,5.147058331698227e-05,1.7511581018815764e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014921039775499012,5.1470583316982255e-05,1.751158101881576e-05,0.0,0.0 +95107,50.0,the Greater Atlanta and Macon Area,G1301510070111,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,15790.0,,713.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013923865454254193,0.00020766429935590918,0.0,0.0016000812183807659,0.0008037765619212265,0.000607775724749414,0.00018852893171012556,0.0,0.0,0.0005961122625653173,0.000607775724749414,0.00018852893171012556,0.0,0.0,0.00020766429935590918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.387530119700236e-05,0.0,0.0,0.0001659298010808236,6.27266509642486e-05,0.00017980510227782594,7.103831150500074e-05,7.242823872490903e-05,2.2466870453048997e-05,0.0,0.0,1.387530119700236e-05,0.0,0.0,0.0,0.0,0.0,9.032236943010836e-05,6.829726834812638e-05,2.1185464499591227e-05,0.0,0.0 +95108,50.0,the Greater Atlanta and Macon Area,G1301530021113,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,362996.0,,6432.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.018685336416498267,0.0010938746478101576,0.0,0.019779211064308428,0.010069480048760649,0.004566915573131521,0.0029773000200166862,0.0,0.0021655154223995695,0.010069480048760649,0.004566915573131521,0.001883425372206529,0.0,0.0021655154223995695,0.0,0.0010938746478101576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.308671837593403e-05,0.0,0.0,0.002226694720508464,0.0007086760594868549,0.0022997814388843983,0.0011999600950745198,0.000544230329549806,0.00022444409023650378,0.0,0.0002580602056476346,0.0,7.308671837593403e-05,0.0,0.0,0.0,0.0,0.0011708052075516998,0.0005310074114630621,0.0003461785862824519,0.0,0.0002517902335871842 +95109,85.0,Rural Climate Zone 3A,G1300810010300,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,39465.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0033142319633015197,0.0,0.0,0.0033142319633015197,0.0009606153667243947,0.0009832642961720994,0.0013703523004050247,0.0,0.0,0.0009606153667243947,0.0009832642961720994,0.0013703523004050247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039494934450342006,0.00012650035768466095,0.00039494934450342006,0.00011447430765521102,0.00011717332810342499,0.00016330170874478395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011447430765521102,0.00011717332810342499,0.00016330170874478395,0.0,0.0 +95110,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,55933.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004983562408258764,0.0,0.0,0.004983562408258765,0.0014624518089044307,0.0014262380734731414,0.002094872525881192,0.0,0.0,0.0014624518089044307,0.0014262380734731414,0.002094872525881192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005938814684207068,0.00018265908308486904,0.0005938814684207068,0.00017427754618410418,0.00016996202555587,0.00024964189668073264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017427754618410415,0.00016996202555586998,0.0002496418966807326,0.0,0.0 +95111,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,34956.0,,702.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008400226651406498,0.0005571975557817141,0.0,0.008957424207188213,0.004585032046885985,0.0026985664019661226,0.0014185090217028616,0.0,0.000255316736633242,0.0042831512277375135,0.0026985664019661226,0.0014185090217028616,0.0,0.0,0.00030188081914847207,0.0,0.000255316736633242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.722704593273159e-05,0.0,0.0,0.0010010368835850305,0.0003762090708479385,0.001038263929517762,0.0005104138893942655,0.0003215823350098692,0.00016904065918089573,0.0,0.0,2.0169024440325116e-05,0.0,1.7058021492406475e-05,0.0,0.0,0.0,0.0005314556149014907,0.00031279350980402697,0.00016442078848378285,0.0,2.9594016328461178e-05 +95112,85.0,Rural Climate Zone 3A,G1302350950200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,35108.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008430083905026387,0.0,0.0,0.008430083905026387,0.004673115080418349,0.0014163586377856396,0.0022172939398770923,0.0,0.00012331624694530738,0.004673115080418349,0.0014163586377856396,0.0022172939398770923,0.0,0.00012331624694530738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001004594740435566,0.00033429691915902443,0.001004594740435566,0.0005568849473063111,0.00016878437440481,0.0002642300901266307,0.0,1.4695328597814409e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005568849473063111,0.00016878437440481,0.0002642300901266307,0.0,1.4695328597814409e-05 +95113,50.0,the Greater Atlanta and Macon Area,G1300670031505,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5320.0,,710.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001236470752402646,0.0005634005863121622,0.0,0.0017998713387148081,0.001291884491807982,0.0002806251011974701,0.00017765479439203237,0.0,4.9706951317323766e-05,0.0007284839054958197,0.0002806251011974701,0.00017765479439203237,0.0,4.9706951317323766e-05,0.0005634005863121622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.76456017875336e-05,0.0,0.0,0.0001473464167888053,8.088971644407402e-05,0.00018499201857633888,8.681118656025397e-05,3.344123024511146e-05,2.1170575469053766e-05,0.0,5.923424514386086e-06,3.76456017875336e-05,0.0,0.0,0.0,0.0,0.0,0.00013278077980711394,2.8842841605988323e-05,1.8259482396010293e-05,0.0,5.1089147672263435e-06 +95114,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,12554.0,,339.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006274065692099886,5.7623674615171594e-05,0.0,0.0006850125134637401,0.00021125725631992916,9.07617201092503e-05,0.000211204065235669,0.0,0.00017180720216031166,0.00021125725631992916,9.07617201092503e-05,0.0001535803906204974,0.0,0.00017180720216031166,0.0,5.7623674615171594e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.849972000647153e-06,0.0,0.0,7.476580546167157e-05,2.333313970100598e-05,7.861577746231873e-05,2.5174774545747377e-05,1.0815750809876696e-05,1.830162795763859e-05,0.0,2.0473652148408902e-05,0.0,3.849972000647153e-06,0.0,0.0,0.0,0.0,2.424503658505313e-05,1.041631072420369e-05,2.423893208570314e-05,0.0,1.9717532900475434e-05 +95115,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,28451.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.002421808577569704,0.0,0.0,0.002421808577569704,0.0019435762544223014,0.00032390406440418546,0.0001542675115443415,0.0,0.0,0.0019435762544223014,0.00032390406440418546,0.0001542675115443415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002886011995144309,7.394872274256572e-05,0.0002886011995144309,0.00023161138480107504,3.859888117518112e-05,1.8383694438179378e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023161138480107504,3.859888117518112e-05,1.8383694438179378e-05,0.0,0.0 +95116,35.0,Eastern Counties in South Carolina and Georgia,G1300510000601,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,54920.0,,3435.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004659326717723534,0.001010977010658925,0.0,0.005670334417988758,0.002241200568708639,0.001307346538675841,0.0021217873106042775,0.0,0.0,0.0012302235580497138,0.001307346538675841,0.0021217873106042775,0.0,0.0,0.001010977010658925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.754806217293787e-05,0.0,0.0,0.0005552446321153815,0.00021647972347074127,0.0006227926942883193,0.00014660380529029043,0.0001557944295155686,0.00025285005454160576,0.0,0.0,6.754806217293787e-05,0.0,0.0,0.0,0.0,0.0,0.0002461589101691205,0.00014359045043400287,0.00023304333368519585,0.0,0.0 +95117,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Propane,56136.0,,,5343.0,3.20458438519356,Mercantile,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,120171.9144447585,0.0,0.0,0.004950137368367603,0.0,0.0005035639050784875,0.00545370127344609,0.0031075533320758264,0.0013878001319103184,0.0009583781830593833,0.0,0.0,0.0026039894269973395,0.0013878001319103184,0.0009583781830593833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005035639050784875,0.0,0.0,0.0,0.0,4.061207924173212e-05,0.000589898279984996,0.00018879388812762443,0.000630510359226728,0.0003103123751475605,0.00016538145304982021,0.00011420807135061559,0.0,0.0,0.0,0.0,0.0,4.061207924173212e-05,0.0,0.0,0.0003592687735324514,0.00016044559755521145,0.00011079949967520053,0.0,0.0 +95118,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010701,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,56548.0,,3121.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004849387449525208,0.0009187240541280304,0.0,0.005768111503653238,0.0018306043260516733,0.0014928038295328586,0.0024446726584624085,0.0,0.0,0.000911880271923643,0.0014928038295328586,0.0024446726584624085,0.0,0.0,0.0009187240541280304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.138415818843374e-05,0.0,0.0,0.0005778907592017499,0.00022726112933636546,0.0006392749173901837,0.00010866675185845304,0.00017789412526163196,0.00029132622486927105,0.0,0.0,6.138415818843374e-05,0.0,0.0,0.0,0.0,0.0,0.00020288432853102987,0.0001654461853242528,0.00027094100223180233,0.0,0.0 +95119,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010400,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,18264.0,,,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.004473865405615504,0.0,0.0,0.0044738654056155035,0.0011754732034671878,0.0002636061528034005,0.002446200409389101,0.0004117431073849433,0.00017692339335393872,0.0011754732034671878,0.0002636061528034005,0.002446200409389101,0.0004117431073849433,0.00017692339335393872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005331452809844345,0.00014361394597089706,0.0005331452809844345,0.00014007975979017352,3.141363533851316e-05,0.0002915108270738343,4.9066942068622385e-05,2.108375279775055e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00014007975979017355,3.141363533851317e-05,0.00029151082707383437,4.90669420686224e-05,2.1083752797750553e-05 +95120,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,10861.0,,1166.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002279241538107834,0.0009252440339216321,0.0,0.003204485572029466,0.0018491647546634352,0.0005836638193782924,0.0006869649544786875,0.0,8.477475058279009e-05,0.0010086954713245935,0.0005836638193782924,0.0006869649544786875,0.0,0.0,0.0008404692833388419,0.0,8.477475058279009e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.182191319652192e-05,0.0,0.0,0.00027161172052695754,0.00013111120269912308,0.00033343363372347946,0.00012020380809735013,6.955381057256475e-05,8.186395785967448e-05,0.0,0.0,5.615752944516453e-05,0.0,5.6643837513573754e-06,0.0,0.0,0.0,0.0001924095801468461,6.0731478982748604e-05,7.148018484210145e-05,0.0,8.820995601150249e-06 +95121,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010702,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,45237.0,,1278.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0023286170171026347,0.0002173210399255872,0.0,0.0025459203266668022,0.0015491725987156937,0.0003828694245046203,0.0003590930098403294,0.0,0.00025476756324473875,0.0014393152793570464,0.0003828694245046203,0.00025164701963480943,0.0,0.00025476756324473875,0.00010985731935864715,0.00010744599020551997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4519736852922907e-05,0.0,0.0,0.00027749601204750835,0.00010243912338069216,0.0002920157489004312,0.00017151993958954305,4.562568153313204e-05,2.9988204964330046e-05,0.0,3.0360073073519235e-05,7.339829447720513e-06,7.1787227974800364e-06,0.0,0.0,0.0,0.0,0.00017768929838517928,4.391492559948682e-05,4.118778309560092e-05,0.0,2.9221708156850333e-05 +95122,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,66853.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005858983427900737,0.0,0.0,0.005858983427900736,0.001585210234095242,0.0016676425166108717,0.0026061306771946223,0.0,0.0,0.001585210234095242,0.0016676425166108717,0.0026061306771946223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006982039912285425,0.0002567611785312124,0.0006982039912285425,0.0001889065101483304,0.00019872980959383045,0.0003105676714863815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018890651014833045,0.0001987298095938305,0.00031056767148638156,0.0,0.0 +95123,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,183905.0,,9859.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.009466576839033174,0.001676671627687293,0.0,0.011143248466720464,0.006337841802127815,0.002299113695699667,0.0009541771301815614,0.0,0.0015521158387114223,0.004869643764017503,0.002299113695699667,0.0007457035406045808,0.0,0.0015521158387114223,0.0014681980381103122,0.00020847358957698083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001120259324993379,0.0,0.0,0.0011281133775645146,0.0004538260929659007,0.0012401393100638525,0.0005803058874999652,0.0002739808656035244,8.886402700336258e-05,0.0,0.0001849625974576623,9.809687931552555e-05,1.3929053183812353e-05,0.0,0.0,0.0,0.0,0.0007053425025259109,0.00025586984628930864,0.00010619098833128016,0.0,0.00017273597291735297 +95124,50.0,the Greater Atlanta and Macon Area,G1300150960401,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Propane,13611.0,,,8119.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001200243155382201,0.0,0.0007652020906352818,0.0019654452460174826,0.0015476260121517688,0.0003228409884238641,9.497824544184996e-05,0.0,0.0,0.000782423921516487,0.0003228409884238641,9.497824544184996e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007652020906352818,0.0,0.0,0.0,0.0,6.1712187262399e-05,0.0001430316089295705,9.692046850433892e-05,0.00020474379619196955,9.324056701148236e-05,3.847259265392259e-05,1.131844926416558e-05,0.0,0.0,0.0,0.0,0.0,6.1712187262399e-05,0.0,0.0,0.00016121885127832954,3.3630898479723755e-05,9.894046433916286e-06,0.0,0.0 +95125,50.0,the Greater Atlanta and Macon Area,G1301210008000,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,6477.0,,985.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0019857141334070324,0.0007812510185414977,0.0,0.0027669651519485303,0.0015059303986453096,0.00040046765104572655,0.000796882655478227,0.0,6.36017397055274e-05,0.000788281119809339,0.00040046765104572655,0.000796882655478227,0.0,0.0,0.0007176492788359705,0.0,6.36017397055274e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.219936782991793e-05,0.0,0.0,0.00023663187474743622,0.00011463998109594897,0.00028883124257735417,9.393720680652314e-05,4.772258476100987e-05,9.49622272144424e-05,0.0,0.0,4.794981099515117e-05,0.0,4.249556834766768e-06,0.0,0.0,0.0,0.00015719740740841322,4.1803045181872627e-05,8.318305252526698e-05,0.0,6.639104036526237e-06 +95126,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,170498.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01373606548893057,0.0,0.0,0.013736065488930572,0.01014204858825971,0.0027499345722957367,0.0008441127019745609,0.0,0.0,0.01014204858825971,0.0027499345722957367,0.0008441127019745609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016369011194394675,0.0003521017011272662,0.0016369011194394675,0.0012086088771861491,0.0003277045368925831,0.00010059132492551968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012086088771861491,0.000327704536892583,0.00010059132492551966,0.0,0.0 +95127,46.0,the Tallahassee-Valdosta Area,G1301850011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,11929.0,,137.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0012923761780702773,5.0954177260288865e-05,0.0,0.001343330355330566,0.0007901966059840844,0.00016851689498478806,0.00034958827927173086,0.0,3.502857508996284e-05,0.0007901966059840844,0.00016851689498478806,0.00029863410201144203,0.0,3.502857508996284e-05,0.0,5.0954177260288865e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.40463354160706e-06,0.0,0.0,0.00015401068159533686,5.3441867281413744e-05,0.0001574153151369439,9.416663657763034e-05,2.0081925291821424e-05,3.558781288205742e-05,0.0,4.174306843827677e-06,0.0,3.40463354160706e-06,0.0,0.0,0.0,0.0,9.259751129536455e-05,1.9747294494362787e-05,4.096576015822972e-05,0.0,4.104749188986884e-06 +95128,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,71269.0,,13789.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.01376571607682334,0.009485324766669639,0.0,0.023251040843492977,0.006041977238239138,0.0006711554887640882,0.012720038899415727,0.0003695012906724282,0.00344843964637261,0.006041977238239138,0.0006711554887640882,0.0032347141327460894,0.0003695012906724282,0.00344843964637261,0.0,0.009485324766669639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006337532794290407,0.0,0.0,0.0016404376859727086,0.0010416167911248097,0.0022741909654017496,0.0007200124645955957,7.998049289783942e-05,0.00038547554933515205,4.4032859522298436e-05,0.0004109448663725064,0.0,0.0006337532794290407,0.0,0.0,0.0,0.0,0.0005909675244586696,6.56459106154056e-05,0.0012441506485377741,3.614102708811388e-05,0.0003372928696526963 +95129,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,NaturalGas,45020.0,,8098.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.008591335327960048,0.005570274988869462,0.0,0.014161538596858496,0.004565406474969737,0.0007075892340400186,0.004798998420567582,0.0003783945670783639,0.0037111499002027938,0.004565406474969737,0.0007075892340400186,0.002504317947923107,0.0003783945670783639,0.00043555538397780594,0.0,0.002294680472644475,0.003275594516224988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037217162064017404,0.0,0.0,0.001023809241289788,0.0006126853307133749,0.0013959808619299619,0.0005440487608610297,8.432174617718546e-05,0.0002984336846761567,4.509239132686302e-05,5.190411154814995e-05,0.0,0.00015331647935908904,0.00021885514128108506,0.0,0.0,0.0,0.0004500372627168263,6.975096823495361e-05,0.00047306370743010865,3.730043669244023e-05,0.000365828486855633 +95130,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,18312.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004284226419696125,0.0,0.0,0.004284226419696125,0.002695009997795332,0.0005305658780376572,0.0009830562784654082,0.0,7.5594265397727e-05,0.002695009997795332,0.0005305658780376572,0.0009830562784654082,0.0,7.5594265397727e-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.0005105472304266324,0.00015903407788319095,0.0005105472304266324,0.0003211618050859423,6.322703635495843e-05,0.00011714989152221917,0.0,9.008497463512392e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0003211618050859423,6.322703635495843e-05,0.00011714989152221917,0.0,9.008497463512392e-06 +95131,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302050090100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,42525.0,,1074.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034491652049522216,0.000312817700609406,0.0,0.0037619829055616275,0.0027324090054201542,0.0007926294509275715,0.00023697482281333972,0.0,0.0,0.0024195913048107483,0.0007926294509275715,0.00023697482281333972,0.0,0.0,0.000312817700609406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0900363887615213e-05,0.0,0.0,0.0004110308785561646,0.00011417646665939887,0.00043193124244377977,0.00028833838933991997,9.445624092359561e-05,2.8239867860434283e-05,0.0,0.0,2.0900363887615213e-05,0.0,0.0,0.0,0.0,0.0,0.00031372094084502637,9.100557661507122e-05,2.720821232184188e-05,0.0,0.0 +95132,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,85263.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011089320960399328,0.0,0.0,0.011089320960399328,0.0031737349456706357,0.0030800395776437494,0.004835546437084943,0.0,0.0,0.0031737349456706357,0.0030800395776437494,0.004835546437084943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013214931322657003,0.00044639648311993024,0.0013214931322657003,0.0003782079127579307,0.000367042415265812,0.0005762428042419578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003782079127579307,0.000367042415265812,0.0005762428042419578,0.0,0.0 +95133,85.0,Rural Climate Zone 3A,G1301750950400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,8915.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0004527093181382082,0.0,0.0,0.0004527093181382082,0.0002246968702763292,0.00012074376127055959,3.0301187666870234e-05,0.0,7.698522928586927e-05,0.0002246968702763292,0.00012074376127055959,3.0301187666870234e-05,0.0,7.698522928586927e-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,5.3947909712698675e-05,1.4612762341831919e-05,5.3947909712698675e-05,2.6776401511339458e-05,1.4388644700719776e-05,3.61089483018063e-06,0.0,9.174081540458922e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.6776401511339458e-05,1.4388644700719776e-05,3.61089483018063e-06,0.0,9.174081540458922e-06 +95134,50.0,the Greater Atlanta and Macon Area,G1301510070502,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,Electricity,403302.0,,6598.0,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,1459415.2837631335,0.0,0.0,0.1079751524925489,0.005835968841750342,0.0,0.11381102911704646,0.0822851779977452,0.018082235575522354,0.008243945746163472,0.000657232360514414,0.0045424374371010245,0.0822851779977452,0.018082235575522354,0.0024079769044131295,0.000657232360514414,0.0045424374371010245,0.0,0.005835968841750342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003899233873854603,0.0,0.0,0.012867185540281479,0.004894289877172536,0.01325710892766694,0.00980576204868188,0.0021548242791264442,0.00028695384901572144,7.832108156920373e-05,0.0005413132925404569,0.0,0.0003899233873854604,0.0,0.0,0.0,0.0,0.009584866917657834,0.0021062823923145555,0.0009602837932189141,7.655673673916576e-05,0.0005291190877364706 +95135,50.0,the Greater Atlanta and Macon Area,G1301350050522,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,28744.0,,3114.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025742748658576075,0.0009166371608997865,0.0,0.003490912026757394,0.0018098581521944262,0.0006739744439038508,0.001007079430659117,0.0,0.0,0.0008932209912946395,0.0006739744439038508,0.001007079430659117,0.0,0.0,0.0009166371608997865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.124362995184928e-05,0.0,0.0,0.00030677122152702124,0.00015811150990355564,0.0003680148514788705,0.00010644337099633947,8.03161955145374e-05,0.00012001165501614432,0.0,0.0,6.124362995184928e-05,0.0,0.0,0.0,0.0,0.0,0.00019079675281772523,7.10509468507633e-05,0.00010616715181038195,0.0,0.0 +95136,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,35069.0,,3924.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0031050516067763767,0.0011549419538014487,0.0,0.004259993560577826,0.002199186497687084,0.0007846104746070693,0.0012761658986773748,0.0,0.0,0.001044244543885635,0.0007846104746070693,0.0012761658986773748,0.0,0.0,0.0011549419538014487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.716630515135285e-05,0.0,0.0,0.00037002164497581137,0.0001936657466418288,0.00044718795012716427,0.00012444014876993517,9.350017173491334e-05,0.0001520776672632755,0.0,0.0,7.716630515135285e-05,0.0,0.0,0.0,0.0,0.0,0.00023085708648691705,8.23635868924283e-05,0.00013396405514151007,0.0,0.0 +95137,50.0,the Greater Atlanta and Macon Area,G1300890023802,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,129988.0,,7051.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.010884866803244034,0.002075538073913639,0.0,0.012960404877157671,0.0047004201005561574,0.003209150751338185,0.0050508340252633285,0.0,0.0,0.0026248820266425187,0.003209150751338185,0.0050508340252633285,0.0,0.0,0.002075538073913639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013867590905825586,0.0,0.0,0.0012971278742932562,0.0005399940902690587,0.001435803783351512,0.0003128019575282855,0.00038242809651371166,0.0006018978202512588,0.0,0.0,0.00013867590905825586,0.0,0.0,0.0,0.0,0.0,0.0005207307200421437,0.0003555221332813195,0.0005595509300280486,0.0,0.0 +95138,50.0,the Greater Atlanta and Macon Area,G1301210007706,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,5161.0,,687.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012392827929097825,0.0005449569088682966,0.0,0.0017842397017780792,0.0012546663086252937,0.0001781510368344682,0.00030800114260518083,0.0,4.34212137131364e-05,0.0007097093997569969,0.0001781510368344682,0.00030800114260518083,0.0,4.34212137131364e-05,0.0005449569088682966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.640983509655646e-05,0.0,0.0,0.00014768522231388512,8.391719379835358e-05,0.00018409505741044156,8.457600725276615e-05,2.1230243517359088e-05,3.6704469293707166e-05,0.0,5.174502250052702e-06,3.640983509655646e-05,0.0,0.0,0.0,0.0,0.0,0.00012945450428389184,1.8381344906229596e-05,3.177907540891319e-05,0.0,4.480132811406935e-06 +95139,50.0,the Greater Atlanta and Macon Area,G1300890023410,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,14428.0,,1310.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011439608756240469,0.0003816442769353516,0.0,0.0015256051525593987,0.0010287538129566543,0.00039206242154250055,0.00010475854446080605,0.0,0.0,0.0006471095360213026,0.00039206242154250055,0.00010475854446080605,0.0,0.0,0.0003816442769353516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5499907821574534e-05,0.0,0.0,0.00013632352721034143,6.0605038549210726e-05,0.00016182343503191597,7.711474782190277e-05,4.672129382234785e-05,1.2483866005057156e-05,0.0,0.0,2.5499907821574534e-05,0.0,0.0,0.0,0.0,0.0,0.00010912160039282857,4.158670262387455e-05,1.1111910237817117e-05,0.0,0.0 +95140,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock 90.1-2007,gen5_led,100001_200000,NaturalGas,325443.0,,18634.0,,9.729435225087556,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.07804917849160944,0.016481897370896687,0.0,0.09453107586250614,0.07474770862507701,0.011709931191643232,0.002273247498111522,0.0006710649484303901,0.005129215816496732,0.06182382951792772,0.011709931191643232,0.002273247498111522,0.0006710649484303901,0.0015711975527493453,0.012923879107149296,0.0,0.0035580182637473872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011012215370302823,0.0,0.0,0.009300974334424112,0.003503149091903777,0.010402195871454394,0.007367429904004363,0.001395450555357923,0.0002708986442182999,7.996955230930057e-05,0.00018723666789141995,0.00086349609480636,0.0,0.00023772544222392213,0.0,0.0,0.0,0.008225234918423772,0.001288560367956622,0.0002501480653202713,7.384396054259924e-05,0.0005644187067939964 +95141,50.0,the Greater Atlanta and Macon Area,G1300890021813,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,35834.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008607325164049724,0.0,0.0,0.008607325164049724,0.0061183384869390066,0.0011427636378560108,0.0011709667500011144,0.0,0.00017525628925359242,0.0061183384869390066,0.0011427636378560108,0.0011709667500011144,0.0,0.00017525628925359242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010257188820198691,0.00034500278936733204,0.0010257188820198691,0.0007291109831488599,0.0001361810107895506,0.00013954192304830695,0.0,2.088496503315175e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0007291109831488599,0.0001361810107895506,0.00013954192304830695,0.0,2.088496503315175e-05 +95142,35.0,Eastern Counties in South Carolina and Georgia,G1301030030303,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,66474.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005657229956099638,0.0,0.0,0.0056572299560996376,0.0013153258363132435,0.0015474313287427697,0.0027945034806499225,0.0,0.0,0.0013153258363132435,0.0015474313287427697,0.0027945034806499225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006741616015122101,0.00021827343009741873,0.0006741616015122101,0.00015674494040378116,0.00018440452145499086,0.0003330157968769011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001567449404037812,0.00018440452145499091,0.0003330157968769011,0.0,0.0 +95143,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,140719.0,,4080.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011774067456113672,0.0012009456736417053,0.0,0.012975013129755375,0.0030098831376472006,0.005291041573755448,0.004674119107959026,0.0,0.0,0.0018089374640054953,0.005291041573755448,0.004674119107959026,0.0,0.0,0.0012009456736417053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.024012334135004e-05,0.0,0.0,0.001403094336363526,0.0004980562412503557,0.001483334459704876,0.00021556780781513182,0.0006305238604476833,0.0005570063253256199,0.0,0.0,8.024012334135004e-05,0.0,0.0,0.0,0.0,0.0,0.00034409702195352626,0.0006048844972714524,0.0005343564489889156,0.0,0.0 +95144,35.0,Eastern Counties in South Carolina and Georgia,G1300510011107,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,105023.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.008837168382814453,0.0,0.0,0.008837168382814455,0.00551438772512272,0.0026712973233513973,0.0006514529607409011,0.0,0.0,0.00551438772512272,0.0026712973233513973,0.0006514529607409011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010531068045803653,0.00033148945479958295,0.0010531068045803653,0.0006571380090159256,0.0003183328942503119,7.763228175604549e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006571380090159254,0.00031833289425031177,7.763228175604546e-05,0.0,0.0 +95145,50.0,the Greater Atlanta and Macon Area,G1300890023410,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,90955.0,,8468.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.007944833209530402,0.0024926712027120157,0.0,0.01043750441224242,0.006856702528639053,0.0013245020285962568,0.0022563305446134064,0.0,0.0,0.004364031325927038,0.0013245020285962568,0.0022563305446134064,0.0,0.0,0.0024926712027120157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016654653159761426,0.0,0.0,0.0009467706368632882,0.00046660779014015124,0.0011133171684609023,0.0005200532986372785,0.0001578383832698378,0.0002688826121780839,0.0,0.0,0.00016654653159761426,0.0,0.0,0.0,0.0,0.0,0.0007313706746997293,0.00014127810536471917,0.00024067166190554513,0.0,0.0 +95146,50.0,the Greater Atlanta and Macon Area,G1300890022001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,45016.0,,7368.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0021471999590526544,0.0012530578326393916,0.0,0.003400257791692047,0.001587186493600287,0.0007774763482693154,0.0004882941535082542,0.0,0.0005472830659527698,0.0010908250256459085,0.0007774763482693154,0.00017772914287460928,0.0,0.00010115171190140125,0.0004963614679543781,0.00031056501063364485,0.0004461313540513686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.372227581856563e-05,0.0,0.0,0.0002558773509674109,0.0001404105533790967,0.0003395996267859765,0.0001299913483858205,9.265023855660859e-05,2.1179612116110476e-05,0.0,1.2054039018596397e-05,3.3164081212637706e-05,2.075020705556571e-05,2.980798755036221e-05,0.0,0.0,0.0,0.00015851972817572087,7.765019415654237e-05,4.876821772112147e-05,0.0,5.465971591858593e-05 +95147,50.0,the Greater Atlanta and Macon Area,G1301210011411,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,35318.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002929472918572288,0.0,0.0,0.002929472918572288,0.0019274782467202931,0.0007443050542221084,0.0002576592440304487,0.0,0.0,0.0019274782467202931,0.0007443050542221084,0.0002576592440304487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003490985125050986,9.77042839644838e-05,0.0003490985125050986,0.00022969312484510878,8.869711190421202e-05,3.0704656204179986e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022969312484510878,8.869711190421202e-05,3.0704656204179986e-05,0.0,0.0 +95148,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,7888.0,,37.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018940746957038794,2.9443718251193445e-05,0.0,0.0019235184139550728,0.0011916435184359414,0.0005001296749015921,0.00020230150236634595,0.0,2.9443718251193445e-05,0.0011916435184359414,0.0005001296749015921,0.00020230150236634595,0.0,0.0,0.0,0.0,2.9443718251193445e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9672165650057148e-06,0.0,0.0,0.00022571265526181015,7.950885382758878e-05,0.00022767987182681585,0.00014200549919270603,5.95993374249232e-05,2.4107818644180936e-05,0.0,0.0,0.0,0.0,1.9672165650057148e-06,0.0,0.0,0.0,0.00014105050493532108,5.9198528827310296e-05,2.3945692328692072e-05,0.0,3.485145735492387e-06 +95149,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,57814.0,,8901.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004921262507474428,0.002619971689634886,0.0,0.007541234197109314,0.003611245973050686,0.0016467428947221359,0.002283214639730194,0.0,0.0,0.0009912742834157998,0.0016467428947221359,0.002283214639730194,0.0,0.0,0.002619971689634886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017505116766290847,0.0,0.0,0.0005864564853884617,0.00033837501970004934,0.0007615076530513701,0.00011812806803641467,0.0001962388815695956,0.00027208587856672266,0.0,0.0,0.00017505116766290847,0.0,0.0,0.0,0.0,0.0,0.0003646606607951731,0.00016628674884802753,0.00023055714439685983,0.0,0.0 +95150,50.0,the Greater Atlanta and Macon Area,G1301210003600,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,67554.0,,3625.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005824703137666204,0.0010670162317585302,0.0,0.006891750059031031,0.0019473475884081344,0.0026880719260094894,0.0022563305446134064,0.0,0.0,0.0008803313566496044,0.0026880719260094894,0.0022563305446134064,0.0,0.0,0.0010670162317585302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.129264017853938e-05,0.0,0.0,0.0006941193274766987,0.000267059152052889,0.0007654119676552381,0.00010490749396013098,0.0003203326647541891,0.0002688828259871985,0.0,0.0,7.129264017853938e-05,0.0,0.0,0.0,0.0,0.0,0.00021627643727429634,0.0002985428090778741,0.0002505927213030675,0.0,0.0 +95151,50.0,the Greater Atlanta and Macon Area,G1300670031313,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,25307.0,,3445.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002254826753904819,0.0010141380401075884,0.0,0.0032689647940124075,0.0013845922777271588,0.0008369055637383549,0.001047436262940596,0.0,0.0,0.0003704542376195703,0.0008369055637383549,0.001047436262940596,0.0,0.0,0.0010141380401075884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.775932305342035e-05,0.0,0.0,0.0002687019290598109,0.00014748447951020495,0.00033646125211323125,4.414608266660737e-05,9.973189249593101e-05,0.00012482029669549417,0.0,0.0,6.775932305342035e-05,0.0,0.0,0.0,0.0,0.0,0.0001425104523253616,8.613928617148263e-05,0.00010780835486001843,0.0,0.0 +95152,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,33132.0,,2482.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008058977265158116,0.0019688418903642127,0.0,0.010027736448448588,0.00579181095981622,0.0024391143116459153,0.001598066078790898,0.0,0.00019882780526929504,0.004021796874721302,0.0024391143116459153,0.001598066078790898,0.0,0.0,0.0017700140850949177,0.0,0.00019882780526929504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001315445030659929,0.0,0.0,0.0009603691504627058,0.00046872074603212594,0.0010919136535286987,0.00047926796674415003,0.00029066345049564505,0.0001904377332229105,0.0,0.0,0.0001182601936616389,0.0,1.3284309404354002e-05,0.0,0.0,0.0,0.0006306665016768477,0.00026559355973256293,0.00017401236855829171,0.0,2.1650229480081423e-05 +95153,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,107309.0,,3969.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.009980439297450145,0.0011930071672825024,0.0,0.011173446464732647,0.0033744468929000648,0.002217603803240931,0.003934206645507175,0.0,0.0016472204611066793,0.0033744468929000648,0.002217603803240931,0.0027411994782246727,0.0,0.0016472204611066793,0.0,0.0011930071672825024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.97102289098392e-05,0.0,0.0,0.0011893501521393441,0.0005333022936756511,0.0012690603810491831,0.00040212648019232914,0.0002642676682020634,0.00032666357855648195,0.0,0.00019629615968154792,0.0,7.97102289098392e-05,0.0,0.0,0.0,0.0,0.00038326373811792855,0.00025187153636435243,0.0004468402654841044,0.0,0.0001870884004001958 +95154,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,104404.0,,6790.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.00925346871167075,0.001998691299744191,0.0,0.011252160011414939,0.007519690093488327,0.0013685109240271624,0.00236395899389945,0.0,0.0,0.005520998793744136,0.0013685109240271624,0.00236395899389945,0.0,0.0,0.001998691299744191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013354150226908205,0.0,0.0,0.0011027181289782007,0.0004906699055187804,0.0012362596312472825,0.0006579268433954866,0.00016308282360388403,0.00028170846197882985,0.0,0.0,0.00013354150226908205,0.0,0.0,0.0,0.0,0.0,0.0008261781997979898,0.00015035644788017482,0.00025972498356911794,0.0,0.0 +95155,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,57607.0,,5074.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002775865383923467,0.00086295442067539,0.0,0.0036388375349602773,0.0015637114950801368,0.0009856485217021552,0.00045446462391879344,0.0,0.000635012894259191,0.0012288736196624398,0.0009856485217021552,0.00045446462391879344,0.0,0.00010689634900149836,0.00033483787541769715,0.0,0.0005281165452576928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.765785082576272e-05,0.0,0.0,0.0003307952635104166,0.0001349373153396214,0.00038845311433617933,0.00014644282651151932,0.00011745809589810658,5.415779378065277e-05,0.0,1.2738660217835345e-05,2.2372018508855966e-05,0.0,3.5285832316906746e-05,0.0,0.0,0.0,0.00016692929935762938,0.00010521993197485062,4.8514998765616215e-05,0.0,6.778888423808305e-05 +95156,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,54134.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.00469118252906055,0.0,0.0,0.00469118252906055,0.0019080035131344795,0.0015473699495301744,0.0012358090663958955,0.0,0.0,0.0019080035131344795,0.0015473699495301744,0.0012358090663958955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005590391977306551,0.00017477758144837,0.0005590391977306551,0.0002273731083031588,0.0001843971002661252,0.00014726898916137102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002273731083031588,0.0001843971002661252,0.00014726898916137102,0.0,0.0 +95157,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,36798.0,,2299.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007661987943539759,0.0015817839607493017,0.0,0.009243700184318044,0.0036983837453620147,0.00047069816977545533,0.003222019697876326,0.0003725135294550838,0.0014800850418491653,0.0036983837453620147,0.00047069816977545533,0.0016402357371270249,0.0003725135294550838,0.0014800850418491653,0.0,0.0015817839607493017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010568321703598082,0.0,0.0,0.0009130640431865585,0.00039323430492054596,0.0010187472602225392,0.00044072912156471153,5.609217570983773e-05,0.00019546366882279277,4.4391705109995e-05,0.00017637882525124504,0.0,0.00010568321703598082,0.0,0.0,0.0,0.0,0.0004075984976482759,5.187559757336349e-05,0.0003550984642668527,4.105467831724059e-05,0.0001631200224168067 +95158,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,301522.0,,1044.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.0141302292640725,0.00017751637853756865,0.0,0.014307745642610068,0.0064660323151947965,0.0031250116610071466,0.0028361131520288066,0.0,0.001880588514379321,0.006288515936657227,0.0031250116610071466,0.0028361131520288066,0.0,0.001880588514379321,0.00017751637853756865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1861042021809025e-05,0.0,0.0,0.0016838717867659378,0.0004418063376640572,0.0016957328287877467,0.0007493901456566451,0.000372401528025023,0.00033797405771183667,0.0,0.0002241060553724332,1.1861042021809025e-05,0.0,0.0,0.0,0.0,0.0,0.0007663445760612531,0.0003703717550116895,0.0003361319314853722,0.0,0.00022288456622943206 +95159,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970600,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,79003.0,,18445.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008820854806476269,0.0031366782388215406,0.0,0.01195753304529781,0.006157027576366115,0.0021541148000064755,0.002048902835339882,0.0,0.0015974701032239174,0.00506692949553843,0.0021541148000064755,0.0013000255600411118,0.0,0.0002997849508902528,0.0010900980808276862,0.0007488772752987701,0.0012976851523336644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020957411235146038,0.0,0.0,0.0010511651308153565,0.00043800246935693884,0.001260739243166817,0.0006038167187718998,0.0002567019200766837,0.00015492166778219817,0.0,3.572482418457498e-05,7.283384532017685e-05,5.003550835672734e-05,8.67035740376654e-05,0.0,0.0,0.0,0.000649164527279942,0.00022711850783657737,0.00021602551296854173,0.0,0.00016842882568592383 +95160,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970500,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,76478.0,,,20467.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014788510709448671,0.0,0.0019290880474904936,0.016717598756939164,0.009739142791717934,0.005408717972678781,0.0015697076189430143,0.0,0.0,0.0078100547442274395,0.005408717972678781,0.0015697076189430143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019290880474904936,0.0,0.0,0.0,0.0,0.00015557842883736844,0.001762316856157675,0.0005390067579582931,0.0019178952849950436,0.0009307083988161349,0.0006445459614377992,0.00018705887634344037,0.0,0.0,0.0,0.0,0.0,0.00015557842883736844,0.0,0.0,0.0011173049617772485,0.0006205050646620405,0.00018008177400130428,0.0,0.0 +95161,81.0,the Columbus-Albany Area,G1302150010402,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,441079.0,,3131.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,480687.657779034,0.0,0.0,0.03662248154447825,0.0009119976967179361,0.0,0.03753447924119619,0.020568849671248342,0.01478109955118586,0.0021845300187619864,0.0,0.0,0.019656851974530407,0.01478109955118586,0.0021845300187619864,0.0,0.0,0.0009119976967179361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0933656025516734e-05,0.0,0.0,0.004364231153434634,0.0013298702871666877,0.0044251648094601505,0.002342469492721561,0.001761435392218259,0.0002603262684948137,0.0,0.0,6.0933656025516734e-05,0.0,0.0,0.0,0.0,0.0,0.0024249850158140464,0.0017426324515845439,0.00025754734206155964,0.0,0.0 +95162,85.0,Rural Climate Zone 3A,G1302850960600,ComStock DOE Ref 1980-2004,gen3_t5_cfl,_1000,Electricity,4122.0,,,866.0,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00024423411307896245,0.0,8.161386168923915e-05,0.0003258176011687638,0.00023032300453647208,8.097601610104638e-05,1.4548954130683121e-05,0.0,0.0,0.00014870914284723292,8.097601610104638e-05,1.4548954130683121e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.161386168923915e-05,0.0,0.0,0.0,0.0,6.580967517317271e-06,2.910412509897426e-05,1.629949390118393e-05,3.568509261629153e-05,1.7720904922842677e-05,9.649496022119808e-06,1.733724154011773e-06,0.0,0.0,0.0,0.0,0.0,6.580967517317271e-06,0.0,0.0,2.5226070411982724e-05,8.868878243221147e-06,1.5934706220941215e-06,0.0,0.0 +95163,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,14395.0,,701.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031238461751336415,0.0005562877779705817,0.0,0.0036802166601779627,0.002029631589562604,0.0005839946476732498,0.0009866953897099376,0.0,7.981232615843166e-05,0.0015531561377504543,0.0005839946476732498,0.0009866953897099376,0.0,0.0,0.00047647545181215005,0.0,7.981232615843166e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.716939510571513e-05,0.0,0.0,0.0003722655091239962,0.00015664265953393273,0.0004094349042297113,0.0001850880062440965,6.959403653493613e-05,0.00011758346634496358,0.0,0.0,3.18365871549249e-05,0.0,5.332807950790232e-06,0.0,0.0,0.0,0.00022580247094853843,6.497111847463855e-05,0.00010977275788166519,0.0,8.879355520184987e-06 +95164,50.0,the Greater Atlanta and Macon Area,G1302250040200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,42946.0,,6932.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.008942117706197402,0.004768517432885947,0.0,0.01371063513908335,0.004342213925169156,0.000582868204443871,0.007365067263535129,0.00037739048748414535,0.0010430952584510472,0.004342213925169156,0.000582868204443871,0.0025965498306491828,0.00037739048748414535,0.0010430952584510472,0.0,0.004768517432885947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000318603116128327,0.0,0.0,0.0010656134583279747,0.0006282963630701437,0.0013842165744563015,0.0005174525486722829,6.945918444535614e-05,0.0003094254108108373,4.4972834816225434e-05,0.00012430347958327303,0.0,0.000318603116128327,0.0,0.0,0.0,0.0,0.00043838702030079315,5.8845984969353614e-05,0.0007435722761748321,3.810109178156008e-05,0.0001053102012297624 +95165,50.0,the Greater Atlanta and Macon Area,G1300670030223,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,74391.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.006559877391369574,0.0,0.0,0.006559877391369574,0.00407431462858003,0.002020937812190255,0.0004646249505992896,0.0,0.0,0.00407431462858003,0.002020937812190255,0.0004646249505992896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007817282420949715,0.00024460303194446224,0.0007817282420949715,0.0004855284058406351,0.00024083135538252942,5.536848087180702e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004855284058406351,0.00024083135538252942,5.536848087180702e-05,0.0,0.0 +95166,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,8944.0,,107.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002147654583788596,8.527099302522595e-05,0.0,0.0022328428697400825,0.0010844551508697989,0.0006032653958545084,0.0004599340370642886,0.0,8.527099302522595e-05,0.0010844551508697989,0.0006032653958545084,0.0004599340370642886,0.0,0.0,0.0,0.0,8.527099302522595e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.696551704280638e-06,0.0,0.0,0.00025592767937168156,7.05241127378348e-05,0.0002616242310759622,0.00012923032048066732,7.188880091412352e-05,5.4808557976890706e-05,0.0,0.0,0.0,0.0,5.696551704280639e-06,0.0,0.0,0.0,0.00012706659695032842,7.068515544201461e-05,5.38908896919445e-05,0.0,9.991279854773381e-06 +95167,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,18394.0,,343.0,,8.72605822017302,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.004246098458702304,0.00027210627260232134,0.0,0.004518204731304625,0.0029552891588529324,0.0008004390596490173,0.0006750551358602272,0.0,8.733866986870865e-05,0.002683182886250611,0.0008004390596490173,0.0006750551358602272,0.0,8.733866986870865e-05,0.00027210627260232134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81806114146595e-05,0.0,0.0,0.0005059981361280112,0.00018262532916682605,0.0005241787475426707,0.00031974895366612005,9.538654748722984e-05,8.044482337164393e-05,0.0,1.0407955584471453e-05,1.81806114146595e-05,0.0,0.0,0.0,0.0,0.0,0.000342857365267435,9.286280032067157e-05,7.831640589143639e-05,0.0,1.0132580816142715e-05 +95168,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock 90.1-2007,gen5_led,100001_200000,NaturalGas,363573.0,,71392.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.017671035630741308,0.012140847252019735,0.0,0.029811882882761036,0.01750304045628631,0.003928888517430921,0.003221145680626673,0.0,0.005158825958778563,0.01081287864238062,0.003928888517430921,0.0021780685182849666,0.0,0.0007511999526447973,0.006690161813905683,0.0010430771623417064,0.004407626006133767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008111806687423587,0.0,0.0,0.0021058236056368247,0.0014368510136739988,0.0029170042743791834,0.0012885501204241622,0.0004681981496052488,0.00025955627029124455,0.0,8.95190653161689e-05,0.00044699762887600675,6.969233798386412e-05,0.00029449188652192333,0.0,0.0,0.0,0.0017126205689994422,0.0003844300825940943,0.0003151795462144197,0.0,0.000504775811434479 +95169,50.0,the Greater Atlanta and Macon Area,G1301430010302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,29307.0,,2090.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0015085523407023524,0.0003553873643035384,0.0,0.001863939705005891,0.00116183512313322,0.00045102493380330325,0.0001173927229621696,0.0,0.0001337046554686182,0.0008064477588296817,0.00045102493380330325,0.0001173927229621696,0.0,0.0001337046554686182,0.0003553873643035384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3744462213906104e-05,0.0,0.0,0.00017977191677119356,8.189770441214819e-05,0.00020351637898509964,9.610316822891729e-05,5.374796397430301e-05,1.3989514485174155e-05,0.0,1.593338298334063e-05,2.37444622139061e-05,0.0,0.0,0.0,0.0,0.0,0.00012685629079242828,4.924567093727554e-05,1.281765812075247e-05,0.0,1.4598695044342906e-05 +95170,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,74970.0,,4173.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003859119545243013,0.0007096931765604534,0.0,0.004568812721803467,0.0024449459183796016,0.001017758206233871,0.000831376646986276,0.0,0.00027474968056513823,0.0019341342058678804,0.001017758206233871,0.0006324774525761237,0.0,0.00027474968056513823,0.0005108117125117212,0.00019889919441015233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.741788868302936e-05,0.0,0.0,0.00045988370055523287,0.0001912298449994178,0.0005073015892382623,0.00023048697650773762,0.00012128424752486252,7.537109643752651e-05,0.0,3.274138008510626e-05,3.4129696778626324e-05,1.3289376551982997e-05,0.0,0.0,0.0,0.0,0.0002714764262663793,0.00011300755511793455,9.231253718476623e-05,0.0,3.0507039373323464e-05 +95171,85.0,Rural Climate Zone 3A,G1302930010100,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,8641.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,9613.75315558068,0.0,0.0,0.0006363876554197762,0.0,0.0,0.0006363876554197762,0.0003960109894694083,0.0001687557184761491,7.159057387478104e-05,0.0,0.0,0.0003960109894694083,0.0001687557184761491,7.159057387478104e-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,7.583775401871472e-05,2.665249399908812e-05,7.583775401871472e-05,4.719227934784281e-05,2.01104697082846e-05,8.531385367607417e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.719227934784281e-05,2.01104697082846e-05,8.531385367607417e-06,0.0,0.0 +95172,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,61776.0,,3494.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.005178809683524749,0.0010285621550675088,0.0,0.00620737183859226,0.0020883356397397813,0.0015665816430725362,0.002552423866173643,0.0,0.0,0.0010597734846722726,0.0015665816430725362,0.002552423866173643,0.0,0.0,0.0010285621550675088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.872344231459736e-05,0.0,0.0,0.0006171480000748888,0.00028345627483466194,0.0006858714423894862,0.00012629100634428886,0.00018668628257415064,0.0003041670539397707,0.0,0.0,6.872344231459736e-05,0.0,0.0,0.0,0.0,0.0,0.00023074657273093623,0.0001730963826711445,0.0002820250959992246,0.0,0.0 +95173,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4863.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003181898380945825,0.0,0.0,0.0003181898380945825,0.0001024419058217319,0.00013300875369424387,8.2708488972309e-05,0.0,0.0,0.0001024419058217319,0.00013300875369424387,8.2708488972309e-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,3.791735855522306e-05,1.4545059406333979e-05,3.791735855522306e-05,1.2207575507073167e-05,1.58500995349476e-05,9.856026360563863e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2207575507073167e-05,1.58500995349476e-05,9.856026360563863e-06,0.0,0.0 +95174,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,9494.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002287512245481765,0.0,0.0,0.002287512245481765,0.00158466753284513,0.0002597002115414253,0.00038988114560709514,0.0,5.326335548811399e-05,0.00158466753284513,0.0002597002115414253,0.00038988114560709514,0.0,5.326335548811399e-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.0002726005212597023,9.418851330418511e-05,0.0002726005212597023,0.0001888432275412501,3.094821161166625e-05,4.6461741890890024e-05,0.0,6.347340215895882e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001888432275412501,3.094821161166625e-05,4.6461741890890024e-05,0.0,6.347340215895882e-06 +95175,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,14812.0,,1743.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0012654552260794767,0.000512976769266102,0.0,0.001778431995345579,0.0007894287427958088,0.0004813664747794682,0.0005076367777703017,0.0,0.0,0.00027645197352970665,0.0004813664747794682,0.0005076367777703017,0.0,0.0,0.000512976769266102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.427401100442081e-05,0.0,0.0,0.00015080115668978858,8.278358968152768e-05,0.0001850751676942094,3.294409515112808e-05,5.736324738515142e-05,6.049381415350905e-05,0.0,0.0,3.427401100442081e-05,0.0,0.0,0.0,0.0,0.0,8.215307492101931e-05,5.0094117332200276e-05,5.2827975440989775e-05,0.0,0.0 +95176,50.0,the Greater Atlanta and Macon Area,G1300890022900,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,6117.0,,340.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001184282588873143,0.0002695423533164029,0.0,0.0014538249421895458,0.001009687956209465,0.00025300093856854143,0.0001569780259572055,0.0,3.3992607306855354e-05,0.0007741382101999175,0.00025300093856854143,0.0001569780259572055,0.0,0.0,0.00023554974600954756,0.0,3.3992607306855354e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8011841730397657e-05,0.0,0.0,0.00014112781576613824,6.156339534331167e-05,0.00015913965749653588,9.225199773525066e-05,3.0149450969244846e-05,1.8706655096314712e-05,0.0,0.0,1.574032686350799e-05,0.0,2.271514866889671e-06,0.0,0.0,0.0,0.00011052320734541529,2.769417523506106e-05,1.718324439233275e-05,0.0,3.7209238383818553e-06 +95177,85.0,Rural Climate Zone 3A,G1300690010700,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,108608.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009676831830547558,0.0,0.0,0.009676831830547558,0.002010537487775105,0.0027231194564014656,0.004943174886370988,0.0,0.0,0.002010537487775105,0.0027231194564014656,0.004943174886370988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001153168734414154,0.0003426128038173192,0.001153168734414154,0.00023959173941112504,0.0003245087103078601,0.0005890682846951689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023959173941112504,0.0003245087103078601,0.0005890682846951689,0.0,0.0 +95178,50.0,the Greater Atlanta and Macon Area,G1302170100901,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,77329.0,,16356.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.02070304989933597,0.014466397094286185,0.0,0.03516944699362216,0.023675304173468154,0.0048639989975210835,0.0035967495099121206,0.0006480106352370965,0.0023855681119892484,0.010965276875499847,0.0048639989975210835,0.0018402874963414685,0.0006480106352370965,0.0023855681119892484,0.012710027297968307,0.0017564620135706525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009665611398089253,0.0,0.0,0.0024671413514929068,0.0015404654131563002,0.0034337024913018315,0.0013067102741699088,0.0005796331032747597,0.00021930340712771076,7.722214080409018e-05,0.00028428341546335683,0.0008492106494836253,0.00011735665174976319,0.0,0.0,0.0,0.0,0.0023114935795694653,0.00047488734976431425,0.0003511618409869665,6.32672937111354e-05,0.0002329104341843406 +95180,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,267379.0,,,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,1459415.2837631335,0.0,0.0,0.07158456463770435,0.0,0.0,0.07158456463770435,0.05466205323305745,0.007369818407126551,0.004307467877034976,0.0006471806799621379,0.004598044440523249,0.05466205323305745,0.007369818407126551,0.004307467877034976,0.0006471806799621379,0.004598044440523249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008530598619319232,0.0024819252081341083,0.008530598619319232,0.006513974600517009,0.0008782474692226244,0.0005133128868013311,7.712331063095146e-05,0.000547940352147317,0.0,0.0,0.0,0.0,0.0,0.0,0.006513974600517009,0.0008782474692226244,0.0005133128868013311,7.712331063095146e-05,0.000547940352147317 +95181,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,122773.0,,13937.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006156442474439254,0.0023700351413798782,0.0,0.008526477615819133,0.003378520368591062,0.0011564805539843643,0.002607160995011664,0.0,0.0013842979678706225,0.0030553668013491796,0.0011564805539843643,0.0017281074061668664,0.0,0.00021646998257742467,0.0003231535672418824,0.000879053588844798,0.001167827985293198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015835197057614982,0.0,0.0,0.000733650720282748,0.00037881190298939626,0.0008920026908588978,0.0003641018435313147,0.00013781543398582631,0.00020593504260360201,0.0,2.5796287270918857e-05,2.159124279552713e-05,5.873325066166134e-05,7.802747711896135e-05,0.0,0.0,0.0,0.0003534459827014163,0.00012098592321008964,0.0002727497482357898,0.0,0.00014481918183895603 +95182,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,7091.0,,1103.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005454187251037095,0.00032132230845197655,0.0,0.0008667410335556861,0.0006553407814689333,0.0001640478105632976,4.732206792401734e-05,0.0,0.0,0.0003340184730169568,0.0001640478105632976,4.732206792401734e-05,0.0,0.0,0.00032132230845197655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.146904123219094e-05,0.0,0.0,6.499493914656063e-05,4.118106821949775e-05,8.646398037875157e-05,3.980338284762084e-05,1.9548792467036474e-05,5.6391443554235936e-06,0.0,0.0,2.146904123219094e-05,0.0,0.0,0.0,0.0,0.0,6.537520467661703e-05,1.636501114471675e-05,4.72073456090885e-06,0.0,0.0 +95183,50.0,the Greater Atlanta and Macon Area,G1300150960401,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4456.0,,843.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.0003970007470670832,0.00024812546691692697,0.0,0.0006451262139840102,0.0003844486980913227,0.00013923874377267753,0.00012146946172630762,0.0,0.0,0.00013632323117439578,0.00013923874377267753,0.00012146946172630762,0.0,0.0,0.00024812546691692697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6577832738333893e-05,0.0,0.0,4.730944452957438e-05,3.407801904705642e-05,6.388727726790828e-05,1.624524989180345e-05,1.659268319655836e-05,1.4475168633894202e-05,0.0,0.0,1.6577832738333893e-05,0.0,0.0,0.0,0.0,0.0,3.807220980615037e-05,1.3788905235930729e-05,1.2029201437913561e-05,0.0,0.0 +95184,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,56522.0,,6819.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005036010945421538,0.0020071309414760596,0.0,0.007043141886897598,0.0030547820316607394,0.0014360280578821088,0.0025523317973547496,0.0,0.0,0.00104765109018468,0.0014360280578821088,0.0025523317973547496,0.0,0.0,0.0020071309414760596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013410450322908483,0.0,0.0,0.0006001317982811595,0.0003014688402993004,0.0007342363015102444,0.0001248465778842984,0.0001711287187615224,0.0003041565016353387,0.0,0.0,0.00013410450322908483,0.0,0.0,0.0,0.0,0.0,0.0003184561516528685,0.00014970363326710428,0.0002660765165902716,0.0,0.0 +95185,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010301,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,231335.0,,3587.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.011234027917191138,0.0006099953542954966,0.0,0.01184402327148663,0.006385270518926457,0.0023942016239954108,0.0021898060175450417,0.0,0.000874745111019725,0.0059837842149307804,0.0023942016239954108,0.0019812969672452206,0.0,0.000874745111019725,0.00040148630399567564,0.00020850905029982095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.075671759849638e-05,0.0,0.0,0.0013387367144348707,0.00038930726452764044,0.001379493432033367,0.0007130756375925587,0.00028531223523998957,0.000236107210325754,0.0,0.00010424163127656827,2.6825227104416698e-05,1.3931490494079685e-05,0.0,0.0,0.0,0.0,0.0007437032620343479,0.0002788567144423327,0.000255050412295531,0.0,0.00010188304326115586 +95186,50.0,the Greater Atlanta and Macon Area,G1300630040621,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,48594.0,,14444.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.010118181790911392,0.009936299944415802,0.0,0.02005441001535618,0.005358557634431381,0.001251298334309366,0.009646551261512731,0.0003701467704115687,0.00342785601469113,0.004337839006937204,0.001251298334309366,0.0037835870709285605,0.0003701467704115687,0.00037523888835367704,0.0010207186274941763,0.005862964190584172,0.0030526171263374527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006638849388943977,0.0,0.0,0.00120576091211016,0.0009408752252166359,0.0018696458510045573,0.0005169304945963525,0.000149114401389193,0.000450881540969042,4.410955611678943e-05,4.471637233153309e-05,6.819839652920079e-05,0.00039172867618529427,0.00020395786617990257,0.0,0.0,0.0,0.0004995711686811989,0.00011665687184609349,0.0008993350853393195,3.450828885181914e-05,0.00031957443628612587 +95187,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,29180.0,,3626.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0025550324827089475,0.0010674765758529959,0.0,0.0036225090585619434,0.0017520696235358516,0.0007961190769687079,0.0010743510476636812,0.0,0.0,0.0006845930476828559,0.0007961190769687079,0.0010743510476636812,0.0,0.0,0.0010674765758529959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.132309803514129e-05,0.0,0.0,0.0003044788704449042,0.00015930079136678208,0.0003758019684800455,8.158178781817663e-05,9.48721548299332e-05,0.00012802858502492084,0.0,0.0,7.132309803514129e-05,0.0,0.0,0.0,0.0,0.0,0.00018176109508481064,8.259002570669248e-05,0.00011145403145268814,0.0,0.0 +95188,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,20272.0,,1220.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0017876381949088833,0.00035531036622282074,0.0,0.002142948561131705,0.0014303839183220466,0.0005650400703404972,0.00014755494606859834,0.0,0.0,0.0010750735520992257,0.0005650400703404972,0.00014755494606859834,0.0,0.0,0.00035531036622282074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3739527499072608e-05,0.0,0.0,0.00021303100296368428,7.331304635657809e-05,0.0002367705304627569,0.00012811540820490365,6.733524336306889e-05,1.758397098628117e-05,0.0,0.0,2.3739527499072608e-05,0.0,0.0,0.0,0.0,0.0,0.0001580405452791888,6.243026062957869e-05,1.6303080478336465e-05,0.0,0.0 +95189,35.0,Eastern Counties in South Carolina and Georgia,G1302450010400,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,39593.0,,3675.0,,8.53126424238864,Food Service,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.009248775506595135,0.0028500191600333287,0.0,0.012098794666628467,0.003147182537810169,0.0012006209070015,0.006720177959259204,0.0004211229582208925,0.0006096903043366993,0.003147182537810169,0.0012006209070015,0.0038701587992258746,0.0004211229582208925,0.0006096903043366993,0.0,0.0028500191600333287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001904211147802945,0.0,0.0,0.00110215722008174,0.000504812765328428,0.0012925783348620345,0.00037504315619826556,0.00014307548067192123,0.0004611987241325089,5.018434155033444e-05,7.265551752871e-05,0.0,0.0001904211147802945,0.0,0.0,0.0,0.0,0.00033623018460260813,0.00012826869250480525,0.0007179522155636688,4.499079677835572e-05,6.513644541259641e-05 +95190,50.0,the Greater Atlanta and Macon Area,G1301390000500,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,9334.0,,,2037.0,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0020312030239636515,0.0,0.0005227087060324229,0.002553911729996074,0.001544802723302784,0.00040005411567703,0.0005344531105034047,0.0,7.46844875865946e-05,0.0010220940172703612,0.00040005411567703,0.0005344531105034047,0.0,7.46844875865946e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005227087060324229,0.0,0.0,0.0,0.0,4.215495043364582e-05,0.00024205318952283058,0.00011824098994654314,0.00028420813995647635,0.00012180028975622542,4.76734100623776e-05,6.368938925430722e-05,0.0,8.899956437115353e-06,0.0,0.0,0.0,4.215495043364582e-05,0.0,0.0,0.0001719109957611019,4.4519407136548344e-05,5.9475792622777636e-05,0.0,8.311148365578489e-06 +95191,50.0,the Greater Atlanta and Macon Area,G1300670030414,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,67024.0,,7727.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006528385120466229,0.002274529481147944,0.0,0.008802914601614174,0.0053672745557989425,0.0013945970893802099,0.0020410429564350213,0.0,0.0,0.003092745074650998,0.0013945970893802099,0.0020410429564350213,0.0,0.0,0.002274529481147944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015197105043471805,0.0,0.0,0.0007779745676454073,0.00036057255984640006,0.0009299456180801252,0.00036855623065895984,0.00016619133945526625,0.00024322699753118122,0.0,0.0,0.00015197105043471805,0.0,0.0,0.0,0.0,0.0,0.0005670023713831027,0.00014732614264128076,0.00021561710405574179,0.0,0.0 +95192,50.0,the Greater Atlanta and Macon Area,G1302070050302,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,89014.0,,2950.0,,3.3063363735822096,Lodging,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,123987.61400933286,0.0,0.0,0.008098653740146834,0.0008867093382610104,0.0,0.008985331740385639,0.0028818758598982428,0.002088146433516378,0.002773226936917118,0.0,0.0012420825100539015,0.0028818758598982428,0.002088146433516378,0.0018865175986561074,0.0,0.0012420825100539015,0.0,0.0008867093382610104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.92440890546347e-05,0.0,0.0,0.0009650996165543915,0.00044034171142630206,0.0010243437056090261,0.00034342711475089253,0.0002488400402039585,0.00022481235394231224,0.0,0.00014801637317070956,0.0,5.92440890546347e-05,0.0,0.0,0.0,0.0,0.00032853894355008726,0.00023805238552835405,0.00031615277422517604,0.0,0.00014159960230540887 +95193,50.0,the Greater Atlanta and Macon Area,G1300670030334,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,77845.0,,5628.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.009623674773305798,0.002091484921521941,0.0,0.011715159694827738,0.005144240739981712,0.0013383318086639675,0.00490051315445531,0.0,0.0003320352433029774,0.004048939045216247,0.0013383318086639675,0.004236365171001811,0.0,0.0,0.001095301694765464,0.0006641479834534988,0.0003320352433029774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001397410795650419,0.0,0.0,0.001146833014265159,0.0004366437139575735,0.001286574093830201,0.000482503521698519,0.00015948617740848807,0.0005048386975902604,0.0,0.0,7.318180480333922e-05,4.437457580674405e-05,2.2184698954958564e-05,0.0,0.0,0.0,0.0005649472171863289,0.000146977342078929,0.0005381807363479588,0.0,3.6464542814625275e-05 +95194,81.0,the Columbus-Albany Area,G1302630960100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,8980.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0008001394153937069,0.0,0.0,0.000800139415393707,0.00031969362880316987,0.000235941693216739,0.0002444734037675003,0.0,0.0,0.00031969362880316987,0.000235941693216739,0.0002444734037675003,0.0,0.0,0.0,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.535016241974424e-05,3.460567564726629e-05,9.535016241974424e-05,3.80969101690118e-05,2.8116448630062668e-05,2.913314643432351e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8096910169011796e-05,2.811644863006266e-05,2.9133146434323506e-05,0.0,0.0 +95195,35.0,Eastern Counties in South Carolina and Georgia,G1301270000401,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,3919.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000608806769795042,0.0,0.0,0.000608806769795042,0.00033107641617844763,0.0001737675619262849,7.757923516747037e-05,0.0,2.6383556522839068e-05,0.00033107641617844763,0.0001737675619262849,7.757923516747037e-05,0.0,2.6383556522839068e-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,7.255104018538454e-05,2.098346709517566e-05,7.255104018538454e-05,3.945412496428397e-05,2.070774832624547e-05,9.24505851024191e-06,0.0,3.1441083846131862e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.945412496428397e-05,2.070774832624547e-05,9.24505851024191e-06,0.0,3.1441083846131862e-06 +95196,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,39225.0,,3498.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033803690022257134,0.0010189431403382603,0.0,0.004399342516163411,0.003022689495246748,0.0011492762555256534,0.00022737676539101017,0.0,0.0,0.002003746354908488,0.0011492762555256534,0.00022737676539101017,0.0,0.0,0.0010189431403382603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.808007885320207e-05,0.0,0.0,0.00040283367261505855,0.00016456137147216203,0.00047091375146826066,0.00023878354777403266,0.00013695758497307635,2.709615944575426e-05,0.0,0.0,6.808007885320207e-05,0.0,0.0,0.0,0.0,0.0,0.0003235542685073073,0.0001230206538760161,2.4338829084937277e-05,0.0,0.0 +95197,85.0,Rural Climate Zone 3A,G1300310110200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,50452.0,,3724.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002597036958640814,0.0006333462402857061,0.0,0.0032303831989265205,0.0014585527214978039,0.000812954801470841,0.0006036656152685378,0.0,0.00035521006068933784,0.0012924901564375893,0.000812954801470841,0.0004087380218164773,0.0,8.285397891590676e-05,0.00016606256506021454,0.00019492759345206048,0.00027235608177343104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.231595732535722e-05,0.0,0.0,0.00030948423076379057,0.00011111685762046124,0.0003518001880891478,0.00015402373096923716,9.687836383761325e-05,4.870857607355343e-05,0.0,9.87355988338677e-06,1.109518928107544e-05,1.3023757309005273e-05,1.819701073527651e-05,0.0,0.0,0.0,0.0001588415646575239,8.853366131933102e-05,6.574132662186786e-05,0.0,3.868363549042502e-05 +95198,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,65452.0,,4728.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0031587525387895073,0.0008040364296765544,0.0,0.003962788968466062,0.0016390300703925211,0.0009571203701772904,0.0010922966456437728,0.0,0.0002743773429753171,0.0016390300703925211,0.0009571203701772904,0.0002882602159672185,0.0,0.0002743773429753171,0.0,0.0008040364296765544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3720983308282604e-05,0.0,0.0,0.00037642219082900414,0.00014455074678946703,0.00043014317413728675,0.00019531991897288765,0.00011405811066392355,3.435139052228649e-05,0.0,3.269699645296982e-05,0.0,5.372098330828261e-05,0.0,0.0,0.0,0.0,0.00017790944776400789,0.00010389117294299858,0.00011856395836253509,0.0,2.9782444171999982e-05 +95199,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,14799.0,,1043.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0012590410983632566,0.0003070495110085163,0.0,0.001566090609371773,0.0006202983224891686,0.000444416188797034,0.0005013760980855704,0.0,0.0,0.00031324881148065233,0.000444416188797034,0.0005013760980855704,0.0,0.0,0.0003070495110085163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.051593275108592e-05,0.0,0.0,0.0001500371108111485,6.626568108875107e-05,0.00017055304356223446,3.732916002557936e-05,5.296008291666646e-05,5.97478678689027e-05,0.0,0.0,2.051593275108592e-05,0.0,0.0,0.0,0.0,0.0,6.75527751612754e-05,4.839856209729017e-05,5.460170630366891e-05,0.0,0.0 +95200,50.0,the Greater Atlanta and Macon Area,G1302970110601,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,52500.0,,5150.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004558357913004092,0.0015159437926813265,0.0,0.006074301705685419,0.002343611784924073,0.001555073040710898,0.0021755861904441502,0.0,0.0,0.0008276679922427465,0.001555073040710898,0.0021755861904441502,0.0,0.0,0.0015159437926813265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010128650568909049,0.0,0.0,0.0005432089942852505,0.0002572462683389604,0.000644495499974341,9.863128482861437e-05,0.00018531446599987834,0.0002592595862471902,0.0,0.0,0.00010128650568909047,0.0,0.0,0.0,0.0,0.0,0.0002486618746080149,0.00016499634450681228,0.00023083402463120766,0.0,0.0 +95201,50.0,the Greater Atlanta and Macon Area,G1301210006000,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,27575.0,,4811.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002293067642455429,0.0008180788759212363,0.0,0.0031111465183766653,0.0012019412006653795,0.0006765019399821147,0.0006800657426275453,0.0,0.0005526199047402058,0.0008305787807223736,0.0006765019399821147,0.0006800657426275453,0.0,0.00010590344876197541,0.0003713624199430059,0.0,0.0004467164559782304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4659296755544074e-05,0.0,0.0,0.00027325968469764486,0.00011349696912193242,0.00032791898145318897,9.89781947704413e-05,8.06172061365394e-05,8.104189643750767e-05,0.0,1.262027446608701e-05,2.4812288048219993e-05,0.0,2.9847008707324078e-05,0.0,0.0,0.0,0.00012668620136041306,7.130420435029593e-05,7.167983388965929e-05,0.0,5.8246873049142276e-05 +95202,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,18867.0,,1991.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004192917810287929,0.0015791261589045967,0.0,0.005772043969192526,0.0038192472511337384,0.0009681690051923326,0.000858499425414011,0.0,0.00012612828745244383,0.002240121092229142,0.0009681690051923326,0.000858499425414011,0.0,0.00012612828745244383,0.0015791261589045967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010550812208772325,0.0,0.0,0.0004996577118694183,0.0002269889229903002,0.0006051658339571415,0.00026694865721128293,0.0001153738593802945,0.00010230485736950768,0.0,1.5030337908333262e-05,0.00010550812208772325,0.0,0.0,0.0,0.0,0.0,0.00040042625457411456,0.0001015069889567453,9.000876006928209e-05,0.0,1.3223830356999538e-05 +95203,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,73535.0,,4148.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006551924048496567,0.0012208632281289144,0.0,0.007772787276625481,0.0036938930828104006,0.0015803919659065024,0.0024985022279085793,0.0,0.0,0.0024730298546814856,0.0015803919659065024,0.0024985022279085793,0.0,0.0,0.0012208632281289144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.157136241674238e-05,0.0,0.0,0.0007807805712643788,0.00032094900572627184,0.0008623519336811212,0.0002947063562397591,0.00018833236356658603,0.0002977418514580337,0.0,0.0,8.157136241674238e-05,0.0,0.0,0.0,0.0,0.0,0.00040981899148998825,0.0001753365966764573,0.0002771963455146758,0.0,0.0 +95204,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,249684.0,,12260.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.022246558019535474,0.0036087294253342745,0.0,0.02585531813447605,0.00907267624097098,0.006504263089916235,0.010278378803588829,0.0,0.0,0.005463946815636706,0.006504263089916235,0.010278378803588829,0.0,0.0,0.0036087294253342745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024111510930215625,0.0,0.0,0.0026510805008063613,0.0009150577809137676,0.0028921956101085173,0.0006511282710636576,0.0007751008059156613,0.0012248550810497352,0.0,0.0,0.00024111510930215625,0.0,0.0,0.0,0.0,0.0,0.0010148764853557604,0.0007275718309790508,0.0011497472937737052,0.0,0.0 +95205,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,22987.0,,325.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.002585876060429945,0.00012081758532135412,0.0,0.0027066936457512993,0.0014378765093344481,0.00037039618283733934,0.0008279375707380929,0.0,7.052213126519068e-05,0.0014378765093344481,0.00037039618283733934,0.0007071199854167389,0.0,7.052213126519068e-05,0.0,0.00012081758532135412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.071335086875696e-06,0.0,0.0,0.0003081549382250365,0.0001111328807083419,0.00031622627331191224,0.00017134956840720244,4.413955277580166e-05,8.426641893562136e-05,0.0,8.404015697453607e-06,0.0,8.071335086875696e-06,0.0,0.0,0.0,0.0,0.0001679888415681279,4.327383142583094e-05,9.672894194745577e-05,0.0,8.239185395440141e-06 +95206,50.0,the Greater Atlanta and Macon Area,G1301350050436,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,10029.0,,439.0,,4.088175128053588,Healthcare,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0011281991065479624,0.00016328585777555685,0.0,0.0012914849643235196,0.0007130872426776395,0.00016421581994608686,0.0003601665989615095,0.0,5.397655431451133e-05,0.0006010655495525482,0.00016421581994608686,0.000308902434311044,0.0,5.397655431451133e-05,0.00011202169312509133,5.1264164650465526e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0909759169125264e-05,0.0,0.0,0.00013444514285592806,5.426204322389506e-05,0.00014535490202505336,7.162773238017434e-05,1.9569257982670117e-05,3.6811261122663094e-05,0.0,6.432273801288221e-06,7.484602220678961e-06,3.4251569484463037e-06,0.0,0.0,0.0,0.0,8.025701356036773e-05,1.8482270470512334e-05,4.0536268056491764e-05,0.0,6.07498885451243e-06 +95207,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,10002.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033220123238130216,0.0,0.0,0.0033220123238130216,0.0018195556222647632,0.0005674532329253883,0.0008666047186404633,0.0,6.831604290866793e-05,0.0018195556222647632,0.0005674532329253883,0.0008666047186404633,0.0,6.831604290866793e-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.00039587524298202714,0.00012476657976222218,0.00039587524298202714,0.00021683153277908177,6.762187029078546e-05,0.00010327094547541904,0.0,8.14103845797825e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00021683153277908177,6.762187029078546e-05,0.00010327094547541904,0.0,8.14103845797825e-06 +95208,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,33195.0,,1857.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0016975757238015356,0.00031579546725256044,0.0,0.002013371191054096,0.0011860725271944322,0.00028865028391845965,0.0003138273971349346,0.0,0.0002248564435291096,0.0011450976619526902,0.00028865028391845965,0.00021051258114028693,0.0,5.333292715151884e-05,4.097486524174202e-05,0.00010331481599464769,0.0001715235163775908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1099913502304836e-05,0.0,0.0,0.00020229636213933268,8.642001325513239e-05,0.00022339627564163753,0.00013645876767637305,3.439781892994168e-05,2.5086320894053903e-05,0.0,6.3555675271047045e-06,2.73774072785506e-06,6.902992306885087e-06,1.146036512387272e-05,0.0,0.0,0.0,0.00013160225317288842,3.202757577778045e-05,3.482113582719373e-05,0.0,2.494924545539383e-05 +95209,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,18033.0,,2364.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0008923690902712577,0.0004020182148382772,0.0,0.0012943873051095348,0.0004739857518422716,0.0002366294035120247,0.00036689436886515266,0.0,0.00021687778089008586,0.0003190223930310101,0.0002366294035120247,0.0002849623687430887,0.0,5.175492498513413e-05,0.00015496335881126148,8.1932000122064e-05,0.00016512285590495173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6860781149088665e-05,0.0,0.0,0.00010634203115630169,5.30085365675053e-05,0.00013320281230539037,3.801732896076567e-05,2.819870351305389e-05,3.395845668078841e-05,0.0,6.167542001693713e-06,1.0353851426437106e-05,5.474273162650557e-06,1.1032656560001003e-05,0.0,0.0,0.0,4.8776927036326795e-05,2.4351059298500627e-05,3.775636670641941e-05,0.0,2.2318459264143536e-05 +95210,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950202,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,92066.0,,1346.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0057392470702254126,0.00022895215701714181,0.0,0.005968199227242553,0.0025684733463931094,0.0016242429489681971,0.0011897781727312233,0.0,0.0005856870287886042,0.0025684733463931094,0.0016242429489681971,0.0009608260157140814,0.0,0.0005856870287886042,0.0,0.00022895215701714181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5297626104466313e-05,0.0,0.0,0.0006839339988109719,0.00016701303410276828,0.0006992316249154382,0.00030607956499231943,0.00019355761505571745,0.00011449961485333577,0.0,6.979509101973096e-05,0.0,1.5297626104466313e-05,0.0,0.0,0.0,0.0,0.0003009212198132704,0.00019029559725156924,0.00013939389308760482,0.0,6.861883748156368e-05 +95211,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,18564.0,,1991.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0009100285302456302,0.0003385789816773283,0.0,0.0012486075119229583,0.0005514674312479023,0.0002408314991685772,0.0002589341981784511,0.0,0.0001973743833280278,0.0005514674312479023,0.0002408314991685772,6.46094370146724e-05,0.0,5.31201628144782e-05,0.0,0.0001943247611637787,0.0001442542205135496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.262224815064254e-05,0.0,0.0,0.000108446574017083,4.9896702231458656e-05,0.00013106882216772553,6.571744908337553e-05,2.8699485930601222e-05,7.699398272186618e-06,0.0,6.330240730919625e-06,0.0,1.2983862574939372e-05,9.63838557570317e-06,0.0,0.0,0.0,5.788863673117446e-05,2.528056305563909e-05,2.7180839495292144e-05,0.0,2.0718782885619845e-05 +95212,35.0,Eastern Counties in South Carolina and Georgia,G1301270000503,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,6237.0,,195.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0004710854566697377,5.74202533830019e-05,0.0,0.0005285057100527398,0.00018011729936121763,0.00015504389101599447,0.00019334451967552754,0.0,0.0,0.00012269704597821574,0.00015504389101599447,0.00019334451967552754,0.0,0.0,5.74202533830019e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8362678744738245e-06,0.0,0.0,5.613724010871842e-05,1.9833647227550388e-05,5.997350798319224e-05,1.4621282472616044e-05,1.847591772177495e-05,2.3040039914327428e-05,0.0,0.0,3.8362678744738245e-06,0.0,0.0,0.0,0.0,0.0,2.0439261271317293e-05,1.7593993515538416e-05,2.1940253196336507e-05,0.0,0.0 +95213,50.0,the Greater Atlanta and Macon Area,G1301210004000,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,65454.0,,6293.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009912302682112555,0.0018334112092615752,0.0,0.011745683517774696,0.007398856955039155,0.0030695863327786367,0.0012772402299569018,0.0,0.0,0.00556544574577758,0.0030695863327786367,0.0012772402299569018,0.0,0.0,0.0018334112092615752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001224971224498325,0.0,0.0,0.0011812291761657602,0.00043678011720974983,0.0013037262986155926,0.0006632229769520104,0.00036579643008490345,0.00015220614956808535,0.0,0.0,0.0001224971224498325,0.0,0.0,0.0,0.0,0.0,0.0008212450452442423,0.0003407124346453268,0.00014176881872602325,0.0,0.0 +95214,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,16549.0,,1227.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013362865072638914,0.0003574365181834634,0.0,0.0016937230254473548,0.0012567380503364196,0.0003054065423465946,0.00013154805916490314,0.0,0.0,0.0008993015321529561,0.0003054065423465946,0.00013154805916490314,0.0,0.0,0.0003574365181834634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.388263751899005e-05,0.0,0.0,0.0001592419823832658,6.102847386619586e-05,0.0001831246199022558,0.000107167555731418,3.639454785461388e-05,1.5676259249958497e-05,0.0,0.0,2.388263751899005e-05,0.0,0.0,0.0,0.0,0.0,0.00013587798850628083,3.3020426682875425e-05,1.4222920732325555e-05,0.0,0.0 +95215,46.0,the Tallahassee-Valdosta Area,G1300270960500,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,42297.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003472406194159879,0.0,0.0,0.003472406194159879,0.0016234187939358816,0.0007880784001187099,0.0010608783104989897,0.0,0.0,0.0016234187939358816,0.0007880784001187099,0.0010608783104989897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004137989631463016,0.00010781088067578767,0.0004137989631463016,0.00019345922571291127,9.391355924764356e-05,0.00012642252097326776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019345922571291127,9.391355924764356e-05,0.00012642252097326776,0.0,0.0 +95216,85.0,Rural Climate Zone 3A,G1302850960800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7346.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006841957009347976,0.0,0.0,0.0006841957009347976,0.00041128890998659746,0.00019594008997293703,7.693632737582537e-05,0.0,0.0,0.00041128890998659746,0.00019594008997293703,7.693632737582537e-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,8.153419854087036e-05,2.4681892477201974e-05,8.153419854087036e-05,4.9012455937224794e-05,2.334977869071982e-05,9.168344353370531e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9012455937224794e-05,2.334977869071982e-05,9.168344353370531e-06,0.0,0.0 +95217,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,8036.0,,843.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006122710174662013,0.00024563129865309895,0.0,0.0008579023161193002,0.0006110560734886911,0.00018716211973542675,5.968412289518233e-05,0.0,0.0,0.00036542477483559216,0.00018716211973542675,5.968412289518233e-05,0.0,0.0,0.00024563129865309895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6411169487107928e-05,0.0,0.0,7.29642850437551e-05,3.797866701266472e-05,8.937545453086302e-05,4.354763931746292e-05,2.2304093880326366e-05,7.112551845965807e-06,0.0,0.0,1.6411169487107928e-05,0.0,0.0,0.0,0.0,0.0,6.365924568071878e-05,1.9498373192394338e-05,6.217835657749897e-06,0.0,0.0 +95218,50.0,the Greater Atlanta and Macon Area,G1300890021415,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,125123.0,,7890.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,153306.56730200956,0.0,0.0,0.014077302356397677,0.002932403214223681,0.0,0.01700974431904513,0.011104949517264978,0.0011647001217412647,0.004478077838492064,0.0,0.0002619393446992796,0.009088249053623158,0.0011647001217412647,0.0038243144326094826,0.0,0.0,0.002016700463641821,0.0006537634058825808,0.0002619393446992796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019592710226618322,0.0,0.0,0.001677566265560545,0.0006728136787435454,0.0018734933678267284,0.0010830299470297221,0.0001387951742642964,0.00045573652668803616,0.0,0.0,0.00013474486593918674,4.3680885718901714e-05,1.75013506080948e-05,0.0,0.0,0.0,0.0012231253380658982,0.00012828281911010737,0.0004932260575858968,0.0,2.8850617379211034e-05 +95219,50.0,the Greater Atlanta and Macon Area,G1301210004200,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,146775.0,,21887.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013758015786781333,0.003722063851466005,0.0,0.017480079638247336,0.011117433060492869,0.0030978487473116256,0.0019835487231455676,0.0,0.0012812668376586958,0.00877358566293041,0.0030978487473116256,0.0016221862270434711,0.0,0.00026441287985724745,0.00234384739756246,0.00036136249610209614,0.001016853957801448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002486863893204933,0.0,0.0,0.0016395170531248683,0.0007247499181056872,0.0018882034424453614,0.001045531821910453,0.00036916485108984894,0.00019331290382275905,0.0,3.1509589195872924e-05,0.0001566020814469541,2.4144114119932608e-05,6.794019375360653e-05,0.0,0.0,0.0,0.001200908451815457,0.00033463055031226146,0.00021426352767332666,0.0,0.00013840282788327187 +95220,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,94338.0,,9309.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004985830822403108,0.0015830730497508343,0.0,0.006568903872153944,0.0023532622194765086,0.0021605509212019544,0.0009657018651045958,0.0,0.0010894065967323044,0.0018597021486264984,0.0021605509212019544,0.0007774763482693154,0.0,0.0001881014043053402,0.0004935600708500098,0.00018822551683528055,0.0009013051924269642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010577180634825516,0.0,0.0,0.0005941521639509848,0.00026986573672135796,0.00069992397029924,0.0002216172379828483,0.00025746882533405117,9.26504069631216e-05,0.0,2.241569367096367e-05,3.297683593526845e-05,1.257614291370514e-05,6.022001213972184e-05,0.0,0.0,0.0,0.0002507426913024857,0.0002302090894055807,0.00010289660142762241,0.0,0.00011607747735316353 +95221,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,33875.0,,2523.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002881293687259826,0.0007426884724044074,0.0,0.0036239514700579355,0.001569589224489711,0.0010877010264031819,0.0009667225983776377,0.0,0.0,0.0008269007520853037,0.0010877010264031819,0.0009667225983776377,0.0,0.0,0.0007426884724044074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9621238758747316e-05,0.0,0.0,0.0003433575613232591,0.00014538456835785994,0.0003929788000820064,9.853998117158112e-05,0.00012961898800041484,0.0001152022493655287,0.0,0.0,4.9621238758747316e-05,0.0,0.0,0.0,0.0,0.0,0.00017020517387109289,0.0001179495497485389,0.00010483073238189086,0.0,0.0 +95222,81.0,the Columbus-Albany Area,G1302150010104,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,22160.0,,7343.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004614032615318321,0.005051094118687455,0.0,0.009665198453976794,0.004226314452007928,0.00046144629351444155,0.0032784633150656126,0.00037939864667258243,0.0013196474666872433,0.0025971235904173073,0.00046144629351444155,0.0010120405110012876,0.00037939864667258243,0.00016409529368371808,0.0016291908615906204,0.0022664228040643244,0.0011555521730035251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003374857659546373,0.0,0.0,0.0005498482914113264,0.0005023317307743358,0.0008873340573659637,0.00030949585489145636,5.498995720677208e-05,0.0001206035570632205,4.5212445387600905e-05,1.9555023638342323e-05,0.00010885339154065912,0.00015142965425587112,7.720751208413011e-05,0.0,0.0,0.0,0.0003880057681445315,4.236405634404555e-05,0.0003009862828099176,3.483149798880959e-05,0.00012115303648281598 +95223,50.0,the Greater Atlanta and Macon Area,G1300450910502,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,37327.0,,2230.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003325832634482051,0.0006565427475267555,0.0,0.003982375382008806,0.0015020107114221697,0.0013925408857582637,0.0010877930952220751,0.0,0.0,0.000845467963895414,0.0013925408857582637,0.0010877930952220751,0.0,0.0,0.0006565427475267555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3865557822588706e-05,0.0,0.0,0.0003963338640951113,0.00015574006675371852,0.00044019942191769995,0.00010075299088268175,0.0001659467480235828,0.00012963046796024007,0.0,0.0,4.3865557822588706e-05,0.0,0.0,0.0,0.0,0.0,0.00016602760499908348,0.0001539271500313312,0.00012024127455340023,0.0,0.0 +95224,50.0,the Greater Atlanta and Macon Area,G1301170130406,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,6715.0,,227.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013434109987475705,0.00018005329953047224,0.0,0.0015234642982780429,0.0010069586227760678,0.00030642970820413405,0.0001695495011655802,0.0,4.0361051984782014e-05,0.000867349082304117,0.00030642970820413405,0.0001695495011655802,0.0,0.0,0.0001396095404719509,0.0,4.0361051984782014e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2029523648386755e-05,0.0,0.0,0.00016009067277258717,6.206677486787565e-05,0.00017212019642097397,0.00010335965556646689,3.65164035352112e-05,2.0204757691547354e-05,0.0,0.0,9.327439558326524e-06,0.0,2.6965583557247294e-06,0.0,0.0,0.0,0.00011376565642917251,3.4620267521156815e-05,1.9155613608197428e-05,0.0,4.559970458926996e-06 +95225,50.0,the Greater Atlanta and Macon Area,G1302230120603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,32897.0,,263.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008443317036824676,0.00020866994704427262,0.0,0.008651986983868949,0.005440140482276685,0.0015003890247047757,0.0015028702369169551,0.0,0.00020866994704427262,0.005440140482276685,0.0015003890247047757,0.0015028702369169551,0.0,0.0,0.0,0.0,0.00020866994704427262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3942981543587016e-05,0.0,0.0,0.0010061742222270773,0.00029327885134332175,0.0010201172037706643,0.0006482913166339323,0.00017879854012187066,0.00017909422151780565,0.0,0.0,0.0,0.0,1.3942981543587016e-05,0.0,0.0,0.0,0.0006414227052406005,0.00017690417927161478,0.0001771967279391716,0.0,2.4603342941529356e-05 +95226,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13450.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003229463108298737,0.0,0.0,0.003229463108298737,0.001203057094611966,0.001136395193178084,0.0008219428988212372,0.0,6.798521461371071e-05,0.001203057094611966,0.001136395193178084,0.0008219428988212372,0.0,6.798521461371071e-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.00038484932683326676,0.00012485596707149628,0.00038484932683326676,0.00014336615637863855,0.00013542217713752877,9.794946116395638e-05,0.0,8.101676099494079e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014336615637863855,0.00013542217713752877,9.794946116395638e-05,0.0,8.101676099494079e-06 +95227,50.0,the Greater Atlanta and Macon Area,G1301210011423,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,14625.0,,1019.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035858478890414126,0.0008082135245805121,0.0,0.004394061413621925,0.0032246660980218573,0.0005879645872127365,0.0005170019179444106,0.0,6.44288104429205e-05,0.002416452573441345,0.0005879645872127365,0.0005170019179444106,0.0,6.44288104429205e-05,0.0008082135245805121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4000426270468554e-05,0.0,0.0,0.0004273141505548707,0.00019107617858788955,0.0004813145768253393,0.0002879610097048081,7.006588006953076e-05,6.160948323458105e-05,0.0,7.677777545950834e-06,5.4000426270468554e-05,0.0,0.0,0.0,0.0,0.0,0.0003532219175546445,6.440418097145266e-05,5.663110637959635e-05,0.0,7.05737191964575e-06 +95228,35.0,Eastern Counties in South Carolina and Georgia,G1300730030506,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,233273.0,,29638.0,,7.614023970037612,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.04887475531065903,0.020514991719269026,0.0,0.06938974702992806,0.05311897008459633,0.009767590025813063,0.0029163415556542195,0.0007892907276283736,0.002797626803258803,0.03260397836532731,0.009767590025813063,0.0029163415556542195,0.0007892907276283736,0.002797626803258803,0.020514991719269026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013706904290804963,0.0,0.0,0.005824310829797368,0.00296004485442533,0.007195001258877865,0.003885353554828761,0.001163984965382667,0.0003475348285228262,9.405826184836185e-05,0.00033338781922040737,0.0013706904290804963,0.0,0.0,0.0,0.0,0.0,0.005507889464766687,0.0010127983677706272,0.00030239454764404686,8.184130973207644e-05,0.000290085051940539 +95229,50.0,the Greater Atlanta and Macon Area,G1302470060404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7185.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0014348023152295053,0.0,0.0,0.0014348023152295053,0.0005683630107365207,0.00048441533089112356,0.00033521176986541304,0.0,4.689491081018731e-05,0.0005683630107365207,0.00048441533089112356,0.00033521176986541304,0.0,4.689491081018731e-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.00017098571474197547,6.043051646374082e-05,0.00017098571474197547,6.773194787334884e-05,5.7727883977619915e-05,3.994726203880716e-05,0.0,5.588477072786494e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.773194787334884e-05,5.7727883977619915e-05,3.994726203880716e-05,0.0,5.588477072786494e-06 +95230,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,465907.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,863994.0691636442,0.0,0.0,0.07140362349685493,0.0,0.0,0.07140362349685492,0.03288998067018113,0.0063822442771274135,0.0318654171107747,0.0,0.0002659814387716824,0.03288998067018113,0.0063822442771274135,0.0318654171107747,0.0,0.0002659814387716824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008509033650615346,0.002751250705465493,0.008509033650615346,0.003919436277669948,0.0007605598800306876,0.0037973409920635027,0.0,3.1696500851207055e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.003919436277669949,0.0007605598800306877,0.0037973409920635036,0.0,3.169650085120706e-05 +95231,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3172.0,,247.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00042436999535638636,0.00019609847183589787,0.0,0.0006205511742660237,0.0003835954080029078,0.00011984254984825645,9.064695281828094e-05,0.0,2.6383556522839068e-05,0.00018749693616700993,0.00011984254984825645,9.064695281828094e-05,0.0,2.6383556522839068e-05,0.00019609847183589787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3104343056214292e-05,0.0,0.0,5.057251092243946e-05,2.7144441441145126e-05,6.367685397865375e-05,2.2344159474014863e-05,1.42817322795975e-05,1.0802469688363602e-05,0.0,3.1441494804634943e-06,1.3104343056214292e-05,0.0,0.0,0.0,0.0,0.0,3.936202169172278e-05,1.2297449208992304e-05,9.301590291963814e-06,0.0,2.707305933518665e-06 +95232,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,8722.0,,3937.0,,8.72605822017302,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.001767780994103957,0.003123184518543727,0.0,0.004890965512647684,0.0040674511794254,0.0003979864388335474,0.0003537381543830179,0.0,7.178974000571884e-05,0.000944266660881673,0.0003979864388335474,0.0003537381543830179,0.0,7.178974000571884e-05,0.003123184518543727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020867062926620912,0.0,0.0,0.00021066267171262627,0.0002628472431416581,0.0004193333009788354,0.00011252623387962265,4.742719080570589e-05,4.215421759684208e-05,0.0,8.555029430455674e-06,0.00020867062926620912,0.0,0.0,0.0,0.0,0.0,0.0003487282266104935,3.4121885895396314e-05,3.0328201574108484e-05,0.0,6.154986898837074e-06 +95233,50.0,the Greater Atlanta and Macon Area,G1300670030410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4131.0,,931.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009409583779321005,0.0007384087543445366,0.0,0.001679367132276637,0.0011456583854368863,0.00026251225204856183,0.00022388804861230518,0.0,4.7308446178883846e-05,0.00040724963109234976,0.00026251225204856183,0.00022388804861230518,0.0,4.7308446178883846e-05,0.0007384087543445366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.933677411874973e-05,0.0,0.0,0.00011213350423054986,7.966658744739744e-05,0.0001614702783492996,4.853171968280105e-05,3.1283444003495244e-05,2.6680618436503338e-05,0.0,5.637722107750243e-06,4.933677411874973e-05,0.0,0.0,0.0,0.0,0.0,0.0001101544592806943,2.5240416817565976e-05,2.1526719699165427e-05,0.0,4.548682551873892e-06 +95234,50.0,the Greater Atlanta and Macon Area,G1300890021417,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,608306.0,,85339.0,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,863994.0691636442,0.0,0.0,0.09680676168574867,0.04468646493649247,0.0,0.14149322662224117,0.11839695331333457,0.007228995532330367,0.015588302991657635,0.0,0.0002790293788099484,0.07398951775565205,0.007228995532330367,0.015588302991657635,0.0,0.0,0.04440743555768251,0.0,0.0002790293788099484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002985689206365729,0.0,0.0,0.011536276109421775,0.006963470600166543,0.014521965315787505,0.008817188914995217,0.0008614655319786054,0.0018576281682972733,0.0,0.0,0.0029670460891320027,0.0,1.864311723372559e-05,0.0,0.0,0.0,0.012151510645110225,0.0007419381471083284,0.001599884325072388,0.0,2.863780166652066e-05 +95235,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960202,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,18313.0,,7571.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004494484905297977,0.005872110066436485,0.0,0.010366514110951394,0.004748872928831565,0.00045799547530014115,0.0042233586996692045,0.00041198568973414883,0.0005242204566332653,0.003052575421619991,0.00045799547530014115,0.0005718474578606282,0.00041198568973414883,0.0,0.0016962975072115746,0.0036515112418085763,0.0005242204566332653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003923378499163037,0.0,0.0,0.0005355970542930803,0.0005521582068643112,0.000927934904209384,0.0003637681376791119,5.457822923404651e-05,6.814569864815977e-05,4.909535274496239e-05,0.0,0.00011333604262660724,0.00024397125621757705,3.5025148457827e-05,0.0,0.0,0.0,0.0004250845461795674,4.099642203274481e-05,0.000378044336647292,3.6877960850429873e-05,4.69244004304881e-05 +95236,81.0,the Columbus-Albany Area,G1302150000200,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,23566.0,,404.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.002076980485409631,0.00011892222440359828,0.0,0.0021959027098132295,0.0004990436880069449,0.0009694846629444309,0.0007274050484681515,0.0,0.0,0.00038012146360334666,0.0009694846629444309,0.0007274050484681515,0.0,0.0,0.00011892222440359828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.946237820581602e-06,0.0,0.0,0.00024751003515191555,9.068515010350656e-05,0.00025545627297249713,4.529839229563406e-05,0.00011553174653795253,8.66835535436072e-05,0.0,0.0,7.946237820581602e-06,0.0,0.0,0.0,0.0,0.0,5.8055322769535104e-05,0.0001127832019119128,8.462131850953332e-05,0.0,0.0 +95237,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,61840.0,,874.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0031832381679106005,0.00014858042870004247,0.0,0.0033318185966106422,0.0012302565878532037,0.0010137866052757792,0.0006512184445971194,0.0,0.0004365569588845402,0.0010816761591531613,0.0010137866052757792,0.0006512184445971194,0.0,0.0004365569588845402,0.00014858042870004247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.927602983304758e-06,0.0,0.0,0.00037933946439011184,9.047883352418351e-05,0.0003892670673734166,0.00012890095971865,0.00012081071147233876,7.760426425666393e-05,0.0,5.202352894245908e-05,9.927602983304758e-06,0.0,0.0,0.0,0.0,0.0,0.00014373482834798132,0.00011844394505139112,7.608394238680165e-05,0.0,5.100435158724252e-05 +95238,85.0,Rural Climate Zone 3A,G1300690010801,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,80988.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.005860707505911966,0.0,0.0,0.005860707505911966,0.003282140781644024,0.0021255444886538726,0.0004530526092135062,0.0,0.0,0.003282140781644024,0.0021255444886538726,0.0004530526092135062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006984103681369744,0.00019554252462064482,0.0006984103681369744,0.0003911270353064114,0.00025329745722931613,5.398949517051271e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003911270353064114,0.00025329745722931613,5.398949517051271e-05,0.0,0.0 +95239,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,42849.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,32736.412774265485,0.0,0.0,0.0020392397883659532,0.0,0.0,0.0020392397883659532,0.001195664652722681,0.0006291086839063136,0.00017285329348409477,0.0,4.161315825286393e-05,0.001195664652722681,0.0006291086839063136,0.00017285329348409477,0.0,4.161315825286393e-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.0002430118840908073,5.938497731276973e-05,0.0002430118840908073,0.0001424848228524152,7.496954867503107e-05,2.059856067958057e-05,0.0,4.9589518837804506e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001424848228524152,7.496954867503107e-05,2.059856067958057e-05,0.0,4.9589518837804506e-06 +95240,50.0,the Greater Atlanta and Macon Area,G1301510070311,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,50005.0,,7383.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004455424973481597,0.002173192401152929,0.0,0.0066286480642408245,0.0028543482129304424,0.001571768186536848,0.0022025009751672356,0.0,0.0,0.0006811558117775133,0.001571768186536848,0.0022025009751672356,0.0,0.0,0.002173192401152929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014520037970355655,0.0,0.0,0.0005309456509410648,0.000294008286515853,0.0006761460306446214,8.117221545173778e-05,0.00018730502430100245,0.0002624684111883246,0.0,0.0,0.00014520037970355655,0.0,0.0,0.0,0.0,0.0,0.00029115382134434133,0.0001603260287951492,0.00022466305005450503,0.0,0.0 +95241,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,32463.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003359502339411978,0.0,0.0,0.0033595023394119776,0.0024167969336624747,0.000694674592740822,0.00024806118660811914,0.0,0.0,0.0024167969336624747,0.000694674592740822,0.00024806118660811914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040034624419520187,9.284036789620523e-05,0.00040034624419520187,0.00028800562631654716,8.278320299973295e-05,2.9561034449688206e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002880056263165472,8.278320299973296e-05,2.956103444968821e-05,0.0,0.0 +95243,50.0,the Greater Atlanta and Macon Area,G1302550160400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5382.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012923807342504177,0.0,0.0,0.0012923807342504177,0.0006346940838754452,0.00022653467497196306,0.000388475125353527,0.0,4.267685004948262e-05,0.0006346940838754452,0.00022653467497196306,0.000388475125353527,0.0,4.267685004948262e-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.00015400824624832595,4.9430524378974846e-05,0.00015400824624832595,7.563415344359743e-05,2.6995301835029106e-05,4.629314812673666e-05,0.0,5.085642842962766e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.563415344359743e-05,2.6995301835029106e-05,4.629314812673666e-05,0.0,5.085642842962766e-06 +95244,50.0,the Greater Atlanta and Macon Area,G1301210011900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,400344.0,,48695.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,280597.8237794184,0.0,0.0,0.020607821774913174,0.008281107144127022,0.0,0.028888928919040196,0.012950202790122307,0.005782367309198981,0.006699523444735472,0.0,0.0034567999142605943,0.010078292038386415,0.005782367309198981,0.004100607067784132,0.0,0.0006465376291822255,0.002871910751735892,0.0025989163769513397,0.0028102622850783693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005532950189838932,0.0,0.0,0.002455793730176086,0.0011693582980697452,0.0030090887491599793,0.0012010103090508316,0.0006890733789629667,0.0004886613071954541,0.0,7.704662207441429e-05,0.00019188423555522877,0.00017364435227029419,0.00018776524651959088,0.0,0.0,0.0,0.0013489011525593066,0.0006022949643575502,0.0006978265161295151,0.0,0.00036006242250272825 +95245,85.0,Rural Climate Zone 3A,G1301750950800,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,49556.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.00519540418382745,0.0,0.0,0.005195404183827449,0.0032276201706532594,0.00148599797889257,0.0004817556606821817,0.0,0.0,0.0032276201706532594,0.00148599797889257,0.0004817556606821817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006191245525596679,0.00017685571243121435,0.0006191245525596679,0.0003846281873908246,0.00017708301437842263,5.7409731237351024e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003846281873908247,0.00017708301437842266,5.740973123735104e-05,0.0,0.0 +95246,50.0,the Greater Atlanta and Macon Area,G1301350050605,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,36890.0,,3427.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003286856834483968,0.001008798048611788,0.0,0.004295685572702053,0.002080847375803142,0.0009251995610568457,0.0012896079462357687,0.0,0.0,0.001072049327191354,0.0009251995610568457,0.0012896079462357687,0.0,0.0,0.001008798048611788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.740254132899362e-05,0.0,0.0,0.0003916893799331206,0.00019391152845420998,0.0004590919212621142,0.00012775437366782232,0.00011025452602095037,0.0001536804802443479,0.0,0.0,6.740254132899362e-05,0.0,0.0,0.0,0.0,0.0,0.000222385973890029,9.887866252028233e-05,0.00013782400496781716,0.0,0.0 +95247,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,14084.0,,487.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011809360503356031,0.0001434739094417605,0.0,0.0013244099597773636,0.0003877324859651769,0.0004541754835997034,0.00048253267981878084,0.0,0.0,0.00024425857652341643,0.0004541754835997034,0.00048253267981878084,0.0,0.0,0.0001434739094417605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.586257489030324e-06,0.0,0.0,0.00014073072940261816,5.360333358265952e-05,0.00015031698689164848,2.9108000917760855e-05,5.4123546372903995e-05,5.7502839355440884e-05,0.0,0.0,9.586257489030324e-06,0.0,0.0,0.0,0.0,0.0,4.4006599754120884e-05,5.154770221317357e-05,5.476616811255681e-05,0.0,0.0 +95248,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,252629.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,431997.0345818221,0.0,0.0,0.04204608597410461,0.0,0.0,0.04204608597410461,0.01568023910473061,0.004726575333443338,0.02147063100547793,0.0,0.00016864053045273543,0.01568023910473061,0.004726575333443338,0.02147063100547793,0.0,0.00016864053045273543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005010553659346076,0.0017515925846427985,0.005010553659346076,0.001868584854105496,0.0005632571685208744,0.0025586150591810873,0.0,2.009657753861859e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.001868584854105496,0.0005632571685208744,0.0025586150591810873,0.0,2.009657753861859e-05 +95249,50.0,the Greater Atlanta and Macon Area,G1300630040512,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,246355.0,,6136.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.020549957292398065,0.0017876078213094455,0.0,0.022337565113707512,0.01533815136487423,0.005347879653004963,0.0016515644694277552,0.0,0.0,0.013550543543564783,0.005347879653004963,0.0016515644694277552,0.0,0.0,0.0017876078213094455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011943659874079849,0.0,0.0,0.002448899856549369,0.0008161928564648731,0.002568336455290167,0.0016147928517728511,0.0006372967850367179,0.00019681383930466025,0.0,0.0,0.00011943659874079849,0.0,0.0,0.0,0.0,0.0,0.0017635553878247528,0.0006148903965763286,0.00018989416319553512,0.0,0.0 +95250,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6035.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001150124567418809,0.0,0.0,0.001150124567418809,0.0007074763087660357,0.0001715344709353236,0.00023224146305997527,0.0,3.8872324657474485e-05,0.0007074763087660357,0.0001715344709353236,0.00023224146305997527,0.0,3.8872324657474485e-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.00013705371297782336,4.2878904894277136e-05,0.00013705371297782336,8.430587234375817e-05,2.0440773818208374e-05,2.7674876027738248e-05,0.0,4.632190788118581e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.430587234375817e-05,2.0440773818208374e-05,2.7674876027738248e-05,0.0,4.632190788118581e-06 +95251,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,75264.0,,4096.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.008466801833166495,0.0015224255700051327,0.0,0.0099892661515954,0.004596066788878056,0.0010756562439130182,0.004076799161908374,0.0,0.00024078270531972243,0.0039004550853216254,0.0010756562439130182,0.0034907292523556222,0.0,0.0,0.0006956117035564302,0.0005860699095527521,0.00024078270531972243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010172065524827973,0.0,0.0,0.0010089735480060202,0.0003369368780630152,0.0011106942032542999,0.0004648102180517511,0.00012818402015792225,0.0004159839273763235,0.0,0.0,4.647720038221221e-05,3.915818046908197e-05,1.6087863367595068e-05,0.0,0.0,0.0,0.000511031006953515,0.00011960089326658609,0.00045329427890360423,0.0,2.677233252012125e-05 +95252,50.0,the Greater Atlanta and Macon Area,G1301210001900,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,169692.0,,18344.0,,9.525004485617233,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.04452491709885832,0.01588442886762037,0.0,0.06040925568685546,0.020365006568291592,0.008483305355610973,0.021581885609745298,0.0006647288658078218,0.009314239007776556,0.020365006568291592,0.008483305355610973,0.01018462485529159,0.0006647288658078218,0.004827070894609889,0.0,0.011397260754453705,0.004487168113166666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010613025936250019,0.0,0.0,0.005305945407307967,0.002637317729987015,0.006367248000932969,0.002426857142280767,0.0010109385490927572,0.0012136813945348057,7.921441077154714e-05,0.0005752323937434582,0.0,0.0007614968406940428,0.00029980575293095916,0.0,0.0,0.0,0.0021465096016595403,0.0008941561761134426,0.002274770917843233,7.006365984572538e-05,0.000981738129830685 +95253,81.0,the Columbus-Albany Area,G1302150000400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,36598.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0030925609370132117,0.0,0.0,0.0030925609370132117,0.0009091182073568496,0.0010014632327066371,0.001181979496949725,0.0,0.0,0.0009091182073568496,0.0010014632327066371,0.001181979496949725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036853381214817216,0.0001299043059268437,0.00036853381214817216,0.00010833765460871205,0.00011934221197014114,0.00014085394556931897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010833765460871205,0.00011934221197014114,0.00014085394556931897,0.0,0.0 +95254,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,64937.0,,6024.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005785758027274418,0.0017732761414875646,0.0,0.007559034168761981,0.0036046477076966802,0.0016711411317288098,0.002283214639730194,0.0,0.0,0.0018313715662091163,0.0016711411317288098,0.002283214639730194,0.0,0.0,0.0017732761414875646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011847903723999967,0.0,0.0,0.0006894790560294314,0.0003340291624075276,0.000807958093269431,0.000218241470306327,0.00019914707883819454,0.0002720868496561284,0.0,0.0,0.00011847903723999967,0.0,0.0,0.0,0.0,0.0,0.00038528788517113273,0.00017862229118576216,0.00024404463661041904,0.0,0.0 +95255,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,192098.0,,6961.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,306613.1346040191,0.0,0.0,0.018485129302590955,0.0025871160099906515,0.0,0.021072245312581603,0.009468836071912555,0.003152223022282707,0.008113609950483961,0.0,0.0003375375194786132,0.008042080360200696,0.003152223022282707,0.006953288400628941,0.0,0.0003375375194786132,0.00142675571171186,0.001160321549855019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001728553843329326,0.0,0.0,0.002202837480580652,0.0007514549233014824,0.0023756928649135843,0.0009583593249092707,0.0003756443845735117,0.0008286100709095519,0.0,4.0223700188318036e-05,9.53271542307264e-05,7.752564116778747e-05,0.0,0.0,0.0,0.0,0.001067520141370408,0.00035538280954721405,0.0009147314385405252,0.0,3.805410694356285e-05 +95256,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,2429.0,,71.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00047184385568274883,5.6075395995250426e-05,0.0,0.0005279192516779993,0.00023455726112467585,0.00010917333733588581,0.0001281959642959265,0.0,5.6075395995250426e-05,0.00023455726112467585,0.00010917333733588581,0.0001281959642959265,0.0,0.0,0.0,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.748094266154694e-06,0.0,0.0,5.6227665357076396e-05,2.357459064792833e-05,5.997575962323109e-05,2.7951211034648317e-05,1.3009731511190333e-05,1.527657866844319e-05,0.0,0.0,0.0,0.0,3.748094266154694e-06,0.0,0.0,0.0,2.664754101386235e-05,1.2402945746931702e-05,1.4564065081624344e-05,0.0,6.3706039518331e-06 +95257,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970200,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,76095.0,,8478.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006779978512894796,0.0024956480945228926,0.0,0.00927562660741769,0.005337567016902765,0.001493386932052515,0.0024446726584624085,0.0,0.0,0.002841918922379873,0.001493386932052515,0.0024446726584624085,0.0,0.0,0.0024956480945228926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001667437448035865,0.0,0.0,0.0008079587441938628,0.0003961058112159277,0.0009747024889974492,0.0003386667434505551,0.00017796443276654349,0.0002913275679767642,0.0,0.0,0.0001667437448035865,0.0,0.0,0.0,0.0,0.0,0.0005608828467076673,0.0001569282617029674,0.0002568913805868145,0.0,0.0 +95258,46.0,the Tallahassee-Valdosta Area,G1301850010800,ComStock 90.1-2004,gen3_t5_cfl,1001_5000,Electricity,5158.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,9713.774621698478,0.0,0.0,0.00034556496691213334,0.0,0.0,0.00034556496691213334,0.0001333770289698163,0.00013159703180454953,8.056021653146981e-05,0.0,0.0,0.0001333770289698163,0.00013159703180454953,8.056021653146981e-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,4.118092508861391e-05,1.540165177375389e-05,4.118092508861391e-05,1.5894520464930377e-05,1.5682398470690624e-05,9.600348877230153e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5894520464930377e-05,1.5682398470690624e-05,9.600348877230153e-06,0.0,0.0 +95259,50.0,the Greater Atlanta and Macon Area,G1300570090702,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,24495.0,,5000.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002393267567913756,0.001471720070006337,0.0,0.003864987637920093,0.002037482962104488,0.0007800377232687117,0.001047436262940596,0.0,0.0,0.0005657628920981509,0.0007800377232687117,0.001047436262940596,0.0,0.0,0.001471720070006337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.833188990804152e-05,0.0,0.0,0.0002851998050387436,0.00017533528007814434,0.0003835316949467851,6.742057122564198e-05,9.295517541861362e-05,0.000124820401189648,0.0,0.0,9.833188990804152e-05,0.0,0.0,0.0,0.0,0.0,0.0002021841638545718,7.740495394926422e-05,0.00010393953174207767,0.0,0.0 +95260,50.0,the Greater Atlanta and Macon Area,G1301210011416,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,5537.0,,434.0,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0009542742168041291,0.0003441441338292581,0.0,0.0012985010577071263,0.0007657847957522473,0.00032454255735304234,0.00017327131948384906,0.0,3.4736970970509115e-05,0.0004563776328934983,0.00032454255735304234,0.00017327131948384906,0.0,0.0,0.000309407162858749,0.0,3.4736970970509115e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.299627909820194e-05,0.0,0.0,0.00011372304270181273,5.081282847585206e-05,0.00013671932180001469,5.438756713716437e-05,3.867647942120932e-05,2.0649139752149216e-05,0.0,0.0,2.067509735793642e-05,0.0,2.3211817402655166e-06,0.0,0.0,0.0,8.062956691377937e-05,3.417112221294635e-05,1.8243756635097507e-05,0.0,3.6574595640768267e-06 +95261,85.0,Rural Climate Zone 3A,G1302930010400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,48112.0,,712.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005412341084060752,0.00026445799224446504,0.0,0.005676799076305217,0.002891058646058869,0.0008283638033995858,0.0018321417212153904,0.0,0.00012527365405514367,0.002891058646058869,0.0008283638033995858,0.0015676837289709256,0.0,0.00012527365405514367,0.0,0.00026445799224446504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.766964126197019e-05,0.0,0.0,0.0006449786265903161,0.00021530599236944871,0.0006626482678522863,0.00034452208498435754,9.871457469804179e-05,0.0001868179559890249,0.0,1.4928628496527698e-05,0.0,1.766964126197019e-05,0.0,0.0,0.0,0.0,0.00033747098995745464,9.669425183029935e-05,0.00021386445454635812,0.0,1.4623094591044899e-05 +95262,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,56407.0,,4712.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0048543591657454355,0.0013868939981994863,0.0,0.0062412531639449206,0.0025787248587707742,0.0014061977605607416,0.0022563305446134064,0.0,0.0,0.0011918308605712875,0.0014061977605607416,0.0022563305446134064,0.0,0.0,0.0013868939981994863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.266341892108882e-05,0.0,0.0,0.0005784846968206862,0.000256635333606458,0.0006711481157417751,0.00014202820403241544,0.00016757389748333403,0.0002688825953049367,0.0,0.0,9.266341892108882e-05,0.0,0.0,0.0,0.0,0.0,0.00027730109394994475,0.0001512143399041543,0.0002426326818876763,0.0,0.0 +95263,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,31280.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.002931690191331243,0.0,0.0,0.002931690191331243,0.0018789108612193273,0.0007134454771933526,0.0003393642265180012,0.0,0.0,0.0018789108612193273,0.0007134454771933526,0.0003393642265180012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003493649637198053,9.88302461687481e-05,0.0003493649637198053,0.00022390688716141725,8.502018869276643e-05,4.044150744026052e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022390688716141725,8.502018869276643e-05,4.044150744026052e-05,0.0,0.0 +95264,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,96787.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009408389844261553,0.0,0.0,0.009408389844261553,0.003452703466916754,0.002196485812332886,0.003759200565011912,0.0,0.0,0.003452703466916754,0.002196485812332886,0.003759200565011912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011211803004883916,0.0003480641398287694,0.0011211803004883916,0.00041145224364784737,0.0002617511246721902,0.0004479769321683539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041145224364784737,0.0002617511246721902,0.0004479769321683539,0.0,0.0 +95265,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,51586.0,,12442.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.00994304162169127,0.008558774461118959,0.0,0.01850181608281023,0.0060230431658910176,0.0016527867320547567,0.0060545999531378845,0.00037832284710734835,0.004392919944677193,0.0060230431658910176,0.0016527867320547567,0.0013495546946007532,0.00037832284710734835,0.0005391907420953638,0.0,0.004705045258537131,0.0038537292025818287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005718486488675662,0.0,0.0,0.0011848928305307931,0.000843120662622352,0.0017567414793983594,0.0007177542784969095,0.00019695936351466148,0.00016082379445673186,4.508399403514166e-05,6.425430656989477e-05,0.0,0.0003143643737988448,0.0002574842750687215,0.0,0.0,0.0,0.0005718860091555094,0.00015693156800415233,0.0005748823159431781,3.5921632511256394e-05,0.00041710633420795546 +95266,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,40714.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033676424640612956,0.0,0.0,0.003367642464061296,0.0021475349746468047,0.0008979954673771326,0.0003221120220373581,0.0,0.0,0.0021475349746468047,0.0008979954673771326,0.0003221120220373581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040131397076854865,0.00010250894541422835,0.00040131397076854865,0.0002559166530405637,0.00010701199150181413,3.838532622617078e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002559166530405637,0.00010701199150181412,3.838532622617077e-05,0.0,0.0 +95267,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,192970.0,,57019.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01012364630289891,0.009696539626651257,0.0,0.019820203659911592,0.007199643749310902,0.0019473610554872397,0.007400245058417378,0.0,0.003272953796696067,0.005414480040094305,0.0019473610554872397,0.0023130852204986687,0.0,0.0004487377171801164,0.001785163709216596,0.005087159837918709,0.002824216079515951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00064786661384,0.0,0.0,0.001206415834783294,0.0009283058834770149,0.0018542824486232942,0.0006452333736331129,0.00023206334388701271,0.00027564600280570136,0.0,5.347522735119459e-05,0.00011927429907689958,0.0003398945546715057,0.0001886977600915946,0.0,0.0,0.0,0.000673563867948023,0.00018218568730583005,0.0006923311567725745,0.0,0.0003062017365968661 +95268,50.0,the Greater Atlanta and Macon Area,G1300210011800,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,10659.0,,806.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00230364012486093,0.0006390775587836284,0.0,0.002942717683644558,0.001648351979624397,0.0004095654291570504,0.0008143338480372209,0.0,7.046642682588993e-05,0.0010092744208407684,0.0004095654291570504,0.0008143338480372209,0.0,7.046642682588993e-05,0.0006390775587836284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.270045403913568e-05,0.0,0.0,0.00027452121709855545,0.00011511385281016327,0.00031722167113769107,0.00012027366575426959,4.880727631034526e-05,9.704290035372766e-05,0.0,8.397374680212874e-06,4.270045403913568e-05,0.0,0.0,0.0,0.0,0.0,0.00017769049763277636,4.41506946451334e-05,8.778427695395465e-05,0.0,7.596201905826667e-06 +95269,50.0,the Greater Atlanta and Macon Area,G1302970110800,ComStock 90.1-2007,gen4_led,5001_10000,DistrictHeating,8971.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,43199.70345818221,0.003841826729844429,0.0016671336608725092,0.0013037567198905062,0.0,0.0,0.006812717110607445,0.005653797984530828,0.00048255540585034906,0.0006474289577983131,0.0,2.9043950210700948e-05,0.0001738269501332177,0.00048255540585034906,0.0006474289577983131,0.0,0.0,0.0,0.0,0.0,0.0016381443045531815,0.0,2.9043950210700948e-05,0.003841826729844429,0.0,0.0,0.0,0.0,0.0,0.0,0.0001553651903489998,5.7266224392427135e-05,0.0001553651903489998,2.0714491272191925e-05,5.750483302603782e-05,7.715237185833042e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012893583951897015,1.1004759373781416e-05,1.476472920168275e-05,0.0,6.623523008091089e-07 +95270,85.0,Rural Climate Zone 3A,G1300990090300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,167330.0,,1093.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007782653493525078,0.00018584964840499344,0.0,0.00796850314193007,0.003977842045311686,0.0015305379888632183,0.0010652223837553521,0.0,0.0013949184543612342,0.003977842045311686,0.0015305379888632183,0.0008793727353503588,0.0,0.0013949184543612342,0.0,0.00018584964840499344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2417028539492331e-05,0.0,0.0,0.0009274448236445314,0.00022658179472159916,0.0009398618521840236,0.000474032284396218,0.0001823914602318443,0.00010479326776315442,0.0,0.000166229924148606,0.0,1.2417028539492331e-05,0.0,0.0,0.0,0.0,0.00046917494111655523,0.0001805225201558462,0.00012563989305796924,0.0,0.00016452658909839836 +95272,50.0,the Greater Atlanta and Macon Area,G1301170130403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,1625.0,,168.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0003900465597545738,0.00013307568164654563,0.0,0.0005231222414011195,0.00028012885875503424,0.0001514366520166719,7.68348715038166e-05,0.0,1.4721859125596722e-05,0.00016177503623408535,0.0001514366520166719,7.68348715038166e-05,0.0,0.0,0.0001183538225209489,0.0,1.4721859125596722e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.890807758488413e-06,0.0,0.0,4.648587803746311e-05,2.2767919216759056e-05,5.537668579595153e-05,1.9280402341237883e-05,1.8048270289778404e-05,9.157205406446825e-06,0.0,0.0,7.907237975386525e-06,0.0,9.835697831018879e-07,0.0,0.0,0.0,2.9653886923460526e-05,1.6030784457294425e-05,8.133587526393513e-06,0.0,1.558426888803063e-06 +95273,50.0,the Greater Atlanta and Macon Area,G1301210011622,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,70978.0,,5531.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00625890539454089,0.0016114409445704848,0.0,0.007870376712710814,0.0053022888802488986,0.0020648884105766824,0.0005031994218852345,0.0,0.0,0.0036908479356784134,0.0020648884105766824,0.0005031994218852345,0.0,0.0,0.0016114409445704848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010766734488336244,0.0,0.0,0.0007458633927749367,0.0002705339839107582,0.0008535307376582992,0.0004398322374264621,0.00024606933297916444,5.9965441940864884e-05,0.0,0.0,0.00010766734488336244,0.0,0.0,0.0,0.0,0.0,0.000575025402777379,0.00022393410030998947,5.4571234570930906e-05,0.0,0.0 +95274,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12559.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032612226246146307,0.0,0.0,0.0032612226246146315,0.0011081093739592407,0.0011120793134987276,0.0009578306209749194,0.0,8.320331618174326e-05,0.0011081093739592407,0.0011120793134987276,0.0009578306209749194,0.0,8.320331618174326e-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.0003886349920435714,0.0001288067463710893,0.0003886349920435714,0.0001320517263929337,0.00013252481811310547,0.0001141432335689331,0.0,9.915213968599143e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013205172639293368,0.0001325248181131054,0.00011414323356893307,0.0,9.91521396859914e-06 +95275,85.0,Rural Climate Zone 3A,G1302690950300,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,15789.0,,2503.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0008127597674952204,0.00042565278661120754,0.0,0.001238412554106428,0.0004216457249302757,0.00010636443815889677,0.000576910499885678,0.0,0.0001334741607701575,0.0003064515667841926,0.00010636443815889677,0.0002664518714205535,0.0,0.0001334741607701575,0.00011519415814608304,0.00031045862846512456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8439843188862387e-05,0.0,0.0,9.685442361539953e-05,5.0265803767046546e-05,0.00012529426680426192,3.6519019584829086e-05,1.2675167697835554e-05,3.175236208752671e-05,0.0,1.590576136511186e-05,7.696657691424958e-06,2.0743185497437432e-05,0.0,0.0,0.0,0.0,4.265928327447354e-05,1.0761239660382942e-05,5.836793066670114e-05,0.0,1.3504019363787764e-05 +95276,85.0,Rural Climate Zone 3A,G1302850960501,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,28305.0,,2756.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006524009699534955,0.002137473939633462,0.0,0.008661483639168417,0.003557631872666015,0.0005686130265378872,0.0035190612791423273,0.0004156244249722326,0.0006005530358499556,0.003557631872666015,0.0005686130265378872,0.0013815873395088651,0.0004156244249722326,0.0006005530358499556,0.0,0.002137473939633462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014281583608522085,0.0,0.0,0.0007774525815577669,0.00035864851239308053,0.0009202684176429877,0.0004239555443692158,6.776042430175526e-05,0.00016464087167516927,4.952909284855262e-05,7.156664836307399e-05,0.0,0.00014281583608522085,0.0,0.0,0.0,0.0,0.00037799254612792235,6.0414200613031586e-05,0.00037389448388497353,4.415941284854697e-05,6.38077741685133e-05 +95277,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,16889.0,,956.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00379162308850481,0.0007587546944844061,0.0,0.004550460490062956,0.002518099567066954,0.0008582513041927931,0.001030116603423074,0.0,0.00014399301538013423,0.0017593448725825476,0.0008582513041927931,0.001030116603423074,0.0,0.00014399301538013423,0.0007587546944844061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0697396180407856e-05,0.0,0.0,0.0004518436731833732,0.0001545865116792665,0.000502541069363781,0.0002096592491047185,0.00010227689112258667,0.00012275789524253804,0.0,1.7159493827158466e-05,5.0697396180407856e-05,0.0,0.0,0.0,0.0,0.0,0.0002780923934976949,9.478305088765618e-05,0.0001137634093481505,0.0,1.5902215630279408e-05 +95278,50.0,the Greater Atlanta and Macon Area,G1300630040417,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,20032.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.004499595639713281,0.0,0.0,0.00449959563971328,0.0021965344643685263,0.0007023484701941987,0.0015022085803270406,0.0,9.842141774977584e-05,0.0021965344643685263,0.0007023484701941987,0.0015022085803270406,0.0,9.842141774977584e-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.0005362066703396216,0.00017381317391298396,0.0005362066703396216,0.00026175606115137984,8.369728410639047e-05,0.00017901481055397668,0.0,1.1728658512318024e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002617560611513799,8.369728410639048e-05,0.0001790148105539767,0.0,1.1728658512318026e-05 +95279,50.0,the Greater Atlanta and Macon Area,G1300890023310,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5362.0,,973.0,,8.72605822017302,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.000984958541161412,0.0007717397050614774,0.0,0.0017567809532966288,0.0011483050117965443,0.00018336158248004458,0.0003866555697312622,0.0,3.8376082215038644e-05,0.00037656530673506675,0.00018336158248004458,0.0003866555697312622,0.0,3.8376082215038644e-05,0.0007717397050614774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.156544666053613e-05,0.0,0.0,0.00011737675623614975,8.78562327119657e-05,0.00016894220289668589,4.487499967614324e-05,2.18510595831341e-05,4.6077448602233614e-05,0.0,4.573248374638801e-06,5.156544666053613e-05,0.0,0.0,0.0,0.0,0.0,0.00011042764206099464,1.7633108790638514e-05,3.718303274525712e-05,0.0,3.690465709903595e-06 +95280,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Propane,3897.0,,,694.0,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009358305393602636,0.0,0.00017806832976072887,0.0011138988691209923,0.0005524005455048343,0.00020536166409470033,0.00032396360783686724,0.0,3.217305168459058e-05,0.000406505267428696,0.00020536166409470033,0.00032396360783686724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014589527807613829,3.217305168459058e-05,0.0,0.0,0.0,1.435920070574741e-05,0.00011152283150911642,4.382191812137217e-05,0.00012588203221486382,4.844319194585127e-05,2.447292891181052e-05,3.8606710651454624e-05,0.0,0.0,0.0,0.0,0.0,1.1764807266576141e-05,2.5943934391712685e-06,0.0,6.242694484430321e-05,2.320798084270173e-05,3.6611220685003094e-05,0.0,3.6358858428558072e-06 +95281,50.0,the Greater Atlanta and Macon Area,G1302190030200,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,58327.0,,,,9.325022323477118,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.013769456367539467,0.0,0.0,0.013769456367539464,0.006184946612369629,0.002749984693721864,0.004567870056596175,0.0,0.0002666550048517987,0.006184946612369629,0.002749984693721864,0.004567870056596175,0.0,0.0002666550048517987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001640880477150848,0.0004361954906387555,0.001640880477150848,0.0007370485716765542,0.00032771055559096147,0.0005443445694559386,0.0,3.17767804273938e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0007370485716765543,0.0003277105555909615,0.0005443445694559387,0.0,3.1776780427393813e-05 +95282,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,109951.0,,7861.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009695587050124197,0.0022900479032087365,0.0,0.011985634953332934,0.007767683573011774,0.0028671462925260213,0.0013508354613945748,0.0,0.0,0.005477635669803039,0.0028671462925260213,0.0013508354613945748,0.0,0.0,0.0022900479032087365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001530068753827075,0.0,0.0,0.0011554059054405868,0.00043575858616347004,0.0013084127808232944,0.0006527601235514012,0.0003416727363717718,0.0001609766650853657,0.0,0.0,0.0001530068753827075,0.0,0.0,0.0,0.0,0.0,0.000847959787186207,0.00031299225015926147,0.00014746405921419337,0.0,0.0 +95283,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,9991.0,,777.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.002144925250355198,0.0006167466488740154,0.0,0.002761671899229214,0.0014494414672813624,0.00044066328888302996,0.0007915894027589114,0.0,7.989503323217097e-05,0.0008326948184073471,0.00044066328888302996,0.0007915894027589114,0.0,7.989503323217097e-05,0.0006167466488740154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1205991693584845e-05,0.0,0.0,0.00025561007309817966,0.00011016110946215206,0.0002968160647917645,9.923198179812114e-05,5.2513706696502726e-05,9.433346223577845e-05,0.0,9.52106619159565e-06,4.1205991693584845e-05,0.0,0.0,0.0,0.0,0.0,0.000155781543993162,4.736114501543893e-05,8.507761241418281e-05,0.0,8.586874265186564e-06 +95284,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,30996.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007442644151652795,0.0,0.0,0.007442644151652795,0.003422005175963845,0.002556144820987035,0.0013385312813969513,0.0,0.0001260455803787045,0.003422005175963845,0.002556144820987035,0.0013385312813969513,0.0,0.0001260455803787045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008869222719303266,0.0002415649662355664,0.0008869222719303266,0.00040779225009020395,0.0003046097228105823,0.00015950960182380326,0.0,1.5020553211781769e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00040779225009020395,0.0003046097228105823,0.00015950960182380326,0.0,1.5020553211781769e-05 +95285,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,48107.0,,3631.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.005411798606127943,0.001349568851557871,0.0,0.006761367457685814,0.0037408503278044173,0.0006396589796295426,0.002253918313974511,0.0,0.00012690108785357114,0.0027223867573789927,0.0006396589796295426,0.001922851781265836,0.0,0.00012690108785357114,0.001018463570425424,0.00033106653270867527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.016929396678055e-05,0.0,0.0,0.0006449152564685447,0.00025893445136841617,0.0007350845504353252,0.0003244224114056278,7.622712242711299e-05,0.00022914312595850826,0.0,1.5122596677295556e-05,6.804702181006807e-05,2.2119683242475322e-05,0.0,0.0,0.0,0.0,0.0004066989848827306,6.954265337826143e-05,0.0002450422256909807,0.0,1.3796473819590877e-05 +95286,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,18075.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005130154369901761,0.0,0.0,0.005130154369901761,0.0023888284108124166,0.0012740197638802916,0.001317440977593428,0.0,0.00014994792468936435,0.0023888284108124166,0.0012740197638802916,0.001317440977593428,0.0,0.00014994792468936435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000611349801439163,0.00017807303803890395,0.000611349801439163,0.00028467170173094973,0.00015182227931529097,0.0001569966948333725,0.0,1.786898158910819e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00028467170173094973,0.00015182227931529097,0.0001569966948333725,0.0,1.786898158910819e-05 +95287,50.0,the Greater Atlanta and Macon Area,G1302190030100,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,8925.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0018407286331420262,0.0,0.0,0.0018407286331420262,0.0008521309807360845,0.0004396708039981582,0.0004768062801071073,0.0,7.212056830067607e-05,0.0008521309807360845,0.0004396708039981582,0.0004768062801071073,0.0,7.212056830067607e-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.0002193526267612503,5.5110941677646036e-05,0.0002193526267612503,0.00010154520639473228,5.239389665091689e-05,5.6819190028693735e-05,0.0,8.59433368690736e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010154520639473228,5.239389665091689e-05,5.6819190028693735e-05,0.0,8.59433368690736e-06 +95288,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,142051.0,,9730.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.00896198848337989,0.0016545973277193274,0.0,0.010616568080737796,0.00460347557837967,0.0023583685635654834,0.0025192006720067823,0.0,0.0011355232667858617,0.003757081315270609,0.0023583685635654834,0.0017110153377579357,0.0,0.0011355232667858617,0.0008463942631090605,0.0008081853342488468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011054997673935379,0.0,0.0,0.0010679825867708603,0.0004045663800742184,0.0011785325635102141,0.00044772401004892977,0.00028104215529251063,0.00020389834129023378,0.0,0.00013531808013918603,5.6550838401270154e-05,5.399795370481381e-05,0.0,0.0,0.0,0.0,0.0005110263347990912,0.0002617996821367886,0.00027965346271960985,0.0,0.00012605308385472462 +95289,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,64152.0,,1500.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005463455781935943,0.00044143929698615676,0.0,0.005904895078922099,0.0019898833827367503,0.0016048515821257719,0.002310129424453279,0.0,0.0,0.001548444085750594,0.0016048515821257719,0.002310129424453279,0.0,0.0,0.00044143929698615676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9494201031993968e-05,0.0,0.0,0.0006510684807846203,0.00021196090815904034,0.0006805626818166142,0.00018452480970429676,0.00019124677185346925,0.0002752932420113216,0.0,0.0,2.9494201031993968e-05,0.0,0.0,0.0,0.0,0.0,0.00022934198717462174,0.0001849655382612702,0.000266251619281335,0.0,0.0 +95290,50.0,the Greater Atlanta and Macon Area,G1300890023112,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,7177.0,,311.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014711934276748005,0.00024704602925931123,0.0,0.0017181567498603723,0.0010435151493688416,0.0002447302311946107,0.00038483601410899744,0.0,4.5158062261661854e-05,0.0007964691201095305,0.0002447302311946107,0.00038483601410899744,0.0,4.5158062261661854e-05,0.00024704602925931123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.65043651102697e-05,0.0,0.0,0.00017531452585082895,7.228082271450406e-05,0.00019181889096109867,9.491111333165519e-05,2.916323825009011e-05,4.5858921114453965e-05,0.0,5.381253154629671e-06,1.65043651102697e-05,0.0,0.0,0.0,0.0,0.0,0.0001165003825578214,2.732223444468523e-05,4.296395974015559e-05,0.0,5.041547822506974e-06 +95291,50.0,the Greater Atlanta and Macon Area,G1301210000400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,6279.0,,35.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011593050526038722,2.7541455555189372e-05,0.0,0.0011868465081590618,0.0005874683447703006,0.00019800073453190195,0.0003738359733016696,0.0,2.7541455555189372e-05,0.0005874683447703006,0.00019800073453190195,0.0003738359733016696,0.0,0.0,0.0,0.0,2.7541455555189372e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.839999602177444e-06,0.0,0.0,0.00013815094017977618,4.7920137748671304e-05,0.0001399909397819536,7.000685796511023e-05,2.3595159505627748e-05,4.454892270903819e-05,0.0,0.0,0.0,0.0,1.839999602177444e-06,0.0,0.0,0.0,6.929307632552029e-05,2.335458605142835e-05,4.409470716476866e-05,0.0,3.2485702402362745e-06 +95292,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,14538.0,,3129.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005116546909444161,0.0024263895175373118,0.0,0.007542855566198405,0.0027847645080970275,0.0005253525075962247,0.0032386360834606733,0.00041489667792461585,0.0005792866499029328,0.0017926835606292602,0.0005253525075962247,0.0023836141632940606,0.00041489667792461585,0.0,0.0009920809474677668,0.0008550219201666123,0.0005792866499029328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016211500495468125,0.0,0.0,0.000609728032653467,0.0003240180338871844,0.0007718430376081482,0.00021363029401238014,6.260514299496769e-05,0.0002840502393728886,4.9442356273230595e-05,0.0,6.62841668873591e-05,5.712680582500081e-05,3.870403224232135e-05,0.0,0.0,0.0,0.0002849585383266549,5.375811212602794e-05,0.0003314021712900833,4.245542147431882e-05,5.927706868875854e-05 +95293,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5634.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001390636737852715,0.0,0.0,0.001390636737852715,0.0009178831043588336,0.0002707829594224925,0.00015896299572694885,0.0,4.300767834443987e-05,0.0009178831043588336,0.0002707829594224925,0.00015896299572694885,0.0,4.300767834443987e-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.00016571729178756445,4.3198696703159305e-05,0.00016571729178756445,0.00010938090307234389,3.2268253438354115e-05,1.894306142593665e-05,0.0,5.125073850929792e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010938090307234389,3.2268253438354115e-05,1.894306142593665e-05,0.0,5.125073850929792e-06 +95294,35.0,Eastern Counties in South Carolina and Georgia,G1300510002300,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,223003.0,,21756.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010388289677454619,0.003699794517522418,0.0,0.014088084194977035,0.006861862633897477,0.002480583944833907,0.0020498957355794046,0.0,0.0026957241503048276,0.006262540957176851,0.002480583944833907,0.0012256112331611503,0.0,0.00041953581192128944,0.0005993216767206247,0.0008242845024182547,0.0022761883383835384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002471982954688224,0.0,0.0,0.0012379535077445966,0.0005454006932716875,0.0014851518032134193,0.0007462955679948745,0.00029560665818037675,0.00014605385220589935,0.0,4.9995316468658074e-05,4.004311488684111e-05,5.507379477809725e-05,0.00015208138580388402,0.0,0.0,0.0,0.0007233707240171865,0.0002615006886462137,0.00021609796661924434,0.0,0.00028418055481373443 +95295,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,7966.0,,1459.0,,8.72605822017302,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0019126837872952237,0.00115715466868665,0.0,0.0030698384559818743,0.001994894618592095,0.00030642970820413405,0.000696807096253665,0.0,7.162432585824022e-05,0.0009093642757636851,0.00030642970820413405,0.000696807096253665,0.0,0.0,0.0010855303428284097,0.0,7.162432585824022e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.7315478436013e-05,0.0,0.0,0.00022793028517044118,0.00014969828283640068,0.0003052457636064542,0.00010836692404432242,3.651654875709092e-05,8.30369563504699e-05,0.0,0.0,7.252988738994143e-05,0.0,4.7855910460715644e-06,0.0,0.0,0.0,0.00019835999186862286,3.0469476362904132e-05,6.928619118959981e-05,0.0,7.121880305067468e-06 +95296,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,61092.0,,6283.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005366286054264241,0.0018303738493178,0.0,0.00719665990358204,0.0046895622587911304,0.0019971249102310575,0.0005099423609604153,0.0,0.0,0.00285918840947333,0.0019971249102310575,0.0005099423609604153,0.0,0.0,0.0018303738493178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012229478724944373,0.0,0.0,0.000639488973230906,0.00029276430993036684,0.0007617837604803497,0.0003407234429470789,0.00023799315678348234,6.0768753942661596e-05,0.0,0.0,0.00012229478724944373,0.0,0.0,0.0,0.0,0.0,0.0004964014446105061,0.00021140047531043545,5.3978625440852006e-05,0.0,0.0 +95297,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,105731.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009518197255594732,0.0,0.0,0.009518197255594732,0.002307919772799845,0.0027494511386048945,0.004460826344189993,0.0,0.0,0.002307919772799845,0.0027494511386048945,0.004460826344189993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001134265383880233,0.00034477675639514057,0.001134265383880233,0.0002750303903946595,0.0003276468397790903,0.000531588153706483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002750303903946595,0.0003276468397790903,0.000531588153706483,0.0,0.0 +95298,50.0,the Greater Atlanta and Macon Area,G1300570090602,ComStock 90.1-2004,gen3_t5_cfl,5001_10000,NaturalGas,35462.0,,7120.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.009530575335588954,0.005521740293400554,0.0,0.01505231562898951,0.007393748282220039,0.0012164696204829315,0.004216647254674516,0.000418292830813494,0.001807157640798526,0.004661219839985282,0.0012164696204829315,0.0032345930443072467,0.000418292830813494,0.0,0.002732528442234758,0.0009820542103672694,0.001807157640798526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036893136095775356,0.0,0.0,0.0011357390723753759,0.0006911170020197044,0.0015046704333331292,0.0005554679870620253,0.00014496418418529115,0.0003854598042927424,4.984709683531714e-05,0.0,0.00018257204857213477,6.561529103389982e-05,0.00012074402135171894,0.0,0.0,0.0,0.0007390991994838312,0.00012160161373865086,0.00042150753467358584,4.181368970154485e-05,0.0001806483957355163 +95299,81.0,the Columbus-Albany Area,G1300950001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,98778.0,,1.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.011058999629377198,3.375856692747306e-07,0.0,0.011059337215046474,0.0034024338918011163,0.0029827842152863287,0.004674119107959026,0.0,0.0,0.0034020963061318415,0.0029827842152863287,0.004674119107959026,0.0,0.0,3.375856692747306e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2731449795879742e-08,0.0,0.0,0.0013178803627144971,0.0004141621729801109,0.0013179030941642932,0.0004054214724815195,0.0003554528325598651,0.0005570060576731122,0.0,0.0,2.2731449795879742e-08,0.0,0.0,0.0,0.0,0.0,0.00040545631862942574,0.0003554481132198433,0.0005569986623150237,0.0,0.0 +95300,50.0,the Greater Atlanta and Macon Area,G1300590001900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,18154.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.004062488755001041,0.0,0.0,0.004062488755001041,0.002383369743945622,0.0008247549393283736,0.0007620629774339787,0.0,9.221838721932777e-05,0.002383369743945622,0.0008247549393283736,0.0007620629774339787,0.0,9.221838721932777e-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.0004841232804902555,0.00015091707091003948,0.0004841232804902555,0.00028402411640887827,9.828533465764426e-05,9.081438763894246e-05,0.0,1.098958565415898e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00028402411640887827,9.828533465764426e-05,9.081438763894246e-05,0.0,1.098958565415898e-05 +95301,81.0,the Columbus-Albany Area,G1300950000502,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11922.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003249891755512346,0.0,0.0,0.003249891755512346,0.0015831788055178228,0.0006629799030942883,0.0009320260139682553,0.0,7.170703293197954e-05,0.0015831788055178228,0.0006629799030942883,0.0009320260139682553,0.0,7.170703293197954e-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.0003872831481547285,9.935564148421003e-05,0.0003872831481547285,0.00018866427500325274,7.90059987684711e-05,0.00011106768963596567,0.0,8.545184747038979e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00018866427500325274,7.90059987684711e-05,0.00011106768963596567,0.0,8.545184747038979e-06 +95302,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2004,gen5_led,1001_5000,Electricity,16765.0,,5008.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0008629898813982301,0.0008517311018964964,0.0,0.0017147032529333068,0.0007945684166782463,0.00010280063551346616,0.0006701899313165759,0.0,0.0001471442694250182,0.000568807724716714,0.00010280063551346616,4.423725174303175e-05,0.0,0.0001471442694250182,0.0002257606919615323,0.0006259526795735441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6907173311852624e-05,0.0,0.0,0.00010284061093681088,8.810925788914833e-05,0.0001597477842486635,6.778356870264479e-05,1.2250526209841791e-05,5.2716562424207096e-06,0.0,1.7534859781903586e-05,1.5083871888501174e-05,4.1822116795071505e-05,0.0,0.0,0.0,0.0,7.402478754337303e-05,9.577268669979846e-06,6.243725050992898e-05,0.0,1.3708477525381636e-05 +95303,50.0,the Greater Atlanta and Macon Area,G1300970080404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,65035.0,,2035.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00579453525467556,0.0005989076668996698,0.0,0.00639344292157523,0.0027426687356131023,0.0014751879955179773,0.0021755861904441502,0.0,0.0,0.0021437610687134326,0.0014751879955179773,0.0021755861904441502,0.0,0.0,0.0005989076668996698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0015183902807664e-05,0.0,0.0,0.0006905242380721879,0.0002431035124433521,0.0007305394219749955,0.00025546811150863323,0.00017579547312208466,0.0002592606534414701,0.0,0.0,4.0015183902807664e-05,0.0,0.0,0.0,0.0,0.0,0.0003133878971566746,0.00016856066422575233,0.0002485908605925685,0.0,0.0 +95304,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,23807.0,,3908.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0022271754186305886,0.0011503998920693887,0.0,0.003377575310699977,0.0015626840630727278,0.0007405401999635682,0.0010743510476636812,0.0,0.0,0.00041228417100333927,0.0007405401999635682,0.0010743510476636812,0.0,0.0,0.0011503998920693887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.686298132461003e-05,0.0,0.0,0.00026540694983181524,0.00015609877582104802,0.0003422699311564252,4.9130878230155387e-05,8.824833197064532e-05,0.00012802773963101454,0.0,0.0,7.686298132461003e-05,0.0,0.0,0.0,0.0,0.0,0.00015835613346436373,7.504337281751601e-05,0.00010887042487454549,0.0,0.0 +95305,85.0,Rural Climate Zone 3A,G1302390960300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,DistrictHeating,16557.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,43199.70345818221,0.005755397216376908,0.0020930752013685406,0.0027213417032947566,0.0,0.0,0.010569814121040204,0.008198255479775452,0.0003784448550010883,0.001964888744423567,0.0,2.8225041840098475e-05,0.0003780081038701003,0.0003784448550010883,0.001964888744423567,0.0,0.0,0.0,0.0,0.0,0.002064850159528442,0.0,2.8225041840098475e-05,0.005755397216376908,0.0,0.0,0.0,0.0,0.0,0.0,0.0003242957081314259,0.000113653388778981,0.0003242957081314259,4.5046311374846875e-05,4.509835795066992e-05,0.00023415103880590902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025153319025391496,1.1611182641042955e-05,6.028535407296264e-05,0.0,8.659811635053674e-07 +95306,50.0,the Greater Atlanta and Macon Area,G1301350050107,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,143374.0,,10747.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00738022748037414,0.0018276633855404626,0.0,0.009207890865914602,0.0032065181324551295,0.002107927208507238,0.003101536662486997,0.0,0.0007919088624652385,0.002850137867912068,0.002107927208507238,0.001630253541489595,0.0,0.0007919088624652385,0.0003563802645430613,0.0014712831209974014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000122113380938741,0.0,0.0,0.000879488269593504,0.00032138554074243904,0.001001601650532245,0.00033964573967655375,0.00025119784694564896,0.00019427434588109468,0.0,9.437033709020646e-05,2.381116749807136e-05,9.830221344066965e-05,0.0,0.0,0.0,0.0,0.00034879364891447616,0.0002292928317665248,0.0003373741376358812,0.0,8.614103221536289e-05 +95307,85.0,Rural Climate Zone 3A,G1302870970200,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,3101.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005316410699962681,0.0,0.0,0.0005316410699962681,0.0003413320933221218,0.00011091018588441126,5.2436284750720904e-05,0.0,2.696250603901422e-05,0.0003413320933221218,0.00011091018588441126,5.2436284750720904e-05,0.0,2.696250603901422e-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,6.335383897452829e-05,2.0982792136108345e-05,6.335383897452829e-05,4.0675372347211934e-05,1.3216785635476422e-05,6.248651821694296e-06,0.0,3.213029170145648e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.0675372347211934e-05,1.3216785635476422e-05,6.248651821694296e-06,0.0,3.213029170145648e-06 +95308,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,10267.0,,519.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0004927090135018475,8.826173914902283e-05,0.0,0.0005809707526508701,0.0002629589902208031,0.00014150601449344142,6.10101736464017e-05,0.0,0.00011549557429022397,0.00017469725107178028,0.00014150601449344142,6.10101736464017e-05,0.0,0.00011549557429022397,8.826173914902283e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.896713290468135e-06,0.0,0.0,5.871587889255847e-05,2.0272049340147448e-05,6.461259218302661e-05,2.0818581263391216e-05,1.6863198727608372e-05,7.270550911126477e-06,0.0,1.3763547990432394e-05,5.896713290468135e-06,0.0,0.0,0.0,0.0,0.0,2.9244952380946316e-05,1.57375743343222e-05,6.785239103420961e-06,0.0,1.2844826364337152e-05 +95309,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,126982.0,,18366.0,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,699376.6742607838,0.0,0.0,0.03143674248946049,0.015569399746328616,0.0,0.04700614223578911,0.030990932796231295,0.004609410610882003,0.01069050583753706,0.0,0.0007153813752968042,0.016136914425199482,0.004609410610882003,0.01069050583753706,0.0,0.0,0.014854018371031813,0.0,0.0007153813752968042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010402562466513528,0.0,0.0,0.003746260626913427,0.0020937839408838458,0.00478651687356478,0.0019230073590246729,0.0005492952550860994,0.0012739685453853954,0.0,0.0,0.000992458646453823,0.0,4.7797600197529755e-05,0.0,0.0,0.0,0.003155728500598641,0.0004693646535702541,0.00108858723869823,0.0,7.284548063348743e-05 +95310,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,137055.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011734784760052613,0.0,0.0,0.011734784760052614,0.0029048019256838658,0.004640268472212661,0.004189745051762384,0.0,0.0,0.0029048019256838658,0.004640268472212661,0.004189745051762384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013984127757481037,0.0004075674799376333,0.0013984127757481037,0.00034615991745517104,0.0005529722825878423,0.0004992842329291815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000346159917455171,0.0005529722825878422,0.0004992842329291814,0.0,0.0 +95311,35.0,Eastern Counties in South Carolina and Georgia,G1301270000501,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,NaturalGas,35999.0,,3414.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0017543660714299648,0.0005805452239767888,0.0,0.002334929025768174,0.0009175993945719925,0.00046584751595046733,0.000688718159000531,0.0,0.0002627994169680226,0.0008640359727220132,0.00046584751595046733,0.000365334097060188,0.0,5.918394642013628e-05,5.3563421849979504e-05,0.000323384061940343,0.00020361547054788636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.87891149793063e-05,0.0,0.0,0.00020906536776440967,9.239691597151985e-05,0.000247854482743716,0.00010296596664775295,5.551440137287739e-05,4.353635686565192e-05,0.0,7.0528686832102e-06,3.5788387243833584e-06,2.1606898210535612e-05,1.3604562698053128e-05,0.0,0.0,0.0,9.740387000960983e-05,4.945006628857244e-05,7.3107953677145e-05,0.0,2.7896356950948483e-05 +95312,50.0,the Greater Atlanta and Macon Area,G1302550160300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,347910.0,,43079.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.0931450505533253,0.03810324667334792,0.0,0.13124829722667322,0.11227238425452607,0.009130061328060905,0.003746879197426849,0.0006488405905120551,0.005450039638894607,0.07797512803763258,0.009130061328060905,0.003746879197426849,0.0006488405905120551,0.0016440491824401533,0.034297256216893474,0.0,0.003805990456454453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025458361231416554,0.0,0.0,0.01109991357351253,0.005299844061107817,0.013645749696654186,0.009292143564899233,0.0010880115589644405,0.00044650826871385756,7.732106467157348e-05,0.00019591812691370267,0.0022915420974529838,0.0,0.00025429402568867207,0.0,0.0,0.0,0.0116728436540241,0.0009492430319507553,0.0003895591543057102,6.745928502116553e-05,0.00056663498362008 +95313,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,69112.0,,1636.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006158053641271849,0.0004814278539920635,0.0,0.006639450805657615,0.003053799964259213,0.0015176931002402957,0.0020679577411581067,0.0,0.0,0.00257237211026715,0.0015176931002402957,0.0020679577411581067,0.0,0.0,0.0004814278539920635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.216534485911972e-05,0.0,0.0,0.0007338421727057787,0.0002590001748937576,0.0007660075175648984,0.000306544120654382,0.00018086026317089385,0.00024643413166530525,0.0,0.0,3.216534485911972e-05,0.0,0.0,0.0,0.0,0.0,0.00035232337707339663,0.0001750994710510993,0.00023858466944040246,0.0,0.0 +95314,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,340985.0,,38364.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.017552259939588373,0.00652409924884547,0.0,0.024076359188433847,0.01363000257732855,0.0047689530415130224,0.0022784932853681457,0.0,0.0033989102842241214,0.009888772205167469,0.0047689530415130224,0.0022784932853681457,0.0,0.0006160236771783147,0.003741230372161082,0.0,0.0027828866070458073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043590263422339684,0.0,0.0,0.0020916686580317438,0.001100247034029656,0.002527571292255141,0.0011784257388595463,0.0005683068529574133,0.00027152361057456483,0.0,7.34103427475541e-05,0.00024996740733982395,0.0,0.00018593641152392766,0.0,0.0,0.0,0.0014308975438599206,0.0005006516436933607,0.0002391995472662347,0.0,0.00035682255743562405 +95315,50.0,the Greater Atlanta and Macon Area,G1301210002300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,61416.0,,4557.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005281190210133886,0.0013412585536348024,0.0,0.006622479453374985,0.002230183000047763,0.002324308022562818,0.0020679577411581067,0.0,0.0,0.0008889244464129611,0.002324308022562818,0.0020679577411581067,0.0,0.0,0.0013412585536348024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.961551899192373e-05,0.0,0.0,0.000629350720080698,0.0002647622846150586,0.0007189662390726218,0.00010593165899872978,0.0002769839504894804,0.00024643511059248784,0.0,0.0,8.961551899192374e-05,0.0,0.0,0.0,0.0,0.0,0.00024211872536212853,0.0002523373623419363,0.0002245068195664769,0.0,0.0 +95316,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,22450.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0019398593244714954,0.0,0.0,0.001939859324471495,0.0007093595599651022,0.0005156160754077045,0.0007148529994923911,0.0,0.0,0.0007093595599651022,0.0005156160754077045,0.0007148529994923911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023116940603095854,8.626687097014116e-05,0.00023116940603095854,8.453305148000404e-05,6.144500293828623e-05,8.518769438970903e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.453305148000407e-05,6.144500293828624e-05,8.518769438970905e-05,0.0,0.0 +95317,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,461833.0,,33611.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02140185828074882,0.0057159316449580415,0.0,0.027117789925706858,0.013134332593469557,0.005890664356752663,0.004079756162754151,0.0,0.004013036812730491,0.01189295906900598,0.005890664356752663,0.002950438522465307,0.0,0.0006677963325248688,0.0012413735244635768,0.0011293176402888431,0.003345240480205622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038190544725663503,0.0,0.0,0.002550417913399243,0.0009246714905296539,0.002932323360655878,0.0014172608497366223,0.0007019790384650078,0.0003515980323469103,0.0,7.957999285070267e-05,8.29413891768623e-05,7.545446399621601e-05,0.00022350959408355675,0.0,0.0,0.0,0.0014202525499301274,0.0006369742058778234,0.00044115557848182374,0.0,0.0004339410263661039 +95318,35.0,Eastern Counties in South Carolina and Georgia,G1302450010903,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,89462.0,,8945.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004401686335058049,0.0015212118187562702,0.0,0.005922898153814319,0.0027980815267827923,0.000942191405861606,0.001235362931942179,0.0,0.000947262289227741,0.0020864380104661335,0.000942191405861606,0.001235362931942179,0.0,0.00013769398678813006,0.0007116435163166593,0.0,0.0008095683024396109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010163834333317301,0.0,0.0,0.0005245399582150869,0.00024415421344744386,0.0006261783015482598,0.000248636550521913,0.00011227902286561796,0.00014721567403390914,0.0,1.6408710793646763e-05,4.754779521852239e-05,0.0,5.4090548114650624e-05,0.0,0.0,0.0,0.00029581767110178447,9.960998803868394e-05,0.00013060455243875244,0.0,0.00010014608996903892 +95319,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,106790.0,,5789.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.012426813245825811,0.002151312487826036,0.0,0.014578125733651847,0.007573766910491302,0.0024191028445149005,0.004297122699476437,0.0,0.00028809453074543547,0.0063349023056502715,0.0024191028445149005,0.003672769347236867,0.0,0.0,0.0012388646048410309,0.0006243533522395699,0.00028809453074543547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014373783697928008,0.0,0.0,0.0014808794459865364,0.0005744092398403386,0.0016246172829658164,0.0007549181299494765,0.00028827983565078637,0.00043767686281110003,0.0,0.0,8.277352528641109e-05,4.171555776741967e-05,1.9248753925449342e-05,0.0,0.0,0.0,0.0008440366645717283,0.00026958995705452557,0.0004788804769654944,0.0,3.210586616745523e-05 +95320,50.0,the Greater Atlanta and Macon Area,G1302550160200,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,5481.0,,,535.0,3.20458438519356,Mercantile,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,9613.75315558068,0.0,0.0,0.00048330471425350697,0.0,5.045054866610578e-05,0.0005337248893201751,0.000320411100468844,0.00017361549438618941,3.9698294465141634e-05,0.0,0.0,0.0002699605518027382,0.00017361549438618941,3.9698294465141634e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.045054866610578e-05,0.0,0.0,0.0,0.0,4.067660298188156e-06,5.759328539414429e-05,1.9331106398446472e-05,6.166094569233246e-05,3.2170005064300804e-05,2.06889906556642e-05,4.730670186660796e-06,0.0,0.0,0.0,0.0,0.0,4.067660298188156e-06,0.0,0.0,3.701691987869424e-05,2.005770348152585e-05,4.586322332112367e-06,0.0,0.0 +95321,50.0,the Greater Atlanta and Macon Area,G1300670030330,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,169580.0,,35250.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009373279677240855,0.0059945288139513315,0.0,0.01536779076083077,0.0070932793111520035,0.002352517544296866,0.002614820511145127,0.0,0.0033071556638753483,0.0050113093517637234,0.002352517544296866,0.001575750410484353,0.0,0.0004336846403344916,0.00208196995938828,0.0010390701006607742,0.0028734710235408575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004005188782486488,0.0,0.0,0.0011169948184120886,0.0006596112556762321,0.0015175136966607374,0.0005971876197156051,0.00028034476700653004,0.00018777899563750703,0.0,5.168132316106604e-05,0.00013910489023605667,6.942450425291136e-05,0.00019198829912204084,0.0,0.0,0.0,0.0007004356498885273,0.00023230258992101136,0.0002582040581972143,0.0,0.00032656964784498867 +95322,50.0,the Greater Atlanta and Macon Area,G1301210011617,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,16566.0,,700.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003977879418565729,0.0005553780001594493,0.0,0.004533257418725179,0.0023519410559246856,0.0006005360624211112,0.001496832620533986,0.0,8.394767984539703e-05,0.001796563055765236,0.0006005360624211112,0.001496832620533986,0.0,8.394767984539703e-05,0.0005553780001594493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.710781967296903e-05,0.0,0.0,0.00047403766862278156,0.0001983116173412892,0.0005111454882957506,0.00021409360940252958,7.15649432774039e-05,0.000178375202235843,0.0,1.0003913707005226e-05,3.710781967296903e-05,0.0,0.0,0.0,0.0,0.0,0.00026519210105026845,6.771318513647707e-05,0.00016877471761464843,0.0,9.465484494356731e-06 +95323,35.0,Eastern Counties in South Carolina and Georgia,G1300510004210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,25235.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.005532524283643492,0.0,0.0,0.005532524283643491,0.003102259628887682,0.0012522678034868537,0.0010278008053583735,0.0,0.00015019604591058228,0.003102259628887682,0.0012522678034868537,0.0010278008053583735,0.0,0.00015019604591058228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006593003044475035,0.00016125428251297265,0.0006593003044475035,0.0003696903281288237,0.00014923035160090963,0.00012248105008549664,0.0,1.7898574632273426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00036969032812882375,0.00014923035160090966,0.00012248105008549664,0.0,1.7898574632273426e-05 +95324,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,2580.0,,488.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0002081062203047226,0.0001435966678669513,0.0,0.0003517028881716739,0.00019463348314003104,7.540436267345575e-05,8.163435275188941e-05,0.0,0.0,5.103681527307973e-05,7.540436267345575e-05,8.163435275188941e-05,0.0,0.0,0.0001435966678669513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.59357070467798e-06,0.0,0.0,2.479946381606262e-05,1.7993280588486123e-05,3.43930345207406e-05,6.081921298645057e-06,8.985736999862241e-06,9.728148318939178e-06,0.0,0.0,9.59357070467798e-06,0.0,0.0,0.0,0.0,0.0,1.9033213344723986e-05,7.373794573949361e-06,7.98302546467452e-06,0.0,0.0 +95325,50.0,the Greater Atlanta and Macon Area,G1301210006700,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,66731.0,,9310.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005880859466887374,0.0015832680837264551,0.0,0.007464109820252409,0.00313272436822487,0.0012443699555435659,0.002281223761026834,0.0,0.0008058094658185597,0.0025352821098147704,0.0012443699555435659,0.0019480880003054618,0.0,0.000153119401223576,0.0005974422584100991,0.00033313576072137205,0.0006526900645949837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010578437889209683,0.0,0.0,0.0007008098176299639,0.00026838839560110346,0.0008065941965220607,0.00030212430734383785,0.0001482889850571894,0.00023214960396660976,0.0,1.8246921262326884e-05,3.991747126049133e-05,2.225811275858771e-05,4.360879487301777e-05,0.0,0.0,0.0,0.0003385316341216387,0.0001344703666798291,0.00024651591293846337,0.0,8.707819877840606e-05 +95326,50.0,the Greater Atlanta and Macon Area,G1300450910600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,105098.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.005409958797932191,0.0,0.0,0.005409958797932192,0.003074958850718338,0.0006903316218897559,0.0008879187695548244,0.0,0.0007567495557692737,0.003074958850718338,0.0006903316218897559,0.0008879187695548244,0.0,0.0007567495557692737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006446954067904163,0.0001950876288916682,0.0006446954067904163,0.00036643751295950213,8.226562205327952e-05,0.00010581173974075215,0.0,9.018053203688259e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000366437512959502,8.22656220532795e-05,0.00010581173974075214,0.0,9.018053203688257e-05 +95327,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2004,gen5_led,25001_50000,Electricity,90289.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007961831620617886,0.0,0.0,0.007961831620617886,0.005606024874626417,0.0014712364095658228,0.0008845095892267708,0.0,0.0,0.005606024874626417,0.0014712364095658228,0.0008845095892267708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009487946365042028,0.0003123806195868155,0.0009487946365042028,0.0006680581286573235,0.00017532413154919534,0.00010540513718246248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006680581286573235,0.00017532413154919534,0.00010540513718246248,0.0,0.0 +95328,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,NaturalGas,31111.0,,3332.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026713154009709436,0.0009809011964871763,0.0,0.0036522165974581205,0.0014354449553624523,0.000967520528141378,0.0012492511139542896,0.0,0.0,0.00045454375887527595,0.000967520528141378,0.0012492511139542896,0.0,0.0,0.0009809011964871763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.553824217418695e-05,0.0,0.0,0.00031833517037620283,0.00016121781014161136,0.00038387341255038975,5.416704626956723e-05,0.00011529743438622486,0.00014887068972041075,0.0,0.0,6.553824217418695e-05,0.0,0.0,0.0,0.0,0.0,0.0001508752667973562,0.00010169314906149813,0.00013130499669153535,0.0,0.0 +95329,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,29854.0,,9561.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005988689299774539,0.006576793062102548,0.0,0.012565410641906073,0.0029736534382492656,0.0006578155741551846,0.006668809784915577,0.0003683537711361784,0.0018968497934208808,0.002305295028354786,0.0006578155741551846,0.002424995659979841,0.0003683537711361784,0.00023222926614854862,0.0006683584098944792,0.0042438141249357365,0.0016646205272723323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043942064904742794,0.0,0.0,0.0007136572547009174,0.0006104026873844453,0.0011530779037483454,0.00027471629247376183,7.839025089659782e-05,0.00028898071994284404,4.3895805560938334e-05,2.7674185826775377e-05,4.465557658556592e-05,0.00028354542093798766,0.00011121965152387435,0.0,0.0,0.0,0.0002728803833609049,6.036512652998456e-05,0.0006119702273510775,3.380236479044927e-05,0.00017406638317324805 +95330,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,16353.0,,2308.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0014867579770922112,0.000679314435399651,0.0,0.0021660724124918625,0.0009346826494028357,0.0006923882076824724,0.0005390322450128517,0.0,0.0,0.0002553682140031848,0.0006923882076824724,0.0005390322450128517,0.0,0.0,0.000679314435399651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5386873227968235e-05,0.0,0.0,0.00017717583892470502,9.609747523254688e-05,0.00022256271215267327,3.0432039543657143e-05,8.251138614883414e-05,6.423607048970007e-05,0.0,0.0,4.5386873227968235e-05,0.0,0.0,0.0,0.0,0.0,9.603811223181942e-05,7.114249573358544e-05,5.538525752691348e-05,0.0,0.0 +95331,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,180539.0,,8628.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.00875700777500266,0.0014672051378707893,0.0,0.01022421291287345,0.006018376150061303,0.0016899162076680727,0.0007968379029400132,0.0,0.0017190826522040592,0.006018376150061303,0.0016899162076680727,0.0007968379029400132,0.0,0.0002518775143332701,0.0,0.0,0.0014672051378707893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.803021954588295e-05,0.0,0.0,0.0010435553762221461,0.000403966635733293,0.001141585595768029,0.0007171980371482206,0.00020138398745185793,9.495760412184617e-05,0.0,3.0015747500221314e-05,0.0,0.0,9.803021954588295e-05,0.0,0.0,0.0,0.0006719824382934256,0.00018868777647419122,8.897102201509886e-05,0.0,0.000191944358985313 +95332,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,6745.0,,835.0,,8.72605822017302,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0013613584337490003,0.0006622355394306346,0.0,0.0020235112661058955,0.0011663351538717132,0.00020891806826549053,0.0006150925073992293,0.0,3.3165536569462275e-05,0.0005372651510105411,0.00020891806826549053,0.0006150925073992293,0.0,0.0,0.0006290700028611721,0.0,3.3165536569462275e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.424654096888967e-05,0.0,0.0,0.00016222570477816394,9.688617540736918e-05,0.0002064722457470536,6.402297559167394e-05,2.489563367373281e-05,7.329723975912546e-05,0.0,0.0,4.203062203189394e-05,0.0,2.215918936995723e-06,0.0,0.0,0.0,0.00011900889436462638,2.1317293090699635e-05,6.276195911145416e-05,0.0,3.3840991802733785e-06 +95333,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,17260.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001412979845844215,0.0,0.0,0.001412979845844215,0.000991090549653842,0.00030932473667406445,0.0001125341859168705,0.0,0.0,0.000991090549653842,0.00030932473667406445,0.0001125341859168705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001683808030522782,5.055736159293915e-05,0.0001683808030522782,0.0001181054514960412,3.686135206974206e-05,1.3410379950745713e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001181054514960412,3.686135206974206e-05,1.3410379950745713e-05,0.0,0.0 +95334,85.0,Rural Climate Zone 3A,G1302850960700,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,17011.0,,,3785.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013885290982968246,0.0,0.0003567075517969574,0.0017452366500937822,0.0013098007285541717,0.00034349503604153535,9.194088549807477e-05,0.0,0.0,0.0009530931767572145,0.00034349503604153535,9.194088549807477e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003567075517969574,0.0,0.0,0.0,0.0,2.876690978686443e-05,0.00016546988236895255,6.650786598762607e-05,0.00019423679215581696,0.00011357933804780404,4.093402383704439e-05,1.0956520484104109e-05,0.0,0.0,0.0,0.0,0.0,2.876690978686443e-05,0.0,0.0,0.0001457747818119928,3.8229413712214514e-05,1.0232596631609633e-05,0.0,0.0 +95335,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020800,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,18975.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016732512194263102,0.0,0.0,0.0016732512194263102,0.0012597146630813193,0.0003165232797408117,9.704365020361707e-05,0.0,0.0,0.0012597146630813193,0.0003165232797408117,9.704365020361707e-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.000199399393944381,7.159451098799772e-05,0.000199399393944381,0.00015011872541613133,3.771970963884612e-05,1.156457847578096e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015011872541613133,3.771970963884612e-05,1.156457847578096e-05,0.0,0.0 +95336,50.0,the Greater Atlanta and Macon Area,G1301530020106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,37891.0,,2620.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.003376040830385092,0.0007713218750801639,0.0,0.004147362705465257,0.002255225718786689,0.0008043438914564923,0.0010877930952220751,0.0,0.0,0.0014839038437065252,0.0008043438914564923,0.0010877930952220751,0.0,0.0,0.0007713218750801639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.153577285715875e-05,0.0,0.0,0.0004023149031209066,0.00017957092933780416,0.00045385067597806524,0.00017683335632331034,9.58517835017712e-05,0.0001296297632958251,0.0,0.0,5.153577285715875e-05,0.0,0.0,0.0,0.0,0.0,0.00024679194698975213,8.80202781336928e-05,0.0001190384508546202,0.0,0.0 +95337,81.0,the Columbus-Albany Area,G1302150001400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,12600.0,,714.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.000602069882740733,0.00012147070608878176,0.0,0.0007235228584680947,0.0003826921208904197,0.0002112395259585091,5.225137510489561e-05,0.0,7.733983651427031e-05,0.0003047317217264475,0.0002112395259585091,5.225137510489561e-05,0.0,3.382952958946075e-05,7.796039916397217e-05,0.0,4.351030692480957e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.115732552965187e-06,0.0,0.0,7.174670459031014e-05,2.791641689443391e-05,7.986243714327533e-05,3.631388555507437e-05,2.5172725461287952e-05,6.226625980729863e-06,0.0,4.031354723865823e-06,5.208710558369278e-06,0.0,2.907021994595908e-06,0.0,0.0,0.0,4.2241547854545906e-05,2.3316614211409376e-05,5.767505630436749e-06,0.0,8.536769446883303e-06 +95338,85.0,Rural Climate Zone 3A,G1302850960100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4948.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001209260125142414,0.0,0.0,0.0012092601251424138,0.0004957461999934087,0.00027822659605903017,0.00038905407486970213,0.0,4.631596129401216e-05,0.0004957461999934087,0.00027822659605903017,0.00038905407486970213,0.0,4.631596129401216e-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.00014410847365061195,4.2165533869767344e-05,0.00014410847365061195,5.9078461874137744e-05,3.31564807715381e-05,4.63638779873113e-05,0.0,5.519509284203726e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.907846187413776e-05,3.3156480771538106e-05,4.636387798731131e-05,0.0,5.519509284203727e-06 +95339,35.0,Eastern Counties in South Carolina and Georgia,G1301030030305,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,26801.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0023633697722514695,0.0,0.0,0.0023633697722514695,0.0014532248650992359,0.0006596538325890941,0.00025052144816257706,0.0,0.0,0.0014532248650992359,0.0006596538325890941,0.00025052144816257706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002816391160998152,5.905817545094604e-05,0.0002816391160998152,0.0001731785568666708,7.860992576090201e-05,2.9854253047054054e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001731785568666708,7.860992576090201e-05,2.9854253047054054e-05,0.0,0.0 +95340,35.0,Eastern Counties in South Carolina and Georgia,G1300510002800,ComStock 90.1-2007,gen5_led,100001_200000,NaturalGas,387816.0,,1238.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,1142103.5955056418,0.0,0.0,0.07904555033752805,0.0008569833949517176,0.0,0.07990253373247978,0.06652587089980057,0.008844934640174518,0.0018264030113211004,0.0007970847660835133,0.0019081682480773358,0.06652587089980057,0.008844934640174518,0.0018264030113211004,0.0007970847660835133,0.0010511848531256183,0.0,0.0,0.0008569833949517176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7259067722908446e-05,0.0,0.0,0.009419704975759047,0.0031038542353422596,0.009476964043481955,0.007927759051024559,0.001054033712012245,0.00021764890572612962,9.498704614134274e-05,0.00012526766085059284,0.0,0.0,5.7259067722908446e-05,0.0,0.0,0.0,0.007890404184047219,0.0010490672027063446,0.00021662336422457345,9.453947597046048e-05,0.00022632125705160212 +95341,50.0,the Greater Atlanta and Macon Area,G1302170100700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5644.0,,1178.0,,8.72605822017302,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0013552381102922913,0.0009348380544753918,0.0,0.002290076164767683,0.0016234571504288654,0.000475648381074757,0.00015598554107233378,0.0,3.4902385117987724e-05,0.0007235214810714615,0.000475648381074757,0.00015598554107233378,0.0,0.0,0.0008999356693574039,0.0,3.4902385117987724e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.245977282384538e-05,0.0,0.0,0.00016149779172945118,0.00011961653747392859,0.00022395756455329655,8.621888697969238e-05,5.668093495887183e-05,1.8588113951040212e-05,0.0,0.0,6.01278234182307e-05,0.0,2.3319494056146817e-06,0.0,0.0,0.0,0.00015876568437345727,4.6515943289609906e-05,1.5254576429178276e-05,0.0,3.4132721384481617e-06 +95342,50.0,the Greater Atlanta and Macon Area,G1300970080404,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,102327.0,,6665.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009117237549315245,0.0019619865306121386,0.0,0.011079224079927385,0.003512732336835061,0.003053892033078106,0.004512630399620515,0.0,0.0,0.0015507458062229216,0.003053892033078106,0.004512630399620515,0.0,0.0,0.0019619865306121386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001310890499041733,0.0,0.0,0.0010864827203172214,0.00042796425470362806,0.0012175717702213947,0.00018479923474102577,0.00036392612408162945,0.0005377610187127482,0.0,0.0,0.0001310890499041733,0.0,0.0,0.0,0.0,0.0,0.000386038200763806,0.00033561309907221355,0.0004959238430762781,0.0,0.0 +95343,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7109.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,9613.75315558068,0.0,0.0,0.0006269110923951977,0.0,0.0,0.0006269110923951976,0.00038443864808362476,0.00020432320341775648,3.811886729437854e-05,0.0,0.0,0.00038443864808362476,0.00020432320341775648,3.811886729437854e-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,7.470688396361918e-05,2.532631499568241e-05,7.470688396361918e-05,4.581225922129494e-05,2.434850816004196e-05,4.542497062710372e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.581225922129496e-05,2.4348508160041964e-05,4.5424970627103725e-06,0.0,0.0 +95344,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,139948.0,,21590.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.04590667060301395,0.01909625648701618,0.0,0.0650030193072829,0.04911961190688412,0.008490350245573394,0.001991708225395021,0.0006375900856737277,0.004763482191998323,0.030023355419867927,0.008490350245573394,0.001991708225395021,0.0006375900856737277,0.004763482191998323,0.01909625648701618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012759032313605628,0.0,0.0,0.005470611527348275,0.002441490084330394,0.0067465147587088365,0.0035778267535441876,0.0010117790576955631,0.00023734812030225998,7.598041039771391e-05,0.0005676552066956772,0.0012759032313605628,0.0,0.0,0.0,0.0,0.0,0.005098012218560372,0.0008811940406582075,0.0002067148431082771,6.617401728172181e-05,0.000494390926046766 +95345,50.0,the Greater Atlanta and Macon Area,G1300770170801,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,11985.0,,854.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0011505840297071752,0.00025150132360967427,0.0,0.0014020853533168493,0.0007882932273627938,0.00036124735573025946,0.0002525447702237962,0.0,0.0,0.0005367919037531194,0.00036124735573025946,0.0002525447702237962,0.0,0.0,0.00025150132360967427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6804041242682748e-05,0.0,0.0,0.0001371123991278968,5.8455963692651566e-05,0.00015391644037057956,6.396823165949276e-05,4.304899976352919e-05,3.009516770487484e-05,0.0,0.0,1.6804041242682748e-05,0.0,0.0,0.0,0.0,0.0,8.65363062504642e-05,3.9656577936393906e-05,2.7723556183721473e-05,0.0,0.0 +95346,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,17045.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003941488306120435,0.0,0.0,0.003941488306120435,0.0023009107914275326,0.0005898668499087406,0.0009623795100305813,0.0,8.824844767984103e-05,0.0023009107914275326,0.0005898668499087406,0.0009623795100305813,0.0,8.824844767984103e-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.00046970095772667404,0.0001505040646266147,0.00046970095772667404,0.0002741959174911044,7.02935040814722e-05,0.00011468525147111757,0.0,1.051642861117931e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002741959174911044,7.02935040814722e-05,0.00011468525147111757,0.0,1.051642861117931e-05 +95347,50.0,the Greater Atlanta and Macon Area,G1300890023212,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4503.0,,704.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007398147745981049,0.0005582727477403251,0.0,0.00129808752233843,0.0008570106980867034,0.000187248814945792,0.00021454214927976348,0.0,3.928586002617103e-05,0.0002987379503463784,0.000187248814945792,0.00021454214927976348,0.0,3.928586002617103e-05,0.0005582727477403251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.729910150902858e-05,0.0,0.0,8.816509601883029e-05,6.02376669344681e-05,0.00012546419752785886,3.560115447959922e-05,2.231478785764469e-05,2.5567385027707746e-05,0.0,4.681768653878634e-06,3.729910150902858e-05,0.0,0.0,0.0,0.0,0.0,8.283275022514645e-05,1.8098180516283686e-05,2.0736166192243767e-05,0.0,3.7971005941849614e-06 +95348,50.0,the Greater Atlanta and Macon Area,G1301510070107,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,169890.0,,53166.0,,7.614023970037612,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.03559494062248721,0.03680041857021551,0.0,0.07239535919270271,0.06004087007001056,0.00619092021215394,0.003330002929958493,0.000769156128285929,0.0020643376852710633,0.02416916891534315,0.00619092021215394,0.003330002929958493,0.000769156128285929,0.0011356202697229666,0.03587170115466741,0.0,0.0009287174155480968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024587905533625365,0.0,0.0,0.00424177817868626,0.0034070265923622518,0.006700568732048797,0.0028801917213289955,0.00073775963107836,0.00039682981671658273,9.165880386115639e-05,0.00013532960570080286,0.0023967390415370405,0.0,6.205151182549599e-05,0.0,0.0,0.0,0.005557096216143493,0.0005730020108850978,0.0003082091691916055,7.118941822690616e-05,0.0001910652381666964 +95349,50.0,the Greater Atlanta and Macon Area,G1300890022007,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,NaturalGas,17243.0,,1575.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014153793601997973,0.0004587628459078035,0.0,0.0018741422061076005,0.0011667410752023606,0.0006106915902954381,9.667916701036405e-05,0.0,0.0,0.0007079782292945572,0.0006106915902954381,9.667916701036405e-05,0.0,0.0,0.0004587628459078035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0652135821278016e-05,0.0,0.0,0.00016866795127846274,7.072519156961547e-05,0.00019932008709974079,8.436836147448846e-05,7.277490565043823e-05,1.1521064591930017e-05,0.0,0.0,3.0652135821278016e-05,0.0,0.0,0.0,0.0,0.0,0.0001240860656007381,6.49487005692979e-05,1.0282090615342447e-05,0.0,0.0 +95350,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,29478.0,,1672.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026518581905782,0.0004921078369836641,0.0,0.0031439967171681617,0.0013783315980424274,0.0006913140714620529,0.0010743510476636812,0.0,0.0,0.0008862237610587633,0.0006913140714620529,0.0010743510476636812,0.0,0.0,0.0004921078369836641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.288024877207639e-05,0.0,0.0,0.00031601843014149056,0.00013082288134412166,0.0003488986789135669,0.00010561011245583009,8.238298276067558e-05,0.00012802899216474161,0.0,0.0,3.288024877207639e-05,0.0,0.0,0.0,0.0,0.0,0.00015295756227601268,7.671718132858616e-05,0.00011922393530896809,0.0,0.0 +95351,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,6010.0,,46.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015194116516648168,3.6887354887731115e-05,0.0,0.0015562162994788083,0.0009589058129335302,0.00022380534153856586,0.00033653508304524186,0.0,3.6887354887731115e-05,0.0009589058129335302,0.00022380534153856586,0.00033653508304524186,0.0,0.0,0.0,0.0,3.6887354887731115e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4623594430186714e-06,0.0,0.0,0.00018106133709422492,6.694441527186861e-05,0.00018352369653724357,0.00011426841991565204,2.6669858917694874e-05,4.010334661348871e-05,0.0,0.0,0.0,0.0,2.4623594430186714e-06,0.0,0.0,0.0,0.00011308321309804431,2.6393235694609964e-05,3.968738952009163e-05,0.0,4.350104626679988e-06 +95352,50.0,the Greater Atlanta and Macon Area,G1300670030314,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,9360.0,,1383.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0022571587494194393,0.001096861211930695,0.0,0.0033539372542763946,0.002090586702908474,0.0006829123078654614,0.0005074906044643904,0.0,7.294763903806914e-05,0.0010666731300158479,0.0006829123078654614,0.0005074906044643904,0.0,0.0,0.001023913572892626,0.0,7.294763903806914e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.328390094956598e-05,0.0,0.0,0.00026897756155295257,0.00013215933889016823,0.00034226146250251855,0.0001271116342878029,8.138022519302074e-05,6.04758461649964e-05,0.0,0.0,6.841009604551553e-05,0.0,4.873804904050459e-06,0.0,0.0,0.0,0.00021333948973358065,6.968960583653815e-05,5.17882307633521e-05,0.0,7.444136169047676e-06 +95353,50.0,the Greater Atlanta and Macon Area,G1302270050400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,30554.0,,973.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0017733198277880009,0.00016540654168767258,0.0,0.0019387263694756734,0.0009025640480877877,0.0004508653605505227,0.00036045824766967353,0.0,0.00022483871316768958,0.0007371575064001152,0.0004508653605505227,0.00036045824766967353,0.0,0.00022483871316768958,0.00016540654168767258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1051201902580177e-05,0.0,0.0,0.000211322862014866,6.897994532922773e-05,0.00022237406391744616,8.784553782524865e-05,5.372869399072177e-05,4.295506503721631e-05,0.0,2.679356516167929e-05,1.1051201902580177e-05,0.0,0.0,0.0,0.0,0.0,0.00010352509692914716,5.171475669995646e-05,4.1344960624095124e-05,0.0,2.578924966424743e-05 +95354,50.0,the Greater Atlanta and Macon Area,G1301510070205,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,41537.0,,3376.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0021381220140055876,0.0005741800242269899,0.0,0.002712319768593998,0.001084920815293031,0.0005578149006362812,0.000586591277221027,0.0,0.0004829927754436584,0.001084920815293031,0.0005578149006362812,0.0003999792232749712,0.0,9.540707480130414e-05,0.0,0.00018661205394605575,0.0003875857006423542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.836388583444371e-05,0.0,0.0,0.00025479667585403783,9.792133921901164e-05,0.0002931605616884816,0.00012928832662063153,6.647393436528333e-05,4.7664902112025275e-05,0.0,1.1369512756097699e-05,0.0,1.2468499827307317e-05,2.589657066270194e-05,0.0,0.0,0.0,0.000117263458122308,6.0291316489392564e-05,6.340160563030623e-05,0.0,5.220418144647478e-05 +95355,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,33735.0,,1404.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002974759955333976,0.00040898051642932826,0.0,0.0033837708453627415,0.0019151161917491278,0.0011849348612655742,0.0002836590451491643,0.0,0.0,0.0015061356753197995,0.0011849348612655742,0.0002836590451491643,0.0,0.0,0.00040898051642932826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7326671115031636e-05,0.0,0.0,0.0003544974329069471,0.00011823853154236483,0.0003818241040219788,0.00017948380324035146,0.00014120681089827157,3.380319919458009e-05,0.0,0.0,2.7326671115031636e-05,0.0,0.0,0.0,0.0,0.0,0.0002161013725308003,0.0001337078402774152,3.2008036510580864e-05,0.0,0.0 +95356,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,12326.0,,131.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0013342632241678987,4.86292718339639e-05,0.0,0.0013828924960018628,0.0008279375707380928,0.00016398332940345436,0.0003417223492459981,0.0,4.9326743461861385e-05,0.0008279375707380928,0.00016398332940345436,0.0002930930774120342,0.0,4.9326743461861385e-05,0.0,4.86292718339639e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2494198064888717e-06,0.0,0.0,0.00015900165866839565,5.310418262078838e-05,0.00016225107847488452,9.86637753606206e-05,1.954158736959547e-05,3.492735511900287e-05,0.0,5.878175973888239e-06,0.0,3.2494198064888717e-06,0.0,0.0,0.0,0.0,9.713970113404289e-05,1.923972552062852e-05,4.009336941550636e-05,0.0,5.787374902589816e-06 +95357,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,NaturalGas,4483.0,,772.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010765979788645646,0.0006124458810395715,0.0,0.001689043859904136,0.0012379594797299537,0.00017823374390820752,0.00024109111995008114,0.0,3.175951631589404e-05,0.0006571904079325368,0.00017823374390820752,0.00024109111995008114,0.0,0.0,0.0005807690717974167,0.0,3.175951631589404e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0921366852834985e-05,0.0,0.0,0.00012829162996809518,8.386047660205306e-05,0.00016921299682093018,7.831338186421484e-05,2.123903069687679e-05,2.8729361708304332e-05,0.0,0.0,3.8804839708387205e-05,0.0,2.122053324981584e-06,0.0,0.0,0.0,0.00012402213967366974,1.7855940071937355e-05,2.4153162556704118e-05,0.0,3.181754518618998e-06 +95358,50.0,the Greater Atlanta and Macon Area,G1300670031205,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,15375.0,,1406.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013699226459168569,0.00041397209934971273,0.0,0.0017838947452665699,0.0008732727472011327,0.0004155679588771934,0.0004950847287945412,0.0,0.0,0.00045930064785141986,0.0004155679588771934,0.0004950847287945412,0.0,0.0,0.00041397209934971273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.765981958175409e-05,0.0,0.0,0.00016325035046052964,7.963326678531719e-05,0.00019091017004228372,5.473374131888271e-05,4.952222311900246e-05,5.899804322839876e-05,0.0,0.0,2.765981958175409e-05,0.0,0.0,0.0,0.0,0.0,9.34565501153196e-05,4.4473559835232574e-05,5.298334445476491e-05,0.0,0.0 +95359,85.0,Rural Climate Zone 3A,G1302770960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,38687.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.003324052637316783,0.0,0.0,0.003324052637316783,0.0010176980344381219,0.0010032739194782017,0.0013030806834004602,0.0,0.0,0.0010176980344381219,0.0010032739194782017,0.0013030806834004602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003961195669048646,0.00013172939372865097,0.0003961195669048646,0.00012127669102345276,0.00011955780302909124,0.00015528507285232065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012127669102345276,0.00011955780302909124,0.00015528507285232065,0.0,0.0 +95360,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,25372.0,,3805.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005865964646923277,0.002951337721218194,0.0,0.008817302368141473,0.0033387417328995107,0.0007828941016694857,0.0033897648870157516,0.0004169181975013291,0.0008889834490553939,0.0020778795425119576,0.0007828941016694857,0.002588191944457436,0.0004169181975013291,0.0,0.001260862190387553,0.0008015729425583154,0.0008889834490553939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001971935818518216,0.0,0.0,0.0006990349208970282,0.0003870655394249031,0.0008962285027488497,0.00024761662387366197,9.329587704186462e-05,0.00030842950137946733,4.96832825891194e-05,0.0,8.424448674800552e-05,5.355708312274603e-05,5.939741469297587e-05,0.0,0.0,0.0,0.00033936405710132696,7.957672077633925e-05,0.00034455026974436253,4.237735719095282e-05,9.036009793586796e-05 +95361,50.0,the Greater Atlanta and Macon Area,G1301210003900,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,195720.0,,30666.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008913194528751906,0.005214960283034451,0.0,0.014128154811786354,0.006642999052528344,0.0021581218616874074,0.0019667758012421976,0.0,0.0033602935570512466,0.00503333046064743,0.0021581218616874074,0.0012602386290145133,0.0,0.00046152130776397435,0.0016096685918809137,0.0007065371722276841,0.0028987722492872727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034843364303164436,0.0,0.0,0.0010621675703000122,0.0005950795708496152,0.0014106012133316564,0.000599811926987253,0.0002571790671510045,0.00015018011760661114,0.0,5.49985714468624e-05,0.00010754879444955856,4.720674894830104e-05,0.0001936792842745272,0.0,0.0,0.0,0.00066325876581138,0.000215473949512089,0.000196369332622906,0.0,0.0003355027058999016 +95362,50.0,the Greater Atlanta and Macon Area,G1301350050606,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,373538.0,,6144.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.019227974127758982,0.0010448679288451316,0.0,0.020272842056604116,0.011608244925322772,0.007538896484722193,0.0008724756247579585,0.0,0.00025322502180119414,0.010816602018278835,0.007538896484722193,0.0008724756247579585,0.0,0.0,0.0007916429070439375,0.0,0.00025322502180119414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.981189603526194e-05,0.0,0.0,0.002291361206309357,0.0007445382798371753,0.002361173102344619,0.0012889939462208066,0.0008983959947468338,0.00010397126534171737,0.0,0.0,5.2892897559491785e-05,0.0,1.691899847577016e-05,0.0,0.0,0.0,0.0013520095311042846,0.0008780534841333546,0.0001016170289236145,0.0,2.9493058183365752e-05 +95363,85.0,Rural Climate Zone 3A,G1302850960400,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,78163.0,,23478.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,571051.7977528209,0.0,0.0,0.016376573800657976,0.01625143618323934,0.0,0.03262800998389732,0.027282093440921456,0.0027818222252803245,0.0008111573355164048,0.000728165259373712,0.001024843889828155,0.011030657257682114,0.0027818222252803245,0.0008111573355164048,0.000728165259373712,0.001024843889828155,0.01625143618323934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010858252522908222,0.0,0.0,0.0019515647467869168,0.0015811612177732879,0.0030373899990777387,0.001314502172433452,0.00033150439480004616,9.666405680215113e-05,8.677405099054312e-05,0.00012212867176577828,0.0010858252522908222,0.0,0.0,0.0,0.0,0.0,0.002539730673499722,0.000258963970234429,7.551184334539608e-05,6.778598748710377e-05,9.540424264661653e-05 +95364,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,51329.0,,1539.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.012049873892872005,0.001193424297308401,0.0,0.013243298190180407,0.004597582403710351,0.0004658389712577884,0.007127878027490721,0.0004142497916600677,0.0006376681352784098,0.004597582403710351,0.0004658389712577884,0.005934453730182321,0.0004142497916600677,0.0006376681352784098,0.0,0.001193424297308401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.973736982094198e-05,0.0,0.0,0.0014359564097237178,0.0005115264073096545,0.0015156937795446598,0.0005478835696152943,5.551298400495463e-05,0.000707195523191742,4.936521733334188e-05,7.59894795804673e-05,0.0,7.973736982094198e-05,0.0,0.0,0.0,0.0,0.0005261927165103601,5.331521052123157e-05,0.0008157847261667354,4.741083553207244e-05,7.298103630800765e-05 +95365,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,16273.0,,552.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014137474037099764,0.00016237870692114542,0.0,0.001576126110631122,0.0006944751009107163,0.00036146218297434347,0.0005201888267460621,0.0,0.0,0.0005320963939895708,0.00036146218297434347,0.0005201888267460621,0.0,0.0,0.00016237870692114542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0848566222755037e-05,0.0,0.0,0.00016847495557383084,6.553693531113746e-05,0.0001793235217965859,6.340942950851124e-05,4.3075110205977946e-05,6.199041585934165e-05,0.0,0.0,1.0848566222755037e-05,0.0,0.0,0.0,0.0,0.0,7.901380483157003e-05,4.1125307936993765e-05,5.9184409028022086e-05,0.0,0.0 +95366,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,179819.0,,,,9.325022323477118,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.04717663527667711,0.0,0.0,0.04717663527667711,0.02275458987540617,0.008460485145652494,0.0155557002018301,0.0,0.00040586005378835254,0.02275458987540617,0.008460485145652494,0.0155557002018301,0.0,0.00040586005378835254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005621945359129677,0.0018515246732871964,0.005621945359129677,0.002711619007983421,0.0010082191093458753,0.0018537417101665563,0.0,4.8365531633824964e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.002711619007983421,0.0010082191093458753,0.0018537417101665563,0.0,4.8365531633824964e-05 +95367,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,DistrictHeating,45313.0,,,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,699376.6742607838,0.03323801163062046,0.009037722081909403,0.010920127880163832,0.0,0.0,0.05319586159269371,0.043858959135768275,0.004585723656523276,0.0042957352339449695,0.0,0.00045553195061523704,0.002038757373853643,0.004585723656523276,0.0042957352339449695,0.0,0.0,0.0,0.0,0.0,0.008582190131294168,0.0,0.00045553195061523704,0.03323801163062046,0.0,0.0,0.0,0.0,0.0,0.0,0.0013013315234496592,0.0003384009938890842,0.0013013315234496592,0.00024295496063562433,0.0005464722407603386,0.0005119148546309988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010729226748139515,0.00011218065791949125,0.00010508666480728228,0.0,1.1143688052522123e-05 +95368,85.0,Rural Climate Zone 3A,G1302770960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,3657.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.0036066908396987733,0.0009725355809274937,0.0005796233447124286,0.0,0.0,0.005158849765338696,0.0047182224680631935,0.00017628367524502513,0.00025271512316792235,0.0,1.1628498862555079e-05,0.00013899604743692598,0.00017628367524502513,0.00025271512316792235,0.0,1.1628498862555079e-05,0.0,0.0,0.0,0.0009725355809274937,0.0,0.0,0.0036066908396987733,0.0,0.0,0.0,0.0,0.0,0.0,6.907113065129999e-05,2.2107414119865533e-05,6.907113065129999e-05,1.6563539478026728e-05,2.100693989573775e-05,3.0114934895438226e-05,0.0,1.385716382097287e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.317163231290493e-05,2.3602379054240717e-06,3.383568059525558e-06,0.0,1.5569237344544046e-07 +95369,50.0,the Greater Atlanta and Macon Area,G1300150960401,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,95548.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.00842557573683348,0.0,0.0,0.00842557573683348,0.006109254670111089,0.0018826468139501711,0.0004336438791727828,0.0,0.0,0.006109254670111089,0.0018826468139501711,0.0004336438791727828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001004059278312327,0.00028487885349193107,0.001004059278312327,0.0007280278555069125,0.0002243513156101809,5.16764876331664e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007280278555069125,0.0002243513156101809,5.16764876331664e-05,0.0,0.0 +95370,50.0,the Greater Atlanta and Macon Area,G1301210003000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,158926.0,,3268.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013630334989287757,0.0009519693535780174,0.0,0.014582304342865775,0.007241005358761158,0.00671004446698982,0.0006312545171147961,0.0,0.0,0.006289036005183141,0.00671004446698982,0.0006312545171147961,0.0,0.0,0.0009519693535780174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.360497211884123e-05,0.0,0.0,0.0016242992230906597,0.00048560781421779436,0.0016879041952095007,0.0007494515949341282,0.0007996223147267543,7.522531342977738e-05,0.0,0.0,6.360497211884123e-05,0.0,0.0,0.0,0.0,0.0,0.00083814759555248,0.0007766887824841956,7.306781717282524e-05,0.0,0.0 +95371,35.0,Eastern Counties in South Carolina and Georgia,G1300510003301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,59430.0,,5444.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0028488790122512446,0.000925773091186637,0.0,0.0037746343730764615,0.001667930559507207,0.0006915550168277395,0.0009201525666164801,0.0,0.0004949962301250342,0.001667930559507207,0.0006915550168277395,0.00039079489605938384,0.0,9.859853985691364e-05,0.0,0.0005293576705570963,0.0003963976902681205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.185418880440684e-05,0.0,0.0,0.00033949522320277076,0.00014395331628455396,0.00040134941200717757,0.0001987639542260362,8.241123044723526e-05,4.6570247417893366e-05,0.0,1.174979111160587e-05,0.0,3.536826638342916e-05,2.648473779254843e-05,0.0,0.0,0.0,0.0001773477595874847,7.353167802268743e-05,9.783800364945671e-05,0.0,5.263197074754867e-05 +95372,50.0,the Greater Atlanta and Macon Area,G1301530020400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5816.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013965089400882057,0.0,0.0,0.0013965089400882057,0.0005231222414011195,0.00036002389198720524,0.00047407694667371016,0.0,3.928586002617103e-05,0.0005231222414011195,0.00036002389198720524,0.00047407694667371016,0.0,3.928586002617103e-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.00016641743383481443,5.1736268742043634e-05,0.00016641743383481443,6.233877814659173e-05,4.2902877671480445e-05,5.6494209697433014e-05,0.0,4.68156831930926e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.233877814659173e-05,4.2902877671480445e-05,5.6494209697433014e-05,0.0,4.68156831930926e-06 +95373,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,DistrictHeating,66531.0,,,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,699376.6742607838,0.03221054579323162,0.00676757498226789,0.018810358438045762,0.0,0.0,0.057788390829387214,0.04027798658801373,0.00455726395762958,0.012471623390660509,0.0,0.0004815168930833938,0.0017814710897556688,0.00455726395762958,0.012471623390660509,0.0,0.0,0.0,0.0,0.0,0.00628596970502644,0.0,0.0004815168930833938,0.03221054579323162,0.0,0.0,0.0,0.0,0.0,0.0,0.0022415905610227646,0.0007546262889602814,0.0022415905610227646,0.00021229413531293232,0.0005430794902265043,0.0014862169354833276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015623683798230877,0.00017677460342634775,0.0004837697134649868,0.0,1.8677864308342234e-05 +95374,50.0,the Greater Atlanta and Macon Area,G1300670031110,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,31671.0,,1291.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008004721424785128,0.0010244098153350618,0.0,0.009029131240120192,0.005354125125587805,0.0012843581480977049,0.0022449181025060213,0.0,0.00014581257100239897,0.004329715310252743,0.0012843581480977049,0.0022449181025060213,0.0,0.00014581257100239897,0.0010244098153350618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.84448615250622e-05,0.0,0.0,0.000953910479018212,0.00038563960090696244,0.0010223553405432743,0.0005159655891118719,0.00015305500732222077,0.0002675234763183102,0.0,1.7376262342010126e-05,6.84448615250622e-05,0.0,0.0,0.0,0.0,0.0,0.0006062397666520967,0.00014542599691578733,0.000254188797365266,0.0,1.651014441126493e-05 +95375,50.0,the Greater Atlanta and Macon Area,G1301170130605,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,12555.0,,1058.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027757321017648964,0.0008396422126014489,0.0,0.003615374314366345,0.001984969769743378,0.0006823333583492863,0.0008462587785005936,0.0,0.00010172970069934811,0.0012470572578412774,0.0006823333583492863,0.0008462587785005936,0.0,0.0,0.0007379125119021008,0.0,0.00010172970069934811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.61017385218538e-05,0.0,0.0,0.00033077447815595937,0.00014527677019869782,0.0003868762166778132,0.0001486075379647673,8.131132698032434e-05,0.0001008457572924459,0.0,0.0,4.930454206973795e-05,0.0,6.7971964521158565e-06,0.0,0.0,0.0,0.00021240887608417442,7.301555115393497e-05,9.055698417055306e-05,0.0,1.0885954899313938e-05 +95376,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,NaturalGas,34452.0,,5224.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028504813225369327,0.0015376720339401002,0.0,0.0043881533564770325,0.0023352028327985022,0.0008709710267288052,0.001181979496949725,0.0,0.0,0.0007975307988584022,0.0008709710267288052,0.001181979496949725,0.0,0.0,0.0015376720339401002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010273806794617538,0.0,0.0,0.0003396862444220715,0.00020466409617284442,0.00044242431236824685,9.504017434993564e-05,0.00010379190164509845,0.0001408541684270374,0.0,0.0,0.0001027380679461754,0.0,0.0,0.0,0.0,0.0,0.000235440838916056,8.781342088338531e-05,0.00011917005256880552,0.0,0.0 +95377,85.0,Rural Climate Zone 3A,G1301050000400,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,31464.0,,1597.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007446779505339763,0.0012668242484649718,0.0,0.008713686460878473,0.004104917483829306,0.001410734556771367,0.0028592662462415966,0.0,0.0003387681740362031,0.0031768614094005374,0.001410734556771367,0.0028592662462415966,0.0,0.0,0.0009280560744287685,0.0,0.0003387681740362031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.464255399128868e-05,0.0,0.0,0.0008874229320809925,0.0003590179804926197,0.0009720654860722811,0.00037858240125461463,0.00016811538408789055,0.0003407350028318264,0.0,0.0,6.200784085240258e-05,0.0,2.2634713138886096e-05,0.0,0.0,0.0,0.0004579288716802029,0.00015737614370263584,0.0003189687907570981,0.0,3.7791679932344265e-05 +95379,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,98125.0,,1466.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.011038612215767173,0.000544802838235484,0.0,0.011583415054002656,0.00605637863557654,0.0013804125968804493,0.003886040671678411,0.0,0.00026062189829102885,0.00605637863557654,0.0013804125968804493,0.0033412378334429266,0.0,0.00026062189829102885,0.0,0.000544802838235484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.640171603914014e-05,0.0,0.0,0.0013154479044972718,0.0004277967539077703,0.0013518496205364118,0.0007217257413600986,0.00016450082876489776,0.0003981681954685858,0.0,3.10577564708127e-05,0.0,3.640171603914014e-05,0.0,0.0,0.0,0.0,0.0007068134157464939,0.00016110190618022296,0.0004535227808816388,0.0,3.0416039886826096e-05 +95380,50.0,the Greater Atlanta and Macon Area,G1300670031207,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,61463.0,,3527.0,,9.325022323477118,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.016452092332823458,0.002989947682841066,0.0,0.019442040015664516,0.009219439910870389,0.0023308670162252684,0.007587072895753431,0.0,0.00030457180865737425,0.006229492228029324,0.0023308670162252684,0.007587072895753431,0.0,0.00030457180865737425,0.002989947682841066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019976861654601218,0.0,0.0,0.001960567479916748,0.0008105132302953505,0.00216033609646276,0.0007423578491777407,0.0002777654039118552,0.0009041383968831138,0.0,3.6295297356296565e-05,0.00019976861654601215,0.0,0.0,0.0,0.0,0.0,0.0010244341032409896,0.0002589983431341986,0.0008430508027956118,0.0,3.384302633249083e-05 +95381,85.0,Rural Climate Zone 3A,G1302370960202,ComStock 90.1-2004,gen3_t5_cfl,1001_5000,Electricity,26741.0,,6413.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006277788615091289,0.004973746766545141,0.0,0.01125153538163643,0.003908244228051152,0.0004555696518080853,0.005925154740129439,0.0004151392602738215,0.0005474275013739328,0.003908244228051152,0.0004555696518080853,0.0009514079735842974,0.0004151392602738215,0.0005474275013739328,0.0,0.004973746766545141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000332316223415387,0.0,0.0,0.0007481084249545126,0.000573979234060994,0.0010804246483698996,0.0004657357252769486,5.4289100122283485e-05,0.00011337691729477948,4.947111111604606e-05,6.523557114445495e-05,0.0,0.000332316223415387,0.0,0.0,0.0,0.0,0.00037528774985923056,4.374591237264198e-05,0.0005689608581856077,3.9863598530554486e-05,5.2566529421864785e-05 +95382,50.0,the Greater Atlanta and Macon Area,G1301210008000,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,56324.0,,16843.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004923934130685704,0.00286432215704811,0.0,0.007788256287733814,0.004185907836576006,0.0009999569233681378,0.0010222439876731444,0.0,0.0015801475401165258,0.002656415939036571,0.0009999569233681378,0.0010222439876731444,0.0,0.0002453172806078506,0.0015294918975394351,0.0,0.0013348302595086751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001913766883024816,0.0,0.0,0.0005867758217096415,0.00033588209701122806,0.0007781525100121231,0.00031656001158035524,0.00011916295584195265,0.0001218188627090993,0.0,2.9233991578234286e-05,0.00010219140099737712,0.0,8.918528730510449e-05,0.0,0.0,0.0,0.00041822900651601694,9.9909268657276e-05,0.00010213604887469854,0.0,0.00015787818596413165 +95383,35.0,Eastern Counties in South Carolina and Georgia,G1301790010501,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,347450.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.03091977834493555,0.0,0.0,0.03091977834493555,0.011781770547294396,0.0073527386352288246,0.011785269162412336,0.0,0.0,0.011781770547294396,0.0073527386352288246,0.011785269162412336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003684652201651155,0.0011153045066677183,0.003684652201651155,0.0014040115780308488,0.0008762121221641593,0.0014044285014561475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014040115780308488,0.0008762121221641593,0.0014044285014561475,0.0,0.0 +95384,50.0,the Greater Atlanta and Macon Area,G1301350050428,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,27626.0,,2663.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002477357089169462,0.000783812544843329,0.0,0.003261138944406493,0.001206439113168994,0.0009534953780633279,0.001101235142780469,0.0,0.0,0.00042262656832566507,0.0009534953780633279,0.001101235142780469,0.0,0.0,0.000783812544843329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.236875947678501e-05,0.0,0.0,0.00029522166814114167,0.00014473514934750903,0.00034759042761792663,5.0363559233076844e-05,0.00011362612895305094,0.00013123197995501388,0.0,0.0,5.236875947678501e-05,0.0,0.0,0.0,0.0,0.0,0.000128589028063544,0.00010162887011030626,0.00011737580051395667,0.0,0.0 +95385,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,69397.0,,7691.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.009348522216100238,0.0028585487185140914,0.0,0.01220707093461433,0.005988995126636888,0.0017544123831285923,0.004137091709297735,0.0,0.0003265717155511137,0.004060602320771644,0.0017544123831285923,0.0035335075122000016,0.0,0.0,0.0019283928058652442,0.0006035841970977335,0.0003265717155511137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001909904319595324,0.0,0.0,0.00111404642348113,0.0004560899785318767,0.0013050368554406622,0.0004838946079460567,0.00020907013916802116,0.0004210816763670521,0.0,0.0,0.00012884320375386392,4.032773896103719e-05,2.1819489244631284e-05,0.0,0.0,0.0,0.0006402731178658944,0.00018756119562900149,0.00044228932426877286,0.0,3.491321767699327e-05 +95386,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,5324.0,,342.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,4088.1751280535877,0.0,0.0,0.0004443281753944734,0.00012713357839620363,0.0,0.000571461753790677,0.0003367625510031715,7.982175297049056e-05,0.00012325873601899535,0.0,3.161871379801955e-05,0.00025759952123680633,7.982175297049056e-05,0.00010690690118717642,0.0,0.0,7.916302976636513e-05,1.6351834831818932e-05,3.161871379801955e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.493768351410823e-06,0.0,0.0,5.294954382466911e-05,2.1026772610081183e-05,6.144331217607994e-05,3.069752920087208e-05,9.512170600751582e-06,1.2739844023045442e-05,0.0,0.0,5.288865815889152e-06,1.0924627382795997e-06,2.11243979724207e-06,0.0,0.0,0.0,3.620855886373139e-05,8.582399178378403e-06,1.3252724168165869e-05,0.0,3.3996299658042593e-06 +95387,50.0,the Greater Atlanta and Macon Area,G1301350050424,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,21391.0,,3327.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004905581126418372,0.0025806718916320625,0.0,0.007486253018050435,0.0033722180970898806,0.0008035944621350287,0.0024067403472516602,0.0004140880700939306,0.0004897737630460726,0.0020828929110622064,0.0008035944621350287,0.0011153127808642032,0.0004140880700939306,0.0004897737630460726,0.0012893251860276748,0.0012914275663874564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017242609201336242,0.0,0.0,0.0005845916136196364,0.00032501606606880827,0.0007570177056329988,0.00024821559291259194,9.576328903937803e-05,0.00013291034873416595,4.934632754786224e-05,5.8365691458192076e-05,8.614551267908707e-05,8.628598200048287e-05,0.0,0.0,0.0,0.0,0.00034100220772632456,8.12603093320596e-05,0.00024337209166426068,4.18730171150611e-05,4.952643324856964e-05 +95388,50.0,the Greater Atlanta and Macon Area,G1300890021214,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6988.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013454786755910531,0.0,0.0,0.0013454786755910531,0.0007218673395966752,0.0002112338663301912,0.0003742495086703661,0.0,3.804525392008141e-05,0.0007218673395966752,0.0002112338663301912,0.0003742495086703661,0.0,3.804525392008141e-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.00016033780107420695,4.776439461581632e-05,0.00016033780107420695,8.602337888957943e-05,2.517228571081415e-05,4.459850933493892e-05,0.0,4.533771114712023e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.602337888957943e-05,2.517228571081415e-05,4.459850933493892e-05,0.0,4.533771114712023e-06 +95389,50.0,the Greater Atlanta and Macon Area,G1301530020900,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Electricity,2551.0,,95.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00061261129518705,7.509802295529113e-05,0.0,0.0006877093181423411,0.0003414148003958611,0.00018923378471553539,0.0001292711562545375,0.0,2.7706869702667985e-05,0.00026631677744056993,0.00018923378471553539,0.0001292711562545375,0.0,2.7706869702667985e-05,7.509802295529113e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.019257462305369e-06,0.0,0.0,7.300095544299153e-05,2.677216228750106e-05,7.80202129052969e-05,3.173526077041079e-05,2.2549775354875743e-05,1.540441384600996e-05,0.0,3.3016498006483276e-06,5.019257462305369e-06,0.0,0.0,0.0,0.0,0.0,3.873330593783111e-05,2.1468460267867627e-05,1.4665735751170061e-05,0.0,3.1433278801292195e-06 +95390,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,2841.0,,105.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00035299379071936413,8.312060910800396e-05,0.0,0.000436114399827368,0.00019535410817224413,0.00012406061060896115,8.89928113434948e-05,0.0,2.7706869702667985e-05,0.00011223349906424019,0.00012406061060896115,8.89928113434948e-05,0.0,2.7706869702667985e-05,8.312060910800396e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.551043479711165e-06,0.0,0.0,4.207018136379767e-05,1.9190078242193683e-05,4.762122484350884e-05,1.3376109679164351e-05,1.4785677611456539e-05,1.0606259406618158e-05,0.0,3.3021346665586266e-06,5.551043479711165e-06,0.0,0.0,0.0,0.0,0.0,2.1331563261970014e-05,1.3546716720133372e-05,9.717511460575671e-06,0.0,3.0254334008297856e-06 +95391,50.0,the Greater Atlanta and Macon Area,G1300970080404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,66611.0,,2074.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005934970893093848,0.0006106004068990945,0.0,0.006545540610386646,0.0016463439298402655,0.0019432351811642426,0.0029559614993821368,0.0,0.0,0.0010357435229411713,0.0019432351811642426,0.0029559614993821368,0.0,0.0,0.0006106004068990945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.079594380291026e-05,0.0,0.0,0.0007072572217463724,0.00025957878036878234,0.0007480531655492828,0.00012342724162802218,0.0002315709950708091,0.00035225532783572373,0.0,0.0,4.079594380291026e-05,0.0,0.0,0.0,0.0,0.0,0.00018815142424532432,0.0002220814620521893,0.0003378202792517691,0.0,0.0 +95392,50.0,the Greater Atlanta and Macon Area,G1300630040613,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7553.0,,252.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001548276420399835,0.00020006841137538463,0.0,0.0017483448317752194,0.0011209289703888335,0.00028194841437729904,0.0003003093847474253,0.0,4.5158062261661854e-05,0.0009208605590134489,0.00028194841437729904,0.0003003093847474253,0.0,4.5158062261661854e-05,0.00020006841137538463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3367938294560298e-05,0.0,0.0,0.00018450097324018168,6.881774433965811e-05,0.00019786891153474197,0.00010973471346453968,3.359849453930445e-05,3.578648685016558e-05,0.0,5.381278386171966e-06,1.3367938294560298e-05,0.0,0.0,0.0,0.0,0.0,0.0001268611267340157,3.190950941018665e-05,3.3987512076382435e-05,0.0,5.110763314157203e-06 +95393,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,15898.0,,604.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003817427695511473,0.0004793701993930258,0.0,0.004296797894904499,0.0020293834683413866,0.0012258842469640148,0.0009612216109982308,0.0,8.030856860086751e-05,0.0015500132689483608,0.0012258842469640148,0.0009612216109982308,0.0,8.030856860086751e-05,0.0004793701993930258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2030742557260773e-05,0.0,0.0,0.0004549131511754216,0.0001689432589385699,0.00048694389373268236,0.00018471113974734767,0.00014608550842191916,0.00011454633510184483,0.0,9.570167904310045e-06,3.2030742557260773e-05,0.0,0.0,0.0,0.0,0.0,0.00022998426086616165,0.00013892597768913264,0.00010893251333849002,0.0,9.10114183889811e-06 +95394,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,30339.0,,4104.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003601306564535921,0.0011956263682676627,0.0,0.004796932932803583,0.0036497220820396964,0.0009323783819406678,0.0002148628424226564,0.0,0.0,0.002454095713772034,0.0009323783819406678,0.0002148628424226564,0.0,0.0,0.0011956263682676627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.98843328632599e-05,0.0,0.0,0.0004291623676469949,0.00021023662446525792,0.0005090467005102548,0.00029245095025406937,0.0001111101503762413,2.560488659352806e-05,0.0,0.0,7.98843328632599e-05,0.0,0.0,0.0,0.0,0.0,0.0003873055991541415,9.894325094859966e-05,2.2801073629683484e-05,0.0,0.0 +95395,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,70250.0,,2493.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006259206583629079,0.0007339726242158597,0.0,0.006993179207844939,0.0022403105701260056,0.002523422188222314,0.002229415759890321,0.0,0.0,0.001506337945910146,0.002523422188222314,0.002229415759890321,0.0,0.0,0.0007339726242158597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.90403252874348e-05,0.0,0.0,0.0007458971298991375,0.0002445741575441303,0.0007949374551865724,0.00017950728027594416,0.0003007111752217516,0.00026567501718243965,0.0,0.0,4.9040325287434804e-05,0.0,0.0,0.0,0.0,0.0,0.0002546633985077527,0.00028684561814410414,0.000253424949947221,0.0,0.0 +95396,50.0,the Greater Atlanta and Macon Area,G1300570090702,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,34112.0,,7147.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.00346651378975072,0.002103833890920121,0.0,0.005570347680670841,0.002639950623334691,0.0015864378183471498,0.0013439592389890003,0.0,0.0,0.00053611673241457,0.0015864378183471498,0.0013439592389890003,0.0,0.0,0.002103833890920121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014056614099002002,0.0,0.0,0.0004130988834677272,0.00027429068032679436,0.0005536650244577473,6.388817036402188e-05,0.00018905324807529808,0.0001601574650284072,0.0,0.0,0.00014056614099002002,0.0,0.0,0.0,0.0,0.0,0.0002623980423174985,0.0001576840771616053,0.00013358290497864352,0.0,0.0 +95397,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,31570.0,,2728.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0029494553028470236,0.0008030242383856911,0.0,0.003752479541232715,0.001588401953150203,0.0009148571637345201,0.0012492511139542896,0.0,0.0,0.0007853777147645118,0.0009148571637345201,0.0012492511139542896,0.0,0.0,0.0008030242383856911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.365253272605643e-05,0.0,0.0,0.0003514822122853997,0.00016104859275896898,0.0004051347450114561,9.359229699077749e-05,0.0001090221708137657,0.00014887140171570434,0.0,0.0,5.3652532726056425e-05,0.0,0.0,0.0,0.0,0.0,0.00017149109360735027,9.877213711063454e-05,0.000134874827682841,0.0,0.0 +95398,50.0,the Greater Atlanta and Macon Area,G1301990970800,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,40932.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0036469993643875103,0.0,0.0,0.0036469993643875103,0.001749583765425738,0.0007423201971288349,0.0011550647122266396,0.0,0.0,0.001749583765425738,0.0007423201971288349,0.0011550647122266396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043460600160103027,0.00016017961525648653,0.00043460600160103027,0.00020849458110214276,8.846089087159271e-05,0.00013764687240508248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020849458110214276,8.846089087159271e-05,0.00013764687240508248,0.0,0.0 +95399,50.0,the Greater Atlanta and Macon Area,G1301390001202,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11862.0,,968.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0009451656673039613,0.0002821099915778389,0.0,0.0012272756588818001,0.0007607675451173698,0.0003857143392600105,8.079377450441985e-05,0.0,0.0,0.000478657553539531,0.0003857143392600105,8.079377450441985e-05,0.0,0.0,0.0002821099915778389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8847937044693084e-05,0.0,0.0,0.00011263513552562114,4.392644396233057e-05,0.00013148307257031423,5.704149047973082e-05,4.5965472910851055e-05,9.628172135039277e-06,0.0,0.0,1.8847937044693084e-05,0.0,0.0,0.0,0.0,0.0,8.150414588597389e-05,4.13231584064352e-05,8.655768277905159e-06,0.0,0.0 +95400,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,41189.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033602920529973595,0.0,0.0,0.0033602920529973595,0.0023859677302331566,0.0006963451407098983,0.00027800955565374243,0.0,0.0,0.0023859677302331566,0.0006963451407098983,0.00027800955565374243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040043801238428325,9.709651341890542e-05,0.00040043801238428325,0.0002843301000147786,8.298179434451224e-05,3.3129737574601785e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002843301000147786,8.298179434451224e-05,3.3129737574601785e-05,0.0,0.0 +95401,50.0,the Greater Atlanta and Macon Area,G1301130140304,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,110390.0,,15122.0,,9.729435225087556,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,729707.6418815667,0.0,0.0,0.029885306192466498,0.013375559211232305,0.0,0.0432608654036988,0.030662974285102677,0.006932800846234479,0.0022151506288644223,0.00065566466721727,0.0027942749762799573,0.019182940704622967,0.006932800846234479,0.0022151506288644223,0.00065566466721727,0.0008988415627801308,0.011480033580479707,0.0,0.0018954334134998266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008936758232238539,0.0,0.0,0.003561371356486642,0.0017353219165109446,0.004455047179710496,0.0022859921567692505,0.0008261678229092317,0.000263975009964254,7.813422925131534e-05,0.00010711312693566394,0.0007670280022428667,0.0,0.00012664165956911762,0.0,0.0,0.0,0.00315770375455093,0.0007139467638775138,0.00022811842688918129,6.752100308821776e-05,0.00028775723130465347 +95402,85.0,Rural Climate Zone 3A,G1303190960400,ComStock 90.1-2007,gen4_led,_1000,Electricity,7988.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.0003501923684074629,0.0,0.0,0.0003501923684074629,0.00018921841707480354,4.716276137734047e-05,2.808489248936364e-05,0.0,8.570856710453525e-05,0.00018921841707480354,4.716276137734047e-05,2.808489248936364e-05,0.0,8.570856710453525e-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,4.17309029725484e-05,1.2595137646903355e-05,4.17309029725484e-05,2.2548336617033904e-05,5.6201813531962326e-06,3.346754610324372e-06,0.0,1.021351754186112e-05,0.0,0.0,0.0,0.0,0.0,0.0,2.2548336617033904e-05,5.6201813531962326e-06,3.346754610324372e-06,0.0,1.021351754186112e-05 +95403,85.0,Rural Climate Zone 3A,G1303170010301,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,54433.0,,,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.012333371798310263,0.0,0.0,0.012333371798310263,0.003791157814167924,0.0008846169667696934,0.006804839199131953,0.00041522012105689,0.0004375376971838037,0.003791157814167924,0.0008846169667696934,0.006804839199131953,0.00041522012105689,0.0004375376971838037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001469743792863914,0.0003696725731566949,0.001469743792863914,0.00045178486112810025,0.0001054180736001155,0.0008109193769486035,4.948096964685495e-05,5.2140511540239955e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00045178486112810025,0.0001054180736001155,0.0008109193769486035,4.948096964685495e-05,5.2140511540239955e-05 +95404,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,24914.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0020931539079285205,0.0,0.0,0.0020931539079285205,0.0011424512840382838,0.0004305137971441747,0.0005201888267460621,0.0,0.0,0.0011424512840382838,0.0004305137971441747,0.0005201888267460621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024943718622710603,9.46419795819477e-05,0.00024943718622710603,0.00013614375541742788,5.1303513699985984e-05,6.19899171096922e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013614375541742788,5.1303513699985984e-05,6.19899171096922e-05,0.0,0.0 +95405,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,272621.0,,34820.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012508238071004651,0.005921391073093614,0.0,0.018429629144098264,0.007080300686592525,0.0029963778889046636,0.006123003012801035,0.0,0.0022299475558000413,0.007080300686592525,0.0029963778889046636,0.0020911010955196076,0.0,0.0003404583999878539,0.0,0.004031901917281427,0.0018894891558121874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003956328410611009,0.0,0.0,0.0014905824986593266,0.000720089145984689,0.0018862153397204275,0.00084374571612489,0.0003570725481252643,0.00024919246645411185,0.0,4.05717679550603e-05,0.0,0.0002693881877962787,0.0001262446532648222,0.0,0.0,0.0,0.000724646798937925,0.00030666997656113835,0.0006266703533531572,0.0,0.000228228210868207 +95406,50.0,the Greater Atlanta and Macon Area,G1301210010119,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7410.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00177935998442746,0.0,0.0,0.0017793599844274598,0.0011425155166347929,0.0002884822732027043,0.00030212894036969,0.0,4.623325422027285e-05,0.0011425155166347929,0.0002884822732027043,0.00030212894036969,0.0,4.623325422027285e-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.00021204285484528843,6.602648748494656e-05,0.00021204285484528843,0.00013615134316411707,3.437786918752282e-05,3.600411586640507e-05,0.0,5.50952662724348e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001361513431641171,3.4377869187522825e-05,3.600411586640507e-05,0.0,5.509526627243481e-06 +95407,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,40310.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0033477781300290063,0.0,0.0,0.0033477781300290054,0.0017980563395160324,0.0012348386851418003,0.00031488310537117317,0.0,0.0,0.0017980563395160324,0.0012348386851418003,0.00031488310537117317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003989482721357797,0.0001246552839624354,0.0003989482721357797,0.00021427091103151774,0.00014715334788314391,3.7524013221118016e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002142709110315178,0.00014715334788314397,3.752401322111803e-05,0.0,0.0 +95408,50.0,the Greater Atlanta and Macon Area,G1301210004100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,9106.0,,1446.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012597469593081038,0.00042572621856173297,0.0,0.0016855038674761346,0.0006334027843782876,0.0004753513119451184,0.0005767190815464307,0.0,0.0,0.00020767656581655475,0.0004753513119451184,0.0005767190815464307,0.0,0.0,0.00042572621856173297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8445518522809216e-05,0.0,0.0,0.00015012314687624708,7.507652710134015e-05,0.0001785686653990563,2.474866826426535e-05,5.66472768945184e-05,6.872720171746335e-05,0.0,0.0,2.8445518522809216e-05,0.0,0.0,0.0,0.0,0.0,6.710509067881361e-05,5.036051889743418e-05,6.109980444964705e-05,0.0,0.0 +95409,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,3503.0,,189.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00045910696632689554,0.00015019604591058226,0.0,0.0006092203051637385,0.0004026180349629485,0.00011107560003188987,8.518828595148664e-05,0.0,1.0421091291152734e-05,0.00026284308034351896,0.00011107560003188987,8.518828595148664e-05,0.0,0.0,0.00013977495461942952,0.0,1.0421091291152734e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0032495926281835e-05,0.0,0.0,5.470830891372549e-05,2.445998225605251e-05,6.474080484000734e-05,3.132102427090967e-05,1.3236040149726776e-05,1.0151244493089037e-05,0.0,0.0,9.336408653863602e-06,0.0,6.96087272418233e-07,0.0,0.0,0.0,4.2785533255655126e-05,1.180381494707166e-05,9.052814144068362e-06,0.0,1.107431633157877e-06 +95410,50.0,the Greater Atlanta and Macon Area,G1301530021000,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,33759.0,,1685.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.001737734992417955,0.00028654037090947333,0.0,0.0020242753633274283,0.000971038703892032,0.0002724624639419514,0.0004920707204907254,0.0,0.0002887034750027198,0.0008740181662015029,0.0002724624639419514,0.000302550887271781,0.0,0.0002887034750027198,9.702053769052893e-05,0.0001895198332189444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9145341934977922e-05,0.0,0.0,0.00020708246675129477,7.622521988904592e-05,0.0002262278086862727,0.0001041550286045677,3.246881680832522e-05,3.605439513354992e-05,0.0,3.440422620485193e-05,6.4824770167810896e-06,1.266286491819683e-05,0.0,0.0,0.0,0.0,0.00010852078828344661,3.04497042662867e-05,5.499255824183346e-05,0.0,3.226475789470595e-05 +95411,50.0,the Greater Atlanta and Macon Area,G1301210011414,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,72100.0,,1990.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003430151181046255,0.0003384194084245478,0.0,0.0037685705894708026,0.001428322455276614,0.0007371929671229554,0.0010088930255238448,0.0,0.0005941621415473894,0.001428322455276614,0.0007371929671229554,0.0006704736170992968,0.0,0.0005941621415473894,0.0,0.0003384194084245478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.261154570281788e-05,0.0,0.0,0.00040876445238046224,0.00012473236739390768,0.00043137599808328015,0.0001702104121474258,8.784985372359875e-05,7.989903839910258e-05,0.0,7.080514811033522e-05,0.0,2.261154570281788e-05,0.0,0.0,0.0,0.0,0.00016349541824987602,8.438407731067483e-05,0.00011548469784818944,0.0,6.801180467454e-05 +95412,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,NaturalGas,36270.0,,13859.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007348571670201538,0.009533592307163144,0.0,0.01688209225739367,0.00519008742251571,0.0006920260003296311,0.008504769322944205,0.00037315900919422434,0.0021221222223809155,0.0033277349351533377,0.0006920260003296311,0.0026853391547665088,0.00037315900919422434,0.000270312570757838,0.001862352487362372,0.005819430168177696,0.0018518096516230772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006369767235676077,0.0,0.0,0.0008757125148552532,0.0008850649091651015,0.0015126892384228607,0.00039655857758748514,8.246715910130916e-05,0.00032000573852950746,4.4468507493430575e-05,3.221253214352101e-05,0.00012443107983931202,0.0003888189721277628,0.00012372667160053284,0.0,0.0,0.0,0.00046504836431485224,6.200773384288214e-05,0.0007620544203845467,3.343623579485084e-05,0.00019014891042357129 +95413,50.0,the Greater Atlanta and Macon Area,G1301690030301,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,14975.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.002219896811029177,0.0,0.0,0.002219896811029177,0.001821252216219894,0.00016389086190324106,0.0002231252340434864,0.0,1.1628498862555079e-05,0.001821252216219894,0.00016389086190324106,0.0002231252340434864,0.0,1.1628498862555079e-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.0002645412025553994,0.0001017088038438138,0.0002645412025553994,0.00021703542662063161,1.9530586052611992e-05,2.6589442104272224e-05,0.0,1.3857477778835292e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00021703542662063161,1.9530586052611992e-05,2.6589442104272224e-05,0.0,1.3857477778835292e-06 +95414,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,11738.0,,2678.0,,8.72605822017302,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0025267838098095813,0.0021244966031415896,0.0,0.0046512804129511705,0.0035699681308834657,0.0006197241035286305,0.00038136231701194653,0.0,8.030856860086751e-05,0.0015257800963427435,0.0006197241035286305,0.00038136231701194653,0.0,0.0,0.002044188034540722,0.0,8.030856860086751e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001419476905067719,0.0,0.0,0.00030111055833048194,0.00022907491171717244,0.0004430582488372539,0.00018182342902296915,7.385098404537662e-05,4.544600125893922e-05,0.0,0.0,0.00013658189428759194,0.0,5.365796219179956e-06,0.0,0.0,0.0,0.0003400577234754299,5.903189051064305e-05,3.6326711216412e-05,0.0,7.649801906557375e-06 +95415,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,49813.0,,13019.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.010009669474764771,0.00895552934077732,0.0,0.01896519881554209,0.007481755656377529,0.0005924069605889473,0.006375475103461728,0.0003824108854552382,0.004133078489687633,0.007481755656377529,0.0005924069605889473,0.0010545704538135448,0.0003824108854552382,0.0004985255185295124,0.0,0.005320904649648184,0.003634552971158121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005983545977395783,0.0,0.0,0.001192833965861196,0.0009738207117851907,0.0017911885636007743,0.0008915871092148096,7.059605174622387e-05,0.0001256712281932779,4.557120434756243e-05,5.940837235932228e-05,0.0,0.00035551084029774893,0.0002428389655448042,0.0,0.0,0.0,0.0007066224455488674,5.595051141435064e-05,0.000602138591000882,3.611720664180601e-05,0.0003903530353252056 +95416,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,64454.0,,3295.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003100348728271853,0.0005602971512350885,0.0,0.003660645879506942,0.0015200593452639672,0.000654055302424328,0.00098385775519873,0.0,0.0005027089373427572,0.0014059290088030872,0.000654055302424328,0.0005376909404245213,0.0,0.0005027089373427572,0.00011413033646087989,0.0004461668147742087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.743577974071356e-05,0.0,0.0,0.0003694632771132427,0.00013484467075762345,0.0004068990568539563,0.0001675421652552289,7.794265633520577e-05,6.407571351951664e-05,0.0,5.990696779723193e-05,7.6255217933284775e-06,2.981025794738509e-05,0.0,0.0,0.0,0.0,0.00016896218162278475,7.270151072974977e-05,0.00010936069913507588,0.0,5.587860700264563e-05 +95417,50.0,the Greater Atlanta and Macon Area,G1300670030104,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,27471.0,,4277.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,14029.891188970922,0.0,0.0,0.001483127002425997,0.0007274235379805062,0.0,0.002210550540406503,0.0010533962326881772,0.00033710736167946395,0.0005381696601828627,0.0,0.00028187728585599945,0.0005493575182389161,0.00033710736167946395,0.0005381696601828627,0.0,5.8492462324754206e-05,0.000504038714449261,0.0,0.00022338482353124523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.860261356984852e-05,0.0,0.0,0.00017674136335601523,9.886151833520728e-05,0.00022534397692586375,6.546586811824142e-05,4.017242933553201e-05,6.41326328102563e-05,0.0,6.970433091985491e-06,3.367721496974319e-05,0.0,1.4925398600105336e-05,0.0,0.0,0.0,0.00010738342870415654,3.436479381189201e-05,5.486112589135634e-05,0.0,2.8734628518458903e-05 +95418,50.0,the Greater Atlanta and Macon Area,G1301210001201,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,44467.0,,1673.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002288936468244557,0.00028453684006900736,0.0,0.002573473308313564,0.0009813223135156624,0.0006866614370758049,0.0005144641669642522,0.0,0.00039102539075784457,0.0009007732815843626,0.0006866614370758049,0.00031047635882654466,0.0,0.00039102539075784457,8.054903193129988e-05,0.00020398780813770748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.901098561514979e-05,0.0,0.0,0.0002727673193921697,8.766951809420318e-05,0.0002917783050073195,0.00010734309003617272,8.1827871642408e-05,3.699875698022637e-05,0.0,4.65976007333626e-05,5.38178636899461e-06,1.3629199246155181e-05,0.0,0.0,0.0,0.0,0.00011126152362975034,7.78531137574389e-05,5.832952770052281e-05,0.0,4.433413991960746e-05 +95419,50.0,the Greater Atlanta and Macon Area,G1300890020300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,228891.0,,39809.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.04121776203168874,0.027555245621965013,0.0,0.06877300765365375,0.056568914606336694,0.006887115480457033,0.0022941174856522233,0.0007424543298748017,0.0022804779183557286,0.030042554227472876,0.006887115480457033,0.0022941174856522233,0.0007424543298748017,0.0012515205082318053,0.026526360378863818,0.0,0.0010289574101239232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018410809186121574,0.0,0.0,0.004911840277089908,0.002944237947378461,0.006752921195702066,0.003580112568161991,0.0008207241136447572,0.00027338550447594844,8.847683381196505e-05,0.0001491412569952467,0.0017723368030813824,0.0,6.874893731063923e-05,0.0,0.0,0.0,0.005554583629478594,0.0006762558406554615,0.00022526271749391164,7.290266562576245e-05,0.00022392342863278517 +95420,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970301,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,79461.0,,1972.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.016545223553533345,0.001356583251760283,0.0,0.01790180680529363,0.009707513236876004,0.0006298447854590963,0.004397725182735238,0.00036856893104922524,0.0027980829492030494,0.009707513236876004,0.0006298447854590963,0.003041141930974956,0.00036856893104922524,0.0027980829492030494,0.0,0.001356583251760283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.063947678789932e-05,0.0,0.0,0.001971660572060299,0.0007239402425815276,0.002062300048848198,0.0011568245687326724,7.505731947286228e-05,0.0003624066861316078,4.392160837748113e-05,0.0003334418426228933,0.0,9.063947678789932e-05,0.0,0.0,0.0,0.0,0.0011183119804803157,7.255853813789226e-05,0.0005066208655817897,4.245938595885087e-05,0.0003223410165009939 +95421,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,190004.0,,5810.0,,9.325022323477118,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.051370905497175,0.004925472360086521,0.0,0.05629637785726152,0.02161010341275256,0.011149484770316439,0.022941080448902126,0.0,0.0005957092252903954,0.01668463105266604,0.011149484770316439,0.022941080448902126,0.0,0.0005957092252903954,0.004925472360086521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032909007537375735,0.0,0.0,0.006121773602350668,0.0024307437683042635,0.006450863677724426,0.001988275911328604,0.0013286630026501567,0.002733845147214996,0.0,7.098954115691139e-05,0.00032909007537375735,0.0,0.0,0.0,0.0,0.0,0.0024762486767914292,0.0012775920772831518,0.002628762066554303,0.0,6.826085709554211e-05 +95422,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,18668.0,,665.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016133526030702354,0.00019589175699823687,0.0,0.0018092136704621745,0.0007068123226423928,0.0004942867990308011,0.0006081145487889806,0.0,0.0,0.000510920565644156,0.0004942867990308011,0.0006081145487889806,0.0,0.0,0.00019589175699823687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3087357646061275e-05,0.0,0.0,0.00019225962542912984,8.253658512001572e-05,0.0002053469830751911,6.088526239574194e-05,5.89030535887686e-05,7.246765223279831e-05,0.0,0.0,1.3087357646061275e-05,0.0,0.0,0.0,0.0,0.0,8.022367972595884e-05,5.610188813626387e-05,6.902141521296837e-05,0.0,0.0 +95423,50.0,the Greater Atlanta and Macon Area,G1300670031112,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,7902.0,,1018.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0003996423464079902,0.00017304832745971535,0.0,0.0005726906738677055,0.00025824271408306904,9.663046973928778e-05,7.230441387097534e-05,0.0,0.00014551307617437334,0.00018530000720097187,9.663046973928778e-05,7.230441387097534e-05,0.0,4.540745559675523e-05,7.294270688209722e-05,0.0,0.0001001056205776181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1562009258132376e-05,0.0,0.0,4.762467899662381e-05,2.566016846851007e-05,5.9186688254756185e-05,2.2081877559614705e-05,1.151528396324755e-05,8.61639045910523e-06,0.0,5.411127014656325e-06,4.873576443438175e-06,0.0,6.6884328146941986e-06,0.0,0.0,0.0,2.6688981870914045e-05,9.986608389734405e-06,7.47254844281411e-06,0.0,1.5038549551293622e-05 +95424,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock 90.1-2004,gen3_t5_cfl,1001_5000,NaturalGas,5348.0,,405.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010679137361219375,0.00032098615318225203,0.0,0.0013889825963779286,0.0007074763087660357,0.00026358744400717274,0.0003721818318268834,0.0,4.5737011777837006e-05,0.00043222716736162064,0.00026358744400717274,0.0003721818318268834,0.0,0.0,0.00027524914140441507,0.0,4.5737011777837006e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1447088076236452e-05,0.0,0.0,0.00012726560495960812,6.0087580708304484e-05,0.00014871269303584454,5.1509452564971505e-05,3.141228957607427e-05,4.435371920060691e-05,0.0,0.0,1.839111288784203e-05,0.0,3.0559751883944245e-06,0.0,0.0,0.0,7.574659856071303e-05,2.8221230957796632e-05,3.984798848763252e-05,0.0,4.896875029702397e-06 +95425,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,45286.0,,804.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003974273325946212,0.00023661686455528843,0.0,0.004210890190501501,0.0008223280007469462,0.0018567518706173163,0.001531810319137239,0.0,0.0,0.0005857111361916577,0.0018567518706173163,0.001531810319137239,0.0,0.0,0.00023661686455528843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.581011674396212e-05,0.0,0.0,0.0004736060621519855,0.00016612435331217213,0.0004894161788959476,6.9798003816019e-05,0.00022126534078454105,0.00018254271755142553,0.0,0.0,1.581011674396212e-05,0.0,0.0,0.0,0.0,0.0,9.557613941882034e-05,0.00021580339656570438,0.00017803664291142298,0.0,0.0 +95426,50.0,the Greater Atlanta and Macon Area,G1301350050423,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,43096.0,,4.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.003785256040758661,1.258273858205814e-06,0.0,0.0037865450042231653,0.001422678079142608,0.0011011737635678734,0.0012626931615126835,0.0,0.0,0.0014214198052844022,0.0011011737635678734,0.0012626931615126835,0.0,0.0,1.258273858205814e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.488596229529185e-08,0.0,0.0,0.0004510822284706585,0.0001614067400019989,0.00045116711443295377,0.00016938806951392107,0.00013122491843486054,0.0001504728977476632,0.0,0.0,8.488596229529185e-08,0.0,0.0,0.0,0.0,0.0,0.00016951219727163148,0.0001312049345363895,0.0001504499826249327,0.0,0.0 +95427,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,65467.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.00552802671358631,0.0,0.0,0.005528026713586309,0.0016607373551938886,0.0016378735985020999,0.002229415759890321,0.0,0.0,0.0016607373551938886,0.0016378735985020999,0.002229415759890321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006587628779485974,0.000218205076501233,0.0006587628779485974,0.00019790644588157466,0.00019518182189920828,0.00026567461016781436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001979064458815747,0.0001951818218992083,0.0002656746101678144,0.0,0.0 +95428,50.0,the Greater Atlanta and Macon Area,G1301510070307,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5063.0,,541.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012157112768940797,0.0004290015914857876,0.0,0.0016447128683798674,0.0008960484368916565,0.0004188286214158528,0.0002876552024653112,0.0,4.2097900533307484e-05,0.00046704684540586894,0.0004188286214158528,0.0002876552024653112,0.0,4.2097900533307484e-05,0.0004290015914857876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.866544322275153e-05,0.0,0.0,0.00014486950321102233,7.08899142174179e-05,0.00017353494643377386,5.565535646184387e-05,4.990946079737514e-05,3.427825921273119e-05,0.0,5.016571000368078e-06,2.866544322275153e-05,0.0,0.0,0.0,0.0,0.0,9.45427742966663e-05,4.41909367766585e-05,3.0350726324885123e-05,0.0,4.441782547258922e-06 +95429,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,84545.0,,1118.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.004351952671274801,0.00019005174406154597,0.0,0.004542004415336347,0.0027998191022019577,0.0004814679643615339,0.000784391189223136,0.0,0.0004763261595497185,0.0027998191022019577,0.0004814679643615339,0.00059433944516159,0.0,0.0004763261595497185,0.0,0.00019005174406154597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2697812931866289e-05,0.0,0.0,0.0005186135679690002,0.00017969690579394237,0.0005313113809008665,0.0003336488891170281,5.737558234684664e-05,7.082625283920627e-05,0.0,5.676284366591915e-05,0.0,1.2697812931866287e-05,0.0,0.0,0.0,0.0,0.00032751525921918064,5.6320819094913284e-05,9.175595789942786e-05,0.0,5.571934468734469e-05 +95430,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,29123.0,,357.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.003288849964503071,0.00013251960930052314,0.0,0.0034214083222273667,0.0020642060311863945,0.0003838806343100242,0.0009059768962150676,0.0,6.734476051587988e-05,0.0020642060311863945,0.0003838806343100242,0.0007734572869145446,0.0,6.734476051587988e-05,0.0,0.00013251960930052314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.8545431357784e-06,0.0,0.0,0.0003919281361522629,0.00013128624130868868,0.00040078267928804126,0.0002459888505614401,4.5746574983334334e-05,9.217193734150972e-05,0.0,8.025390867168171e-06,0.0,8.8545431357784e-06,0.0,0.0,0.0,0.0,0.00024180043592190686,4.496765502850148e-05,0.00010612584457670266,0.0,7.888743760930209e-06 +95431,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,28630.0,,2516.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002458022637201909,0.0007405708895698658,0.0,0.003198593526771775,0.001091721364828181,0.0008845051431060919,0.0012223363292312042,0.0,0.0,0.0003511504752583153,0.0008845051431060919,0.0012223363292312042,0.0,0.0,0.0007405708895698658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9481114527283994e-05,0.0,0.0,0.00029291681888428503,0.00013675988297504318,0.000342397933411569,4.184578229900228e-05,0.00010540441283338092,0.00014566296654317093,0.0,0.0,4.9481114527283994e-05,0.0,0.0,0.0,0.0,0.0,0.0001168648457672872,9.468309447780577e-05,0.00013084670795449592,0.0,0.0 +95432,50.0,the Greater Atlanta and Macon Area,G1300670030505,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,13280.0,,106.0,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003218132239196452,8.419580106661495e-05,0.0,0.003302328040263067,0.0012152977415253834,0.0004791220781718079,0.0015237124194992606,0.0,8.419580106661495e-05,0.0012152977415253834,0.0004791220781718079,0.0015237124194992606,0.0,0.0,0.0,0.0,8.419580106661495e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.624698687376056e-06,0.0,0.0,0.0003834965267299969,0.00011952913518583085,0.00038912122541737295,0.00014482390037960869,5.709574349388003e-05,0.00018157688285650817,0.0,0.0,0.0,0.0,5.624698687376056e-06,0.0,0.0,0.0,0.0001432014447576357,5.645610245549091e-05,0.00017954268523002058,0.0,9.920992974225748e-06 +95433,85.0,Rural Climate Zone 3A,G1300810010400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,50559.0,,2178.0,,3.3063363735822096,Lodging,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,57860.88653768867,0.0,0.0,0.0044852857659637875,0.0006545572697740845,0.0,0.005139843035737873,0.0015020000662135347,0.0009115603898687496,0.001962857020744951,0.0,0.000763425558910637,0.0015020000662135347,0.0009115603898687496,0.0013082997509708664,0.0,0.000763425558910637,0.0,0.0006545572697740845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.373290937489691e-05,0.0,0.0,0.0005345030118753675,0.00025407996844812057,0.0005782359212502644,0.00017899050386494761,0.00010862892562798298,0.0001559076040675548,0.0,9.09759783148822e-05,0.0,4.373290937489691e-05,0.0,0.0,0.0,0.0,0.00016897605354212117,0.00010255117873173278,0.000220822781898449,0.0,8.588590707796146e-05 +95434,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,16658.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013794777656643744,0.0,0.0,0.0013794777656643746,0.0008819582068739998,0.0004215551865965576,7.59643721938173e-05,0.0,0.0,0.0008819582068739998,0.0004215551865965576,7.59643721938173e-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.0001643894340347849,4.3292225639169836e-05,0.0001643894340347849,0.0001051010854100458,5.023583580969197e-05,9.052512815047163e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010510108541004578,5.023583580969196e-05,9.052512815047162e-06,0.0,0.0 +95435,50.0,the Greater Atlanta and Macon Area,G1301350050524,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,3269.0,,492.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007849728368597667,0.000390377388049531,0.0,0.0011754329319830369,0.0007090477431670825,0.00026350473693343346,0.00016003818768555987,0.0,4.275955712322194e-05,0.0003186703551175515,0.00026350473693343346,0.00016003818768555987,0.0,4.275955712322194e-05,0.000390377388049531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6084516638172787e-05,0.0,0.0,9.354631781134018e-05,4.978066502748025e-05,0.00011963083444951298,3.79763947452422e-05,3.140223038109049e-05,1.907197607891089e-05,0.0,5.0957166060966055e-06,2.6084516638172787e-05,0.0,0.0,0.0,0.0,0.0,7.21640264379169e-05,2.681845191079007e-05,1.6288042827174757e-05,0.0,4.35189568043894e-06 +95436,50.0,the Greater Atlanta and Macon Area,G1301210002800,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,274997.0,,37669.0,,9.525004485617233,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.0,0.068726085417239,0.03261811815092106,0.0,0.10134420356816007,0.033475864851184554,0.004337394218235908,0.0440461642568946,0.0006680692118671575,0.018816620750354614,0.033475864851184554,0.004337394218235908,0.020780924792490513,0.0006680692118671575,0.009463832343460864,0.0,0.023265239464404085,0.009352788406893754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002179349447501416,0.0,0.0,0.008189957874766176,0.004596249590100786,0.01036930732226759,0.0039892556267113735,0.0005168790819081916,0.0024764235823402547,7.961254695946669e-05,0.0011277870368468885,0.0,0.0015544454937019545,0.0006248979218497919,0.0,0.0,0.0,0.0034251739941610787,0.0004437922648083746,0.004506702874621153,6.835531511909856e-05,0.00192527363635314 +95437,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock 90.1-2007,gen5_led,100001_200000,NaturalGas,57178.0,,9842.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.008608066291230058,0.0028969760760779524,0.0,0.01150504236730801,0.005113901166205108,0.002037912616592656,0.004353197894903949,0.0,0.0,0.002216925090127156,0.002037912616592656,0.004353197894903949,0.0,0.0,0.0028969760760779524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019355847643136138,0.0,0.0,0.0010258059733580323,0.0004768219661326557,0.0012193644497893936,0.00026418651100034286,0.00024285395401894835,0.0005187618511199889,0.0,0.0,0.0001935584764313614,0.0,0.0,0.0,0.0,0.0,0.0005419979416613033,0.0002159886176092202,0.00046137463787418594,0.0,0.0 +95438,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,31229.0,,2575.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002654288107666257,0.00075022790611247,0.0,0.003404546387378164,0.001998096865413066,0.001080176316804768,0.0003262428315608923,0.0,0.0,0.0012478689593005958,0.001080176316804768,0.0003262428315608923,0.0,0.0,0.00075022790611247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.012606893722702e-05,0.0,0.0,0.0003163079841465717,0.00013056963953858686,0.00036643405308379876,0.00014870688447701913,0.00012872317526667877,3.8877924402873686e-05,0.0,0.0,5.0126068937227015e-05,0.0,0.0,0.0,0.0,0.0,0.00021505676514256187,0.00011626024168133478,3.511377712507992e-05,0.0,0.0 +95439,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970600,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,Electricity,84443.0,,1966.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.009662390950556238,0.00033432369493651564,0.0,0.009996696915131331,0.0061013365111457305,0.0013250608303662262,0.001293784472821253,0.0,0.0012765151007981216,0.0061013365111457305,0.0013250608303662262,0.0009594607778847373,0.0,0.0012765151007981216,0.0,0.00033432369493651564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2337366287268223e-05,0.0,0.0,0.0011514476235077557,0.00039948403076466,0.0011737849897950237,0.0007270839548854542,0.00015790482417196873,0.00011433700397733181,0.0,0.00015211972758162362,0.0,2.2337366287268223e-05,0.0,0.0,0.0,0.0,0.000716402355225062,0.00015558504238484988,0.0001519126574627679,0.0,0.00014988493472234396 +95440,50.0,the Greater Atlanta and Macon Area,G1300890021308,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,10524.0,,899.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0023167905495854796,0.0007134312180752658,0.0,0.0030302217676607453,0.0015061785198665276,0.0004495956528468751,0.000989176601922117,0.0,8.518828595148664e-05,0.0008779355877427483,0.0004495956528468751,0.000989176601922117,0.0,0.0,0.000628242932123779,0.0,8.518828595148664e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.766774222399812e-05,0.0,0.0,0.000276088852880412,0.00012917486615946302,0.00032375659510441005,0.00010462241801105145,5.357771684484932e-05,0.0001178788619323764,0.0,0.0,4.1975906553847626e-05,0.0,5.6918356701504825e-06,0.0,0.0,0.0,0.00016092394108429533,4.803594221812252e-05,0.00010568614218703929,0.0,9.101732980990839e-06 +95441,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,10272.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,5611.956475588368,0.0,0.0,0.00047905663520840666,0.0,0.0,0.00047905663520840666,0.0002383847092926099,0.00018366881395032698,2.1152321174122996e-05,0.0,3.586852115276682e-05,0.0002383847092926099,0.00018366881395032698,2.1152321174122996e-05,0.0,3.586852115276682e-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,5.708878819620999e-05,1.649634277516603e-05,5.708878819620999e-05,2.8408111229062632e-05,2.188766264201263e-05,2.520704849109091e-06,0.0,4.274422388723965e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.8408111229062632e-05,2.188766264201263e-05,2.520704849109091e-06,0.0,4.274422388723965e-06 +95442,81.0,the Columbus-Albany Area,G1300950010700,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,87778.0,,22.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.009787774757313754,6.414127716219881e-06,0.0,0.009794188885029972,0.003188926300787998,0.0024155482220858887,0.004189745051762384,0.0,0.0,0.003182512173071778,0.0024155482220858887,0.004189745051762384,0.0,0.0,6.414127716219881e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.281666111861709e-07,0.0,0.0,0.0011663903489129918,0.00036096101469874133,0.001166818515524178,0.0003792538729188946,0.0002878562496005139,0.0004992838836151158,0.0,0.0,4.281666111861709e-07,0.0,0.0,0.0,0.0,0.0,0.00037990876999408345,0.0002877733341429936,0.0004991400675551904,0.0,0.0 +95443,50.0,the Greater Atlanta and Macon Area,G1300890021308,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,55156.0,,3382.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004621977466859229,0.0009955708282974782,0.0,0.005617517605550411,0.0017945747282581705,0.0015396975479557487,0.0022832453293364914,0.0,0.0,0.000799003899960692,0.0015396975479557487,0.0022832453293364914,0.0,0.0,0.0009955708282974782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.65173675344545e-05,0.0,0.0,0.000550790678036627,0.00021850267527747286,0.0006173080455710815,9.521550093412914e-05,0.00018348230005243939,0.0002720892198385765,0.0,0.0,6.65173675344545e-05,0.0,0.0,0.0,0.0,0.0,0.00019720550889555457,0.0001691970992952539,0.000250905437380273,0.0,0.0 +95444,35.0,Eastern Counties in South Carolina and Georgia,G1300510004210,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,39668.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033547336843002514,0.0,0.0,0.0033547336843002514,0.0022621345653254426,0.0008483042586969706,0.00024429486027783794,0.0,0.0,0.0022621345653254426,0.0008483042586969706,0.00024429486027783794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039977744547122656,0.00010310211288753782,0.00039977744547122656,0.00026957441720939563,0.00010109085889927373,2.911216936255716e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026957441720939563,0.00010109085889927373,2.911216936255716e-05,0.0,0.0 +95445,35.0,Eastern Counties in South Carolina and Georgia,G1300730030102,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,9472.0,,496.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007441001942941017,0.00014608252597706525,0.0,0.0008901827202711668,0.0003426494543138516,0.00032457327620450467,0.000222929300146513,0.0,0.0,0.00019656692833678634,0.00032457327620450467,0.000222929300146513,0.0,0.0,0.00014608252597706525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.759380315828688e-06,0.0,0.0,8.867411369761792e-05,3.521657237212721e-05,9.84334940134466e-05,2.3424799894136877e-05,3.867926365033437e-05,2.6566392885403633e-05,0.0,0.0,9.759380315828688e-06,0.0,0.0,0.0,0.0,0.0,3.7889056080125884e-05,3.5890251419920416e-05,2.4650792957101158e-05,0.0,0.0 +95446,50.0,the Greater Atlanta and Macon Area,G1300670031208,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,25479.0,,2939.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0022467351504105023,0.000856079900153035,0.0,0.0031028150505635374,0.0021290678261886515,0.0007071885157091758,0.00026655870866571,0.0,0.0,0.0012729879260356166,0.0007071885157091758,0.00026655870866571,0.0,0.0,0.000856079900153035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.719792845617535e-05,0.0,0.0,0.0002677386864609179,0.00012392261117603922,0.0003249366149170932,0.00015169928468654223,8.427416299674938e-05,3.176523877762627e-05,0.0,0.0,5.719792845617535e-05,0.0,0.0,0.0,0.0,0.0,0.00022296272291349973,7.405902016655751e-05,2.791487183703598e-05,0.0,0.0 +95447,35.0,Eastern Counties in South Carolina and Georgia,G1300510011104,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,168904.0,,6409.0,,7.56685751697572,Food Service,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,132420.00654707509,0.05555672802770685,0.0,0.03674228459123958,0.004408913498213673,0.0,0.09670792611716011,0.07214813924257424,0.004509966937374669,0.010996321116026535,0.00037681672771602045,0.008676682093468625,0.0165914112148674,0.004509966937374669,0.00658740761781286,0.00037681672771602045,0.008676682093468625,0.0,0.004408913498213673,0.0,0.0,0.0,0.0,0.05555672802770685,0.0,0.0,0.0,0.0002945764652267627,0.0,0.0,0.004378503202763187,0.0018367589036400618,0.00467307966798995,0.0019771646741851964,0.0005374435721495474,0.0007850079458417026,4.490448178480229e-05,0.0010339825288019377,0.0,0.0002945764652267627,0.0,0.0,0.0,0.0,0.003486311992352362,0.00021792872254152072,0.0005313595968104828,1.820837918409029e-05,0.0004192709771014929 +95448,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,34509.0,,2376.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003074730275754246,0.0006993240587057532,0.0,0.0037740236448537026,0.001747312734559708,0.0008985609827904398,0.0011281499275035544,0.0,0.0,0.0010479886758539547,0.0008985609827904398,0.0011281499275035544,0.0,0.0,0.0006993240587057532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.672447773767383e-05,0.0,0.0,0.0003664079396257778,0.00015790837379302098,0.0004131324173634516,0.0001248861971727259,0.00010707927161240018,0.00013443881363679877,0.0,0.0,4.672447773767383e-05,0.0,0.0,0.0,0.0,0.0,0.00019127371788010567,9.836310153353147e-05,0.00012349559794981444,0.0,0.0 +95449,50.0,the Greater Atlanta and Macon Area,G1301350050434,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,37665.0,,1043.0,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.009044101220467008,0.0008274015656880314,0.0,0.009871502786155038,0.005277786496526425,0.002108286016688685,0.002252030910847602,0.0,0.00023339936209232552,0.004683784292930719,0.002108286016688685,0.002252030910847602,0.0,0.0,0.0005940022035957059,0.0,0.00023339936209232552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5282509159898044e-05,0.0,0.0,0.0010777668780514813,0.00033338286670967626,0.0011330493872113794,0.0005581569082215382,0.0002512400937203162,0.00026836987610962665,0.0,0.0,3.968802286949098e-05,0.0,1.5594486290407065e-05,0.0,0.0,0.0,0.0006057834237871873,0.0002419887053697396,0.00025848771952895693,0.0,2.6789538525495472e-05 +95450,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,4085.0,,663.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,3204.5843851935597,0.0,0.0,0.0002398299411604884,0.0001932672132224148,0.0,0.00043309715438290323,0.00033256054024394466,7.921434733365677e-05,2.1352640404739534e-05,0.0,0.0,0.00013929332702152983,7.921434733365677e-05,2.1352640404739534e-05,0.0,0.0,0.0001932672132224148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2913851686474858e-05,0.0,0.0,2.857918882119714e-05,2.223371084626815e-05,4.1493040507672e-05,1.6598804449596007e-05,9.439529438409594e-06,2.5444743846633223e-06,0.0,0.0,1.291385168647486e-05,0.0,0.0,0.0,0.0,0.0,3.186109127698301e-05,7.589161206536826e-06,2.045697978602526e-06,0.0,0.0 +95451,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001702,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,114707.0,,18978.0,,3.3063363735822096,Lodging,Zone-by-Zone,2013 to 2018,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.011150757736656981,0.005704366167719983,0.0,0.016855123904376965,0.005500230291083397,0.002579119227385798,0.005784152772251262,0.0,0.002991621613656506,0.0050825257931268325,0.002579119227385798,0.0034891127161443495,0.0,0.0,0.00041770449795656495,0.0022950400561069124,0.002991621613656506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038113325290751386,0.0,0.0,0.0013288141571169494,0.0008034854117302046,0.001709947410024463,0.0006056747341588079,0.0003073486325486477,0.00041579079040949374,0.0,0.0,2.7908635136569038e-05,0.00015334150305549056,0.00019988311471545432,0.0,0.0,0.0,0.0005579967607555718,0.0002616508942937763,0.0005868006137604516,0.0,0.00030349914121466305 +95452,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000300,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,2605.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006254308916166427,0.0,0.0,0.0006254308916166428,0.0002704521311275353,0.00012133127717556399,0.00020577519946339686,0.0,2.7789576776407296e-05,0.0002704521311275353,0.00012133127717556399,0.00020577519946339686,0.0,2.7789576776407296e-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,7.452842959385734e-05,2.5991047082166246e-05,7.452842959385734e-05,3.222797735677249e-05,1.4458239382992429e-05,2.4520858612736983e-05,0.0,3.311498590787632e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.222797735677248e-05,1.4458239382992425e-05,2.452085861273698e-05,0.0,3.311498590787631e-06 +95453,35.0,Eastern Counties in South Carolina and Georgia,G1302450010504,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,15678.0,,278.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00356111847399336,0.00022016623029403633,0.0,0.003781284704287396,0.00226303095165493,0.0005013702810076816,0.0009468305801675914,0.0,6.997018438345408e-05,0.002112834905744348,0.0005013702810076816,0.0009468305801675914,0.0,0.0,0.00015019604591058226,0.0,6.997018438345408e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4708424021365219e-05,0.0,0.0,0.0004243736896367213,0.0001455078762590657,0.00043908211365808656,0.0002517836884933852,5.974762074872389e-05,0.00011283252430408958,0.0,0.0,1.0033996251990697e-05,0.0,4.674427769374522e-06,0.0,0.0,0.0,0.00026278275539518724,5.821902869693828e-05,0.00010994580015218564,0.0,8.124925482944536e-06 +95454,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,9193.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0022073690910283756,0.0,0.0,0.0022073690910283756,0.0013757494645796396,0.00038243750897055755,0.00037805403406237424,0.0,7.104537634206508e-05,0.0013757494645796396,0.00038243750897055755,0.00037805403406237424,0.0,7.104537634206508e-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.0002630502711392905,8.018505902964108e-05,0.0002630502711392905,0.00016394687737011348,4.557474816396566e-05,4.505237323907592e-05,0.0,8.466416235477183e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016394687737011348,4.557474816396566e-05,4.505237323907592e-05,0.0,8.466416235477183e-06 +95455,50.0,the Greater Atlanta and Macon Area,G1300890021705,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6559.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012802227944107398,0.0,0.0,0.0012802227944107398,0.0005939194965219665,0.0002864973034329609,0.0003512569421708386,0.0,4.8383638137494846e-05,0.0005939194965219665,0.0002864973034329609,0.0003512569421708386,0.0,4.8383638137494846e-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.00015255730000685082,4.608774788808804e-05,0.00015255730000685082,7.077420836935173e-05,3.4140350618498036e-05,4.185741024155923e-05,0.0,5.765619258608936e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.077420836935173e-05,3.4140350618498036e-05,4.185741024155923e-05,0.0,5.765619258608936e-06 +95456,35.0,Eastern Counties in South Carolina and Georgia,G1300510011200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,264765.0,,12652.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.012946461683862676,0.0021515438976005673,0.0,0.015098005581463247,0.00936560243074597,0.003345524165988343,0.0010904526880560876,0.0,0.0012964262966728409,0.008481371576366518,0.003345524165988343,0.0008760394274033889,0.0,0.00024352651410442525,0.0008842308543794534,0.00021441326065269856,0.0010528997825684154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014375392075026164,0.0,0.0,0.0015428040645985906,0.0006205820199945803,0.0016865579853488524,0.0010107081657453438,0.00039867945447467283,0.00010439587451382493,0.0,2.902056986474904e-05,5.9079274332797406e-05,1.4325874045166909e-05,7.034877237229733e-05,0.0,0.0,0.0,0.0010462064993915826,0.00037371959275553243,0.00012181156502843705,0.0,0.00014482032817329985 +95457,85.0,Rural Climate Zone 3A,G1302330010700,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,7939.0,,1420.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0007529081113015424,0.0004179924377747119,0.0,0.0011709005490762542,0.0006721023779196909,0.00022473998691807748,0.00027405818423848583,0.0,0.0,0.00025410994014497904,0.00022473998691807748,0.00027405818423848583,0.0,0.0,0.0004179924377747119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7927336564288323e-05,0.0,0.0,8.972360233119883e-05,5.7062012313948963e-05,0.00011765093889548715,3.0282127228725648e-05,2.678212774105772e-05,3.265934736141546e-05,0.0,0.0,2.7927336564288323e-05,0.0,0.0,0.0,0.0,0.0,6.753218781776449e-05,2.2581653488104537e-05,2.7537097589618123e-05,0.0,0.0 +95458,50.0,the Greater Atlanta and Macon Area,G1300570090100,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,15129.0,,2070.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0013547006011931963,0.0006091886850094002,0.0,0.0019638892862025967,0.0010015553015255303,0.00043585378863997493,0.0005264801960370913,0.0,0.0,0.0003923666165161301,0.00043585378863997493,0.0005264801960370913,0.0,0.0,0.0006091886850094002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.070287234944306e-05,0.0,0.0,0.00016143625135671974,9.36337086714163e-05,0.0002021391237061628,4.6757339350180375e-05,5.193959588981319e-05,6.273931611672618e-05,0.0,0.0,4.070287234944306e-05,0.0,0.0,0.0,0.0,0.0,0.0001030880469769756,4.486154261274728e-05,5.418953411643991e-05,0.0,0.0 +95459,35.0,Eastern Counties in South Carolina and Georgia,G1302450010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,64315.0,,2891.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005435190654535758,0.0008509920930290005,0.0,0.006286182747564759,0.0025070953176719356,0.0015227568852794167,0.0022563305446134064,0.0,0.0,0.0016561032246429352,0.0015227568852794167,0.0022563305446134064,0.0,0.0,0.0008509920930290005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.685840515786042e-05,0.0,0.0,0.0006477010345591985,0.00023415101735443382,0.0007045594397170589,0.00019735458056892652,0.00018146395824303682,0.0002688824957472351,0.0,0.0,5.685840515786042e-05,0.0,0.0,0.0,0.0,0.0,0.0002809968693672636,0.00017067157939902177,0.0002528909909507735,0.0,0.0 +95460,85.0,Rural Climate Zone 3A,G1300550010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,135735.0,,593.0,,7.614023970037612,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,571051.7977528209,0.0,0.0,0.028438858648305122,0.0004106303593494966,0.0,0.02884941684063189,0.022597948496405153,0.0031337807951480746,0.0014720629297031692,0.00077464082201362,0.0008711281314073417,0.022597948496405153,0.0031337807951480746,0.0014720629297031692,0.00077464082201362,0.00046049777205784504,0.0,0.0,0.0004106303593494966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7434992528953663e-05,0.0,0.0,0.003389001079044986,0.0010287910338210055,0.003416436071573939,0.0026929516681951757,0.0003734462985166328,0.00017542275232917913,9.231237491427635e-05,5.4876585087385626e-05,0.0,0.0,2.7434992528953663e-05,0.0,0.0,0.0,0.002676118093241763,0.000371111894846712,0.00017432618899878476,9.173533251852907e-05,0.0001031616544467267 +95461,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,16870.0,,608.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004050909764677538,0.0004824303611213801,0.0,0.0045333401257989184,0.0024645880903576213,0.000933266620074345,0.0009681690051923326,0.0,0.00016731641017461892,0.00214947413941086,0.000933266620074345,0.0009681690051923326,0.0,0.0,0.0003151139509467613,0.0,0.00016731641017461892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.223366757245943e-05,0.0,0.0,0.00048273695573696,0.0001630851595053677,0.0005149706233094194,0.00025614754777859595,0.00011121508827325704,0.00011537431968510696,0.0,0.0,2.1054392842631657e-05,0.0,1.117927472982778e-05,0.0,0.0,0.0,0.00027996806546007054,0.00010601562638516182,0.00010998040787528394,0.0,1.9006523588903077e-05 +95462,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12130.0,,544.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0025648290637296624,0.00043115197540300956,0.0,0.002995981039132672,0.001888616028837085,0.0005694382026951316,0.00046721225955334767,0.0,7.071454804710786e-05,0.0014574640534340754,0.0005694382026951316,0.00046721225955334767,0.0,7.071454804710786e-05,0.00043115197540300956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8805097412910752e-05,0.0,0.0,0.0003056465718502855,9.384732324470403e-05,0.00033445166926319634,0.0001736836570618726,6.785903863755494e-05,5.567693671220738e-05,0.0,8.426939438650613e-06,2.8805097412910752e-05,0.0,0.0,0.0,0.0,0.0,0.0002108327039428304,6.356834537536183e-05,5.2156511695776185e-05,0.0,7.894108249227942e-06 +95463,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970302,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,42528.0,,23393.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002088264237692399,0.003978161191817247,0.0,0.006066425429509646,0.001335078484568556,0.0005177797445498019,0.00352227813898485,0.0,0.0006912713310450187,0.0010849917367387113,0.0005177797445498019,0.00035755046839678484,0.0,0.00012792455764568098,0.00025008674782984477,0.0031647276705880647,0.0005633467733993377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026579702801904056,0.0,0.0,0.0002488542270633453,0.0003331110571688614,0.0005146512550823859,0.00012929627158419032,6.170276528864119e-05,4.260856640792859e-05,0.0,1.524451089126276e-05,1.670930641444296e-05,0.00021144824675836603,3.7639474846231566e-05,0.0,0.0,0.0,0.0001132627155316794,4.392636132845898e-05,0.00029881598085090594,0.0,5.8644693198437124e-05 +95464,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,12889.0,,1157.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010301887042012872,0.00034056256108560775,0.0,0.0013707512652868948,0.000498828860762861,0.00040194177368101325,0.00046998063084302045,0.0,0.0,0.00015826629967725326,0.00040194177368101325,0.00046998063084302045,0.0,0.0,0.00034056256108560775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2754927965707368e-05,0.0,0.0,0.0001227653200083074,6.118033643553582e-05,0.00014552024797401475,1.886024652296357e-05,4.789851632950433e-05,5.600655715583947e-05,0.0,0.0,2.2754927965707368e-05,0.0,0.0,0.0,0.0,0.0,5.295614263001535e-05,4.26705180278892e-05,4.98935873161102e-05,0.0,0.0 +95465,50.0,the Greater Atlanta and Macon Area,G1301350050421,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,56835.0,,7099.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,32736.412774265485,0.0,0.0,0.002775528507056486,0.001207207118007135,0.0,0.003982735625063621,0.0019568822595698076,0.000680934530337128,0.0006182931634400814,0.0,0.0007266079413551839,0.00135663860405534,0.000680934530337128,0.0006182931634400814,0.0,0.00011964447886251635,0.0006002436555144674,0.0,0.0006069634624926675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.065888325594051e-05,0.0,0.0,0.0003307543082305807,0.0001777792725067443,0.0004114131914865212,0.00016166797129354532,8.114563729371508e-05,7.368078801474891e-05,0.0,1.425779873604972e-05,4.010495151418935e-05,0.0,4.0553931741751166e-05,0.0,0.0,0.0,0.00020214426754979725,7.033995592285845e-05,6.386915617606874e-05,0.0,7.505798030659191e-05 +95466,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,39510.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0032234589875302874,0.0,0.0,0.0032234589875302874,0.0021964060961421473,0.0006884783784555206,0.00033857451293261957,0.0,0.0,0.0021964060961421473,0.0006884783784555206,0.00033857451293261957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038413298781126847,0.00011111148208039221,0.00038413298781126847,0.00026174120391225846,8.204455449337137e-05,4.034722940563862e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026174120391225846,8.204455449337137e-05,4.034722940563862e-05,0.0,0.0 +95467,50.0,the Greater Atlanta and Macon Area,G1300890021214,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,9258.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0019448568389798142,0.0,0.0,0.0019448568389798142,0.0009447629033241086,0.0003764825996613274,0.0005476862423016938,0.0,7.57596795452056e-05,0.0009447629033241086,0.0003764825996613274,0.0005476862423016938,0.0,7.57596795452056e-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.00023176545317483407,6.604768184182303e-05,0.00023176545317483407,0.00011258587164006502,4.486482427607249e-05,6.526688628210723e-05,0.0,9.028158839385413e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011258587164006502,4.486482427607249e-05,6.526688628210723e-05,0.0,9.028158839385413e-06 +95468,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13038.0,,,2015.0,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003130710862254004,0.0,0.0005172500391656287,0.0036479609014196325,0.0021623764429141924,0.0006327091141057018,0.0007722359475039135,0.0,8.063939689582474e-05,0.001645126403748564,0.0006327091141057018,0.0007722359475039135,0.0,8.063939689582474e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005172500391656287,0.0,0.0,0.0,0.0,4.171513356830361e-05,0.00037308377695254117,0.0001574032505821753,0.00041479891052084483,0.00019604811791305832,7.539933145819195e-05,9.202660886603114e-05,0.0,9.60971871525976e-06,0.0,0.0,0.0,4.171513356830361e-05,0.0,0.0,0.0002458774687819958,7.19434934473998e-05,8.780867951874143e-05,0.0,9.169268772707818e-06 +95469,35.0,Eastern Counties in South Carolina and Georgia,G1300510011600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,20088.0,,525.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.001690629031727851,0.000154675615740422,0.0,0.0018452739578619752,0.0006048000713088288,0.0007015030207528901,0.0005390322450128517,0.0,0.0,0.0004501244555684068,0.0007015030207528901,0.0005390322450128517,0.0,0.0,0.000154675615740422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0333642816875322e-05,0.0,0.0,0.0002014676267551736,6.365145294651863e-05,0.0002118012695720489,5.3640097328240846e-05,8.359619177261395e-05,6.4234994850564e-05,0.0,0.0,1.0333642816875322e-05,0.0,0.0,0.0,0.0,0.0,6.941918970606163e-05,8.05187922210969e-05,6.187033277501733e-05,0.0,0.0 +95470,50.0,the Greater Atlanta and Macon Area,G1301350050532,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,37670.0,,2180.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00332177832891029,0.0006351119642433906,0.0,0.003956890293153681,0.0025603425646052893,0.0011910095811531244,0.00020553814739526657,0.0,0.0,0.0019252306003618993,0.0011910095811531244,0.00020553814739526657,0.0,0.0,0.0006351119642433906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.243424667348088e-05,0.0,0.0,0.00039584858586461677,0.00014764719534882175,0.00043828283253809767,0.00022942524610501387,0.0001419298375052426,2.4493502254360315e-05,0.0,0.0,4.243424667348088e-05,0.0,0.0,0.0,0.0,0.0,0.00028359497189614914,0.00013192153790843824,2.276632273351019e-05,0.0,0.0 +95471,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6991.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001310245462178108,0.0,0.0,0.001310245462178108,0.0007569351388621414,0.0002769859899529406,0.00022686550326692025,0.0,4.945883009610584e-05,0.0007569351388621414,0.0002769859899529406,0.00022686550326692025,0.0,4.945883009610584e-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.00015614224900478265,4.2904280151506344e-05,0.00015614224900478265,9.020413223657181e-05,3.300848326707595e-05,2.7035613497040703e-05,0.0,5.8940200040941815e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.020413223657181e-05,3.300848326707595e-05,2.7035613497040703e-05,0.0,5.8940200040941815e-06 +95472,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,110486.0,,12714.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005687279380903238,0.0021622175751754387,0.0,0.007849496956078677,0.0031158982552372395,0.0016633915869836739,0.0018813331895589627,0.0,0.0011888739242988005,0.0026378167899069357,0.0016633915869836739,0.0012029695616277427,0.0,0.0001831014423848853,0.00047808146533030374,0.0006783636279312202,0.001005772481913915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001444668377716236,0.0,0.0,0.0006777425888950014,0.00029706761461400664,0.0008222094266666248,0.00031434375920148686,0.00019822330590860428,0.0001433556627791313,0.0,2.1819861005778934e-05,3.1942630698434275e-05,4.532432319099894e-05,6.719988388219043e-05,0.0,0.0,0.0,0.00032638026771972787,0.00017423489055522418,0.00019706356876261752,0.0,0.0001245306996290552 +95473,50.0,the Greater Atlanta and Macon Area,G1301210007604,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7917.0,,729.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005791267950631847,0.00012391749596474903,0.0,0.0007030442910279337,0.0003732241078921115,0.00016350939301572695,4.7198222100180564e-05,0.0,0.00011909483765849467,0.0002493066119273625,0.00016350939301572695,4.7198222100180564e-05,0.0,0.00011909483765849467,0.00012391749596474903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.279204852612593e-06,0.0,0.0,6.901296123610254e-05,2.716386610963507e-05,7.729216608871515e-05,2.970918923371515e-05,1.9484968573595126e-05,5.6244834464227105e-06,0.0,1.4192207103539197e-05,8.279204852612593e-06,0.0,0.0,0.0,0.0,0.0,4.103198063571709e-05,1.7976100970193966e-05,5.188937408659329e-06,0.0,1.309319781140673e-05 +95474,85.0,Rural Climate Zone 3A,G1302610950600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,11174.0,,147.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0011288190813283157,5.47127743661809e-05,0.0,0.0011835318556944966,0.0005503051144111199,0.0001963382632531435,0.00040077494707465227,0.0,3.607478253180907e-05,0.0005503051144111199,0.0001963382632531435,0.0003460621727084714,0.0,3.607478253180907e-05,0.0,5.47127743661809e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6564064369429093e-06,0.0,0.0,0.00013451689429885147,4.247756511373223e-05,0.00013817330073579437,6.557767859509435e-05,2.33968523758163e-05,4.123885702948794e-05,0.0,4.298888802424506e-06,0.0,3.6564064369429093e-06,0.0,0.0,0.0,0.0,6.424624204589289e-05,2.2921821465042893e-05,4.678910586400999e-05,0.0,4.211607614753292e-06 +95475,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970300,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,Electricity,123058.0,,,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.08331884118407969,0.0,0.03956313800200006,0.0,0.0,0.12288197918607976,0.1020822856058375,0.011507422104553341,0.0043078367460460685,0.0006673762583194631,0.004316966254070613,0.018763444421757793,0.011507422104553341,0.0043078367460460685,0.0006673762583194631,0.004316966254070613,0.0,0.0,0.0,0.0,0.0,0.0,0.08331884118407969,0.0,0.0,0.0,0.0,0.0,0.0,0.004714662732616674,0.0014105716659448214,0.004714662732616674,0.0022360034268847314,0.0013713172636125137,0.0005133565836904376,7.952993955062074e-05,0.00051444452952649,0.0,0.0,0.0,0.0,0.0,0.0,0.00391663245330194,0.0004415099309449672,0.00016528051956279704,2.560549557040635e-05,0.00016563079509982484 +95476,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,20773.0,,1578.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0018506139493577756,0.0004646099497409224,0.0,0.002315223899098698,0.0007345557267355161,0.0005601466941456711,0.0010205214782175107,0.0,0.0,0.0002699457769945937,0.0005601466941456711,0.0010205214782175107,0.0,0.0,0.0004646099497409224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.104280264994016e-05,0.0,0.0,0.00022053321370991784,9.387394004551776e-05,0.000251576016359858,3.2168789038198996e-05,6.675133441623555e-05,0.00012161309025548329,0.0,0.0,3.104280264994016e-05,0.0,0.0,0.0,0.0,0.0,7.981802692965536e-05,6.086645613202714e-05,0.00011089153329817547,0.0,0.0 +95477,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11130.0,,1032.0,,8.72605822017302,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0026724309666645014,0.0008188827370928827,0.0,0.003491313703757384,0.00189399198863014,0.000517332746239368,0.0010073721581447645,0.0,7.269951781685122e-05,0.001147726062280369,0.000517332746239368,0.0010073721581447645,0.0,0.0,0.0007462659263497708,0.0,7.269951781685122e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.471324917329153e-05,0.0,0.0,0.00031846733936436057,0.00016020851043151594,0.00037318058853765207,0.0001367718268246853,6.164933175674906e-05,0.00012004618078292622,0.0,0.0,4.986139251495904e-05,0.0,4.857382690972958e-06,0.0,0.0,0.0,0.00020244558495042362,5.529681807270305e-05,0.00010767629802166639,0.0,7.770727911415824e-06 +95478,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,3785.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0005458666866794289,0.0,0.0,0.0005458666866794289,0.0003252869210166961,0.000129932812844452,6.186489115700195e-05,0.0,2.8616647513800372e-05,0.0003252869210166961,0.000129932812844452,6.186489115700195e-05,0.0,2.8616647513800372e-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,6.505477527024072e-05,1.8103295261445176e-05,6.505477527024072e-05,3.8766731990584365e-05,1.5485007871143666e-05,7.372874530627283e-06,0.0,3.4104473096217116e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.8766731990584365e-05,1.5485007871143666e-05,7.372874530627283e-06,0.0,3.4104473096217116e-06 +95479,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,78695.0,,11926.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010393602738803173,0.0034744664132838675,0.0,0.01386806915208704,0.008338039023253878,0.004447454297672811,0.0010825758311603503,0.0,0.0,0.00486357260997001,0.004447454297672811,0.0010825758311603503,0.0,0.0,0.0034744664132838675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002321441341874806,0.0,0.0,0.0012385841215576683,0.0005271916478879686,0.001470728255745149,0.000579581879367202,0.0005299939215384392,0.00012900832065202694,0.0,0.0,0.0002321441341874806,0.0,0.0,0.0,0.0,0.0,0.0008842607759249365,0.00047165878897699535,0.00011480869084321711,0.0,0.0 +95480,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,20319.0,,5297.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004601301999731503,0.004108212944579621,0.0,0.008709514944311124,0.004775961291159522,0.0004169990582843976,0.002345609595251853,0.00040883211919447626,0.0007621128804208739,0.002926109156900813,0.0004169990582843976,0.0008493616653518154,0.00040883211919447626,0.0,0.0018498521342587089,0.0014962479299000374,0.0007621128804208739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002744866779014299,0.0,0.0,0.0005483263603088344,0.0004410347192227693,0.0008228130382102643,0.00034869756081287414,4.969279910221881e-05,0.00010121643625551801,4.8719564138223446e-05,0.0,0.00012359626284988014,9.997050521371608e-05,5.091990983783365e-05,0.0,0.0,0.0,0.0004511988607264975,3.939510572881193e-05,0.00022159651483059462,3.862355139904462e-05,7.199900552531557e-05 +95481,50.0,the Greater Atlanta and Macon Area,G1301390001403,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,169950.0,,9920.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008748231246099733,0.0016870084283951842,0.0,0.010435239674494917,0.004171315749127303,0.0036773301496032117,0.001311284339542845,0.0,0.001275309436221558,0.0036969044686109504,0.0036773301496032117,0.0011138922258533972,0.0,0.00026010440203217463,0.00047441128051635276,0.0001973921136894478,0.0010152050341893835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011271607605406078,0.0,0.0,0.001042509972913058,0.00035396262756907,0.0011552260489671186,0.0004405530294083206,0.00043822039527869044,0.0001327404044926469,0.0,3.0996143733400134e-05,3.169739823200176e-05,1.318859119172088e-05,6.783008663033812e-05,0.0,0.0,0.0,0.0004617826482353304,0.00040709631134364907,0.00014516483318969468,0.0,0.00014118225619844452 +95482,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302050090100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,13769.0,,817.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0006536652344730867,0.0001389528424489538,0.0,0.0007926003465606204,0.0004001919876120118,0.00017819013227153064,4.572660210231618e-05,0.0,0.00016847389421334173,0.0003676213136833748,0.00017819013227153064,4.572660210231618e-05,0.0,6.210945605444498e-05,3.2570673928637e-05,0.0,0.00010636443815889677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.283726990778665e-06,0.0,0.0,7.789543656348661e-05,3.213093156348167e-05,8.717916355426529e-05,4.3808391833003264e-05,2.123441390574336e-05,5.4491097973046895e-06,0.0,7.4014081504297524e-06,2.1761141357739454e-06,0.0,7.106428252862221e-06,0.0,0.0,0.0,4.4017647598222086e-05,1.959936902937982e-05,5.029529624554285e-06,0.0,1.8530667116136025e-05 +95483,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,41922.0,,201.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.002139292217859311,3.421959754070191e-05,0.0,0.0021735118154000135,0.000988237154469483,0.00042669887793499075,0.00045731921210742193,0.0,0.00030125657088811723,0.0009540175569287811,0.00042669887793499075,0.00045731921210742193,0.0,0.00030125657088811723,3.421959754070191e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2868052311032363e-06,0.0,0.0,0.00025493521409381014,7.96079365555899e-05,0.0002572220193249134,0.0001136883816500132,5.08488596797669e-05,5.449782422173305e-05,0.0,3.5900148542297e-05,2.2868052311032363e-06,0.0,0.0,0.0,0.0,0.0,0.00011695190918378536,5.049723965080608e-05,5.412097159117598e-05,0.0,3.5651898899145936e-05 +95484,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,55701.0,,737.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006266046356607279,0.00027402885291616944,0.0,0.00654007520952345,0.0038092800441859153,0.0005102392442307862,0.0021133390325293955,0.0,0.00010721688857735308,0.0038092800441859153,0.0005102392442307862,0.0018393101796132258,0.0,0.00010721688857735308,0.0,0.00027402885291616944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8307850440268286e-05,0.0,0.0,0.0007467133813123638,0.0002705883898894324,0.0007650212317526321,0.0004539449950223292,6.080428545442925e-05,0.00021918725865361844,0.0,1.277684218198707e-05,0.0,1.8307850440268286e-05,0.0,0.0,0.0,0.0,0.00044558816498781135,5.9684918384663504e-05,0.00024720651949419406,0.0,1.2541628885963236e-05 +95485,50.0,the Greater Atlanta and Macon Area,G1301210003000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,10735.0,,1712.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0004994997419257276,0.00029113253451726697,0.0,0.0007906322764429946,0.00027008659551166434,0.00017985678624501562,0.0001539172674874784,0.0,0.00018677162719883623,0.00018492766961115075,0.00017985678624501562,4.622305222207766e-05,0.0,8.849223384748354e-05,8.51589259005136e-05,0.00010769421526540072,9.827939335135268e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9451871378884766e-05,0.0,0.0,5.952455056912228e-05,3.644260332887937e-05,7.897642194800704e-05,2.203752173917171e-05,2.1433233031846383e-05,5.508323986003896e-06,0.0,1.0545471812100287e-05,5.689850075078168e-06,7.1955339071465336e-06,6.566487396660065e-06,0.0,0.0,0.0,2.6979005999596145e-05,1.79659316523274e-05,1.5374827747816855e-05,0.0,1.8656656548266646e-05 +95486,50.0,the Greater Atlanta and Macon Area,G1300630040606,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,125416.0,,6086.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011059331291279817,0.0017731499879770757,0.0,0.012832511652856333,0.00877238149521373,0.002473595564611071,0.0015864738458326534,0.0,0.0,0.0069992315072366544,0.002473595564611071,0.0015864738458326534,0.0,0.0,0.0017731499879770757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011847237599724056,0.0,0.0,0.0013179195339750162,0.00044429176174412533,0.0014363919099722566,0.000834085143418568,0.0002947736918167349,0.00018905707917547736,0.0,0.0,0.00011847237599724056,0.0,0.0,0.0,0.0,0.0,0.00098192607587546,0.0002768789737868455,0.00017758006064458697,0.0,0.0 +95487,50.0,the Greater Atlanta and Macon Area,G1301350050103,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,3979.0,,690.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003238674152596574,0.0002030117456593039,0.0,0.0005268484713126637,0.00027623714628562275,0.0001453152858196227,0.00010532672881371596,0.0,0.0,7.322540062631884e-05,0.0001453152858196227,0.00010532672881371596,0.0,0.0,0.0002030117456593039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3563151626538858e-05,0.0,0.0,3.8593703600190075e-05,2.7588129692282078e-05,5.215685522672893e-05,8.72591460154018e-06,1.731651535552924e-05,1.2551273643120664e-05,0.0,0.0,1.3563151626538858e-05,0.0,0.0,0.0,0.0,0.0,2.7346877957464154e-05,1.4385897914519805e-05,1.042711755916198e-05,0.0,0.0 +95488,50.0,the Greater Atlanta and Macon Area,G1300590130700,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,53558.0,,,10678.0,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004594939923710953,0.0,0.0010168694150680842,0.0056118093387790375,0.0017699923536137103,0.0015586023454351335,0.0022832453293364914,0.0,0.0,0.0007531229385456264,0.0015586023454351335,0.0022832453293364914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010168694150680842,0.0,0.0,0.0,0.0,8.200821503679132e-05,0.0005475706589117032,0.00023240888803486678,0.0006295788739484945,8.974829498268937e-05,0.00018573581536230078,0.00027209020579144753,0.0,0.0,0.0,0.0,0.0,8.200821503679132e-05,0.0,0.0,0.000198572283128923,0.0001748568153931665,0.0002561532184385618,0.0,0.0 +95489,50.0,the Greater Atlanta and Macon Area,G1301510070202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,54366.0,,2153.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004644275222029442,0.0006271237075912619,0.0,0.005271398929620703,0.0039912124605183405,0.00098814431050838,0.00029204215859398376,0.0,0.0,0.003364088752927079,0.00098814431050838,0.00029204215859398376,0.0,0.0,0.0006271237075912619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1899793405812376e-05,0.0,0.0,0.0005534498953809471,0.00020752013394801356,0.0005953496887867595,0.00040089238457020746,0.0001177553739016275,3.480213690911224e-05,0.0,0.0,4.1899793405812376e-05,0.0,0.0,0.0,0.0,0.0,0.00045076594049815245,0.00011160062359004591,3.2983124698561196e-05,0.0,0.0 +95490,50.0,the Greater Atlanta and Macon Area,G1300890022800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,9735.0,,1747.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002058000115855187,0.0013861705558707923,0.0,0.0034441706717259785,0.002256414385755785,0.0004549716126399301,0.0006614084686932414,0.0,7.1293497563283e-05,0.0009416200345220149,0.0004549716126399301,0.0006614084686932414,0.0,0.0,0.00131479435123377,0.0,7.1293497563283e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.261308947048553e-05,0.0,0.0,0.00024525100341070584,0.00015448504004189452,0.0003378640928811913,0.00011221246127198831,5.4218774655881225e-05,7.881976748283624e-05,0.0,0.0,8.784428898044799e-05,0.0,4.7632746493770004e-06,0.0,0.0,0.0,0.0002213483222146498,4.463151970173699e-05,6.48824328403546e-05,0.0,6.9937047778398996e-06 +95491,50.0,the Greater Atlanta and Macon Area,G1300970080303,ComStock 90.1-2007,gen3_t5_cfl,_1000,NaturalGas,3544.0,,145.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.00048325743185877325,0.00011479741835015869,0.0,0.0005980548502089319,0.00036027201320842315,0.0001226545903553929,0.00010007555922456197,0.0,1.4887273273075333e-05,0.00026044457520507907,0.0001226545903553929,0.00010007555922456197,0.0,0.0,9.982743800334403e-05,0.0,1.4887273273075333e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.667904315676663e-06,0.0,0.0,5.7587877621269165e-05,2.4529856998466138e-05,6.525578193694581e-05,3.103615037298932e-05,1.4616262624053083e-05,1.1925608749227398e-05,0.0,0.0,6.6679830756640705e-06,0.0,9.943968132721895e-07,0.0,0.0,0.0,3.931049455363519e-05,1.3383256065895539e-05,1.0919581820454215e-05,0.0,1.6244006013898831e-06 +95492,50.0,the Greater Atlanta and Macon Area,G1302550160500,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,29179.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0025730994763691457,0.0,0.0,0.0025730994763691452,0.0014240662096389944,0.000870051755894401,0.00027898151083575047,0.0,0.0,0.0014240662096389944,0.000870051755894401,0.00027898151083575047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003066297067060438,8.685802643733066e-05,0.0003066297067060438,0.00016970234077687382,0.00010368185030507732,3.324551562409269e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016970234077687385,0.00010368185030507734,3.3245515624092696e-05,0.0,0.0 +95493,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,11521.0,,102.0,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0025170243751083425,8.055668982208542e-05,0.0,0.002597581064930428,0.0010660114734259334,0.0005039342002936001,0.00094699599431507,0.0,8.055668982208542e-05,0.0010660114734259334,0.0005039342002936001,0.00094699599431507,0.0,0.0,0.0,0.0,8.055668982208542e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.382123825269278e-06,0.0,0.0,0.0002999479643608223,9.673733810065655e-05,0.0003053300881860916,0.00012703411798530015,6.005267133869452e-05,0.00011285131902643237,0.0,0.0,0.0,0.0,5.382123825269278e-06,0.0,0.0,0.0,0.00012530326063076814,5.9234445420379416e-05,0.00011131370426117582,0.0,9.468956152872073e-06 +95494,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,18529.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003005255049169479,0.0,0.0,0.003005255049169479,0.001816098257582057,0.0009194696021796232,0.00026968718940779843,0.0,0.0,0.001816098257582057,0.0009194696021796232,0.00026968718940779843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000358129869144379,9.40446235156338e-05,0.000358129869144379,0.00021642057685617686,0.00010957124201549014,3.2138050272711974e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021642057685617686,0.00010957124201549014,3.2138050272711974e-05,0.0,0.0 +95495,35.0,Eastern Counties in South Carolina and Georgia,G1302450010504,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,34146.0,,1532.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028180929294340518,0.00044637041733720074,0.0,0.0032644329731718147,0.0023829303702893813,0.000661142138961544,0.0002203300903214517,0.0,0.0,0.001936559952952181,0.000661142138961544,0.0002203300903214517,0.0,0.0,0.00044637041733720074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9822956704666995e-05,0.0,0.0,0.00033582623012093165,0.00010706100049040871,0.0003656491868255986,0.0002307757922424889,7.878692351928003e-05,2.6256275242746232e-05,0.0,0.0,2.9822956704666995e-05,0.0,0.0,0.0,0.0,0.0,0.0002669120669099661,7.405454101039121e-05,2.467917675790774e-05,0.0,0.0 +95496,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,327204.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.02689142993269279,0.0,0.0,0.02689142993269279,0.00794326803960922,0.007162892730671233,0.011785238472806036,0.0,0.0,0.00794326803960922,0.007162892730671233,0.011785238472806036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032045998798631656,0.0010196867706733228,0.0032045998798631656,0.000946583943998685,0.0008535881223733513,0.0014044241562698916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000946583943998685,0.0008535881223733513,0.0014044241562698916,0.0,0.0 +95497,85.0,Rural Climate Zone 3A,G1301250010100,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,6268.0,,,800.0,3.20458438519356,Mercantile,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,9613.75315558068,0.0,0.0,0.00043337051677784305,0.0,7.535690020506227e-05,0.0005087274169829052,0.00031804195971269937,0.00015560394991960257,3.508150735060336e-05,0.0,0.0,0.00024268505950763704,0.00015560394991960257,3.508150735060336e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.535690020506227e-05,0.0,0.0,0.0,0.0,6.0780560827936225e-06,5.164350136147097e-05,2.1526998430938644e-05,5.772155744426458e-05,2.8920071199758408e-05,1.854286918102157e-05,4.1805609806909855e-06,0.0,0.0,0.0,0.0,0.0,6.0780560827936225e-06,0.0,0.0,3.608588142569077e-05,1.7655235464025762e-05,3.98044055454807e-06,0.0,0.0 +95498,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,4953.0,,381.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0011344102234083406,0.0003025424757383865,0.0,0.001436952699146727,0.0008920784973521698,0.00026631677744056993,0.00024257984727738867,0.0,3.589487000285942e-05,0.0006254308916166427,0.00026631677744056993,0.00024257984727738867,0.0,0.0,0.0002666476057355271,0.0,3.589487000285942e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0216493868574733e-05,0.0,0.0,0.0001351851927241899,5.1220387737407896e-05,0.0001554016865927646,7.453123559203295e-05,3.173638965965963e-05,2.8907711450863875e-05,0.0,0.0,1.78179267994218e-05,0.0,2.3985670691529344e-06,0.0,0.0,0.0,9.647534198167139e-05,2.8801279545798443e-05,2.6234208977585968e-05,0.0,3.881911590955441e-06 +95499,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,23570.0,,1233.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.005925631005126419,0.0009778457328198315,0.0,0.006903476737946251,0.002662009875373349,0.0017287432552990038,0.0022549256584284776,0.0,0.0002578806559191605,0.001942044798472678,0.0017287432552990038,0.0022549256584284776,0.0,0.0,0.000719965076900671,0.0,0.0002578806559191605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.533399057668636e-05,0.0,0.0,0.0007061449940219775,0.00024884949687662425,0.0007714789845986638,0.00023142939737919854,0.00020601070073761796,0.0002687147519333277,0.0,0.0,4.810389816206164e-05,0.0,1.7230092414624723e-05,0.0,0.0,0.0,0.0002974855646802117,0.00019319092999893698,0.00025199299184245613,0.0,2.8818740777757407e-05 +95500,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12127.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029117852380660574,0.0,0.0,0.002911785238066057,0.001224395519636707,0.0008093714236128625,0.0007733111394625244,0.0,0.0001046244482802239,0.001224395519636707,0.0008093714236128625,0.0007733111394625244,0.0,0.0001046244482802239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034699612289975306,0.00010541847809951787,0.00034699612289975306,0.00014591065737112833,9.645242454970696e-05,9.215513688327815e-05,0.0,1.2468047931267047e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00014591065737112833,9.645242454970697e-05,9.215513688327816e-05,0.0,1.2468047931267049e-05 +95501,50.0,the Greater Atlanta and Macon Area,G1300670031113,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,26019.0,,3616.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024538181611391237,0.0010644076152232253,0.0,0.0035182257763623497,0.0017337786181824207,0.00076389499035612,0.0010205214782175107,0.0,0.0,0.0006693710029591954,0.00076389499035612,0.0010205214782175107,0.0,0.0,0.0010644076152232253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.111720783345072e-05,0.0,0.0,0.00029241555598720465,0.0001557348935992305,0.0003635327638206554,7.976731817045526e-05,9.103151238277942e-05,0.00012161306822805689,0.0,0.0,7.111720783345072e-05,0.0,0.0,0.0,0.0,0.0,0.00017914863143680685,7.893207393871136e-05,0.00010544888733614435,0.0,0.0 +95502,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001300,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,274663.0,,27938.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,280597.8237794184,0.0,0.0,0.0233642901434431,0.0047511517586472886,0.0,0.02811544190209039,0.012793767811313183,0.004327449311792288,0.006975886588189833,0.0,0.004018320460433667,0.012793767811313183,0.004327449311792288,0.0022247348295425457,0.0,0.004018320460433667,0.0,0.0047511517586472886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031744478174281523,0.0,0.0,0.002784277210077046,0.0010399660325494506,0.0031017219918198615,0.0015246085341930787,0.0005156937541270953,0.00026511734130721273,0.0,0.0004788554675568249,0.0,0.00031744478174281523,0.0,0.0,0.0,0.0,0.0014114204968493393,0.00047740827782877194,0.0007695863688850962,0.0,0.00044330489222650757 +95503,81.0,the Columbus-Albany Area,G1302150011400,ComStock 90.1-2004,gen4_led,100001_200000,NaturalGas,94338.0,,4052.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008667450679416114,0.0011928743071854095,0.0,0.009860324986601525,0.0026749367745140724,0.0025112691041284233,0.004674119107959026,0.0,0.0,0.001482062467328663,0.0025112691041284233,0.004674119107959026,0.0,0.0,0.0011928743071854095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.970051535649012e-05,0.0,0.0,0.001032883809761652,0.0003849265882872761,0.0011125843251181418,0.00017661459916865728,0.00029926322001103464,0.0005570059905819598,0.0,0.0,7.970051535649012e-05,0.0,0.0,0.0,0.0,0.0,0.0003018250138865031,0.0002833576626737276,0.0005274016485579109,0.0,0.0 +95504,50.0,the Greater Atlanta and Macon Area,G1301350050421,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,38683.0,,1303.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00932439549336952,0.0010339211288150818,0.0,0.01035839932925834,0.004704709182586764,0.003228222502192647,0.0022682414973005057,0.0,0.0001571434401046841,0.0036707880537716815,0.003228222502192647,0.0022682414973005057,0.0,0.0001571434401046841,0.0010339211288150818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.908296999571115e-05,0.0,0.0,0.0011111735356187466,0.0004483459631828374,0.0011802565056144578,0.00043744203504849055,0.0003847021948046027,0.0002703027693307089,0.0,1.8726536434944283e-05,6.908296999571115e-05,0.0,0.0,0.0,0.0,0.0,0.0005360638688728448,0.00036783005642790367,0.00025844792215452085,0.0,1.7905234351634993e-05 +95505,50.0,the Greater Atlanta and Macon Area,G1301210006900,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,32220.0,,3179.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0025701532372236838,0.0009261821676553664,0.0,0.00349633540487905,0.002668047348211558,0.0006132429726482092,0.0002150450840192829,0.0,0.0,0.0017418651805561915,0.0006132429726482092,0.0002150450840192829,0.0,0.0,0.0009261821676553664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.188162621187341e-05,0.0,0.0,0.0003062796850911614,0.00012627096025485637,0.0003681613113030348,0.00020757436219962563,7.307885842244614e-05,2.5626464469089585e-05,0.0,0.0,6.188162621187341e-05,0.0,0.0,0.0,0.0,0.0,0.00028094324387912433,6.457399271319224e-05,2.2644074710718235e-05,0.0,0.0 +95506,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,82163.0,,11092.0,,3.3063363735822096,Lodging,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,123987.61400933286,0.0,0.0,0.007475277802465687,0.003334052182279162,0.0,0.010809298646722646,0.003751725342213523,0.0009370695399427718,0.004043983737287642,0.0,0.0020765513653009126,0.003751725342213523,0.0009370695399427718,0.0027864829203093923,0.0,0.0,0.0,0.001257500816978249,0.0020765513653009126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022276117589692528,0.0,0.0,0.0008908136257963535,0.0005665768729167781,0.0011135748016932788,0.0004470854653705205,0.00011166866791551233,0.0003320594925103207,0.0,0.0,0.0,8.401858920214231e-05,0.00013874258669478297,0.0,0.0,0.0,0.00038650304154837835,9.653697813511424e-05,0.00041661152452905105,0.0,0.00021392648592626163 +95507,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,15338.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003523238634220757,0.0,0.0,0.0035232386342207572,0.0019831502141211136,0.0005486787271865654,0.0009211913873084062,0.0,7.0218305604672e-05,0.0019831502141211136,0.0005486787271865654,0.0009211913873084062,0.0,7.0218305604672e-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.0004198620718586237,0.0001337369272077861,0.0004198620718586237,0.00023633072980647622,6.538568944599896e-05,0.00010977778249163952,0.0,8.367870114509062e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002363307298064762,6.538568944599896e-05,0.00010977778249163951,0.0,8.367870114509062e-06 +95509,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000400,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,43248.0,,18919.0,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.01592859385425764,0.016733558253714677,0.0,0.03266205989071955,0.022933139723149646,0.00419284183183792,0.0020007455161667916,0.0006359301751238106,0.0028994026444413763,0.008174321720319724,0.00419284183183792,0.0020007455161667916,0.0006359301751238106,0.0009247546108093928,0.014758818002829922,0.0,0.0019746480336319833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011180358940460354,0.0,0.0,0.0018981747090959372,0.001616248516633628,0.003016210603141973,0.0009741155368448959,0.0004996515321600019,0.0002384243438481404,7.578236887798564e-05,0.00011020092736491299,0.0009860956068440284,0.0,0.0001319341257988502,0.0,0.0,0.0,0.002117783735249176,0.00038719217443110705,0.0001847608466900675,5.872560835060404e-05,0.0002677482384210182 +95510,50.0,the Greater Atlanta and Macon Area,G1302970110700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,59825.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01240237576584654,0.0,0.0,0.012402375765846543,0.004830359893620633,0.0030593854726053953,0.004512661089226813,0.0,0.0,0.004830359893620633,0.0030593854726053953,0.004512661089226813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001477967466322264,0.00047759614070482897,0.001477967466322264,0.0005756247761061026,0.0003645811319393697,0.0005377652154986437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005756247761061024,0.0003645811319393696,0.0005377652154986435,0.0,0.0 +95511,50.0,the Greater Atlanta and Macon Area,G1301170130509,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,18340.0,,7878.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.003613610739621563,0.005419017569997539,0.0,0.00903255658964809,0.0028561761257256944,0.0002932629614828336,0.0034759083952715895,0.0003672062515999286,0.0020400028555680404,0.0016480532139677264,0.0002932629614828336,0.0010517016549729205,0.0003672062515999286,0.00025338665759815386,0.0012081229117579682,0.002424206740298669,0.0017866161979698863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003620653773161623,0.0,0.0,0.0004306227729988509,0.0004696859865449322,0.0007926881503150132,0.00019639338495069155,3.4947236653613206e-05,0.00012532802110261287,4.375882897199794e-05,3.0195301319935303e-05,8.071933191575684e-05,0.000161970563258207,0.00011937069025547153,0.0,0.0,0.0,0.0002506551658552752,2.573646477456359e-05,0.00030504225123483117,3.2225654107548444e-05,0.00017902861434279449 +95512,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,7044.0,,637.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014010578291438678,0.0005051748063996897,0.0,0.0019062326355435576,0.0009546050450990862,0.00022992566499527466,0.0006146789720305328,0.0,0.00010702295341866378,0.0005564531921180603,0.00022992566499527466,0.0006146789720305328,0.0,0.0,0.0003981518529810259,0.0,0.00010702295341866378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.375393907613939e-05,0.0,0.0,0.00016696076592703373,8.290525077839273e-05,0.00020071470500317309,6.631121801399546e-05,2.739970066571156e-05,7.324984724732672e-05,0.0,0.0,2.6603055453918634e-05,0.0,7.1508836222207526e-06,0.0,0.0,0.0,0.00010051410643642066,2.420977437993844e-05,6.472195798262678e-05,0.0,1.126886620418717e-05 +95513,85.0,Rural Climate Zone 3A,G1300090970300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,45956.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,100799.30806909183,0.0,0.0,0.007061992818618836,0.0,0.0,0.007061992818618836,0.0052010508433704096,0.0007606020946155745,0.0010442173603008968,0.0,5.6122520331955964e-05,0.0052010508433704096,0.0007606020946155745,0.0010442173603008968,0.0,5.6122520331955964e-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.0008415659901668746,0.0002839755864114981,0.0008415659901668746,0.0006198006165298428,9.063969212635692e-05,0.00012443765369658547,0.0,6.688027814089498e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0006198006165298428,9.063969212635692e-05,0.00012443765369658547,0.0,6.688027814089498e-06 +95514,50.0,the Greater Atlanta and Macon Area,G1300630040512,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,23490.0,,4025.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0054683721765753255,0.0031213879480113077,0.0,0.008589760124586635,0.004641570669699629,0.00046276626150118435,0.002503207261452413,0.0004142497916600677,0.0005679661402733389,0.0026760067548698575,0.00046276626150118435,0.0019153493685442166,0.0004142497916600677,0.0,0.0019655639148297723,0.0005878578929081966,0.0005679661402733389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020855354943629116,0.0,0.0,0.0006516586850528942,0.000398038143866334,0.0008602122344891854,0.0003188961882552898,5.514724377183247e-05,0.00022824965284350785,4.936560018226415e-05,0.0,0.00013132790217339427,3.92773510284917e-05,3.7948296234405194e-05,0.0,0.0,0.0,0.0004648250730417138,4.634322659520101e-05,0.0002506809829997619,4.14845972125135e-05,5.6878354639995084e-05 +95515,50.0,the Greater Atlanta and Macon Area,G1301210011617,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,85825.0,,9127.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,153306.56730200956,0.0,0.0,0.009654944751289867,0.0033920370170081268,0.0,0.013046981768297996,0.007006567483315553,0.0017613870994075674,0.004011120583614695,0.0,0.0002679066019601804,0.004464012160662797,0.0017613870994075674,0.0034295454912195034,0.0,0.0,0.002542555322652756,0.0005815750923951904,0.0002679066019601804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002266351041760722,0.0,0.0,0.0011505627668760413,0.0005514827790275578,0.0013771978710521134,0.0005319684695507258,0.00020990139942161665,0.000408692897903699,0.0,0.0,0.0001698779487174015,3.88572798558221e-05,1.7899875602848567e-05,0.0,0.0,0.0,0.0007395909638543115,0.00018592641627636816,0.0004234011226803529,0.0,2.827936824108079e-05 +95516,50.0,the Greater Atlanta and Macon Area,G1300630040513,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,89490.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007426010952936505,0.0,0.0,0.007426010952936507,0.004341754171629434,0.0026422601622889067,0.0004419966190181646,0.0,0.0,0.004341754171629434,0.0026422601622889067,0.0004419966190181646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008849425197658085,0.0002474742397147323,0.0008849425197658085,0.0005173979544598061,0.00031487273324962357,5.2671832056379015e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000517397954459806,0.0003148727332496235,5.2671832056379e-05,0.0,0.0 +95517,85.0,Rural Climate Zone 3A,G1302930010400,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Propane,114229.0,,1630.0,12744.0,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.012850294769230905,0.000605676611981426,0.0015323064180670137,0.014988277799279344,0.008099040543145655,0.002463392292886391,0.004149142469090852,0.0,0.0002767024941564432,0.006843436619235086,0.002463392292886391,0.003543465857109427,0.0,0.0,0.0,0.000605676611981426,0.0,0.0,0.0,0.0,0.0,0.0012556039239105705,0.0002767024941564432,0.0,4.0467933745286777e-05,0.0,0.00012357976054059956,0.0015313446671703238,0.0005974469431531259,0.0016953923614562102,0.0008155190491876141,0.0002935576746373597,0.00042226794334534985,0.0,0.0,0.0,4.0467933745286777e-05,0.0,0.00010126384019617115,2.231592034442841e-05,0.0,0.000916119360466718,0.0002786455210238026,0.00046932840069380185,0.0,3.129907927188748e-05 +95518,50.0,the Greater Atlanta and Macon Area,G1301210001202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,11571.0,,1011.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.000595651491906674,0.0001718603932445718,0.0,0.0007674941547898258,0.0004540213648832922,0.0001503534648420478,5.6772617267009084e-05,0.0,0.0001063467077974767,0.00033622084360846133,0.0001503534648420478,5.6772617267009084e-05,0.0,5.230456618915576e-05,0.00011780052127483081,0.0,5.4042141608320944e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1482121275743132e-05,0.0,0.0,7.098178549037525e-05,2.8184831459824907e-05,8.246390676611837e-05,4.0066307434260624e-05,1.7917116861389555e-05,6.765401909218084e-06,0.0,6.232959285506978e-06,7.870340839372472e-06,0.0,3.6105958576771964e-06,0.0,0.0,0.0,4.878261973710336e-05,1.615482545283073e-05,6.09997064858066e-06,0.0,1.1426490927603618e-05 +95519,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,34600.0,,5028.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0017391534213315593,0.0008551176009277266,0.0,0.002594271022259286,0.0008137172070119034,0.00034675267829197264,0.001135629648954382,0.0,0.000298189218362448,0.0005968571564832376,0.00034675267829197264,0.0007355795042337307,0.0,5.9964082322618575e-05,0.00021686005052866579,0.00040005014472065136,0.00023822513603982944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7134369616353724e-05,0.0,0.0,0.0002072513374533333,0.0001093029308959992,0.00026438570706968704,7.11262401766922e-05,4.1321803735126664e-05,8.76574971396022e-05,0.0,7.145796401912275e-06,1.4489424926447205e-05,2.6729204040178915e-05,1.5916925297338294e-05,0.0,0.0,0.0,8.292703317607006e-05,3.533803956561646e-05,0.00011573357029082857,0.0,3.03888709625473e-05 +95520,85.0,Rural Climate Zone 3A,G1301330950303,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,52409.0,,2863.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004669577046226967,0.0008428286577538115,0.0,0.005512405703980779,0.0017331034468438717,0.0015229717125235006,0.0022563305446134064,0.0,0.0,0.00089027478909006,0.0015229717125235006,0.0022563305446134064,0.0,0.0,0.0008428286577538115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.631373546141336e-05,0.0,0.0,0.000556463010406662,0.00021451379990162868,0.0006127767458680752,0.00010609204737857354,0.0001814891189341829,0.00026888184409390556,0.0,0.0,5.631373546141336e-05,0.0,0.0,0.0,0.0,0.0,0.00019265735278570047,0.00016929843341816092,0.0002508209596642138,0.0,0.0 +95521,85.0,Rural Climate Zone 3A,G1302850960800,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,34587.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003049934613942412,0.0,0.0,0.003049934613942411,0.001894705132926959,0.0009184976469976152,0.00023670146041839996,0.0,0.0,0.001894705132926959,0.0009184976469976152,0.00023670146041839996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036345309499424686,7.406662017582732e-05,0.00036345309499424686,0.0002257872813127763,0.00010945507192847635,2.820712220696482e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022578728131277638,0.00010945507192847639,2.8207122206964826e-05,0.0,0.0 +95522,85.0,Rural Climate Zone 3A,G1302610950200,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,237956.0,,10026.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011095092805103603,0.0017049692845136975,0.0,0.01280007981997872,0.0075002974879107365,0.002371081232703661,0.0015758745230142932,0.0,0.0013528088459886084,0.00722615063963388,0.002371081232703661,0.0012337671994143743,0.0,0.0002640937333516865,0.0002741468482768564,0.0003421073235999188,0.0010887151126369222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011391641942328546,0.0,0.0,0.001322181365469536,0.0004372911370168683,0.0014360977848928216,0.0008611267961097931,0.00028255729600145903,0.0001470257193020379,0.0,3.147155405624567e-05,1.8316944261424482e-05,2.28576794414814e-05,7.274179572037958e-05,0.0,0.0,0.0,0.0008414916750451726,0.00026602213064108295,0.00017680435931637973,0.0,0.0001517776306422193 +95523,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock 90.1-2007,gen5_led,200001_500000,NaturalGas,430717.0,,56279.0,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.0,0.0,0.0682679687519267,0.029469673375631483,0.0,0.09773764212755819,0.05531955337763456,0.0069454348605364185,0.034929117106872666,0.0,0.0005435913764059198,0.026393471378408993,0.0069454348605364185,0.034929117106872666,0.0,0.0,0.028926081999225563,0.0,0.0005435913764059198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001968992031012202,0.0,0.0,0.00813536080414613,0.004504185906092551,0.010104352835158332,0.003145258551891531,0.0008276739379412609,0.004162434820160987,0.0,0.0,0.0019326724195042149,0.0,3.631961150798724e-05,0.0,0.0,0.0,0.005719068660173738,0.0007180357833154736,0.003611056250035032,0.0,5.619778568206391e-05 +95524,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,59431.0,,3892.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005240691220589138,0.0011336945990140866,0.0,0.006374385819603223,0.004161365364568626,0.0014427763468926494,0.0007702441081419485,0.0,0.0,0.003027670765554539,0.0014427763468926494,0.0007702441081419485,0.0,0.0,0.0011336945990140866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.574703330260829e-05,0.0,0.0,0.00062452389614645,0.00023781771209888334,0.0007002709294490583,0.00036080216581435294,0.00017193310338326843,9.178862694882854e-05,0.0,0.0,7.574703330260829e-05,0.0,0.0,0.0,0.0,0.0,0.00045715513213239736,0.00015849908713064397,8.461671018601715e-05,0.0,0.0 +95525,50.0,the Greater Atlanta and Macon Area,G1301170130105,ComStock 90.1-2004,gen2_t8_halogen,_1000,NaturalGas,5313.0,,594.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.0002074452286146178,0.00010106306009430096,0.0,0.00030850828870891884,0.0001800518202206362,4.966274233756791e-05,1.195026359711559e-05,0.0,6.687892327643917e-05,0.00011170127694633267,4.966274233756791e-05,1.195026359711559e-05,0.0,3.41486760950217e-05,6.835054327430355e-05,0.0,3.273024718141747e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.752793059215591e-06,0.0,0.0,2.4721216552639423e-05,1.4587029085616712e-05,3.147400961185501e-05,1.3311424297575075e-05,5.918301501191712e-06,1.4241111073913652e-06,0.0,4.069492570972952e-06,4.567020568995808e-06,0.0,2.186957190756488e-06,0.0,0.0,0.0,1.836888319588434e-05,5.066592007057809e-06,1.219165659677602e-06,0.0,6.822986451489487e-06 +95526,81.0,the Columbus-Albany Area,G1302150003400,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,96984.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.008552142525690592,0.0,0.0,0.008552142525690592,0.006695586633657449,0.0013748306049503984,0.00048172528708274393,0.0,0.0,0.006695586633657449,0.0013748306049503984,0.00048172528708274393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010191424552377405,0.00034063791267843676,0.0010191424552377405,0.000797900243194512,0.00016383593164591152,5.740628039731701e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000797900243194512,0.00016383593164591152,5.740628039731701e-05,0.0,0.0 +95527,85.0,Rural Climate Zone 3A,G1300910960300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,17390.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014334212782658219,0.0,0.0,0.0014334212782658219,0.000849488829075043,0.0004381695454890077,0.000145762903701771,0.0,0.0,0.000849488829075043,0.0004381695454890077,0.000145762903701771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017081684179469538,4.8331155748264304e-05,0.00017081684179469538,0.00010123122987125294,5.221545059077141e-05,1.7370161332671013e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010123122987125294,5.221545059077141e-05,1.7370161332671013e-05,0.0,0.0 +95528,50.0,the Greater Atlanta and Macon Area,G1300630040204,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,43549.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00621811365049599,0.0,0.0,0.006218113650495991,0.003772613665364841,0.0018866561290759546,0.0005588742296546335,0.0,0.0,0.003772613665364841,0.0018866561290759546,0.0005588742296546335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007410014519926956,0.00022434192931680949,0.0007410014519926956,0.0004495756045918922,0.00022482942732072575,6.660003964744995e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044957560459189214,0.00022482942732072572,6.660003964744993e-05,0.0,0.0 +95529,85.0,Rural Climate Zone 3A,G1301750951000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,20112.0,,,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005526996244300008,0.0,0.0,0.005526996244300009,0.002164643162744488,0.0006590153820085012,0.0018215508601847246,0.0004259746052050042,0.00045589309494035947,0.002164643162744488,0.0006590153820085012,0.0018215508601847246,0.0004259746052050042,0.00045589309494035947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006586436867595637,0.0001761640517131295,0.0006586436867595637,0.00025795721404718987,7.853385485560693e-05,0.00021707142924322175,5.0762742009734634e-05,5.432808265962109e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002579572140471898,7.853385485560692e-05,0.00021707142924322172,5.076274200973463e-05,5.432808265962108e-05 +95530,50.0,the Greater Atlanta and Macon Area,G1300210011900,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,61590.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,100799.30806909183,0.0,0.0,0.008905355560844997,0.0,0.0,0.008905355560844997,0.0063037928552236965,0.000769664680583575,0.001778286823708951,0.0,5.355660743740156e-05,0.0063037928552236965,0.000769664680583575,0.001778286823708951,0.0,5.355660743740156e-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.0010612322167018542,0.00035772627298545114,0.0010612322167018542,0.0007512095412329145,9.171929739494078e-05,0.00021191464562671345,0.0,6.382226609762868e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0007512095412329145,9.171929739494078e-05,0.00021191464562671345,0.0,6.382226609762868e-06 +95531,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,9078.0,,122.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0008940423816932661,4.541315266088102e-05,0.0,0.0009394942827779193,0.0004650198336887655,0.00012174754749188412,0.00031886077922046926,0.0,3.3788625529256196e-05,0.0004650198336887655,0.00012174754749188412,0.00027344762655958824,0.0,3.3788625529256196e-05,0.0,4.541315266088102e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0350651856086556e-06,0.0,0.0,0.00010654315709708725,3.216271379729239e-05,0.0001095782222826959,5.54164793621178e-05,1.45086724569431e-05,3.258679233884388e-05,0.0,4.026595284040225e-06,0.0,3.0350651856086556e-06,0.0,0.0,0.0,0.0,5.423774006494404e-05,1.4200064934926606e-05,3.7190431046948136e-05,0.0,3.940947365772121e-06 +95532,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6629.0,,353.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00159186304826045,0.00028029427290251287,0.0,0.001872157321162963,0.0012513580256757215,0.00036035472028216243,0.00021454214927976348,0.0,4.581971885157631e-05,0.0009710637527732086,0.00036035472028216243,0.00021454214927976348,0.0,4.581971885157631e-05,0.00028029427290251287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8729079424026522e-05,0.0,0.0,0.0001896951719397984,8.049606734245249e-05,0.00020842425136382493,0.00011571730730738159,4.294185401058355e-05,2.5566024627829644e-05,0.0,5.460130163383816e-06,1.8729079424026522e-05,0.0,0.0,0.0,0.0,0.0,0.0001393116682777289,4.011770910020256e-05,2.388463103188558e-05,0.0,5.101035309045724e-06 +95533,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030201,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,71546.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.006374630192914739,0.0,0.0,0.006374630192914739,0.0025436466387725,0.0013862802060735325,0.0024446726584624085,0.0,0.0,0.0025436466387725,0.0013862802060735325,0.0024446726584624085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007596514906342457,0.00027406077730157067,0.0007596514906342457,0.00030312110699974565,0.00016520014386889366,0.0002913265825487222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030312110699974565,0.00016520014386889366,0.0002913265825487222,0.0,0.0 +95534,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,27611.0,,2766.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0026053562389720384,0.0008059330874813066,0.0,0.003411319700052783,0.0024414299228064915,0.000674597643512468,0.00029529213373382323,0.0,0.0,0.0016354968353251848,0.000674597643512468,0.00029529213373382323,0.0,0.0,0.0008059330874813066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.384868916908435e-05,0.0,0.0,0.0003104755753051781,0.00013600532349608379,0.0003643242644742625,0.00019489919008455203,8.039057704895259e-05,3.518942773840238e-05,0.0,0.0,5.384868916908435e-05,0.0,0.0,0.0,0.0,0.0,0.0002607413667145204,7.204610294512936e-05,3.153679481461268e-05,0.0,0.0 +95535,50.0,the Greater Atlanta and Macon Area,G1300890021308,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,15717.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0036430811840690138,0.0,0.0,0.003643081184069013,0.0018620670581667672,0.0007736419677574816,0.0009314470644520802,0.0,7.57596795452056e-05,0.0018620670581667672,0.0007736419677574816,0.0009314470644520802,0.0,7.57596795452056e-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.00043413571963192354,0.0001576159919343056,0.00043413571963192354,0.00022189728459392311,9.219273341438913e-05,0.00011099792214163465,0.0,9.028067544107383e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00022189728459392317,9.219273341438916e-05,0.00011099792214163468,0.0,9.028067544107384e-06 +95536,50.0,the Greater Atlanta and Macon Area,G1300130180501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6136.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0004443548095844386,0.0,0.0,0.00044435480958443865,0.0002081982891236157,0.00014375011589843985,9.240640456238307e-05,0.0,0.0,0.0002081982891236157,0.00014375011589843985,9.240640456238307e-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,5.295386542267654e-05,2.130480985860771e-05,5.295386542267654e-05,2.481103826420593e-05,1.7130734556241242e-05,1.101209260222937e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4811038264205928e-05,1.713073455624124e-05,1.1012092602229369e-05,0.0,0.0 +95537,50.0,the Greater Atlanta and Macon Area,G1300890022301,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,54832.0,,4823.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004376714184582286,0.0014052042043881505,0.0,0.005781918388970438,0.003994978786848622,0.0013866763087311217,0.00040023291979125584,0.0,0.0,0.0025897745824604713,0.0013866763087311217,0.00040023291979125584,0.0,0.0,0.0014052042043881505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.388787455349977e-05,0.0,0.0,0.0005215646291737866,0.00020243189022942383,0.0006154525037272864,0.00030861846645204407,0.00016524755427145828,4.769498888673515e-05,0.0,0.0,9.388787455349977e-05,0.0,0.0,0.0,0.0,0.0,0.0004252428919428583,0.0001476038485247191,4.2602530161874616e-05,0.0,0.0 +95538,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,76241.0,,14025.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.01587485698445043,0.009647627061077966,0.0,0.02552248404552839,0.006909071687817877,0.0017429387356213799,0.012375352718714702,0.0003732307291652399,0.004121818454238183,0.006909071687817877,0.0017429387356213799,0.002727725657636735,0.0003732307291652399,0.004121818454238183,0.0,0.009647627061077966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006445987888275647,0.0,0.0,0.0018917745441020734,0.0011192546162237702,0.0025363733329296385,0.0008233400751384905,0.00020770247789996877,0.00032505754020119786,4.4477149822707485e-05,0.0004911887543160688,0.0,0.0006445987888275647,0.0,0.0,0.0,0.0,0.0006866097027632653,0.00017320975975826676,0.0012298377605155413,3.7090922137355785e-05,0.00040961806036817334 +95539,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,3615.0,,350.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00032211810770068846,0.00010296362912879281,0.0,0.0004250817368294813,0.00017778488928259218,0.00015915629825988663,8.81098596807047e-05,0.0,0.0,7.482126015379939e-05,0.00015915629825988663,8.81098596807047e-05,0.0,0.0,0.00010296362912879281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.879135848041445e-06,0.0,0.0,3.83853542636805e-05,1.9412252078776225e-05,4.5264490111721944e-05,8.916110298671212e-06,1.8965934376090608e-05,1.0499652447696904e-05,0.0,0.0,6.879135848041445e-06,0.0,0.0,0.0,0.0,0.0,1.8931282305768906e-05,1.6947631630885133e-05,9.382308216789669e-06,0.0,0.0 +95540,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,7668.0,,43.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015763141183974601,3.390990023311603e-05,0.0,0.0016102240186305764,0.0009286350239449438,0.0002539107163796738,0.00039376837807284263,0.0,3.390990023311603e-05,0.0009286350239449438,0.0002539107163796738,0.00039376837807284263,0.0,0.0,0.0,0.0,3.390990023311603e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2674711971281327e-06,0.0,0.0,0.00018784528936880633,6.316028998166544e-05,0.00019011276056593446,0.00011066304155690003,3.025788542747444e-05,4.692436238443186e-05,0.0,0.0,0.0,0.0,2.2674711971281327e-06,0.0,0.0,0.0,0.0001096402524851976,2.9978230773918472e-05,4.649066993961754e-05,0.0,4.003607367200837e-06 +95541,50.0,the Greater Atlanta and Macon Area,G1301510070404,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,220534.0,,10366.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.01964929663856089,0.0030513141061490993,0.0,0.022700641434316285,0.00619626220111249,0.0057236729537341645,0.010780675589863332,0.0,0.0,0.0031449480949633903,0.0057236729537341645,0.010780675589863332,0.0,0.0,0.0030513141061490993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002038718628485572,0.0,0.0,0.0023415697826701144,0.0008323898323158158,0.002545441645518672,0.000374777558845565,0.000682079357896635,0.0012847128659279141,0.0,0.0,0.0002038718628485572,0.0,0.0,0.0,0.0,0.0,0.0006947919907418229,0.0006418001686833223,0.001208846044842662,0.0,0.0 +95542,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,34427.0,,2096.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002894391411221685,0.0006106612166960002,0.0,0.0035050526279176842,0.0020897036413173252,0.0011934394691081446,0.00022190951749221483,0.0,0.0,0.001479042424621325,0.0011934394691081446,0.00022190951749221483,0.0,0.0,0.0006106612166960002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0800487954709925e-05,0.0,0.0,0.000344919044152747,0.00013995030327262472,0.0003857195321074569,0.00017625463418108374,0.00014221988060875124,2.6444529362911957e-05,0.0,0.0,4.0800487954709925e-05,0.0,0.0,0.0,0.0,0.0,0.0002299650237351864,0.0001313340946599265,2.442041371234407e-05,0.0,0.0 +95543,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,12120.0,,1213.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011974777481300648,0.00035692012124228335,0.0,0.0015543978693723483,0.0005728828807592179,0.00044880480249760544,0.0005327408757218226,0.0,0.0,0.00021596275951693452,0.00044880480249760544,0.0005327408757218226,0.0,0.0,0.00035692012124228335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3847795251564386e-05,0.0,0.0,0.00014270151649157056,7.312600736936101e-05,0.00016654931174313494,2.5735938172459116e-05,5.348335367827796e-05,6.34858818723487e-05,0.0,0.0,2.3847795251564386e-05,0.0,0.0,0.0,0.0,0.0,6.13827716699066e-05,4.8088158402566784e-05,5.708166997470985e-05,0.0,0.0 +95544,50.0,the Greater Atlanta and Macon Area,G1301210011900,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,2037.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.00018152902125091196,0.0,0.0,0.000181529021250912,8.841675574368172e-05,6.337403700475625e-05,2.9738228502473994e-05,0.0,0.0,8.841675574368172e-05,6.337403700475625e-05,2.9738228502473994e-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,2.1631382256832582e-05,9.209466720707737e-06,2.1631382256832582e-05,1.0535927689253537e-05,7.551784338184157e-06,3.543670229394889e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0535927689253536e-05,7.551784338184155e-06,3.5436702293948884e-06,0.0,0.0 +95545,50.0,the Greater Atlanta and Macon Area,G1300770170405,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2997.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0005624081014272904,0.0,0.0,0.0005624081014272905,0.0003316553656946228,0.00014887273273075336,5.557915355281459e-05,0.0,2.6300849449099763e-05,0.0003316553656946228,0.00014887273273075336,5.557915355281459e-05,0.0,2.6300849449099763e-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,6.701643253587705e-05,2.231451252464982e-05,6.701643253587705e-05,3.951998448071574e-05,1.773964390655569e-05,6.622800391780792e-06,0.0,3.1340037568248395e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.951998448071573e-05,1.7739643906555687e-05,6.6228003917807905e-06,0.0,3.1340037568248386e-06 +95546,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,16348.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005761492515198739,0.0014962479299000374,0.0,0.007257740445098777,0.003332838895735508,0.00044562377549065636,0.002401888700267548,0.0004139263485277935,0.0006634627250772702,0.003332838895735508,0.00044562377549065636,0.0009056407703675109,0.0004139263485277935,0.0006634627250772702,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99716943603331e-05,0.0,0.0,0.0006865846460192426,0.0003019443028076341,0.0007865563403795756,0.0003971672283581531,5.310402492859213e-05,0.00010792325879154997,4.932671087088787e-05,7.906342307005959e-05,0.0,9.99716943603331e-05,0.0,0.0,0.0,0.0,0.00036119582737003617,4.829439805508089e-05,0.00026030426416768696,4.4859194999811124e-05,7.19026557869604e-05 +95547,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,132132.0,,9737.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00628915422966835,0.001655891644102991,0.0,0.007945045873771341,0.0034222966309371723,0.002131898657147149,0.0012700967099640624,0.0,0.0011207538757229578,0.0026951567787393865,0.002131898657147149,0.0012700967099640624,0.0,0.00019200208381775182,0.0007271398521977853,0.0,0.0009287517919052059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001106371510730164,0.0,0.0,0.0007494663914471767,0.00027916367924678775,0.0008601035425201932,0.00032117664022571175,0.00025405425517564584,0.00015135497767175828,0.0,2.288051837406079e-05,4.8583300704072854e-05,0.0,6.205385036894357e-05,0.0,0.0,0.0,0.00037048614980831506,0.00023079207048503926,0.00013749633380842732,0.0,0.00012132898841841167 +95548,50.0,the Greater Atlanta and Macon Area,G1301210004200,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,1984.0,,269.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0003099861123749242,0.0002130534219524559,0.0,0.0005229568272536409,0.0003400087801422927,0.00010942145855710371,6.277466896813434e-05,0.0,1.0751919586109964e-05,0.00013778998484968616,0.00010942145855710371,6.277466896813434e-05,0.0,0.0,0.0002022187952926066,0.0,1.0751919586109964e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4233956869247937e-05,0.0,0.0,3.693696981742042e-05,2.491250697131004e-05,5.117092668666836e-05,1.6418621055448884e-05,1.3038316720503527e-05,7.480032041468011e-06,0.0,0.0,1.3510102696161182e-05,0.0,7.183285687120464e-07,0.0,0.0,0.0,3.326959981162321e-05,1.070680626387193e-05,6.142453480180497e-06,0.0,1.0520671309927068e-06 +95549,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,55125.0,,18100.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002837567041665251,0.0030781148550511066,0.0,0.005915681896716358,0.0017653588955103975,0.000825366054464878,0.002944605233558109,0.0,0.00038035171318297277,0.001456566921018758,0.000825366054464878,0.0004708474778709223,0.0,8.478658831069252e-05,0.0003087919744916396,0.002473757755687187,0.00029556512487228023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020566105595737406,0.0,0.0,0.00033814792938264014,0.00028609560842003684,0.0005438089853400141,0.00017357654678026288,9.835743727000298e-05,5.611007506051857e-05,0.0,1.0103870271855693e-05,2.063161595185463e-05,0.00016528156231159337,1.974787769392609e-05,0.0,0.0,0.0,0.0001622835788823193,7.587315958651807e-05,0.00027068777737642927,0.0,3.496446949474739e-05 +95550,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,42257.0,,2788.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.005006916326133449,0.0010360941032417216,0.0,0.0060429716809514,0.0030666665025939482,0.0007360263095507125,0.0020337885185253094,0.0,0.00020652909870520124,0.002521398683273199,0.0007360263095507125,0.0017494913333095381,0.0,0.0,0.0005452678193207489,0.00028429718521577136,0.00020652909870520124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.922488271688827e-05,0.0,0.0,0.000596662816061709,0.00021771420717671001,0.0006658876987785974,0.00030046933896693496,8.771057911630264e-05,0.00020848289797847143,0.0,0.0,3.6431151112309796e-05,1.899483767133435e-05,1.3798893933244118e-05,0.0,0.0,0.0,0.0003379224011210647,8.110427971260406e-05,0.00022410741401818638,0.0,2.2757873696666473e-05 +95551,85.0,Rural Climate Zone 3A,G1300310110500,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,5490.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013921254651800225,0.0,0.0,0.0013921254651800225,0.0005588516972565002,0.00018129390563656188,0.0006137691942194003,0.0,3.821066806756003e-05,0.0005588516972565002,0.00018129390563656188,0.0006137691942194003,0.0,3.821066806756003e-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.00016589632745736218,4.7546798128199316e-05,0.00016589632745736218,6.659704637769702e-05,2.1604369640359908e-05,7.31414357213097e-05,0.0,4.553475717995564e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.659704637769702e-05,2.1604369640359908e-05,7.31414357213097e-05,0.0,4.553475717995564e-06 +95552,50.0,the Greater Atlanta and Macon Area,G1301170130305,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,57576.0,,6551.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004845182973462423,0.0019283507221098564,0.0,0.0067735336955722794,0.0029032367557626833,0.0013987094966241022,0.002471587443185494,0.0,0.0,0.0009748860336528266,0.0013987094966241022,0.002471587443185494,0.0,0.0,0.0019283507221098564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012884021222310993,0.0,0.0,0.0005773921472525984,0.0002841538200554734,0.0007062323594757083,0.00011617549706180153,0.00016668181244376587,0.00029453483774703103,0.0,0.0,0.00012884021222310993,0.0,0.0,0.0,0.0,0.0,0.0003027016379174668,0.00014583435359118887,0.0002576963679670527,0.0,0.0 +95553,50.0,the Greater Atlanta and Macon Area,G1301510070107,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,40933.0,,312.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,32736.412774265485,0.0,0.0,0.002107058420797655,5.308470209163809e-05,0.0,0.0021601431228892927,0.0013053269381057076,0.000679693405037724,0.00012203807765422345,0.0,5.308470209163809e-05,0.0013053269381057076,0.000679693405037724,0.00012203807765422345,0.0,0.0,0.0,0.0,5.308470209163809e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5467088162776753e-06,0.0,0.0,0.00025109409313193114,6.599003995831614e-05,0.0002546408019482088,0.00015555329673310869,8.09977537694913e-05,1.454304262933113e-05,0.0,0.0,0.0,0.0,3.5467088162776753e-06,0.0,0.0,0.0,0.00015387383122987273,8.012324364240052e-05,1.4386025459518534e-05,0.0,6.257701616417039e-06 +95554,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,336819.0,,39193.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.016133104081165927,0.006665055622134889,0.0,0.022798177433662237,0.008473463835173174,0.006072045954079803,0.00446255466581309,0.0,0.0037901129785961676,0.00732345486310713,0.006072045954079803,0.002070409763742406,0.0,0.000667193500236587,0.0011500089720660447,0.002392144902070684,0.0031229194783595803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044532016857709475,0.0,0.0,0.001922551901669346,0.00096348890413625,0.0023678720702464406,0.0008727224471509579,0.000723594383158292,0.00024672686722232304,0.0,7.95082041377729e-05,7.683689654514605e-05,0.00015982917944647808,0.00020865527722487712,0.0,0.0,0.0,0.000880073787123202,0.0006306569051738822,0.0004634913727587977,0.0,0.00039365000519055843 +95555,50.0,the Greater Atlanta and Macon Area,G1302170100202,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,65959.0,,3254.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005876906157978595,0.0009578226125513038,0.0,0.0068347287705298986,0.002275849134218745,0.002464007110429961,0.002094872525881192,0.0,0.0,0.0013180265216674414,0.002464007110429961,0.002094872525881192,0.0,0.0,0.0009578226125513038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.399610711952392e-05,0.0,0.0,0.0007003403510042426,0.00024357412939330476,0.0007643364581237665,0.00015706685320545814,0.00029363130160802434,0.00024964219619076004,0.0,0.0,6.399610711952392e-05,0.0,0.0,0.0,0.0,0.0,0.00025451111885716143,0.00027555306593853284,0.0002342722733280721,0.0,0.0 +95556,50.0,the Greater Atlanta and Macon Area,G1301390001603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,FuelOil,5230.0,3352.0,,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0004539606563556196,0.0,0.00033915083919591353,0.0007931114955515331,0.0003495546157308347,0.00022599826077628329,0.00021755861904441503,0.0,0.0,1.0403776534921243e-05,0.00022599826077628329,0.00021755861904441503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033915083919591353,0.0,0.0,0.0,3.013691157873232e-05,0.0,5.4097964062013814e-05,4.923000431448943e-05,8.423487564074614e-05,1.2398059638333342e-06,2.6931950199612607e-05,2.5926207898567867e-05,0.0,0.0,0.0,0.0,0.0,3.013691157873232e-05,0.0,0.0,3.712553625926164e-05,2.400284890370524e-05,2.310649047777926e-05,0.0,0.0 +95557,50.0,the Greater Atlanta and Macon Area,G1301210010118,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,8839.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0021225116333718464,0.0,0.0,0.0021225116333718464,0.0012802227944107396,0.0004036932269215595,0.0003945954488102357,0.0,4.391745615557224e-05,0.0012802227944107396,0.0004036932269215595,0.0003945954488102357,0.0,4.391745615557224e-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.0002529346849455184,8.621283365835437e-05,0.0002529346849455184,0.00015256111866390054,4.8107165850410125e-05,4.7023005177690376e-05,0.0,5.233539247401717e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015256111866390054,4.8107165850410125e-05,4.7023005177690376e-05,0.0,5.233539247401717e-06 +95558,50.0,the Greater Atlanta and Macon Area,G1300450910502,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,13632.0,,1570.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001317566177572976,0.00046212409163080836,0.0,0.001779720958810082,0.0007069657706738812,0.00047716199871668285,0.0005955318102069224,0.0,0.0,0.0002448416790430728,0.00047716199871668285,0.0005955318102069224,0.0,0.0,0.00046212409163080836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.087712025785561e-05,0.0,0.0,0.00015701298222227587,8.127612148170489e-05,0.0001878901024801315,2.917752660414881e-05,5.68628959189403e-05,7.096890245092851e-05,0.0,0.0,3.087712025785561e-05,0.0,0.0,0.0,0.0,0.0,7.463634703199305e-05,5.03753222631285e-05,6.287195321044561e-05,0.0,0.0 +95559,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,15030.0,,1873.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0072902977218249915,0.0014859979938741362,0.0,0.00877629571569913,0.005654765338630188,0.0019293079091168245,0.0009967029456323937,0.0,0.00019543681524598344,0.004168767344756052,0.0019293079091168245,0.0009967029456323937,0.0,0.00019543681524598344,0.0014859979938741362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.928793929653415e-05,0.0,0.0,0.0008687711571044545,0.0003817316289594388,0.0009680590964009886,0.0004967842148559541,0.00022991201848950165,0.00011877522762536906,0.0,2.3289840086195924e-05,9.928793929653415e-05,0.0,0.0,0.0,0.0,0.0,0.0006237423169642925,0.0002128100660781041,0.00010994015974223999,0.0,2.155743070873065e-05 +95560,50.0,the Greater Atlanta and Macon Area,G1301210001900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,719600.0,,64722.0,,9.525004485617233,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.17857435865435184,0.05604333310768036,0.0,0.23461769176203223,0.07493479566568877,0.02823648691730476,0.08794318657622101,0.0006640969084452447,0.04283903541474922,0.0679225967705339,0.02823648691730476,0.060062672213293575,0.0006640969084452447,0.021688505844774365,0.007012198895154845,0.027880514362927437,0.021150529569974853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00374448567159352,0.0,0.0,0.021280362895561074,0.009992966662021194,0.025024848567154596,0.008094205231802475,0.0033648878429353634,0.007157553138130064,7.913915142144963e-05,0.0025845775312717226,0.0004685138594241261,0.0018628118771603194,0.0014131539030559973,0.0,0.0,0.0,0.007992713166092104,0.0030117669467599104,0.009380217280524364,7.083406388898414e-05,0.004569307480462386 +95561,50.0,the Greater Atlanta and Macon Area,G1301210001100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,28581.0,,2544.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005896959456845572,0.001750039012751925,0.0,0.007646998469597497,0.0017505410525490346,0.000491783841254045,0.0035599642013018863,0.00027805832762752404,0.0015665793268939921,0.0017505410525490346,0.000491783841254045,0.0018099251885499606,0.00027805832762752404,0.0015665793268939921,0.0,0.001750039012751925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011692942241171576,0.0,0.0,0.0007027273034353707,0.00029031357048735386,0.0008196567258470865,0.00020860801272470298,5.860476660329762e-05,0.00021568468572273863,3.313558117558478e-05,0.0001866857105025273,0.0,0.00011692942241171576,0.0,0.0,0.0,0.0,0.00018763476327317454,5.271269959702384e-05,0.00038158090562891535,2.9804161635943038e-05,0.00016791650828318385 +95562,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,72007.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.006096889255920528,0.0,0.0,0.006096889255920528,0.002482482253421178,0.0013311616731628583,0.002283214639730194,0.0,0.0,0.002482482253421178,0.0013311616731628583,0.002283214639730194,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.749761875419989e-10,0.0,0.0,0.0007265541782411877,0.00025372540980632673,0.0007265545532173751,0.0002958324775017475,0.00015863189160141304,0.0002720861519186242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029583263018153087,0.0001586319734716764,0.00027208629234287744,0.0,0.0 +95563,50.0,the Greater Atlanta and Macon Area,G1301210007200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,76705.0,,5002.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011795887766191341,0.0014723952413448864,0.0,0.013268313697142528,0.00419140229050246,0.004725708336145466,0.0043511723808883004,0.0,0.0,0.0027190070491575737,0.004725708336145466,0.0043511723808883004,0.0,0.0,0.0014723952413448864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.837719438030777e-05,0.0,0.0,0.0014056946836740623,0.0004615377206853307,0.00150407187805437,0.00032401916919112735,0.0005631541445954892,0.0005185213698874457,0.0,0.0,9.837719438030777e-05,0.0,0.0,0.0,0.0,0.0,0.00047512973077468715,0.0005356976910950065,0.0004932409772667941,0.0,0.0 +95564,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001300,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,26785.0,,2192.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006210916747493616,0.0017000171032327271,0.0,0.007910933850726344,0.0029473755428478365,0.0005141128587496993,0.0034507339174494217,0.0004126325759986971,0.0005860789556806891,0.0021023803597817214,0.0005141128587496993,0.0025957119972828094,0.0004126325759986971,0.0005860789556806891,0.0008449951830661148,0.0008550219201666123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011358537021415227,0.0,0.0,0.0007401467562069354,0.00030900504350848805,0.0008537321264210877,0.00025053789430256896,6.126615122983588e-05,0.00030932757480795257,4.9172879793308054e-05,6.984225607326998e-05,5.645772064012039e-05,5.712764957403187e-05,0.0,0.0,0.0,0.0,0.0003180748615823604,5.548202935365287e-05,0.00037239628856041785,4.453048062153046e-05,6.324846630312615e-05 +95565,50.0,the Greater Atlanta and Macon Area,G1302310010100,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,254053.0,,5083.0,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.05322837529105923,0.003518358859291038,0.0,0.05674673415035026,0.03948712465953404,0.005963738424591161,0.007978858200358471,0.0007970125990607805,0.0025200724338285455,0.03948712465953404,0.005963738424591161,0.005597274283154123,0.0007970125990607805,0.0013832253247191217,0.0,0.0023815839172043477,0.0011368471091094236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002350776498049705,0.0,0.0,0.006343122362471135,0.0018793998917882471,0.006578200012276106,0.004705604146058681,0.000710687154325123,0.0006670163325522948,9.497844735311428e-05,0.00016483628218192154,0.0,0.0001591245158495648,7.595795576431606e-05,0.0,0.0,0.0,0.004577430010895026,0.0006913290212246499,0.0009249259168375144,9.239136608346079e-05,0.00029213206298754537 +95566,81.0,the Columbus-Albany Area,G1302150010106,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4738.0,,315.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.0003179750108504986,9.265192141276471e-05,0.0,0.0004106269322632633,0.0001775086828259129,0.00014605183637076758,8.703572346028511e-05,0.0,0.0,8.485676141314819e-05,0.00014605183637076758,8.703572346028511e-05,0.0,0.0,9.265192141276471e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.190620253060338e-06,0.0,0.0,3.789078803665891e-05,2.023914864212888e-05,4.4081408289719254e-05,1.0111768064990046e-05,1.7403943660501858e-05,1.0371419252192324e-05,0.0,0.0,6.190620253060338e-06,0.0,0.0,0.0,0.0,0.0,1.905581954766339e-05,1.5678880571806723e-05,9.34341359563855e-06,0.0,0.0 +95567,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,21650.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001063750763757488,0.0,0.0,0.001063750763757488,0.0005184889590066042,0.0002756007379133008,0.00012717988246603877,0.0,0.00014248118437154434,0.0005184889590066042,0.0002756007379133008,0.00012717988246603877,0.0,0.00014248118437154434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012676414355450156,3.450678870498371e-05,0.00012676414355450156,6.178684995606856e-05,3.284255362709468e-05,1.5155663739523297e-05,0.0,1.697907623181503e-05,0.0,0.0,0.0,0.0,0.0,0.0,6.178684995606856e-05,3.284255362709468e-05,1.5155663739523297e-05,0.0,1.697907623181503e-05 +95568,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,4905.0,,70.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013137191592751593,5.5827274774032506e-05,0.0,0.0013695464340491915,0.00068547622715138,0.0004474452689296531,0.00019196311814893252,0.0,4.474452689296532e-05,0.0006296489523773476,0.0004474452689296531,0.00019196311814893252,0.0,4.474452689296532e-05,5.5827274774032506e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.729674403812454e-06,0.0,0.0,0.00015655565914646954,4.4380602535867234e-05,0.000160285333550282,7.50351443642705e-05,5.332196650606899e-05,2.28762078115686e-05,0.0,5.332196650606901e-06,3.729674403812454e-06,0.0,0.0,0.0,0.0,0.0,8.022494380486367e-05,5.2366909505829184e-05,2.2466468939561842e-05,0.0,5.236690950582919e-06 +95569,50.0,the Greater Atlanta and Macon Area,G1300670030320,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6196.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011272974150667602,0.0,0.0,0.0011272974150667605,0.0007275741276846873,0.00018791047153570649,0.00016665475358470445,0.0,4.5158062261661854e-05,0.0007275741276846873,0.00018791047153570649,0.00016665475358470445,0.0,4.5158062261661854e-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.0001343391384157591,4.0819659956537386e-05,0.0001343391384157591,8.67044314485277e-05,2.2393141781409e-05,1.9860114740114053e-05,0.0,5.381450445708325e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.670443144852769e-05,2.2393141781408998e-05,1.986011474011405e-05,0.0,5.381450445708324e-06 +95570,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,25020.0,,841.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.006007676422275812,0.0006675287921499502,0.0,0.006675205214425762,0.0032649444429329,0.001433644416197155,0.0017118710122561852,0.0,0.000264745343039523,0.0028621609938224725,0.001433644416197155,0.0017118710122561852,0.0,0.0,0.00040278344911042705,0.0,0.000264745343039523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.460058600437518e-05,0.0,0.0,0.0007159209719631253,0.00021308654752957615,0.0007605215579675004,0.00034107713807863535,0.0001708441053994991,0.00020399972848499093,0.0,0.0,2.691176481740888e-05,0.0,1.768882118696629e-05,0.0,0.0,0.0,0.0003719826663981099,0.00016333842180932308,0.00019503742094204276,0.0,3.0163048818024864e-05 +95571,50.0,the Greater Atlanta and Macon Area,G1300450911000,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,3462.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0008312887981537789,0.0,0.0,0.0008312887981537788,0.0005247763828759056,0.0001459779851498776,0.00013009822699193058,0.0,3.035349606232583e-05,0.0005247763828759056,0.0001459779851498776,0.00013009822699193058,0.0,3.035349606232583e-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,9.906605105727098e-05,3.538304889121121e-05,9.906605105727098e-05,6.253846323334836e-05,1.739643618705435e-05,1.5504019332711897e-05,0.0,3.6172759663733416e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.253846323334837e-05,1.739643618705435e-05,1.5504019332711897e-05,0.0,3.617275966373342e-06 +95572,50.0,the Greater Atlanta and Macon Area,G1300670030313,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,1820.0,,114.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.0003631667607892989,9.056424574454161e-05,0.0,0.00045364829946010116,0.00022206849299004038,0.00015234642982780427,5.218816352950299e-05,0.0,2.7127920186492836e-05,0.00013150424724549877,0.00015234642982780427,5.218816352950299e-05,0.0,2.7127920186492836e-05,9.056424574454161e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0501233935374165e-06,0.0,0.0,4.32734938452143e-05,2.047874103703556e-05,4.9323617238751716e-05,1.566951838166493e-05,1.815298921951372e-05,6.218532137629294e-06,0.0,3.232454106406352e-06,6.0501233935374165e-06,0.0,0.0,0.0,0.0,0.0,2.4144742440482833e-05,1.6564102635146888e-05,5.6742392848955955e-06,0.0,2.949525333511498e-06 +95573,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,26596.0,,2770.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002266273977053862,0.0008153614601173674,0.0,0.00308163543717123,0.0012372821674981854,0.0007161726525631921,0.0011281499275035544,0.0,0.0,0.0004219207073808179,0.0007161726525631921,0.0011281499275035544,0.0,0.0,0.0008153614601173674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.447811961902664e-05,0.0,0.0,0.00027006609508332355,0.00013806488362569215,0.0003245442147023502,5.0279215589485165e-05,8.534447010446798e-05,0.00013443875218718904,0.0,0.0,5.447811961902665e-05,0.0,0.0,0.0,0.0,0.0,0.00013030508559588847,7.542413626018586e-05,0.00011881176075267537,0.0,0.0 +95574,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,73926.0,,3165.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006142847871089241,0.0009220817317312698,0.0,0.00706492960282051,0.003942402086221874,0.0026869397270618393,0.00043561816313623665,0.0,0.0,0.003020320354490603,0.0026869397270618393,0.00043561816313623665,0.0,0.0,0.0009220817317312698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.160859448520588e-05,0.0,0.0,0.0007320315188889285,0.00021761649437413935,0.0007936401133741344,0.00035992584270801045,0.0003201975062448208,5.1911789500279434e-05,0.0,0.0,6.160859448520588e-05,0.0,0.0,0.0,0.0,0.0,0.00044287043390020916,0.00030183784828704977,4.89352432105272e-05,0.0,0.0 +95575,50.0,the Greater Atlanta and Macon Area,G1300210011800,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,126959.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009801773153758577,0.0,0.0,0.009801773153758577,0.005741703743314853,0.0031747701076315716,0.0008852993028121524,0.0,0.0,0.005741703743314853,0.0031747701076315716,0.0008852993028121524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011680576207330105,0.0002508355525750956,0.0011680576207330105,0.0006842273033832094,0.00037833097747956253,0.00010549933987023851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006842273033832094,0.00037833097747956253,0.00010549933987023851,0.0,0.0 +95576,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,13665.0,,611.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.003110034093819177,0.00048507698748103794,0.0,0.003595111081300215,0.001926330454462209,0.0005428892320248138,0.0009807404804007076,0.0,0.00014498550026500592,0.001586238967246177,0.0005428892320248138,0.0009807404804007076,0.0,0.0,0.0003400914872160321,0.0,0.00014498550026500592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.241052276409616e-05,0.0,0.0,0.0003706138653866178,0.00013534888025566036,0.000403024388150714,0.00018902755961625249,6.469455661510408e-05,0.00011687203722454364,0.0,0.0,2.2723285525313458e-05,0.0,9.687237238782708e-06,0.0,0.0,0.0,0.0002159483073621579,6.0859760831445807e-05,0.00010994440035638097,0.0,1.6253376102608853e-05 +95577,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,226406.0,,14788.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.020091932830192658,0.004352952378053566,0.0,0.024444885208246222,0.008529163313438663,0.005632678271061476,0.010283074313352378,0.0,0.0,0.004176210935385096,0.005632678271061476,0.010283074313352378,0.0,0.0,0.004352952378053566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002908389073840004,0.0,0.0,0.0023943177487734573,0.00095913385776638,0.0026851566561574575,0.0004976711822462556,0.0006712356482332398,0.0012254145755164734,0.0,0.0,0.0002908389073840004,0.0,0.0,0.0,0.0,0.0,0.0009368888193759253,0.0006187234434806047,0.0011295477644110766,0.0,0.0 +95578,50.0,the Greater Atlanta and Macon Area,G1301130140101,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Propane,40977.0,,,6490.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0035395266632795336,0.0,0.0006116635454774462,0.004151220582356417,0.00251305087028071,0.001370122697037547,0.0002680470150381598,0.0,0.0,0.001901387324803264,0.001370122697037547,0.0002680470150381598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006116635454774462,0.0,0.0,0.0,0.0,4.9330406711593423e-05,0.0004217997809121643,0.00017302528518778213,0.00047113018762375773,0.00022658531304524453,0.00016327534961913635,3.1942737821474165e-05,0.0,0.0,0.0,0.0,0.0,4.9330406711593423e-05,0.0,0.0,0.00028521108539872445,0.00015549791935085523,3.042118287417804e-05,0.0,0.0 +95579,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,17838.0,,1512.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0015802692074813115,0.00044521411856077425,0.0,0.002025483326042086,0.001124682001991914,0.0003806124973041099,0.0005201888267460621,0.0,0.0,0.0006794678834311398,0.0003806124973041099,0.0005201888267460621,0.0,0.0,0.00044521411856077425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9747054942589037e-05,0.0,0.0,0.0001883175589032289,9.437701654251633e-05,0.00021806461384581794,8.09708450655925e-05,4.535683922779937e-05,6.198987460983706e-05,0.0,0.0,2.9747054942589037e-05,0.0,0.0,0.0,0.0,0.0,0.00012108386344653238,4.097694421000067e-05,5.60038061892849e-05,0.0,0.0 +95580,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14397.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0032011772890798936,0.0,0.0,0.003201177289079894,0.001731224467511183,0.000816236110733225,0.0005393328278540236,0.0,0.00011438388298146215,0.001731224467511183,0.000816236110733225,0.0005393328278540236,0.0,0.00011438388298146215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003814817858208797,0.00011339966919442125,0.0003814817858208797,0.00020630866143399182,9.727021687808455e-05,6.427186992217947e-05,0.0,1.3631037586623862e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002063086614339918,9.727021687808454e-05,6.427186992217945e-05,0.0,1.363103758662386e-05 +95581,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,2015.0,,13.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0004839190884486878,1.0421091291152734e-05,0.0,0.0004943401797398404,0.00023703847333685508,0.00012497038842009352,0.00012191022669173915,0.0,1.0421091291152734e-05,0.00023703847333685508,0.00012497038842009352,0.00012191022669173915,0.0,0.0,0.0,0.0,1.0421091291152734e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.986773578507816e-07,0.0,0.0,5.7665830640577e-05,1.8696265374374197e-05,5.836450799842779e-05,2.8246499848896544e-05,1.4891996256693187e-05,1.4527334534987267e-05,0.0,0.0,0.0,0.0,6.986773578507816e-07,0.0,0.0,0.0,2.798605988346897e-05,1.4754688235841459e-05,1.439338878863687e-05,0.0,1.230371090480492e-06 +95584,50.0,the Greater Atlanta and Macon Area,G1300670030414,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,147115.0,,25884.0,,9.525004485617233,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.042288961670437525,0.02241281926191088,0.0,0.06470178093234841,0.033531296539844886,0.0027667996129855108,0.017939283371851234,0.0006343046327808986,0.00983009677488587,0.021644449388640425,0.0027667996129855108,0.012212395472554864,0.0006343046327808986,0.005031012563475822,0.011886847151204463,0.005726887899296369,0.004799084211410049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014974941357498708,0.0,0.0,0.005039493868816466,0.003118699363385775,0.0065369880045663365,0.002579327221084575,0.0003297141649999749,0.0014553275766646522,7.558885774430853e-05,0.0005995360483229548,0.0007942099426882231,0.0003826373177366191,0.0003206468753250288,0.0,0.0,0.0,0.0033877534760242477,0.000279536909502324,0.001812452122993695,6.408543499080914e-05,0.0009931600610552595 +95585,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,57553.0,,3065.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005127926316283159,0.0009020902875146754,0.0,0.006030016603797834,0.0026971560494736093,0.001318701693005991,0.002014158861318234,0.0,0.0,0.0017950657619589337,0.001318701693005991,0.002014158861318234,0.0,0.0,0.0009020902875146754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.027194605809436e-05,0.0,0.0,0.0006110849761556843,0.0002531068385905843,0.0006713569222137786,0.00021391448524939925,0.00015714710838729784,0.00024002338251898715,0.0,0.0,6.027194605809436e-05,0.0,0.0,0.0,0.0,0.0,0.00030029011577918776,0.00014681875160625727,0.00022424805482833358,0.0,0.0 +95586,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,11905.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028586872967254215,0.0,0.0,0.002858687296725422,0.0008734694057608256,0.0004156857526137591,0.0014954266002804176,0.0,7.410553807041946e-05,0.0008734694057608256,0.0004156857526137591,0.0014954266002804176,0.0,7.410553807041946e-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.0003406604500735239,0.00010616319127312762,0.0003406604500735239,0.00010408850287080448,4.9535916620458605e-05,0.00017820511508446325,0.0,8.830915497797638e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010408850287080447,4.95359166204586e-05,0.00017820511508446322,0.0,8.830915497797636e-06 +95587,35.0,Eastern Counties in South Carolina and Georgia,G1301270000501,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,71047.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.006015439040806424,0.0,0.0,0.006015439040806424,0.002352051426655941,0.001487801423706333,0.0021755861904441502,0.0,0.0,0.002352051426655941,0.001487801423706333,0.0021755861904441502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007168481203989408,0.0002201987809012963,0.0007168481203989408,0.00028028937419901544,0.0001772983895067076,0.00025926035669321775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028028937419901544,0.0001772983895067076,0.00025926035669321775,0.0,0.0 +95588,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,617619.0,,60808.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.030801166128554314,0.010340985073185916,0.0,0.04114215120174023,0.013741473359576423,0.011944518960015492,0.007398401100829694,0.0,0.008057757781318616,0.01240756507886159,0.011944518960015492,0.005427440934292364,0.0,0.0010216588857462825,0.0013339082807148324,0.0019709601665373294,0.007036098895572334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006909238782086821,0.0,0.0,0.0036705156707844537,0.0018060577934119,0.0043614395489931365,0.0014785856440681774,0.0014234053295168758,0.0006467776875210203,0.0,0.00012174912257141624,8.912391575498388e-05,0.00013168798063444595,0.0004701107971806528,0.0,0.0,0.0,0.0014567202642859658,0.0012662268710855937,0.0007842973256854914,0.0,0.0008541950879360849 +95589,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030402,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,108358.0,,9332.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005577776668772992,0.001586938268540406,0.0,0.007164714937313396,0.002957300172334867,0.0017583554027494764,0.0012657350410547295,0.0,0.001183342051535744,0.002371666334630523,0.0017583554027494764,0.0012657350410547295,0.0,0.00018203762069968213,0.0005856338377043439,0.0,0.001001304430836062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010603009007499877,0.0,0.0,0.0006646928303134022,0.0002716069740767698,0.0007707229203884009,0.0002826268784388888,0.00020953980389600623,0.00015083519058331076,0.0,2.1693070287987497e-05,3.912868559145075e-05,0.0,6.6901404483548e-05,0.0,0.0,0.0,0.00031812277881661537,0.00018914985773264693,0.00013615768607891544,0.0,0.00012729450505116958 +95590,50.0,the Greater Atlanta and Macon Area,G1301690030104,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,38365.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033830722525756735,0.0,0.0,0.0033830722525756743,0.002031447077595717,0.0009334414579209888,0.0004182140906584049,0.0,0.0,0.002031447077595717,0.0009334414579209888,0.0004182140906584049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040315501711720906,0.00010119710883240796,0.00040315501711720906,0.00024208412360016138,0.00011123664493406533,4.983786815362314e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024208412360016132,0.0001112366449340653,4.9837868153623125e-05,0.0,0.0 +95591,50.0,the Greater Atlanta and Macon Area,G1301510070310,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,36038.0,,2811.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0031778378411747845,0.0008188114936429135,0.0,0.0039966493348176976,0.0029995751860746192,0.0007136277187899791,0.00028344642995310006,0.0,0.0,0.0021807636924317058,0.0007136277187899791,0.00028344642995310006,0.0,0.0,0.0008188114936429135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.470829662373724e-05,0.0,0.0,0.0003786969540619052,0.00016038241024814439,0.00043340525068564237,0.0002598775044944963,8.504167202565796e-05,3.3777777541751015e-05,0.0,0.0,5.470829662373725e-05,0.0,0.0,0.0,0.0,0.0,0.0003252803852831392,7.738732484332452e-05,3.073754055917874e-05,0.0,0.0 +95592,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,97347.0,,4881.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.004814289575664097,0.000830064600241192,0.0,0.00564435417590529,0.002332960955650548,0.0008900109522023905,0.0013906986283432614,0.0,0.0010307013700705096,0.0021263313236612523,0.0008900109522023905,0.0007672636600913649,0.0,0.0010307013700705096,0.00020662963198929537,0.0006234349682518966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.545963329082784e-05,0.0,0.0,0.0005737098112475772,0.00022703183734095023,0.0006291694445384052,0.00025339089458058445,0.00010606092703218317,9.143336367493465e-05,0.0,0.0001228267388536142,1.380567682782185e-05,4.165395646300599e-05,0.0,0.0,0.0,0.0,0.00026005238205326113,9.920846193895383e-05,0.00015501952149817285,0.0,0.00011489105543030987 +95593,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock 90.1-2007,gen1_t12_incandescent,200001_500000,NaturalGas,733722.0,,61052.0,,9.525004485617233,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.19231004220958706,0.05286576120901978,0.0,0.24517589369823006,0.08201371120240708,0.04339958159535506,0.075952337299061,0.0006631038325897665,0.04314715976881713,0.08201371120240708,0.04339958159535506,0.0447604566358531,0.0006631038325897665,0.021473279223005272,0.0,0.031191880663207903,0.021673880545811867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035321827640877245,0.0,0.0,0.022917221521122,0.010368727915980959,0.026449404285209727,0.009773417788273928,0.005171845494479219,0.0053340183815907,7.90208210052959e-05,0.0025589297942236414,0.0,0.0020840600936862397,0.0014481226704014841,0.0,0.0,0.0,0.00884758192089159,0.004681916570628901,0.008193685134893753,7.153517862904553e-05,0.004654685480166434 +95594,35.0,Eastern Counties in South Carolina and Georgia,G1302450010510,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,48238.0,,760.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0040238944535133615,0.000221271671904022,0.0,0.004245135751817946,0.0025548145695076193,0.0013056395454311997,0.00038468163687912685,0.0,0.0,0.002333542897603597,0.0013056395454311997,0.00038468163687912685,0.0,0.0,0.000221271671904022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4783842503155664e-05,0.0,0.0,0.0004795180511826552,0.0001341794233614266,0.0004943018936858108,0.00027808282636066596,0.00015558999809886485,4.5841607172617214e-05,0.0,0.0,1.4783842503155664e-05,0.0,0.0,0.0,0.0,0.0,0.0002974815773990055,0.0001520281417387758,4.4792174548029494e-05,0.0,0.0 +95595,50.0,the Greater Atlanta and Macon Area,G1301350050610,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,118589.0,,5343.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010457326550423576,0.0015564647295881542,0.0,0.012013760906412293,0.007117172193853446,0.0037381700036024303,0.0011584187089564168,0.0,0.0,0.005560707464265291,0.0037381700036024303,0.0011584187089564168,0.0,0.0,0.0015564647295881542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010399304870960583,0.0,0.0,0.001246178175173111,0.00040657586230027356,0.0013501712238827167,0.0006626581131492858,0.000445470058825642,0.00013804638363858166,0.0,0.0,0.00010399304870960583,0.0,0.0,0.0,0.0,0.0,0.0007998661839882439,0.0004201156996683402,0.00013018934022613265,0.0,0.0 +95596,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,50551.0,,4747.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004366885459312724,0.0013971750163092166,0.0,0.005764060475621941,0.0020614515446229936,0.0015808523100009682,0.0021217873106042775,0.0,0.0,0.0006642765283137767,0.0015808523100009682,0.0021217873106042775,0.0,0.0,0.0013971750163092166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.33509556437667e-05,0.0,0.0,0.0005203931579198204,0.00024004789266434824,0.0006137441135635871,7.916052837246306e-05,0.00018838706292418318,0.00025284922384324226,0.0,0.0,9.33509556437667e-05,0.0,0.0,0.0,0.0,0.0,0.00021949869475864777,0.00016832557600322622,0.0002259231105615315,0.0,0.0 +95597,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,38889.0,,1377.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034292401237210565,0.00040111375417495055,0.0,0.003830353877896007,0.002314559397955002,0.0012884177145499947,0.00022734639179157243,0.0,0.0,0.001913445643780052,0.0012884177145499947,0.00022734639179157243,0.0,0.0,0.00040111375417495055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6799369310286622e-05,0.0,0.0,0.00040865652405057304,0.0001175775536204046,0.00043545589336085964,0.00022802195749954787,0.00015353847667624364,2.709247030627039e-05,0.0,0.0,2.6799369310286622e-05,0.0,0.0,0.0,0.0,0.0,0.0002631319618246073,0.000146474478545963,2.5845999950883646e-05,0.0,0.0 +95598,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,95530.0,,3031.0,,9.325022323477118,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.025039673897758973,0.002569239090499481,0.0,0.027608912988258457,0.019776927590534746,0.0032589006758022934,0.003944231437360413,0.0,0.0006289416687190584,0.017836541784596267,0.0032589006758022934,0.003944231437360413,0.0,0.0,0.0019403858059384778,0.0,0.0006289416687190584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001716620346263326,0.0,0.0,0.002983929504326731,0.0010691112231515107,0.0031555915389530637,0.0021255461833700946,0.00038835688986616976,0.0004700264310904668,0.0,0.0,0.0001296456124457844,0.0,4.2022327510440085e-05,0.0,0.0,0.0,0.0022604260224848307,0.0003724796917293928,0.00045081033638305173,0.0,7.188559032182576e-05 +95599,50.0,the Greater Atlanta and Macon Area,G1301350050423,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,129869.0,,3009.0,,9.325022323477118,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.03189413050739488,0.0025507668014659955,0.0,0.03444480892470283,0.014425355204465284,0.004652188543380602,0.014523108083274065,0.0,0.0008441570935828732,0.01271874549658216,0.004652188543380602,0.014523108083274065,0.0,0.0,0.0017066097078831223,0.0,0.0008441570935828732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017042512668116787,0.0,0.0,0.0038007576765629798,0.0012041350694035992,0.003971182803244148,0.0015156666387621791,0.0005543917027295196,0.001730688802513664,0.0,0.0,0.00011402421244236558,0.0,5.6400914238802294e-05,0.0,0.0,0.0,0.0016631162810015567,0.0005363563253118518,0.0016743863261378688,0.0,9.73238707928698e-05 +95600,81.0,the Columbus-Albany Area,G1302150010402,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7181.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014386068406215132,0.0,0.0,0.0014386068406215134,0.0008300481920476894,0.00026300849449099764,0.00029882065742011774,0.0,4.6812203736448e-05,0.0008300481920476894,0.00026300849449099764,0.00029882065742011774,0.0,4.6812203736448e-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.00017143942247652426,5.558418992393553e-05,0.00017143942247652426,9.891721536014705e-05,3.134284025959223e-05,3.561059177921595e-05,0.0,5.578631316644402e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.891721536014704e-05,3.1342840259592224e-05,3.561059177921594e-05,0.0,5.578631316644401e-06 +95601,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,34667.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0030175555392216264,0.0,0.0,0.0030175555392216264,0.0006599492938258007,0.0009872232553845032,0.0013703523004050247,0.0,0.0,0.0006599492938258007,0.0009872232553845032,0.0013703523004050247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035959473785189674,0.00011641287470136555,0.00035959473785189674,7.864454861700674e-05,0.00011764498883518753,0.0001633015431941306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.864454861700674e-05,0.00011764498883518753,0.0001633015431941306,0.0,0.0 +95602,50.0,the Greater Atlanta and Macon Area,G1301210000200,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,197241.0,,3436.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,140298.9118897092,0.0,0.0,0.009557374019865263,0.0005843040605978401,0.0,0.010141678080463103,0.005337565732254116,0.004047486904969654,0.0006138960338079082,0.0,0.0001427471397928451,0.004896008811449121,0.004047486904969654,0.0006138960338079082,0.0,0.0,0.00044155692080499493,0.0,0.0001427471397928451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.903995770452941e-05,0.0,0.0,0.0011389343784380123,0.00032794463527809563,0.0011779743361425418,0.0005834482087762271,0.0004823314409131595,7.315684164261974e-05,0.0,0.0,2.9502385273057208e-05,0.0,9.537572431472198e-06,0.0,0.0,0.0,0.0006199679579833511,0.0004701229581633047,7.1305139755766e-05,0.0,1.6580339653814464e-05 +95603,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,54496.0,,4380.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004855556060391046,0.0012893317397790892,0.0,0.006144857110563836,0.0021932327140653293,0.001587665402599058,0.00236395899389945,0.0,0.0,0.0009039009742862401,0.001587665402599058,0.00236395899389945,0.0,0.0,0.0012893317397790892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.614484093136138e-05,0.0,0.0,0.0005786255970567191,0.00024525725619244896,0.0006647704379880804,0.0001077158278931299,0.00018919848315605505,0.0002817076287967952,0.0,0.0,8.614484093136138e-05,0.0,0.0,0.0,0.0,0.0,0.00023727098054607382,0.00017175875794570822,0.00025574069949629857,0.0,0.0 +95604,50.0,the Greater Atlanta and Macon Area,G1300890021216,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,50798.0,,13534.0,,7.56685751697572,Food Service,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,56751.431377317895,0.0,0.0,0.010577046165469272,0.00930996943753647,0.0,0.019887015603005744,0.006693338015002917,0.0006609712528798714,0.00803995219079203,0.0003606080142664924,0.004132074410093415,0.005630376324580546,0.0006609712528798714,0.0034718203569236994,0.0003606080142664924,0.00045327021681866185,0.0010629616904223713,0.00456813183386833,0.0036788041932747525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006220354611224939,0.0,0.0,0.0012604460239634507,0.0009823300178075848,0.0018824814850859446,0.0006709609980624145,7.876665891526923e-05,0.00041373008081275526,4.297295584049194e-05,5.4015330332519704e-05,7.102062683380695e-05,0.000305214749716787,0.00024579529268020336,0.0,0.0,0.0,0.000633583496799817,6.256676067234332e-05,0.0007610524093848775,3.4134730106395645e-05,0.00039113729919448663 +95605,50.0,the Greater Atlanta and Macon Area,G1300630040620,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,35528.0,,2407.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003165540820789149,0.0007086230094139574,0.0,0.0038741638302031063,0.0015614257892145223,0.0009423857405835593,0.0013703523004050247,0.0,0.0,0.0008528027798005649,0.0009423857405835593,0.0013703523004050247,0.0,0.0,0.0007086230094139574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7346510998465334e-05,0.0,0.0,0.00037723110941492304,0.00017136704536947262,0.0004245776204133884,0.00010162678573707311,0.00011230220633468779,0.0001633021173431621,0.0,0.0,4.7346510998465334e-05,0.0,0.0,0.0,0.0,0.0,0.0001711198790480792,0.00010327800082411589,0.0001501797405411933,0.0,0.0 +95606,50.0,the Greater Atlanta and Macon Area,G1300670031001,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,115985.0,,8882.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.011258788966375244,0.0026143554916824067,0.0,0.01387314445805765,0.004648339838668956,0.004819802669054222,0.004405001950334471,0.0,0.0,0.0020339843469865493,0.004819802669054222,0.004405001950334471,0.0,0.0,0.0026143554916824067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017467642533407787,0.0,0.0,0.001341687421811021,0.0005259507023443922,0.0015163638471450988,0.00024238585718788422,0.0005743662694090957,0.000524935295214041,0.0,0.0,0.00017467642533407787,0.0,0.0,0.0,0.0,0.0,0.0005080733140141137,0.0005268145617472028,0.00048147597138378226,0.0,0.0 +95607,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,145192.0,,0.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.01422586010323715,1.227584251908111e-07,0.0,0.01422598286166234,0.005020819590304175,0.003131874322680569,0.00607335032789019,0.0,0.0,0.005020696831878984,0.003131874322680569,0.00607335032789019,0.0,0.0,1.227584251908111e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.781055101101489e-09,0.0,0.0,0.0016952688713573344,0.0006031732449100117,0.0016952776524124355,0.0005983069557720465,0.000373219545933503,0.0007237496840965849,0.0,0.0,8.781055101101489e-09,0.0,0.0,0.0,0.0,0.0,0.0005983195207675525,0.00037321825852279185,0.0007237471875416601,0.0,0.0 +95608,50.0,the Greater Atlanta and Macon Area,G1300850970202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,24264.0,,,4053.0,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005826299809565511,0.0,0.0010402068664192693,0.006866506675984782,0.0035543364939467368,0.0010258985426623694,0.0021568350689736586,0.0,0.00012960198454949477,0.002514129627527467,0.0010258985426623694,0.0021568350689736586,0.0,0.00012960198454949477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010402068664192693,0.0,0.0,0.0,0.0,8.389210602600914e-05,0.0006943076349748051,0.00029940786517553887,0.0007781997410008143,0.00029960342803554723,0.0001222541259738446,0.0002570254028656819,0.0,1.5444390148421037e-05,0.0,0.0,0.0,8.389210602600914e-05,0.0,0.0,0.0004028225514864734,0.00011626785174259956,0.00024443994177229204,0.0,1.4688142831397416e-05 +95609,50.0,the Greater Atlanta and Macon Area,G1301210011618,ComStock 90.1-2007,gen1_t12_incandescent,500001_1mil,NaturalGas,2031765.0,,23979.0,,5.759960461090961,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,4319970.345818221,0.0,0.0,0.3389782212065987,0.012556376640339048,0.0,0.35153459784693775,0.11854528491619637,0.03865919014107554,0.19331587747572906,0.0,0.0010142453139368461,0.10700315358979415,0.03865919014107554,0.19331587747572906,0.0,0.0,0.011542131326402203,0.0,0.0010142453139368461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008389439309892481,0.0,0.0,0.04039538062332347,0.014787377519573677,0.04123432455431272,0.01275135936984359,0.004606941103117043,0.023037080150362845,0.0,0.0,0.0007711779683206876,0.0,6.776596266856055e-05,0.0,0.0,0.0,0.01390513133716148,0.004534647807206956,0.02267557640743725,0.0,0.00011896900250703735 +95610,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,24038.0,,1261.0,,8.53126424238864,Food Service,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.00555877453204594,0.0009782537535630484,0.0,0.00653694742482592,0.0017785329235922678,0.00043147313845366404,0.003510085732221721,0.000402201534982857,0.00041465409557541025,0.0017785329235922678,0.00043147313845366404,0.0025318319786586723,0.000402201534982857,0.00041465409557541025,0.0,0.0009782537535630484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.535966064162793e-05,0.0,0.0,0.0006624260420608405,0.0002380625730570671,0.0007277857027024684,0.0002119435710979444,5.1417635616214195e-05,0.0003017124416752779,4.792940771271541e-05,4.941334997000494e-05,0.0,6.535966064162793e-05,0.0,0.0,0.0,0.0,0.0001980115104888646,4.8037709477998704e-05,0.0003907925282478347,4.4778779412212434e-05,4.616517507555797e-05 +95611,50.0,the Greater Atlanta and Macon Area,G1300670031404,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,10966.0,,762.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002648528622353842,0.0006045060019605979,0.0,0.0032530346243144393,0.001482110761408389,0.0007013559853093269,0.0009569208431637868,0.0,0.00011264703443293672,0.000877604759447791,0.0007013559853093269,0.0009569208431637868,0.0,0.00011264703443293672,0.0006045060019605979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.039145594341437e-05,0.0,0.0,0.00031562030494806617,0.00015009635292239122,0.0003560117608914805,0.00010458255178477749,8.357930818348064e-05,0.00011403450420788574,0.0,1.3423940771922246e-05,4.039145594341437e-05,0.0,0.0,0.0,0.0,0.0,0.00016220204299744056,7.675632391843168e-05,0.00010472531459153945,0.0,1.2328079384068864e-05 +95612,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6005.0,,543.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014094112435915377,0.0004305730258868344,0.0,0.0018399842694783724,0.0009850412482351513,0.0004341294300576247,0.00038797888291109117,0.0,3.283470827450504e-05,0.000587302930622822,0.0004341294300576247,0.00038797888291109117,0.0,0.0,0.00039773831761232936,0.0,3.283470827450504e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8766564152864925e-05,0.0,0.0,0.00016796087775149083,8.662230537715939e-05,0.00019672744190435578,6.998944856013945e-05,5.173561688384341e-05,4.623581230750799e-05,0.0,0.0,2.6572878795837e-05,0.0,2.1936853570279245e-06,0.0,0.0,0.0,0.00010531864220258358,4.641625129482463e-05,4.1481927000194764e-05,0.0,3.510621406752786e-06 +95613,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950500,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,47918.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.005709902584703527,0.0,0.0,0.005709902584703527,0.003829867900305003,0.0013997065828899174,0.00048035847510804504,0.0,0.0,0.003829867900305003,0.0013997065828899174,0.00048035847510804504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006804366763154593,0.0001686992042100667,0.0006804366763154593,0.0004563970306239669,0.00016679999018370925,5.724327506358877e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004563970306239669,0.00016679999018370925,5.724327506358877e-05,0.0,0.0 +95614,46.0,the Tallahassee-Valdosta Area,G1301850010900,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,121458.0,,17095.0,,3.3063363735822096,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.011126408093404505,0.005138401486716489,0.0,0.016264809580120995,0.0049698969413258035,0.0018972038642276572,0.006097219614068809,0.0,0.0033005204985209263,0.0049698969413258035,0.0018972038642276572,0.004259338625873245,0.0,0.0,0.0,0.0018378809881955636,0.0033005204985209263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034331800930858944,0.0,0.0,0.001325913701733971,0.0008446221649528877,0.0016692317110425605,0.0005922535283076522,0.00022608631441922735,0.0005075775935018782,0.0,0.0,0.0,0.00012279648521910415,0.00022052152408948535,0.0,0.0,0.0,0.0005100526713336871,0.00019470703526414918,0.0006257480162223101,0.0,0.0003387272043941228 +95615,50.0,the Greater Atlanta and Macon Area,G1301210005200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,247666.0,,20461.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011450285135431521,0.0034796366197696223,0.0,0.014929939485562562,0.006879451152426167,0.003162458184326298,0.0022428729892752597,0.0,0.002645139429173417,0.00566839654599088,0.003162458184326298,0.0022428729892752597,0.0,0.0003765574158390815,0.0012110546064352866,0.0,0.0022685820133343357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002324894732559536,0.0,0.0,0.0013645090818577839,0.0005417877036592591,0.0015969985551137374,0.0006754922235641217,0.0003768642319793276,0.00026727898276083156,0.0,4.4873643553502734e-05,8.091576170185757e-05,0.0,0.00015157371155409603,0.0,0.0,0.0,0.0007358685921683862,0.00033827606306512835,0.00023991154998584735,0.0,0.00028294045334539093 +95616,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,280350.0,,24042.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013912890493785492,0.004088532691657076,0.0,0.01800142318544257,0.009832868375610043,0.0032096386760650584,0.00296503060991401,0.0,0.001993867793492038,0.0074039507039541696,0.0032096386760650584,0.00296503060991401,0.0,0.00033425277349083545,0.0024289176716558733,0.0,0.0016596150200012024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027317172340916146,0.0,0.0,0.0016579724091768536,0.0007809875745279449,0.001931144132586015,0.0008823145694666903,0.0003824864697037439,0.0003533369967799331,0.0,3.9832260333406885e-05,0.00016228600244267154,0.0,0.00011088572096648991,0.0,0.0,0.0,0.0010548436017773154,0.0003443213813237065,0.0003180804876529878,0.0,0.0002138967597666478 +95617,46.0,the Tallahassee-Valdosta Area,G1301850010401,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,24929.0,,450.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,30661.31346040191,0.0,0.0,0.002780160657223168,0.00016708320330522094,0.0,0.002947243860528389,0.0017529011946014813,0.00024826115110773445,0.0008529690524948584,0.0,9.311246232431494e-05,0.0017072168029741957,0.00024826115110773445,0.0007315702408169231,0.0,9.311246232431494e-05,4.5684391627285605e-05,0.00012139881167793536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1163784722263818e-05,0.0,0.0,0.00033130535492730104,9.970075145266153e-05,0.00034246913964956484,0.00020344510213023118,2.958471071400602e-05,8.717954398008954e-05,0.0,1.1095998102974317e-05,3.0524355722516336e-06,8.111349150012187e-06,0.0,0.0,0.0,0.0,0.00020368676377469417,2.8847895475141822e-05,9.911483113692786e-05,0.0,1.0819649262800967e-05 +95618,50.0,the Greater Atlanta and Macon Area,G1300890021909,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,62181.0,,4133.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005037096983557887,0.001204130976110233,0.0,0.00624122795966812,0.003995039534047497,0.0017981474603143456,0.00044801059170683944,0.0,0.0,0.002790908557937264,0.0017981474603143456,0.00044801059170683944,0.0,0.0,0.001204130976110233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.045297416702512e-05,0.0,0.0,0.0006002594238227725,0.00024234000769309615,0.0006807123979897976,0.00033258624330599303,0.0002142811548000576,5.338840616376159e-05,0.0,0.0,8.045297416702512e-05,0.0,0.0,0.0,0.0,0.0,0.00043572722529271695,0.000196118660872456,4.886319906536589e-05,0.0,0.0 +95619,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,152794.0,,2867.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013613725216023168,0.0008438414147616357,0.0,0.014457566630784804,0.004589078208908092,0.003794923266742438,0.006073595844740572,0.0,0.0,0.003745236794146457,0.003794923266742438,0.006073595844740572,0.0,0.0,0.0008438414147616357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.637991465503871e-05,0.0,0.0,0.001622322921483224,0.0005835365774236837,0.0016787028361382626,0.00044631307016354305,0.000452234116908723,0.0007237793916356307,0.0,0.0,5.637991465503871e-05,0.0,0.0,0.0,0.0,0.0,0.0005328489088994177,0.0004406376683917656,0.000705219822291084,0.0,0.0 +95620,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,132991.0,,9136.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011384094628888765,0.002689176751836206,0.0,0.01407327138072497,0.0056688306272801685,0.003245978278895428,0.005158462474549373,0.0,0.0,0.002979653875443963,0.003245978278895428,0.005158462474549373,0.0,0.0,0.002689176751836206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017967486252273572,0.0,0.0,0.0013566219735725196,0.0005488901498244519,0.0015362968360952552,0.000355079964884513,0.0003868173625080356,0.0006147246461799709,0.0,0.0,0.00017967486252273572,0.0,0.0,0.0,0.0,0.0,0.000618833128520383,0.00035434448927993876,0.0005631192182949333,0.0,0.0 +95621,50.0,the Greater Atlanta and Macon Area,G1301590010500,ComStock 90.1-2004,gen3_t5_cfl,50001_100000,NaturalGas,94811.0,,17752.0,,7.614023970037612,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,571051.7977528209,0.0,0.0,0.019864478176355782,0.01228751812559614,0.0,0.03215199630195192,0.02487164271462399,0.0028889902540384974,0.002404749531501569,0.000769156128285929,0.001217385506479202,0.013131367122410496,0.0028889902540384974,0.002404749531501569,0.000769156128285929,0.0006701429730965599,0.0117402755922135,0.0,0.000547242533382642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008209790402380425,0.0,0.0,0.002367209462494343,0.0012966174466132628,0.0031881885027323855,0.0015648383124736,0.0003442750927408696,0.0002865691107192061,9.16587714436498e-05,7.985957511969711e-05,0.0007844155417966421,0.0,3.656349844140062e-05,0.0,0.0,0.0,0.002466269422344327,0.0002864719635425027,0.0002384547054647101,7.626943913459217e-05,0.00012071581617202433 +95622,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,11474.0,,489.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0024697986360031985,0.000388227004132309,0.0,0.0028580256401355073,0.0014356293859668979,0.000813754898521046,0.0004926860382650544,0.0,0.00011587261030876971,0.0011632749921433587,0.000813754898521046,0.0004926860382650544,0.0,0.0,0.0002723543938235393,0.0,0.00011587261030876971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5939412000348683e-05,0.0,0.0,0.00029432036798725486,0.00010493107420028684,0.00032025977998760357,0.0001386248736099638,9.697334741901417e-05,5.871229094166759e-05,0.0,0.0,1.8197376164709887e-05,0.0,7.742035835638796e-06,0.0,0.0,0.0,0.00016087131789052037,9.118636344768006e-05,5.520857475940951e-05,0.0,1.2984256041284657e-05 +95623,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11436.0,,461.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027458748481450066,0.00036548255885399946,0.0,0.003111357406999006,0.0013778171414231223,0.0010609663419278359,0.0006026037392645938,0.0,6.988747730971476e-05,0.0010822220598788379,0.0010609663419278359,0.0006026037392645938,0.0,0.0,0.0002955950815442846,0.0,6.988747730971476e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4417685026946728e-05,0.0,0.0,0.0003272213284748055,0.00013318722492407003,0.0003516390135017522,0.00012896659888833828,0.00012643359041189175,7.181128311046483e-05,0.0,0.0,1.9748541816317626e-05,0.0,4.669143210629098e-06,0.0,0.0,0.0,0.00015571797033216432,0.00011990816516123442,6.810499620866493e-05,0.0,7.898534421674699e-06 +95624,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,182609.0,,6098.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,140298.9118897092,0.0,0.0,0.012053276996966096,0.0010370843001817284,0.0,0.013090361297147825,0.008004052516577277,0.002159912628190832,0.0017897913335472302,0.0,0.001136640279555325,0.008004052516577277,0.002159912628190832,0.0007527070333655016,0.0,0.001136640279555325,0.0,0.0010370843001817284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.929150550990325e-05,0.0,0.0,0.001436366207614227,0.0004662123714513499,0.00150565771312413,0.0009538277898761502,0.00025739270003613524,8.969867258770358e-05,0.0,0.00013545127090146546,0.0,6.929150550990325e-05,0.0,0.0,0.0,0.0,0.0009206287843606711,0.00024843386935533354,0.0002058623948618794,0.0,0.00013073674325038884 +95625,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,5817.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0013967570613094237,0.0,0.0,0.0013967570613094239,0.0005794457586175877,0.00036804647813991803,0.0003872345192474374,0.0,6.203030530448058e-05,0.0005794457586175877,0.00036804647813991803,0.0003872345192474374,0.0,6.203030530448058e-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.0001664492586113474,6.914405230348609e-05,0.0001664492586113474,6.905160503500117e-05,4.3859497916893414e-05,4.614610544874044e-05,0.0,7.3920502107123745e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.905160503500116e-05,4.385949791689341e-05,4.614610544874043e-05,0.0,7.392050210712373e-06 +95626,35.0,Eastern Counties in South Carolina and Georgia,G1302450010600,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,71233.0,,1688.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005660332870421116,0.0004918396956955152,0.0,0.006152172566116631,0.003965394900996251,0.001753224906745911,0.00043355275837446953,0.0,0.0,0.003473555205300736,0.001753224906745911,0.00043355275837446953,0.0,0.0,0.0004918396956955152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.28625345088134e-05,0.0,0.0,0.0006745296819013798,0.0001836319230058873,0.0007073922164101932,0.00041393609551518696,0.00020892803757686297,5.166554880932992e-05,0.0,0.0,3.28625345088134e-05,0.0,0.0,0.0,0.0,0.0,0.00045595104132913533,0.0002015901926222127,4.985098245884522e-05,0.0,0.0 +95627,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock 90.1-2004,gen5_led,10001_25000,Propane,22230.0,,,2033.0,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.001960281734113065,0.0,0.000191657412452214,0.0021519391465652793,0.0011534678122480633,0.00060580144078596,0.00039263951993181783,0.0,0.0,0.0009618103997958492,0.00060580144078596,0.00039263951993181783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000191657412452214,0.0,0.0,0.0,0.0,1.5457031388828576e-05,0.0002336027635202309,8.469263035855697e-05,0.00024905979490905946,0.00011461697748077335,7.219211822945822e-05,4.679004825029865e-05,0.0,0.0,0.0,0.0,0.0,1.5457031388828576e-05,0.0,0.0,0.00013349934044893283,7.011387047751117e-05,4.544306862184944e-05,0.0,0.0 +95628,35.0,Eastern Counties in South Carolina and Georgia,G1302450001601,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,2098.0,,12.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0005038514932198608,9.511313480020351e-06,0.0,0.0005132800996261418,0.00020147443162895286,9.767705408612206e-05,0.0002047827145785252,0.0,9.511313480020351e-06,0.00020147443162895286,9.767705408612206e-05,0.0002047827145785252,0.0,0.0,0.0,0.0,9.511313480020351e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.3338883807789e-07,0.0,0.0,6.003959548969171e-05,1.9313368016241257e-05,6.067298432776959e-05,2.400795381038887e-05,1.163932407638311e-05,2.4402173084779495e-05,0.0,0.0,0.0,0.0,6.3338883807789e-07,0.0,0.0,0.0,2.3815563941741336e-05,1.1546051319867207e-05,2.4206624104988326e-05,0.0,1.1242979693350792e-06 +95629,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,16215.0,,2358.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001439526673000047,0.0006940147568162506,0.0,0.0021335414298162972,0.0010837113775844804,0.0004540527251745126,0.0005957773270573041,0.0,0.0,0.0003896966207682299,0.0004540527251745126,0.0005957773270573041,0.0,0.0,0.0006940147568162506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.637058781376953e-05,0.0,0.0,0.00017154511198257387,0.00010051139137028567,0.0002179156997963434,4.643925791913022e-05,5.4108428170856176e-05,7.099742589258743e-05,0.0,0.0,4.637058781376953e-05,0.0,0.0,0.0,0.0,0.0,0.00011068813566180203,4.6376046871215484e-05,6.085151726332587e-05,0.0,0.0 +95630,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,54665.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0053862100428846245,0.0,0.0,0.0053862100428846245,0.0017353744777099018,0.0014752493747305728,0.0021755861904441502,0.0,0.0,0.0017353744777099018,0.0014752493747305728,0.0021755861904441502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006418651375015823,0.00021188974462480297,0.0006418651375015823,0.00020680151143074582,0.00017580286235058097,0.00025926076372025553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020680151143074582,0.00017580286235058097,0.00025926076372025553,0.0,0.0 +95631,50.0,the Greater Atlanta and Macon Area,G1301350050609,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,19622.0,,1803.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0017303232127698458,0.0005253114022759177,0.0,0.0022556346150457633,0.0014915563475896788,0.0005741825237712604,0.00018992611728426215,0.0,0.0,0.0009662449453137611,0.0005741825237712604,0.00018992611728426215,0.0,0.0,0.0005253114022759177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5098039229270076e-05,0.0,0.0,0.0002061992072465532,9.621003341645346e-05,0.00024129724647582328,0.00011514550591432649,6.84241997926703e-05,2.2633121101542926e-05,0.0,0.0,3.5098039229270076e-05,0.0,0.0,0.0,0.0,0.0,0.00015955972533681988,6.14233622043139e-05,2.0317408160366845e-05,0.0,0.0 +95632,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950300,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,23674.0,,1378.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002301720472327709,0.000405685905649333,0.0,0.002707406377977042,0.0007847332330322602,0.0007407243376013543,0.001181979496949725,0.0,0.0,0.00037904732738292706,0.0007407243376013543,0.001181979496949725,0.0,0.0,0.000405685905649333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7104821314381275e-05,0.0,0.0,0.0002742933995364578,0.00012214212801169716,0.00030139822085083906,4.517063703566387e-05,8.827127321615926e-05,0.00014085514652996178,0.0,0.0,2.7104821314381275e-05,0.0,0.0,0.0,0.0,0.0,8.735932743690084e-05,8.246009882741643e-05,0.00013158221106393425,0.0,0.0 +95633,85.0,Rural Climate Zone 3A,G1300170960500,ComStock 90.1-2007,gen5_led,_1000,Electricity,4764.0,,,571.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00029356083856587137,0.0,5.385239180313398e-05,0.0003474132303690054,0.00026008913198546886,7.040600349670872e-05,1.6887721287390017e-05,0.0,0.0,0.00020623674018233488,7.040600349670872e-05,1.6887721287390017e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.385239180313398e-05,0.0,0.0,0.0,0.0,4.3437046906910725e-06,3.498194442346934e-05,1.3211539030389998e-05,3.932564911416041e-05,2.4576037520471478e-05,8.389875548225755e-06,2.012411908892805e-06,0.0,0.0,0.0,0.0,0.0,4.3437046906910725e-06,0.0,0.0,2.9440945389452313e-05,7.96964982047769e-06,1.9116157464131134e-06,0.0,0.0 +95634,50.0,the Greater Atlanta and Macon Area,G1301350050534,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,8534.0,,1194.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002049150458965081,0.0009474095296837664,0.0,0.002996559988648847,0.001907969484092083,0.000631137679704655,0.00037805403406237424,0.0,7.931608371599582e-05,0.0010398760381243124,0.000631137679704655,0.00037805403406237424,0.0,0.0,0.0008680934459677708,0.0,7.931608371599582e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.33031298728695e-05,0.0,0.0,0.00024419055023765175,0.00012875618699829475,0.0003074936801105212,0.00012391862238206314,7.521061062574752e-05,4.505146129868849e-05,0.0,0.0,5.8003461470592614e-05,0.0,5.299668402276897e-06,0.0,0.0,0.0,0.00019578735631005535,6.476454618761249e-05,3.8794226264392166e-05,0.0,8.139064315806625e-06 +95635,35.0,Eastern Counties in South Carolina and Georgia,G1300510010603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,314296.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02648476195964193,0.0,0.0,0.026484761959641927,0.004991480326683571,0.008075570932358618,0.01341771070059974,0.0,0.0,0.004991480326683571,0.008075570932358618,0.01341771070059974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031561396683561726,0.0009479057449073592,0.0031561396683561726,0.0005948253975954721,0.0009623507208816788,0.0015989635498790216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005948253975954722,0.000962350720881679,0.0015989635498790218,0.0,0.0 +95636,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6870.0,,878.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013677268784269268,0.0006962281467374899,0.0,0.002064037732238156,0.0011488839613127194,0.00028194841437729904,0.0005940849106694453,0.0,3.9120445878692405e-05,0.0004916935533801826,0.00028194841437729904,0.0005940849106694453,0.0,0.0,0.0006571904079325367,0.0,3.9120445878692405e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.651864146058848e-05,0.0,0.0,0.00016299349404846195,9.616368256991717e-05,0.00020951213550905043,5.8595653511405104e-05,3.360009803538773e-05,7.079774250166912e-05,0.0,0.0,4.391032609240152e-05,0.0,2.6138414600687036e-06,0.0,0.0,0.0,0.00011661857166037103,2.8619445021251524e-05,6.030316033665289e-05,0.0,3.9709584907749985e-06 +95637,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,25161.0,,2264.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002379549313898683,0.0006663941111483181,0.0,0.0030459434250470012,0.0011228406256140516,0.0007411233024832246,0.001181979496949725,0.0,0.0,0.0004564465144657335,0.0007411233024832246,0.001181979496949725,0.0,0.0,0.0006663941111483181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.452554965585248e-05,0.0,0.0,0.00028356490052465006,0.00013015215522428085,0.0003280904501805026,5.4393581891032814e-05,8.831779796184707e-05,0.00014085352067177019,0.0,0.0,4.452554965585248e-05,0.0,0.0,0.0,0.0,0.0,0.00012094554459198032,7.982928243233208e-05,0.0001273156231561902,0.0,0.0 +95638,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,28396.0,,1249.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0025040299112476985,0.00036390609486370456,0.0,0.0028679360061114032,0.0017129191402920141,0.0009240256420952861,0.0002309912237241026,0.0,0.0,0.0013490130454283096,0.0009240256420952861,0.0002309912237241026,0.0,0.0,0.00036390609486370456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4315014158269267e-05,0.0,0.0,0.00029839992047843834,9.744419687085965e-05,0.0003227149346367076,0.00016075901636478644,0.00011011417111382749,2.7526732999824402e-05,0.0,0.0,2.4315014158269267e-05,0.0,0.0,0.0,0.0,0.0,0.00019274648639974924,0.00010397612570712248,2.599232252983585e-05,0.0,0.0 +95639,50.0,the Greater Atlanta and Macon Area,G1300670030101,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,23792.0,,4688.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002246387112172951,0.0013799581471762054,0.0,0.003626345259349157,0.001733870687001314,0.0007912087399610755,0.001101235142780469,0.0,0.0,0.0003539125398251085,0.0007912087399610755,0.001101235142780469,0.0,0.0,0.0013799581471762054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.220123696835974e-05,0.0,0.0,0.0002676963444045128,0.00017242501062842309,0.00035989758137287256,4.217487388380455e-05,9.42863704126227e-05,0.00013123144290431483,0.0,0.0,9.220123696835975e-05,0.0,0.0,0.0,0.0,0.0,0.00017207844869605434,7.852371782276896e-05,0.00010929236905606526,0.0,0.0 +95640,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5067.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010257331285148906,0.0,0.0,0.0010257331285148906,0.0005911901630885694,0.00017227883459897735,0.00022215120006377975,0.0,4.019563783730341e-05,0.0005911901630885694,0.00017227883459897735,0.00022215120006377975,0.0,4.019563783730341e-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.0001222368442574818,3.2563963074552697e-05,0.0001222368442574818,7.045226276023865e-05,2.053050690117196e-05,2.6473807746782467e-05,0.0,4.79012306959653e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.045226276023865e-05,2.053050690117196e-05,2.6473807746782467e-05,0.0,4.79012306959653e-06 +95641,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,12473.0,,385.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005845522856577208,6.54427640014149e-05,0.0,0.0006499950496591359,0.0003333485250584128,0.00013913014606315436,6.182577027172412e-05,0.0,0.0001157083386272646,0.0003333485250584128,0.00013913014606315436,6.182577027172412e-05,0.0,5.02655746258497e-05,0.0,0.0,6.54427640014149e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.372540295587286e-06,0.0,0.0,6.965967327665837e-05,2.187517210942259e-05,7.403221357224568e-05,3.972433247215428e-05,1.65798009100045e-05,7.367626579990528e-06,0.0,5.990026198529726e-06,0.0,0.0,4.372540295587286e-06,0.0,0.0,0.0,3.7967257156895554e-05,1.5846447896928853e-05,7.041743827780158e-06,0.0,1.3178784118179903e-05 +95642,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2004,gen3_t5_cfl,100001_200000,Electricity,133404.0,,3.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.011323022312356336,9.513777952287863e-07,0.0,0.011323943000545265,0.00419609780026601,0.0027766421297846593,0.0043512030704945985,0.0,0.0,0.00419514642247078,0.0027766421297846593,0.0043512030704945985,0.0,0.0,9.513777952287863e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.263025275348581e-08,0.0,0.0,0.0013493413362636031,0.00044022500482829806,0.0013494039665163569,0.0004999269915189454,0.0003308867454620222,0.0005185239420652222,0.0,0.0,6.263025275348581e-08,0.0,0.0,0.0,0.0,0.0,0.0005000229173969587,0.0003308751998616939,0.0005185058492577046,0.0,0.0 +95643,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,114412.0,,6150.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010314745987051607,0.0018104412547140826,0.0,0.01212518724176569,0.0035401688448652067,0.00304984100504681,0.005535177391853674,0.0,0.0,0.001729727590151124,0.00304984100504681,0.005535177391853674,0.0,0.0,0.0018104412547140826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012096222761007194,0.0,0.0,0.0012291885955051539,0.00048772785175089803,0.0013501508231152258,0.00020612833605533333,0.0003634437325178465,0.0006596165269319741,0.0,0.0,0.00012096222761007193,0.0,0.0,0.0,0.0,0.0,0.00039420107785202333,0.0003396026190136496,0.000616347126249553,0.0,0.0 +95644,50.0,the Greater Atlanta and Macon Area,G1300210013800,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,69140.0,,1079.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0063724205412613024,0.0003176374251812238,0.0,0.006690057966442527,0.003039068953236316,0.0014753721331557633,0.0021755861904441502,0.0,0.0,0.002721431528055092,0.0014753721331557633,0.0021755861904441502,0.0,0.0,0.0003176374251812238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1222569194388773e-05,0.0,0.0,0.000759388931554737,0.00024758701804742305,0.0007806115007491259,0.0003243076892066012,0.00017581722056608486,0.00025926036456150434,0.0,0.0,2.1222569194388773e-05,0.0,0.0,0.0,0.0,0.0,0.0003546056235036444,0.00017214984695245895,0.00025385244935848515,0.0,0.0 +95645,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,304440.0,,13816.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.018587677585796616,0.0023494679221326164,0.0,0.02093714550792923,0.010048895099151965,0.004120908331610092,0.002566469815552643,0.0,0.0042008545312531105,0.00769942717701935,0.004120908331610092,0.002566469815552643,0.0,0.0042008545312531105,0.0023494679221326164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015697732549884542,0.0,0.0,0.00221505815927015,0.0006008094702211902,0.002372035484768995,0.0009175260820746655,0.0004910808023974056,0.0003058413230604139,0.0,0.000500607838844241,0.00015697732549884542,0.0,0.0,0.0,0.0,0.0,0.001138471132508608,0.0004668707483719503,0.00029076348878474747,0.0,0.00047592810637492387 +95646,50.0,the Greater Atlanta and Macon Area,G1302270050500,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,32001.0,,2924.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.004079395306301104,0.0010868932868069224,0.0,0.005166327341531798,0.002346139562552069,0.0006252445659863279,0.002001821068913341,0.0,0.0001930833956562885,0.0017464302078315434,0.0006252445659863279,0.0017077205324832327,0.0,0.0,0.0005997093547205252,0.00029410053643010833,0.0001930833956562885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.262104165873653e-05,0.0,0.0,0.0004861353041865844,0.00020977766671684248,0.000558756345845321,0.00020811941882990478,7.450943937874339e-05,0.00020350644597793622,0.0,0.0,4.006972769170285e-05,1.9650399507658116e-05,1.2900914459375544e-05,0.0,0.0,0.0,0.0002537431877915135,6.762238353378909e-05,0.00021650394014146085,0.0,2.088264360119429e-05 +95647,85.0,Rural Climate Zone 3A,G1300090970400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,61910.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.0049045162220121,0.0,0.0,0.004904516222012099,0.002625676176995894,0.001963197599659089,0.00031561207175767917,0.0,0.0,0.002625676176995894,0.001963197599659089,0.00031561207175767917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005844605623739202,0.00014875083909429758,0.0005844605623739202,0.00031289613604117036,0.000233950000613343,3.7610806163429206e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003128961360411704,0.00023395000061334306,3.761080616342921e-05,0.0,0.0 +95648,50.0,the Greater Atlanta and Macon Area,G1302190030100,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,50147.0,,2829.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.005417959605507704,0.001051283485360378,0.0,0.006469243090868082,0.0030138524009925994,0.001150518198640682,0.0020628885847781436,0.0,0.00024198390645665703,0.0024981496290099495,0.001150518198640682,0.0017692917778570722,0.0,0.0,0.0005157027719826497,0.0002935968069210713,0.00024198390645665703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.024111098582061e-05,0.0,0.0,0.0006456462336886837,0.0002492371606656302,0.0007158873446745043,0.00029769895248414526,0.0001371047028456087,0.0002108425783589297,0.0,0.0,3.445648690097256e-05,1.9616560316227294e-05,1.616806376862076e-05,0.0,0.0,0.0,0.000333513327955335,0.0001273165046753639,0.00022827953913198926,0.0,2.6777972911816236e-05 +95649,85.0,Rural Climate Zone 3A,G1301630960300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5417.0,,281.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0009616351463669274,0.00022289556372743347,0.0,0.001184530710094361,0.0005991300421675429,0.0002736777070033683,0.0002687979896527491,0.0,4.2924971270700556e-05,0.0003762344784401095,0.0002736777070033683,0.0002687979896527491,0.0,4.2924971270700556e-05,0.00022289556372743347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.489062954052655e-05,0.0,0.0,0.00011459582749178254,4.5179063106660504e-05,0.0001294864570323091,4.483498918552669e-05,3.2613536868522275e-05,3.2032032282471246e-05,0.0,5.115269155262333e-06,1.489062954052655e-05,0.0,0.0,0.0,0.0,0.0,6.549363878941816e-05,2.991695896661855e-05,2.938353479646729e-05,0.0,4.692324479805086e-06 +95650,50.0,the Greater Atlanta and Macon Area,G1301350050313,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,4005.0,,709.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0006266714977227324,0.0005626562226485083,0.0,0.0011893277203712407,0.0007286493196432983,0.00020470000750478587,0.00015069228835301813,0.0,0.00010512069072265973,0.00027119649479118906,0.00020470000750478587,0.00015069228835301813,0.0,0.0,0.0004574528248521093,0.0,0.00010512069072265973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.759220069643592e-05,0.0,0.0,7.468195036966437e-05,6.016272240920167e-05,0.00011227415106610029,3.231913887582546e-05,2.439459247260384e-05,1.795836262023604e-05,0.0,0.0,3.056334882434031e-05,0.0,7.023326045152149e-06,0.0,0.0,0.0,6.878548476302806e-05,1.93239585457996e-05,1.4225556553715906e-05,0.0,9.923535883519713e-06 +95651,35.0,Eastern Counties in South Carolina and Georgia,G1300730030402,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,34614.0,,598.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0030840292264624506,0.00017600489211732547,0.0,0.0032600341185797764,0.0012471949103323437,0.0008578051856270905,0.0011550647122266396,0.0,0.0,0.001071190018215018,0.0008578051856270905,0.0011550647122266396,0.0,0.0,0.00017600489211732547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1759397249147514e-05,0.0,0.0,0.0003675192392802111,0.00012177792135514541,0.0003792786365293586,0.0001276521432549829,0.00010222338574719309,0.00013764736751340224,0.0,0.0,1.1759397249147514e-05,0.0,0.0,0.0,0.0,0.0,0.00014510105350777215,9.979870436269936e-05,0.00013438244914668222,0.0,0.0 +95652,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock 90.1-2004,gen3_t5_cfl,5001_10000,Electricity,44042.0,,8318.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.0100032066126245,0.006451558437905554,0.0,0.016454765050530052,0.008785200637263265,0.0009446965285896099,0.0053524178136550565,0.0004236296424960169,0.0009488204285261045,0.004961617649084863,0.0009446965285896099,0.0027244423639279053,0.0004236296424960169,0.0009488204285261045,0.003823582988178403,0.002627975449727151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043105389225959047,0.0,0.0,0.001192062764464414,0.0007712809761964625,0.0016231166567240044,0.0005912663688780642,0.00011257765625166925,0.00032466652162008825,5.048312429191947e-05,0.00011306909342267283,0.0002554685577593437,0.00017558533450024675,0.0,0.0,0.0,0.0,0.0008665821385608303,9.318593528345439e-05,0.0005279685538147474,4.1787307622187575e-05,9.359272144278467e-05 +95653,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,14984.0,,268.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0033247416572464196,0.0002128880078049773,0.0,0.003537629665051396,0.0017607508928361162,0.000496904099025759,0.0011846961242418395,0.0,9.519584187394283e-05,0.0016430587269050815,0.000496904099025759,0.0011846961242418395,0.0,0.0,0.00011769216593103447,0.0,9.519584187394283e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4224938614358366e-05,0.0,0.0,0.0003962014373726185,0.00012478099942640324,0.0004104263759869769,0.00019579934214394482,5.921486195514046e-05,0.0001411773772712104,0.0,0.0,7.86405891539703e-06,0.0,6.360879698961335e-06,0.0,0.0,0.0,0.00020427763117823755,5.764949072849128e-05,0.00013744529047851349,0.0,1.1044368147219283e-05 +95654,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref Pre-1980,gen2_t8_halogen,25001_50000,Electricity,108616.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.009646989291023795,0.0,0.0,0.009646989291023795,0.006240498993281614,0.0028161793926694736,0.0005903412786721444,0.0,0.0,0.006240498993281614,0.0028161793926694736,0.0005903412786721444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001149614089374627,0.0004083261951526915,0.001149614089374627,0.0007436688640340923,0.00033559895324354844,7.034989166334052e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007436688640340923,0.00033559895324354844,7.034989166334052e-05,0.0,0.0 +95655,35.0,Eastern Counties in South Carolina and Georgia,G1301030030304,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,5504.0,,39.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013217417454278717,3.126327387345821e-05,0.0,0.00135300501930133,0.0005003777961228098,0.0001989932194167737,0.000622288022814549,0.0,3.126327387345821e-05,0.0005003777961228098,0.0001989932194167737,0.000622288022814549,0.0,0.0,0.0,0.0,3.126327387345821e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0903636918338083e-06,0.0,0.0,0.00015750456509673136,5.37383415910349e-05,0.00015959492878856517,5.962722100214158e-05,2.3712908054735984e-05,7.415458030084517e-05,0.0,0.0,0.0,0.0,2.0903636918338083e-06,0.0,0.0,0.0,5.9022514772957955e-05,2.3472424883262293e-05,7.340254564491499e-05,0.0,3.6876876998641505e-06 +95656,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock 90.1-2004,gen5_led,_1000,Electricity,2953.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0003606855485771197,0.0,0.0,0.0003606855485771197,0.0001481283690670996,8.427850814035427e-05,0.0001015642865518695,0.0,2.67143848177963e-05,0.0001481283690670996,8.427850814035427e-05,0.0001015642865518695,0.0,2.67143848177963e-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,4.29788469114518e-05,1.3043356964235186e-05,4.29788469114518e-05,1.7650794500896624e-05,1.004252350441857e-05,1.2102275626522083e-05,0.0,3.183253279614522e-06,0.0,0.0,0.0,0.0,0.0,0.0,1.7650794500896624e-05,1.004252350441857e-05,1.2102275626522083e-05,0.0,3.183253279614522e-06 +95657,85.0,Rural Climate Zone 3A,G1302770960700,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,27610.0,,725.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023586803816162453,0.00021350759101311826,0.0,0.0025721879726293634,0.0006354589880002338,0.0007547187980731068,0.001181979496949725,0.0,0.0,0.00042195139698711554,0.0007547187980731068,0.001181979496949725,0.0,0.0,0.00021350759101311826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.426576193433164e-05,0.0,0.0,0.0002810800799318987,0.00010488103853273152,0.00029534584186623035,5.028325724710724e-05,8.993860369633147e-05,0.00014085456175831612,0.0,0.0,1.426576193433164e-05,0.0,0.0,0.0,0.0,0.0,7.296518441867211e-05,8.665893051405314e-05,0.00013571820306677957,0.0,0.0 +95658,50.0,the Greater Atlanta and Macon Area,G1300670031211,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,13331.0,,784.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003201011874932415,0.0006216263662246345,0.0,0.0038226382411570502,0.0018529692800554431,0.0008527926373259989,0.0010086954713245933,0.0,0.00010809814537727479,0.0013394410592080838,0.0008527926373259989,0.0010086954713245933,0.0,0.0,0.0005135282208473597,0.0,0.00010809814537727479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.153388386637886e-05,0.0,0.0,0.000381455078422584,0.00016061667076802742,0.0004229889622889629,0.0001596172130081324,0.0001016247658738409,0.00012020324358426569,0.0,0.0,3.4311320506432454e-05,0.0,7.222563359946404e-06,0.0,0.0,0.0,0.0002050378569662243,9.436463770660327e-05,0.00011161585893412213,0.0,1.1961456840513086e-05 +95659,46.0,the Tallahassee-Valdosta Area,G1301850010604,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,67145.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005418164162103921,0.0,0.0,0.005418164162103921,0.0033819484293964763,0.0013763796585217238,0.0006598360741857207,0.0,0.0,0.0033819484293964763,0.0013763796585217238,0.0006598360741857207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006456737087095553,0.00016514414111829252,0.0006456737087095553,0.0004030212300221176,0.00016402089935293242,7.863157933450523e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004030212300221176,0.00016402089935293242,7.863157933450523e-05,0.0,0.0 +95660,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,58600.0,,9934.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005070260546049774,0.0029241670672577164,0.0,0.007994427613307492,0.00415012477003205,0.0014803745389822894,0.00236395899389945,0.0,0.0,0.0012259577027743333,0.0014803745389822894,0.00236395899389945,0.0,0.0,0.0029241670672577164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019537546208620108,0.0,0.0,0.0006042135689177859,0.00037106130053260385,0.0007995890310039869,0.00014609511132768882,0.00017641349500872972,0.00028170861980497187,0.0,0.0,0.00019537546208620108,0.0,0.0,0.0,0.0,0.0,0.00041508840956815785,0.0001480645395021721,0.00023643915145579763,0.0,0.0 +95661,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,27313.0,,1413.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023351107639796092,0.0004160589925779566,0.0,0.0027511697565575665,0.0009457615972763068,0.0007714139438990571,0.0010339942153822022,0.0,0.0,0.00052970260469835,0.0007714139438990571,0.0010339942153822022,0.0,0.0,0.0004160589925779566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7798449540557147e-05,0.0,0.0,0.0002782700439447908,0.00010472038194699347,0.00030606849348534796,6.312350118924257e-05,9.192771297177296e-05,0.00012321882978377527,0.0,0.0,2.779844954055715e-05,0.0,0.0,0.0,0.0,0.0,0.00010521627267263057,8.582004185674275e-05,0.00011503217895597458,0.0,0.0 +95662,50.0,the Greater Atlanta and Macon Area,G1300670030312,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,27848.0,,2746.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006884040575617515,0.0021784216152196177,0.0,0.009062462190837131,0.006005360624211112,0.001237049701918821,0.001648103858403179,0.0,0.00017194800630402013,0.0038269390089914934,0.001237049701918821,0.001648103858403179,0.0,0.00017194800630402013,0.0021784216152196177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014554863927111386,0.0,0.0,0.0008203615802740589,0.0003528485444283378,0.0009659102195451727,0.00045605102098734854,0.00014741749953335292,0.00019640225400823183,0.0,2.0490805745125408e-05,0.00014554863927111386,0.0,0.0,0.0,0.0,0.0,0.0006400732027157693,0.0001318492617135348,0.00017566091048777215,0.0,1.8326844628096468e-05 +95663,35.0,Eastern Counties in South Carolina and Georgia,G1300510000601,ComStock 90.1-2004,gen5_led,25001_50000,Electricity,31562.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026748753953014766,0.0,0.0,0.0026748753953014766,0.0009151026805849017,0.0006719796194945001,0.0010877930952220751,0.0,0.0,0.0009151026805849017,0.0006719796194945001,0.0010877930952220751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031876062395742063,0.0001076882229076936,0.00031876062395742063,0.0001090513232731258,8.00787368162976e-05,0.00012963056386799726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001090513232731258,8.00787368162976e-05,0.00012963056386799726,0.0,0.0 +95664,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,39776.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.010305301387917706,0.0,0.0,0.010305301387917704,0.007155319777482443,0.0006831604290866793,0.002348632772975113,0.0,0.00011818840837347031,0.007155319777482443,0.0006831604290866793,0.002348632772975113,0.0,0.00011818840837347031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012280665989154698,0.00039277105615150097,0.0012280665989154698,0.0008526882322517893,8.141115655731764e-05,0.00027988288290050234,0.0,1.4084327205860403e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0008526882322517895,8.141115655731766e-05,0.0002798828829005024,0.0,1.4084327205860406e-05 +95665,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,96466.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008506491005735651,0.0,0.0,0.008506491005735651,0.005403463339976049,0.0025440015681077797,0.0005589957240523846,0.0,0.0,0.005403463339976049,0.0025440015681077797,0.0005589957240523846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010137008378391596,0.00026131630680865323,0.0010137008378391596,0.0006439194858695092,0.0003031633748059162,6.661435760507279e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006439194858695092,0.0003031633748059162,6.661435760507279e-05,0.0,0.0 +95666,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970100,ComStock 90.1-2004,gen5_led,25001_50000,NaturalGas,93363.0,,16202.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0048059031147124134,0.002755315895037625,0.0,0.007561219009750039,0.0032257733049573067,0.000964017480769691,0.0014949708838545921,0.0,0.0018764573401684479,0.00209523226973048,0.000964017480769691,0.0014949708838545921,0.0,0.0002516824803576496,0.0011305410352268268,0.0,0.0016247748598107986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000184094168748724,0.0,0.0,0.0005727096319082143,0.00033461859752845864,0.0007568038006569382,0.000249684538642923,0.00011487998891915483,0.0001781526185962439,0.0,2.999248574989246e-05,7.553617082209825e-05,0.0,0.00010855799792662576,0.0,0.0,0.0,0.0003228682430837414,9.64886868645731e-05,0.00014963191058395487,0.0,0.00018781496012466867 +95667,35.0,Eastern Counties in South Carolina and Georgia,G1301910110300,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,7327.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.000558448999262505,0.0,0.0,0.000558448999262505,0.0003656373900316564,0.0001496203508303655,4.319125840048309e-05,0.0,0.0,0.0003656373900316564,0.0001496203508303655,4.319125840048309e-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,6.654774617381361e-05,1.686979046704163e-05,6.654774617381361e-05,4.357129165889091e-05,1.7829554968574237e-05,5.146899546348469e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.357129165889091e-05,1.7829554968574237e-05,5.146899546348469e-06,0.0,0.0 +95668,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10302.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.000821929035865076,0.0,0.0,0.000821929035865076,0.0002898633314818028,0.00025533752439688715,0.0002767588695926837,0.0,0.0,0.0002898633314818028,0.00025533752439688715,0.0002767588695926837,0.0,0.0,0.0,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.794873105318476e-05,3.635607695060896e-05,9.794873105318476e-05,3.4542818489930924e-05,3.0428401253173666e-05,3.298116856984617e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4542818489930924e-05,3.0428401253173666e-05,3.298116856984617e-05,0.0,0.0 +95669,50.0,the Greater Atlanta and Macon Area,G1300590140400,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,9341.0,,1128.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0007243974670509766,0.00033209222974744175,0.0,0.0010564896967984183,0.0005850052752468105,0.00024045306534250133,0.00023100066660280884,0.0,0.0,0.00025291304549936866,0.00024045306534250133,0.00023100066660280884,0.0,0.0,0.00033209222974744175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.218910253389913e-05,0.0,0.0,8.632530867485132e-05,5.211317918241521e-05,0.00010851441120875044,3.0139250499468296e-05,2.86544142292603e-05,2.7527986713930085e-05,0.0,0.0,2.218910253389913e-05,0.0,0.0,0.0,0.0,0.0,6.008719553990416e-05,2.4697470205390263e-05,2.3726593265599552e-05,0.0,0.0 +95670,50.0,the Greater Atlanta and Macon Area,G1300630040524,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,76347.0,,7807.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0039299523391161245,0.0013275785416878736,0.0,0.005257530880803997,0.0022615962509348357,0.0016884977787544689,0.0006897819806857342,0.0,0.0006176371400675393,0.0018195960710943391,0.0016884977787544689,0.00028639852801811295,0.0,0.00013544223088778336,0.00044200017984049635,0.0004033834526676213,0.00048219490917975603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.870111881932758e-05,0.0,0.0,0.00046832561889594606,0.00019047764267574946,0.0005570267377152736,0.0002168381147155454,0.00020121535810214587,3.412961692943509e-05,0.0,1.6140416252334214e-05,2.9531895280824525e-05,2.6951748948374937e-05,3.2217474590128115e-05,0.0,0.0,0.0,0.00023961239795793212,0.00017889355871843353,7.308126478895683e-05,0.0,6.543763774736046e-05 +95671,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750961100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,160663.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007955595438816273,0.0,0.0,0.007955595438816273,0.0034829344669937523,0.0015125239416604445,0.0019611198159492004,0.0,0.0009990172142128753,0.0034829344669937523,0.0015125239416604445,0.0019611198159492004,0.0,0.0009990172142128753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009480527101743341,0.00021902202397979195,0.0009480527101743341,0.000415054471558742,0.00018024451257266433,0.0002337028033647562,0.0,0.00011905092267817148,0.0,0.0,0.0,0.0,0.0,0.0,0.000415054471558742,0.00018024451257266433,0.0002337028033647562,0.0,0.00011905092267817148 +95672,46.0,the Tallahassee-Valdosta Area,G1300270960400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,21860.0,,5877.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005011023587539733,0.004557637176874497,0.0,0.009568579903631162,0.003349334495481488,0.0004422276226017783,0.004585372425467003,0.0004280769855647859,0.0007635683745161073,0.003349334495481488,0.0004422276226017783,0.0007913036231086125,0.0004280769855647859,0.0,0.0,0.00379406880235839,0.0007635683745161073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003045130906677826,0.0,0.0,0.0005971516032480343,0.00047360578058884984,0.0009016646939158169,0.000399132119186988,5.2699199918728116e-05,9.42977455484866e-05,5.1012902609205814e-05,0.0,0.0,0.0002534961806689204,5.101690999886224e-05,0.0,0.0,0.0,0.00031561388347125136,4.167191349084459e-05,0.000432087986528675,4.033847321640725e-05,7.195243720863874e-05 +95673,50.0,the Greater Atlanta and Macon Area,G1301170130605,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,24340.0,,1921.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002069322956094594,0.0005596943168394528,0.0,0.002629017272934047,0.001462124329734497,0.000941004484180989,0.0002258884590185603,0.0,0.0,0.0009024300128950445,0.000941004484180989,0.0002258884590185603,0.0,0.0,0.0005596943168394528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7395563113420765e-05,0.0,0.0,0.0002465988941650719,9.856999241118686e-05,0.00028399445727849266,0.0001075415717908446,0.00011213844823978175,2.691887413444553e-05,0.0,0.0,3.7395563113420765e-05,0.0,0.0,0.0,0.0,0.0,0.0001579431256582106,0.00010165017192274341,2.4401159697538585e-05,0.0,0.0 +95674,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,192198.0,,26101.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.009893453020582364,0.004438778251148799,0.0,0.01433221354136974,0.007797476075672241,0.003641319785559084,0.0012182531331718278,0.0,0.0016751822773280085,0.0051258474865372656,0.003641319785559084,0.000808930009428489,0.0,0.00031735573905752515,0.0026716285891349766,0.000409323123743339,0.0013578265382704834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000296572842426532,0.0,0.0,0.0011789830416760164,0.0006377625105942494,0.0014755558841025485,0.0006108370099168207,0.00043392880802710924,9.63985739897787e-05,0.0,3.781864974230776e-05,0.00017850238055543374,2.7348543993620576e-05,9.072191787747772e-05,0.0,0.0,0.0,0.0008027798128597673,0.0003748877184931503,0.00012542379261858654,0.0,0.00017246638553917442 +95675,50.0,the Greater Atlanta and Macon Area,G1301510070311,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13368.0,,2496.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032098615318225205,0.001979676517024062,0.0,0.005189538048846584,0.003973247822436328,0.0005601750104363292,0.0005836638193782924,0.0,7.245139659563332e-05,0.001993571305412266,0.0005601750104363292,0.0005836638193782924,0.0,7.245139659563332e-05,0.001979676517024062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013226910664197516,0.0,0.0,0.00038251178645873536,0.00025009887357542486,0.0005147808931007105,0.00023756928886372992,6.675476242424672e-05,6.955386954494449e-05,0.0,8.633865625814282e-06,0.00013226910664197516,0.0,0.0,0.0,0.0,0.0,0.00039412989042422026,5.556706386018411e-05,5.7897057383924284e-05,0.0,7.186881432381705e-06 +95676,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,12589.0,,2855.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011216437309684415,0.0008403427996436974,0.0,0.0019619865306121386,0.0010242349205795323,0.0003987193650197546,0.0005390322450128517,0.0,0.0,0.00018389212093583508,0.0003987193650197546,0.0005390322450128517,0.0,0.0,0.0008403427996436974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.614752579311555e-05,0.0,0.0,0.00013366246298074223,9.638178874158417e-05,0.00018980998877385778,2.1913797695649757e-05,4.751402864851163e-05,6.423463663658084e-05,0.0,0.0,5.614752579311555e-05,0.0,0.0,0.0,0.0,0.0,9.908835547221537e-05,3.857361761535994e-05,5.2148015686282476e-05,0.0,0.0 +95677,50.0,the Greater Atlanta and Macon Area,G1300450910600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,3685.0,,583.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008720633855072575,0.00046274607757142497,0.0,0.0013348094630786826,0.0008339354245134366,0.0002227301495799549,0.00024969265561896914,0.0,2.8451233366321743e-05,0.00039955787323459415,0.0002227301495799549,0.00024969265561896914,0.0,0.0,0.0004343775512788425,0.0,2.8451233366321743e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.091849051993026e-05,0.0,0.0,0.00010392037751050584,5.856490616750432e-05,0.00013483886803043608,4.761374656233438e-05,2.6541879422969677e-05,2.9754895647213313e-05,0.0,0.0,2.902304060959316e-05,0.0,1.9009760033701532e-06,0.0,0.0,0.0,8.424191748874693e-05,2.2499601685728008e-05,2.5223281652139947e-05,0.0,2.8740672038211776e-06 +95678,50.0,the Greater Atlanta and Macon Area,G1301390001502,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,10761.0,,2746.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0009782925799518716,0.0008082107818500029,0.0,0.001786503361801874,0.0009672750112909964,0.000336726360298395,0.00048253267981878084,0.0,0.0,0.00015906422944099354,0.000336726360298395,0.00048253267981878084,0.0,0.0,0.0008082107818500029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3999190843241345e-05,0.0,0.0,0.0001165821234228538,8.759542849122599e-05,0.00017058131426609516,1.8955521087324756e-05,4.012733501256555e-05,5.750292457187094e-05,0.0,0.0,5.3999190843241345e-05,0.0,0.0,0.0,0.0,0.0,9.235865222013998e-05,3.215175874609353e-05,4.607383364608354e-05,0.0,0.0 +95679,50.0,the Greater Atlanta and Macon Area,G1301210011621,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,13170.0,,2874.0,,9.325022323477118,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,69937.66742607838,0.0,0.0,0.0033794566673892522,0.002436486085100939,0.0,0.005815942752490192,0.003959168360071701,0.0005363150710774658,0.0011913300664227358,0.0,0.00012912925491828897,0.0016518999140471057,0.0005363150710774658,0.0011913300664227358,0.0,0.0,0.0023072684460245948,0.0,0.00012912925491828897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001627894079540162,0.0,0.0,0.0004027227706191472,0.000279400308349489,0.0005655121785731634,0.00019685345179600017,6.391154336533595e-05,0.00014196830801274936,0.0,0.0,0.0001541559652715055,0.0,8.627537454957653e-06,0.0,0.0,0.0,0.0003849690445600482,5.2148502341564304e-05,0.00011583877110447348,0.0,1.2555860567077362e-05 +95680,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,FuelOil,64754.0,,2652.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005486380917840326,0.0007807435842135587,0.0,0.006267124502053885,0.0019066838600636786,0.0018081088446354574,0.0025523317973547496,0.0,0.0,0.0011259402758501198,0.0018081088446354574,0.0025523317973547496,0.0,0.0,0.0007807435842135587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.21654242624662e-05,0.0,0.0,0.000653801613608336,0.00023943556795852846,0.0007059670378708023,0.00013417616826124425,0.00021546890343653147,0.00030415654191056035,0.0,0.0,5.21654242624662e-05,0.0,0.0,0.0,0.0,0.0,0.00021478047171459382,0.00020367638217127558,0.00028751018398493286,0.0,0.0 +95681,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,22108.0,,1755.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005308553527957447,0.0013919600510325437,0.0,0.0067005962860637305,0.0036652466798311476,0.0016351188478261078,0.0010961168482670413,0.0,0.0003041139101394334,0.002577400538938037,0.0016351188478261078,0.0010961168482670413,0.0,0.0,0.0010878461408931103,0.0,0.0003041139101394334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.300402788302244e-05,0.0,0.0,0.0006326139747607034,0.0002946397481601236,0.0007256180026437259,0.0003071457395881873,0.00019485515745141558,0.00013062293382415835,0.0,0.0,7.268460955112264e-05,0.0,2.0319418331899794e-05,0.0,0.0,0.0,0.0003969152686526038,0.00017706956542246546,0.00011870019982518636,0.0,3.2932968743470176e-05 +95682,50.0,the Greater Atlanta and Macon Area,G1300890021705,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,14242.0,,634.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032698241602835193,0.0005031898366299464,0.0,0.003773096703987204,0.001599389391970727,0.0005892879003925654,0.0015017950449583443,0.0,8.262436666556811e-05,0.0010961995553407807,0.0005892879003925654,0.0015017950449583443,0.0,8.262436666556811e-05,0.0005031898366299464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3621984246900665e-05,0.0,0.0,0.00038966244967859377,0.00014910731729375761,0.00042328443392549445,0.00013063326439964796,7.022498935019553e-05,0.00017896776935029483,0.0,9.846282717311625e-06,3.3621984246900665e-05,0.0,0.0,0.0,0.0,0.0,0.00017942732098314804,6.61091975387801e-05,0.00016847871002233954,0.0,9.26920538122685e-06 +95683,50.0,the Greater Atlanta and Macon Area,G1301530020108,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,59542.0,,1512.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003064923466154588,0.0002571434316750258,0.0,0.0033220668978296134,0.001412950231925428,0.000817316470380174,0.0005524248707645851,0.0,0.0005393753247594264,0.0013597946083881097,0.000817316470380174,0.0003484370626268777,0.0,0.0005393753247594264,5.3155623537318304e-05,0.00020398780813770748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7180659569525964e-05,0.0,0.0,0.0003652413100914605,0.00010850086059998697,0.00038242196966098646,0.00016204423037228545,9.73981052699887e-05,4.152260591287541e-05,0.0,6.427636853631096e-05,3.551514678993232e-06,1.3629144890532731e-05,0.0,0.0,0.0,0.0,0.00016265271812523975,9.408593627158872e-05,6.359276127326919e-05,0.0,6.20905539908888e-05 +95684,35.0,Eastern Counties in South Carolina and Georgia,G1300730030603,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,54163.0,,1300.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004663347056148534,0.00038269939053235365,0.0,0.00504601575707459,0.0015567302794509735,0.0013136992871794653,0.0021755861904441502,0.0,0.0,0.0011740308889186199,0.0013136992871794653,0.0021755861904441502,0.0,0.0,0.00038269939053235365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.55687949301245e-05,0.0,0.0,0.0005557206231838675,0.00019372287808366173,0.000581289418113992,0.0001399066313039568,0.00015655060147947133,0.0002592597331887988,0.0,0.0,2.55687949301245e-05,0.0,0.0,0.0,0.0,0.0,0.0001793317504079907,0.00015133513864888027,0.00025062252905712096,0.0,0.0 +95685,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,3481.0,,364.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007781908568131437,0.00028906122271887943,0.0,0.0010672520795320228,0.0007353485926161823,0.00013423358067889596,0.00014151180316795503,0.0,5.6075395995250426e-05,0.0005023627658925533,0.00013423358067889596,0.00014151180316795503,0.0,0.0,0.00023298582672362901,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.931280707124914e-05,0.0,0.0,9.2738903879207e-05,4.913415072278066e-05,0.00011205171095045613,5.986779702011938e-05,1.5996943457960777e-05,1.6864306997271036e-05,0.0,0.0,1.55662882745948e-05,0.0,3.7465187966543393e-06,0.0,0.0,0.0,7.720487926693318e-05,1.4093298734701668e-05,1.4857445554574593e-05,0.0,5.887403907657258e-06 +95686,50.0,the Greater Atlanta and Macon Area,G1301210001202,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,17058.0,,856.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.00409598511986546,0.0006790250753997138,0.0,0.004775010195265175,0.0022011660604979275,0.0011200191925777013,0.0012833656632128332,0.0,0.00017045927897671258,0.0016926002640749267,0.0011200191925777013,0.0012833656632128332,0.0,0.0,0.0005085657964230013,0.0,0.00017045927897671258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.536995591052549e-05,0.0,0.0,0.0004881062240574632,0.00015421100280145998,0.0005334761799679887,0.00020170208132089465,0.00013346931762753752,0.00015293482510903112,0.0,0.0,3.398049438414388e-05,0.0,1.1389461526381613e-05,0.0,0.0,0.0,0.00024591982287158434,0.00012513136850255486,0.00014338084810619877,0.0,1.904414048765068e-05 +95687,81.0,the Columbus-Albany Area,G1301770020402,ComStock 90.1-2004,gen5_led,5001_10000,Electricity,10024.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0024068585528875855,0.0,0.0,0.0024068585528875855,0.0011516960018198561,0.0003563847807426757,0.0008375745357579662,0.0,6.12859416408268e-05,0.0011516960018198561,0.0003563847807426757,0.0008375745357579662,0.0,6.12859416408268e-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.00028682113063026516,8.57343991841354e-05,0.00028682113063026516,0.00013724560132045093,4.246975196336251e-05,9.981229476281553e-05,0.0,7.303338641181625e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013724560132045093,4.246975196336251e-05,9.981229476281553e-05,0.0,7.303338641181625e-06 +95688,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,251623.0,,4031.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011613351269411744,0.0006855798850291817,0.0,0.012298931154440928,0.005236928200833896,0.002956945565106466,0.0024567543390853564,0.0,0.0016483207797766291,0.005236928200833896,0.002956945565106466,0.001771174454056175,0.0,0.0016483207797766291,0.0,0.0006855798850291817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.580684476494443e-05,0.0,0.0,0.0013839403774938133,0.0003732225497432933,0.001429747222258758,0.000624074500377803,0.00035237342492003905,0.0002110673986939571,0.0,0.00019642716639453844,0.0,4.580684476494443e-05,0.0,0.0,0.0,0.0,0.0006087914026258467,0.0003437440745860896,0.00028559698789850724,0.0,0.0001916168182977485 +95689,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,101341.0,,2481.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009148694395770391,0.0007302591818538378,0.0,0.009878984267230525,0.0024853363868068646,0.0025581014433387174,0.004835546437084943,0.0,0.0,0.0017550772049530268,0.0025581014433387174,0.004835546437084943,0.0,0.0,0.0007302591818538378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8792625812458566e-05,0.0,0.0,0.0010902336855808867,0.00034968847567193073,0.0011390263113933454,0.0002091494378170026,0.00030484441211090494,0.0005762434928789323,0.0,0.0,4.879262581245857e-05,0.0,0.0,0.0,0.0,0.0,0.0002865541092748285,0.00029494376874768843,0.0005575284333708285,0.0,0.0 +95690,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970500,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,42258.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034951508345009777,0.0,0.0,0.0034951508345009777,0.0019092237134582042,0.0012143972527201934,0.0003715298683225803,0.0,0.0,0.0019092237134582042,0.0012143972527201934,0.0003715298683225803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004165112815301734,9.46043845287891e-05,0.0004165112815301734,0.0002275189979701721,0.0001447176902994594,4.427459326054193e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002275189979701721,0.0001447176902994594,4.427459326054193e-05,0.0,0.0 +95691,50.0,the Greater Atlanta and Macon Area,G1301210010121,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,11628.0,,760.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028254390530822204,0.0006030172746332905,0.0,0.0034284563277155104,0.0015816073711167756,0.0010550114326186057,0.0007179801071309277,0.0,7.377470977546223e-05,0.0010524475133326869,0.0010550114326186057,0.0007179801071309277,0.0,0.0,0.0005291598577840888,0.0,7.377470977546223e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.02880424175616e-05,0.0,0.0,0.0003367031083721852,0.0001417258071131448,0.00037699115078974676,0.0001254185075240342,0.00012572404573489828,8.556055511325272e-05,0.0,0.0,3.5353572265472374e-05,0.0,4.928944429634474e-06,0.0,0.0,0.0,0.00017391266679256815,0.0001160084703030905,7.894869321896586e-05,0.0,8.112226051297956e-06 +95692,50.0,the Greater Atlanta and Macon Area,G1302470060102,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,212488.0,,17962.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009917708155004996,0.0030546398565309565,0.0,0.012972348011535953,0.006281530174257728,0.002809428958091627,0.0017167422444966127,0.0,0.002164646634689987,0.005453185419074281,0.002809428958091627,0.0013026496535312796,0.0,0.0003524441243078096,0.0008283447551834468,0.0004140925909653331,0.0018122025103821768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020409343446557127,0.0,0.0,0.0011818745818912612,0.0004985842649681616,0.0013859680163568323,0.0006498458249037568,0.0003347943520118707,0.00015523430318335494,0.0,4.2000101792278875e-05,5.534522364247792e-05,2.7667280938591836e-05,0.00012108092988450152,0.0,0.0,0.0,0.0006711198240719077,0.0003001598998638538,0.00018341705303350295,0.0,0.00023127123938756808 +95693,46.0,the Tallahassee-Valdosta Area,G1301850010102,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,84489.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007585229361189201,0.0,0.0,0.007585229361189201,0.0055911418109019185,0.0013280856354156983,0.000666032288471022,0.0,0.0,0.0055911418109019185,0.0013280856354156983,0.000666032288471022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009039186031971412,0.00025749085225854176,0.0009039186031971412,0.0006662866546721335,0.0001582656575467002,7.936991054737664e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006662866546721335,0.0001582656575467002,7.936991054737664e-05,0.0,0.0 +95694,50.0,the Greater Atlanta and Macon Area,G1301510070501,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,156637.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.013812515838715393,0.0,0.0,0.013812515838715393,0.006248882106726432,0.0064231050731013775,0.0011404982852881431,0.0,0.0,0.006248882106726432,0.0064231050731013775,0.0011404982852881431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016460091161731411,0.00043949802698780644,0.0016460091161731411,0.0007446664339549843,0.0007654282266832928,0.00013591083597546205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007446664339549843,0.0007654282266832928,0.00013591083597546205,0.0,0.0 +95695,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,8374.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0020108570838237813,0.0,0.0,0.0020108570838237813,0.001118365051102915,0.0005357764236832335,0.00030816655675265945,0.0,4.854905228497345e-05,0.001118365051102915,0.0005357764236832335,0.00030816655675265945,0.0,4.854905228497345e-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.00023962632155715428,7.819014116056717e-05,0.00023962632155715428,0.00013327138239196482,6.384647353462122e-05,3.672305655912297e-05,0.0,5.785409071445298e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013327138239196482,6.384647353462122e-05,3.672305655912297e-05,0.0,5.785409071445298e-06 +95696,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,3850.0,,397.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003430484191957217,0.00011680464156905677,0.0,0.00045985306076477855,0.0002250775725873522,0.00012947944897000806,0.00010532672881371596,0.0,0.0,0.00010827293101829543,0.00012947944897000806,0.00010532672881371596,0.0,0.0,0.00011680464156905677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.804099702318848e-06,0.0,0.0,4.088142531079159e-05,2.305141047896846e-05,4.8685525013110445e-05,1.2902994139959987e-05,1.5430196223495236e-05,1.2551892258600532e-05,0.0,0.0,7.804099702318848e-06,0.0,0.0,0.0,0.0,0.0,2.382939405006353e-05,1.3708237455306525e-05,1.1151142675186536e-05,0.0,0.0 +95697,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,NaturalGas,14463.0,,1783.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034727873192397793,0.0014141255467946781,0.0,0.004886912866034457,0.0026906265228871487,0.0005890397791713475,0.0014951784790591996,0.0,0.00011206808491676155,0.0013884863539354929,0.0005890397791713475,0.0014951784790591996,0.0,0.0,0.0013021401689516559,0.0,0.00011206808491676155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.448470345203684e-05,0.0,0.0,0.00041384487284676466,0.00022212929509844975,0.0005083295762988015,0.00016546304330542486,7.019465060884181e-05,0.00017817732290180313,0.0,0.0,8.700240795115616e-05,0.0,7.48782156845888e-06,0.0,0.0,0.0,0.00027987506179282434,6.127106203395105e-05,0.0001555262930988159,0.0,1.1657159373210284e-05 +95698,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,1528.0,,208.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,3237.924873899493,0.0,0.0,0.00013613909353660955,6.119507495761935e-05,0.0,0.0001973341684942289,0.00010314776676657904,6.518472377632071e-05,2.9001677951329135e-05,0.0,0.0,4.19526918089597e-05,6.518472377632071e-05,2.9001677951329135e-05,0.0,0.0,6.119507495761935e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.087937871098623e-06,0.0,0.0,1.6223517140897362e-05,1.0168540367445846e-05,2.0311455011995986e-05,4.999447234356784e-06,7.767977999834536e-06,3.4560919067060434e-06,0.0,0.0,4.087937871098623e-06,0.0,0.0,0.0,0.0,0.0,1.0616920730220607e-05,6.709413755129001e-06,2.9851205266463778e-06,0.0,0.0 +95699,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030600,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,12793.0,,1739.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011398426675029792,0.0005119026330456823,0.0,0.0016517759901549592,0.0006593355016998464,0.00044711687415123177,0.0005453236143038808,0.0,0.0,0.00014743286865416414,0.00044711687415123177,0.0005453236143038808,0.0,0.0,0.0005119026330456823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.42026823395198e-05,0.0,0.0,0.000135834354925563,7.467652564052269e-05,0.0001700370372650828,1.756948496438988e-05,5.32826449721474e-05,6.498588225067524e-05,0.0,0.0,3.42026823395198e-05,0.0,0.0,0.0,0.0,0.0,6.787328060278396e-05,4.602708178653694e-05,5.6136674875761895e-05,0.0,0.0 +95700,50.0,the Greater Atlanta and Macon Area,G1302190030400,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,31277.0,,2349.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027689083489976386,0.0006914675194935414,0.0,0.0034603758684911795,0.001121152697267678,0.0009688708708184768,0.0013703523004050247,0.0,0.0,0.0004296851777741367,0.0009688708708184768,0.0013703523004050247,0.0,0.0,0.0006914675194935414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.619900606338728e-05,0.0,0.0,0.00032996523011342077,0.00015338989928407633,0.0003761642361768081,5.120471705460918e-05,0.00011545838993029152,0.00016330212312852,0.0,0.0,4.6199006063387276e-05,0.0,0.0,0.0,0.0,0.0,0.00012187622502094076,0.0001053222496417141,0.00014896576151415326,0.0,0.0 +95701,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,115800.0,,19305.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.010535655036837678,0.005802767557440414,0.0,0.016338422594278094,0.004526683293295216,0.001576866601258792,0.00652796072926222,0.0,0.003706943308484066,0.004526683293295216,0.001576866601258792,0.004432136480305874,0.0,0.0,0.0,0.002095824248956347,0.003706943308484066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003877075805975279,0.0,0.0,0.0012555130709794651,0.0008666047535888988,0.0016432206515769932,0.0005394358512161751,0.00018791205882777423,0.000528168895425337,0.0,0.0,0.0,0.00014003093194360478,0.00024767664865392306,0.0,0.0,0.0,0.00045526668365746936,0.00015859179483323674,0.0006565431773544631,0.0,0.0003728221475223327 +95702,85.0,Rural Climate Zone 3A,G1302610950700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3799.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005949946884805775,0.0,0.0,0.0005949946884805776,0.00041345266162279775,0.00011190267076928293,4.3669334934354324e-05,0.0,2.5970021154142532e-05,0.00041345266162279775,0.00011190267076928293,4.3669334934354324e-05,0.0,2.5970021154142532e-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,7.09012851093439e-05,2.4373023554168526e-05,7.09012851093439e-05,4.926821299160552e-05,1.3334645364601376e-05,5.203764044722489e-06,0.0,3.0946627084145104e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.926821299160551e-05,1.3334645364601374e-05,5.203764044722488e-06,0.0,3.09466270841451e-06 +95703,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300750960300,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,28772.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.00690852186944435,0.0,0.0,0.006908521869444349,0.003570216252104684,0.0009386425798673999,0.002262121173843797,0.0,0.00013762457070220753,0.003570216252104684,0.0009386425798673999,0.002262121173843797,0.0,0.00013762457070220753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008232794629140452,0.00024878013788957393,0.0008232794629140452,0.0004254579740884783,0.0001118568014439303,0.00026957400443148623,0.0,1.6400539043325403e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00042545797408847835,0.00011185680144393031,0.0002695740044314863,0.0,1.6400539043325403e-05 +95704,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,107646.0,,22474.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.030382541619419452,0.01987835100778547,0.0,0.05026089262720493,0.0380840654847711,0.004338821742977855,0.004384192631342257,0.0006445063796317158,0.002809306388481985,0.021538907078472027,0.004338821742977855,0.0029585139034689813,0.0006445063796317158,0.0009017925148688723,0.016545158406299082,0.001425678727873276,0.0019075138736131122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013281552975178865,0.0,0.0,0.0036206301062739967,0.002160535893067727,0.004948785403791883,0.002566750879548175,0.0005170491930912398,0.0003525605146174954,7.680460808745324e-05,0.00010746491092963302,0.0011054508383010375,9.525552467817094e-05,0.00012744893453867827,0.0,0.0,0.0,0.003749831281071908,0.00042720884148566597,0.0004316761475432845,6.34593537331205e-05,0.0002766097799579029 +95705,50.0,the Greater Atlanta and Macon Area,G1301210007706,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,54985.0,,5024.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004899073922121189,0.0014789628170925947,0.0,0.00637806742882008,0.0022730256904393564,0.001714167959758189,0.0023908737786225353,0.0,0.0,0.0007940628733467619,0.001714167959758189,0.0023908737786225353,0.0,0.0,0.0014789628170925947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.881664531221309e-05,0.0,0.0,0.0005838142558076161,0.0002737229350811575,0.0006826309011198292,9.462711378453239e-05,0.00020427446241149636,0.0002849163368394525,0.0,0.0,9.881664531221309e-05,0.0,0.0,0.0,0.0,0.0,0.00024327707297697656,0.0001834637266067512,0.0002558901015361015,0.0,0.0 +95706,46.0,the Tallahassee-Valdosta Area,G1301850010401,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,25707.0,,294.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0028244501055946585,0.0001094255487323618,0.0,0.0029338756543270204,0.0016598662291247106,0.0003596628694524725,0.000851380367120203,0.0,6.296618862963453e-05,0.0016598662291247106,0.0003596628694524725,0.0007419548183878413,0.0,6.296618862963453e-05,0.0,0.0001094255487323618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.310317163483997e-06,0.0,0.0,0.0003365860461620466,0.00010016759953891909,0.0003438963633255306,0.00019780410003077969,4.286055644619598e-05,8.841779086745966e-05,0.0,7.50359881761134e-06,0.0,7.310317163483997e-06,0.0,0.0,0.0,0.0,0.00019456242426667752,4.2158144175439476e-05,9.979516740171904e-05,0.0,7.380627481694585e-06 +95707,85.0,Rural Climate Zone 3A,G1302370960202,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,56986.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005077349845104545,0.0,0.0,0.005077349845104545,0.001556300624962806,0.001426176694260546,0.002094872525881192,0.0,0.0,0.001556300624962806,0.001426176694260546,0.002094872525881192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006050574006458864,0.00022219002189396379,0.0006050574006458864,0.00018546116369575768,0.00016995456090602737,0.0002496416760441013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018546116369575768,0.00016995456090602737,0.0002496416760441013,0.0,0.0 +95708,50.0,the Greater Atlanta and Macon Area,G1300450910300,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,12086.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001065748857071836,0.0,0.0,0.0010657488570718359,0.000633957767464756,0.0003373291953556717,9.443152065197042e-05,0.0,0.0,0.000633957767464756,0.0003373291953556717,9.443152065197042e-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.00012700166337900284,3.2762432340386726e-05,0.00012700166337900284,7.554658909161385e-05,4.019837190741009e-05,1.1253082861528722e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.554658909161387e-05,4.01983719074101e-05,1.1253082861528723e-05,0.0,0.0 +95709,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,339961.0,,44392.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,495950.45603733143,0.0,0.0,0.031029060643049833,0.01334304041795711,0.0,0.04437210106100695,0.013298603102471898,0.006734478295586308,0.01692879959457847,0.0,0.00741022006837027,0.013298603102471898,0.006734478295586308,0.010995979244991629,0.0,0.0,0.0,0.005932820349586841,0.00741022006837027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008915038516139888,0.0,0.0,0.0036976736952183463,0.0022666139056453745,0.004589177546832335,0.0015847690473405882,0.0008025348730686156,0.0013103697748091427,0.0,0.0,0.0,0.00039639632549358004,0.0004951075261204088,0.0,0.0,0.0,0.0013754059263091814,0.0006965123544914471,0.0017508584253752,0.0,0.0007664008406565072 +95710,50.0,the Greater Atlanta and Macon Area,G1300670030101,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,74019.0,,3116.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.004114312637161834,0.0005299073117611181,0.0,0.004644202218561531,0.0019477333930770606,0.0005028153195112775,0.0019027514661543862,0.0,0.00029090203981880635,0.0016329485564254432,0.0005028153195112775,0.0016876289910448857,0.0,0.00029090203981880635,0.0003147848366516175,0.00021512247510950062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.540492409224542e-05,0.0,0.0,0.0004902938186075165,0.0001725065701920188,0.0005256987426997619,0.00019459497950835233,5.9919423922923844e-05,0.00020111112970329207,0.0,3.466617258377981e-05,2.10318540614222e-05,1.437307003082322e-05,0.0,0.0,0.0,0.0,0.00022047295696183002,5.69159930678319e-05,0.0002153812444750325,0.0,3.292854819506746e-05 +95711,50.0,the Greater Atlanta and Macon Area,G1300890020300,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,82241.0,,5622.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0065177188353499746,0.0016378659760813291,0.0,0.008155554437831867,0.005721323058092122,0.0019470388447582051,0.000487222908580977,0.0,0.0,0.004083457082010793,0.0019470388447582051,0.000487222908580977,0.0,0.0,0.0016378659760813291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010943207283474471,0.0,0.0,0.000776702788093507,0.0002798618327814002,0.0008861348609282517,0.0004866169561436222,0.00023202450695602246,5.8061324993862326e-05,0.0,0.0,0.00010943207283474471,0.0,0.0,0.0,0.0,0.0,0.0006216455117864276,0.00021155385683139318,5.2938792528155895e-05,0.0,0.0 +95712,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,20714.0,,5817.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004623538715075348,0.004511303948176231,0.0,0.00913484266325158,0.0027102917268909134,0.0007828941016694857,0.0045096058717317925,0.00041489667792461585,0.0007172351458178411,0.0027102917268909134,0.0007828941016694857,0.000715537069373402,0.00041489667792461585,0.0,0.0,0.00379406880235839,0.0007172351458178411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003014186939225056,0.0,0.0,0.0005509794387071156,0.00046031515636254513,0.0008523981326296212,0.0003229809690023453,9.329619135630727e-05,8.526936555587306e-05,4.944254883796866e-05,0.0,0.0,0.0002534972762190655,4.792141770344007e-05,0.0,0.0,0.0,0.0002529050244266589,7.305407382597144e-05,0.0004208041414247498,3.8715188266996425e-05,6.692725003474144e-05 +95713,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950300,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,17883.0,,,3729.0,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0016553666740917905,0.0,0.00035517081368331433,0.0020105374877751048,0.0006664861799672114,0.0007798842752372231,0.0005641363429643725,0.0,0.0,0.00031131536628389704,0.0007798842752372231,0.0005641363429643725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035517081368331433,0.0,0.0,0.0,0.0,2.8644011323913906e-05,0.00019726525855462415,8.920694720981744e-05,0.00022590926987853808,3.709855174879229e-05,9.293655333599267e-05,6.722649627822356e-05,0.0,0.0,0.0,0.0,0.0,2.8644011323913906e-05,0.0,0.0,7.488813673757803e-05,8.762984439726172e-05,6.338784037897311e-05,0.0,0.0 +95714,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,71992.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005753427952697826,0.0,0.0,0.005753427952697826,0.0033016710060824986,0.0019737068650645512,0.00047805008155077594,0.0,0.0,0.0033016710060824986,0.0019737068650645512,0.00047805008155077594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006856236175495374,0.00016519623899752226,0.0006856236175495374,0.0003934530227474623,0.00023520239619466844,5.6968198607406583e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003934530227474623,0.00023520239619466844,5.6968198607406583e-05,0.0,0.0 +95715,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,11477.0,,482.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0009530350339688622,0.00014181667070168455,0.0,0.0010948517046705467,0.0005864476867428025,0.0002639613037665416,0.0002444734037675003,0.0,0.0,0.00044463101604111794,0.0002639613037665416,0.0002444734037675003,0.0,0.0,0.00014181667070168455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.47446682544331e-06,0.0,0.0,0.00011357229079229717,4.5601928438099086e-05,0.0001230467576177405,5.298626099693442e-05,3.145602090244567e-05,2.9133666144504386e-05,0.0,0.0,9.47446682544331e-06,0.0,0.0,0.0,0.0,0.0,6.590891356180529e-05,2.966573685410472e-05,2.747555630505734e-05,0.0,0.0 +95716,85.0,Rural Climate Zone 3A,G1302350950100,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,35300.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0031452243014200693,0.0,0.0,0.0031452243014200693,0.0007483660495694823,0.0013090344670222145,0.0010877930952220751,0.0,0.0,0.0007483660495694823,0.0013090344670222145,0.0010877930952220751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037481006489674504,0.00011058817633467059,0.00037481006489674504,8.918127952878108e-05,0.00015599500910480328,0.000129630119044398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.918127952878108e-05,0.00015599500910480328,0.000129630119044398,0.0,0.0 +95717,50.0,the Greater Atlanta and Macon Area,G1301210004400,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,59976.0,,5361.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005198757927618256,0.0015781823142530676,0.0,0.006776940241871323,0.0022995721998868694,0.0017356506841665813,0.002741686668211576,0.0,0.0,0.0007213898856338016,0.0017356506841665813,0.002741686668211576,0.0,0.0,0.0015781823142530676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010544566301829878,0.0,0.0,0.0006195255854498736,0.00029171203892039194,0.0007249712484681724,8.596658999270787e-05,0.0002068340209749679,0.00032672131726319036,0.0,0.0,0.00010544566301829878,0.0,0.0,0.0,0.0,0.0,0.0002459994730947105,0.00018567329775619055,0.0002932951945601102,0.0,0.0 +95718,35.0,Eastern Counties in South Carolina and Georgia,G1302450001200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,34244.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0029434144007142162,0.0,0.0,0.0029434144007142162,0.0015345653643935352,0.0011466337523745693,0.0002622152839461115,0.0,0.0,0.0015345653643935352,0.0011466337523745693,0.0002622152839461115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035076103226133276,9.945573065442233e-05,0.00035076103226133276,0.00018287120262663493,0.00013664213863701872,3.124769099767907e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018287120262663493,0.00013664213863701872,3.124769099767907e-05,0.0,0.0 +95719,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,17667.0,,231.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004394144120695664,0.00018344428955378384,0.0,0.004577588410249447,0.002044270741614461,0.0015243740760891753,0.0008254993029920273,0.0,0.00018344428955378384,0.002044270741614461,0.0015243740760891753,0.0008254993029920273,0.0,0.0,0.0,0.0,0.00018344428955378384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2257548091487763e-05,0.0,0.0,0.0005236435691412392,0.0001950867438193001,0.0005359011172327271,0.0002436126804280902,0.00018165737399239925,9.837351472074964e-05,0.0,0.0,0.0,0.0,1.2257548091487765e-05,0.0,0.0,0.0,0.00023932404492820416,0.00017845941951174222,9.664171592136611e-05,0.0,2.1475936871414686e-05 +95720,50.0,the Greater Atlanta and Macon Area,G1300890023410,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Electricity,4462.0,,247.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007709126343240845,0.00019593305768841925,0.0,0.0009667629849387646,0.0006649648728640317,0.0001324140250566312,0.00014324865171648046,0.0,2.6135435301621144e-05,0.0004690318151756124,0.0001324140250566312,0.00014324865171648046,0.0,2.6135435301621144e-05,0.00019593305768841925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3088562769763876e-05,0.0,0.0,9.186626004822792e-05,4.4778629772537414e-05,0.0001049548228179918,5.589245367809254e-05,1.5779195616051165e-05,1.7070310310431367e-05,0.0,3.114444606291173e-06,1.3088562769763876e-05,0.0,0.0,0.0,0.0,0.0,7.219067289388776e-05,1.4375282002874913e-05,1.555152306619572e-05,0.0,2.837344855033399e-06 +95721,50.0,the Greater Atlanta and Macon Area,G1301990970500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,20746.0,,1524.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001034495667414401,0.0002591646928769118,0.0,0.0012936603602913127,0.000675243084321291,0.00038834810618341655,7.941428880041649e-05,0.0,0.0001506726113476087,0.0005221768741819751,0.00038834810618341655,7.941428880041649e-05,0.0,4.45563982485927e-05,0.00015306621013931585,0.0,0.00010611621309901601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7316113681233428e-05,0.0,0.0,0.00012327922502491532,5.006635461166759e-05,0.00014059533870614874,6.222699852961267e-05,4.627883429405135e-05,9.463676154091036e-06,0.0,5.309716047160254e-06,1.0227133434363289e-05,0.0,7.0901649026600575e-06,0.0,0.0,0.0,7.338559104319956e-05,4.22057714688373e-05,8.630765210652525e-06,0.0,1.6375137923671614e-05 +95722,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6932.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013602832417903893,0.0,0.0,0.0013602832417903893,0.0006356865687603168,0.0002961740310604599,0.00038161043823316444,0.0,4.689491081018731e-05,0.0006356865687603168,0.0002961740310604599,0.00038161043823316444,0.0,4.689491081018731e-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.00016210583111582122,5.2657180346672764e-05,0.00016210583111582122,7.57551783277316e-05,3.5295250272132046e-05,4.5476762009387674e-05,0.0,5.5884967618818404e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.57551783277316e-05,3.5295250272132046e-05,4.5476762009387674e-05,0.0,5.5884967618818404e-06 +95723,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,21075.0,,2016.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0024257571454966115,0.0005873950395266825,0.0,0.0030131825586227315,0.0017277414568176368,0.0008924674722794617,0.0003929432559261953,0.0,0.0,0.0011403464172909544,0.0008924674722794617,0.0003929432559261953,0.0,0.0,0.0005873950395266825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.924707420597486e-05,0.0,0.0,0.00028907331223311777,0.00011096214904375965,0.0003283203864390926,0.00013589312374136247,0.00010635381565343207,4.6826372838323205e-05,0.0,0.0,3.924707420597486e-05,0.0,0.0,0.0,0.0,0.0,0.0001882570112275201,9.724444492903369e-05,4.2815620734673415e-05,0.0,0.0 +95724,35.0,Eastern Counties in South Carolina and Georgia,G1301270000404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,112907.0,,3439.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010059868806749186,0.0010122966637297261,0.0,0.011072165470478913,0.003976605736024838,0.002851954423639222,0.004243574621208555,0.0,0.0,0.0029643090722951118,0.002851954423639222,0.004243574621208555,0.0,0.0,0.0010122966637297261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.763577890849287e-05,0.0,0.0,0.0011988141466830026,0.0004404072349847104,0.0012664499255914954,0.00035325069533948526,0.0003398616199109952,0.000505698174214432,0.0,0.0,6.763577890849287e-05,0.0,0.0,0.0,0.0,0.0,0.0004548497809144046,0.00032621057526988014,0.0004853860590866942,0.0,0.0 +95725,50.0,the Greater Atlanta and Macon Area,G1300670030328,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,31058.0,,2334.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002834980650721442,0.0006800345178118255,0.0,0.003515015168533267,0.00248170531566095,0.0007034221893788945,0.00032991803709286037,0.0,0.0,0.0018016707978491247,0.0007034221893788945,0.00032991803709286037,0.0,0.0,0.0006800345178118255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.543527871612665e-05,0.0,0.0,0.00033783911723797534,0.00013782974562499416,0.00038327439595410193,0.0002147015965501889,8.38254509585081e-05,3.931568929190877e-05,0.0,0.0,4.543527871612665e-05,0.0,0.0,0.0,0.0,0.0,0.0002706031297705429,7.670058358451038e-05,3.5973994511634865e-05,0.0,0.0 +95726,50.0,the Greater Atlanta and Macon Area,G1302190030400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,135659.0,,3790.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,729707.6418815667,0.05450214851674875,0.0,0.03234510919293815,0.0033518204865465697,0.0,0.09019907819623349,0.07880056466720525,0.004486369347414934,0.0033996812407358474,0.0006476417662260038,0.002864636740145889,0.024298416150456498,0.004486369347414934,0.002006278551333182,0.0006476417662260038,0.0009063111602547581,0.0,0.0013934026894026647,0.001958325579891131,0.0,0.0,0.0,0.05450214851674875,0.0,0.0,0.0,0.00022394763823883754,0.0,0.0,0.0038545076108929418,0.0014642220006837363,0.00407845524913178,0.0028955978916598256,0.0005346324444829253,0.00023908455215150104,7.717828689832652e-05,0.00010800344633870897,0.0,9.309843491316572e-05,0.00013084304194678937,0.0,0.0,0.0,0.0035630583264090595,0.00020285635929339707,0.00015372050445447845,2.928386868073027e-05,0.00012952785087543854 +95727,50.0,the Greater Atlanta and Macon Area,G1301210010114,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4896.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011755983461305159,0.0,0.0,0.0011755983461305159,0.0006073180424677344,0.000285173990253132,0.0002349707964933724,0.0,4.813551691627692e-05,0.0006073180424677344,0.000285173990253132,0.0002349707964933724,0.0,4.813551691627692e-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.0001400930664919037,4.216228844370023e-05,0.0001400930664919037,7.237254729492393e-05,3.398345949515153e-05,2.8000872513261456e-05,0.0,5.736187188566761e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.237254729492393e-05,3.398345949515153e-05,2.8000872513261456e-05,0.0,5.736187188566761e-06 +95728,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,7376.0,,1304.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0003796602290875907,0.0002217181695577603,0.0,0.000601378398645351,0.00032060039519739476,0.00010464459310115164,3.0389839473970508e-05,0.0,0.00014574357087283405,0.00019134606044520985,0.00010464459310115164,3.0389839473970508e-05,0.0,5.329746642867872e-05,0.0001292543347521849,0.0,9.244610444415531e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4813614636325014e-05,0.0,0.0,4.524373484484578e-05,2.5503975150720206e-05,6.00573494811708e-05,2.2802521199531856e-05,1.2470392894703208e-05,3.6215271808745004e-06,0.0,6.351406479410004e-06,8.6358457176177e-06,0.0,6.176584303382537e-06,0.0,0.0,0.0,3.201712935074386e-05,1.0450453347422314e-05,3.0349164753442648e-06,0.0,1.4554850307660357e-05 +95729,81.0,the Columbus-Albany Area,G1302150010501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,62880.0,,831.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.007073718501712574,0.0003087086921921836,0.0,0.007382427193904757,0.004242448673534027,0.0009285284788504198,0.0020853626705659516,0.0,0.00012612611937812946,0.004242448673534027,0.0009285284788504198,0.001776653978373768,0.0,0.00012612611937812946,0.0,0.0003087086921921836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.062520967680634e-05,0.0,0.0,0.000842963042420424,0.0002970359480825693,0.0008635882520972303,0.0005055654165894384,0.00011065116477511225,0.00021172084280364197,0.0,1.5030235836205414e-05,0.0,2.062520967680634e-05,0.0,0.0,0.0,0.0,0.0004962770019072308,0.00010861824505834458,0.00024394344249676543,0.0,1.475409538308691e-05 +95730,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,191034.0,,10267.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.016699779956501265,0.00302203622174109,0.0,0.019721816178242358,0.003046925492448527,0.006270960702841099,0.010403960672559031,0.0,0.0,2.488927070743695e-05,0.006270960702841099,0.010403960672559031,0.0,0.0,0.00302203622174109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002019147162236822,0.0,0.0,0.001990080714274559,0.000745434046947003,0.0021919954304982416,2.9660066034550473e-06,0.0007472983468766797,0.0012398200180158841,0.0,0.0,0.0002019147162236822,0.0,0.0,0.0,0.0,0.0,0.00033865272326612906,0.00069699043339764,0.001156355684852817,0.0,0.0 +95731,50.0,the Greater Atlanta and Macon Area,G1301350050731,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,17664.0,,2075.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.00157388576937139,0.0006107538549305832,0.0,0.0021846396243019725,0.0010081842564858342,0.00047418510690580573,0.0007022702609103328,0.0,0.0,0.000397430401555251,0.00047418510690580573,0.0007022702609103328,0.0,0.0,0.0006107538549305832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0807178963437376e-05,0.0,0.0,0.0001875556565053656,0.00010432091830736135,0.00022836283546880297,4.7360692452704226e-05,5.6507340470017996e-05,8.36876235826433e-05,0.0,0.0,4.0807178963437376e-05,0.0,0.0,0.0,0.0,0.0,0.00010538663353214367,4.9567102210135214e-05,7.34090997265241e-05,0.0,0.0 +95732,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,10804.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0022804821442139237,0.0,0.0,0.0022804821442139237,0.0011542599211057743,0.0007508148154054328,0.00030709136479404843,0.0,6.839874998240724e-05,0.0011542599211057743,0.0007508148154054328,0.00030709136479404843,0.0,6.839874998240724e-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.00027176183007156246,7.465575916227099e-05,0.00027176183007156246,0.00013755152143323993,8.947353909221499e-05,3.659564338504012e-05,0.0,8.150982246008129e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013755152143323993,8.947353909221499e-05,3.659564338504012e-05,0.0,8.150982246008129e-06 +95733,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,33526.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.0029870807601680076,0.0,0.0,0.0029870807601680076,0.0009480326281423368,0.0008570993246822434,0.001181979496949725,0.0,0.0,0.0009480326281423368,0.0008570993246822434,0.001181979496949725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035596632195559536,0.00011760106584312948,0.00035596632195559536,0.00011297574951229089,0.0001021393523155372,0.00014085487736610567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011297574951229089,0.0001021393523155372,0.00014085487736610567,0.0,0.0 +95734,50.0,the Greater Atlanta and Macon Area,G1302550160700,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,41475.0,,8562.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0021349128185885577,0.001455981819091896,0.0,0.003590894637680454,0.001612469988985282,0.0005300668850138986,0.000937439669001032,0.0,0.0005109358250416616,0.0010049214245657528,0.0005300668850138986,0.0005026202855356569,0.0,9.732195383466984e-05,0.0006075485644195292,0.00043481938346537493,0.00041361387120699176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.728060302737806e-05,0.0,0.0,0.0002544137495981331,0.00015512746473436207,0.00035169435262551115,0.00011975469229900334,6.316712447459338e-05,5.989636220918429e-05,0.0,1.1597683510872461e-05,4.05930142397055e-05,2.9052211557069334e-05,2.7635377230603222e-05,0.0,0.0,0.0,0.000157926267998373,5.191506540375791e-05,9.181339771298797e-05,0.0,5.0041358032515776e-05 +95735,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Propane,15394.0,,,14783.0,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.002653498394080875,0.0,0.0013932977534085518,0.004046796147489427,0.0027353552445656165,0.0009583781830593833,0.0003530627198644272,0.0,0.0,0.0013420574911570645,0.0009583781830593833,0.0003530627198644272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013932977534085518,0.0,0.0,0.0,0.0,0.00011236734094793058,0.000316212075790285,0.000194506892799608,0.00042857941673821556,0.0001599302965682304,0.00011420800379353565,4.207377542851895e-05,0.0,0.0,0.0,0.0,0.0,0.00011236734094793058,0.0,0.0,0.000289690143155602,0.0001014978634308128,3.739141015180072e-05,0.0,0.0 +95736,85.0,Rural Climate Zone 3A,G1302610950800,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,102745.0,,14664.0,,7.56685751697572,Food Service,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,56751.431377317895,0.0,0.0,0.021220289864185952,0.010087342203374679,0.0,0.031307632067560626,0.01620197177225263,0.0007867680820412534,0.010687710080746357,0.00037473684855656776,0.003256517003934835,0.01620197177225263,0.0007867680820412534,0.003482004592807916,0.00037473684855656776,0.00037488028849859894,0.0,0.007205705487938442,0.002881636715436236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006739784062637042,0.0,0.0,0.002528779876715872,0.001498064468711246,0.003202758282979576,0.0019307568578476044,9.375759267389193e-05,0.000414943584714444,4.465664737658024e-05,4.467374083012151e-05,0.0,0.00048144395251522833,0.0001925344537484758,0.0,0.0,0.0,0.001657455255070223,8.04860612295395e-05,0.0010933484817161323,3.833543025746069e-05,0.0003331403916306718 +95737,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5525.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009936427839040394,0.0,0.0,0.0009936427839040392,0.00046522728978360425,0.00025680546396054954,0.00022893318011040298,0.0,4.259414297574332e-05,0.00046522728978360425,0.00025680546396054954,0.00022893318011040298,0.0,4.259414297574332e-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.00011841186982863966,3.166659374792244e-05,0.00011841186982863966,5.54408829520641e-05,3.060336738953938e-05,2.728184249090017e-05,0.0,5.075920839166756e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.544088295206411e-05,3.060336738953939e-05,2.7281842490900172e-05,0.0,5.075920839166758e-06 +95738,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,9087.0,,1263.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0007224640218542213,0.00037174320108407377,0.0,0.001094207222938295,0.0006875699394937331,0.0001997893369980451,0.00020678656723392133,0.0,0.0,0.0003158267384096593,0.0001997893369980451,0.00020678656723392133,0.0,0.0,0.00037174320108407377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.483787274897712e-05,0.0,0.0,8.609607141269955e-05,5.443583393557629e-05,0.00011093394416167667,3.7637087248124164e-05,2.380890467255741e-05,2.464276492837048e-05,0.0,0.0,2.4837872748977125e-05,0.0,0.0,0.0,0.0,0.0,6.970786124973927e-05,2.025523017031792e-05,2.0964629936651634e-05,0.0,0.0 +95739,50.0,the Greater Atlanta and Macon Area,G1302550160400,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,7906.0,,889.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0007044492229574698,0.00026172096250680934,0.0,0.0009661701854642789,0.00044938790501726185,0.00023468341935853316,0.0002821295506947817,0.0,0.0,0.00018766694251045257,0.00023468341935853316,0.0002821295506947817,0.0,0.0,0.00026172096250680934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7486048215569834e-05,0.0,0.0,8.3948889737426e-05,4.5947083244248475e-05,0.00010143493795299584,2.2364183181334848e-05,2.7967115092014314e-05,3.3621248730337076e-05,0.0,0.0,1.7486048215569834e-05,0.0,0.0,0.0,0.0,0.0,4.7179715280024084e-05,2.4638617957136115e-05,2.961982671373772e-05,0.0,0.0 +95740,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,15744.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003908157355403494,0.0,0.0,0.003908157355403494,0.002577648660159255,0.000628491053344997,0.0006210474167084594,0.0,8.097022519078196e-05,0.002577648660159255,0.000628491053344997,0.0006210474167084594,0.0,8.097022519078196e-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.0004657238824065178,0.00015723717503076209,0.0004657238824065178,0.00030717098425669335,7.489547293097007e-05,7.400843614142048e-05,0.0,9.648989077433831e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00030717098425669335,7.489547293097007e-05,7.400843614142048e-05,0.0,9.648989077433831e-06 +95741,50.0,the Greater Atlanta and Macon Area,G1302970110507,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,9509.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0022832114776473204,0.0,0.0,0.0022832114776473204,0.0012859295824987518,0.0004852424016285166,0.0004314000966242275,0.0,8.047398274834612e-05,0.0012859295824987518,0.0004852424016285166,0.0004314000966242275,0.0,8.047398274834612e-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.00027208155219805765,8.195327588683975e-05,0.00027208155219805765,0.0001532392948480548,5.7824475358472956e-05,5.140829443834923e-05,0.0,9.589775783840836e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001532392948480548,5.7824475358472956e-05,5.140829443834923e-05,0.0,9.589775783840836e-06 +95742,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,65550.0,,3.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.006161183981114216,8.28619370037975e-07,0.0,0.006162012600484253,0.0027445408015972623,0.0012688003931659263,0.0021487020953273625,0.0,0.0,0.002743712182227224,0.0012688003931659263,0.0021487020953273625,0.0,0.0,8.28619370037975e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.559493244864987e-08,0.0,0.0,0.0007342167410206065,0.0002617713147281731,0.0007342723359530552,0.00032696303549907974,0.00015120056348446855,0.00025605679925988874,0.0,0.0,5.5594932448649874e-08,0.0,0.0,0.0,0.0,0.0,0.00032704256160542757,0.0001511916785880776,0.00025604175276747366,0.0,0.0 +95744,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,175598.0,,4078.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.015589158790627812,0.001188002594808787,0.0,0.016777131011837164,0.01182772260985606,0.0039745677280264525,0.0009748710475540824,0.0,0.0,0.010639720015047274,0.0039745677280264525,0.0009748710475540824,0.0,0.0,0.001188002594808787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.937438661046557e-05,0.0,0.0,0.0018577298024058382,0.0006947363798584836,0.0019371041890163042,0.0012679147878774798,0.0004736415235230178,0.00011617349100534005,0.0,0.0,7.937438661046557e-05,0.0,0.0,0.0,0.0,0.0,0.0013656405852651276,0.0004589075325248931,0.00011255957819220339,0.0,0.0 +95745,85.0,Rural Climate Zone 3A,G1300690010802,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,50867.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.0038171425417019744,0.0,0.0,0.0038171425417019744,0.0013138834248172515,0.0013616364522164772,0.0011416226646682457,0.0,0.0,0.0013138834248172515,0.0013616364522164772,0.0011416226646682457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004548826595798384,0.00014739966269616527,0.0004548826595798384,0.00015657334776716358,0.00016226399826528812,0.00013604531354738665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015657334776716358,0.00016226399826528812,0.00013604531354738665,0.0,0.0 +95746,50.0,the Greater Atlanta and Macon Area,G1300890021210,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,12757.0,,1240.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002878123459054159,0.0009833871067603652,0.0,0.0038615105658145244,0.0026855813913890516,0.0005737389705295757,0.0005015356951551602,0.0,0.00010065450874073712,0.0018028487933694232,0.0005737389705295757,0.0005015356951551602,0.0,0.0,0.000882732598019628,0.0,0.00010065450874073712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.570356464348276e-05,0.0,0.0,0.00034298266926921826,0.00017634164988844248,0.000408686233912701,0.00021484342149861833,6.83718146130799e-05,5.9767433157520024e-05,0.0,0.0,5.89784815340531e-05,0.0,6.725083109429648e-06,0.0,0.0,0.0,0.00028423077601532086,6.072214878563275e-05,5.308045412081259e-05,0.0,1.0652854990934846e-05 +95747,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,13089.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002883499418847214,0.0,0.0,0.0028834994188472137,0.002160639594365667,0.00037846756943107077,0.00028252736389347414,0.0,6.169947700952333e-05,0.002160639594365667,0.00037846756943107077,0.00028252736389347414,0.0,6.169947700952333e-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.00034361988616113257,0.00010487516462495787,0.00034361988616113257,0.000257478370412845,4.510109565951533e-05,3.366812560596686e-05,0.0,7.3525824654716855e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00025747837041284504,4.510109565951534e-05,3.366812560596687e-05,0.0,7.352582465471686e-06 +95748,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,80800.0,,4575.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007245561398676822,0.0013329150377263007,0.0,0.008578446062803684,0.005905052961091083,0.0021475349746468047,0.000525888500665235,0.0,0.0,0.004572137923364782,0.0021475349746468047,0.000525888500665235,0.0,0.0,0.0013329150377263007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.90567019685291e-05,0.0,0.0,0.0008634389013275282,0.00034078706404608143,0.0009524956032960572,0.0005448524314470582,0.0002559174006047485,6.266906927572154e-05,0.0,0.0,8.90567019685291e-05,0.0,0.0,0.0,0.0,0.0,0.0006556591883298919,0.0002384485029456555,5.839128451008542e-05,0.0,0.0 +95749,50.0,the Greater Atlanta and Macon Area,G1301210008602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,91696.0,,8853.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.014846680149033379,0.0026060386083757293,0.0,0.01745271875740911,0.002627858918453396,0.005551043918309586,0.009273785231039826,0.0,0.0,2.182031007766668e-05,0.005551043918309586,0.009273785231039826,0.0,0.0,0.0026060386083757293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017412075299004845,0.0,0.0,0.0017692490384073217,0.0006870905081272787,0.00194336979139737,2.600282503235234e-06,0.0006615067487168485,0.0011051383499685271,0.0,0.0,0.00017412075299004845,0.0,0.0,0.0,0.0,0.0,0.00029261352968336173,0.0006181117802625039,0.001032641064147036,0.0,0.0 +95750,46.0,the Tallahassee-Valdosta Area,G1301850010202,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,75332.0,,987.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.00661468429337537,0.00029053850282035227,0.0,0.006905222796195721,0.001444222182763595,0.002235983335638029,0.003225047967400394,0.0,0.0,0.001153683679943243,0.002235983335638029,0.003225047967400394,0.0,0.0,0.00029053850282035227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9411446284923887e-05,0.0,0.0,0.0007882585717445909,0.0002834591132922624,0.0008076700180295149,0.00013748215477311183,0.00026645761950572943,0.0003843224546841676,0.0,0.0,1.9411446284923887e-05,0.0,0.0,0.0,0.0,0.0,0.0001689235801390696,0.0002615319960426769,0.0003772180314603852,0.0,0.0 +95751,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,51227.0,,827.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0026369302718359327,0.00014070814822953907,0.0,0.002777656150426892,0.0017253060090624982,0.0008556849724931684,0.00015223288315257337,0.0,4.4396824995812225e-05,0.0015845978608329593,0.0008556849724931684,0.00015223288315257337,0.0,4.4396824995812225e-05,0.00014070814822953907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.401821093704556e-06,0.0,0.0,0.0003142384825798152,9.957010294342742e-05,0.0003236403036735197,0.00018883382416505238,0.00010197051859675953,1.814133301572237e-05,0.0,5.290693905353927e-06,9.401821093704556e-06,0.0,0.0,0.0,0.0,0.0,0.00020102508390641485,9.970065744242495e-05,1.773750740350719e-05,0.0,5.172923193382484e-06 +95752,35.0,Eastern Counties in South Carolina and Georgia,G1302450010706,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,33261.0,,608.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027651213720146124,0.0001770173375232176,0.0,0.002942138709537831,0.0015907868969528137,0.001087648222266455,0.0002636732167191235,0.0,0.0,0.0014137695594295962,0.001087648222266455,0.0002636732167191235,0.0,0.0,0.0001770173375232176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1827448220738093e-05,0.0,0.0,0.000329512427120288,8.492023199094155e-05,0.0003413398753410261,0.00016847529502005696,0.00012961225109296652,3.14212614632646e-05,0.0,0.0,1.1827448220738093e-05,0.0,0.0,0.0,0.0,0.0,0.00018455927973066527,0.00012618633764607237,3.0590734092143156e-05,0.0,0.0 +95753,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,100081.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011365404658653462,0.0,0.0,0.011365404658653462,0.004100407607829771,0.0025370790630247914,0.0047279179877989,0.0,0.0,0.004100407607829771,0.0025370790630247914,0.0047279179877989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013543945591042062,0.0004629759037094888,0.0013543945591042062,0.000488638101409414,0.00030233908797622043,0.0005634173697185718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000488638101409414,0.00030233908797622043,0.0005634173697185718,0.0,0.0 +95754,50.0,the Greater Atlanta and Macon Area,G1301130140203,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,5405.0,,412.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001101410100986357,0.0003271891837127001,0.0,0.001428599284699057,0.0007017695206780235,0.0003325651435057552,0.00027872283850146603,0.0,0.00011554178201381245,0.0004901221189791359,0.0003325651435057552,0.00027872283850146603,0.0,0.0,0.00021164740169888767,0.0,0.00011554178201381245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.18589505137931e-05,0.0,0.0,0.00013125720456395336,6.445605739432113e-05,0.00015311615507774648,5.8408815367273984e-05,3.963244120685263e-05,3.321594798982675e-05,0.0,0.0,1.4139801406672535e-05,0.0,7.719149107120568e-06,0.0,0.0,0.0,7.521510888870948e-05,3.564407222645856e-05,2.987329604654696e-05,0.0,1.2383677916031482e-05 +95755,50.0,the Greater Atlanta and Macon Area,G1300630040616,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,62966.0,,9375.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.005552415471618785,0.002731042193445455,0.0,0.008283457665064239,0.0061379273479803265,0.0016538424893855867,0.0004916574540988888,0.0,0.0,0.003406885154534871,0.0016538424893855867,0.0004916574540988888,0.0,0.0,0.002731042193445455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000182471854437122,0.0,0.0,0.0006616698840408436,0.00036281559947548857,0.0008441417384779656,0.0004059914674368464,0.00019708499368735875,5.858980335752574e-05,0.0,0.0,0.00018247185443712196,0.0,0.0,0.0,0.0,0.0,0.0006254973311480527,0.00016853801040677484,5.0103301642873546e-05,0.0,0.0 +95756,35.0,Eastern Counties in South Carolina and Georgia,G1300510004001,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,43313.0,,3801.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.01003555092585191,0.002947941568329316,0.0,0.012983492494181226,0.0034862318012165053,0.0004452194715753138,0.008039421635022234,0.0004309071129721844,0.0005817124733949885,0.0034862318012165053,0.0004452194715753138,0.005091480066692918,0.0004309071129721844,0.0005817124733949885,0.0,0.002947941568329316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019696285606726202,0.0,0.0,0.0011959198925896104,0.0005245918027575072,0.0013928827486568724,0.0004154484384622265,5.3056063046180345e-05,0.0006067432011924794,5.1350483104448794e-05,6.932170678427558e-05,0.0,0.00019696285606726202,0.0,0.0,0.0,0.0,0.00037400661924437553,4.776361380432184e-05,0.0008624776199177424,4.622816889996932e-05,6.240672679046335e-05 +95757,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6714.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001317440977593428,0.0,0.0,0.001317440977593428,0.0008077999892118155,0.0001945270374348511,0.00027690328287920124,0.0,3.812796099382072e-05,0.0008077999892118155,0.0001945270374348511,0.00027690328287920124,0.0,3.812796099382072e-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.00015699433650810657,4.9278293881570776e-05,0.00015699433650810657,9.626239466850879e-05,2.3181033301969154e-05,3.2997491281884656e-05,0.0,4.543561374238001e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.626239466850879e-05,2.3181033301969154e-05,3.2997491281884656e-05,0.0,4.543561374238001e-06 +95758,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,202450.0,,15932.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.010303113021192686,0.002709429719682529,0.0,0.013012542740875212,0.0067996290653130915,0.0020833351972176246,0.0019332299574354574,0.0,0.0021963307905476207,0.0067996290653130915,0.0020833351972176246,0.001127225457641277,0.0,0.0002929055706592723,0.0,0.0008060044997941801,0.0019034252198883485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018102821142435325,0.0,0.0,0.0012278015701593459,0.0005524623666385475,0.0014088297815836994,0.0008102983268959722,0.0002482669287477083,0.00013432922496033482,0.0,3.4904976663280655e-05,0.0,5.385249594693954e-05,0.00012717571547741369,0.0,0.0,0.0,0.0007361758667538415,0.00022555658254570538,0.00020930512912971792,0.0,0.00023779028354028225 +95759,85.0,Rural Climate Zone 3A,G1300170960500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13478.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011156223073486246,0.0,0.0,0.0011156223073486246,0.0005944113409968032,0.00043464620795422856,8.65647583975927e-05,0.0,0.0,0.0005944113409968032,0.00043464620795422856,8.65647583975927e-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.00013294523223021133,3.669651775264361e-05,0.00013294523223021133,7.083414633120707e-05,5.179543352067313e-05,1.0315652378331127e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.083414633120707e-05,5.179543352067313e-05,1.0315652378331127e-05,0.0,0.0 +95760,50.0,the Greater Atlanta and Macon Area,G1301170130602,ComStock 90.1-2004,gen3_t5_cfl,10001_25000,NaturalGas,13313.0,,2336.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001203861186239987,0.0006876006291000309,0.0,0.0018914311257337204,0.0008906123747593348,0.00044926514659207107,0.0005515842939886121,0.0,0.0,0.0002030117456593039,0.00044926514659207107,0.0005515842939886121,0.0,0.0,0.0006876006291000309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5941026978436066e-05,0.0,0.0,0.00014346049396220568,8.72654616670936e-05,0.00018940152094064174,2.4192295295586982e-05,5.353756777507148e-05,6.573063089154721e-05,0.0,0.0,4.594102697843607e-05,0.0,0.0,0.0,0.0,0.0,8.91829134315105e-05,4.498789351219442e-05,5.5233787150397595e-05,0.0,0.0 +95761,46.0,the Tallahassee-Valdosta Area,G1301850010402,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,80548.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006466235584302985,0.0,0.0,0.006466235584302985,0.0042276709321412385,0.0015349298475867883,0.000703604430975521,0.0,0.0,0.0042276709321412385,0.0015349298475867883,0.000703604430975521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007705674585073518,0.0002012231642355409,0.0007705674585073518,0.00050380249885941,0.00018291430558348924,8.384703450759926e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00050380249885941,0.00018291430558348924,8.384703450759926e-05,0.0,0.0 +95762,50.0,the Greater Atlanta and Macon Area,G1302230120603,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,180617.0,,42819.0,,7.614023970037612,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.04227248306892826,0.029638563234214793,0.0,0.07191104630314306,0.06327157117668875,0.004920636278011614,0.0012650879085055672,0.0007490215289434844,0.0017047294109936398,0.03363300794247396,0.004920636278011614,0.0012650879085055672,0.0007490215289434844,0.0017047294109936398,0.029638563234214793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019802772110996763,0.0,0.0,0.005037527197735982,0.002876001550108849,0.007017804408835658,0.0040079782390738655,0.0005863823764558978,0.0001507579939468481,8.92593964161059e-05,0.00020314919184326555,0.0019802772110996763,0.0,0.0,0.0,0.0,0.0,0.006174677382469375,0.0004802052638830437,0.0001234600239919887,7.309706725686541e-05,0.00016636467123438427 +95763,50.0,the Greater Atlanta and Macon Area,G1301510070502,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,116880.0,,1350.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.006016408079943678,0.00022964364111252393,0.0,0.006246051721056201,0.0024698393458133555,0.0015148111582836312,0.0010735556536227773,0.0,0.0011878455633364375,0.0024698393458133555,0.0015148111582836312,0.0008439120125102534,0.0,0.0011878455633364375,0.0,0.00022964364111252393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.534305279159428e-05,0.0,0.0,0.0007169635312029091,0.00024637027330475696,0.0007323065839945034,0.0002943259026563243,0.0001805170697727618,0.00010056733660253461,0.0,0.0001415532221712882,0.0,1.534305279159428e-05,0.0,0.0,0.0,0.0,0.0002895716678506709,0.00017760118459791757,0.00012586701304156695,0.0,0.00013926671850434812 +95764,50.0,the Greater Atlanta and Macon Area,G1301350050212,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,74037.0,,10541.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.003811087996156089,0.0017925395395673384,0.0,0.005603609805362009,0.0021844159876733458,0.0015621512232751723,0.000817281009657334,0.0,0.0010397793151175768,0.0016431435142419736,0.0015621512232751723,0.00042453577384174435,0.0,0.00018127521515861987,0.0005412724734313719,0.00039274523581558956,0.0008585040999589568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011976649751161607,0.0,0.0,0.0004541593714814429,0.00023115603644833016,0.000573925868993059,0.00019580996986546105,0.00018615828824660973,5.059103867814705e-05,0.0,2.1602187581246886e-05,3.616450678570341e-05,2.6240827758455065e-05,5.735997833345648e-05,0.0,0.0,0.0,0.00022372950428634712,0.00015999668596818962,8.370652668040429e-05,0.0,0.00010649496801487427 +95765,50.0,the Greater Atlanta and Macon Area,G1300450911200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,122690.0,,5849.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006315519277099968,0.0009946732756649622,0.0,0.007310174822403511,0.00335438934669837,0.0015197756594812462,0.0012148311734177578,0.0,0.0012212141035289768,0.0025437217618507154,0.0015197756594812462,0.0010308254826004498,0.0,0.0012212141035289768,0.0008106675848476541,0.00018400569081730795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.645776550019792e-05,0.0,0.0,0.0007526075990551669,0.00023706496233688874,0.0008190653645553647,0.0003031301534922926,0.00018110857714140083,0.0001228413781140499,0.0,0.00014552960319856576,5.4163671197861826e-05,1.2294094302336076e-05,0.0,0.0,0.0,0.0,0.000375841098176472,0.00017028260401658914,0.00013611523145509163,0.0,0.00013683040408850864 +95766,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,3593.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.00020322657290338785,0.0,0.0,0.0002032265729033878,9.575157164883269e-05,6.874471810685424e-05,3.869959354140322e-05,0.0,0.0,9.575157164883269e-05,6.874471810685424e-05,3.869959354140322e-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,2.421826001668085e-05,1.0365142482117647e-05,2.421826001668085e-05,1.141059668560016e-05,8.192223261456523e-06,4.611782827096731e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1410596685600161e-05,8.192223261456527e-06,4.611782827096733e-06,0.0,0.0 +95767,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,110893.0,,6406.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00570823666810174,0.0010893534056480442,0.0,0.006797590073749785,0.0031504369992835027,0.0023098582947202193,0.0007206505399180461,0.0,0.0006166442398280163,0.0028572300124800895,0.0023098582947202193,0.0004044472743528245,0.0,0.00013670108654860713,0.00029320698680341314,0.00031620326556522165,0.0004799431532794092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.278465379530567e-05,0.0,0.0,0.0006802391267196296,0.00027311071173319925,0.0007530237805149351,0.0003404903758436687,0.00027526118495172554,4.819717133441675e-05,0.0,1.629039458981865e-05,1.959049185893505e-05,2.112697779598765e-05,3.206718414038296e-05,0.0,0.0,0.0,0.00034899927087923366,0.0002558816001954792,7.983226233291566e-05,0.0,6.831064710730652e-05 +95768,50.0,the Greater Atlanta and Macon Area,G1301210001100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,54309.0,,3698.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.00445407574235024,0.0010774426928553702,0.0,0.005531548808805049,0.003196669472826191,0.0017809560030325783,0.0005538929593468421,0.0,0.0,0.0021192267799708202,0.0017809560030325783,0.0005538929593468421,0.0,0.0,0.0010774426928553702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.198941235611565e-05,0.0,0.0,0.0005307846822147389,0.00020757680863816037,0.0006027740945708544,0.0002525446754873179,0.00021223351841998062,6.600648830744036e-05,0.0,0.0,7.198941235611565e-05,0.0,0.0,0.0,0.0,0.0,0.00034834177799496793,0.00019407116872758752,6.035783803046448e-05,0.0,0.0 +95769,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,10753.0,,1524.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.002323572529632103,0.001209342832216153,0.0,0.003532915361848256,0.0024834453031701833,0.0004463700769710422,0.0005148515340271888,0.0,8.824844767984103e-05,0.0012741024709540308,0.0004463700769710422,0.0005148515340271888,0.0,8.824844767984103e-05,0.001209342832216153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.080069479848995e-05,0.0,0.0,0.00027689273833766677,0.00014734635511841156,0.00035769343313615673,0.0001518307337542449,5.319250049150664e-05,6.135321763194901e-05,0.0,1.0516286459966202e-05,8.080069479848995e-05,0.0,0.0,0.0,0.0,0.0,0.0002514388219116812,4.519317020872361e-05,5.212664156926154e-05,0.0,8.934799446490293e-06 +95770,50.0,the Greater Atlanta and Macon Area,G1301210007603,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,178754.0,,7408.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014829833864984945,0.0012597776396175916,0.0,0.016089611504602537,0.0074007592388985605,0.002859978218500197,0.003165862413718948,0.0,0.002663011633484831,0.0074007592388985605,0.002859978218500197,0.0019060847741013563,0.0,0.002663011633484831,0.0,0.0012597776396175916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.41707382352923e-05,0.0,0.0,0.001767242544915921,0.00047917505747525056,0.0018514132831512135,0.0008819341275657901,0.0003408180584679477,0.00022714442640937762,0.0,0.0003173459324728055,0.0,8.41707382352923e-05,0.0,0.0,0.0,0.0,0.0008515969423115874,0.0003290944384666926,0.0003642921846628649,0.0,0.00030642971771006856 +95771,46.0,the Tallahassee-Valdosta Area,G1301850010202,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,28162.0,,1553.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,14029.891188970922,0.0,0.0,0.001382737696065658,0.0002641291940745266,0.0,0.001646884620501605,0.0007926003465606204,0.00030402250726964543,0.00036419935392930465,0.0,0.0001860446823806141,0.0007926003465606204,0.00030402250726964543,0.00010007015985477804,0.0,0.0001860446823806141,0.0,0.0002641291940745266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7647908270310907e-05,0.0,0.0,0.00016477893111217312,6.186461782829338e-05,0.000182426839382484,9.445308266130861e-05,3.62299400128282e-05,1.192522198824298e-05,0.0,2.2170686449793336e-05,0.0,1.7647908270310907e-05,0.0,0.0,0.0,0.0,8.779702859358541e-05,3.367683710923672e-05,4.034267866453791e-05,0.0,2.0608331007594388e-05 +95772,50.0,the Greater Atlanta and Macon Area,G1300890021705,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,21990.0,,3944.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004985086162563016,0.003128477771263042,0.0,0.008113563933826057,0.005069778206072066,0.0011631095779958804,0.0016508331918365763,0.0,0.00022984295792153535,0.0021711433927305594,0.0011631095779958804,0.0016508331918365763,0.0,0.0,0.0028986348133415068,0.0,0.00022984295792153535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002090272989991698,0.0,0.0,0.0005940666428571027,0.0003600620074744384,0.0008030939418562726,0.00025873251222155165,0.00013860635097221748,0.00019672777966333365,0.0,0.0,0.00019367048453507917,0.0,1.5356814464090653e-05,0.0,0.0,0.0,0.0005018150096626484,0.00011512650463124122,0.00016340219245108262,0.0,2.275023511130053e-05 +95773,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,60989.0,,3508.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005403027947135767,0.0010326438727051033,0.0,0.006435671819840868,0.0029982517768603707,0.0012618031629300502,0.0021755861904441502,0.0,0.0,0.001965607904155268,0.0012618031629300502,0.0021755861904441502,0.0,0.0,0.0010326438727051033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.899431625669002e-05,0.0,0.0,0.0006438684172660751,0.00026978409736467667,0.0007128627335227651,0.00023423770200652964,0.00015036664873217695,0.0002592604093061905,0.0,0.0,6.899431625669002e-05,0.0,0.0,0.0,0.0,0.0,0.0003321085998905116,0.0001397666750378561,0.0002409840591860298,0.0,0.0 +95774,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,24476.0,,6180.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005588061541681335,0.004251344721892376,0.0,0.009839334543602696,0.0031938337492671913,0.00045656933548537997,0.003849210844407845,0.0002728227697433844,0.0020668978446988944,0.0031938337492671913,0.00045656933548537997,0.0014135289087466784,0.0002728227697433844,0.00025123505846768554,0.0,0.0024356819356611665,0.0018156627862312088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028404932266565784,0.0,0.0,0.0006659148890116118,0.0004918902231351202,0.0009499642116772697,0.00038060093483238266,5.440819076490946e-05,0.00016844659625912673,3.251158618751423e-05,2.993903428361261e-05,0.0,0.00016273763933816494,0.0001213116833274928,0.0,0.0,0.0,0.0003083570079262646,4.408067709643853e-05,0.0003716320986122928,2.6340385748484474e-05,0.00019955404229378914 +95775,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9392.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007280855521223489,0.0,0.0,0.0007280855521223489,0.0004868887989871617,0.00018533970376916162,5.5826675766587853e-05,0.0,0.0,0.0004868887989871617,0.00018533970376916162,5.5826675766587853e-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,8.67629121009268e-05,2.8138891164314303e-05,8.67629121009268e-05,5.802050314871539e-05,2.2086157842386857e-05,6.652631614930687e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.802050314871539e-05,2.2086157842386857e-05,6.652631614930687e-06,0.0,0.0 +95776,85.0,Rural Climate Zone 3A,G1302850960902,ComStock 90.1-2004,gen5_led,200001_500000,Electricity,155226.0,,10335.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.025037348057823372,0.0030422606722912762,0.0,0.028079608730114655,0.012100482108696037,0.005072899852191377,0.010906257458833531,0.0,0.0,0.009058221436404763,0.005072899852191377,0.010906257458833531,0.0,0.0,0.0030422606722912762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020326682122143695,0.0,0.0,0.0029836521460996435,0.0010631527157892518,0.00318691896732108,0.0010794506577197149,0.0006045276239313981,0.0012996775216693147,0.0,0.0,0.00020326682122143695,0.0,0.0,0.0,0.0,0.0,0.0013733544621857456,0.0005757530638569901,0.0012378149244211944,0.0,0.0 +95777,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,71913.0,,1105.0,,1.8706521585294562,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,70149.4559448546,0.0,0.0,0.0051671946893688285,0.00018790637032971955,0.0,0.005355101059698548,0.0022690075420084173,0.00143713444490238,0.0010988923400920326,0.0,0.0005500667326957182,0.0022690075420084173,0.00143713444490238,0.000910985969762313,0.0,0.0005500667326957182,0.0,0.00018790637032971955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2555216722852727e-05,0.0,0.0,0.0006157641021260447,0.00017706985945055003,0.0006283193188488974,0.0002703930228711202,0.00017126039452711628,0.00010856034878543253,0.0,6.555033594237562e-05,0.0,1.2555216722852725e-05,0.0,0.0,0.0,0.0,0.00026622490544333323,0.00016862040985762136,0.00012893412821116102,0.0,6.453987533678175e-05 +95778,85.0,Rural Climate Zone 3A,G1300310110200,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,102764.0,,3533.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005289800138588494,0.0006008819485255894,0.0,0.005890682087114083,0.0022838123937941614,0.0010460204023374352,0.0011862143700857926,0.0,0.0013746349208966938,0.0022838123937941614,0.0010460204023374352,0.0005853324215602032,0.0,0.0013746349208966938,0.0,0.0006008819485255894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0147250975739344e-05,0.0,0.0,0.0006303757434751375,0.00020524813217946263,0.0006705229944508769,0.00027215771824602063,0.0001246523255204819,6.9752987022979e-05,0.0,0.00016381271268565598,0.0,4.0147250975739344e-05,0.0,0.0,0.0,0.0,0.00025996118996146893,0.00011906613225084485,0.00013502409393820381,0.0,0.00015647157830035935 +95779,50.0,the Greater Atlanta and Macon Area,G1301130140206,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,122029.0,,21572.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006362912533175769,0.003668553620700285,0.0,0.010031466153876057,0.004464345432316515,0.0013095999552079401,0.0025615053143550285,0.0,0.0016960154519965707,0.00352578875054602,0.0013095999552079401,0.0012610364952784156,0.0,0.0002664696017819736,0.0009385566817704949,0.001300468819076613,0.001429545850214597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002451112543956602,0.0,0.0,0.0007582560975465811,0.0004443797462623352,0.0010033673519422414,0.0004201614912704647,0.00015606251794373347,0.00015027530345390264,0.0,3.175467198527485e-05,6.270885732516031e-05,8.688970545439755e-05,9.551387625494853e-05,0.0,0.0,0.0,0.00044653277854584354,0.0001309888125030406,0.0002562068958641017,0.0,0.00016963886502925526 +95780,50.0,the Greater Atlanta and Macon Area,G1301530021400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,50890.0,,821.0,,4.088175128053588,Healthcare,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.005724924618630144,0.00030522133405269615,0.0,0.00603014595268284,0.0028534339265761763,0.000977661480193421,0.0020654847291708737,0.0,0.0001335658167423694,0.0028534339265761763,0.000977661480193421,0.001760263395118177,0.0,0.0001335658167423694,0.0,0.00030522133405269615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.039331748572555e-05,0.0,0.0,0.0006822285991897935,0.00018727708216169868,0.0007026219166755191,0.00034003840404705636,0.00011650609685648126,0.0002097673087866605,0.0,1.5916789499595377e-05,0.0,2.039331748572555e-05,0.0,0.0,0.0,0.0,0.0003324770627991056,0.00011391538255682016,0.00024066661912691925,0.0,1.5562852192674054e-05 +95781,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,29082.0,,1859.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006730366417925839,0.0014414243189795756,0.0,0.008171790736905413,0.003080391530995564,0.0007828941016694857,0.003304295039312318,0.00041772680533201434,0.0005864832595960317,0.003080391530995564,0.0007828941016694857,0.0024492731191457055,0.00041772680533201434,0.0,0.0,0.0008550219201666123,0.0005864832595960317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.630864077109756e-05,0.0,0.0,0.0008020459508369592,0.0003109485900768528,0.0008983545916080568,0.0003670848511081283,9.329611572198188e-05,0.0002918755778990736,4.977977007020846e-05,0.0,0.0,5.712821538839815e-05,3.9185828088902196e-05,0.0,0.0,0.0,0.0003386386123818417,8.606638784830009e-05,0.0003632531370618606,4.5922222642462116e-05,6.447423167359228e-05 +95782,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12736.0,,2423.0,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,69937.66742607838,0.0,0.0,0.003215857590829531,0.0020539594490390943,0.0,0.0052697286557105705,0.0037930945270864404,0.0006364543221537295,0.0007436643058743897,0.0,9.660388475406561e-05,0.0017391350780473457,0.0006364543221537295,0.0007436643058743897,0.0,9.660388475406561e-05,0.0020539594490390943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001372324981079602,0.0,0.0,0.0003832240511656197,0.00026776663642396345,0.0005204565492735798,0.00020724748261057846,7.584434224113307e-05,8.862023269225021e-05,0.0,1.151199362165789e-05,0.0001372324981079602,0.0,0.0,0.0,0.0,0.0,0.00037461907768185013,6.285842059807537e-05,7.344684778672494e-05,0.0,9.540932330745229e-06 +95783,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,111020.0,,5254.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.011492704993952212,0.0019525330738752516,0.0,0.013445276816251234,0.0061328292756788584,0.0019655525442626716,0.005036287631352688,0.0,0.0003105686165332435,0.005179695547733167,0.0019655525442626716,0.0043474181535326,0.0,0.0,0.0009531337279456923,0.0006888694778200876,0.0003105686165332435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013045728492397336,0.0,0.0,0.001369565405096352,0.0004478849892305666,0.0015000226900203253,0.0006172551923015491,0.00023423143358659716,0.0005180741616268158,0.0,0.0,6.368303819329027e-05,4.602638641354233e-05,2.0750449269014612e-05,0.0,0.0,0.0,0.0006842092723907297,0.0002192869254471209,0.0005618735726858827,0.0,3.464859652759282e-05 +95784,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970500,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,14658.0,,2584.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006897586517311554,0.002003891926004254,0.0,0.00890147844331581,0.004791486561508681,0.0004661624143900625,0.002704227168160773,0.00041497753870768444,0.0005247056213316765,0.004791486561508681,0.0004661624143900625,0.0007003352421565189,0.00041497753870768444,0.0005247056213316765,0.0,0.002003891926004254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013388845047417302,0.0,0.0,0.0008219698500616354,0.0004240214361178234,0.0009558583005358083,0.0005709906618280026,5.555152500064863e-05,8.345737346584868e-05,4.945193864758521e-05,6.252798711694863e-05,0.0,0.00013388845047417302,0.0,0.0,0.0,0.0,0.000514519271252406,5.005743888838464e-05,0.00029038524349423193,4.45611060494692e-05,5.634392384158333e-05 +95785,50.0,the Greater Atlanta and Macon Area,G1300890020200,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,120684.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.009534728467501863,0.0,0.0,0.009534728467501863,0.00509866426961821,0.0025891367368722786,0.0018468970874119376,0.0,0.0,0.00509866426961821,0.0025891367368722786,0.0018468970874119376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001136233709930309,0.0003401174271058954,0.001136233709930309,0.0006075971894221408,0.00030854202613952606,0.00022009087481013133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006075971894221408,0.00030854202613952606,0.00022009087481013133,0.0,0.0 +95786,85.0,Rural Climate Zone 3A,G1301330950301,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,6364.0,,625.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012240646913417499,0.0004959116141408873,0.0,0.0017199763054826372,0.000980078823810793,0.0003710239327945331,0.0003215651026984273,0.0,4.730844617888384e-05,0.0005314756558487895,0.0003710239327945331,0.0003215651026984273,0.0,0.0,0.0004486031679620034,0.0,4.730844617888384e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3133398615940565e-05,0.0,0.0,0.0001458726433310265,7.990371875618173e-05,0.00017900604194696706,6.333632473278217e-05,4.4215180944796265e-05,3.832113765344804e-05,0.0,0.0,2.997257406485351e-05,0.0,3.160824551087058e-06,0.0,0.0,0.0,0.00010200142320982686,3.861420966407454e-05,3.346679607086978e-05,0.0,4.923613002195861e-06 +95787,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,188272.0,,9655.0,,3.3063363735822096,Lodging,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,247975.22801866572,0.0,0.0,0.01712923758459499,0.002901932194108776,0.0,0.02003113844068156,0.006787627581244223,0.0016287310280063436,0.008097556909369695,0.0,0.0035172229220613005,0.006787627581244223,0.0016287310280063436,0.005195624715260919,0.0,0.0035172229220613005,0.0,0.002901932194108776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019388974599686488,0.0,0.0,0.0020412568570452798,0.000979454375680718,0.0022351466030421444,0.0008088679531040574,0.0001940926070282518,0.0006191521674145221,0.0,0.0004191403950092518,0.0,0.00019388974599686488,0.0,0.0,0.0,0.0,0.0007573879425705265,0.00018173967671873632,0.0009035545769161131,0.0,0.00039246440683676846 +95788,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,16533.0,,1665.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001473070412683436,0.0004900209437554202,0.0,0.0019630913564388564,0.0007448060552389487,0.0005599318669015874,0.0006583227446920225,0.0,0.0,0.00025478511148352857,0.0005599318669015874,0.0006583227446920225,0.0,0.0,0.0004900209437554202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2739760043434845e-05,0.0,0.0,0.0001755421706428736,9.187960466231628e-05,0.00020828193068630845,3.036211380814469e-05,6.67257006058299e-05,7.845069902415221e-05,0.0,0.0,3.2739760043434845e-05,0.0,0.0,0.0,0.0,0.0,7.9023140040428e-05,5.940818286858171e-05,6.984735164231002e-05,0.0,0.0 +95789,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6759.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001325050028377444,0.0,0.0,0.001325050028377444,0.0007176492788359705,0.00031428688020936817,0.00024712873633305057,0.0,4.590242592531562e-05,0.0007176492788359705,0.00031428688020936817,0.00024712873633305057,0.0,4.590242592531562e-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.0001578994125805905,4.904425776524311e-05,0.0001578994125805905,8.551858204617588e-05,3.745195479721889e-05,2.944906340370791e-05,0.0,5.469956555909602e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.551858204617588e-05,3.745195479721889e-05,2.944906340370791e-05,0.0,5.469956555909602e-06 +95790,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,61710.0,,6780.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005350180445091122,0.001995745097539612,0.0,0.007345925542630734,0.003514972678094793,0.0013862495164672349,0.0024446726584624085,0.0,0.0,0.0015192275805551807,0.0013862495164672349,0.0024446726584624085,0.0,0.0,0.001995745097539612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013334312524406952,0.0,0.0,0.0006375709701995516,0.00032370520051054245,0.0007709140954436211,0.00018104350169669594,0.00016519675517927718,0.0002913270561007496,0.0,0.0,0.00013334312524406952,0.0,0.0,0.0,0.0,0.0,0.00036887686472140215,0.00014547918922464039,0.00025655482079381007,0.0,0.0 +95791,81.0,the Columbus-Albany Area,G1302150010203,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,159831.0,,3972.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013012414482326134,0.0011571126441805933,0.0,0.014169527126506728,0.00993793800003802,0.002603351581409146,0.001628237545059562,0.0,0.0,0.008780825355857426,0.002603351581409146,0.001628237545059562,0.0,0.0,0.0011571126441805933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.731151781283876e-05,0.0,0.0,0.0015506657604635115,0.0004685302569011365,0.0016279772782763502,0.0010463949827629441,0.0003102366716970766,0.0001940341060034907,0.0,0.0,7.731151781283876e-05,0.0,0.0,0.0,0.0,0.0,0.0011417979663354949,0.0002991064686958085,0.0001870728432450468,0.0,0.0 +95792,50.0,the Greater Atlanta and Macon Area,G1301350050426,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,20169.0,,2391.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004658310514219012,0.001896555907916058,0.0,0.00655486642213507,0.004370241776385004,0.0010390489673869191,0.000996206703189958,0.0,0.0001493689751731892,0.0024736858684689463,0.0010390489673869191,0.000996206703189958,0.0,0.0001493689751731892,0.001896555907916058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012671615033606852,0.0,0.0,0.0005551253386418595,0.00026945239773181753,0.0006818414889779281,0.00029478621084529197,0.00012382223300175206,0.00011871677119367219,0.0,1.7800123601143374e-05,0.00012671615033606852,0.0,0.0,0.0,0.0,0.0,0.00045459540562739703,0.00010808255262863339,0.00010362607230851623,0.0,1.5537458413381508e-05 +95793,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000100,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,144719.0,,13289.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,306613.1346040191,0.0,0.0,0.016037003888670767,0.004938874093989671,0.0,0.020975877982660436,0.010434756779703035,0.00196012776493458,0.008153520826969206,0.0,0.00042743386262984517,0.007095456367448711,0.00196012776493458,0.006981419756287474,0.0,0.0,0.003339300412254322,0.001172101070681732,0.00042743386262984517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032998638383113294,0.0,0.0,0.0019110992311831305,0.0008638779286752895,0.0022410856150142638,0.000845552030969085,0.000233584695158272,0.0008319625050557732,0.0,0.0,0.00022311232207895192,7.831286775857477e-05,2.8558605052888966e-05,0.0,0.0,0.0,0.001114860762181027,0.00020942218205198545,0.0008711310321381982,0.0,4.5667498719318604e-05 +95794,81.0,the Columbus-Albany Area,G1302150010802,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,307328.0,,639.0,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,863994.0691636442,0.11121971279002626,0.027298638097381592,0.048711017420763995,0.0003345513663367959,0.0,0.18756397426840002,0.14571055013695247,0.008426294164042553,0.033092578601068186,0.0,0.0003345513663367959,0.00719219924954463,0.008426294164042553,0.033092578601068186,0.0,0.0,0.0,0.0,0.0003345513663367959,0.027298638097381592,0.0,0.0,0.11121971279002626,0.0,0.0,0.0,2.235393512427084e-05,0.0,0.0,0.00580480030732305,0.0019641191019249974,0.005827154242447321,0.0008570808540798177,0.0010041456233714093,0.003943580335723153,0.0,0.0,0.0,0.0,2.2353935124270845e-05,0.0,0.0,0.0,0.004526870651529614,0.00026178436438890304,0.0010281055332768347,0.0,1.0393693251969275e-05 +95795,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,58660.0,,19824.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002661947811799628,0.0033712509204088395,0.0,0.0060331987322084675,0.002105037159595769,0.0004581879998170045,0.002917087712634187,0.0,0.0005528503994386664,0.0016539590347082057,0.0004581879998170045,0.0004438441374281818,0.0,0.0001059389094848155,0.00045107812488756334,0.002473243575206005,0.0004469114899538509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022524761200050657,0.0,0.0,0.0003172181748385244,0.0003004330116078314,0.000542465786839031,0.0001970984795126846,5.4601206075712824e-05,5.28918811118845e-05,0.0,1.2624495252007747e-05,3.013844796941668e-05,0.00016524792202153498,2.9860057368700792e-05,0.0,0.0,0.0,0.00018927117931809257,4.119726945410106e-05,0.00026228545611547,0.0,4.9708693555000586e-05 +95796,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,6531.0,,784.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005758834453397745,0.00022831834697358046,0.0,0.000804201792313355,0.0005225777783265202,0.00023812901959197432,4.346462079542286e-05,0.0,0.0,0.0002942594313529397,0.00023812901959197432,4.346462079542286e-05,0.0,0.0,0.00022831834697358046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5255156891678435e-05,0.0,0.0,6.86260801268974e-05,3.360110506715609e-05,8.388123701857586e-05,3.506590001420792e-05,2.8377028913231844e-05,5.179531680463618e-06,0.0,0.0,1.5255156891678435e-05,0.0,0.0,0.0,0.0,0.0,5.4506805261343734e-05,2.483774212432054e-05,4.533521553559016e-06,0.0,0.0 +95797,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,110609.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.008425708650609109,0.0,0.0,0.008425708650609109,0.0025438921556228808,0.0019073590314022282,0.003974488153190296,0.0,0.0,0.0025438921556228808,0.0019073590314022282,0.003974488153190296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010040765170691022,0.00031712312356881473,0.0010040765170691022,0.00030315104418339705,0.0002272965387798209,0.000473632591330965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030315104418339705,0.0002272965387798209,0.000473632591330965,0.0,0.0 +95798,35.0,Eastern Counties in South Carolina and Georgia,G1302450001500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7267.0,,,1394.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005108231953441101,0.0,0.00013139619116771438,0.0006422193865118245,0.00042544300732458984,0.00018707099893711346,2.9735753849559032e-05,0.0,0.0,0.0002940468161568754,0.00018707099893711346,2.9735753849559032e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013139619116771438,0.0,0.0,0.0,0.0,1.0598155540759969e-05,6.087228162507989e-05,2.6146892148177183e-05,7.147043716583984e-05,3.504010931218923e-05,2.229232860797164e-05,3.5434631770099422e-06,0.0,0.0,0.0,0.0,0.0,1.0598155540759969e-05,0.0,0.0,4.734612246414675e-05,2.0818502766950793e-05,3.309192110544703e-06,0.0,0.0 +95799,50.0,the Greater Atlanta and Macon Area,G1301210009602,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,32473.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.007797457497994425,0.0,0.0,0.007797457497994425,0.0031267409227145175,0.0011075304244430658,0.003391072730385344,0.0,0.00017219612752523807,0.0031267409227145175,0.0011075304244430658,0.003391072730385344,0.0,0.00017219612752523807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009292070392702978,0.00030482136697027225,0.0009292070392702978,0.0003726073115638178,0.00013198213223518274,0.0004041071916790925,0.0,2.0520259824781604e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003726073115638178,0.00013198213223518274,0.0004041071916790925,0.0,2.0520259824781604e-05 +95800,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,58080.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0074116138668030105,0.0,0.0,0.007411613866803012,0.004090534130679789,0.0026242182442228817,0.0006968311183009024,0.0,0.0,0.004090534130679789,0.0026242182442228817,0.0006968311183009024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008832261317210012,0.00023391620382273937,0.0008832261317210012,0.00048746018098639064,0.0003127224610308016,8.303987014709429e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00048746018098639053,0.0003127224610308015,8.303987014709426e-05,0.0,0.0 +95801,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,3952.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00022190951749221483,0.0,0.0,0.00022190951749221483,0.00012532147128016402,8.790119677285377e-05,8.717223038634773e-06,0.0,0.0,0.00012532147128016402,8.790119677285377e-05,8.717223038634773e-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,2.644565658237813e-05,7.231944400252742e-06,2.644565658237813e-05,1.4934954702832214e-05,1.0475462653901218e-05,1.0388589432168796e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4934954702832214e-05,1.0475462653901218e-05,1.0388589432168796e-06,0.0,0.0 +95802,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,202350.0,,32859.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01041601996271558,0.005587953896228101,0.0,0.0160039915893051,0.005363044261614732,0.0019687970624440838,0.0063966356805967095,0.0,0.002275496854288157,0.0046924642623469145,0.0019687970624440838,0.0033832898358130557,0.0,0.0003714688021115263,0.0006705799992678171,0.003013345844783654,0.0019040280521766303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037335477517548706,0.0,0.0,0.0012412579527147506,0.0006554301803502395,0.0016146127278902377,0.0005591923406749436,0.00023461792698053113,0.00040318043072827114,0.0,4.4267254331004826e-05,4.480427890301875e-05,0.00020133434908340997,0.00012721614718905837,0.0,0.0,0.0,0.0005410674878652467,0.00019862824707927477,0.0006453445896878737,0.0,0.00022957061447489703 +95803,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,530246.0,,51885.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02729454389870337,0.008823514360689275,0.0,0.03611807598975406,0.012630949902392836,0.011048195999147564,0.008095470260059068,0.0,0.004343459828154595,0.011862267813387867,0.011048195999147564,0.0037005569230634805,0.0,0.0006835408934658757,0.0007686820890049692,0.004394913336995589,0.00365991893468872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005895360388666282,0.0,0.0,0.003252638802439566,0.0014328659917425151,0.0038421748413061943,0.0014136038586300848,0.0013165924712701307,0.0004409883192502969,0.0,8.145626618244886e-05,5.135887758268624e-05,0.00029364261154238026,0.000244534549741562,0.0,0.0,0.0,0.001343657340732649,0.0011752868763492948,0.0008611813146017268,0.0,0.0004620493096225236 +95804,46.0,the Tallahassee-Valdosta Area,G1301850010900,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7494.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014908777112247558,0.0,0.0,0.0014908777112247558,0.0010278835124321124,0.0002964221522816778,0.00012678994404235827,0.0,3.969939539486756e-05,0.0010278835124321124,0.0002964221522816778,0.00012678994404235827,0.0,3.969939539486756e-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.00017766670244737966,5.3187296107330744e-05,0.00017766670244737966,0.00012249205469965792,3.532439041226055e-05,1.5109456055244254e-05,0.0,4.7309451444991796e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012249205469965792,3.532439041226055e-05,1.5109456055244254e-05,0.0,4.7309451444991796e-06 +95805,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970200,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,127297.0,,16433.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.02898618797792804,0.014534914513096657,0.0,0.04352119470827747,0.03525299582463465,0.004203815684917928,0.0009966840679724689,0.0006360223923765838,0.0024316767383758355,0.020718081311537996,0.004203815684917928,0.0009966840679724689,0.0006360223923765838,0.0024316767383758355,0.014534914513096657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009711395152289819,0.0,0.0,0.0034542333293465424,0.0017281169650174265,0.0044253728445755236,0.0024689375174452243,0.0005009613634028204,0.00011877309734694165,7.57936762029845e-05,0.0002897786643173116,0.0009711395152289819,0.0,0.0,0.0,0.0,0.0,0.003584636209046917,0.000427457286049599,0.00010134599104163703,6.467277019006019e-05,0.00024726058824731004 +95806,85.0,Rural Climate Zone 3A,G1302930010500,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,24055.0,,2805.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002144712446508661,0.0008255810990145026,0.0,0.002970293545523164,0.0011307892336451567,0.0007243053982320836,0.0011151989136459239,0.0,0.0,0.0003052081346306542,0.0007243053982320836,0.0011151989136459239,0.0,0.0,0.0008255810990145026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5160868474704675e-05,0.0,0.0,0.0002555804166209489,0.00012664570389484255,0.0003107412850956536,3.637094675884804e-05,8.631379733087712e-05,0.00013289567253122378,0.0,0.0,5.5160868474704675e-05,0.0,0.0,0.0,0.0,0.0,0.00011829904830949476,7.577419093395176e-05,0.00011666804585220706,0.0,0.0 +95807,50.0,the Greater Atlanta and Macon Area,G1300670030312,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,Electricity,109049.0,,9981.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.030974760816728772,0.00882851091149262,0.0,0.03980336394547418,0.03051717880846828,0.004181314675241274,0.0020596723406888498,0.0006434919898512109,0.002401798348477327,0.02168866789697566,0.004181314675241274,0.0020596723406888498,0.0006434919898512109,0.002401798348477327,0.00882851091149262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005898723355298064,0.0,0.0,0.0036912045110941033,0.0014048940547223764,0.00428107684662391,0.0025845981266690286,0.0004982794760829586,0.00024544731371163326,7.668374099305026e-05,0.00028621783235368203,0.0005898723355298064,0.0,0.0,0.0,0.0,0.0,0.0032822951296323905,0.00044972403511285536,0.00022152940594251733,6.921120191031504e-05,0.0002583269925127766 +95808,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,17519.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0015448923882023708,0.0,0.0,0.0015448923882023708,0.000912392553510627,0.00047537720480025377,0.00015712262989149017,0.0,0.0,0.000912392553510627,0.00047537720480025377,0.00015712262989149017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001841008873312111,5.3588631956765715e-05,0.0001841008873312111,0.000108727494535168,5.664948956256581e-05,1.872390323347728e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000108727494535168,5.664948956256581e-05,1.872390323347728e-05,0.0,0.0 +95809,81.0,the Columbus-Albany Area,G1302150010302,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,32174.0,,1033.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0074481855255933305,0.0008197925149040151,0.0,0.008267978040497346,0.005048439781047326,0.00171848757815533,0.001350854635384108,0.0,0.00015019604591058228,0.00422864726614331,0.00171848757815533,0.001350854635384108,0.0,0.00015019604591058228,0.0008197925149040151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.477412598897621e-05,0.0,0.0,0.0008875843998919171,0.0003032929099991463,0.0009423585258808934,0.0005039188850999271,0.00020478850325861145,0.00016097846875170373,0.0,1.789854278167477e-05,5.477412598897621e-05,0.0,0.0,0.0,0.0,0.0,0.0005754055280219447,0.00019586789091153287,0.00015396622688699903,0.0,1.711888006041696e-05 +95810,50.0,the Greater Atlanta and Macon Area,G1301350050545,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13153.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.001159876641729429,0.0,0.0,0.001159876641729429,0.0006947353399396975,0.00034194598247021,0.0001231953193195214,0.0,0.0,0.0006947353399396975,0.00034194598247021,0.0001231953193195214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001382208992992207,4.172371897058856e-05,0.0001382208992992207,8.279065204575052e-05,4.074923100297553e-05,1.4681016250494645e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.279065204575052e-05,4.074923100297553e-05,1.4681016250494645e-05,0.0,0.0 +95811,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,33615.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0028941526322985634,0.0,0.0,0.002894152632298563,0.0010453493697123522,0.0007879249520872214,0.0010608783104989897,0.0,0.0,0.0010453493697123522,0.0007879249520872214,0.0010608783104989897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034489088246539865,0.00010625053897092789,0.00034489088246539865,0.00012457237485723202,9.389557724398377e-05,0.00012642293036418286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012457237485723205,9.389557724398378e-05,0.00012642293036418286,0.0,0.0 +95812,50.0,the Greater Atlanta and Macon Area,G1301210009601,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,62319.0,,3103.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004962074192946639,0.0009038879456680564,0.0,0.005865962138614697,0.0036814928670515852,0.0013491649134254984,0.0008353043581376129,0.0,0.0,0.0027776049213835284,0.0013491649134254984,0.0008353043581376129,0.0,0.0,0.0009038879456680564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.039307168149836e-05,0.0,0.0,0.0005913190700521491,0.0002045376460840789,0.0006517121417336473,0.0003310008466659868,0.00016077690718284128,9.954131620332106e-05,0.0,0.0,6.039307168149836e-05,0.0,0.0,0.0,0.0,0.0,0.0004090162098676528,0.00014989308394821482,9.280284791777966e-05,0.0,0.0 +95813,50.0,the Greater Atlanta and Macon Area,G1300890021410,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,79989.0,,5325.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.0064433338903269214,0.0015513619648826118,0.0,0.007994695855209533,0.005541845459014446,0.0016461883423272733,0.0008066013066689374,0.0,0.0,0.003990483494131835,0.0016461883423272733,0.0008066013066689374,0.0,0.0,0.0015513619648826118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010365366844575054,0.0,0.0,0.0007678390392154735,0.00030719422507837223,0.000871492707661224,0.0004755378293742171,0.00019617292796790845,9.612104275279119e-05,0.0,0.0,0.00010365366844575054,0.0,0.0,0.0,0.0,0.0,0.0006041102741099808,0.00017944911998625827,8.792669158188633e-05,0.0,0.0 +95814,50.0,the Greater Atlanta and Macon Area,G1301350050109,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,63915.0,,3137.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005694794034208027,0.0009234809431041744,0.0,0.006618274977312201,0.0018821014854192184,0.0016725528536185041,0.0030635899486681807,0.0,0.0,0.0009586205423150441,0.0016725528536185041,0.0030635899486681807,0.0,0.0,0.0009234809431041744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.170087098193403e-05,0.0,0.0,0.0006786376927458551,0.0002736786565961191,0.0007403385637277891,0.00011423697312802542,0.00019931491863568507,0.00036508214376056923,0.0,0.0,6.170087098193403e-05,0.0,0.0,0.0,0.0,0.0,0.00021053708334601169,0.00018709639319181262,0.0003427016541656305,0.0,0.0 +95815,50.0,the Greater Atlanta and Macon Area,G1300670030901,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,93300.0,,7364.0,,5.759960461090961,Office,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,431997.0345818221,0.0,0.0,0.015975373681495736,0.0038558573599274185,0.0,0.019831176447531785,0.010609067128937751,0.004923331717953425,0.0038681409854864554,0.0,0.00043069120904552576,0.007183900978055858,0.004923331717953425,0.0038681409854864554,0.0,0.0,0.003425166150881892,0.0,0.00043069120904552576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002576251022147289,0.0,0.0,0.0019037523722213684,0.0008074514139162475,0.0021613774744360975,0.0008560906806592308,0.0005867032987242765,0.0004609583928378613,0.0,0.0,0.00022884891668813892,0.0,2.877618552658996e-05,0.0,0.0,0.0,0.0011562702181554347,0.0005365883513020592,0.00042158430772340955,0.0,4.6940547381620785e-05 +95816,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,18100.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0042108652452893585,0.0,0.0,0.0042108652452893585,0.002016067629469358,0.0011667486892404098,0.0009303718724934693,0.0,9.775976115986137e-05,0.002016067629469358,0.0011667486892404098,0.0009303718724934693,0.0,9.775976115986137e-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.0005018042775959184,0.00017306120299874112,0.0005018042775959184,0.00024025260877728885,0.00013904018510096873,0.0001108714143475436,0.0,1.164992548304707e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00024025260877728885,0.00013904018510096873,0.0001108714143475436,0.0,1.164992548304707e-05 +95817,50.0,the Greater Atlanta and Macon Area,G1301530021300,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,25564.0,,2628.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006001406458563061,0.002038015176459173,0.0,0.008039502495805302,0.0033815979479258304,0.0006930577716803513,0.0029909595049217724,0.0004192631602103164,0.0005545432502839634,0.0033815979479258304,0.0006930577716803513,0.0009529443284625995,0.0004192631602103164,0.0005545432502839634,0.0,0.002038015176459173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013617064858143717,0.0,0.0,0.0007151775356810569,0.0003425614130353828,0.0008513481842624942,0.00040297935221684204,8.259053151244748e-05,0.00011356077632413878,4.996288716509627e-05,6.608398846253236e-05,0.0,0.00013617064858143717,0.0,0.0,0.0,0.0,0.00035809644618862155,7.339178958112566e-05,0.0003167295420389986,4.439813662094699e-05,5.8723707029210115e-05 +95818,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,12330.0,,1342.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002960747825719727,0.0010642746248774079,0.0,0.004025022450597136,0.002982251664891947,0.0005437990098359464,0.00041494138895010536,0.0,8.403038691913633e-05,0.0020020074269336756,0.0005437990098359464,0.00041494138895010536,0.0,0.0,0.0009802442379582715,0.0,8.403038691913633e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.111014696191006e-05,0.0,0.0,0.00035282750202636384,0.00017086025446230255,0.0004239376489882739,0.00023857596832365394,6.480364338296393e-05,4.944789031974601e-05,0.0,0.0,6.549560629410616e-05,0.0,5.6145406678039025e-06,0.0,0.0,0.0,0.000314107256549114,5.727592245300417e-05,4.370392440254325e-05,0.0,8.850545583612507e-06 +95819,50.0,the Greater Atlanta and Macon Area,G1301710970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,8720.0,,523.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0020937295717105677,0.00041461056065514806,0.0,0.002508340132365715,0.0013028018255415706,0.0006533031754667894,0.00047647545181215005,0.0,7.57596795452056e-05,0.000963950944431628,0.0006533031754667894,0.00047647545181215005,0.0,0.0,0.00033885088110994246,0.0,7.57596795452056e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7701471762343252e-05,0.0,0.0,0.0002495057158363268,8.849112836520103e-05,0.00027720718759867,0.00011487217531393991,7.785287969153251e-05,5.6780660830854375e-05,0.0,0.0,2.263972268308803e-05,0.0,5.061749079255221e-06,0.0,0.0,0.0,0.00014397809347976295,7.219927376819754e-05,5.265730044038308e-05,0.0,8.37251991032649e-06 +95820,81.0,the Columbus-Albany Area,G1300950010700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,186826.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.020874364342752586,0.0,0.0,0.020874364342752586,0.005498871587603492,0.005976187034351663,0.00939930572079743,0.0,0.0,0.005498871587603492,0.005976187034351663,0.00939930572079743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024875561439396806,0.0007109208283379478,0.0024875561439396806,0.0006552895014131325,0.0007121702261460973,0.0011200964163804508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006552895014131325,0.0007121702261460973,0.0011200964163804508,0.0,0.0 +95821,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000300,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,130176.0,,15420.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0066477685197503375,0.002622231802218709,0.0,0.009270000321969047,0.0042714036393435,0.0016528242915773222,0.0026001220415279034,0.0,0.0007456326191589006,0.0034097080743289345,0.0016528242915773222,0.0014422939800756152,0.0,0.00014292444340704565,0.0008616955650145661,0.0011578280614522878,0.0006027081757518549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017520274942420003,0.0,0.0,0.0007922014622949864,0.000395134181935261,0.0009674042117191863,0.00040632818583518444,0.00019696381076057747,0.00017187532879349855,0.0,1.70320240135273e-05,5.7573640907509524e-05,7.735954523749354e-05,4.0269563279196944e-05,0.0,0.0,0.0,0.00044575768361740945,0.00017248642129108878,0.0002713450837748937,0.0,7.781317272018288e-05 +95822,50.0,the Greater Atlanta and Macon Area,G1301510070309,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,89956.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00793246034996158,0.0,0.0,0.00793246034996158,0.004228703634522122,0.0033505421275778413,0.00035321458786161596,0.0,0.0,0.004228703634522122,0.0033505421275778413,0.00035321458786161596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009452970200839566,0.0002656326816818687,0.0009452970200839566,0.0005039269997172214,0.00039927807377952213,4.2091946587213094e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005039269997172214,0.00039927807377952213,4.2091946587213094e-05,0.0,0.0 +95823,35.0,Eastern Counties in South Carolina and Georgia,G1301270000600,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,18386.0,,8466.0,,8.53126424238864,Food Service,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.004141527587203854,0.00656605730673059,0.0,0.010707665754717514,0.0022066907699401224,0.0003986436605278418,0.007346444724124951,0.0003298311341365247,0.0004260554659880728,0.0022066907699401224,0.0003986436605278418,0.0007803874173943613,0.0003298311341365247,0.0004260554659880728,0.0,0.00656605730673059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004387069109051432,0.0,0.0,0.0004935412882276789,0.0005678664848770925,0.0009322481991328221,0.0002629689124083986,4.750592664614895e-05,9.299791035740032e-05,3.9305613547594645e-05,5.0772561358734055e-05,0.0,0.0004387069109051433,0.0,0.0,0.0,0.0,0.00019212249835248724,3.4707362289401324e-05,0.000639608110766527,2.871629427555132e-05,3.709393344885509e-05 +95824,85.0,Rural Climate Zone 3A,G1301670960200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,28348.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025257239086946414,0.0,0.0,0.0025257239086946414,0.0006551310256370613,0.0007962725250001964,0.0010743510476636812,0.0,0.0,0.0006551310256370613,0.0007962725250001964,0.0010743510476636812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000300986400667627,9.369497179860249e-05,0.000300986400667627,7.807089630556669e-05,9.48904986904124e-05,0.00012802866290199903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.807089630556669e-05,9.48904986904124e-05,0.00012802866290199903,0.0,0.0 +95825,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,507349.0,,34021.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.026115918123305357,0.0057855055831703295,0.0,0.03190142370647568,0.013111513618321946,0.00795485076363663,0.007074307824432548,0.0,0.0037607515000845602,0.011293708313731034,0.00795485076363663,0.003106607545853132,0.0,0.0037607515000845602,0.0018178053045909135,0.003967700278579415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038655399117060456,0.0,0.0,0.0031121828669694956,0.001202580327309758,0.0034987368581401003,0.0013458491236109055,0.000947964001839801,0.0003702083431627254,0.0,0.0004481613983560638,0.00012145522730196055,0.00026509876386864397,0.0,0.0,0.0,0.0,0.001437983971640643,0.0008724353440718005,0.0007758632266354563,0.0,0.00041245431579220085 +95826,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,32951.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.0033369115823555216,0.0,0.0,0.0033369115823555216,0.001215860822302389,0.0008986837412156307,0.0012223363292312042,0.0,0.0,0.001215860822302389,0.0008986837412156307,0.0012223363292312042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039765250118433423,0.00013573250222816797,0.00039765250118433423,0.00014489149177254835,0.00010709418833801638,0.0001456631638600845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014489149177254835,0.00010709418833801638,0.0001456631638600845,0.0,0.0 +95827,35.0,Eastern Counties in South Carolina and Georgia,G1300510011200,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,10956.0,,351.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002417114230031259,0.00027855742435398736,0.0,0.0026956716543852467,0.0012802227944107396,0.0004323925815090992,0.0009203643165710131,0.0,6.260925482065573e-05,0.0010642746248774079,0.0004323925815090992,0.0009203643165710131,0.0,0.0,0.00021594816953333167,0.0,6.260925482065573e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.861209704488458e-05,0.0,0.0,0.0002880387560031409,0.00010137626470291379,0.0003066508530480255,0.00012682575576555748,5.152665924326505e-05,0.00010967648509163228,0.0,0.0,1.442879613544942e-05,0.0,4.183300909435164e-06,0.0,0.0,0.0,0.0001456339874921114,4.9187575851719e-05,0.00010469765571498261,0.0,7.122225501100093e-06 +95828,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,26003.0,,,,8.72605822017302,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,152706.01885302784,0.0,0.0,0.006104278284403324,0.0,0.0,0.006104278284403324,0.0028832512976259958,0.001140695961012528,0.0019357590608684902,0.0,0.00014465467197004867,0.0028832512976259958,0.001140695961012528,0.0019357590608684902,0.0,0.00014465467197004867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007274374765789985,0.0002074737092800522,0.0007274374765789985,0.0003435926329975946,0.0001359349873584471,0.00023068143700148304,0.0,1.723827529654321e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003435926329975946,0.0001359349873584471,0.00023068143700148304,0.0,1.723827529654321e-05 +95829,50.0,the Greater Atlanta and Macon Area,G1300890022301,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,208558.0,,26878.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.010031466153876055,0.0045708871740896126,0.0,0.014602353327965672,0.005327459426244686,0.0045375540946199135,0.002125834873541491,0.0,0.0026115226639209974,0.004076990226372622,0.0045375540946199135,0.001039548820419116,0.0,0.00037739074282582387,0.001250469199872064,0.001086286053122375,0.0022341319210951735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030539977385256307,0.0,0.0,0.0011954304526872173,0.0006828358693536672,0.0015008302265397803,0.00048584705337721885,0.0005407315602942362,0.0001238810257565308,0.0,4.497292615216792e-05,8.35489908863449e-05,7.257923950591537e-05,0.0001492715434603028,0.0,0.0,0.0,0.0005475564080660558,0.0004663699190679467,0.00021849335947330675,0.0,0.0002684123622594441 +95830,81.0,the Columbus-Albany Area,G1300950011400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,142220.0,,4945.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.009246099794774816,0.0008409510421531044,0.0,0.010087050836927921,0.006192665602820423,0.001562115762552332,0.0013111424966514849,0.0,0.001021126974903681,0.006192665602820423,0.001562115762552332,0.0013111424966514849,0.0,0.00018017593275057657,0.0,0.0,0.0008409510421531044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6187475915320623e-05,0.0,0.0,0.0011018393078010677,0.0003767996778115579,0.0011580267837163882,0.000737967633132313,0.00018615422596763326,0.00015624624144284613,0.0,2.1471207258275326e-05,0.0,0.0,5.6187475915320623e-05,0.0,0.0,0.0,0.0007109384840623349,0.00017933605387202397,0.00015052349323279652,0.0,0.00011722875254923278 +95831,35.0,Eastern Counties in South Carolina and Georgia,G1300510000601,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,30381.0,,6133.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006293642616532917,0.004218855575022304,0.0,0.010512498191555223,0.004114072697368496,0.0004734952486450643,0.00385975368014714,0.00038090476606391033,0.0016843435193016258,0.002911185343494668,0.0004734952486450643,0.0008437854589986642,0.00038090476606391033,0.0016843435193016258,0.0012028873538738284,0.0030159682211484758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028187797890906143,0.0,0.0,0.000750003404283075,0.0004909497209306449,0.0010318813831921363,0.00034692133811099665,5.6425677470592025e-05,0.0001005525742868093,4.539181657775131e-05,0.00020072054459207114,8.036953390219602e-05,0.00020150844500686543,0.0,0.0,0.0,0.0,0.00040382742029138605,4.6477147791498565e-05,0.0003788640809898633,3.738869008189167e-05,0.0001653310838962956 +95832,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,15043.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013403685550521691,0.0,0.0,0.0013403685550521691,0.00045764340911134396,0.0003813183582489571,0.0005013760980855704,0.0,0.0,0.00045764340911134396,0.0003813183582489571,0.0005013760980855704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001597278037034288,5.4556118401733436e-05,0.0001597278037034288,5.4536027677745405e-05,4.544059441362571e-05,5.974752442136042e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4536027677745405e-05,4.544059441362571e-05,5.974752442136042e-05,0.0,0.0 +95833,35.0,Eastern Counties in South Carolina and Georgia,G1302450010506,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,7283.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0005187203311979256,0.0,0.0,0.0005187203311979256,0.00033821002973936654,0.00014023490860410017,4.024501925502117e-05,0.0,0.0,0.00033821002973936654,0.00014023490860410017,4.024501925502117e-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,6.18137320834919e-05,1.8212055859422883e-05,6.18137320834919e-05,4.030307452568698e-05,1.671120746161624e-05,4.795830601395174e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.030307452568698e-05,1.671120746161624e-05,4.795830601395174e-06,0.0,0.0 +95834,50.0,the Greater Atlanta and Macon Area,G1301350050725,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,26804.0,,2562.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0013707874324685424,0.0004357590926206377,0.0,0.0018065465250891805,0.0004807410195433117,0.00038166375992805665,0.0006722998443255623,0.0,0.0002718064405694095,0.0004807410195433117,0.00038166375992805665,0.00023654075170492444,0.0,0.0002718064405694095,0.0,0.0004357590926206377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9114802738408727e-05,0.0,0.0,0.0001633535406125705,7.817017866048432e-05,0.00019246834335097921,5.7288785846742935e-05,4.548197994161646e-05,2.818800958845606e-05,0.0,3.239053946413547e-05,0.0,2.9114802738408727e-05,0.0,0.0,0.0,0.0,5.121784926507459e-05,4.066221963856294e-05,7.162640733322632e-05,0.0,2.8958089150755825e-05 +95835,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000900,ComStock 90.1-2004,gen5_led,10001_25000,Electricity,15322.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.004092924958137107,0.0,0.0,0.004092924958137107,0.0023146401656682575,0.0008479129199753797,0.0007844765944173309,0.0,0.0001460606922236169,0.0023146401656682575,0.0008479129199753797,0.0007844765944173309,0.0,0.0001460606922236169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00048774643388344404,0.00015744300485322985,0.00048774643388344404,0.0002758314648021109,0.00010104424273391126,9.348465102722868e-05,0.0,1.740578742373072e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002758314648021109,0.00010104424273391126,9.348465102722868e-05,0.0,1.740578742373072e-05 +95836,50.0,the Greater Atlanta and Macon Area,G1302230120204,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,23425.0,,2977.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005499180134924435,0.0023086562173895353,0.0,0.00780783635231397,0.0027035802818962252,0.00045548879102501685,0.003581728386020436,0.00041489667792461585,0.0006520613546646076,0.0027035802818962252,0.00045548879102501685,0.001925214384078577,0.00041489667792461585,0.0,0.0,0.0016565140019418592,0.0006520613546646076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015424930878368202,0.0,0.0,0.0006553288907258695,0.0003402945155294306,0.0008095781995095516,0.00032218152954680994,5.427990297404458e-05,0.00022942485530073265,4.9442602904282385e-05,0.0,0.0,0.0001106774312543347,4.3566474940689e-05,0.0,0.0,0.0,0.0002803285773527259,4.7228678816447e-05,0.0003713819151738894,4.301976762066208e-05,6.761087626057667e-05 +95837,50.0,the Greater Atlanta and Macon Area,G1300630040609,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,47571.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0038409542640997826,0.0,0.0,0.0038409542640997826,0.0026065104357506723,0.0009097196767601049,0.0003247241515890048,0.0,0.0,0.0026065104357506723,0.0009097196767601049,0.0003247241515890048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004577205535463011,0.0001023206211197069,0.0004577205535463011,0.0003106137999681775,0.00010840988082324636,3.869687275487719e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003106137999681775,0.00010840988082324636,3.869687275487719e-05,0.0,0.0 +95838,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,148165.0,,,10682.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012365547935100333,0.0,0.001006763326963722,0.013372341635663493,0.0070884083951858945,0.004795960977621575,0.001487972262856024,0.0,0.0,0.006081645068222172,0.004795960977621575,0.001487972262856024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001006763326963722,0.0,0.0,0.0,0.0,8.119483565849318e-05,0.0014735800373539907,0.00043373624593360605,0.001554774873012484,0.0007247386702020678,0.0005715260167720614,0.00017731896994690604,0.0,0.0,0.0,0.0,0.0,8.119483565849318e-05,0.0,0.0,0.0008241547787781264,0.0005576165957402597,0.000173003498494098,0.0,0.0 +95839,50.0,the Greater Atlanta and Macon Area,G1300570090502,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,23683.0,,1298.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006205842570955193,0.0010295376539068985,0.0,0.00723538022486209,0.0033687418204757305,0.0015074191259726172,0.002226722546283374,0.0,0.00013249673213037048,0.0023392041665688318,0.0015074191259726172,0.002226722546283374,0.0,0.00013249673213037048,0.0010295376539068985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.878848267962277e-05,0.0,0.0,0.0007395337192920796,0.00028801063187580277,0.0008083222019717025,0.0002787567260540273,0.00017963511964999123,0.00026535259115201986,0.0,1.5789282436041145e-05,6.878848267962277e-05,0.0,0.0,0.0,0.0,0.0,0.0003763490959112665,0.0001684058486675688,0.0002487649875824073,0.0,1.4802269810460066e-05 +95840,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,18913.0,,442.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.002869979503526856,0.00016429331679363102,0.0,0.003034272820320487,0.001410210134761181,0.00033916495327704067,0.0011726822970383136,0.0,0.00011213793839640759,0.001410210134761181,0.00033916495327704067,0.0010083889802446826,0.0,0.00011213793839640759,0.0,0.00016429331679363102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0977385143328495e-05,0.0,0.0,0.0003420093764993624,0.00011497684626261144,0.0003529867616426909,0.0001680517537947776,4.041756885656121e-05,0.00012016757819297943,0.0,1.3363240519923242e-05,0.0,1.0977385143328495e-05,0.0,0.0,0.0,0.0,0.00016405430170002798,3.945615493708702e-05,0.0001364219208289731,0.0,1.3045368717917267e-05 +95841,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,9271.0,,133.0,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0022205195157529263,0.00010512069072265973,0.0,0.0023256402064755852,0.000813010534857392,0.0004624979563502071,0.0009450110245453266,0.0,0.00010512069072265973,0.000813010534857392,0.0004624979563502071,0.0009450110245453266,0.0,0.0,0.0,0.0,0.00010512069072265973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.021774887511293e-06,0.0,0.0,0.0002646149812581083,9.008627063045024e-05,0.00027163675614561955,9.688488028036366e-05,5.511497970781217e-05,0.00011261512126993237,0.0,0.0,0.0,0.0,7.021774887511293e-06,0.0,0.0,0.0,9.496032266124118e-05,5.402015506832763e-05,0.00011037809224082824,0.0,1.2278186175222535e-05 +95842,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,28134.0,,1677.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007076531430242206,0.0013003222525249946,0.0,0.0083768536827672,0.00407530260587073,0.0004165138935859864,0.0029527123545303588,0.00041271343678176564,0.0005196113919983595,0.00407530260587073,0.0004165138935859864,0.0016523901020053646,0.00041271343678176564,0.0005196113919983595,0.0,0.0013003222525249946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.688009044401824e-05,0.0,0.0,0.00084329728230992,0.00035908069840135943,0.0009301773727539381,0.00048564634326844145,4.963519740819742e-05,0.00019691230033712183,4.9182303935437715e-05,6.192113736072156e-05,0.0,8.688009044401824e-05,0.0,0.0,0.0,0.0,0.00045252721542748486,4.625027652665677e-05,0.00032787324745629944,4.582826856766767e-05,5.7698364775829255e-05 +95843,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,15179.0,,1585.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012768103804096265,0.00046642063651248676,0.0,0.0017432003273158158,0.0007106178338233079,0.0004621854708434038,0.0005704277122554017,0.0,0.0,0.00024419719731082104,0.0004621854708434038,0.0005704277122554017,0.0,0.0,0.00046642063651248676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.116315070307948e-05,0.0,0.0,0.00015215353896839626,7.473104201233433e-05,0.00018331668967147576,2.9100223766261152e-05,5.507721125045782e-05,6.797610395167728e-05,0.0,0.0,3.116315070307948e-05,0.0,0.0,0.0,0.0,0.0,7.472928204332707e-05,4.860388631278365e-05,5.9986748665053784e-05,0.0,0.0 +95844,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,10423.0,,309.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00228445208375341,0.0002448129382683499,0.0,0.00252926502202176,0.0008893491639187728,0.0005270921809406062,0.0009632892878417137,0.0,0.00014945168224692848,0.0007939879078973513,0.0005270921809406062,0.0009632892878417137,0.0,0.0,9.536125602142145e-05,0.0,0.00014945168224692848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6356880726827223e-05,0.0,0.0,0.00027223809545813457,9.459803653666732e-05,0.00028859497618496173,9.461951835190949e-05,6.281356150590824e-05,0.00011479515940048854,0.0,0.0,6.371447120956686e-06,0.0,9.985433605870539e-06,0.0,0.0,0.0,0.00010147679209041214,6.0142434296679675e-05,0.00010991353087296851,0.0,1.7052781856911996e-05 +95845,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,91308.0,,44566.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.023017735777779196,0.030656701610622943,0.0,0.05367450910837316,0.023813755736081462,0.003002556586568557,0.014543304002574593,0.0003698598905275062,0.011945032892621036,0.014893369181101792,0.003002556586568557,0.0033938607484297304,0.0003698598905275062,0.0013580893711516108,0.008920386554979669,0.011149443254144863,0.010586943521469425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020483036208771,0.0,0.0,0.0027429809414142815,0.002837554585269542,0.004791284562291382,0.0017748152212541627,0.00035780910737650743,0.00040444009960978624,4.407551813545082e-05,0.00016184099503837438,0.0005960086741313649,0.0007449413599118313,0.0007073583787478608,0.0,0.0,0.0,0.002125747997025756,0.0002680248643091553,0.0012982160267465948,3.301574645270067e-05,0.0010662799277571743 +95846,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,109672.0,,25136.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006130237000260418,0.00427468375620621,0.0,0.010404920756466627,0.00374399630854261,0.0016453066183352199,0.0038369211327451075,0.0,0.0011786966968436903,0.0030158458257438813,0.0016453066183352199,0.0012937135513755727,0.0,0.0001753710048057423,0.0007281504827987284,0.0025432075813695337,0.001003325692037948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028560975408702593,0.0,0.0,0.0007305288287930618,0.0005114503185117025,0.001016138582880088,0.0003593926823396109,0.00019606809929972391,0.0001541694139133546,0.0,2.0898633240372105e-05,4.8650822421321064e-05,0.00016992248627811072,6.703644538759416e-05,0.0,0.0,0.0,0.0003656365283614806,0.0001606796990279166,0.0003747115133026992,0.0,0.00011511084218799159 +95847,50.0,the Greater Atlanta and Macon Area,G1301350050511,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,546567.0,,40311.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02684426364007971,0.0068552492090877964,0.0,0.03369951284916751,0.011763243744856874,0.008668941069829258,0.008433357757641015,0.0,0.004833970276840356,0.010418058954278886,0.008668941069829258,0.002923311069492626,0.0,0.004833970276840356,0.0013451847905779858,0.005510046688148388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004580276585286173,0.0,0.0,0.003198978574749336,0.0014128909579183987,0.003657006233277954,0.001241499779321742,0.0010330608103082256,0.0003483652822077078,0.0,0.0005760548158042712,8.98773802562795e-05,0.0003681490936332854,0.0,0.0,0.0,0.0,0.0012765245566323427,0.000940736789584423,0.0009151717422502163,0.0,0.0005245731448109714 +95848,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,6524.0,,560.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015343816320116314,0.00044421969305382015,0.0,0.0019786013250654515,0.0011784930937113914,0.00030014397059994666,0.00045563326922984463,0.0,4.424828445052947e-05,0.0007342734006575712,0.00030014397059994666,0.00045563326922984463,0.0,4.424828445052947e-05,0.00044421969305382015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.967980589189157e-05,0.0,0.0,0.00018284507278687958,9.065697765578267e-05,0.00021252487867877117,8.749992217561e-05,3.5766751247498166e-05,5.4295682728704166e-05,0.0,5.272860820449578e-06,2.967980589189157e-05,0.0,0.0,0.0,0.0,0.0,0.0001265839149058985,3.2238966046284355e-05,4.894033175777915e-05,0.0,4.752782263643463e-06 +95849,50.0,the Greater Atlanta and Macon Area,G1300890022800,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,7165.0,,539.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005162600696434678,0.00015712262989149017,0.0,0.0006733523259355202,0.0004395059838642689,0.00017546828395189224,5.8378058119359e-05,0.0,0.0,0.0002823833539727787,0.00017546828395189224,5.8378058119359e-05,0.0,0.0,0.00015712262989149017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0497072340276836e-05,0.0,0.0,6.152084352083525e-05,2.8037643558731773e-05,7.201791586111209e-05,3.365060200112991e-05,2.090992016355034e-05,6.956701844269301e-06,0.0,0.0,1.0497072340276836e-05,0.0,0.0,0.0,0.0,0.0,4.700704779242599e-05,1.8767084664605728e-05,6.243783404080355e-06,0.0,0.0 +95850,81.0,the Columbus-Albany Area,G1300950000100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,71594.0,,,5259.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007881706065301095,0.0,0.0004956971428241097,0.008377403208125207,0.005954318939379117,0.001957639230961981,0.0004654450377841089,0.0,0.0,0.005458621796555007,0.001957639230961981,0.0004654450377841089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004956971428241097,0.0,0.0,0.0,0.0,3.997617728561485e-05,0.0009392484253994929,0.0002348818433943449,0.0009792246026851079,0.0006504939266686269,0.00023328826905587896,5.5466229674987396e-05,0.0,0.0,0.0,0.0,0.0,3.997617728561485e-05,0.0,0.0,0.000695993191782728,0.0002288260992714624,5.4405311630917406e-05,0.0,0.0 +95851,50.0,the Greater Atlanta and Macon Area,G1301210009000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,40804.0,,195.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.00918098142750556,0.00015482764203998347,0.0,0.009335809069545543,0.0044797459420158475,0.0011013273939126176,0.003599908091577095,0.0,0.00015482764203998347,0.0044797459420158475,0.0011013273939126176,0.003599908091577095,0.0,0.0,0.0,0.0,0.00015482764203998347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0345664646080828e-05,0.0,0.0,0.0010940758444746065,0.00034265052879198357,0.0011044215091206874,0.0005338407296913913,0.00013124258098682826,0.0004289925337963869,0.0,0.0,0.0,0.0,1.0345664646080828e-05,0.0,0.0,0.0,0.0005299516878400833,0.00013028647580087417,0.00042586731343563,0.0,1.831603204410006e-05 +95852,50.0,the Greater Atlanta and Macon Area,G1301210010212,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,28053.0,,3892.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0023718743800940395,0.0011338464670112753,0.0,0.0035056904735058774,0.002597550223916536,0.0006374507314000976,0.00027068951818924424,0.0,0.0,0.0014637037569052605,0.0006374507314000976,0.00027068951818924424,0.0,0.0,0.0011338464670112753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.575611146120467e-05,0.0,0.0,0.0002826507518329381,0.0001445124908715555,0.0003584068632941427,0.0001744261714794377,7.596352066484664e-05,3.225744013747144e-05,0.0,0.0,7.575611146120467e-05,0.0,0.0,0.0,0.0,0.0,0.0002655624719406258,6.517024787906822e-05,2.7674143474448742e-05,0.0,0.0 +95853,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Propane,167726.0,,,29734.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.0134773431689198,0.0,0.002802511272922485,0.016279854441842285,0.011642595521282963,0.003752658210534238,0.0008846310836245219,0.0,0.0,0.008840084248360478,0.003752658210534238,0.0008846310836245219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002802511272922485,0.0,0.0,0.0,0.0,0.0002260193876327275,0.0016060685854264703,0.0005342458446864914,0.0018320879730591977,0.0010534555235305386,0.00044719692807709485,0.00010541975338118483,0.0,0.0,0.0,0.0,0.0,0.00022601938763272748,0.0,0.0,0.0013102241980071164,0.00042231335661399236,9.955383659556882e-05,0.0,0.0 +95854,50.0,the Greater Atlanta and Macon Area,G1301350050731,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,29619.0,,3701.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026390299351457605,0.001089419644355853,0.0,0.0037284495795016134,0.0016427532459034344,0.0008767713623190708,0.0012088942816728106,0.0,0.0,0.0005533336015475812,0.0008767713623190708,0.0012088942816728106,0.0,0.0,0.001089419644355853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.27879756829338e-05,0.0,0.0,0.00031448877750309666,0.00016951334586659178,0.0003872767531860304,6.593983856892967e-05,0.0001044833748239463,0.00014406190688123733,0.0,0.0,7.27879756829338e-05,0.0,0.0,0.0,0.0,0.0,0.00017063396722782995,9.107087523785449e-05,0.00012556872296875377,0.0,0.0 +95855,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,95054.0,,11505.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.008579954611861363,0.003386598054951502,0.0,0.011966552666812865,0.004701586305595471,0.0025370483734184937,0.0047279179877989,0.0,0.0,0.001314988250643969,0.0025370483734184937,0.0047279179877989,0.0,0.0,0.003386598054951502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022627246269948142,0.0,0.0,0.0010224565368432198,0.0005031014432871906,0.0012487289995427014,0.0001567045973511592,0.0003023351300836825,0.0005634168094083781,0.0,0.0,0.00022627246269948142,0.0,0.0,0.0,0.0,0.0,0.0004906180858529212,0.000264745074487195,0.0004933658392025851,0.0,0.0 +95856,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,111244.0,,4206.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013834232962313387,0.0012253317485177839,0.0,0.015059564710831171,0.010664960476180048,0.0027363879469464994,0.0016582162877046233,0.0,0.0,0.009439628727662262,0.0027363879469464994,0.0016582162877046233,0.0,0.0,0.0012253317485177839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.18705014496711e-05,0.0,0.0,0.0016485986334299574,0.0005314715237398628,0.0017304691348796286,0.001124902194643095,0.00032609002914432873,0.00019760640964253348,0.0,0.0,8.18705014496711e-05,0.0,0.0,0.0,0.0,0.0,0.0012254925878081456,0.0003144337153278983,0.00019054283174358463,0.0,0.0 +95857,35.0,Eastern Counties in South Carolina and Georgia,G1301810970100,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,7940.0,,443.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0006145900557177959,0.000130308068340046,0.0,0.0007448674344515444,0.00026322475321539674,0.00025874407069593217,0.000222929300146513,0.0,0.0,0.00013291668487535075,0.00025874407069593217,0.000222929300146513,0.0,0.0,0.000130308068340046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.706018044506608e-06,0.0,0.0,7.323788535109516e-05,3.307329887799874e-05,8.194390339560177e-05,1.5839073277518885e-05,3.083334721837029e-05,2.6565464855205995e-05,0.0,0.0,8.706018044506608e-06,0.0,0.0,0.0,0.0,0.0,2.8957721536981426e-05,2.846479541544718e-05,2.4524762649485025e-05,0.0,0.0 +95858,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,63873.0,,3913.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00546990059925846,0.0011517809243527853,0.0,0.006621681523611245,0.0020931539079285205,0.0016801024967677389,0.0028484251189149863,0.0,0.0,0.0009413729835757353,0.0016801024967677389,0.0028484251189149863,0.0,0.0,0.0011517809243527853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.695441219822597e-05,0.0,0.0,0.0006518392485349125,0.00028799093671913267,0.0007287936607331385,0.00011218190295601773,0.00020021510977789623,0.00033944223580099854,0.0,0.0,7.695441219822597e-05,0.0,0.0,0.0,0.0,0.0,0.0002303761202645633,0.0001849149713196223,0.00031350256914895286,0.0,0.0 +95859,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,71578.0,,5719.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006377484326300424,0.0016835090430667836,0.0,0.00806099336936721,0.003417932142981457,0.0019293020999050857,0.0027137591264806667,0.0,0.0,0.0017344230999146728,0.0019293020999050857,0.0027137591264806667,0.0,0.0,0.0016835090430667836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011248192967214682,0.0,0.0,0.0007599932811207492,0.0003555902696377351,0.000872475210792896,0.0002066880661893263,0.00022991144441284614,0.00032339377051857684,0.0,0.0,0.00011248192967214682,0.0,0.0,0.0,0.0,0.0,0.0003699371690660073,0.00020881647945456672,0.00029372156227232195,0.0,0.0 +95860,50.0,the Greater Atlanta and Macon Area,G1300670030226,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,102409.0,,9676.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.0091245109860078,0.0028482716708834966,0.0,0.011972782656891298,0.004786381687796023,0.0025123125507425454,0.004674119107959026,0.0,0.0,0.0019381100169125261,0.0025123125507425454,0.004674119107959026,0.0,0.0,0.0028482716708834966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001903056905742493,0.0,0.0,0.0010873499715233716,0.00047777857297496814,0.001277655662097621,0.00023096074682036607,0.0002993873298740944,0.0005570055520487429,0.0,0.0,0.00019030569057424928,0.0,0.0,0.0,0.0,0.0,0.0005107707906860802,0.0002680972709019813,0.0004987908755000422,0.0,0.0 +95861,50.0,the Greater Atlanta and Macon Area,G1300890023315,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,14886.0,,2561.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012335380355298657,0.000753767420277878,0.0,0.001987305455807744,0.0009397771240482545,0.000495944037770877,0.0005515842939886121,0.0,0.0,0.00018600970377037658,0.000495944037770877,0.0005515842939886121,0.0,0.0,0.000753767420277878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.036266944651382e-05,0.0,0.0,0.0001469967678911829,9.90148313064506e-05,0.0001973594373376967,2.2166179285178372e-05,5.910005894216837e-05,6.573052966383616e-05,0.0,0.0,5.036266944651382e-05,0.0,0.0,0.0,0.0,0.0,9.332932885730749e-05,4.925223546254619e-05,5.477787301784298e-05,0.0,0.0 +95862,50.0,the Greater Atlanta and Macon Area,G1301210001201,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,154439.0,,14504.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.007949779880270496,0.0024664705771435453,0.0,0.010416250457414039,0.004850033984286924,0.0029226018550358238,0.0014109112403621219,0.0,0.0012326856473677508,0.003720893647612282,0.0029226018550358238,0.0010713925495295306,0.0,0.00023487409773143952,0.0011291403366746426,0.0003395186908325911,0.0009978115496363114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001647953046372559,0.0,0.0,0.0009473594972480865,0.0003874719284017678,0.0011121548018853426,0.0004434115143318445,0.0003482806650929377,0.00012767572465705878,0.0,2.7989480274249233e-05,7.544262943367842e-05,2.2684676072883422e-05,6.666799913069405e-05,0.0,0.0,0.0,0.0005178435951578421,0.0003120494942365325,0.00015064458342453296,0.0,0.00013161523597576187 +95863,85.0,Rural Climate Zone 3A,G1301750950400,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,70240.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.007548052075477392,0.0,0.0,0.007548052075477392,0.004489825468888474,0.0024261216286898648,0.0006321049778990533,0.0,0.0,0.004489825468888474,0.0024261216286898648,0.0006321049778990533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008994861332345832,0.00028438689789109044,0.0008994861332345832,0.0005350434402843223,0.0002891160183747161,7.532667457554481e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005350434402843223,0.0002891160183747161,7.532667457554481e-05,0.0,0.0 +95864,50.0,the Greater Atlanta and Macon Area,G1302470060308,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,196913.0,,8608.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009914321655973765,0.0014638540995623995,0.0,0.011378175755536166,0.005373717939189605,0.00337132184185452,0.0013472592428641322,0.0,0.0012858767316279095,0.004337963416114379,0.00337132184185452,0.0009191596663769572,0.0,0.0012858767316279095,0.0010357545230752245,0.0004280995764871749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.780631471727167e-05,0.0,0.0,0.0011814698304484013,0.0003805628097175617,0.0012792761451656729,0.0005169464013344682,0.00040175366334648525,0.00010953441424154922,0.0,0.0001532353515258988,6.920316231243016e-05,2.8603152404841507e-05,0.0,0.0,0.0,0.0,0.0006041802586068561,0.0003790459650671177,0.0001514756537234412,0.0,0.00014457426776825797 +95865,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010600,ComStock 90.1-2004,gen4_led,10001_25000,Propane,17921.0,,,2298.0,3.20458438519356,Mercantile,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,56080.226740887294,0.0,0.0,0.001642999114386309,0.0,0.00021659413759060823,0.0018595932519769177,0.0009784855058871749,0.0007015086526143162,0.00017959909347542652,0.0,0.0,0.0007618913682965667,0.0007015086526143162,0.00017959909347542652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021659413759060823,0.0,0.0,0.0,0.0,1.74673364435076e-05,0.00019579450524542973,6.62627595754808e-05,0.00021326184168893734,9.079380639965172e-05,8.359806062056915e-05,2.140263822520892e-05,0.0,0.0,0.0,0.0,0.0,1.74673364435076e-05,0.0,0.0,0.00011221465814074734,8.045040336547265e-05,2.059678018271734e-05,0.0,0.0 +95866,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,45517.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.004039672876966617,0.0,0.0,0.004039672876966617,0.0019314503723459244,0.0009396850552293614,0.0011685374493913313,0.0,0.0,0.0019314503723459244,0.0009396850552293614,0.0011685374493913313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004813986458277188,0.000156281208011938,0.0004813986458277188,0.00023016655606751868,0.00011198013474587042,0.00013925195501432976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023016655606751868,0.00011198013474587042,0.00013925195501432976,0.0,0.0 +95867,50.0,the Greater Atlanta and Macon Area,G1300210013606,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,60016.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0053473876909180314,0.0,0.0,0.0053473876909180314,0.0013090344670222145,0.0014860214265410665,0.0025523317973547496,0.0,0.0,0.0013090344670222145,0.0014860214265410665,0.0025523317973547496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006372369082133205,0.0002096564615032717,0.0006372369082133205,0.00015599487539058528,0.00017708603791643292,0.0003041559949063022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015599487539058528,0.00017708603791643292,0.0003041559949063022,0.0,0.0 +95868,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,263281.0,,9917.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.021763841202078908,0.002919011213399702,0.0,0.02468285241547861,0.006644054246602271,0.006755856482344802,0.011282941686531536,0.0,0.0,0.003725043033202569,0.006755856482344802,0.011282941686531536,0.0,0.0,0.002919011213399702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019503034198244703,0.0,0.0,0.0025935562768783452,0.0008689256628181102,0.0027885866188607925,0.0004439064157241523,0.0008050827895124012,0.0013445670716417917,0.0,0.0,0.00019503034198244703,0.0,0.0,0.0,0.0,0.0,0.0007506231636114192,0.0007632542085693687,0.0012747092466800043,0.0,0.0 +95869,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,3263.0,,360.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0002283306708549087,0.00010600190015226539,0.0,0.0003343325710071741,0.00014516183778813413,0.00010753638046715056,8.163435275188941e-05,0.0,0.0,3.915993763586875e-05,0.00010753638046715056,8.163435275188941e-05,0.0,0.0,0.00010600190015226539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0820405189354945e-06,0.0,0.0,2.72098106734604e-05,1.7200210445376692e-05,3.42918511923959e-05,4.666628819803155e-06,1.2814943091371674e-05,9.728238762285573e-06,0.0,0.0,7.0820405189354945e-06,0.0,0.0,0.0,0.0,0.0,1.4888971556823257e-05,1.1029800493680489e-05,8.373079141892151e-06,0.0,0.0 +95870,50.0,the Greater Atlanta and Macon Area,G1300890023428,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,42217.0,,3412.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.009910701876794102,0.0026464117082667755,0.0,0.01255711358506088,0.004823426570820749,0.0006382341607598895,0.0060598688047216066,0.0004139263485277935,0.0006218194217969783,0.003032036782720585,0.0006382341607598895,0.005204846884554994,0.0004139263485277935,0.0006218194217969783,0.0017913897881001635,0.0008550219201666123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017681785121762453,0.0,0.0,0.0011810406442366386,0.0005029890275018641,0.0013578584954542633,0.0003613224088193305,7.605722518630758e-05,0.0006202523084748824,4.932686376899892e-05,7.410111005735529e-05,0.00011969025531273694,5.712759590488761e-05,0.0,0.0,0.0,0.0,0.0005215793185291177,6.901519775276734e-05,0.0006552815089304309,4.475976147173648e-05,6.724019646760178e-05 +95871,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,16070.0,,2192.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002145479686666104,0.0006453103516217964,0.0,0.0027907900382879007,0.001064468994435821,0.0006788540913051855,0.001047436262940596,0.0,0.0,0.00041915864281402465,0.0006788540913051855,0.001047436262940596,0.0,0.0,0.0006453103516217964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.311619300708148e-05,0.0,0.0,0.00025567174326030694,0.00011775969538455739,0.00029878793626738844,4.99501447517383e-05,8.089743753905777e-05,0.00012482050376166556,0.0,0.0,4.311619300708148e-05,0.0,0.0,0.0,0.0,0.0,0.00011396432182451798,7.267956750060077e-05,0.00011214076124753637,0.0,0.0 +95872,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960300,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,7996.0,,28.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,1870.6521585294563,0.0,0.0,0.000361646181884817,4.6985457763139934e-06,0.0,0.00036634472766113106,0.00022904080882424208,5.5088232932104064e-05,1.4024715883261767e-05,0.0,6.819097002152309e-05,0.0002243422630479281,5.5088232932104064e-05,1.4024715883261767e-05,0.0,6.819097002152309e-05,4.6985457763139934e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1415307932406415e-07,0.0,0.0,4.309647051714971e-05,1.3823994908482806e-05,4.341062359647378e-05,2.6734306096656138e-05,6.564726866538421e-06,1.6712902965664274e-06,0.0,8.126147257388725e-06,3.1415307932406415e-07,0.0,0.0,0.0,0.0,0.0,2.7140568948758502e-05,6.527771150626466e-06,1.6618818732364125e-06,0.0,8.080401623852394e-06 +95873,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,61849.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.006033177633246498,0.0,0.0,0.006033177633246498,0.0027531645809669167,0.001212055311121474,0.0020679577411581067,0.0,0.0,0.0027531645809669167,0.001212055311121474,0.0020679577411581067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007189628995348978,0.00026213538252792235,0.0007189628995348978,0.0003280896586105677,0.00014443844584957936,0.0002464347950747507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003280896586105677,0.00014443844584957936,0.0002464347950747507,0.0,0.0 +95874,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,90522.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00804256464792343,0.0,0.0,0.00804256464792343,0.0055419973270116355,0.0018747800516957938,0.000625756895616563,0.0,0.0,0.0055419973270116355,0.0018747800516957938,0.000625756895616563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009584167015920209,0.0002762646035360166,0.0009584167015920209,0.0006604289839010141,0.00022341387256622622,7.457022556233217e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006604289839010141,0.00022341387256622622,7.457022556233217e-05,0.0,0.0 +95875,50.0,the Greater Atlanta and Macon Area,G1300670030322,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,98697.0,,1554.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.012210403299058729,0.0005775065078991219,0.0,0.012787909806957851,0.00694360129468592,0.0016449093375486864,0.003987832780927673,0.0,0.000211566393795572,0.00694360129468592,0.0016449093375486864,0.0034103262730285507,0.0,0.000211566393795572,0.0,0.0005775065078991219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.85851114415943e-05,0.0,0.0,0.001455090622952689,0.00047551737153283066,0.0014936757343942833,0.0008274558084578987,0.00019602072872227912,0.000406402119533232,0.0,2.521196623927926e-05,0.0,3.85851114415943e-05,0.0,0.0,0.0,0.0,0.0008110386231796851,0.0001921315680095136,0.0004657937964539612,0.0,2.471174675112351e-05 +95876,50.0,the Greater Atlanta and Macon Area,G1300630040204,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,65428.0,,4513.0,,9.325022323477118,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.02838271629202958,0.0038259734338828835,0.0,0.03220860134175442,0.016355841984701608,0.004544271486395502,0.010542197220320846,0.0,0.0007662022661784032,0.013296159201155181,0.004544271486395502,0.010542197220320846,0.0,0.0,0.003059682783546425,0.0,0.0007662022661784032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025562756240938195,0.0,0.0,0.0033823090952810977,0.0013174901649657853,0.00363793665769048,0.0015844755567317411,0.0005415313538605285,0.0012562916521330794,0.0,0.0,0.00020442882451228938,0.0,5.119283262167188e-05,0.0,0.0,0.0,0.0018473797260610233,0.0005132719563772063,0.0011907330378450654,0.0,8.654195448476126e-05 +95877,50.0,the Greater Atlanta and Macon Area,G1300670030329,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,81686.0,,4864.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007901297036938445,0.001417080281768311,0.0,0.009318377318706756,0.006398654325553988,0.0021830720859889745,0.000736650907163795,0.0,0.0,0.004981574043785676,0.0021830720859889745,0.000736650907163795,0.0,0.0,0.001417080281768311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.46816873640907e-05,0.0,0.0,0.00094158219851331,0.00030202475591078353,0.0010362638858774007,0.0005936444887815574,0.0002601524540374712,8.778525569428152e-05,0.0,0.0,9.46816873640907e-05,0.0,0.0,0.0,0.0,0.0,0.0007115717864819248,0.0002427717493727095,8.192035002276658e-05,0.0,0.0 +95878,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock 90.1-2004,gen5_led,1001_5000,NaturalGas,2704.0,,435.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,9713.774621698478,0.0,0.0,0.0002246786077054821,0.00012803703747401598,0.0,0.0003527156451794981,0.0001291111736944356,0.00013119806692267938,9.240640456238307e-05,0.0,0.0,1.0741362204195974e-06,0.00013119806692267938,9.240640456238307e-05,0.0,0.0,0.00012803703747401598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.554564556035909e-06,0.0,0.0,2.677324662901195e-05,1.9800510379336904e-05,3.532781118504786e-05,1.2799667149507146e-07,1.5633879161183728e-05,1.1011370796333149e-05,0.0,0.0,8.554564556035909e-06,0.0,0.0,0.0,0.0,0.0,1.2931706400025783e-05,1.3140728514406993e-05,9.255376270615077e-06,0.0,0.0 +95879,50.0,the Greater Atlanta and Macon Area,G1300790070201,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,13044.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011502785843070993,0.0,0.0,0.0011502785843070993,0.0007338869096149594,0.0003078668039010525,0.00010849449719164951,0.0,0.0,0.0007338869096149594,0.0003078668039010525,0.00010849449719164951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001370747044432445,3.668072424470027e-05,0.0001370747044432445,8.745475452873369e-05,3.668741792497495e-05,1.2928912473165995e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.745475452873369e-05,3.668741792497495e-05,1.2928912473165995e-05,0.0,0.0 +95880,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,140323.0,,17271.0,,7.614023970037612,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,571051.7977528209,0.0,0.0,0.026451162341176268,0.01195446731568438,0.0,0.03840555748983792,0.02960897475489436,0.004443107088588833,0.0026522102524522586,0.000755588728012167,0.000945893166958498,0.018190780585137234,0.004443107088588833,0.002539846198057326,0.000755588728012167,0.0005219840754261704,0.01141819416975712,0.00011236405439493255,0.0004239090915323275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007987260193957952,0.0,0.0,0.003152130993981183,0.0015365830784514912,0.003950857013376978,0.00216775817060644,0.0005294759974202159,0.00030266828419781824,9.004196554955839e-05,6.220377620056884e-05,0.0007628954546500654,7.507494187740737e-06,2.8323070557989142e-05,0.0,0.0,0.0,0.0030459348389937912,0.0004570713706416305,0.0002728382078459331,7.772893352961605e-05,9.730593426673139e-05 +95881,35.0,Eastern Counties in South Carolina and Georgia,G1301030030202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,69605.0,,1093.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.0057011467827116505,0.00032159638439362744,0.0,0.006022743167105279,0.002179698597688042,0.0016136594991332126,0.002229415759890321,0.0,0.0,0.001858102213294415,0.0016136594991332126,0.002229415759890321,0.0,0.0,0.00032159638439362744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.148673885166599e-05,0.0,0.0,0.0006793964802888904,0.00020074834758149548,0.0007008832191405564,0.00022142704824884197,0.00019229720368195744,0.0002656758855890474,0.0,0.0,2.148673885166599e-05,0.0,0.0,0.0,0.0,0.0,0.00025365753237623437,0.00018778600265181356,0.00025944325554656415,0.0,0.0 +95882,50.0,the Greater Atlanta and Macon Area,G1301130140304,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,32823.0,,1164.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007622035794593355,0.0009235898924468457,0.0,0.00854554297996646,0.004677994797768967,0.0014284338705515785,0.0021725494129841275,0.0,0.0002665648986617878,0.004020969803983908,0.0014284338705515785,0.0021725494129841275,0.0,0.0,0.000657024993785058,0.0,0.0002665648986617878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.17082439248965e-05,0.0,0.0,0.0009082987423619448,0.00036318927152619837,0.0009700069862868413,0.00047916880928644225,0.00017022285425234273,0.00025889722283020894,0.0,0.0,4.3898118540286364e-05,0.0,1.781012538461014e-05,0.0,0.0,0.0,0.0005310005047411519,0.0001621419302590908,0.0002466066946931734,0.0,3.025785659342537e-05 +95883,50.0,the Greater Atlanta and Macon Area,G1302230120501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,16707.0,,3190.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.003921990561172801,0.0024742591011138798,0.0,0.006396249662286682,0.002647382037663598,0.0008069097542408385,0.001886886372904095,0.00041077277798812103,0.000644298719490029,0.0016012052263229865,0.0008069097542408385,0.0011031028026208553,0.00041077277798812103,0.0,0.0010461768113406119,0.0007837835702832394,0.000644298719490029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001653178994214707,0.0,0.0,0.000467374333749767,0.00029109626216727684,0.0006326922331712378,0.00019081183755464376,9.615752585384256e-05,0.00013145415048583224,4.895081985544846e-05,0.0,6.990042101751654e-05,5.236858717906847e-05,4.3048891224885746e-05,0.0,0.0,0.0,0.0002618687734068206,7.981638637222551e-05,0.0001866434889263335,4.063205158541994e-05,6.37315328804382e-05 +95884,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,135756.0,,4373.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012095694530113598,0.0012872141569445477,0.0,0.013382908687058144,0.0064426383604704466,0.0026966957053791434,0.004243574621208555,0.0,0.0,0.0051554242035259,0.0026966957053791434,0.004243574621208555,0.0,0.0,0.0012872141569445477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.600426224144901e-05,0.0,0.0,0.001441420328090717,0.0005074380586089827,0.0015274245903321658,0.0006143618482090864,0.0003213599681052731,0.0005056985117763577,0.0,0.0,8.600426224144901e-05,0.0,0.0,0.0,0.0,0.0,0.0007353143093560969,0.00030778057516169866,0.0004843297058143704,0.0,0.0 +95885,50.0,the Greater Atlanta and Macon Area,G1301210007200,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,67403.0,,5609.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.01038324518830808,0.0016511621980290052,0.0,0.012034376696730787,0.0031702670201589956,0.004620565744969535,0.004243574621208555,0.0,0.0,0.00151910482212999,0.004620565744969535,0.004243574621208555,0.0,0.0,0.0016511621980290052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011032015800401932,0.0,0.0,0.0012373501633411372,0.00047467851496593163,0.0013476703213451565,0.00018102862503058527,0.0005506234010253713,0.0005056981372851806,0.0,0.0,0.00011032015800401933,0.0,0.0,0.0,0.0,0.0,0.0003550225226843921,0.0005174343033495967,0.0004752169320883789,0.0,0.0 +95886,50.0,the Greater Atlanta and Macon Area,G1300890021908,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,59231.0,,6528.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004937350083004309,0.0019018429287948307,0.0,0.00683919301179914,0.00449705438555466,0.0019200974620569192,0.0004220411641875616,0.0,0.0,0.002595211456759829,0.0019200974620569192,0.0004220411641875616,0.0,0.0,0.0019018429287948307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012707049189742315,0.0,0.0,0.0005883744374128294,0.0002691056248176745,0.0007154449293102525,0.0003092663179981076,0.0002288142920844115,5.0293827330310334e-05,0.0,0.0,0.00012707049189742315,0.0,0.0,0.0,0.0,0.0,0.000470434852683173,0.00020086053875656472,4.414953787051485e-05,0.0,0.0 +95887,50.0,the Greater Atlanta and Macon Area,G1300210013605,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,24374.0,,1323.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0021716886104443424,0.00038945110391784825,0.0,0.0025611704039684886,0.0007778587612215747,0.0007358446902000197,0.001047436262940596,0.0,0.0,0.0003884076573037264,0.0007358446902000197,0.001047436262940596,0.0,0.0,0.00038945110391784825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6021827946963078e-05,0.0,0.0,0.0002587962236153825,0.0001023145123218173,0.00028481805156234554,4.628584155669319e-05,8.768928753198742e-05,0.00012482109452670184,0.0,0.0,2.6021827946963078e-05,0.0,0.0,0.0,0.0,0.0,8.650272407433087e-05,8.183049850588777e-05,0.00011648141610735078,0.0,0.0 +95888,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,126630.0,,3167.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005884157314111504,0.0005385597281341039,0.0,0.006422717042245608,0.002786078072101417,0.001583906376737577,0.0010925626010650736,0.0,0.0009601877227029596,0.002786078072101417,0.001583906376737577,0.00055400287293097,0.0,0.0009601877227029596,0.0,0.0005385597281341039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5983032336918866e-05,0.0,0.0,0.0007012040791753569,0.00018824379687527968,0.0007371871115122757,0.0003320117401302889,0.00018875117593078038,6.60194916003399e-05,0.0,0.00011442378440812926,0.0,3.5983032336918866e-05,0.0,0.0,0.0,0.0,0.0003197806836126836,0.00018179772814104893,0.00012540223440139225,0.0,0.00011020850041394002 +95889,50.0,the Greater Atlanta and Macon Area,G1301210009101,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,62329.0,,4494.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012978087355129899,0.0030915610705989295,0.0,0.01606964842572883,0.0064005053733461785,0.0006301316653431587,0.0052191340107770315,0.00037287212931016187,0.0034470052469522984,0.0064005053733461785,0.0006301316653431587,0.002127572940178102,0.00037287212931016187,0.0034470052469522984,0.0,0.0030915610705989295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000206560476885831,0.0,0.0,0.001546569642335278,0.0006424778709899695,0.001753130119221109,0.0007627339094853817,7.509138115861818e-05,0.0002535381085898484,4.44343376557769e-05,0.00041077190544565296,0.0,0.000206560476885831,0.0,0.0,0.0,0.0,0.0006982678432643318,6.874467768811468e-05,0.0005693852651993845,4.0678759310324177e-05,0.00037605357375895376 +95890,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,13657.0,,1192.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,14029.891188970922,0.0,0.0,0.0007030265606665137,0.00020269349175404362,0.0,0.0009057023220591372,0.0005591801384656253,0.0002402463972417155,7.978662639023762e-05,0.0,2.6524620684398994e-05,0.00035648664671158163,0.0002402463972417155,7.978662639023762e-05,0.0,2.6524620684398994e-05,0.00020269349175404362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3542438716601291e-05,0.0,0.0,8.377735302273785e-05,3.225172777031337e-05,9.731979173933916e-05,4.248133615483007e-05,2.8629369586091094e-05,9.50790871862804e-06,0.0,3.160851431792788e-06,1.3542438716601291e-05,0.0,0.0,0.0,0.0,0.0,6.008518836136563e-05,2.5815026390275357e-05,8.573255996770415e-06,0.0,2.8501313269263423e-06 +95891,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960900,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,13634.0,,170.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003216808926016623,0.00013472982312133175,0.0,0.003351538749137955,0.0018931649178927472,0.0004329715310252744,0.0009522065399606464,0.0,7.311305318554775e-05,0.0018315481479569628,0.0004329715310252744,0.0009522065399606464,0.0,0.0,6.161676993578402e-05,0.0,7.311305318554775e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.001465718331645e-06,0.0,0.0,0.00038334102588986977,0.00013558112948739424,0.00039234249160820136,0.00021826212316375702,5.159639714437878e-05,0.00011347264953643417,0.0,0.0,4.116692424896917e-06,0.0,4.88477329343473e-06,0.0,0.0,0.0,0.0002216203053305957,5.068511570142719e-05,0.00011146852666103749,0.0,8.558861944615402e-06 +95892,35.0,Eastern Counties in South Carolina and Georgia,G1300510010802,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,58408.0,,5732.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011308733309770535,0.003942948846525248,0.0,0.015251682156295783,0.004873013430655693,0.001152468214249854,0.005850341475685424,0.0003799006864696917,0.002995886629264105,0.004873013430655693,0.001152468214249854,0.0019073926291601762,0.0003799006864696917,0.002995886629264105,0.0,0.003942948846525248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026344705447248743,0.0,0.0,0.001347638905111329,0.0005785411278941189,0.0016110859595838164,0.0005807071671420369,0.0001373373091295223,0.0002273001267222382,4.527199741484097e-05,0.0003570137579786175,0.0,0.00026344705447248743,0.0,0.0,0.0,0.0,0.0005147526311221993,0.00012173905408054486,0.0006179910460799182,4.013017421523717e-05,0.00031646547806662024 +95893,50.0,the Greater Atlanta and Macon Area,G1300770170200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5112.0,,216.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012605385108607845,0.00017128634971410564,0.0,0.0014318248605748904,0.0005729118997921826,0.0002191737454091647,0.0006090548910162598,0.0,3.060161728354374e-05,0.0004323098744353599,0.0002191737454091647,0.0006090548910162598,0.0,0.0,0.0001406020253568226,0.0,3.060161728354374e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1442598304199033e-05,0.0,0.0,0.00015021766141669319,5.562485180675546e-05,0.00016166025972089225,5.1518123235027574e-05,2.61188112823461e-05,7.258072689931949e-05,0.0,0.0,9.392765387319342e-06,0.0,2.0443077607695034e-06,0.0,0.0,0.0,6.468464759049332e-05,2.4745823027978537e-05,6.876537387850336e-05,0.0,3.4550771774913417e-06 +95894,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,23207.0,,11424.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005820035722140353,0.008860401165516995,0.0,0.01468043688765735,0.003474587848454637,0.000770845844992275,0.009462813999377529,0.00041780766611508287,0.0005543815287178262,0.0026854674664888753,0.000770845844992275,0.00194591474454412,0.00041780766611508287,0.0,0.0007891203819657621,0.0075168992548334075,0.0005543815287178262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005919999932581528,0.0,0.0,0.0006935619823698453,0.0007707955075426709,0.001285561975627998,0.0003200217710971009,9.18601530778556e-05,0.00023189075672071696,4.978930147417182e-05,0.0,5.272439160223327e-05,0.0005022350822558876,3.704051940003191e-05,0.0,0.0,0.0,0.00030426873894385674,6.7502766775699e-05,0.0008286561192376957,3.658730682157104e-05,4.8547043849175736e-05 +95895,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,29467.0,,3016.0,,8.72605822017302,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.006679505982260207,0.002392219400835727,0.0,0.009071808090169673,0.0054828173323261675,0.001048891109161897,0.0022697302246278135,0.0,0.0002703694240537959,0.003360967355544236,0.001048891109161897,0.0022697302246278135,0.0,0.0,0.0021218499767819317,0.0,0.0002703694240537959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001598351864241062,0.0,0.0,0.000795987181706258,0.0003822718480365803,0.000955822368130364,0.0004005216763412687,0.0001249948544272454,0.0002704805070215183,0.0,0.0,0.00014177056104655114,0.0,1.8064625377555082e-05,0.0,0.0,0.0,0.0005776797077849324,0.0001105130944024696,0.00023914294667142189,0.0,2.8486619271540214e-05 +95896,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,7130.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013720276462613709,0.0,0.0,0.0013720276462613709,0.000660746812103327,0.00046812203736448,0.00018741422909327062,0.0,5.56618606265539e-05,0.000660746812103327,0.00046812203736448,0.00018741422909327062,0.0,5.56618606265539e-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.0001634978302516702,5.09417013919683e-05,0.0001634978302516702,7.873796888785298e-05,5.5783815734791324e-05,2.2333237889582535e-05,0.0,6.6329519416103464e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.873796888785298e-05,5.5783815734791324e-05,2.2333237889582535e-05,0.0,6.6329519416103464e-06 +95897,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,6539.0,,461.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0015701937949407514,0.0003653998517802601,0.0,0.0019355936467210118,0.0011321771324173794,0.00037127205401575104,0.00035795621514372254,0.0,7.410553807041946e-05,0.0007667772806371192,0.00037127205401575104,0.00035795621514372254,0.0,7.410553807041946e-05,0.0003653998517802601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4412965982427483e-05,0.0,0.0,0.00018711845676698497,7.242057886587555e-05,0.00021153142274941245,9.137609758686952e-05,4.424412707016042e-05,4.265729159270535e-05,0.0,8.831084396271719e-06,2.4412965982427483e-05,0.0,0.0,0.0,0.0,0.0,0.00012373001948539535,4.057448005478411e-05,3.911925811474841e-05,0.0,8.098626448894313e-06 +95898,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,33669.0,,3484.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029266222357615325,0.0010256773320755246,0.0,0.003952299567837057,0.0016083808868500072,0.0009735970701883231,0.0013703523004050247,0.0,0.0,0.0005827035547744827,0.0009735970701883231,0.0013703523004050247,0.0,0.0,0.0010256773320755246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.85293033814961e-05,0.0,0.0,0.00034876169493761267,0.00017264465121565644,0.00041729099831910876,6.944001071475485e-05,0.00011602227312976685,0.00016330306833281898,0.0,0.0,6.85293033814961e-05,0.0,0.0,0.0,0.0,0.0,0.0001698157881079634,0.00010279415474616531,0.0001446842957295982,0.0,0.0 +95899,50.0,the Greater Atlanta and Macon Area,G1301170130602,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,19788.0,,1686.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0018263691603825905,0.0004963123130464493,0.0,0.00232268147342904,0.0007798228960246275,0.0008845358327123896,0.0006583227446920225,0.0,0.0,0.0002835105829781783,0.0008845358327123896,0.0006583227446920225,0.0,0.0,0.0004963123130464493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.316125141512508e-05,0.0,0.0,0.0002176454976325741,0.0001031452668833442,0.0002508067490476992,3.378550364016265e-05,0.00010540872330772547,7.845127068468598e-05,0.0,0.0,3.316125141512508e-05,0.0,0.0,0.0,0.0,0.0,8.420648617657908e-05,9.55135515380308e-05,7.108671133308928e-05,0.0,0.0 +95900,35.0,Eastern Counties in South Carolina and Georgia,G1300290920102,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,3710.0,,36.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.000890755184172341,2.8616647513800365e-05,0.0,0.000919289124612402,0.000503355250777425,0.00023389560453476136,0.0001534216217864153,0.0,2.8616647513800365e-05,0.000503355250777425,0.00023389560453476136,0.0001534216217864153,0.0,0.0,0.0,0.0,2.8616647513800365e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.910274630376265e-06,0.0,0.0,0.00010614574989810258,3.264450494364243e-05,0.00010805602452847884,5.9981711595158057e-05,2.78718830744507e-05,1.8282299541409497e-05,0.0,0.0,0.0,0.0,1.910274630376265e-06,0.0,0.0,0.0,5.9165898810645276e-05,2.7492796884079005e-05,1.803364152049737e-05,0.0,3.3636873132571907e-06 +95901,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,20421.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0017174517476320431,0.0,0.0,0.0017174517476320431,0.0006555606801252292,0.0004789113062756519,0.000582979761231162,0.0,0.0,0.0006555606801252292,0.0004789113062756519,0.000582979761231162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002046652536684695,7.189037401965068e-05,0.0002046652536684695,7.812184131396621e-05,5.7070892453744804e-05,6.94725199007585e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.812184131396621e-05,5.7070892453744804e-05,6.94725199007585e-05,0.0,0.0 +95902,50.0,the Greater Atlanta and Macon Area,G1301130140405,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,32478.0,,4152.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0065352671988845095,0.0028558892458416317,0.0,0.009391084724755127,0.003518581778025879,0.0008016858360125003,0.002879341676363737,0.0003727286893681307,0.001818818464955896,0.003518581778025879,0.0008016858360125003,0.0016175722262860917,0.0003727286893681307,0.00022477038916292506,0.0,0.0012617694500776451,0.0015940480757929711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001908121366988588,0.0,0.0,0.0007787917391995599,0.00045228376421196833,0.0009696038758984187,0.0004193007476254957,9.553493185808786e-05,0.0001927621088859647,4.441716236057279e-05,2.6785335162215725e-05,0.0,8.430331293176853e-05,0.00010650403190027212,0.0,0.0,0.0,0.00036328396874604925,8.277187530866974e-05,0.000297284172304273,3.848322025220582e-05,0.0001877880441785529 +95903,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,24477.0,,3973.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005610040268511386,0.003081604442741592,0.0,0.008691644711252982,0.00327510429662458,0.0007102002576908792,0.0037960903219351025,0.0004262980483372782,0.00048395178666513856,0.00327510429662458,0.0007102002576908792,0.0007144858791935112,0.0004262980483372782,0.00048395178666513856,0.0,0.003081604442741592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020589227201390484,0.0,0.0,0.0006685402477479594,0.0003878876892391375,0.0008744325197618643,0.0003902893621201748,8.463352017138223e-05,8.514423138270905e-05,5.080131143612969e-05,5.7671822637563786e-05,0.0,0.00020589227201390484,0.0,0.0,0.0,0.0,0.0003294954864954998,7.145048164061858e-05,0.00038190986122059423,4.288818617890711e-05,4.868850422624414e-05 +95904,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,297471.0,,122.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,1133273.7058648225,0.0,0.0,0.026504311238853568,3.5814770549419145e-05,0.0,0.026540126009402986,0.006463077638264717,0.007789390353632539,0.012287658017505728,0.0,0.0,0.006427262867715299,0.007789390353632539,0.012287658017505728,0.0,0.0,3.5814770549419145e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3934078917854784e-06,0.0,0.0,0.0031584686079733607,0.0011111357589571591,0.003160862015865146,0.0007659247516348473,0.0009282469061536369,0.0014642969501848762,0.0,0.0,2.3934078917854784e-06,0.0,0.0,0.0,0.0,0.0,0.0007697362327948459,0.0009276967293531444,0.0014634290537171553,0.0,0.0 +95905,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6825.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001350523807089151,0.0,0.0,0.0013505238070891507,0.0006579347715961906,0.0002441512816784355,0.0004035278127740809,0.0,4.499264811418324e-05,0.0006579347715961906,0.0002441512816784355,0.0004035278127740809,0.0,4.499264811418324e-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.00016094109192891983,4.978869817903585e-05,0.00016094109192891983,7.840568230109359e-05,2.909535815874648e-05,4.808816140126155e-05,0.0,5.3617462189559915e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.84056823010936e-05,2.9095358158746484e-05,4.8088161401261555e-05,0.0,5.361746218955992e-06 +95906,50.0,the Greater Atlanta and Macon Area,G1301390000101,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,16250.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,56663.68529324113,0.0,0.0,0.0014266370383550118,0.0,0.0,0.0014266370383550116,0.0006763068539824763,0.0003117757103783626,0.00043858516360047054,0.0,0.0,0.0006763068539824763,0.0003117757103783626,0.00043858516360047054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017000862915950634,6.171933598793308e-05,0.00017000862915950634,8.059373060250487e-05,3.715350134731801e-05,5.226505441032795e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.059373060250488e-05,3.715350134731801e-05,5.2265054410327964e-05,0.0,0.0 +95907,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Propane,92741.0,,,3428.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007716777420354104,0.0,0.0003230536036199284,0.008039831023974032,0.005095900272069375,0.0023314167456429543,0.0006125443798611412,0.0,0.0,0.004772846668449447,0.0023314167456429543,0.0006125443798611412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003230536036199284,0.0,0.0,0.0,0.0,2.605401117241173e-05,0.0009195942600722219,0.0002761603353628864,0.0009456482712446336,0.0005687714134314806,0.00027783067209824215,7.29957941088258e-05,0.0,0.0,0.0,0.0,0.0,2.605401117241173e-05,0.0,0.0,0.0005993819109316927,0.0002742222079660428,7.204772490230577e-05,0.0,0.0 +95908,50.0,the Greater Atlanta and Macon Area,G1301210008904,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,3321.0,,784.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00029590918392245026,0.00023084721857132034,0.0,0.0005267564024937706,0.0003071415798274095,0.00012398600944271926,9.562881322364188e-05,0.0,0.0,7.629436125608913e-05,0.00012398600944271926,9.562881322364188e-05,0.0,0.0,0.00023084721857132034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5424602266971778e-05,0.0,0.0,3.526250634493563e-05,2.8407224284942158e-05,5.068710861190741e-05,9.091743494452392e-06,1.4774997472883214e-05,1.1395765377600023e-05,0.0,0.0,1.5424602266971778e-05,0.0,0.0,0.0,0.0,0.0,2.9554683231645846e-05,1.1930547587514912e-05,9.20187779274665e-06,0.0,0.0 +95909,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001000,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,130966.0,,18131.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,1459415.2837631335,0.0,0.0,0.05046284841077818,0.016036949126266117,0.0,0.0664997975370443,0.049642114861096924,0.008445256008967311,0.0021902519706156654,0.0006405410377624694,0.005581541441349153,0.037494336153286664,0.008445256008967311,0.0021902519706156654,0.0006405410377624694,0.0016923710228932964,0.012147778707810263,0.0,0.0038891704184558567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010714937540511448,0.0,0.0,0.006013559544312204,0.0026574340867659947,0.007085053298363349,0.00446812714963765,0.001006404740839761,0.00026100806944403984,7.63320302453918e-05,0.00020167656479461995,0.0008116424706801301,0.0,0.00025985128337101493,0.0,0.0,0.0,0.005288993991875237,0.0008997785129875783,0.00023335487510338474,6.824483021633237e-05,0.0005946712631260773 +95910,50.0,the Greater Atlanta and Macon Area,G1300890023309,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,67918.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.004864180081958765,0.0,0.0,0.004864180081958765,0.0028974287711654597,0.001378445063283491,0.0005883366211092527,0.0,0.0,0.0028974287711654597,0.001378445063283491,0.0005883366211092527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000579655937137202,0.000147871324694415,0.000579655937137202,0.00034528158113790073,0.0001642669168259867,7.011105874268696e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034528158113790073,0.0001642669168259867,7.011105874268696e-05,0.0,0.0 +95911,50.0,the Greater Atlanta and Macon Area,G1300770170200,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,33122.0,,1252.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029511125415870995,0.0003686128612417081,0.0,0.0033197254028288076,0.0014785945418170224,0.0007936945980711894,0.001047436262940596,0.0,0.0,0.0011099816805753143,0.0007936945980711894,0.001047436262940596,0.0,0.0,0.0003686128612417081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4628622680035526e-05,0.0,0.0,0.00035167921667329165,0.0001311833885451431,0.00037630783935332717,0.00013227468706987952,9.458327684697036e-05,0.0001248212527564418,0.0,0.0,2.4628622680035526e-05,0.0,0.0,0.0,0.0,0.0,0.0001676062474434363,8.996933874472593e-05,0.00011873225316516495,0.0,0.0 +95912,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,37910.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0031554524983891615,0.0,0.0,0.0031554524983891615,0.002103766617857005,0.0008356688413308659,0.0002159866656018532,0.0,0.0,0.002103766617857005,0.0008356688413308659,0.0002159866656018532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003760309467040996,0.00010498424872492894,0.0003760309467040996,0.00025070298265022004,9.958550974770802e-05,2.5738834725982325e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025070298265022004,9.958550974770802e-05,2.5738834725982325e-05,0.0,0.0 +95913,81.0,the Columbus-Albany Area,G1300950000400,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12175.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00360520134429641,0.0,0.0,0.00360520134429641,0.0019394808791867591,0.0006040924665919014,0.0009570862573112655,0.0,0.00010454174120648458,0.0019394808791867591,0.0006040924665919014,0.0009570862573112655,0.0,0.00010454174120648458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042962521133675695,0.00013923067042409144,0.00042962521133675695,0.0002311243681084412,7.198858783215584e-05,0.00011405420843287342,0.0,1.2458046963286553e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002311243681084412,7.198858783215584e-05,0.00011405420843287342,0.0,1.2458046963286553e-05 +95914,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7704.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001512795085765672,0.0,0.0,0.001512795085765672,0.0006523106905819177,0.0005122876147412702,0.0002893920510138367,0.0,5.888743650238689e-05,0.0006523106905819177,0.0005122876147412702,0.0002893920510138367,0.0,5.888743650238689e-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.00018027606963458227,6.001057351335693e-05,0.00018027606963458227,7.773426063134605e-05,6.104805507170755e-05,3.448613895639404e-05,0.0,7.017470973693214e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.773426063134605e-05,6.104805507170755e-05,3.448613895639404e-05,0.0,7.017470973693214e-06 +95915,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,79925.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.007989441222506801,0.0,0.0,0.0079894412225068,0.004737400677905589,0.00272678988952417,0.0005252810286764801,0.0,0.0,0.004737400677905589,0.00272678988952417,0.0005252810286764801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009520876001796146,0.000346242657858725,0.0009520876001796146,0.0005645476719711323,0.00032494673529828244,6.259681247840151e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005645476719711324,0.0003249467352982825,6.259681247840153e-05,0.0,0.0 +95916,35.0,Eastern Counties in South Carolina and Georgia,G1300510011200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,20030.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0046928820710420436,0.0,0.0,0.0046928820710420436,0.003639028537455787,0.0005318064841437467,0.0004464527840447814,0.0,7.5594265397727e-05,0.003639028537455787,0.0005318064841437467,0.0004464527840447814,0.0,7.5594265397727e-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.0005592450738115533,0.00016301098542045102,0.0005592450738115533,0.00043365862432164615,6.337473475279404e-05,5.320323766649802e-05,0.0,9.008477070614895e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00043365862432164615,6.337473475279404e-05,5.320323766649802e-05,0.0,9.008477070614895e-06 +95917,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,85561.0,,10772.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008438721043679334,0.0031709421914975443,0.0,0.011609663235176879,0.004553232748752375,0.002866685434662119,0.004189745051762384,0.0,0.0,0.0013822905572548308,0.002866685434662119,0.004189745051762384,0.0,0.0,0.0031709421914975443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021186441432354217,0.0,0.0,0.0010056266821156937,0.0004938808412666257,0.0012174910964392357,0.00016472499323261791,0.000341617568279248,0.0004992841206038277,0.0,0.0,0.00021186441432354217,0.0,0.0,0.0,0.0,0.0,0.00047749191508198867,0.00030062577374493466,0.00043937340761231235,0.0,0.0 +95918,50.0,the Greater Atlanta and Macon Area,G1301350050607,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,32152.0,,14606.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006694628974481199,0.01004775277937406,0.0,0.01674238175385526,0.004573654271636533,0.0006011567970528518,0.009390797844871063,0.0003714377298898497,0.0018053351104049611,0.0029096075041323255,0.0006011567970528518,0.0010070918330012104,0.0003714377298898497,0.0018053351104049611,0.0016640467675042075,0.008383706011869852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006713322255178547,0.0,0.0,0.0007977890289143353,0.0009015148210124074,0.00146912125443219,0.00034673362095073777,7.163896597917335e-05,0.000120013643555184,4.4263684658331995e-05,0.00021513911377090807,0.00011118189751718642,0.0005601503280006682,0.0,0.0,0.0,0.0,0.00040133194904234986,5.275069227192574e-05,0.0008240297535205368,3.259315620094291e-05,0.00015841570339643457 +95919,50.0,the Greater Atlanta and Macon Area,G1300890021415,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,161418.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,431997.0345818221,0.0,0.0,0.026128472629682035,0.0,0.0,0.026128472629682032,0.017403222316478208,0.0023544161593734756,0.006215296157307256,0.0,0.00015559259041446937,0.017403222316478208,0.0023544161593734756,0.006215296157307256,0.0,0.00015559259041446937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00311368159842908,0.0010853109340388093,0.00311368159842908,0.0020739097094650163,0.00028057140478074974,0.0007406653097590603,0.0,1.8541680276982258e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0020739097094650163,0.0002805714047807498,0.0007406653097590604,0.0,1.8541680276982258e-05 +95920,81.0,the Columbus-Albany Area,G1300950000200,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,92598.0,,2789.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,140298.9118897092,0.0,0.0,0.006029351243780317,0.00047434035907067257,0.0,0.006503691602850989,0.0030229557006733227,0.002415637630952254,0.0008784330261950961,0.0,0.00018668297539173594,0.002735298316994386,0.002415637630952254,0.0008784330261950961,0.0,0.0,0.00028765738367893663,0.0,0.00018668297539173594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.169270812151022e-05,0.0,0.0,0.0007185066303007858,0.0002223346815736675,0.000750199338422296,0.00032596043871857983,0.0002878670663006603,0.00010468123817590567,0.0,0.0,1.921962010104967e-05,0.0,1.2473088020460552e-05,0.0,0.0,0.0,0.0003486972484566923,0.0002786432480614509,0.00010132704859667303,0.0,2.1533838500612997e-05 +95921,50.0,the Greater Atlanta and Macon Area,G1301530020109,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,73270.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.006461072072398568,0.0,0.0,0.006461072072398568,0.0033660934104899703,0.002687273836655655,0.000407674451653505,0.0,0.0,0.0033660934104899703,0.002687273836655655,0.000407674451653505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007699526341126545,0.0002012761619587564,0.0007699526341126545,0.0004011304097887679,0.00032023688111359057,4.858172365109086e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004011304097887679,0.00032023688111359057,4.858172365109086e-05,0.0,0.0 +95922,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,34721.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008050623850710446,0.0,0.0,0.008050623850710446,0.004042804471451085,0.002200587110981753,0.0016050134729849997,0.0,0.00020213608821886733,0.004042804471451085,0.002200587110981753,0.0016050134729849997,0.0,0.00020213608821886733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009593783473588608,0.0002856224058477033,0.0009593783473588608,0.00048177372889847295,0.0002622400033714874,0.00019126656539358375,0.0,2.4088193642271394e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00048177372889847295,0.0002622400033714874,0.00019126656539358375,0.0,2.4088193642271394e-05 +95923,50.0,the Greater Atlanta and Macon Area,G1300670030238,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,29905.0,,15215.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0070203331860095785,0.011800094933973321,0.0,0.0188204281199829,0.005924993018563302,0.000638315021542958,0.010959547093975975,0.0004139263485277935,0.0008838083589390081,0.004716447754821086,0.000638315021542958,0.0012517249219008097,0.0004139263485277935,0.0,0.0012085452637422157,0.009707822172075165,0.0008838083589390081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007884144860320442,0.0,0.0,0.0008365993473622083,0.001037521755211448,0.0016250138333942525,0.0005620498356708464,7.606675015062512e-05,0.00014916560581855546,4.9326791743229024e-05,0.0,8.07480446802594e-05,0.0006486208518756337,5.905099212867891e-05,0.0,0.0,0.0,0.0005115821785003306,5.511408844994965e-05,0.0009462811112430168,3.5739678081491284e-05,7.63107406584684e-05 +95924,50.0,the Greater Atlanta and Macon Area,G1301210011417,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,3877.0,,169.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.000893980760048174,0.00013439899482637453,0.0,0.0010283797548745486,0.00038673827680500147,0.00022008352322029704,0.00037722696332498113,0.0,4.441369859800809e-05,0.00025233928197862694,0.00022008352322029704,0.00037722696332498113,0.0,4.441369859800809e-05,0.00013439899482637453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.978325829280651e-06,0.0,0.0,0.00010653520756079996,3.927673576685914e-05,0.00011551353339008062,3.007113685521331e-05,2.6227235388961854e-05,4.4953934839930484e-05,0.0,5.292756634300082e-06,8.978325829280651e-06,0.0,0.0,0.0,0.0,0.0,4.3440669304489053e-05,2.4721048122165394e-05,4.237230382758224e-05,0.0,4.9888022704257115e-06 +95925,50.0,the Greater Atlanta and Macon Area,G1300670030312,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,70979.0,,9774.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.006701205749553434,0.0028473123320931688,0.0,0.009548518081646603,0.007187122593358589,0.0019030578727723402,0.00045836798911511273,0.0,0.0,0.004339810261265419,0.0019030578727723402,0.00045836798911511273,0.0,0.0,0.0028473123320931688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019023987418871513,0.0,0.0,0.0007985704352222811,0.0004337835944257269,0.0009888103094109963,0.0005171672529756002,0.00022678392673053954,5.46228750824447e-05,0.0,0.0,0.00019023987418871513,0.0,0.0,0.0,0.0,0.0,0.00074427265619087,0.00019707385249864319,4.7466946102578004e-05,0.0,0.0 +95926,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,75980.0,,5037.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006700051552774798,0.0014674093360366658,0.0,0.008167460888811465,0.005594968884431074,0.0020747294567945137,0.0004977625475858769,0.0,0.0,0.004127559548394409,0.0020747294567945137,0.0004977625475858769,0.0,0.0,0.0014674093360366658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.804294260661301e-05,0.0,0.0,0.0007984335797484558,0.00028509220777994383,0.000896476522355069,0.0004918741475182555,0.00024724192853590305,5.93175036942975e-05,0.0,0.0,9.804294260661301e-05,0.0,0.0,0.0,0.0,0.0,0.0006141147556727983,0.00022772637341951542,5.46353932627552e-05,0.0,0.0 +95927,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,86179.0,,10145.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.007678416737260045,0.002986129382372778,0.0,0.010664546119632825,0.003007489348355979,0.002982937663317817,0.004674119107959026,0.0,0.0,2.1359965983201137e-05,0.002982937663317817,0.004674119107959026,0.0,0.0,0.002986129382372778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019951554864414367,0.0,0.0,0.0009150220435817461,0.0004561149086074015,0.0011145375922258897,2.5454257555392383e-06,0.0003554709010936025,0.0005570057167326042,0.0,0.0,0.00019951554864414367,0.0,0.0,0.0,0.0,0.0,0.000314308729069202,0.00031174286497892003,0.0004884859981777674,0.0,0.0 +95928,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,19040.0,,217.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004487354992799863,0.0001718652992302808,0.0,0.004659220292030144,0.0027782133139770755,0.00066397238797916,0.0011290342636152855,0.0,8.800032645862311e-05,0.002606348014746795,0.00066397238797916,0.0011290342636152855,0.0,8.800032645862311e-05,0.0001718652992302808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1481822671765538e-05,0.0,0.0,0.0005347521368252843,0.00018384154691795368,0.0005462339594970499,0.0003105950325821142,7.912470794812338e-05,0.00013454551422519085,0.0,1.0486882069855917e-05,1.1481822671765536e-05,0.0,0.0,0.0,0.0,0.0,0.0003257099608312103,7.784226624848787e-05,0.00013236482019906675,0.0,1.0316912218284892e-05 +95929,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030401,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,51177.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.004512818283662852,0.0,0.0,0.004512818283662852,0.0032600895484522167,0.0009418245713658084,0.00031090416384482766,0.0,0.0,0.0032600895484522167,0.0009418245713658084,0.00031090416384482766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005377846861633772,0.0002019398187986807,0.0005377846861633772,0.00038849918708800003,0.00011223559197287603,3.7049907102501264e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038849918708800003,0.00011223559197287603,3.7049907102501264e-05,0.0,0.0 +95930,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,4994.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0008788453655538807,0.0,0.0,0.0008788453655538807,0.000455467855082366,0.00017409839022124215,0.00020999326022410155,0.0,3.912044587869241e-05,0.000455467855082366,0.00017409839022124215,0.00020999326022410155,0.0,3.912044587869241e-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.00010472662833886888,3.405653311485405e-05,0.00010472662833886888,5.4275319241685575e-05,2.074624060354969e-05,2.5023612775492946e-05,0.0,4.661744325643231e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.4275319241685575e-05,2.074624060354969e-05,2.5023612775492946e-05,0.0,4.661744325643231e-06 +95931,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,12533.0,,746.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030462669399661706,0.0005920172338259625,0.0,0.0036382841737921338,0.0015122988433232361,0.0005580246265191072,0.0014929453880682382,0.0,7.493260880781252e-05,0.0009952142183050862,0.0005580246265191072,0.0014929453880682382,0.0,0.0,0.0005170846250181499,0.0,7.493260880781252e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.955658827537383e-05,0.0,0.0,0.0003630170863721456,0.0001464256820992826,0.00040257367464751947,0.00011859754019103031,6.649859583386367e-05,0.00017791109432296917,0.0,0.0,3.4549844914450555e-05,0.0,5.006743360923259e-06,0.0,0.0,0.0,0.00016733484066674002,6.174504621156657e-05,0.00016519339397732153,0.0,8.29124231031263e-06 +95932,50.0,the Greater Atlanta and Macon Area,G1301350050219,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,5806.0,,269.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001119771071356483,0.00021371507854237037,0.0,0.0013334861498988536,0.0007230252386290255,0.00018468489565987348,0.00039087363049196687,0.0,3.4736970970509115e-05,0.0005441298381309036,0.00018468489565987348,0.00039087363049196687,0.0,0.0,0.00017889540049812193,0.0,3.4736970970509115e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4277250391704132e-05,0.0,0.0,0.0001334411264391615,5.7360471596672215e-05,0.00014771837683086566,6.484298477311794e-05,2.2008570451188985e-05,4.6579715160017526e-05,0.0,0.0,1.1951119426182676e-05,0.0,2.3206057138218788e-06,0.0,0.0,0.0,8.009390623676907e-05,2.0458669941284068e-05,4.3299451026649575e-05,0.0,3.848025694285404e-06 +95933,50.0,the Greater Atlanta and Macon Area,G1302550160400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,57177.0,,2733.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002943222265367345,0.0004647836942652641,0.0,0.0034080059596326095,0.0015720979560318218,0.00047627296846545846,0.0009332553037058993,0.0,0.0004263974617908499,0.001318606978809327,0.00047627296846545846,0.0007219448563017101,0.0,0.0004263974617908499,0.00025349097722249486,0.00021131044740418925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.105461735497449e-05,0.0,0.0,0.00035073753360795193,0.00011829385072989957,0.0003817921509629264,0.0001571355874097036,5.675643604947504e-05,8.603263208482333e-05,0.0,5.081287806395001e-05,1.693705135897117e-05,1.411875065371885e-05,0.0,0.0,0.0,0.0,0.0001761190171810949,5.3355916400899676e-05,0.00010455074140710875,0.0,4.776846227106084e-05 +95934,50.0,the Greater Atlanta and Macon Area,G1300670031306,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,63366.0,,4399.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006017040422218074,0.0012815532810770624,0.0,0.0072985937032951365,0.005218609613797891,0.0013652629211275066,0.0007146907947703004,0.0,0.0,0.003937056332720829,0.0013652629211275066,0.0007146907947703004,0.0,0.0,0.0012815532810770624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.562611608512587e-05,0.0,0.0,0.0007170399918648257,0.0002439478344844079,0.0008026661079499514,0.0004691719919915122,0.00016269595102665836,8.516842927889988e-05,0.0,0.0,8.562611608512587e-05,0.0,0.0,0.0,0.0,0.0,0.0005739189271114258,0.00015014540057696973,7.85984399113684e-05,0.0,0.0 +95935,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,2693.0,,19.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000646521195420166,1.4721859125596722e-05,0.0,0.0006612430545457628,0.0002902191217512298,0.00015003063176310366,0.00020627144190583273,0.0,1.4721859125596722e-05,0.0002902191217512298,0.00015003063176310366,0.00020627144190583273,0.0,0.0,0.0,0.0,1.4721859125596722e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.861741678219093e-07,0.0,0.0,7.704361548492365e-05,2.7790099272989277e-05,7.802978965274557e-05,3.458437338321571e-05,1.7878613085538128e-05,2.4580629016169838e-05,0.0,0.0,0.0,0.0,9.861741678219093e-07,0.0,0.0,0.0,3.424722099956026e-05,1.770432000376241e-05,2.434100004927423e-05,0.0,1.737248600148682e-06 +95936,50.0,the Greater Atlanta and Macon Area,G1301350050540,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5895.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014154488599745073,0.0,0.0,0.0014154488599745071,0.0007886119481042963,0.00030758760723648436,0.00026797091891535605,0.0,5.11956786446313e-05,0.0007886119481042963,0.00030758760723648436,0.00026797091891535605,0.0,5.11956786446313e-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.00016867778761458602,5.338817967422391e-05,0.00016867778761458602,9.397818773548426e-05,3.665494286190519e-05,3.193385718541888e-05,0.0,6.100943703016756e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.397818773548428e-05,3.6654942861905194e-05,3.1933857185418885e-05,0.0,6.100943703016757e-06 +95937,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050500,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,11477.0,,669.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0005907756425161594,0.00011374026850963872,0.0,0.0007044981806643781,0.0003092352335271409,0.00018290640840926475,6.629382134957743e-05,0.0,0.00014608044773981504,0.0002579767586617683,0.00018290640840926475,6.629382134957743e-05,0.0,8.359865409554897e-05,5.1258474865372647e-05,0.0,6.248179364426608e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599132110381827e-06,0.0,0.0,7.040075661185282e-05,3.161005642181705e-05,7.799988872223466e-05,3.0742227151934535e-05,2.1796344694113858e-05,7.90001287430125e-06,0.0,9.962171891503183e-06,3.4246439487317005e-06,0.0,4.174488161650127e-06,0.0,0.0,0.0,3.4237581396398416e-05,2.025083938336369e-05,7.339849598138506e-06,0.0,1.617358139584465e-05 +95938,35.0,Eastern Counties in South Carolina and Georgia,G1300510004001,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,121564.0,,9905.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005697633911972549,0.0016844729867121163,0.0,0.007382089168323242,0.0031067493887444926,0.001726937202313143,0.001379085241613127,0.0,0.0011692996052910622,0.002943630063680007,0.001726937202313143,0.0008393730399867198,0.0,0.0001876758756312589,0.00016311932506448575,0.0005397122016264073,0.0009816237296598033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011254642100253903,0.0,0.0,0.0006789753879034575,0.0002974501178683355,0.0007915218089059965,0.00035078637820720716,0.00020579557671502553,0.00010002636958178672,0.0,2.2364950508506625e-05,1.0898658736101878e-05,3.606034477466753e-05,6.558623285495048e-05,0.0,0.0,0.0,0.00033311164900967833,0.00018516553066134768,0.00014786817392577293,0.0,0.0001253745542257209 +95939,35.0,Eastern Counties in South Carolina and Georgia,G1300730030201,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,21163.0,,532.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0023254479042577767,0.00019784945178025472,0.0,0.002523297356038031,0.0012303012031874005,0.00026399301115920005,0.0009579772809172027,0.0,7.102586077422774e-05,0.0012303012031874005,0.00026399301115920005,0.0008311536899111758,0.0,0.0,0.0,0.00012682359100602692,7.102586077422774e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3218764734005436e-05,0.0,0.0,0.00027711981678285727,9.057592639055543e-05,0.00029033858151686267,0.000146612978682849,3.145961461894902e-05,9.904722348105921e-05,0.0,0.0,0.0,8.473367993419462e-06,4.745396740585969e-06,0.0,0.0,0.0,0.00014156235107097524,3.0375871558267593e-05,0.00011022789850800669,0.0,8.172460379613164e-06 +95940,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,53306.0,,6843.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002743933003005952,0.0011637500021665858,0.0,0.003907700735533958,0.0016049168550203395,0.0010205241426153994,0.000712530034387662,0.0,0.0005697119731491368,0.0010688925685693035,0.0010205241426153994,0.0005555631447359345,0.0,9.89531470853147e-05,0.0005360242864510362,0.00015696688965172745,0.000470758826063822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.775500003390755e-05,0.0,0.0,0.0003269902318104269,0.0001523736124490688,0.00040474523184433434,0.00012737826630388797,0.00012161427614900947,6.62055965956611e-05,0.0,1.1792092761868404e-05,3.581402219856623e-05,1.048761373789054e-05,3.1453364097450776e-05,0.0,0.0,0.0,0.00016623136942633013,0.00010570212732761121,7.380123338049813e-05,0.0,5.900866526444288e-05 +95941,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,119386.0,,8569.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005816320951318382,0.0014572229443912997,0.0,0.007273543895709683,0.002747975525409724,0.0019775735913470094,0.001709472796314391,0.0,0.0008385397129999773,0.002582994512396133,0.0019775735913470094,0.00041721313457526255,0.0,0.0008385397129999773,0.00016498101301359131,0.0012922596617391284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.736367243818492e-05,0.0,0.0,0.0006931192464253867,0.0002600631089837029,0.0007904829188635716,0.0003078102506614779,0.00023566345957481768,4.971844845839044e-05,0.0,9.992708773070067e-05,1.102312955708024e-05,8.634172752694638e-05,0.0,0.0,0.0,0.0,0.00029864777685233043,0.00021492111234491616,0.00018578413289641992,0.0,9.11318236913684e-05 +95942,50.0,the Greater Atlanta and Macon Area,G1301510070305,ComStock 90.1-2004,gen1_t12_incandescent,_1000,NaturalGas,8878.0,,10229.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0018485822529273749,0.007036302916399568,0.0,0.008884885169326943,0.0012044651932361721,0.00026859129145346335,0.006464407867521086,0.00037825112713633273,0.0005691696899798892,0.0010028603547112896,0.00026859129145346335,0.00010994671556693174,0.00037825112713633273,8.89327640593577e-05,0.00020160483852488264,0.006354461151954155,0.0004802369259205315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004701265014377044,0.0,0.0,0.00022028889219067132,0.0005283103361351253,0.0006904153936283757,0.00011950725817661136,3.200705727464846e-05,1.3101954286257968e-05,4.5074825117889455e-05,1.059779733526411e-05,1.3470110445033915e-05,0.00042456963911079686,3.2086751881873735e-05,0.0,0.0,0.0,9.359505437061536e-05,2.087135159092262e-05,0.0005023280118280959,2.939265908959303e-05,4.4228316749148704e-05 +95943,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,41246.0,,40.0,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,163187.89066084955,0.0,0.0,0.01073796813041257,3.367436421893778e-05,0.0,0.010771642494631507,0.007537577767242656,0.0009987409860209894,0.0020133911204918706,0.0,0.00022184423671793655,0.007503903403023718,0.0009987409860209894,0.0020133911204918706,0.0,0.00022184423671793655,3.367436421893778e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2519702639876485e-06,0.0,0.0,0.0012796193945448075,0.00046632078304096805,0.0012818713648087953,0.0008942232098924101,0.00011901770617288647,0.00023993126961224372,0.0,2.6436676326897792e-05,2.2519702639876485e-06,0.0,0.0,0.0,0.0,0.0,0.000897003878903643,0.00011885443389708457,0.00023960212426332627,0.0,2.640040965324622e-05 +95944,81.0,the Columbus-Albany Area,G1300950010500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,15820.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003643742840658928,0.0,0.0,0.003643742840658928,0.0018943228169250972,0.0006969725104011438,0.0009721389447318194,0.0,8.02258615271282e-05,0.0018943228169250972,0.0006969725104011438,0.0009721389447318194,0.0,8.02258615271282e-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.0004342159212309049,0.0001443933347484931,0.0004342159212309049,0.00022574181632178692,8.305650917497811e-05,0.0001158474200596526,0.0,9.560319674822448e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00022574181632178692,8.305650917497811e-05,0.0001158474200596526,0.0,9.560319674822448e-06 +95945,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,10006.0,,411.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002109774744015993,0.00032627940590156774,0.0,0.0024359714428438214,0.0012618618240406133,0.00047738522962328245,0.0006145962649567935,0.0,8.221083129687158e-05,0.0009355824181390456,0.00047738522962328245,0.0006145962649567935,0.0,8.221083129687158e-05,0.00032627940590156774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1799728688564383e-05,0.0,0.0,0.00025141343899761677,8.504018445168156e-05,0.0002732131676861811,0.00011148962413034778,5.6888093217854254e-05,7.323898487558471e-05,0.0,9.796736773830064e-06,2.1799728688564383e-05,0.0,0.0,0.0,0.0,0.0,0.0001415276304413155,5.354247118747283e-05,6.893175734478702e-05,0.0,9.220584955015244e-06 +95946,50.0,the Greater Atlanta and Macon Area,G1301350050722,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,18977.0,,3989.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004226916574124219,0.0030934909778526655,0.0,0.0073204075519768845,0.0031872086254290896,0.0006382341607598895,0.0024367396977700833,0.0004099641701574357,0.0006481800370773184,0.0020333252510411986,0.0006382341607598895,0.0011453121313826271,0.0004099641701574357,0.0,0.0011538833743878908,0.0012914275663874564,0.0006481800370773184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002066890048706316,0.0,0.0,0.0005037093427579427,0.00034410182647644623,0.0007103983476285743,0.00024230545075929193,7.605650691334968e-05,0.00013648351246936337,4.885423667182097e-05,0.0,7.709574978445546e-05,8.628564960108888e-05,4.330760548508726e-05,0.0,0.0,0.0,0.00030929804453864296,6.193650967991447e-05,0.00023646987447158526,3.978437907983864e-05,6.290169284102298e-05 +95947,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,106894.0,,1597.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.012025069588156858,0.0005936258521883082,0.0,0.012618734188768937,0.00672928376280253,0.0015536567995654315,0.004133875590124652,0.0,0.00020184053942877924,0.00672928376280253,0.0015536567995654315,0.003540249737936344,0.0,0.00020184053942877924,0.0,0.0005936258521883082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.966346477468777e-05,0.0,0.0,0.001433006044703781,0.0004767598373160676,0.0014726695094784688,0.0008019167155689681,0.00018514650321567458,0.00042188523210046156,0.0,2.4052976238289327e-05,0.0,3.966346477468777e-05,0.0,0.0,0.0,0.0,0.0007853411340519433,0.00018131953353533057,0.0004824439952917184,0.0,2.3555802329048706e-05 +95948,50.0,the Greater Atlanta and Macon Area,G1300670030326,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,25982.0,,8979.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006408459640530029,0.006963488055512403,0.0,0.013371947696042432,0.004394783559774482,0.000638315021542958,0.00717235145817841,0.00041594786810450674,0.0007507115100082115,0.002777567898403928,0.000638315021542958,0.0025767097132617053,0.00041594786810450674,0.0,0.0016172156613705546,0.004595641744916705,0.0007507115100082115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046526199766178724,0.0,0.0,0.0007636836831127876,0.0006854319549361119,0.001228945680774575,0.0003309973693730743,7.606676081021976e-05,0.000307061489736314,4.9567699215577705e-05,0.0,0.00010805346160729872,0.00030705552184946076,5.015841687810807e-05,0.0,0.0,0.0,0.00040390154048556653,5.8664190627287263e-05,0.0006591732592653129,3.822759014273698e-05,6.899396323584176e-05 +95949,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,19747.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,24034.3828889517,0.0,0.0,0.0015714085405115282,0.0,0.0,0.0015714085405115282,0.0010169081091759308,0.00041359730354386656,0.00014087275419229298,0.0,0.0,0.0010169081091759308,0.00041359730354386656,0.00014087275419229298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018726289366366938,4.185072176359729e-05,0.00018726289366366938,0.00012118373434087772,4.928790055315807e-05,1.6787639183781096e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012118373434087772,4.928790055315807e-05,1.6787639183781096e-05,0.0,0.0 +95950,50.0,the Greater Atlanta and Macon Area,G1302970110700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,53406.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010044554693206632,0.0,0.0,0.01004455469320663,0.003362537403614103,0.0025999006871161886,0.00408211660247634,0.0,0.0,0.003362537403614103,0.0025999006871161886,0.00408211660247634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011969906505803994,0.00035964356993969655,0.0011969906505803994,0.00040070724460041266,0.0003098252645306806,0.00048645814144930615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004007072446004127,0.0003098252645306807,0.0004864581414493062,0.0,0.0 +95951,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010200,ComStock 90.1-2007,gen4_led,200001_500000,Electricity,265770.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02237646712299365,0.0,0.0,0.02237646712299365,0.0064775631324372335,0.005494974007603683,0.010403960672559031,0.0,0.0,0.0064775631324372335,0.005494974007603683,0.010403960672559031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026665617838509356,0.0008499661915930473,0.0026665617838509356,0.0007719190972595331,0.0006548257869033029,0.0012398205569111485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007719190972595331,0.0006548257869033029,0.0012398205569111485,0.0,0.0 +95952,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300490010100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,148066.0,,4443.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.00762171500291526,0.0007555261608312899,0.0,0.008377241163746548,0.003985483831083729,0.001571761079164841,0.0012084127825836989,0.0,0.0016115657405528596,0.003779403840298456,0.001571761079164841,0.0006589666125376826,0.0,0.0016115657405528596,0.00020607999078527372,0.0005494461700460162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.048004821845102e-05,0.0,0.0,0.0009082653944797442,0.00029585542361446076,0.0009587454426981952,0.0004503844237935884,0.00018730380184112414,7.852780772524162e-05,0.0,0.00019204724822607724,1.376911669114466e-05,3.671093152730636e-05,0.0,0.0,0.0,0.0,0.0004561244430368025,0.00017988246275886727,0.00013829854310678865,0.0,0.0001844379646189618 +95953,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,27064.0,,1828.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006498542904918603,0.001449855002650059,0.0,0.007948397907568662,0.004647145059264205,0.0010501317152679865,0.002031120316889912,0.0,0.00022008352322029704,0.0034173735798344435,0.0010501317152679865,0.002031120316889912,0.0,0.0,0.0012297714794297617,0.0,0.00022008352322029704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.687079486487864e-05,0.0,0.0,0.0007744230002931603,0.00033836530937819453,0.000871293795158039,0.00040724401447205893,0.00012514284594863703,0.0002420459959680734,0.0,0.0,8.216610660843584e-05,0.0,1.4704688256442786e-05,0.0,0.0,0.0,0.000509414438283299,0.0001151141724724683,0.00022264896019365808,0.0,2.412529045831599e-05 +95954,85.0,Rural Climate Zone 3A,G1302850960901,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,52106.0,,1686.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.004642600882291286,0.0004963736922590447,0.0,0.005138943884944033,0.002429235786494664,0.0011106568519138637,0.0015990512465355055,0.0,0.0,0.0019328620942356193,0.0011106568519138637,0.0015990512465355055,0.0,0.0,0.0004963736922590447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.316392232899927e-05,0.0,0.0,0.0005532490757412449,0.00021825681056906722,0.000586412998070244,0.00023033514925870164,0.00013235466333771153,0.00019055560592838136,0.0,0.0,3.316392232899927e-05,0.0,0.0,0.0,0.0,0.0,0.0002772039299264264,0.00012673880644352688,0.00018247026170029078,0.0,0.0 +95955,46.0,the Tallahassee-Valdosta Area,G1301850011402,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,82569.0,,485.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0072393405399588115,0.00014289080692210415,0.0,0.007382231346880917,0.0025496924912131475,0.0019304069257318028,0.0029021319299359664,0.0,0.0,0.002406801684291043,0.0019304069257318028,0.0029021319299359664,0.0,0.0,0.00014289080692210415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.547606467683509e-06,0.0,0.0,0.0008626979331122182,0.0002874665152292974,0.0008722455395799017,0.00028681380948832974,0.00023004278576233583,0.00034584133786155275,0.0,0.0,9.547606467683509e-06,0.0,0.0,0.0,0.0,0.0,0.0003012582237348448,0.0002280867059598636,0.00034290060988519333,0.0,0.0 +95956,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Electricity,4177.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0006344459626542271,0.0,0.0,0.0006344459626542271,0.00034025690136351073,0.0001356396009324642,0.00013133883309802017,0.0,2.7045213112753528e-05,0.00034025690136351073,0.0001356396009324642,0.00013133883309802017,0.0,2.7045213112753528e-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,7.560791008321205e-05,2.151267985455159e-05,7.560791008321205e-05,4.05489430429324e-05,1.616438176723606e-05,1.565185258925052e-05,0.0,3.2230200231013354e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.05489430429324e-05,1.616438176723606e-05,1.565185258925052e-05,0.0,3.2230200231013354e-06 +95957,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen4_led,_1000,Electricity,2606.0,,169.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005257688677607773,0.00013406816653141734,0.0,0.0006598370342921946,0.00035514417463658606,0.00015921111694816679,0.00011678238811990208,0.0,2.8699354587539677e-05,0.00022107600810516873,0.00015921111694816679,0.00011678238811990208,0.0,2.8699354587539677e-05,0.00013406816653141734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.957003011605182e-06,0.0,0.0,6.265293605868886e-05,3.0197394134878274e-05,7.160993907029404e-05,2.6344391707546848e-05,1.897229855481769e-05,1.3916304186702638e-05,0.0,3.4199416096216825e-06,8.957003011605182e-06,0.0,0.0,0.0,0.0,0.0,3.8542627020286114e-05,1.7278657898009033e-05,1.2674007767266886e-05,0.0,3.1146463847320172e-06 +95958,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,9986.0,,435.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0005140031775673307,7.40065285673004e-05,0.0,0.0005880097061346313,0.00033329533397415264,0.00010794244032528148,4.0815291988961555e-05,0.0,0.00010595663984623555,0.0003231712976033025,0.00010794244032528148,4.0815291988961555e-05,0.0,4.20741476497853e-05,1.012403637085015e-05,0.0,6.388249219645023e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.944329698978799e-06,0.0,0.0,6.12536711976737e-05,2.2548302697108164e-05,6.61980008966525e-05,3.8512268538116555e-05,1.2863482243926787e-05,4.863951400380989e-06,0.0,5.013969015249386e-06,6.763805122465008e-07,0.0,4.267949186732298e-06,0.0,0.0,0.0,3.752231398068006e-05,1.2152135733289723e-05,4.59497642214733e-06,0.0,1.1928574760535376e-05 +95959,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,69064.0,,648.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.007630068370232139,0.00024089895059103866,0.0,0.007870967320823178,0.0052368107243732165,0.0005821175703279997,0.0019073911601807756,0.0,0.00014464786594118502,0.0052368107243732165,0.0005821175703279997,0.0016664922095897365,0.0,0.00014464786594118502,0.0,0.00024089895059103866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.609565615296758e-05,0.0,0.0,0.0009092621456886082,0.0002963856316672765,0.0009253578018415758,0.0006240617416202571,6.936995127127187e-05,0.0001985930149953312,0.0,1.7237437801747845e-05,0.0,1.609565615296758e-05,0.0,0.0,0.0,0.0,0.0006156706619459809,6.843720896502727e-05,0.0002242442662120394,0.0,1.7005664718528044e-05 +95960,50.0,the Greater Atlanta and Macon Area,G1301530020700,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,75336.0,,40.0,,9.325022323477118,Office,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,349688.3371303919,0.0,0.0,0.019331029513147493,3.349759590282787e-05,0.0,0.01936452710905032,0.011264472559945936,0.0016723166545578002,0.006141019685816315,0.0,0.00028671820873027334,0.011230974964043109,0.0016723166545578002,0.006141019685816315,0.0,0.00028671820873027334,3.349759590282787e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.239044035166961e-06,0.0,0.0,0.0023036443666708357,0.0008256141512636263,0.002305883410706003,0.0013383752888351248,0.00019928699803296922,0.0007318143813925655,0.0,3.416769841017662e-05,2.239044035166961e-06,0.0,0.0,0.0,0.0,0.0,0.0013413475196196601,0.00019913562616202238,0.000731258519177817,0.0,3.41417457465039e-05 +95961,50.0,the Greater Atlanta and Macon Area,G1301170130403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,10548.0,,216.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.002532656012045072,0.00017112093556662705,0.0,0.002703859654685439,0.001154425335253253,0.001026891027547241,0.0004562122187460198,0.0,6.624836606518524e-05,0.0010495527657518112,0.001026891027547241,0.0004562122187460198,0.0,0.0,0.0001048725695014418,0.0,6.624836606518524e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1434672923449188e-05,0.0,0.0,0.0003018149065528507,9.465159223828024e-05,0.0003132495794762998,0.00012507449429023825,0.0001223739102527658,5.436650200984667e-05,0.0,0.0,7.007813082133189e-06,0.0,4.426859841315998e-06,0.0,0.0,0.0,0.00013374335098281513,0.00011896815058050097,5.2853440609056324e-05,0.0,7.675055461902486e-06 +95962,50.0,the Greater Atlanta and Macon Area,G1300890023108,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,104467.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008756161993113971,0.0,0.0,0.00875616199311397,0.004838119533641175,0.003187861128989243,0.0007301813304835538,0.0,0.0,0.004838119533641175,0.003187861128989243,0.0007301813304835538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010434543701312283,0.0002702419482030538,0.0010434543701312283,0.0005765490604862356,0.0003798910560393055,8.701425360568724e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005765490604862357,0.00037989105603930556,8.701425360568725e-05,0.0,0.0 +95963,50.0,the Greater Atlanta and Macon Area,G1302270050600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,9029.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007398957182313165,0.0,0.0,0.0007398957182313164,0.000296246769591725,0.00022612101920147412,0.00021755861904441503,0.0,0.0,0.000296246769591725,0.00022612101920147412,0.00021755861904441503,0.0,0.0,0.0,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.817186092860523e-05,3.3885397860291755e-05,8.817186092860523e-05,3.530312221758788e-05,2.694637983002046e-05,2.592601609867196e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.530312221758788e-05,2.6946379830020463e-05,2.592601609867197e-05,0.0,0.0 +95964,50.0,the Greater Atlanta and Macon Area,G1300890021210,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,54094.0,,10857.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.004538332107190564,0.003162863656651972,0.0,0.007701226137441974,0.005646512882676939,0.001367206831491523,0.0006874760496740749,0.0,0.0,0.002483649226024967,0.001367206831491523,0.0006874760496740749,0.0,0.0,0.003162863656651972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002113246492331756,0.0,0.0,0.0005408250727569653,0.0003823000664446243,0.0007521497219901407,0.0002959721196338908,0.00016292763875602696,8.192531436704762e-05,0.0,0.0,0.0002113246492331756,0.0,0.0,0.0,0.0,0.0,0.0005514736249947195,0.00013352993664343207,6.714319387704535e-05,0.0,0.0 +95965,85.0,Rural Climate Zone 3A,G1301750950500,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,97992.0,,11446.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006252611954781622,0.001946509998139076,0.0,0.008199104222559277,0.0036329155942459797,0.0016605192684336252,0.0018905707078588102,0.0,0.001015098652020863,0.0032623333102054556,0.0016605192684336252,0.0011518351992923102,0.0,0.00017792417685022987,0.00037058228404052363,0.0007387355085664999,0.0008371744751706331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013005427886638577,0.0,0.0,0.0007451108488450665,0.0003459741357520942,0.0008751651277114523,0.0003887655206435437,0.00019788065061033844,0.0001372618210247296,0.0,2.1202856566454672e-05,2.4760115158732875e-05,4.935793493558227e-05,5.593504413424669e-05,0.0,0.0,0.0,0.00038777419504624713,0.00017724235699158227,0.0002017978440179322,0.0,0.0001083507316556908 +95966,50.0,the Greater Atlanta and Macon Area,G1300670031110,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,65786.0,,4722.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006179205069616231,0.001375589944936342,0.0,0.007554795014552573,0.00512782292507845,0.0019192166276732242,0.0005077554618008973,0.0,0.0,0.003752232980142109,0.0019192166276732242,0.0005077554618008973,0.0,0.0,0.001375589944936342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.190820826277557e-05,0.0,0.0,0.0007363651949509586,0.000271789956761219,0.0008282734032137343,0.00044714712309998827,0.00022870973050219333,6.050834134877691e-05,0.0,0.0,9.190820826277557e-05,0.0,0.0,0.0,0.0,0.0,0.0005621912092983073,0.0002104141918669163,5.5668002048510615e-05,0.0,0.0 +95967,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,NaturalGas,15162.0,,1768.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0014027912142616967,0.000520403653990146,0.0,0.0019231948682518424,0.0009023051147587595,0.00045675341052871054,0.0005641363429643725,0.0,0.0,0.0003819014607686134,0.00045675341052871054,0.0005641363429643725,0.0,0.0,0.000520403653990146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4770671898124975e-05,0.0,0.0,0.00016716732913736165,8.961369119599108e-05,0.00020193800103548661,4.551029871109251e-05,5.443022948547011e-05,6.722680094079899e-05,0.0,0.0,3.4770671898124975e-05,0.0,0.0,0.0,0.0,0.0,9.47432286797361e-05,4.795971131731956e-05,5.9235061038430974e-05,0.0,0.0 +95968,81.0,the Columbus-Albany Area,G1302150010501,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,5568.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0004960974858023655,0.0,0.0,0.0004960974858023655,0.0001435352886543559,0.00015654768172458191,0.00019604520502972537,0.0,0.0,0.0001435352886543559,0.00015654768172458191,0.00019604520502972537,0.0,0.0,0.0,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.912035333943314e-05,1.9817457213122905e-05,5.912035333943314e-05,1.7105220697094263e-05,1.8655918489603988e-05,2.3362871458849298e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7105220697094263e-05,1.8655918489603988e-05,2.3362871458849298e-05,0.0,0.0 +95969,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,7586.0,,289.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005473322618682878,8.419561764144803e-05,0.0,0.000631527879509736,0.00043355275837446953,0.0001574871130847432,4.048800805052319e-05,0.0,0.0,0.00034935714073302144,0.0001574871130847432,4.048800805052319e-05,0.0,0.0,8.419561764144803e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.625833637320732e-06,0.0,0.0,6.5224024130078e-05,1.964052914999517e-05,7.084985776739873e-05,4.163189375938719e-05,1.876728996195641e-05,4.824840408734407e-06,0.0,0.0,5.625833637320732e-06,0.0,0.0,0.0,0.0,0.0,4.8639422363017e-05,1.7668166242976258e-05,4.5422691614054695e-06,0.0,0.0 +95970,50.0,the Greater Atlanta and Macon Area,G1300670030312,ComStock 90.1-2007,gen4_led,_1000,Electricity,2378.0,,633.0,,9.325022323477118,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9325.022323477118,0.0,0.0,0.0005387898275030045,0.0005369337601838504,0.0,0.0010757235876868551,0.0007936897393334941,0.00014221011031042226,0.0001128665698361773,0.0,2.704555236481617e-05,0.00025675597914964375,0.00014221011031042226,0.0001128665698361773,0.0,2.704555236481617e-05,0.0005369337601838504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5875849930800495e-05,0.0,0.0,6.420809711745044e-05,5.9145839472508526e-05,0.00010008394704825093,3.0597854679493694e-05,1.6947314347437293e-05,1.3450416669780876e-05,0.0,3.2230442450688707e-06,3.5875849930800495e-05,0.0,0.0,0.0,0.0,0.0,7.384387844000438e-05,1.3231046816254679e-05,1.0500961332726681e-05,0.0,2.516283608311953e-06 +95971,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,35515.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003044501013551009,0.0,0.0,0.003044501013551009,0.0011268916536453484,0.0007087150782328504,0.0012088942816728106,0.0,0.0,0.0011268916536453484,0.0007087150782328504,0.0012088942816728106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036280735479447314,0.000121772690814877,0.00036280735479447314,0.0001342895200820364,8.445621850416588e-05,0.00014406161620827087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001342895200820364,8.445621850416588e-05,0.00014406161620827087,0.0,0.0 +95972,50.0,the Greater Atlanta and Macon Area,G1301210011201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,62501.0,,8424.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009601795743149674,0.002479566740822896,0.0,0.01208136248397257,0.004639562611267814,0.002929169473084242,0.004512661089226813,0.0,0.0,0.002159995870444917,0.002929169473084242,0.004512661089226813,0.0,0.0,0.002479566740822896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016567025497607672,0.0,0.0,0.0011442285119370958,0.000494446610459418,0.0013098987669131724,0.0002574027741001211,0.00034906379150899457,0.0005377656035524709,0.0,0.0,0.00016567025497607672,0.0,0.0,0.0,0.0,0.0,0.0005030357587216291,0.0003175896332853932,0.0004892767023683879,0.0,0.0 +95973,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,53901.0,,2347.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004552060974136428,0.0006836186025454803,0.0,0.005235679576681909,0.004043029821159145,0.0008908576715092611,0.0003018224576129399,0.0,0.0,0.003359411218613665,0.0008908576715092611,0.0003018224576129399,0.0,0.0,0.0006836186025454803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.567473295830153e-05,0.0,0.0,0.0005424616837400417,0.000183170016971613,0.0005881364166983432,0.0004003355570978644,0.0001061620560896211,3.596769012487436e-05,0.0,0.0,4.567473295830153e-05,0.0,0.0,0.0,0.0,0.0,0.00045416321545178244,0.00010007217421080896,3.390443897486562e-05,0.0,0.0 +95974,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,6777.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013851780709859208,0.0,0.0,0.0013851780709859206,0.0008281459293516853,0.0001960157647621586,0.0003242117290580851,0.0,3.6804647813991796e-05,0.0008281459293516853,0.0001960157647621586,0.0003242117290580851,0.0,3.6804647813991796e-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.00016506713641258272,5.82904792796167e-05,0.00016506713641258272,9.868743950914682e-05,2.335855703951642e-05,3.8635250461984965e-05,0.0,4.385889401934517e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.868743950914684e-05,2.3358557039516424e-05,3.863525046198497e-05,0.0,4.385889401934518e-06 +95975,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,27939.0,,2995.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024238037261799707,0.0008815282512952146,0.0,0.0033053319774751845,0.001264565227496843,0.0007780428988593609,0.0012626931615126835,0.0,0.0,0.00038303697620162844,0.0007780428988593609,0.0012626931615126835,0.0,0.0,0.0008815282512952146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.889758127490703e-05,0.0,0.0,0.0002888410750887742,0.00014272279395976414,0.00034773865636368123,4.564594517692256e-05,9.271821185204237e-05,0.00015047326082519847,0.0,0.0,5.889758127490703e-05,0.0,0.0,0.0,0.0,0.0,0.00013303904602946542,8.185428697825525e-05,0.00013284209464473553,0.0,0.0 +95976,50.0,the Greater Atlanta and Macon Area,G1300630040416,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,148854.0,,7816.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011997176921119282,0.0022769265082516273,0.0,0.014274103429370905,0.009261031962968281,0.003905407042106692,0.0011076644242959334,0.0,0.0,0.006984105454716655,0.003905407042106692,0.0011076644242959334,0.0,0.0,0.0022769265082516273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015213098482241974,0.0,0.0,0.0014296811802624384,0.00048109999143495797,0.001581812165084858,0.0008322828108002163,0.0004654000675388406,0.00013199830192338124,0.0,0.0,0.00015213098482241974,0.0,0.0,0.0,0.0,0.0,0.0010262790299053169,0.0004327851762725178,0.0001227479589070235,0.0,0.0 +95977,50.0,the Greater Atlanta and Macon Area,G1302170100502,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,50474.0,,8238.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0025981362410488575,0.001400911316521212,0.0,0.0039990475575700695,0.0016438881894216158,0.0010487863387189634,0.0007440546169925159,0.0,0.0005623361427983946,0.0012417813227762382,0.0010487863387189634,0.0002089523093353223,0.0,9.863400057975375e-05,0.0004021068666453775,0.0005351023076571935,0.00046370214221864086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.360024891431676e-05,0.0,0.0,0.0003096151550101352,0.00016737341526540847,0.00040321540392445195,0.00014798081434899848,0.00012498195425806298,2.4900465426887886e-05,0.0,1.1754033871003593e-05,2.6866299361208294e-05,3.575223399273629e-05,3.098171556037217e-05,0.0,0.0,0.0,0.00016574972684421717,0.00010574688125338811,7.502143413237814e-05,0.0,5.6699149408852735e-05 +95978,85.0,Rural Climate Zone 3A,G1300910960300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,24260.0,,2426.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005543087540130645,0.0018813878396554348,0.0,0.007424394519003012,0.002714739069959682,0.0008815442570130895,0.0029867547442022093,0.00042120381900396104,0.0004202334896071387,0.0020551576624697012,0.0008815442570130895,0.002185181801643894,0.00042120381900396104,0.0,0.0006595814074899808,0.0008015729425583154,0.0004202334896071387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012570158891886686,0.0,0.0,0.0006605565051222827,0.0002881343741094779,0.0007862580940411495,0.0002449082308673533,0.00010505152395797474,0.0002604028970317657,5.0193853265189e-05,0.0,4.4068760940868915e-05,5.355567331210415e-05,2.8077154665893803e-05,0.0,0.0,0.0,0.00028749624787613963,9.335728395870711e-05,0.0003163032468888979,4.46063192204096e-05,4.4503559414180964e-05 +95979,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,NaturalGas,369565.0,,41399.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.017125933399243204,0.007040230069783207,0.0,0.024166163469026412,0.011970298905520248,0.004041706807146717,0.0031792842973139284,0.0,0.0049748734590455155,0.010391250647811767,0.004041706807146717,0.0019640985166677694,0.0,0.0007288774276169507,0.0015790482577084826,0.0012151857806461587,0.004245996031428564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00047038681677857196,0.0,0.0,0.0020408643257762587,0.0009032011917563996,0.0025112511425548307,0.0012383052212649396,0.00048164237508463653,0.00023405781755255753,0.0,8.685891187412515e-05,0.00010550272876325412,8.119157548644322e-05,0.00028369251252887453,0.0,0.0,0.0,0.0012439056303553844,0.0004199980212137386,0.0003303785201308119,0.0,0.0005169689708548954 +95980,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,54241.0,,10333.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0047025069937844015,0.0030414627425275364,0.0,0.007743969736311939,0.004345863078998798,0.0012494045619857782,0.0021487020953273625,0.0,0.0,0.0013044003364712613,0.0012494045619857782,0.0021487020953273625,0.0,0.0,0.0030414627425275364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020321239107045974,0.0,0.0,0.0005603881603191012,0.0003733555453653987,0.000763600551389561,0.0001554427257292581,0.00014888899153386414,0.000256056443055979,0.0,0.0,0.00020321239107045977,0.0,0.0,0.0,0.0,0.0,0.00042852742926232723,0.00012319857191168943,0.00021187455021554427,0.0,0.0 +95981,50.0,the Greater Atlanta and Macon Area,G1300630040516,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,88242.0,,2401.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.004310357243383357,0.0004082593020581358,0.0,0.004718616545441493,0.0022223766914736785,0.000761589944436948,0.0010005065645721596,0.0,0.0007341256145972864,0.002039931272461335,0.000761589944436948,0.0007746926815263671,0.0,0.0007341256145972864,0.00018244541901234331,0.00022581388304579247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.727735089977473e-05,0.0,0.0,0.0005136566124214964,0.00016341975118686246,0.000540933963321271,0.0002430945111553414,9.075714350922211e-05,9.231857036244454e-05,0.0,8.748427450294135e-05,1.218986974544784e-05,1.5087481154326888e-05,0.0,0.0,0.0,0.0,0.000254769384232554,8.730734169698446e-05,0.00011469632594447866,0.0,8.41588788695731e-05 +95982,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,24165.0,,3444.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0021530907090279343,0.0010138311440446113,0.0,0.003166891163466248,0.0013902698548922336,0.0007695725675211951,0.001007079430659117,0.0,0.0,0.0003764387108476223,0.0007695725675211951,0.001007079430659117,0.0,0.0,0.0010138311440446113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.773812916631453e-05,0.0,0.0,0.0002565780402323105,0.0001437368563176117,0.00032431616939862507,4.48591906935804e-05,9.170789710029533e-05,0.0001200109524384348,0.0,0.0,6.773812916631453e-05,0.0,0.0,0.0,0.0,0.0,0.00014237527293976327,7.881067403009877e-05,0.00010313336530139143,0.0,0.0 +95983,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,28817.0,,,4212.0,3.20458438519356,Mercantile,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,56080.226740887294,0.0,0.0,0.0025411464497606304,0.0,0.0003969829446514162,0.0029381293944120467,0.0019504710614946714,0.0006418852769180093,0.0003457730559993668,0.0,0.0,0.0015534881168432551,0.0006418852769180093,0.0003457730559993668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003969829446514162,0.0,0.0,0.0,0.0,3.201594571874992e-05,0.00030282365978886886,0.00011074767339655434,0.0003348396055076188,0.00018512626732918367,7.649226542579355e-05,4.120512703389173e-05,0.0,0.0,0.0,0.0,0.0,3.201594571874992e-05,0.0,0.0,0.00022228257272365433,7.315151378735808e-05,3.940551899660647e-05,0.0,0.0 +95984,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,9086.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0008012251795684554,0.0,0.0,0.0008012251795684553,0.0004944518252471619,0.0002487597793951874,5.801357492610598e-05,0.0,0.0,0.0004944518252471619,0.0002487597793951874,5.801357492610598e-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,9.548159892470576e-05,2.7644833509212095e-05,9.548159892470576e-05,5.892357363415159e-05,2.9644576943528565e-05,6.913448347025588e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89235736341516e-05,2.964457694352857e-05,6.913448347025589e-06,0.0,0.0 +95985,50.0,the Greater Atlanta and Macon Area,G1301210001300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,32869.0,,1772.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027321660166246516,0.0005163511904417809,0.0,0.0032484868334669956,0.002120229108752266,0.0009245419932857275,0.00020371573142900142,0.0,0.0,0.001603877918310485,0.0009245419932857275,0.00020371573142900142,0.0,0.0,0.0005163511904417809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4498566584415616e-05,0.0,0.0,0.00032558600403359225,0.00011186241385348835,0.00036008457061800786,0.00019113048006707845,0.00011017556448748792,2.4276339926330742e-05,0.0,0.0,3.4498566584415616e-05,0.0,0.0,0.0,0.0,0.0,0.0002350207426951598,0.00010248257842415253,2.2581249498695456e-05,0.0,0.0 +95986,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970701,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,167351.0,,5279.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.008614437938824014,0.0008977591201429533,0.0,0.00951219705896697,0.004552199373152877,0.0027515215976937346,0.001438215996949003,0.0,0.0007702600911713539,0.004315481317833752,0.0027515215976937346,0.0007771749321251745,0.0,0.0007702600911713539,0.00023671805531912492,0.0006610410648238286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.998326154359042e-05,0.0,0.0,0.0010265656824518352,0.0003454894906910888,0.0010865489439954256,0.0005142674490908135,0.00032789343504203484,9.26144131802117e-05,0.0,9.179038513877528e-05,1.5816181318254054e-05,4.4167080225336376e-05,0.0,0.0,0.0,0.0,0.0005199836999900269,0.00031429782917884717,0.00016428297931960387,0.0,8.798443550694747e-05 +95987,85.0,Rural Climate Zone 3A,G1303190960200,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,13996.0,,1610.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,5611.956475588368,0.0,0.0,0.0006801898551574857,0.0002738454321327155,0.0,0.0009540175569287813,0.0007334164001404842,0.0001078892492410213,3.530114958732513e-05,0.0,7.74284883213706e-05,0.00045957096800776863,0.0001078892492410213,3.530114958732513e-05,0.0,7.74284883213706e-05,0.0002738454321327155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8296446808200074e-05,0.0,0.0,8.10563010683937e-05,4.43813375519293e-05,9.935274787659378e-05,5.476577232470778e-05,1.2856856658790388e-05,4.206738144231991e-06,0.0,9.226933940663539e-06,1.8296446808200074e-05,0.0,0.0,0.0,0.0,0.0,7.637902904669096e-05,1.1235740160742524e-05,3.6763120230137003e-06,0.0,8.063513111251044e-06 +95988,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,18665.0,,5860.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004381845834483518,0.004544942033932738,0.0,0.008926707007633186,0.0036177114344859316,0.0004169990582843976,0.0037959286003689664,0.0004155435641891641,0.0006803626287385923,0.0022469594399082493,0.0004169990582843976,0.0013021820505355708,0.0004155435641891641,0.0,0.001370751994577682,0.002493746549833395,0.0006803626287385923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003036656038871435,0.0,0.0,0.0005221726601707737,0.0004360132553154121,0.0008258382640579173,0.0002677640502089954,4.969264455620373e-05,0.0001551774962057601,4.951919728026585e-05,0.0,9.158537757031786e-05,0.0001666170979393938,4.545772574779699e-05,0.0,0.0,0.0,0.00033468607498415913,3.8577918835344406e-05,0.0003511735159601333,3.844326641358055e-05,6.294252648450411e-05 +95989,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5478.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003811035310048732,0.0,0.0,0.0003811035310048732,0.0001518828615673311,0.0001411414993631351,8.81098596807047e-05,0.0,0.0,0.0001518828615673311,0.0001411414993631351,8.81098596807047e-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,4.5416570766928485e-05,1.8270785552166853e-05,4.5416570766928485e-05,1.8100065125264058e-05,1.6820003942430673e-05,1.0500159016898991e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8100065125264058e-05,1.6820003942430673e-05,1.0500159016898991e-05,0.0,0.0 +95990,50.0,the Greater Atlanta and Macon Area,G1300210013407,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,43825.0,,3330.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.010288160012157991,0.0025827742719918443,0.0,0.012870934284149836,0.003489870536454589,0.0006624115348973792,0.007853199251615414,0.0004238722248452225,0.00044158073633723,0.003489870536454589,0.0006624115348973792,0.00527042497962357,0.0004238722248452225,0.00044158073633723,0.0,0.0025827742719918443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017256634355819884,0.0,0.0,0.0012260169940292779,0.000496797211633379,0.0013985833375874765,0.000415880058202743,7.893809951103758e-05,0.0006280647446325583,5.051190400840564e-05,5.262218767453323e-05,0.0,0.00017256634355819884,0.0,0.0,0.0,0.0,0.00037921682100680956,7.197905877540682e-05,0.000853345481966249,4.605886549080599e-05,4.798311034820516e-05 +95991,50.0,the Greater Atlanta and Macon Area,G1300630040416,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,NaturalGas,38706.0,,18142.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007668873060757257,0.012479705276542415,0.0,0.020148578337299675,0.009433471227625351,0.0006611146928219026,0.005019752491353633,0.0003762429679478956,0.004658068677521907,0.003917416536843691,0.0006611146928219026,0.00218136291843981,0.0003762429679478956,0.0005328076646749745,0.0055160546907816604,0.0028383895729138225,0.004125261012846933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008338205870094792,0.0,0.0,0.0009138883359711567,0.0010870895281746003,0.001747708922980636,0.00046683277344643643,7.878406667086379e-05,0.0002599498142541031,4.483632173523015e-05,6.34939066281023e-05,0.0003685503670418609,0.0001896445154275551,0.00027562570454006327,0.0,0.0,0.0,0.0008182692378191638,5.734578531625044e-05,0.0004354186222683538,3.263571162606312e-05,0.0004040457870166885 +95992,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,3755.0,,976.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009015898108321902,0.0007742209172736568,0.0,0.0016758107281058471,0.001309666512661933,0.0001827826329638694,0.0001550757632612014,0.0,2.820311214510383e-05,0.0005637314146071194,0.0001827826329638694,0.0001550757632612014,0.0,0.0,0.0007459350980548136,0.0,2.820311214510383e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.17274029681075e-05,0.0,0.0,0.00010744061281209282,8.696120054421719e-05,0.00015916801578020034,6.717871910166267e-05,2.17818323378337e-05,1.8480061372596464e-05,0.0,0.0,4.983756515002259e-05,0.0,1.8843119765115538e-06,0.0,0.0,0.0,0.00012439174463920008,1.736064134213023e-05,1.4729050912440805e-05,0.0,2.678723392609235e-06 +95993,50.0,the Greater Atlanta and Macon Area,G1302470060307,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,13872.0,,935.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031980344202777997,0.0007415516231466302,0.0,0.00393958604342443,0.0023187755193552232,0.0005208064433364189,0.0009491463782322919,0.0,0.00015085770250049672,0.0017281643057828287,0.0005208064433364189,0.0009491463782322919,0.0,0.0,0.0005906112135723943,0.0,0.00015085770250049672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.954417429716306e-05,0.0,0.0,0.000381107982747372,0.00017007851296747968,0.00043065215704453505,0.0002059443789150009,6.206421411953868e-05,0.00011310924586879875,0.0,0.0,3.945961952443023e-05,0.0,1.007902898929572e-05,0.0,0.0,0.0,0.0002534747732643459,5.693146837086553e-05,0.00010375504701033075,0.0,1.6490868398992963e-05 +95994,35.0,Eastern Counties in South Carolina and Georgia,G1300730030102,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,19218.0,,745.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0016539856418083944,0.0002193386162096818,0.0,0.0018733242580180759,0.0009290357618440586,0.0004429430876947443,0.0005013760980855704,0.0,0.0,0.0007096971456343769,0.0004429430876947443,0.0005013760980855704,0.0,0.0,0.0002193386162096818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4654352287880798e-05,0.0,0.0,0.00019710318596977423,6.9819826384882e-05,0.00021175753825765503,8.457362926394455e-05,5.2784916374768075e-05,5.974829756908377e-05,0.0,0.0,1.4654352287880798e-05,0.0,0.0,0.0,0.0,0.0,0.00010501669694362365,5.0069568809042034e-05,5.6674741608350284e-05,0.0,0.0 +95995,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,49797.0,,4562.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004375048894587914,0.0013427930339496876,0.0,0.005717841928537601,0.0019542527498251174,0.0014793310923681673,0.002284227396738018,0.0,0.0,0.0006114597158754303,0.0014793310923681673,0.002284227396738018,0.0,0.0,0.0013427930339496876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.971765370545872e-05,0.0,0.0,0.000521367101354994,0.000240616764722677,0.0006110847550604527,7.286660957222252e-05,0.00017628935862326053,0.0002722074759315661,0.0,0.0,8.971765370545872e-05,0.0,0.0,0.0,0.0,0.0,0.00020885748117533757,0.00015810102649415494,0.00024412296749081909,0.0,0.0 +95996,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,21982.0,,5906.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,22700.572550927158,0.0,0.0,0.0048684233525106944,0.004062936358034366,0.0,0.00893135971054506,0.0032391607709490577,0.0003612534940056329,0.0030232836581920684,0.00036254445348391385,0.001945117333914387,0.002198073671686448,0.0003612534940056329,0.0017044968311570124,0.00036254445348391385,0.0002420549021776873,0.00104108709926261,0.0013187868270350559,0.0017030624317366995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027146073208016906,0.0,0.0,0.0005801598207549572,0.0004257495104590686,0.0008516205528351262,0.0002619398386367014,4.304982273600447e-05,0.00020312131966326822,4.32036636749062e-05,2.8845176044076844e-05,6.955911715579407e-05,8.811332641641922e-05,0.00011378828850795575,0.0,0.0,0.0,0.0003088595662786426,3.444614372831288e-05,0.0002882753112414733,3.456923894115973e-05,0.00018547029264553768 +95997,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,10520.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021570004831211378,0.0,0.0,0.0021570004831211373,0.0013681404137956235,0.00032470797150052096,0.00039980599445581206,0.0,6.434610336918116e-05,0.0013681404137956235,0.00032470797150052096,0.00039980599445581206,0.0,6.434610336918116e-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.0002570459209656651,5.83088174643179e-05,0.0002570459209656651,0.0001630388659744644,3.869487291837427e-05,4.764417108696414e-05,0.0,7.668010985862244e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016303886597446443,3.869487291837428e-05,4.764417108696415e-05,0.0,7.668010985862246e-06 +95998,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,62217.0,,6922.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012818653859562195,0.004761919195552511,0.0,0.017580501335143685,0.008376390574826262,0.0010725004465674476,0.004401382901257035,0.00036849721107820956,0.0033618019213857526,0.004558449637781222,0.0010725004465674476,0.003457404642749562,0.00036849721107820956,0.0033618019213857526,0.0038179409370450385,0.0009439782585074724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003181620874124439,0.0,0.0,0.0015275712337951498,0.0007533641980341406,0.0018457333212075935,0.0005432205763309643,0.00012780755673395176,0.00041201142754270523,4.3913015012641715e-05,0.0004006186581748867,0.00025509127901250135,6.307080839994256e-05,0.0,0.0,0.0,0.0,0.0008794165138226249,0.00011259916731057109,0.00046209029682241795,3.868761011379659e-05,0.00035294726284042466 +95999,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,133087.0,,18839.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.029952411495249645,0.012959225002752789,0.0,0.042911636498002434,0.014240358845004655,0.003833360730813395,0.015282378303890464,0.00037172460977391206,0.009183814008520011,0.014240358845004655,0.003833360730813395,0.002323153301137673,0.00037172460977391206,0.009183814008520011,0.0,0.012959225002752789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008658605181907189,0.0,0.0,0.003569373676006956,0.0017361371092964699,0.004435234194197674,0.0016969973187739417,0.00045681453345999037,0.0002768458973570321,4.4297736663419894e-05,0.0010944181897525722,0.0,0.0008658605181907189,0.0,0.0,0.0,0.0,0.0014718461387495684,0.0003962061104984799,0.0015795465368754905,3.842048065845238e-05,0.0009492149274156833 +96000,35.0,Eastern Counties in South Carolina and Georgia,G1300510004210,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,155311.0,,4291.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.007589392554046502,0.0007296930242422731,0.0,0.008319085578288775,0.003605078926816497,0.0018191350816974174,0.0012744938395962354,0.0,0.0016203777301786258,0.00340474357313132,0.0018191350816974174,0.0007451361690391392,0.0,0.0016203777301786258,0.0002003353536851766,0.0005293576705570963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.875393144838768e-05,0.0,0.0,0.0009044122764220275,0.00030744924112275057,0.0009531662078704151,0.0004057362777956653,0.0002167825802448341,8.879634227455556e-05,0.0,0.00019309707610697262,1.3385267195610067e-05,3.53686642527776e-05,0.0,0.0,0.0,0.0,0.0004130549418454301,0.00020842892780798078,0.0001460262006695251,0.0,0.0001856561375474792 +96001,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,26580.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0023553045249234982,0.0,0.0,0.0023553045249234982,0.0007139630009097575,0.0006611768780777087,0.0009801646459360316,0.0,0.0,0.0007139630009097575,0.0006611768780777087,0.0009801646459360316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002806774077721351,9.795484753593266e-05,0.0002806774077721351,8.508168783273328e-05,7.879126043106972e-05,0.00011680445950833202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.508168783273328e-05,7.879126043106972e-05,0.00011680445950833202,0.0,0.0 +96002,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,33716.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002635000872023284,0.0,0.0,0.002635000872023284,0.0015463199473759457,0.0009001519929372131,0.00018852893171012556,0.0,0.0,0.0015463199473759457,0.0009001519929372131,0.00018852893171012556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031400965597990475,6.619188137636922e-05,0.00031400965597990475,0.0001842729540873163,0.0001072699522162975,2.246674967629095e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001842729540873163,0.0001072699522162975,2.246674967629095e-05,0.0,0.0 +96003,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,154509.0,,16055.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.013766559455385727,0.004725831094570656,0.0,0.018492390549956387,0.011447284528255733,0.0025862438123137113,0.004458831519780642,0.0,0.0,0.006721453433685078,0.0025862438123137113,0.004458831519780642,0.0,0.0,0.004725831094570656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003157524506882732,0.0,0.0,0.0016405357844536965,0.0008391689742447838,0.0019562882351419697,0.0008009833478898508,0.0003081979586237666,0.0005313508207156649,0.0,0.0,0.0003157524506882732,0.0,0.0,0.0,0.0,0.0,0.0012109947595175682,0.00027359568951186586,0.0004716945394951996,0.0,0.0 +96004,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,41245.0,,1604.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0034997199437648346,0.0004722516617090504,0.0,0.003971971605473885,0.0012447397418285271,0.0014914534868557597,0.0012358090663958955,0.0,0.0,0.0007724880801194769,0.0014914534868557597,0.0012358090663958955,0.0,0.0,0.0004722516617090504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1553510577419564e-05,0.0,0.0,0.0004170541060320072,0.00015577146267183799,0.0004486076166094268,9.205574470282766e-05,0.00017773330741996813,0.00014726871112365276,0.0,0.0,3.1553510577419564e-05,0.0,0.0,0.0,0.0,0.0,0.0001405850253589886,0.00016844969211262918,0.00013957636532349794,0.0,0.0 +96005,50.0,the Greater Atlanta and Macon Area,G1301510070104,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,49270.0,,2852.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0042648732079791606,0.0008394528010610641,0.0,0.005104295319433926,0.0016894321370822404,0.001293106561353707,0.0021217873106042775,0.0,0.0,0.0008499793360211763,0.001293106561353707,0.0021217873106042775,0.0,0.0,0.0008394528010610641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6086748305739325e-05,0.0,0.0,0.0005082349081362863,0.00021935653313046933,0.0005643216564420256,0.0001012900381076405,0.00015409646720340243,0.00025284840282524345,0.0,0.0,5.6086748305739325e-05,0.0,0.0,0.0,0.0,0.0,0.00018678056075924164,0.00014296352209105793,0.00023458096657907846,0.0,0.0 +96006,50.0,the Greater Atlanta and Macon Area,G1300670031404,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,3170.0,,380.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0007021003489729807,0.0003013845767060362,0.0,0.0010034849256790167,0.0005736562634558362,0.00019427891621363313,0.00019105334033780015,0.0,4.44964056717474e-05,0.0002722716867498001,0.00019427891621363313,0.00019105334033780015,0.0,4.44964056717474e-05,0.0003013845767060362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0135231172362922e-05,0.0,0.0,8.366710334950143e-05,4.331669492152491e-05,0.00010380233452186436,3.2445765605673075e-05,2.3151610998701712e-05,2.2767229206896963e-05,0.0,5.302497538229682e-06,2.0135231172362922e-05,0.0,0.0,0.0,0.0,0.0,5.934006364820335e-05,2.0096569998504856e-05,1.9762910471071188e-05,0.0,4.602790404084978e-06 +96007,81.0,the Columbus-Albany Area,G1302150010205,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,233350.0,,6410.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,480687.657779034,0.0,0.0,0.01892730848963505,0.0018673992670324197,0.0,0.02079470775666747,0.013184025319149431,0.00498989641003162,0.002620786027486416,0.0,0.0,0.011316626052117012,0.00498989641003162,0.002620786027486416,0.0,0.0,0.0018673992670324197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012476812323788074,0.0,0.0,0.0022555310139401367,0.0006174534312053146,0.0023802991371780174,0.0013485805997028482,0.0005946363750206874,0.00031231403921660057,0.0,0.0,0.00012476812323788074,0.0,0.0,0.0,0.0,0.0,0.0015091303257985169,0.0005711763905697425,0.00029999242080975766,0.0,0.0 +96008,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,75197.0,,7727.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.01528639462226734,0.005315525651822012,0.0,0.02060192027408935,0.009513797595162838,0.0010954508372924435,0.0061664831079222375,0.0003678517313390691,0.003458337002372765,0.009513797595162838,0.0010954508372924435,0.0008509574561002251,0.0003678517313390691,0.003458337002372765,0.0,0.005315525651822012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035515000881976495,0.0,0.0,0.0018216541678948489,0.0009382563989595417,0.0021768041767146135,0.0011337434018935323,0.00013054305039141375,0.00010140718167435667,4.383627769134221e-05,0.00041212425624420385,0.0,0.00035515000881976495,0.0,0.0,0.0,0.0,0.0010052302924215312,0.0001157456162473726,0.0006515521857371411,3.886730821872292e-05,0.0003654087740898459 +96009,50.0,the Greater Atlanta and Macon Area,G1302190030200,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,14261.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0031069739320908223,0.0,0.0,0.0031069739320908223,0.0016011262405192523,0.0007506494012579541,0.0006535512966880072,0.0,0.00010164699362560883,0.0016011262405192523,0.0007506494012579541,0.0006535512966880072,0.0,0.00010164699362560883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003702558416417955,0.00011312495833368984,0.0003702558416417955,0.0001908050587856977,8.945434751479891e-05,7.788323645459906e-05,0.0,1.2113198886699855e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0001908050587856977,8.945434751479891e-05,7.788323645459906e-05,0.0,1.2113198886699855e-05 +96010,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6759.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013027191184678312,0.0,0.0,0.0013027191184678312,0.0008413790611499745,0.00024977536269270837,0.0001707074001979305,0.0,4.085729442721787e-05,0.0008413790611499745,0.00024977536269270837,0.0001707074001979305,0.0,4.085729442721787e-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.00015524637858632955,4.440218689639985e-05,0.00015524637858632955,0.00010026800897458768,2.9765987132925853e-05,2.0343376636542705e-05,0.0,4.869005842273304e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010026800897458768,2.9765987132925853e-05,2.0343376636542705e-05,0.0,4.869005842273304e-06 +96011,50.0,the Greater Atlanta and Macon Area,G1302190030400,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,75595.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006694968303450162,0.0,0.0,0.00669496830345016,0.002872639218283874,0.0015391144454360924,0.0022832453293364914,0.0,0.0,0.002872639218283874,0.0015391144454360924,0.0022832453293364914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007978253356880504,0.00025848570598206434,0.0007978253356880504,0.0003423263927115098,0.00018341304147169348,0.00027208955872088395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003423263927115099,0.00018341304147169354,0.000272089558720884,0.0,0.0 +96012,50.0,the Greater Atlanta and Macon Area,G1300890022500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,DistrictHeating,285780.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.06921091444372975,0.009974358547829461,0.042974018345779956,0.0,0.0,0.12215934593123054,0.08938739725419889,0.013405693808436557,0.018850451782898264,0.0,0.0005157484918054357,0.010717872754445133,0.013405693808436557,0.018850451782898264,0.0,0.0,0.0,0.0,0.0,0.009458610056024028,0.0,0.0005157484918054357,0.06921091444372975,0.0,0.0,0.0,0.0,0.0,0.0,0.005121134037814718,0.0013641244242292158,0.005121134037814718,0.0012772290115882524,0.0015975316599558375,0.002246373366270628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003747276470257478,0.0005619901968168218,0.0007902440007163274,0.0,2.1621081352410745e-05 +96013,50.0,the Greater Atlanta and Macon Area,G1300890020900,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,16978.0,,1452.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014038373924134514,0.00042307386656844514,0.0,0.0018269112589818963,0.0011043840755566563,0.0005587831088563203,0.00016374407456892009,0.0,0.0,0.0006813102089882111,0.0005587831088563203,0.00016374407456892009,0.0,0.0,0.00042307386656844514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8267324530869818e-05,0.0,0.0,0.00016729259721991177,7.312872785085856e-05,0.0001955599217507816,8.119042489538591e-05,6.658910645091234e-05,1.9513065873613548e-05,0.0,0.0,2.8267324530869818e-05,0.0,0.0,0.0,0.0,0.0,0.00011821770889902275,5.9814389180839424e-05,1.7527823670919464e-05,0.0,0.0 +96014,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,21867.0,,1491.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0052505758692661915,0.0011826284473983567,0.0,0.0064332870237382885,0.004084819664910654,0.001188004407191412,0.001020439875795575,0.0,0.00014002307584064745,0.0030421315862792057,0.001188004407191412,0.001020439875795575,0.0,0.0,0.0010426880786314485,0.0,0.00014002307584064745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.901780499121134e-05,0.0,0.0,0.0006257040278732055,0.0002534156672143118,0.0007047218328644168,0.0003625267083553691,0.00014157287909348382,0.00012160444042435279,0.0,0.0,6.966763182909304e-05,0.0,9.35569926918811e-06,0.0,0.0,0.0,0.0004474635735284979,0.00013013761708403378,0.00011178208852567592,0.0,1.5338553726209214e-05 +96015,35.0,Eastern Counties in South Carolina and Georgia,G1302450010106,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,221108.0,,24710.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.011381579984928815,0.004202131117275355,0.0,0.015583711102204176,0.006919840915741049,0.003605788141273298,0.002997672205288327,0.0,0.0020604098399014965,0.00548969223323817,0.003605788141273298,0.0019366696475509478,0.0,0.0003494122325049806,0.001430148682502879,0.0010610025577373796,0.0017109976073965156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002807618249929182,0.0,0.0,0.0013563213720487498,0.0006505974468914937,0.0016370831970416678,0.0006541962461952096,0.00042969495672524584,0.00023078926098571006,0.0,4.163879524893012e-05,9.555417070638125e-05,7.088998560940925e-05,0.00011431885331618129,0.0,0.0,0.0,0.0007269356583335791,0.0003787913635883369,0.00031490822470536226,0.0,0.000216447950414389 +96016,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,61668.0,,4396.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.0054945443531155165,0.0012939044911174469,0.0,0.006788418154626666,0.0020243478106090704,0.0025884841535734433,0.0021755861904441502,0.0,0.0,0.000730443319491624,0.0025884841535734433,0.0021755861904441502,0.0,0.0,0.0012939044911174469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.645019829320423e-05,0.0,0.0,0.0006547731086383747,0.0002637710865251509,0.000741223306931579,8.704536941565916e-05,0.0003084641249524959,0.0002592599570554211,0.0,0.0,8.645019829320423e-05,0.0,0.0,0.0,0.0,0.0,0.0002210373233323423,0.00028263503227832817,0.00023755095132090828,0.0,0.0 +96017,50.0,the Greater Atlanta and Macon Area,G1300150960803,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,41975.0,,5946.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004344083081833532,0.0017501361783390965,0.0,0.006094188570566331,0.002507678420191592,0.0013840398648138,0.0022025009751672356,0.0,0.0,0.0007575422418524955,0.0013840398648138,0.0022025009751672356,0.0,0.0,0.0017501361783390965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011693325973015878,0.0,0.0,0.0005176748046282682,0.0002662979911558089,0.000634608064358427,9.027463901153785e-05,0.0001649329796687058,0.0002624671859480245,0.0,0.0,0.00011693325973015878,0.0,0.0,0.0,0.0,0.0,0.00026113286942863615,0.00014412466063923625,0.0002293537301010259,0.0,0.0 +96018,50.0,the Greater Atlanta and Macon Area,G1300130180501,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,114571.0,,5191.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.010552436987827317,0.0015279434287437284,0.0,0.012080380416571045,0.007007235047529286,0.002736070470259096,0.0023370442091763645,0.0,0.0,0.0054792916187855565,0.002736070470259096,0.0023370442091763645,0.0,0.0,0.0015279434287437284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010208806339081205,0.0,0.0,0.0012575139833079084,0.000513759733445344,0.0013596020466987205,0.000652956832359473,0.00032605234976864494,0.00027850114395737755,0.0,0.0,0.00010208806339081205,0.0,0.0,0.0,0.0,0.0,0.0007886383361943852,0.0003079345917098273,0.00026302566479305303,0.0,0.0 +96019,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,53017.0,,2323.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003221606670023595,0.00039508564352303655,0.0,0.0036166923135466313,0.0015344741290984698,0.0009023512837507472,0.00045219513765702674,0.0,0.0007276894934018072,0.0011393884855754332,0.0009023512837507472,0.00045219513765702674,0.0,0.0007276894934018072,0.00039508564352303655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6396791911286048e-05,0.0,0.0,0.00038391326754272907,0.00013207275321814343,0.0004103100594540151,0.00013577894550814996,0.00010753163414998405,5.388730861535367e-05,0.0,8.671749216559539e-05,2.6396791911286044e-05,0.0,0.0,0.0,0.0,0.0,0.00017408452711965082,0.0001023708341175156,5.130107781685337e-05,0.0,8.255563189144039e-05 +96020,35.0,Eastern Counties in South Carolina and Georgia,G1300730030603,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,106762.0,,3503.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.005178808076098963,0.0005957401437137742,0.0,0.005774548219812737,0.002720156588341661,0.0005163435852747777,0.0020036372226344868,0.0,0.0005343930932003914,0.0026973021524712127,0.0005163435852747777,0.0014307515147911612,0.0,0.0005343930932003914,2.285443587044806e-05,0.000572885707843326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.980354183723464e-05,0.0,0.0,0.0006171489755295627,0.0001982935598515823,0.0006569525173667973,0.0003214325064050671,6.15317096117661e-05,0.00017050001054602932,0.0,6.36826360723381e-05,1.5269870663153407e-06,3.827655477091929e-05,0.0,0.0,0.0,0.0,0.00030946381436587687,5.8742815067091634e-05,0.00022794761896407378,0.0,6.0796251841293234e-05 +96021,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,125516.0,,32732.0,,7.614023970037612,Education,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,285525.89887641044,0.0,0.0,0.026297663083823652,0.022656836786955088,0.0,0.048954499870778746,0.043897540086824914,0.00200314004999367,0.0017014818949706648,0.000727876591282781,0.0006243890806839798,0.0220641290292508,0.00200314004999367,0.000878128332612421,0.000727876591282781,0.0006243890806839798,0.021833411057574113,0.0008233535623582437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015137959586411095,0.0,0.0,0.003133840607624426,0.00248986560517582,0.0046476365662655355,0.0026293387098058982,0.00023871024628383978,0.00010464482028972015,8.6739616818057e-05,7.440721442691147e-05,0.0014587795168889356,5.501161997813798e-05,0.0,0.0,0.0,0.0,0.004167539511488613,0.0001901738750937311,0.00016153508855729713,6.910306244173981e-05,5.927817729981486e-05 +96022,50.0,the Greater Atlanta and Macon Area,G1300890023313,ComStock 90.1-2004,gen5_led,100001_200000,Electricity,135353.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011097914050162685,0.0,0.0,0.011097914050162683,0.004110535177908012,0.0023132904539019425,0.004674119107959026,0.0,0.0,0.004110535177908012,0.0023132904539019425,0.004674119107959026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001322518470385484,0.0004431209043169714,0.001322518470385484,0.0004898450890303063,0.00027567066557042684,0.0005570063730099728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004898450890303064,0.0002756706655704269,0.0005570063730099729,0.0,0.0 +96023,35.0,Eastern Counties in South Carolina and Georgia,G1301790010205,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13930.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016107119781839793,0.0,0.0,0.0016107119781839788,0.0010641998035005105,0.0004450643525613775,0.00010144782212209109,0.0,0.0,0.0010641998035005105,0.0004450643525613775,0.00010144782212209109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019194576418813918,5.080358603381983e-05,0.00019194576418813918,0.00012681885234508452,5.303755011594953e-05,1.2089361727105127e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012681885234508454,5.3037550115949546e-05,1.208936172710513e-05,0.0,0.0 +96024,85.0,Rural Climate Zone 3A,G1301470960500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,20356.0,,1802.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0009925101715717157,0.00030638064533851237,0.0,0.001298890816910228,0.0006820338127451712,0.0004026565078493992,5.4786816787963166e-05,0.0,0.00015941367952769476,0.0004874430961600916,0.0004026565078493992,5.4786816787963166e-05,0.0,4.762375077426183e-05,0.00019459071658507951,0.0,0.00011178992875343291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0470784443591368e-05,0.0,0.0,0.00011827447759780019,4.89517082158229e-05,0.00013874526204139156,5.808714027151243e-05,4.7983375366144605e-05,6.5287815887885e-06,0.0,5.675180371354664e-06,1.3001554355811072e-05,0.0,7.4692300877802994e-06,0.0,0.0,0.0,7.285366778981421e-05,4.301106911135989e-05,5.85223265319692e-06,0.0,1.7028292487020552e-05 +96026,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,7686.0,,224.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015779682598722465,0.00017782020853951094,0.0,0.0017557884684117574,0.0013395237662818232,0.0002384444935904233,0.00014870731858327476,0.0,2.919559702997552e-05,0.0011908164476985483,0.0002384444935904233,0.00014870731858327476,0.0,0.0,0.00014870731858327474,0.0,2.919559702997552e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1883353809983867e-05,0.0,0.0,0.00018804085844048552,6.905978136258092e-05,0.0001999242122504694,0.00014190535561749097,2.8414581208864178e-05,1.772092161413035e-05,0.0,0.0,9.937800069930694e-06,0.0,1.951080881360142e-06,0.0,0.0,0.0,0.0001525259099160866,2.7150666725616057e-05,1.6932673871889587e-05,0.0,3.3243792418114697e-06 +96027,85.0,Rural Climate Zone 3A,G1302370960202,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,139140.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01239718922238223,0.0,0.0,0.012397189222382228,0.004768489647324463,0.0029545497774924427,0.004674119107959026,0.0,0.0,0.004768489647324463,0.0029545497774924427,0.004674119107959026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014773482014256859,0.00045884138277392874,0.0014773482014256859,0.0005682513574345599,0.0003520877774391481,0.000557005409333083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00056825135743456,0.00035208777743914817,0.0005570054093330831,0.0,0.0 +96028,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,55086.0,,4608.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.00490812735597901,0.0013562657711143791,0.0,0.00626439312709339,0.002571328663653028,0.0013560202542639978,0.0023370442091763645,0.0,0.0,0.0012150628925386487,0.0013560202542639978,0.0023370442091763645,0.0,0.0,0.0013562657711143791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.061686481378135e-05,0.0,0.0,0.0005848920672500565,0.00025375519846673126,0.0006755089320638378,0.00014479670055627682,0.00016159431738934867,0.00027850104930443104,0.0,0.0,9.061686481378135e-05,0.0,0.0,0.0,0.0,0.0,0.0002772743415570601,0.0001462238680157391,0.00025201072249103867,0.0,0.0 +96029,85.0,Rural Climate Zone 3A,G1300690010300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,124926.0,,14414.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.033446090973797075,0.012748942978638584,0.0,0.04619503395243566,0.034808877535279045,0.006874519542481832,0.0010933277488787557,0.0006599066608448359,0.0027582180304456462,0.02393876886464112,0.006874519542481832,0.0010933277488787557,0.0006599066608448359,0.0008794759396977643,0.01087010867063793,0.0,0.0018787420907478822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000851807091103666,0.0,0.0,0.003985706997736337,0.0017552393553068384,0.004837514088840002,0.0028527375188850293,0.0008192234084399006,0.00013028978671795596,7.863982066073657e-05,0.00010480547367823431,0.0007262747713462277,0.0,0.00012552615835959024,0.0,0.0,0.0,0.0036451631503723633,0.0007198952418782315,0.00011449257498904467,6.910499887159275e-05,0.000288838808866593 +96030,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,62050.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005886980669425621,0.0,0.0,0.005886980669425621,0.0039784251751550466,0.0013879823735069448,0.0005205427471641907,0.0,0.0,0.0039784251751550466,0.0013879823735069448,0.0005205427471641907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000701539000786538,0.0001914279347455445,0.000701539000786538,0.000474100490354522,0.00016540291570456156,6.203197517002815e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000474100490354522,0.00016540291570456156,6.203197517002815e-05,0.0,0.0 +96031,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300030960100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,27991.0,,5765.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0013575783132106032,0.0009804712561674999,0.0,0.0023380495693781024,0.0009238227514304314,0.00032551170531074943,0.0006550659330252709,0.0,0.0004336491796116514,0.000824710031092336,0.00032551170531074943,0.000124573519337291,0.0,8.278305747022653e-05,9.911272033809517e-05,0.0005304924136879798,0.0003508661221414249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.5509918214056e-05,0.0,0.0,0.00016177936647304944,0.00010455195289438725,0.00022728928468710544,9.82787254744465e-05,3.8790452788093125e-05,1.4845128889871033e-05,0.0,9.865059320638748e-06,6.622189240611459e-06,3.5444705201984774e-05,2.344302377145978e-05,0.0,0.0,0.0,8.98077675941437e-05,3.164403510787817e-05,6.368105676211487e-05,0.0,4.215642522296879e-05 +96032,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,642216.0,,,,7.614023970037612,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,2664908.3895131643,0.0,0.0,0.1345552695512158,0.0,0.0,0.1345552695512158,0.1065975484434701,0.01384040812076002,0.005625491589042639,0.0008070438152206365,0.00768484974974514,0.1065975484434701,0.01384040812076002,0.005625491589042639,0.0008070438152206365,0.00768484974974514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01603469231158778,0.004094765618997142,0.01603469231158778,0.012703024535282286,0.0016493347783656722,0.0006703789976608068,9.617385704918221e-05,0.0009157887432349337,0.0,0.0,0.0,0.0,0.0,0.0,0.012703024535282286,0.0016493347783656722,0.0006703789976608068,9.617385704918221e-05,0.0009157887432349337 +96033,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2004,gen5_led,25001_50000,Electricity,72692.0,,7552.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007020766389238021,0.0022000509280746773,0.0,0.00922078694371326,0.007251271635371119,0.0012880836049561793,0.0006814620769853999,0.0,0.0,0.005051220707296441,0.0012880836049561793,0.0006814620769853999,0.0,0.0,0.0022000509280746773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014699382786550623,0.0,0.0,0.0008366500015483019,0.0003146245396892719,0.0009836438294138082,0.0006019433745948997,0.00015349822089692007,8.120840605648225e-05,0.0,0.0,0.00014699382786550623,0.0,0.0,0.0,0.0,0.0,0.0007735422847395074,0.0001374086070439022,7.269617778808219e-05,0.0,0.0 +96034,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,68387.0,,4845.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006695950370851686,0.0014260846254416529,0.0,0.008122034996293338,0.0040963258901921765,0.0015262248107910572,0.0024995149849164028,0.0,0.0,0.002670241264750524,0.0015262248107910572,0.0024995149849164028,0.0,0.0,0.0014260846254416529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.528271161904792e-05,0.0,0.0,0.000797941958453033,0.00034671015790921567,0.0008932246700720811,0.0003182068901843017,0.00018187691770590647,0.0002978618077769912,0.0,0.0,9.528271161904794e-05,0.0,0.0,0.0,0.0,0.0,0.00045049539228093265,0.00016784730103931093,0.00027488535185591837,0.0,0.0 +96035,50.0,the Greater Atlanta and Macon Area,G1302970110506,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,37332.0,,1427.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.001838780322150836,0.00024260453531058248,0.0,0.002081384857461418,0.0011156120709111424,0.0003215932954369178,0.00040425224037720395,0.0,0.00023996271145899461,0.0010599210056907566,0.0003215932954369178,0.00040425224037720395,0.0,5.304924136879799e-05,5.569106522038584e-05,0.0,0.00018691347009019665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.620965706183057e-05,0.0,0.0,0.00021912406643254657,7.303899180427083e-05,0.00023533372349437715,0.00012630883530043618,3.83236810752645e-05,4.817399539728914e-05,0.0,6.321780448626715e-06,3.7210065651691745e-06,0.0,1.2488650496661395e-05,0.0,0.0,0.0,0.0001261377210858559,3.636124640509932e-05,4.570715724094522e-05,0.0,2.713160816223476e-05 +96036,50.0,the Greater Atlanta and Macon Area,G1301210002800,ComStock 90.1-2004,gen4_led,200001_500000,NaturalGas,627631.0,,56619.0,,9.525004485617233,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.15680974708719858,0.04902671051098748,0.0,0.20583645759818603,0.06846472590800178,0.01346547664292191,0.07870965755160787,0.000670055363578114,0.044526632411699595,0.05890050262351439,0.01346547664292191,0.06130076696620521,0.000670055363578114,0.022473035770602154,0.009564223284487389,0.017408890585402646,0.022053596641097444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003275678519814591,0.0,0.0,0.01868671309597491,0.008845548974735164,0.021962391615789497,0.007019058535451109,0.001604654706744151,0.007305093376776504,7.984919668699316e-05,0.0026780680387635605,0.0006390255525033565,0.0011631604150073602,0.001473492552303874,0.0,0.0,0.0,0.007305067041109414,0.0014367429112213973,0.008398183408634066,7.149374056898092e-05,0.004750914146934241 +96037,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,31007.0,,6901.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004259748043727444,0.002031406420057543,0.0,0.00629112377417869,0.0026018034427066463,0.00124363491600181,0.002445685415470233,0.0,0.0,0.0005703970226491039,0.00124363491600181,0.002445685415470233,0.0,0.0,0.002031406420057543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001357258820320246,0.0,0.0,0.0005076252746910368,0.00028163141593039127,0.0006433511567230614,6.797302148693171e-05,0.0001482013746752897,0.00029144722131255115,0.0,0.0,0.0001357258820320246,0.0,0.0,0.0,0.0,0.0,0.0002660690386193983,0.0001271782260960848,0.00025010389200757826,0.0,0.0 +96038,50.0,the Greater Atlanta and Macon Area,G1300570091101,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,354169.0,,105523.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,2664908.3895131643,0.0,0.0,0.09214285462520867,0.07304147054722925,0.0,0.16518432517243795,0.12790724341707244,0.019773259059621552,0.010754690562751974,0.0007914557383103568,0.005957676394681608,0.05486577286984318,0.019773259059621552,0.010754690562751974,0.0007914557383103568,0.005957676394681608,0.07304147054722925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00488020573174306,0.0,0.0,0.010980487529844325,0.0077571351315102455,0.01586069326158739,0.006538249083589423,0.0023563414158557614,0.001281615878865171,9.431626467716378e-05,0.0007099648868568049,0.00488020573174306,0.0,0.0,0.0,0.0,0.0,0.012281416845427653,0.0018985917483343054,0.0010326454883720381,7.599411555763223e-05,0.0005720450638957574 +96039,50.0,the Greater Atlanta and Macon Area,G1300590001700,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,18560.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0041226167976095174,0.0,0.0,0.004122616797609518,0.00212565450217394,0.0005834156981570746,0.0013141326946438554,0.0,9.941390263464753e-05,0.00212565450217394,0.0005834156981570746,0.0013141326946438554,0.0,9.941390263464753e-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.0004912889748165979,0.00015422599694593585,0.0004912889748165979,0.0002533125615247238,6.952518614043818e-05,0.00015660415120292347,0.0,1.1847075948512435e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00025331256152472375,6.952518614043817e-05,0.00015660415120292344,0.0,1.1847075948512431e-05 +96040,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5761.0,,257.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001383358515363656,0.00020370752261991416,0.0,0.0015869833309098307,0.000686551419109991,0.0002418354836137349,0.0006160849922841011,0.0,4.259414297574332e-05,0.00048284389649007683,0.0002418354836137349,0.0006160849922841011,0.0,4.259414297574332e-05,0.00020370752261991416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3609745937136046e-05,0.0,0.0,0.00016484845294595658,6.081136641423974e-05,0.00017845819888309266,5.753827982174428e-05,2.88184190131518e-05,7.341600657625437e-05,0.0,5.075747534806148e-06,1.3609745937136046e-05,0.0,0.0,0.0,0.0,0.0,7.720353913532169e-05,2.719469322150109e-05,6.927950403794858e-05,0.0,4.789762998998995e-06 +96041,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,3991.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010907408884739864,0.0,0.0,0.0010907408884739864,0.0006157541639891437,0.00027144461601240696,0.0001573088542521627,0.0,4.631596129401216e-05,0.0006157541639891437,0.00027144461601240696,0.0001573088542521627,0.0,4.631596129401216e-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.00012997827224595733,3.839514862589929e-05,0.00012997827224595733,7.337642075152806e-05,3.23467310821377e-05,1.874572898178729e-05,0.0,5.519247229127698e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.337642075152806e-05,3.23467310821377e-05,1.874572898178729e-05,0.0,5.519247229127698e-06 +96042,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,7352.0,,1873.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,24284.436554246196,0.0,0.0,0.0006550389568181682,0.0005513080875319328,0.0,0.001206347044350101,0.0007062905993353317,0.0002609537223493668,0.00023907203305910464,0.0,0.0,0.00015498251180339907,0.0002609537223493668,0.00023907203305910464,0.0,0.0,0.0005513080875319328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.683611105186924e-05,0.0,0.0,7.805810040433329e-05,6.297443938443225e-05,0.00011489421145620254,1.8468581664256142e-05,3.109670294874653e-05,2.84891586464466e-05,0.0,0.0,3.683611105186924e-05,0.0,0.0,0.0,0.0,0.0,6.726812309079691e-05,2.4853604355655094e-05,2.2769561087916392e-05,0.0,0.0 +96043,50.0,the Greater Atlanta and Macon Area,G1300630040611,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,7664.0,,788.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.000598478012411502,0.00023182928597284682,0.0,0.0008303072983843489,0.0003483577210852243,0.0002590202771526115,0.000222929300146513,0.0,0.0,0.00011652843511237748,0.0002590202771526115,0.000222929300146513,0.0,0.0,0.00023182928597284682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5490063899195433e-05,0.0,0.0,7.131985322476311e-05,3.9778608514542484e-05,8.680991712395857e-05,1.3886543392360677e-05,3.086711251817859e-05,2.6566197314223845e-05,0.0,0.0,1.5490063899195433e-05,0.0,0.0,0.0,0.0,0.0,3.642134057564419e-05,2.708097211333248e-05,2.3307604434981886e-05,0.0,0.0 +96044,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302050090300,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,21319.0,,2349.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0048615119996460255,0.0018221977464492726,0.0,0.006683709746095299,0.00293071822153572,0.00044214676181870976,0.002352967926511089,0.00042710665616796356,0.0005307701800618161,0.00293071822153572,0.00044214676181870976,0.0010615403601236322,0.00042710665616796356,0.0,0.0,0.0012914275663874564,0.0005307701800618161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012174876089305084,0.0,0.0,0.0005793351083613383,0.0002717231585198002,0.0007010838692543891,0.0003492468924428387,5.268960401383517e-05,0.00012650130239459182,5.0897309510072666e-05,0.0,0.0,8.628575372633302e-05,3.5463007166717804e-05,0.0,0.0,0.0,0.00030741599328860323,4.637872892898362e-05,0.00024681321015078536,4.480110574303063e-05,5.567483114298619e-05 +96045,81.0,the Columbus-Albany Area,G1300950000502,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,391467.0,,32448.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.028830223692378403,0.005518149463317353,0.0,0.03434835542533434,0.0220871722103567,0.004829218539979782,0.0026414515139980463,0.0,0.004790513160999806,0.01694955176383652,0.004829218539979782,0.0022609402275622936,0.0,0.004790513160999806,0.00513762044652018,0.0003805112864357532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000368690084715981,0.0,0.0,0.0034356416551459684,0.001287585081242293,0.0038043317398619497,0.002019845100656781,0.0005754885759746594,0.00026943184723404425,0.0,0.0005708761312804836,0.00034326538819906283,2.5423511879115718e-05,0.0,0.0,0.0,0.0,0.002446315966023835,0.0005348712956668736,0.0002925600864895369,0.0,0.0005305843916817035 +96046,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,39540.0,,1045.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.003522921286125898,0.000307601923921875,0.0,0.0038305232100477728,0.0007130116231145287,0.0017068024542467406,0.001410709132686504,0.0,0.0,0.0004054096991926538,0.0017068024542467406,0.001410709132686504,0.0,0.0,0.000307601923921875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.055165389259409e-05,0.0,0.0,0.000419821113761157,0.0001463086422974225,0.0004403727676537511,4.831205060269778e-05,0.00020339702454723977,0.00016811203861121947,0.0,0.0,2.055165389259409e-05,0.0,0.0,0.0,0.0,0.0,8.197076081320033e-05,0.00019622105895175556,0.00016218094788879523,0.0,0.0 +96047,50.0,the Greater Atlanta and Macon Area,G1300890021303,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,199453.0,,3482.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.017496021791895168,0.001024910091918082,0.0,0.01852093188381325,0.008935677838458035,0.005018794076288528,0.0045664599690666855,0.0,0.0,0.007910767746539954,0.005018794076288528,0.0045664599690666855,0.0,0.0,0.001024910091918082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.847847400588679e-05,0.0,0.0,0.00208496861808927,0.0006649605405875931,0.0021534470920951563,0.0009427115885377495,0.0005980804250347497,0.0005441766045167706,0.0,0.0,6.847847400588679e-05,0.0,0.0,0.0,0.0,0.0,0.0010389601116099333,0.0005835401575475554,0.0005309468229376674,0.0,0.0 +96048,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,193341.0,,8049.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.017049035474003913,0.0023448722501938782,0.0,0.01939390772419779,0.015672564694683876,0.002765364360810115,0.0009559786687038009,0.0,0.0,0.013327692444489996,0.002765364360810115,0.0009559786687038009,0.0,0.0,0.0023448722501938782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015667035139831906,0.0,0.0,0.002031701739126742,0.0006002517168982662,0.002188372090525061,0.0015882362353755782,0.00032954330992764124,0.00011392219382352223,0.0,0.0,0.00015667035139831906,0.0,0.0,0.0,0.0,0.0,0.00176846273853318,0.0003120385160840426,0.00010787083590783851,0.0,0.0 +96049,50.0,the Greater Atlanta and Macon Area,G1300890023101,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,126696.0,,7382.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006331441141655176,0.0012553982403468386,0.0,0.007586839382002016,0.0032754005865720344,0.002789127694265666,0.0007794444183869412,0.0,0.0007428134916931122,0.00279696451401333,0.002789127694265666,0.0005924068357668043,0.0,0.00015290663688653536,0.0004784360725587047,0.000187037582620137,0.0005899068548065768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.387818559923646e-05,0.0,0.0,0.0007545055709547227,0.00029261229704519555,0.0008383837565539591,0.00033330884081061546,0.00033237494218850254,7.059597457473395e-05,0.0,1.8221587595250377e-05,3.1966230636392856e-05,1.2496730172817534e-05,3.941404015355125e-05,0.0,0.0,0.0,0.00036194817231845466,0.00030821258182614703,8.613251271174544e-05,0.0,8.20846118163503e-05 +96050,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,37547.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.003143567062679994,0.0,0.0,0.003143567062679994,0.0011538985071873268,0.0009019061498768896,0.0010877930952220751,0.0,0.0,0.0011538985071873268,0.0009019061498768896,0.0010877930952220751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003746144653296811,0.00011836948633455782,0.0003746144653296811,0.00013750846210552154,0.0001074788873203295,0.00012963077314104662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013750846210552154,0.0001074788873203295,0.00012963077314104662,0.0,0.0 +96051,50.0,the Greater Atlanta and Macon Area,G1300670031509,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,174981.0,,43521.0,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.04684719436404756,0.03849397117334787,0.0,0.08534116553739543,0.06453234244912862,0.010539325384940556,0.004193764004365652,0.0006486561560065087,0.005427077542954087,0.029810149131456354,0.010539325384940556,0.004193764004365652,0.0006486561560065087,0.0016552996872784805,0.034722193317672255,0.0,0.0037717778556756055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002571942722804238,0.0,0.0,0.0055826894420138344,0.0038907627243657565,0.008154632164818073,0.0035524177505229077,0.001255950998798992,0.0004997627360036202,7.729909811661861e-05,0.0001972588585716952,0.002319934517045108,0.0,0.0002520082057591294,0.0,0.0,0.0,0.006166279920047825,0.0010070675885233856,0.00040072809676674717,6.198125277958747e-05,0.0005185753067005264 +96052,50.0,the Greater Atlanta and Macon Area,G1301210011621,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,386386.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,863994.0691636442,0.0,0.0,0.06124151655659201,0.0,0.0,0.06124151655659201,0.031395855051071245,0.019119272104021375,0.010448397306625546,0.0,0.00027799209487385196,0.031395855051071245,0.019119272104021375,0.010448397306625546,0.0,0.00027799209487385196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007298033685601203,0.0024316008416905943,0.007298033685601203,0.0037413836337517573,0.0022784068668577754,0.0012451154019648507,0.0,3.312778302682053e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0037413836337517573,0.0022784068668577754,0.0012451154019648507,0.0,3.312778302682053e-05 +96053,50.0,the Greater Atlanta and Macon Area,G1300890023410,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,29839.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.0068371456648073274,0.0,0.0,0.0068371456648073274,0.0029446199463405622,0.0014448098711519614,0.0023014897409437073,0.0,0.00014622610637109553,0.0029446199463405622,0.0014448098711519614,0.0023014897409437073,0.0,0.00014622610637109553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008147661064758418,0.0002597629229827214,0.0008147661064758418,0.00035090323452961145,0.000172174496643479,0.0002742629639989747,0.0,1.7425411303776455e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00035090323452961145,0.000172174496643479,0.0002742629639989747,0.0,1.7425411303776455e-05 +96054,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,18623.0,,11994.0,,7.56685751697572,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0037258524942609945,0.00825088062554894,0.0,0.011976733119809934,0.001810570668289101,0.00029957431893220735,0.007749916628004898,0.00027877552733768013,0.0018379676972170643,0.001810570668289101,0.00029957431893220735,0.0011143849096405646,0.00027877552733768013,0.00022261879003245672,0.0,0.006635531718364334,0.0016153489071846078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005512772763701057,0.0,0.0,0.00044400020297801857,0.0006727948919156846,0.0009952774793481243,0.0002157610226021189,3.569949658978216e-05,0.00013279836677329072,3.322095840183942e-05,2.6528905294394022e-05,0.0,0.000443348779237,0.00010792849713310584,0.0,0.0,0.0,0.0001504600789622523,2.489489997327502e-05,0.0006440251619133714,2.3166501363686856e-05,0.0001527367971307443 +96055,35.0,Eastern Counties in South Carolina and Georgia,G1302450010400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,52115.0,,7763.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.010223825308217388,0.00534041248176443,0.0,0.015564237789981816,0.0051395248429497034,0.00161090226898164,0.005607139053971487,0.0003788966068754732,0.0028277750172035127,0.0040985811836291245,0.00161090226898164,0.0013076702315276364,0.0003788966068754732,0.0028277750172035127,0.0010409436593205787,0.00429946882244385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035681548544820954,0.0,0.0,0.0012183555587933037,0.0006142148420715944,0.0015751710442415132,0.000488420822705826,0.00019196843401745605,0.00015583279717912274,4.5152452558399905e-05,0.0003369810523324988,6.954983690735293e-05,0.0002872656485408565,0.0,0.0,0.0,0.0,0.0005201430884707488,0.00016303057325660385,0.0005674677551210785,3.8346045078787154e-05,0.00028618358231429484 +96056,50.0,the Greater Atlanta and Macon Area,G1300670031114,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,10216.0,,,5266.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0008858156540025941,0.0,0.0004963653620117404,0.0013821506424148968,0.0009725626539968133,0.00032189940684129384,8.768858157678951e-05,0.0,0.0,0.00047619729198507304,0.00032189940684129384,8.768858157678951e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004963653620117404,0.0,0.0,0.0,0.0,4.003091500583603e-05,0.00010555937038423203,6.517400870632628e-05,0.00014559028539006807,5.674666742847311e-05,3.8359559982584394e-05,1.0449523463834791e-05,0.0,0.0,0.0,0.0,0.0,4.003091500583603e-05,0.0,0.0,0.00010244590568486932,3.390761113205013e-05,9.236768573148588e-06,0.0,0.0 +96057,50.0,the Greater Atlanta and Macon Area,G1302190030200,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,8308.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017232845884322093,0.0,0.0,0.0017232845884322095,0.0013208319676167395,0.00019808344160564126,0.0001615269150128674,0.0,4.275955712322194e-05,0.0013208319676167395,0.00019808344160564126,0.0001615269150128674,0.0,4.275955712322194e-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.00020536142679347745,6.82893918551907e-05,0.00020536142679347745,0.00015740170790419633,2.3605328142175967e-05,1.9248937729298403e-05,0.0,5.095596930899782e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015740170790419633,2.3605328142175963e-05,1.92489377292984e-05,0.0,5.0955969308997816e-06 +96058,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,186165.0,,8296.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.016724706179207603,0.0024167969336624743,0.0,0.01914150311287007,0.012231205504787157,0.0050093355136717815,0.0019009620944111356,0.0,0.0,0.009814408571124682,0.0050093355136717815,0.0019009620944111356,0.0,0.0,0.0024167969336624743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016147576925003263,0.0,0.0,0.0019930518692490985,0.0007556824706824942,0.002154527638499131,0.0011695646631193126,0.000596953118472809,0.00022653408765697673,0.0,0.0,0.00016147576925003263,0.0,0.0,0.0,0.0,0.0,0.0013767189628127046,0.0005638403500017943,0.00021396832568463227,0.0,0.0 +96059,81.0,the Columbus-Albany Area,G1300950000501,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,66509.0,,12066.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004326775558058325,0.0020519169967812903,0.0,0.006378692554839617,0.003165702840466168,0.0010653287659238727,0.0008580963016462956,0.0,0.0012895469164418603,0.002606114903687882,0.0010653287659238727,0.0004359186658734183,0.0,0.00021941322257315344,0.0005595879367782864,0.00042217763577287725,0.0010701336938687069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013709686498897478,0.0,0.0,0.0005156140287478623,0.00029052736346840745,0.000652710893736837,0.0003105660062185833,0.00012695330496539516,5.1947640107834e-05,0.0,2.6147077456050016e-05,3.738833097941772e-05,2.8207393585466728e-05,7.149995578700725e-05,0.0,0.0,0.0,0.00032393609074922246,0.00010901163286231094,8.780620779957166e-05,0.0,0.00013195514803542876 +96060,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,4878.0,,585.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00018304825130062514,9.943186684365612e-05,0.0,0.00028248011814428124,0.00014508754750029208,4.352803728622963e-05,2.6258665263098202e-05,0.0,6.758813773324128e-05,7.53185753123843e-05,4.352803728622963e-05,2.6258665263098202e-05,0.0,3.792524307749295e-05,6.976897218790777e-05,0.0,2.9662894655748338e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.643758561078654e-06,0.0,0.0,2.181388680468127e-05,1.3162600470229771e-05,2.8457645365759926e-05,8.97572560502577e-06,5.187242551868705e-06,3.1292489691721193e-06,0.0,4.519556748858314e-06,4.66176710731892e-06,0.0,1.981991453759734e-06,0.0,0.0,0.0,1.4616426815717642e-05,4.385106664131348e-06,2.645353551763147e-06,0.0,6.808972139987248e-06 +96061,50.0,the Greater Atlanta and Macon Area,G1301530020200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,11800.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.001040538769538502,0.0,0.0,0.001040538769538502,0.0007972462380421098,0.00020547740019639108,3.781513130000102e-05,0.0,0.0,0.0007972462380421098,0.00020547740019639108,3.781513130000102e-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.00012399767825348,4.259901610357747e-05,0.00012399767825348,9.500528515375512e-05,2.4486084808943667e-05,4.506308290781206e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.500528515375512e-05,2.4486084808943667e-05,4.506308290781206e-06,0.0,0.0 +96063,35.0,Eastern Counties in South Carolina and Georgia,G1301030030303,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,770949.0,,55963.0,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,2664908.3895131643,0.0,0.0,0.13748315783050727,0.038736659790135894,0.0,0.17621981762064318,0.13226216240388183,0.021711737457246656,0.016423121530320616,0.0008447150010871457,0.004978009061084171,0.10157089880906404,0.021711737457246656,0.008377725335002527,0.0008447150010871457,0.004978009061084171,0.030691263594817803,0.008045396195318088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025881562041445007,0.0,0.0,0.01638360177662421,0.006176410966023983,0.01897175798076871,0.012104007388548936,0.002587345722860694,0.0009983573104411186,0.00010066305146710507,0.0005932197033019598,0.002050610060761857,0.0005375461433826435,0.0,0.0,0.0,0.0,0.01423929367888319,0.0023374773277067633,0.0017681069653172497,9.094169304981043e-05,0.0005359305463377081 +96064,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,28460.0,,3540.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0024420981419941224,0.0010311533273122365,0.0,0.0034732210957069214,0.002346360556566328,0.0009177990542105468,0.0002090614849300458,0.0,0.0,0.0013152072292540917,0.0009177990542105468,0.0002090614849300458,0.0,0.0,0.0010311533273122365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.88955285025863e-05,0.0,0.0,0.0002910183841660848,0.0001438116651026993,0.00035991391266867106,0.00015672977106011835,0.00010937168869364671,2.4913304870714178e-05,0.0,0.0,6.88955285025863e-05,0.0,0.0,0.0,0.0,0.0,0.00024314254266423116,9.510729076614983e-05,2.166407923829001e-05,0.0,0.0 +96065,50.0,the Greater Atlanta and Macon Area,G1302170100600,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,59917.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005338487705091697,0.0,0.0,0.005338487705091697,0.0018210905480993854,0.0015032689852803756,0.002014158861318234,0.0,0.0,0.0018210905480993854,0.0015032689852803756,0.002014158861318234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006361781115204397,0.00019388940548925942,0.0006361781115204397,0.0002170161307466549,0.00017914189879107164,0.0002400237392086649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002170161307466549,0.00017914189879107164,0.0002400237392086649,0.0,0.0 +96066,50.0,the Greater Atlanta and Macon Area,G1300130180103,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,23760.0,,1744.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002564147295779365,0.0005133143549353766,0.0,0.003077461650714742,0.0013907915781992944,0.0006661485942979366,0.0010205214782175107,0.0,0.0,0.000877477223263918,0.0006661485942979366,0.0010205214782175107,0.0,0.0,0.0005133143549353766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4296162086450624e-05,0.0,0.0,0.0003055651135576451,0.0001296268266944423,0.00033986127564409566,0.00010456748245790223,7.938380575794718e-05,0.00012161382534179571,0.0,0.0,3.4296162086450624e-05,0.0,0.0,0.0,0.0,0.0,0.00015359288061708192,7.356650926065538e-05,0.00011270188576635832,0.0,0.0 +96067,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,178711.0,,1949.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.009199167528095936,0.0003314868371093072,0.0,0.009530654365205242,0.0052639315412766376,0.0015135700329842277,0.0013665676064505698,0.0,0.0013865851844938094,0.0052639315412766376,0.0015135700329842277,0.0010350807693412629,0.0,0.0013865851844938094,0.0,0.0003314868371093072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2148161203419485e-05,0.0,0.0,0.0010962470863995395,0.0003139316881082991,0.001118395247602959,0.0006272925889768589,0.00018036922728637914,0.00012334858280523312,0.0,0.0001652366873310685,0.0,2.2148161203419485e-05,0.0,0.0,0.0,0.0,0.0006177074305583982,0.00017761314878691022,0.0001603628311359453,0.0,0.0001627118371217057 +96068,50.0,the Greater Atlanta and Macon Area,G1301510070305,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,100445.0,,4689.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56751.431377317895,0.0,0.0,0.0209145476277464,0.003225318816543044,0.0,0.024139866444289445,0.01455872379634295,0.0006829175640106484,0.005416435651040977,0.0003668476517448506,0.003115013501121035,0.01455872379634295,0.0006829175640106484,0.0021911168344979333,0.0003668476517448506,0.003115013501121035,0.0,0.003225318816543044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021549840018974503,0.0,0.0,0.0024923451740947664,0.001003536250474356,0.0027078435742845116,0.0017349342496251656,8.138193210110066e-05,0.00026111104889946717,4.3716507319589366e-05,0.00037120998287619255,0.0,0.00021549840018974503,0.0,0.0,0.0,0.0,0.001633097133022298,7.660497798278925e-05,0.0006075783603461677,4.1150437133161846e-05,0.00034942071085134277 +96069,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000300,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,NaturalGas,17516.0,,195.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004205985527938739,0.00015466222789250488,0.0,0.004360730462904984,0.0029600861691298124,0.0007445290778012454,0.0005013702810076815,0.0,0.00015466222789250488,0.0029600861691298124,0.0007445290778012454,0.0005013702810076815,0.0,0.0,0.0,0.0,0.00015466222789250488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0334794543983968e-05,0.0,0.0,0.0005012230942286611,0.00018331642264277155,0.000511557888772645,0.0003527505121021705,8.872478653097903e-05,5.9747795595511525e-05,0.0,0.0,0.0,0.0,1.0334794543983968e-05,0.0,0.0,0.0,0.00034724811454097613,8.734080824526034e-05,5.88158164388767e-05,0.0,1.8143447169366452e-05 +96070,35.0,Eastern Counties in South Carolina and Georgia,G1302450010509,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,85701.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0067552403829531935,0.0,0.0,0.0067552403829531935,0.004391172017914656,0.0018986537008538664,0.0004654450377841089,0.0,0.0,0.004391172017914656,0.0018986537008538664,0.0004654450377841089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008050094877903178,0.00019598912785671877,0.0008050094877903178,0.0005232878382627271,0.00022625904580280464,5.546622329038839e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005232878382627271,0.00022625904580280464,5.546622329038839e-05,0.0,0.0 +96071,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,112428.0,,,47455.0,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,240343.828889517,0.0,0.0,0.008791395368461763,0.0,0.004472785879603896,0.013264181248065662,0.008513446560006896,0.0038131624206142393,0.0009375722674445235,0.0,0.0,0.004040660680403,0.0038131624206142393,0.0009375722674445235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004472785879603896,0.0,0.0,0.0,0.0,0.00036072483993210394,0.0010476519017809847,0.0005947822461665511,0.0014083767417130888,0.00048151694570148053,0.00045440646158259124,0.00011172849449691282,0.0,0.0,0.0,0.0,0.0,0.00036072483993210394,0.0,0.0,0.0009039487551242229,0.0004048775544552097,9.95504321336558e-05,0.0,0.0 +96072,50.0,the Greater Atlanta and Macon Area,G1301430010302,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,49504.0,,2908.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004365354458392568,0.0008472411827166492,0.0,0.005212595641109217,0.003967794415351834,0.0009208971613531976,0.0003239040644041855,0.0,0.0,0.0031205532326351844,0.0009208971613531976,0.0003239040644041855,0.0,0.0,0.0008472411827166492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6608283141239855e-05,0.0,0.0,0.0005202091612759664,0.00020364033981171495,0.0005768174444172062,0.0003718690876854727,0.00010974117783447226,3.859889575602139e-05,0.0,0.0,5.6608283141239855e-05,0.0,0.0,0.0,0.0,0.0,0.0004390697441762592,0.00010190499776993565,3.584270247101137e-05,0.0,0.0 +96073,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970701,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,37838.0,,378.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0019477156627156406,6.427256014769141e-05,0.0,0.002011988222863332,0.0011254524214992716,0.0007091080746335917,0.00014483932244041135,0.0,3.2570673928637005e-05,0.00106117986135158,0.0007091080746335917,0.00014483932244041135,0.0,3.2570673928637005e-05,6.427256014769141e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.294801449620768e-06,0.0,0.0,0.00023210453505494408,7.070210305038501e-05,0.00023639933650456484,0.00012645822131206945,8.450268338298284e-05,1.7260149536320122e-05,0.0,3.881367939554422e-06,4.294801449620768e-06,0.0,0.0,0.0,0.0,0.0,0.00013223546872021425,8.33169282247818e-05,1.7017952359559998e-05,0.0,3.8269039643177535e-06 +96074,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,109692.0,,10290.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009773442711172727,0.003028941383158074,0.0,0.012802384094330798,0.006273293112919723,0.0022855470498088196,0.004243574621208555,0.0,0.0,0.0032443517297616495,0.0022855470498088196,0.004243574621208555,0.0,0.0,0.003028941383158074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020237634549817484,0.0,0.0,0.0011646835221812309,0.0005302561711005628,0.0013670598676794057,0.0003866235380388456,0.0002723645154270156,0.0005056991259403429,0.0,0.0,0.00020237634549817484,0.0,0.0,0.0,0.0,0.0,0.0006698726729078381,0.00024405451550780257,0.0004531359563509714,0.0,0.0 +96075,50.0,the Greater Atlanta and Macon Area,G1301210001700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,5824.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0004056090468917378,0.0,0.0,0.0004056090468917378,0.0002995444376551085,8.431711203919907e-05,2.180824439630581e-05,0.0,0.0,0.0002995444376551085,8.431711203919907e-05,2.180824439630581e-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,4.833703634570356e-05,1.6528652322388443e-05,4.833703634570356e-05,3.569715833767625e-05,1.0048196262967883e-05,2.5989210795428458e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.569715833767625e-05,1.0048196262967883e-05,2.5989210795428458e-06,0.0,0.0 +96076,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,130474.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011505397972622641,0.0,0.0,0.01150539797262264,0.008003595319844794,0.002693864907733647,0.0008079681186436363,0.0,0.0,0.008003595319844794,0.002693864907733647,0.0008079681186436363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013710776078951518,0.00029157283464920173,0.0013710776078951518,0.000953774076464408,0.0003210230417476132,9.628410925041166e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009537740764644082,0.00032102304174761327,9.628410925041167e-05,0.0,0.0 +96077,50.0,the Greater Atlanta and Macon Area,G1300890023108,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,82232.0,,10306.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.007634349603172982,0.0030976694807947017,0.0,0.010731987745945477,0.0030613800510825183,0.0018277588070236851,0.003873724262653534,0.0,0.001969124625185742,0.0030613800510825183,0.0018277588070236851,0.0027452107450667788,0.0,0.0,0.0,0.0011285135175867554,0.001969124625185742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002069675169922588,0.0,0.0,0.0009097698345424283,0.0005555534499228055,0.001116737351534687,0.00036481840200077695,0.0002178102803621013,0.00032714115217954997,0.0,0.0,0.0,7.540043961281812e-05,0.00013156498356256215,0.0,0.0,0.0,0.0003185577109495504,0.00019019091129422532,0.00040308772951084425,0.0,0.00020490099978006727 +96078,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,5434.0,,597.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001304786795311314,0.00047391153252623143,0.0,0.0017786156207638061,0.0011817186695872244,0.00023728659455807299,0.00032785084030261463,0.0,3.175951631589404e-05,0.0007395666533768871,0.00023728659455807299,0.00032785084030261463,0.0,0.0,0.0004421520162103374,0.0,3.175951631589404e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.16613220267687e-05,0.0,0.0,0.00015548816785672457,8.327318886243161e-05,0.00018714948988349326,8.813230203947967e-05,2.827684797039444e-05,3.9069161852437636e-05,0.0,0.0,2.953951615272347e-05,0.0,2.121805874045232e-06,0.0,0.0,0.0,0.00012434279988167177,2.496776965709101e-05,3.449712057187479e-05,0.0,3.34179977285568e-06 +96079,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,9378.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0022457451732434144,0.0,0.0,0.0022457451732434144,0.0012883280876371914,0.0006748070146390093,0.0002215722505476046,0.0,6.103782041960887e-05,0.0012883280876371914,0.0006748070146390093,0.0002215722505476046,0.0,6.103782041960887e-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.0002676234914151317,9.064269938774884e-05,0.0002676234914151317,0.00015352893329552926,8.041616272441571e-05,2.6404571631169225e-05,0.0,7.2738237640175005e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015352893329552926,8.041616272441571e-05,2.6404571631169225e-05,0.0,7.2738237640175005e-06 +96080,50.0,the Greater Atlanta and Macon Area,G1300130180402,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,140848.0,,22.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.012543762782060059,6.444817322517583e-06,0.0,0.012550207599382577,0.004060388361217567,0.0032775578837757643,0.005212292043995544,0.0,0.0,0.00405394354389505,0.0032775578837757643,0.005212292043995544,0.0,0.0,6.444817322517583e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3131431065671204e-07,0.0,0.0,0.0014948143495876166,0.0005149662635870419,0.0014952456638982735,0.0004831000942156833,0.0003905798157534526,0.0006211380968355913,0.0,0.0,4.31314310656712e-07,0.0,0.0,0.0,0.0,0.0,0.0004837591763145231,0.0003904918843041617,0.0006209982596733478,0.0,0.0 +96081,35.0,Eastern Counties in South Carolina and Georgia,G1302450010706,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,32488.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0026251598258054524,0.0,0.0,0.0026251598258054524,0.0016640783923961091,0.0007511694876950403,0.0002099423193137406,0.0,0.0,0.0016640783923961091,0.0007511694876950403,0.0002099423193137406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031283500795700986,7.432755432796073e-05,0.00031283500795700986,0.0001983048696726874,8.951535458914033e-05,2.5018403255838342e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001983048696726874,8.951535458914033e-05,2.5018403255838342e-05,0.0,0.0 +96082,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,17770.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015833381681110818,0.0,0.0,0.0015833381681110818,0.00043652895997852435,0.0005198512410767874,0.0006269272774494726,0.0,0.0,0.00043652895997852435,0.0005198512410767874,0.0006269272774494726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018868221029677535,6.53532909050853e-05,0.00018868221029677535,5.2019998435054514e-05,6.194929369315161e-05,7.470926096957916e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2019998435054514e-05,6.194929369315161e-05,7.470926096957916e-05,0.0,0.0 +96083,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,140397.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012380430998824833,0.0,0.0,0.012380430998824831,0.008379984964077415,0.002753093426637263,0.0012473526081101542,0.0,0.0,0.008379984964077415,0.002753093426637263,0.0012473526081101542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001475351666493637,0.00038241877903687834,0.001475351666493637,0.0009986263630980849,0.00032808074091988503,0.00014864456247566687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000998626363098085,0.0003280807409198851,0.00014864456247566687,0.0,0.0 +96084,50.0,the Greater Atlanta and Macon Area,G1301210009102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,67480.0,,3026.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00601243145938925,0.0008907351331845256,0.0,0.006903166592573775,0.0032328431274000115,0.0014947065851233163,0.0021755861904441502,0.0,0.0,0.0023421079942154855,0.0014947065851233163,0.0021755861904441502,0.0,0.0,0.0008907351331845256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.951428280550855e-05,0.0,0.0,0.0007164895339260794,0.00027865800562727446,0.000776003816731588,0.0002791043650999825,0.0001781212196371606,0.00025926029196941347,0.0,0.0,5.951428280550855e-05,0.0,0.0,0.0,0.0,0.0,0.00036341272836377394,0.0001680240509040179,0.0002445635875613056,0.0,0.0 +96085,50.0,the Greater Atlanta and Macon Area,G1300130180103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2993.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000472422805198924,0.0,0.0,0.000472422805198924,0.0002692942320951849,0.00011918089325834199,5.6488931363946976e-05,0.0,2.7458748481450068e-05,0.0002692942320951849,0.00011918089325834199,5.6488931363946976e-05,0.0,2.7458748481450068e-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,5.6302165106593806e-05,1.8914454192205322e-05,5.6302165106593806e-05,3.2093811202218035e-05,1.4203679957738388e-05,6.7322091680328385e-06,0.0,3.2724647786045426e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.2093811202218035e-05,1.4203679957738388e-05,6.7322091680328385e-06,0.0,3.2724647786045426e-06 +96086,85.0,Rural Climate Zone 3A,G1302090950100,ComStock 90.1-2004,gen3_t5_cfl,10001_25000,Electricity,57566.0,,1345.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.0036149901988503062,0.0002287039319572611,0.0,0.0038436941308075674,0.002269184845622618,0.000488542378568135,0.0005678502852000312,0.0,0.000518098891055363,0.002269184845622618,0.000488542378568135,0.00033914635324277007,0.0,0.000518098891055363,0.0,0.0002287039319572611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5280511248106407e-05,0.0,0.0,0.00043079169182091883,0.0001383537460621333,0.0004460722030690253,0.0002704145585266184,5.8218691120246004e-05,4.041544326588029e-05,0.0,6.174088601381681e-05,0.0,1.5280511248106407e-05,0.0,0.0,0.0,0.0,0.00026334569006016565,5.66968046062196e-05,6.59007244365027e-05,0.0,6.012692630465061e-05 +96087,50.0,the Greater Atlanta and Macon Area,G1300770170801,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,60148.0,,1388.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005359141810130051,0.0004086321078539125,0.0,0.005767773917983963,0.002257496749652719,0.0011732329591548798,0.0023370442091763645,0.0,0.0,0.0018488646417988064,0.0011732329591548798,0.0023370442091763645,0.0,0.0,0.0004086321078539125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7303016273012403e-05,0.0,0.0,0.0006386384711392885,0.0002114897075621382,0.0006659414874123008,0.00022032559130082512,0.00013981188217646978,0.0002785009976619935,0.0,0.0,2.7303016273012403e-05,0.0,0.0,0.0,0.0,0.0,0.00026064834798823793,0.00013546032022243842,0.00026983281920162463,0.0,0.0 +96088,35.0,Eastern Counties in South Carolina and Georgia,G1302450001200,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11024.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,24284.436554246196,0.0,0.0,0.000905067179325553,0.0,0.0,0.0009050671793255527,0.00039267351257910716,0.00025174684046005595,0.000260616136680092,0.0,0.0,0.00039267351257910716,0.00025174684046005595,0.000260616136680092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010785384310534315,4.225421035097486e-05,0.00010785384310534315,4.6793595420055793e-05,2.999983299966531e-05,3.105675750739459e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.679359542005581e-05,2.999983299966532e-05,3.1056757507394595e-05,0.0,0.0 +96089,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,35151.0,,2691.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001758107177689596,0.00045763835861298275,0.0,0.0022157455363025786,0.0011485373520681804,0.00036588373826420965,0.00033703644023378376,0.0,0.00036427027537498484,0.001090683182754548,0.00036588373826420965,0.00022418268979514767,0.0,7.733983651427031e-05,5.78541693136323e-05,0.00011285375043863609,0.0002869304388607145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.057673038776524e-05,0.0,0.0,0.00020951005735508454,8.538700579427608e-05,0.00024008678774284977,0.00012997449704711697,4.360162108533375e-05,2.671539528023648e-05,0.0,9.216431051280569e-06,3.8654787205175324e-06,7.540230479955284e-06,1.9171021187292436e-05,0.0,0.0,0.0,0.00012444959899180055,3.9645279644243353e-05,3.651953483026856e-05,0.0,3.947045310578503e-05 +96090,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6021.0,,50.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011325906677860757,3.945127417364964e-05,0.0,0.001171959234885986,0.0005287463224153924,0.00043090385418179165,0.0001728577841151525,0.0,3.945127417364964e-05,0.0005287463224153924,0.00043090385418179165,0.0001728577841151525,0.0,0.0,0.0,0.0,3.945127417364964e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.633146523161743e-06,0.0,0.0,0.00013496625075064159,4.6973844684298214e-05,0.0001375993972738033,6.300856149034992e-05,5.134907013369671e-05,2.059876325900693e-05,0.0,0.0,0.0,0.0,2.633146523161743e-06,0.0,0.0,0.0,6.207995390059455e-05,5.059229779791921e-05,2.0295182801852433e-05,0.0,4.631962773437134e-06 +96091,35.0,Eastern Counties in South Carolina and Georgia,G1301270000101,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,11596.0,,1325.0,,9.525004485617233,Lodging,Zone-by-Zone,2013 to 2018,E: Lodging with Zone-by-Zone Systems,28575.0134568517,0.0,0.0,0.0029485324945380223,0.0011473637315702302,0.0,0.004095986505731478,0.002245795907352353,0.0004044527120493062,0.0005732756074806013,0.00041474458909698944,0.0004577176897522282,0.0014458281659530442,0.0004044527120493062,0.00039497335161065055,0.00041474458909698944,0.0002886239554512571,0.0007999677413993084,0.0001783022558699508,0.00016909373430097106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.666164454332983e-05,0.0,0.0,0.00035137593119889465,0.00020428318934186186,0.0004280375757422245,0.0001722990060670636,4.819853557167937e-05,4.706888239421812e-05,4.9425016164351564e-05,3.4395249603272084e-05,5.345021892347515e-05,1.191334864844413e-05,1.1298076971410558e-05,0.0,0.0,0.0,0.00023468950262648397,4.226599822184629e-05,5.990827872962587e-05,4.334151692659862e-05,4.783227923766979e-05 +96092,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,8913.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0007859472590512662,0.0,0.0,0.0007859472590512662,0.0005234889863096527,0.00018664576854498496,7.581250419662854e-05,0.0,0.0,0.0005234889863096527,0.00018664576854498496,7.581250419662854e-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,9.366125228498301e-05,3.323940648229216e-05,9.366125228498301e-05,6.238412749774625e-05,2.224255662742389e-05,9.03456815981286e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.238412749774625e-05,2.224255662742389e-05,9.03456815981286e-06,0.0,0.0 +96093,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9038.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007065506701209828,0.0,0.0,0.0007065506701209828,0.00040302729093952895,0.00026139519676129214,4.2097808820724027e-05,0.0,0.0,0.00040302729093952895,0.00026139519676129214,4.2097808820724027e-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,8.419946897254591e-05,2.5689214368032068e-05,8.419946897254591e-05,4.802866278895675e-05,3.115040108235449e-05,5.0167854868862794e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.802866278895675e-05,3.115040108235449e-05,5.0167854868862794e-06,0.0,0.0 +96095,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950203,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Electricity,2680.0,,1.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,3237.924873899493,0.0,0.0,0.00023873444738982993,1.534480314885139e-07,0.0,0.00023888789542131844,0.00013650736881218198,7.558850031124197e-05,2.6853405510489935e-05,0.0,0.0,0.00013635392078069347,7.558850031124197e-05,2.6853405510489935e-05,0.0,0.0,1.534480314885139e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.876892605387065e-09,0.0,0.0,2.8450954917409943e-05,1.2047850171166063e-05,2.846083181001533e-05,1.6249851227413856e-05,9.00818896536582e-06,3.2002295349959766e-06,0.0,0.0,9.876892605387065e-09,0.0,0.0,0.0,0.0,0.0,1.6263332462865902e-05,9.005527845332448e-06,3.1992841513056804e-06,0.0,0.0 +96096,50.0,the Greater Atlanta and Macon Area,G1301390001605,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7506.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005595424488422641,0.0,0.0,0.000559542448842264,0.0003151564677661129,0.00019378356441285665,5.057204306385677e-05,0.0,0.0,0.0003151564677661129,0.00019378356441285665,5.057204306385677e-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,6.667856775509618e-05,1.9815046290285887e-05,6.667856775509618e-05,3.755601015236553e-05,2.3092458054365087e-05,6.026480040833519e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.755601015236554e-05,2.309245805436509e-05,6.0264800408335205e-06,0.0,0.0 +96097,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock DOE Ref 1980-2004,gen5_led,_1000,NaturalGas,11455.0,,3594.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0022056759886141027,0.002472043960966081,0.0,0.004677719949580184,0.0011182577880754076,0.00012113503104536705,0.0023094547866736913,0.0003698598905275062,0.0007588690133161804,0.0006920260003296311,0.00012113503104536705,0.0009082617129416984,0.0003698598905275062,0.00011432163379888403,0.00042623178774577644,0.001401193073731993,0.0006445473795172965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000165166184506149,0.0,0.0,0.0002628444180097015,0.0002351671742525237,0.00042801060251585046,8.246685925003606e-05,1.4435332705286652e-05,0.00010823508192998825,4.407519879287346e-05,1.362339865732796e-05,2.8478085021470456e-05,9.361876948754303e-05,4.306453812686438e-05,0.0,0.0,0.0,0.0001023204028460817,1.1083835326259105e-05,0.00021131473140371197,3.384211887360462e-05,6.943638933519691e-05 +96098,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,5053.0,,123.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0009010935683897544,9.759434701238275e-05,0.0,0.0009987706224758766,0.0007373335623859255,0.00011711321641485929,0.00011893277203712407,0.0,2.5391071637967376e-05,0.0006397392153735428,0.00011711321641485929,0.00011893277203712407,0.0,2.5391071637967376e-05,9.759434701238275e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.5211548991149495e-06,0.0,0.0,0.00010738606216332827,3.934242402606016e-05,0.00011390721706244321,7.623966873183517e-05,1.3956738322466526e-05,1.4173580302052872e-05,0.0,3.0259312605912595e-06,6.52115489911495e-06,0.0,0.0,0.0,0.0,0.0,8.40909937157735e-05,1.3356460695629308e-05,1.3563976327906038e-05,0.0,2.8957863231343207e-06 +96099,50.0,the Greater Atlanta and Macon Area,G1301210008602,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,39783.0,,4097.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006268996568038045,0.0012060708378934216,0.0,0.0074750674059314666,0.0034079580209347036,0.0014609480181958432,0.0026061306771946223,0.0,0.0,0.0022018871830412814,0.0014609480181958432,0.0026061306771946223,0.0,0.0,0.0012060708378934216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.058215308830672e-05,0.0,0.0,0.0007470632224130394,0.00031011040781148917,0.0008276453755013462,0.00026239429492423466,0.00017409812278664286,0.00031056714748590303,0.0,0.0,8.058215308830672e-05,0.0,0.0,0.0,0.0,0.0,0.00037733180756218955,0.00016175732009428946,0.00028855284986738434,0.0,0.0 +96100,33.0,Rural Lower Plains-Upper South Appalachia,G1300110970400,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,9676.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0020821505813870644,0.0,0.0,0.0020821505813870644,0.001009687956209465,0.0005726637785709647,0.00042618955097865115,0.0,7.360929562798359e-05,0.001009687956209465,0.0005726637785709647,0.00042618955097865115,0.0,7.360929562798359e-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.0002481270169474438,7.428414079557573e-05,0.0002481270169474438,0.00012032312305439497,6.824355373760083e-05,5.078842178074191e-05,0.0,8.771918374706055e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012032312305439497,6.824355373760083e-05,5.078842178074191e-05,0.0,8.771918374706055e-06 +96101,50.0,the Greater Atlanta and Macon Area,G1301210007001,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,25759.0,,5105.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0020398958117384953,0.0008681848772943055,0.0,0.002908080689032801,0.00131277368990213,0.0005190386002106259,0.0004985068416862047,0.0,0.0005777438268724205,0.0009197624986652393,0.0005190386002106259,0.0004985068416862047,0.0,0.00010257014081500546,0.0003930111912368904,0.0,0.00047517368605741505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.800673875822521e-05,0.0,0.0,0.00024309052994476364,0.00010763655151853872,0.00030109726870298885,0.00010960635927444885,6.18528493763897e-05,5.940611850333308e-05,0.0,1.2223089896919257e-05,2.62585747521713e-05,0.0,3.1748164006053904e-05,0.0,0.0,0.0,0.00013592214753371906,5.374029182347742e-05,5.16144717124032e-05,0.0,5.981852186472676e-05 +96102,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,20449.0,,2885.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0018219805466820186,0.0008491200270448405,0.0,0.0026711312633331567,0.0015433189214988773,0.0005448018909968198,0.000582979761231162,0.0,0.0,0.000694198894454037,0.0005448018909968198,0.000582979761231162,0.0,0.0,0.0008491200270448405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.673423734879323e-05,0.0,0.0,0.00021712253921760683,0.00013454442116032485,0.0002738567765664001,8.27265839695167e-05,6.49231794264748e-05,6.947277582161534e-05,0.0,0.0,5.673423734879323e-05,0.0,0.0,0.0,0.0,0.0,0.0001582282199521023,5.5855618847234335e-05,5.976979132616401e-05,0.0,0.0 +96103,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,36663.0,,4137.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004948071963605836,0.0012052851728888677,0.0,0.006153357136494704,0.003809547962281147,0.0019323380226303332,0.00041150152518266167,0.0,0.0,0.002604262789392279,0.0019323380226303332,0.00041150152518266167,0.0,0.0,0.0012052851728888677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.052931894052913e-05,0.0,0.0,0.0005896531591197805,0.0002052149000461645,0.0006701824780603097,0.0003103454824905566,0.00023027337272211334,4.903792347630725e-05,0.0,0.0,8.052931894052913e-05,0.0,0.0,0.0,0.0,0.0,0.00041491046871132306,0.00021045732528280825,4.4817992155354315e-05,0.0,0.0 +96104,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,37758.0,,2238.0,,4.088175128053588,Healthcare,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.004247640962319488,0.000831696167843985,0.0,0.0050793758785872434,0.0024361134025508453,0.0005039232511559366,0.001918046976718098,0.0,0.00022129224816236476,0.0020986533799197764,0.0005039232511559366,0.0016450643312437747,0.0,0.0,0.000337460022631069,0.00027298264547432325,0.00022129224816236476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.556996900960715e-05,0.0,0.0,0.0005061844098992328,0.00017947490463953006,0.00056175437890884,0.0002500930827537821,6.0051707708737565e-05,0.0001960396194367131,0.0,0.0,2.254746832392232e-05,1.8239397673904324e-05,1.4785691996546141e-05,0.0,0.0,0.0,0.0002694223471766534,5.573147168812432e-05,0.00021212670884753206,0.0,2.4473851196530406e-05 +96105,35.0,Eastern Counties in South Carolina and Georgia,G1300510002800,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,31255.0,,1423.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0025904124280486645,0.0004144173907286858,0.0,0.00300482981877735,0.002124511786272989,0.0006088084271302976,0.00027150960537406356,0.0,0.0,0.0017100943955443032,0.0006088084271302976,0.00027150960537406356,0.0,0.0,0.0004144173907286858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.768912304760321e-05,0.0,0.0,0.0003086939739581552,0.00010032285394111486,0.0003363830970057584,0.0002037883346636812,7.255041348440244e-05,3.235522581007152e-05,0.0,0.0,2.768912304760321e-05,0.0,0.0,0.0,0.0,0.0,0.00023783372017471903,6.815456333717537e-05,3.039481349386403e-05,0.0,0.0 +96106,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000400,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,116714.0,,9615.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010439683374289556,0.0028301648031678526,0.0,0.01326984817745741,0.004279757667033545,0.0035625108782499347,0.00542754894256763,0.0,0.0,0.0014495928638656934,0.0035625108782499347,0.00542754894256763,0.0,0.0,0.0028301648031678526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018909421723976367,0.0,0.0,0.0012440785008365743,0.0005483452092854672,0.0014331727180763381,0.0001727454034997641,0.00042453808546935714,0.0006467913546416517,0.0,0.0,0.00018909421723976367,0.0,0.0,0.0,0.0,0.0,0.00046222321810661116,0.0003847589912318247,0.0005861871941930867,0.0,0.0 +96107,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,42614.0,,1985.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.009546645341887986,0.0013654048081952032,0.0,0.01091205015008319,0.0035710090768382905,0.0005533195763854393,0.0048673475529454596,0.0003711508500057872,0.0015491513739371986,0.0035710090768382905,0.0005533195763854393,0.0048673475529454596,0.0003711508500057872,0.00018374656574199553,0.0,0.0,0.0013654048081952032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.122820454764983e-05,0.0,0.0,0.0011376515441009862,0.0004417992542344641,0.0012288797486486361,0.00042554885457390295,6.59378082994449e-05,0.00058003049877513,4.422918443935546e-05,2.1896651310846122e-05,0.0,0.0,9.122820454764983e-05,0.0,0.0,0.0,0.0004021554773310478,6.231305873770426e-05,0.0005481449182492595,4.179780673591958e-05,0.00017446041072383822 +96108,50.0,the Greater Atlanta and Macon Area,G1302310010300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,27335.0,,1281.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0024104488513799847,0.00037326116349053204,0.0,0.002783710014870517,0.0016170904340659068,0.000931102690764282,0.0002355168900403276,0.0,0.0,0.001243829270575375,0.000931102690764282,0.0002355168900403276,0.0,0.0,0.00037326116349053204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4938911386447577e-05,0.0,0.0,0.0002872490592351408,8.630738239099043e-05,0.0003121879706215883,0.0001482250028318832,0.00011095791218313052,2.806614422012703e-05,0.0,0.0,2.4938911386447577e-05,0.0,0.0,0.0,0.0,0.0,0.00018135372514586475,0.000104421458383668,2.641278709205551e-05,0.0,0.0 +96109,50.0,the Greater Atlanta and Macon Area,G1301510070113,ComStock 90.1-2004,gen5_led,10001_25000,NaturalGas,35817.0,,441.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008298496950707149,0.00035018175021222755,0.0,0.008648761407993116,0.003480561784171274,0.0015501786830958392,0.0034541782276484353,0.0,0.0001639254201513073,0.0032942227470366147,0.0015501786830958392,0.0034541782276484353,0.0,0.0,0.00018633903713465962,0.0,0.0001639254201513073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3397616341065383e-05,0.0,0.0,0.0009889201884821883,0.000303238359821664,0.0010123178048232538,0.00039256788298562393,0.00018473260935976776,0.00041162955222223446,0.0,0.0,1.2450361269820575e-05,0.0,1.0952781196974868e-05,0.0,0.0,0.0,0.00040739182163675386,0.0001814448806629204,0.00040430368649662307,0.0,1.918709670137695e-05 +96110,50.0,the Greater Atlanta and Macon Area,G1301510070404,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,164441.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014500660107577097,0.0,0.0,0.014500660107577099,0.009478962538934151,0.003661081808229416,0.001360585386814093,0.0,0.0,0.009478962538934151,0.003661081808229416,0.001360585386814093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017280144570927768,0.0004552030631741084,0.0017280144570927768,0.0011295888727824233,0.00043628374475959426,0.00016213821999009435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001129588872782423,0.0004362837447595942,0.00016213821999009432,0.0,0.0 +96111,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,12022.0,,1104.0,,8.72605822017302,Office,Residential Style Central Systems,2013 to 2018,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.004177947829941114,0.0008760333250467441,0.0,0.005053981154987858,0.0025420019113776135,0.001071552847366467,0.0012354782675177741,0.0,0.00020503083579974312,0.0016659685863308694,0.001071552847366467,0.0012354782675177741,0.0,0.00020503083579974312,0.0008760333250467441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8529057298786865e-05,0.0,0.0,0.0004978789159185893,0.0001865070362498869,0.0005564079732173762,0.00019853063453129064,0.0001276951249062901,0.00014722983759263365,0.0,2.4433174949266226e-05,5.8529057298786865e-05,0.0,0.0,0.0,0.0,0.0,0.000279856629466936,0.00011797047312098987,0.00013601751524246265,0.0,2.2572460857281096e-05 +96112,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,19459.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004490580568675696,0.0,0.0,0.004490580568675696,0.0021962863431473087,0.00063891214463615,0.001567877996876051,0.0,8.758679108992656e-05,0.0021962863431473087,0.00063891214463615,0.001567877996876051,0.0,8.758679108992656e-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.0005351358671285407,0.00014684078732073928,0.0005351358671285407,0.0002617282061257648,7.613821850203478e-05,0.00018684170979198358,0.0,1.043758878882263e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002617282061257648,7.613821850203478e-05,0.00018684170979198358,0.0,1.043758878882263e-05 +96113,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6062.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011199364855039619,0.0,0.0,0.0011199364855039619,0.00046936264347056966,0.00034720429555761256,0.00025788065591916056,0.0,4.5488890556619085e-05,0.00046936264347056966,0.00034720429555761256,0.00025788065591916056,0.0,4.5488890556619085e-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.00013346369591226478,3.871562603233017e-05,0.00013346369591226478,5.593430871443045e-05,4.137660404989938e-05,3.0731836928915264e-05,0.0,5.42094621901969e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.593430871443045e-05,4.137660404989938e-05,3.0731836928915264e-05,0.0,5.42094621901969e-06 +96114,50.0,the Greater Atlanta and Macon Area,G1300890021704,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6474.0,,140.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012002450541048293,0.00011074477173693263,0.0,0.001310989825841762,0.0007218673395966752,0.0002646626359657838,0.0002137150785423704,0.0,0.00011074477173693263,0.0007218673395966752,0.0002646626359657838,0.0002137150785423704,0.0,0.0,0.0,0.0,0.00011074477173693263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.399261746509738e-06,0.0,0.0,0.00014303474169250288,4.987378058292181e-05,0.0001504340034390126,8.602585622189672e-05,3.154018559922887e-05,2.546869987137731e-05,0.0,0.0,0.0,0.0,7.399261746509738e-06,0.0,0.0,0.0,8.283313242165807e-05,3.0369617753128535e-05,2.452346633565129e-05,0.0,1.2707786928574717e-05 +96115,85.0,Rural Climate Zone 3A,G1302770960400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,24389.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.0058562397702591395,0.0,0.0,0.0058562397702591395,0.002784995294023699,0.0021225116333718464,0.0008101157872765161,0.0,0.00013869976266081853,0.002784995294023699,0.0021225116333718464,0.0008101157872765161,0.0,0.00013869976266081853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006978754028928931,0.00020669506741367218,0.0006978754028928931,0.00033188185407674944,0.00025293511184544353,9.653974284090399e-05,0.0,1.6528550152546808e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00033188185407674944,0.00025293511184544353,9.653974284090399e-05,0.0,1.6528550152546808e-05 +96116,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,9268.0,,200.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002046669246752901,0.00015904570280068816,0.0,0.0022057149495535895,0.0013084259065558434,0.00023339936209232557,0.00061740830546393,0.0,4.6481375441490774e-05,0.0011493802037551553,0.00023339936209232557,0.00061740830546393,0.0,4.6481375441490774e-05,0.00015904570280068816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0628090369842173e-05,0.0,0.0,0.00024389278867445477,9.416383970797587e-05,0.00025452087904429693,0.00013696670509209157,2.781320009857397e-05,7.357389749675929e-05,0.0,5.538985987029969e-06,1.0628090369842173e-05,0.0,0.0,0.0,0.0,0.0,0.0001509813006292241,2.693231544726109e-05,7.124370475329698e-05,0.0,5.363558214514788e-06 +96117,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,34419.0,,1860.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029669176888304167,0.0005475946451699106,0.0,0.0035145123340003283,0.0011917081021460966,0.0012619259213552407,0.0010608783104989897,0.0,0.0,0.000644113456976186,0.0012619259213552407,0.0010608783104989897,0.0,0.0,0.0005475946451699106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.658747236018138e-05,0.0,0.0,0.0003535619505663148,0.0001296935005730197,0.00039014942292649624,7.675777831379172e-05,0.00015038131725199168,0.00012642285500053137,0.0,0.0,3.658747236018138e-05,0.0,0.0,0.0,0.0,0.0,0.00013229267225814954,0.00014008762047289155,0.00011776913019545502,0.0,0.0 +96118,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,119669.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.010662397847191984,0.0,0.0,0.010662397847191984,0.0031772949400011696,0.0029186122485178323,0.0045664599690666855,0.0,0.0,0.0031772949400011696,0.0029186122485178323,0.0045664599690666855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012706166182742309,0.0004397252721841775,0.0012706166182742309,0.00037863188091291454,0.00034780518213753576,0.0005441758980048015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037863188091291454,0.00034780518213753576,0.0005441758980048015,0.0,0.0 +96119,50.0,the Greater Atlanta and Macon Area,G1300890021410,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,15503.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003510667159012382,0.0,0.0,0.003510667159012382,0.0021217672697081925,0.0007935743725286547,0.000511956786446313,0.0,8.336873032922188e-05,0.0021217672697081925,0.0007935743725286547,0.000511956786446313,0.0,8.336873032922188e-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.00041836433571732846,0.00012936476606826493,0.00041836433571732846,0.00025284987557406516,9.45698353525047e-05,6.1009617595831584e-05,0.0,9.935007194927018e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00025284987557406516,9.45698353525047e-05,6.1009617595831584e-05,0.0,9.935007194927018e-06 +96121,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001200,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13495.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003062891061787772,0.0,0.0,0.003062891061787772,0.0013980803744892524,0.00045703928948341284,0.0011250643240757988,0.0,8.270707373930742e-05,0.0013980803744892524,0.00045703928948341284,0.0011250643240757988,0.0,8.270707373930742e-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.0003650014042282505,0.00010777413906131177,0.0003650014042282505,0.00016660772114261187,5.446487618516762e-05,0.0001340726946700751,0.0,9.856112230395874e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016660772114261187,5.446487618516762e-05,0.0001340726946700751,0.0,9.856112230395874e-06 +96122,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,20296.0,,8458.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004077208632266473,0.0058180674887283994,0.0,0.009895276120994874,0.003925234013684393,0.00028781224368564716,0.0033637383606031743,0.00036756485145500667,0.001950854931595636,0.0018878847970439298,0.00028781224368564716,0.0012949757966578732,0.00036756485145500667,0.00023889922345300042,0.002037349216640463,0.002068762563945301,0.0017119557081426355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003887302458983385,0.0,0.0,0.0004858717139340704,0.0005265658998371686,0.0008746019598324089,0.00022497495340087836,3.429793291029612e-05,0.0001543193313302534,4.3801870462314394e-05,2.846907912389643e-05,0.00013612411054010135,0.00013822297210297545,0.00011438316325526169,0.0,0.0,0.0,0.0003469349737381604,2.5438517259478125e-05,0.00029730672763189224,3.2487515812316324e-05,0.00017242788636308607 +96123,81.0,the Columbus-Albany Area,G1300950011400,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,10114.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0028725820851136256,0.0,0.0,0.0028725820851136256,0.0015761487042499813,0.0006740626509753554,0.0005356937166094941,0.0,8.667701327879417e-05,0.0015761487042499813,0.0006740626509753554,0.0005356937166094941,0.0,8.667701327879417e-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.0003423187704909356,9.331492457801793e-05,0.0003423187704909356,0.00018782588993567195,8.032644188359797e-05,6.383734528589743e-05,0.0,1.032909338576818e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00018782588993567195,8.032644188359797e-05,6.383734528589743e-05,0.0,1.032909338576818e-05 +96124,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000500,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,158552.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013460093046896868,0.0,0.0,0.013460093046896871,0.0032186952188967702,0.004060419050823865,0.006181009466782532,0.0,0.0,0.0032186952188967702,0.004060419050823865,0.006181009466782532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016040151227187155,0.0005514195897443123,0.0016040151227187155,0.0003835661305270919,0.0004838728483825878,0.0007365798010343197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003835661305270918,0.00048387284838258764,0.0007365798010343195,0.0,0.0 +96125,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970100,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,34418.0,,1301.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,170265.11643903222,0.0,0.0,0.008450881261386475,0.0011503180110925774,0.0,0.009601199272479054,0.006437409764336985,0.0014034543699549412,0.0005024918103610274,0.0006453363349066744,0.0006125069929194243,0.005287091753244407,0.0014034543699549412,0.0005024918103610274,0.0006453363349066744,0.0006125069929194243,0.0011503180110925774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.685756918896458e-05,0.0,0.0,0.0010070728305667423,0.0003178424487870272,0.001083930399755707,0.0006300510316875963,0.00016724655349019816,5.988083776648203e-05,7.690330385205378e-05,7.299110377041173e-05,7.685756918896458e-05,0.0,0.0,0.0,0.0,0.0,0.000726753392073636,0.00015844342077397206,5.672897035267586e-05,7.285544770196836e-05,6.914916885345438e-05 +96126,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,3081.0,,331.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0003866555697312622,0.00026259495912230106,0.0,0.0006492505288535631,0.0004255278943887366,0.00014300053049526253,6.715814387631764e-05,0.0,1.3481253019507108e-05,0.00017641418828594273,0.00014300053049526253,6.715814387631764e-05,0.0,0.0,0.0002491137061027939,0.0,1.3481253019507108e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7543842389155282e-05,0.0,0.0,4.6081787151866524e-05,3.2278792700584134e-05,6.36256295410218e-05,2.102512342137568e-05,1.7042868446112773e-05,8.00393821760762e-06,0.0,0.0,1.664316638618447e-05,0.0,9.006760029708065e-07,0.0,0.0,0.0,4.170112917051683e-05,1.4013848850500218e-05,6.581402699020346e-06,0.0,1.3211436452466947e-06 +96127,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,4061.0,,631.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003451660020302632,0.0001856414284948041,0.0,0.0005308074305250673,0.00024953718880662125,0.00018238833022724766,9.885122188490066e-05,0.0,0.0,6.389576031181719e-05,0.00018238833022724766,9.885122188490066e-05,0.0,0.0,0.0001856414284948041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2402565658089504e-05,0.0,0.0,4.1133858330651374e-05,2.6343191514193134e-05,5.3536423988740876e-05,7.61453659148361e-06,2.173544234543088e-05,1.1780222075489292e-05,0.0,0.0,1.2402565658089504e-05,0.0,0.0,0.0,0.0,0.0,2.516793845122872e-05,1.8395407479480058e-05,9.969982751372245e-06,0.0,0.0 +96128,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,19556.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0045907388349739975,0.0,0.0,0.0045907388349739975,0.002156586947752441,0.0010794100193717011,0.0012743505921752488,0.0,8.030856860086751e-05,0.002156586947752441,0.0010794100193717011,0.0012743505921752488,0.0,8.030856860086751e-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.0005470679111464195,0.00018652658661066503,0.0005470679111464195,0.00025699556413978473,0.00012863083825842108,0.0001518614631741439,0.0,9.570189560104736e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00025699556413978473,0.00012863083825842108,0.0001518614631741439,0.0,9.570189560104736e-06 +96129,35.0,Eastern Counties in South Carolina and Georgia,G1301270000101,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,69757.0,,13071.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0033968890230222366,0.0022229086023162798,0.0,0.005619797625338516,0.0019737083725574383,0.0007940719665584849,0.0025975156783991558,0.0,0.0002545016078234379,0.0019737083725574383,0.0007940719665584849,0.0003746070760828757,0.0,0.0002545016078234379,0.0,0.0022229086023162798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014852173707900358,0.0,0.0,0.00040480051086614016,0.0002587968173126704,0.0005533222479451438,0.00023520290244901504,9.462797740780095e-05,4.464118042852718e-05,0.0,3.0328450580797003e-05,0.0,0.00014852173707900358,0.0,0.0,0.0,0.0,0.0001943302635254324,7.81838982217612e-05,0.0002557499949400759,0.0,2.5058091257874338e-05 +96130,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,67637.0,,3403.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005871105822388329,0.0010016166807381255,0.0,0.006872722503126454,0.0018681684041600617,0.0019947937197443834,0.0030097603792220095,0.0,0.0,0.0008665517234219359,0.0019947937197443834,0.0030097603792220095,0.0,0.0,0.0010016166807381255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.692205423155637e-05,0.0,0.0,0.0006996478712425199,0.0002866456989729715,0.0007665699254740763,0.00010326522582879677,0.0002377155550944171,0.0003586670903193061,0.0,0.0,6.692205423155637e-05,0.0,0.0,0.0,0.0,0.0,0.000208371822621754,0.00022249536081006996,0.0003357027420422524,0.0,0.0 +96131,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,704437.0,,36833.0,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,863994.0691636442,0.0,0.0,0.1128509782642664,0.019286766162755258,0.0,0.13213774442702164,0.07937826239756454,0.008367987888055655,0.04404919044248962,0.0,0.00034224910502045905,0.060433745339829745,0.008367987888055655,0.04404919044248962,0.0,0.0,0.0189445170577348,0.0,0.00034224910502045905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012886290214276829,0.0,0.0,0.013448232705607126,0.006083698667425426,0.014736861727034808,0.007201772488832521,0.0009971969240067083,0.005249256786919503,0.0,0.0,0.0012657619360093564,0.0,2.286708541832654e-05,0.0,0.0,0.0,0.008852780726337103,0.000933252500824134,0.0049126525623215105,0.0,3.8169848885785185e-05 +96132,50.0,the Greater Atlanta and Macon Area,G1301510070106,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,10189.0,,577.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0022003389897605353,0.00045737011777837,0.0,0.002657791814612644,0.0011703050934112,0.0010377256542070904,0.0003877307616898732,0.0,6.211301237821987e-05,0.0007749652809373107,0.0010377256542070904,0.0003877307616898732,0.0,0.0,0.0003953398124738894,0.0,6.211301237821987e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.056007799081239e-05,0.0,0.0,0.00026221385317712874,0.00011155220178856907,0.0002927739311679411,9.2352420849109e-05,0.00012366550954042376,4.620577896911664e-05,0.0,0.0,2.6415401952275443e-05,0.0,4.150202273254992e-06,0.0,0.0,0.0,0.00012891710365726985,0.00011431257240902934,4.271119307033789e-05,0.0,6.842172780679128e-06 +96133,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,10314.0,,1344.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0009094766879646028,0.00039145494955374554,0.0,0.0013009012639189105,0.0009210794029498241,0.0002898856330339034,8.99666015346209e-05,0.0,0.0,0.0005296244533960785,0.0002898856330339034,8.99666015346209e-05,0.0,0.0,0.00039145494955374554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.615400033437161e-05,0.0,0.0,0.00010838007242640361,5.162181181984876e-05,0.00013453407276077523,6.311402741539591e-05,3.454494911123121e-05,1.0721095899776492e-05,0.0,0.0,2.615400033437161e-05,0.0,0.0,0.0,0.0,0.0,9.525439543475389e-05,2.9978827700883466e-05,9.303990742876867e-06,0.0,0.0 +96134,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,6711.0,,664.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005917992114451566,0.0001935405756173546,0.0,0.0007853701606619489,0.0005684115398780877,0.0001526273371747029,6.43009100097206e-05,0.0,0.0,0.000374870964260733,0.0001526273371747029,6.43009100097206e-05,0.0,0.0,0.0001935405756173546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2931566944013746e-05,0.0,0.0,7.052507885625834e-05,3.176762683793632e-05,8.34566458002721e-05,4.4673605175730875e-05,1.8188694377576376e-05,7.662779302951081e-06,0.0,0.0,1.2931566944013746e-05,0.0,0.0,0.0,0.0,0.0,6.0401735294360995e-05,1.621880516480517e-05,6.8328777181875705e-06,0.0,0.0 +96135,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4859.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001290230350333196,0.0,0.0,0.0012902303503331957,0.0006793559036946712,0.00037110663986827247,0.00019882780526929507,0.0,4.094000150095717e-05,0.0006793559036946712,0.00037110663986827247,0.00019882780526929507,0.0,4.094000150095717e-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.0001537506836983925,4.6865054152377406e-05,0.0001537506836983925,8.095564845503819e-05,4.422303318940303e-05,2.3693374590444585e-05,0.0,4.8786274635066845e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.09556484550382e-05,4.4223033189403035e-05,2.3693374590444592e-05,0.0,4.878627463506685e-06 +96136,85.0,Rural Climate Zone 3A,G1302770960200,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,19247.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0016563487414933168,0.0,0.0,0.001656348741493317,0.0004167341639165061,0.000518439519187093,0.0007211750583897178,0.0,0.0,0.0004167341639165061,0.000518439519187093,0.0007211750583897178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019738453671795276,6.794065282382595e-05,0.00019738453671795276,4.966157054887033e-05,6.178164159968087e-05,8.594132456940158e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9661570548870327e-05,6.178164159968085e-05,8.594132456940157e-05,0.0,0.0 +96137,85.0,Rural Climate Zone 3A,G1302770960700,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,179924.0,,7938.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.01710122139274465,0.0023860143345650047,0.0,0.019487235727309656,0.006792328284574818,0.001494353588795769,0.008360514253683112,0.0,0.002840039600255958,0.006792328284574818,0.001494353588795769,0.0059744999191181074,0.0,0.002840039600255958,0.0,0.0023860143345650047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015942045781967837,0.0,0.0,0.0020379196385912042,0.0009172232208053196,0.0021973400964108826,0.0008094286884541602,0.00017807924098907753,0.0007119696562198734,0.0,0.0003384420529280936,0.0,0.00015942045781967837,0.0,0.0,0.0,0.0,0.0007658887846656382,0.00016850019699175502,0.0009427141670220272,0.0,0.00032023694773146254 +96138,81.0,the Columbus-Albany Area,G1302150000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,460541.0,,15876.0,,3.3063363735822096,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,495950.45603733143,0.0,0.0,0.03734464359583583,0.0047720600071522136,0.0,0.042116672264965835,0.01320512178223749,0.007371298244792954,0.015852557898027916,0.0,0.005687725677929682,0.01320512178223749,0.007371298244792954,0.011080497890875703,0.0,0.005687725677929682,0.0,0.0047720600071522136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031884091563935674,0.0,0.0,0.004450287672941372,0.002003334006030482,0.0047691285885807285,0.0015736283715326168,0.0008784231031203188,0.0013204411242343614,0.0,0.0006777950740540747,0.0,0.00031884091563935674,0.0,0.0,0.0,0.0,0.0014952967654034098,0.0008346972185511423,0.0017950821612396325,0.0,0.0006440559919826124 +96139,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,6456.0,,42.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015500959760220998,3.3165536569462275e-05,0.0,0.001583261512591562,0.0008871160729278114,0.00036333217493677753,0.0002996477281575108,0.0,3.3165536569462275e-05,0.0008871160729278114,0.00036333217493677753,0.0002996477281575108,0.0,0.0,0.0,0.0,3.3165536569462275e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2179216686278956e-06,0.0,0.0,0.00018472270256698152,6.947332762816962e-05,0.00018694062423560943,0.0001057163433856282,4.3297771442575485e-05,3.5708587738777824e-05,0.0,0.0,0.0,0.0,2.2179216686278956e-06,0.0,0.0,0.0,0.00010474456122609554,4.2899762956016944e-05,3.538034172311618e-05,0.0,3.915958330380786e-06 +96140,50.0,the Greater Atlanta and Macon Area,G1300670031408,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,18160.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016179867336211888,0.0,0.0,0.0016179867336211884,0.0007266071187044111,0.0004151689939953233,0.0004762413105277518,0.0,0.0,0.0007266071187044111,0.0004151689939953233,0.0004762413105277518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019281368905437545,8.274368638973379e-05,0.00019281368905437545,8.658896648491858e-05,4.947522970974736e-05,5.675315010613982e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.65889664849186e-05,4.9475229709747375e-05,5.6753150106139836e-05,0.0,0.0 +96141,81.0,the Columbus-Albany Area,G1300950011400,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,80821.0,,16590.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0051981164396854,0.0028212019180745415,0.0,0.008019318357759942,0.0029847822325359493,0.001112402875494113,0.0028855808603907534,0.0,0.0010365346589777068,0.0029847822325359493,0.001112402875494113,0.0009144611206006433,0.0,0.0001864524806932753,0.0,0.00197111973979011,0.0008500821782844315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018849619669034505,0.0,0.0,0.0006194500095743917,0.00034581291259523845,0.0008079462062647369,0.0003556910284667976,0.00013256301198153104,0.00010897465581701378,0.0,2.2219200414373294e-05,0.0,0.0001316986819664715,5.679751472387358e-05,0.0,0.0,0.0,0.00030071676590445707,0.00011207457329883414,0.0002907222291239824,0.0,0.00010443085160381164 +96142,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970200,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4105.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00039654040297261775,0.0,0.0,0.00039654040297261775,0.00017717109715663815,0.000128037037474016,9.13322683419635e-05,0.0,0.0,0.00017717109715663815,0.000128037037474016,9.13322683419635e-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,4.725537483640074e-05,1.7935093853195378e-05,4.725537483640074e-05,2.1113325511225246e-05,1.5258062364945734e-05,1.088398696022975e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1113325511225246e-05,1.5258062364945734e-05,1.088398696022975e-05,0.0,0.0 +96143,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,NaturalGas,6732.0,,483.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013557343527347274,0.00038276833726551474,0.0,0.001738502690000242,0.0011564103050229965,0.00031089589018605665,0.00023124897817510356,0.0,4.01129307635641e-05,0.0008136721914473066,0.00031089589018605665,0.00023124897817510356,0.0,0.0,0.0003427381135756899,0.0,4.01129307635641e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5577023734937385e-05,0.0,0.0,0.00016155839005368568,8.084750915135779e-05,0.00018713541378862305,9.696263063373352e-05,3.704843754342389e-05,2.7557177805643307e-05,0.0,0.0,2.290215781278749e-05,0.0,2.680392504633672e-06,0.0,0.0,0.0,0.00012447799027557222,3.34653672897923e-05,2.4892036962558995e-05,0.0,4.317824723476793e-06 +96144,50.0,the Greater Atlanta and Macon Area,G1302550160900,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,66888.0,,1791.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0034430588841600535,0.0003045898788350871,0.0,0.0037476487629951407,0.0014712299299131416,0.0007306859244817961,0.0008080612217189066,0.0,0.0007376716868812969,0.0011666400510780544,0.0007306859244817961,0.0008080612217189066,0.0,0.0007376716868812969,0.0003045898788350871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.03508439620904e-05,0.0,0.0,0.000410303206267118,0.00013235724977276472,0.0004306540502292084,0.00013902642087218754,8.707454263079563e-05,9.629521924725222e-05,0.0,8.790702351688268e-05,2.03508439620904e-05,0.0,0.0,0.0,0.0,0.0,0.00016906363648368144,8.396540677202386e-05,9.285684437735041e-05,0.0,8.47681625961528e-05 +96145,50.0,the Greater Atlanta and Macon Area,G1301530021113,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,245714.0,,1226.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012648183813693129,0.00020850905029982095,0.0,0.01285669286399295,0.007683132974874321,0.0025033497288972557,0.0013880213437688334,0.0,0.0012821888164525385,0.007683132974874321,0.0025033497288972557,0.0011795122934690127,0.0,0.0012821888164525385,0.0,0.00020850905029982095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3931403285604936e-05,0.0,0.0,0.001507260627525175,0.000445826900580765,0.0015211920308107797,0.0009155847194860667,0.00029831954839300534,0.00014056029433277622,0.0,0.0001527960653133265,0.0,1.3931403285604936e-05,0.0,0.0,0.0,0.0,0.0009090612007828971,0.0002961940289167135,0.00016422940402114106,0.0,0.00015170739709002794 +96146,50.0,the Greater Atlanta and Macon Area,G1300590130600,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,35597.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0030824333669349697,0.0,0.0,0.00308243336693497,0.001103506173646499,0.0008911340980663958,0.0010877930952220751,0.0,0.0,0.001103506173646499,0.0008911340980663958,0.0010877930952220751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000367328437489992,0.00012734973268939742,0.000367328437489992,0.00013150298815029664,0.00010619496250855642,0.00012963048683113898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013150298815029662,0.00010619496250855641,0.00012963048683113895,0.0,0.0 +96147,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,130594.0,,7032.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012402785968011016,0.0020486385348774845,0.0,0.014451424502888499,0.01058978581757161,0.0026828696647371803,0.0011787690205797105,0.0,0.0,0.008541147282694127,0.0026828696647371803,0.0011787690205797105,0.0,0.0,0.0020486385348774845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013687738562720975,0.0,0.0,0.001478016793022034,0.0004723516250783082,0.0016148941786492438,0.0010178325376295184,0.0003197125571785425,0.00014047169821397343,0.0,0.0,0.00013687738562720975,0.0,0.0,0.0,0.0,0.0,0.0011833700869087716,0.00029980093677220166,0.00013172315496827062,0.0,0.0 +96148,35.0,Eastern Counties in South Carolina and Georgia,G1300510010603,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,40432.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003370041978416878,0.0,0.0,0.0033700419784168777,0.0021290070789897766,0.0009707706116299861,0.0002702642877971157,0.0,0.0,0.0021290070789897766,0.0009707706116299861,0.0002702642877971157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004016016594519255,0.00010568900030950611,0.0004016016594519255,0.00025370982954605345,0.00011568493540276505,3.220689450310702e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025370982954605345,0.00011568493540276506,3.220689450310702e-05,0.0,0.0 +96149,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,12084.0,,944.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002595926923455642,0.0007485817244144715,0.0,0.003344508647870114,0.002017473649722926,0.0004495956528468751,0.000794732271561005,0.0,8.262436666556811e-05,0.0012688919253084545,0.0004495956528468751,0.000794732271561005,0.0,8.262436666556811e-05,0.0007485817244144715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.001349661300016e-05,0.0,0.0,0.000309352111288832,0.00012136123480376913,0.0003593656079018321,0.00015121165104639691,5.357753455144137e-05,9.470686709065494e-05,0.0,9.846202541738398e-06,5.001349661300016e-05,0.0,0.0,0.0,0.0,0.0,0.00021677642993099043,4.8308804702368046e-05,8.539354385302697e-05,0.0,8.877942586031213e-06 +96150,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,125422.0,,9385.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011174944961969918,0.0027626476693129063,0.0,0.01393759263128283,0.004500139729857349,0.004924822501804961,0.004512661089226813,0.0,0.0,0.0017374920605444431,0.004924822501804961,0.004512661089226813,0.0,0.0,0.0027626476693129063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018458459765152103,0.0,0.0,0.001331697006121784,0.000529412868487818,0.001516281603773305,0.00020705363498985194,0.0005868817612662991,0.0005377652670878356,0.0,0.0,0.00018458459765152103,0.0,0.0,0.0,0.0,0.0,0.0004895737210367892,0.0005357752919664992,0.0004909359295162893,0.0,0.0 +96151,35.0,Eastern Counties in South Carolina and Georgia,G1302450001500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,14568.0,,749.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012389700958445591,0.00022056620046158988,0.0,0.001459536296306149,0.0005137440094235445,0.000444416188797034,0.0005013760980855704,0.0,0.0,0.0002931778089619547,0.000444416188797034,0.0005013760980855704,0.0,0.0,0.00022056620046158988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4736975435424462e-05,0.0,0.0,0.00014764655853521678,6.046635900757142e-05,0.00016238353397064122,3.493764270607431e-05,5.2960536378798495e-05,5.9748379450343973e-05,0.0,0.0,1.4736975435424464e-05,0.0,0.0,0.0,0.0,0.0,5.715758355415563e-05,4.944438276270775e-05,5.578156765377782e-05,0.0,0.0 +96152,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,228878.0,,19906.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010894101428045883,0.0033852047148464205,0.0,0.014279306142892306,0.006540482102797599,0.0033598325676543256,0.0022778549923570235,0.0,0.002101136480083357,0.005678981571758653,0.0033598325676543256,0.0014955027946971938,0.0,0.00035976676357429144,0.0008615005310389455,0.0007823521976598298,0.0017413697165090658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022617992916406236,0.0,0.0,0.0012982292777848022,0.0005508813640925101,0.0015244092069488647,0.0006767533966112423,0.0004003848354628484,0.0001782162141511424,0.0,4.2872718666233896e-05,5.7560515684804284e-05,5.227227879956346e-05,0.00011634831932057396,0.0,0.0,0.0,0.0006982391886283495,0.00035868407390987373,0.000243175899983901,0.0,0.00022431004442674036 +96153,50.0,the Greater Atlanta and Macon Area,G1301210009602,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,417195.0,,11522.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.021475191055582158,0.001959346779807195,0.0,0.02343455556575077,0.009174362752469283,0.004128337353045095,0.005312778686988882,0.0,0.004819059042886092,0.007932971497644286,0.004128337353045095,0.004594823162006684,0.0,0.004819059042886092,0.001241391254824997,0.0007179555249821982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013091248653014452,0.0,0.0,0.002559157903946256,0.000823829449535721,0.0026900703904764,0.0009453572104402585,0.0004919661547996187,0.0005475563864298281,0.0,0.0005742781522765503,8.294275296275445e-05,4.7969733567390074e-05,0.0,0.0,0.0,0.0,0.0010531320520529158,0.00047389497292429407,0.0006098578911353473,0.0,0.0005531834390822212 +96154,35.0,Eastern Counties in South Carolina and Georgia,G1302450010300,ComStock 90.1-2007,gen4_led,_1000,Electricity,4778.0,,,614.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0003044649607640243,0.0,5.783133332947947e-05,0.0003622962940935037,0.0002631568655286818,8.896427275317509e-05,1.0144782212209108e-05,0.0,0.0,0.00020532553219920231,8.896427275317509e-05,1.0144782212209108e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.783133332947947e-05,0.0,0.0,0.0,0.0,4.6648935350024496e-06,3.628121728034619e-05,1.5514522979718062e-05,4.0946110815348635e-05,2.446738116671391e-05,1.0601325360548083e-05,1.2088913180003617e-06,0.0,0.0,0.0,0.0,0.0,4.6648935350024496e-06,0.0,0.0,2.9741541256219032e-05,1.0054590759402765e-05,1.1465460271903458e-06,0.0,0.0 +96155,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,30165.0,,1377.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.0029259684571392125,0.00041378724518107015,0.0,0.0033397557023202825,0.0010268843115793175,0.0003927280942600099,0.0013060120753499772,0.0,0.0006141312211309779,0.0010268843115793175,0.0003927280942600099,0.0008922248301689071,0.0,0.0006141312211309779,0.0,0.00041378724518107015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7647241558836747e-05,0.0,0.0,0.0003486825312311375,0.00016603622465980237,0.0003763297727899742,0.0001223720030779487,4.6800718462306297e-05,0.00010632486876319205,0.0,7.318494092769044e-05,0.0,2.7647241558836747e-05,0.0,0.0,0.0,0.0,0.00011571119989098334,4.4253319001275724e-05,0.00014716382615529572,0.0,6.920142774241944e-05 +96156,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,18758.0,,2133.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0010128114353976762,0.0003627631946542803,0.0,0.0013755746300519566,0.0005647474719515219,0.00018707304334297716,0.0004212201962561944,0.0,0.0002025161881398431,0.0004495355834440188,0.00018707304334297716,0.00017366889010941722,0.0,0.0002025161881398431,0.00011521188850750312,0.0002475513061467772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4238037741453006e-05,0.0,0.0,0.00012069373909493215,6.410421465167902e-05,0.00014493177683638515,5.356982408159428e-05,2.2292940517665904e-05,2.069560727613852e-05,0.0,2.413325434487536e-05,7.697887059822172e-06,1.6540150681630833e-05,0.0,0.0,0.0,0.0,5.950230019195622e-05,1.971018364075506e-05,4.438013768869471e-05,0.0,2.1337287228196782e-05 +96157,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010403,ComStock 90.1-2007,gen4_led,_1000,Electricity,3734.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005721675361285288,0.0,0.0,0.0005721675361285288,0.00030502368795056584,0.00011181996369554362,0.000128857620885841,0.0,2.6466263596578376e-05,0.00030502368795056584,0.00011181996369554362,0.000128857620885841,0.0,2.6466263596578376e-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,6.818310879471748e-05,2.2002510905829555e-05,6.818310879471748e-05,3.6348555252228695e-05,1.3325175352769301e-05,1.5355490532259304e-05,0.0,3.1538876574601896e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.6348555252228695e-05,1.3325175352769301e-05,1.5355490532259304e-05,0.0,3.1538876574601896e-06 +96158,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,31241.0,,7996.0,,3.3063363735822096,Lodging,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,123987.61400933286,0.0,0.0,0.006242847403250605,0.0024034382749104056,0.0,0.008646317016183215,0.002629824147311803,0.0016439613067974674,0.002759062150880929,0.0,0.0016134694111930156,0.002629824147311803,0.0016439613067974674,0.001969093287163539,0.0,0.0,0.0,0.00078996886371739,0.0016134694111930156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016058465518707627,0.0,0.0,0.0007439484659996649,0.0004393524559716607,0.0009045331211867411,0.0003133912322160528,0.0001959077986942243,0.00023465316958296746,0.0,0.0,0.0,5.278141690296267e-05,0.0001078032382841136,0.0,0.0,0.0,0.0002751186475915585,0.0001719827585739122,0.0002886388614034652,0.0,0.00016879285361780523 +96159,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,32897.0,,1430.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0029311029182809973,0.00042081588155410055,0.0,0.0033519494894413957,0.002339959721774646,0.0004603747840718394,0.0005515842939886121,0.0,0.0,0.001919143840220546,0.0004603747840718394,0.0005515842939886121,0.0,0.0,0.00042081588155410055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81173267721585e-05,0.0,0.0,0.00034929480432913215,0.0001329980737099644,0.00037741213110129067,0.00022870127417512617,5.4862120029121236e-05,6.573141012488475e-05,0.0,0.0,2.8117326772158498e-05,0.0,0.0,0.0,0.0,0.0,0.00026346733089743736,5.183581343011381e-05,6.210553128321016e-05,0.0,0.0 +96160,50.0,the Greater Atlanta and Macon Area,G1301350050211,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,46795.0,,7778.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0024087582507212736,0.001322755883381619,0.0,0.0037315141341028933,0.0012679867969550762,0.0005054039522786052,0.0007943024612569455,0.0,0.0011637854628894257,0.001169281874929642,0.0005054039522786052,0.0005722651451936242,0.0,0.00016178954795798185,9.870492202543393e-05,0.00022203731606332126,0.001001995914931444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.837852009686834e-05,0.0,0.0,0.00028704736437783353,0.0001778424080884091,0.0003754258844747019,0.00013934120633020031,6.022807494453753e-05,6.819580238238529e-05,0.0,1.9280167825606207e-05,6.594863832760522e-06,1.4835185877072041e-05,6.694728575189428e-05,0.0,0.0,0.0,0.0001275715561140569,5.084845426877149e-05,7.99143975718889e-05,0.0,0.00011708790883331421 +96161,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5817.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013967570613094237,0.0,0.0,0.0013967570613094239,0.0005015356951551602,0.00046117464317037824,0.00039037738804953106,0.0,4.358662786061501e-05,0.0005015356951551602,0.00046117464317037824,0.00039037738804953106,0.0,4.358662786061501e-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.000166452976566937,5.57510705031645e-05,0.000166452976566937,5.9768524982348766e-05,5.49586568769091e-05,4.652167511818704e-05,0.0,5.194263302390799e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.976852498234876e-05,5.495865687690909e-05,4.652167511818703e-05,0.0,5.194263302390798e-06 +96162,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,13739.0,,601.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011422671464004976,0.00017701764912514964,0.0,0.0013192541059193494,0.00043760309619894405,0.00040547107840524917,0.0004762413105277518,0.0,0.0,0.00026058544707379435,0.00040547107840524917,0.0004762413105277518,0.0,0.0,0.00017701764912514964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1826613751318519e-05,0.0,0.0,0.0001361202065671055,5.2783967562538105e-05,0.000147946820318424,3.105310784420454e-05,4.831865043429871e-05,5.675210546771476e-05,0.0,0.0,1.182661375131852e-05,0.0,0.0,0.0,0.0,0.0,4.9074690276604754e-05,4.5471267826250224e-05,5.340774554403201e-05,0.0,0.0 +96163,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,95112.0,,10036.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009377362652294574,0.0029542428814294647,0.0,0.012331605533724038,0.005137470783841743,0.00289673055922757,0.004297373501048428,0.0,0.0,0.0021832279024122784,0.00289673055922757,0.004297373501048428,0.0,0.0,0.0029542428814294647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001973850168680501,0.0,0.0,0.0011174810842703477,0.0005320770173435699,0.0013148661011383978,0.00026017079365059733,0.0003451974426277088,0.0005121091907745707,0.0,0.0,0.00019738501686805007,0.0,0.0,0.0,0.0,0.0,0.0005477864306305332,0.0003088659303968003,0.00045821046781023816,0.0,0.0 +96164,46.0,the Tallahassee-Valdosta Area,G1300270960400,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,NaturalGas,310997.0,,21150.0,,7.614023970037612,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.05805497793845003,0.014639657897525516,0.0,0.07269463583597553,0.05188007880534276,0.013576781986717188,0.00448308761918279,0.0008080541535388952,0.001946561104171173,0.04024278555456893,0.013576781986717188,0.002367006178612327,0.0008080541535388952,0.0010602778979899481,0.011637293250773827,0.0021160814405704635,0.0008862832061812246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009781379124009703,0.0,0.0,0.006918297418397476,0.0026801199404849433,0.007896435330798446,0.004795653521847339,0.0016179183784796837,0.00028207146598498454,9.62942225261097e-05,0.00012635122955734606,0.0007775371395962618,0.0001413844160320088,5.9216356772699705e-05,0.0,0.0,0.0,0.005635459652999287,0.0014747743038476813,0.0004869741908750428,8.777466581716094e-05,0.00021144467813577586 +96165,35.0,Eastern Counties in South Carolina and Georgia,G1301270000101,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,9169.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0018913453622704823,0.0,0.0,0.0018913453622704823,0.0007747171597160926,0.0006030172746332905,0.00044099411717798726,0.0,7.25341036693726e-05,0.0007747171597160926,0.0006030172746332905,0.00044099411717798726,0.0,7.25341036693726e-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.0002253902908383347,6.150080125474424e-05,0.0002253902908383347,9.232249668894006e-05,7.186114266670887e-05,5.255295744052828e-05,0.0,8.643837898601517e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.232249668894006e-05,7.186114266670887e-05,5.255295744052828e-05,0.0,8.643837898601517e-06 +96166,46.0,the Tallahassee-Valdosta Area,G1300270960500,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,52394.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,14029.891188970922,0.0,0.0,0.0026837206956234526,0.0,0.0,0.002683720695623452,0.0016306436094408363,0.00024992717457706433,0.000438188152135185,0.0,0.000364979489831787,0.0016306436094408363,0.00024992717457706433,0.000438188152135185,0.0,0.000364979489831787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003198135535954749,0.00010603432725848327,0.0003198135535954749,0.00019432049252870404,2.9783314624325724e-05,5.221799358864826e-05,0.0,4.3493865745015965e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00019432049252870407,2.978331462432573e-05,5.2217993588648265e-05,0.0,4.349386574501597e-05 +96167,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,27440.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.002444887485706492,0.0,0.0,0.002444887485706492,0.0010741362204195973,0.0008191669712982827,0.0005515842939886121,0.0,0.0,0.0010741362204195973,0.0008191669712982827,0.0005515842939886121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000291352589190575,0.00010354649125300477,0.000291352589190575,0.0001280027693676034,9.761856914171629e-05,6.573125068125532e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001280027693676034,9.761856914171629e-05,6.573125068125532e-05,0.0,0.0 +96168,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,87583.0,,5926.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.00862381005926078,0.0017443358427488306,0.0,0.01036814590200961,0.003254970333540655,0.002761972497974357,0.0043511723808883004,0.0,0.0,0.0015106344907918243,0.002761972497974357,0.0043511723808883004,0.0,0.0,0.0017443358427488306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011654692038256372,0.0,0.0,0.0010276831955877378,0.0003831119219220657,0.0011442301159703015,0.00018001946589661684,0.0003291390584137054,0.000518521014054859,0.0,0.0,0.00011654692038256372,0.0,0.0,0.0,0.0,0.0,0.00035921900766319503,0.0003048116935788326,0.00048019602781878163,0.0,0.0 +96169,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,17014.0,,669.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00408531590735309,0.000530565878037657,0.0,0.004615881785390747,0.0027391755751721225,0.0008543640717270457,0.0008973717500714857,0.0,0.00012488768134635419,0.0023334973784808195,0.0008543640717270457,0.0008973717500714857,0.0,0.0,0.00040567819669130287,0.0,0.00012488768134635419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.544921287117599e-05,0.0,0.0,0.0004868362348955151,0.00019350972544072203,0.0005222854477666911,0.00027807667843591583,0.00010181229489767528,0.00010693740557984289,0.0,0.0,2.7104971026207053e-05,0.0,8.344241844968939e-06,0.0,0.0,0.0,0.000309936780945799,9.667100296416267e-05,0.00010153730708239742,0.0,1.4130998497181569e-05 +96170,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,13621.0,,1272.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006444277161732392,0.00021638133077032443,0.0,0.0008608090469435635,0.000333756323371074,0.0001802113934734167,0.00016975048023558552,0.0,0.00017709084986348742,0.0002169841630586062,0.0001802113934734167,7.014130977772889e-05,0.0,0.00017709084986348742,0.00011677216031246774,9.960917045785664e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4457094969514102e-05,0.0,0.0,7.679518761921817e-05,3.41869804937458e-05,9.125228258873228e-05,2.58575773423208e-05,2.147543847911004e-05,8.358602383250622e-06,0.0,2.1103569414536706e-05,7.801903266897726e-06,6.655191702616372e-06,0.0,0.0,0.0,0.0,3.5380699638523104e-05,1.9103773434230174e-05,1.7994837353337236e-05,0.0,1.8772972162641772e-05 +96171,50.0,the Greater Atlanta and Macon Area,G1301510070311,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,18606.0,,2286.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016578218425956066,0.000673023066108622,0.0,0.0023308449087042285,0.0012888100164720282,0.00047160717997679863,0.0005704277122554017,0.0,0.0,0.0006157869503634064,0.00047160717997679863,0.0005704277122554017,0.0,0.0,0.000673023066108622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.496807139296405e-05,0.0,0.0,0.00019755865544497398,0.0001062568067976039,0.00024252672683793802,7.338185493073553e-05,5.620029726990346e-05,6.797650324433499e-05,0.0,0.0,4.4968071392964044e-05,0.0,0.0,0.0,0.0,0.0,0.0001341019617580114,4.9071195293138735e-05,5.93535697867879e-05,0.0,0.0 +96172,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,NaturalGas,37363.0,,10712.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007599806728669226,0.007368653262085911,0.0,0.01496845999075514,0.00466488207476839,0.0007880590415195343,0.007176515459735088,0.00037846628704937954,0.001960465407711728,0.0033532672448348946,0.0007880590415195343,0.002838389572913823,0.00037846628704937954,0.00024155286238057805,0.0013116148299334948,0.004338125886821266,0.0017189125453311498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004923320542495694,0.0,0.0,0.0009056505880642566,0.0007442115973951769,0.001397982642313826,0.0003996007478407428,9.391109009248385e-05,0.0003382440208864343,4.5100912123956794e-05,2.8785270425144303e-05,8.76347414700524e-05,0.00028984922393367565,0.0001148480888458413,0.0,0.0,0.0,0.0004356776965028397,7.36009490517535e-05,0.0006702522538192218,3.534694286003851e-05,0.0001830981017773645 +96173,50.0,the Greater Atlanta and Macon Area,G1301210011425,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,128795.0,,4644.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006629772202908984,0.0007897102976491517,0.0,0.007419482500558136,0.003946725261019494,0.001724579064244276,0.0010194248602073558,0.0,0.0007287533150870104,0.0037432870940858082,0.001724579064244276,0.0010194248602073558,0.0,0.00014248118437154434,0.0002034381669336858,0.0,0.000586272130715466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.276342702017691e-05,0.0,0.0,0.0007900575202046394,0.00027222820180537803,0.0008428209472248163,0.0004460805029876929,0.00020551485287772497,0.00012148294880131669,0.0,1.6979215537904918e-05,1.359244637695352e-05,0.0,3.9170980643223397e-05,0.0,0.0,0.0,0.0004483308266686161,0.0001959046820827607,0.0001158022309830714,0.0,8.278320749036806e-05 +96174,50.0,the Greater Atlanta and Macon Area,G1301510070104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,11991.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002590964499031284,0.0,0.0,0.002590964499031284,0.001014236845265127,0.0005412350905500277,0.0009596501765971841,0.0,7.592509369268422e-05,0.001014236845265127,0.0005412350905500277,0.0009596501765971841,0.0,7.592509369268422e-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.000308758974633838,9.856286841194532e-05,0.000308758974633838,0.00012086415251810755,6.449767708378828e-05,0.00011435919119853232,0.0,9.047809835409175e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012086415251810755,6.449767708378828e-05,0.00011435919119853232,0.0,9.047809835409175e-06 +96175,50.0,the Greater Atlanta and Macon Area,G1300890021910,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,100308.0,,4923.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009425422575756777,0.0014491325197712277,0.0,0.010874524405921708,0.0027868617686817943,0.003144487750868925,0.004943205575977285,0.0,0.0,0.0013377292489105666,0.003144487750868925,0.004943205575977285,0.0,0.0,0.0014491325197712277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.682193384658052e-05,0.0,0.0,0.001123208173295005,0.0004595086271635999,0.0012200301071415857,0.00015941443621815497,0.00037472212139182766,0.0005890716156850223,0.0,0.0,9.682193384658051e-05,0.0,0.0,0.0,0.0,0.0,0.0003126624333457878,0.0003527850583984094,0.0005545860585128996,0.0,0.0 +96176,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,155193.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.013856541381050592,0.0,0.0,0.013856541381050592,0.003902459647209588,0.0038264721820164766,0.006127609551824529,0.0,0.0,0.003902459647209588,0.0038264721820164766,0.006127609551824529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016512556707785227,0.0005361743161596169,0.0016512556707785227,0.00046504812746791,0.00045599285679410366,0.0007302146865165092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046504812746791,0.00045599285679410366,0.0007302146865165092,0.0,0.0 +96177,50.0,the Greater Atlanta and Macon Area,G1300210012102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,21232.0,,1899.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001092934938654895,0.00032292307254342165,0.0,0.0014158757415597366,0.000790791849695775,0.0003518590223809479,0.00010423679478849044,0.0,0.00016897034433310316,0.0005895522475781758,0.0003518590223809479,0.00010423679478849044,0.0,4.7286873907280824e-05,0.00020123960211759927,0.0,0.00012168347042582234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1576258055969173e-05,0.0,0.0,0.00013024394150545345,5.241161325242546e-05,0.00015182019956142264,7.025633981697272e-05,4.193068069134233e-05,1.2421792480947422e-05,0.0,5.635128516190979e-06,1.344591933977105e-05,0.0,8.130338716198122e-06,0.0,0.0,0.0,8.47942887276975e-05,3.772881011190684e-05,1.1177005525215436e-05,0.0,1.8118194021994057e-05 +96178,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,41670.0,,,5910.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0036745373127803405,0.0,0.0005570518136883685,0.0042316195000681464,0.0030631471296978336,0.0007245925881870074,0.0004438494085838673,0.0,0.0,0.0025060953160094654,0.0007245925881870074,0.0004438494085838673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005570518136883685,0.0,0.0,0.0,0.0,4.4926411429264216e-05,0.0004378887952321803,0.00016747846119009985,0.0004828152066614446,0.0002986474119741768,8.634855179502793e-05,5.289283146297549e-05,0.0,0.0,0.0,0.0,0.0,4.4926411429264216e-05,0.0,0.0,0.0003494959824331213,8.267386049365428e-05,5.064189819725729e-05,0.0,0.0 +96179,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030402,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5400.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,9713.774621698478,0.0,0.0,0.00048109026832278884,0.0,0.0,0.00048109026832278873,0.00023112342502799968,0.00014144839542611212,0.00010854913747497474,0.0,0.0,0.00023112342502799968,0.00014144839542611212,0.00010854913747497474,0.0,0.0,0.0,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.733078983164414e-05,2.383423972390657e-05,5.733078983164414e-05,2.7542624280563413e-05,1.6856188462238317e-05,1.2935634322182019e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.754262428056342e-05,1.685618846223832e-05,1.2935634322182022e-05,0.0,0.0 +96180,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,13957.0,,971.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003214575835025662,0.0007706645131028664,0.0,0.003985240348128528,0.002755799696993723,0.0007522208356590009,0.00041279100503288337,0.0,6.44288104429205e-05,0.001985135183890857,0.0007522208356590009,0.00041279100503288337,0.0,6.44288104429205e-05,0.0007706645131028664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1492222673957826e-05,0.0,0.0,0.0003830758524005131,0.00017968211961783394,0.0004345680750744709,0.00023656537961039224,8.964095190219636e-05,4.919164276458077e-05,0.0,7.677878123343704e-06,5.1492222673957826e-05,0.0,0.0,0.0,0.0,0.0,0.0003005044777727793,8.202545694308007e-05,4.5012540473107494e-05,0.0,7.025599885504057e-06 +96181,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,111031.0,,14470.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005377015786413734,0.0024607614007662883,0.0,0.007837777187180022,0.0028714852230618117,0.0016545264062736475,0.0017825750764492688,0.0,0.001529172751033874,0.0023685457910205938,0.0016545264062736475,0.0011267999289671956,0.0,0.00022712592979087643,0.0005029394320412178,0.0006557751474820729,0.0013020468212429977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016441379005115064,0.0,0.0,0.0006407676416039219,0.00031954887767296605,0.0008051814316550726,0.00028225461126187273,0.00019716642565903057,0.00013427837330664313,0.0,2.706611848656374e-05,3.360349287107631e-05,4.3815088039541294e-05,8.699520914053305e-05,0.0,0.0,0.0,0.0002949900880906721,0.0001699708869873924,0.00018312543439429955,0.0,0.00015709320072779205 +96182,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,8930.0,,322.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006913334968026692,9.379367506377762e-05,0.0,0.0007851271718664468,0.0005755493357459593,0.00016222539459703248,4.7352441523455096e-05,0.0,0.0,0.0004817556606821816,0.00016222539459703248,4.7352441523455096e-05,0.0,0.0,9.379367506377762e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.266366086675807e-06,0.0,0.0,8.238431706867191e-05,2.9271524883649827e-05,8.865068315534773e-05,5.740950103361913e-05,1.933195542655317e-05,5.6428606084996055e-06,0.0,0.0,6.266366086675807e-06,0.0,0.0,0.0,0.0,0.0,6.498672270148495e-05,1.8317277215084232e-05,5.346683238778565e-06,0.0,0.0 +96183,50.0,the Greater Atlanta and Macon Area,G1301350050536,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,60067.0,,1876.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004849813369424708,0.0005465121746834684,0.0,0.00539629517050874,0.003920472347427816,0.001039688308754245,0.00043616488792611616,0.0,0.0,0.0033739601727443484,0.001039688308754245,0.00043616488792611616,0.0,0.0,0.0005465121746834684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6514137351201305e-05,0.0,0.0,0.0005779414127208449,0.00015191325173122405,0.0006144555500720463,0.00040206728798948413,0.00012389733051151438,5.197679421984652e-05,0.0,0.0,3.6514137351201305e-05,0.0,0.0,0.0,0.0,0.0,0.00044640923386588937,0.00011838534243834512,4.966443229373753e-05,0.0,0.0 +96184,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,4169.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000675303257081445,0.0,0.0,0.000675303257081445,0.0004242045812089078,0.00010975228685206096,0.0001146320042026801,0.0,2.6631677744056995e-05,0.0004242045812089078,0.00010975228685206096,0.0001146320042026801,0.0,2.6631677744056995e-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,8.047013363127078e-05,2.6281895091350595e-05,8.047013363127078e-05,5.0548844506403906e-05,1.3078244620783386e-05,1.3659718948308796e-05,0.0,3.1734700586980036e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.0548844506403906e-05,1.3078244620783386e-05,1.3659718948308796e-05,0.0,3.1734700586980036e-06 +96185,50.0,the Greater Atlanta and Macon Area,G1300570090602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,12153.0,,207.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028136946486112383,0.00016442166259374315,0.0,0.002978116311204982,0.001181884083734703,0.0006636415596842028,0.0009681690051923326,0.0,0.00016442166259374315,0.001181884083734703,0.0006636415596842028,0.0009681690051923326,0.0,0.0,0.0,0.0,0.00016442166259374315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0985257204576728e-05,0.0,0.0,0.00033530605075888386,0.00012134335251562192,0.00034629130796346065,0.00014084431115063054,7.908570697499366e-05,0.00011537603263325969,0.0,0.0,0.0,0.0,1.0985257204576728e-05,0.0,0.0,0.0,0.00013742787132853398,7.716733656684093e-05,0.00011257737311209369,0.0,1.911872695599199e-05 +96186,35.0,Eastern Counties in South Carolina and Georgia,G1302450010600,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,NaturalGas,184430.0,,5256.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.015751992845209315,0.0015470016742546015,0.0,0.01729899451946391,0.010465063678697754,0.002267409492486877,0.0045664599690666855,0.0,0.0,0.008918062004443153,0.002267409492486877,0.0045664599690666855,0.0,0.0,0.0015470016742546015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010336158682813662,0.0,0.0,0.0018771346299479561,0.0006328327459621495,0.0019804962167760927,0.0010627482620813034,0.00027020281944289314,0.0005441762339812848,0.0,0.0,0.00010336158682813662,0.0,0.0,0.0,0.0,0.0,0.0011981054159339716,0.0002595871058690654,0.0005227966678999971,0.0,0.0 +96187,50.0,the Greater Atlanta and Macon Area,G1301350050321,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,131812.0,,606.0,,9.325022323477118,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,699376.6742607838,0.0,0.0,0.03125882517929587,0.0005139538790895623,0.0,0.03177277905838543,0.020605705840616054,0.00283642440029961,0.007816694938380204,0.0,0.0005139538790895623,0.020605705840616054,0.00283642440029961,0.007816694938380204,0.0,0.0,0.0,0.0,0.0005139538790895623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4339893890761464e-05,0.0,0.0,0.003725055301423173,0.0011734936651338565,0.0037593951953139343,0.0024555431415251385,0.00033801135163647605,0.0009315008082615587,0.0,0.0,0.0,0.0,3.4339893890761464e-05,0.0,0.0,0.0,0.0024380930415597315,0.0003356093038875469,0.0009248811802260578,0.0,6.0811669640598436e-05 +96188,85.0,Rural Climate Zone 3A,G1302930010400,ComStock DOE Ref Pre-1980,gen2_t8_halogen,1001_5000,NaturalGas,6487.0,,457.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001557622319732377,0.0003628359324943416,0.0,0.0019204582522267183,0.0009559283582789152,0.00024150465531877767,0.0006163331135053189,0.0,0.00010660941804996727,0.0006997018438345408,0.00024150465531877767,0.0006163331135053189,0.0,0.0,0.00025622651444437433,0.0,0.00010660941804996727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.42421952536751e-05,0.0,0.0,0.00018561582225530283,7.436057521171452e-05,0.00020985801750897796,8.338076016990718e-05,2.877917490497978e-05,7.344603129859908e-05,0.0,0.0,1.7119289012055038e-05,0.0,7.122906241620061e-06,0.0,0.0,0.0,0.00010445904247927507,2.6390413915857694e-05,6.734978236334641e-05,0.0,1.1649740937513892e-05 +96189,50.0,the Greater Atlanta and Macon Area,G1302970110503,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,30005.0,,3763.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002478461914996179,0.0011077413393155817,0.0,0.003586203254311762,0.001823054682902438,0.0007291850456334182,0.0010339942153822022,0.0,0.0,0.0007153133435868565,0.0007291850456334182,0.0010339942153822022,0.0,0.0,0.0011077413393155817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.401330460458638e-05,0.0,0.0,0.00029535176282175114,0.0001573464837803502,0.00036936506742633754,8.524200259846427e-05,8.689505670754724e-05,0.00012321836071509603,0.0,0.0,7.401330460458638e-05,0.0,0.0,0.0,0.0,0.0,0.00018776758262726754,7.510323995797985e-05,0.00010649740575186269,0.0,0.0 +96190,46.0,the Tallahassee-Valdosta Area,G1301850010604,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,19783.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.000983467687247489,0.0,0.0,0.000983467687247489,0.00038795803823217544,0.00021161186354833023,0.00023150532906162947,0.0,0.0001523747260439338,0.00038795803823217544,0.00021161186354833023,0.00023150532906162947,0.0,0.0001523747260439338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011719690818931238,2.9831127753216395e-05,0.00011719690818931238,4.623180118429264e-05,2.521715402104715e-05,2.758779891519167e-05,0.0,1.8158041194543712e-05,0.0,0.0,0.0,0.0,0.0,0.0,4.623180118429264e-05,2.521715402104715e-05,2.758779891519167e-05,0.0,1.8158041194543712e-05 +96191,50.0,the Greater Atlanta and Macon Area,G1300890021210,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,DistrictHeating,373184.0,,,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,2664908.3895131643,0.12527249758412148,0.03670248792036712,0.07488750298873369,0.0,0.0,0.23686248849322228,0.20032901574009535,0.01998312076172847,0.007926897943990872,0.0007861153786281313,0.007837266501756765,0.04619129673736347,0.01998312076172847,0.007926897943990872,0.0007861153786281313,0.0,0.0,0.0,0.0,0.02886522141861036,0.0,0.007837266501756765,0.12527249758412148,0.0,0.0,0.0,0.0,0.0,0.0,0.008924197676423922,0.0026636377071683637,0.008924197676423922,0.005504526744290068,0.0023813495276554337,0.0009446329679820602,9.367983649300882e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0075477368669087785,0.0007528981098018767,0.0002986593810739143,2.9618235795724258e-05,0.0002952823638281336 +96192,50.0,the Greater Atlanta and Macon Area,G1300890021210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,9271.0,,303.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0020504737721449098,0.00024067758458138453,0.0,0.0022911513567262943,0.001112244727646206,0.00048309201771129463,0.0005764683039629729,0.0,0.0001192636003320813,0.000990830743396903,0.00048309201771129463,0.0005764683039629729,0.0,0.0,0.00012141398424930329,0.0,0.0001192636003320813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6082181460819447e-05,0.0,0.0,0.0002443531333508133,0.00010102305260141191,0.0002604353148116327,0.00011807641729359241,5.7569645526867546e-05,6.869721440203166e-05,0.0,0.0,8.11293552731373e-06,0.0,7.969245933505722e-06,0.0,0.0,0.0,0.00012642892619979914,5.491309919192645e-05,6.552718735965203e-05,0.0,1.3556700742125996e-05 +96193,50.0,the Greater Atlanta and Macon Area,G1300890021210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7012.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013875765761243606,0.0,0.0,0.0013875765761243606,0.0007596644722955387,0.0002552340295595027,0.0003261966988278285,0.0,4.656408251523008e-05,0.0007596644722955387,0.0002552340295595027,0.0003261966988278285,0.0,4.656408251523008e-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.00016535732638007995,5.509792205892294e-05,0.00016535732638007995,9.052911979501904e-05,3.0416207260471282e-05,3.8872819648508994e-05,0.0,5.549035867675092e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.052911979501904e-05,3.0416207260471282e-05,3.8872819648508994e-05,0.0,5.549035867675092e-06 +96194,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,91921.0,,8987.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009119662028212763,0.0026455054420745747,0.0,0.011765136780681043,0.004021750146888759,0.003069328905045851,0.004674119107959026,0.0,0.0,0.0013762447048141834,0.003069328905045851,0.004674119107959026,0.0,0.0,0.0026455054420745747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017675685889969285,0.0,0.0,0.0010867707858598576,0.00046430136844622527,0.0012635276447595506,0.0001640041631761536,0.00036576541717004454,0.0005570048627289654,0.0,0.0,0.00017675685889969285,0.0,0.0,0.0,0.0,0.0,0.0004319195420875995,0.0003296333901322055,0.0005019813044165228,0.0,0.0 +96195,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7462.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001530246278324666,0.0,0.0,0.001530246278324666,0.0009374846808350497,0.00029485071788063096,0.0002543242517483703,0.0,4.358662786061501e-05,0.0009374846808350497,0.00029485071788063096,0.0002543242517483703,0.0,4.358662786061501e-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.0001823592096949215,6.189321994241724e-05,0.0001823592096949215,0.00011171990281547591,3.5137313942405966e-05,3.030778131077092e-05,0.0,5.194211626268708e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011171990281547591,3.5137313942405966e-05,3.030778131077092e-05,0.0,5.194211626268708e-06 +96196,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,7088.0,,1262.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0006315000287878302,0.0003713749258085013,0.0,0.0010028749545963314,0.0004946243847000757,0.0002503044289640639,0.00025791545132589425,0.0,0.0,0.00012324945889157437,0.0002503044289640639,0.00025791545132589425,0.0,0.0,0.0003713749258085013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4812455889680206e-05,0.0,0.0,7.525535821452897e-05,4.855046195565404e-05,0.00010006781410420918,1.4687540389247622e-05,2.98285805315497e-05,3.073558003765863e-05,0.0,0.0,2.4812455889680206e-05,0.0,0.0,0.0,0.0,0.0,4.935409021107593e-05,2.49756133127465e-05,2.5735048342364105e-05,0.0,0.0 +96197,50.0,the Greater Atlanta and Macon Area,G1301210011411,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,436085.0,,26567.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.020951046111282554,0.004517997505973595,0.0,0.02546902588689473,0.010625557373977766,0.00705806681337178,0.003614972468488886,0.0,0.004170464691779139,0.010625557373977766,0.00705806681337178,0.002567196760370865,0.0,0.0007002428939235653,0.0,0.0010477757081180203,0.003470221797855574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030186562977423267,0.0,0.0,0.002496695661345658,0.0009173867948189575,0.002798561291119891,0.0012662271303342403,0.0008410961770994043,0.00030592787488482116,0.0,8.344659192008569e-05,0.0,7.000611965256744e-05,0.00023185951012166518,0.0,0.0,0.0,0.0011675465601018022,0.000775547233795225,0.00039721668444268014,0.0,0.0004582547092388365 +96198,50.0,the Greater Atlanta and Macon Area,G1300890021218,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7619.0,,251.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018294804711134803,0.00019891051234303432,0.0,0.0020283909834565143,0.0014510129016824095,0.0003323170222845372,0.0001937826737711973,0.0,5.11956786446313e-05,0.0012521023893393751,0.0003323170222845372,0.0001937826737711973,0.0,5.11956786446313e-05,0.00019891051234303432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.329012606387899e-05,0.0,0.0,0.0002180177330384785,8.458732631423362e-05,0.00023130785910235752,0.00014921204613334204,3.960195530509071e-05,2.309292714779182e-05,0.0,6.100948316040607e-06,1.329012606387899e-05,0.0,0.0,0.0,0.0,0.0,0.0001654664660587874,3.789581968902233e-05,2.209803522433532e-05,0.0,5.838106617099259e-06 +96199,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,19718.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0017159786465297533,0.0,0.0,0.0017159786465297533,0.0005196364138327035,0.0005128847004472089,0.000683457532249841,0.0,0.0,0.0005196364138327035,0.0005128847004472089,0.000683457532249841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002044881054025669,7.575541332522699e-05,0.0002044881054025669,6.192353615688848e-05,6.111895442085521e-05,8.144561482482323e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.192353615688848e-05,6.111895442085521e-05,8.144561482482323e-05,0.0,0.0 +96200,50.0,the Greater Atlanta and Macon Area,G1301350050529,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,NaturalGas,23404.0,,2791.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,30661.31346040191,0.0,0.0,0.0025866510289053865,0.0010371790591073397,0.0,0.0036238300880127266,0.002227491888961951,0.0004351835473842618,0.0008509541344587101,0.0,0.00011020051720780344,0.0014192385175000762,0.0004351835473842618,0.0007322289640210485,0.0,0.0,0.0008082533714618748,0.00011872517043766166,0.00011020051720780344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.929744818450214e-05,0.0,0.0,0.00030824809137299837,0.00015491094556429005,0.0003775455395575005,0.00016912894678629032,5.186029981589611e-05,8.725884477081193e-05,0.0,0.0,5.4002147109520314e-05,7.932431024668981e-06,7.362870050312851e-06,0.0,0.0,0.0,0.00023206927660873882,4.533921381889061e-05,8.865590550054818e-05,0.0,1.1481143629322846e-05 +96201,50.0,the Greater Atlanta and Macon Area,G1300150960500,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,19935.0,,4495.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004685639796471978,0.0034859892188672994,0.0,0.00817154815455621,0.003602024442570637,0.0004536289930144408,0.0029050044925199277,0.0004126325759986971,0.0007983385112355744,0.0022146959874639067,0.0004536289930144408,0.0016046822399949333,0.0004126325759986971,0.0,0.0013873284551067303,0.0013003222525249946,0.0007983385112355744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023291211882135745,0.0,0.0,0.0005583749352316951,0.00037977562679336374,0.0007912870540530525,0.0002639192900592075,5.405773183512192e-05,0.00019122561288199543,4.917230045537024e-05,0.0,9.269265901087957e-05,8.687944568129362e-05,5.3340014129184247e-05,0.0,0.0,0.0,0.0003487999159864954,4.392689643703677e-05,0.000281304399536004,3.995703253443825e-05,7.730663966539462e-05 +96202,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock DOE Ref 1980-2004,gen3_t5_cfl,_1000,NaturalGas,3176.0,,71.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005971450723977997,5.6075395995250426e-05,0.0,0.00065322046839305,0.0003286779110400077,0.00013778998484968618,0.00013075988358184505,0.0,5.6075395995250426e-05,0.0003286779110400077,0.00013778998484968618,0.00013075988358184505,0.0,0.0,0.0,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.748094266154694e-06,0.0,0.0,7.116206857453527e-05,2.791231492373231e-05,7.491016284068997e-05,3.916870644254891e-05,1.6420499479941242e-05,1.5582718894229953e-05,0.0,0.0,0.0,0.0,3.748094266154694e-06,0.0,0.0,0.0,3.7692198927437576e-05,1.5801510672649977e-05,1.4995311148535181e-05,0.0,6.43062679235095e-06 +96203,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010100,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,196954.0,,23643.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.00954703721915737,0.004020784980671054,0.0,0.013567822199828427,0.005771835474515469,0.002215231355821397,0.0029644809687099883,0.0,0.0026162389400587313,0.005517635282836173,0.002215231355821397,0.0013980389979711637,0.0,0.0004160961218057992,0.00025420019167929705,0.0015664419707388248,0.002200142818252932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002686451662148197,0.0,0.0,0.0011377014276238923,0.0005472227861463659,0.001406346593838712,0.0006575256170358498,0.0002639847125533313,0.00016660152541083864,0.0,4.958534684009588e-05,1.698415933053115e-05,0.00010466042467278829,0.00014700058221150025,0.0,0.0,0.0,0.0005982685386225745,0.0002296155584839201,0.00030727759042255867,0.0,0.0002711812306964287 +96204,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,9303.0,,149.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0019303831010754353,0.00011794028715225236,0.0,0.0020483233882276873,0.0013612757266752609,0.0003013018696322969,0.00034389601260804026,0.0,4.184977931208955e-05,0.0012851852188350981,0.0003013018696322969,0.00034389601260804026,0.0,0.0,7.609050784016281e-05,0.0,4.184977931208955e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.881064140712836e-06,0.0,0.0,0.00023003521940618334,6.49163003338319e-05,0.00023791628354689618,0.00015314984037500786,3.590481166652638e-05,4.0980567364649115e-05,0.0,0.0,5.084557510137314e-06,0.0,2.796506630575523e-06,0.0,0.0,0.0,0.00015811451630858293,3.49967302334387e-05,3.994411317887404e-05,0.0,4.860923826000544e-06 +96205,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,79937.0,,1221.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007442874008925176,0.00035934460013980183,0.0,0.007802218609064978,0.00285732510474132,0.002042638815962502,0.0029022546883611566,0.0,0.0,0.0024979805046015185,0.002042638815962502,0.0029022546883611566,0.0,0.0,0.00035934460013980183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4009125965916886e-05,0.0,0.0,0.0008869531302264661,0.00031727331577750275,0.0009109622561923831,0.0002976795825301035,0.00024341738010981784,0.00034585616758654486,0.0,0.0,2.4009125965916886e-05,0.0,0.0,0.0,0.0,0.0,0.00033361220115854013,0.000238492018438629,0.00033885803659521415,0.0,0.0 +96206,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,17249.0,,387.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.001513335176146022,0.00011398119778966811,0.0,0.0016273163739356903,0.0003587614976201455,0.0007169705823269324,0.0005515842939886121,0.0,0.0,0.0002447802998304774,0.0007169705823269324,0.0005515842939886121,0.0,0.0,0.00011398119778966811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.614696183993761e-06,0.0,0.0,0.0001803418806383904,6.184214337681102e-05,0.00018795657682238418,2.9170100788298792e-05,8.544030775028039e-05,6.573147209981121e-05,0.0,0.0,7.614696183993761e-06,0.0,0.0,0.0,0.0,0.0,4.1437291523878744e-05,8.281077883497479e-05,6.370850646353061e-05,0.0,0.0 +96207,50.0,the Greater Atlanta and Macon Area,G1302250040200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,91965.0,,4135.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.004733917847346998,0.000703168403557874,0.0,0.005437068520543452,0.00214230637930072,0.0009430956542940286,0.0018877338500316021,0.0,0.0004639326369171017,0.00214230637930072,0.0009430956542940286,0.0011845654464737278,0.0,0.0004639326369171017,0.0,0.000703168403557874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.698142044944754e-05,0.0,0.0,0.0005641308561928496,0.00020780351107201785,0.0006111122766422972,0.0002552940652866662,0.00011238669028166769,0.00014116212851268483,0.0,5.528585922261505e-05,0.0,4.698142044944754e-05,0.0,0.0,0.0,0.0,0.00024078963209183944,0.00010600148411031502,0.00021217634584311503,0.0,5.214481459702776e-05 +96208,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Propane,133189.0,,,4299.0,3.20458438519356,Mercantile,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,240343.828889517,0.0,0.0,0.011913771017063212,0.0,0.0004051838164996093,0.01231895483356282,0.006229017772694143,0.004792711002481736,0.0012972868055858182,0.0,0.0,0.005823833956194535,0.004792711002481736,0.0012972868055858182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004051838164996093,0.0,0.0,0.0,0.0,3.267691816831844e-05,0.0014197408897727352,0.0004012857041490436,0.0014524178079410536,0.0006940149505151789,0.0005711380362558209,0.00015459514212711904,0.0,0.0,0.0,0.0,0.0,3.267691816831844e-05,0.0,0.0,0.0007344077855041319,0.0005650656977290228,0.00015295148686691527,0.0,0.0 +96209,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,170222.0,,28160.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,240343.828889517,0.0,0.0,0.013716839000486473,0.00820372696654014,0.0,0.021920565967026615,0.017907848998106345,0.0033062574195975992,0.0007064291757232319,0.0,0.0,0.009704122031566205,0.0033062574195975992,0.0007064291757232319,0.0,0.0,0.00820372696654014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005481259670002068,0.0,0.0,0.0016346088464366463,0.0009757372484996808,0.0021827348134368534,0.0011564212220567954,0.00039400022311841413,8.418378169906272e-05,0.0,0.0,0.0005481259670002068,0.0,0.0,0.0,0.0,0.0,0.001783169535893103,0.00032921974655193974,7.034250654832677e-05,0.0,0.0 +96210,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,33464.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002752971932239512,0.0,0.0,0.002752971932239512,0.001575508976435625,0.0008175965496654035,0.0003598664061384836,0.0,0.0,0.001575508976435625,0.0008175965496654035,0.0003598664061384836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032806531052083593,7.917668169052834e-05,0.00032806531052083593,0.00018774976799790685,9.743109357767646e-05,4.288444894525264e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018774976799790685,9.743109357767646e-05,4.288444894525264e-05,0.0,0.0 +96211,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,263446.0,,43535.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012711197518179996,0.007403454253834408,0.0,0.020114669502375823,0.006556918147833988,0.003717914946893712,0.007738682197203347,0.0,0.002101136480083357,0.005905486938899827,0.003717914946893712,0.0027280288688121645,0.0,0.00035976676357429144,0.00065143120893416,0.005010653328391182,0.0017413697165090658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000494655807736227,0.0,0.0,0.0015147695148015209,0.0008672788551587306,0.002009425322537748,0.0007037457778710397,0.00044305693559751054,0.0003250940723771254,0.0,4.287272895584518e-05,4.352484931922443e-05,0.0003347827493035241,0.00011634820911347836,0.0,0.0,0.0,0.0006550262912601521,0.00037141412840252714,0.0007730827478073033,0.0,0.00020990038383124525 +96212,50.0,the Greater Atlanta and Macon Area,G1300590130700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,16458.0,,1425.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013545410405259803,0.0004150248627174408,0.0,0.0017695659032434213,0.0011637340888580232,0.0005117647769266804,9.409741105815516e-05,0.0,0.0,0.0007487092261405824,0.0005117647769266804,9.409741105815516e-05,0.0,0.0,0.0004150248627174408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7728567856723025e-05,0.0,0.0,0.00016141861451868497,7.231163795933089e-05,0.00018914718237540799,8.92225501813074e-05,6.098623724157599e-05,1.1213446671873846e-05,0.0,0.0,2.7728567856723025e-05,0.0,0.0,0.0,0.0,0.0,0.0001243904075786368,5.470204043671899e-05,1.0057980964624339e-05,0.0,0.0 +96213,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,32116.0,,3657.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,14029.891188970922,0.0,0.0,0.0016531611684443032,0.0006218746964469319,0.0,0.0022750358648912354,0.0010142298643112807,0.0004517518786215253,0.0005138790650373904,0.0,0.00029519278728245906,0.0008538232845440629,0.0004517518786215253,0.0002888453178940802,0.0,5.8758417746054995e-05,0.0001604065797672177,0.0002250337471433102,0.00023643436953640405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.154973372198368e-05,0.0,0.0,0.0001970040482699127,9.314691657769378e-05,0.00023855378199189639,0.00010174848452349251,5.383440562285208e-05,3.4421142980567654e-05,0.0,7.002128036191838e-06,1.0717353053053156e-05,1.5035331596037433e-05,1.5797049072893093e-05,0.0,0.0,0.0,0.0001063492552686201,4.736941550249412e-05,5.3883895345531106e-05,0.0,3.095307503045741e-05 +96214,35.0,Eastern Counties in South Carolina and Georgia,G1301270000504,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,157703.0,,10419.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.008076303739363994,0.0017719191292358168,0.0,0.00984822286859981,0.0060268158020972485,0.0009971909869866099,0.0014968680325265378,0.0,0.001327348046989413,0.0055999396205480565,0.0009971909869866099,0.0012677208415337753,0.0,0.0002114522902955497,0.00042687618154919123,0.00022914719099276242,0.001115895756693863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011838960111096697,0.0,0.0,0.0009624369006757769,0.0003836973802243801,0.0010808265017867441,0.0006673335607850958,0.00011883324771695504,0.0001510717473020569,0.0,2.5198344871668957e-05,2.8521448876268458e-05,1.5310317547636383e-05,7.455783468706213e-05,0.0,0.0,0.0,0.0006614332684390165,0.00010944009497535317,0.0001642788410476017,0.0,0.00014567429732477262 +96215,50.0,the Greater Atlanta and Macon Area,G1300670030408,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,241905.0,,42587.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.01437412811576675,0.007242320729248968,0.0,0.021616448845015717,0.010047104332648542,0.004446526419089362,0.003006111857324273,0.0,0.00411668850559212,0.0066403394983153355,0.004446526419089362,0.0026320721528068384,0.0,0.0006551900455552112,0.0034067648343332054,0.0003740397045174339,0.0034614984600369087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004838891009301076,0.0,0.0,0.0017129369488991018,0.0008797617047595987,0.002196826049829209,0.0007913163698201615,0.0005298839231271101,0.0003136589298773436,0.0,7.807772607448622e-05,0.00022761990726372476,2.4991124129609398e-05,0.00023127688489873161,0.0,0.0,0.0,0.001021062279080289,0.0004518894448734417,0.00030550368768795925,0.0,0.0004183688362948901 +96216,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,7234.0,,866.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0008145693645367245,0.0003217281625796034,0.0,0.0011363362755400998,0.0005833962683124784,0.00014123800464924176,0.0003423423240263514,0.0,6.935967855202819e-05,0.00037454226418095224,0.00014123800464924176,0.00029882784413030243,0.0,0.0,0.00020885400413152617,4.351447989604897e-05,6.935967855202819e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1496696038315626e-05,0.0,0.0,9.707197887355293e-05,4.5090848716401104e-05,0.00011856867491186855,4.4634085614678073e-05,1.683128926810486e-05,3.561122162842927e-05,0.0,0.0,1.3954858683189353e-05,2.9074779779632e-06,4.63435937716307e-06,0.0,0.0,0.0,6.087328546249378e-05,1.4737189526487106e-05,3.5721006712349405e-05,0.0,7.237193210538249e-06 +96217,50.0,the Greater Atlanta and Macon Area,G1301210010512,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7421.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001552577188234279,0.0,0.0,0.0015525771882342787,0.0010262293709573265,0.0002304219074377105,0.00025291823149480204,0.0,4.300767834443987e-05,0.0010262293709573265,0.0002304219074377105,0.00025291823149480204,0.0,4.300767834443987e-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.00018501506162488373,6.015469170774216e-05,0.00018501506162488373,0.00012229207780958647,2.745855325415119e-05,3.013935960200801e-05,0.0,5.125070959138054e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001222920778095865,2.7458553254151192e-05,3.0139359602008013e-05,0.0,5.125070959138055e-06 +96218,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,40988.0,,855.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0035071787798783274,0.00024918500978731594,0.0,0.003756333416066206,0.002568391568456294,0.0008018630251566481,0.00038610919605270113,0.0,0.0,0.002319206558668978,0.0008018630251566481,0.00038610919605270113,0.0,0.0,0.00024918500978731594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6648127151313523e-05,0.0,0.0,0.00041794321010657075,0.00013270080066584732,0.0004345913372578843,0.0002763750281540974,9.555635108266765e-05,4.601183086980572e-05,0.0,0.0,1.6648127151313523e-05,0.0,0.0,0.0,0.0,0.0,0.00029715166432329885,9.277204278778488e-05,4.467114423933035e-05,0.0,0.0 +96219,50.0,the Greater Atlanta and Macon Area,G1300590002100,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,15087.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0033718846892778244,0.0,0.0,0.0033718846892778244,0.0014263661937080957,0.0008571761122341821,0.000994635268788911,0.0,9.354170039915669e-05,0.0014263661937080957,0.0008571761122341821,0.000994635268788911,0.0,9.354170039915669e-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.000401819770835898,0.00012240264938063623,0.000401819770835898,0.0001699767904004488,0.00010214771284415234,0.00011852840550596064,0.0,1.1147150060472432e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0001699767904004488,0.00010214771284415234,0.00011852840550596064,0.0,1.1147150060472432e-05 +96220,50.0,the Greater Atlanta and Macon Area,G1301530021113,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,115813.0,,1129.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.024114405854578906,0.000776296966272974,0.0,0.024890631100880863,0.011474119562932534,0.0025299936975466952,0.00326576888019585,0.0003742348087594584,0.007246442431475309,0.011474119562932534,0.0025299936975466952,0.0024894719139228754,0.0003742348087594584,0.007246442431475309,0.0,0.000776296966272974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.186528876316365e-05,0.0,0.0,0.002873665445685899,0.0007181440359441115,0.0029255307344490627,0.0013673478462006914,0.00030149428147998615,0.0002966653816887346,4.4596812585399926e-05,0.0008635440302804979,0.0,5.186528876316365e-05,0.0,0.0,0.0,0.0,0.001348615440727593,0.000297363867156962,0.00038384351091371664,4.39858447336724e-05,0.0008517136412803358 +96221,50.0,the Greater Atlanta and Macon Area,G1301510070305,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,17000.0,,6558.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0035396674495044677,0.004511329616823966,0.0,0.008050997066328435,0.0021938421933965263,0.0005257791075154447,0.0033726316370091096,0.0003715811698318809,0.0015871629585754725,0.0015082709904583004,0.0005257791075154447,0.0009394599003334891,0.0003715811698318809,0.0001945762813653528,0.000685571202938226,0.0024331717366756207,0.0013925866772101197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003014209657907076,0.0,0.0,0.00042181294682579255,0.00041203211322732465,0.0007232339126165002,0.00017973672390781735,6.265572624670514e-05,0.00011195298841980502,4.428035979868767e-05,2.3187148452777388e-05,4.5805904613420466e-05,0.000162570469705503,9.30445914717842e-05,0.0,0.0,0.0,0.00019707634472122755,4.7231576159773756e-05,0.00030296888131405817,3.337972937986466e-05,0.00014257738104157594 +96222,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970600,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,156882.0,,7186.0,,7.614023970037612,Education,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,1142103.5955056418,0.0,0.0,0.028165129131079703,0.0049741120418566,0.0,0.03313924117293631,0.019007999950563195,0.004647844932081719,0.006648170468188811,0.0005986976205911115,0.0022365282015114674,0.019007999950563195,0.004647844932081719,0.002679633721090714,0.0005986976205911115,0.0012309529067529637,0.0,0.003968536747098098,0.0010055752947585037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003323399686036085,0.0,0.0,0.003356383730624138,0.0010822216548075577,0.0036887236992277465,0.0022651464329831407,0.0005538746525855149,0.00031932674562376183,7.134563253601379e-05,0.00014669026689570722,0.0,0.00026515353229569885,6.718643630790978e-05,0.0,0.0,0.0,0.002115777471387095,0.0005173508850681481,0.0007400068044569893,6.664093755861992e-05,0.00024894760075689357 +96223,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,72927.0,,9909.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0037539253109378392,0.0016850935493618181,0.0,0.005439018860299657,0.0032466596707101288,0.0007612530675699671,0.0007804195882650442,0.0,0.0006507042641159378,0.0025091298267201924,0.0007612530675699671,0.0003738978616260735,0.0,0.00010966228538302659,0.0007375298439899363,0.00040652172663897064,0.0005410419787329111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011258786957128676,0.0,0.0,0.0004473488188993401,0.00024027494993089622,0.0005599366884706269,0.00029900868330487955,9.071721796613106e-05,4.455676470175316e-05,0.0,1.3068265823233274e-05,4.9277331760909254e-05,2.716134967940302e-05,3.6149188130974485e-05,0.0,0.0,0.0,0.00033423746291411257,7.836956125571327e-05,8.034271825390649e-05,0.0,6.6988771354016e-05 +96224,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001500,ComStock 90.1-2004,gen2_t8_halogen,_1000,NaturalGas,14753.0,,5046.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.00350940162173588,0.003470816277329481,0.0,0.006980217899065362,0.0011542612135252445,0.0002198217111628479,0.004606143418506604,0.0003659152921216476,0.0006340762637490172,0.0011542612135252445,0.0002198217111628479,0.0016699278051274878,0.0003659152921216476,9.947559979865255e-05,0.0,0.002936215613379116,0.0005346006639503646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002318983539908132,0.0,0.0,0.0004182078524841819,0.0003419082629349393,0.0006501062064749951,0.0001375508292708335,2.619568110569807e-05,0.00019900170925451019,4.360533931525987e-05,1.1854293537880333e-05,0.0,0.00019617966302400898,3.571869096680417e-05,0.0,0.0,0.0,0.00010750271548207646,2.0473208832643488e-05,0.00042899555108244546,3.407971010249496e-05,5.905502097533476e-05 +96225,50.0,the Greater Atlanta and Macon Area,G1301210011503,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6160.0,,316.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014792160138275131,0.00025068514050384077,0.0,0.001729901154331354,0.0008744618906456973,0.00041378348991775505,0.00039873080249720104,0.0,4.292497127070055e-05,0.0006667017214125571,0.00041378348991775505,0.00039873080249720104,0.0,0.0,0.00020776016923314025,0.0,4.292497127070055e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.674703231312748e-05,0.0,0.0,0.00017627821731291455,7.937241447615165e-05,0.00019302524962604202,7.945086439806565e-05,4.9310591066061594e-05,4.7516761848787314e-05,0.0,0.0,1.3879427637933432e-05,0.0,2.867604675194049e-06,0.0,0.0,0.0,9.757391299943306e-05,4.617065040538766e-05,4.4491046492978987e-05,0.0,4.789639728242294e-06 +96226,50.0,the Greater Atlanta and Macon Area,G1300210011000,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,53649.0,,1677.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.012594552127621608,0.0013003222525249946,0.0,0.013894874380146603,0.0062422907313242045,0.0018972365531368667,0.0040687528824421785,0.0004275918208663747,0.0012590832531600453,0.0062422907313242045,0.0018972365531368667,0.0027684306299171845,0.0004275918208663747,0.0012590832531600453,0.0,0.0013003222525249946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.688009044401824e-05,0.0,0.0,0.0015008730254796772,0.00048759670313135617,0.0015877531159236955,0.0007438839968988682,0.0002260907046715996,0.00032990953654015066,5.095544671625191e-05,0.00015004297670551404,0.0,8.688009044401824e-05,0.0,0.0,0.0,0.0,0.0007133001917111998,0.00021679528482758468,0.0004649322397798407,4.8860481019829847e-05,0.00014387415846440436 +96227,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,Electricity,125882.0,,2660.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010319472186421456,0.000782983925473291,0.0,0.011102456111894745,0.004174768523889105,0.0026841129667970853,0.004243574621208555,0.0,0.0,0.0033917845984158144,0.0026841129667970853,0.004243574621208555,0.0,0.0,0.000782983925473291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2313834723690103e-05,0.0,0.0,0.0012297513123134584,0.00035887556356050857,0.0012820651470371483,0.00040419233519275994,0.000319860491281669,0.0005056984858390293,0.0,0.0,5.2313834723690103e-05,0.0,0.0,0.0,0.0,0.0,0.0004820847898413819,0.0003099501273195076,0.0004900302298762589,0.0,0.0 +96228,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,32138.0,,1600.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0015395982035488651,0.00027201920490645,0.0,0.001811617408455315,0.0008271213602454632,0.00028969637524224275,0.0004074791661556535,0.0,0.0002873027764505356,0.0005551021553390132,0.00028969637524224275,0.0004074791661556535,0.0,0.0002873027764505356,0.00027201920490645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8174932278632313e-05,0.0,0.0,0.00018347035678092582,5.796923918658358e-05,0.00020164528905955816,6.615023988411482e-05,3.452244696136936e-05,4.8558349719455934e-05,0.0,3.423720732982613e-05,1.8174932278632313e-05,0.0,0.0,0.0,0.0,0.0,9.206421013377299e-05,3.224516890408825e-05,4.5355191367510626e-05,0.0,3.197874514485868e-05 +96229,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,26276.0,,6687.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0020686367276004005,0.0011371899207593466,0.0,0.003205826648359747,0.0009424396309214866,0.00043483711382679503,0.0014974531344533995,0.0,0.000331114499519486,0.0007945684166782463,0.00043483711382679503,0.0007733097133356031,0.0,6.593921412117638e-05,0.00014787121424324036,0.0007241434211177965,0.0002651752853983097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.597997844953961e-05,0.0,0.0,0.00024651583176236275,0.00013339136312445044,0.00032249581021190235,9.468733273277671e-05,5.1818780632644915e-05,9.215397012406964e-05,0.0,7.857861169125645e-06,9.879837542005681e-06,4.838277276865659e-05,1.7717368138877333e-05,0.0,0.0,0.0,9.480638402745124e-05,4.374320969773191e-05,0.00015063895051748596,0.0,3.330904958634631e-05 +96230,50.0,the Greater Atlanta and Macon Area,G1301130140407,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,77871.0,,5196.0,,4.088175128053588,Healthcare,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.008789808693730574,0.001931182692376834,0.0,0.01072099138610741,0.004645509777611234,0.0015969000404950759,0.004065755861133331,0.0,0.00041282570686777,0.003705783004290681,0.0015969000404950759,0.0034871256489448187,0.0,0.0,0.0009397267733205516,0.0005786302121885122,0.00041282570686777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012902969907114162,0.0,0.0,0.0010474634499250393,0.0003957409725020811,0.0011764931489961809,0.0004416105498537798,0.0001902992981855765,0.0004155536018856831,0.0,0.0,6.2786738535551e-05,3.8660496724038555e-05,2.7582463811552053e-05,0.0,0.0,0.0,0.000509785917190143,0.0001752395734324264,0.0004461652606411775,0.0,4.530239773243402e-05 +96231,50.0,the Greater Atlanta and Macon Area,G1300590130700,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,148155.0,,6548.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.007157746905275316,0.001113519888263576,0.0,0.008271266793538894,0.004603369196211149,0.0010614458167728812,0.0012585897054024483,0.0,0.001347862075152414,0.003909491502037382,0.0010614458167728812,0.0008389297809512185,0.0,0.001347862075152414,0.0006938776941737664,0.0004196599244512298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.439917496580388e-05,0.0,0.0,0.0008529744986923503,0.0003270190431225191,0.0009273736736581541,0.00046588634639129834,0.00012649039221876703,9.997359767185348e-05,0.0,0.00016062204951843565,4.636102912737823e-05,2.8039330482072705e-05,0.0,0.0,0.0,0.0,0.0005161293317282286,0.00011900920754468684,0.00014111296224166632,0.0,0.00015112217214357222 +96232,50.0,the Greater Atlanta and Macon Area,G1300210013603,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7513.0,,503.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014612685788260834,0.0003986480954234617,0.0,0.0018599166742495454,0.0011593050526038722,0.0003299185171460973,0.00032900873933496493,0.0,4.168436516461094e-05,0.0007606569571804104,0.0003299185171460973,0.00032900873933496493,0.0,4.168436516461094e-05,0.0003986480954234617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6636405070958598e-05,0.0,0.0,0.0001741355934240875,6.904050873604114e-05,0.00020077199849504606,9.064552030344877e-05,3.93155355540347e-05,3.920711968762849e-05,0.0,4.967417878975555e-06,2.6636405070958598e-05,0.0,0.0,0.0,0.0,0.0,0.0001251432365219255,3.56136384737077e-05,3.551543089706925e-05,0.0,4.499692602343615e-06 +96233,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5219.0,,642.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009005146188735794,0.0005096409883816122,0.0,0.001410072900181452,0.0009210259731609273,0.00032148239562468795,0.00013729374240725034,0.0,3.0270788988586517e-05,0.00044173848084164087,0.00032148239562468795,0.00013729374240725034,0.0,0.0,0.0004792874923192864,0.0,3.0270788988586517e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.40497767659775e-05,0.0,0.0,0.00010730921499469225,5.995651349826258e-05,0.00014135899176066975,5.2639467054247906e-05,3.8309232061385816e-05,1.636051587905852e-05,0.0,0.0,3.2021820246484846e-05,0.0,2.0224307524095697e-06,0.0,0.0,0.0,9.233232050248216e-05,3.222842401159736e-05,1.3763618178351331e-05,0.0,3.034629068238908e-06 +96234,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2004,gen5_led,_1000,NaturalGas,2486.0,,641.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00011398849356951949,0.00010895307092622446,0.0,0.00022294156449574398,0.00013836774052209205,3.936140235251722e-05,9.1665968541673e-06,0.0,3.6045824766967346e-05,6.546049436283494e-05,3.936140235251722e-05,9.1665968541673e-06,0.0,0.0,7.290724615925712e-05,0.0,3.6045824766967346e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.279283704921083e-06,0.0,0.0,1.3584472910567176e-05,1.0875052183349191e-05,2.086375661548826e-05,7.801193651549852e-06,4.690858587876672e-06,1.0924206711406486e-06,0.0,0.0,4.871019462105044e-06,0.0,2.4082642428160396e-06,0.0,0.0,0.0,1.2949002435761915e-05,3.683596284904082e-06,8.578465222051399e-07,0.0,3.3733113726171166e-06 +96235,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,39826.0,,6655.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0019299143798499076,0.0011317821605262303,0.0,0.003061696540376138,0.0011989447695853906,0.0007504020863808948,0.0005908642943232596,0.0,0.000521485390086593,0.0008833088755856107,0.0007504020863808948,0.00019811905850767003,0.0,9.80843593757321e-05,0.00031563589399977995,0.00039274523581558956,0.0004234010307108609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.561909842691464e-05,0.0,0.0,0.000229984706573675,0.00012689342020264256,0.0003056038050005896,0.00010526245862849032,8.942417624869218e-05,2.3609520719298877e-05,0.0,1.168855097719361e-05,2.1088953835726574e-05,2.624095137710254e-05,2.8289193214085532e-05,0.0,0.0,0.0,0.0001196728933579541,7.490152268657209e-05,5.8977228540746516e-05,0.0,5.205216041531693e-05 +96236,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,21216.0,,1093.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,14029.891188970922,0.0,0.0,0.0010367296929533274,0.0001858673787664135,0.0,0.0012225970717197412,0.0007000301295865247,0.00038093681510983446,0.00011324381838987727,0.0,2.8386308633504542e-05,0.0005141627508201114,0.00038093681510983446,0.00011324381838987727,0.0,2.8386308633504542e-05,0.0001858673787664135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2418652942493724e-05,0.0,0.0,0.00012354469296205783,4.405589763383808e-05,0.00013596334590455157,6.127159240673684e-05,4.539536407664887e-05,1.3495005369213702e-05,0.0,3.3827311094584527e-06,1.2418652942493724e-05,0.0,0.0,0.0,0.0,0.0,7.78493919658256e-05,4.23634614858863e-05,1.259368994695629e-05,0.0,3.1568025058833597e-06 +96237,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,8337.0,,315.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017717509336434435,0.00024952724147149047,0.0,0.0020212781751149343,0.0011131545054573386,0.0002521738678311483,0.0006150098003254899,0.0,4.1022708574696484e-05,0.0008636272639858481,0.0002521738678311483,0.0006150098003254899,0.0,4.1022708574696484e-05,0.00024952724147149047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6671339177783777e-05,0.0,0.0,0.0002111329564055669,8.562634487757466e-05,0.00022780429558335073,0.00010291524277784194,3.005062011392837e-05,7.328842609615328e-05,0.0,4.888523311416357e-06,1.6671339177783777e-05,0.0,0.0,0.0,0.0,0.0,0.00012545595213618875,2.8420774059234674e-05,6.93135047243257e-05,0.0,4.623386006356314e-06 +96238,50.0,the Greater Atlanta and Macon Area,G1301210010511,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,96417.0,,3102.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.015190495808386544,0.0009132306146007416,0.0,0.016103726422987283,0.007026784326740923,0.004725708336145466,0.0043512030704945985,0.0,0.0,0.006113553712140181,0.004725708336145466,0.0043512030704945985,0.0,0.0,0.0009132306146007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.101739384660696e-05,0.0,0.0,0.0018102220409899423,0.0005758482691226083,0.0018712394348365494,0.0007285403859156527,0.0005631535334519837,0.0005185244644012086,0.0,0.0,6.1017393846606955e-05,0.0,0.0,0.0,0.0,0.0,0.0008165064151561681,0.0005491233248664954,0.0005056061287075058,0.0,0.0 +96239,50.0,the Greater Atlanta and Macon Area,G1301350050731,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,49575.0,,3026.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0044170629656094685,0.0008907965123971208,0.0,0.00530785947800659,0.0021135318065101955,0.0017432617065284114,0.0014510659649679832,0.0,0.0,0.0012227352941130741,0.0017432617065284114,0.0014510659649679832,0.0,0.0,0.0008907965123971208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.951764759949225e-05,0.0,0.0,0.000526373069170428,0.00023005352457538414,0.0005858907167699204,0.00014571106062023241,0.0002077412121984605,0.00017292079635173512,0.0,0.0,5.951764759949225e-05,0.0,0.0,0.0,0.0,0.0,0.00023329529919984552,0.00019242424464844084,0.00016017117292163407,0.0,0.0 +96240,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,129045.0,,9510.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011146465007325652,0.0027992296800197682,0.0,0.013945694687345418,0.005203330678956614,0.0030995581672490884,0.005642805841139718,0.0,0.0,0.002404100998936845,0.0030995581672490884,0.005642805841139718,0.0,0.0,0.0027992296800197682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001870285576656581,0.0,0.0,0.0013283035002614415,0.0005782251591478775,0.0015153320579270996,0.00028649224393304033,0.00036936858099092737,0.0006724426753374736,0.0,0.0,0.0001870285576656581,0.0,0.0,0.0,0.0,0.0,0.0005653912524682854,0.00033679640645684924,0.0006131443990019653,0.0,0.0 +96241,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,53838.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005052405277674514,0.0,0.0,0.005052405277674514,0.0031232261093857064,0.0014926497971694379,0.00043652937111936924,0.0,0.0,0.0031232261093857064,0.0014926497971694379,0.00043652937111936924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006020841502832154,0.00014351277681740762,0.0006020841502832154,0.00037218806387546245,0.00017787583050202628,5.202025590572658e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037218806387546245,0.00017787583050202628,5.202025590572658e-05,0.0,0.0 +96242,81.0,the Columbus-Albany Area,G1302150000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,15973.0,,832.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.001333555462454079,0.00024499512707456134,0.0,0.0015785505895286403,0.0005195136554075126,0.0005074526401325155,0.0005515842939886121,0.0,0.0,0.00027451852833295135,0.0005074526401325155,0.0005515842939886121,0.0,0.0,0.00024499512707456134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6368743542387193e-05,0.0,0.0,0.00015891841858899,6.448484963610217e-05,0.0001752871621313772,3.2714087733378944e-05,6.047260376427288e-05,6.573172709133816e-05,0.0,0.0,1.6368743542387193e-05,0.0,0.0,0.0,0.0,0.0,5.7688410462710025e-05,5.634911785213317e-05,6.124963381653399e-05,0.0,0.0 +96243,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,9965.0,,378.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011390140481329413,0.00011131120204176798,0.0,0.0012502945605684112,0.0003501990974630864,0.00037364595667453135,0.0005264801960370913,0.0,0.0,0.00023888789542131844,0.00037364595667453135,0.0005264801960370913,0.0,0.0,0.00011131120204176798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.436750387860221e-06,0.0,0.0,0.0001357326958758837,5.0254654441653915e-05,0.00014316944626374393,2.846751373330491e-05,4.45262049978144e-05,6.273897714476436e-05,0.0,0.0,7.436750387860221e-06,0.0,0.0,0.0,0.0,0.0,4.010079900136431e-05,4.278566539668833e-05,6.028649608872183e-05,0.0,0.0 +96244,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,28952.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006556851391904814,0.0,0.0,0.006556851391904814,0.0027310702819456707,0.0022059630707748075,0.001502787529843216,0.0,0.00011711321641485931,0.0027310702819456707,0.0022059630707748075,0.001502787529843216,0.0,0.00011711321641485931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007813640343790164,0.00020608651035555823,0.0007813640343790164,0.0003254550036482947,0.0002628792543323132,0.0001790835352136372,0.0,1.395609718560871e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003254550036482947,0.0002628792543323132,0.0001790835352136372,0.0,1.395609718560871e-05 +96245,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,138733.0,,3868.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007141293129877509,0.000657814139045379,0.0,0.007799107268922887,0.0034010733883173684,0.002161136023128816,0.0012367990912172033,0.0,0.0010000633055366583,0.0030910934796105857,0.002161136023128816,0.0008889825912400275,0.0,0.0010000633055366583,0.00030997990870678315,0.00034781649997717585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3950955983405736e-05,0.0,0.0,0.0008510138842340245,0.00023529271026760302,0.0008949648402174303,0.0003683595422806838,0.0002575383376585288,0.00010593831036320734,0.0,0.00011917558103923785,2.0710885514080014e-05,2.323888583937011e-05,0.0,0.0,0.0,0.0,0.00039028070734095497,0.00024799514725673625,0.00014192543619228064,0.0,0.00011475948023093923 +96246,35.0,Eastern Counties in South Carolina and Georgia,G1301270000600,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,66504.0,,,,5.759960461090961,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,215998.51729091106,0.0,0.0,0.010195845965131744,0.0,0.0,0.010195845965131744,0.0038051942287328127,0.002473922187590063,0.0038341289911607668,0.0,8.254596375672902e-05,0.0038051942287328127,0.002473922187590063,0.0038341289911607668,0.0,8.254596375672902e-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.0012150175080329266,0.0003677527852489257,0.0012150175080329266,0.00045345698877635753,0.0002948121010961355,0.00045690508352602005,0.0,9.83682879526331e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00045345698877635753,0.0002948121010961355,0.00045690508352602005,0.0,9.83682879526331e-06 +96247,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302290960200,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,21587.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0019007494792150715,0.0,0.0,0.0019007494792150715,0.0010371976736003492,0.0007898350797792983,7.374709943486142e-05,0.0,0.0,0.0010371976736003492,0.0007898350797792983,7.374709943486142e-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.00022650921480502276,6.13006994629252e-05,0.00022650921480502276,0.00012360115481490464,9.412335802409452e-05,8.788321538321086e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012360115481490464,9.412335802409452e-05,8.788321538321086e-06,0.0,0.0 +96248,50.0,the Greater Atlanta and Macon Area,G1302550160500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7209.0,,,2301.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006357194362321457,0.0,0.00021689787358498576,0.0008526173098171313,0.000592467430632787,0.00020095173388016605,5.9198145304178294e-05,0.0,0.0,0.00037556955704780125,0.00020095173388016605,5.9198145304178294e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021689787358498576,0.0,0.0,0.0,0.0,1.7493323930014997e-05,7.575734736256474e-05,3.7341130135732235e-05,9.325067129257973e-05,4.475583373808471e-05,2.394699522937068e-05,7.0545183951093484e-06,0.0,0.0,0.0,0.0,0.0,1.7493323930014997e-05,0.0,0.0,6.479810460023014e-05,2.197807136445825e-05,6.474495327891343e-06,0.0,0.0 +96249,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950900,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,232705.0,,4715.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.011115039461701162,0.0008017492130533677,0.0,0.01191677094439311,0.006531138202329231,0.0024734918002658865,0.001764153230933834,0.0,0.0011479877108641588,0.006155396383115472,0.0024734918002658865,0.001338145837094225,0.0,0.0011479877108641588,0.0003757418192137589,0.00042600739383960866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.356797066915112e-05,0.0,0.0,0.0013245567973069936,0.00040159499425720875,0.0013781247679761446,0.0007335261514336211,0.0002947610207246044,0.00015946413599506363,0.0,0.00013680337626235405,2.510476645703466e-05,2.846320421211645e-05,0.0,0.0,0.0,0.0,0.000755298844100044,0.0002860489917309492,0.0002040169500110226,0.0,0.00013275998213412878 +96250,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,20734.0,,3663.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004867576558376166,0.0028412861954619276,0.0,0.0077087818930550245,0.0037700531497870384,0.0004453003323583823,0.002328952273939736,0.0004156244249722326,0.0007488517119976354,0.002390163886722612,0.0004453003323583823,0.0016164879143229381,0.0004156244249722326,0.0,0.0013798892630644257,0.0007124643596167978,0.0007488517119976354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001898363402877435,0.0,0.0,0.0005800574145614203,0.00035279730424350633,0.0007698937548491637,0.0002848300931445258,5.306537172931775e-05,0.00019263298460882352,4.952896507875308e-05,0.0,9.219526287809045e-05,4.760225380714063e-05,5.003342100873107e-05,0.0,0.0,0.0,0.00037652386793890334,4.447316705429693e-05,0.0002325978132373089,4.150936601762961e-05,7.478954060102486e-05 +96251,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,16281.0,,1278.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014525870195110431,0.00037228920830852406,0.0,0.001824906601419005,0.0013032400310756176,0.000412443106765232,0.00010922346357815555,0.0,0.0,0.0009309508227670933,0.000412443106765232,0.00010922346357815555,0.0,0.0,0.00037228920830852406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4875015023123948e-05,0.0,0.0,0.00017310254424886113,6.637867765926385e-05,0.0001979775592719851,0.0001109399669878637,4.915020592914196e-05,1.301599090663484e-05,0.0,0.0,2.487501502312395e-05,0.0,0.0,0.0,0.0,0.0,0.00014138382769686536,4.4744470512870504e-05,1.1849261062249232e-05,0.0,0.0 +96252,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001600,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,17900.0,,7374.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.003496420306982054,0.005072394950079092,0.0,0.008568815257061147,0.002668771841461903,0.00028860116336681886,0.0033374171312404444,0.0003695012906724282,0.0019045238303195512,0.0016063839108076566,0.00028860116336681886,0.0009973379169430873,0.0003695012906724282,0.00023459602519206377,0.0010623879306542465,0.0023400792142973573,0.0016699278051274876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003389067829504461,0.0,0.0,0.00041666129422120326,0.0004486720588182478,0.0007555680771716494,0.00019142950232747046,3.439201345502907e-05,0.0001188507303940443,4.403271702790999e-05,2.7956331016749528e-05,7.098234253580711e-05,0.00015634995424683145,0.00011157448616780751,0.0,0.0,0.0,0.00023532294117340925,2.5447838415570628e-05,0.00029428173778085575,3.258132791178427e-05,0.00016793423189002932 +96253,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,69675.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005640164800394449,0.0,0.0,0.005640164800394449,0.0033555233978856324,0.0019521719830631855,0.0003324694194456315,0.0,0.0,0.0033555233978856324,0.0019521719830631855,0.0003324694194456315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006721259346659273,0.00013824022549304424,0.0006721259346659273,0.00039987028392140964,0.0002326360071346173,3.9619643609900436e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039987028392140964,0.0002326360071346173,3.9619643609900436e-05,0.0,0.0 +96254,50.0,the Greater Atlanta and Macon Area,G1300890022005,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,12801.0,,413.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027890479406369245,0.00032793354737635386,0.0,0.0031168987809395395,0.001491291246593452,0.0007322884308878279,0.0008175594239130539,0.0,7.57596795452056e-05,0.0011633576992170981,0.0007322884308878279,0.0008175594239130539,0.0,7.57596795452056e-05,0.00032793354737635386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1910392744848726e-05,0.0,0.0,0.00033236090124997273,0.0001025932946802294,0.0003542712939948214,0.00013863319011274885,8.726420199475889e-05,9.742564227673273e-05,0.0,9.0280109585723e-06,2.1910392744848726e-05,0.0,0.0,0.0,0.0,0.0,0.0001695023537128012,8.32329787462227e-05,9.29250050718784e-05,0.0,8.610956463919133e-06 +96255,81.0,the Columbus-Albany Area,G1302150010402,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,258396.0,,7825.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,480687.657779034,0.0,0.0,0.02135497917189624,0.002279660132201025,0.0,0.023634639304097264,0.014318843741342716,0.007597348427364865,0.001718447135389685,0.0,0.0,0.01203918360914169,0.007597348427364865,0.001718447135389685,0.0,0.0,0.002279660132201025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015231456353280516,0.0,0.0,0.002544830108036463,0.0007957965713397294,0.0026971446715692684,0.0014346854041910244,0.0009053607996324167,0.00020478390421302213,0.0,0.0,0.00015231456353280516,0.0,0.0,0.0,0.0,0.0,0.0016340419924792493,0.0008669964269507592,0.00019610625213925997,0.0,0.0 +96256,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,123831.0,,5368.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010901347121825899,0.0015800236906309303,0.0,0.01248137081245683,0.005212783077696307,0.0029174460434785196,0.0043511723808883004,0.0,0.0,0.003632759387065377,0.0029174460434785196,0.0043511723808883004,0.0,0.0,0.0015800236906309303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010556720723747665,0.0,0.0,0.0012990942319080897,0.0004935517402678782,0.0014046614391455662,0.0004329095031014983,0.0003476668786555637,0.0005185215073770638,0.0,0.0,0.00010556720723747666,0.0,0.0,0.0,0.0,0.0,0.0005866499353230296,0.000328331240184941,0.00048968371746548,0.0,0.0 +96257,81.0,the Columbus-Albany Area,G1302150001800,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,43063.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003613271487066335,0.0,0.0,0.0036132714870663342,0.0012506935254502816,0.0013151110090691598,0.001047436262940596,0.0,0.0,0.0012506935254502816,0.0013151110090691598,0.001047436262940596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004305854705523637,0.0001294345193820049,0.0004305854705523637,0.0001490423462782877,0.00015671883352678782,0.00012482063353564052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014904234627828773,0.00015671883352678787,0.00012482063353564055,0.0,0.0 +96258,50.0,the Greater Atlanta and Macon Area,G1301210007001,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,5471.0,,2507.0,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0015865697955411344,0.0019886088809879074,0.0,0.003575261383602781,0.0026088292269589738,0.0004511670872479219,0.0004279263995271766,0.0,8.742137694244795e-05,0.0006202203459710665,0.0004511670872479219,0.0004279263995271766,0.0,8.742137694244795e-05,0.0019886088809879074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001328678166322147,0.0,0.0,0.00018907306720491513,0.0001795839786129038,0.0003219408838371299,7.391226247039872e-05,5.37660210396086e-05,5.0996405656999986e-05,0.0,1.041809060290858e-05,0.0001328678166322147,0.0,0.0,0.0,0.0,0.0,0.00023491675069109343,4.0626157151187734e-05,3.853340735109906e-05,0.0,7.872016151935002e-06 +96259,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,138713.0,,7212.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0067107822242372045,0.0012264445601478924,0.0,0.007937226784385099,0.003272209121516425,0.0017915289089663956,0.0016558384530187312,0.0,0.0012176503008835462,0.002634536673044226,0.0017915289089663956,0.0010670663413430378,0.0,0.0012176503008835462,0.000637672448472199,0.0005887721116756934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.19436878643757e-05,0.0,0.0,0.0007997113003990558,0.000273290595797184,0.0008816549882634315,0.0003139527820080142,0.00021349313174215984,0.00012716028965527947,0.0,0.0001451050969936024,4.26054579026524e-05,3.9338229961723304e-05,0.0,0.0,0.0,0.0,0.00036347197490962913,0.00019900028588268836,0.00018392799796704634,0.0,0.0001352547295040676 +96260,50.0,the Greater Atlanta and Macon Area,G1301210010601,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,108425.0,,13994.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.00980137925372803,0.0023798045705223266,0.0,0.012181183824250357,0.005998057155873923,0.0034140874735996874,0.001418978554808246,0.0,0.0013500429096070805,0.0050918406533336045,0.0034140874735996874,0.0010541940989520794,0.0,0.00024125702784265853,0.0009062165025403185,0.00036478445585616634,0.001108785881764422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001590040729185546,0.0,0.0,0.001168012402020212,0.00045457916809353685,0.0013270164749387666,0.0006067853184991525,0.0004068505470012842,0.00012562637867973657,0.0,2.8750157840038614e-05,6.054787718064284e-05,2.4372679562414085e-05,7.408233154054278e-05,0.0,0.0,0.0,0.0006534275139681587,0.000371930215463083,0.0001545833267918216,0.0,0.0001470734871725915 +96261,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14675.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033282153543434697,0.0,0.0,0.00332821535434347,0.0023588057430450476,0.0005270094738668669,0.0003706931044995759,0.0,7.178974000571884e-05,0.0023588057430450476,0.0005270094738668669,0.0003706931044995759,0.0,7.178974000571884e-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.00039661481492952067,0.00011697531374836182,0.00039661481492952067,0.0002810927790509662,6.280235582443045e-05,4.417453841887905e-05,0.0,8.554997623290275e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00028109277905096614,6.280235582443045e-05,4.417453841887904e-05,0.0,8.554997623290274e-06 +96262,50.0,the Greater Atlanta and Macon Area,G1300590001800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,63234.0,,2614.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00584330103908261,0.0007695111883085995,0.0,0.006612812227391208,0.0029431946231622923,0.0014940621033910646,0.0021755861904441502,0.0,0.0,0.0021736834348536926,0.0014940621033910646,0.0021755861904441502,0.0,0.0,0.0007695111883085995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.141372896293303e-05,0.0,0.0,0.000696336575583404,0.00025862077744510654,0.0007477503045463371,0.0002590342803330952,0.00017804492389247297,0.0002592610285877495,0.0,0.0,5.141372896293303e-05,0.0,0.0,0.0,0.0,0.0,0.0003328046525641276,0.00016894255490792085,0.00024600656733197437,0.0,0.0 +96263,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,64061.0,,2327.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005707745048065657,0.0006848385645332375,0.0,0.006392583612598895,0.0015296620466964,0.0026065910212890882,0.0022563305446134064,0.0,0.0,0.0008448234821631622,0.0026065910212890882,0.0022563305446134064,0.0,0.0,0.0006848385645332375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.575728388722663e-05,0.0,0.0,0.0006801792522316984,0.00022438631307129003,0.0007259365361189251,0.00010067573087558645,0.0003106216407362343,0.0002688818806198776,0.0,0.0,4.575728388722663e-05,0.0,0.0,0.0,0.0,0.0,0.00017370716362987446,0.0002960023320373925,0.0002562270404516582,0.0,0.0 +96264,50.0,the Greater Atlanta and Macon Area,G1301350050545,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,7683.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0018447812797552524,0.0,0.0,0.001844781279755252,0.0009732141366904305,0.0004511670872479219,0.00037482845818654124,0.0,4.56543047040977e-05,0.0009732141366904305,0.0004511670872479219,0.00037482845818654124,0.0,4.56543047040977e-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.00021984326500709567,6.662965367629684e-05,0.00021984326500709567,0.00011597828734985404,5.376574806607068e-05,4.46684455060371e-05,0.0,5.440640317593222e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011597828734985407,5.3765748066070695e-05,4.466844550603711e-05,0.0,5.4406403175932226e-06 +96265,85.0,Rural Climate Zone 3A,G1302370960102,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,14273.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034270503074619423,0.0,0.0,0.0034270503074619427,0.002471287363330506,0.00043594898567988946,0.0004305730258868345,0.0,8.92409325647127e-05,0.002471287363330506,0.00043594898567988946,0.0004305730258868345,0.0,8.92409325647127e-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.0004083978630562182,0.00013364139013403517,0.0004083978630562182,0.0002945006310483589,5.1951567143771756e-05,5.131091985400792e-05,0.0,1.0634745010079627e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002945006310483589,5.195156714377175e-05,5.1310919854007914e-05,0.0,1.0634745010079626e-05 +96266,50.0,the Greater Atlanta and Macon Area,G1302970110603,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,81147.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.006874748017142104,0.0,0.0,0.006874748017142104,0.002552515934992536,0.001554674075829028,0.002767588695926837,0.0,0.0,0.002552515934992536,0.001554674075829028,0.002767588695926837,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.479666336331122e-11,0.0,0.0,0.0008192515614180275,0.0002695841490877344,0.0008192516562146909,0.00030417880918293545,0.00018526775976998445,0.0003298086496912076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003041788443798609,0.00018526778120755782,0.0003298086878537952,0.0,0.0 +96267,50.0,the Greater Atlanta and Macon Area,G1301430010400,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,14856.0,,1305.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001323642719619921,0.00038426456045353644,0.0,0.0017079379696797554,0.0006050455881592103,0.0004884557738342375,0.0006143752284737121,0.0,0.0,0.00022078102770567383,0.0004884557738342375,0.0006143752284737121,0.0,0.0,0.00038426456045353644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.567473433020805e-05,0.0,0.0,0.00015773708345791853,7.677569726276295e-05,0.00018341181778812657,2.6310238311993183e-05,5.820875076086787e-05,7.32144371375857e-05,0.0,0.0,2.567473433020805e-05,0.0,0.0,0.0,0.0,0.0,6.49745559493444e-05,5.2454224321063436e-05,6.597644613491889e-05,0.0,0.0 +96269,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11546.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003900879132914435,0.0,0.0,0.003900879132914435,0.0023009107914275326,0.0005500847474401337,0.0009656050859064143,0.0,8.427850814035427e-05,0.0023009107914275326,0.0005500847474401337,0.0009656050859064143,0.0,8.427850814035427e-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.00046486470557441525,0.00016409962912471818,0.00046486470557441525,0.00027419773368133645,6.555316774674941e-05,0.00011507040045757019,0.0,1.004340368875923e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00027419773368133645,6.555316774674941e-05,0.00011507040045757019,0.0,1.004340368875923e-05 +96270,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,34522.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028126256815352566,0.0,0.0,0.002812625681535257,0.0018386050947654308,0.0006544599470852386,0.0003195606396845869,0.0,0.0,0.0018386050947654308,0.0006544599470852386,0.0003195606396845869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003351748289341624,6.857834735516937e-05,0.0003351748289341624,0.00021910279500082772,7.799064847079834e-05,3.808138546253628e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002191027950008277,7.799064847079833e-05,3.8081385462536276e-05,0.0,0.0 +96271,50.0,the Greater Atlanta and Macon Area,G1301350050606,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,16218.0,,1265.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003894179859941551,0.0010038157539739739,0.0,0.004897995613915526,0.002791032910406668,0.0009065522352565489,0.001001334541761795,0.0,0.00019907592649051294,0.001986293082923207,0.0009065522352565489,0.001001334541761795,0.0,0.0,0.000804739827483461,0.0,0.00019907592649051294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.707017937063299e-05,0.0,0.0,0.00046406381146086727,0.0002043181089653581,0.0005311339908315003,0.00023670368906728798,0.00010803252564401,0.00011932759674956927,0.0,0.0,5.376887577459496e-05,0.0,1.3301303596038036e-05,0.0,0.0,0.0,0.00030265695706927957,9.830566308410996e-05,0.00010858376634972347,0.0,2.1587604328387244e-05 +96272,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11355.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0023647606523542774,0.0,0.0,0.0023647606523542783,0.0012215007720558313,0.00044413698598008087,0.0006272504472389076,0.0,7.178974000571884e-05,0.0012215007720558313,0.00044413698598008087,0.0006272504472389076,0.0,7.178974000571884e-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.0002818082373310814,8.708810398000157e-05,0.0002818082373310814,0.00014556609740986088,5.2927750226213886e-05,7.474935897869761e-05,0.0,8.555174524460642e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014556609740986083,5.292775022621387e-05,7.474935897869758e-05,0.0,8.555174524460639e-06 +96273,50.0,the Greater Atlanta and Macon Area,G1300570090902,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,10906.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0009648781333390622,0.0,0.0,0.000964878133339062,0.000661992599745801,0.0002613344495624167,4.1520710431406746e-05,0.0,0.0,0.000661992599745801,0.0002613344495624167,4.1520710431406746e-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.00011498121628176248,3.4002520667191264e-05,0.00011498121628176248,7.888738656029885e-05,3.114232961527008e-05,4.947880588572082e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.888738656029886e-05,3.1142329615270084e-05,4.9478805885720835e-06,0.0,0.0 +96274,50.0,the Greater Atlanta and Macon Area,G1301510070305,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,26202.0,,919.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006151079768022906,0.0007124643596167978,0.0,0.006863544127639703,0.0030690710213659707,0.00046252367915197874,0.002301540468479505,0.00041610958967064376,0.0006142185081885368,0.0030690710213659707,0.00046252367915197874,0.0015890761088627073,0.00041610958967064376,0.0006142185081885368,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.0007330101450687999,0.0002596907592307328,0.0007806154237638736,0.0003657341929287012,5.5117891807460705e-05,0.0001893665751398982,4.9586830636572155e-05,7.31950185610964e-05,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.0003490564249827149,5.260447242527018e-05,0.0002617624298322491,4.7325632010566486e-05,6.985726792698467e-05 +96275,85.0,Rural Climate Zone 3A,G1301050000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Propane,70070.0,,,2476.0,3.20458438519356,Mercantile,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,120171.9144447585,0.0,0.0,0.0059870616795730126,0.0,0.000233390738079685,0.00622042204405326,0.0036522734643924678,0.0019429687824335466,0.0006252101708266835,0.0,0.0,0.0034188827263127827,0.0019429687824335466,0.0006252101708266835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000233390738079685,0.0,0.0,0.0,0.0,1.8821846506889072e-05,0.0007134652408401885,0.00021805865595146714,0.0007322870873470776,0.00040742088828907367,0.00023153940354975306,7.450494900136186e-05,0.0,0.0,0.0,0.0,0.0,1.8821846506889072e-05,0.0,0.0,0.0004299567904708045,0.00022873222112875294,7.360165142044192e-05,0.0,0.0 +96276,35.0,Eastern Counties in South Carolina and Georgia,G1300510000601,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11424.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0009369229906625682,0.0,0.0,0.0009369229906625681,0.0003528384036046889,0.00030459434250470016,0.00027945955494688155,0.0,0.0,0.0003528384036046889,0.00030459434250470016,0.00027945955494688155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011165127084259583,4.233463676810254e-05,0.00011165127084259583,4.204705889080299e-05,3.629790897549097e-05,3.330264575625398e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.204705889080299e-05,3.6297908975490974e-05,3.330264575625398e-05,0.0,0.0 +96277,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,47436.0,,919.0,,8.53126424238864,Food Service,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,63984.48181791479,0.0,0.0,0.010815129735415588,0.0007124643596167978,0.0,0.011527674955815453,0.00488374871498987,0.0016553010901958316,0.003306397419672099,0.00042718751695103204,0.0012549593532235504,0.00488374871498987,0.0016553010901958316,0.002593933060055301,0.00042718751695103204,0.0012549593532235504,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.0012888206221151532,0.00039997012555089665,0.0013364259008102268,0.0005819880307580478,0.0001972594164883686,0.00030911459242491206,5.090721006829423e-05,0.00014955137237553025,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.0005661825390443124,0.0001919022924445936,0.00038331711875626154,4.952468423549352e-05,0.00014548989198085547 +96278,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,63179.0,,5.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.005629210345549835,1.4731011022897334e-06,0.0,0.005630714136258423,0.001586161611890471,0.001384561588120861,0.0026599602466407936,0.0,0.0,0.001584688510788181,0.001384561588120861,0.0026599602466407936,0.0,0.0,1.4731011022897334e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.941449023189481e-08,0.0,0.0,0.0006708229468838992,0.00022695004134446354,0.000670922361374131,0.00018884450063948565,0.00016499573255771932,0.0003169827136866942,0.0,0.0,9.941449023189481e-08,0.0,0.0,0.0,0.0,0.0,0.00018899757089741047,0.00016497611274353128,0.0003169450209424823,0.0,0.0 +96279,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,231977.0,,22486.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02066886673898317,0.006619011527863345,0.0,0.02728787826684651,0.009902799401717543,0.006730046523448434,0.010655063031286835,0.0,0.0,0.003283787873854198,0.006730046523448434,0.010655063031286835,0.0,0.0,0.006619011527863345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004422445794839695,0.0,0.0,0.002463069157893473,0.0010909830959548242,0.002905313737377442,0.0003913226949158204,0.0008020067201763542,0.0012697434000227463,0.0,0.0,0.0004422445794839695,0.0,0.0,0.0,0.0,0.0,0.0010543413767444935,0.000716541477741781,0.0011344341503835651,0.0,0.0 +96280,50.0,the Greater Atlanta and Macon Area,G1301170130613,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,17291.0,,192.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003971924509256499,0.00015193289445910774,0.0,0.004123857403715607,0.0024678136662334544,0.0008814919919135385,0.0006226188511095064,0.0,0.00015193289445910774,0.0024678136662334544,0.0008814919919135385,0.0006226188511095064,0.0,0.0,0.0,0.0,0.00015193289445910774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0150763282365377e-05,0.0,0.0,0.0004733241905894758,0.00016766020877527257,0.00048347495387184123,0.0002940831084209724,0.00010504516956735454,7.41959126011489e-05,0.0,0.0,0.0,0.0,1.0150763282365377e-05,0.0,0.0,0.0,0.0002893228309425803,0.00010334481976627192,7.299491491841764e-05,0.0,1.7812388244571358e-05 +96281,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,11904.0,,134.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0012954373035482718,4.963673085203805e-05,0.0,0.00134507403440031,0.0007481545661913745,0.00021978105963525355,0.0003426523114165281,0.0,3.4486097157153675e-05,0.0007481545661913745,0.00021978105963525355,0.00029301558056449,0.0,3.4486097157153675e-05,0.0,4.963673085203805e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3168763111603545e-06,0.0,0.0,0.00015437345172756006,5.369005605781161e-05,0.00015769032803872042,8.915537825902519e-05,2.6190662185891378e-05,3.4917804557424296e-05,0.0,4.109606725219204e-06,0.0,3.3168763111603545e-06,0.0,0.0,0.0,0.0,8.771021962295433e-05,2.576612625343883e-05,4.017098985528201e-05,0.0,4.042992307045232e-06 +96282,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock 90.1-2007,gen4_led,_1000,Electricity,3485.0,,300.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005228741201799016,0.00023778283700050885,0.0,0.0007606569571804104,0.0005039342002936002,0.00010363196339535219,0.0001257974591574866,0.0,2.729333433397145e-05,0.0002661513632930913,0.00010363196339535219,0.0001257974591574866,0.0,2.729333433397145e-05,0.00023778283700050885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.588710519124079e-05,0.0,0.0,6.230755772233958e-05,3.790477227464253e-05,7.819466291358037e-05,3.171555215920417e-05,1.2349156884861037e-05,1.4990476952812164e-05,0.0,3.2523717254622045e-06,1.588710519124079e-05,0.0,0.0,0.0,0.0,0.0,5.1803857902842806e-05,1.0653246996924671e-05,1.293183454295485e-05,0.0,2.8057234708580536e-06 +96283,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,75284.0,,12698.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.006788326085807772,0.0037376871509972225,0.0,0.010526043926411292,0.00455396929930352,0.0019417313904556551,0.004030312547045818,0.0,0.0,0.0008162821483062985,0.0019417313904556551,0.004030312547045818,0.0,0.0,0.0037376871509972225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002497313014430244,0.0,0.0,0.0008089534549839054,0.00046692488909331223,0.0010586847564269298,9.727497703662373e-05,0.00023139287905508626,0.0004802855988921954,0.0,0.0,0.0002497313014430244,0.0,0.0,0.0,0.0,0.0,0.0004580275279216501,0.00019529477917084136,0.0004053593626459734,0.0,0.0 +96284,50.0,the Greater Atlanta and Macon Area,G1301390001608,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,27513.0,,9270.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.005728632684871933,0.00637676606294001,0.0,0.012105398747811942,0.005459682793563391,0.0008199744286214813,0.0019774630408424276,0.0003624010135418827,0.0034858774712427593,0.002948479728422786,0.0008199744286214813,0.0012288499833814797,0.0003624010135418827,0.0003689275309043032,0.0025112030651406056,0.000748613057460948,0.003116949940338456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000426058220300965,0.0,0.0,0.0006826732481072399,0.0005844174515764755,0.001108731468408205,0.00035136625856571824,9.771522060231706e-05,0.00014644035596957057,4.318682845303141e-05,4.396458451660272e-05,0.0001677839045980069,5.001794699817203e-05,0.00020825636870478606,0.0,0.0,0.0,0.0005000514437283357,7.510132224822416e-05,0.0001811155127287707,3.319224886908743e-05,0.0003192709408337869 +96285,50.0,the Greater Atlanta and Macon Area,G1301210008102,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4998.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016514121413527514,0.0,0.0,0.0016514121413527514,0.0008513039099986914,0.0003589487000285942,0.00038880595364848417,0.0,5.23535776769816e-05,0.0008513039099986914,0.0003589487000285942,0.00038880595364848417,0.0,5.23535776769816e-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.0001967954608307249,6.418067243634509e-05,0.0001967954608307249,0.00010144817340264693,4.277519407048359e-05,4.633322288602382e-05,0.0,6.238870471570533e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010144817340264693,4.277519407048359e-05,4.633322288602382e-05,0.0,6.238870471570533e-06 +96286,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,12138.0,,123.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029145972785731937,9.784246823360066e-05,0.0,0.0030124397468067944,0.0013808773031514768,0.0005387538783378486,0.000994883390010129,0.0,9.784246823360066e-05,0.0013808773031514768,0.0005387538783378486,0.000994883390010129,0.0,0.0,0.0,0.0,9.784246823360066e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.538932149512664e-06,0.0,0.0,0.00034732217437397837,0.00011540554989151622,0.000353861106523491,0.00016455422881237069,6.420138035959407e-05,0.00011855670929468178,0.0,0.0,0.0,0.0,6.538932149512664e-06,0.0,0.0,0.0,0.00016220698554529297,6.328559558229747e-05,0.00011686558631554439,0.0,1.1493223760186962e-05 +96287,50.0,the Greater Atlanta and Macon Area,G1300890021812,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,8984.0,,1264.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0018639693208627715,0.001002740562015363,0.0,0.0028666271758043954,0.0016659685863308694,0.0005681148895153027,0.000480776219646594,0.0,0.0001517674803116291,0.0008150782117008747,0.0005681148895153027,0.000480776219646594,0.0,0.0,0.0008508903746299946,0.0,0.0001517674803116291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.699598940524281e-05,0.0,0.0,0.00022212158874309798,0.0001242140751579131,0.00028911757814834076,9.712953175059816e-05,6.769992426127433e-05,5.7292132731225465e-05,0.0,0.0,5.685044036630963e-05,0.0,1.014002314076382e-05,0.0,0.0,0.0,0.0001680235250040977,5.729799897002171e-05,4.8489338770233826e-05,0.0,1.5306715403987453e-05 +96288,50.0,the Greater Atlanta and Macon Area,G1300670030412,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,203320.0,,35448.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011201084905672678,0.006028340613179373,0.0,0.01722942551885205,0.0064144369634624426,0.003207652875586013,0.005233187094574265,0.0,0.0023741485852293307,0.005083152776237778,0.003207652875586013,0.002553562112438845,0.0,0.00035671714141004236,0.0013312841872246647,0.00267962498213542,0.0020174314438192883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040277852290399003,0.0,0.0,0.0013348117387200435,0.0007672952058691525,0.0017375902616240334,0.000605749536992916,0.000382249822059909,0.0003043030842046299,0.0,4.250929546258869e-05,8.894863659885145e-05,0.00017903689613714614,0.00013479299016799247,0.0,0.0,0.0,0.0006468969722361458,0.0003234922948063527,0.0005277677379805444,0.0,0.00023943325660099075 +96289,35.0,Eastern Counties in South Carolina and Georgia,G1300510011106,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12473.0,,68.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0029949885542478,5.409042622550704e-05,0.0,0.0030490789804733073,0.0017863073786215618,0.0004930168665600116,0.0006848972776352048,0.0,8.47747505827901e-05,0.0017322169523960548,0.0004930168665600116,0.0006848972776352048,0.0,8.47747505827901e-05,5.409042622550704e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6137498551747225e-06,0.0,0.0,0.0003569070754291138,0.00010219296593347173,0.0003605208252842886,0.00020642499137819953,5.8751879946784146e-05,8.161790267393384e-05,0.0,1.0102445385917423e-05,3.6137498551747225e-06,0.0,0.0,0.0,0.0,0.0,0.00021121165259290582,5.82939467129508e-05,8.098174345410931e-05,0.0,1.0023703301589427e-05 +96290,50.0,the Greater Atlanta and Macon Area,G1300670030332,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8195.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0019768644765169267,0.0,0.0,0.001976864476516926,0.0013359673621110328,0.0003991443378658976,0.00019866239112181642,0.0,4.3090385418179165e-05,0.0013359673621110328,0.0003991443378658976,0.00019866239112181642,0.0,4.3090385418179165e-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.00023557778361375412,8.057446986130167e-05,0.00023557778361375412,0.0001592037460761848,4.756498969625877e-05,2.3674078999256847e-05,0.0,5.134968842053629e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015920374607618487,4.756498969625879e-05,2.3674078999256857e-05,0.0,5.134968842053632e-06 +96291,50.0,the Greater Atlanta and Macon Area,G1301170130303,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,4916.0,,486.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.0003293608547869463,0.00014319770298508116,0.0,0.00047255855777202755,0.00021565586345395743,0.00016449628975568692,9.240640456238307e-05,0.0,0.0,7.245816046887627e-05,0.00016449628975568692,9.240640456238307e-05,0.0,0.0,0.00014319770298508116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.566822336881386e-06,0.0,0.0,3.924919076626994e-05,2.2534362822201883e-05,4.881601310315133e-05,8.63467568013076e-06,1.9602652115841117e-05,1.1011862970298059e-05,0.0,0.0,9.566822336881386e-06,0.0,0.0,0.0,0.0,0.0,2.22775765733111e-05,1.6992715302824465e-05,9.545721227015756e-06,0.0,0.0 +96292,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,7756.0,,1049.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001532975611758063,0.0008317850405962147,0.0,0.0023647606523542783,0.0013607794842328247,0.0004190767426370707,0.0004263549651261297,0.0,0.00015863216743199163,0.0006875439039948626,0.0004190767426370707,0.0004263549651261297,0.0,0.0,0.0006732355802379623,0.0,0.00015863216743199163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5575859651300905e-05,0.0,0.0,0.0001826830783301866,9.807212219982686e-05,0.0002382589379814875,8.193387807708881e-05,4.99409310978719e-05,5.080826915522589e-05,0.0,0.0,4.498235035911199e-05,0.0,1.0599035379456612e-05,0.0,0.0,0.0,0.00013710388593345734,4.2223630342480305e-05,4.2956939888590087e-05,0.0,1.5982814879983664e-05 +96293,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,57196.0,,3519.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005096070504946143,0.0010358969709726596,0.0,0.006131936786312505,0.0019467337962821806,0.0014983279586664455,0.002686875031363879,0.0,0.0,0.000910836825309521,0.0014983279586664455,0.002686875031363879,0.0,0.0,0.0010358969709726596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.921178604563646e-05,0.0,0.0,0.0006072880963559961,0.00026584438931127446,0.0006764998824016326,0.00010854252530381812,0.00017855261869951846,0.0003201892951362673,0.0,0.0,6.921178604563646e-05,0.0,0.0,0.0,0.0,0.0,0.00021477148740213086,0.00016530155530948928,0.0002964268396900124,0.0,0.0 +96294,50.0,the Greater Atlanta and Macon Area,G1300850970202,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,5887.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0005245160612340383,0.0,0.0,0.0005245160612340383,0.0003283480977791221,0.0001123853382621876,8.378262519272859e-05,0.0,0.0,0.0003283480977791221,0.0001123853382621876,8.378262519272859e-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,6.250388265287509e-05,2.3636872107705857e-05,6.250388265287509e-05,3.91275548828688e-05,1.3392383024681328e-05,9.983944745324964e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.91275548828688e-05,1.3392383024681328e-05,9.983944745324964e-06,0.0,0.0 +96295,50.0,the Greater Atlanta and Macon Area,G1300670030311,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,8535.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002077022742815227,0.0,0.0,0.002077022742815227,0.000659423498923498,0.00033273055765323375,0.0010062969661861535,0.0,7.857172005234206e-05,0.000659423498923498,0.00033273055765323375,0.0010062969661861535,0.0,7.857172005234206e-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.00024751605449846106,7.448279146875135e-05,0.00024751605449846106,7.858262662828934e-05,3.9651060695548485e-05,0.00011991907916548309,0.0,9.36328800914021e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.858262662828934e-05,3.9651060695548485e-05,0.00011991907916548309,0.0,9.36328800914021e-06 +96296,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,16260.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001477274888746221,0.0,0.0,0.0014772748887462214,0.00039052524013826785,0.00045353100186745174,0.0006332186467405015,0.0,0.0,0.00039052524013826785,0.00045353100186745174,0.0006332186467405015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017604511618173277,6.471467326268425e-05,0.00017604511618173277,4.65384349221487e-05,5.404675766440185e-05,7.545992359518225e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6538434922148684e-05,5.404675766440183e-05,7.545992359518222e-05,0.0,0.0 +96297,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6623.0,,226.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013166966139297744,0.00017922622879307915,0.0,0.0014960055497965925,0.000812762413636174,0.00035117423509709934,0.00027963261631259843,0.0,5.227087060324229e-05,0.0006335361848430949,0.00035117423509709934,0.00027963261631259843,0.0,5.227087060324229e-05,0.00017922622879307915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1976778837232317e-05,0.0,0.0,0.0001569123248869414,6.541982855478022e-05,0.00016888910372417367,7.549927189911877e-05,4.1849857504394035e-05,3.332415643484603e-05,0.0,6.229182746768024e-06,1.1976778837232317e-05,0.0,0.0,0.0,0.0,0.0,9.17554855317036e-05,3.96452418406038e-05,3.156866760788542e-05,0.0,5.901034583905229e-06 +96298,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,24024.0,,3209.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0021001818277706944,0.0009446260818432915,0.0,0.0030448079096139866,0.001372868848121436,0.000651448272881337,0.0010205214782175107,0.0,0.0,0.0004282427662781446,0.000651448272881337,0.0010205214782175107,0.0,0.0,0.0009446260818432915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.311347601259241e-05,0.0,0.0,0.0002502764300054461,0.00013043388154960347,0.00031338990601803844,5.103323402884566e-05,7.763239635447232e-05,0.00012161445686980111,0.0,0.0,6.311347601259241e-05,0.0,0.0,0.0,0.0,0.0,0.00014130390226896604,6.705096645646137e-05,0.00010503819605110046,0.0,0.0 +96299,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,39917.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.004114340689088928,0.0,0.0,0.004114340689088928,0.001180537085453733,0.0016307536098410327,0.0013030806834004602,0.0,0.0,0.001180537085453733,0.0016307536098410327,0.0013030806834004602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004902996617545034,0.0001554675842941517,0.0004902996617545034,0.00014068279158836134,0.000194334403427113,0.00015528612397228332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014068279158836134,0.000194334403427113,0.00015528612397228332,0.0,0.0 +96300,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6500.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012823731783279616,0.0,0.0,0.0012823731783279614,0.000708634207798386,0.0002564746356655924,0.0002726852221184966,0.0,4.4579112745486695e-05,0.000708634207798386,0.0002564746356655924,0.0002726852221184966,0.0,4.4579112745486695e-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.00015281401003391833,4.9221035970682984e-05,0.00015281401003391833,8.444440103002982e-05,3.0562802006783674e-05,3.249453667086932e-05,0.0,5.312270326235535e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.444440103002983e-05,3.056280200678368e-05,3.249453667086933e-05,0.0,5.312270326235536e-06 +96301,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,32003.0,,2053.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001866776562833099,0.0003491462770836797,0.0,0.0022159228399167793,0.0008974754343602328,0.0003274443147055352,0.0007197285611242034,0.0,0.0002712745297268079,0.0008974754343602328,0.0003274443147055352,0.00037058228404052363,0.0,0.0002712745297268079,0.0,0.0003491462770836797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.332778112873297e-05,0.0,0.0,0.00022245990303546213,7.901936945434357e-05,0.0002457876841641951,0.00010695029179147496,3.9020861922734204e-05,4.416152453146347e-05,0.0,3.232722478978954e-05,0.0,2.332778112873297e-05,0.0,0.0,0.0,0.0,9.954697186745955e-05,3.6319757328386013e-05,7.983148739609991e-05,0.0,3.0089467572249618e-05 +96302,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,15371.0,,570.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0012871116497741712,0.0001661739625239402,0.0,0.0014532552386986738,0.0009599879838295839,0.00042365096495776243,6.964666351076493e-05,0.0,0.0,0.0007938140213056438,0.00042365096495776243,6.964666351076493e-05,0.0,0.0,0.0001661739625239402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1101789932317053e-05,0.0,0.0,0.00015338167233214754,4.150534055569689e-05,0.00016448346226446463,9.459670583350659e-05,5.0485358827845816e-05,8.299607670795129e-06,0.0,0.0,1.1101789932317053e-05,0.0,0.0,0.0,0.0,0.0,0.00010865410501046416,4.7949992301650135e-05,7.882802720654128e-06,0.0,0.0 +96303,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,16491.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003959683862343083,0.0,0.0,0.003959683862343082,0.0025402650628290877,0.000365069023485303,0.0009802442379582717,0.0,7.402283099668014e-05,0.0025402650628290877,0.000365069023485303,0.0009802442379582717,0.0,7.402283099668014e-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.0004718655084341848,0.00016561908288097057,0.0004718655084341848,0.00030271696102530596,4.350435195564566e-05,0.00011681322595793213,0.0,8.821113502560683e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00030271696102530607,4.3504351955645674e-05,0.00011681322595793216,0.0,8.821113502560685e-06 +96304,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,NaturalGas,14874.0,,1300.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035715395652845127,0.0010309436741604667,0.0,0.0046024832394449796,0.0030090487567834825,0.0007505666941842148,0.0007558599469035306,0.0,8.70078415737514e-05,0.002065112924196767,0.0007505666941842148,0.0007558599469035306,0.0,0.0,0.0009439358325867155,0.0,8.70078415737514e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.88811456132612e-05,0.0,0.0,0.00042561818423391903,0.00019418076502921358,0.0004944993298471802,0.00024609824333966427,8.944457360356656e-05,9.007536729068815e-05,0.0,0.0,6.306783111786204e-05,0.0,5.813314495399182e-06,0.0,0.0,0.0,0.0003232977756343464,8.064227678197168e-05,8.121099366506218e-05,0.0,9.348283765799913e-06 +96305,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,4254.0,,460.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009363267818026994,0.000364820902264085,0.0,0.0013011476840667844,0.0006948221264839216,0.00018782776446196717,0.0003842570645928223,0.0,3.415802145433396e-05,0.0003641592456741706,0.00018782776446196717,0.0003842570645928223,0.0,0.0,0.00033066288080975105,0.0,3.415802145433396e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.437488532998759e-05,0.0,0.0,0.00011157924772503325,5.6425157543193636e-05,0.00013595413305502084,4.339576254158832e-05,2.238287002769636e-05,4.5790759202411835e-05,0.0,0.0,2.209267548158929e-05,0.0,2.2822098483982936e-06,0.0,0.0,0.0,7.260047494248857e-05,1.9625720580215633e-05,4.0150197188763466e-05,0.0,3.56909845866537e-06 +96306,50.0,the Greater Atlanta and Macon Area,G1301210001500,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,92203.0,,2125.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007438676743902047,0.0006189835829419443,0.0,0.008057629953244555,0.0053883372874560485,0.001978627388173467,0.0006906956512144764,0.0,0.0,0.004769353704514105,0.001978627388173467,0.0006906956512144764,0.0,0.0,0.0006189835829419443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.135605717938168e-05,0.0,0.0,0.0008864521079971965,0.00024219837369804755,0.0009278081651765783,0.0005683542638973475,0.0002357890360842992,8.230880801554984e-05,0.0,0.0,4.135605717938168e-05,0.0,0.0,0.0,0.0,0.0,0.000620448365218616,0.00022783208676021863,7.95312106124583e-05,0.0,0.0 +96307,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,54200.0,,8599.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0027671597764662207,0.0014623824795645351,0.0,0.0042295245256693354,0.0016041544494792774,0.0010518714216060526,0.0008418552905855271,0.0,0.000731643363998479,0.0013040858128063036,0.0010518714216060526,0.0002848737169359884,0.0,0.00012632882511787625,0.00030006863667297363,0.0005569815736495387,0.0006053145388806027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.770726891644222e-05,0.0,0.0,0.0003297567296621441,0.00017785786987303606,0.0004274639985785863,0.0001554052196360607,0.0001253493502485206,3.394781395076325e-05,0.0,1.505434582679954e-05,2.0048713237816513e-05,3.721403200500874e-05,4.044333904154194e-05,0.0,0.0,0.0,0.0001621265631988564,0.00010630915157043776,8.50835186211097e-05,0.0,7.394476518818249e-05 +96308,50.0,the Greater Atlanta and Macon Area,G1300450910300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,69024.0,,11897.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003553058046410061,0.0020231406201965453,0.0,0.005576180936245187,0.002520654561643227,0.0007273703468962461,0.0016948984392271076,0.0,0.0006332575884786058,0.0023469147500881295,0.0007273703468962461,0.0003677986172975754,0.0,0.00011095660176669043,0.00017373981155509741,0.0013270998219295322,0.0005223009867119154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001351741431980343,0.0,0.0,0.00042341033329509014,0.00024575036624288024,0.0005585844764931245,0.0002796768146115712,8.667916960137418e-05,4.382977511239534e-05,0.0,1.3222461080474836e-05,1.1608253984869665e-05,8.866886442631999e-05,3.489702478684463e-05,0.0,0.0,0.0,0.00025250229948305564,7.286309197693453e-05,0.00016978357915734942,0.0,6.343550587578475e-05 +96309,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,9582.0,,420.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007804059985442841,0.0001236484237734445,0.0,0.0009040544223177287,0.00046918270107928014,0.0002227144729024291,0.00021218793794231704,0.0,0.0,0.0003455342773058356,0.0002227144729024291,0.00021218793794231704,0.0,0.0,0.0001236484237734445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.261682038970209e-06,0.0,0.0,9.299875235570524e-05,3.8982618535114424e-05,0.00010126043439467544,4.117633224951375e-05,2.6540247191999407e-05,2.528583010686012e-05,0.0,0.0,8.261682038970209e-06,0.0,0.0,0.0,0.0,0.0,5.255175236016694e-05,2.494558260581708e-05,2.3766536879787693e-05,0.0,0.0 +96310,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,NaturalGas,117539.0,,17358.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005672900057791575,0.0029518214906560703,0.0,0.008624721548447647,0.0047818430142654005,0.0016158919487393524,0.0013558407377914378,0.0,0.0008711813083742944,0.0034563211945022538,0.0016158919487393524,0.0004099259560316208,0.0,0.00019077868887976815,0.0013255218197631474,0.000945914781759817,0.0006804026194945263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001972238923804896,0.0,0.0,0.000676028838712048,0.00039143497762831377,0.0008732527310925377,0.0004118833012272052,0.00019256280675878382,4.885010579965416e-05,0.0,2.273473782025427e-05,8.856381510755029e-05,6.320063584788402e-05,4.546062606677693e-05,0.0,0.0,0.0,0.00048416142462183296,0.00016360899879035067,0.00013727882350195983,0.0,8.820707457524254e-05 +96311,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,14959.0,,676.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006983102845287796,0.00011492820272478225,0.0,0.0008132207568921419,0.00047283327834996805,0.0001599633207317164,4.5496107403855496e-05,0.0,0.00013494578076802188,0.00035790507562518585,0.0001599633207317164,4.5496107403855496e-05,0.0,0.00013494578076802188,0.00011492820272478225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.678336178859956e-06,0.0,0.0,8.321550941508381e-05,2.8287980217849413e-05,9.089384559394375e-05,4.2650457612108214e-05,1.906234165146341e-05,5.421632529112736e-06,0.0,1.6081077622399465e-05,7.678336178859956e-06,0.0,0.0,0.0,0.0,0.0,5.284866947846535e-05,1.787913214469456e-05,5.0851089651170735e-06,0.0,1.508291673168591e-05 +96312,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,133330.0,,856.0,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,699376.6742607838,0.0,0.0,0.03428916442236805,0.000725545553473124,0.0,0.03501462159168313,0.011140823122827055,0.01097024169778099,0.012246243787620374,0.0,0.0006573129834546988,0.01107259055280863,0.01097024169778099,0.012246243787620374,0.0,0.0,6.823257001842511e-05,0.0,0.0006573129834546988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.847555361073385e-05,0.0,0.0,0.004086168940219663,0.0013897756242558384,0.0041346444938303965,0.001319497758748,0.0013073010569756996,0.001459359591938302,0.0,0.0,4.5587924701530685e-06,0.0,4.391676114058078e-05,0.0,0.0,0.0,0.0013155459316023701,0.0012954031021855307,0.0014460777282429955,0.0,7.76177317994988e-05 +96313,85.0,Rural Climate Zone 3A,G1302850961100,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,NaturalGas,602147.0,,3250.0,,7.614023970037612,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,2664908.3895131643,0.0,0.0,0.10512461950949413,0.0022495904326261,0.0,0.10737428210914295,0.07042671497957533,0.027457675807230297,0.0035299055829282827,0.0007939094170832711,0.005166004155303053,0.07042671497957533,0.027457675807230297,0.0035299055829282827,0.0007939094170832711,0.002916413722676952,0.0,0.0,0.0022495904326261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001503054642411045,0.0,0.0,0.01252750154629179,0.0032252157251650235,0.012677807010532893,0.00839261806533531,0.0032720791546036526,0.00042065215412650657,9.46086796464273e-05,0.0003475434925798946,0.0,0.0,0.0001503054642411045,0.0,0.0,0.0,0.008315364567367246,0.0032419598809331884,0.0004167800786810269,9.37378129652644e-05,0.0006099561497414315 +96314,35.0,Eastern Counties in South Carolina and Georgia,G1302450010400,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,30950.0,,,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007137500460675876,0.0,0.0,0.0071375004606758765,0.0029957302911228162,0.0006740554876592472,0.0025706451545315654,0.0004236296424960169,0.0004735207456492985,0.0029957302911228162,0.0006740554876592472,0.0025706451545315654,0.0004236296424960169,0.0004735207456492985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008505650782723954,0.00022634236559666875,0.0008505650782723954,0.0003569966241810342,8.03261676520487e-05,0.0003063398747392371,5.048330042335451e-05,5.642874733330102e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00035699662418103417,8.032616765204869e-05,0.000306339874739237,5.0483300423354506e-05,5.642874733330101e-05 +96315,81.0,the Columbus-Albany Area,G1302150010302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,11997.0,,564.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026855813913890516,0.0004471971477084352,0.0,0.0031328612461712256,0.001896473200842319,0.00046357314830881814,0.0006325436999582232,0.0,0.00014035390413560467,0.0015895472501957493,0.00046357314830881814,0.0006325436999582232,0.0,0.0,0.0003069259506465698,0.0,0.00014035390413560467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9881255720326822e-05,0.0,0.0,0.0003200399775944617,0.00012435055960237706,0.0003499212333147885,0.00018942589785925774,5.524388144550392e-05,7.538005446837001e-05,0.0,0.0,2.0508477894975553e-05,0.0,9.378304227370928e-06,0.0,0.0,0.0,0.00021182433221331344,5.177825477782914e-05,7.065122079229924e-05,0.0,1.5676663400174133e-05 +96316,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,5943.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001213064650534422,0.0,0.0,0.001213064650534422,0.0007425441080315021,0.00021826396759803228,0.00020966243192914433,0.0,4.242872882826471e-05,0.0007425441080315021,0.00021826396759803228,0.00020966243192914433,0.0,4.242872882826471e-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.0001445559995861061,5.407986540423076e-05,0.0001445559995861061,8.848597288362042e-05,2.6009632706602166e-05,2.498462255067696e-05,0.0,5.05605971143877e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.848597288362042e-05,2.6009632706602166e-05,2.498462255067696e-05,0.0,5.05605971143877e-06 +96317,50.0,the Greater Atlanta and Macon Area,G1301170130608,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,64975.0,,4671.0,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.016239881969333507,0.003959433512545865,0.0,0.020199315481879372,0.009973445163237211,0.007526264595011622,0.002369225740821119,0.0,0.0003303799828094211,0.006014011650691346,0.007526264595011622,0.002369225740821119,0.0,0.0003303799828094211,0.003959433512545865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026454339429423003,0.0,0.0,0.0019352790404483758,0.0009130323830771984,0.0021998224347426058,0.0007166795127312715,0.000896892117264104,0.0002823365912979023,0.0,3.9370819155098066e-05,0.00026454339429423003,0.0,0.0,0.0,0.0,0.0,0.001086165936734161,0.0008196538006829082,0.00025802240389301783,0.0,3.598029343251886e-05 +96318,50.0,the Greater Atlanta and Macon Area,G1300890023506,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,4198.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0002508555577563923,0.0,0.0,0.0002508555577563923,0.00014749419886972285,8.48030896302031e-05,1.8558269256466364e-05,0.0,0.0,0.00014749419886972285,8.48030896302031e-05,1.8558269256466364e-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,2.9895137495215775e-05,9.336037806871657e-06,2.9895137495215775e-05,1.7577283893542536e-05,1.0106214297934672e-05,2.2116393037385688e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7577283893542536e-05,1.0106214297934672e-05,2.2116393037385688e-06,0.0,0.0 +96319,50.0,the Greater Atlanta and Macon Area,G1300210013407,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,144576.0,,4239.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.007442088711368705,0.0007208278435322467,0.0,0.008162916554900953,0.0038741017006429577,0.0019093294302412263,0.001109406444414124,0.0,0.0012700967099640624,0.003481533768441569,0.0019093294302412263,0.0007811465330832665,0.0,0.0012700967099640624,0.0003925679322013891,0.0003282599113308576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8160933704536105e-05,0.0,0.0,0.0008868598944506217,0.00031066762494082043,0.0009350208281551578,0.00041488791522864094,0.0002275312432635295,9.308778203925563e-05,0.0,0.00015135506681344704,2.6228784482895924e-05,2.193214922164018e-05,0.0,0.0,0.0,0.0,0.0004437587663832779,0.00021870403465208875,0.00012707690020351433,0.0,0.00014548315783955096 +96320,50.0,the Greater Atlanta and Macon Area,G1301210000500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,NaturalGas,1312277.0,,43075.0,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.0,0.0,0.21955206385309098,0.02255541162706933,0.0,0.24210742088626894,0.11864704792971656,0.021551429964710704,0.10124027701029906,0.0,0.0006686659815426037,0.09676035687808121,0.021551429964710704,0.10124027701029906,0.0,0.0,0.021886691051635355,0.0,0.0006686659815426037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015070204815588108,0.0,0.0,0.02616359321481055,0.010720086261743419,0.02767061369636936,0.011530743880285193,0.002568242069322872,0.012064607265202483,0.0,0.0,0.0014623404898884598,0.0,4.467634402632541e-05,0.0,0.0,0.0,0.013560247833212963,0.0024631268673007884,0.01157081672841978,0.0,7.642226743582808e-05 +96321,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,6255.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011712148712223324,0.0,0.0,0.0011712148712223324,0.0007554464115348341,0.00017136905678784498,0.00020362481554617488,0.0,4.0774587353478564e-05,0.0007554464115348341,0.00017136905678784498,0.00020362481554617488,0.0,4.0774587353478564e-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.00013957168630597725,4.199446472939635e-05,0.00013957168630597725,9.002526535688132e-05,2.0421759340864692e-05,2.4265623309463738e-05,0.0,4.859038298767515e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.002526535688132e-05,2.0421759340864692e-05,2.4265623309463738e-05,0.0,4.859038298767515e-06 +96322,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,203690.0,,29550.0,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,571051.7977528209,0.0,0.0,0.038125044272475615,0.020453866251014363,0.0,0.05857898269051272,0.044823948157645566,0.008625979893203276,0.0030213445737304087,0.0007682901240131357,0.0013393477748975939,0.026428141060924514,0.008625979893203276,0.0015833444787571105,0.0007682901240131357,0.0007192887155775806,0.01839580709672105,0.0014380000949732988,0.0006200590593200132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013666079764866842,0.0,0.0,0.004543292218091617,0.00244622100073309,0.005909900194578301,0.0031493935262761385,0.0010279423426269613,0.00018868428315738184,9.155573739715073e-05,8.571632863398471e-05,0.0012291004743928344,9.60787743432937e-05,4.142872775055602e-05,0.0,0.0,0.0,0.004522186077183967,0.0008702554723185199,0.0003048165752299641,7.751104141542538e-05,0.00013512374766380607 +96323,50.0,the Greater Atlanta and Macon Area,G1302970110700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10413.0,,1197.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,14029.891188970922,0.0,0.0,0.0009991945178270756,0.0002035622794636262,0.0,0.0012027390669292818,0.0007265902109937639,0.0003412562662517563,0.00010366942322304873,0.0,3.1223166460712994e-05,0.0005230279315301377,0.0003412562662517563,0.00010366942322304873,0.0,3.1223166460712994e-05,0.0002035622794636262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3600474024023493e-05,0.0,0.0,0.0001190715985836435,4.490012272715706e-05,0.000132672072607667,6.232797598472007e-05,4.066668543943548e-05,1.2354034902290187e-05,0.0,3.720789372829319e-06,1.3600474024023494e-05,0.0,0.0,0.0,0.0,0.0,8.014891332589657e-05,3.764339030706518e-05,1.1435595320071187e-05,0.0,3.444173654634063e-06 +96324,50.0,the Greater Atlanta and Macon Area,G1301210010211,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,15677.0,,338.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003557148534453873,0.00026788821184161677,0.0,0.00382503674629549,0.0024360541499175606,0.00043379860176266747,0.0008878604365914652,0.0,6.724085095005695e-05,0.002168165938075944,0.00043379860176266747,0.0008878604365914652,0.0,6.724085095005695e-05,0.00026788821184161677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7901167888096593e-05,0.0,0.0,0.0004238964548820961,0.0001509916413991777,0.0004417976227701927,0.0002583748881567613,5.169468961976782e-05,0.00010580409782043996,0.0,8.012923290919207e-06,1.7901167888096593e-05,0.0,0.0,0.0,0.0,0.0,0.0002813679982069117,5.0104405194379446e-05,0.00010254924494979281,0.0,7.766421624981983e-06 +96325,50.0,the Greater Atlanta and Macon Area,G1301130140206,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,106688.0,,2028.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009507088492013508,0.0005909183770614617,0.0,0.01009800686907497,0.005913709436930842,0.003087415635648597,0.0010968817964955315,0.0,0.0,0.005322791059869381,0.003087415635648597,0.0010968817964955315,0.0,0.0,0.0005909183770614617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9482627806336986e-05,0.0,0.0,0.001132939748651114,0.00032081326327448856,0.0011724223764574512,0.0006343058203946131,0.00036792083056465057,0.00013071309769185056,0.0,0.0,3.9482627806336986e-05,0.0,0.0,0.0,0.0,0.0,0.000686607303958038,0.0003584623404985472,0.00012735273200086607,0.0,0.0 +96326,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,452292.0,,36509.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02138960660100756,0.006208747040628409,0.0,0.02759835364163597,0.01166921963824633,0.00438186379099043,0.005888802668803558,0.0,0.005658467543595651,0.01166921963824633,0.00438186379099043,0.0044508171665530154,0.0,0.0008877060052177837,0.0,0.0014379855022505423,0.004770761538377867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004148325818916505,0.0,0.0,0.0025489572032319084,0.0010884345232840967,0.0029637897851235596,0.0013905978734364435,0.0005221780597451478,0.0005303950974217139,0.0,0.00010578617262860299,0.0,9.607787766482722e-05,0.00031875470422682326,0.0,0.0,0.0,0.0012531585910262864,0.00047056876334636305,0.0006323990707212981,0.0,0.000607663360029612 +96327,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,363029.0,,28617.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.031608545179074896,0.008423529688561969,0.0,0.04003207486763687,0.023600215174114543,0.00615351157953979,0.010278378803588829,0.0,0.0,0.015176685485552576,0.00615351157953979,0.010278378803588829,0.0,0.0,0.008423529688561969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005628110337812753,0.0,0.0,0.003766730062374042,0.0017177135766283953,0.004329541096155318,0.0018085766725977421,0.0007333022423051512,0.0012248548046930167,0.0,0.0,0.0005628110337812753,0.0,0.0,0.0,0.0,0.0,0.002552405834878199,0.0006655133753964683,0.001111625205016921,0.0,0.0 +96328,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,34328.0,,3656.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0029941393696164787,0.001076223113647841,0.0,0.00407036248326432,0.0016485535814937003,0.0010245418166425098,0.0013972363955218124,0.0,0.0,0.0005723304678458593,0.0010245418166425098,0.0013972363955218124,0.0,0.0,0.001076223113647841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.190653273588057e-05,0.0,0.0,0.00035680510923596757,0.00018215838120796187,0.0004287116419718481,6.820338330642628e-05,0.00012209243113849185,0.00016650563757708055,0.0,0.0,7.190653273588057e-05,0.0,0.0,0.0,0.0,0.0,0.0001736341949166988,0.00010791004641173322,0.00014716416825525373,0.0,0.0 +96329,50.0,the Greater Atlanta and Macon Area,G1301210007706,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,67061.0,,8651.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005975112898131242,0.0025464393929455903,0.0,0.008521521601470537,0.004374036137580089,0.0015413547866958246,0.0026061306771946223,0.0,0.0,0.0018275967446344983,0.0015413547866958246,0.0026061306771946223,0.0,0.0,0.0025464393929455903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001701376182469147,0.0,0.0,0.0007120413879183826,0.00038754741034830505,0.0008821790061652973,0.00021779078400538076,0.0001836799438445407,0.0003105670028539055,0.0,0.0,0.0001701376182469147,0.0,0.0,0.0,0.0,0.0,0.000452816179227383,0.00015956667100870784,0.00026979615592920633,0.0,0.0 +96330,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,26184.0,,4237.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.002281311884139736,0.0012473176687575341,0.0,0.003528598863290973,0.0017236203584978813,0.0007037126724063247,0.0011012658323867666,0.0,0.0,0.0004763026897403472,0.0007037126724063247,0.0011012658323867666,0.0,0.0,0.0012473176687575341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.333747001884237e-05,0.0,0.0,0.00027185830227720293,0.00016241685527390934,0.0003551957722960453,5.6759815044624866e-05,8.385970096477116e-05,0.00013123512906322931,0.0,0.0,8.333747001884237e-05,0.0,0.0,0.0,0.0,0.0,0.00017350304982268445,7.08371157600939e-05,0.0001108556067132669,0.0,0.0 +96331,50.0,the Greater Atlanta and Macon Area,G1300130180108,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,272221.0,,20760.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.021976980517816453,0.0061108223371796845,0.0,0.02808780285499614,0.011034325185913846,0.005896087161914658,0.011157390507167634,0.0,0.0,0.00492350284873416,0.005896087161914658,0.011157390507167634,0.0,0.0,0.0061108223371796845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000408290222527726,0.0,0.0,0.0026189526727450865,0.0011200481442480987,0.0030272428952728123,0.0005867239557548425,0.0007026248769213815,0.0013296038400688623,0.0,0.0,0.00040829022252772607,0.0,0.0,0.0,0.0,0.0,0.0011892558024432964,0.000635467575123645,0.0012025195177058708,0.0,0.0 +96332,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,36565.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.0031914121588981132,0.0,0.0,0.003191412158898113,0.0012490362867102057,0.000746954327679788,0.0011954215445081188,0.0,0.0,0.0012490362867102057,0.000746954327679788,0.0011954215445081188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003803135979904409,0.00014684439286122717,0.0003803135979904409,0.00014884491897887252,8.901291144811366e-05,0.00014245576756345468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014884491897887255,8.901291144811367e-05,0.00014245576756345468,0.0,0.0 +96333,81.0,the Columbus-Albany Area,G1302150002200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,75626.0,,7715.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003594954890445646,0.0013120822058067475,0.0,0.004907037096252394,0.001669136224083771,0.0010415346208981619,0.0016622036527685305,0.0,0.0005341980592247709,0.0015454846835403226,0.0010415346208981619,0.0009139114793966219,0.0,9.405956733338013e-05,0.00012365154054344823,0.0007482921733719084,0.00044013849189139076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.766602877970672e-05,0.0,0.0,0.0004284030140448992,0.00018420131597996755,0.000516069042824606,0.00018417207357693043,0.00012411743246368566,0.00010890885818464632,0.0,1.1208875597430375e-05,8.261707585060873e-06,4.999671736735145e-05,2.940760382729439e-05,0.0,0.0,0.0,0.0001755416795533602,0.00010953733675380326,0.00017481258674790704,0.0,5.6181169144499564e-05 +96334,85.0,Rural Climate Zone 3A,G1300610960300,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,5384.0,,43.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009446801962503694,3.424072852807327e-05,0.0,0.000979003631852182,0.0004306557329605737,0.00023240687720745386,0.00028161758608234174,0.0,3.424072852807327e-05,0.0004306557329605737,0.00023240687720745386,0.00028161758608234174,0.0,0.0,0.0,0.0,3.424072852807327e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2896734072715923e-06,0.0,0.0,0.00011257803348034326,4.13927617362691e-05,0.00011486770688761485,5.132146912380908e-05,2.7696049210275307e-05,3.356051514625886e-05,0.0,0.0,0.0,0.0,2.2896734072715923e-06,0.0,0.0,0.0,5.0529369752792976e-05,2.7268586327126618e-05,3.304253965973883e-05,0.0,4.017507024708334e-06 +96335,50.0,the Greater Atlanta and Macon Area,G1301210008700,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,NaturalGas,126176.0,,8498.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011242155199761888,0.002501356361294265,0.0,0.013743511561056155,0.004666569464809791,0.003487965824552814,0.005589006961299845,0.0,0.0,0.0021652131035155265,0.003487965824552814,0.005589006961299845,0.0,0.0,0.002501356361294265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016712641231337455,0.0,0.0,0.0013397055212350567,0.0005534513671960001,0.0015068319335484312,0.00025802418645596366,0.00041565402629662715,0.0006660309657024802,0.0,0.0,0.00016712641231337455,0.0,0.0,0.0,0.0,0.0,0.0005116404099824568,0.0003824188792080349,0.0006127760091514705,0.0,0.0 +96336,50.0,the Greater Atlanta and Macon Area,G1300890022100,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,72915.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.006141235737020709,0.0,0.0,0.0061412357370207084,0.0025570579967245963,0.0014624211192981332,0.0021217873106042775,0.0,0.0,0.0025570579967245963,0.0014624211192981332,0.0021217873106042775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00073184070070722,0.0002616441487921118,0.00073184070070722,0.0003047202869596696,0.00017427425725158636,0.00025284981372456405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030472028695966965,0.00017427425725158639,0.0002528498137245641,0.0,0.0 +96337,50.0,the Greater Atlanta and Macon Area,G1300890020400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,68620.0,,4800.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0056551997321161365,0.0013984308917135316,0.0,0.0070536306238296684,0.004282738267921882,0.0018879014466529024,0.0008829909092548832,0.0,0.0,0.002884307376208351,0.0018879014466529024,0.0008829909092548832,0.0,0.0,0.0013984308917135316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.343554674217943e-05,0.0,0.0,0.0006739182983805592,0.0002503575728658528,0.0007673538451227386,0.0003437168643119658,0.0002249772582236344,0.00010522417584495904,0.0,0.0,9.343554674217943e-05,0.0,0.0,0.0,0.0,0.0,0.00046591264170278636,0.00020538195314731986,9.605925027263233e-05,0.0,0.0 +96338,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,44270.0,,3240.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.01075010645552994,0.0022286263793390975,0.0,0.012978804554840054,0.004243096925225581,0.0007390743013158718,0.005154083997065871,0.0003649829324984447,0.002477566398734284,0.004243096925225581,0.0007390743013158718,0.0029254576177267745,0.0003649829324984447,0.002477566398734284,0.0,0.0022286263793390975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001489050999058745,0.0,0.0,0.00128107148578463,0.00044216567364841494,0.0014299765856905045,0.0005056424794315183,8.807419881920482e-05,0.0003486216952775705,4.349438115389941e-05,0.00029524727784662115,0.0,0.0001489050999058745,0.0,0.0,0.0,0.0,0.000467495232573269,8.14296063633335e-05,0.000567865815787928,4.021302928510474e-05,0.00027297290168086914 +96339,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000602,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,Electricity,132892.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011718620640675659,0.0,0.0,0.011718620640675656,0.00796854418609363,0.0027940066650799147,0.0009561001631015519,0.0,0.0,0.00796854418609363,0.0027940066650799147,0.0009561001631015519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013964861927800102,0.00033367708460657305,0.0013964861927800102,0.0009495965671771738,0.00033295656971573897,0.0001139366754523637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000949596567177174,0.0003329565697157391,0.00011393667545236375,0.0,0.0 +96340,50.0,the Greater Atlanta and Macon Area,G1300590001200,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,127250.0,,21707.0,,3.3063363735822096,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.012618066612290733,0.006524544884841988,0.0,0.019142611497132724,0.0054527218494221956,0.0017491943853583606,0.00812460162253171,0.0,0.00381606230179825,0.0054527218494221956,0.0017491943853583606,0.005416150377510176,0.0,0.0,0.0,0.002708451245021535,0.00381606230179825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000435931687409438,0.0,0.0,0.0015036725124132448,0.0010035819508156937,0.001939604199822683,0.0006497911458816407,0.00020844837778625803,0.0006454329887453459,0.0,0.0,0.0,0.00018096277094383498,0.0002549668226434069,0.0,0.0,0.0,0.0005524910851995477,0.00017723521039203637,0.0008232163846249023,0.0,0.000386658344315328 +96341,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,2225.0,,15.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000534287696355926,1.1744404470981654e-05,0.0,0.0005460321008269076,0.00030618158698291604,0.00011537636786633386,0.00011264703443293672,0.0,1.1744404470981654e-05,0.00030618158698291604,0.00011537636786633386,0.00011264703443293672,0.0,0.0,0.0,0.0,1.1744404470981654e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.873755163829817e-07,0.0,0.0,6.366844333611786e-05,2.2184075131915635e-05,6.445581885250084e-05,3.648615746599199e-05,1.3748835673975915e-05,1.3423594399967884e-05,0.0,0.0,0.0,0.0,7.873755163829817e-07,0.0,0.0,0.0,3.614290236170222e-05,1.3619489139539332e-05,1.329730767602335e-05,0.0,1.3863566005839321e-06 +96342,81.0,the Columbus-Albany Area,G1302150002200,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,32358.0,,3169.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.00162516492776204,0.0005389497960853449,0.0,0.002164114723847385,0.0012629868350346213,0.0002529945271027334,0.00040253239531945874,0.0,0.00024560096639057147,0.0010213397392407218,0.0002529945271027334,0.0002964339125818628,0.0,5.4414479198142055e-05,0.00024164709579389959,0.00010609848273759595,0.0001911864871924294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.600898914887e-05,0.0,0.0,0.00019366784285541628,9.094771057401764e-05,0.00022967683200428627,0.00012171113266248527,3.014888118812933e-05,3.532547092188201e-05,0.0,6.484470976688551e-06,1.614522857880545e-05,7.088784783591739e-06,1.2773791163347217e-05,0.0,0.0,0.0,0.0001340404055003918,2.6850231579255266e-05,4.2720639676489754e-05,0.0,2.606555524814942e-05 +96343,50.0,the Greater Atlanta and Macon Area,G1300670031205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,34559.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0030791495790611157,0.0,0.0,0.0030791495790611157,0.001325698923241867,0.0006920813116194955,0.0010614000338060507,0.0,0.0,0.001325698923241867,0.0006920813116194955,0.0010614000338060507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003669348158407946,0.0001261259862922808,0.0003669348158407946,0.0001579803376776582,8.247365777643981e-05,0.00012648447759293027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001579803376776582,8.247365777643981e-05,0.00012648447759293027,0.0,0.0 +96344,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,62779.0,,9322.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005593518333425608,0.0027439576990776053,0.0,0.008337476032503212,0.004901897365900576,0.0013945357101676143,0.0020410429564350213,0.0,0.0,0.002157939666822971,0.0013945357101676143,0.0020410429564350213,0.0,0.0,0.0027439576990776053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001833344253628585,0.0,0.0,0.0006665698741913051,0.00035943218611052616,0.0008499042995541636,0.0002571579257425429,0.00016618440084962166,0.00024322754759914037,0.0,0.0,0.00018333442536285852,0.0,0.0,0.0,0.0,0.0,0.0004996888304099029,0.0001421559583898951,0.00020805951075436542,0.0,0.0 +96345,50.0,the Greater Atlanta and Macon Area,G1300670031207,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,80034.0,,2081.0,,9.325022323477118,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.021656947016521683,0.0017642361789349525,0.0,0.023421183195456642,0.012812697856594576,0.0021701846168813606,0.008148312299402395,0.0,0.0002899884225783068,0.011048461677659625,0.0021701846168813606,0.008148312299402395,0.0,0.0002899884225783068,0.0017642361789349525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011787570904181329,0.0,0.0,0.0025808216737899783,0.000930604115604851,0.002698697382831791,0.0013166264542268614,0.00025861722296777217,0.0009710205677219537,0.0,3.455742887339173e-05,0.00011787570904181329,0.0,0.0,0.0,0.0,0.0,0.0014763384874302088,0.00025005873943104834,0.0009388863446129841,0.0,3.341381135754947e-05 +96346,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11981.0,,426.0,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002870597115343882,0.0003376929820775921,0.0,0.0032082900974214745,0.0014569678109916395,0.0007353485926161823,0.0009384771657199212,0.0,7.741382101999174e-05,0.0011192748289140474,0.0007353485926161823,0.0009384771657199212,0.0,7.741382101999174e-05,0.0003376929820775921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.25640925603116e-05,0.0,0.0,0.0003420825585258528,0.0001265528067392453,0.00036464665108616436,0.00013338144705919,8.762982677922546e-05,0.00011183619890494558,0.0,9.225229767782592e-06,2.2564092560311605e-05,0.0,0.0,0.0,0.0,0.0,0.00016559550941027223,8.357797877876536e-05,0.00010666509112615572,0.0,8.79867148092727e-06 +96347,50.0,the Greater Atlanta and Macon Area,G1300630040524,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,13936.0,,3171.0,,8.72605822017302,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.003346328203492379,0.0025158664760759927,0.0,0.0058621946795683715,0.004614723886358397,0.0007461005122022924,0.00042436999535638636,0.0,7.708299272503452e-05,0.002175940403007439,0.0007461005122022924,0.00042436999535638636,0.0,0.0,0.0024387834833509577,0.0,7.708299272503452e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016809545949714893,0.0,0.0,0.0003987798168449304,0.00029649602510167496,0.0005668752763420793,0.0002593054424462005,8.891232643989414e-05,5.057190410853527e-05,0.0,0.0,0.00016294522549039844,0.0,5.150234006750478e-06,0.0,0.0,0.0,0.0004462446270232742,7.214805327222306e-05,4.103665462141408e-05,0.0,7.4539392140241515e-06 +96348,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2004,gen5_led,1001_5000,Electricity,4236.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010171315928460027,0.0,0.0,0.0010171315928460027,0.0005763028898154941,0.00019022626960040707,0.00020991055315036224,0.0,4.069188027973925e-05,0.0005763028898154941,0.00019022626960040707,0.00020991055315036224,0.0,4.069188027973925e-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.00012120734780502708,3.3463654308222615e-05,0.00012120734780502708,6.867562201215065e-05,2.266847454476844e-05,2.5014168867227088e-05,0.0,4.8490823808809015e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.867562201215065e-05,2.266847454476844e-05,2.5014168867227088e-05,0.0,4.8490823808809015e-06 +96349,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,65000.0,,8433.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0031125294865674297,0.001434191204906651,0.0,0.004546720691474082,0.0017771495858547328,0.0005639141449647794,0.0010269248030880384,0.0,0.0011787321575665302,0.0015679667818209496,0.0005639141449647794,0.0008138058588190037,0.0,0.00016684270096269685,0.00020918280403378294,0.00021311894426903464,0.0010118894566038335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.582418470085268e-05,0.0,0.0,0.00037091431204550556,0.00018346360411293646,0.00046673849674635826,0.00018685166604821607,6.720059296948586e-05,9.697972069506153e-05,0.0,1.988233233274208e-05,1.3976359345531036e-05,1.423934898569953e-05,6.760847636962213e-05,0.0,0.0,0.0,0.00018243129113926996,5.788797205168491e-05,0.00010541781019530067,0.0,0.00012100142336010259 +96350,35.0,Eastern Counties in South Carolina and Georgia,G1302450010510,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,15300.0,,610.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012973417270227897,0.00017968764487304978,0.0,0.0014770293718958394,0.00044539825619856053,0.0004674947727329065,0.0005641363429643725,0.0,0.0,0.0002657106113255107,0.0004674947727329065,0.0005641363429643725,0.0,0.0,0.00017968764487304978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2005861429980427e-05,0.0,0.0,0.00015460077017002527,5.890315338054384e-05,0.00016660663160000572,3.1664028295415016e-05,5.57101112293898e-05,6.722663064522045e-05,0.0,0.0,1.2005861429980426e-05,0.0,0.0,0.0,0.0,0.0,5.0240235297766026e-05,5.273268823061187e-05,6.363370807162785e-05,0.0,0.0 +96351,85.0,Rural Climate Zone 3A,G1301630960300,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,7465.0,,,321.0,3.20458438519356,Mercantile,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,9613.75315558068,0.0,0.0,0.0005613041176096538,0.0,3.0221731440563063e-05,0.0005915258490502168,0.0003358105153837841,0.00020423208261944323,5.148325104698934e-05,0.0,0.0,0.0003055887839432211,0.00020423208261944323,5.148325104698934e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0221731440563063e-05,0.0,0.0,0.0,0.0,2.4374064057208534e-06,6.688973468614631e-05,2.2412410834625466e-05,6.932714109186718e-05,3.641653791543928e-05,2.4338018183422493e-05,6.135178587284522e-06,0.0,0.0,0.0,0.0,0.0,2.4374064057208534e-06,0.0,0.0,3.9357169289431746e-05,2.393610766119203e-05,6.033864141243381e-06,0.0,0.0 +96352,50.0,the Greater Atlanta and Macon Area,G1301530020400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,121123.0,,1241.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006234846132638729,0.00021109768306714865,0.0,0.006445943815705877,0.002749110268540607,0.001727664147131365,0.0009728117400340372,0.0,0.0009963399296384471,0.002749110268540607,0.001727664147131365,0.0007617140569668885,0.0,0.0009963399296384471,0.0,0.00021109768306714865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4104315688940059e-05,0.0,0.0,0.0007429949096395016,0.0001796733964906189,0.0007570992253284417,0.00032760631010133527,0.0002058824932608252,9.077203428719239e-05,0.0,0.00011873195909626145,0.0,1.4104315688940059e-05,0.0,0.0,0.0,0.0,0.0003228928631961145,0.00020292035190158457,0.00011426022873107051,0.0,0.00011702369900511739 +96353,50.0,the Greater Atlanta and Macon Area,G1301210006300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,59213.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.009022113229790928,0.0,0.0,0.009022113229790926,0.0061664177842529365,0.0023852691374460886,0.0004703959344924625,0.0,0.0,0.0061664177842529365,0.0023852691374460886,0.0004703959344924625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001075146227549559,0.00033653682299389994,0.001075146227549559,0.000734839017132097,0.0002842474982853857,5.605609257421615e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007348390171320971,0.0002842474982853858,5.605609257421616e-05,0.0,0.0 +96354,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,99485.0,,4675.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010019634732892899,0.0013760298775700997,0.0,0.011395664610462998,0.0027677421439583254,0.0027678035231709208,0.0058601189433337515,0.0,0.0,0.0013917122663882257,0.0027678035231709208,0.0058601189433337515,0.0,0.0,0.0013760298775700997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.193807122522865e-05,0.0,0.0,0.001194020437345939,0.0004571579542516422,0.0012859585085711678,0.00016584765146351768,0.0003298337775103702,0.0006983390083720511,0.0,0.0,9.193807122522865e-05,0.0,0.0,0.0,0.0,0.0,0.00031232944117066345,0.0003123363675872776,0.0006612926998132269,0.0,0.0 +96355,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,42644.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0036729013921027714,0.0,0.0,0.0036729013921027714,0.0015523723553567,0.0008981927075148674,0.0012223363292312042,0.0,0.0,0.0015523723553567,0.0008981927075148674,0.0012223363292312042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004376936217077902,0.00014370211855337645,0.0004376936217077902,0.00018499366193605523,0.00010703614858514774,0.00014566381118658725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018499366193605523,0.00010703614858514774,0.00014566381118658725,0.0,0.0 +96356,35.0,Eastern Counties in South Carolina and Georgia,G1301270000501,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,33187.0,,1426.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0028877691941886414,0.0004197724349399786,0.0,0.00330754162912862,0.0009484929722368023,0.0009079826919238347,0.0014510659649679832,0.0,0.0,0.0005287205372968236,0.0009079826919238347,0.0014510659649679832,0.0,0.0,0.0004197724349399786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.804580181507805e-05,0.0,0.0,0.00034413133261897714,0.00012979294026553754,0.0003721771344340552,6.300687168806046e-05,0.00010820300126323178,0.00017292145966768486,0.0,0.0,2.8045801815078054e-05,0.0,0.0,0.0,0.0,0.0,0.00010672802825188737,0.00010216965779655538,0.00016327944838561247,0.0,0.0 +96357,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,30264.0,,3650.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028849150608029547,0.001074473806088872,0.0,0.003959419556498125,0.0019245452109289414,0.0008797789437362458,0.0011550647122266396,0.0,0.0,0.0008500714048400694,0.0008797789437362458,0.0011550647122266396,0.0,0.0,0.001074473806088872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.179058381818234e-05,0.0,0.0,0.0003437906767099143,0.00017535458037436422,0.00041558126052809665,0.0001013016388220367,0.000104841838337533,0.0001376471995503446,0.0,0.0,7.179058381818234e-05,0.0,0.0,0.0,0.0,0.0,0.00020200054914325415,9.234172767165793e-05,0.00012123576252758182,0.0,0.0 +96358,35.0,Eastern Counties in South Carolina and Georgia,G1300510011104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,123565.0,,13713.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0060995280142808845,0.0023320035161338644,0.0,0.00843153153041475,0.0035524374837603593,0.0018777516565521124,0.0011626152590357025,0.0,0.0018387271310665758,0.0032028834083640185,0.0018777516565521124,0.0007593027278137613,0.0,0.0002596079519124132,0.000349554075396341,0.0004033125312219411,0.0015791191791541628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015581032438356874,0.0,0.0,0.0007268698817338764,0.00033588732820554205,0.0008826802061174452,0.0003816819069925073,0.000223768318028545,9.048475270119198e-05,0.0,3.093701690720031e-05,2.3355082228776504e-05,2.6946896041490188e-05,0.00010550716147813957,0.0,0.0,0.0,0.0003718975893138465,0.0001965780728286338,0.0001217118708243081,0.0,0.00019249267315065685 +96359,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,23509.0,,6056.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,14029.891188970922,0.0,0.0,0.001210114897280024,0.001029903503806607,0.0,0.002240018401086631,0.0011901150495982043,0.0003092884246114011,0.00033331306433557263,0.0,0.00040730186254145297,0.0005932047020307066,0.0003092884246114011,0.00023161171123014976,0.0,7.601005940776637e-05,0.0005969103475674977,0.00010170135310542287,0.0003312918031336866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.881215109424344e-05,0.0,0.0,0.00014420766982591181,0.00011281423525353529,0.00021301982092015526,7.069135997077745e-05,3.685746131841593e-05,2.7600837950152906e-05,0.0,9.05801058656553e-06,3.988207135398282e-05,6.7950918222077295e-06,2.21349879180529e-05,0.0,0.0,0.0,0.00011317679114457713,2.9412510536269285e-05,3.1697190184093454e-05,0.0,3.873332905521543e-05 +96360,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,73598.0,,4823.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00725634258184774,0.001419762566544326,0.0,0.008676105148392064,0.0024095330592515387,0.002021002643522621,0.004245569445617906,0.0,0.0,0.0009897704927072123,0.002021002643522621,0.004245569445617906,0.0,0.0,0.001419762566544326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.486000854851809e-05,0.0,0.0,0.0008647233857584744,0.00032944130305528663,0.0009595833943069925,0.00011794890909900716,0.00024083871851715972,0.0005059357581423074,0.0,0.0,9.486000854851808e-05,0.0,0.0,0.0,0.0,0.0,0.0002664960684714629,0.0002235243284176027,0.00046956299741792703,0.0,0.0 +96361,50.0,the Greater Atlanta and Macon Area,G1301170130205,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,10258.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,24284.436554246196,0.0,0.0,0.0008580813920837699,0.0,0.0,0.0008580813920837699,0.0004020338424999064,0.00023044825368945024,0.00022562998550071085,0.0,0.0,0.0004020338424999064,0.00023044825368945024,0.00022562998550071085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010225644335270693,3.9484059322110744e-05,0.00010225644335270693,4.7909850068686e-05,2.7462218638607882e-05,2.6888031885876298e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7909850068686e-05,2.7462218638607882e-05,2.6888031885876298e-05,0.0,0.0 +96362,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,104282.0,,7094.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009329425487257563,0.002088090122889399,0.0,0.01141751561014696,0.003698251006904674,0.002776059027265003,0.004943205575977285,0.0,0.0,0.0016101608840152744,0.002776059027265003,0.004943205575977285,0.0,0.0,0.002088090122889399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013951413391684588,0.0,0.0,0.0011117704985927172,0.00044766692627833793,0.0012512846325095632,0.0001918799149295066,0.0003308178550845014,0.0005890727285787091,0.0,0.0,0.00013951413391684588,0.0,0.0,0.0,0.0,0.0,0.00040530399170115726,0.0003042378148070195,0.0005417428260013867,0.0,0.0 +96363,50.0,the Greater Atlanta and Macon Area,G1301510070108,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6264.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0015041935500967841,0.0,0.0,0.001504193550096784,0.0007642133613512005,0.0005120394935200522,0.00017988788538299367,0.0,4.797010276879831e-05,0.0007642133613512005,0.0005120394935200522,0.00017988788538299367,0.0,4.797010276879831e-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.00017925217549957215,5.652085289261478e-05,0.00017925217549957215,9.107000063870053e-05,6.101887164006439e-05,2.143693196852529e-05,0.0,5.716515191606744e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.107000063870054e-05,6.10188716400644e-05,2.143693196852529e-05,0.0,5.716515191606745e-06 +96364,50.0,the Greater Atlanta and Macon Area,G1301210011417,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,219450.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,431997.0345818221,0.0,0.0056735063793166614,0.03838316342629114,0.0,0.0,0.044056669805607795,0.025167510953725724,0.0034539917255270993,0.015286671741819061,0.0,0.00014849538453591465,0.01949400457440906,0.0034539917255270993,0.015286671741819061,0.0,0.00014849538453591465,0.0,0.0,0.0,0.0056735063793166614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004574049830012168,0.0015214702884730718,0.004574049830012168,0.002323064082017695,0.0004116057368577672,0.0018216840937666208,0.0,1.7695917370084356e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0026129403268030415,0.00035860019231412056,0.0015870922289550626,0.0,1.541708193994354e-05 +96365,50.0,the Greater Atlanta and Macon Area,G1300630040510,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,230888.0,,5066.0,,9.729435225087556,Education,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,1459415.2837631335,0.10498851232698407,0.0,0.05641316664596725,0.00448074409499577,0.0,0.16588242306794712,0.1413210033125815,0.009732793292186372,0.009628126710288818,0.0006580623157893726,0.0045424374371010245,0.03633249098559743,0.009732793292186372,0.005147382615293048,0.0006580623157893726,0.0045424374371010245,0.0,0.00448074409499577,0.0,0.0,0.0,0.0,0.10498851232698407,0.0,0.0,0.0,0.00029937986192537174,0.0,0.0,0.006722643468714895,0.002547250479475459,0.007022023330640267,0.0043296697871848654,0.0011598373774812053,0.000613403220862272,7.84199610174706e-05,0.0005413131221690816,0.0,0.00029937986192537174,0.0,0.0,0.0,0.0,0.005982305804418816,0.0004120020693333943,0.00040757139388008276,2.785665201306686e-05,0.0001922874109949057 +96366,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,32938.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028910222924561978,0.0,0.0,0.0028910222924561978,0.001394474330955019,0.0005298253631235409,0.0009667225983776377,0.0,0.0,0.001394474330955019,0.0005298253631235409,0.0009667225983776377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003445176894564949,0.000126624151886908,0.0003445176894564949,0.00016617688343691445,6.313829208272573e-05,0.00011520251393685473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016617688343691445,6.313829208272573e-05,0.00011520251393685473,0.0,0.0 +96367,81.0,the Columbus-Albany Area,G1300950010401,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,65119.0,,11386.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004226918162540588,0.0019363682314068062,0.0,0.006163286393947396,0.002186561361405172,0.0010945306711826997,0.0015391549445133638,0.0,0.0013430216864847395,0.0020802501143305356,0.0010945306711826997,0.0008266249101257018,0.0,0.00022551246690165162,0.00010631124707463661,0.0007125300343876619,0.001117509219583088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012937671991654272,0.0,0.0,0.0005037128778801418,0.0002643229608855505,0.0006330895977966845,0.00024789899674095386,0.00013043290007255415,9.850713839147638e-05,0.0,2.6873842675157397e-05,7.103091350946695e-06,4.7607060060122545e-05,7.466538386715615e-05,0.0,0.0,0.0,0.00022460245465944937,0.00011242962570677919,0.00015810120161309846,0.0,0.00013795449456378218 +96368,50.0,the Greater Atlanta and Macon Area,G1300670030505,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,25038.0,,2562.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023619948590963974,0.0007541050059471527,0.0,0.0031161305546498477,0.0012981089671802322,0.0007162647213820852,0.0011017568660875298,0.0,0.0,0.0005440039612330796,0.0007162647213820852,0.0011017568660875298,0.0,0.0,0.0007541050059471527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0385894887820204e-05,0.0,0.0,0.0002814758324548735,0.00013163899349679902,0.0003318617273426937,6.482823925595196e-05,8.535632833096371e-05,0.0001312949221081279,0.0,0.0,5.0385894887820204e-05,0.0,0.0,0.0,0.0,0.0,0.00013824603192079003,7.628077306254003e-05,0.0001173349223593636,0.0,0.0 +96369,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,72642.0,,6749.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.0059665594999525305,0.0019660223444067995,0.0,0.00793261221795877,0.005344629677865124,0.001960980326900133,0.0006269414659946355,0.0,0.0,0.0033786073334583244,0.001960980326900133,0.0006269414659946355,0.0,0.0,0.0019660223444067995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013135907795880003,0.0,0.0,0.0007110244322312956,0.0003302843921521928,0.0008423835101900956,0.00040262271096497217,0.00023368658664377692,7.471151505396674e-05,0.0,0.0,0.00013135907795880003,0.0,0.0,0.0,0.0,0.0,0.0005675593089642673,0.0002082413013267052,6.657644900536728e-05,0.0,0.0 +96370,85.0,Rural Climate Zone 3A,G1300310110401,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,47481.0,,,7944.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004026597703863321,0.0,0.0007487092261405824,0.004775306930003904,0.003550977510267566,0.0009868989929314321,0.0002374000532054683,0.0,0.0,0.002802268284126983,0.0009868989929314321,0.0002374000532054683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007487092261405824,0.0,0.0,0.0,0.0,6.0383626474731e-05,0.00047984022770196545,0.00019941976988606275,0.0005402238541766964,0.0003339397552050882,0.00011760644402908871,2.829040891700596e-05,0.0,0.0,0.0,0.0,0.0,6.0383626474731e-05,0.0,0.0,0.00040171716390383853,0.00011164651517888562,2.6856738970767277e-05,0.0,0.0 +96371,50.0,the Greater Atlanta and Macon Area,G1301130140203,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8114.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0006270629603923864,0.0,0.0,0.0006270629603923864,0.0003785157961932632,0.00017252204480643036,7.605549299213057e-05,0.0,0.0,0.0003785157961932632,0.00017252204480643036,7.605549299213057e-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,7.472677313905433e-05,2.6063521124906697e-05,7.472677313905433e-05,4.5107534359839906e-05,2.0559364079914194e-05,9.063494305652314e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5107534359839906e-05,2.0559364079914194e-05,9.063494305652314e-06,0.0,0.0 +96372,50.0,the Greater Atlanta and Macon Area,G1301210003800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,208892.0,,22435.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.009951732718570078,0.0038153255525354823,0.0,0.01376705827110556,0.008393748130228617,0.003044125752208866,0.001110771682243468,0.0,0.0012184127064246086,0.005965362369415346,0.003044125752208866,0.0007126718772790224,0.0,0.00022957271966684369,0.0024283857608132717,0.0003980998049644455,0.000988839986757765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002549178726755303,0.0,0.0,0.0011859289055632203,0.0005635187297376778,0.0014408467782387505,0.0007108807949441456,0.00036276262876085337,8.492774106262741e-05,0.0,2.7357740795593968e-05,0.00016225061889428672,2.6598714578010098e-05,6.60685392032335e-05,0.0,0.0,0.0,0.000878481423745454,0.00031859520721499285,0.0001162522717782333,0.0,0.00012751787550007045 +96373,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,11685.0,,1748.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.00145778698874718,0.0005145112495809871,0.0,0.0019722982383281675,0.0009622112262518753,0.0004459199795056214,0.0005641363429643725,0.0,0.0,0.00044769997667088823,0.0004459199795056214,0.0005641363429643725,0.0,0.0,0.0005145112495809871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4376762838900776e-05,0.0,0.0,0.00017372282112758486,8.359927515833599e-05,0.00020809958396648563,5.3351898162337796e-05,5.313977792012394e-05,6.722748779956768e-05,0.0,0.0,3.4376762838900776e-05,0.0,0.0,0.0,0.0,0.0,0.0001015240758114901,4.704955894303419e-05,5.95227111143052e-05,0.0,0.0 +96374,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,121243.0,,12811.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.01080261865836619,0.00377098537383023,0.0,0.014573634721802715,0.00831068400620532,0.0022884625624071016,0.003974488153190296,0.0,0.0,0.00453969863237509,0.0022884625624071016,0.003974488153190296,0.0,0.0,0.00377098537383023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025195575234348314,0.0,0.0,0.0012873284901889917,0.0005888759724315487,0.0015392842425324747,0.0005409876596729118,0.00027271193665954373,0.00047363255108130644,0.0,0.0,0.00025195575234348314,0.0,0.0,0.0,0.0,0.0,0.0008777841066841364,0.00024171007639355784,0.0004197900594547808,0.0,0.0 +96375,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,130854.0,,10050.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00673572884275522,0.0017091359194474098,0.0,0.008444882492564051,0.0047643431475438095,0.001203111404519103,0.0010997079367173548,0.0,0.001377737734145203,0.00341820091744914,0.001203111404519103,0.0007366965170031941,0.0,0.001377737734145203,0.0013461422300946688,0.0003630114197141611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011419491882753754,0.0,0.0,0.000802684860693121,0.0003146895323752593,0.0009168797795206585,0.0004073409413139985,0.00014337265241510199,8.779081743467768e-05,0.0,0.00016418256242506927,8.994170735448705e-05,2.4254396116799493e-05,0.0,0.0,0.0,0.0,0.0005172753911646683,0.00013062449599335243,0.00011939775022830244,0.0,0.0001495840671593293 +96376,35.0,Eastern Counties in South Carolina and Georgia,G1302450010201,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,20767.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004929755130231419,0.0,0.0,0.004929755130231419,0.002913604793688322,0.0009528681965505607,0.0009576652068274407,0.0,0.00010553422609135627,0.002913604793688322,0.0009528681965505607,0.0009576652068274407,0.0,0.00010553422609135627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005874671452434217,0.0002050082386353589,0.0005874671452434217,0.0003472073247652925,0.00011355102726867648,0.00011412267552677763,0.0,1.2576261678225085e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003472073247652925,0.00011355102726867648,0.00011412267552677763,0.0,1.2576261678225085e-05 +96377,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,142152.0,,8324.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.03473215278097177,0.007362256592399151,0.0,0.042094317156118145,0.03160810890877493,0.006153472843048381,0.0012746268678308166,0.000642938686334572,0.0024152620673822114,0.02424585231637579,0.006153472843048381,0.0012746268678308166,0.000642938686334572,0.0024152620673822114,0.007362256592399151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004919015153189162,0.0,0.0,0.004138958793276522,0.0016423832279461401,0.004630860308595438,0.0028893280608948114,0.0007332966284450042,0.0001518946469003544,7.661767314348654e-05,0.00028782178389286523,0.0004919015153189162,0.0,0.0,0.0,0.0,0.0,0.0034772564769858334,0.0006769529730867954,0.00014022365414826887,7.073066970928452e-05,0.00026570667962648757 +96378,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,204734.0,,35163.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01011660734941515,0.005979830344334108,0.0,0.016096437693749258,0.006100857791387389,0.002717887102079894,0.003186908352724551,0.0,0.004090784447557422,0.005306590790853284,0.002717887102079894,0.0015430024329415155,0.0,0.0005491092931790354,0.0007942670005341053,0.0016439059197830355,0.0035416751543783866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003995375154785291,0.0,0.0,0.0012055758596825272,0.0007124702768348237,0.0016051133751610565,0.0006323758087770576,0.0003238851688554904,0.0001838765131764493,0.0,6.543625598182882e-05,5.306830557837803e-05,0.00010983624100521186,0.00023663415353466008,0.0,0.0,0.0,0.0006083686730707004,0.00027102375213245236,0.0003177938696558378,0.0,0.00040792708030206576 +96379,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,115537.0,,6758.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005530720289564171,0.0011492820272478227,0.0,0.006680002316811995,0.0034915868833667388,0.0012801498248892324,0.001144016109906067,0.0,0.000764267229011376,0.0034915868833667388,0.0012801498248892324,0.0005999954304545869,0.0,0.00015900588121503355,0.0,0.00054402067945148,0.0006052613477963425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.678816270261815e-05,0.0,0.0,0.0006590861160813731,0.0002614440582598237,0.0007358742787839913,0.00041608620892672057,0.00015255318148714065,7.150039004341823e-05,0.0,1.8948448519780576e-05,0.0,3.634821345579191e-05,4.043994924682622e-05,0.0,0.0,0.0,0.0003846359413892186,0.00014102230574904897,0.00012602570925397,0.0,8.419227558223231e-05 +96380,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,14732.0,,1213.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003537381543830178,0.0009625449241780598,0.0,0.004500009175081978,0.0024100841287634177,0.000759747179369278,0.0012255534186690574,0.0,0.00010454174120648458,0.001552080945791843,0.000759747179369278,0.0012255534186690574,0.0,0.0,0.0008580031829715752,0.0,0.00010454174120648458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.431427209507372e-05,0.0,0.0,0.00042154441067022194,0.000177565842812337,0.0004858586827652956,0.0001849591398325318,9.05379227593327e-05,0.0001460473480783575,0.0,0.0,5.732911657624117e-05,0.0,6.985155518832546e-06,0.0,0.0,0.0,0.00026021286948447336,8.20286691518316e-05,0.00013232101235487054,0.0,1.128720202568203e-05 +96381,50.0,the Greater Atlanta and Macon Area,G1302550160900,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,95313.0,,10624.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004906274690711331,0.001806777019787641,0.0,0.006713069440860393,0.0035503807618356333,0.0015681795461579902,0.0008009513467894652,0.0,0.0007935755164387233,0.002590919983950896,0.0015681795461579902,0.0005881692793874117,0.0,0.00015902361157645357,0.0009594607778847373,0.00021278206740205368,0.0006345519048622698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012071885803350859,0.0,0.0,0.0005846713645368621,0.00025045495449150076,0.0007053902225703708,0.00030875497560100293,0.00018687695510135775,7.009100729911291e-05,0.0,1.895053942862399e-05,6.410586816507151e-05,1.4216922124570782e-05,4.2397252388656253e-05,0.0,0.0,0.0,0.000373063901373828,0.0001647798415970076,8.416168695365784e-05,0.0,8.338665570177131e-05 +96382,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,73671.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.0062240056052056125,0.0,0.0,0.0062240056052056125,0.0026683385091600662,0.0012993672410384384,0.0022563305446134064,0.0,0.0,0.0026683385091600662,0.0012993672410384384,0.0022563305446134064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007417026480175425,0.00023742777860311852,0.0007417026480175425,0.0003179807126773662,0.0001548430680427738,0.0002688825245181221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003179807126773662,0.0001548430680427738,0.0002688825245181221,0.0,0.0 +96383,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,6814.0,,723.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005094167749355686,0.00021274035085567568,0.0,0.0007221571257912441,0.0003085839913234015,0.00021482724408391948,0.00019871520077762553,0.0,0.0,9.58436404677258e-05,0.00021482724408391948,0.00019871520077762553,0.0,0.0,0.00021274035085567568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4213075233511704e-05,0.0,0.0,6.070671151545853e-05,3.346084665544236e-05,7.491978674897024e-05,1.1421595280605877e-05,2.5600757913621883e-05,2.368070107010024e-05,0.0,0.0,1.4213075233511704e-05,0.0,0.0,0.0,0.0,0.0,3.201387343338132e-05,2.2287132176396742e-05,2.061559726316699e-05,0.0,0.0 +96384,50.0,the Greater Atlanta and Macon Area,G1300890020300,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,77094.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006577120215266981,0.0,0.0,0.006577120215266981,0.0018243129567606443,0.002523391498616016,0.002229415759890321,0.0,0.0,0.0018243129567606443,0.002523391498616016,0.002229415759890321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000783783657741649,0.0002407176038044141,0.000783783657741649,0.00021740011362363383,0.00030070805367196087,0.00026567549044605437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021740011362363383,0.00030070805367196087,0.00026567549044605437,0.0,0.0 +96386,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970300,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,17397.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003839262362978651,0.0,0.0,0.003839262362978651,0.0024836107173176625,0.0005495885049976979,0.0007367546128697506,0.0,6.914311364606101e-05,0.0024836107173176625,0.0005495885049976979,0.0007367546128697506,0.0,6.914311364606101e-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.0004575145263101046,0.00010868883212268295,0.0004575145263101046,0.0002959651811841045,6.549297775378382e-05,8.779705731086626e-05,0.0,8.239598104163022e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002959651811841045,6.549297775378382e-05,8.779705731086626e-05,0.0,8.239598104163022e-06 +96387,35.0,Eastern Counties in South Carolina and Georgia,G1300730030201,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,NaturalGas,48672.0,,7484.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0023250000233729444,0.0012727739945384902,0.0,0.0035977562875500143,0.0014031276116987187,0.0005341803288633508,0.000992545632294556,0.0,0.000667920445054809,0.0012013206380156777,0.0005341803288633508,0.00047694672219942034,0.0,0.00011255233429449519,0.000201806973683041,0.0005155989100951355,0.0005553681107603138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.503877927072647e-05,0.0,0.0,0.0002770655968017896,0.00016044145099386353,0.000362104376072516,0.0001431589746993865,6.365720005524486e-05,5.683678576361149e-05,0.0,1.3412636283546682e-05,1.3483476849751466e-05,3.4449086873200895e-05,3.7106215547774115e-05,0.0,0.0,0.0,0.0001412209743451726,5.376379588651781e-05,9.989701585658748e-05,0.0,6.72243744968472e-05 +96388,50.0,the Greater Atlanta and Macon Area,G1301210011201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3465.0,,271.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0009313643573783411,0.00021495568464845996,0.0,0.0011463200420268008,0.0008221910200424551,0.00017169988508280223,0.0001246395601251363,0.0,2.7706869702667985e-05,0.000607235335393995,0.00017169988508280223,0.0001246395601251363,0.0,2.7706869702667985e-05,0.00021495568464845996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.436248935254982e-05,0.0,0.0,0.00011098881890481676,5.097192539147341e-05,0.00012535130825736657,7.236301468778655e-05,2.04611302767427e-05,1.4853045918618137e-05,0.0,3.301771985890561e-06,1.436248935254982e-05,0.0,0.0,0.0,0.0,0.0,8.990745709859172e-05,1.8775563920800365e-05,1.3629467643856527e-05,0.0,3.0297754881831025e-06 +96389,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,64500.0,,562.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005729012945229964,0.00016544766755091569,0.0,0.0058944606127808805,0.002131730743044733,0.0013988015654429952,0.00236395899389945,0.0,0.0,0.0019662830754938175,0.0013988015654429952,0.00236395899389945,0.0,0.0,0.00016544766755091569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1054564774173173e-05,0.0,0.0,0.0006827154249897658,0.0002322798372041026,0.000693769989763939,0.0002343181623727437,0.00016669248513793172,0.00028170843470029186,0.0,0.0,1.1054564774173173e-05,0.0,0.0,0.0,0.0,0.0,0.0002509018064477134,0.00016463704000921854,0.00027823475543188933,0.0,0.0 +96390,50.0,the Greater Atlanta and Macon Area,G1300630040522,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,57359.0,,4282.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004831434029841052,0.0012602993722214625,0.0,0.006091733402062514,0.0022473384899681795,0.0014804359181948845,0.00236395899389945,0.0,0.0,0.0009870391177467168,0.0014804359181948845,0.00236395899389945,0.0,0.0,0.0012602993722214625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.420540671795875e-05,0.0,0.0,0.0005757523204554503,0.0002524301066044602,0.0006599577271734089,0.00011762347553810406,0.0001764205844313974,0.0002817082604859487,0.0,0.0,8.420540671795875e-05,0.0,0.0,0.0,0.0,0.0,0.00024346902665283454,0.00016038540417198454,0.00025610329634858986,0.0,0.0 +96391,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,NaturalGas,292456.0,,11049.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.026057470571159015,0.0032523617170053492,0.0,0.02930980159855807,0.007137696563900819,0.011517042003370411,0.01065509372089313,0.0,0.0,0.00388533484689547,0.011517042003370411,0.01065509372089313,0.0,0.0,0.0032523617170053492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002173029856743996,0.0,0.0,0.0031052180835967626,0.0010080374967593741,0.003322521069271162,0.00046300779634236914,0.0013724634937510966,0.0012697467935032963,0.0,0.0,0.0002173029856743996,0.0,0.0,0.0,0.0,0.0,0.0008091200187718616,0.0013055569340244754,0.0012078475954087633,0.0,0.0 +96392,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2004,gen2_t8_halogen,_1000,NaturalGas,9080.0,,6723.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.0018950533119940164,0.005213984153041736,0.0,0.007109118325818823,0.0012429919573294084,0.00023845844926908828,0.005016198677656118,0.0004172416406336032,0.00019414674014753508,0.0010447213172453786,0.00023845844926908828,0.00019463190484594629,0.0004172416406336032,0.0,0.00019827064008403,0.004821566772810172,0.00019414674014753508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034837062941285346,0.0,0.0,0.00022583184989466266,0.0004067781394337013,0.0005742024793075162,0.0001244985279330535,2.8416885361809186e-05,2.3194114298363758e-05,4.972232230143622e-05,0.0,1.3247387343873651e-05,0.00032215139173756037,1.2971850331419506e-05,0.0,0.0,0.0,0.00010039628417292406,1.9260255140902487e-05,0.00040515765604133124,3.370054816109083e-05,1.5681204677282767e-05 +96393,50.0,the Greater Atlanta and Macon Area,G1301350050103,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,18334.0,,2814.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002102729065093404,0.0008283738531875936,0.0,0.0029311029182809973,0.0012048125640352159,0.0006788234016988878,0.001047436262940596,0.0,0.0,0.0003764387108476224,0.0006788234016988878,0.001047436262940596,0.0,0.0,0.0008283738531875936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.534717140577802e-05,0.0,0.0,0.0002505771939008284,0.00012585169980106907,0.00030592436530660637,4.4859300898878525e-05,8.089376133884672e-05,0.00012482047445611642,0.0,0.0,5.534717140577802e-05,0.0,0.0,0.0,0.0,0.0,0.0001257484057168693,7.084999200294034e-05,0.00010932276445862625,0.0,0.0 +96394,50.0,the Greater Atlanta and Macon Area,G1301530021105,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,97412.0,,4559.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.008862643383457141,0.0013703490349347043,0.0,0.010232992418391847,0.003165140242599825,0.001064364586135252,0.00437883050453694,0.0,0.0016246570851198288,0.003165140242599825,0.001064364586135252,0.0030084814696022355,0.0,0.0016246570851198288,0.0,0.0013703490349347043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.155904672074704e-05,0.0,0.0,0.0010561451010311482,0.0004916645183332619,0.0011477041477518954,0.0003771840089535868,0.00012683839287227347,0.0003585152677579533,0.0,0.00019360743144733464,0.0,9.155904672074704e-05,0.0,0.0,0.0,0.0,0.0003549933818107083,0.00011937619029523659,0.0004911175271983015,0.0,0.00018221704844764895 +96395,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,63863.0,,4758.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.005323327039580631,0.001400642941820857,0.0,0.00672393929179519,0.0022520646893380257,0.002377002076575974,0.002094872525881192,0.0,0.0,0.0008514217475171683,0.002377002076575974,0.002094872525881192,0.0,0.0,0.001400642941820857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.358246309186538e-05,0.0,0.0,0.0006343692852871587,0.0002569726908095489,0.0007279517483790241,0.00010146207464513767,0.00028326215865226716,0.00024964139477623535,0.0,0.0,9.358246309186538e-05,0.0,0.0,0.0,0.0,0.0,0.00024381457906182046,0.00025734063656039874,0.000226796532756805,0.0,0.0 +96396,35.0,Eastern Counties in South Carolina and Georgia,G1302450010101,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,29647.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0071012293512569356,0.0,0.0,0.0071012293512569356,0.003520013058344924,0.0025412575477139596,0.000910935710164732,0.0,0.0001290230350333196,0.003520013058344924,0.0025412575477139596,0.000910935710164732,0.0,0.0001290230350333196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008462394143789703,0.0002875478601428678,0.0008462394143789703,0.00041947297316525714,0.00030283662061737993,0.00010855440146715559,0.0,1.5375419129177658e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00041947297316525714,0.00030283662061737993,0.00010855440146715559,0.0,1.5375419129177658e-05 +96397,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,18445.0,,2073.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0021320069495014125,0.0006101400628046289,0.0,0.002742147012306041,0.0008698355112957899,0.0007845184057881763,0.0010877930952220751,0.0,0.0,0.00025969544849116093,0.0007845184057881763,0.0010877930952220751,0.0,0.0,0.0006101400628046289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0765152994790875e-05,0.0,0.0,0.0002540678808368113,0.00012220308125364353,0.0002948330338316021,3.094749399224265e-05,9.348981197396585e-05,0.00012963057487060277,0.0,0.0,4.0765152994790875e-05,0.0,0.0,0.0,0.0,0.0,9.352388532740651e-05,8.43506714400202e-05,0.00011695847706417541,0.0,0.0 +96398,50.0,the Greater Atlanta and Macon Area,G1300890023204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,263928.0,,3739.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01215465920356596,0.0006358107605230935,0.0,0.012790469964089052,0.0068295933761129786,0.003593731495507663,0.0013443160028684036,0.0,0.001022811359238586,0.0068295933761129786,0.003593731495507663,0.0007085052423453101,0.0,0.001022811359238586,0.0,0.0006358107605230935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.248070168253576e-05,0.0,0.0,0.0014484478091832652,0.00039412811275980414,0.001490928510865801,0.000813869759535599,0.0004282582032356631,8.443123323184943e-05,0.0,0.00012188650028642885,0.0,4.248070168253576e-05,0.0,0.0,0.0,0.0,0.0007960954922419273,0.00041890538518850806,0.0001567009704816895,0.0,0.00011922459620386732 +96399,50.0,the Greater Atlanta and Macon Area,G1301210009601,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,67691.0,,4366.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005425879056361111,0.0012718944764558574,0.0,0.006697773532816968,0.00477968072832294,0.0015444064106113669,0.00037365602028322295,0.0,0.0,0.0035077862518670825,0.0015444064106113669,0.00037365602028322295,0.0,0.0,0.0012718944764558574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.498028980106076e-05,0.0,0.0,0.0006465907352923082,0.00023892177032015352,0.0007315710250933689,0.0004180156004737966,0.00018404370356479578,4.452781169496958e-05,0.0,0.0,8.498028980106076e-05,0.0,0.0,0.0,0.0,0.0,0.0005220654166501194,0.00016868933764867616,4.081295320774115e-05,0.0,0.0 +96400,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5973.0,,557.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014343060727870693,0.0004421520162103374,0.0,0.0018764580889974068,0.0012396136212047399,0.00030328683940204033,0.000280873222418688,0.0,5.2767113045678136e-05,0.0007974616049944022,0.00030328683940204033,0.000280873222418688,0.0,5.2767113045678136e-05,0.0004421520162103374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9541678884948065e-05,0.0,0.0,0.0001709280009368759,7.308884214526309e-05,0.00020046967982182396,9.503447036289686e-05,3.614306189802352e-05,3.3472003873926334e-05,0.0,6.2883211047011196e-06,2.954167888494806e-05,0.0,0.0,0.0,0.0,0.0,0.0001324329848893467,3.2401371469791454e-05,3.0006833245544527e-05,0.0,5.6373261515481175e-06 +96401,50.0,the Greater Atlanta and Macon Area,G1300630040417,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,30239.0,,3827.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002605025851367905,0.0011264619991571804,0.0,0.0037314878505250865,0.0015458968484278843,0.0009228978405845181,0.0012626931615126835,0.0,0.0,0.00041943484927070394,0.0009228978405845181,0.0012626931615126835,0.0,0.0,0.0011264619991571804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.526411024980002e-05,0.0,0.0,0.00031043613025765723,0.00016595309284379837,0.0003857002405074572,4.998327806782751e-05,0.00010998003497883287,0.00015047281721099692,0.0,0.0,7.526411024980002e-05,0.0,0.0,0.0,0.0,0.0,0.00015978955583479973,9.539409836941353e-05,0.00013051658630324392,0.0,0.0 +96402,50.0,the Greater Atlanta and Macon Area,G1300670031311,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,55106.0,,6922.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.00537090284137878,0.0020165032666723437,0.0,0.007387406108051122,0.004653387301860768,0.0021280047502083305,0.0006059836823825868,0.0,0.0,0.002636884035188424,0.0021280047502083305,0.0006059836823825868,0.0,0.0,0.0020165032666723437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001347303693555435,0.0,0.0,0.0006400394961196491,0.0003121923767066029,0.0007747698654751927,0.00031423207215840995,0.0002535899695616007,7.221383483997511e-05,0.0,0.0,0.0001347303693555435,0.0,0.0,0.0,0.0,0.0,0.0004880338512779767,0.00022317900626210843,6.355382243952164e-05,0.0,0.0 +96403,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10013.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002404211926527927,0.0,0.0,0.0024042119265279267,0.0012619445311143525,0.0006432129124705939,0.0004147759748026268,0.0,8.411309399287566e-05,0.0012619445311143525,0.0006432129124705939,0.0004147759748026268,0.0,8.411309399287566e-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.00028650061725461073,7.642862446511825e-05,0.00028650061725461073,0.00015038103884106266,7.664918987199794e-05,4.942724536557409e-05,0.0,1.0023431413118413e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00015038103884106269,7.664918987199796e-05,4.94272453655741e-05,0.0,1.0023431413118415e-05 +96404,81.0,the Columbus-Albany Area,G1302150003301,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,70016.0,,2406.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006238368340952939,0.000708131975713194,0.0,0.0069465310062724285,0.0016637142470047653,0.002838113411198958,0.0024446726584624085,0.0,0.0,0.0009555822712915714,0.002838113411198958,0.0024446726584624085,0.0,0.0,0.000708131975713194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.731373299431724e-05,0.0,0.0,0.000743415446513671,0.000242084434579953,0.0007907291795079882,0.00011387506829778754,0.0003382130123660853,0.000291327365849798,0.0,0.0,4.731373299431724e-05,0.0,0.0,0.0,0.0,0.0,0.00018938192319043043,0.00032306471920467484,0.000278279043690456,0.0,0.0 +96405,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,20460.0,,1247.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0022507021948014287,0.00046327615461902184,0.0,0.0027139783494204506,0.0014702314431841374,0.00035683423451711037,0.0008190641816942859,0.0,6.780974160114487e-05,0.0011921340057718993,0.00035683423451711037,0.0007016952060886472,0.0,0.0,0.00027809743741223815,0.00011736897560563876,6.780974160114487e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095306937136266e-05,0.0,0.0,0.0002682126182559765,0.00010036840606496056,0.00029916568762733913,0.0001420647226179457,4.252337094808105e-05,8.361990710161795e-05,0.0,0.0,1.8580643934281512e-05,7.841823948298551e-06,4.53060148878259e-06,0.0,0.0,0.0,0.00016206569988498352,3.933434441770057e-05,9.028660791631608e-05,0.0,7.474764114559236e-06 +96406,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,17415.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0041046693626080885,0.0,0.0,0.0041046693626080885,0.0023387906312001354,0.0007053259248488138,0.000986529975562459,0.0,7.402283099668014e-05,0.0023387906312001354,0.0007053259248488138,0.000986529975562459,0.0,7.402283099668014e-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.0004891475281329347,0.00016229121938401633,0.0004891475281329347,0.0002787103064849811,8.405267323374775e-05,0.0001175633544010487,0.0,8.821194013157156e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002787103064849811,8.405267323374775e-05,0.0001175633544010487,0.0,8.821194013157156e-06 +96407,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,71037.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006476918650704981,0.0,0.0,0.006476918650704981,0.0028494378759228106,0.0014787479898485108,0.0021487020953273625,0.0,0.0,0.0028494378759228106,0.0014787479898485108,0.0021487020953273625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007718410362084223,0.0002426623643702809,0.0007718410362084223,0.0003395616343775452,0.00017621934786097164,0.0002560563967528239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003395616343775452,0.00017621934786097164,0.0002560563967528239,0.0,0.0 +96408,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,151272.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01738053680339691,0.0,0.0,0.01738053680339691,0.005744204300347328,0.006208783560481953,0.00542754894256763,0.0,0.0,0.005744204300347328,0.006208783560481953,0.00542754894256763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002071204165283503,0.000687116695820696,0.002071204165283503,0.0006845254555540266,0.0007398884463281149,0.0006467902634013617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006845254555540266,0.0007398884463281149,0.0006467902634013617,0.0,0.0 +96409,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,32062.0,,2434.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0028567113126153655,0.0007164488590198714,0.0,0.0035731601716352374,0.0011417761126997343,0.0010610317585304783,0.0013703523004050247,0.0,0.0,0.00042532725367986284,0.0010610317585304783,0.0013703523004050247,0.0,0.0,0.0007164488590198714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.786895975056712e-05,0.0,0.0,0.00034042716891365224,0.00016072353367848038,0.0003882961286642194,5.06851890117991e-05,0.0001264405108380785,0.00016330146906377467,0.0,0.0,4.786895975056712e-05,0.0,0.0,0.0,0.0,0.0,0.0001240770698951603,0.00011530256256008432,0.00014891649620897478,0.0,0.0 +96411,50.0,the Greater Atlanta and Macon Area,G1301210006500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,25605.0,,1720.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.004160037512866207,0.0005061636766680119,0.0,0.00466620118953422,0.001901221110142687,0.0012197584023021972,0.001545252366695633,0.0,0.0,0.0013950574334746753,0.0012197584023021972,0.001545252366695633,0.0,0.0,0.0005061636766680119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3818832292766194e-05,0.0,0.0,0.0004957442500388092,0.00020084846016724155,0.0005295630823315755,0.000166246505946162,0.00014535643308687793,0.00018414496823141,0.0,0.0,3.3818832292766194e-05,0.0,0.0,0.0,0.0,0.0,0.0002157679170669282,0.00013842931176473065,0.00017536933643643108,0.0,0.0 +96412,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,197939.0,,14313.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010188947224008964,0.0024340772068291087,0.0,0.012623024430838074,0.005246396213832205,0.004524061289579253,0.0015609278283371885,0.0,0.0012916745598122665,0.004359275310541283,0.004524061289579253,0.0010736265750684573,0.0,0.00023200177918139095,0.0008871209032909218,0.0004873012532687311,0.0010596727806308757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001626311786076662,0.0,0.0,0.0012141966085352008,0.0005076389603112023,0.0013768277871428671,0.0005194861825624275,0.0005391234004695521,0.00012794194705510205,0.0,2.7647191340082418e-05,5.927236723014481e-05,3.255869490652955e-05,7.080130111278e-05,0.0,0.0,0.0,0.0005722387791564888,0.0004934517340402992,0.000170254665952233,0.0,0.00014088647579183893 +96413,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,117901.0,,2725.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006068978601554134,0.0004633652653516599,0.0,0.006532343866905794,0.003265755269959526,0.0016391187221996215,0.0010820662271044026,0.0,0.0005454213780036643,0.003265755269959526,0.0016391187221996215,0.0006187009617527425,0.0,0.0005454213780036643,0.0,0.0004633652653516599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095943687274152e-05,0.0,0.0,0.0007232289279848806,0.00021169185357566527,0.0007541883648576221,0.0003891740007699111,0.0001953307391778922,7.37294465327436e-05,0.0,6.499685439863187e-05,0.0,3.095943687274152e-05,0.0,0.0,0.0,0.0,0.0003770460767618156,0.0001892435998610107,0.00012492939366250526,0.0,6.297134162195e-05 +96414,50.0,the Greater Atlanta and Macon Area,G1300890023204,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,5970.0,,1454.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011392072336852204,0.0011532674362209026,0.0,0.0022925573769798624,0.0015169304394526371,0.000352166719981971,0.00038880595364848417,0.0,3.45715568230305e-05,0.00039823456005476523,0.000352166719981971,0.00038880595364848417,0.0,0.0,0.0011186958793978719,0.0,3.45715568230305e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.705717181001542e-05,0.0,0.0,0.00013575788505514226,0.00012102922714996372,0.0002128150568651577,4.7457108794867866e-05,4.196726256459966e-05,4.633351369567473e-05,0.0,0.0,7.474722503602038e-05,0.0,2.309946773995012e-06,0.0,0.0,0.0,0.00014081463826125966,3.269116895024501e-05,3.609234035582475e-05,0.0,3.209231710005264e-06 +96415,35.0,Eastern Counties in South Carolina and Georgia,G1300510001500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,91115.0,,,8799.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00822307494938199,0.0,0.0008292903854489378,0.009052365334830927,0.006397743117570855,0.002189177179475963,0.0004654146641846712,0.0,0.0,0.0055684527321219176,0.002189177179475963,0.0004654146641846712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008292903854489378,0.0,0.0,0.0,0.0,6.688237314025166e-05,0.000979927768372035,0.00034936534046868745,0.0010468101415122867,0.0006635816276347442,0.0002608799653730619,5.546255580175411e-05,0.0,0.0,0.0,0.0,0.0,6.688237314025166e-05,0.0,0.0,0.0007398312077059681,0.0002531551465587754,5.382027486257531e-05,0.0,0.0 +96416,50.0,the Greater Atlanta and Macon Area,G1300630040204,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,11376.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,5759.960461090961,0.0,0.0,0.0023861898041528514,0.0,0.0,0.0023861898041528514,0.0022251378246010327,5.25193235013051e-05,0.00010471108365436922,0.0,3.87616628751836e-06,0.0022251378246010327,5.25193235013051e-05,0.00010471108365436922,0.0,3.87616628751836e-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.0002843602081663339,0.00010489366725337719,0.0002843602081663339,0.00026516778082830237,6.258683084469965e-06,1.2478330723506647e-05,0.0,4.6191943762720123e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.00026516778082830237,6.258683084469965e-06,1.2478330723506647e-05,0.0,4.6191943762720123e-07 +96417,81.0,the Columbus-Albany Area,G1302150010302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,29546.0,,7304.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0069454561008881225,0.005664378714733437,0.0,0.012609915676404628,0.0032838372611959806,0.000686265465902595,0.007537680476082019,0.0004305028090568417,0.00067171052495026,0.0032838372611959806,0.000686265465902595,0.0018733017613485824,0.0004305028090568417,0.00067171052495026,0.0,0.005664378714733437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003784626762432936,0.0,0.0,0.0008276804932237497,0.0006244031265148514,0.0012061431694670433,0.00039133038990278373,8.178131587759288e-05,0.00022323880581314888,5.130243027363079e-05,8.004682349418689e-05,0.0,0.0003784626762432936,0.0,0.0,0.0,0.0,0.00031410026711314236,6.564154950602642e-05,0.0007209819679336362,4.117775533994163e-05,6.424936393856032e-05 +96418,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,12808.0,,1238.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003075462536996147,0.0009823946218754935,0.0,0.0040578571588716405,0.003039484959919548,0.0004074150452398283,0.0005255207465395594,0.0,8.543640717270457e-05,0.0020570903380440543,0.0004074150452398283,0.0005255207465395594,0.0,8.543640717270457e-05,0.0009823946218754935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.563887024219845e-05,0.0,0.0,0.00036649757125360803,0.0001794083776953512,0.0004321364414958065,0.0002451399110453069,4.8550948930893445e-05,6.262540184874076e-05,0.0,1.0181309428666857e-05,6.563887024219845e-05,0.0,0.0,0.0,0.0,0.0,0.00032368616319774346,4.338715754862814e-05,5.596467703288332e-05,0.0,9.098443716551537e-06 +96419,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,487064.0,,13616.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.024042866535711367,0.002315532010374636,0.0,0.026358398546086,0.014511095157736653,0.0030151366112870794,0.005180066931759787,0.0,0.003652099845302477,0.012818147058265754,0.0030151366112870794,0.004557500751217473,0.0,0.003652099845302477,0.0016929480994709017,0.0006225661805423139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015470975381054903,0.0,0.0,0.0028651425522529445,0.0010135154386180301,0.003019852306063494,0.001527514139094999,0.00035930807971765654,0.0005431086727883627,0.0,0.0004352137735452819,0.00011311248668110793,4.159608249461938e-05,0.0,0.0,0.0,0.0,0.0016625199781761754,0.00034544083673261746,0.0005934744875371382,0.0,0.0004184170036175623 +96420,50.0,the Greater Atlanta and Macon Area,G1300670030336,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,86954.0,,1710.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.010786398725434685,0.0006353966530146134,0.0,0.0114217953784493,0.0056977619735659145,0.001149936972284101,0.004373379597459897,0.0,0.00020075558356316093,0.0056977619735659145,0.001149936972284101,0.0037379829444452828,0.0,0.00020075558356316093,0.0,0.0006353966530146134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.245402997614954e-05,0.0,0.0,0.0012853949239006934,0.00043877514690376755,0.0013278489538768431,0.0006789916175772443,0.0001370358341653227,0.0004454484230299677,0.0,2.3923666705210663e-05,0.0,4.245402997614954e-05,0.0,0.0,0.0,0.0,0.0006623973749620733,0.0001336867414515927,0.000508430358886527,0.0,2.333898330224422e-05 +96421,50.0,the Greater Atlanta and Macon Area,G1300670030336,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,83299.0,,5191.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.010233071233969344,0.0019291290259169137,0.0,0.012162200259886255,0.006243146038157979,0.0013175626535221311,0.00436822605709821,0.0,0.00023326551110793839,0.004957977066909309,0.0013175626535221311,0.0037242660024299655,0.0,0.00023326551110793839,0.0012851689712486698,0.0006439600546682438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001288927944931162,0.0,0.0,0.0012194559898308472,0.0004211606762095259,0.0013483487843239635,0.0005908328685933826,0.00015701148101866143,0.0004438138248574428,0.0,2.779781536136052e-05,8.586725816400563e-05,4.302553632911056e-05,0.0,0.0,0.0,0.0,0.0006921394312731048,0.0001460701159482335,0.0004842785160483549,0.0,2.5860721054270674e-05 +96422,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7109.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014322383959435865,0.0,0.0,0.001432238395943587,0.0007412207948516731,0.00023116627110136427,0.0004107233281894006,0.0,4.912800180114861e-05,0.0007412207948516731,0.00023116627110136427,0.0004107233281894006,0.0,4.912800180114861e-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.00017067616303974894,5.89285856796873e-05,0.00017067616303974894,8.832937420813249e-05,2.7547489501420476e-05,4.894484181182614e-05,0.0,5.854457518369861e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.832937420813246e-05,2.7547489501420465e-05,4.894484181182612e-05,0.0,5.854457518369859e-06 +96423,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,34439.0,,4345.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.003254448610233594,0.0012790814112756566,0.0,0.00453353002150925,0.001895881118646887,0.0010923658465604327,0.001545252366695633,0.0,0.0,0.0006167997073712306,0.0010923658465604327,0.001545252366695633,0.0,0.0,0.0012790814112756566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.546035165580468e-05,0.0,0.0,0.0003878257017983788,0.00021245252806894845,0.0004732860534541835,7.350270599698066e-05,0.0001301749088096591,0.00018414442977679238,0.0,0.0,8.546035165580468e-05,0.0,0.0,0.0,0.0,0.0,0.00019792393305117478,0.00011403950519657335,0.00016131941130956526,0.0,0.0 +96424,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,34837.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0030119393412691466,0.0,0.0,0.0030119393412691466,0.0012136818602552519,0.0006835802906750318,0.0011147078799451605,0.0,0.0,0.0012136818602552519,0.0006835802906750318,0.0011147078799451605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003589281310775774,0.00012685074648791032,0.0003589281310775774,0.00014463258135889785,8.146120103138269e-05,0.0001328380059199911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014463258135889785,8.146120103138269e-05,0.0001328380059199911,0.0,0.0 +96425,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,54629.0,,2407.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004691305287485741,0.000708438871776171,0.0,0.00539977484886821,0.0020286750450970474,0.0013300261577298433,0.0020410429564350213,0.0,0.0,0.001320236173320876,0.0013300261577298433,0.0020410429564350213,0.0,0.0,0.000708438871776171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.733448306295238e-05,0.0,0.0,0.0005590544753620142,0.00021317977810704491,0.0006063889584249665,0.0001573301876556033,0.00015849684261880882,0.00024322744508760208,0.0,0.0,4.733448306295238e-05,0.0,0.0,0.0,0.0,0.0,0.00022781804464253963,0.00014936051947291924,0.00022920694789944083,0.0,0.0 +96426,81.0,the Columbus-Albany Area,G1303210950200,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,13077.0,,593.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.000602371298884874,0.00010085029575726033,0.0,0.0007032215946421342,0.00034625622817221113,0.00019342051273135604,3.872310934139532e-05,0.0,0.00012483947475859178,0.0003204585523060344,0.00019342051273135604,3.872310934139532e-05,0.0,4.978685486750827e-05,2.5797675866176824e-05,0.0,7.505261989108352e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.737956042001132e-06,0.0,0.0,7.178362221848664e-05,2.3941256316110474e-05,7.852157826048778e-05,3.818853205324447e-05,2.304961249136018e-05,4.614570875527604e-06,0.0,5.93301969710692e-06,1.7235805276215975e-06,0.0,5.014375514379535e-06,0.0,0.0,0.0,3.8662899043141186e-05,2.1597294570209804e-05,4.323814404742709e-06,0.0,1.3939550010894419e-05 +96427,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,53070.0,,2258.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004728470400712259,0.0006646754931956467,0.0,0.005393145893907905,0.0014216960117410815,0.0016074908882673742,0.00236395899389945,0.0,0.0,0.0007570205185454347,0.0016074908882673742,0.00236395899389945,0.0,0.0,0.0006646754931956467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.440881820058566e-05,0.0,0.0,0.0005634842701169124,0.00020057501970785482,0.000607893088317498,9.02129268466703e-05,0.00019156212329435047,0.0002817092199758916,0.0,0.0,4.440881820058566e-05,0.0,0.0,0.0,0.0,0.0,0.00016024769146375217,0.00018118972112638693,0.0002664556757273589,0.0,0.0 +96428,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2004,gen1_t12_incandescent,200001_500000,Electricity,448354.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.03994780120874338,0.0,0.0,0.03994780120874338,0.007336718660741423,0.017309674502455515,0.015301438735152736,0.0,0.0,0.007336718660741423,0.017309674502455515,0.015301438735152736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004760502824992095,0.0015888659064663404,0.004760502824992095,0.0008743026863512929,0.0020627606995950913,0.0018234430962672113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008743026863512929,0.0020627606995950913,0.0018234430962672113,0.0,0.0 +96429,50.0,the Greater Atlanta and Macon Area,G1301210001500,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,10347.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002316211600069305,0.0,0.0,0.002316211600069305,0.0011505381027875055,0.00048515969455477733,0.0006194759823074126,0.0,6.103782041960887e-05,0.0011505381027875055,0.00048515969455477733,0.0006194759823074126,0.0,6.103782041960887e-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.0002760197674145453,9.697415123203843e-05,0.0002760197674145453,0.00013710805158020846,5.781581702030788e-05,7.38221052645936e-05,0.0,7.273793549435256e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013710805158020846,5.781581702030788e-05,7.38221052645936e-05,0.0,7.273793549435256e-06 +96430,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,114196.0,,1548.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.012351486310012883,0.0005753753445916573,0.0,0.012926861654604539,0.0066148984158273414,0.002107449272116039,0.004015189168110762,0.0,0.0001892860501266244,0.0066148984158273414,0.002107449272116039,0.0034398138235191052,0.0,0.0001892860501266244,0.0,0.0005753753445916573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8444402702945704e-05,0.0,0.0,0.0014719006215513687,0.0004721314641148416,0.0015103450242543142,0.0007882835187100063,0.00025114029321320937,0.000409915371946316,0.0,2.255682011374803e-05,0.0,3.8444402702945704e-05,0.0,0.0,0.0,0.0,0.0007728696396107762,0.00024622956499848223,0.0004691255421098904,0.0,2.2115750257733053e-05 +96431,50.0,the Greater Atlanta and Macon Area,G1300670030311,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,24623.0,,3379.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0023432128200422033,0.000994650140108547,0.0,0.0033378936497570483,0.0014206525651269594,0.0007487036352387571,0.0011685374493913313,0.0,0.0,0.00042600242501841237,0.0007487036352387571,0.0011685374493913313,0.0,0.0,0.000994650140108547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.645705727404817e-05,0.0,0.0,0.00027923773450116106,0.0001526738045533321,0.0003456947917752092,5.076617498704181e-05,8.92220736966985e-05,0.0001392531430593332,0.0,0.0,6.645705727404817e-05,0.0,0.0,0.0,0.0,0.0,0.00014713236676136375,7.754080100905641e-05,0.000121021624004789,0.0,0.0 +96432,35.0,Eastern Counties in South Carolina and Georgia,G1300510002700,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,45384.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.003750380190576406,0.0,0.0,0.003750380190576407,0.002478728702916051,0.0010065810853670954,0.0002650704022932602,0.0,0.0,0.002478728702916051,0.0010065810853670954,0.0002650704022932602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004469238713157633,0.0001452324973246126,0.0004469238713157633,0.0002953841934831894,0.00011995186957201375,3.1587808260560173e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029538419348318937,0.00011995186957201372,3.158780826056017e-05,0.0,0.0 +96433,50.0,the Greater Atlanta and Macon Area,G1301210003000,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,5588.0,,673.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009796652884420962,0.0005342049892821866,0.0,0.001513870277724283,0.0010980191109630452,0.00017227883459897735,0.00021487297757472068,0.0,2.8699354587539673e-05,0.0005925134762683984,0.00017227883459897735,0.00021487297757472068,0.0,0.0,0.0005055056346946468,0.0,2.8699354587539673e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.569010007633545e-05,0.0,0.0,0.00011674617459651048,6.172376321828996e-05,0.0001524362746728459,7.060950568251595e-05,2.0530374139681836e-05,2.560629477431273e-05,0.0,0.0,3.377270346285217e-05,0.0,1.9173966134832636e-06,0.0,0.0,0.0,0.00011056293610995967,1.7347288032317413e-05,2.1636223863639293e-05,0.0,2.8898266669294978e-06 +96434,50.0,the Greater Atlanta and Macon Area,G1301530021105,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,55935.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004983777235502848,0.0,0.0,0.004983777235502848,0.0010278562941226617,0.002049421218954294,0.0019064997224258922,0.0,0.0,0.0010278562941226617,0.002049421218954294,0.0019064997224258922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000593906848746054,0.00017330126276982668,0.000593906848746054,0.000122487596006003,0.000244225462011372,0.00022719379072867895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000122487596006003,0.000244225462011372,0.00022719379072867895,0.0,0.0 +96435,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,65360.0,,3424.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005763511987711159,0.0009974690055357697,0.0,0.00676098099324693,0.005053043123262707,0.001243343292984371,0.0004646249505992896,0.0,0.0,0.004055574117726937,0.001243343292984371,0.0004646249505992896,0.0,0.0,0.0009974690055357697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.66442706363635e-05,0.0,0.0,0.000686826710456685,0.00021550858445462654,0.0007534709810930484,0.00048329501807765825,0.00014816684440140606,5.536846754142685e-05,0.0,0.0,6.66442706363635e-05,0.0,0.0,0.0,0.0,0.0,0.0005631314987267527,0.000138563189533608,5.177967778907051e-05,0.0,0.0 +96436,50.0,the Greater Atlanta and Macon Area,G1300670031508,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,12741.0,,2637.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011351778473457283,0.0007762322120877964,0.0,0.0019114100594335246,0.0009920415235732424,0.0003929190294294887,0.0005264801960370913,0.0,0.0,0.000215809311485446,0.0003929190294294887,0.0005264801960370913,0.0,0.0,0.0007762322120877964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.186246880286721e-05,0.0,0.0,0.00013527672950705409,9.34038827483677e-05,0.0001871391983099213,2.5717536616118424e-05,4.682332498523381e-05,6.273952512080652e-05,0.0,0.0,5.186246880286721e-05,0.0,0.0,0.0,0.0,0.0,9.71271729451239e-05,3.8469271313733064e-05,5.154575875865741e-05,0.0,0.0 +96437,50.0,the Greater Atlanta and Macon Area,G1300670031110,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11906.0,,829.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.002889123499861487,0.0006575212362274939,0.0,0.0035466447360889804,0.001757608024034022,0.0008758679108992656,0.0008381534852741414,0.0,7.493260880781252e-05,0.0011750193966143406,0.0008758679108992656,0.0008381534852741414,0.0,0.0,0.0005825886274196814,0.0,7.493260880781252e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.39323472871627e-05,0.0,0.0,0.0003442918298303712,0.00015331178543032519,0.00038822417711753386,0.00014002502079468921,0.00010437565778952339,9.988129518782152e-05,0.0,0.0,3.892571752085208e-05,0.0,5.0066297663106165e-06,0.0,0.0,0.0,0.00019239195904866176,9.587458690533753e-05,9.174627608108505e-05,0.0,8.202301769238508e-06 +96438,50.0,the Greater Atlanta and Macon Area,G1300670031118,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,40244.0,,2978.0,,9.325022323477118,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.011131366017915175,0.0025243399382075637,0.0,0.013655705956122739,0.007990988498064575,0.0020196663957137723,0.003273660830197471,0.0,0.0003713018479888651,0.005466648559857011,0.0020196663957137723,0.003273660830197471,0.0,0.0003713018479888651,0.0025243399382075637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016866297356168985,0.0,0.0,0.0013265032291831895,0.0005762654514995179,0.001495166202744879,0.0006514498719913727,0.00024067971455392568,0.000390115791316041,0.0,4.424731875371063e-05,0.00016866297356168985,0.0,0.0,0.0,0.0,0.0,0.0008749350613742687,0.0002211337110943615,0.00035843383332125745,0.0,4.065391975438329e-05 +96439,35.0,Eastern Counties in South Carolina and Georgia,G1302450010400,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,25995.0,,4963.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00598491085881708,0.0038491349956280576,0.0,0.009834045854445137,0.003434966064751059,0.0004706906182419,0.004847199641042895,0.00042589374442193566,0.0006552957859873487,0.002770452149493898,0.0004706906182419,0.002317793485876279,0.00042589374442193566,0.0,0.0006645139152571609,0.002529406155166616,0.0006552957859873487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025717872619170643,0.0,0.0,0.0007132069932656544,0.0004477917414705737,0.0009703857194573608,0.0003301479160071318,5.6091034355189824e-05,0.00027620570499178166,5.075270193244886e-05,0.0,4.4399285152797004e-05,0.00016900146493850613,4.3783378787815395e-05,0.0,0.0,0.0,0.0003389492041618252,4.6445934967655e-05,0.0004783029671252497,4.202555222034683e-05,6.466206098228416e-05 +96440,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,1898.0,,202.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.00016909973070034236,5.9507146611245684e-05,0.0,0.00022860687731158803,0.00012192980582077314,7.445298487822694e-05,3.222408661258792e-05,0.0,0.0,6.242265920952747e-05,7.445298487822694e-05,3.222408661258792e-05,0.0,0.0,5.9507146611245684e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.976499168728589e-06,0.0,0.0,2.015075444997959e-05,1.2015883966147567e-05,2.4127253618708176e-05,7.438590662660342e-06,8.872183356742372e-06,3.839980430576872e-06,0.0,0.0,3.976499168728589e-06,0.0,0.0,0.0,0.0,0.0,1.2868516395103715e-05,7.857795311986311e-06,3.4009419116181477e-06,0.0,0.0 +96441,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,62881.0,,17602.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.02354887431991613,0.015569131002947805,0.0,0.039118005322863934,0.029747441399570595,0.004279526049444704,0.0019850685831953527,0.0006367601303987693,0.0024691169430017443,0.014178310396622791,0.004279526049444704,0.0019850685831953527,0.0006367601303987693,0.0024691169430017443,0.015569131002947805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001040239164390703,0.0,0.0,0.0028062724396402446,0.0017095758273011458,0.0038465116040309476,0.0016896010045396087,0.0005099825938228516,0.00023655666849032922,7.588143621321763e-05,0.00029423974722793655,0.001040239164390703,0.0,0.0,0.0,0.0,0.0,0.0029250949170150998,0.0004208099690430893,0.00019519372925682642,6.261324447265567e-05,0.00024279067643089868 +96443,50.0,the Greater Atlanta and Macon Area,G1300590140600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,248864.0,,4331.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01157783735548738,0.0007364660223047332,0.0,0.012314303377792114,0.005458061268464795,0.0044380158456077375,0.0014231983808262185,0.0,0.0009950456132547833,0.005458061268464795,0.0044380158456077375,0.0006867323585214852,0.0,0.0009950456132547833,0.0,0.0007364660223047332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.92067052301803e-05,0.0,0.0,0.001379708198195754,0.0003573438460949557,0.0014289149034259344,0.0006504264697401762,0.0005288696548328646,8.183654994681115e-05,0.0,0.00011857763656834112,0.0,4.9206705230180293e-05,0.0,0.0,0.0,0.0,0.0006333370919207889,0.0005149740743650861,0.0001651436800364797,0.0,0.00011546211448164641 +96444,50.0,the Greater Atlanta and Macon Area,G1300670030226,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,139447.0,,14537.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012296599864376636,0.004234930222406861,0.0,0.016531530086783496,0.010406693760160842,0.0045991400532649435,0.001525696273357712,0.0,0.0,0.006171763537753982,0.0045991400532649435,0.001525696273357712,0.0,0.0,0.004234930222406861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002829539463584748,0.0,0.0,0.0014653618441554314,0.0006378399841185219,0.0017483157905139061,0.0007354770342307869,0.0005480705580658556,0.00018181425185878915,0.0,0.0,0.0002829539463584748,0.0,0.0,0.0,0.0,0.0,0.0011005748973277126,0.0004863886848765696,0.0001613522083096241,0.0,0.0 +96445,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010401,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,97030.0,,2242.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.008645262094062875,0.0006598572250069074,0.0,0.009305119319069782,0.005343091146036353,0.0015173862041773186,0.0024446726584624085,0.0,0.0,0.004683233921029444,0.0015173862041773186,0.0024446726584624085,0.0,0.0,0.0006598572250069074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.408708568264715e-05,0.0,0.0,0.0010302408763058686,0.00039092327629832374,0.0010743279619885155,0.0005580928566711945,0.0001808242798977318,0.00029132739696405,0.0,0.0,4.408708568264715e-05,0.0,0.0,0.0,0.0,0.0,0.0006168896953181636,0.0001751907065761596,0.00028225110338053364,0.0,0.0 +96446,50.0,the Greater Atlanta and Macon Area,G1301350050308,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,77077.0,,18637.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003673021671778138,0.0031694262163643786,0.0,0.006842430157781097,0.0023943434668867703,0.0007707033502068552,0.002633987031840204,0.0,0.0010433963088472672,0.0016490122638720109,0.0007707033502068552,0.001110452535737907,0.0,0.00014283579159994538,0.0007453312030147596,0.001523534496102297,0.0009005605172473219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021176199376496572,0.0,0.0,0.000437706346787589,0.000310706338825218,0.0006494683405525546,0.0001965093588674441,9.18431139320473e-05,0.00013233031714282055,0.0,1.7021443955014564e-05,4.9798547368203e-05,0.0001017934100495979,6.017003634716481e-05,0.0,0.0,0.0,0.0002272657874897596,7.315345781760395e-05,0.00025001222477380155,0.0,9.903687047138946e-05 +96447,50.0,the Greater Atlanta and Macon Area,G1300670031002,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,15474.0,,,4308.0,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013817254120227684,0.0,0.0004060342772838664,0.0017877596893066344,0.0012291284484475032,0.00041548046670900713,0.00014315077415012433,0.0,0.0,0.0008230941711636367,0.00041548046670900713,0.00014315077415012433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004060342772838664,0.0,0.0,0.0,0.0,3.274563560316431e-05,0.00016465819654019073,7.124653696529642e-05,0.00019740383214335506,9.808692858021649e-05,4.9512199566359684e-05,1.7059068393614533e-05,0.0,0.0,0.0,0.0,0.0,3.274563560316431e-05,0.0,0.0,0.00013571995574755179,4.587721537723974e-05,1.5806661018563556e-05,0.0,0.0 +96448,85.0,Rural Climate Zone 3A,G1302370960102,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,48337.0,,4825.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004306764520575524,0.0014201922210324938,0.0,0.005726956741608019,0.0020974197632039012,0.001319407553950838,0.002310129424453279,0.0,0.0,0.0006772275421714072,0.001319407553950838,0.002310129424453279,0.0,0.0,0.0014201922210324938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.488832479550416e-05,0.0,0.0,0.0005132287866295393,0.0002398503302089203,0.0006081171114250435,8.070389455476647e-05,0.0001572312427923379,0.00027529364928243497,0.0,0.0,9.488832479550416e-05,0.0,0.0,0.0,0.0,0.0,0.0002227145943985646,0.00014010133945514667,0.0002453011775713321,0.0,0.0 +96449,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,14258.0,,1875.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001304246888439773,0.0005519218796578868,0.0,0.0018561994577039574,0.0008990213268849053,0.00046206271241821303,0.0004950847287945412,0.0,0.0,0.00034709944722701846,0.00046206271241821303,0.0004950847287945412,0.0,0.0,0.0005519218796578868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6877154784450224e-05,0.0,0.0,0.0001554250854518837,8.463289761480136e-05,0.00019230224023633396,4.1363304542820944e-05,5.506329913321946e-05,5.899848177584327e-05,0.0,0.0,3.6877154784450224e-05,0.0,0.0,0.0,0.0,0.0,9.313859804380018e-05,4.786969113632333e-05,5.129077161338788e-05,0.0,0.0 +96450,81.0,the Columbus-Albany Area,G1300950011400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,119265.0,,7420.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.007774426605826174,0.0012617634400966375,0.0,0.00903619004592281,0.004761080761042519,0.0022834755169271804,0.001111729121760151,0.0,0.0008798691854701201,0.004761080761042519,0.0022834755169271804,0.0005565205842526173,0.0,0.00017331428288101615,0.0,0.0005552085375075335,0.0007065549025891041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.430365404051861e-05,0.0,0.0,0.0009264625711642835,0.0003784500025274388,0.0010107662252048023,0.0005673682892691622,0.0002721171226978521,6.631942360947116e-05,0.0,2.0653509805740433e-05,0.0,3.709578751369794e-05,4.720786652682068e-05,0.0,0.0,0.0,0.0005325629058571553,0.00025542401353471786,0.00012435531370422846,0.0,9.842002555855212e-05 +96451,85.0,Rural Climate Zone 3A,G1302330010500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Propane,6134.0,,,1783.0,3.20458438519356,Mercantile,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,9613.75315558068,0.0,0.0,0.0005618204688000954,0.0,0.0001680874992885186,0.0007299079680886142,0.000474739359212061,0.00017899162148667151,7.620736098931931e-05,0.0,0.0,0.00030665185992354244,0.00017899162148667151,7.620736098931931e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001680874992885186,0.0,0.0,0.0,0.0,1.3557177512759292e-05,6.694998325184022e-05,3.0491941011554828e-05,8.05071607645995e-05,3.654252207982802e-05,2.1329742731421012e-05,9.081337945551554e-06,0.0,0.0,0.0,0.0,0.0,1.3557177512759294e-05,0.0,0.0,5.236265335402979e-05,1.9742361881976816e-05,8.405495666363451e-06,0.0,0.0 +96452,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,36548.0,,1641.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0031700215033086143,0.0004831771615510326,0.0,0.0036531986648596472,0.0014154967112689455,0.0009884508396364113,0.0012492511139542896,0.0,0.0,0.0009323195497179128,0.0009884508396364113,0.0012492511139542896,0.0,0.0,0.0004831771615510326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.228217873814798e-05,0.0,0.0,0.00037776565099054485,0.00016311310785873035,0.00041004782972869284,0.00011110281153071128,0.00011779187444554294,0.00014887096501429057,0.0,0.0,3.228217873814798e-05,0.0,0.0,0.0,0.0,0.0,0.00015888031494893601,0.00011094718868840559,0.00014022032609135117,0.0,0.0 +96453,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,8326.0,,910.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007418598530343694,0.00026792026297894526,0.0,0.0010097801160133147,0.0005460601648550256,0.00024079065101177604,0.000222929300146513,0.0,0.0,0.00027813990187608033,0.00024079065101177604,0.000222929300146513,0.0,0.0,0.00026792026297894526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.790066812036465e-05,0.0,0.0,8.840739845604901e-05,4.880228636618201e-05,0.00010630806657641364,3.314591702342168e-05,2.869500882332191e-05,2.6566472609305423e-05,0.0,0.0,1.790066812036465e-05,0.0,0.0,0.0,0.0,0.0,5.748835755384396e-05,2.5350062011322417e-05,2.346964701124726e-05,0.0,0.0 +96454,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970300,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,10379.0,,695.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0004716276137734046,0.00011820831958749204,0.0,0.0005898182029994766,0.00024201943338372076,0.0001492541824340045,5.663077437564866e-05,0.0,0.0001418960824446826,0.0002170196237814463,0.0001492541824340045,5.663077437564866e-05,0.0,4.870530282088506e-05,2.4999809602274448e-05,0.0,9.319077962379752e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.897514746397129e-06,0.0,0.0,5.620195868624784e-05,2.14931892131887e-05,6.409947343264496e-05,2.5861352418032835e-05,1.7786018354166703e-05,6.748460753529157e-06,0.0,5.80401430492943e-06,1.6702408568201514e-06,0.0,6.226089321593416e-06,0.0,0.0,0.0,2.630186413622328e-05,1.6220446322251107e-05,6.154443520226898e-06,0.0,1.5420792577450178e-05 +96455,50.0,the Greater Atlanta and Macon Area,G1301530020900,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,27692.0,,919.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006500883515577357,0.0007124643596167978,0.0,0.007213347875194154,0.003632428097004404,0.0004527395244006869,0.0022035371994004495,0.0004278344032155803,0.0004969703727391716,0.003632428097004404,0.0004527395244006869,0.0014910728397836519,0.0004278344032155803,0.0004969703727391716,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.0007746954432201143,0.00029996457198165437,0.0008223007219151879,0.0004328681613554652,5.395193525286607e-05,0.00017768774532288806,5.0984048834240815e-05,5.9222824444385574e-05,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.0004140862603817422,5.161099176077144e-05,0.0002511968452353603,4.8771880229727036e-05,5.665318009674965e-05 +96456,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,12375.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002971499745305837,0.0,0.0,0.002971499745305837,0.0011446659005520147,0.000794732271561005,0.0009570862573112655,0.0,7.493260880781252e-05,0.0011446659005520147,0.000794732271561005,0.0009570862573112655,0.0,7.493260880781252e-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.0003541035502284531,0.0001011248424722811,0.0003541035502284531,0.00013640595455248806,9.470555038257644e-05,0.00011405272442784624,0.0,8.929464943970679e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013640595455248806,9.470555038257644e-05,0.00011405272442784624,0.0,8.929464943970679e-06 +96457,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,48646.0,,7562.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004674284338273942,0.0022029364200212643,0.0,0.006877220758295205,0.004688225820415869,0.0016180016420490398,0.0005709932958302965,0.0,0.0,0.002485289400394605,0.0016180016420490398,0.0005709932958302965,0.0,0.0,0.0022029364200212643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014718709665334915,0.0,0.0,0.0005570246562574035,0.0003055508332560934,0.0007042117529107526,0.0002961667228113415,0.0001928138605318753,6.804407291418665e-05,0.0,0.0,0.00014718709665334915,0.0,0.0,0.0,0.0,0.0,0.0004800636534830271,0.00016567968553074053,5.846841389698498e-05,0.0,0.0 +96458,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,5078.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012193503881386093,0.0,0.0,0.0012193503881386095,0.0006303933160410012,0.00014746671247718512,0.00040038494397198727,0.0,4.110541564843579e-05,0.0006303933160410012,0.00014746671247718512,0.00040038494397198727,0.0,4.110541564843579e-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.00014530990427330103,4.7701308221293956e-05,0.00014530990427330103,7.51239293475616e-05,1.75735982716744e-05,4.771384701804588e-05,0.0,4.898529636019169e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.512392934756159e-05,1.7573598271674398e-05,4.7713847018045867e-05,0.0,4.8985296360191685e-06 +96459,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,12412.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0028930934394009737,0.0,0.0,0.0028930934394009737,0.0014654866395867883,0.000854198657579567,0.00047746793669702184,0.0,9.594020553759662e-05,0.0014654866395867883,0.000854198657579567,0.00047746793669702184,0.0,9.594020553759662e-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.000344768742371224,0.00010040347414410358,0.000344768742371224,0.00017464143356420007,0.00010179449889108066,5.689965550912169e-05,0.0,1.143315440682161e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00017464143356420007,0.00010179449889108066,5.689965550912169e-05,0.0,1.143315440682161e-05 +96460,50.0,the Greater Atlanta and Macon Area,G1300570090602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,21217.0,,1777.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005464042826587345,0.001409824778960234,0.0,0.00687386760554758,0.0033930577001550872,0.0025830246199523097,0.0007800931195091476,0.0,0.00011769216593103447,0.0019832329211948527,0.0025830246199523097,0.0007800931195091476,0.0,0.00011769216593103447,0.001409824778960234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.41969826856325e-05,0.0,0.0,0.0006511347128343086,0.0002867439085951843,0.0007453316955199411,0.0002363363245145521,0.0003078118249682629,9.296151686147278e-05,0.0,1.4025046490020752e-05,9.41969826856325e-05,0.0,0.0,0.0,0.0,0.0,0.00036790837324428277,0.00028007669481516616,8.458529619597988e-05,0.0,1.2761331264512234e-05 +96461,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,5758.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010873498984506746,0.0,0.0,0.0010873498984506746,0.0007005289145719339,0.00019394808791867591,0.00015060958127927881,0.0,4.226331468078609e-05,0.0007005289145719339,0.00019394808791867591,0.00015060958127927881,0.0,4.226331468078609e-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.00012957859363736494,4.1718316359556745e-05,0.00012957859363736494,8.348145494093567e-05,2.311263421918467e-05,1.7948020005601398e-05,0.0,5.036484471643226e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.348145494093567e-05,2.311263421918467e-05,1.7948020005601398e-05,0.0,5.036484471643226e-06 +96462,50.0,the Greater Atlanta and Macon Area,G1302970110504,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,80897.0,,6178.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003979703733260792,0.001050665757029489,0.0,0.00503036949029028,0.0023073405833985714,0.0005575844059378205,0.0012761250328468803,0.0,0.0008893194681070085,0.0020577857464113285,0.0005575844059378205,0.0004749963824432145,0.0,0.0008893194681070085,0.00024955483698724316,0.0008011286504036658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.01996534689924e-05,0.0,0.0,0.00047425324931998095,0.00020792350587784186,0.0005444529027889734,0.00024522216779194675,6.644620655455058e-05,5.660435873812039e-05,0.0,0.00010597840334403296,1.6673868888185022e-05,5.352696922513337e-05,0.0,0.0,0.0,0.0,0.00024973081615157133,6.034913517758186e-05,0.0001381190745125692,0.0,9.625387694725105e-05 +96463,50.0,the Greater Atlanta and Macon Area,G1302970110300,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,15327.0,,2889.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0019339214415308396,0.0004913437756725032,0.0,0.0024252829475647627,0.0013322948178256075,0.00025923561432259206,0.0004988082578303455,0.0,0.0003349265272247975,0.0009437694080279906,0.00025923561432259206,0.00039598989195545933,0.0,0.0003349265272247975,0.00038852540979761703,0.00010281836587488618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.282905472997437e-05,0.0,0.0,0.0002304625172360068,0.00010602995604015005,0.00026329157196598117,0.00011246758466688125,3.089271929614441e-05,4.718952142535321e-05,0.0,3.9912691847627934e-05,2.5959262279804e-05,6.869792450170372e-06,0.0,0.0,0.0,0.0,0.00014463549387491321,2.8142923477484054e-05,5.415121169496332e-05,0.0,3.636001808971163e-05 +96464,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010300,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,61048.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.005070506062900156,0.0,0.0,0.005070506062900156,0.0018711452959709386,0.0011045189306543232,0.002094872525881192,0.0,0.0,0.0018711452959709386,0.0011045189306543232,0.002094872525881192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006042419694604153,0.00020254698846646654,0.0006042419694604153,0.0002229806068188375,0.000131623290789076,0.00024964172907091767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002229806068188375,0.000131623290789076,0.00024964172907091767,0.0,0.0 +96465,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8816.0,,815.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002116722138210095,0.0006466039024939054,0.0,0.0027634087477777397,0.001389561545894104,0.0004256933085362154,0.0008797551433650132,0.0,6.839874998240724e-05,0.0007429576434001987,0.0004256933085362154,0.0008797551433650132,0.0,6.839874998240724e-05,0.0006466039024939054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.320363215928611e-05,0.0,0.0,0.0002522489618522974,0.00010729226385134748,0.00029545259401158355,8.85379761778294e-05,5.072970760183546e-05,0.0001048400815544441,0.0,8.151052688307348e-06,4.320363215928611e-05,0.0,0.0,0.0,0.0,0.0,0.00014856635436336093,4.551342336219384e-05,9.405989592066368e-05,0.0,7.312920365365126e-06 +96466,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,34728.0,,2360.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.003906771078396476,0.0008771093205048659,0.0,0.004783880398901341,0.002103496932891286,0.0007438534911526733,0.0017916883667973363,0.0,0.00014488035648381752,0.001628673747988184,0.0007438534911526733,0.0015342825876793903,0.0,0.0,0.00047482318490310246,0.00025740577911794593,0.00014488035648381752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8602029232675775e-05,0.0,0.0,0.0004655633071781626,0.00016418909301213968,0.0005241653364108384,0.00019408629817615377,8.86437634680154e-05,0.0001828378631181715,0.0,0.0,3.172421214954979e-05,1.7197971381545555e-05,9.679845701580434e-06,0.0,0.0,0.0,0.00023047820713104468,8.150333681418164e-05,0.0001963136318670076,0.0,1.5874406227443093e-05 +96467,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,7685.0,,938.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005986314604429906,0.0002760223190415388,0.0,0.0008746230898782316,0.00039703143667338094,0.00025736303841253556,0.0002202593043986129,0.0,0.0,0.00012100911763184206,0.00025736303841253556,0.0002202593043986129,0.0,0.0,0.0002760223190415388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8441616057492985e-05,0.0,0.0,7.133651019087457e-05,4.249074718989672e-05,8.977812624836756e-05,1.4420171213094349e-05,3.0668921073550396e-05,2.6247417904229815e-05,0.0,0.0,1.8441616057492985e-05,0.0,0.0,0.0,0.0,0.0,4.0754399076287976e-05,2.641774682335557e-05,2.2609130568950983e-05,0.0,0.0 +96468,81.0,the Columbus-Albany Area,G1300950010700,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,81017.0,,2101.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009097442753253226,0.0006185797045364971,0.0,0.009716022457789724,0.002365340026182847,0.0026227644438079774,0.0047279179877989,0.0,0.0,0.0017467603216463495,0.0026227644438079774,0.0047279179877989,0.0,0.0,0.0006185797045364971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1329932003123376e-05,0.0,0.0,0.0010841239575783302,0.0003490424389163766,0.0011254538895814536,0.00020815791472464642,0.00031254956428278024,0.0005634164785709037,0.0,0.0,4.1329932003123376e-05,0.0,0.0,0.0,0.0,0.0,0.00027398877927828233,0.0003038074950488664,0.0005476576152543051,0.0,0.0 +96469,50.0,the Greater Atlanta and Macon Area,G1300590130500,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,74469.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006156150885681393,0.0,0.0,0.006156150885681391,0.002463730903973282,0.0013553757725317458,0.0023370442091763645,0.0,0.0,0.002463730903973282,0.0013553757725317458,0.0023370442091763645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000733616168697489,0.0002515356842224812,0.000733616168697489,0.00029359787634159406,0.00016151741564730704,0.0002785008767085879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002935978763415941,0.00016151741564730706,0.000278500876708588,0.0,0.0 +96470,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,162379.0,,,,9.325022323477118,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.04272737676019069,0.0,0.0,0.0427273767601907,0.023030613601011794,0.006617675450206687,0.012487179002478182,0.0,0.0005918203223359773,0.023030613601011794,0.006617675450206687,0.012487179002478182,0.0,0.0005918203223359773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005091742180828976,0.0017030731587605514,0.005091742180828976,0.0027445154749566212,0.0007886161001170572,0.0014880739438635337,0.0,7.052612931570124e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.002744515474956621,0.0007886161001170571,0.0014880739438635335,0.0,7.052612931570122e-05 +96471,50.0,the Greater Atlanta and Macon Area,G1301210009000,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,38437.0,,6285.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.001829649186019509,0.0010687507256779427,0.0,0.002898382181336032,0.0013741562011383521,0.00046228371330503675,0.0006798175175676645,0.0,0.0003821070189635579,0.0009477055482632425,0.00046228371330503675,0.00033247973734883016,0.0,8.716245674097958e-05,0.0004264506528751099,0.0003473377802188344,0.0002949445622225784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.140711024621945e-05,0.0,0.0,0.00021803562190964276,0.00012521073746585084,0.00028944273215586214,0.00011293616840960449,5.508942244193032e-05,3.962094310708692e-05,0.0,1.0386975059430424e-05,2.8492714019079435e-05,2.3206896209619416e-05,1.9706315387800868e-05,0.0,0.0,0.0,0.00013722811568040483,4.616529244203703e-05,6.788899025093329e-05,0.0,3.8158563165663323e-05 +96472,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,9935.0,,101.0,,8.72605822017302,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,65445.43665129765,0.0,0.0,0.002043939913319504,8.02258615271282e-05,0.0,0.002124165774846633,0.0008746273047931759,0.000733942572362614,0.00043528732908997497,0.0,8.02258615271282e-05,0.0008746273047931759,0.000733942572362614,0.00043528732908997497,0.0,0.0,0.0,0.0,8.02258615271282e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.361595391735331e-06,0.0,0.0,0.00024357351680579135,7.501372145303442e-05,0.0002489351121975267,0.00010422813661721538,8.746292996133989e-05,5.18725941386671e-05,0.0,0.0,0.0,0.0,5.361595391735331e-06,0.0,0.0,0.0,0.00010249927233924558,8.601215534169884e-05,5.1012167406283645e-05,0.0,9.401824507713306e-06 +96473,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,137246.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011470393801797905,0.0,0.0,0.011470393801797905,0.004028563239486849,0.0029292308522968374,0.004512630399620515,0.0,0.0,0.004028563239486849,0.0029292308522968374,0.004512630399620515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013669058441035987,0.00045003037318301615,0.0013669058441035987,0.0004800765109330744,0.00034907108159665067,0.000537761908798109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004800765109330744,0.00034907108159665067,0.000537761908798109,0.0,0.0 +96474,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,NaturalGas,114646.0,,3464.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009801493011328826,0.0010197235484537704,0.0,0.010821216559782599,0.004263829761365038,0.002206153038316662,0.0043512030704945985,0.0,0.0,0.003244106212911268,0.002206153038316662,0.0043512030704945985,0.0,0.0,0.0010197235484537704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.813178158383925e-05,0.0,0.0,0.0011680236015168231,0.0003911055928915273,0.0012361553831006622,0.0003865934116494366,0.00026290268373741946,0.0005185238489132109,0.0,0.0,6.813178158383925e-05,0.0,0.0,0.0,0.0,0.0,0.00048707611413351977,0.0002520186098478573,0.0004970571533099499,0.0,0.0 +96475,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,14456.0,,1449.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012402897489153604,0.00042661621714436645,0.0,0.0016669059660597268,0.0006650744580775171,0.00045653858328462653,0.0005453236143038808,0.0,0.0,0.00023845824093315067,0.00045653858328462653,0.0005453236143038808,0.0,0.0,0.00042661621714436645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.850377567448074e-05,0.0,0.0,0.0001478030430838754,7.581595577307618e-05,0.00017630681875835613,2.84166290088017e-05,5.44048614073274e-05,6.498520989155694e-05,0.0,0.0,2.850377567448074e-05,0.0,0.0,0.0,0.0,0.0,7.034419717043792e-05,4.8287586041596335e-05,5.767828155237466e-05,0.0,0.0 +96476,50.0,the Greater Atlanta and Macon Area,G1301210001001,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,23493.0,,2463.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0011663386349339137,0.00041891524927158754,0.0,0.001585271614566921,0.0008611813845333847,0.0003524086635849695,0.00014687831400371742,0.0,0.0002247855220834294,0.0006078499805636702,0.0003524086635849695,0.00014687831400371742,0.0,5.920167678155631e-05,0.00025333140396971443,0.0,0.0001655838453018731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7989912567786873e-05,0.0,0.0,0.00013899108170003596,6.762030882134581e-05,0.00016698099426782284,7.243670386917899e-05,4.199608920175602e-05,1.7503300611156513e-05,0.0,7.054988017944423e-06,1.692639229561683e-05,0.0,1.1063520272170043e-05,0.0,0.0,0.0,9.071059023132114e-05,3.71201682369673e-05,1.5471094469462528e-05,0.0,2.3677273742617804e-05 +96477,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,17946.0,,993.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0008634154100723113,0.00016882850144174277,0.0,0.0010322439115140539,0.0007132569792058841,0.00015420095327019922,6.278320978840697e-05,0.0,0.00010202049961098383,0.0006026372543061748,0.00015420095327019922,6.278320978840697e-05,0.0,4.3811723068950476e-05,0.00011061972489970941,0.0,5.820877654203335e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1280061961511246e-05,0.0,0.0,0.00010289212811636718,3.729863852630252e-05,0.00011417219007787842,7.181552339050055e-05,1.83759335940211e-05,7.481796120090686e-06,0.0,5.22098791661793e-06,7.3909164648045215e-06,0.0,3.889145496706723e-06,0.0,0.0,0.0,7.889037706681485e-05,1.7055523748386415e-05,6.944188753942313e-06,0.0,1.1284061589998327e-05 +96478,50.0,the Greater Atlanta and Macon Area,G1301210010001,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,17336.0,,8180.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0036096661412157046,0.005626933765971796,0.0,0.0092365999071875,0.0026950930708246313,0.000643543299923078,0.003834006210552536,0.0003733024491362556,0.001690654876750999,0.0016577354100548336,0.000643543299923078,0.000735918622591185,0.0003733024491362556,0.00019916635951035193,0.001037357660769798,0.0030980875879613504,0.0014914885172406472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003759600125185959,0.0,0.0,0.00043015365339290403,0.0004922150609366318,0.0008061136659114999,0.00019754761662077453,7.668922574795406e-05,8.769733036885731e-05,4.448539173276507e-05,2.373408892255304e-05,6.93103944972274e-05,0.0002069967582340108,9.965285978735766e-05,0.0,0.0,0.0,0.00023521115747414208,5.6164503592939416e-05,0.000334608495828748,3.2579543207539253e-05,0.00014754996580813114 +96479,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,22137.0,,1268.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0019604213606909562,0.000373369750217852,0.0,0.0023337911109088086,0.0003762238836035384,0.0008832161796415883,0.0010743510476636812,0.0,0.0,2.8541333856863595e-06,0.0008832161796415883,0.0010743510476636812,0.0,0.0,0.000373369750217852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.494620226784876e-05,0.0,0.0,0.0002336184200476676,0.00010060540578749112,0.0002585646223155163,3.4011980563930387e-07,0.00010525062243541422,0.00012802767780661404,0.0,0.0,2.494620226784876e-05,0.0,0.0,0.0,0.0,0.0,4.168247360070897e-05,9.785299843011693e-05,0.00011902915028469035,0.0,0.0 +96480,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,14905.0,,8650.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0028671492812910827,0.0059502473953101705,0.0,0.008817396676601254,0.001647981493996711,0.0004795914461813911,0.004415368295605079,0.00028020992675799236,0.001994173794089065,0.001461366129414091,0.0004795914461813911,0.0003990499187308599,0.00028020992675799236,0.00024693186020674886,0.00018661536458261993,0.004016318376874219,0.0017472419338823164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039755924327745153,0.0,0.0,0.00034167259611510075,0.00048048456808691067,0.0007392318393925522,0.00017414815565053142,5.7151978643261856e-05,4.75540016705711e-05,3.3392071266520715e-05,2.9426388884215726e-05,1.246850058467943e-05,0.0002683459003620477,0.00011674005043964653,0.0,0.0,0.0,0.0001381632737840776,4.020792983698002e-05,0.00037017511477251944,2.3492206052502004e-05,0.00016718730209619098 +96481,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,13515.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003019635262222114,0.0,0.0,0.003019635262222114,0.0019958043964032274,0.0004825130681951195,0.0004732498759363171,0.0,6.815062876118932e-05,0.0019958043964032274,0.0004825130681951195,0.0004732498759363171,0.0,6.815062876118932e-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.0003598468383412864,0.00010788989370475615,0.0003598468383412864,0.00023783796373633476,5.7500587644017114e-05,5.639670251955193e-05,0.0,8.121440558565324e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00023783796373633476,5.7500587644017114e-05,5.639670251955193e-05,0.0,8.121440558565324e-06 +96482,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,117291.0,,4704.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010450516805312646,0.0013846536569397541,0.0,0.011835170462252399,0.004003980864842389,0.0031571011790572806,0.004674119107959026,0.0,0.0,0.002619327207902635,0.0031571011790572806,0.004674119107959026,0.0,0.0,0.0013846536569397541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.251388383219705e-05,0.0,0.0,0.0012453689452720474,0.0004171293912243588,0.0013378828291042443,0.0003121404254926216,0.00037622596458396657,0.0005570062124196269,0.0,0.0,9.251388383219703e-05,0.0,0.0,0.0,0.0,0.0,0.00045262189203104305,0.00035688809643064876,0.0005283763098868215,0.0,0.0 +96483,81.0,the Columbus-Albany Area,G1302150010203,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,372640.0,,11371.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,495950.45603733143,0.0,0.0,0.03358047705880734,0.003417818715630344,0.0,0.03699829577443768,0.011549252027002516,0.009322466183255827,0.011720044248014093,0.0,0.0044065333161652405,0.011549252027002516,0.009322466183255827,0.008302225532383748,0.0,0.0044065333161652405,0.0,0.003417818715630344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022835903417423815,0.0,0.0,0.004001720761043327,0.0017858126035105925,0.004230079795217565,0.0013763021153642644,0.001110940336086582,0.0009893602231326967,0.0,0.0005251180864597827,0.0,0.00022835903417423815,0.0,0.0,0.0,0.0,0.001320446161821662,0.0010658538459124157,0.0013399731348391747,0.0,0.000503806652644312 +96484,35.0,Eastern Counties in South Carolina and Georgia,G1300510010808,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,21892.0,,1493.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005139349650269487,0.0011579264135413172,0.0,0.006297276063810804,0.0028125806174726007,0.0007068849655850695,0.0018011739428514556,0.0004302602267076362,0.0005463763111940418,0.0022010305151253257,0.0007068849655850695,0.0018011739428514556,0.0004302602267076362,0.0,0.0006115501023472753,0.0,0.0005463763111940418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.736643274770519e-05,0.0,0.0,0.0006124416333143596,0.00023588166393005315,0.0006898080660620649,0.0002622905261149953,8.42374643386219e-05,0.00021464075933914472,5.127288352159772e-05,0.0,4.0860497965844576e-05,0.0,3.65059347818606e-05,0.0,0.0,0.0,0.00030809206658923965,7.743267820841021e-05,0.00019730186537317979,4.7131009007887304e-05,5.985044688334794e-05 +96485,50.0,the Greater Atlanta and Macon Area,G1300210012300,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,30241.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0024143974193068926,0.0,0.0,0.002414397419306892,0.0015643011182430945,0.0006617192373508613,0.00018834669011349905,0.0,0.0,0.0015643011182430945,0.0006617192373508613,0.00018834669011349905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002877177320900846,6.950050352712425e-05,0.0002877177320900846,0.00018641387140651074,7.885543478820712e-05,2.244480634910825e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018641387140651077,7.885543478820714e-05,2.2444806349108253e-05,0.0,0.0 +96486,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,15405.0,,1776.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013312230523754537,0.0005228281328876644,0.0,0.0018540511852631182,0.0007604577544507772,0.00044153136580505,0.0006520620650072911,0.0,0.0,0.0002376296215631127,0.00044153136580505,0.0006520620650072911,0.0,0.0,0.0005228281328876644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4931377725952094e-05,0.0,0.0,0.00015863932157039385,8.572026468545969e-05,0.00019357069929634596,2.8317870459449932e-05,5.2616453868023526e-05,7.77049972429204e-05,0.0,0.0,3.4931377725952094e-05,0.0,0.0,0.0,0.0,0.0,7.939497058355249e-05,4.6097721529745744e-05,6.807800718304773e-05,0.0,0.0 +96487,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300750960200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,378290.0,,1775.0,,7.614023970037612,Education,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1142103.5955056418,0.0,0.0,0.06777825741230517,0.0012284992279800492,0.0,0.0690067566402852,0.05430575677343684,0.006641891937211058,0.004506253233480012,0.0008275392496767448,0.0027253876135032934,0.05430575677343684,0.006641891937211058,0.004506253233480012,0.0008275392496767448,0.0014968883855232442,0.0,0.0,0.0012284992279800492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.207933599211641e-05,0.0,0.0,0.00807700859671167,0.0016084960912529603,0.008159087932703785,0.006471515808406565,0.0007915018816276631,0.0005370017981484711,9.861630984543286e-05,0.00017838139869311663,0.0,0.0,8.207933599211641e-05,0.0,0.0,0.0,0.006420899435633352,0.0007853112215910882,0.0005328016873862197,9.784499134008811e-05,0.0003222391294984239 +96488,35.0,Eastern Counties in South Carolina and Georgia,G1300510003900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,292178.0,,20546.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.06648827038044766,0.018172792917745612,0.0,0.08466106329819327,0.06387566339213084,0.008870008675240553,0.006922841382934976,0.0006718949037053485,0.004320562726928767,0.04919956426503846,0.008870008675240553,0.0034261475922817484,0.0006718949037053485,0.004320562726928767,0.014676099127092385,0.0034966937906532264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012142011113496062,0.0,0.0,0.007923280655396624,0.0028526354813224685,0.009137481766746228,0.005863018447683337,0.001057022054380301,0.0004082874886822544,8.006843707207776e-05,0.0005148732382241268,0.0009805722186484447,0.00023362889270116136,0.0,0.0,0.0,0.0,0.006894110312891273,0.0009573414198144269,0.0007471833502473214,7.251772175543128e-05,0.0004663190090152989 +96489,35.0,Eastern Counties in South Carolina and Georgia,G1301830970200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,271871.0,,25675.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.0727872620483721,0.022709051798910834,0.0,0.09549631384728294,0.07587386571594301,0.009744412666035793,0.004128013103138379,0.0006628576129335777,0.005087164749232165,0.056672020474501546,0.009744412666035793,0.004128013103138379,0.0006628576129335777,0.0015799581917627968,0.019201845241441463,0.0,0.0035072065574693677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001517285575270131,0.0,0.0,0.008673916773646968,0.0037725015822346977,0.0101912023489171,0.006753494707131073,0.0011612227482481075,0.0004919273110362484,7.899145544921261e-05,0.000188280551782326,0.0012829546148116094,0.0,0.00023433096045852124,0.0,0.0,0.0,0.0080971284372537,0.0010399069581861877,0.0004405344577000274,7.073902425940036e-05,0.0005428934715177824 +96490,46.0,the Tallahassee-Valdosta Area,G1301850010401,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,13742.0,,20.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0006650658568661807,3.4219597540701906e-06,0.0,0.000668487816620251,0.0004198372280654303,0.00013863369594339288,3.258840429005705e-05,0.0,7.74284883213706e-05,0.00041641526831136017,0.00013863369594339288,3.258840429005705e-05,0.0,7.74284883213706e-05,3.4219597540701906e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2852483186031152e-07,0.0,0.0,7.92542739545198e-05,2.2039968191864714e-05,7.948279878638012e-05,4.962319056507203e-05,1.6520638977616378e-05,3.883480552610168e-06,0.0,9.22696385922122e-06,2.2852483186031152e-07,0.0,0.0,0.0,0.0,0.0,4.9918393561857e-05,1.6483462952834154e-05,3.874741643088524e-06,0.0,9.206200628600428e-06 +96491,85.0,Rural Climate Zone 3A,G1300690010400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,20544.0,,4892.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0048228605453392685,0.00379406880235839,0.0,0.008616929347697661,0.0027605871339595376,0.000638315021542958,0.004390174495139576,0.0004207995150886184,0.0004070531819669687,0.0027605871339595376,0.000638315021542958,0.0005961056927811865,0.0004207995150886184,0.0004070531819669687,0.0,0.00379406880235839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002534955203733835,0.0,0.0,0.0005747301653845363,0.000394525559865719,0.0008282256857579199,0.0003289733727823096,7.606666094737996e-05,7.103666385914428e-05,5.0145794726395405e-05,4.850767306930716e-05,0.0,0.0002534955203733835,0.0,0.0,0.0,0.0,0.0002653368827642789,6.135235361866485e-05,0.00042196647263974783,4.0445610366294884e-05,3.912436636893321e-05 +96492,35.0,Eastern Counties in South Carolina and Georgia,G1301890950400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5908.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010686580997855914,0.0,0.0,0.0010686580997855914,0.00046820474443821935,0.0003348809415704558,0.00022355722031734796,0.0,4.193248638582886e-05,0.00046820474443821935,0.0003348809415704558,0.00022355722031734796,0.0,4.193248638582886e-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.00012735168931382875,3.5089842019970244e-05,0.00012735168931382875,5.579582951827138e-05,3.990766891352779e-05,2.6641251932147593e-05,0.0,4.997082770846774e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.579582951827138e-05,3.990766891352779e-05,2.6641251932147593e-05,0.0,4.997082770846774e-06 +96493,50.0,the Greater Atlanta and Macon Area,G1302470060309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,451148.0,,28578.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.022287347990789096,0.004860016177766413,0.0,0.027147364168555507,0.014079130362459912,0.0037374183444557705,0.007018616759212161,0.0,0.0023121987024276656,0.014079130362459912,0.0037374183444557705,0.0021586005814457484,0.0,0.0023121987024276656,0.0,0.004860016177766413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003247173982474586,0.0,0.0,0.00265594038616171,0.0011713259255729871,0.002980657784409169,0.0016777828814422753,0.00044538095448251987,0.0002572362788171698,0.0,0.00027554027141974514,0.0,0.0003247173982474586,0.0,0.0,0.0,0.0,0.0015458248267500422,0.0004103516279823225,0.0007706123713978059,0.0,0.00025386895827899866 +96494,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,173444.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.014423071513306188,0.0,0.0,0.014423071513306188,0.006674897300931463,0.002535912857985478,0.005212292043995544,0.0,0.0,0.006674897300931463,0.002535912857985478,0.005212292043995544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017187697940718903,0.0005959315012399064,0.0017187697940718903,0.0007954347205994773,0.00030219987585049625,0.0006211388548434903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007954347205994773,0.00030219987585049625,0.0006211388548434903,0.0,0.0 +96495,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,171345.0,,34747.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009625547259525365,0.005908979820099577,0.0,0.015534527079624945,0.006356511872703132,0.0027462734107133987,0.0029376726622428687,0.0,0.003494086864326965,0.005113365312097549,0.0027462734107133987,0.0013046354540103254,0.0,0.00046127308270409374,0.001243146560605582,0.0016330372082325431,0.0030328137816228715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039480397672669567,0.0,0.0,0.0011470580476395642,0.0006792091315738226,0.0015418620243662598,0.0006093499593966675,0.00032726814713418084,0.00015547091052693374,0.0,5.496903058178235e-05,8.305988863115243e-05,0.00010911013467329867,0.00020263513806281037,0.0,0.0,0.0,0.0006309084411593714,0.0002725782805489838,0.00029157539812538447,0.0,0.0003468016643396138 +96496,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300750960300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,153145.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013644997924840528,0.0,0.0,0.013644997924840526,0.004420223995058132,0.004819802669054222,0.004405001950334471,0.0,0.0,0.004420223995058132,0.004819802669054222,0.004405001950334471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016260497259049061,0.00040162476622558277,0.0016260497259049061,0.0005267500995744245,0.0005743671675217897,0.0005249361160335726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005267500995744246,0.0005743671675217898,0.0005249361160335726,0.0,0.0 +96497,50.0,the Greater Atlanta and Macon Area,G1302970110508,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,63736.0,,3170.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00556448596586798,0.0009329640314501646,0.0,0.006497449997318145,0.002980144909144726,0.0013417188977292679,0.0021755861904441502,0.0,0.0,0.0020471808776945616,0.0013417188977292679,0.0021755861904441502,0.0,0.0,0.0009329640314501646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.233553868625276e-05,0.0,0.0,0.0006631097087694321,0.00025966338644996,0.0007254452474556849,0.0002439588353593124,0.00015989020962242946,0.0002592606637876901,0.0,0.0,6.233553868625276e-05,0.0,0.0,0.0,0.0,0.0,0.00033273545190199897,0.0001498039381882015,0.00024290585736548424,0.0,0.0 +96498,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,34450.0,,4326.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0032634406648788202,0.001273250386079093,0.0,0.004536691050957915,0.00212335248052546,0.0009752236193221014,0.0014381149511103525,0.0,0.0,0.0008501020944463671,0.0009752236193221014,0.0014381149511103525,0.0,0.0,0.001273250386079093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.507187171098478e-05,0.0,0.0,0.0003888973733378857,0.000212369213815589,0.00047396924504887055,0.00010130488203973627,0.00011621535150096389,0.0001713771397971856,0.0,0.0,8.507187171098478e-05,0.0,0.0,0.0,0.0,0.0,0.00022183652377095382,0.00010188615389763543,0.00015024656738028122,0.0,0.0 +96499,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010202,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,15744.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013883164831007602,0.0,0.0,0.0013883164831007602,0.0009412170993770536,0.0003532449614610537,9.385442226265315e-05,0.0,0.0,0.0009412170993770536,0.0003532449614610537,9.385442226265315e-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.0001654418852243947,5.7946815365749857e-05,0.0001654418852243947,0.00011216227223535365,4.209523770805353e-05,1.1184375280987569e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011216227223535365,4.209523770805353e-05,1.1184375280987569e-05,0.0,0.0 +96500,50.0,the Greater Atlanta and Macon Area,G1300590150500,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,60850.0,,505.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.013504478519491752,0.0003918513547500854,0.0,0.013896410735024905,0.006302532014710258,0.0016856238838465294,0.004565561533615214,0.000418292830813494,0.0009243196112563405,0.006302532014710258,0.0016856238838465294,0.004173710178865127,0.000418292830813494,0.0009243196112563405,0.0,0.0003918513547500854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.618320783262974e-05,0.0,0.0,0.0016093053988921772,0.00043368125606060983,0.001635488606724807,0.0007510618631681702,0.00020087288915750841,0.000497373838950108,4.9847234750637575e-05,0.00011014957286575258,0.0,2.618320783262974e-05,0.0,0.0,0.0,0.0,0.0007417540759353855,0.00019838350418830488,0.0005373275167168796,4.9229486096426226e-05,0.00010878450716571586 +96501,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Electricity,5204.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,1870.6521585294563,0.0,0.0,0.00026788803069557784,0.0,0.0,0.00026788803069557784,0.00011741045332358967,7.312001049629778e-05,2.1737423100984738e-05,0.0,5.563787413612569e-05,0.00011741045332358967,7.312001049629778e-05,2.1737423100984738e-05,0.0,5.563787413612569e-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,3.19240242551512e-05,1.0007927268238753e-05,3.19240242551512e-05,1.3991719413436445e-05,8.71365914542614e-06,2.590433101913784e-06,0.0,6.630325508813584e-06,0.0,0.0,0.0,0.0,0.0,0.0,1.3991719413436445e-05,8.71365914542614e-06,2.590433101913784e-06,0.0,6.630325508813584e-06 +96502,50.0,the Greater Atlanta and Macon Area,G1301350050421,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,33381.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002860455444583686,0.0,0.0,0.002860455444583686,0.0008470638234228945,0.0008583269089341514,0.0011550647122266396,0.0,0.0,0.0008470638234228945,0.0008583269089341514,0.0011550647122266396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034087459644634583,0.0001122515114815788,0.00034087459644634583,0.00010094285492903452,0.0001022850536812158,0.00013764668783609548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010094285492903452,0.0001022850536812158,0.00013764668783609548,0.0,0.0 +96503,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Electricity,3877.0,,132.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006088894768687813,0.0001047071553539632,0.0,0.0007135966322227445,0.0004012947217831196,0.00015474493496624422,0.0001281132572221872,0.0,2.9443718251193445e-05,0.0002965875664291564,0.00015474493496624422,0.0001281132572221872,0.0,2.9443718251193445e-05,0.0001047071553539632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.994460138825178e-06,0.0,0.0,7.256381535606086e-05,3.1621198726404786e-05,7.955827549488603e-05,3.534553679256102e-05,1.8441578175929078e-05,1.526777370096961e-05,0.0,3.5089266866011495e-06,6.994460138825178e-06,0.0,0.0,0.0,0.0,0.0,4.4740003790123673e-05,1.7252379862184954e-05,1.428323698905638e-05,0.0,3.2826548535210277e-06 +96504,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000102,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,4011.0,,668.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1870.6521585294563,0.0,0.0,0.00020648778909793496,0.00011356296489543819,0.0,0.0003200330236319531,0.0001876404149084188,5.895345172167558e-05,1.4893503592844356e-05,0.0,5.854565340901435e-05,9.79779772072118e-05,5.895345172167558e-05,1.4893503592844356e-05,0.0,3.4645126214783184e-05,8.966243770120702e-05,0.0,2.3900527194231177e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.587242467404358e-06,0.0,0.0,2.460603564257107e-05,1.4914847202310782e-05,3.2193278109975426e-05,1.1675506865949487e-05,7.025164735664503e-06,1.7747784595362958e-06,0.0,4.128472749921335e-06,5.990427034764066e-06,0.0,1.596815432640293e-06,0.0,0.0,0.0,1.8875427270796118e-05,5.930340704469157e-06,1.4981913358658925e-06,0.0,5.889318798844257e-06 +96505,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,279729.0,,12418.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,480687.657779034,0.0,0.0,0.022162157576954493,0.0036177083082323063,0.0,0.025779865885186798,0.016942576007974594,0.0073426657960793135,0.0014946240811328918,0.0,0.0,0.013324867699742289,0.0073426657960793135,0.0014946240811328918,0.0,0.0,0.0036177083082323063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024171464134508711,0.0,0.0,0.002641022483495109,0.0007261635025942197,0.0028827371248401966,0.0015878993307588015,0.0008750116223521968,0.00017811153038411098,0.0,0.0,0.00024171464134508711,0.0,0.0,0.0,0.0,0.0,0.0018945402224407764,0.0008210661521639162,0.00016713075023550432,0.0,0.0 +96507,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,29492.0,,2081.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002677545391049377,0.0006125031624895521,0.0,0.003290079243145227,0.001372868848121436,0.0007486729456324594,0.0011685374493913313,0.0,0.0,0.0007603656856318841,0.0007486729456324594,0.0011685374493913313,0.0,0.0,0.0006125031624895521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0924545601110843e-05,0.0,0.0,0.0003190788307922184,0.00014355294959812374,0.0003600033763933293,9.061157086523168e-05,8.921816561419629e-05,0.0001392527515444205,0.0,0.0,4.0924545601110843e-05,0.0,0.0,0.0,0.0,0.0,0.00015022052180009503,8.192045489590288e-05,0.00012786239969733135,0.0,0.0 +96508,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5574.0,,224.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012907265927756316,0.00017790291561325022,0.0,0.0014686295083888821,0.0006730701660904837,0.0002949334249543703,0.000456543047040977,0.0,4.4000163229311556e-05,0.0004951672504772335,0.0002949334249543703,0.000456543047040977,0.0,4.4000163229311556e-05,0.00017790291561325022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1886953715309129e-05,0.0,0.0,0.00015381283774638037,5.609366167633175e-05,0.00016569979146168954,5.9007911033421716e-05,3.514651924923699e-05,5.440515598872356e-05,0.0,5.24339546847843e-06,1.1886953715309127e-05,0.0,0.0,0.0,0.0,0.0,7.59399055535974e-05,3.3276198476791396e-05,5.1509987546799914e-05,0.0,4.964368365017674e-06 +96509,50.0,the Greater Atlanta and Macon Area,G1301170130608,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,55953.0,,6750.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026724973768445593,0.0011478635983342184,0.0,0.003820360975178777,0.0015487825307644524,0.0007671750082842647,0.0008083626378630475,0.0,0.0006960585286284327,0.001173537161670455,0.0007671750082842647,0.0006125662567014043,0.0,0.00011923668054985509,0.00037524536909399746,0.0001957963811616431,0.0005768218480785777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.669333589133806e-05,0.0,0.0,0.0003184767648276584,0.00015982117192116859,0.00039517010071899643,0.00013984833882049394,9.1422882885477e-05,7.299843261481304e-05,0.0,1.4209223402547615e-05,2.507163671307196e-05,1.3081935561446499e-05,3.8539763616819596e-05,0.0,0.0,0.0,0.0001602028061354517,7.935496861748854e-05,8.361533035680369e-05,0.0,7.199882960053075e-05 +96510,81.0,the Columbus-Albany Area,G1302150010501,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,4471.0,,303.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003984124689567775,8.927606472001738e-05,0.0,0.0004876578440704972,0.0002924719480171075,0.00011462567952191991,8.056021653146981e-05,0.0,0.0,0.00020319588329709016,0.00011462567952191991,8.056021653146981e-05,0.0,0.0,8.927606472001738e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.964256628062606e-06,0.0,0.0,4.7476446658935245e-05,2.2406098275868873e-05,5.344070328699785e-05,2.4213646073702845e-05,1.3659261151681036e-05,9.599882335518799e-06,0.0,0.0,5.964256628062606e-06,0.0,0.0,0.0,0.0,0.0,3.2050969309319665e-05,1.2561423963306294e-05,8.828310014371891e-06,0.0,0.0 +96511,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,14824.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0013307933978872859,0.0,0.0,0.0013307933978872859,0.0005032481640697303,0.00030732571746519566,0.0005201888267460621,0.0,0.0,0.0005032481640697303,0.00030732571746519566,0.0005201888267460621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015858640234206738,6.0634080697042604e-05,0.00015858640234206738,5.997047772537004e-05,3.662302499950332e-05,6.198924243474949e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.997047772537004e-05,3.662302499950332e-05,6.198924243474949e-05,0.0,0.0 +96512,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,95815.0,,8455.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.00853698916304458,0.002488773622712207,0.0,0.011025762785756786,0.0044883549210390315,0.002562919711527457,0.003974488153190296,0.0,0.0,0.001999581298326825,0.002562919711527457,0.003974488153190296,0.0,0.0,0.002488773622712207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016628526199331245,0.0,0.0,0.0010173378510483979,0.00047587021715023083,0.00118362311304171,0.00023828655538680514,0.00030541859453468625,0.0004736327011269063,0.0,0.0,0.00016628526199331245,0.0,0.0,0.0,0.0,0.0,0.0004818279449054605,0.0002751311692786319,0.0004266639988576175,0.0,0.0 +96513,50.0,the Greater Atlanta and Macon Area,G1301210004200,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,9621.0,,608.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003851751131113286,0.0004825130681951195,0.0,0.004334264199308406,0.002320098832535052,0.0009893420160695956,0.0009407102567108827,0.0,8.403038691913633e-05,0.0019216988583328082,0.0009893420160695956,0.0009407102567108827,0.0,0.0,0.00039839997420224385,0.0,8.403038691913633e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2236696325775124e-05,0.0,0.0,0.00045901048295074616,0.00019004703866467844,0.0004912471792765212,0.00022900750620258504,0.0001178991947146685,0.00011210378203349266,0.0,0.0,2.6617100822978878e-05,0.0,5.614069843501461e-06,0.0,0.0,0.0,0.00026296089825522326,0.00011213240642125271,0.00010662046402234811,0.0,9.524036525998388e-06 +96514,50.0,the Greater Atlanta and Macon Area,G1301350050605,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,54860.0,,6545.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0048879642846414205,0.001926447966519399,0.0,0.006814412251160819,0.002898664004424325,0.0016055881326769166,0.002310129424453279,0.0,0.0,0.0009722160379049264,0.0016055881326769166,0.002310129424453279,0.0,0.0,0.001926447966519399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012871422842816084,0.0,0.0,0.0005824901182393477,0.00029753335350324577,0.0007112043466675085,0.00011585727756907594,0.00019133511760413354,0.000275294065839661,0.0,0.0,0.00012871422842816084,0.0,0.0,0.0,0.0,0.0,0.0003025268157388111,0.0001675714965326718,0.00024110283139324378,0.0,0.0 +96515,50.0,the Greater Atlanta and Macon Area,G1301350050608,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,62417.0,,4504.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005504030327714447,0.001312078748512003,0.0,0.0068161090762264495,0.004338473822890157,0.002005052419684311,0.00047261320725141843,0.0,0.0,0.0030263950743781537,0.002005052419684311,0.00047261320725141843,0.0,0.0,0.001312078748512003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.76651166093677e-05,0.0,0.0,0.0006559061167606963,0.00023916439578490598,0.000743571233370064,0.00036065045481741725,0.0002389387536392594,5.632052787521968e-05,0.0,0.0,8.76651166093677e-05,0.0,0.0,0.0,0.0,0.0,0.00047328531503139273,0.0002187317256814924,5.155750612158245e-05,0.0,0.0 +96516,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,13779.0,,767.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0007186115483547401,0.00013044226896732845,0.0,0.0008490538173220685,0.0004265393046822103,0.00020317221151238505,6.233995075290566e-05,0.0,0.00015700235037456757,0.00029609703571488184,0.00020317221151238505,6.233995075290566e-05,0.0,0.00015700235037456757,0.00013044226896732845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.71541578784153e-06,0.0,0.0,8.563646950033771e-05,3.137431103970773e-05,9.435188528817925e-05,3.528569061573254e-05,2.421189992608857e-05,7.429011269755426e-06,0.0,1.8709867688761177e-05,8.71541578784153e-06,0.0,0.0,0.0,0.0,0.0,4.7399572000286686e-05,2.2577698613762523e-05,6.927584285364259e-06,0.0,1.7447030388765788e-05 +96517,50.0,the Greater Atlanta and Macon Area,G1300890021216,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,451197.0,,621.0,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,863994.0691636442,0.0,0.0,0.07151406693910352,0.0003254341864774217,0.0,0.07183950112558095,0.027325498291937353,0.005190514222335326,0.03899805442483084,0.0,0.0003254341864774217,0.027325498291937353,0.005190514222335326,0.03899805442483084,0.0,0.0,0.0,0.0,0.0003254341864774217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1744750425462358e-05,0.0,0.0,0.008522191640334437,0.0028926184241996424,0.0085439363907599,0.0032563262457135913,0.000618543439185052,0.004647321955435793,0.0,0.0,0.0,0.0,2.1744750425462358e-05,0.0,0.0,0.0,0.0032498460539698393,0.0006173125182682564,0.004638073638438742,0.0,3.8704180083061535e-05 +96518,50.0,the Greater Atlanta and Macon Area,G1301530020400,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,17686.0,,3048.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0009103831374740313,0.0005183471161152437,0.0,0.0014287302535892752,0.0004857764421866067,0.00022581388304579247,0.0004093940451890192,0.0,0.0003077636135292765,0.00040600754615778914,0.00022581388304579247,0.0002139522712557772,0.0,6.46094370146724e-05,7.976889602881755e-05,0.000195441773933242,0.0002431541765146041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4633121357822444e-05,0.0,0.0,0.00010848834586788504,6.285359440738382e-05,0.0001431214672257075,4.8383021696504105e-05,2.6909741225672565e-05,2.5496219171654442e-05,0.0,7.699363774053928e-06,5.329721668850459e-06,1.3058351179315092e-05,1.6246233155504598e-05,0.0,0.0,0.0,4.866211587160662e-05,2.2620655074851518e-05,4.1010594038812934e-05,0.0,3.082987835971047e-05 +96519,35.0,Eastern Counties in South Carolina and Georgia,G1300510004210,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,57483.0,,3712.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0027384897820499953,0.0006311831361924598,0.0,0.003369672918242455,0.0014651661463074834,0.000870064295604831,0.0005813785509635314,0.0,0.0004530816557280293,0.0013750781799321953,0.000870064295604831,0.0003955289025585379,0.0,9.783613431585137e-05,9.008796637528827e-05,0.00018584964840499344,0.00035524552141217794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2171667565146655e-05,0.0,0.0,0.00032634104669796956,0.0001215722343447458,0.0003685127142631162,0.0001638656662047823,0.00010368404322095383,4.713448883626178e-05,0.0,1.1658961332189913e-05,6.019108483342512e-06,1.24172987841756e-05,2.373526029762854e-05,0.0,0.0,0.0,0.00016023286726113978,9.51515956996787e-05,6.358046998272874e-05,0.0,4.9549720339696565e-05 +96520,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock 90.1-2007,gen4_led,_1000,Electricity,2379.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0005713404653911356,0.0,0.0,0.0005713404653911357,0.000239436978475295,0.00010106804410943366,0.00020461730043104653,0.0,2.6218142375360452e-05,0.000239436978475295,0.00010106804410943366,0.00020461730043104653,0.0,2.6218142375360452e-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,6.808761820087999e-05,2.4649486682371464e-05,6.808761820087999e-05,2.8534113302192764e-05,1.2044451279889309e-05,2.438459285306559e-05,0.0,3.124460765732333e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.8534113302192757e-05,1.2044451279889307e-05,2.4384592853065585e-05,0.0,3.1244607657323326e-06 +96521,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,30998.0,,4018.0,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,133245.41947565821,0.0,0.0,0.00686676438004639,0.0027811727220757297,0.0,0.00964793710212212,0.0069202401438913765,0.000842982992541559,0.0008813758486353959,0.0007318457775330837,0.0002714923395207041,0.0045784202562127885,0.000842982992541559,0.0004420230142382543,0.0007318457775330837,0.0002714923395207041,0.002341819887678588,0.00043935283439714155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018582175103673264,0.0,0.0,0.000818301098260926,0.0004219561571423034,0.0010041228492976588,0.0005456028657173299,0.00010045690669342282,5.2675160816472457e-05,8.72128662595669e-05,3.235329877413378e-05,0.00015646675543987685,2.9354995596855782e-05,0.0,0.0,0.0,0.0,0.0007202338880899033,8.773466031345848e-05,9.173045170860957e-05,7.616789574854743e-05,2.8255953437139867e-05 +96522,50.0,the Greater Atlanta and Macon Area,G1300670030230,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,Electricity,26817.0,,2831.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002389400677520246,0.000833376259014119,0.0,0.003222776936534364,0.0011912170684453334,0.0008630224186977,0.0011685374493913313,0.0,0.0,0.00035784080943121444,0.0008630224186977,0.0011685374493913313,0.0,0.0,0.000833376259014119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.568181757646875e-05,0.0,0.0,0.0002847392882974233,0.00013723743094653571,0.00034042110587389205,4.264305202548204e-05,0.00010284436243641343,0.00013925187383552785,0.0,0.0,5.568181757646875e-05,0.0,0.0,0.0,0.0,0.0,0.00012582795513365255,9.116083798308498e-05,0.00012343231275715457,0.0,0.0 +96523,50.0,the Greater Atlanta and Macon Area,G1300210013410,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,35753.0,,1789.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003152718874439764,0.0005212109663518212,0.0,0.003673929840791584,0.002489298715520388,0.0009365395650636397,0.00024806118660811914,0.0,0.0,0.001968087749168567,0.0009365395650636397,0.00024806118660811914,0.0,0.0,0.0005212109663518212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4824130337989896e-05,0.0,0.0,0.000375703460576976,0.00011003758169145158,0.0004105275909149658,0.00023453324179218993,0.00011160562345546614,2.9560975765738864e-05,0.0,0.0,3.4824130337989896e-05,0.0,0.0,0.0,0.0,0.0,0.0002781560478928797,0.0001046496117517821,2.771853730222496e-05,0.0,0.0 +96524,35.0,Eastern Counties in South Carolina and Georgia,G1301790010208,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5095.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014198323348826906,0.0,0.0,0.0014198323348826906,0.0005928443045633556,0.0003818585594543824,0.0003894676102383987,0.0,5.56618606265539e-05,0.0005928443045633556,0.0003818585594543824,0.0003894676102383987,0.0,5.56618606265539e-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.0001692029201529653,5.711315617844043e-05,0.0001692029201529653,7.064988242887255e-05,4.5506488166030224e-05,4.641326679095438e-05,0.0,6.633282767108152e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.064988242887255e-05,4.5506488166030224e-05,4.641326679095438e-05,0.0,6.633282767108152e-06 +96525,81.0,the Columbus-Albany Area,G1302150010302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,30234.0,,5256.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006182046341632625,0.003615332018925937,0.0,0.009797378360558565,0.0042383634071385505,0.00046144629351444155,0.00324826920726804,0.0003798289664986762,0.001469470486138855,0.002486387955169204,0.00046144629351444155,0.0013849126403114493,0.0003798289664986762,0.001469470486138855,0.0017519754519693467,0.0018633565669565907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002415536819399705,0.0,0.0,0.0007367030460142825,0.0004465151100860202,0.000978256727954253,0.0002962982609513458,5.498970263531091e-05,0.00016503748179792562,4.5263516499317156e-05,0.00017511408413038314,0.00011705594918426473,0.00012449773275570583,0.0,0.0,0.0,0.0,0.0004231956106992703,4.607487070595481e-05,0.0003243358671345041,3.79254764157191e-05,0.0001467249029988045 +96526,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000900,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,NaturalGas,25413.0,,6770.0,,8.53126424238864,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005828121800447205,0.0052508566701209855,0.0,0.011078978470568192,0.004277050259626707,0.0011079544496049672,0.004578175815773904,0.0004140072093108621,0.0007017907362517522,0.0033794955675660486,0.0011079544496049672,0.0009266645739653279,0.0004140072093108621,0.0,0.0008975546920606581,0.0036515112418085763,0.0007017907362517522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003508337274487707,0.0,0.0,0.0006945262854839359,0.0005425218031295235,0.0010453600129327065,0.00040272811442804287,0.0001320328426064278,0.00011042886996567381,4.933645848379144e-05,0.0,5.996973027213077e-05,0.00024397415131791723,4.688984585872277e-05,0.0,0.0,0.0,0.000403562235146027,0.0001045413420420248,0.0004319750185181258,3.9063762316097435e-05,6.621765491043156e-05 +96527,35.0,Eastern Counties in South Carolina and Georgia,G1302450010706,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,45729.0,,886.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0037664781982784147,0.0002580541008231395,0.0,0.004024562672700992,0.0027105703874244105,0.0010316089313038028,0.0002823833539727787,0.0,0.0,0.002452516286601271,0.0010316089313038028,0.0002823833539727787,0.0,0.0,0.0002580541008231395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7241773425485487e-05,0.0,0.0,0.0004488456740051106,0.00013073241269452723,0.00046608744743059606,0.00029226276317521595,0.00012293532092987842,3.3651209477242966e-05,0.0,0.0,1.7241773425485487e-05,0.0,0.0,0.0,0.0,0.0,0.00031391307222648583,0.00011947135940991656,3.270301579419368e-05,0.0,0.0 +96528,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,14340.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0035280356444976372,0.0,0.0,0.0035280356444976372,0.0018827438266015941,0.0009223492863407565,0.0006227842652569849,0.0,9.999285215082268e-05,0.0018827438266015941,0.0009223492863407565,0.0006227842652569849,0.0,9.999285215082268e-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.00042042532744655375,0.00014456679495984207,0.00042042532744655375,0.0002243608822466031,0.00010991357225505701,7.421531555600604e-05,0.0,1.1915845485685433e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002243608822466031,0.00010991357225505701,7.421531555600604e-05,0.0,1.1915845485685433e-05 +96529,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12708.0,,803.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031082145381969126,0.0006372580031613637,0.0,0.0037453898342845364,0.002761506485081735,0.0003983172671285045,0.0005204756150414616,0.0,6.517317410657426e-05,0.0021242484819203717,0.0003983172671285045,0.0005204756150414616,0.0,6.517317410657426e-05,0.0006372580031613637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2576321797894e-05,0.0,0.0,0.0003703972482020998,0.00015451030827577146,0.00041297356999999373,0.000253140760565784,4.746635659884814e-05,6.202362584646001e-05,0.0,7.766505191007547e-06,4.2576321797894e-05,0.0,0.0,0.0,0.0,0.0,0.00030448878279186903,4.39191942833161e-05,5.738859834404242e-05,0.0,7.1861140147950776e-06 +96530,50.0,the Greater Atlanta and Macon Area,G1300630040622,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,64001.0,,4181.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005702374366963558,0.0012308373501756678,0.0,0.006933211717139226,0.00219709960445884,0.001672552853618504,0.0030635899486681807,0.0,0.0,0.0009662622542831722,0.001672552853618504,0.0030635899486681807,0.0,0.0,0.0012308373501756678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.223691961494254e-05,0.0,0.0,0.0006795421089506782,0.0003044900591882017,0.0007617790285656205,0.00011514780472483481,0.0001993152361346283,0.00036508272531861634,0.0,0.0,8.223691961494254e-05,0.0,0.0,0.0,0.0,0.0,0.00024140390783236693,0.00018376990924775692,0.0003366085834723084,0.0,0.0 +96531,50.0,the Greater Atlanta and Macon Area,G1300670030904,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,27743.0,,1141.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0014992970920410852,0.0001940233450196378,0.0,0.0016933204370607228,0.0006415022065389306,0.00023506913170706008,0.0005022656783072556,0.0,0.0003144834205074766,0.0006415022065389306,0.00023506913170706008,0.00030824233328761796,0.0,0.0003144834205074766,0.0,0.0001940233450196378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2962998191330584e-05,0.0,0.0,0.00017866889577516598,5.5462691920032106e-05,0.00019163189396649655,7.644681730397323e-05,2.8012821752192506e-05,3.673275804509479e-05,0.0,3.747649867390545e-05,0.0,1.2962998191330583e-05,0.0,0.0,0.0,0.0,7.25983577190674e-05,2.6602609840507324e-05,5.684105683827811e-05,0.0,3.558986956864372e-05 +96532,85.0,Rural Climate Zone 3A,G1302770960700,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,61611.0,,4560.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.00295495976462742,0.0007754728174288495,0.0,0.003730450312417689,0.0018357306999865872,0.0005377795922316215,0.0008311638826492353,0.0,0.0005257938679116658,0.0018357306999865872,0.0005377795922316215,0.00048781543374991273,0.0,9.366949938213897e-05,0.0,0.00034334844889932244,0.0004321243685295268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.181311868205429e-05,0.0,0.0,0.0003521371787908096,0.00013877473209413535,0.000403950297472864,0.00021876068752308742,6.408621555075301e-05,5.8132077691070765e-05,0.0,1.1162423815720819e-05,0.0,2.2940783393419325e-05,2.8872335288634948e-05,0.0,0.0,0.0,0.0001987813535195056,5.8233244799877556e-05,9.000224357023047e-05,0.0,5.693537550823807e-05 +96533,50.0,the Greater Atlanta and Macon Area,G1301210010510,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,101614.0,,12394.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009140346822857415,0.003648319017458311,0.0,0.01278866584031573,0.006259605548510947,0.002285485670596224,0.004243574621208555,0.0,0.0,0.0026112865310526363,0.002285485670596224,0.004243574621208555,0.0,0.0,0.003648319017458311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024375907248553154,0.0,0.0,0.0010892371467552456,0.0005558607143511308,0.0013329962192407771,0.0003111818780586491,0.00027235683054879897,0.0005056984381477976,0.0,0.0,0.00024375907248553154,0.0,0.0,0.0,0.0,0.0,0.0006524551219251877,0.00023822217235746655,0.0004423189249581224,0.0,0.0 +96534,50.0,the Greater Atlanta and Macon Area,G1300890023102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,12499.0,,566.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0027189123421059924,0.00044885128918322137,0.0,0.0031677636312892137,0.0015384342786248573,0.0006246038208792496,0.0009292139734611188,0.0,7.551155832398767e-05,0.0011650118406918845,0.0006246038208792496,0.0009292139734611188,0.0,0.0,0.000373422437932973,0.0,7.551155832398767e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9992229308410253e-05,0.0,0.0,0.0003240044302272807,0.0001232314362536371,0.00035399665953569085,0.00013883088167492474,7.443211830250117e-05,0.00011073157430198632,0.0,0.0,2.4952075792790176e-05,0.0,5.045679999738081e-06,0.0,0.0,0.0,0.0001719195807948457,6.97992943477595e-05,0.00010383938983012157,0.0,8.43839456296404e-06 +96535,50.0,the Greater Atlanta and Macon Area,G1301350050545,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,3221.0,,606.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007733111394625244,0.0004803626842778975,0.0,0.0012537565308141613,0.000775130695084789,0.00023017378621649256,0.00021859479589298955,0.0,2.9939960693629282e-05,0.0003246252644267816,0.00023017378621649256,0.00021859479589298955,0.0,0.0,0.0004505054306580075,0.0,2.9939960693629282e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2097736194414534e-05,0.0,0.0,9.21588851591583e-05,5.755308805227221e-05,0.0001242566213535728,3.868701863633116e-05,2.7430821112078884e-05,2.605090197600593e-05,0.0,0.0,3.0102680621724512e-05,0.0,2.000582042420465e-06,0.0,0.0,0.0,7.682123196290547e-05,2.2811938599313488e-05,2.1664374314763045e-05,0.0,2.967273364337578e-06 +96536,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,268799.0,,16642.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.06592685174556456,0.014720086756665187,0.0,0.08064693850222976,0.05975014015481735,0.013204127338326977,0.002020018921996385,0.0006739236832663585,0.004998820621075465,0.04846948027483325,0.013204127338326977,0.002020018921996385,0.0006739236832663585,0.0015593937443943793,0.011280659879984103,0.0,0.003439426876681085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009835094194633961,0.0,0.0,0.007856375836235115,0.002879260771625498,0.00883988525569851,0.005776014530402532,0.0015735104014940732,0.00024072176097166378,8.031018622145257e-05,0.0001858299464976414,0.0007537071916171683,0.0,0.00022980222784622792,0.0,0.0,0.0,0.0065493420183071905,0.0014473329396033434,0.00022141864051409876,7.387023167665072e-05,0.0005479315337296395 +96537,50.0,the Greater Atlanta and Macon Area,G1302470060102,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,24675.0,,1561.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001250752885654785,0.0002655298926267108,0.0,0.0015162650479200756,0.000618204511632981,0.00033217832120468923,0.0003566816806872022,0.0,0.00020920053439520302,0.0004474079400736124,0.00033217832120468923,0.00026196608998128016,0.0,0.00020920053439520302,0.00017079657155936865,9.471559070592207e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7740785587970682e-05,0.0,0.0,0.00014904890290093115,5.762668161683745e-05,0.00016678968848890183,5.3316417161193836e-05,3.95848092064265e-05,3.121780389778231e-05,0.0,2.4929872635528492e-05,1.1411390729762391e-05,6.328210243786016e-06,0.0,0.0,0.0,0.0,6.800271368065833e-05,3.653973214808082e-05,3.923511030813674e-05,0.0,2.3012132352025917e-05 +96538,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,13085.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,5611.956475588368,0.0,0.0,0.000673558699986386,0.0,0.0,0.000673558699986386,0.0004254754829970071,0.00015372223351185782,2.726929586404121e-05,0.0,6.707395725205976e-05,0.0004254754829970071,0.00015372223351185782,2.726929586404121e-05,0.0,6.707395725205976e-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,8.026626460223053e-05,2.6317308000560605e-05,8.026626460223053e-05,5.0702823229348646e-05,1.83186847271931e-05,3.249612123462859e-06,0.0,7.993031640481142e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.0702823229348646e-05,1.83186847271931e-05,3.249612123462859e-06,0.0,7.993031640481142e-06 +96539,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,3274.0,,174.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0007862134429658564,0.0001380381060709041,0.0,0.0009242515490367605,0.00032991851714609733,0.00018311346125882665,0.00036903896302478966,0.0,4.218060760704679e-05,0.00019188041107519324,0.00018311346125882665,0.00036903896302478966,0.0,4.218060760704679e-05,0.0001380381060709041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.225599393981821e-06,0.0,0.0,9.368959591742436e-05,3.9619430782682585e-05,0.00010291519531140618,2.286554413301331e-05,2.1820825306246322e-05,4.397674910409714e-05,0.0,5.026477374067581e-06,9.225599393981821e-06,0.0,0.0,0.0,0.0,0.0,3.6736350254782936e-05,2.038964137981685e-05,4.109240281695699e-05,0.0,4.69680085984941e-06 +96540,35.0,Eastern Counties in South Carolina and Georgia,G1300510011600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,15488.0,,376.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001291019668125463,0.00011078947873470703,0.0,0.0014018091468601702,0.000379569050689988,0.00045813444281210726,0.0005641363429643725,0.0,0.0,0.000268779571955281,0.00045813444281210726,0.0005641363429643725,0.0,0.0,0.00011078947873470703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.401581565815224e-06,0.0,0.0,0.000153849598275041,5.5145836715180934e-05,0.00016125117984085627,3.2030208517194224e-05,5.459545018779121e-05,6.722759682154192e-05,0.0,0.0,7.401581565815224e-06,0.0,0.0,0.0,0.0,0.0,4.3662118621444274e-05,5.269955585227363e-05,6.489303561605664e-05,0.0,0.0 +96541,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,66771.0,,4592.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005705750223656307,0.0013516930197760215,0.0,0.007057443243432326,0.0025255090814505572,0.00241017754098379,0.0021217873106042775,0.0,0.0,0.001173816061674536,0.00241017754098379,0.0021217873106042775,0.0,0.0,0.0013516930197760215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.03125669137634e-05,0.0,0.0,0.0006799432928204162,0.0002721486103568807,0.0007702558597341796,0.0001398814050484368,0.0002872162273602263,0.00025284931763317755,0.0,0.0,9.03125669137634e-05,0.0,0.0,0.0,0.0,0.0,0.00027563638866093146,0.0002630489980447381,0.00023157382252042506,0.0,0.0 +96542,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,46078.0,,4153.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0023718613686061437,0.0007062889471678034,0.0,0.003078150315773947,0.0014300423003343588,0.0007027074141609527,0.0006161832504310951,0.0,0.0003292173508475404,0.0011798491703359937,0.0007027074141609527,0.0004099436863930409,0.0,7.936109771615635e-05,0.00025019312999836505,0.0002062395640380542,0.0002498562531313841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.719014605060262e-05,0.0,0.0,0.00028264958747195677,0.00011777203861029955,0.0003298397335225594,0.00014060007287465344,8.374012214837011e-05,4.885210214196415e-05,0.0,9.457290306969056e-06,1.671645916706548e-05,1.377973588202861e-05,1.6693951001508527e-05,0.0,0.0,0.0,0.0001532364319088413,7.529873542673246e-05,6.602722358350953e-05,0.0,3.52773426034761e-05 +96543,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7254.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014578775888027722,0.0,0.0,0.0014578775888027722,0.0007833186953849807,0.0003705276903520973,0.0002446475241208714,0.0,5.938367894482273e-05,0.0007833186953849807,0.0003705276903520973,0.0002446475241208714,0.0,5.938367894482273e-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.00017373296998049594,5.680605239713311e-05,0.00017373296998049594,9.334685191384109e-05,4.4155199722733414e-05,2.915425910264407e-05,0.0,7.076659241277363e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.334685191384109e-05,4.4155199722733414e-05,2.915425910264407e-05,0.0,7.076659241277363e-06 +96544,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970201,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,21223.0,,5288.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004982318009550406,0.004101016334886522,0.0,0.009083334344436927,0.004353382838843397,0.000646724542982085,0.0029772940325831915,0.0004161904504537123,0.0006898233403576103,0.0022562584299611298,0.000646724542982085,0.000973402106578937,0.0004161904504537123,0.0006898233403576103,0.0020971244088822676,0.002003891926004254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002740041333005467,0.0,0.0,0.0005937366894385777,0.0004569903889282035,0.0008677408227391243,0.0002688755330661619,7.706936578372086e-05,0.00011599912794504022,4.959690243671058e-05,8.2205396286687e-05,0.000140116670882538,0.00013388746241800868,0.0,0.0,0.0,0.0,0.0004158834039385486,6.178229994985906e-05,0.0002844241415546149,3.9759127011993564e-05,6.589957500278165e-05 +96545,85.0,Rural Climate Zone 3A,G1302330010200,ComStock 90.1-2007,gen4_led,1001_5000,Propane,5941.0,,,1313.0,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014266143149293138,0.0,0.00033694861841393844,0.0017636456404169915,0.001134989172924516,0.00022752715985683474,0.0002836852629258244,0.0,0.00011752675178355586,0.000915484599220394,0.00022752715985683474,0.0002836852629258244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021950457370412192,0.00011752675178355586,0.0,0.0,0.0,2.7175562540247863e-05,0.00017001169075661388,7.827110641243821e-05,0.00019718725329686174,0.00010909962345556027,2.711474063838163e-05,3.3807182984241715e-05,0.0,0.0,0.0,0.0,0.0,1.7703471522292057e-05,9.478761504588174e-06,0.0,0.00012689930017786692,2.5439042103717253e-05,3.1717889645856103e-05,0.0,1.3140268567568962e-05 +96546,50.0,the Greater Atlanta and Macon Area,G1300210013202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,181850.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014342231412909785,0.0,0.0,0.014342231412909785,0.009056739133149963,0.003657406602697448,0.0016280856770623732,0.0,0.0,0.009056739133149963,0.003657406602697448,0.0016280856770623732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017091360968007423,0.00040665710564971477,0.0017091360968007423,0.0010792741607725887,0.00043584610130616776,0.00019401583472198586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010792741607725887,0.00043584610130616776,0.00019401583472198586,0.0,0.0 +96547,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,27281.0,,4052.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024307395772032512,0.0011926287903350277,0.0,0.00362336836753828,0.0015669499183481085,0.0008744696418467431,0.001181979496949725,0.0,0.0,0.0003743211280130809,0.0008744696418467431,0.001181979496949725,0.0,0.0,0.0011926287903350277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.968383285616063e-05,0.0,0.0,0.0002896679614296568,0.00016254184640177998,0.0003693517942858174,4.460734464872387e-05,0.00010420936938761478,0.00014085490463236456,0.0,0.0,7.968383285616063e-05,0.0,0.0,0.0,0.0,0.0,0.00015972865720277184,8.913996549680328e-05,0.00012048629996293542,0.0,0.0 +96548,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5424.0,,642.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012702152384882833,0.0005089793317916979,0.0,0.0017791945702799812,0.0011492147896076765,0.00019551952231972272,0.00039285860026171024,0.0,4.168436516461094e-05,0.0006402354578159788,0.00019551952231972272,0.00039285860026171024,0.0,4.168436516461094e-05,0.0005089793317916979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4004882085097566e-05,0.0,0.0,0.00015137042751616104,8.594137514364691e-05,0.0001853753096012586,7.629629374935556e-05,2.3299888699583587e-05,4.68166122347809e-05,0.0,4.967488961332542e-06,3.4004882085097566e-05,0.0,0.0,0.0,0.0,0.0,0.0001197373524967222,2.037129192531495e-05,4.093216440154232e-05,0.0,4.343118075447859e-06 +96549,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030201,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,8736.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0020976995112500546,0.0,0.0,0.0020976995112500546,0.0010698159988179418,0.00047622733059093214,0.00046382126953003604,0.0,8.775220523740518e-05,0.0010698159988179418,0.00047622733059093214,0.00046382126953003604,0.0,8.775220523740518e-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.0002499815557517178,8.336921190798299e-05,0.0002499815557517178,0.00012748931213375664,5.675171699004025e-05,5.527329435223093e-05,0.0,1.0457376124771223e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00012748931213375664,5.675171699004025e-05,5.527329435223093e-05,0.0,1.0457376124771223e-05 +96550,33.0,Rural Lower Plains-Upper South Appalachia,G1300110970300,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,29503.0,,1011.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007069334820549107,0.0007837835702832394,0.0,0.007853118390832347,0.0043370489606635535,0.00043972093832665395,0.002130519912289569,0.00041457323479234177,0.0005313362055432958,0.0043370489606635535,0.00043972093832665395,0.0013467363420063296,0.00041457323479234177,0.0005313362055432958,0.0,0.0007837835702832394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.236641566525948e-05,0.0,0.0,0.0008424410191285856,0.000339772063488314,0.0008948074347938451,0.0005168390010063461,5.240082197539918e-05,0.00016048835785220178,4.9404011450509665e-05,6.331846289083266e-05,0.0,5.236641566525948e-05,0.0,0.0,0.0,0.0,0.000494176130032256,5.0103098574006425e-05,0.00024275771262006638,4.7237695180016724e-05,6.054201190323578e-05 +96551,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,244343.0,,12785.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012847118468826121,0.002174274220941075,0.0,0.015021392689767194,0.008203483621830031,0.004027433866203574,0.0016867070122510435,0.0,0.001103750459121127,0.00700076228526217,0.004027433866203574,0.0007151541278778299,0.0,0.001103750459121127,0.0012027213365678618,0.0009715528843732134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001452720233679669,0.0,0.0,0.0015309664964868737,0.0005395056847806016,0.0016762385198548404,0.0008342674300554334,0.00047994157841199257,8.522354738628709e-05,0.0,0.00013153182773995644,8.035865965214604e-05,6.49133637158209e-05,0.0,0.0,0.0,0.0,0.0009154274525608526,0.0004494216962517184,0.00018821978254855728,0.0,0.00012316760996113554 +96552,50.0,the Greater Atlanta and Macon Area,G1300130180108,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,181173.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01574238699843813,0.0,0.0,0.01574238699843813,0.0058248565856976915,0.005189612424941541,0.0047279179877989,0.0,0.0,0.0058248565856976915,0.005189612424941541,0.0047279179877989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018759885938278815,0.0005567573529721971,0.0018759885938278815,0.0006941364430017022,0.0006184356741162377,0.0005634164767099416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006941364430017022,0.0006184356741162377,0.0005634164767099416,0.0,0.0 +96553,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960900,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,9622.0,,215.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.000965145739315038,7.982175297049054e-05,0.0,0.0010449674922855287,0.0005322096005095571,0.0001258548804117249,0.0003531531342587625,0.0,3.3788625529256196e-05,0.0005322096005095571,0.0001258548804117249,0.00030708125839375605,0.0,0.0,0.0,4.607187586500643e-05,3.3788625529256196e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.333456492926779e-06,0.0,0.0,0.00011501547992566045,3.944016779240907e-05,0.00012034893641858724,6.34229009466415e-05,1.4998003805947693e-05,3.659457517307126e-05,0.0,0.0,0.0,3.0783882379077377e-06,2.257657311569006e-06,0.0,0.0,0.0,6.129459513902756e-05,1.4494710230182858e-05,4.067265672348724e-05,0.0,3.8914369829801275e-06 +96554,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,43994.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.003603389433838475,0.0,0.0,0.003603389433838475,0.0014398642586693215,0.0009142740612148638,0.0012492511139542896,0.0,0.0,0.0014398642586693215,0.0009142740612148638,0.0012492511139542896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042940857598181844,0.00014450358004417947,0.00042940857598181844,0.00017158568960548977,0.00010895217680237752,0.00014887070957395117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017158568960548977,0.00010895217680237752,0.00014887070957395117,0.0,0.0 +96555,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,33705.0,,2692.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0028618364768670823,0.0007924977034255789,0.0,0.0036543341802926614,0.0014416135662282904,0.001232555968128339,0.0009801646459360316,0.0,0.0,0.0006491158628027115,0.001232555968128339,0.0009801646459360316,0.0,0.0,0.0007924977034255789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.295010659304359e-05,0.0,0.0,0.00034103879263558157,0.0001523572188459051,0.0003939888992286252,7.735371741895728e-05,0.00014688099848613124,0.00011680407673049303,0.0,0.0,5.295010659304359e-05,0.0,0.0,0.0,0.0,0.0,0.0001554263277656368,0.00013288696248400192,0.00010567560897898645,0.0,0.0 +96556,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,31641.0,,1517.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002790118844351882,0.0004419966190181645,0.0,0.0032321458369694855,0.0019680270019696916,0.0010526882093136027,0.00021143062568619047,0.0,0.0,0.0015260303829515273,0.0010526882093136027,0.00021143062568619047,0.0,0.0,0.0004419966190181645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9532253852702623e-05,0.0,0.0,0.00033249451787203683,0.00010838512062574954,0.00036202677172473944,0.00018185488315835923,0.00012544736556073432,2.5195888731844643e-05,0.0,0.0,2.9532253852702623e-05,0.0,0.0,0.0,0.0,0.0,0.00022043512209159372,0.0001179096901171475,2.368195951599815e-05,0.0,0.0 +96557,35.0,Eastern Counties in South Carolina and Georgia,G1300730030603,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,16235.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013686643720586512,0.0,0.0,0.0013686643720586512,0.0004771926883229806,0.0003838349059653687,0.0005076367777703017,0.0,0.0,0.0004771926883229806,0.0003838349059653687,0.0005076367777703017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016310159424038175,5.4419221122033365e-05,0.00016310159424038175,5.686630690054702e-05,4.574100587852219e-05,6.0494281461312516e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.686630690054702e-05,4.574100587852219e-05,6.0494281461312516e-05,0.0,0.0 +96558,81.0,the Columbus-Albany Area,G1302150001800,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,21966.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.004798664418354617,0.0,0.0,0.004798664418354617,0.0021758576959336998,0.0014502685380187558,0.0010127481179378194,0.0,0.00015979006646434194,0.0021758576959336998,0.0014502685380187558,0.0010127481179378194,0.0,0.00015979006646434194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005718473515897441,0.00013091676621628258,0.0005718473515897441,0.0002592926598694069,0.00017282563443857572,0.00012068719097236152,0.0,1.9041866309399955e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002592926598694069,0.00017282563443857572,0.00012068719097236152,0.0,1.9041866309399955e-05 +96559,50.0,the Greater Atlanta and Macon Area,G1300670031113,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,29070.0,,1926.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.00157482843169051,0.0003275506968740555,0.0,0.0019023791285645655,0.0007450652475934589,0.0002706894277999462,0.0006181158598258809,0.0,0.00026850859334527963,0.0005718041557967029,0.0002706894277999462,0.00046382625474858136,0.0,0.00026850859334527963,0.00017326109179675598,0.0001542896050772995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1885400237682184e-05,0.0,0.0,0.00018766838693396243,6.578056733521963e-05,0.0002095537871716446,6.81404789252574e-05,3.225738579075674e-05,5.527302104448787e-05,0.0,3.199750117346041e-05,1.1576492969721245e-05,1.0308907267960938e-05,0.0,0.0,0.0,0.0,8.207157131764621e-05,2.981739753715922e-05,6.808764740554428e-05,0.0,2.9577170911294894e-05 +96560,35.0,Eastern Counties in South Carolina and Georgia,G1300510010801,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,101251.0,,3118.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.007371681446169673,0.000530208727905259,0.0,0.007901890174074933,0.004482412670603549,0.0011158780263324432,0.0012960539590830197,0.0,0.0010075632484173407,0.004057610941340504,0.0011158780263324432,0.001190646960440806,0.0,0.0010075632484173407,0.000424801729263045,0.00010540699864221391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.54255970378086e-05,0.0,0.0,0.0008784690396208473,0.00028772854556867076,0.0009138946366586559,0.0004835376586499872,0.0001329770290922722,0.00014188709855461672,0.0,0.0001200693662168958,2.8382887888872936e-05,7.042709148935667e-06,0.0,0.0,0.0,0.0,0.0005184143045160652,0.00012905708899577976,0.0001498953713520641,0.0,0.00011652992240312661 +96561,81.0,the Columbus-Albany Area,G1302150002400,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,54110.0,,1797.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.004738751418821989,0.0005288126061157166,0.0,0.005267564024937706,0.00285278304300926,0.000896382020743303,0.001518398961185143,0.0,0.0,0.0023239704368935438,0.000896382020743303,0.001518398961185143,0.0,0.0,0.0005288126061157166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5332476965511676e-05,0.0,0.0,0.0005647065259931338,0.0002235502501742015,0.0006000390029586455,0.0002769424170924627,0.00010681986290441266,0.0001809442459962586,0.0,0.0,3.5332476965511676e-05,0.0,0.0,0.0,0.0,0.0,0.00032496635725369293,0.00010210871124688951,0.00017296393445806306,0.0,0.0 +96562,35.0,Eastern Counties in South Carolina and Georgia,G1301030030305,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,Electricity,54471.0,,122.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.004853285029525017,3.602959779350307e-05,0.0,0.004889314627318519,0.002056817414072041,0.0010604793456171196,0.0017719564884167635,0.0,0.0,0.002020787816278538,0.0010604793456171196,0.0017719564884167635,0.0,0.0,3.602959779350307e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4066238152903354e-06,0.0,0.0,0.0005783570423796276,0.00019482950052532232,0.000580763666194918,0.0002408135639241497,0.00012637537134220747,0.00021116079266550065,0.0,0.0,2.4066238152903354e-06,0.0,0.0,0.0,0.0,0.0,0.0002443133471950752,0.00012596609537937666,0.0002104769328610751,0.0,0.0 +96563,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,142446.0,,4532.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012676495329297623,0.0013341692545800331,0.0,0.014010633894271358,0.0052670423016306445,0.0034775006688052977,0.0052660909238354155,0.0,0.0,0.0039328730470506125,0.0034775006688052977,0.0052660909238354155,0.0,0.0,0.0013341692545800331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.914060249780015e-05,0.0,0.0,0.0015106320081791403,0.000546049625969087,0.0015997726106769404,0.00046867243308556215,0.0004144066386093735,0.0006275492792666232,0.0,0.0,8.914060249780015e-05,0.0,0.0,0.0,0.0,0.0,0.0006014053380461802,0.0003970705655109675,0.0006012967071197926,0.0,0.0 +96565,35.0,Eastern Counties in South Carolina and Georgia,G1302450010201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,14992.0,,375.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033368168900123583,0.0002973319300928102,0.0,0.003634148820105168,0.0021884291711420745,0.0006110398607860032,0.0007459350980548136,0.0,8.882739719601617e-05,0.001979841931171541,0.0006110398607860032,0.0007459350980548136,0.0,0.0,0.00020858723997053329,0.0,8.882739719601617e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.986775872257705e-05,0.0,0.0,0.00039764237114746197,0.0001488799544580136,0.00041751012987003904,0.00023593414501246605,7.281650360732304e-05,8.88917225276728e-05,0.0,0.0,1.393782684237533e-05,0.0,5.935458377760153e-06,0.0,0.0,0.0,0.00025141825298955926,7.019947290577717e-05,8.569694723026586e-05,0.0,1.020495856805694e-05 +96566,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,94024.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.00778466241509748,0.0,0.0,0.00778466241509748,0.0045082014965483145,0.0024749016293868944,0.0008015592891622705,0.0,0.0,0.0045082014965483145,0.0024749016293868944,0.0008015592891622705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009276844605960903,0.00028233452447123003,0.0009276844605960903,0.0005372344040857859,0.0002949296527789659,9.552040373133831e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005372344040857859,0.0002949296527789659,9.552040373133831e-05,0.0,0.0 +96567,50.0,the Greater Atlanta and Macon Area,G1300450910600,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,84135.0,,2023.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.004330889001907779,0.0003440753937175447,0.0,0.004674982125986743,0.0023247695286744835,0.0010372438734345092,0.0008600998324867615,0.0,0.0004528511610295686,0.0023247695286744835,0.0010372438734345092,0.0005160244387692168,0.0,0.0004528511610295686,0.0,0.0003440753937175447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2989674771107875e-05,0.0,0.0,0.0005161042782867335,0.00018386684259088888,0.0005390939530578413,0.0002770386170716926,0.00012360649290952492,6.149370728088089e-05,0.0,5.396546102463505e-05,0.0,2.2989674771107872e-05,0.0,0.0,0.0,0.0,0.00026807999718223864,0.00011960941987490767,9.918211582933232e-05,0.0,5.2220375600844695e-05 +96568,50.0,the Greater Atlanta and Macon Area,G1301350050609,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,9074.0,,1287.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.00046708864124987107,0.00021893450281481195,0.0,0.000686023144064683,0.00034636261034073153,0.00016489236120649107,4.671950234183914e-05,0.0,0.0001280664005370414,0.00020627502476089433,0.00016489236120649107,4.671950234183914e-05,0.0,4.920175294064653e-05,0.00014008758557983717,0.0,7.886464759639487e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4628385478282887e-05,0.0,0.0,5.56614344374465e-05,2.8733622154722598e-05,7.028981991572939e-05,2.4581123908489698e-05,1.9649686466301718e-05,5.567411165452154e-06,0.0,5.863212897202932e-06,9.36012906251321e-06,0.0,5.269441092274239e-06,0.0,0.0,0.0,3.5488256798660546e-05,1.689484454709716e-05,4.7868726216775285e-06,0.0,1.312166259824546e-05 +96569,35.0,Eastern Counties in South Carolina and Georgia,G1302450010507,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,513215.0,,49277.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02446837747943121,0.008379953909043815,0.0,0.03284833138847504,0.012213240317697813,0.007039893192916226,0.007732529761790588,0.0,0.005862668116070399,0.011632872397335224,0.007039893192916226,0.004955263679314937,0.0,0.0008403482098648228,0.0005803679203625885,0.002777266082475651,0.005022319906205577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005598995259713799,0.0,0.0,0.0029158495676386096,0.001280414848383303,0.0034757490936099893,0.00138626706975887,0.0008389305559815952,0.0005905092591044023,0.0,0.00010014268279374212,3.87767912600711e-05,0.0001855606820696629,0.00033556205264164595,0.0,0.0,0.0,0.0012923079246324504,0.0007449054898713885,0.0008181947811292955,0.0,0.0006203408979768536 +96570,50.0,the Greater Atlanta and Macon Area,G1302970110700,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,24600.0,,4629.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026124801034376807,0.0007871393952432441,0.0,0.0033996017683195047,0.0018336562477004406,0.0005294995134484569,0.0005593751724412458,0.0,0.0004770885650907807,0.0013600960245322505,0.0005294995134484569,0.000245796000366192,0.0,0.0004770885650907807,0.0004735602231681902,0.00031357917207505383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2591721514209136e-05,0.0,0.0,0.0003113233627055004,0.00011430782215141974,0.0003639150842197095,0.0001620795761860866,6.309926298033231e-05,2.9290955086269308e-05,0.0,5.6853568452812124e-05,3.1640326386372595e-05,2.095139512783653e-05,0.0,0.0,0.0,0.0,0.00019628627506620004,5.668100947192488e-05,5.987909080597903e-05,0.0,5.107060684672362e-05 +96571,50.0,the Greater Atlanta and Macon Area,G1301210004100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,19148.0,,1700.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008006871808702352,0.0013482080090244503,0.0,0.009355079817726802,0.005571975557817141,0.0025098288596930233,0.0010832145447637093,0.0,0.00019006085545292844,0.004223767548792691,0.0025098288596930233,0.0010832145447637093,0.0,0.00019006085545292844,0.0013482080090244503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.008047241320772e-05,0.0,0.0,0.0009541657314886268,0.00039513563201544786,0.0010442462039018344,0.0005033394250737803,0.00029909217320270504,0.0001290848939707318,0.0,2.2649239241409608e-05,9.008047241320772e-05,0.0,0.0,0.0,0.0,0.0,0.000621963087205193,0.00028015573466422423,0.0001209121352697998,0.0,2.121524676261739e-05 +96572,50.0,the Greater Atlanta and Macon Area,G1301170130304,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,21845.0,,360.0,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.005372982338400368,0.0002855875256218285,0.0,0.005658569864022195,0.0022087751112819442,0.001182711154472096,0.001981413365572588,0.0,0.0002855875256218285,0.0022087751112819442,0.001182711154472096,0.001981413365572588,0.0,0.0,0.0,0.0,0.0002855875256218285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9081649584599305e-05,0.0,0.0,0.0006402859709343459,0.00021643031530669228,0.0006593676205189454,0.0002632146595002254,0.00014094097322149413,0.00023612048220051298,0.0,0.0,0.0,0.0,1.9081649584599305e-05,0.0,0.0,0.0,0.0002573785999616902,0.0001378159956358934,0.00023088516136007679,0.0,3.327822607907272e-05 +96573,50.0,the Greater Atlanta and Macon Area,G1301210010400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,52957.0,,5659.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004627478621540366,0.001648618230282293,0.0,0.006276066478223222,0.004784145647440289,0.0012313153476070213,0.0002606358567753484,0.0,0.0,0.003135527417157996,0.0012313153476070213,0.0002606358567753484,0.0,0.0,0.001648618230282293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011015036055735866,0.0,0.0,0.0005514460995056175,0.000289128796971212,0.0006615964600629763,0.00037365366876814155,0.00014673304864956305,3.1059382087912886e-05,0.0,0.0,0.00011015036055735865,0.0,0.0,0.0,0.0,0.0,0.0005043244579634,0.0001298000711153468,2.7475132840987468e-05,0.0,0.0 +96574,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,2502.0,,136.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0004517460367640972,0.00010768461000857827,0.0,0.0005594306467726753,0.0003174297490114619,0.00010454174120648459,0.00011190267076928296,0.0,2.5473778711706688e-05,0.00020974513900288364,0.00010454174120648459,0.00011190267076928296,0.0,2.5473778711706688e-05,0.00010768461000857827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.1938954939441736e-06,0.0,0.0,5.3836003046989104e-05,2.1317461990447494e-05,6.1029898540933276e-05,2.4995991162058654e-05,1.245856972746141e-05,1.3335794969347541e-05,0.0,3.035790724729521e-06,7.1938954939441736e-06,0.0,0.0,0.0,0.0,0.0,3.462932445300147e-05,1.140475927790356e-05,1.2207784258705314e-05,0.0,2.7790077987296648e-06 +96575,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,59121.0,,9092.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005267564024937706,0.0026764098756163622,0.0,0.007944004590160364,0.004493203878834069,0.0013559281854451045,0.002094872525881192,0.0,0.0,0.0018167940032177067,0.0013559281854451045,0.002094872525881192,0.0,0.0,0.0026764098756163622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001788223046723145,0.0,0.0,0.0006277271915430184,0.0003808093545234416,0.000806549496215333,0.00021650443959540396,0.0001615837961824379,0.0002496426129965418,0.0,0.0,0.0001788223046723145,0.0,0.0,0.0,0.0,0.0,0.00045619199784390375,0.00013766648577085515,0.00021269101260057422,0.0,0.0 +96576,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,191227.0,,10951.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.017414540887174767,0.0032234521078729136,0.0,0.020638023684653978,0.01285154884361972,0.0030585875428416546,0.0047279179877989,0.0,0.0,0.009628096735746806,0.0030585875428416546,0.0047279179877989,0.0,0.0,0.0032234521078729136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021537267675848887,0.0,0.0,0.0020752589314498343,0.000865832108937945,0.002290631608208323,0.0011473626478684116,0.0003644862736851115,0.0005634173243446203,0.0,0.0,0.00021537267675848887,0.0,0.0,0.0,0.0,0.0,0.0014264042160935246,0.00033947520407755504,0.0005247555943024604,0.0,0.0 +96577,50.0,the Greater Atlanta and Macon Area,G1301990970500,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,10852.0,,365.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005004926421652506,6.203853460876475e-05,0.0,0.0005625311767740153,0.00026058312179051604,0.00010253468009216537,5.609886353304707e-05,0.0,0.00014333224171970686,0.00026058312179051604,0.00010253468009216537,5.609886353304707e-05,0.0,8.12937071109421e-05,0.0,0.0,6.203853460876475e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.144927159058746e-06,0.0,0.0,5.964340174356416e-05,2.1558458951852145e-05,6.37883289026229e-05,3.10535310835044e-05,1.2218995050412054e-05,6.685267221079672e-06,0.0,9.687721304883153e-06,0.0,0.0,4.144927159058746e-06,0.0,0.0,0.0,2.9548872250192232e-05,1.1626939390546484e-05,6.361341212465687e-06,0.0,1.625318658709628e-05 +96578,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,75458.0,,6762.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009304137251668254,0.001990343726831216,0.0,0.011294480978499472,0.0035787149903751207,0.00298784800032545,0.0047279179877989,0.0,0.0,0.0015883712635439053,0.00298784800032545,0.0047279179877989,0.0,0.0,0.001990343726831216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001329839538353717,0.0,0.0,0.0011087557478450007,0.00046526746257285627,0.0012417397016803722,0.00018928308133570997,0.00035605597321278145,0.0005634166932965094,0.0,0.0,0.0001329839538353717,0.0,0.0,0.0,0.0,0.0,0.00039345167724014034,0.0003284904805854417,0.0005197975438547901,0.0,0.0 +96579,50.0,the Greater Atlanta and Macon Area,G1300570091005,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,26296.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0025676018548709124,0.0,0.0,0.0025676018548709124,0.0016797815433054269,0.0006855017657106209,0.00020231854585486489,0.0,0.0,0.0016797815433054269,0.0006855017657106209,0.00020231854585486489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003059757918012848,8.224660678368168e-05,0.0003059757918012848,0.00020017608524118408,8.168982474700354e-05,2.410988181309719e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020017608524118408,8.168982474700354e-05,2.410988181309719e-05,0.0,0.0 +96580,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,144970.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011918953087445127,0.0,0.0,0.011918953087445127,0.004347919282620744,0.0029507442663115266,0.004620289538512857,0.0,0.0,0.004347919282620744,0.0029507442663115266,0.004620289538512857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014203569934481397,0.00041599023008821056,0.0014203569934481397,0.0005181325502928173,0.00035163409267440594,0.0005505903504809165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005181325502928173,0.00035163409267440594,0.0005505903504809165,0.0,0.0 +96581,35.0,Eastern Counties in South Carolina and Georgia,G1302450000100,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11780.0,,414.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026843407852829614,0.00032867791104000763,0.0,0.003013018696322969,0.0021728802412790847,0.00038227209482307893,0.0003861593272888263,0.0,7.170703293197954e-05,0.0018442023302390768,0.00038227209482307893,0.0003861593272888263,0.0,7.170703293197954e-05,0.00032867791104000763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1961288389147956e-05,0.0,0.0,0.00031988490003536426,0.00012478614733408967,0.00034184618842451225,0.00021976810146008606,4.555422750688482e-05,4.601745742744379e-05,0.0,8.54511364094962e-06,2.1961288389147956e-05,0.0,0.0,0.0,0.0,0.0,0.00024652712221489946,4.337120732632709e-05,4.3812238642713365e-05,0.0,8.13562024057239e-06 +96582,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,112411.0,,2815.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005397068825179813,0.0004787197583414257,0.0,0.005875770853159819,0.00245446712246217,0.0013032170250967213,0.0008877769266634639,0.0,0.0012303097789374642,0.0019757473641207443,0.0013032170250967213,0.0008877769266634639,0.0,0.0012303097789374642,0.0004787197583414257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1984854663923045e-05,0.0,0.0,0.0006431574395543689,0.00017683222352500957,0.0006751422942182919,0.00023544569414896339,0.00015530165580516638,0.0001057945254254372,0.0,0.00014661345128459764,3.1984854663923045e-05,0.0,0.0,0.0,0.0,0.0,0.00028202504923270286,0.00014974323440727376,0.00010200802005396594,0.0,0.00014136599052434938 +96583,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,33403.0,,1252.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.008322191793412875,0.0009708954223038125,0.0,0.00929308721571669,0.0034339148745711674,0.0010674431972876347,0.0039027456948024916,0.0004168373367182605,0.0004721461123371336,0.0024630194522673554,0.0010674431972876347,0.0039027456948024916,0.0004168373367182605,0.0004721461123371336,0.0009708954223038125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.486837718197561e-05,0.0,0.0,0.0009917392076682421,0.00033359081544098116,0.0010566075848502177,0.0002935131778621712,0.00012720510377408148,0.0004650825190255316,4.967368456597152e-05,5.626472244048647e-05,6.486837718197561e-05,0.0,0.0,0.0,0.0,0.0,0.00039043004956045306,0.00012136640413138534,0.0004437352848573073,4.739366815372255e-05,5.3682178147349376e-05 +96584,50.0,the Greater Atlanta and Macon Area,G1300210011701,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,47863.0,,601.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0024637401014848573,0.00010221553358660441,0.0,0.0025659556350714615,0.001592328298412102,0.0008169618631517731,0.00012194942584712317,0.0,3.471604766046339e-05,0.0014901127648254977,0.0008169618631517731,0.00012194942584712317,0.0,3.471604766046339e-05,0.00010221553358660441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.829636863084906e-06,0.0,0.0,0.0002935988262219049,8.49249300823365e-05,0.00030042846308498983,0.00017757366470082296,9.735566017895388e-05,1.4532461547211074e-05,0.0,4.137039794917023e-06,6.829636863084906e-06,0.0,0.0,0.0,0.0,0.0,0.00018643375469169483,9.565192538447827e-05,1.4278141866754377e-05,0.0,4.0646411420623835e-06 +96585,50.0,the Greater Atlanta and Macon Area,G1301430010400,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,26805.0,,2405.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0013797944560699292,0.00040902170759919807,0.0,0.0017888161636691272,0.0006666083983097253,0.0005756871049476945,0.00029322471716483324,0.0,0.0002532782128854543,0.0005518752295605635,0.0005756871049476945,0.00019829636212187056,0.0,5.391802907838058e-05,0.00011473316874916167,9.492835504296269e-05,0.0001993601838070737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7328037810770936e-05,0.0,0.0,0.00016442808387129263,7.309496043374378e-05,0.00019175612168206358,6.576616258564982e-05,6.86037888901068e-05,2.3630686961315543e-05,0.0,6.425332533025802e-06,7.66568696837742e-06,6.34246453850915e-06,1.3319886303884365e-05,0.0,0.0,0.0,7.145856781524973e-05,6.171205783422463e-05,3.143287481790036e-05,0.0,2.7150720569216754e-05 +96586,50.0,the Greater Atlanta and Macon Area,G1302230120501,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,20317.0,,3021.0,,8.53126424238864,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004769654150080177,0.0023429411894105912,0.0,0.007112595339490768,0.002564418874235289,0.0006791497169925645,0.0029175379138955495,0.0003137398383058876,0.0006377489960614784,0.002564418874235289,0.0006791497169925645,0.0012123457205464366,0.0003137398383058876,0.0,0.0,0.0017051921933491129,0.0006377489960614784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015654163263806772,0.0,0.0,0.0005683902894126154,0.00033905126581745246,0.000724931922050683,0.00030559674564187576,8.093293392968767e-05,0.00014447285134037475,3.738775850067723e-05,0.0,0.0,0.00011393097322076175,4.261065941730596e-05,0.0,0.0,0.0,0.0002613714143303892,6.922048650315125e-05,0.00029736211138471256,3.197707913230466e-05,6.500083070012549e-05 +96587,50.0,the Greater Atlanta and Macon Area,G1300630040522,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,NaturalGas,281927.0,,39940.0,,9.729435225087556,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.06485454953031809,0.0353270462786115,0.0,0.10018168802618237,0.07845152236545878,0.013624914662730971,0.0021270831524660408,0.000656217970733909,0.005321949874792667,0.04681639380162131,0.013624914662730971,0.0021270831524660408,0.000656217970733909,0.0016300321600186305,0.031635128563837475,0.0,0.0036919177147740367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002360348226470098,0.0,0.0,0.007728595771110128,0.004150365868208443,0.010088943997580225,0.005579022378140049,0.0016236556819331975,0.00025348053414916706,7.820027230579523e-05,0.00019424789394002756,0.002113675709282711,0.0,0.0002466725171873876,0.0,0.0,0.0,0.007900575756551141,0.0013721170376783543,0.00021421103223792488,6.608539432086505e-05,0.0005359547767919397 +96588,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,30055.0,,346.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0034022278524601848,0.00012856727007577067,0.0,0.0035307951225359555,0.0022892956248784235,0.0002982078693499491,0.0008723820128046719,0.0,7.087086707913942e-05,0.0022892956248784235,0.0002982078693499491,0.0007438147427289013,0.0,7.087086707913942e-05,0.0,0.00012856727007577067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.590227726464331e-06,0.0,0.0,0.0004054356843748431,0.00014374638103937777,0.00041402591210130745,0.0002728101052190712,3.5536747342901634e-05,8.863869568533523e-05,0.0,8.445518566809654e-06,0.0,8.590227726464331e-06,0.0,0.0,0.0,0.0,0.0002684459664935344,3.496826658543763e-05,0.00010229671958219111,0.0,8.310415746461205e-06 +96589,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,323411.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02723233007944767,0.0,0.0,0.02723233007944767,0.00979848542991165,0.006527617880308788,0.010906257458833531,0.0,0.0,0.00979848542991165,0.006527617880308788,0.010906257458833531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003245225684323934,0.0009506798660085958,0.003245225684323934,0.001167667125503205,0.0007778839761720413,0.0012996782398714928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001167667125503205,0.0007778839761720413,0.0012996782398714928,0.0,0.0 +96590,50.0,the Greater Atlanta and Macon Area,G1300890023315,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,44561.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0038733045212267707,0.0,0.0,0.0038733045212267707,0.001861600828412353,0.0007888149506698546,0.001222858052538265,0.0,0.0,0.001861600828412353,0.0007888149506698546,0.001222858052538265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046157527857933005,0.00017851415874942073,0.00046157527857933005,0.00022184388453552108,9.40017699635091e-05,0.000145725966850795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022184388453552108,9.40017699635091e-05,0.000145725966850795,0.0,0.0 +96591,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,129902.0,,11027.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011454977797555973,0.003212372623735508,0.0,0.014667350421291478,0.010954906856412825,0.00276934330233646,0.0009430698889427564,0.0,0.0,0.007742534232677316,0.00276934330233646,0.0009430698889427564,0.0,0.0,0.003212372623735508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002146313393648636,0.0,0.0,0.0013650670852554216,0.0006011945038059582,0.0015796984246202854,0.000922662516181058,0.00033001717302312246,0.00011238377648937143,0.0,0.0,0.0002146313393648636,0.0,0.0,0.0,0.0,0.0,0.0011798619795581004,0.0002982629531768182,0.0001015702205973834,0.0,0.0 +96592,50.0,the Greater Atlanta and Macon Area,G1300670031001,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,84532.0,,18416.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008077565756767968,0.005420981366819921,0.0,0.01349851643398159,0.00670564828644176,0.0023878661972053603,0.004405001950334471,0.0,0.0,0.0012846669196218386,0.0023878661972053603,0.004405001950334471,0.0,0.0,0.005420981366819921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036219777597998294,0.0,0.0,0.0009625867903226846,0.000645319773249189,0.0013247845663026672,0.00015309109749510861,0.0002845570717343984,0.0005249349638763239,0.0,0.0,0.00036219777597998294,0.0,0.0,0.0,0.0,0.0,0.0006581122748103094,0.00023435229344832581,0.00043231999804403204,0.0,0.0 +96593,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14544.0,,1650.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011683205023731238,0.00048057109030410925,0.0,0.0016488915926772332,0.0011331175006247696,0.00041144077798378623,0.00010430294046923978,0.0,0.0,0.0006525464103206602,0.00041144077798378623,0.00010430294046923978,0.0,0.0,0.00048057109030410925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.210904436979161e-05,0.0,0.0,0.00013922667301904376,6.702079587153262e-05,0.00017133571738883537,7.776279327027521e-05,4.9030664570803766e-05,1.2429595610227385e-05,0.0,0.0,3.210904436979161e-05,0.0,0.0,0.0,0.0,0.0,0.0001177418216683164,4.275265952712738e-05,1.0838080083873869e-05,0.0,0.0 +96594,85.0,Rural Climate Zone 3A,G1301470960400,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,127179.0,,1174.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006172736676584284,0.00019967933031263464,0.0,0.006372398276535498,0.0023399112573272087,0.0023062944920747884,0.0012059482623463114,0.0,0.0005202619951486094,0.002140231927014574,0.0023062944920747884,0.0012059482623463114,0.0,0.0005202619951486094,0.00019967933031263464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.334134077160724e-05,0.0,0.0,0.0007355921244692981,0.00020217093587719692,0.0007489334652409054,0.0002550469641806976,0.0002748362928735682,0.0001437103331597575,0.0,6.19985342552747e-05,1.3341340771607242e-05,0.0,0.0,0.0,0.0,0.0,0.0002750044442073108,0.00027105354230223203,0.00014173235441763748,0.0,6.114520812274667e-05 +96595,50.0,the Greater Atlanta and Macon Area,G1300630040611,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,22623.0,,2295.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00528530336370818,0.0017796649745552271,0.0,0.007064968338263405,0.003488819346274698,0.0007192566653945543,0.001831901040417496,0.0004209612366547555,0.0006040300495219023,0.003488819346274698,0.0007192566653945543,0.0006562661153841713,0.0004209612366547555,0.0,0.0,0.0011756349250333247,0.0006040300495219023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011890537297609112,0.0,0.0,0.0006298381843855788,0.0003329407578458602,0.0007487435573616699,0.00041575506484555755,8.571226305570006e-05,7.82058152849985e-05,5.0165041199322604e-05,0.0,0.0,7.854810385294146e-05,4.0357269123149655e-05,0.0,0.0,0.0,0.00036974419179973693,7.622663945808788e-05,0.00019414440887273538,4.4613365375919686e-05,6.401495185519017e-05 +96596,50.0,the Greater Atlanta and Macon Area,G1302550160900,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,112653.0,,8043.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.005798856545319629,0.0013677732710271333,0.0,0.007166629816346763,0.002139895050147593,0.0014326841241859467,0.002676876776115312,0.0,0.0009171738658979114,0.001735217281096308,0.0014326841241859467,0.002455211797641812,0.0,0.00017576107275698343,0.00040467776905128515,0.0002216649784735001,0.000741412793140928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.138627655811503e-05,0.0,0.0,0.0006910390383158033,0.00028937241464400704,0.0007824253148739184,0.00020678264272041273,0.000170730324444197,0.0002925830612025417,0.0,2.094512284311822e-05,2.7038102953766607e-05,1.4810303326673241e-05,4.95366856429506e-05,0.0,0.0,0.0,0.00023362558152366792,0.0001564149894311793,0.00029225119869500467,0.0,0.00010013354522406656 +96597,50.0,the Greater Atlanta and Macon Area,G1301210010113,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,39486.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.003481907945146118,0.0,0.0,0.003481907945146118,0.0022656579028602214,0.000973473861979946,0.0002427761803059503,0.0,0.0,0.0022656579028602214,0.000973473861979946,0.0002427761803059503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000414932920189729,0.00012841050727681403,0.000414932920189729,0.0002699945158214911,0.00011600718877212059,2.8931215596117312e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002699945158214911,0.00011600718877212059,2.8931215596117312e-05,0.0,0.0 +96598,50.0,the Greater Atlanta and Macon Area,G1300890023803,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4491.0,,839.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0002880219551039406,0.00024686719305872114,0.0,0.0005348891481626618,0.000305116065811761,0.00014061977605607417,8.91839959011243e-05,0.0,0.0,5.824887275303989e-05,0.00014061977605607417,8.91839959011243e-05,0.0,0.0,0.00024686719305872114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.649491900397699e-05,0.0,0.0,3.4323522956478126e-05,2.8947869777187223e-05,5.0818441960455124e-05,6.941507359765104e-06,1.6757632625102056e-05,1.0628040246299995e-05,0.0,0.0,1.649491900397699e-05,0.0,0.0,0.0,0.0,0.0,2.8988292499331275e-05,1.335992317762381e-05,8.473142024045133e-06,0.0,0.0 +96599,50.0,the Greater Atlanta and Macon Area,G1301350050533,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,11705.0,,166.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0028107171939566232,0.0001315869543192381,0.0,0.0029423041482758614,0.0010275526841371555,0.0008712363147698644,0.0009600637119658805,0.0,8.336873032922188e-05,0.0008959657298179171,0.0008712363147698644,0.0009600637119658805,0.0,8.336873032922188e-05,0.0001315869543192381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.793090796016575e-06,0.0,0.0,0.00033494322840659586,0.00011018294487723237,0.0003437363192026124,0.00010676906760030169,0.000103822150660166,0.00011440739746185748,0.0,9.934756774771912e-06,8.793090796016575e-06,0.0,0.0,0.0,0.0,0.0,0.00012004441404844011,0.00010178266722362106,0.00011215997732407378,0.0,9.739598306570157e-06 +96600,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,38022.0,,7719.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.008708382893348163,0.005986608935261519,0.0,0.014694991828609682,0.007326714693056229,0.0011433714725889825,0.0039921777208762835,0.0004170799190674661,0.001815567162237653,0.005159645706819687,0.0011433714725889825,0.001988285794872029,0.0004170799190674661,0.0,0.002167068986236543,0.002003891926004254,0.001815567162237653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003999898048400864,0.0,0.0,0.0010377640251149037,0.0006714086017368697,0.0014377538299549903,0.0006148667051567087,0.0001362537449406175,0.0002369408298688008,4.970274514877687e-05,0.0,0.000144790733828331,0.00013388820767663056,0.00012130546069580284,0.0,0.0,0.0,0.0007168436861884077,0.00011186714038013981,0.00039059353519857725,4.080698091094491e-05,0.00017763457588085418 +96601,81.0,the Columbus-Albany Area,G1302150010607,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,198505.0,,28893.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01021809593818353,0.004913508678170712,0.0,0.015131604616354247,0.005115439764383695,0.0036931810927127383,0.004330977653714877,0.0,0.0019919883751815127,0.004803491785559285,0.0036931810927127383,0.0013692448910249976,0.0,0.00035216043852508876,0.00031194797882440903,0.00296173276268988,0.0016398279366564234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003282922498267121,0.0,0.0,0.0012176710532017074,0.000621110597309718,0.0015459633030284194,0.0005724229775246673,0.00044010936460512403,0.00016317030869861452,0.0,4.196628947986277e-05,2.0842560887729587e-05,0.0001978858644065598,0.00010956382453242276,0.0,0.0,0.0,0.0005226334123244444,0.00037732432121583703,0.0004424866158373442,0.0,0.0002035171421781307 +96602,50.0,the Greater Atlanta and Macon Area,G1301390000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,4201.0,,714.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00026552647368772444,0.00021019311353296632,0.0,0.0004757195872206908,0.0002450565062871567,0.00015117700062248392,7.948608031105021e-05,0.0,0.0,3.4863392754190364e-05,0.00015117700062248392,7.948608031105021e-05,0.0,0.0,0.00021019311353296632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4044206409805109e-05,0.0,0.0,3.164350491655294e-05,2.6421738704500015e-05,4.568771132635805e-05,4.154764399584391e-06,1.801617027495837e-05,9.472570242010186e-06,0.0,0.0,1.404420640980511e-05,0.0,0.0,0.0,0.0,0.0,2.3535021930260563e-05,1.4518912714898381e-05,7.633776681199108e-06,0.0,0.0 +96603,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970201,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,112990.0,,4135.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005816161378065602,0.0007032393250035542,0.0,0.006519400703069155,0.002874924913177302,0.0011210375615056786,0.0012291573054451605,0.0,0.0012942986533024347,0.0023539182428490503,0.0011210375615056786,0.0010469246507698578,0.0,0.0012942986533024347,0.0005210066703282516,0.00018223265467530268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.698602451589582e-05,0.0,0.0,0.0006931009996963315,0.00020649946199870068,0.0007400870242122272,0.000280512004614413,0.0001335919353109737,0.00012476003929187,0.0,0.00015423913337285922,3.481038576001813e-05,1.2175638755877702e-05,0.0,0.0,0.0,0.0,0.0003263635295227865,0.00012726098466907943,0.00013953481522425436,0.0,0.00014692970755939913 +96604,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,11693.0,,5277.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.002238738895252299,0.0036300346129841377,0.0,0.005868701788265421,0.0010349191817552676,0.00019558036095957134,0.003673568635390613,0.0003715094498608652,0.0005931241602991033,0.0006192302297487858,0.00019558036095957134,0.000971590447348483,0.0003715094498608652,8.082840733459366e-05,0.0004156889520064816,0.0027019781880421303,0.0005122957529645097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002425353511051591,0.0,0.0,0.0002667835909341813,0.0003097196176278378,0.0005093189420393404,7.379175153374086e-05,2.3306706790886187e-05,0.00011578142900481673,4.427163226138263e-05,9.63207134335487e-06,2.7773637630013476e-05,0.0001805286445950876,3.422827701711288e-05,0.0,0.0,0.0,8.98161061449343e-05,1.697356351054995e-05,0.0003188129433714261,3.224167912895077e-05,5.147464988347931e-05 +96605,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12547.0,,1227.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.00110635835952011,0.00035734539738515014,0.0,0.0014637341305046981,0.00104664386302549,0.00030546728954547014,0.00011159260433430021,0.0,0.0,0.00068929846564034,0.00030546728954547014,0.00011159260433430021,0.0,0.0,0.00035734539738515014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3876020473869375e-05,0.0,0.0,0.00013184428032397805,5.548329745211073e-05,0.00015572030079784744,8.214342066362e-05,3.6402413925003365e-05,1.3298445735354714e-05,0.0,0.0,2.3876020473869375e-05,0.0,0.0,0.0,0.0,0.0,0.00011134788332246735,3.249733487837878e-05,1.1871851282008912e-05,0.0,0.0 +96606,50.0,the Greater Atlanta and Macon Area,G1302470060307,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,100244.0,,8979.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.008337158188870184,0.0026156832627808736,0.0,0.010952841451651058,0.007022983661996976,0.002551868330362157,0.0013779894592919248,0.0,0.0,0.004407300399216103,0.002551868330362157,0.0013779894592919248,0.0,0.0,0.0026156832627808736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017476439380257906,0.0,0.0,0.0009935220605133718,0.0004202378950241221,0.001168286454315951,0.000525208959064261,0.0003041009207579647,0.00016421218069114624,0.0,0.0,0.00017476439380257906,0.0,0.0,0.0,0.0,0.0,0.000749107591615551,0.0002721954131008223,0.00014698344959957756,0.0,0.0 +96607,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,432571.0,,22306.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.020107736931060584,0.0037933044436517767,0.0,0.023901041374712363,0.010438803477140346,0.008064619431188177,0.002013849910812437,0.0,0.0033837685555713963,0.010077157295255532,0.008064619431188177,0.0013442273510613032,0.0,0.0006217328535555715,0.00036164618188481697,0.0006696225597511341,0.002762035702015825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002534468054875245,0.0,0.0,0.0023962002135809457,0.0008291573426453209,0.0026496470190684705,0.0012008753916946367,0.0009610451374869308,0.00016018897983188156,0.0,7.409070456749665e-05,2.416311974876153e-05,4.4740331595405046e-05,0.0001845433541433579,0.0,0.0,0.0,0.0011572359581415673,0.0008940361426417796,0.00022325351140059667,0.0,0.0003751214068845263 +96608,50.0,the Greater Atlanta and Macon Area,G1301350050546,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,60671.0,,13439.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0031230613212509407,0.0022853549352377057,0.0,0.005408416256488647,0.0017623447340689882,0.0006165378576594962,0.0026580294019257957,0.0,0.00037148653247294624,0.0015128785488888455,0.0006165378576594962,0.000911624262773435,0.0,8.202065192916428e-05,0.0002494661851801429,0.0017464051391523608,0.000289465880543782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015269380571999221,0.0,0.0,0.00037216896650291907,0.00024491312122971396,0.0005248627722229112,0.00018028670847835597,7.347158242898348e-05,0.00010863643867853261,0.0,9.774236917047063e-06,1.666784473005385e-05,0.00011668439020759372,1.9340386145192544e-05,0.0,0.0,0.0,0.0001710277276875943,5.983226027828523e-05,0.00025794994585911054,0.0,3.605111774510775e-05 +96609,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,4546.0,,917.0,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0010424399574102308,0.0007271605923159908,0.0,0.0017695178426524823,0.0011668313963141492,0.000191549582780236,0.0003807006604220321,0.0,3.043620313606513e-05,0.0004701897142079627,0.000191549582780236,0.0003807006604220321,0.0,0.0,0.0006966416821061864,0.0,3.043620313606513e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.858279224548603e-05,0.0,0.0,0.00012422115288176168,8.589302908246328e-05,0.0001728039451272477,5.602961394262259e-05,2.2825784677416697e-05,4.53657542617224e-05,0.0,0.0,4.654377378113386e-05,0.0,2.03349266905583e-06,0.0,0.0,0.0,0.00011394802794368827,1.8705956387693654e-05,3.7177684478650205e-05,0.0,2.9722763172155714e-06 +96610,50.0,the Greater Atlanta and Macon Area,G1300630040622,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,86183.0,,1585.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,120171.9144447585,0.0,0.0,0.007599747941720447,0.0004617698322521409,0.0,0.008061517773972588,0.004724036294152979,0.0025335834235006307,0.0008038980563189776,0.0,0.0,0.004262266461900838,0.0025335834235006307,0.0008038980563189776,0.0,0.0,0.0004617698322521409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0852281425317134e-05,0.0,0.0,0.0009056476864338758,0.0002844300137135611,0.0009364999678591929,0.0005079262877909783,0.0003019223773573105,9.579902128558681e-05,0.0,0.0,3.0852281425317134e-05,0.0,0.0,0.0,0.0,0.0,0.0005487874568636991,0.00029432432715554197,9.338818383995169e-05,0.0,0.0 +96611,50.0,the Greater Atlanta and Macon Area,G1300570091008,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,5944.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014273586785929675,0.0,0.0,0.0014273586785929675,0.0010502144223417257,0.00019254206766510765,0.00014457196489630936,0.0,4.01129307635641e-05,0.0010502144223417257,0.00019254206766510765,0.00014457196489630936,0.0,4.01129307635641e-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.00017009415906543297,5.5538691734429423e-05,0.00017009415906543297,0.00012515098109936655,2.294467506688654e-05,1.722821822032546e-05,0.0,4.780140638934696e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012515098109936655,2.294467506688654e-05,1.722821822032546e-05,0.0,4.780140638934696e-06 +96612,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050500,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,12730.0,,2016.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006552786973623115,0.000342851998779561,0.0,0.0009981306961418727,0.0004845175865257829,0.00012996354920898705,0.00023769322519722787,0.0,0.00014595633520987468,0.00030288776413876203,0.00012996354920898705,7.647104880468774e-05,0.0,0.00014595633520987468,0.0001816298223870209,0.0001612221763925401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2907492037297265e-05,0.0,0.0,7.808752036469408e-05,4.0308039760215934e-05,0.00010099501240199134,3.6094190984091914e-05,1.5487351162757933e-05,9.112816584580485e-06,0.0,1.739316163326375e-05,1.213550956353484e-05,1.0771982473762426e-05,0.0,0.0,0.0,0.0,4.9025503222474764e-05,1.315025208111904e-05,2.405078845831949e-05,0.0,1.4768468640078028e-05 +96613,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,39995.0,,3027.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034503497753302936,0.000881897459675124,0.0,0.004332247235005418,0.0031156630831257067,0.0009564950198942426,0.00026008913198546886,0.0,0.0,0.0022337656234505824,0.0009564950198942426,0.00026008913198546886,0.0,0.0,0.000881897459675124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.892382069964778e-05,0.0,0.0,0.0004111706620272501,0.0001677270000326856,0.0004700944827268979,0.0002661929804261561,0.000113983426656515,3.099425494457902e-05,0.0,0.0,5.892382069964778e-05,0.0,0.0,0.0,0.0,0.0,0.0003380822806183727,0.00010378979019822159,2.8222411910303628e-05,0.0,0.0 +96614,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,27197.0,,2475.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0023982994116048843,0.0007210085034533527,0.0,0.003119307915058237,0.002252627628701426,0.0006881442688617053,0.00017850564389566747,0.0,0.0,0.0015316191252480733,0.0006881442688617053,0.00017850564389566747,0.0,0.0,0.0007210085034533527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.817272227866982e-05,0.0,0.0,0.000285801995356892,0.00011254138700489202,0.0003339747176355617,0.0001825209146133059,8.200519258872523e-05,2.127226857538569e-05,0.0,0.0,4.8172722278669815e-05,0.0,0.0,0.0,0.0,0.0,0.0002411819213492356,7.367749325937492e-05,1.911205101895067e-05,0.0,0.0 +96615,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,34541.0,,0.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.003077553719533635,6.137921259540556e-08,0.0,0.003077615098746231,0.001119740975377984,0.0008835537653108631,0.0010743510476636812,0.0,0.0,0.0011196795961653885,0.0008835537653108631,0.0010743510476636812,0.0,0.0,6.137921259540556e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.143439553090695e-09,0.0,0.0,0.00036674651018257386,0.0001288692625965173,0.0003667496536221269,0.00013343019223674736,0.00010529150407016654,0.00012802847110053212,0.0,0.0,3.143439553090695e-09,0.0,0.0,0.0,0.0,0.0,0.0001334359891312192,0.00010529030661316119,0.00012802701506102584,0.0,0.0 +96616,35.0,Eastern Counties in South Carolina and Georgia,G1300510004209,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,68897.0,,8149.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.005042018337743256,0.001385787318229907,0.0,0.006427823386334583,0.002996537462157444,0.001045630334386194,0.0015999346234613048,0.0,0.0007857209663296398,0.002996537462157444,0.001045630334386194,0.0008779365760753345,0.0,0.00012191396512428307,0.0,0.0007219980473859701,0.0006638070012053568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.259060667403922e-05,0.0,0.0,0.0006008485493390471,0.00029010330775907907,0.0006934391560130864,0.0003570921536916257,0.00012460594695933833,0.0001046221736636246,0.0,1.4528275024458415e-05,0.0,4.823989680489196e-05,4.435189451335552e-05,0.0,0.0,0.0,0.000323269057631182,0.0001128035064124429,0.0001726023333696139,0.0,8.47642585998475e-05 +96617,46.0,the Tallahassee-Valdosta Area,G1301850010202,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,24606.0,,4552.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005694054622119587,0.003530705231904195,0.0,0.009224759854023785,0.002938885160625641,0.001011730117753419,0.004160529871224958,0.0004330094933319661,0.0006806860718708665,0.002938885160625641,0.001011730117753419,0.0013105107111916292,0.0004330094933319661,0.0,0.0,0.0028500191600333287,0.0006806860718708665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002359023455951752,0.0,0.0,0.0006785494436554224,0.0004213780517408971,0.0009144517892505974,0.00035022124356920566,0.00012056591551899575,0.00015617101924683222,5.160090134304846e-05,0.0,0.0,0.0001904226381652516,4.547970742992362e-05,0.0,0.0,0.0,0.0002913321144467397,0.00010029295407779903,0.0004124339327177905,4.2924294204492803e-05,6.74765095449898e-05 +96618,50.0,the Greater Atlanta and Macon Area,G1302170100600,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,59359.0,,3772.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005288801232495716,0.0011103499558508868,0.0,0.006399120498740307,0.002089010811078331,0.0014618073271721792,0.002848333050096093,0.0,0.0,0.000978660855227444,0.0014618073271721792,0.002848333050096093,0.0,0.0,0.0011103499558508868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.418619227965866e-05,0.0,0.0,0.0006302553000120635,0.00026361918117677956,0.0007044414922917222,0.00011662495219741368,0.0001742004993278939,0.00033942984848675593,0.0,0.0,7.418619227965866e-05,0.0,0.0,0.0,0.0,0.0,0.00022996689833536471,0.00016092176029484925,0.00031355621209953915,0.0,0.0 +96619,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,9266.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0019293079091168245,0.0,0.0,0.001929307909116824,0.001421569183431216,0.00022512865471839485,0.0002371211804105944,0.0,4.5488890556619085e-05,0.001421569183431216,0.00022512865471839485,0.0002371211804105944,0.0,4.5488890556619085e-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.0002299130888420113,7.49904759360784e-05,0.0002299130888420113,0.0001694065319593814,2.682828601311591e-05,2.825741954430687e-05,0.0,5.4208513252071084e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016940653195938142,2.6828286013115916e-05,2.8257419544306875e-05,0.0,5.420851325207109e-06 +96620,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,70838.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005792154291980959,0.0,0.0,0.005792154291980959,0.003500040984010456,0.0018556143104505724,0.00043652937111936924,0.0,0.0,0.003500040984010456,0.0018556143104505724,0.00043652937111936924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006902414187899621,0.00014976533808864137,0.0006902414187899621,0.0004170940780999371,0.00022113047923215973,5.2020481029325774e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004170940780999371,0.00022113047923215973,5.2020481029325774e-05,0.0,0.0 +96621,50.0,the Greater Atlanta and Macon Area,G1301350050436,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,20248.0,,2857.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0018040578166041606,0.0008410486605885449,0.0,0.0026451064771927054,0.000846910375391406,0.000777643933977491,0.0010205214782175107,0.0,0.0,5.861714802861231e-06,0.000777643933977491,0.0010205214782175107,0.0,0.0,0.0008410486605885449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.619410405241838e-05,0.0,0.0,0.00021498545779286395,0.00012875891687682024,0.00027117956184528235,6.985271917262693e-07,9.26700550322091e-05,0.00012161321835850069,0.0,0.0,5.619410405241838e-05,0.0,0.0,0.0,0.0,0.0,8.682629092671235e-05,7.972501035628225e-05,0.00010462511422619096,0.0,0.0 +96622,50.0,the Greater Atlanta and Macon Area,G1301210005200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,24206.0,,2971.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005573652916130548,0.0023040471527546293,0.0,0.007877700068885178,0.0037589752225066497,0.0006623306741143109,0.0022979017332414218,0.0004141689308769991,0.0007440809257965921,0.0025909412110817665,0.0006623306741143109,0.0019060503784913362,0.0004141689308769991,0.0,0.0011680340114248833,0.0003918513547500854,0.0007440809257965921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015394304258705563,0.0,0.0,0.0006641987236065008,0.0003381520617253563,0.0008181417661935564,0.0003087561911793223,7.892834286092719e-05,0.00022713940885334824,4.935550874541191e-05,0.0,7.804124553134059e-05,2.6181230588084216e-05,4.971516381996511e-05,0.0,0.0,0.0,0.00039038991085308257,6.878662335271365e-05,0.00023864952538608429,4.3013683898498254e-05,7.727682921397518e-05 +96623,50.0,the Greater Atlanta and Macon Area,G1300890023416,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7242.0,,701.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005309608917713396,0.000204262456218881,0.0,0.0007352537215896584,0.0005006480395324633,0.00019232563163984454,4.228005041735054e-05,0.0,0.0,0.00029638558331358225,0.00019232563163984454,4.228005041735054e-05,0.0,0.0,0.000204262456218881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3647952042717395e-05,0.0,0.0,6.327533673356025e-05,3.2463866373650485e-05,7.692328877627764e-05,3.5320675925066115e-05,2.2919708952399945e-05,5.038571519542123e-06,0.0,0.0,1.3647952042717397e-05,0.0,0.0,0.0,0.0,0.0,5.237850906346859e-05,2.0121380779584004e-05,4.423398933225037e-06,0.0,0.0 +96624,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,14062.0,,1024.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003438546590711706,0.0008124315853412168,0.0,0.004251060883126662,0.0027106416347320614,0.0004892123411680034,0.0009713945810681657,0.0,7.964691201095303e-05,0.0019778569614017976,0.0004892123411680034,0.0009713945810681657,0.0,0.0,0.0007327846733302636,0.0,7.964691201095303e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.428456030604546e-05,0.0,0.0,0.00040976568062768635,0.00019346156018727723,0.0004640502409337318,0.0002356978108606252,5.829859292634432e-05,0.00011575942078105055,0.0,0.0,4.896276130627738e-05,0.0,5.3217989997680716e-06,0.0,0.0,0.0,0.00029589646873211787,5.340292953409646e-05,0.00010603844587962179,0.0,8.694340006988144e-06 +96625,35.0,Eastern Counties in South Carolina and Georgia,G1301270000401,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,98467.0,,5533.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,357187.66821064625,0.0,0.0,0.024995990121256147,0.0047915007230591245,0.0,0.029787490844315274,0.01025386932630539,0.0035963790708027146,0.010736594471691025,0.000646221543046637,0.004554516712092733,0.01025386932630539,0.0035963790708027146,0.008058720287582427,0.000646221543046637,0.002440890173142208,0.0,0.002677874184108598,0.0021136265389505257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003201382866331475,0.0,0.0,0.002978728614375906,0.0012081115134535572,0.0032988669010090535,0.001221935751381323,0.0004285742310816822,0.0009603436631005947,7.700909594544336e-05,0.00029087663133234873,0.0,0.00017891890300547196,0.00014121938362767546,0.0,0.0,0.0,0.0011355823927773469,0.00039828718511941816,0.0011890426191764215,7.156691613326627e-05,0.0005043977859747345 +96626,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,44474.0,,4958.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009260339217593668,0.0034108583815604296,0.0,0.0126711975991541,0.004757329117407513,0.0012585420513819426,0.0033996700660819954,0.00036770829139703786,0.0028879480728856103,0.0030906287109757273,0.0012585420513819426,0.0016555120909533501,0.00036770829139703786,0.0028879480728856103,0.0016667004064317848,0.0017441579751286448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022789339811922678,0.0,0.0,0.0011035382091354195,0.0004955366990381661,0.0013314316072546464,0.00036830474485565634,0.00014997822529707973,0.00019728444122022406,4.381914526431091e-05,0.0003441516524981485,0.0001113590705852372,0.00011653432753398956,0.0,0.0,0.0,0.0,0.0004998784292853314,0.00013224185426489465,0.00035722181307639263,3.863710889082032e-05,0.00030345240173720736 +96627,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,85816.0,,5120.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.007646131271434862,0.0015072279444927792,0.0,0.009153359215927644,0.0049665910559761346,0.0016882966216492257,0.0024985022279085793,0.0,0.0,0.0034593631114833556,0.0016882966216492257,0.0024985022279085793,0.0,0.0,0.0015072279444927792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010070494400685026,0.0,0.0,0.0009111738130531077,0.00036651623199783576,0.001011878757059958,0.0004122452211618958,0.00020119085269433568,0.00029774139641444155,0.0,0.0,0.00010070494400685027,0.0,0.0,0.0,0.0,0.0,0.0005490430197256187,0.00018663656115344671,0.0002762025688326984,0.0,0.0 +96628,50.0,the Greater Atlanta and Macon Area,G1301510070311,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,12236.0,,4994.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0010902175741195935,0.001470032141659963,0.0,0.002560249715779557,0.0017513023833784093,0.00035151875053388763,0.0004573978922609623,0.0,0.0,0.000281270241718446,0.00035151875053388763,0.0004573978922609623,0.0,0.0,0.001470032141659963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.821878332461458e-05,0.0,0.0,0.0001299195156721166,0.0001380045698201098,0.0002281382989967312,3.3518532854829095e-05,4.1889937296149744e-05,5.450738828896594e-05,0.0,0.0,9.821878332461456e-05,0.0,0.0,0.0,0.0,0.0,0.00015605475681157061,3.132307341662542e-05,4.0757734084283686e-05,0.0,0.0 +96629,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,98243.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01337256628973582,0.0,0.0,0.01337256628973582,0.0055440773776800085,0.003046772044417039,0.004781716867638773,0.0,0.0,0.0055440773776800085,0.003046772044417039,0.004781716867638773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001593584321168216,0.0005192241310282147,0.001593584321168216,0.0006606775837182107,0.0003630782644826615,0.000569828472967344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006606775837182107,0.0003630782644826615,0.000569828472967344,0.0,0.0 +96630,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,109960.0,,8009.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010988290776467291,0.0023575755557895275,0.0,0.013345866332256819,0.004860466397398677,0.0033807670297549383,0.005104632905103202,0.0,0.0,0.0025028908416091507,0.0033807670297549383,0.005104632905103202,0.0,0.0,0.0023575755557895275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015752023126223107,0.0,0.0,0.0013094522647301586,0.0005343178364052906,0.0014669724959923895,0.00029826441141660035,0.0004028791314039935,0.0006083087219095648,0.0,0.0,0.00015752023126223107,0.0,0.0,0.0,0.0,0.0,0.0005342605976388006,0.00037161261206560556,0.0005610992862879834,0.0,0.0 +96631,50.0,the Greater Atlanta and Macon Area,G1301210011800,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,134513.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.011984997120197785,0.0,0.0,0.011984997120197785,0.0030639889135500504,0.0034396296946339324,0.0054813785120138014,0.0,0.0,0.0030639889135500504,0.0034396296946339324,0.0054813785120138014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014282291399537851,0.0004683570356299136,0.0014282291399537851,0.0003651296873031959,0.0004098940793442136,0.0006532053733063755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003651296873031959,0.0004098940793442136,0.0006532053733063755,0.0,0.0 +96632,35.0,Eastern Counties in South Carolina and Georgia,G1302450010506,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,132622.0,,11583.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006415288020810606,0.001969754501960766,0.0,0.008385042522771374,0.003771868436694933,0.0019234605282930082,0.0009759322836439664,0.0,0.0017137990045008836,0.003442810659100173,0.0019234605282930082,0.0007919265928266585,0.0,0.00025709024059076565,0.00032905777759475996,0.00018400569081730795,0.0014567087639101182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013160757918456766,0.0,0.0,0.0007644965522344703,0.0003532689099319295,0.000896104131419038,0.00041027259732379046,0.0002292147971328799,9.437224764887063e-05,0.0,3.063691012892923e-05,2.198573349013359e-05,1.2294193769093505e-05,9.732883656532603e-05,0.0,0.0,0.0,0.0004030971673801679,0.00020555899643251056,0.0001042972589564791,0.0,0.00018315260348226499 +96633,50.0,the Greater Atlanta and Macon Area,G1302970110504,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,7778.0,,148.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016234571504288654,0.00011777487300477378,0.0,0.0017411493163599,0.0010088608854720718,0.00033314409302193034,0.00028145217193486317,0.0,0.00011777487300477378,0.0010088608854720718,0.00033314409302193034,0.00028145217193486317,0.0,0.0,0.0,0.0,0.00011777487300477378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.868042665354639e-06,0.0,0.0,0.00019346045064537793,7.406158058492377e-05,0.00020132849331073256,0.00012022164027573079,3.969935784806064e-05,3.3539452521586485e-05,0.0,0.0,0.0,0.0,7.868042665354639e-06,0.0,0.0,0.0,0.00011665423529376379,3.8521336265230416e-05,3.254421730649928e-05,0.0,1.3618267835573016e-05 +96634,35.0,Eastern Counties in South Carolina and Georgia,G1300730030202,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,49855.0,,1316.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004115197493423243,0.0003835274401004923,0.0,0.004498694559924299,0.003312484007482338,0.000967581383689022,0.00021865954235237537,0.0,0.0,0.002928956567381846,0.000967581383689022,0.00021865954235237537,0.0,0.0,0.0003835274401004923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5624406775772063e-05,0.0,0.0,0.000490398941941602,0.00015412048387754125,0.0005160233487173741,0.00034903724643410117,0.00011530452367397129,2.605717183352961e-05,0.0,0.0,2.5624406775772063e-05,0.0,0.0,0.0,0.0,0.0,0.0003799589119343428,0.00011098654934603993,2.508137144469304e-05,0.0,0.0 +96635,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,66089.0,,5778.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006156120196075094,0.0017008793602312838,0.0,0.00785696886670008,0.0046874997763048255,0.0011284261339602338,0.0020410429564350213,0.0,0.0,0.002986620416073542,0.0011284261339602338,0.0020410429564350213,0.0,0.0,0.0017008793602312838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011364194170164932,0.0,0.0,0.0007336122552649886,0.00034239545559023,0.0008472541969666381,0.00035590944771563774,0.0001344722348927349,0.0002432269154389901,0.0,0.0,0.00011364194170164932,0.0,0.0,0.0,0.0,0.0,0.0005054753208437326,0.00012168353905749811,0.00022009533706540747,0.0,0.0 +96636,50.0,the Greater Atlanta and Macon Area,G1301210003200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,62503.0,,4517.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005147199389038115,0.0013297499512731638,0.0,0.006476949340311278,0.0023933903263389468,0.0017195693304665849,0.00236395899389945,0.0,0.0,0.0010636403750657831,0.0017195693304665849,0.00236395899389945,0.0,0.0,0.0013297499512731638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.884706876220941e-05,0.0,0.0,0.0006133817218227681,0.0002750689412064139,0.0007022287905849775,0.0001267519509828015,0.00020491772651385972,0.00028170838710552345,0.0,0.0,8.884706876220941e-05,0.0,0.0,0.0,0.0,0.0,0.0002594906191102013,0.0001864351607237577,0.00025629968339365,0.0,0.0 +96637,35.0,Eastern Counties in South Carolina and Georgia,G1302450010300,ComStock 90.1-2004,gen5_led,10001_25000,NaturalGas,48112.0,,923.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003906895348479142,0.00026901897022016787,0.0,0.004175914318699309,0.0033368132606319775,0.0006046472440073255,0.00023442344046056853,0.0,0.0,0.0030677942904118096,0.0006046472440073255,0.00023442344046056853,0.0,0.0,0.00026901897022016787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797464247997723e-05,0.0,0.0,0.0004655763620926571,0.0001153888133474584,0.0004835510045726344,0.000365582483783333,7.205451876868584e-05,2.7935739983760353e-05,0.0,0.0,1.797464247997723e-05,0.0,0.0,0.0,0.0,0.0,0.00038638709540200777,7.001527328819458e-05,2.7145118764167668e-05,0.0,0.0 +96638,50.0,the Greater Atlanta and Macon Area,G1300670031406,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,291074.0,,35127.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.0173793357246586,0.0059737133696441905,0.0,0.02335304909430279,0.010185950792928975,0.006570783290464469,0.004077415755046703,0.0,0.0025188992558626416,0.008979364237571542,0.006570783290464469,0.001410964431446382,0.0,0.00041822376517620556,0.0012065865553574332,0.002666451323600321,0.0021006754906864357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003991282185116666,0.0,0.0,0.002071062836852779,0.0008160480385511324,0.0024701910553644457,0.00107005399202993,0.0007830279187590473,0.0001681419845030997,0.0,4.983894156070213e-05,8.061698185372174e-05,0.00017815651684005408,0.0001403547198178907,0.0,0.0,0.0,0.0010774286662727,0.0006950308734975095,0.00043129254284724643,0.0,0.0002664389727469898 +96639,50.0,the Greater Atlanta and Macon Area,G1300670030407,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,17473.0,,972.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,14029.891188970922,0.0,0.0,0.000933751753825661,0.00016537108096483248,0.0,0.0010991228347904936,0.0005407228322273503,0.00047239001931446685,4.7038648847400084e-05,0.0,3.8971334401276055e-05,0.0004143230856637939,0.00047239001931446685,4.7038648847400084e-05,0.0,0.0,0.0001263997465635564,0.0,3.8971334401276055e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.104916021835553e-05,0.0,0.0,0.00011127395509007974,4.141366705772359e-05,0.00012232311530843527,4.937433128028602e-05,5.629409056404743e-05,5.605533245746268e-06,0.0,0.0,8.445316092704682e-06,0.0,2.6038441256508477e-06,0.0,0.0,0.0,6.017789755869964e-05,5.257303094259877e-05,5.235005483268195e-06,0.0,4.337181323868636e-06 +96640,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,48231.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,215998.51729091106,0.0,0.0,0.010863583850520999,0.0,0.0,0.010863583850520999,0.008110468502446866,0.0013745104031105597,0.0012881974608490595,0.0,9.040748411451271e-05,0.008110468502446866,0.0013745104031105597,0.0012881974608490595,0.0,9.040748411451271e-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.0012945905004736827,0.00045077076064637203,0.0012945905004736827,0.0009665075192617194,0.00016379752162393852,0.00015351178934100386,0.0,1.077367024702078e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0009665075192617194,0.00016379752162393852,0.00015351178934100386,0.0,1.077367024702078e-05 +96641,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,81082.0,,12021.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004173709347919011,0.0020443638628163483,0.0,0.006218073210735358,0.0029599242658250352,0.0011206652239158575,0.0009278830041956232,0.0,0.0012096184471602624,0.0024710450103899192,0.0011206652239158575,0.0003933835288267115,0.0,0.00018863331514794177,0.0004888792554351159,0.0005344994753689118,0.0010209851320123206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013659230141624127,0.0,0.0,0.0004973736005293467,0.00024831773039742154,0.000633965901945588,0.000294470086782756,0.00013354770324027664,4.68788230831253e-05,0.0,2.2479100319167533e-05,3.266402025055741e-05,3.571209351442729e-05,6.821618765125658e-05,0.0,0.0,0.0,0.0003017801484927329,0.00011425782800888741,9.460264710927925e-05,0.0,0.00012332708604009628 +96642,81.0,the Columbus-Albany Area,G1302150000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,5776.0,,49.0,,4.088175128053588,Healthcare,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,4088.1751280535877,0.0,0.0,0.000491020026039833,1.8134262325334746e-05,0.0,0.0005091542883651678,0.00027511380878178775,8.199166470172717e-05,0.00013290709353824397,0.0,1.91417213434089e-05,0.00027511380878178775,8.199166470172717e-05,0.00011477283121290922,0.0,1.91417213434089e-05,0.0,1.8134262325334746e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2103341198064237e-06,0.0,0.0,5.8515120032155844e-05,1.728404521442747e-05,5.9725454151962275e-05,3.2785460245289334e-05,9.77099068718764e-06,1.3677539893879864e-05,0.0,2.281129205799005e-06,0.0,1.2103341198064237e-06,0.0,0.0,0.0,0.0,3.2271744633099853e-05,9.617888963892857e-06,1.5590434379089086e-05,0.0,2.2453861758804692e-06 +96643,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,31842.0,,3100.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007475255951553117,0.0024046379668918776,0.0,0.009879893918444994,0.0033334049212169876,0.0006620880917651052,0.004969865448957851,0.00041295601913097124,0.0005014985765910091,0.0033334049212169876,0.0006620880917651052,0.002565227482065974,0.00041295601913097124,0.0005014985765910091,0.0,0.0024046379668918776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001606624859649367,0.0,0.0,0.0008908095049606622,0.00041124083627849204,0.001051471990925599,0.00039723439664775473,7.889955462235144e-05,0.00030569241216896393,4.921104365612467e-05,5.976246186710107e-05,0.0,0.0001606624859649367,0.0,0.0,0.0,0.0,0.000354759063002659,7.046301202857005e-05,0.0005289200836956488,4.394902325719435e-05,5.3372203297654064e-05 +96644,50.0,the Greater Atlanta and Macon Area,G1300890021909,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,283927.0,,10402.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013959822760464374,0.0017690113499629282,0.0,0.015728834110427303,0.009935083909196648,0.0030225656327220814,0.0012678449540637158,0.0,0.001503321884083437,0.008272454727754036,0.0030225656327220814,0.0011614627855433993,0.0,0.001503321884083437,0.0016626291814426115,0.00010638216852031681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000118195030707776,0.0,0.0,0.0016635649799979532,0.000600026558604034,0.0017817600107057293,0.0009858123716788745,0.0003601932791426462,0.00013840926555836863,0.0,0.0001791479507253111,0.00011108719407615566,7.1078366316203385e-06,0.0,0.0,0.0,0.0,0.0011254448415014553,0.00034239578956124923,0.00014362128960519638,0.0,0.00017029608154509897 +96645,50.0,the Greater Atlanta and Macon Area,G1300890023108,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,46380.0,,2397.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0038958393582837997,0.0006983497982727898,0.0,0.004594189156556589,0.0027431005124222423,0.0015926093129190791,0.0002584489576158303,0.0,0.0,0.002044750714149453,0.0015926093129190791,0.0002584489576158303,0.0,0.0,0.0006983497982727898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6659330534467664e-05,0.0,0.0,0.0004642598631346783,0.00017005921402784795,0.0005109191936691459,0.0002436691042399001,0.000189788262206104,3.0798877123845966e-05,0.0,0.0,4.665933053446766e-05,0.0,0.0,0.0,0.0,0.0,0.00030505986022801013,0.00017711387978558207,2.8742075811410877e-05,0.0,0.0 +96646,46.0,the Tallahassee-Valdosta Area,G1301850010800,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,6760.0,,193.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013267868769259697,0.0001528426722702401,0.0,0.0014796295491962099,0.000757596795452056,0.0004447986425699953,0.00023406101868224,0.0,4.317309249191847e-05,0.0006479272156737345,0.0004447986425699953,0.00023406101868224,0.0,0.0,0.00010966957977832163,0.0,4.317309249191847e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0211587333799442e-05,0.0,0.0,0.0001581117932441574,5.405008137486557e-05,0.00016832338057795682,7.721280315887852e-05,5.300618526786426e-05,2.7892804817414627e-05,0.0,0.0,7.3271454570444054e-06,0.0,2.884441876755037e-06,0.0,0.0,0.0,8.618458167099411e-05,5.060051094176924e-05,2.662689586560189e-05,0.0,4.911392099591585e-06 +96647,81.0,the Columbus-Albany Area,G1300950000900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,30557.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.009138800819898513,0.0,0.0,0.009138800819898513,0.0038711872934420227,0.0031685079949528676,0.0019462628592333822,0.0,0.00015292537934397942,0.0038711872934420227,0.0031685079949528676,0.0019462628592333822,0.0,0.00015292537934397942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001089049614515946,0.00030636567925963526,0.001089049614515946,0.00046132037591436223,0.0003775837200632231,0.00023193161316961016,0.0,1.8223761378149294e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00046132037591436223,0.0003775837200632231,0.00023193161316961016,0.0,1.8223761378149294e-05 +96648,50.0,the Greater Atlanta and Macon Area,G1300890021102,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,3702.0,,456.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008888529214763368,0.00036159532638825197,0.0,0.0012504482478645888,0.0007946495644872657,0.00026135435301621147,0.00016566226869983277,0.0,2.8782061661278978e-05,0.00046183629976029257,0.00026135435301621147,0.00016566226869983277,0.0,0.0,0.00033281326472697304,0.0,2.8782061661278978e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.415717019387931e-05,0.0,0.0,0.00010592693940530812,5.0201027761040126e-05,0.00013008410959918743,5.503824598857732e-05,3.114628533737543e-05,1.974240807935537e-05,0.0,0.0,2.22343213312375e-05,0.0,1.9228488626418113e-06,0.0,0.0,0.0,8.266738045036e-05,2.718868882422332e-05,1.7233842947759275e-05,0.0,2.9941973768448453e-06 +96649,50.0,the Greater Atlanta and Macon Area,G1300670030230,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,260941.0,,11115.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.0232495250429507,0.0032716654793666046,0.0,0.0265211905223173,0.00891916683026987,0.006314386495752347,0.011287667885901381,0.0,0.0,0.005647501350903266,0.006314386495752347,0.011287667885901381,0.0,0.0,0.0032716654793666046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021859361811108868,0.0,0.0,0.002770600559608204,0.0010560685508937838,0.0029891941777192925,0.000673001722585506,0.0007524731247797405,0.0013451293694634913,0.0,0.0,0.00021859361811108868,0.0,0.0,0.0,0.0,0.0,0.0010052761974133355,0.0007116923100827315,0.0012722291292380982,0.0,0.0 +96650,50.0,the Greater Atlanta and Macon Area,G1301350050108,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,14857.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035674869186712865,0.0,0.0,0.0035674869186712865,0.0021602260589969704,0.0008513866170724307,0.0004492648245519179,0.0,0.00010660941804996728,0.0021602260589969704,0.0008513866170724307,0.0004492648245519179,0.0,0.00010660941804996728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004251298051428494,0.00014220853956714596,0.0004251298051428494,0.0002574295307767905,0.00010145792678955099,5.353793067037506e-05,0.0,1.2704416906132816e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002574295307767905,0.00010145792678955099,5.353793067037506e-05,0.0,1.2704416906132816e-05 +96651,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,68980.0,,2101.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006076572736551449,0.0006184876357176041,0.0,0.006695091061875351,0.0027039691420716995,0.00170787659046716,0.0022832453293364914,0.0,0.0,0.002085481506354095,0.00170787659046716,0.0022832453293364914,0.0,0.0,0.0006184876357176041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.132404204310447e-05,0.0,0.0,0.0007241351627647462,0.0002725558396621148,0.0007654592048078508,0.000248523395591515,0.00020352483981322383,0.0002720905845898333,0.0,0.0,4.132404204310447e-05,0.0,0.0,0.0,0.0,0.0,0.0003091486060736876,0.00019526393961888063,0.00026104665911528256,0.0,0.0 +96652,35.0,Eastern Counties in South Carolina and Georgia,G1300730030306,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8250.0,,155.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017055025675782583,0.00012306812572408945,0.0,0.0018285706933023477,0.00117510210368808,0.00024373774630973897,0.00036970061961470415,0.0,4.0030223689824796e-05,0.0010520339779639906,0.00024373774630973897,0.00036970061961470415,0.0,4.0030223689824796e-05,0.00012306812572408945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.22330131794126e-06,0.0,0.0,0.00020323851274090413,7.129631193653311e-05,0.00021146181405884537,0.00012536704728501532,2.904533713435064e-05,4.405587274874358e-05,0.0,4.770255572794608e-06,8.22330131794126e-06,0.0,0.0,0.0,0.0,0.0,0.00013589259822461783,2.8186619296730625e-05,4.275337232995788e-05,0.0,4.629224207539064e-06 +96653,81.0,the Columbus-Albany Area,G1300950011400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,4429.0,,34.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001206365377561538,2.687979896527491e-05,0.0,0.0012333278836005523,0.0006535512966880072,0.00033545989108663094,0.00021743689686063924,0.0,2.687979896527491e-05,0.0006535512966880072,0.00033545989108663094,0.00021743689686063924,0.0,0.0,0.0,0.0,2.687979896527491e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7966097622908693e-06,0.0,0.0,0.00014376456478832267,4.783827157083226e-05,0.00014556117455061354,7.788479301777908e-05,3.997731213365123e-05,2.591231597617581e-05,0.0,0.0,0.0,0.0,1.7966097622908693e-06,0.0,0.0,0.0,7.713414708281572e-05,3.959201475169585e-05,2.566257563663915e-05,0.0,3.172437079462808e-06 +96654,33.0,Rural Lower Plains-Upper South Appalachia,G1300110970400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,19041.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016292498191324454,0.0,0.0,0.0016292498191324454,0.0004613875410796636,0.0005409043109970115,0.0006269272774494726,0.0,0.0,0.0004613875410796636,0.0005409043109970115,0.0006269272774494726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019415363883225573,6.579839201477871e-05,0.00019415363883225573,5.4982402919758365e-05,6.445821813627385e-05,7.47093605723576e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4982402919758365e-05,6.445821813627385e-05,7.47093605723576e-05,0.0,0.0 +96655,50.0,the Greater Atlanta and Macon Area,G1301130140403,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,44415.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0038517672654996217,0.0,0.0,0.0038517672654996217,0.0024738689270060103,0.0009502380584100656,0.0004275995328846701,0.0,0.0,0.0024738689270060103,0.0009502380584100656,0.0004275995328846701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045900807586521613,0.00011439611842821805,0.00045900807586521613,0.00029480644542018657,0.000113238135312967,5.095625599923125e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029480644542018657,0.000113238135312967,5.095625599923125e-05,0.0,0.0 +96656,50.0,the Greater Atlanta and Macon Area,G1301170130602,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,16422.0,,2116.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001516956549689151,0.0006229069390244733,0.0,0.0021398327991073262,0.0011876263845085023,0.0004320482774590598,0.0005201888267460621,0.0,0.0,0.0005647194454840289,0.0004320482774590598,0.0005201888267460621,0.0,0.0,0.0006229069390244733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.161823437107184e-05,0.0,0.0,0.00018077125642047587,9.568414521013229e-05,0.00022238949079154773,6.729595762392879e-05,5.1485924212253114e-05,6.198937458429394e-05,0.0,0.0,4.161823437107184e-05,0.0,0.0,0.0,0.0,0.0,0.00012342816084118057,4.490210471657812e-05,5.406241475678357e-05,0.0,0.0 +96657,50.0,the Greater Atlanta and Macon Area,G1301210003100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,32609.0,,8413.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0064889360976084255,0.005787514781075749,0.0,0.012276450878684174,0.0030106609432933207,0.0006389532217780789,0.006550758712623882,0.00037057709023766237,0.0017055009107512307,0.0022291284191362074,0.0006389532217780789,0.0030389903318444873,0.00037057709023766237,0.00021128703461199014,0.0007815325241571137,0.0035117683807793947,0.0014942138761392405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003866896089447993,0.0,0.0,0.0007732718817141336,0.0005824897367157039,0.001159961490658933,0.00026564020685659174,7.614261455182831e-05,0.00036214962469464815,4.416083616447377e-05,2.5178599446591776e-05,5.221766467571476e-05,0.00023463686802297634,9.983507624610823e-05,0.0,0.0,0.0,0.0002844674564466191,6.03725896775199e-05,0.0006189596583191505,3.5014611164411865e-05,0.00016114717505123167 +96658,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4757.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,9713.774621698478,0.0,0.0,0.0004238541525775732,0.0,0.0,0.0004238541525775732,0.00021593206991063677,0.00012518290408832964,8.2708488972309e-05,0.0,0.0,0.00021593206991063677,0.00012518290408832964,8.2708488972309e-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,9.380441406725663e-10,0.0,0.0,5.050808612831313e-05,2.0099107910539362e-05,5.05090241724538e-05,2.573129346164732e-05,1.4917274876358643e-05,9.855860699138649e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5731771347287297e-05,1.4917551922340092e-05,9.856043743737816e-06,0.0,0.0 +96659,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,9803.0,,335.0,,3.3063363735822096,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,9919.009120746628,0.0,0.0,0.0008405797695767833,0.0001005950512747073,0.0,0.0009411748208514906,0.00029526684520569854,0.00015781827981913582,0.00032162212187922777,0.0,0.0001664989119696324,0.00029526684520569854,0.00015781827981913582,0.00022102707060452046,0.0,0.0001664989119696324,0.0,0.0001005950512747073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.7215111945637086e-06,0.0,0.0,0.00010017077640291231,4.673916597072776e-05,0.00010689228759747602,3.5186558374090886e-05,1.88069951148293e-05,2.6339502888183295e-05,0.0,1.9841454536355855e-05,0.0,6.7215111945637086e-06,0.0,0.0,0.0,0.0,3.353441659985412e-05,1.792393568211265e-05,3.652767114883283e-05,0.0,1.8909823327852365e-05 +96660,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,19715.0,,360.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006170692064615988,0.00028591835391678577,0.0,0.006456610418532774,0.002825025517713524,0.001176756245162866,0.0022718806085450355,0.0,0.00018294804711134802,0.002539107163796738,0.001176756245162866,0.0022718806085450355,0.0,0.00018294804711134802,0.00028591835391678577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9103680975733325e-05,0.0,0.0,0.0007353516746354372,0.00022861440964687003,0.0007544553556111707,0.00030258140990105647,0.00014023219218476323,0.0002707364413215674,0.0,2.180163122805006e-05,1.9103680975733325e-05,0.0,0.0,0.0,0.0,0.0,0.0003301044191019235,0.0001375040452903407,0.00026546939978073993,0.0,2.1377491438166547e-05 +96661,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2004,gen2_t8_halogen,_1000,NaturalGas,3209.0,,254.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00038144502408568587,0.00020122631040773496,0.0,0.0005826713344934208,0.00032553504223791396,0.00010875980196718925,9.230109429306708e-05,0.0,5.6075395995250426e-05,0.0001803841278254295,0.00010875980196718925,9.230109429306708e-05,0.0,0.0,0.00014515091441248448,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3445333491096428e-05,0.0,0.0,4.545484847343771e-05,2.5687236895548683e-05,5.8900181964534134e-05,2.1495451977573213e-05,1.296034816621218e-05,1.0999048329652317e-05,0.0,0.0,9.698545119964745e-06,0.0,3.74678837113168e-06,0.0,0.0,0.0,3.290718470012865e-05,1.0994143262365135e-05,9.330390783877941e-06,0.0,5.668463218162404e-06 +96662,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,8053.0,,1015.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017289086694464823,0.0008053187769996364,0.0,0.002534227446446119,0.001591614927039232,0.00022082788688395082,0.0006188143257174981,0.0,0.00010288759973169842,0.0008891837497712942,0.00022082788688395082,0.0006188143257174981,0.0,0.0,0.000702431177267938,0.0,0.00010288759973169842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.380523231024651e-05,0.0,0.0,0.0002060340504907735,0.00010807677333461817,0.00025983928280102,0.00010596402969892395,2.6316059835934046e-05,7.374410475372977e-05,0.0,0.0,4.693107096753863e-05,0.0,6.874161342707882e-06,0.0,0.0,0.0,0.00016319138272976824,2.2641913941409334e-05,6.344823974143244e-05,0.0,1.0549266270828916e-05 +96663,85.0,Rural Climate Zone 3A,G1302330010200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,13232.0,,5434.0,,8.53126424238864,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0031061861207944247,0.004214140570399391,0.0,0.0073204075519768845,0.002771745922022994,0.0006671014603153539,0.0030365649865724226,0.0003135781167397506,0.0005312553447602272,0.001659182407783121,0.0006671014603153539,0.00046624327517313095,0.0003135781167397506,0.0,0.001112563514239873,0.0025703217113992914,0.0005312553447602272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002815666908891519,0.0,0.0,0.0003701591940676813,0.00039234989349475356,0.0006517258849568332,0.0001977220935876179,7.949740592123628e-05,5.556145970204223e-05,3.736859880758234e-05,0.0,7.433563780688927e-05,0.00017173536732085107,3.549568576141162e-05,0.0,0.0,0.0,0.00024676475333919133,5.9391131776892717e-05,0.0002703412329233518,2.791743139767151e-05,4.729693766959819e-05 +96664,50.0,the Greater Atlanta and Macon Area,G1300670030507,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,251968.0,,26833.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014885844076710893,0.004563121275787629,0.0,0.01944896535249852,0.00794775861906861,0.002896289998688465,0.006131744080981121,0.0,0.002473154923398905,0.007063545495050575,0.002896289998688465,0.0045554794900155866,0.0,0.00037051136259484344,0.0008842131240180334,0.001576264590965534,0.0021026435608040616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003048811321431713,0.0,0.0,0.0017739166642840134,0.0007430366151434307,0.0020787977964271845,0.0008417487781026851,0.0003451451638749,0.0005428675014664159,0.0,4.4153107947829145e-05,5.9077960460285344e-05,0.0001053168004981008,0.0001404863711847852,0.0,0.0,0.0,0.0008494941918199526,0.0003095692319856084,0.0006553899322033334,0.0,0.00026434254531304525 +96665,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,71257.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005995141057023454,0.0,0.0,0.005995141057023454,0.003966883207368701,0.0014183559729446969,0.0006099322503094944,0.0,0.0,0.003966883207368701,0.0014183559729446969,0.0006099322503094944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007144310701691241,0.0001763377787622399,0.0007144310701691241,0.0004727269280438652,0.00016902314157304484,7.26846201239547e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004727269280438652,0.00016902314157304484,7.26846201239547e-05,0.0,0.0 +96666,50.0,the Greater Atlanta and Macon Area,G1300890021907,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,19082.0,,118.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004499843760934499,9.345899332541739e-05,0.0,0.004593302754259916,0.0022457451732434144,0.0006882882676585162,0.0015657276129588287,0.0,9.345899332541739e-05,0.0022457451732434144,0.0006882882676585162,0.0015657276129588287,0.0,0.0,0.0,0.0,9.345899332541739e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.246079954242666e-06,0.0,0.0,0.0005362363957749876,0.0001886680164123638,0.0005424824757292303,0.00026762046895580045,8.202178553567456e-05,0.0001865842852650631,0.0,0.0,0.0,0.0,6.246079954242666e-06,0.0,0.0,0.0,0.00026522906645075876,8.128885541204339e-05,0.0001849170057444597,0.0,1.1037780174910963e-05 +96667,50.0,the Greater Atlanta and Macon Area,G1301350050211,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,418141.0,,47714.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.021523914088764463,0.008114228982441485,0.0,0.029638125340844524,0.012938181605079513,0.007285086360994137,0.0035377035534202962,0.0,0.005877171551712003,0.010531657379897166,0.007285086360994137,0.0028492158891182257,0.0,0.0008579544587549353,0.002406524225182347,0.0006884876643020703,0.0050192170929570686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005421451621014435,0.0,0.0,0.002564962460150881,0.0012059086554774415,0.0031071076222523243,0.0012550368725318518,0.0008681493968915846,0.00033953544723859156,0.0,0.000102240743488853,0.0001607898259940365,4.600070532586574e-05,0.00033535463078154137,0.0,0.0,0.0,0.0013563719776779198,0.0007637307387258097,0.00037087452562167085,0.0,0.0006161322389862242 +96668,85.0,Rural Climate Zone 3A,G1302610950800,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,109190.0,,,2609.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.009180511550858802,0.0,0.000245874287448601,0.009426385838307403,0.004902147081255956,0.0037079786457613045,0.0008162601112901425,0.0,0.0,0.004656272793807355,0.0037079786457613045,0.0008162601112901425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000245874287448601,0.0,0.0,0.0,0.0,1.9829191922592794e-05,0.0010940250942405995,0.0003220786123344868,0.0011138542861631924,0.0005548796767842963,0.0004418731641366608,9.727225331964239e-05,0.0,0.0,0.0,0.0,0.0,1.9829191922592794e-05,0.0,0.0,0.0005792546190576657,0.00043814755500443483,9.645211210109179e-05,0.0,0.0 +96669,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030500,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,105032.0,,1986.0,,9.729435225087556,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,729707.6418815667,0.0,0.0,0.028119991322629618,0.0017564620135706525,0.0,0.02987636111894749,0.01930180874344759,0.0038714647059234076,0.0036352041043185347,0.0006526214978757552,0.002415354284634984,0.01930180874344759,0.0038714647059234076,0.0018787420907478822,0.0006526214978757552,0.002415354284634984,0.0,0.0017564620135706525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011735361431905667,0.0,0.0,0.0033510004127434317,0.0009677154489239179,0.0034683540270624884,0.00230015608198058,0.00046135433253248183,0.00022388575619751924,7.777153568987599e-05,0.00028783270634297474,0.0,0.00011735361431905667,0.0,0.0,0.0,0.0,0.0022407516704726726,0.00044943927909962226,0.000422011728409964,7.57629883804494e-05,0.0002803990662230791 +96670,85.0,Rural Climate Zone 3A,G1302330010400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,32054.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.002856005451670519,0.0,0.0,0.002856005451670519,0.001001493922312935,0.0008339593615337754,0.0010205214782175107,0.0,0.0,0.001001493922312935,0.0008339593615337754,0.0010205214782175107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034034436021099007,0.00012021447993988937,0.00034034436021099007,0.00011934599356083899,9.938124073858482e-05,0.00012161346869361012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011934599356083899,9.938124073858482e-05,0.00012161346869361012,0.0,0.0 +96671,50.0,the Greater Atlanta and Macon Area,G1301210002100,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,195601.0,,11446.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009092732168491357,0.0019465454588619164,0.0,0.011039277627353277,0.005783342479077085,0.002385035027141243,0.001470024265336578,0.0,0.001400893586159792,0.004983419493249982,0.002385035027141243,0.001470024265336578,0.0,0.00025427111312497725,0.0007999229858271021,0.0,0.0011466224730348148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013005690393587654,0.0,0.0,0.0010835640843831905,0.00037897361396749675,0.0012136209883190669,0.0005938648890388124,0.00028422021538933393,0.00017518007432465544,0.0,3.0301018524784507e-05,5.3446225183274794e-05,0.0,7.661067875260177e-05,0.0,0.0,0.0,0.0006358011866513737,0.00026220271511630835,0.00016160951485903733,0.0,0.0001540095209085442 +96672,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,7085.0,,40.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014285165776253177,3.175951631589404e-05,0.0,0.001460276093941212,0.0007836495236799378,0.00025622651444437433,0.00038872324657474494,0.0,3.175951631589404e-05,0.0007836495236799378,0.00025622651444437433,0.00038872324657474494,0.0,0.0,0.0,0.0,3.175951631589404e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1242543938787274e-06,0.0,0.0,0.00017023078870689615,6.015880955330814e-05,0.00017235504310077491,9.338447909899497e-05,3.053352150381914e-05,4.632264398578115e-05,0.0,0.0,0.0,0.0,2.1242543938787274e-06,0.0,0.0,0.0,9.249343188603546e-05,3.02421796288061e-05,4.588064695138435e-05,0.0,3.7485464743258697e-06 +96673,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,43253.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.010221519122219785,0.0,0.0,0.010221519122219788,0.004205737406717522,0.002343174106108319,0.0035315093415946874,0.0,0.00014118097487299776,0.004205737406717522,0.002343174106108319,0.0035315093415946874,0.0,0.00014118097487299776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012180836595513868,0.00041077730646840976,0.0012180836595513868,0.0005011916477610718,0.0002792326713873656,0.0004208448637735738,0.0,1.6824332711808015e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005011916477610717,0.0002792326713873655,0.0004208448637735737,0.0,1.682433271180801e-05 +96674,50.0,the Greater Atlanta and Macon Area,G1301210010212,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7223.0,,1014.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0013854261922071386,0.0008046571204097219,0.0,0.0021900833126168606,0.0016434722622737778,0.00027541455555189374,0.0002281061093730099,0.0,4.300767834443987e-05,0.0008388151418640559,0.00027541455555189374,0.0002281061093730099,0.0,4.300767834443987e-05,0.0008046571204097219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.376348208774256e-05,0.0,0.0,0.00016509377689864516,9.074626438653742e-05,0.00021885725898638774,9.995708228201656e-05,3.2819669098709834e-05,2.718217638866118e-05,0.0,5.1249933727715066e-06,5.376348208774256e-05,0.0,0.0,0.0,0.0,0.0,0.0001642338592642942,2.752245741785012e-05,2.2794876143672863e-05,0.0,4.297801158342963e-06 +96675,50.0,the Greater Atlanta and Macon Area,G1301510070113,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,84469.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.006664423320634316,0.0,0.0,0.006664423320634315,0.004616088521751209,0.0013439102807227673,0.0007043941445609026,0.0,0.0,0.004616088521751209,0.0013439102807227673,0.0007043941445609026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007941854199883148,0.00027258579849912294,0.0007941854199883148,0.0005500896364130261,0.00016015098371944937,8.394118029737718e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005500896364130263,0.0001601509837194494,8.39411802973772e-05,0.0,0.0 +96676,50.0,the Greater Atlanta and Macon Area,G1301350050605,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,63476.0,,11156.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005655664786178456,0.003283972011491984,0.0,0.00893963679767044,0.005285947099110029,0.0013435602741071304,0.002310129424453279,0.0,0.0,0.0020019750876180457,0.0013435602741071304,0.002310129424453279,0.0,0.0,0.003283972011491984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021941484684367588,0.0,0.0,0.0006739755959719336,0.00042501910149172307,0.0008933904428156096,0.00023857183970587642,0.0001601097078240088,0.00027529404844204837,0.0,0.0,0.00021941484684367588,0.0,0.0,0.0,0.0,0.0,0.0005282557587579397,0.00013426987420191622,0.00023086480985575362,0.0,0.0 +96677,85.0,Rural Climate Zone 3A,G1303090780100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,16077.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016254136183452325,0.0,0.0,0.0016254136183452325,0.00039549695635849577,0.0005715939172947144,0.0006583227446920225,0.0,0.0,0.00039549695635849577,0.0005715939172947144,0.0006583227446920225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019369650344162802,6.615363797664333e-05,0.00019369650344162802,4.7130389892042755e-05,6.811542730963733e-05,7.845068623994796e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7130389892042755e-05,6.811542730963733e-05,7.845068623994796e-05,0.0,0.0 +96678,35.0,Eastern Counties in South Carolina and Georgia,G1302450010510,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,11869.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.00096220525658854,0.0,0.0,0.00096220525658854,0.0007735244568812256,0.0001443049709287589,4.4375828778555415e-05,0.0,0.0,0.0007735244568812256,0.0001443049709287589,4.4375828778555415e-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.00011466244964854462,4.166680327073175e-05,0.00011466244964854462,9.217805502697325e-05,1.7196290863986728e-05,5.288103757584637e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.217805502697325e-05,1.7196290863986728e-05,5.288103757584637e-06,0.0,0.0 +96679,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,20966.0,,364.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.002388801577125132,0.0001353094958121131,0.0,0.0025241110729372447,0.0011381961998811598,0.00039736508578270906,0.0009194225992639805,0.0,6.908843958562363e-05,0.0011381961998811598,0.00039736508578270906,0.0007841131034518673,0.0,6.908843958562363e-05,0.0,0.0001353094958121131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.040249287031217e-06,0.0,0.0,0.00028466866697252204,0.00010733535441440679,0.00029370891625955326,0.0001356365459885945,4.735319599349891e-05,9.344117738902426e-05,0.0,8.233130029878943e-06,0.0,9.040249287031217e-06,0.0,0.0,0.0,0.0,0.0001324420212494146,4.623792904993352e-05,0.00010698523456819333,0.0,8.039222573966989e-06 +96680,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13452.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0029127777229509292,0.0,0.0,0.0029127777229509292,0.0014815318118922137,0.0004268512075685657,0.0009303718724934693,0.0,7.394012392294084e-05,0.0014815318118922137,0.0004268512075685657,0.0009303718724934693,0.0,7.394012392294084e-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.00034710648812739817,9.592976945936696e-05,0.00034710648812739817,0.00017654944976506565,5.086650534458237e-05,0.00011086946689037146,0.0,8.811210187571525e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017654944976506565,5.086650534458237e-05,0.00011086946689037146,0.0,8.811210187571525e-06 +96681,50.0,the Greater Atlanta and Macon Area,G1300890022900,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,13498.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00305114665731679,0.0,0.0,0.00305114665731679,0.0018996987767181523,0.0006867168332574694,0.0003889713677959628,0.0,7.5594265397727e-05,0.0018996987767181523,0.0006867168332574694,0.0003889713677959628,0.0,7.5594265397727e-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.0003635997821817934,0.00012097844733121908,0.0003635997821817934,0.00022638376289429977,8.183483753369195e-05,4.635303395410735e-05,0.0,9.00843568659454e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00022638376289429977,8.183483753369195e-05,4.635303395410735e-05,0.0,9.00843568659454e-06 +96682,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,22741.0,,7831.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0047351676463636885,0.005386958742953562,0.0,0.010122126389317249,0.004040129407251401,0.0005151645518051342,0.003955069521626887,0.00037394792887539605,0.0012378149797584311,0.002302426229514162,0.0005151645518051342,0.00030581395641056554,0.00037394792887539605,0.0012378149797584311,0.00173770317773724,0.003649255565216321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003599243357204735,0.0,0.0,0.0005642835228892916,0.0005076499388836391,0.000924207858609765,0.00027437701914961345,6.139146274652442e-05,3.644343549369068e-05,4.456286882366398e-05,0.00014750873667579908,0.00011610292407465419,0.00024382141164581923,0.0,0.0,0.0,0.0,0.0003688868528576054,4.703746119570014e-05,0.00036112040026424605,3.414357826456641e-05,0.00011301956602764703 +96683,50.0,the Greater Atlanta and Macon Area,G1302970110508,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,13509.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0029177401473752876,0.0,0.0,0.0029177401473752876,0.0011057935758945403,0.0007709126343240844,0.000967424641528679,0.0,7.360929562798359e-05,0.0011057935758945403,0.0007709126343240844,0.000967424641528679,0.0,7.360929562798359e-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.00034770572734584866,9.662642492740959e-05,0.00034770572734584866,0.00013177690273297795,9.186929770935582e-05,0.00011528754160565768,0.0,8.77198529785717e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013177690273297795,9.186929770935582e-05,0.00011528754160565768,0.0,8.77198529785717e-06 +96684,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,82473.0,,5283.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006602278936184675,0.0015390302835108845,0.0,0.008141278846096124,0.00534116708752922,0.0019239852827849515,0.0008761264757819512,0.0,0.0,0.0038021368040183356,0.0019239852827849515,0.0008761264757819512,0.0,0.0,0.0015390302835108845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010282811448602094,0.0,0.0,0.0007867794225033203,0.0003010706259852545,0.0008896075369893412,0.00045309248940531146,0.00022927720024037618,0.00010440611330092274,0.0,0.0,0.00010282811448602094,0.0,0.0,0.0,0.0,0.0,0.0005836358865983131,0.0002102362345005291,9.57354158904989e-05,0.0,0.0 +96685,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,75727.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.006747171323762552,0.0,0.0,0.006747171323762552,0.0024938067181450303,0.0017010328082627724,0.0025523317973547496,0.0,0.0,0.0024938067181450303,0.0017010328082627724,0.0025523317973547496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008040475522789467,0.000264068087920816,0.0008040475522789467,0.00029718219552533036,0.00020270883903792178,0.00030415651771569457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029718219552533036,0.00020270883903792178,0.00030415651771569457,0.0,0.0 +96686,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030401,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,42447.0,,640.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,56080.226740887294,0.0,0.0,0.00374302977951247,0.0001864027797494829,0.0,0.003929432559261954,0.0027412477228565394,0.0007405083542923894,0.00044770685571246185,0.0,0.0,0.002554844943107057,0.0007405083542923894,0.00044770685571246185,0.0,0.0,0.0001864027797494829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2454294556652608e-05,0.0,0.0,0.0004460507389221928,0.00014920088713989404,0.00045850503347884535,0.0003044566946654007,8.824516984024622e-05,5.335249398872966e-05,0.0,0.0,1.2454294556652608e-05,0.0,0.0,0.0,0.0,0.0,0.00031986192916827136,8.640606567375936e-05,5.224058277404483e-05,0.0,0.0 +96687,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,249348.0,,7638.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,140298.9118897092,0.0,0.0,0.011670921752942657,0.0012988908169102283,0.0,0.012969812569852886,0.006150201387219396,0.003204833748120225,0.0021303029246193443,0.0,0.001484456779532501,0.006150201387219396,0.003204833748120225,0.002026030669108014,0.0,0.0002898382181336032,0.0,0.00010427225551133053,0.0011946185613988976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.678434239977931e-05,0.0,0.0,0.001390801996211771,0.0004780155618787569,0.0014775863386115504,0.000732908038244061,0.00038191406546690443,0.00024143829927325368,0.0,3.45394803334227e-05,0.0,6.966866658291272e-06,7.981747574148802e-05,0.0,0.0,0.0,0.0007006619024385996,0.0003651107938715114,0.00024269483321897215,0.0,0.00016911678915043881 +96688,50.0,the Greater Atlanta and Macon Area,G1300670030230,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,119355.0,,6839.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010634347547035886,0.0020131767939167073,0.0,0.012647524340952593,0.005646151008226167,0.0024349440532660366,0.0045664599690666855,0.0,0.0,0.00363297421430946,0.0024349440532660366,0.0045664599690666855,0.0,0.0,0.0020131767939167073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013450879666168766,0.0,0.0,0.001267276362040987,0.0005032887059949193,0.0014017851587026747,0.0004329351025378209,0.00029016797015030875,0.0005441769465788834,0.0,0.0,0.00013450879666168766,0.0,0.0,0.0,0.0,0.0,0.0006257897177155748,0.0002698764077557476,0.0005061224347060973,0.0,0.0 +96689,50.0,the Greater Atlanta and Macon Area,G1301210003000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,62427.0,,4519.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005209714117066536,0.0013300568473361407,0.0,0.006539770964402677,0.0023084414961069056,0.00175971133550398,0.002471587443185494,0.0,0.0,0.0009783846487707649,0.00175971133550398,0.002471587443185494,0.0,0.0,0.0013300568473361407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.886615839121505e-05,0.0,0.0,0.0006208320918132701,0.0002679081748063044,0.0007096982502044852,0.0001165923070719982,0.0002097015776411952,0.00029453454987589,0.0,0.0,8.886615839121505e-05,0.0,0.0,0.0,0.0,0.0,0.00025051288484016993,0.00019096449439437517,0.00026821754052304723,0.0,0.0 +96690,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4578.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010407858159354447,0.0,0.0,0.0010407858159354447,0.0003005575059686432,0.00030948986993248844,0.0003787156906522887,0.0,5.1940042308285064e-05,0.0003005575059686432,0.00030948986993248844,0.0003787156906522887,0.0,5.1940042308285064e-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.00012402668738278728,3.751986937824758e-05,0.00012402668738278728,3.5816352666008346e-05,3.6880790224601886e-05,4.513018130370176e-05,0.0,6.189507285154992e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.5816352666008346e-05,3.6880790224601886e-05,4.513018130370176e-05,0.0,6.189507285154992e-06 +96691,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6570.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013090048560720187,0.0,0.0,0.0013090048560720187,0.0005749795766356653,0.0004907837755690502,0.00019965487600668812,0.0,4.358662786061501e-05,0.0005749795766356653,0.0004907837755690502,0.00019965487600668812,0.0,4.358662786061501e-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.00015599411577894452,5.381399892310572e-05,0.00015599411577894452,6.852031925792774e-05,5.848670518937617e-05,2.3792872653716563e-05,0.0,5.1942186779240385e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.852031925792774e-05,5.848670518937617e-05,2.3792872653716563e-05,0.0,5.1942186779240385e-06 +96692,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,15627.0,,1274.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013779894592919248,0.0003712565059276405,0.0,0.0017492459652195653,0.0012259695941059768,0.0003373899425545472,0.00018588642855904116,0.0,0.0,0.0008547130881783362,0.0003373899425545472,0.00018588642855904116,0.0,0.0,0.0003712565059276405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4804205454490963e-05,0.0,0.0,0.00016421364269776032,6.869933324379042e-05,0.0001890178481522513,0.00010185531444002325,4.020642618336099e-05,2.215190207437606e-05,0.0,0.0,2.4804205454490967e-05,0.0,0.0,0.0,0.0,0.0,0.00013247429989007517,3.645726341399189e-05,2.008628484818423e-05,0.0,0.0 +96693,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,279444.0,,13397.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.013450606780480455,0.002278351442476785,0.0,0.01572895822295724,0.006703034056296642,0.0023686167124662735,0.003956902488474604,0.0,0.002700404965719722,0.005979262972768667,0.0023686167124662735,0.0024023221295257947,0.0,0.002700404965719722,0.0007237710835279753,0.0015545803589488093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015222610753690214,0.0,0.0,0.0016028822958366069,0.0006071700755575449,0.001755108403373509,0.0007125369819828987,0.0002822633845444467,0.00028627999265441674,0.0,0.00032180193665484513,4.835814736003021e-05,0.00010386796017687192,0.0,0.0,0.0,0.0,0.0007479549016243221,0.0002643009815076544,0.00044152910258958133,0.0,0.0003013234176519512 +96694,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,8435.0,,,,9.325022323477118,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,27975.06697043135,0.0,0.0,0.0018919512873243629,0.0,0.0,0.0018919512873243624,0.001131847528051751,0.0004321985328887291,0.0002595842722074023,0.0,6.823257001842511e-05,0.001131847528051751,0.0004321985328887291,0.0002595842722074023,0.0,6.823257001842511e-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.0002254622734538202,7.783734963785287e-05,0.0002254622734538202,0.0001348813357866776,5.150474246422409e-05,3.093444348004624e-05,0.0,8.131219055701633e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013488133578667762,5.15047424642241e-05,3.0934443480046244e-05,0.0,8.131219055701637e-06 +96695,35.0,Eastern Counties in South Carolina and Georgia,G1300510004210,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,29636.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002588361395148253,0.0,0.0,0.0025883613951482526,0.0007282643574444869,0.0006915902779187324,0.0011685374493913313,0.0,0.0,0.0007282643574444869,0.0006915902779187324,0.0011685374493913313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030845002323549533,0.00010496673398259933,0.00030845002323549533,8.678585548231329e-05,8.24154763292849e-05,0.00013925234864494568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.67858554823133e-05,8.241547632928491e-05,0.0001392523486449457,0.0,0.0 +96696,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950500,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,68481.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008404526832423117,0.0,0.0,0.008404526832423119,0.006064149874946028,0.0014179914897514438,0.0009223550941262096,0.0,0.0,0.006064149874946028,0.0014179914897514438,0.0009223550941262096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010015514495454168,0.0002976193600115368,0.0010015514495454168,0.0007226531866234496,0.0001689793441463934,0.00010991529921159962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007226531866234494,0.00016897934414639339,0.0001099152992115996,0.0,0.0 +96697,85.0,Rural Climate Zone 3A,G1300550010200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,18041.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016074295090547786,0.0,0.0,0.0016074295090547786,0.0006156641919382156,0.00045270238249741376,0.0005390322450128517,0.0,0.0,0.0006156641919382156,0.00045270238249741376,0.0005390322450128517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019155374762686318,6.992999390795018e-05,0.00019155374762686318,7.336731258266993e-05,5.394752145491072e-05,6.423525637814739e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.336731258266993e-05,5.394752145491072e-05,6.423525637814739e-05,0.0,0.0 +96698,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,NaturalGas,14475.0,,244.0,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003560787645698403,0.00019386538084493658,0.0,0.003754653026543339,0.001858427946922238,0.0007242658447351152,0.0009780111469673103,0.0,0.00019386538084493658,0.001858427946922238,0.0007242658447351152,0.0009780111469673103,0.0,0.0,0.0,0.0,0.00019386538084493658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.295415966916164e-05,0.0,0.0,0.0004243282527396808,0.00017161003413925093,0.0004372824124088425,0.00022146321601422965,8.630856175507827e-05,0.00011654661901950444,0.0,0.0,0.0,0.0,1.295415966916164e-05,0.0,0.0,0.0,0.00021644020104470983,8.435099423891962e-05,0.00011390322106602997,0.0,2.2578363651481964e-05 +96699,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,119062.0,,8425.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006587857628511979,0.0014326663938245263,0.0,0.008020524022336507,0.0035007180194980654,0.0024712045836426996,0.00125243726998969,0.0,0.000796181879567471,0.00281371970555528,0.0024712045836426996,0.0011467820462875953,0.0,0.0001561690233878251,0.0006869983139427859,0.00010565522370209463,0.0006400128561796459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.572268717590258e-05,0.0,0.0,0.0007850624076109618,0.00032040300047408,0.0008807850947868644,0.0003353056017521399,0.0002944887290425533,0.00013665982555043736,0.0,1.861036415912819e-05,4.59013521775763e-05,7.059286077016985e-06,4.276204892130929e-05,0.0,0.0,0.0,0.00038443625928165343,0.00027137879736782966,0.00013753815542355446,0.0,8.743382979833393e-05 +96700,50.0,the Greater Atlanta and Macon Area,G1300570091102,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,20513.0,,1425.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005135064028766855,0.0011050434614145001,0.0,0.006240107490181355,0.002967105573916557,0.0005225223801888263,0.0017990715624916739,0.0004176459445489458,0.0005337620290353517,0.0018620621125020572,0.0005225223801888263,0.0017990715624916739,0.0004176459445489458,0.0005337620290353517,0.0011050434614145001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.383400520557475e-05,0.0,0.0,0.0006119346971687381,0.00024076017651850098,0.0006857687023743127,0.00022189799553423665,6.226788462490174e-05,0.00021439154519025668,4.9769982062460145e-05,6.360728975688277e-05,7.383400520557475e-05,0.0,0.0,0.0,0.0,0.0,0.00032607581559035165,5.742360931882195e-05,0.00019771245492641125,4.589801023393924e-05,5.865881230478857e-05 +96701,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Propane,7291.0,,,1099.0,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015233815912043035,0.0,0.00028203112145103827,0.0018054127126553416,0.0009383117515724427,0.00046729496662708696,0.0003666404578863498,0.0,3.3165536569462275e-05,0.0006894461666908666,0.00046729496662708696,0.0003666404578863498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024886558488157603,3.3165536569462275e-05,0.0,0.0,0.0,2.2746549653542603e-05,0.0001815372077133098,8.801405899160162e-05,0.00020428375736685237,8.215940949552909e-05,5.568626003475761e-05,4.3691538183023095e-05,0.0,0.0,0.0,0.0,0.0,2.0071662142964724e-05,2.6748875105778842e-06,0.0,0.00010617065496939577,5.2874764264176836e-05,4.1485633625326707e-05,0.0,3.752704507953081e-06 +96702,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,501324.0,,32496.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,280597.8237794184,0.0,0.0,0.023508686206848012,0.005526216777763477,0.0,0.02903490298461149,0.014316149833923179,0.006244863786841058,0.0035871535314208223,0.0,0.004886735832426433,0.014316149833923179,0.006244863786841058,0.0022381389827761055,0.0,0.0007095513336690932,0.0,0.0013490145486447175,0.004177184498757341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036922945154569634,0.0,0.0,0.002801485600571783,0.0011394467242598438,0.0031707150521174793,0.0017060284552899009,0.0007441885872495583,0.00026671478266187295,0.0,8.455588826403365e-05,0.0,9.013325425949708e-05,0.00027909501264725264,0.0,0.0,0.0,0.0015633746663747208,0.0006819614178788431,0.00039172997073076194,0.0,0.0005336489971331536 +96703,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,12653.0,,1841.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.001010455287351864,0.0005418249991859425,0.0,0.0015522802865378068,0.0005458453376109416,0.00046737201430771573,0.0005390322450128517,0.0,0.0,4.020338424999064e-06,0.00046737201430771573,0.0005390322450128517,0.0,0.0,0.0005418249991859425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6201562517382576e-05,0.0,0.0,0.00012041264602613738,7.588974597993576e-05,0.00015661420854351995,4.790905582209263e-07,5.5695191688141124e-05,6.423470659994161e-05,0.0,0.0,3.6201562517382576e-05,0.0,0.0,0.0,0.0,0.0,5.507197139491983e-05,4.715456271074072e-05,5.4384578071537856e-05,0.0,0.0 +96704,50.0,the Greater Atlanta and Macon Area,G1300670030311,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,67618.0,,8819.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006543423027552104,0.0025958803486911893,0.0,0.009139303376243293,0.0053828341861918766,0.0015270534301610953,0.002229415759890321,0.0,0.0,0.0027869538375006873,0.0015270534301610953,0.002229415759890321,0.0,0.0,0.0025958803486911893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001734419525499188,0.0,0.0,0.0007797673470460217,0.0004103112330324675,0.0009532092995959406,0.00033211601803171596,0.00018197606925617085,0.0002656752597581348,0.0,0.0,0.0001734419525499188,0.0,0.0,0.0,0.0,0.0,0.0005614178010326785,0.0001592683239286188,0.00023252317463464336,0.0,0.0 +96705,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,66303.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.00557611732665481,0.0,0.0,0.00557611732665481,0.0019144176408506994,0.0014053691411907037,0.0022563305446134064,0.0,0.0,0.0019144176408506994,0.0014053691411907037,0.0022563305446134064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000664494832039035,0.0002052971727316526,0.000664494832039035,0.00022813734973414087,0.00016747505059915862,0.00026888243170573536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022813734973414087,0.00016747505059915862,0.00026888243170573536,0.0,0.0 +96706,50.0,the Greater Atlanta and Macon Area,G1301350050534,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,19596.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0017459317022763114,0.0,0.0,0.0017459317022763116,0.0008746537794845293,0.00040758866123979064,0.0004636892615519913,0.0,0.0,0.0008746537794845293,0.00040758866123979064,0.0004636892615519913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002080604064456543,7.570536603320694e-05,0.0002080604064456543,0.00010423135144491382,4.857180977332984e-05,5.5257245227410626e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010423135144491382,4.857180977332983e-05,5.525724522741062e-05,0.0,0.0 +96707,50.0,the Greater Atlanta and Macon Area,G1302970110800,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,103777.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008610490210210514,0.0,0.0,0.008610490210210514,0.005284277335782311,0.002791819765920396,0.0005344234821072434,0.0,0.0,0.005284277335782311,0.002791819765920396,0.0005344234821072434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010260960803244246,0.00027816597133723285,0.0010260960803244246,0.0006297174875320901,0.0003326959614199636,6.368625093764154e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006297174875320901,0.0003326959614199636,6.368625093764154e-05,0.0,0.0 +96708,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,9764.0,,2114.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005025848248128168,0.00035944761706873047,0.0,0.0008620147115201272,0.0003747843796970761,8.980428059256745e-05,0.0002188635813691318,0.0,0.00017858020022277184,0.00020079634308209796,8.980428059256745e-05,0.00016368669662992748,0.0,4.831523486964389e-05,0.00017398803661497814,5.517688473920431e-05,0.00013026496535312795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4015927198514506e-05,0.0,0.0,5.989116172120163e-05,4.0505630669688645e-05,8.390708891971614e-05,2.3928152349277086e-05,1.0701641646718627e-05,1.950593399457184e-05,0.0,5.75754659176866e-06,1.162473701963315e-05,3.6865567721490226e-06,8.703448780520203e-06,0.0,0.0,0.0,3.6480892788369725e-05,8.74140041503892e-06,2.130381968869505e-05,0.0,1.7382701871722014e-05 +96709,35.0,Eastern Counties in South Carolina and Georgia,G1300510011006,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7311.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001509569509889839,0.0,0.0,0.0015095695098898388,0.0007599125935167566,0.0003202417895185983,0.000391452580008142,0.0,3.796254684634211e-05,0.0007599125935167566,0.0003202417895185983,0.000391452580008142,0.0,3.796254684634211e-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.00017989324739449213,5.950440971717219e-05,0.00017989324739449213,9.055770091280922e-05,3.816275772033056e-05,4.6648846149360686e-05,0.0,4.523942611991666e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.055770091280923e-05,3.816275772033057e-05,4.664884614936069e-05,0.0,4.523942611991667e-06 +96710,50.0,the Greater Atlanta and Macon Area,G1300890021911,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,105430.0,,12693.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009032749063177671,0.0037363981875327182,0.0,0.012769177940316684,0.0053116956787938015,0.002891022292456198,0.0045664599690666855,0.0,0.0,0.001575297491261084,0.002891022292456198,0.0045664599690666855,0.0,0.0,0.0037363981875327182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024964511288616244,0.0,0.0,0.001076416211743184,0.0005307151021479542,0.0013260613246293465,0.00018772532548527013,0.000344517847484189,0.0005441766959980669,0.0,0.0,0.00024964511288616244,0.0,0.0,0.0,0.0,0.0,0.000551612189975841,0.00030022863402687916,0.00047422050062662655,0.0,0.0 +96711,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,37473.0,,1489.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003304404630031897,0.00043382612076940923,0.0,0.003738230750801305,0.0023576899091566094,0.0010130506620473366,0.00036749017959735933,0.0,0.0,0.0019238637883872004,0.0010130506620473366,0.00036749017959735933,0.0,0.0,0.00043382612076940923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.89863235032739e-05,0.0,0.0,0.0003937790001272543,0.00012701074996496908,0.00042276532363052827,0.00022926283061309915,0.00012072313213512309,4.3793037379032e-05,0.0,0.0,2.8986323503273903e-05,0.0,0.0,0.0,0.0,0.0,0.0002666367070174487,0.00011456828632174698,4.156033029133262e-05,0.0,0.0 +96712,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,22878.0,,5115.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005254010240660659,0.003966706574209697,0.0,0.009220716814870356,0.004481223736874739,0.0010411634427903633,0.0028542239207528922,0.00041255171521562857,0.00043163486001980116,0.0022205988246279088,0.0010411634427903633,0.0011481422587900254,0.00041255171521562857,0.00043163486001980116,0.00226062491224683,0.0017060816619628668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026503236234524935,0.0,0.0,0.000626112285114937,0.00044140240802676036,0.0008911446474601863,0.00026462533202761633,0.0001240738393120526,0.0001368223395768744,4.9163150681119326e-05,5.143725957189631e-05,0.0001510418655024082,0.00011399049684284117,0.0,0.0,0.0,0.0,0.00043309198486035557,0.00010062419742438403,0.00027584909293925964,3.987143951997572e-05,4.171574758087621e-05 +96713,85.0,Rural Climate Zone 3A,G1300310110700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7050.0,,638.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006216868332919043,0.00018576493416129014,0.0,0.0008074517674531944,0.0005727549645976862,0.00019019947967920193,4.4497323176306426e-05,0.0,0.0,0.00038699003043639606,0.00019019947967920193,4.4497323176306426e-05,0.0,0.0,0.00018576493416129014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2411028102710797e-05,0.0,0.0,7.40849614159103e-05,2.9440059966310406e-05,8.64959895186211e-05,4.6116694029710435e-05,2.2665625776159383e-05,5.302641610040482e-06,0.0,0.0,1.2411028102710797e-05,0.0,0.0,0.0,0.0,0.0,6.135475753658737e-05,2.0374581942732676e-05,4.766650039301081e-06,0.0,0.0 +96714,50.0,the Greater Atlanta and Macon Area,G1300890021814,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,214338.0,,12271.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011033107461579096,0.0020868458087787947,0.0,0.013119953270357892,0.006825586314432047,0.002059541052191914,0.0021079803995914977,0.0,0.002126845504142434,0.005437334475964753,0.002059541052191914,0.0014093864292799975,0.0,0.002126845504142434,0.0013882518384672941,0.0006985939703115004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013943089687116185,0.0,0.0,0.0013147950274170494,0.00041722640686317833,0.001454225924288211,0.0006479571015053414,0.00024543170123312165,0.00016795397628268873,0.0,0.0002534522483958979,9.275491179379799e-05,4.6675985077363846e-05,0.0,0.0,0.0,0.0,0.0007565533475900211,0.00022828114769280733,0.00023365020300059015,0.0,0.00023574122600479258 +96715,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000300,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,29472.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.007076748057430101,0.0,0.0,0.0070767480574301005,0.003197455470761625,0.0016608407477590324,0.0020474963174902947,0.0,0.00017095552141914845,0.003197455470761625,0.0016608407477590324,0.0020474963174902947,0.0,0.00017095552141914845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008433178123166259,0.00026303491938041174,0.0008433178123166259,0.0003810325209686404,0.00019791810795580106,0.00024399485486548535,0.0,2.0372328526698908e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00038103252096864047,0.0001979181079558011,0.00024399485486548538,0.0,2.037232852669891e-05 +96716,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300490010100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,121065.0,,4020.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.02520806369259596,0.002765378642419931,0.0,0.027973442335015884,0.010494998518627412,0.002430876697603121,0.006499048613521626,0.0003885070829915651,0.008160011422272163,0.010494998518627412,0.002430876697603121,0.0037336699711016962,0.0003885070829915651,0.008160011422272163,0.0,0.002765378642419931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018476801744778885,0.0,0.0,0.0030039959099742754,0.0008895983107128969,0.0031887639274220648,0.001250668556284346,0.0002896828469771112,0.00044493418689978863,4.629763327063821e-05,0.0009724126865423913,0.0,0.00018476801744778885,0.0,0.0,0.0,0.0,0.0011963516071333054,0.00027710182509875595,0.0007408431015806328,4.4286911741309996e-05,0.0009301804818680609 +96717,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7951.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001652321919163884,0.0,0.0,0.0016523219191638837,0.0007636344118350255,0.00022496324057091617,0.0006174910125376692,0.0,4.623325422027285e-05,0.0007636344118350255,0.00022496324057091617,0.0006174910125376692,0.0,4.623325422027285e-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.00019690867149882175,6.514185358713841e-05,0.00019690867149882175,9.100299148806792e-05,2.680906930006983e-05,7.35869527185005e-05,0.0,5.509657992183468e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.100299148806794e-05,2.6809069300069833e-05,7.358695271850051e-05,0.0,5.509657992183469e-06 +96718,50.0,the Greater Atlanta and Macon Area,G1300890022900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,38634.0,,3297.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033020658628751904,0.0009605043350200259,0.0,0.004262600571494653,0.0030578621233956645,0.0009687659540670942,0.00023597249403189388,0.0,0.0,0.002097357788375639,0.0009687659540670942,0.00023597249403189388,0.0,0.0,0.0009605043350200259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.41759566420148e-05,0.0,0.0,0.00039350215828575945,0.00018106633100571306,0.0004576781149277743,0.00024993893238235986,0.00011544636286183408,2.8120482617137137e-05,0.0,0.0,6.41759566420148e-05,0.0,0.0,0.0,0.0,0.0,0.00032832458703819806,0.0001040170122034599,2.5336515686116323e-05,0.0,0.0 +96719,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,124152.0,,1961.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.013067014703388162,0.0007288191027291052,0.0,0.013795833806117267,0.006147204940898303,0.0021190737992476637,0.00530438797543173,0.0,0.000225128342115801,0.006147204940898303,0.0021190737992476637,0.004575568872702624,0.0,0.000225128342115801,0.0,0.0007288191027291052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.869551045353782e-05,0.0,0.0,0.001557169350928513,0.0004516711385544214,0.001605864861382051,0.000732549809204788,0.00025252567992354864,0.0005452611612802134,0.0,2.6828082949747976e-05,0.0,4.869551045353781e-05,0.0,0.0,0.0,0.0,0.0007155479363578237,0.0002466647685606557,0.0006174422206439044,0.0,2.6205425419423082e-05 +96720,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,16975.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0014968717274912854,0.0,0.0,0.0014968717274912854,0.0009345652811001857,0.0004650805545908559,9.719551820080583e-05,0.0,0.0,0.0009345652811001857,0.0004650805545908559,9.719551820080583e-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.00017837856371710585,5.034099321293538e-05,0.00017837856371710585,0.00011136987190072702,5.5422518721568214e-05,1.1582553546827213e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011136987190072702,5.5422518721568214e-05,1.1582553546827213e-05,0.0,0.0 +96721,50.0,the Greater Atlanta and Macon Area,G1300790070100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,47032.0,,640.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.00242095673937827,0.00010879349767344401,0.0,0.0025297679674131336,0.001472116447984144,0.0008656139748883981,0.00014728611231637864,0.0,4.471597150137318e-05,0.0013633229503107,0.0008656139748883981,0.00014728611231637864,0.0,4.471597150137318e-05,0.00010879349767344401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.269425962621553e-06,0.0,0.0,0.000288501153197186,8.487704798439347e-05,0.00029577057915980756,0.00016246479623003757,0.0001031536937099655,1.7551826747684054e-05,0.0,5.328723613537883e-06,7.269425962621553e-06,0.0,0.0,0.0,0.0,0.0,0.00017211409900813363,0.00010120420132577074,1.7220116351839934e-05,0.0,5.228016545003048e-06 +96722,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,48432.0,,1702.0,,3.3063363735822096,Lodging,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,57860.88653768867,0.0,0.0,0.004406439302098628,0.0005115932124796251,0.0,0.004918032514578253,0.0015689694196633944,0.0009301438370356971,0.0016580320787670452,0.0,0.0007608558410899125,0.0015689694196633944,0.0009301438370356971,0.00114643886628742,0.0,0.0007608558410899125,0.0,0.0005115932124796251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4182044109111185e-05,0.0,0.0,0.0005251077730892377,0.00023638589585439415,0.0005592898171983491,0.00018697138018267389,0.00011084363710306282,0.00013661914275601723,0.0,9.066987854941756e-05,0.0,3.4182044109111185e-05,0.0,0.0,0.0,0.0,0.0001784267625950396,0.00010577806776222128,0.00018855517028279386,0.0,8.652625272729931e-05 +96723,81.0,the Columbus-Albany Area,G1302150001000,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,4613.0,,115.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0011076958385905443,9.114319526071677e-05,0.0,0.0011988390338512611,0.0005357764236832335,0.0003969112468749363,0.0002305046145114498,0.0,3.57294558553808e-05,0.0004802799772041583,0.0003969112468749363,0.0002305046145114498,0.0,0.0,5.549644647907528e-05,0.0,3.57294558553808e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.090232244396728e-06,0.0,0.0,0.00013200482459262356,4.10202546007448e-05,0.00013809505683702028,5.7235273382316524e-05,4.730016823863215e-05,2.7469382971674898e-05,0.0,0.0,3.7082993067061747e-06,0.0,2.3874594642281178e-06,0.0,0.0,0.0,6.171643864713469e-05,4.572046759302244e-05,2.6551978158314973e-05,0.0,4.11569952077218e-06 +96724,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,101674.0,,7391.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.011437837225890942,0.002747030754898037,0.0,0.014184829232365208,0.008535890272752119,0.0013782426851492128,0.003920294278292932,0.0,0.00035047949301848883,0.006689062898927109,0.0013782426851492128,0.003370570390238394,0.0,0.0,0.00184682737382501,0.0005497238880545384,0.00035047949301848883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018353952685359838,0.0,0.0,0.0013630242325911588,0.0006672248269838016,0.0015465637594447572,0.0007971222744738724,0.00016424242985356465,0.000401664145836042,0.0,0.0,0.0001233935301844473,3.672913458786357e-05,2.341686208128752e-05,0.0,0.0,0.0,0.0009306631989840486,0.00015026900596787698,0.0004274274267139367,0.0,3.821257721553733e-05 +96725,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,16810.0,,2737.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0014231384232370734,0.0008056328549209957,0.0,0.002228771278158069,0.0010433238556967037,0.00047688579226000356,0.0007085616302013619,0.0,0.0,0.00023769100077570808,0.00047688579226000356,0.0007085616302013619,0.0,0.0,0.0008056328549209957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.382779593132835e-05,0.0,0.0,0.00016959325609495137,0.00011027444580322204,0.00022342105202627973,2.832527750486066e-05,5.68297594768276e-05,8.443821911326313e-05,0.0,0.0,5.382779593132835e-05,0.0,0.0,0.0,0.0,0.0,0.00010458700528324917,4.780496161596685e-05,7.10290851270637e-05,0.0,0.0 +96726,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,76972.0,,605.0,,9.325022323477118,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.01771784186032846,0.0005125397325606829,0.0,0.01823038159288914,0.009470716072220628,0.0024792640175995374,0.005767861770508296,0.0,0.0005125397325606829,0.009470716072220628,0.0024792640175995374,0.005767861770508296,0.0,0.0,0.0,0.0,0.0005125397325606829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4242954957017314e-05,0.0,0.0,0.0021114009868563933,0.0005809090640336314,0.0021456439418134103,0.0011286069386304274,0.0002954491034914433,0.0006873449447345228,0.0,0.0,0.0,0.0,3.4242954957017314e-05,0.0,0.0,0.0,0.001114665892288361,0.00029179958699237374,0.0006788545594643798,0.0,6.0323903068296146e-05 +96727,50.0,the Greater Atlanta and Macon Area,G1300590130700,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,33880.0,,2630.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002854905731952607,0.0007662651666156031,0.0,0.003621201272167648,0.002158712459239898,0.0010793866032193867,0.00038310220970836376,0.0,0.0,0.0013924472926242948,0.0010793866032193867,0.00038310220970836376,0.0,0.0,0.0007662651666156031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1197757802551183e-05,0.0,0.0,0.0003402152461329773,0.00013788046642829532,0.0003914130039355284,0.00016593605634164475,0.00012862903835208594,4.565377101991896e-05,0.0,0.0,5.1197757802551183e-05,0.0,0.0,0.0,0.0,0.0,0.00023333365499409402,0.00011667011055725348,4.140923838418094e-05,0.0,0.0 +96728,85.0,Rural Climate Zone 3A,G1302390960300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,7348.0,,49.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001490712297077277,3.854149636251726e-05,0.0,0.001529253793439794,0.0010356579773636075,0.00028641459635922163,0.00016863972335444782,0.0,3.854149636251726e-05,0.0010356579773636075,0.00028641459635922163,0.00016863972335444782,0.0,0.0,0.0,0.0,3.854149636251726e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.576422766026171e-06,0.0,0.0,0.00017764755799420769,6.347253513499971e-05,0.00018022398076023388,0.0001234189259433793,3.41319070868809e-05,2.0096724963947485e-05,0.0,0.0,0.0,0.0,2.576422766026171e-06,0.0,0.0,0.0,0.00012205325511517842,3.375422635871769e-05,1.987434812169372e-05,0.0,4.542151164644078e-06 +96729,81.0,the Columbus-Albany Area,G1302150001400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,7399.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0014188398499978187,0.0,0.0,0.001418839849997819,0.0006410625285533718,0.0003543998109729323,0.00038318187263421127,0.0,4.01129307635641e-05,0.0006410625285533718,0.0003543998109729323,0.00038318187263421127,0.0,4.01129307635641e-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.00016907668370043616,5.017038501731313e-05,0.00016907668370043616,7.639250220705804e-05,4.2232211580085624e-05,4.566203879825828e-05,0.0,4.78007528969464e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.639250220705803e-05,4.223221158008562e-05,4.566203879825827e-05,0.0,4.780075289694639e-06 +96730,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,7522.0,,1088.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0006626806687862962,0.0003202767313228262,0.0,0.0009829574001091225,0.00045933133745771753,0.00025223787416081913,0.00027138818849058567,0.0,0.0,0.00013905460613489133,0.00025223787416081913,0.00027138818849058567,0.0,0.0,0.0003202767313228262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1398915465802514e-05,0.0,0.0,7.897123263282895e-05,4.6181906688188515e-05,0.00010037014809863148,1.657104872224091e-05,3.005902658311587e-05,3.234115732747216e-05,0.0,0.0,2.1398915465802514e-05,0.0,0.0,0.0,0.0,0.0,4.690249482007609e-05,2.5756103756678385e-05,2.7711549521876987e-05,0.0,0.0 +96731,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150002000,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,31396.0,,4949.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002737815506120074,0.0014417132709123276,0.0,0.004179498403432964,0.0031995853383722144,0.0006782121018455604,0.0003017313368146266,0.0,0.0,0.0017578720674598866,0.0006782121018455604,0.0003017313368146266,0.0,0.0,0.0014417132709123276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.632586019109261e-05,0.0,0.0,0.0003262587737848723,0.0001937536189924824,0.00042258463397596487,0.00020948131235216534,8.082087643216415e-05,3.595658500054273e-05,0.0,0.0,9.632586019109261e-05,0.0,0.0,0.0,0.0,0.0,0.00032350666720683496,6.857330357658857e-05,3.0507734234843966e-05,0.0,0.0 +96732,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970600,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,9132.0,,7618.0,,7.56685751697572,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0033288824546895872,0.005240578282110699,0.0,0.008569460736800285,0.001911982707305175,0.0002691650512215883,0.004298679902762679,0.0002756198486129933,0.001814084946868866,0.001911982707305175,0.0002691650512215883,0.000657385254329091,0.0002756198486129933,0.0002148013131917551,0.0,0.003641294648433588,0.0015992836336771107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035014465269999067,0.0,0.0,0.00039670073295740125,0.00046229081652186013,0.000746845385657392,0.0002278497218552485,3.2076222143469285e-05,7.83401684431227e-05,3.284543610374433e-05,2.5597731233597252e-05,0.0,0.00024328991600152216,0.0001068547366984685,0.0,0.0,0.0,0.00016663305968314362,2.3458264488196784e-05,0.00037463842222996285,2.4020812797266253e-05,0.00015810107699559004 +96733,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,108412.0,,10982.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.0052113610196661804,0.0018676276201812613,0.0,0.007078988639847442,0.00265274575422262,0.0015711227861537188,0.0015181444662306011,0.0,0.0013369579028790816,0.0025682073909718077,0.0015711227861537188,0.0008359510802326496,0.0,0.00023606203194658298,8.453836325081176e-05,0.0006821933859979516,0.0011008958709324986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012478432014728985,0.0,0.0,0.0006210271592848399,0.0002930225226503708,0.0007458114794321298,0.0003060479852481448,0.00018722746650839923,9.961856848889549e-05,0.0,2.8131026148747652e-05,5.648375549079397e-06,4.558030571023046e-05,7.355563888798003e-05,0.0,0.0,0.0,0.00027948176443982973,0.00016552666900961253,0.00015994510345414915,0.0,0.00014085607453471127 +96734,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,282774.0,,68404.0,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.07340692435034804,0.047348206278792604,0.0,0.12075513062914066,0.10233832292880436,0.010124888955363039,0.003154997899831511,0.0007760841624682755,0.004360764515650735,0.05697680261882236,0.010124888955363039,0.003154997899831511,0.0007760841624682755,0.002374078546840139,0.045361520309982015,0.0,0.001986685968810596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003163530862609512,0.0,0.0,0.008747762726326977,0.0055603415475103685,0.011911293588936488,0.006789816555117125,0.0012065636449935875,0.0003759750633068872,9.24844647697119e-05,0.00028291439813364443,0.003030792098660589,0.0,0.0001327387639489237,0.0,0.0,0.0,0.010094658532961865,0.0009987196757137728,0.0003112091888897541,7.655299001144643e-05,0.0004301460828000429 +96735,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,29358.0,,1463.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0015111941645539406,0.00024888108325328117,0.0,0.0017600752478072218,0.0007795508005554616,0.00022911173026992233,0.0004988614489146058,0.0,0.00025253353770581205,0.0007140016543855265,0.00022911173026992233,0.0003155295118312597,0.0,0.00025253353770581205,6.554914616993521e-05,0.00018333193708334596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6628716029574497e-05,0.0,0.0,0.0001800856991340969,6.376679914650204e-05,0.00019671441516367144,8.508601351757654e-05,2.730274315058664e-05,3.760096092770777e-05,0.0,3.009386864988434e-05,4.379594155541563e-06,1.2249121874032934e-05,0.0,0.0,0.0,0.0,8.712632031652521e-05,2.560662112789453e-05,5.57551379085622e-05,0.0,2.8224354180823538e-05 +96736,50.0,the Greater Atlanta and Macon Area,G1300890022001,ComStock 90.1-2004,gen5_led,5001_10000,Electricity,17340.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0039957441464934206,0.0,0.0,0.0039957441464934206,0.0019059845143223396,0.0004658062392997794,0.0015417425615744296,0.0,8.221083129687158e-05,0.0019059845143223396,0.0004658062392997794,0.0015417425615744296,0.0,8.221083129687158e-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.00047616349378385646,0.0001532638840988677,0.00047616349378385646,0.00022713172119243606,5.550904116970275e-05,0.00018372585874368413,0.0,9.796872678033475e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00022713172119243606,5.550904116970275e-05,0.00018372585874368413,0.0,9.796872678033475e-06 +96737,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,67795.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00579708249199827,0.0,0.0,0.005797082491998269,0.0022135799230407066,0.0014617459479595836,0.0021217873106042775,0.0,0.0,0.0022135799230407066,0.0014617459479595836,0.0021217873106042775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006908286870763877,0.00021715441011382574,0.0006908286870763877,0.00026378864093854593,0.000174193835513295,0.00025284986785392987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000263788640938546,0.00017419383551329503,0.0002528498678539299,0.0,0.0 +96738,81.0,the Columbus-Albany Area,G1302150010203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,26540.0,,1759.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002331734907286862,0.0005177643478485436,0.0,0.002849499255135406,0.0009232354262537928,0.0008653548287763254,0.0010608783104989897,0.0,0.0,0.00040547107840524917,0.0008653548287763254,0.0010608783104989897,0.0,0.0,0.0005177643478485436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.459425764343483e-05,0.0,0.0,0.0002778665723085683,0.00011525555232918672,0.0003124608299520031,4.831889696149944e-05,0.00010312200557246441,0.00012642201257683262,0.0,0.0,3.459425764343483e-05,0.0,0.0,0.0,0.0,0.0,0.00010123705314484926,9.489017676180283e-05,0.00011633023478745965,0.0,0.0 +96739,85.0,Rural Climate Zone 3A,G1301750951000,ComStock DOE Ref 1980-2004,gen5_led,200001_500000,Electricity,224856.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,1133273.7058648225,0.0,0.0,0.02491244136019172,0.0,0.0,0.02491244136019172,0.007025648811307907,0.0057248084691671796,0.012161984079716635,0.0,0.0,0.007025648811307907,0.0057248084691671796,0.012161984079716635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002968768491969614,0.0008913212823806327,0.002968768491969614,0.0008372332733307906,0.0006822145915005389,0.0014493206271382847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008372332733307906,0.0006822145915005389,0.0014493206271382847,0.0,0.0 +96740,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5615.0,,665.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013133056239064626,0.0005279192516779993,0.0,0.0018412248755844617,0.0012304331360196766,0.00020304586602999973,0.0003631667607892989,0.0,4.44964056717474e-05,0.0007025138843416772,0.00020304586602999973,0.0003631667607892989,0.0,4.44964056717474e-05,0.0005279192516779993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.527395464277219e-05,0.0,0.0,0.00015650030953473805,8.739316770669588e-05,0.00019177426417751024,8.371519800919862e-05,2.4195998482762262e-05,4.327683476081836e-05,0.0,5.3024224780961694e-06,3.527395464277219e-05,0.0,0.0,0.0,0.0,0.0,0.00012815675717225855,2.114840618793404e-05,3.782592732025189e-05,0.0,4.634559074993285e-06 +96741,50.0,the Greater Atlanta and Macon Area,G1300670030319,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,5138.0,,685.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011901547911086338,0.0005434681815409889,0.0,0.001733622972649623,0.0012425910758593547,0.00022785798815179198,0.00015193289445910777,0.0,0.00011124101417936848,0.0008103639084977342,0.00022785798815179198,0.00015193289445910777,0.0,0.0,0.0004322271673616206,0.0,0.00011124101417936848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.631107215345506e-05,0.0,0.0,0.00014183231392434772,7.969458754578243e-05,0.00017814338607780275,9.65721342481417e-05,2.71541365435426e-05,1.8106043132663432e-05,0.0,0.0,2.8878658206354614e-05,0.0,7.4324139471004506e-06,0.0,0.0,0.0,0.00012768599935274598,2.3414199162461076e-05,1.5612299042265335e-05,0.0,1.143088852033036e-05 +96742,50.0,the Greater Atlanta and Macon Area,G1301350050730,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,71733.0,,6810.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006325514698107882,0.0019840338888733864,0.0,0.008309548586981269,0.005689856009074612,0.001788184919698763,0.0008315380318073314,0.0,0.0,0.0037058221202012245,0.001788184919698763,0.0008315380318073314,0.0,0.0,0.0019840338888733864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013256174285111632,0.0,0.0,0.0007537995931191199,0.00034028289837436916,0.0008863613359702361,0.000441615795662463,0.00021309460640315544,9.90928106177566e-05,0.0,0.0,0.00013256174285111632,0.0,0.0,0.0,0.0,0.0,0.0006069244701912009,0.00019074176626985982,8.869833939445842e-05,0.0,0.0 +96743,50.0,the Greater Atlanta and Macon Area,G1301210001300,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,4993.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0008833942546095427,0.0,0.0,0.0008833942546095427,0.0006265887906489931,0.00010073721581447643,0.00012753430770601204,0.0,2.845123336632175e-05,0.0006265887906489931,0.00010073721581447643,0.00012753430770601204,0.0,2.845123336632175e-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.000105274638470291,3.6977306206758024e-05,0.000105274638470291,7.467097285375195e-05,1.2004916174217247e-05,1.5198342151595235e-05,0.0,3.3905510377099614e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.467097285375195e-05,1.2004916174217247e-05,1.5198342151595235e-05,0.0,3.3905510377099614e-06 +96745,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,67251.0,,6300.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,56751.431377317895,0.0,0.0,0.01488447590469586,0.004333464088705251,0.0,0.01921793999340111,0.008726240593440413,0.0010722135666833854,0.005458463554056126,0.0003640505728752417,0.003596899986374925,0.0075803706165239945,0.0010722135666833854,0.0022708694422672927,0.0003640505728752417,0.003596899986374925,0.0011458699769164177,0.0031875941117888327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002895378104694998,0.0,0.0,0.0017737532336195856,0.0008518123889279846,0.0020632910440890853,0.0009033376102179305,0.00012777354696348007,0.0002706149710705464,4.338317888873744e-05,0.00042863537975334126,7.656061695857796e-05,0.0002129771935109218,0.0,0.0,0.0,0.0,0.0009368732585903875,0.00011511580586932213,0.0005860357025486534,3.9085473618239404e-05,0.0003861731034085781 +96746,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,67630.0,,,,9.729435225087556,Education,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,364853.82094078336,0.03364002385637906,0.0,0.016362660463060973,0.0,0.0,0.0500027765366928,0.045179168695886375,0.0024367486872783604,0.0005358744558649164,0.0006516993253480234,0.0011991931550623597,0.011539144839507314,0.0024367486872783604,0.0005358744558649164,0.0006516993253480234,0.0011991931550623597,0.0,0.0,0.0,0.0,0.0,0.0,0.03364002385637906,0.0,0.0,0.0,0.0,0.0,0.0,0.00194991156085063,0.0006353317864146062,0.00194991156085063,0.001375101070860701,0.0002903833668698407,6.385928492584938e-05,7.766194571863321e-05,0.0001429058924756058,0.0,0.0,0.0,0.0,0.0,0.0,0.0017618098324016862,9.50236119933258e-05,2.0896995507614902e-05,2.541370973194192e-05,4.6763815106010004e-05 +96747,50.0,the Greater Atlanta and Macon Area,G1300670030329,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,28779.0,,4999.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.00262695186817228,0.0014563229722418865,0.0,0.004083274840414166,0.003133553133194542,0.0006970437334969666,0.0002526779737226574,0.0,0.0,0.0016772301609526558,0.0006970437334969666,0.0002526779737226574,0.0,0.0,0.0014563229722418865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.73029011242615e-05,0.0,0.0,0.0003130504700389355,0.0001843534412745198,0.000410353371163197,0.00019987335763978835,8.306580377536225e-05,3.011130862378485e-05,0.0,0.0,9.73029011242615e-05,0.0,0.0,0.0,0.0,0.0,0.00031491000292181015,7.005020652972967e-05,2.53931617116572e-05,0.0,0.0 +96748,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,17375.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.004172158334779363,0.0,0.0,0.004172158334779363,0.0017275853562666533,0.0008303790203426466,0.0014797122562699493,0.0,0.00013456440897385318,0.0017275853562666533,0.0008303790203426466,0.0014797122562699493,0.0,0.00013456440897385318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000497185761265834,0.00014657450360830733,0.000497185761265834,0.00020587206227219232,9.895420840735404e-05,0.00017633363970278595,0.0,1.603570688035508e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00020587206227219232,9.895420840735404e-05,0.00017633363970278595,0.0,1.603570688035508e-05 +96749,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,14993.0,,1280.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012086487648224288,0.0003768376757294925,0.0,0.0015854864405519214,0.0005912659549315418,0.00046144892029225906,0.0005327408757218226,0.0,0.0,0.00021442827920204935,0.00046144892029225906,0.0005327408757218226,0.0,0.0,0.0003768376757294925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.517760677581225e-05,0.0,0.0,0.00014403366268761036,7.127437246279151e-05,0.0001692112694634226,2.555323873748403e-05,5.4990481988952324e-05,6.348628470645273e-05,0.0,0.0,2.5177606775812253e-05,0.0,0.0,0.0,0.0,0.0,6.310294447528743e-05,4.9248202695443885e-05,5.685684694002463e-05,0.0,0.0 +96750,50.0,the Greater Atlanta and Macon Area,G1300350150300,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,257340.0,,15955.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.02292872658832081,0.004696399762131159,0.0,0.02762512635045197,0.012590012018750697,0.005259063003993242,0.009776020638101733,0.0,0.0,0.007893612256619538,0.005259063003993242,0.009776020638101733,0.0,0.0,0.004696399762131159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031378557981081353,0.0,0.0,0.0027323731678743275,0.0010666820709982403,0.003046158747685141,0.0009406669072750588,0.0006267126342546728,0.0011649899691220085,0.0,0.0,0.00031378557981081353,0.0,0.0,0.0,0.0,0.0,0.0013882714872632987,0.00057990470599166,0.0010779791703583233,0.0,0.0 +96751,81.0,the Columbus-Albany Area,G1302150002902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,17644.0,,1469.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014976834769341936,0.0004323244839157391,0.0,0.0019300386504562304,0.0007119988661067046,0.0005596863500512058,0.0006583227446920225,0.0,0.0,0.0002796743821909655,0.0005596863500512058,0.0006583227446920225,0.0,0.0,0.0004323244839157391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.888625554035688e-05,0.0,0.0,0.0001784776149070082,8.562994394987848e-05,0.00020736387044736508,3.332854869055072e-05,6.669732716663817e-05,7.845173904981933e-05,0.0,0.0,2.888625554035688e-05,0.0,0.0,0.0,0.0,0.0,7.649734920858767e-05,6.013285161711266e-05,7.073037232212992e-05,0.0,0.0 +96752,85.0,Rural Climate Zone 3A,G1300810010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,48797.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.004076137044546295,0.0,0.0,0.004076137044546294,0.002884914848197106,0.0009381493658338405,0.0002530424569159104,0.0,0.0,0.002884914848197106,0.0009381493658338405,0.0002530424569159104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004857453073951145,0.0001432114847461687,0.0004857453073951145,0.0003437896798934081,0.00011179743151648957,3.015457642256854e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034378967989340817,0.00011179743151648959,3.0154576422568547e-05,0.0,0.0 +96753,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,25961.0,,1.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.00223877608981112,2.1482724408391948e-07,0.0,0.0022389909170552045,0.0011366816380543156,0.000494194730211908,0.0006080838591826829,0.0,0.0,0.0011364668108102317,0.000494194730211908,0.0006080838591826829,0.0,0.0,2.1482724408391948e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4111354073701459e-08,0.0,0.0,0.000266791531342224,9.543771678932363e-05,0.00026680564269629766,0.00013543101615010348,5.8892432099190316e-05,7.246442585936514e-05,0.0,0.0,1.411135407370146e-08,0.0,0.0,0.0,0.0,0.0,0.0001354507839545133,5.888989616122705e-05,7.24613055044745e-05,0.0,0.0 +96754,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010200,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,111200.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00846471514021349,0.0,0.0,0.008464715140213491,0.0024729991650751884,0.0019634289421081312,0.00402828703303017,0.0,0.0,0.0024729991650751884,0.0019634289421081312,0.00402828703303017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010087227777059986,0.00030539243816584636,0.0010087227777059986,0.0002947022487748293,0.00023397780829062994,0.0004800427206405395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002947022487748292,0.0002339778082906299,0.0004800427206405394,0.0,0.0 +96755,50.0,the Greater Atlanta and Macon Area,G1301170130604,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,121401.0,,7301.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006458284147254234,0.0012415685584391974,0.0,0.007699852705693431,0.0038732151825719542,0.0014240848988972211,0.0012213736767817574,0.0,0.0011811612170810775,0.0030004736023926957,0.0014240848988972211,0.0008525466985218191,0.0,0.0011811612170810775,0.000872741580179259,0.0003688269782599384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.295398213747939e-05,0.0,0.0,0.0007696209798290544,0.00030528399857459085,0.0008525749619665337,0.00035756051935349677,0.0001697053877251608,0.00010159630801400206,0.0,0.00014075665184420575,5.83112297429939e-05,2.4642752394485493e-05,0.0,0.0,0.0,0.0,0.00042886616318358467,0.00015768342264737786,0.00013523799166432937,0.0,0.0001307854212567763 +96756,50.0,the Greater Atlanta and Macon Area,G1300970080509,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,13084.0,,1148.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00306669558717978,0.0009110184172384711,0.0,0.003977714004418252,0.0022316849707077323,0.0011929668316157701,0.0004673776737008263,0.0,8.560182132018318e-05,0.001406268374789444,0.0011929668316157701,0.0004673776737008263,0.0,0.0,0.000825416595918288,0.0,8.560182132018318e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0869328147978946e-05,0.0,0.0,0.00036545105122918385,0.00016667340228006245,0.0004263203793771629,0.00016758176391083396,0.00014216311019525196,5.5696321111575776e-05,0.0,0.0,5.514987697837766e-05,0.0,5.71945116960129e-06,0.0,0.0,0.0,0.00023918581936902702,0.00012785888368894657,5.0092245682628756e-05,0.0,9.174566321274244e-06 +96757,50.0,the Greater Atlanta and Macon Area,G1301210009000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,7645.0,,179.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016035247456576921,0.0001416772173154336,0.0,0.001745201962973126,0.0009527027824030823,0.0004257760156099546,0.00033182077984210135,0.0,3.498509219172704e-05,0.0008459279502056364,0.0004257760156099546,0.00033182077984210135,0.0,0.0,0.00010677483219744587,0.0,3.498509219172704e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.467309411921436e-06,0.0,0.0,0.00019108884077735267,7.388536485530809e-05,0.00020055615018927409,0.00010080754402056755,5.073887726025437e-05,3.954241949653079e-05,0.0,0.0,7.135024197776167e-06,0.0,2.337811956358884e-06,0.0,0.0,0.0,0.00010948326117388977,4.892957969643064e-05,3.813237640677539e-05,0.0,4.020437492538881e-06 +96758,81.0,the Columbus-Albany Area,G1300950000800,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,55552.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,100799.30806909183,0.0,0.0,0.01123400340349018,0.0,0.0,0.01123400340349018,0.0060192494933850255,0.0005875940528529592,0.004580318298453737,0.0,4.684155879846131e-05,0.0060192494933850255,0.0005875940528529592,0.004580318298453737,0.0,4.684155879846131e-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.0013387316197774441,0.00045913712877144097,0.0013387316197774441,0.0007173007996081243,7.002229836453893e-05,0.0005458265156729618,0.0,5.582006131819606e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0007173007996081243,7.002229836453893e-05,0.0005458265156729618,0.0,5.582006131819606e-06 +96759,50.0,the Greater Atlanta and Macon Area,G1300570090802,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12576.0,,1262.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029332063701645377,0.0010014999559092735,0.0,0.003934706326073812,0.0025290169008005425,0.00040418946936399537,0.0009290485593136402,0.0,7.25341036693726e-05,0.001527516944891269,0.00040418946936399537,0.0009290485593136402,0.0,7.25341036693726e-05,0.0010014999559092735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.69130421374882e-05,0.0,0.0,0.0003495464018564399,0.00017461590303194093,0.0004164594439939281,0.00018203221474373578,4.816673525651831e-05,0.00011071351281695726,0.0,8.643795134022211e-06,6.69130421374882e-05,0.0,0.0,0.0,0.0,0.0,0.00026767765751137875,4.278045366793472e-05,9.83328905365072e-05,0.0,7.677196207648606e-06 +96760,35.0,Eastern Counties in South Carolina and Georgia,G1301810970100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,60413.0,,1112.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0028734532931794375,0.00018914749562912327,0.0,0.003062600788808561,0.0012943163836638546,0.0007683984032222484,0.000735685886402251,0.0,0.0002642001155202068,0.0012943163836638546,0.0007683984032222484,0.0005465383907731277,0.0,0.0002642001155202068,0.0,0.00018914749562912327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2637878384588364e-05,0.0,0.0,0.00034242370634137554,0.00010149446478089688,0.00035506158472596393,0.00015424110575402566,9.15685074132598e-05,6.512989157353208e-05,0.0,3.148420160055803e-05,0.0,1.2637878384588364e-05,0.0,0.0,0.0,0.0,0.0001500561313769039,8.908400851523647e-05,8.529149396194349e-05,0.0,3.062995087188007e-05 +96761,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,110082.0,,,4806.0,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.009123864787907394,0.0,0.0004529918620146307,0.009576856649922026,0.0074893095341647805,0.0013857347271485515,0.0007018427622081315,0.0,0.0,0.00703631767215015,0.0013857347271485515,0.0007018427622081315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004529918620146307,0.0,0.0,0.0,0.0,3.653257545481427e-05,0.0010872729760450426,0.0003208845689362883,0.001123805551499857,0.0008385041025527602,0.00016513527499801252,8.363721805622329e-05,0.0,0.0,0.0,0.0,0.0,3.653257545481427e-05,0.0,0.0,0.0008788403062777091,0.00016261038837710504,8.23584210645895e-05,0.0,0.0 +96762,35.0,Eastern Counties in South Carolina and Georgia,G1302450001601,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,10987.0,,4748.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,7566.85751697572,0.0,0.0,0.002287723635455961,0.0032661992000219426,0.0,0.005553922835477905,0.0017187691053891189,0.00013777406432098881,0.002812857263232265,0.0003766732877739892,0.0005077056748195106,0.0015644994477345393,0.00013777406432098881,0.00012005923148013287,0.0003766732877739892,8.857416420427966e-05,0.00015426965765457935,0.0026927980317521323,0.000419131510615231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021822991877978661,0.0,0.0,0.0002726221255825088,0.000317133785407413,0.0004908520443622954,0.0001864373643318342,1.6418179924885552e-05,1.4307148981914842e-05,4.488718426106139e-05,1.0555154714853547e-05,1.0307471405883072e-05,0.00017991832701315011,2.8004120360753456e-05,0.0,0.0,0.0,0.0001519036821645735,1.2176381115716488e-05,0.0002485984733776162,3.3290137230475276e-05,4.487069334625561e-05 +96763,50.0,the Greater Atlanta and Macon Area,G1301210010510,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,103665.0,,9583.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.009328566178281227,0.0028209272316722443,0.0,0.012149493409953471,0.0043200224304961315,0.003047723422212268,0.004781747557245071,0.0,0.0,0.0014990951988238881,0.003047723422212268,0.004781747557245071,0.0,0.0,0.0028209272316722443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001884777886779132,0.0,0.0,0.0011116683051271407,0.0004867171899744359,0.0013001460938050539,0.00017864445479099717,0.00036319167024350204,0.0005698321800926416,0.0,0.0,0.0001884777886779132,0.0,0.0,0.0,0.0,0.0,0.0004622958421919314,0.0003261441089503522,0.0005117061426627702,0.0,0.0 +96764,85.0,Rural Climate Zone 3A,G1302850960501,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,33239.0,,10764.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007747756790494055,0.008347905522428666,0.0,0.016095581452139653,0.005069890237613621,0.0006348380078710113,0.00954901159412858,0.0004218507052685092,0.00042015262882407015,0.0032324098031643964,0.0006348380078710113,0.0030385865061491354,0.0004218507052685092,0.00042015262882407015,0.0018374804344492243,0.0065104250879794425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005577559875174793,0.0,0.0,0.0009232811174988939,0.000813666821039999,0.001481037105016373,0.0003851983246223833,7.565208371758178e-05,0.0003621008791159455,5.027091080812942e-05,5.006855521545725e-05,0.0001227692037849164,0.00043498678373256295,0.0,0.0,0.0,0.0,0.0004665066361593222,5.841470518647568e-05,0.000878653593794585,3.881664972077998e-05,3.8660400986998806e-05 +96765,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,27326.0,,272.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006133970123875736,0.00021561734123837442,0.0,0.00634958746511411,0.0028814317420037313,0.0018516459668756148,0.0014009751220701284,0.0,0.00021561734123837442,0.0028814317420037313,0.0018516459668756148,0.0014009751220701284,0.0,0.0,0.0,0.0,0.00021561734123837442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4404980433953169e-05,0.0,0.0,0.0007309723702495373,0.00023447403269649637,0.0007453773506834905,0.00034337418468446875,0.00022065677105301206,0.00016695127054077946,0.0,0.0,0.0,0.0,1.4404980433953169e-05,0.0,0.0,0.0,0.00033825094462124376,0.0002173645095490802,0.000164460310311411,0.0,2.5311295175739322e-05 +96766,50.0,the Greater Atlanta and Macon Area,G1300590140500,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,54432.0,,5854.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0044014079209251785,0.0017055383556286404,0.0,0.006106976650153256,0.004185117519328949,0.0014575379162193966,0.00046429084100547437,0.0,0.0,0.002479579163700308,0.0014575379162193966,0.00046429084100547437,0.0,0.0,0.0017055383556286404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011395506112038564,0.0,0.0,0.0005245079892689906,0.0002218574120874575,0.0006384630503893763,0.0002954870588573748,0.0001736922129132839,5.5328717498332e-05,0.0,0.0,0.00011395506112038564,0.0,0.0,0.0,0.0,0.0,0.00043753939972272934,0.0001523804915848594,4.853998362819433e-05,0.0,0.0 +96767,50.0,the Greater Atlanta and Macon Area,G1300890023310,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,85338.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006952456164102516,0.0,0.0,0.006952456164102517,0.004929179584755554,0.0013795992600621253,0.0006436469456853989,0.0,0.0,0.004929179584755554,0.0013795992600621253,0.0006436469456853989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008285092312180675,0.00024121811321895485,0.0008285092312180675,0.0005873997177267782,0.0001644038733023261,7.670202063251784e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005873997177267782,0.0001644038733023261,7.670202063251784e-05,0.0,0.0 +96768,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,281900.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,140298.9118897092,0.0,0.0,0.014510900123761035,0.0,0.0,0.014510900123761038,0.007640846062887496,0.002928364222497341,0.002160816876623255,0.0,0.0017808906921143637,0.007640846062887496,0.002928364222497341,0.002160816876623255,0.0,0.0017808906921143637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017292355736533837,0.0005114573356129721,0.0017292355736533837,0.0009105446741459528,0.00034896743434023136,0.00025750031902494136,0.0,0.00021222525903473498,0.0,0.0,0.0,0.0,0.0,0.0,0.0009105446741459526,0.0003489674343402313,0.0002575003190249413,0.0,0.00021222525903473493 +96769,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,51824.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0046174967843397655,0.0,0.0,0.004617496784339765,0.0010719572583724607,0.002000287159271672,0.001545252366695633,0.0,0.0,0.0010719572583724607,0.002000287159271672,0.001545252366695633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005502576804015797,0.00018788659084168765,0.0005502576804015797,0.0001277429616155125,0.00023837014378241212,0.0001841445750036551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012774296161551253,0.00023837014378241217,0.00018414457500365514,0.0,0.0 +96770,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,5334.0,,646.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009549358733940437,0.000512535735962488,0.0,0.0014674716093565315,0.0010120037542741657,0.00018956461301049263,0.00023166251354380011,0.0,3.424072852807327e-05,0.0005337087468397508,0.00018956461301049263,0.00023166251354380011,0.0,0.0,0.00047829500743441485,0.0,3.424072852807327e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4243964657618824e-05,0.0,0.0,0.00011379817257861425,7.088957025767267e-05,0.00014804213723623307,6.360121320368938e-05,2.2590110129064944e-05,2.7606849245859907e-05,0.0,0.0,3.1956244572375295e-05,0.0,2.287720085243536e-06,0.0,0.0,0.0,0.00010209342226357144,1.9123743366141368e-05,2.337068288331674e-05,0.0,3.454288723203544e-06 +96771,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,47291.0,,12381.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.00333756323371074,0.00210544495790843,0.0,0.00544300819161917,0.0026496784016969517,0.0007193207628115422,0.0010100100382933082,0.0,0.0010640167191787889,0.0016963168681407121,0.0007193207628115422,0.000780703274047765,0.0,0.00014122232871072057,0.0009533615335562391,0.00022930676424554288,0.0009227943904680684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014067411905224693,0.0,0.0,0.0003977301579509511,0.0002472217329371461,0.0005384042770031981,0.00020214639503634372,8.571989220181727e-05,9.303471268006948e-05,0.0,1.6829158032720595e-05,6.369831392056555e-05,1.5321002304903743e-05,6.165598747089002e-05,0.0,0.0,0.0,0.0002620973795985151,7.115281873565008e-05,9.990683557496443e-05,0.0,0.00010524899692248206 +96772,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,58326.0,,6.0,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,163187.89066084955,0.0,0.0,0.014966531404235772,5.2146653252423324e-06,0.0,0.014971746069561016,0.009099502608389817,0.0010549533105439406,0.004640168297885128,0.0,0.00017703346858407448,0.009094287943064574,0.0010549533105439406,0.004640168297885128,0.0,0.00017703346858407448,5.2146653252423324e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.501325250815222e-07,0.0,0.0,0.0017835291627484088,0.0006255729452339311,0.0017838792952734903,0.0010837466158856559,0.00012571650330153253,0.0005529588156275518,0.0,2.1096695384799733e-05,3.501325250815222e-07,0.0,0.0,0.0,0.0,0.0,0.001084203153391424,0.00012569738756027,0.0005528747358339625,0.0,2.109348754048432e-05 +96773,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Propane,17028.0,,325.0,2797.0,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.001971791040489977,0.0001208563337451262,0.00033629756991790643,0.0024289449441530094,0.0011693886810176866,0.000352416914207093,0.0008362297334253187,0.0,7.094836392668359e-05,0.0009040394750264637,0.000352416914207093,0.0007153733996801925,0.0,0.0,0.0,0.0001208563337451262,0.0,0.0,0.0,0.0,0.0,0.000265349205991223,7.094836392668359e-05,0.0,8.074835876008757e-06,0.0,2.712248413479682e-05,0.00023497229346102066,9.54783731501939e-05,0.0002701696134718262,0.00010773161276434205,4.199644327682872e-05,8.524885495072147e-05,0.0,0.0,0.0,8.074835876008757e-06,0.0,2.140048062623444e-05,5.722003508562391e-06,0.0,0.00013007017252877472,3.9199052955671364e-05,9.30131678764534e-05,0.0,7.891530067271497e-06 +96774,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,229649.0,,7449.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.020461435690017,0.002192772369970864,0.0,0.02265420805998786,0.006223882846780422,0.006152007788831202,0.010278348113982533,0.0,0.0,0.004031110476809559,0.006152007788831202,0.010278348113982533,0.0,0.0,0.002192772369970864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001465091916701623,0.0,0.0,0.002438348901036308,0.0007695414139108919,0.0025848580927064703,0.0004803794782533351,0.0007331226243514346,0.0012248504556513404,0.0,0.0,0.0001465091916701623,0.0,0.0,0.0,0.0,0.0,0.0007101485914650851,0.0007019476062568701,0.001172765396686141,0.0,0.0 +96775,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,237613.0,,26258.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.012231165713093487,0.004465356062917458,0.0,0.016696521776010945,0.008322489807681424,0.004094826969961195,0.001609402636459613,0.0,0.0026698023619087102,0.006508868868385644,0.004094826969961195,0.0012438025839781243,0.0,0.0003836672907685226,0.0018136209392957809,0.00036560005248148877,0.002286135071140188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002983492063966312,0.0,0.0,0.0014575651119903088,0.0006925480497365916,0.0017559143183869398,0.0007756497134956479,0.0004879728613817373,0.00014822162458882985,0.0,4.5720912524093577e-05,0.00012117563757943286,2.4427276118525995e-05,0.0001527462926986723,0.0,0.0,0.0,0.0008752469055521208,0.0004306385128789207,0.00016925520005426506,0.0,0.0002807736999016328 +96776,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000601,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,267970.0,,22948.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.012928766783165464,0.003902505739637882,0.0,0.016831272522803347,0.007036790379667717,0.0045449831160549155,0.003597153455261732,0.0,0.001652345571818981,0.006418692250203256,0.0045449831160549155,0.0016327889831726627,0.0,0.00033228470337320963,0.0006180981294644607,0.00196436447208907,0.0013200608684457713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026074276015098513,0.0,0.0,0.0015406960254788428,0.0006922868750359567,0.0018014387856298282,0.0007649030881689965,0.0005416168100342039,0.0001945762916920556,0.0,3.959772269085475e-05,4.129772589025817e-05,0.00013124742116140076,8.819879773906374e-05,0.0,0.0,0.0,0.0007531425267522761,0.00048644621814550494,0.0003850007029112939,0.0,0.00017684933782075314 +96777,81.0,the Columbus-Albany Area,G1302150010602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,33866.0,,757.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002986362670319197,0.0002205730791169537,0.0,0.0032069357494361505,0.001834200922846957,0.0009323783819406678,0.00044032607104908816,0.0,0.0,0.0016136278437300035,0.0009323783819406678,0.00044032607104908816,0.0,0.0,0.0002205730791169537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4738122686476792e-05,0.0,0.0,0.00035587795314525857,0.00010237703092822793,0.00037061607583173536,0.00019229230926043277,0.000111109381797378,5.247264253564156e-05,0.0,0.0,1.4738122686476792e-05,0.0,0.0,0.0,0.0,0.0,0.0002119731735916467,0.00010775221086544976,5.088718118762176e-05,0.0,0.0 +96778,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,133811.0,,6318.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010557802417363657,0.001840700873126636,0.0,0.012398503290490293,0.007060555804501475,0.0036854718085779304,0.0016524453038114502,0.0,0.0,0.0052198549313748396,0.0036854718085779304,0.0016524453038114502,0.0,0.0,0.001840700873126636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012298560944140713,0.0,0.0,0.001258151176528625,0.0003806857148339895,0.0013811367859700324,0.0006220391672055848,0.00043918994774892343,0.000196918442015959,0.0,0.0,0.00012298560944140713,0.0,0.0,0.0,0.0,0.0,0.0007865137527100338,0.00041054477054392895,0.00018407487923545725,0.0,0.0 +96779,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,3200.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0004324752885828385,0.0,0.0,0.0004324752885828385,0.00017112093556662707,0.00011190267076928293,0.00012348166109278598,0.0,2.5887314080403227e-05,0.00017112093556662707,0.00011190267076928293,0.00012348166109278598,0.0,2.5887314080403227e-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,5.153964085017747e-05,1.661686801533955e-05,5.153964085017747e-05,2.039309942991341e-05,1.3335845108106735e-05,1.4715755171029827e-05,0.0,3.0850846406780555e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.039309942991341e-05,1.3335845108106735e-05,1.4715755171029827e-05,0.0,3.0850846406780555e-06 +96780,50.0,the Greater Atlanta and Macon Area,G1300670031312,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7362.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001767780994103957,0.0,0.0,0.001767780994103957,0.0011364779002518235,0.0003275200120076574,0.0002598656256889039,0.0,4.4000163229311556e-05,0.0011364779002518235,0.0003275200120076574,0.0002598656256889039,0.0,4.4000163229311556e-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.0002106677357158274,5.733865079803329e-05,0.0002106677357158274,0.00013543489082395362,3.903079598739947e-05,3.096837398798211e-05,0.0,5.243531178105183e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013543489082395362,3.903079598739947e-05,3.096837398798211e-05,0.0,5.243531178105183e-06 +96781,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5875.0,,487.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001087680726745632,0.0003862420343625656,0.0,0.0014739227611081976,0.0007736419677574816,0.0002796326163125984,0.00037466304403906267,0.0,4.598513299905493e-05,0.00038739993339491596,0.0002796326163125984,0.00037466304403906267,0.0,4.598513299905493e-05,0.0003862420343625656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5806741319540388e-05,0.0,0.0,0.00012961288902876028,6.140783273915392e-05,0.0001554196303483007,4.6164304783720865e-05,3.332227038295479e-05,4.464652021141237e-05,0.0,5.479793650672247e-06,2.5806741319540388e-05,0.0,0.0,0.0,0.0,0.0,8.157764560226725e-05,2.9486211223141495e-05,3.950681361751878e-05,0.0,4.8489599053731665e-06 +96782,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,53258.0,,5293.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004423139507656414,0.0015581726909469655,0.0,0.00598131219860338,0.002554940413890054,0.0013315299484384308,0.002094872525881192,0.0,0.0,0.0009967677229430886,0.0013315299484384308,0.002094872525881192,0.0,0.0,0.0015581726909469655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010410747498892735,0.0,0.0,0.0005270984311158113,0.0002541694942449327,0.0006312059061047385,0.00011878320863285644,0.00015867628538297803,0.0002496425943310687,0.0,0.0,0.00010410747498892735,0.0,0.0,0.0,0.0,0.0,0.0002696220202934143,0.00014051591685950162,0.00022107120761586605,0.0,0.0 +96783,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970300,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,4903.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010498008869730291,0.0,0.0,0.0010498008869730291,0.0005428065249510745,0.0003464599318939588,0.0001214966913230426,0.0,3.90377388049531e-05,0.0005428065249510745,0.0003464599318939588,0.0001214966913230426,0.0,3.90377388049531e-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.00012510605060099574,3.4207711174660855e-05,0.00012510605060099574,6.468691484238044e-05,4.1288052152176093e-05,1.447890871605316e-05,0.0,4.652174890386038e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.468691484238044e-05,4.1288052152176093e-05,1.447890871605316e-05,0.0,4.652174890386038e-06 +96784,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,15392.0,,5175.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0032048786248035956,0.0035601793612149322,0.0,0.006765057986018528,0.0009625537310005159,0.000325823828323921,0.003340285930081069,0.0003890091227886743,0.0017473853738243473,0.0008325254235492131,0.000325823828323921,0.0014455877357906564,0.0003890091227886743,0.0002119325143511307,0.00013002830745130283,0.0018946981942904125,0.0015354528594732169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023787132553541393,0.0,0.0,0.0003819171101838444,0.00034423076822754224,0.0006197884357192583,9.920990500411911e-05,3.8827584289603116e-05,0.000172266957724244,4.635721267594262e-05,2.525545048993556e-05,8.687766180413085e-06,0.00012659316434316208,0.00010259039501183878,0.0,0.0,0.0,8.818544829408822e-05,2.985071839654592e-05,0.0003060240718909817,3.563951058394564e-05,0.00016008868655369686 +96785,50.0,the Greater Atlanta and Macon Area,G1300890023113,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,277811.0,,,,5.759960461090961,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,863994.0691636442,0.0,0.0,0.04084458361275667,0.0,0.0,0.04084458361275667,0.019709650445334372,0.0052556447347439075,0.015634926174890606,0.0,0.0002443076638964037,0.019709650445334372,0.0052556447347439075,0.015634926174890606,0.0,0.0002443076638964037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004867370647077927,0.0012866149318403316,0.004867370647077927,0.002348761220124779,0.0006263050972901236,0.0018631841483413944,0.0,2.911367547236157e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.002348761220124779,0.0006263050972901236,0.0018631841483413944,0.0,2.911367547236157e-05 +96786,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,9428.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0020359173271667914,0.0,0.0,0.0020359173271667914,0.0015867352096886132,0.000257467120550464,0.0001495343893206678,0.0,4.218060760704679e-05,0.0015867352096886132,0.000257467120550464,0.0001495343893206678,0.0,4.218060760704679e-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.00024261680403545754,7.227240451681962e-05,0.00024261680403545754,0.00018908853531931483,3.068191870987892e-05,1.781975876243529e-05,0.0,5.0265912438285405e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00018908853531931483,3.068191870987892e-05,1.781975876243529e-05,0.0,5.0265912438285405e-06 +96787,50.0,the Greater Atlanta and Macon Area,G1300150960803,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Propane,49345.0,,,9523.0,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.005113304344547207,0.0,0.0008975702369850042,0.00601087458153221,0.004150521989569349,0.001568401554167191,0.0002919510377956705,0.0,0.0,0.0032529517525843447,0.001568401554167191,0.0002919510377956705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008975702369850042,0.0,0.0,0.0,0.0,7.238783858421122e-05,0.0006093425741076714,0.0002570560618833463,0.0006817304126918825,0.00038764795928518706,0.00018690337516675572,3.479123965572856e-05,0.0,0.0,0.0,0.0,0.0,7.238783858421122e-05,0.0,0.0,0.0004707363346973343,0.000177882107551217,3.311197044333128e-05,0.0,0.0 +96788,50.0,the Greater Atlanta and Macon Area,G1301210000500,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,4842.0,,476.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008160706965857463,0.00037747508454619904,0.0,0.0011935457811319457,0.0008151609187746139,0.00020403835091487138,0.000143662187085177,0.0,3.068432435728305e-05,0.000468370158585698,0.00020403835091487138,0.000143662187085177,0.0,0.0,0.00034679076018891597,0.0,3.068432435728305e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5222802261715153e-05,0.0,0.0,9.724522899335364e-05,5.104871625271927e-05,0.0001224680312550688,5.581227645579829e-05,2.431377114894126e-05,1.7119181388614093e-05,0.0,0.0,2.3172482445962233e-05,0.0,2.050319815752919e-06,0.0,0.0,0.0,8.364249989951894e-05,2.0936084339703045e-05,1.4740972232697281e-05,0.0,3.1484747831495052e-06 +96789,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,18424.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015905502255910422,0.0,0.0,0.001590550225591042,0.0005585508346181906,0.00046783235840218125,0.0005641363429643725,0.0,0.0,0.0005585508346181906,0.00046783235840218125,0.0005641363429643725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018954278283183075,6.485702218350554e-05,0.00018954278283183075,6.65614187110834e-05,5.575067400174481e-05,6.722703289819423e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.656141871108341e-05,5.575067400174482e-05,6.722703289819424e-05,0.0,0.0 +96790,50.0,the Greater Atlanta and Macon Area,G1301350050433,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,19956.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00446882860828226,0.0,0.0,0.00446882860828226,0.0026714384817796296,0.0010564174528721738,0.0006561152159739259,0.0,8.485745765652942e-05,0.0026714384817796296,0.0010564174528721738,0.0006561152159739259,0.0,8.485745765652942e-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.0005325390682081585,0.0001764609256318056,0.0005325390682081585,0.0003183486064392122,0.00012589061145659621,7.818760046075142e-05,0.0,1.0112249851598506e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003183486064392122,0.00012589061145659621,7.818760046075142e-05,0.0,1.0112249851598506e-05 +96791,35.0,Eastern Counties in South Carolina and Georgia,G1300510010901,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,6393.0,,147.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018424654816905513,0.00011653426689868414,0.0,0.001958999748589235,0.0015260282175639614,0.00020726392679070439,0.0001870006937245741,0.0,3.878961758373518e-05,0.0014482835682490124,0.00020726392679070439,0.0001870006937245741,0.0,0.0,7.774464931494897e-05,0.0,3.878961758373518e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.785536999524047e-06,0.0,0.0,0.0002195643196544167,7.612035382420297e-05,0.00022734985665394077,0.00017259015134302158,2.46993843450181e-05,2.2284640065477232e-05,0.0,0.0,5.194041717212637e-06,0.0,2.5914952823114114e-06,0.0,0.0,0.0,0.00017710175652798542,2.4053818321995088e-05,2.1702188039118473e-05,0.0,4.501692255792377e-06 +96792,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,67474.0,,1814.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005899647156245192,0.0005339684599737307,0.0,0.006433615616218922,0.002832957557340944,0.0014519866531569141,0.0021487020953273625,0.0,0.0,0.0022989890973672132,0.0014519866531569141,0.0021487020953273625,0.0,0.0,0.0005339684599737307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.567690498908717e-05,0.0,0.0,0.0007030488664266975,0.00023960179607730852,0.0007387257714157846,0.00027396582134922874,0.00017303027512214107,0.00025605642717284376,0.0,0.0,3.567690498908717e-05,0.0,0.0,0.0,0.0,0.0,0.0003252881244038023,0.00016672117584002482,0.00024671999503854197,0.0,0.0 +96793,50.0,the Greater Atlanta and Macon Area,G1301210000600,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,14203.0,,2775.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0011954829237207142,0.000816957319644848,0.0,0.0020124402433655624,0.0010206442366427013,0.0004527637617100091,0.0005390322450128517,0.0,0.0,0.00020368691699785337,0.0004527637617100091,0.0005390322450128517,0.0,0.0,0.000816957319644848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4584120799636974e-05,0.0,0.0,0.00014246297499768496,9.636887802805121e-05,0.00019704709579732192,2.4272905608143838e-05,5.395482543874432e-05,6.423524395079682e-05,0.0,0.0,5.458412079963697e-05,0.0,0.0,0.0,0.0,0.0,9.993587801463285e-05,4.4332140853049834e-05,5.2779076929639224e-05,0.0,0.0 +96794,85.0,Rural Climate Zone 3A,G1300690010400,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,12174.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0029230334000946026,0.0,0.0,0.0029230334000946026,0.0018120292785544863,0.0004667160171109118,0.0005738216776033149,0.0,7.046642682588993e-05,0.0018120292785544863,0.0004667160171109118,0.0005738216776033149,0.0,7.046642682588993e-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.00034833716296136624,0.00012646272907897255,0.00034833716296136624,0.00021593907824459774,5.5618431627836285e-05,6.838218653799895e-05,0.0,8.397466550933283e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00021593907824459774,5.5618431627836285e-05,6.838218653799895e-05,0.0,8.397466550933283e-06 +96795,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,92405.0,,7569.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009187025714036222,0.002227850589969138,0.0,0.011414845614399063,0.0036950592878497134,0.0025075556617664015,0.005212292043995544,0.0,0.0,0.0014672086978805747,0.0025075556617664015,0.005212292043995544,0.0,0.0,0.002227850589969138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001488512476286181,0.0,0.0,0.0010947990271784921,0.000476313496466311,0.0012436502748071102,0.0001748442537450747,0.00029882026942664033,0.0006211381612242667,0.0,0.0,0.0001488512476286181,0.0,0.0,0.0,0.0,0.0,0.00040257763039441553,0.00027319881435068237,0.0005678805173425232,0.0,0.0 +96796,50.0,the Greater Atlanta and Macon Area,G1300630040606,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,8296.0,,597.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007315481424582527,0.00017388885678112917,0.0,0.0009054369992393818,0.0006250583028294947,0.0002282879733741427,5.209072303574436e-05,0.0,0.0,0.0004511694460483655,0.0002282879733741427,5.209072303574436e-05,0.0,0.0,0.00017388885678112917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.161877378348609e-05,0.0,0.0,8.717628590908556e-05,3.269364511500567e-05,9.879505969257165e-05,5.376444056024731e-05,2.7204358102249825e-05,6.2074872465884016e-06,0.0,0.0,1.161877378348609e-05,0.0,0.0,0.0,0.0,0.0,6.820206418696519e-05,2.4909213976832223e-05,5.683781528774249e-06,0.0,0.0 +96797,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,86421.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007267881873815676,0.0,0.0,0.007267881873815675,0.002392132052480741,0.0019466110378569903,0.002929169473084242,0.0,0.0,0.002392132052480741,0.0019466110378569903,0.002929169473084242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008660997314355242,0.00030741624042477164,0.0008660997314355242,0.000285065850571421,0.00023197395422336835,0.0003490635838630498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028506585057142106,0.0002319739542233684,0.00034906358386304986,0.0,0.0 +96798,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,109658.0,,5521.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010817104152538705,0.0016251681014948507,0.0,0.012442241564427258,0.0033653301577871936,0.004725708336145466,0.0043512030704945985,0.0,0.0,0.0017401620562923431,0.004725708336145466,0.0043512030704945985,0.0,0.0,0.0016251681014948507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010858378168429955,0.0,0.0,0.0012890519537241479,0.00045806192847838923,0.0013976357354084474,0.00020737151707407944,0.0005631528991064698,0.0005185238803266209,0.0,0.0,0.00010858378168429956,0.0,0.0,0.0,0.0,0.0,0.0003780271959530664,0.0005308383390174544,0.0004887702004379266,0.0,0.0 +96799,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,66655.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.0056046893501179714,0.0,0.0,0.0056046893501179714,0.0014380228822914595,0.0016681642399179323,0.0024985022279085793,0.0,0.0,0.0014380228822914595,0.0016681642399179323,0.0024985022279085793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006678996941548671,0.00021156220030864976,0.0006678996941548671,0.0001713663297413531,0.00019879181807245418,0.00029774154634105976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001713663297413531,0.00019879181807245418,0.00029774154634105976,0.0,0.0 +96800,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,29057.0,,,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,152706.01885302784,0.0,0.0,0.006200880146530835,0.0,0.0,0.006200880146530835,0.0030219510602868156,0.0012831175419916155,0.0017427207507609468,0.0,0.00015309079349145807,0.0030219510602868156,0.0012831175419916155,0.0017427207507609468,0.0,0.00015309079349145807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007389463816800008,0.0002112206191497478,0.0007389463816800008,0.0003601198134529821,0.00015290652980211184,0.0002076765173043895,0.0,1.8243521120517535e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003601198134529821,0.00015290652980211184,0.0002076765173043895,0.0,1.8243521120517535e-05 +96801,50.0,the Greater Atlanta and Macon Area,G1300890021907,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,29283.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006544445330843918,0.0,0.0,0.006544445330843917,0.0028478526700655726,0.0012277038025862795,0.00230959503417016,0.0,0.0001593765310956454,0.0028478526700655726,0.0012277038025862795,0.00230959503417016,0.0,0.0001593765310956454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007798880823400017,0.00022988331599076202,0.0007798880823400017,0.00033937274212937624,0.00014630293567706736,0.0002752296873337447,0.0,1.8992573231589112e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003393727421293763,0.00014630293567706738,0.0002752296873337447,0.0,1.8992573231589116e-05 +96802,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,8023.0,,,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,26178.17466051906,0.0,0.0,0.0019265785756834273,0.0,0.0,0.0019265785756834273,0.0010190338555420067,0.0004816859974577264,0.0003767307208825453,0.0,4.90452947274093e-05,0.0010190338555420067,0.0004816859974577264,0.0003767307208825453,0.0,4.90452947274093e-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.00022958582131641224,8.197723700088833e-05,0.00022958582131641224,0.0001214358592100762,5.740138333247981e-05,4.4894110762267435e-05,0.0,5.844612004835256e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001214358592100762,5.740138333247981e-05,4.4894110762267435e-05,0.0,5.844612004835256e-06 +96803,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,4072.0,,1496.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0002437675428226532,0.0004404572295846303,0.0,0.0006842247724072836,0.0005025423031248831,9.891260109749607e-05,8.276986818490441e-05,0.0,0.0,6.208507354025273e-05,9.891260109749607e-05,8.276986818490441e-05,0.0,0.0,0.0004404572295846303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9428511664472225e-05,0.0,0.0,2.9050660392743814e-05,3.923312521709076e-05,5.8479172057216036e-05,7.398902930192715e-06,1.1787772686115235e-05,9.863984776435865e-06,0.0,0.0,2.9428511664472225e-05,0.0,0.0,0.0,0.0,0.0,4.295117481215126e-05,8.453840392034414e-06,7.07415685303035e-06,0.0,0.0 +96804,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,112089.0,,1200.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005146875695181448,0.00020398780813770748,0.0,0.0053508635033191546,0.0023718081775218835,0.0015491194076314334,0.0006788068869667215,0.0,0.000751146761560537,0.0023718081775218835,0.0015491194076314334,0.0004748190788290141,0.0,0.000751146761560537,0.0,0.00020398780813770748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3628963725247773e-05,0.0,0.0,0.000613343818067503,0.00015057057004231643,0.0006269727817927507,0.0002826440678734349,0.00018460574305469708,5.6583326263918094e-05,0.0,8.951279377038425e-05,0.0,1.3628963725247773e-05,0.0,0.0,0.0,0.0,0.00027791012983554203,0.00018151382552168365,7.953733859172561e-05,0.0,8.8013565350358e-05 +96806,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,234145.0,,6100.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011811754013702139,0.0010374211770487094,0.0,0.012849175190750845,0.0065787974138263325,0.003372048786672742,0.0015209990544192296,0.0,0.0013773476661939619,0.005969458082903378,0.003372048786672742,0.0010929172082934748,0.0,0.0013773476661939619,0.0006093393309229546,0.0004280818461257548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.93140875621992e-05,0.0,0.0,0.0014075844811725516,0.0004588129734349505,0.0014768985687347506,0.0007113690776795359,0.00040184070345278153,0.00013024088546169735,0.0,0.00016413592747231608,4.0712297640616295e-05,2.8601789921582907e-05,0.0,0.0,0.0,0.0,0.0007561743333898943,0.00038758705930989077,0.00017482533261245096,0.0,0.00015831388137008834 +96807,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,8210.0,,1798.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0019553606373447063,0.0014266143149293136,0.0,0.0033819749522740203,0.0027006340788096055,0.0003275200120076574,0.00029245221274219106,0.0,6.13686487145661e-05,0.0013353884125948577,0.0003275200120076574,0.00029245221274219106,0.0,0.0,0.0013652456662147476,0.0,6.13686487145661e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.531879326332619e-05,0.0,0.0,0.00023301341123929683,0.00016930487357698555,0.00032833220450262303,0.00015913351399499562,3.902940142575143e-05,3.485049581854977e-05,0.0,0.0,9.121846602108676e-05,0.0,4.100327242239436e-06,0.0,0.0,0.0,0.00026218560254393755,3.179661856717583e-05,2.8392132134730748e-05,0.0,5.957851256778905e-06 +96808,50.0,the Greater Atlanta and Macon Area,G1301210004900,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,206720.0,,27672.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.048799433605255654,0.024475288841275443,0.0,0.0732747224465311,0.043771656766809414,0.015718891821451444,0.008514972252063832,0.000657232360514414,0.004611877028439224,0.021696045277197522,0.015718891821451444,0.006115294900400288,0.000657232360514414,0.004611877028439224,0.022075611489611895,0.0023996773516635444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016352957886709757,0.0,0.0,0.005815329222545156,0.0031204796983117407,0.007450625011216131,0.002585473576081859,0.001873188359003163,0.000728747251995751,7.832104329362906e-05,0.0005495880028283545,0.001474963369601554,0.00016033241906942167,0.0,0.0,0.0,0.0,0.004450732664693938,0.0015983079108756308,0.0008658083321616394,6.682784594649978e-05,0.00046893888082368457 +96809,50.0,the Greater Atlanta and Macon Area,G1300670031310,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,153710.0,,9982.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.015448810224594305,0.0029382229069420634,0.0,0.01838703313153637,0.011278890658500237,0.002864567851827578,0.004243574621208555,0.0,0.0,0.008340667751558175,0.002864567851827578,0.004243574621208555,0.0,0.0,0.0029382229069420634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019631471872491222,0.0,0.0,0.0018410049648966416,0.0007456925917761505,0.002037319683621554,0.0009939413144402934,0.0003413650346421009,0.0005056986158142475,0.0,0.0,0.00019631471872491222,0.0,0.0,0.0,0.0,0.0,0.0012497234210431733,0.0003173997908117215,0.0004701964717666593,0.0,0.0 +96810,50.0,the Greater Atlanta and Macon Area,G1300890021415,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,105856.0,,11960.0,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,431997.0345818221,0.0,0.0,0.01615427786352669,0.0062627382489108254,0.0,0.02241701611243752,0.014002077477800651,0.0036760250817431165,0.004558699117469832,0.0,0.00018021443542391697,0.007919553664313744,0.0036760250817431165,0.004558699117469832,0.0,0.0,0.006082523813486908,0.0,0.00018021443542391697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004184413163415303,0.0,0.0,0.0019250739144040152,0.001000616351410125,0.002343515230745545,0.0009437578269787653,0.0004380647685611644,0.0005432513188640858,0.0,0.0,0.00040640039069760064,0.0,1.2040925643929666e-05,0.0,0.0,0.0,0.001463802393089191,0.00038429828146877736,0.00047657461459598186,0.0,1.8839941591594646e-05 +96811,50.0,the Greater Atlanta and Macon Area,G1301170130509,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,156154.0,,7907.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007798859043863006,0.0013445996886511243,0.0,0.00914345873251413,0.0038251304424007718,0.0026354941125609085,0.0010518536912446324,0.0,0.0016309804863078173,0.002886077310510515,0.0026354941125609085,0.0006462894041223448,0.0,0.0016309804863078173,0.0009390531318902563,0.0004055642871222878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.983877108627105e-05,0.0,0.0,0.000929374598316413,0.00034948291619857905,0.0010192133694026842,0.00034392812154702404,0.0003140666177514761,7.701702928263733e-05,0.0,0.0001943607168431934,6.274237608842993e-05,2.7097579643274488e-05,0.0,0.0,0.0,0.0,0.00042638395389050837,0.0002937762298803036,0.00011724921346884154,0.0,0.0001818039721630307 +96812,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,92474.0,,3180.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.008541592603989234,0.0009359102336547439,0.0,0.009477502837643977,0.0032206593536998228,0.002336184900200029,0.003920627894137828,0.0,0.0,0.0022847491200450793,0.002336184900200029,0.003920627894137828,0.0,0.0,0.0009359102336547439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.253177623115593e-05,0.0,0.0,0.0010178841176389682,0.0003920011472231002,0.001080415893870124,0.00027226887887363656,0.00027839837557588394,0.0004672132059718449,0.0,0.0,6.253177623115593e-05,0.0,0.0,0.0,0.0,0.0,0.0003671485637184763,0.000266320289261233,0.00044694354233821285,0.0,0.0 +96813,50.0,the Greater Atlanta and Macon Area,G1301210006500,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,8973.0,,1816.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012419162980491383,0.000534551562493387,0.0,0.0017764985501488233,0.0007545653500416183,0.0004828702654880556,0.0005390322450128517,0.0,0.0,0.00022001378754823127,0.0004828702654880556,0.0005390322450128517,0.0,0.0,0.000534551562493387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.57165087604297e-05,0.0,0.0,0.00014799754116406446,8.543133112924745e-05,0.00018371404992449417,2.6218755346459543e-05,5.754301808079152e-05,6.423576773681342e-05,0.0,0.0,3.57165087604297e-05,0.0,0.0,0.0,0.0,0.0,7.80322935682814e-05,4.993533603137186e-05,5.5743246603216944e-05,0.0,0.0 +96814,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001600,ComStock 90.1-2007,gen4_led,25001_50000,Propane,59017.0,,,38031.0,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.004785725074611052,0.0,0.003584540337646282,0.008370235038657897,0.006198310063662577,0.0013932066326102384,0.0007787790895839565,0.0,0.0,0.0026137697260162954,0.0013932066326102384,0.0007787790895839565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003584540337646282,0.0,0.0,0.0,0.0,0.0002890877289734348,0.0005703047779916755,0.0004327103739479627,0.0008593925069651104,0.00031147743342490995,0.00016602550019484503,9.280546392979626e-05,0.0,0.0,0.0,0.0,0.0,0.0002890877289734348,0.0,0.0,0.000636395656747551,0.0001430439330782893,7.995915420278044e-05,0.0,0.0 +96815,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,56726.0,,2755.0,,9.325022323477118,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.014555898605912452,0.0023356397607602352,0.0,0.01689153836667269,0.009849177037011944,0.003012927563935354,0.003567007850781866,0.0,0.0004622491466274135,0.007975874807037176,0.003012927563935354,0.003567007850781866,0.0,0.0,0.0018733022299747667,0.0,0.0004622491466274135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015605266401464996,0.0,0.0,0.0017345979096379646,0.0006605505110834699,0.0018906505736526146,0.0009504693693181668,0.0003590446729389854,0.0004250733348139158,0.0,0.0,0.00012516219684365797,0.0,3.088456190103002e-05,0.0,0.0,0.0,0.0011024071230701553,0.0003372335369031419,0.0003992511098107015,0.0,5.173901839313069e-05 +96816,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,80198.0,,516.0,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,349688.3371303919,0.0,0.0,0.019438151112710102,0.00043767835068813613,0.0,0.019875829463398238,0.01179734064885926,0.005175864679856209,0.0025784310429371963,0.0,0.0003241047075875192,0.011683855389916696,0.005175864679856209,0.0025784310429371963,0.0,0.0,0.00011348525894256196,0.0,0.0003241047075875192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9240798931117113e-05,0.0,0.0,0.002316407123424503,0.0007525712818771962,0.0023456479223556204,0.0013923425997325433,0.0006167978500002835,0.00030726667369167644,0.0,0.0,7.581822663076409e-06,0.0,2.1653071421729893e-05,0.0,0.0,0.0,0.0013922642893106703,0.0006108301671160953,0.0003042937870814679,0.0,3.824924818248869e-05 +96817,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,40806.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.004855159122925752,0.0,0.0,0.004855159122925753,0.002964736667519518,0.0014720261231512043,0.0004183963322550314,0.0,0.0,0.002964736667519518,0.0014720261231512043,0.0004183963322550314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005785802765349778,0.0001536985883724965,0.0005785802765349778,0.0003533021508702184,0.00017541861344521777,4.985951221954183e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003533021508702183,0.00017541861344521774,4.9859512219541825e-05,0.0,0.0 +96818,50.0,the Greater Atlanta and Macon Area,G1301390001202,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,16856.0,,3964.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0015122917295319002,0.001166972279470148,0.0,0.0026792640090020485,0.0011761177821468635,0.0005902531979237177,0.000912893028931467,0.0,0.0,9.145502676715428e-06,0.0005902531979237177,0.000912893028931467,0.0,0.0,0.001166972279470148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.797013604747614e-05,0.0,0.0,0.00018021732068984432,0.00013169398185180196,0.00025818745673732044,1.0898545277832171e-06,7.033950380152557e-05,0.00010878796236053553,0.0,0.0,7.797013604747614e-05,0.0,0.0,0.0,0.0,0.0,0.00011333666931507099,5.687978918500016e-05,8.797099823724925e-05,0.0,0.0 +96819,50.0,the Greater Atlanta and Macon Area,G1300670030901,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,6186.0,,514.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014567196897704215,0.0004079112876822642,0.0,0.001864630977452686,0.0011459065066581045,0.00035001633606474903,0.0003233019512469527,0.0,4.5406183482879774e-05,0.0007379952189758401,0.00035001633606474903,0.0003233019512469527,0.0,4.5406183482879774e-05,0.0004079112876822642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7251777725740312e-05,0.0,0.0,0.00017359913018523206,7.39701379142833e-05,0.00020085090791097237,8.794782482500572e-05,4.1711890021228755e-05,3.852830295202817e-05,0.0,5.411112386969421e-06,2.7251777725740312e-05,0.0,0.0,0.0,0.0,0.0,0.0001234326604172332,3.770241926277379e-05,3.4824848038322946e-05,0.0,4.89098019264244e-06 +96820,50.0,the Greater Atlanta and Macon Area,G1301210006700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,5602.0,,23.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,1870.6521585294563,0.0,0.0,0.000379784341617531,3.953870596671775e-06,0.0,0.0003837382122142028,0.0002344131083345181,5.563787413612569e-05,1.6134628892248053e-05,0.0,7.755260085131096e-05,0.00023045923773784633,5.563787413612569e-05,1.6134628892248053e-05,0.0,7.755260085131096e-05,3.953870596671775e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.643751549010278e-07,0.0,0.0,4.525732366422195e-05,1.430490830820752e-05,4.552169881912297e-05,2.7462870821081086e-05,6.630134531201142e-06,1.92269675697675e-06,0.0,9.241621554962969e-06,2.643751549010278e-07,0.0,0.0,0.0,0.0,0.0,2.7807715200648006e-05,6.600152053523442e-06,1.9140020295431275e-06,0.0,9.199829535408395e-06 +96821,50.0,the Greater Atlanta and Macon Area,G1300890021308,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,217508.0,,3695.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,306613.1346040191,0.0,0.0,0.023290127592448084,0.00137316664163507,0.0,0.02466329423408315,0.011502663338861636,0.002594865694745068,0.01014278740658039,0.0,0.0004229777938960558,0.011502663338861636,0.002594865694745068,0.008769620764945321,0.0,0.0004229777938960558,0.0,0.00137316664163507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.174795383935537e-05,0.0,0.0,0.0027754375001334476,0.0008929493762419492,0.0028671854539728033,0.0013707491749610928,0.0003092249077819794,0.0010450580073623301,0.0,5.040541002804498e-05,0.0,9.174795383935537e-05,0.0,0.0,0.0,0.0,0.001337220757864277,0.0003016612908386149,0.0011791309076099547,0.0,4.9172497659956704e-05 +96822,85.0,Rural Climate Zone 3A,G1302850960400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6650.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016861491123232604,0.0,0.0,0.0016861491123232604,0.0007951458069297015,0.0004974830485419341,0.00034852760873744154,0.0,4.4909941040443926e-05,0.0007951458069297015,0.0004974830485419341,0.00034852760873744154,0.0,4.4909941040443926e-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.00020093198704422625,6.794317567064274e-05,0.00020093198704422625,9.475450647192776e-05,5.9283165844460724e-05,4.1532711698845814e-05,0.0,5.351747141071018e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.475450647192776e-05,5.9283165844460724e-05,4.1532711698845814e-05,0.0,5.351747141071018e-06 +96823,50.0,the Greater Atlanta and Macon Area,G1301710970300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,30403.0,,2211.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002681016875171478,0.0006441025496769651,0.0,0.003325119424848443,0.002308029074075885,0.0007808444943457238,0.0002362458564268337,0.0,0.0,0.0016639265243989204,0.0007808444943457238,0.0002362458564268337,0.0,0.0,0.0006441025496769651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3035565224533116e-05,0.0,0.0,0.0003194914496817075,0.0001249007260280179,0.00036252701490624065,0.00019828681511378188,9.305168564391778e-05,2.8152948924007806e-05,0.0,0.0,4.3035565224533116e-05,0.0,0.0,0.0,0.0,0.0,0.0002516369440113215,8.513294936888789e-05,2.5757121526031203e-05,0.0,0.0 +96824,81.0,the Columbus-Albany Area,G1302150003302,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,20729.0,,2500.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004866282785847068,0.0019392841603325006,0.0,0.0068055669461795695,0.0029198828766045363,0.0004477261558504381,0.002112730540014493,0.00043066453062297875,0.0008945628430871224,0.0018751615593591581,0.0004477261558504381,0.002112730540014493,0.00043066453062297875,0.0,0.0010447213172453784,0.0,0.0008945628430871224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012957165908064497,0.0,0.0,0.0005799017269823685,0.0002942277371690538,0.0007094733860630133,0.00022345791942176305,5.335431219656326e-05,0.00025176837079136813,5.1321124572674e-05,0.0,6.980218635374777e-05,0.0,5.9769472726897195e-05,0.0,0.0,0.0,0.0003043948002796374,4.667499333005685e-05,0.00022024999561634918,4.48963363691318e-05,9.325726046783798e-05 +96825,50.0,the Greater Atlanta and Macon Area,G1301350050511,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7675.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015898780784907066,0.0,0.0,0.0015898780784907066,0.0009747855710914774,0.0003631667607892989,0.0002061887348320934,0.0,4.56543047040977e-05,0.0009747855710914774,0.0003631667607892989,0.0002061887348320934,0.0,4.56543047040977e-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.00018946023718491198,6.0760865419624697e-05,0.00018946023718491198,0.0001161618038527479,4.327731891374647e-05,2.4570793908442256e-05,0.0,5.440464595852438e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001161618038527479,4.327731891374647e-05,2.4570793908442256e-05,0.0,5.440464595852438e-06 +96826,35.0,Eastern Counties in South Carolina and Georgia,G1300510003501,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,11481.0,,124.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0011547030284080671,4.6149372712550596e-05,0.0,0.0012008524011206177,0.0007244792792666318,0.00012229002542469327,0.00031878328237292506,0.0,3.529981405636742e-05,0.0007244792792666318,0.00012229002542469327,0.0002726339096603745,0.0,3.529981405636742e-05,0.0,4.6149372712550596e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0838920768662795e-06,0.0,0.0,0.00013760164747650899,3.472827816519906e-05,0.00014068553955337527,8.633349002913718e-05,1.4572845618653099e-05,3.2488764820292525e-05,0.0,4.206547008426164e-06,0.0,3.0838920768662795e-06,0.0,0.0,0.0,0.0,8.487617479363225e-05,1.4326854984687564e-05,3.734696956876571e-05,0.0,4.135540206289725e-06 +96827,81.0,the Columbus-Albany Area,G1302150010602,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,53701.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004784663069843352,0.0,0.0,0.004784663069843353,0.0011116696089216878,0.0013359799413515975,0.0023370442091763645,0.0,0.0,0.0011116696089216878,0.0013359799413515975,0.0023370442091763645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005701803896289565,0.0001664256454081754,0.0005701803896289565,0.00013247582985490965,0.00015920652141578355,0.00027850169558792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013247582985490962,0.00015920652141578352,0.00027850169558791995,0.0,0.0 +96828,50.0,the Greater Atlanta and Macon Area,G1301210005000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,33143.0,,15470.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.006608349849349418,0.010641952739238398,0.0,0.01725030258858782,0.0056599966726099925,0.0010725004465674476,0.005547754917970562,0.0003720832096289902,0.004597895621839808,0.0033412182897042723,0.0010725004465674476,0.0012973425557013885,0.0003720832096289902,0.0005252053477473197,0.0023187783829057202,0.004250412362269173,0.004072690274092489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007110337048245412,0.0,0.0,0.000787506034978419,0.0008964974818173667,0.0014985397398029601,0.00039816741354597416,0.0001278080902862708,0.00015460214960467784,4.434053580347553e-05,6.258784573802066e-05,0.00015492735446807725,0.0002839879600134896,0.00027211359842950223,0.0,0.0,0.0,0.000491685864494331,9.316848396624631e-05,0.0004819353845286245,3.232299684478307e-05,0.00039942077963033863 +96829,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,40861.0,,5708.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.009144222514087528,0.004426885290652688,0.0,0.013571026943957148,0.006383069354646512,0.0015107220100693038,0.0036225630814700426,0.0004213655405700981,0.0016333878179842602,0.00417742977488628,0.0015107220100693038,0.003034705188561846,0.0004213655405700981,0.0,0.002205639579760231,0.0005878578929081966,0.0016333878179842602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029577656736311383,0.0,0.0,0.001089695359677443,0.0005715375211859536,0.0013854719270405568,0.0004978144215168637,0.00018002916722541842,0.00036163863651287014,5.02131344222906e-05,0.0,0.00014736693203214158,3.9276958458542704e-05,0.00010913267687242952,0.0,0.0,0.0,0.0006516502719901719,0.00015423025414044235,0.00036982900955370213,4.301738769607907e-05,0.00016675325877198177 +96830,50.0,the Greater Atlanta and Macon Area,G1300630040609,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,167446.0,,10416.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01395979742238905,0.003034322583831407,0.0,0.016994150379819897,0.01151484416204778,0.0038777366930188998,0.0016015087775543405,0.0,0.0,0.008480521578216372,0.0038777366930188998,0.0016015087775543405,0.0,0.0,0.003034322583831407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000202736457647242,0.0,0.0,0.0016635638503077505,0.0006832214421585196,0.0018663003079549922,0.0010106084424011071,0.000462102879313429,0.00019084890902621777,0.0,0.0,0.000202736457647242,0.0,0.0,0.0,0.0,0.0,0.0012645620243070526,0.00042585366273699193,0.00017587794964386827,0.0,0.0 +96831,81.0,the Columbus-Albany Area,G1302150010701,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,110557.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.009749074958734078,0.0,0.0,0.009749074958734078,0.006601489222599295,0.0026849958166978234,0.000462620293036398,0.0,0.0,0.006601489222599295,0.0026849958166978234,0.000462620293036398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011617786799997447,0.00036130388172290903,0.0011617786799997447,0.0007866868874767412,0.00031996583357207927,5.512957851487391e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007866868874767412,0.00031996583357207927,5.512957851487391e-05,0.0,0.0 +96832,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,36839.0,,2341.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004458309796473581,0.0006891964886275113,0.0,0.0051475062851010925,0.001626303616927866,0.0014263301422920347,0.002094872525881192,0.0,0.0,0.0009371071283003545,0.0014263301422920347,0.002094872525881192,0.0,0.0,0.0006891964886275113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6047984702056814e-05,0.0,0.0,0.0005312884637172544,0.00018641438231664273,0.0005773364484193111,0.00011167330877880899,0.00016997310295739076,0.0002496420519810546,0.0,0.0,4.6047984702056814e-05,0.0,0.0,0.0,0.0,0.0,0.00018240373148571578,0.00015997501178536622,0.00023495770514822916,0.0,0.0 +96833,50.0,the Greater Atlanta and Macon Area,G1301210007705,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,4670.0,,420.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0014773137511315093,0.00033347492131688747,0.0,0.0018107886724483967,0.0010052217742275423,0.0003748284581865413,0.00039178340830309927,0.0,3.8955031731213796e-05,0.0007107018846418688,0.0003748284581865413,0.00039178340830309927,0.0,0.0,0.00029451988958567366,0.0,3.8955031731213796e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22831414584638e-05,0.0,0.0,0.00017604705838209078,7.67935383800399e-05,0.00019833019984055457,8.469221658701747e-05,4.4667185566433514e-05,4.668765622863979e-05,0.0,0.0,1.9680125677973607e-05,0.0,2.603015780490191e-06,0.0,0.0,0.0,0.00011009889690609756,4.1053825964985536e-05,4.291085030806189e-05,0.0,4.2666266614095735e-06 +96834,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,9343.0,,2003.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002229121051421813,0.0015886374723846166,0.0,0.0038178412308801702,0.00232266275182097,0.00045091896602670413,0.0009617178534406667,0.0,8.24589525180895e-05,0.0008164842319544429,0.00045091896602670413,0.0009617178534406667,0.0,0.0,0.0015061785198665274,0.0,8.24589525180895e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010614410028810399,0.0,0.0,0.0002656447024651581,0.0001821582370153694,0.0003717888027532621,9.730055293618437e-05,5.373608332739842e-05,0.00011460806620157535,0.0,0.0,0.00010063464235457425,0.0,5.509457933529763e-06,0.0,0.0,0.0,0.00022618541512791875,4.3911365711548386e-05,9.365395460269343e-05,0.0,8.030013135439055e-06 +96835,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,9198.0,,1128.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0022033164444151495,0.0008950559520067849,0.0,0.003098372396421935,0.0017281643057828284,0.00043164821784544543,0.0008580031829715753,0.0,8.055668982208542e-05,0.000913665043598129,0.00043164821784544543,0.0008580031829715753,0.0,0.0,0.0008144992621846995,0.0,8.055668982208542e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.980227190988499e-05,0.0,0.0,0.0002625636810940685,0.00012450933640889753,0.0003223659530039535,0.0001088791661053369,5.143843286899188e-05,0.00010224608211973976,0.0,0.0,5.441995691818032e-05,0.0,5.382314991704673e-06,0.0,0.0,0.0,0.00017980451091819996,4.491025328940347e-05,8.926977727999074e-05,0.0,8.38141151635926e-06 +96836,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,119306.0,,5158.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01063002031254791,0.001518245513153654,0.0,0.012148235136095264,0.0037998336037500698,0.004373944068761196,0.003974488153190296,0.0,0.0,0.002281588090596416,0.004373944068761196,0.003974488153190296,0.0,0.0,0.001518245513153654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010143938616823888,0.0,0.0,0.00126675850253072,0.00043230861155926233,0.0013681978886989589,0.00027189234150607974,0.000521234266331237,0.000473631894693403,0.0,0.0,0.00010143938616823888,0.0,0.0,0.0,0.0,0.0,0.00042795716874222947,0.0004926164972215001,0.00044762767915948123,0.0,0.0 +96837,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,NaturalGas,251767.0,,5788.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,1133273.7058648225,0.0,0.0,0.020135849656804667,0.0017038562520421605,0.0,0.02183970590884683,0.005568966648387445,0.006117942325840752,0.010152796934618631,0.0,0.0,0.0038651103963452844,0.006117942325840752,0.010152796934618631,0.0,0.0,0.0017038562520421605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011384274256421408,0.0,0.0,0.002399548949537915,0.0007952776748864429,0.0025133916921021293,0.00046059747909689967,0.0007290629564441396,0.0012098885139968758,0.0,0.0,0.00011384274256421408,0.0,0.0,0.0,0.0,0.0,0.0006408966570369861,0.0007040747471008434,0.0011684202879642999,0.0,0.0 +96838,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,90419.0,,5048.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.007669363303402223,0.0014857759096906847,0.0,0.009155139213092908,0.004595737853474694,0.0024644981441307246,0.002094872525881192,0.0,0.0,0.0031099619437840093,0.0024644981441307246,0.002094872525881192,0.0,0.0,0.0014857759096906847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.927132428451296e-05,0.0,0.0,0.0009139438038384841,0.00035401656246775935,0.0010132151281229973,0.00037060839814877347,0.0002936896740046884,0.00024964207446154647,0.0,0.0,9.927132428451297e-05,0.0,0.0,0.0,0.0,0.0,0.0005086182754456402,0.0002727502820812607,0.00023184317412416381,0.0,0.0 +96839,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,25616.0,,2790.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005333670804488963,0.0019191547044067358,0.0,0.007252897228866714,0.0017319655800559911,0.0004920707211381074,0.003474832595706355,0.00036878409096227204,0.0011851008010619571,0.0017319655800559911,0.0004920707211381074,0.0015556778912996193,0.00036878409096227204,0.0011851008010619571,0.0,0.0019191547044067358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012822899904905906,0.0,0.0,0.0006356060348477433,0.0002939851699594745,0.0007638350338968024,0.00020639589790687058,5.86393745305826e-05,0.00018538794241989027,4.394748051832907e-05,0.00014122679270417535,0.0,0.00012822899904905906,0.0,0.0,0.0,0.0,0.00018240103862010403,5.182216762485129e-05,0.000365950156161499,3.88383014031461e-05,0.000124808263785606 +96840,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,8514.0,,148.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00204443615576194,0.00011769216593103447,0.0,0.0021621283216929745,0.0014838476099569143,0.0002701213028325781,0.0003665577508126105,0.0,4.168436516461094e-05,0.0013661554440258798,0.0002701213028325781,0.0003665577508126105,0.0,4.168436516461094e-05,0.00011769216593103447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.86154905114179e-06,0.0,0.0,0.00024363630073647512,8.578454595047239e-05,0.0002514978497876169,0.00016280530828775825,3.2190467179308546e-05,4.3682838499294384e-05,0.0,4.967543006237448e-06,7.86154905114179e-06,0.0,0.0,0.0,0.0,0.0,0.00017260052494222458,3.142039543288031e-05,4.263784217958527e-05,0.0,4.848707684682079e-06 +96841,50.0,the Greater Atlanta and Macon Area,G1300890021102,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,15806.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013937837309995558,0.0,0.0,0.0013937837309995556,0.0009799738122596249,0.00030625700313085164,0.00010752254200964145,0.0,0.0,0.0009799738122596249,0.00030625700313085164,0.00010752254200964145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016609366125049582,4.192502638247634e-05,0.00016609366125049582,0.00011678098602218438,3.6495867904217856e-05,1.281318777952308e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001167809860221844,3.649586790421786e-05,1.2813187779523082e-05,0.0,0.0 +96842,81.0,the Columbus-Albany Area,G1302630960200,ComStock 90.1-2004,gen1_t12_incandescent,_1000,Electricity,7113.0,,64.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,1870.6521585294563,0.0,0.0,0.00036613196332409043,1.0939632996172578e-05,0.0,0.00037707159632026295,0.0001949453238134806,6.969805074222757e-05,2.4609741651033292e-05,0.0,8.781848011352155e-05,0.000184005690817308,6.969805074222757e-05,2.4609741651033292e-05,0.0,8.781848011352155e-05,1.0939632996172578e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.308511055772417e-07,0.0,0.0,4.363190716354943e-05,1.3322247754026371e-05,4.436275826912667e-05,2.1927938621952347e-05,8.305909300722167e-06,2.93274029748216e-06,0.0,1.0465318943392752e-05,7.308511055772417e-07,0.0,0.0,0.0,0.0,0.0,2.2935464671512097e-05,8.200028342311418e-06,2.8953547034159884e-06,0.0,1.0331910551887169e-05 +96843,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,15348.0,,767.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034602985511051443,0.0006082278202788668,0.0,0.004068526371384011,0.0024067758458138464,0.0006844010351927689,0.0009134169223769111,0.0,6.384986092674533e-05,0.0018623978864617248,0.0006844010351927689,0.0009134169223769111,0.0,0.0,0.0005443779593521213,0.0,6.384986092674533e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0638330038667246e-05,0.0,0.0,0.00041236059075178187,0.0001749681275015073,0.0004529989207904491,0.0002219402405121809,8.155944090231356e-05,0.0001088510532114986,0.0,0.0,3.637224480752076e-05,0.0,4.266085231146466e-06,0.0,0.0,0.0,0.0002679758618271685,7.620275795944395e-05,0.00010170190439928687,0.0,7.109187812047218e-06 +96844,46.0,the Tallahassee-Valdosta Area,G1301850011401,ComStock 90.1-2004,gen5_led,10001_25000,NaturalGas,14500.0,,722.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012387245789941775,0.00021252552361159178,0.0,0.0014512807922120669,0.0005097236709985456,0.00039623350690964063,0.0005453236143038808,0.0,0.0,0.00029719814738695375,0.00039623350690964063,0.0005453236143038808,0.0,0.0,0.00021252552361159178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4200461783184561e-05,0.0,0.0,0.0001476174342433617,6.217240730559766e-05,0.00016181789602654628,3.541677360980885e-05,4.721870756673297e-05,6.498561031316538e-05,0.0,0.0,1.4200461783184561e-05,0.0,0.0,0.0,0.0,0.0,5.683422011683283e-05,4.418005996317831e-05,6.080361594653516e-05,0.0,0.0 +96845,81.0,the Columbus-Albany Area,G1300950000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,22791.0,,3261.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006679990150074145,0.002529406155166616,0.0,0.009209315444457694,0.003029206655313187,0.0006665354348338742,0.004695100508090995,0.00042589374442193566,0.0003927408233638393,0.003029206655313187,0.0006665354348338742,0.002165694352924378,0.00042589374442193566,0.0003927408233638393,0.0,0.002529406155166616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001689990439178506,0.0,0.0,0.0007960379629189874,0.00037931684771640964,0.0009650370068368378,0.00036098309143904703,7.94293850497054e-05,0.0002580804585449787,5.0752707880237586e-05,4.6801955985250415e-05,0.0,0.0001689990439178506,0.0,0.0,0.0,0.0,0.0003174282107464297,6.984573010471462e-05,0.0004919959326458996,4.462907442211961e-05,4.115500559488038e-05 +96846,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11172.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0025190093448780866,0.0,0.0,0.0025190093448780857,0.000984958541161412,0.000481024340867812,0.0009788382177047033,0.0,7.410553807041946e-05,0.000984958541161412,0.000481024340867812,0.0009788382177047033,0.0,7.410553807041946e-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.00030018536324291146,9.807044589011567e-05,0.00030018536324291146,0.00011737556196801496,5.732271965790369e-05,0.00011664621512229886,0.0,8.831010456238259e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.000117375561968015,5.732271965790371e-05,0.0001166462151222989,0.0,8.831010456238262e-06 +96847,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,24044.0,,3778.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0020724691132838692,0.0011120992634098558,0.0,0.003184568376693725,0.0014583087120542408,0.0006788234016988878,0.001047436262940596,0.0,0.0,0.0003462094486443851,0.0006788234016988878,0.001047436262940596,0.0,0.0,0.0011120992634098558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.430350163340282e-05,0.0,0.0,0.00024697348319367853,0.00014488636044475002,0.0003212769848270813,4.125733546435491e-05,8.089451317578815e-05,0.00012482163455353545,0.0,0.0,7.430350163340282e-05,0.0,0.0,0.0,0.0,0.0,0.00014712230058701946,6.848348345225563e-05,0.0001056712007878062,0.0,0.0 +96848,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,34306.0,,6173.0,,7.614023970037612,Education,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,133245.41947565821,0.0,0.0,0.007581650907237269,0.004272865081962215,0.0,0.011854515989199484,0.00776647065245591,0.0016480061311256776,0.0012294373992755756,0.0007472895203978977,0.00046324011892169055,0.003997259222145742,0.0016480061311256776,0.0009199852057974312,0.0007472895203978977,0.0002691108277705225,0.0037692114303101683,0.0003094521934781444,0.000194129291151168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028548689972963926,0.0,0.0,0.0009034924318269029,0.000542394019973059,0.001188979331556542,0.0004763465766818046,0.00019639008512711346,0.00010963307081802602,8.905321998122524e-05,3.206947921873385e-05,0.00025183582093601074,2.0675716559260456e-05,1.2970540472110686e-05,0.0,0.0,0.0,0.0007789582546705137,0.00016529103592016067,0.00012330960272971875,7.495133460121141e-05,4.646186545680117e-05 +96849,50.0,the Greater Atlanta and Macon Area,G1300670031112,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,202566.0,,21879.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.05908433158979502,0.01935169827719787,0.0,0.0784360298669929,0.0574883275960497,0.008163808953503583,0.0074969859987007595,0.0006547424946895383,0.00463207260679655,0.040923526914909934,0.008163808953503583,0.004710088402642656,0.0006547424946895383,0.00463207260679655,0.016564800681139767,0.002786897596058103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012929666124664905,0.0,0.0,0.007040966378124359,0.0028495397857799423,0.008333932990590851,0.004876778146237259,0.0009728654418589954,0.0005612921935251,7.802440625789432e-05,0.0005519952008921171,0.0011067625133506986,0.0001862040991157919,0.0,0.0,0.0,0.0,0.0061082116310456885,0.0008674156109361593,0.0007965647808860129,6.956726501950492e-05,0.0004921639044971454 +96850,50.0,the Greater Atlanta and Macon Area,G1300130180302,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,14755.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003327140162384859,0.0,0.0,0.003327140162384859,0.0013652456662147478,0.0008787626584801415,0.0009646126010215425,0.0,0.00011851923666842754,0.0013652456662147478,0.0008787626584801415,0.0009646126010215425,0.0,0.00011851923666842754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000396490811205022,0.0001339817669262491,0.000396490811205022,0.00016269448693848312,0.0001047209622415571,0.00011495158424689697,0.0,1.412377777808483e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00016269448693848312,0.0001047209622415571,0.00011495158424689697,0.0,1.412377777808483e-05 +96851,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960300,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,16601.0,,331.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014624824985107283,9.737812078261092e-05,0.0,0.0015598606192933392,0.0006657496294160666,0.0004053176303737606,0.0004887933595035122,0.0,0.0,0.0005683715086334555,0.0004053176303737606,0.0004887933595035122,0.0,0.0,9.737812078261092e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.505797010970322e-06,0.0,0.0,0.00017428299255729896,6.463095511196099e-05,0.00018078878956826928,6.773242586479995e-05,4.830141190045426e-05,5.8249154792044746e-05,0.0,0.0,6.505797010970322e-06,0.0,0.0,0.0,0.0,0.0,7.716078486049672e-05,4.697655859736227e-05,5.6651446110410315e-05,0.0,0.0 +96852,85.0,Rural Climate Zone 3A,G1302850960502,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,102867.0,,16057.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004879838721834033,0.002730582040856652,0.0,0.0076104207626906855,0.0030508455591870655,0.0015902538461259562,0.0011975440710332065,0.0,0.0017717772863444562,0.0023927831950818065,0.0015902538461259562,0.0006543921792913089,0.0,0.00024240950133496187,0.0006580623641052597,0.0005431518917418976,0.0015293677850094945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018244129062068007,0.0,0.0,0.000581520868050047,0.0003160155631712771,0.0007639621586707271,0.0002851433090265276,0.00018950745090844497,7.798264037784044e-05,0.0,2.8887467737234042e-05,4.396782269123632e-05,3.629018672567247e-05,0.00010218328120377128,0.0,0.0,0.0,0.0003062551509101471,0.0001596355574814871,0.00012021389909148745,0.0,0.00017785755118760545 +96853,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12447.0,,1475.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0015654856886211663,0.0004296345640469995,0.0,0.0019951202526681663,0.0013802674792497559,0.0005014377531178449,0.0001133542731016898,0.0,0.0,0.0009506329152027563,0.0005014377531178449,0.0001133542731016898,0.0,0.0,0.0004296345640469995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.870593819411416e-05,0.0,0.0,0.00018655584988158382,7.918090387642844e-05,0.00021526178807569797,0.00011328505441481171,5.975535060815793e-05,1.3508205734426398e-05,0.0,0.0,2.870593819411416e-05,0.0,0.0,0.0,0.0,0.0,0.00014892277556136682,5.4102196196171144e-05,1.2230262051251482e-05,0.0,0.0 +96854,50.0,the Greater Atlanta and Macon Area,G1301350050209,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,73603.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0065579392113309185,0.0,0.0,0.0065579392113309185,0.0028876771253697484,0.0014946758955170186,0.0021755861904441502,0.0,0.0,0.0028876771253697484,0.0014946758955170186,0.0021755861904441502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007814981508602022,0.00027965079825582374,0.0007814981508602022,0.00034411943463254023,0.00017811791339322376,0.000259260802834438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034411943463254023,0.00017811791339322376,0.000259260802834438,0.0,0.0 +96855,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,8141.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017069912949055658,0.0,0.0,0.0017069912949055656,0.0009557629441314365,0.00018542925932352723,0.0005270921809406062,0.0,3.870691050999587e-05,0.0009557629441314365,0.00018542925932352723,0.0005270921809406062,0.0,3.870691050999587e-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.00020342084817095575,6.47046085909059e-05,0.00020342084817095575,0.00011389753968038977,2.2097463132868975e-05,6.281317241113915e-05,0.0,4.612672946557841e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011389753968038978,2.2097463132868978e-05,6.281317241113917e-05,0.0,4.612672946557842e-06 +96856,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,5110.0,,570.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011875908718227152,0.0004520768650590543,0.0,0.00163966773688177,0.0012687265111609757,0.00016433895552000387,0.0001772412590233358,0.0,2.936101117745413e-05,0.0008460106572793757,0.00016433895552000387,0.0001772412590233358,0.0,0.0,0.0004227158538816002,0.0,2.936101117745413e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0204425681531566e-05,0.0,0.0,0.00014152063072535764,7.400585291650379e-05,0.0001717250564068892,0.00010081583200011726,1.9583640452070875e-05,2.112115827316954e-05,0.0,0.0,2.8242740515606993e-05,0.0,1.961685165924571e-06,0.0,0.0,0.0,0.0001328757813509044,1.721148484643071e-05,1.8562763978812785e-05,0.0,3.075026230741268e-06 +96857,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,213145.0,,2551.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.010989313468871567,0.00043386194394869206,0.0,0.01142317541282026,0.00786362805413046,0.001051321780402031,0.0013066567152122115,0.0,0.0012015865934369785,0.00786362805413046,0.001051321780402031,0.0008727947712635194,0.0,0.0012015865934369785,0.0,0.00043386194394869206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898779175333073e-05,0.0,0.0,0.0013095761565936803,0.00043611841701248605,0.001338563948347011,0.0009370940080270416,0.00012528407169583558,0.00010400933827977407,0.0,0.00014319085148539973,0.0,2.898779175333073e-05,0.0,0.0,0.0,0.0,0.0009214573563018098,0.00012319354141920806,0.00015311360533653694,0.0,0.00014080152292739238 +96858,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,47446.0,,4118.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004443210510175111,0.0012122701383655576,0.0,0.005655480648540669,0.0021288766096590464,0.0013241337533206844,0.0022025009751672356,0.0,0.0,0.0009166064712934891,0.0013241337533206844,0.0022025009751672356,0.0,0.0,0.0012122701383655576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.099582859171543e-05,0.0,0.0,0.0005294891753645309,0.0002494169950555298,0.0006104850039562464,0.0001092302972158424,0.0001577945693800762,0.00026246796599221087,0.0,0.0,8.099582859171543e-05,0.0,0.0,0.0,0.0,0.0,0.0002298031460518607,0.00014293458856466358,0.00023775058215176866,0.0,0.0 +96859,50.0,the Greater Atlanta and Macon Area,G1300670031001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,37456.0,,3489.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003536094446543067,0.0010163613843860513,0.0,0.004552486204528557,0.003270993670650369,0.0009256050692660491,0.0003558874646121382,0.0,0.0,0.0022546322862643177,0.0009256050692660491,0.0003558874646121382,0.0,0.0,0.0010163613843860513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.790815801008931e-05,0.0,0.0,0.0004213908509847347,0.00019419139955046668,0.0004892990089948241,0.00026868100728909863,0.00011030291009198427,4.24105531780462e-05,0.0,0.0,6.790815801008931e-05,0.0,0.0,0.0,0.0,0.0,0.0003515648130653282,9.948358386280145e-05,3.825061206669439e-05,0.0,0.0 +96860,50.0,the Greater Atlanta and Macon Area,G1301210011412,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,4057.0,,328.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00023226691490048823,9.564646462948048e-05,0.0,0.0003279133795299687,0.0002471803522244243,6.73382699534958e-05,1.3394757352048555e-05,0.0,0.0,0.00015153388759494383,6.73382699534958e-05,1.3394757352048555e-05,0.0,0.0,9.564646462948048e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.389897212132668e-06,0.0,0.0,2.7678286595394577e-05,1.3230905781319214e-05,3.406818380752725e-05,1.8057665989855302e-05,8.024422830128125e-06,1.5961977754111425e-06,0.0,0.0,6.389897212132668e-06,0.0,0.0,0.0,0.0,0.0,2.5680518694484694e-05,6.9960321879666454e-06,1.3916329250759094e-06,0.0,0.0 +96861,50.0,the Greater Atlanta and Macon Area,G1301350050436,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,159414.0,,20034.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008205877220621738,0.003407013059393086,0.0,0.011612890280014825,0.0050658479434918064,0.002151455245793467,0.0015930907039531646,0.0,0.002802496386776386,0.004043745798710023,0.002151455245793467,0.0015930907039531646,0.0,0.0004175854721650836,0.0010221021447817838,0.0,0.002384910914611302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022763643337591754,0.0,0.0,0.00097787818917432,0.00044184734760595686,0.0012055146225502377,0.00048188520408110806,0.0002563846744573523,0.00018984547427266152,0.0,4.9762836363198216e-05,6.829081154900169e-05,0.0,0.00015934562182691583,0.0,0.0,0.0,0.0005258771610031631,0.00022333895318290474,0.00016537606852012212,0.0,0.0002909224398440478 +96862,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,263018.0,,4458.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01308802088944038,0.0007581679846828779,0.0,0.013846188874123254,0.00775627071573204,0.00322018824110999,0.0018543475794776422,0.0,0.0010153646074421638,0.00775627071573204,0.00322018824110999,0.0010961795947947645,0.0,0.0010153646074421638,0.0,0.0007581679846828779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0656247450961506e-05,0.0,0.0,0.0015596736181152254,0.0005646910450711727,0.0016103298655661868,0.0009242994729667043,0.0003837434771422398,0.00013062955882787677,0.0,0.00012099899628622756,0.0,5.0656247450961506e-05,0.0,0.0,0.0,0.0,0.0009020644231065069,0.00037451210181710154,0.00021566304746527569,0.0,0.000118088231113093 +96863,50.0,the Greater Atlanta and Macon Area,G1300670030345,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,147291.0,,10516.0,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,699376.6742607838,0.0,0.0,0.03909558332155454,0.008914426181422741,0.0,0.04801009788713534,0.026878948226882585,0.006688117624176484,0.013530819140791088,0.0,0.0009123012794432435,0.01887673494074503,0.006688117624176484,0.013530819140791088,0.0,0.0,0.008002213286137552,0.0,0.0009123012794432435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005956115962937365,0.0,0.0,0.004658948797793556,0.002226815921659601,0.005254560394087292,0.0022495058031264774,0.0007970106829811572,0.001612442844263567,0.0,0.0,0.000534662684085253,0.0,6.095481753860746e-05,0.0,0.0,0.0,0.0029418198046529203,0.0007319942996494454,0.0014809073400329487,0.0,9.984862313147145e-05 +96864,50.0,the Greater Atlanta and Macon Area,G1301510070111,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,12445.0,,2767.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006405979581065078,0.0004705637920882013,0.0,0.0011111794805561293,0.0004141812427724334,0.00013872234775049315,0.0003127990361725715,0.0,0.000245476853860631,0.00030329556245142325,0.00013872234775049315,0.0001300876617389274,0.0,6.851011652708404e-05,0.00011088568032101021,0.00018271137443364412,0.000176966737333547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.144081049871131e-05,0.0,0.0,7.633965545549286e-05,4.959865289865643e-05,0.00010778046595420416,3.614354127377971e-05,1.6531454865313484e-05,1.5502464768252176e-05,0.0,8.164307464157887e-06,7.408848110736267e-06,1.2207895711726453e-05,1.182406667624859e-05,0.0,0.0,0.0,4.017411058847328e-05,1.3455575395728382e-05,3.0340396361380374e-05,0.0,2.381038360862211e-05 +96865,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,22218.0,,6210.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004584986027056999,0.004271928353573856,0.0,0.008856914380630855,0.002457771686733975,0.0005285761863850534,0.003461923000923545,0.0003679234513100847,0.0020407200552781963,0.0016519978123735852,0.0005285761863850534,0.0017803048405205133,0.0003679234513100847,0.0002562554564387783,0.00080577387436039,0.0016816181604030322,0.0017844645988394183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002854237629349634,0.0,0.0,0.0005463830572636606,0.0004328357116328735,0.000831806820198624,0.00019686507439520655,6.298930269569646e-05,0.00021215515072120397,4.38446571002609e-05,3.053741906807645e-05,5.3836813789777614e-05,0.00011235529799100273,0.00011922685927044564,0.0,0.0,0.0,0.00023082432138976818,4.964181180199574e-05,0.00032513029249421084,3.455393413083285e-05,0.0001916564603818163 +96866,50.0,the Greater Atlanta and Macon Area,G1301210010206,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,11360.0,,104.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0025064378696697115,8.27070737393074e-05,0.0,0.0025891449434090187,0.0015075845401200955,0.0003993924590871156,0.0005995435775362396,0.0,8.27070737393074e-05,0.0015075845401200955,0.0003993924590871156,0.0005995435775362396,0.0,0.0,0.0,0.0,8.27070737393074e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.524112908500878e-06,0.0,0.0,0.0002986921314929452,9.808181570175477e-05,0.0003042162444014461,0.00017965880788165005,4.759558828508274e-05,7.14475915258987e-05,0.0,0.0,0.0,0.0,5.524112908500878e-06,0.0,0.0,0.0,0.00017713635850341987,4.692733570402758e-05,7.044445154659266e-05,0.0,9.717816463869863e-06 +96867,50.0,the Greater Atlanta and Macon Area,G1302970110300,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,13450.0,,9366.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0015417967683649518,0.0015927715574476033,0.0,0.003134586056173975,0.0011086085781502216,0.00042372017721642197,0.0013346174951716343,0.0,0.00026760434491285696,0.0008471921293729631,0.00042372017721642197,0.00021437779992985843,0.0,5.648893148428824e-05,0.00026141644877725857,0.0011202396952417761,0.00021111541342856872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010641994332510226,0.0,0.0,0.00018373390286340746,0.00015795371664694682,0.00029015384618850975,0.00010095877718691017,5.049417892120003e-05,2.5547121823425782e-05,0.0,6.731712027907912e-06,1.746636140822758e-05,7.484804981651077e-05,1.4105532100363928e-05,0.0,0.0,0.0,0.00010261866705949794,3.922177822646391e-05,0.00012353924648257666,0.0,2.4770871988116985e-05 +96868,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,69781.0,,13795.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0058145141883753654,0.004060511119642758,0.0,0.009875025308018122,0.006095109258755261,0.001523554815043157,0.0022563305446134064,0.0,0.0,0.002034598139112504,0.001523554815043157,0.0022563305446134064,0.0,0.0,0.004060511119642758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002712999916043168,0.0,0.0,0.0006929046311034374,0.0004974519827320134,0.0009642046227077541,0.00024245920249777518,0.00018155913854228835,0.0002688826328411809,0.0,0.0,0.0002712999916043168,0.0,0.0,0.0,0.0,0.0,0.0005951308821891143,0.00014876099552073912,0.00022030974844251597,0.0,0.0 +96869,85.0,Rural Climate Zone 3A,G1301930000400,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,17828.0,,1092.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001588432642756501,0.0003213201779369481,0.0,0.0019097221310871513,0.0008831854900352908,0.00034860323793560585,0.0006779947823288498,0.0,0.0,0.0005618653120983425,0.00034860323793560585,0.0006779947823288498,0.0,0.0,0.0003213201779369481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1468459182333824e-05,0.0,0.0,0.00018928909843736637,7.860960649654396e-05,0.00021075755761970023,6.695592592819086e-05,4.1542077923220444e-05,8.07947517809478e-05,0.0,0.0,2.1468459182333824e-05,0.0,0.0,0.0,0.0,0.0,9.746863890561545e-05,3.847196710434657e-05,7.482372543967116e-05,0.0,0.0 +96870,50.0,the Greater Atlanta and Macon Area,G1300570090601,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,13558.0,,895.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.00118323393969706,0.00026072697757366164,0.0,0.0014439609172707218,0.000811521829777853,0.0005645237191500553,6.791536834281307e-05,0.0,0.0,0.0005507948522041915,0.0005645237191500553,6.791536834281307e-05,0.0,0.0,0.00026072697757366164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7420059620286558e-05,0.0,0.0,0.00014100393606937087,5.025260553582238e-05,0.00015842399568965744,6.56372670880473e-05,6.727331234688691e-05,8.093356634436626e-06,0.0,0.0,1.7420059620286558e-05,0.0,0.0,0.0,0.0,0.0,8.903601844417893e-05,6.193665090214498e-05,7.4513263433334875e-06,0.0,0.0 +96871,85.0,Rural Climate Zone 3A,G1302850960800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,32658.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,43199.70345818221,0.0,0.005207056171421494,0.0051762652166868406,0.0,0.0,0.010383321388108336,0.00950938237500138,0.00036392287989573784,0.0004810813707832646,0.0,2.893476242795395e-05,0.004302326203579886,0.00036392287989573784,0.0004810813707832646,0.0,2.893476242795395e-05,0.0,0.0,0.0,0.005207056171421494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006168448863665496,0.00021403082713352187,0.0006168448863665496,0.0005126993705043805,4.336794157528868e-05,5.732947812202877e-05,0.0,3.4480961648519344e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0005649265462630976,2.1619668611295006e-05,2.8579735944004138e-05,0.0,1.7189355481527679e-06 +96872,50.0,the Greater Atlanta and Macon Area,G1300570090702,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,24010.0,,4465.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0023391617920109063,0.0013141903208802284,0.0,0.0036533521128911343,0.0017045928025933056,0.0008474934779110623,0.0011012658323867666,0.0,0.0,0.00039040248171307707,0.0008474934779110623,0.0011012658323867666,0.0,0.0,0.0013141903208802284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.780730730256273e-05,0.0,0.0,0.0002787531827733619,0.00017037265544367854,0.00036656049007592465,4.652347465310858e-05,0.00010099408478465479,0.0001312356233355985,0.0,0.0,8.780730730256273e-05,0.0,0.0,0.0,0.0,0.0,0.00017103097478442133,8.503358422612742e-05,0.00011049593106537593,0.0,0.0 +96873,85.0,Rural Climate Zone 3A,G1300690010700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,118725.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.010578277636329984,0.0,0.0,0.010578277636329982,0.0033944239045574157,0.0028326813508842644,0.0043512030704945985,0.0,0.0,0.0033944239045574157,0.0028326813508842644,0.0043512030704945985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00126059412467546,0.00038744659349278503,0.00126059412467546,0.00040450732887244964,0.0003375654894648161,0.0005185249635628118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004045073288724497,0.00033756548946481613,0.0005185249635628118,0.0,0.0 +96874,81.0,the Columbus-Albany Area,G1302150003302,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,102775.0,,1348.0,,9.325022323477118,Office,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,699376.6742607838,0.0,0.0,0.026371976696279362,0.0011424536270183458,0.0,0.027514430323297707,0.01983190253684492,0.0027475099372963256,0.004317212584352323,0.0,0.0006178052648041342,0.018689448909826576,0.0027475099372963256,0.004317212584352323,0.0,0.0006178052648041342,0.0011424536270183458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.632954738944588e-05,0.0,0.0,0.0031426970934232516,0.001090420274431429,0.0032190266408126974,0.0022271852217615865,0.00032741540740519677,0.000514473814260897,0.0,7.362264999557117e-05,7.632954738944588e-05,0.0,0.0,0.0,0.0,0.0,0.0023202160413275576,0.0003214425150778289,0.0005050884993724388,0.0,7.227958503487176e-05 +96875,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,33389.0,,858.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007702923312710397,0.0006803483885795428,0.0,0.008383354408363679,0.0032814858576807613,0.0013526741910063727,0.003611487081900598,0.0,0.00013762457070220753,0.0026011374691012183,0.0013526741910063727,0.003611487081900598,0.0,0.00013762457070220753,0.0006803483885795428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.54591805734808e-05,0.0,0.0,0.0009179443961490311,0.0002855526195545854,0.0009634035767225118,0.0003099731707616581,0.0001611959048587255,0.00043037483225687005,0.0,1.6400488271777393e-05,4.54591805734808e-05,0.0,0.0,0.0,0.0,0.0,0.00037710384868138336,0.0001554474605601377,0.00041502713621638485,0.0,1.5815626681263784e-05 +96876,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,34999.0,,2393.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.003027959315756548,0.0007044799125637673,0.0,0.003732439228320315,0.0012592559256073407,0.0013450333752094198,0.0011281499275035544,0.0,0.0,0.0005547760130435733,0.0013450333752094198,0.0011281499275035544,0.0,0.0,0.0007044799125637673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.706883682158458e-05,0.0,0.0,0.0003608371152167784,0.0001434408950712714,0.000407905952038363,6.611177868091405e-05,0.00016028549672226694,0.00013443983981359739,0.0,0.0,4.7068836821584585e-05,0.0,0.0,0.0,0.0,0.0,0.00013761991978258423,0.00014699425385824035,0.0001232917783975384,0.0,0.0 +96877,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,72789.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.006285077921738042,0.0,0.0,0.006285077921738042,0.001444743906070656,0.002664717135616937,0.0021755861904441502,0.0,0.0,0.001444743906070656,0.002664717135616937,0.0021755861904441502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007489811463005513,0.00022130762609723047,0.0007489811463005513,0.00017216746719033544,0.0003175494273345749,0.0002592605945518498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017216746719033544,0.0003175494273345749,0.0002592605945518498,0.0,0.0 +96878,35.0,Eastern Counties in South Carolina and Georgia,G1300730030302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,32305.0,,1240.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002837376860647813,0.0003649301084859838,0.0,0.0032023069691337965,0.0012677876361581021,0.0008198114530305345,0.0011147078799451605,0.0,0.0,0.0009028575276721181,0.0008198114530305345,0.0011147078799451605,0.0,0.0,0.0003649301084859838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4381776202234688e-05,0.0,0.0,0.0003381252578936313,0.00012283578689823124,0.00036250703409586597,0.00010759195883328724,9.769550278097837e-05,0.0001328377962793657,0.0,0.0,2.4381776202234685e-05,0.0,0.0,0.0,0.0,0.0,0.00014351589034932414,9.280416313002894e-05,0.00012618698061651296,0.0,0.0 +96879,50.0,the Greater Atlanta and Macon Area,G1300890023416,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,70321.0,,5148.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00595425819218024,0.0014997572194378715,0.0,0.0074540154116181125,0.004974618489514431,0.0016796904225071137,0.0007997064995965679,0.0,0.0,0.0034748612700765593,0.0016796904225071137,0.0007997064995965679,0.0,0.0,0.0014997572194378715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010020466218967449,0.0,0.0,0.0007095571102255717,0.0003110854400882716,0.0008097617724152463,0.0004140923086722013,0.00020016536801057138,9.529943354279911e-05,0.0,0.0,0.00010020466218967449,0.0,0.0,0.0,0.0,0.0,0.0005404142147171131,0.0001824719991212111,8.687555857692207e-05,0.0,0.0 +96880,50.0,the Greater Atlanta and Macon Area,G1301170130306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,13852.0,,765.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032025833093334622,0.0006070699212465164,0.0,0.0038097359376537175,0.0017849840654417329,0.0008858754668217218,0.0009633719949154531,0.0,0.00017542170340107102,0.0013533358475962876,0.0008858754668217218,0.0009633719949154531,0.0,0.0,0.0004316482178454453,0.0,0.00017542170340107102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.056259117337129e-05,0.0,0.0,0.00038164994531276824,0.000161377341818309,0.00042221253648613957,0.00016127622682590847,0.00010556925169787358,0.00011480446678898624,0.0,0.0,2.884143914629765e-05,0.0,1.1721152027073639e-05,0.0,0.0,0.0,0.00019782018024105822,9.817681172097001e-05,0.00010676533497580608,0.0,1.9441043568310834e-05 +96881,50.0,the Greater Atlanta and Macon Area,G1301510070307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,10308.0,,569.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002475174595796253,0.0004511670872479219,0.0,0.0029263416830441753,0.001653479818196234,0.0007501531588155184,0.00041949027800576723,0.0,0.00010321842802665565,0.0013054484519012283,0.0007501531588155184,0.00041949027800576723,0.0,0.0,0.0003480313662950056,0.0,0.00010321842802665565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0146944140861597e-05,0.0,0.0,0.00029496053489677665,0.00010288781823344688,0.0003251074790376382,0.0001555671160761427,8.939392693934455e-05,4.9989635880524314e-05,0.0,0.0,2.3255424554490488e-05,0.0,6.8970460655903344e-06,0.0,0.0,0.0,0.00018369647620034094,8.333968783198742e-05,4.66040679916031e-05,0.0,1.1467247013706756e-05 +96882,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,151896.0,,1109.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007180583610784346,0.0001886155847865217,0.0,0.0073691991955708675,0.003400736511450388,0.0011158780263324434,0.0015117260753965422,0.0,0.0013408763127529134,0.003400736511450388,0.0011158780263324434,0.0013231104906100204,0.0,0.0013408763127529134,0.0,0.0001886155847865217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2602732502702641e-05,0.0,0.0,0.0008556955974954466,0.00022135125863114339,0.0008682983299981492,0.0004052588785011386,0.00013297692307913674,0.00015767239589197754,0.0,0.0001597895129144336,0.0,1.2602732502702641e-05,0.0,0.0,0.0,0.0,0.0004007021326592537,0.00013148172563016636,0.00017812372713040618,0.0,0.0001579928337121355 +96883,50.0,the Greater Atlanta and Macon Area,G1300890020700,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,6209.0,,317.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012109969736909395,0.0002517603324624518,0.0,0.001462757306153391,0.0008781010018902269,0.00022182037176882253,0.0003334749213168875,0.0,2.936101117745413e-05,0.0006557016806052293,0.00022182037176882253,0.0003334749213168875,0.0,0.0,0.00022239932128499763,0.0,2.936101117745413e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6819476050297804e-05,0.0,0.0,0.0001443123025813947,6.527315107191748e-05,0.00016113177863169253,7.813877440686362e-05,2.6433929485268445e-05,3.973959868926263e-05,0.0,0.0,1.4857940571370167e-05,0.0,1.9615354789276344e-06,0.0,0.0,0.0,9.67282649402171e-05,2.4434888063451285e-05,3.673432836384622e-05,0.0,3.2342972641779285e-06 +96884,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,38684.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003411258952853907,0.0,0.0,0.0034112589528539072,0.002330475164060384,0.0006897844432313438,0.00039096897196274147,0.0,0.0,0.002330475164060384,0.0006897844432313438,0.00039096897196274147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040651165027803994,9.25175501402508e-05,0.00040651165027803994,0.00027771720586664743,8.219997843303612e-05,4.659084642844743e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002777172058666474,8.21999784330361e-05,4.6590846428447425e-05,0.0,0.0 +96885,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,55119.0,,5795.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0027113800594387345,0.0009854534877265346,0.0,0.0036968158168038494,0.0015094033980505152,0.0008457382397365187,0.0006994272972982429,0.0,0.0006422468817185726,0.0012690683490016994,0.0008457382397365187,0.00048551048676530583,0.0,0.00011104525357379071,0.00024033504904881576,0.00021391681053293705,0.0005312016281447819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.584194699738724e-05,0.0,0.0,0.00032310899792446015,0.00014951849878099926,0.00038895094492184736,0.00015123199018748758,0.00010078470341934666,5.785718100067022e-05,0.0,1.3233010430091578e-05,1.6057711254940343e-05,1.4292606882394336e-05,3.549162886005257e-05,0.0,0.0,0.0,0.00015880798693605714,8.898216838578105e-05,7.35884398004673e-05,0.0,6.757234979954184e-05 +96886,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,27322.0,,2141.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006261421724508008,0.0016983070521629385,0.0,0.007959728776670947,0.0047974238122485266,0.0013444034836324423,0.0016769686271381975,0.0,0.00014093285365177985,0.003099116760085589,0.0013444034836324423,0.0016769686271381975,0.0,0.00014093285365177985,0.0016983070521629385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011347238094931546,0.0,0.0,0.0007461583165578382,0.00028972715683383367,0.0008596306975071538,0.0003693141663770211,0.00016020927582553114,0.00019984025079289265,0.0,1.679462356239342e-05,0.00011347238094931546,0.0,0.0,0.0,0.0,0.0,0.0005181097112313222,0.000145192196466945,0.0001811083959128746,0.0,1.522039389601195e-05 +96887,50.0,the Greater Atlanta and Macon Area,G1301530021105,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,165400.0,,7708.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.008513977711017995,0.0013107701590616635,0.0,0.00982474787007966,0.00580610826314043,0.001070488301097108,0.001770553891406473,0.0,0.0011775974144356469,0.005178790345737543,0.001070488301097108,0.0010871016497476975,0.0,0.0011775974144356469,0.0006273179174028881,0.0006834522416587753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.757821559854334e-05,0.0,0.0,0.0010145942970656338,0.0003821795650533875,0.001102172512664177,0.0006171464536117067,0.00012756802545572335,0.00012954780616083818,0.0,0.00014033201183736546,4.1913819474246046e-05,4.5664396124297286e-05,0.0,0.0,0.0,0.0,0.0006513483112044323,0.00012009089660111952,0.00019862655582661645,0.0,0.00013210674903200864 +96888,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,FuelOil,7667.0,1444.0,236.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,9919.009120746628,0.0,0.0,0.0006241907262584486,7.094928226976242e-05,0.00014920032371304722,0.0008443403322412582,0.00021030946701076661,0.00025001474114318226,0.0002347844623520583,0.0,0.00014920032371304722,0.00021030946701076661,0.00025001474114318226,0.0001638351800822959,0.0,0.0,0.0,7.094928226976242e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00014920032371304722,0.0,4.739527124370389e-06,1.3256742579336913e-05,0.0,7.438493422171199e-05,4.718678928787473e-05,9.238120392541928e-05,2.5062621425941824e-05,2.9794306919410507e-05,1.952427131795915e-05,0.0,0.0,0.0,4.739527124370389e-06,0.0,0.0,1.3256742579336913e-05,0.0,2.301043905814085e-05,2.7354683773781512e-05,2.5688304190670725e-05,0.0,1.6324348138251915e-05 +96889,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,53526.0,,4502.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005236567522577025,0.0013252692687536992,0.0,0.0065618367913307255,0.0025145222023959797,0.0014680986964632082,0.0025792158924715374,0.0,0.0,0.0011892529336422805,0.0014680986964632082,0.0025792158924715374,0.0,0.0,0.0013252692687536992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.854632496570287e-05,0.0,0.0,0.0006240313173421233,0.000297310505834246,0.0007125776423078261,0.0001417209024106231,0.00017495039634117776,0.00030736001859032254,0.0,0.0,8.854632496570287e-05,0.0,0.0,0.0,0.0,0.0,0.0002730626133343128,0.00015942705389793642,0.00028008797507557686,0.0,0.0 +96890,50.0,the Greater Atlanta and Macon Area,G1300970080301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,15548.0,,3318.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001396131569695095,0.0009767274100306886,0.0,0.0023728589797257834,0.0013554678413506386,0.0004846502626533223,0.0005327408757218226,0.0,0.0,0.00037874043131995005,0.0004846502626533223,0.0005327408757218226,0.0,0.0,0.0009767274100306886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.525820417412409e-05,0.0,0.0,0.00016637488636680258,0.0001209207272792817,0.00023163309054092667,4.5133924044946594e-05,5.775503836948356e-05,6.348592395237242e-05,0.0,0.0,6.525820417412409e-05,0.0,0.0,0.0,0.0,0.0,0.00013231768423809602,4.731045507931289e-05,5.2004951223517765e-05,0.0,0.0 +96891,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,150176.0,,6865.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.014292707842825877,0.0020635774241084736,0.0,0.01635628526693435,0.004515840337612647,0.0023302953310863662,0.006467823064652825,0.0,0.003042295195560307,0.004515840337612647,0.0023302953310863662,0.00440424564054435,0.0,0.003042295195560307,0.0,0.0020635774241084736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013787715270893684,0.0,0.0,0.0017032333554981686,0.0007985917637537607,0.0018411105082071057,0.0005381436446968782,0.0002776966254200863,0.0005248451282482374,0.0,0.0003625442226436522,0.0,0.00013787715270893684,0.0,0.0,0.0,0.0,0.0005083159753744309,0.00026230474409506306,0.0007280367647799351,0.0,0.00034244949645977307 +96892,50.0,the Greater Atlanta and Macon Area,G1301510070403,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,31427.0,,3900.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028001196786024024,0.0011481288612033588,0.0,0.003948248539805761,0.0020667301569061987,0.0008341128095652639,0.001047436262940596,0.0,0.0,0.0009186012957028397,0.0008341128095652639,0.001047436262940596,0.0,0.0,0.0011481288612033588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.671143095805172e-05,0.0,0.0,0.00033368571481938637,0.00018758675619462585,0.0004103971457774381,0.00010946822463803016,9.939986895085599e-05,0.00012482127846104402,0.0,0.0,7.671143095805172e-05,0.0,0.0,0.0,0.0,0.0,0.00021482440857894622,8.670110628821375e-05,0.00010887482091382081,0.0,0.0 +96893,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,54721.0,,3119.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002734252225670603,0.0005304037618808795,0.0,0.003264655987551483,0.001348518098524956,0.0009527055101836974,0.000670207661677996,0.0,0.0002932424475262533,0.0010221198751432037,0.0009527055101836974,0.0004662021231788684,0.0,0.0002932424475262533,0.00032639822338175205,0.00020400553849912755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.543856424215331e-05,0.0,0.0,0.00032583566279032296,0.00013508328910676265,0.0003612742270324763,0.00012180409102044921,0.00011353211252431653,5.555642466853477e-05,0.0,3.494514747063575e-05,2.1808073847026586e-05,1.3630490395126726e-05,0.0,0.0,0.0,0.0,0.00014923006759107275,0.00010542854992796342,7.41666980677985e-05,0.0,3.245087352760104e-05 +96894,85.0,Rural Climate Zone 3A,G1300310110401,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,27860.0,,919.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001367666888858613,0.00015636405736344565,0.0,0.0015240132158606385,0.0007144094526981876,0.0003328520749386513,0.0002726929586404121,0.0,0.0002040764599448078,0.0007144094526981876,0.0003328520749386513,0.00011632890127696643,0.0,0.0002040764599448078,0.0,0.00015636405736344565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.044686129113581e-05,0.0,0.0,0.000162981195252265,4.989883490608002e-05,0.0001734280565434008,8.513425853091918e-05,3.966508910731258e-05,1.3862603187187868e-05,0.0,2.431924442684536e-05,0.0,1.044686129113581e-05,0.0,0.0,0.0,0.0,8.129761715203593e-05,3.787755110801307e-05,3.1031627126257976e-05,0.0,2.3223278818155356e-05 +96895,35.0,Eastern Counties in South Carolina and Georgia,G1300510003800,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,61772.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005291225711393234,0.0,0.0,0.005291225711393234,0.0012516449032455102,0.0017025672885776573,0.0023370442091763645,0.0,0.0,0.0012516449032455102,0.0017025672885776573,0.0023370442091763645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006305454909069402,0.00018974079827090146,0.0006305454909069402,0.00014915618667688633,0.0002028917656010598,0.00027850119585208835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014915618667688633,0.0002028917656010598,0.00027850119585208835,0.0,0.0 +96896,85.0,Rural Climate Zone 3A,G1302610950700,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,68653.0,,1527.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005583697659410343,0.0004494492842298572,0.0,0.006033177633246498,0.001801909544163321,0.0022440240124880274,0.001987244076595148,0.0,0.0,0.0013524602599334643,0.0022440240124880274,0.001987244076595148,0.0,0.0,0.0004494492842298572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0030440931247615e-05,0.0,0.0,0.0006654000798923148,0.000198022184503847,0.0006954305208235624,0.0001611704680131165,0.00026741665617824485,0.00023681661293093394,0.0,0.0,3.0030440931247618e-05,0.0,0.0,0.0,0.0,0.0,0.00020770197215296346,0.0002586634908850477,0.00022906505778555106,0.0,0.0 +96897,81.0,the Columbus-Albany Area,G1301450120402,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,17225.0,,,8489.0,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,24034.3828889517,0.0,0.0,0.0015189837078819685,0.0,0.0008000709827898209,0.0023190243170723517,0.0017770074351056702,0.0004148426211208144,0.0001271742608458669,0.0,0.0,0.0009769364523158496,0.0004148426211208144,0.0001271742608458669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008000709827898209,0.0,0.0,0.0,0.0,6.452362043785817e-05,0.0001810126939579279,0.00012007849071133989,0.0002455363143957861,0.0001164185620568445,4.94355403734729e-05,1.5154971997637359e-05,0.0,0.0,0.0,0.0,0.0,6.452362043785817e-05,0.0,0.0,0.00018814802978029424,4.3923182475673175e-05,1.3465102139818685e-05,0.0,0.0 +96898,50.0,the Greater Atlanta and Macon Area,G1300670030314,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,11134.0,,1565.0,,4.088175128053588,Healthcare,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0012480479812750145,0.0005815750923951904,0.0,0.001829661822093977,0.0011170395605016026,0.00023655912712856542,0.00043518354738426173,0.0,4.0879587079547336e-05,0.0006427976019550813,0.00023655912712856542,0.0003686912521913677,0.0,0.0,0.0004742419585465212,6.649229519289405e-05,4.0879587079547336e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8858449132805084e-05,0.0,0.0,0.00014872942784956335,8.162612442733021e-05,0.00018758787698236844,7.660195841523817e-05,2.8190665870458076e-05,4.393680356386709e-05,0.0,0.0,3.1686891794017025e-05,4.442740936231164e-06,2.7314054124265022e-06,0.0,0.0,0.0,0.00011452557906028756,2.4253457061296498e-05,4.461762100825896e-05,0.0,4.1912198525254385e-06 +96899,85.0,Rural Climate Zone 3A,G1300090970701,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,26814.0,,4156.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,14029.891188970922,0.0,0.0,0.0012935894388456327,0.0007068031276489848,0.0,0.0020003748361331975,0.0008584863695975366,0.00022941314641406323,0.0005701020411003777,0.0,0.00034235554865979953,0.0008584863695975366,0.00022941314641406323,0.00013666562582576703,0.0,6.898883628542546e-05,0.0,0.00043343641527461075,0.0002733667123743741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.72241275824685e-05,0.0,0.0,0.00015415364004513248,9.348516647511457e-05,0.00020137776762760098,0.0001023035553851515,2.7338559307884825e-05,1.6286082011374623e-05,0.0,8.221217579950525e-06,0.0,2.8959487830649836e-05,1.826463975181867e-05,0.0,0.0,0.0,8.64238369357112e-05,2.3095025219669294e-05,5.739218184660687e-05,0.0,3.446493870983803e-05 +96900,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,129901.0,,5262.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013093014665970048,0.001548843050632464,0.0,0.014641857716602511,0.007219392295865305,0.0025868882940459632,0.004835546437084943,0.0,0.0,0.0056705492452328405,0.0025868882940459632,0.004835546437084943,0.0,0.0,0.001548843050632464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010348462094249404,0.0,0.0,0.0015602699615535267,0.0006224372392548274,0.0016637545824960207,0.0006757487010109688,0.00030827461834171267,0.0005762429849781149,0.0,0.0,0.00010348462094249404,0.0,0.0,0.0,0.0,0.0,0.0008203396896462579,0.00029394816811694646,0.0005494632374722445,0.0,0.0 +96901,81.0,the Columbus-Albany Area,G1300950001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,69029.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007580278464480846,0.0,0.0,0.007580278464480848,0.00484209847516752,0.0019509570390856751,0.0007872229502276518,0.0,0.0,0.00484209847516752,0.0019509570390856751,0.0007872229502276518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00090332581071777,0.0001853510929133767,0.00090332581071777,0.0005770226715484576,0.00023249143910286497,9.381170006644748e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005770226715484575,0.00023249143910286492,9.381170006644747e-05,0.0,0.0 +96902,50.0,the Greater Atlanta and Macon Area,G1300890021303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,163409.0,,10416.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014194889082037249,0.003034565572626909,0.0,0.01722942428106472,0.011757529221555419,0.00390908224763866,0.0015628128118706445,0.0,0.0,0.008722963648928508,0.00390908224763866,0.0015628128118706445,0.0,0.0,0.003034565572626909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020275108913505712,0.0,0.0,0.0016915769400740986,0.0006808030841257889,0.0018943280292091557,0.0010394983766589857,0.00046583762287556794,0.0001862373209775959,0.0,0.0,0.00020275108913505712,0.0,0.0,0.0,0.0,0.0,0.0012927081482992978,0.00042979289089328934,0.00017182699001656886,0.0,0.0 +96903,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2007,gen1_t12_incandescent,_1000,NaturalGas,4679.0,,422.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.0002408492295299973,7.175477266695368e-05,0.0,0.000312604002196951,0.0001341124537812794,8.450290252797167e-05,2.0957287198502416e-05,0.0,7.299589796635739e-05,0.00010503466105239281,8.450290252797167e-05,2.0957287198502416e-05,0.0,3.033664838971035e-05,2.9077792728886586e-05,0.0,4.2659249576647034e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.794130253879781e-06,0.0,0.0,2.870080176283916e-05,1.2449146077421058e-05,3.3494932016718944e-05,1.2516456834736396e-05,1.0069789546649843e-05,2.4973754184095912e-06,0.0,3.615067124279874e-06,1.942765904710363e-06,0.0,2.850179735812886e-06,0.0,0.0,0.0,1.4369897667430212e-05,9.054327377442147e-06,2.2455339824038223e-06,0.0,7.821373439557135e-06 +96904,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,105757.0,,8413.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00941870155197758,0.0024765591594057214,0.0,0.011895260711383302,0.004007326031928838,0.003052357552763221,0.004835546437084943,0.0,0.0,0.0015307668725231172,0.003052357552763221,0.004835546437084943,0.0,0.0,0.0024765591594057214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016547011163053167,0.0,0.0,0.0011224082166693802,0.00046077988157568363,0.001287878328299912,0.0001824184900693121,0.0003637434712765635,0.0005762425981032302,0.0,0.0,0.00016547011163053167,0.0,0.0,0.0,0.0,0.0,0.00043386592998456984,0.00033047322272343563,0.0005235358528838284,0.0,0.0 +96905,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,47494.0,,2219.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0041744002486135325,0.0006530748220151152,0.0,0.004827505760234945,0.0022942628979973666,0.0013781167707983437,0.0011550647122266396,0.0,0.0,0.0016411880759822518,0.0013781167707983437,0.0011550647122266396,0.0,0.0,0.0006530748220151152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.363566644696604e-05,0.0,0.0,0.0004974567300983646,0.0001763366919926708,0.0005410923965453307,0.00019557780881833737,0.00016422801400578643,0.0001376472500419949,0.0,0.0,4.363566644696604e-05,0.0,0.0,0.0,0.0,0.0,0.00025715312864215285,0.00015446662174346053,0.00012946576645270287,0.0,0.0 +96906,85.0,Rural Climate Zone 3A,G1301750950500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,47748.0,,729.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006480325140066898,0.00027108397270949117,0.0,0.006751370364352617,0.003762006967183974,0.0007976750517720965,0.0020732344139252896,0.0,0.00011845393147125707,0.003762006967183974,0.0007976750517720965,0.0018021504412157985,0.0,0.00011845393147125707,0.0,0.00027108397270949117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.811110230164263e-05,0.0,0.0,0.0007722472268568998,0.00025231914437964396,0.0007903583291585423,0.00044831075370921423,9.505732094448218e-05,0.00021475861944073255,0.0,1.4115915191260172e-05,0.0,1.811110230164263e-05,0.0,0.0,0.0,0.0,0.0004404044483421598,9.338091188995245e-05,0.00024270599876964464,0.0,1.3866970156785415e-05 +96907,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,18492.0,,219.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0009518899135583749,3.718056789785072e-05,0.0,0.0009890704814562255,0.0007178491428136778,0.00013010539210034749,3.423732790212196e-05,0.0,0.00010687861864007831,0.0006806685749158271,0.00013010539210034749,3.423732790212196e-05,0.0,0.00010687861864007831,3.718056789785072e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4845442390121153e-06,0.0,0.0,0.00011343388971756163,3.85355079076251e-05,0.00011591843395657373,8.111324950653213e-05,1.5504272593876863e-05,4.079960531313195e-06,0.0,1.273640708583943e-05,2.4845442390121153e-06,0.0,0.0,0.0,0.0,0.0,8.413146485730317e-05,1.5248269546345517e-05,4.012593144452601e-06,0.0,1.252610640847244e-05 +96908,50.0,the Greater Atlanta and Macon Area,G1302230120203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5400.0,,722.0,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.0,0.0,0.0008899350232793913,0.0003780626977614738,0.0,0.0012680523149322385,0.0005959469182331043,0.00025102271253534393,0.0004061785518188253,0.0,1.4904132344964958e-05,0.00023273375892522203,0.00025102271253534393,0.0004061785518188253,0.0,0.0,0.0003632131593078823,0.0,1.4904132344964958e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5260386156480895e-05,0.0,0.0,0.00010605448037952,6.476259449717295e-05,0.0001313148665360009,2.7735123603330697e-05,2.9914637186984415e-05,4.8404719589204886e-05,0.0,0.0,2.4268209256183015e-05,0.0,9.958246094901492e-07,0.0,0.0,0.0,6.1714086326559e-05,2.599499532150223e-05,4.206236737537551e-05,0.0,1.5434175125641817e-06 +96909,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,123719.0,,5745.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01205512974884651,0.0016735853290201252,0.0,0.013728745451466073,0.008368807479484321,0.0037029062546552,0.0016570317173265506,0.0,0.0,0.006695222150464196,0.0037029062546552,0.0016570317173265506,0.0,0.0,0.0016735853290201252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011182005406710356,0.0,0.0,0.001436587831926508,0.0004009688281091383,0.0015484078859936115,0.000797857416202593,0.00044126858681974935,0.00019746544847062985,0.0,0.0,0.00011182005406710356,0.0,0.0,0.0,0.0,0.0,0.0009438828582994844,0.00041763533791726727,0.0001868896897768597,0.0,0.0 +96910,35.0,Eastern Counties in South Carolina and Georgia,G1302450010600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4599.0,,462.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00029158194943447414,0.00013589357668622793,0.0,0.00042747552612070204,0.00021123656014708825,0.00012493738723794802,9.13322683419635e-05,0.0,0.0,7.534298346086034e-05,0.00012493738723794802,9.13322683419635e-05,0.0,0.0,0.00013589357668622793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.079170620323755e-06,0.0,0.0,3.4748987759651206e-05,2.0401910945171658e-05,4.3828158379974955e-05,8.97892484474726e-06,1.4889288408540159e-05,1.0884431909559205e-05,0.0,0.0,9.079170620323755e-06,0.0,0.0,0.0,0.0,0.0,2.1657636164072626e-05,1.280956513496145e-05,9.364103621136156e-06,0.0,0.0 +96911,35.0,Eastern Counties in South Carolina and Georgia,G1300510002100,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,275739.0,,1267.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013432787767253304,0.00021549481269932176,0.0,0.013648282579952627,0.008556282353366243,0.0023220390530157954,0.0018209967696465235,0.0,0.000948946673562646,0.008556282353366243,0.0023220390530157954,0.0016055019569472014,0.0,0.000948946673562646,0.0,0.00021549481269932176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4398309850158887e-05,0.0,0.0,0.001600758806198063,0.0005120653362901235,0.001615157116048222,0.0010196352806866931,0.0002767128109856895,0.00019132449946218172,0.0,0.00011308410217132254,0.0,1.4398309850158887e-05,0.0,0.0,0.0,0.0,0.00101256258793004,0.00027479339457179923,0.00021549934019651694,0.0,0.00011229969511375084 +96912,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,343472.0,,1143.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01652081389433822,0.000194431143332299,0.0,0.016715227307309097,0.0093412231837934,0.0041299508159343195,0.001823035761209829,0.0,0.001421035276732972,0.0093412231837934,0.0041299508159343195,0.0016286046178775302,0.0,0.001421035276732972,0.0,0.000194431143332299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2990277924964671e-05,0.0,0.0,0.0019687529380977543,0.0005090671036138967,0.001981743216022719,0.001113175216798651,0.0004921581258085837,0.00019407761306147167,0.0,0.00016934198242904793,0.0,1.2990277924964671e-05,0.0,0.0,0.0,0.0,0.0011074875222152666,0.0004896434766643275,0.00021613757838426893,0.0,0.0001684767408555145 +96913,50.0,the Greater Atlanta and Macon Area,G1300670031309,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,28740.0,,7382.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0027686935217535544,0.0021730696427277383,0.0,0.004941763164481292,0.002670179885537928,0.0009685025955429044,0.0013030806834004602,0.0,0.0,0.0004971102428101899,0.0009685025955429044,0.0013030806834004602,0.0,0.0,0.0021730696427277383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014519257251543116,0.0,0.0,0.0003299385418683238,0.0002471865534122835,0.0004751311143837549,5.923943093445853e-05,0.00011541412281946176,0.00015528498811440353,0.0,0.0,0.00014519257251543116,0.0,0.0,0.0,0.0,0.0,0.00025672730610389125,9.311771976675861e-05,0.0001252860885131051,0.0,0.0 +96914,50.0,the Greater Atlanta and Macon Area,G1301210008903,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,80725.0,,2115.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007485409803253791,0.0006224772845363054,0.0,0.008107887087790097,0.0031747477026784596,0.002623009960658359,0.002310129424453279,0.0,0.0,0.002552270418142154,0.002623009960658359,0.002310129424453279,0.0,0.0,0.0006224772845363054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1590932395678434e-05,0.0,0.0,0.000892022379601499,0.0003008598472461279,0.0009336133119971774,0.0003041493240340748,0.0003125792238933714,0.00027529383167405305,0.0,0.0,4.1590932395678434e-05,0.0,0.0,0.0,0.0,0.0,0.0003655683269093153,0.00030203639866416884,0.00026600858642369333,0.0,0.0 +96915,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,36143.0,,16817.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007525719998610098,0.011568216164905016,0.0,0.019093936163515113,0.00856824149729302,0.000691667400474553,0.005867554268729171,0.0003686406510202408,0.003597832345998128,0.004950901319178647,0.000691667400474553,0.0011236367859015785,0.0003686406510202408,0.00039087384203508025,0.003617340178114374,0.004743917482827592,0.003206958503963048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007729210871157332,0.0,0.0,0.000896826106622385,0.0010325756846673842,0.001669747193738118,0.0005899897358884788,8.242472241324173e-05,0.00013390171360931754,4.3930223268774624e-05,4.657971144257232e-05,0.00024168968344641395,0.0003169610427179065,0.00021427036095141266,0.0,0.0,0.0,0.0007492848552994058,6.0485679382826114e-05,0.0005131122357598267,3.2237286605944235e-05,0.0003146271366901153 +96916,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,87088.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007679569761042857,0.0,0.0,0.007679569761042857,0.005279690922267211,0.0019870712488171617,0.00041280758995848496,0.0,0.0,0.005279690922267211,0.0019870712488171617,0.00041280758995848496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009151611701646899,0.00030978417743161374,0.0009151611701646899,0.0006291717209264357,0.00023679587605193928,4.91935731863149e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006291717209264357,0.00023679587605193928,4.91935731863149e-05,0.0,0.0 +96917,35.0,Eastern Counties in South Carolina and Georgia,G1300510001100,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,239153.0,,25070.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.011263407126064162,0.004263424976704477,0.0,0.015526814372407221,0.0069355145552363745,0.002848613056829944,0.002646398284834241,0.0,0.0030962530147838206,0.005683059554885265,0.002848613056829944,0.0022673586183963525,0.0,0.0004643404352297628,0.00125245500035111,0.0003790396664378888,0.002631912579554058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028485656853266864,0.0,0.0,0.0013422376462292316,0.0006077006944764475,0.0016270942147619,0.0006772388137047875,0.00033946350705635494,0.0002701965809325524,0.0,5.5334518752288185e-05,8.368155546092757e-05,2.532516446500813e-05,0.00017584866396998185,0.0,0.0,0.0,0.000726790141142939,0.0002985133790933977,0.0002773227808314444,0.0,0.00032446419767513386 +96918,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,16824.0,,2251.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0037276012386760608,0.001746107749581788,0.0,0.0054737089882578496,0.002389436139674995,0.0006827884522306483,0.0016599910156138062,0.000427025795384895,0.00031454844613657294,0.0018189633151265317,0.0006827884522306483,0.0004843560905804812,0.000427025795384895,0.00031454844613657294,0.0005704728245484632,0.0011756349250333247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011666403049958693,0.0,0.0,0.0004442150739360675,0.0002312681468763244,0.0005608791044356544,0.00021676431350336965,8.136731999210727e-05,5.772030397355787e-05,5.088830138303156e-05,3.7484471194848095e-05,3.8115436471917464e-05,7.854859402766947e-05,0.0,0.0,0.0,0.0,0.0002448403459157311,6.99638538379842e-05,0.00017009568396967998,4.375640835130205e-05,3.223109799026037e-05 +96919,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,20808.0,,3404.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.004996334324591561,0.002700634078809605,0.0,0.007697051110474907,0.004183158375586691,0.0017308109321424864,0.0015430658747542585,0.0,0.00024001592799147012,0.0017224575176948166,0.0017308109321424864,0.0015430658747542585,0.0,0.0,0.002460700857891874,0.0,0.00024001592799147012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018044227197893463,0.0,0.0,0.0005954076513819923,0.00037083029922060164,0.0007758499233609269,0.0002052633628154507,0.0002062588300028299,0.00018388545856371183,0.0,0.0,0.00016441118659594103,0.0,1.6036611437934287e-05,0.0,0.0,0.0,0.00042165539224349864,0.00017446285723990066,0.0001555384683674118,0.0,2.419320551011572e-05 +96920,85.0,Rural Climate Zone 3A,G1302610950300,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Propane,83843.0,,4237.0,19723.0,3.3063363735822096,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.007658511218292233,0.001273608560391084,0.0019180123109710859,0.010850132089654404,0.0035973542448368228,0.0010496983917437992,0.004285067142102695,0.0,0.0019180123109710859,0.0035973542448368228,0.0010496983917437992,0.003011458581711612,0.0,0.0,0.0,0.001273608560391084,0.0,0.0,0.0,0.0,0.0,0.0,0.0019180123109710859,0.0,8.509605518752458e-05,0.0,0.0001546846924314269,0.000912649852259514,0.0005718242039476529,0.0011524305998784656,0.0004286896926172505,0.00012509051104525942,0.0003588696485970042,0.0,0.0,0.0,8.509605518752458e-05,0.0,0.0,0.0001546846924314269,0.0,0.0003820876166388397,0.00011149214933910526,0.00045513201648499037,0.0,0.00020371881741553018 +96921,50.0,the Greater Atlanta and Macon Area,G1301210001202,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,NaturalGas,917217.0,,77279.0,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.0,0.0,0.14537736361790002,0.040465647412733216,0.0,0.18584301103063322,0.10476125544054145,0.010657491910586044,0.06988400253047362,0.0,0.0005402611490321365,0.06483586917684037,0.010657491910586044,0.06988400253047362,0.0,0.0,0.039925386263701075,0.0,0.0005402611490321365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027036798691666914,0.0,0.0,0.01732433902480032,0.008488594887566647,0.02002801889396701,0.00772636503121234,0.001270032681967868,0.008327941311620114,0.0,0.0,0.0026675827525721495,0.0,3.6097116594541886e-05,0.0,0.0,0.0,0.011289961304883403,0.0011485417082073338,0.007531292757819428,0.0,5.822312305684928e-05 +96922,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,49549.0,,6883.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004209785364674784,0.002026066428561742,0.0,0.006235821103630228,0.0028663478489928443,0.0013822598676485334,0.001987244076595148,0.0,0.0,0.0008402814204311021,0.0013822598676485334,0.001987244076595148,0.0,0.0,0.002026066428561742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013536904410605302,0.0,0.0,0.0005016716774507346,0.00028510645564248796,0.0006370407215567877,0.00010013465134247345,0.00016472113573648666,0.00023681589037177444,0.0,0.0,0.00013536904410605302,0.0,0.0,0.0,0.0,0.0,0.00029282114922959225,0.00014120928243967576,0.00020301342508473186,0.0,0.0 +96923,50.0,the Greater Atlanta and Macon Area,G1300590001900,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,7698.0,,2736.0,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.0,0.0,0.0010563917980771866,0.0014328712729888289,0.0,0.0024892630710660157,0.00222885020921443,0.00012283625559037057,0.00012829564472772038,0.0,9.335555424868161e-06,0.0008053144916504693,0.00012283625559037057,0.00012829564472772038,0.0,0.0,0.0014235357175639608,0.0,9.335555424868161e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.573507494339049e-05,0.0,0.0,0.00012589088081471235,0.0001345960566237907,0.00022162595575810282,9.596983890944816e-05,1.4638474513338649e-05,1.5289073380598146e-05,0.0,0.0,9.511133426613226e-05,0.0,6.237406772582404e-07,0.0,0.0,0.0,0.00019844068053733452,1.0936450575834095e-05,1.1422515045871168e-05,0.0,8.311702437633911e-07 +96924,50.0,the Greater Atlanta and Macon Area,G1300150960901,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,201843.0,,55660.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011957338011322191,0.009465442095902289,0.0,0.02142278010722448,0.00937515909555138,0.0020100201527457062,0.0051107589489688,0.0,0.004926841909958592,0.00694427335377788,0.0020100201527457062,0.0024050348748230624,0.0,0.000598009629975541,0.002430885741773499,0.002705724074145738,0.004328832279983052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006324252032178236,0.0,0.0,0.0014249333660263277,0.0009699381085714401,0.0020573585692441514,0.0008275359277488126,0.00023953030175451128,0.0002866034594277886,0.0,7.126367709521511e-05,0.00016241749658010745,0.0001807805784564212,0.0002892271281812949,0.0,0.0,0.0,0.0009003529797122501,0.00019303433844285428,0.0004908169558934275,0.0,0.00047315429519561924 +96925,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,136418.0,,2370.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012154679953417784,0.0006976054407530819,0.0,0.012852316083777163,0.00300828727811972,0.0052237085775382885,0.004620289538512857,0.0,0.0,0.002310681837366638,0.0052237085775382885,0.004620289538512857,0.0,0.0,0.0006976054407530819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.661059350381831e-05,0.0,0.0,0.0014484513852245867,0.0004056393127243291,0.001495061978728405,0.0002753598055213194,0.0006224999715453074,0.0005505916081579599,0.0,0.0,4.661059350381831e-05,0.0,0.0,0.0,0.0,0.0,0.0003499428353062544,0.0006076545294503624,0.000537461043964389,0.0,0.0 +96926,50.0,the Greater Atlanta and Macon Area,G1300670030414,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,13409.0,,2075.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012001477438779652,0.0006109073029620716,0.0,0.0018110857364463339,0.0008182155935030538,0.0004161510613968498,0.0005767190815464307,0.0,0.0,0.00020730829054098227,0.0004161510613968498,0.0005767190815464307,0.0,0.0,0.0006109073029620716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.081790673310478e-05,0.0,0.0,0.00014302082569905651,8.567225191897663e-05,0.0001838387324321613,2.4704794087790274e-05,4.959245119621557e-05,6.872723767546334e-05,0.0,0.0,4.081790673310478e-05,0.0,0.0,0.0,0.0,0.0,8.305499543107202e-05,4.224244169556044e-05,5.8541295305528885e-05,0.0,0.0 +96927,35.0,Eastern Counties in South Carolina and Georgia,G1300510010901,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,27018.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003207239485430528,0.0,0.0,0.003207239485430529,0.0022817862841616678,0.0007239547425988149,0.00020152883226948328,0.0,0.0,0.0022817862841616678,0.0007239547425988149,0.00020152883226948328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003821993323647563,9.854643352807402e-05,0.0003821993323647563,0.0002719152088165878,8.627201696053687e-05,2.4015726139423614e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002719152088165877,8.627201696053685e-05,2.4015726139423607e-05,0.0,0.0 +96928,50.0,the Greater Atlanta and Macon Area,G1300670031113,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,12646.0,,1695.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0011472695522270232,0.0004990129984006472,0.0,0.0016462825506276702,0.0007912087399610753,0.00037257182045411186,0.00048253267981878084,0.0,0.0,0.0002921957415604282,0.00037257182045411186,0.00048253267981878084,0.0,0.0,0.0004990129984006472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.334063061885148e-05,0.0,0.0,0.00013671870661170388,7.388690461798435e-05,0.00017005933723055538,3.482060844902851e-05,4.439892727352233e-05,5.750282813192681e-05,0.0,0.0,3.334063061885148e-05,0.0,0.0,0.0,0.0,0.0,8.173106972281467e-05,3.848629558337421e-05,4.984514212993349e-05,0.0,0.0 +96929,81.0,the Columbus-Albany Area,G1302150010106,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,22006.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0018456729227438455,0.0,0.0,0.0018456729227438455,0.0007381464106723473,0.0005182860711556046,0.0005892711305221912,0.0,0.0,0.0007381464106723473,0.0005182860711556046,0.0005892711305221912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021994656275991053,7.881905863825796e-05,0.00021994656275991053,8.796399613404335e-05,6.176351100580925e-05,7.02227128625381e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.796399613404335e-05,6.176351100580925e-05,7.02227128625381e-05,0.0,0.0 +96930,35.0,Eastern Counties in South Carolina and Georgia,G1301270001000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,210241.0,,13701.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009562391712147138,0.002330053176377659,0.0,0.011892444888524797,0.005441359268007106,0.0030528490900275317,0.0016616894722873486,0.0,0.0017365470582028115,0.005200545499199949,0.0030528490900275317,0.0009874392882055808,0.0,0.00032155783471407763,0.00024081376880715714,0.000674250184081768,0.001414989223488734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015568032560232033,0.0,0.0,0.0011395312395437803,0.0003911484424720374,0.0012952115651461008,0.0006197386843585474,0.0003638019663302458,0.00011767117996575747,0.0,3.831940888922964e-05,1.608974692830945e-05,4.504939597921895e-05,9.454118269479194e-05,0.0,0.0,0.0,0.0005926209051292867,0.0003324871786342913,0.00018097535387906854,0.0,0.00018912812750345422 +96931,46.0,the Tallahassee-Valdosta Area,G1301850010601,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,13099.0,,481.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011332137125426754,0.00014163253306389832,0.0,0.0012748462456065738,0.0003867811081699482,0.0003930110982483818,0.0004950847287945412,0.0,0.0,0.00024514857510604985,0.0003930110982483818,0.0004950847287945412,0.0,0.0,0.00014163253306389832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.46275826209882e-06,0.0,0.0,0.0001350445763667043,5.2574685407499815e-05,0.00014450733462880312,2.9214247150094354e-05,4.6834958563358564e-05,5.899902792004531e-05,0.0,0.0,9.46275826209882e-06,0.0,0.0,0.0,0.0,0.0,4.384270434104009e-05,4.454889088243746e-05,5.611921815676098e-05,0.0,0.0 +96932,50.0,the Greater Atlanta and Macon Area,G1301530021300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,4608.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011063725254107156,0.0,0.0,0.0011063725254107156,0.0005002950890490705,0.00029526425324932754,0.00027194085845484283,0.0,3.8872324657474485e-05,0.0005002950890490705,0.00029526425324932754,0.00027194085845484283,0.0,3.8872324657474485e-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.00013184687301602717,3.5313764719763755e-05,0.00013184687301602717,5.9620373392685066e-05,3.518676359925372e-05,3.240730496200174e-05,0.0,4.632431062086623e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.9620373392685066e-05,3.518676359925372e-05,3.240730496200174e-05,0.0,4.632431062086623e-06 +96933,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010601,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,4512.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010834626659849272,0.0,0.0,0.0010834626659849272,0.0005301523426689606,0.00021048950266653736,0.00030262518281212584,0.0,4.019563783730341e-05,0.0005301523426689606,0.00021048950266653736,0.00030262518281212584,0.0,4.019563783730341e-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.0001291148047827597,3.4596151896572e-05,0.0001291148047827597,6.31775495158389e-05,2.5083754058940713e-05,3.6063440511459365e-05,0.0,4.790060696520703e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.31775495158389e-05,2.5083754058940713e-05,3.6063440511459365e-05,0.0,4.790060696520703e-06 +96934,50.0,the Greater Atlanta and Macon Area,G1300450910103,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,89853.0,,11526.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.008174930486191268,0.0034643870166254256,0.0,0.011639317502816696,0.0032725983207371996,0.0018865489366783113,0.004386100925688258,0.0,0.0020940379816907218,0.0032725983207371996,0.0018865489366783113,0.003015751890753554,0.0,0.0,0.0,0.0013703490349347043,0.0020940379816907218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023146986833144604,0.0,0.0,0.0009741924358484523,0.0006112486109737875,0.0012056623041798982,0.0003899899252987892,0.0002248167990020694,0.0003593819770492715,0.0,0.0,0.0,9.155862470395457e-05,0.0001399112436274915,0.0,0.0,0.0,0.0003389931094396589,0.00019541875521423608,0.000454335621238201,0.0,0.00021691157212907762 +96935,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11640.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027948374357986768,0.0,0.0,0.002794837435798676,0.0012292752369873262,0.0005040996144410787,0.0009696577325196402,0.0,9.188755892437054e-05,0.0012292752369873262,0.0005040996144410787,0.0009696577325196402,0.0,9.188755892437054e-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.00033305950632539483,0.00010413055487641992,0.00033305950632539483,0.00014649217100243676,6.0073321823309686e-05,0.00011555367105110465,0.0,1.0950198612911743e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00014649217100243679,6.0073321823309706e-05,0.0001155536710511047,0.0,1.0950198612911747e-05 +96936,50.0,the Greater Atlanta and Macon Area,G1301710970300,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,342397.0,,,,9.729435225087556,Education,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,1459415.2837631335,0.0,0.0,0.09166920563994342,0.0,0.0,0.09166920563994342,0.07437745635519272,0.009215454504128863,0.00283734043332503,0.0006520681943591162,0.004586886152937694,0.07437745635519272,0.009215454504128863,0.00283734043332503,0.0006520681943591162,0.004586886152937694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010924044788589713,0.00307028857857421,0.010924044788589713,0.008863419932718022,0.0010981881761441719,0.0003381204599488041,7.770572582871793e-05,0.0005466104939499971,0.0,0.0,0.0,0.0,0.0,0.0,0.008863419932718022,0.0010981881761441719,0.0003381204599488041,7.770572582871793e-05,0.0005466104939499971 +96937,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,201079.0,,62863.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.0538344033894182,0.05560211590782718,0.0,0.10943651929724539,0.08712095851591767,0.012281954810595233,0.0039543680161664915,0.0006520681943591162,0.005427169760206859,0.03529071268101888,0.012281954810595233,0.0039543680161664915,0.0006520681943591162,0.0016552996872784805,0.05183024583489879,0.0,0.0037718700729283787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003715009548171169,0.0,0.0,0.006415339869292994,0.005296611486584542,0.010130349417464164,0.004205524754135314,0.0014636163755602088,0.00047123425160789355,7.770568300924454e-05,0.00019725880498033373,0.003462995157952298,0.0,0.00025201439021887024,0.0,0.0,0.0,0.008064636531005432,0.001136919326014843,0.00036604901166679797,6.036082557533473e-05,0.0005023837232017535 +96938,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,74758.0,,15925.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,357187.66821064625,0.0,0.0,0.019594108865570833,0.013789670769923932,0.0,0.03338377963549476,0.009796603034669287,0.0029546715089173417,0.015424544466910738,0.0006510966427008026,0.004556863982296591,0.009796603034669287,0.0029546715089173417,0.003858280257779286,0.0006510966427008026,0.002333457421504111,0.0,0.011566264209131453,0.0022234065607924804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009213460343483459,0.0,0.0,0.00233499450796691,0.0017208002686351733,0.003256340542315256,0.0011674434616865304,0.0003521028587470443,0.00045978427872990827,7.759000908346625e-05,0.00027807389971996015,0.0,0.0007727908692752101,0.00014855516507313585,0.0,0.0,0.0,0.000955586095615248,0.00028820633040249036,0.001504550115138618,6.350965701731729e-05,0.00044448834414158214 +96939,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,57300.0,,10491.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002949516543671464,0.0017841708089770733,0.0,0.004733687352648537,0.002003956369140048,0.0007155087351062309,0.0012780221815188262,0.0,0.0007362000668834324,0.0018434965982885698,0.0007155087351062309,0.0002676575359971171,0.0,0.00012287140464096593,0.00016045977085147784,0.001010364645521709,0.0006133286622424665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011920748673756135,0.0,0.0,0.00035148799145404093,0.00020934496661481104,0.00047069547819160223,0.00021968580511104297,8.526574591009427e-05,3.189621361067484e-05,0.0,1.4642339713962417e-05,1.0720949983850718e-05,6.750644583753959e-05,4.097890628081371e-05,0.0,0.0,0.0,0.00019926394186547275,7.114680398836666e-05,0.00012708048019540225,0.0,7.320425214236056e-05 +96940,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,45291.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0036039794412864425,0.0,0.0,0.003603979441286443,0.0024486588394726765,0.0009078365135949642,0.00024748408821880186,0.0,0.0,0.0024486588394726765,0.0009078365135949642,0.00024748408821880186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004294797143569251,8.48286283391203e-05,0.0004294797143569251,0.00029180224695146933,0.00010818523604074108,2.9492231364714725e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002918022469514693,0.00010818523604074107,2.949223136471472e-05,0.0,0.0 +96941,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,76622.0,,4574.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003624369560041514,0.0007777954947748763,0.0,0.0044021650548163906,0.0022219866235224373,0.0010220844144203638,0.0005916976213100022,0.0,0.0005663609348407467,0.0019093648909640662,0.0010220844144203638,0.0005916976213100022,0.0,0.00010120490298566141,0.000312621732558371,0.0,0.0004651560318550853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1967316820240804e-05,0.0,0.0,0.000431909314606091,0.0001406599657585244,0.0004838766314263318,0.00022753542863873338,0.00012179988038990448,7.05114944379817e-05,0.0,1.2060398245595096e-05,2.0887383290199826e-05,0.0,3.1078748900770895e-05,0.0,0.0,0.0,0.0002442360495520425,0.00011234534764705869,6.50381456072866e-05,0.0,6.225319085261762e-05 +96942,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,43838.0,,1427.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.004184284062694765,0.00042882949583897023,0.0,0.0046131448965559384,0.0011870842810859541,0.0013597881214519705,0.0013489765037916046,0.0,0.0007172333141820019,0.0011870842810859541,0.0013597881214519705,0.0009201470079526344,0.0,0.0007172333141820019,0.0,0.00042882949583897023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8652595797340496e-05,0.0,0.0,0.0004986336920167019,0.00022950580690672145,0.0005272862878140424,0.0001414627231191548,0.00016204353270494313,0.00010965228289927729,0.0,8.547141879694021e-05,0.0,2.8652595797340496e-05,0.0,0.0,0.0,0.0,0.0001356847178946234,0.00015542491008884907,0.00015418913322312453,0.0,8.198036268358619e-05 +96943,50.0,the Greater Atlanta and Macon Area,G1300770170603,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,71298.0,,2399.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006358640908033636,0.0007061064616975455,0.0,0.007064747369731182,0.002064336367614977,0.0018291926041619788,0.0031712183979542238,0.0,0.0,0.001358229905917432,0.0018291926041619788,0.0031712183979542238,0.0,0.0,0.0007061064616975455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.717831365755349e-05,0.0,0.0,0.000757745834232381,0.0002979193877936004,0.0008049241478899345,0.0001618573950037766,0.00021798102705583512,0.00037790741217276914,0.0,0.0,4.717831365755349e-05,0.0,0.0,0.0,0.0,0.0,0.00023520079412604872,0.0002084096176658721,0.0003613137360980134,0.0,0.0 +96944,50.0,the Greater Atlanta and Macon Area,G1301210006900,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,68594.0,,5115.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005675185560546177,0.0014902502828138553,0.0,0.0071654358433600315,0.005132743448187367,0.0014562925986424486,0.0005763694229307786,0.0,0.0,0.003642493165373512,0.0014562925986424486,0.0005763694229307786,0.0,0.0,0.0014902502828138553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.95702113129763e-05,0.0,0.0,0.0006763011468784912,0.00027345327695436455,0.0007758713581914675,0.0004340690324497677,0.0001735436390837167,6.868485578051576e-05,0.0,0.0,9.957021131297631e-05,0.0,0.0,0.0,0.0,0.0,0.0005557720029108624,0.00015768694900533296,6.2409117430551e-05,0.0,0.0 +96945,35.0,Eastern Counties in South Carolina and Georgia,G1300510010809,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5794.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013912156873688902,0.0,0.0,0.0013912156873688902,0.0007765367153383574,0.00018212097637395494,0.0003915352870818813,0.0,4.1022708574696484e-05,0.0007765367153383574,0.00018212097637395494,0.0003915352870818813,0.0,4.1022708574696484e-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.00016578919238019555,4.9425540260215e-05,0.00016578919238019555,9.253877458282243e-05,2.170309741520662e-05,4.66587026174333e-05,0.0,4.88861776473319e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.253877458282243e-05,2.170309741520662e-05,4.66587026174333e-05,0.0,4.88861776473319e-06 +96946,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12489.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0027412432520156054,0.0,0.0,0.0027412432520156054,0.0012769145114611676,0.0005485133130390869,0.0008420407177398889,0.0,7.369200270172292e-05,0.0012769145114611676,0.0005485133130390869,0.0008420407177398889,0.0,7.369200270172292e-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.00032667273121656247,9.474574166948826e-05,0.00032667273121656247,0.0001521693307160424,6.536608597116348e-05,0.00010034561539089494,0.0,8.781842973508242e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001521693307160424,6.536608597116348e-05,0.00010034561539089494,0.0,8.781842973508242e-06 +96947,85.0,Rural Climate Zone 3A,G1301050000400,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,31609.0,,544.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0015703958413354968,9.244610444415531e-05,0.0,0.001662824215418232,0.0009091774728974677,0.00022382808256674662,0.00034439454022310565,0.0,0.00018540638936949218,0.0008167313684533124,0.00022382808256674662,0.00034439454022310565,0.0,0.00018540638936949218,9.244610444415531e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.176527705557853e-06,0.0,0.0,0.00018714019346925066,5.534995626591922e-05,0.00019331672117480853,9.732785981831033e-05,2.6673039734854757e-05,4.1040646689624424e-05,0.0,2.2094421459709775e-05,6.176527705557853e-06,0.0,0.0,0.0,0.0,0.0,0.00010569921125567083,2.602181916009963e-05,4.003864190159816e-05,0.0,2.1554987559977965e-05 +96948,50.0,the Greater Atlanta and Macon Area,G1301350050715,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,52611.0,,5032.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004347366869707385,0.0014812952271712203,0.0,0.005828662096878605,0.002307029774217211,0.0014267597967802027,0.002094872525881192,0.0,0.0,0.0008257345470459911,0.0014267597967802027,0.002094872525881192,0.0,0.0,0.0014812952271712203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.897245400382302e-05,0.0,0.0,0.0005180668585666157,0.00024490223074677983,0.0006170393125704386,9.840110476501781e-05,0.00017002406008049056,0.0002496416937211074,0.0,0.0,9.897245400382302e-05,0.0,0.0,0.0,0.0,0.0,0.00024422895722928545,0.00015104098840793215,0.00022176936693322108,0.0,0.0 +96949,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,22913.0,,11473.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0053791018720676705,0.00889800142964386,0.0,0.014277103301711532,0.003175241229534947,0.0006382341607598895,0.009523459586678924,0.00041441151322620475,0.0005257568115115672,0.002319895866236061,0.0006382341607598895,0.002006560331845516,0.00041441151322620475,0.0,0.0008553453632988863,0.0075168992548334075,0.0005257568115115672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005945120256401335,0.0,0.0,0.0006410145505551203,0.000774793818565521,0.001235526576195254,0.0002764563753202111,7.605682016041919e-05,0.0002391169380819463,4.938441699254382e-05,0.0,5.714913720541737e-05,0.0005022349162178867,3.512797221682961e-05,0.0,0.0,0.0,0.0002747822749486602,5.523216094962246e-05,0.0008241508916765153,3.586276762534083e-05,4.549848099511531e-05 +96950,85.0,Rural Climate Zone 3A,G1300310110300,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,4196.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010076202793659823,0.0,0.0,0.0010076202793659823,0.0004629114917189037,0.00026176788838490805,0.00023993322091773084,0.0,4.2924971270700556e-05,0.0004629114917189037,0.00026176788838490805,0.00023993322091773084,0.0,4.2924971270700556e-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.00012007399374389011,3.524586946274391e-05,0.00012007399374389011,5.516327201711837e-05,3.119381024373408e-05,2.859186209070223e-05,0.0,5.115193528119427e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.516327201711837e-05,3.119381024373408e-05,2.859186209070223e-05,0.0,5.115193528119427e-06 +96951,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,9584.0,,797.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007780804967968886,0.00023229728849992592,0.0,0.0010103474116973767,0.0007216159754421077,0.0002479396922103681,4.082211764433845e-05,0.0,0.0,0.0004893186869421818,0.0002479396922103681,4.082211764433845e-05,0.0,0.0,0.00023229728849992592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5520057592441708e-05,0.0,0.0,9.272172772819362e-05,4.421127694869637e-05,0.00010824178532063531,5.831077150724905e-05,2.954629595367312e-05,4.8646602672714285e-06,0.0,0.0,1.5520057592441708e-05,0.0,0.0,0.0,0.0,0.0,7.730905289946048e-05,2.6562580975599624e-05,4.373405467500416e-06,0.0,0.0 +96953,50.0,the Greater Atlanta and Macon Area,G1302190030100,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,9947.0,,134.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0010155574386425178,4.998546666598679e-05,0.0,0.0010655429053085046,0.0005611159246435308,0.00012624236464944575,0.0003407923870754681,0.0,3.739222894005989e-05,0.0005611159246435308,0.00012624236464944575,0.00029080692040948133,0.0,3.739222894005989e-05,0.0,4.998546666598679e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.340858160917826e-06,0.0,0.0,0.0001210221120076094,3.9563244652483345e-05,0.00012436297016852723,6.68671526568046e-05,1.5044070392643426e-05,3.465492581239683e-05,0.0,4.4559631457645495e-06,0.0,3.340858160917826e-06,0.0,0.0,0.0,0.0,6.548966038803021e-05,1.4734156035094433e-05,3.977498536791145e-05,0.0,4.364168377491137e-06 +96954,46.0,the Tallahassee-Valdosta Area,G1301850011200,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,58963.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005032880605579173,0.0,0.0,0.005032880605579173,0.0012749690040317644,0.0015823254111032579,0.0021755861904441502,0.0,0.0,0.0012749690040317644,0.0015823254111032579,0.0021755861904441502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005997569831207716,0.00017564952065401312,0.0005997569831207716,0.00015193516861554662,0.00018856213553458906,0.0002592596789706359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015193516861554662,0.00018856213553458906,0.0002592596789706359,0.0,0.0 +96955,85.0,Rural Climate Zone 3A,G1300310110800,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,89900.0,,6658.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.004627659791356623,0.0011322254195617317,0.0,0.005759885210918353,0.0019934599951793768,0.0007404553536242451,0.00247124004436554,0.0,0.0005547298177491919,0.001962343210887184,0.0007404553536242451,0.0013701314090960005,0.0,0.0005547298177491919,3.1116784292192665e-05,0.0011011086352695392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.564889742829746e-05,0.0,0.0,0.0005514684027367585,0.0002303168224082528,0.000627117300165056,0.0002338482785944024,8.82384940923537e-05,0.00016327565417079465,0.0,6.610597587920765e-05,2.0790474957978965e-06,7.356984993249958e-05,0.0,0.0,0.0,0.0,0.00021704134794113642,8.061833617402286e-05,0.00026906046352184125,0.0,6.039715252805548e-05 +96956,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,37426.0,,2157.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.003270560653539888,0.0006349986439057681,0.0,0.003905559297445656,0.001282518647180999,0.001427619105756538,0.0011954215445081188,0.0,0.0,0.000647520003275231,0.001427619105756538,0.0011954215445081188,0.0,0.0,0.0006349986439057681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.242589699126153e-05,0.0,0.0,0.00038974683341267715,0.00015856461084844193,0.0004321727304039386,7.716379470741091e-05,0.00017012680232235373,0.0001424562363829125,0.0,0.0,4.242589699126153e-05,0.0,0.0,0.0,0.0,0.0,0.0001419181078389171,0.0001579743130043251,0.00013228030956069636,0.0,0.0 +96957,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,108789.0,,5200.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00969297456346015,0.0015305827348853307,0.0,0.01122355729834548,0.003168517712600026,0.003219462459054213,0.004835546437084943,0.0,0.0,0.0016379349777146954,0.003219462459054213,0.004835546437084943,0.0,0.0,0.0015305827348853307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010226550023841124,0.0,0.0,0.001155092427345866,0.0004180032638593947,0.0012573579275842776,0.00019518944126556954,0.00038365691380193935,0.0005762424150592444,0.0,0.0,0.00010226550023841124,0.0,0.0,0.0,0.0,0.0,0.00035496418459200443,0.00036067144648056684,0.0005417188584021348,0.0,0.0 +96958,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,58941.0,,4635.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.005251574740056604,0.0013643371375706749,0.0,0.006615911877627278,0.0027321115110466926,0.0014929265879580498,0.0023908737786225353,0.0,0.0,0.0013677743734760177,0.0014929265879580498,0.0023908737786225353,0.0,0.0,0.0013643371375706749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.115803322199227e-05,0.0,0.0,0.0006258184715681058,0.0002610217864670726,0.0007169765047900982,0.00016299462736953427,0.00017790873817578453,0.0002849151060227869,0.0,0.0,9.115803322199225e-05,0.0,0.0,0.0,0.0,0.0,0.00029608310964830665,0.00016179074128270496,0.0002591026538590866,0.0,0.0 +96959,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,42065.0,,3089.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0037699112376098094,0.000909271655388338,0.0,0.004679182892998147,0.0028410596134035375,0.0007233847100431523,0.0011147078799451605,0.0,0.0,0.0019317879580151994,0.0007233847100431523,0.0011147078799451605,0.0,0.0,0.000909271655388338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0752445890723145e-05,0.0,0.0,0.0004492537432652502,0.00020597066599307556,0.0005100061891559732,0.0002302077997685969,8.62044935078575e-05,0.0001328377927619702,0.0,0.0,6.0752445890723145e-05,0.0,0.0,0.0,0.0,0.0,0.00030966047272165356,7.884510772486979e-05,0.00012149726370466763,0.0,0.0 +96960,35.0,Eastern Counties in South Carolina and Georgia,G1302450010504,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,46788.0,,1157.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003937147453519143,0.00033705583296073197,0.0,0.004274172912880437,0.0028416628425977472,0.0010860080478968164,0.00034653239598531055,0.0,0.0,0.0025046070096370154,0.0010860080478968164,0.00034653239598531055,0.0,0.0,0.00033705583296073197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.251929509289394e-05,0.0,0.0,0.00046918129473108247,0.00014822172962208468,0.0004917005898239764,0.00029846856726782893,0.00012941721589450914,4.129551156874437e-05,0.0,0.0,2.2519295092893943e-05,0.0,0.0,0.0,0.0,0.0,0.00032690471917397497,0.00012493429924073532,3.986506558628302e-05,0.0,0.0 +96961,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,24078.0,,4447.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.00225654537185749,0.0013090037774159168,0.0,0.0035655491492734073,0.0017664016696768792,0.0007113850739807505,0.0010877930952220751,0.0,0.0,0.0004573978922609623,0.0007113850739807505,0.0010877930952220751,0.0,0.0,0.0013090037774159168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.745986887105791e-05,0.0,0.0,0.00026890898936657217,0.0001668511268666005,0.0003563688582376301,5.450739279620542e-05,8.47746487530892e-05,0.0001296306050497518,0.0,0.0,8.745986887105791e-05,0.0,0.0,0.0,0.0,0.0,0.000176547992990104,7.110138606095889e-05,0.00010872254654575873,0.0,0.0 +96962,50.0,the Greater Atlanta and Macon Area,G1301170130613,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,19038.0,,9096.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.003811629579595665,0.006256993711343938,0.0,0.010068623290939605,0.004537794286128726,0.0007009909967065825,0.002495137791633108,0.0003687123709912564,0.0019660595654509452,0.0021072761883806843,0.0007009909967065825,0.00039216480151336124,0.0003687123709912564,0.00024255694197479659,0.0024305180977480423,0.002102972990119747,0.001723502623476149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041805466146927617,0.0,0.0,0.00045422801878291114,0.000556351275746562,0.0008722826802521872,0.00025112195927971055,8.353638384044282e-05,4.6733880380554666e-05,4.393907809737226e-05,2.8905263980803927e-05,0.00016239259098292452,0.0001405079982531592,0.00011515407223319245,0.0,0.0,0.0,0.00039312617504513295,6.072948483335383e-05,0.0002161631652703478,3.1942938564382247e-05,0.00017032712990963045 +96963,50.0,the Greater Atlanta and Macon Area,G1300150960901,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,5633.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,3204.5843851935597,0.0,0.0,0.0003515744134919773,0.0,0.0,0.00035157441349197737,0.00022637443660956436,0.00010384733647767349,2.1352640404739534e-05,0.0,0.0,0.00022637443660956436,0.00010384733647767349,2.1352640404739534e-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,4.1894753527462015e-05,1.5654785685590924e-05,4.1894753527462015e-05,2.6975516029388723e-05,1.2374787240638676e-05,2.5444502574346264e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.697551602938872e-05,1.2374787240638674e-05,2.544450257434626e-06,0.0,0.0 +96964,50.0,the Greater Atlanta and Macon Area,G1301210009402,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,183223.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01551592804238339,0.0,0.0,0.015515928042383392,0.012245724085318403,0.002332570942421589,0.0009376330146433988,0.0,0.0,0.012245724085318403,0.002332570942421589,0.0009376330146433988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001849002262660392,0.0006187909534615926,0.001849002262660392,0.0014592985659522629,0.0002779678365723392,0.00011173586013578976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014592985659522629,0.00027796783657233913,0.00011173586013578974,0.0,0.0 +96965,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030402,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,227217.0,,39607.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011696045675074873,0.006735569269502438,0.0,0.01843161494457731,0.010332846837294112,0.002356134538026557,0.0023604607462130497,0.0,0.003382172823043592,0.006472539357835956,0.002356134538026557,0.0023604607462130497,0.0,0.0005069110329993096,0.0038603074794581562,0.0,0.0028752617900442826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045003085829447794,0.0,0.0,0.0013937951473345005,0.0007975173142597663,0.0018438260056289786,0.0007713199998105829,0.0002807759970164111,0.0002812915428807319,0.0,6.0407607626774565e-05,0.00025792288947679094,0.0,0.00019210796881768705,0.0,0.0,0.0,0.001033657211702398,0.00023569839902998324,0.00023613117582051442,0.0,0.00033833921907608323 +96966,81.0,the Columbus-Albany Area,G1302150010205,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,NaturalGas,90385.0,,14373.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.008980850403210474,0.004320197064993333,0.0,0.01330107880622601,0.006371866040664303,0.00104471564621337,0.003978205228681532,0.0,0.0019063232286890093,0.005167107115055316,0.00104471564621337,0.0027690589799639915,0.0,0.0,0.0012047589256089868,0.001209146248717541,0.0019063232286890093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028865133331979685,0.0,0.0,0.0010702316476451886,0.0006998032053135175,0.0013588829809649853,0.0006157547796729766,0.0001244968680213122,0.000329983734446146,0.0,0.0,8.049523319753856e-05,8.078836951653907e-05,0.00012736982443656923,0.0,0.0,0.0,0.0006509712817876481,0.00010673166682710523,0.0004064268364090012,0.0,0.0001947563975390598 +96967,50.0,the Greater Atlanta and Macon Area,G1301210007500,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,27488.0,,14253.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.01115708998701239,0.011054235070949221,0.0,0.02221132505796161,0.008137667486450496,0.0010369586820707997,0.010875694461933913,0.000422416730749989,0.0017385876967564147,0.0059469871515579415,0.0010369586820707997,0.0037506465618505915,0.000422416730749989,0.0,0.0021906803348925538,0.007125047900083322,0.0017385876967564147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007385816819274796,0.0,0.0,0.0013295666160290166,0.0010897091769762105,0.002068148297956496,0.0007086897741139598,0.00012357215434200932,0.0004469565507641736,5.0338500801829136e-05,0.0,0.00014636891254126913,0.00047605554143562417,0.00011616263061235151,0.0,0.0,0.0,0.0007577172058632252,9.655364224239351e-05,0.001012661285711142,3.9332207351392996e-05,0.00016188395678834238 +96968,50.0,the Greater Atlanta and Macon Area,G1300890021210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,13527.0,,1409.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003031296959619356,0.001117372566218043,0.0,0.0041487522329111395,0.002868694852647878,0.0005304831709639179,0.000613107537629486,0.0,0.0001363839645961179,0.0018877062510259527,0.0005304831709639179,0.000613107537629486,0.0,0.0,0.0009809886016219252,0.0,0.0001363839645961179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.465761296735588e-05,0.0,0.0,0.00036123648602131935,0.00018458452263708566,0.00043589409898867526,0.00022495597819842825,6.321712426238692e-05,7.306338356050424e-05,0.0,0.0,6.554507382722487e-05,0.0,9.112539140131003e-06,0.0,0.0,0.0,0.0003014031901324149,5.5735910667703906e-05,6.441694820388042e-05,0.0,1.4329360257412485e-05 +96969,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,14333.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0032296285224462156,0.0,0.0,0.0032296285224462156,0.0013280274830320593,0.0005534757374634453,0.0012788167741571714,0.0,6.930852779353962e-05,0.0013280274830320593,0.0005534757374634453,0.0012788167741571714,0.0,6.930852779353962e-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.00038487012080338915,0.00010679188584378762,0.00038487012080338915,0.00015825909830571896,6.595689642286052e-05,0.0001523947298999207,0.0,8.259396174888988e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015825909830571896,6.595689642286052e-05,0.0001523947298999207,0.0,8.259396174888988e-06 +96970,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,167185.0,,3570.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.008090346185608674,0.0006071407661068681,0.0,0.00869748695171554,0.004896115193617641,0.0016203599998172056,0.0012208240355777358,0.0,0.0009601877227029596,0.004504380588402995,0.0016203599998172056,0.0010054001443240942,0.0,0.0009601877227029596,0.00039173460521464655,0.00021542389125364151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.056614569610044e-05,0.0,0.0,0.0009641107536927408,0.00031442347332908164,0.001004676899388841,0.0005367782372192074,0.0001930951364548813,0.00011981157155318523,0.0,0.0001144236955729256,2.61737704935211e-05,1.4393559857711658e-05,0.0,0.0,0.0,0.0,0.0005655672562755744,0.0001871734064733434,0.00014102162079377234,0.0,0.00011091461584615119 +96971,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,215643.0,,35771.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011100270070638258,0.006083127429967336,0.0,0.017183397500605598,0.008590040961510023,0.0021757281105775194,0.0023069150547244902,0.0,0.004110731104154982,0.0064644011219441525,0.0021757281105775194,0.0019144003136073613,0.0,0.0005457405245092253,0.0021256398395658707,0.00039251474111712893,0.0035649905796457564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000406439121846029,0.0,0.0,0.0013227977201594157,0.0007213617846547111,0.0017292368420054446,0.0007703501817422008,0.00025927731181708174,0.0002281353835714989,0.0,6.503484302863434e-05,0.00014202286565591897,2.6225547389547935e-05,0.00023819189343997804,0.0,0.0,0.0,0.000864451590813487,0.00021895257948056812,0.00023215446793138566,0.0,0.0004136799880601023 +96972,50.0,the Greater Atlanta and Macon Area,G1301210011410,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,63871.0,,5028.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005335031620442795,0.0014647668328855814,0.0,0.006799798453328376,0.004319338455244373,0.0021081707897754784,0.0003722892083085241,0.0,0.0,0.0028545716223587914,0.0021081707897754784,0.0003722892083085241,0.0,0.0,0.0014647668328855814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.786635875653063e-05,0.0,0.0,0.0006357663195903574,0.0002409743223629815,0.000733632678346888,0.0003401742713951332,0.00025122699909550133,4.4365049099722795e-05,0.0,0.0,9.786635875653063e-05,0.0,0.0,0.0,0.0,0.0,0.0004660149652018828,0.00022745129778936537,4.0166415355639864e-05,0.0,0.0 +96973,50.0,the Greater Atlanta and Macon Area,G1300890022005,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,105142.0,,30887.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,240343.828889517,0.0,0.0,0.008071905544980298,0.008998057339036225,0.0,0.017069962884016524,0.013684430369886392,0.0026204519178926007,0.0007650502226380929,0.0,0.0,0.004686373030850167,0.0026204519178926007,0.0007650502226380929,0.0,0.0,0.008998057339036225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006011968571834703,0.0,0.0,0.0009619148244701244,0.0008145521194658908,0.0015631116816535945,0.0005584668534897686,0.00031227465839210513,9.116969301968547e-05,0.0,0.0,0.0006011968571834703,0.0,0.0,0.0,0.0,0.0,0.0012530954585714689,0.00023995711249640963,7.005632924820416e-05,0.0,0.0 +96974,50.0,the Greater Atlanta and Macon Area,G1301390001606,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,75950.0,,7527.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.0036802024681532597,0.0012799547909136115,0.0,0.004960157259066872,0.002711255946908794,0.0017261925271335008,0.00041285146566592953,0.0,0.00010987504972006722,0.0014313011559951828,0.0017261925271335008,0.00041285146566592953,0.0,0.00010987504972006722,0.0012799547909136115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.551853184402266e-05,0.0,0.0,0.00043856357282523597,0.00020642782839166434,0.0005240821046692587,0.0001705657648442175,0.0002057074763236544,4.9198818650714817e-05,0.0,1.30936259041649e-05,8.551853184402266e-05,0.0,0.0,0.0,0.0,0.0,0.00028646686964524083,0.00018238667958174004,4.362121072804307e-05,0.0,1.1609218075227952e-05 +96975,35.0,Eastern Counties in South Carolina and Georgia,G1300730030603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,77165.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.006133310560865788,0.0,0.0,0.006133310560865788,0.0032818977928485227,0.0024981678065562124,0.00035321458786161596,0.0,0.0,0.0032818977928485227,0.0024981678065562124,0.00035321458786161596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007308936789277351,0.00018226053395342169,0.0007308936789277351,0.00039109683553041277,0.00029770138664802164,4.209183719154074e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039109683553041277,0.00029770138664802164,4.209183719154074e-05,0.0,0.0 +96976,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,52298.0,,4196.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004659664303392809,0.0012352259638762392,0.0,0.005894890267269047,0.0020289205619474287,0.0015558402808683403,0.002310129424453279,0.0,0.0,0.0007936945980711894,0.0015558402808683403,0.002310129424453279,0.0,0.0,0.0012352259638762392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.253043016370796e-05,0.0,0.0,0.0005552847447851602,0.00023244631117549027,0.0006378151749488681,9.458331622868573e-05,0.00018540699866713525,0.00027529442988933917,0.0,0.0,8.253043016370796e-05,0.0,0.0,0.0,0.0,0.0,0.00021952509113886656,0.00016833876390276927,0.00024995131990723237,0.0,0.0 +96977,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010702,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,57328.0,,3559.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002950970433307908,0.0006051904263506622,0.0,0.003556160859658571,0.0015513711635317799,0.0005189676787649457,0.0008892308162999082,0.0,0.0005966089314233568,0.0012830221434392808,0.0005189676787649457,0.0005523894100417452,0.0,0.0005966089314233568,0.00026834902009249915,0.0003368414062581631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0435473536326675e-05,0.0,0.0,0.00035166212923137737,0.00013246885064933562,0.000392097602767704,0.0001528955674107174,6.184449591796498e-05,6.582730680984622e-05,0.0,7.109687198987371e-05,1.792959575695967e-05,2.2505877779367013e-05,0.0,0.0,0.0,0.0,0.00017105213690534707,5.7220691298309806e-05,9.80454161490991e-05,0.0,6.578131334119666e-05 +96978,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Electricity,7255.0,,1279.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,4088.1751280535877,0.0,0.0,0.0008115469874825018,0.0004754819081072279,0.0,0.00128702889558973,0.0010595756480476037,9.233749384887329e-05,0.00011558654811212295,0.0,1.9529205581129728e-05,0.0006008718074336878,9.233749384887329e-05,9.880848061881111e-05,0.0,1.9529205581129728e-05,0.00045870384061391596,1.6778067493311844e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.176964032191487e-05,0.0,0.0,9.671077854231823e-05,6.47515231223681e-05,0.0001284804188642331,7.160494857026972e-05,1.1003713964206665e-05,1.1774851283561475e-05,0.0,2.327264724280386e-06,3.0648602569540226e-05,1.121037752374634e-06,0.0,0.0,0.0,0.0,0.0001057744107735196,9.217788293044332e-06,1.1538674980340428e-05,0.0,1.9495448173287216e-06 +96980,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,13158.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028386721848805093,0.0,0.0,0.0028386721848805093,0.0011985909126300434,0.001156658426244214,0.0003946781558839751,0.0,8.866198304853756e-05,0.0011985909126300434,0.001156658426244214,0.0003946781558839751,0.0,8.866198304853756e-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.0003382782166641822,0.00010058478068270232,0.0003382782166641822,0.00014283339886653836,0.00013783639822995708,4.70329132894784e-05,0.0,1.056565026117369e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00014283339886653836,0.00013783639822995708,4.70329132894784e-05,0.0,1.056565026117369e-05 +96981,50.0,the Greater Atlanta and Macon Area,G1300570090100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,27121.0,,4389.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0026863839976631154,0.001291817597889203,0.0,0.003978201595552318,0.0020374829621044874,0.0008663675857841496,0.0010743510476636812,0.0,0.0,0.0007456653642152844,0.0008663675857841496,0.0010743510476636812,0.0,0.0,0.001291817597889203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.631253147347788e-05,0.0,0.0,0.0003201310919302537,0.00018223805648500763,0.0004064436234037315,8.885947335468929e-05,0.00010324331945519528,0.00012802829912036913,0.0,0.0,8.631253147347788e-05,0.0,0.0,0.0,0.0,0.0,0.00020816490513375866,8.851476535511385e-05,0.00010976395291485901,0.0,0.0 +96982,50.0,the Greater Atlanta and Macon Area,G1300670030412,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,36118.0,,2907.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0033998866544784076,0.0008556262235799536,0.0,0.004255543567664659,0.0017420034326702054,0.0009278388671984483,0.0015856705781897074,0.0,0.0,0.0008863772090902519,0.0009278388671984483,0.0015856705781897074,0.0,0.0,0.0008556262235799536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7168247657372554e-05,0.0,0.0,0.00040515928739820597,0.00018417100082260182,0.00046232753505557857,0.00010562821496651098,0.000110569137285594,0.00018896193514610096,0.0,0.0,5.7168247657372554e-05,0.0,0.0,0.0,0.0,0.0,0.00018925341505239104,0.00010080156614070925,0.000172269219705559,0.0,0.0 +96983,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,27124.0,,1685.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002416714427125201,0.00049603610658977,0.0,0.002912750533714971,0.0009997446147539657,0.0008117400865742386,0.0011012658323867666,0.0,0.0,0.0005037085081641958,0.0008117400865742386,0.0011012658323867666,0.0,0.0,0.00049603610658977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3142628893971366e-05,0.0,0.0,0.0002879950461117099,0.00011314771943995052,0.0003211376750056813,6.00259399320799e-05,9.673344977782934e-05,0.0001312356564018007,0.0,0.0,3.3142628893971366e-05,0.0,0.0,0.0,0.0,0.0,0.00011022422190480533,8.949627545991224e-05,0.00012141717764096374,0.0,0.0 +96984,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,50897.0,,4519.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004318211743724569,0.0013303330537928202,0.0,0.005648544797517387,0.002113593185722791,0.0014400483963071078,0.002094872525881192,0.0,0.0,0.0007832601319299706,0.0014400483963071078,0.002094872525881192,0.0,0.0,0.0013303330537928202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.888586181428577e-05,0.0,0.0,0.0005145912539295745,0.0002324746151543182,0.0006034771157438603,9.33392888916649e-05,0.00017160721936617786,0.0002496410884627006,0.0,0.0,8.888586181428577e-05,0.0,0.0,0.0,0.0,0.0,0.0002258112780014543,0.0001538513517883293,0.0002238112071494013,0.0,0.0 +96985,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,52149.0,,,,9.325022323477118,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,349688.3371303919,0.0,0.0,0.012557532792289924,0.0,0.0,0.012557532792289923,0.005930223468855247,0.0023777990041524495,0.003987981595597616,0.0,0.0002616171078426663,0.005930223468855247,0.0023777990041524495,0.003987981595597616,0.0,0.0002616171078426663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014964580642327357,0.0004322659541729816,0.0014964580642327357,0.0007066938131445156,0.0002833579297577636,0.0004752404248076441,0.0,3.117642910021114e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0007066938131445157,0.0002833579297577636,0.00047524042480764423,0.0,3.117642910021115e-05 +96986,50.0,the Greater Atlanta and Macon Area,G1300130180206,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6738.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013389448167656479,0.0,0.0,0.001338944816765648,0.0008476647987541617,0.0002449783524158286,0.00020362481554617488,0.0,4.259414297574332e-05,0.0008476647987541617,0.0002449783524158286,0.00020362481554617488,0.0,4.259414297574332e-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.00015956212199155705,5.798180203224287e-05,0.00015956212199155705,0.00010101625722969102,2.9194082731422077e-05,2.426597963698891e-05,0.0,5.0759461872661605e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010101625722969101,2.9194082731422074e-05,2.4265979636988906e-05,0.0,5.07594618726616e-06 +96987,50.0,the Greater Atlanta and Macon Area,G1301210009601,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,208069.0,,34082.0,,9.525004485617233,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.05489994167953205,0.02951186715460845,0.0,0.0844118088341405,0.045356211869516806,0.007938287270199887,0.02074526434131652,0.0006557911831085178,0.009716344449622001,0.030387308661024112,0.007938287270199887,0.010953626685924625,0.0006557911831085178,0.004965018158898134,0.01496890320849269,0.009791637655391894,0.004751326290723868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001971812480187494,0.0,0.0,0.006542318254473764,0.003981867984099509,0.008514130734661257,0.0036211959079633276,0.0009459901072435548,0.0013053221848272549,7.814934765173638e-05,0.000591671465233328,0.0010001356405745215,0.0006542206641561343,0.000317456175456838,0.0,0.0,0.0,0.004574818651793588,0.0008006891045372689,0.0020924547781475543,6.614586211030045e-05,0.0009800314440557662 +96989,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,FuelOil,24408.0,,1489.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.002174726881467815,0.0004381555091123026,0.0,0.0026129130801864145,0.00044137791777356137,0.0009088113112938724,0.0012626931615126835,0.0,0.0,3.2224086612587925e-06,0.0009088113112938724,0.0012626931615126835,0.0,0.0,0.0004381555091123026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9275956903133954e-05,0.0,0.0,0.00025915874266309443,0.00010693635612218356,0.0002884346995662284,3.840093135901458e-07,0.00010830159812709511,0.00015047313522240915,0.0,0.0,2.9275956903133954e-05,0.0,0.0,0.0,0.0,0.0,4.872290168148341e-05,0.00010032201971170688,0.00013938639040348729,0.0,0.0 +96990,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,112762.0,,14285.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005301608559294248,0.002429378661052795,0.0,0.007730987220347044,0.0038912824208589885,0.0011857533806888712,0.0012214800589502777,0.0,0.001432453629487486,0.003029764159458623,0.0011857533806888712,0.0008633090279037911,0.0,0.00022278199124296344,0.0008615182614003657,0.0003581710310464866,0.0012096716382445224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016231634043384558,0.0,0.0,0.000631783154294502,0.00030841499614010564,0.0007940994947283476,0.00036105154426678614,0.0001413040971788966,0.00010287898374235769,0.0,2.6548529106461648e-05,5.7561422453112416e-05,2.3930814879097013e-05,8.082291846647556e-05,0.0,0.0,0.0,0.0003996986822222054,0.00012179636748063256,0.00012546608472981352,0.0,0.00014713653909606867 +96991,50.0,the Greater Atlanta and Macon Area,G1300670031111,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,205423.0,,32953.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011963543637819207,0.005603946682228988,0.0,0.017567490320048198,0.011879147117459757,0.0022061002196900703,0.001661104370360487,0.0,0.0018211386125378836,0.008433357757641015,0.0022061002196900703,0.0009914818106093529,0.0,0.00033260384987877055,0.0034457893598187415,0.0006696225597511341,0.0014885347626591129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037442279026028236,0.0,0.0,0.0014256734505536108,0.0008036432073019449,0.001800096240813893,0.0010049877041515766,0.0002628968980837809,0.00011815306040462148,0.0,3.963578791363187e-05,0.00023022739863744586,4.474024494885572e-05,9.945514667398082e-05,0.0,0.0,0.0,0.0012172261194196483,0.00022605350223479752,0.0001702091578370221,0.0,0.0001866074613224252 +96992,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,60336.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0053758983351685965,0.0,0.0,0.0053758983351685965,0.0033628442996770803,0.0008579586336585791,0.0011550647122266396,0.0,0.0,0.0033628442996770803,0.0008579586336585791,0.0011550647122266396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006406363264191876,0.0002120556354924053,0.0006406363264191876,0.0004007442262014551,0.00010224141771636017,0.00013764702527509825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004007442262014551,0.00010224141771636017,0.00013764702527509825,0.0,0.0 +96993,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,106946.0,,13530.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.0051827264859727945,0.0023009753836487723,0.0,0.0074837195999829876,0.0040980361653782235,0.0011211616740356188,0.00137667391246,0.0,0.000887830117747724,0.0025156191389999315,0.0011211616740356188,0.00137667391246,0.0,0.0001692717604772441,0.0015824170263782924,0.0,0.0007185583572704798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015373827037900762,0.0,0.0,0.0006176158011188944,0.00032942661985531406,0.0007713540714979019,0.00029978161765791895,0.00013360673525169398,0.00016405564978678845,0.0,2.0171798422493004e-05,0.00010572823089828667,0.0,4.801003948072095e-05,0.0,0.0,0.0,0.00042238847127801634,0.00011555919626875707,0.0001418950848323314,0.0,9.150949163364237e-05 +96994,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,56552.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004986828676488407,0.0,0.0,0.004986828676488407,0.003622021359352467,0.0009590767758464515,0.00040573054128948896,0.0,0.0,0.003622021359352467,0.0009590767758464515,0.00040573054128948896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005942692218712141,0.00013646345538794493,0.0005942692218712141,0.0004316281858591962,0.00011429103469790086,4.835000131411706e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004316281858591962,0.00011429103469790086,4.835000131411706e-05,0.0,0.0 +96995,50.0,the Greater Atlanta and Macon Area,G1301350050534,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,48527.0,,6891.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004323674493645559,0.002028521597065558,0.0,0.006352196090711119,0.0028498061511983827,0.001488231078194501,0.002014158861318234,0.0,0.0,0.0008212845541328242,0.001488231078194501,0.002014158861318234,0.0,0.0,0.002028521597065558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001355330941002917,0.0,0.0,0.0005152454136034298,0.0002857685160756067,0.0006507785077037216,9.787117425287035e-05,0.0001773501309011039,0.00024002410844945564,0.0,0.0,0.0001355330941002917,0.0,0.0,0.0,0.0,0.0,0.00029196085382719207,0.00015246834108316936,0.00020634931279336002,0.0,0.0 +96996,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,65728.0,,3267.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005856252052940241,0.0009617201925511121,0.0,0.006817972245491353,0.0020503112175369277,0.0024575009138948483,0.002310129424453279,0.0,0.0,0.0010885910249858156,0.0024575009138948483,0.002310129424453279,0.0,0.0,0.0009617201925511121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.425630544597163e-05,0.0,0.0,0.0006978785559842134,0.000263614017587693,0.000762134861430185,0.0001297253474930356,0.00029285576741147184,0.00027529378385697496,0.0,0.0,6.425630544597163e-05,0.0,0.0,0.0,0.0,0.0,0.000229190380864281,0.0002747073544798252,0.0002582336955032015,0.0,0.0 +96997,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5252.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.00126103475330322,0.0,0.0,0.00126103475330322,0.0004431445010952092,0.0002170233614919427,0.0005610847882474615,0.0,3.9782102468606875e-05,0.0004431445010952092,0.0002170233614919427,0.0005610847882474615,0.0,3.9782102468606875e-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.00015027370175900928,4.3630189446380255e-05,0.00015027370175900928,5.2808191383535904e-05,2.5862018325942185e-05,6.686277908658222e-05,0.0,4.740712962949005e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.2808191383535904e-05,2.5862018325942185e-05,6.686277908658222e-05,0.0,4.740712962949005e-06 +96998,50.0,the Greater Atlanta and Macon Area,G1300450910104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Propane,66585.0,,,2063.0,3.20458438519356,Mercantile,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,120171.9144447585,0.0,0.0,0.00587158125451068,0.0,0.0001944214100010494,0.00606600266451173,0.003358469637031095,0.002205184066379658,0.0005023793347004151,0.0,0.0,0.003164048227030046,0.002205184066379658,0.0005023793347004151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001944214100010494,0.0,0.0,0.0,0.0,1.5678800240465017e-05,0.0006997059584347064,0.0002141023658576207,0.0007153847586751713,0.00037705403387322994,0.0002627878869096412,5.986765721998658e-05,0.0,0.0,0.0,0.0,0.0,1.5678800240465017e-05,0.0,0.0,0.00039607598672210145,0.0002600650145425425,5.9247339474582685e-05,0.0,0.0 +96999,50.0,the Greater Atlanta and Macon Area,G1300890021913,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,115318.0,,12293.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009566318558269529,0.0036185500993495398,0.0,0.013184868657619067,0.005785880785699607,0.002886357472298947,0.004512661089226813,0.0,0.0,0.0021673306863500682,0.002886357472298947,0.004512661089226813,0.0,0.0,0.0036185500993495398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002417708173809937,0.0,0.0,0.0011400003432317312,0.0005482267669307194,0.0013817711606127251,0.00025827675623449884,0.0003439618374683821,0.0005377654067520026,0.0,0.0,0.0002417708173809937,0.0,0.0,0.0,0.0,0.0,0.0006063589570763848,0.0003024895899995969,0.0004729258298003267,0.0,0.0 +97000,35.0,Eastern Counties in South Carolina and Georgia,G1300250960100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,95952.0,,1262.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.00493916451114553,0.0002146437553511592,0.0,0.005153808266496689,0.002220550464247413,0.0008056676229271993,0.0018596489575422386,0.0,0.00026795895214125803,0.002220550464247413,0.0008056676229271993,0.0016450052021910791,0.0,0.00026795895214125803,0.0,0.0002146437553511592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4341252621463826e-05,0.0,0.0,0.0005885912121609316,0.00018709036603047774,0.0006029324647823953,0.0002646189424277296,9.600993886870036e-05,0.0001960322649273581,0.0,3.193217883192493e-05,0.0,1.4341252621463826e-05,0.0,0.0,0.0,0.0,0.00025977721625497437,9.42532474179658e-05,0.0002175561587903465,0.0,3.134791655430716e-05 +97001,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,8000.0,,791.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006305862979271656,0.00023032300453647203,0.0,0.0008609093024636376,0.0006249671820311814,0.0001870709989371135,4.887112149534268e-05,0.0,0.0,0.0003946441774947094,0.0001870709989371135,4.887112149534268e-05,0.0,0.0,0.00023032300453647203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5388894436888198e-05,0.0,0.0,7.514548961462596e-05,4.008789157579514e-05,9.053438405151415e-05,4.702882070048817e-05,2.2292812029116196e-05,5.823856885021586e-06,0.0,0.0,1.5388894436888198e-05,0.0,0.0,0.0,0.0,0.0,6.572239226093548e-05,1.967263870213364e-05,5.1393530884450425e-06,0.0,0.0 +97002,85.0,Rural Climate Zone 3A,G1302690950300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,34564.0,,769.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008299324021444543,0.0006100473759011316,0.0,0.008909371397345673,0.005617050913005064,0.001230515843093416,0.0019004431403818061,0.0,0.00016144420793912806,0.0051683650379693215,0.001230515843093416,0.0019004431403818061,0.0,0.0,0.00044868587503574275,0.0,0.00016144420793912806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.076222796727945e-05,0.0,0.0,0.0009890114390031827,0.0003785136215914191,0.0010297736669704623,0.0006159022265292976,0.0001466377552616881,0.00022647145721219715,0.0,0.0,2.9980353405977626e-05,0.0,1.078740089372688e-05,0.0,0.0,0.0,0.0006492367259454797,0.00014222696029767866,0.00021965930190348572,0.0,1.8660238372164852e-05 +97003,85.0,Rural Climate Zone 3A,G1300170960500,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,183622.0,,8435.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.009191703045938094,0.001434510351412212,0.0,0.010626213397350304,0.005730966991442247,0.0021255334573973502,0.0016044204049005782,0.0,0.00116529254361013,0.005225119780128141,0.0021255334573973502,0.0016044204049005782,0.0,0.0002366294035120247,0.0005058472113141064,0.0,0.0009286631400981055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.584515230636073e-05,0.0,0.0,0.0010953585714997781,0.0004204983821247451,0.0011912037238061388,0.0006226680420018154,0.0002532959648428384,0.0001911958680577276,0.0,2.8198696597396756e-05,3.379759718319146e-05,0.0,6.204755512316926e-05,0.0,0.0,0.0,0.0006424442052818505,0.00023827334110922447,0.0001798563128183259,0.0,0.00013062986459673806 +97004,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001100,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,8623.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0008167731820070619,0.0,0.0,0.0008167731820070617,0.00028130093132474373,0.00033405636455049483,0.0002014158861318233,0.0,0.0,0.00028130093132474373,0.00033405636455049483,0.0002014158861318233,0.0,0.0,0.0,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.733212808516033e-05,3.6180527951721955e-05,9.733212808516033e-05,3.352169106592694e-05,3.980837958243669e-05,2.4002057436796687e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.352169106592695e-05,3.9808379582436706e-05,2.4002057436796694e-05,0.0,0.0 +97005,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,42648.0,,4800.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0040829759114526755,0.0014129494739462357,0.0,0.005495925385398913,0.0021625737973739244,0.0012115642774207106,0.0021217873106042775,0.0,0.0,0.0007496243234276882,0.0012115642774207106,0.0021217873106042775,0.0,0.0,0.0014129494739462357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.440484386067913e-05,0.0,0.0,0.00048656217058613035,0.00022976615400116,0.0005809670144468095,8.933161640950401e-05,0.0001443803141166953,0.00025285024005993113,0.0,0.0,9.440484386067913e-05,0.0,0.0,0.0,0.0,0.0,0.00022860282017639433,0.0001280728597468807,0.00022429133452353439,0.0,0.0 +97006,81.0,the Columbus-Albany Area,G1302150010107,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,62750.0,,1813.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005590909716890302,0.0005335694950918605,0.0,0.006124479211982164,0.0018389212093583506,0.0018139705594383184,0.002471587443185494,0.0,0.0,0.0013053517142664903,0.0018139705594383184,0.002471587443185494,0.0,0.0,0.0005335694950918605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5649973165778367e-05,0.0,0.0,0.0006662595230118019,0.00021803980663038602,0.0007019094961775804,0.00015555661860938865,0.0002161678905380433,0.00029453501386437,0.0,0.0,3.5649973165778367e-05,0.0,0.0,0.0,0.0,0.0,0.00021075363551658434,0.00020789411105605395,0.00028326174960494196,0.0,0.0 +97007,50.0,the Greater Atlanta and Macon Area,G1302190030200,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,56924.0,,15068.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0027659895726124977,0.002562515944955971,0.0,0.00532850551756847,0.0016275939872765872,0.0006241619130701188,0.002832283393962075,0.0,0.0002444839536211081,0.0014838716776056392,0.0006241619130701188,0.0004134897586770514,0.0,0.0002444839536211081,0.000143722309670948,0.002418793635285023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017121227642578183,0.0,0.0,0.0003296178164687174,0.000264871710206828,0.0005008300928944991,0.00017683021915016652,7.438021059305434e-05,4.927480303498623e-05,0.0,2.913469658459865e-05,9.602681247845645e-06,0.00016160959517793618,0.0,0.0,0.0,0.0,0.00015297873768820526,5.866543027373323e-05,0.0002662083675478424,0.0,2.297922387422969e-05 +97008,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,101688.0,,11314.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0052344104895122485,0.0019241342820269702,0.0,0.007158544771539218,0.003178167284544465,0.0015676121745925487,0.0010857541422797737,0.0,0.0013270111701224319,0.0027212381403882843,0.0015676121745925487,0.0007245334890690377,0.0,0.00022102668546237822,0.0004569291441561807,0.00036122065321073576,0.0011059844846600538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012855923248616326,0.0,0.0,0.0006237740340280348,0.0002948094640092432,0.0007523332665141981,0.0003242844052414235,0.00018680914916708617,8.634117980821825e-05,0.0,2.6339299811306986e-05,3.0529293418854364e-05,2.413462010873928e-05,7.389531895856962e-05,0.0,0.0,0.0,0.00033401215624384204,0.0001647495162183713,0.00011410824218635514,0.0,0.00013946335186562964 +97009,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,28331.0,,2107.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0025821811826010335,0.0006137896974380887,0.0,0.003195970880039122,0.002254207055872189,0.000658074405418331,0.0002836590451491643,0.0,0.0,0.0016404173584341005,0.000658074405418331,0.0002836590451491643,0.0,0.0,0.0006137896974380887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.101018128597175e-05,0.0,0.0,0.00030771271951124407,0.00011597615832048162,0.0003487229007972158,0.00019548484432403213,7.842124568812918e-05,3.380300994560318e-05,0.0,0.0,4.101018128597175e-05,0.0,0.0,0.0,0.0,0.0,0.0002459639505575466,7.180466412606182e-05,3.0950971950211924e-05,0.0,0.0 +97010,50.0,the Greater Atlanta and Macon Area,G1301210007500,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,13229.0,,1421.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004852258602137688,0.0011276282433617174,0.0,0.005979969552573145,0.0025893103575564975,0.002259309133336661,0.0009579133280486588,0.0,0.00017343673363132763,0.001635118847826108,0.002259309133336661,0.0009579133280486588,0.0,0.0,0.0009541915097303898,0.0,0.00017343673363132763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.534351092386504e-05,0.0,0.0,0.000578237717294394,0.00023490687597224147,0.000653581228218259,0.00019485511131980246,0.000269239103486244,0.00011415335858907196,0.0,0.0,6.375517716947565e-05,0.0,1.158833375438939e-05,0.0,0.0,0.0,0.0002829988729627959,0.00024693136399925563,0.00010469521022950469,0.0,1.8955781026702748e-05 +97011,50.0,the Greater Atlanta and Macon Area,G1300210013407,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,2999.0,,336.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.00026718371242780045,9.888191149119837e-05,0.0,0.00036606562391899877,0.00017051145259003666,0.00010956189448279895,8.596158723986551e-05,0.0,0.0,7.162954109883829e-05,0.00010956189448279895,8.596158723986551e-05,0.0,0.0,9.888191149119837e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.607450358198068e-06,0.0,0.0,3.183808726272489e-05,1.814438501231934e-05,3.8445537620922954e-05,8.535503752722245e-06,1.3055590572929916e-05,1.0243335908901035e-05,0.0,0.0,6.607450358198068e-06,0.0,0.0,0.0,0.0,0.0,1.7907730300289063e-05,1.1506586964008634e-05,9.0279972230219e-06,0.0,0.0 +97012,50.0,the Greater Atlanta and Macon Area,G1300890022900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,199120.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.015852315656156492,0.0,0.0,0.015852315656156492,0.00943100262542194,0.005598309980369228,0.0008229726767658857,0.0,0.0,0.00943100262542194,0.005598309980369228,0.0008229726767658857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001889090639951022,0.00047843937397161457,0.001889090639951022,0.0011238748439959922,0.000667140070438394,9.807210595192081e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011238748439959922,0.000667140070438394,9.807210595192081e-05,0.0,0.0 +97013,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,25295.0,,2977.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002253783307290697,0.0008762496390120097,0.0,0.003130002256696409,0.0013887660641836463,0.0006669465240616769,0.0010743510476636812,0.0,0.0,0.0005125164251716365,0.0006669465240616769,0.0010743510476636812,0.0,0.0,0.0008762496390120097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.854490146308351e-05,0.0,0.0,0.00026857734174980845,0.00013572608501101873,0.00032712224321289194,6.107521456496366e-05,7.947823730094554e-05,0.0001280275470823762,0.0,0.0,5.854490146308351e-05,0.0,0.0,0.0,0.0,0.0,0.00014514247369686717,6.970379736542733e-05,0.00011228238700402698,0.0,0.0 +97014,50.0,the Greater Atlanta and Macon Area,G1301350050428,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11289.0,,1323.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0009525133106618013,0.00038935903509895514,0.0,0.0013418723457607564,0.0007677311911433327,0.0002677975045537545,0.00030634365006366917,0.0,0.0,0.00037837215604437764,0.0002677975045537545,0.00030634365006366917,0.0,0.0,0.00038935903509895514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6015659966946328e-05,0.0,0.0,0.00011350919020649529,6.651532556393984e-05,0.0001395248501734416,4.508988645989885e-05,3.1912916639555304e-05,3.6506387107041144e-05,0.0,0.0,2.6015659966946328e-05,0.0,0.0,0.0,0.0,0.0,7.982695206154091e-05,2.7844978561281024e-05,3.185291955061966e-05,0.0,0.0 +97015,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,136563.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010442959837889518,0.0,0.0,0.010442959837889518,0.006816382438621389,0.0026693837865868187,0.0009572239862807487,0.0,0.0,0.006816382438621389,0.0026693837865868187,0.0009572239862807487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012444657925503942,0.00031262645387148443,0.0012444657925503942,0.0008122941106244729,0.0003181049109796531,0.00011407039050490718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008122941106244729,0.0003181049109796531,0.00011407039050490718,0.0,0.0 +97016,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,30633.0,,5032.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001576849692892396,0.0008557913546616887,0.0,0.0024326410475540845,0.0010007015985477802,0.0003734723329519922,0.0006918032418876202,0.0,0.00036668160452811197,0.000798167680046517,0.0003734723329519922,0.00033691232770384337,0.0,6.831508255146345e-05,0.00020253391850126316,0.00035489091418377687,0.00029836652197664853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.717863174454541e-05,0.0,0.0,0.00018791106903977373,0.0001039992002250498,0.0002450897007843192,9.51165749700736e-05,4.450619843991448e-05,4.01493915094595e-05,0.0,8.141017023784204e-06,1.3532051099466345e-05,2.3711593697532905e-05,1.9934986947546146e-05,0.0,0.0,0.0,0.00010082114482490762,3.762750876314412e-05,6.969949377707734e-05,0.0,3.694333976123165e-05 +97017,50.0,the Greater Atlanta and Macon Area,G1301210003200,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,203048.0,,10014.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009991360076343894,0.0017030544054803319,0.0,0.011694414481824227,0.0057363038302296835,0.0028958644700143843,0.0017862807219860598,0.0,0.0012759299988712599,0.005073436538179589,0.0028958644700143843,0.0017862807219860598,0.0,0.0002357428854410221,0.0006628672920500941,0.0,0.0010401871134302376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011378817681128301,0.0,0.0,0.0011906510718477097,0.0004161125609936762,0.0013044392486589928,0.0006045916277641865,0.0003450945725909649,0.00021286762162533025,0.0,2.8093024081415735e-05,4.428893192577667e-05,0.0,6.949924488550632e-05,0.0,0.0,0.0,0.0006398490381894931,0.0003230156823460376,0.0001992485118859978,0.0,0.00014232206081423823 +97018,50.0,the Greater Atlanta and Macon Area,G1302970110700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,30542.0,,2.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.0057643980612912165,5.217233070609473e-07,0.0,0.005764919784598276,0.002012164036908883,0.0014146680918989075,0.002338056966184189,0.0,0.0,0.002011642313601822,0.0014146680918989075,0.002338056966184189,0.0,0.0,5.217233070609473e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.508311262575763e-08,0.0,0.0,0.0006869307166612566,0.00022059029074442268,0.0006869657997738823,0.0002397230172961153,0.00016858290421190166,0.00027862113793994094,0.0,0.0,3.508311262575763e-08,0.0,0.0,0.0,0.0,0.0,0.00023977573470914792,0.00016857625664840818,0.000278610151347239,0.0,0.0 +97019,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Propane,4474.0,,,1458.0,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,3204.5843851935597,0.0,0.0,0.0002738787461302082,0.0,0.00013737979025695148,0.00041125853638715964,0.00031467049017510886,8.395262884594604e-05,1.2635417366104758e-05,0.0,0.0,0.0001772906999181574,8.395262884594604e-05,1.2635417366104758e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013737979025695148,0.0,0.0,0.0,0.0,1.1080139997716833e-05,3.2637140057634096e-05,2.0486705380073084e-05,4.3717280055350934e-05,2.1127091772918955e-05,1.0004331276400205e-05,1.5057170083149365e-06,0.0,0.0,0.0,0.0,0.0,1.1080139997716833e-05,0.0,0.0,3.344985386805286e-05,8.924266031978583e-06,1.3431601553194971e-06,0.0,0.0 +97020,50.0,the Greater Atlanta and Macon Area,G1301210009601,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,9974.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0007591273707477313,0.0,0.0,0.0007591273707477313,0.000561516732805718,0.0001522021067825744,4.5408531159438986e-05,0.0,0.0,0.000561516732805718,0.0001522021067825744,4.5408531159438986e-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,9.04647969916008e-05,2.8438847743503767e-05,9.04647969916008e-05,6.691564445979771e-05,1.8137842504897837e-05,5.411310026905262e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.691564445979771e-05,1.8137842504897837e-05,5.411310026905262e-06,0.0,0.0 +97021,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,8087.0,,245.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,5611.956475588368,0.0,0.0,0.0003701390250050224,4.171954042138424e-05,0.0,0.00041185856542640657,0.00016875757999606255,0.00018606241274203412,2.6116822371737777e-05,0.0,3.0904019955152034e-05,0.00012703803957467833,0.00018606241274203412,2.6116822371737777e-05,0.0,3.0904019955152034e-05,4.171954042138424e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7876457476655187e-06,0.0,0.0,4.4108953992280035e-05,1.269513314691232e-05,4.689659973994555e-05,1.5138946893786472e-05,2.217279953990164e-05,3.1123054814441694e-06,0.0,3.682789174580575e-06,2.7876457476655187e-06,0.0,0.0,0.0,0.0,0.0,1.9215714680993657e-05,2.118614308282701e-05,2.973812536783322e-06,0.0,3.518910557782302e-06 +97022,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,173649.0,,7685.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.008938619867028262,0.0013069581313563522,0.0,0.010245577998384613,0.005941816449449515,0.0016198280889746042,0.0014816376520667125,0.0,0.0012022958078937804,0.004737268885655388,0.0016198280889746042,0.0013792270845044876,0.0,0.0012022958078937804,0.0012045475637941273,0.00010241056756222499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.732385078706237e-05,0.0,0.0,0.0010651980588247208,0.0003936654456767916,0.0011525219096117833,0.0005645311800029041,0.0001930317836168533,0.00016435982679069826,0.0,0.00014327526841426483,8.04813323419296e-05,6.842518445132776e-06,0.0,0.0,0.0,0.0,0.0006683931001220209,0.0001822139622227426,0.0001666689625887267,0.0,0.000135245884678293 +97023,50.0,the Greater Atlanta and Macon Area,G1300670030329,ComStock 90.1-2004,gen3_t5_cfl,10001_25000,NaturalGas,69549.0,,29663.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.015585897221228528,0.020404977233680486,0.0,0.03599087445490901,0.017910843521641594,0.001354216492716768,0.005543523439680641,0.0003735176090493024,0.010808701671849694,0.010442858099699063,0.001354216492716768,0.002225685860527458,0.0003735176090493024,0.0011896191592359405,0.00746798542194253,0.0033178375791531826,0.009619082512613753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013633410010743029,0.0,0.0,0.001857342784006582,0.0018787183641611183,0.0032206837850808846,0.0012444562453204663,0.0001613794955162634,0.00026523090161827145,4.451140835974471e-05,0.00014176473319183668,0.0004989670218476881,0.0002216784637768869,0.0006426907235415593,0.0,0.0,0.0,0.0016027719298552375,0.0001211835823840926,0.0004960684152524125,3.3424642360785634e-05,0.0009672287972862749 +97024,50.0,the Greater Atlanta and Macon Area,G1301350050546,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,25655.0,,4805.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0022858232562654986,0.0014142691270170374,0.0,0.0037000923832825367,0.0017582075447953923,0.0008137042213772916,0.0011281499275035544,0.0,0.0,0.00034393841777835506,0.0008137042213772916,0.0011281499275035544,0.0,0.0,0.0014142691270170374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.449301774968855e-05,0.0,0.0,0.00027239610848278206,0.0001798816614126003,0.0003668891262324706,4.098632136310167e-05,9.696719234596928e-05,0.00013443893756648678,0.0,0.0,9.449301774968855e-05,0.0,0.0,0.0,0.0,0.0,0.000174338141598791,8.068426403125056e-05,0.00011186367752088599,0.0,0.0 +97025,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,32834.0,,753.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002992144545207128,0.00022154826786311639,0.0,0.003213692813070245,0.0012306225229315841,0.0008818044577518939,0.0011012658323867666,0.0,0.0,0.0010090742550684676,0.0008818044577518939,0.0011012658323867666,0.0,0.0,0.00022154826786311639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4802641444810887e-05,0.0,0.0,0.00035656650034473076,0.00013497476144126204,0.00037136914178954167,0.00012024889515918181,0.00010508246668518157,0.0001312351385003674,0.0,0.0,1.4802641444810887e-05,0.0,0.0,0.0,0.0,0.0,0.0001422087476280495,0.0001018998963963377,0.00012726049776515442,0.0,0.0 +97026,35.0,Eastern Counties in South Carolina and Georgia,G1300510004001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,113408.0,,1674.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.012416583661949981,0.000622105943660789,0.0,0.01303868960561077,0.0068442503361343,0.0017156639593565097,0.004295844001491958,0.0,0.00018285381178045868,0.0068442503361343,0.0017156639593565097,0.0036737380578311693,0.0,0.00018285381178045868,0.0,0.000622105943660789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.156471731296225e-05,0.0,0.0,0.0014796598770714972,0.0004616717890318541,0.0015212245943844592,0.0008156158639711203,0.0002044523028485577,0.0004377921456528617,0.0,2.179032945191282e-05,0.0,4.156471731296225e-05,0.0,0.0,0.0,0.0,0.0007985190426629446,0.00020016660336396482,0.0005011963430662862,0.0,2.133356373003026e-05 +97027,50.0,the Greater Atlanta and Macon Area,G1300890021704,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,108427.0,,7594.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,153306.56730200956,0.0,0.0,0.011904445744954362,0.0028224739359822824,0.0,0.01472688093251287,0.009468061103437113,0.0009648357519248615,0.003908398512194902,0.0,0.00038558556495599586,0.007202634507602292,0.0009648357519248615,0.0033513511720474403,0.0,0.00038558556495599586,0.00226542659583482,0.0005570473401474621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018858069216822921,0.0,0.0,0.0014186283540774485,0.0005934725297183816,0.0016072090462456777,0.0008583231639215174,0.00011497749530156652,0.00039937363729447735,0.0,4.594943998979472e-05,0.00015136214724695597,3.721854492127323e-05,0.0,0.0,0.0,0.0,0.001033290995261305,0.0001052967533139613,0.0004265406554122899,0.0,4.208064225812164e-05 +97028,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,7257.0,,915.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0003249620641067277,0.00015558392146096332,0.0,0.0004805459855676911,0.00017054834649948792,0.00010913037454042501,3.886495223275575e-05,0.0,0.0001619845819336024,0.00011702038537234851,0.00010913037454042501,3.886495223275575e-05,0.0,5.992862159977848e-05,5.3527961127139415e-05,0.0,0.00010205596033382392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0395749844947452e-05,0.0,0.0,3.872499327328111e-05,2.1307649328609694e-05,4.912074311822857e-05,1.3945054321456538e-05,1.3004819598267422e-05,4.631448344338292e-06,0.0,7.141558122200469e-06,3.576611826996737e-06,0.0,6.819138017950717e-06,0.0,0.0,0.0,1.7433215070443887e-05,1.1155155292502559e-05,3.9727214299213014e-06,0.0,1.6557838952445716e-05 +97029,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,50085.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.004182596510575614,0.0,0.0,0.004182596510575614,0.003035081923817351,0.0009365091914642019,0.00021100539529406192,0.0,0.0,0.003035081923817351,0.0009365091914642019,0.00021100539529406192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004984313442239072,0.0001722545656792151,0.0004984313442239072,0.00036168441285046977,0.0001116018564064902,2.5145074966947344e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036168441285046977,0.0001116018564064902,2.5145074966947344e-05,0.0,0.0 +97030,50.0,the Greater Atlanta and Macon Area,G1301350050539,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,9977.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002199925454391838,0.0,0.0,0.002199925454391838,0.0012846062693189228,0.00044455052134877735,0.00041427973236019087,0.0,5.6488931363946976e-05,0.0012846062693189228,0.00044455052134877735,0.00041427973236019087,0.0,5.6488931363946976e-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.00026216456507601057,8.861151198624752e-05,0.00026216456507601057,0.00015308620717923967,5.2976974220217175e-05,4.9369611882617275e-05,0.0,6.731771793936436e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015308620717923967,5.2976974220217175e-05,4.9369611882617275e-05,0.0,6.731771793936436e-06 +97031,50.0,the Greater Atlanta and Macon Area,G1301350050729,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,57022.0,,5443.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004592457861388638,0.0015857448794461472,0.0,0.006178202740834785,0.004463187822181566,0.00126281277022397,0.00045217177482981133,0.0,0.0,0.0028774429427354184,0.00126281277022397,0.00045217177482981133,0.0,0.0,0.0015857448794461472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001059501625620473,0.0,0.0,0.0005472737547896098,0.00022892487949615698,0.0006532239173516571,0.00034289895541632994,0.00015048679970854846,5.388438010537715e-05,0.0,0.0,0.00010595016256204732,0.0,0.0,0.0,0.0,0.0,0.0004718946844867903,0.00013351771368641443,4.7808307765288894e-05,0.0,0.0 +97032,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,20733.0,,5306.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00476674316188971,0.004115166971923514,0.0,0.008881910133813226,0.004623215271943074,0.0005255950899454303,0.002761476602573291,0.00041109622112039506,0.0005605269482310343,0.0025119402260238145,0.0005255950899454303,0.0007575846765690364,0.00041109622112039506,0.0005605269482310343,0.0021112750459192594,0.002003891926004254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002749520464834562,0.0,0.0,0.0005680438827582122,0.0004501445308840002,0.0008429959292416685,0.0002993432267664777,6.263418554585885e-05,9.02799514429464e-05,4.898956912540714e-05,6.679694987752209e-05,0.00014106338783468996,0.0001338886586487662,0.0,0.0,0.0,0.0,0.00043879656465097493,4.988504888904831e-05,0.0002620960468630598,3.9017782854141785e-05,5.320048598444351e-05 +97033,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,44924.0,,673.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.004002691901377886,0.0001980093398327783,0.0,0.004200701241210664,0.002238162297685166,0.0007536446618526873,0.0012088942816728106,0.0,0.0,0.002040152957852388,0.0007536446618526873,0.0012088942816728106,0.0,0.0,0.0001980093398327783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3229714340471739e-05,0.0,0.0,0.00047699264742811527,0.00015974973044363686,0.000490222361768587,0.0002431208757759542,8.981030050137801e-05,0.00014406147115078314,0.0,0.0,1.3229714340471739e-05,0.0,0.0,0.0,0.0,0.0,0.0002611938208860603,8.795042657240583e-05,0.00014107811431012088,0.0,0.0 +97034,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,43523.0,,4190.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.0038778158933525327,0.0012333232082857818,0.0,0.005111169791244613,0.0012427449174191765,0.001639009113935115,0.002229415759890321,0.0,0.0,9.421709133394755e-06,0.001639009113935115,0.002229415759890321,0.0,0.0,0.0012333232082857818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.240441733048437e-05,0.0,0.0,0.0004621127939673828,0.00022139307853632194,0.0005445172112978671,1.1227692214693923e-06,0.00019531795779086114,0.00026567572418378677,0.0,0.0,8.240441733048437e-05,0.0,0.0,0.0,0.0,0.0,0.00013239552283057828,0.00017461143113275704,0.00023751025733453177,0.0,0.0 +97035,50.0,the Greater Atlanta and Macon Area,G1301210010209,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4227.0,,913.0,,8.72605822017302,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.00096014641903962,0.0007243485518088543,0.0,0.0016844949708484742,0.0008669355469354203,0.0002998131423049894,0.0003988135095709404,0.0,0.00011893277203712406,0.0002615197671636901,0.0002998131423049894,0.0003988135095709404,0.0,0.0,0.0006054157797717304,0.0,0.00011893277203712406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.83962814615482e-05,0.0,0.0,0.00011442084731218373,8.41259391676079e-05,0.00016281712877373194,3.1165364734354803e-05,3.572879416889189e-05,4.752668840893702e-05,0.0,0.0,4.04499634960645e-05,0.0,7.946317965483709e-06,0.0,0.0,0.0,8.379482220288988e-05,2.8978842824410973e-05,3.854785657911992e-05,0.0,1.1495607167311165e-05 +97036,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,60981.0,,5735.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005201305164940966,0.00168823524243663,0.0,0.006889540407377595,0.0028944288387552424,0.0016042377899998176,0.0023908737786225353,0.0,0.0,0.0012061935963186125,0.0016042377899998176,0.0023908737786225353,0.0,0.0,0.00168823524243663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011279732407810898,0.0,0.0,0.000619829980775335,0.0002824465355033469,0.000732627304853444,0.00014373987487926662,0.0001911740701616646,0.0002849160357344037,0.0,0.0,0.00011279732407810898,0.0,0.0,0.0,0.0,0.0,0.0003077908646789531,0.0001705931512025163,0.0002542432889719747,0.0,0.0 +97037,85.0,Rural Climate Zone 3A,G1301750950400,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,7926.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018779468163247146,0.0,0.0,0.0018779468163247141,0.0011852750737580144,0.00026391827230213,0.00038467059996151877,0.0,4.4000163229311556e-05,0.0011852750737580144,0.00026391827230213,0.00038467059996151877,0.0,4.4000163229311556e-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.00022378825812235345,6.873915763371761e-05,0.00022378825812235345,0.00014124502453763087,3.1450203984340255e-05,4.583983037642322e-05,0.0,5.2433433154713314e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001412450245376309,3.145020398434026e-05,4.5839830376423234e-05,0.0,5.243343315471332e-06 +97038,50.0,the Greater Atlanta and Macon Area,G1300890021907,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6018.0,,387.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011673276387565849,0.00030709136479404843,0.0,0.0014744190035506336,0.0007049950965538565,0.00033049746666227243,0.0003945954488102357,0.0,4.424828445052947e-05,0.00039790373175980804,0.00033049746666227243,0.0003945954488102357,0.0,4.424828445052947e-05,0.00030709136479404843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0518785786381705e-05,0.0,0.0,0.00013911058081431354,6.667670188467294e-05,0.00015962936660069525,4.741823751577601e-05,3.9385424467478876e-05,4.702398902260805e-05,0.0,5.273073596121422e-06,2.0518785786381705e-05,0.0,0.0,0.0,0.0,0.0,7.632696027959422e-05,3.578162051586796e-05,4.272124911942093e-05,0.0,4.790582326323663e-06 +97040,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001500,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,53862.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006898072117928358,0.0,0.0,0.006898072117928358,0.0028388499617501032,0.0016952324726725065,0.00236395899389945,0.0,0.0,0.0028388499617501032,0.0016952324726725065,0.00236395899389945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008220288272995259,0.000276169141733133,0.0008220288272995259,0.000338299812620338,0.0002020173082692507,0.00028170804919374053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000338299812620338,0.0002020173082692507,0.00028170804919374053,0.0,0.0 +97041,50.0,the Greater Atlanta and Macon Area,G1301210009402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,456473.0,,36905.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02106570835858604,0.00627606922294035,0.0,0.02734177758152639,0.012115776520971783,0.0063742599644846035,0.004154400984332572,0.0,0.004697340111737429,0.010534086439411712,0.0063742599644846035,0.003465487791356421,0.0,0.0006918564329718805,0.0015816900815600705,0.0006889131929761516,0.004005483678765549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004193308413841239,0.0,0.0,0.002510358868166684,0.0010308971009525976,0.0029296897095508075,0.0012553262800884318,0.00075960797317892,0.0004129753370486184,0.0,8.244716495855382e-05,0.00010567943232448502,4.6029216471256674e-05,0.00026762337722913566,0.0,0.0,0.0,0.0012982135375386495,0.0006830062079273817,0.00044514683717456437,0.0,0.0005033231269102116 +97042,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,36913.0,,0.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.003288913038105915,3.068960629770278e-08,0.0,0.0032889130381059143,0.001337514421666483,0.0009443191857803145,0.001007079430659117,0.0,0.0,0.001337483732060185,0.0009443191857803145,0.001007079430659117,0.0,0.0,3.068960629770278e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7438269923678165e-09,0.0,0.0,0.00039193170589950404,0.00014030038862809528,0.0003919334497264964,0.00015938465828852427,0.00011253220292186712,0.0001200111874839477,0.0,0.0,1.7438269923678165e-09,0.0,0.0,0.0,0.0,0.0,0.00015938902466225766,0.00011253270361290595,0.00012001172145133278,0.0,0.0 +97043,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,66901.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005286221246146327,0.0,0.0,0.005286221246146327,0.0030090517490991976,0.001802339017036755,0.00047483048001037425,0.0,0.0,0.0030090517490991976,0.001802339017036755,0.00047483048001037425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006299479633418066,0.00014917723742128444,0.0006299479633418066,0.0003585824226174793,0.00021478098251401662,5.658455821031063e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003585824226174793,0.00021478098251401662,5.658455821031063e-05,0.0,0.0 +97044,50.0,the Greater Atlanta and Macon Area,G1300670031306,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,21777.0,,2396.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0020031692565191704,0.0006979853150795368,0.0,0.002701154571598707,0.0016945431126321742,0.0007398097615053213,0.00026680169746121204,0.0,0.0,0.0009965577975526373,0.0007398097615053213,0.00026680169746121204,0.0,0.0,0.0006979853150795368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.663523416209644e-05,0.0,0.0,0.0002387155481045925,0.00011006778844154477,0.00028535078226668895,0.00011875873198756169,8.816234181716062e-05,3.179447429987022e-05,0.0,0.0,4.663523416209644e-05,0.0,0.0,0.0,0.0,0.0,0.00017901204464875663,7.815372596360937e-05,2.8185011654322972e-05,0.0,0.0 +97045,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5879.0,,205.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001130688405090072,0.00016301564234017492,0.0,0.0012937040474302467,0.0005951601026280562,0.00024663249389061476,0.000414031611138973,0.0,3.796254684634211e-05,0.00043214446028788135,0.00024663249389061476,0.000414031611138973,0.0,3.796254684634211e-05,0.00016301564234017492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.089115214359658e-05,0.0,0.0,0.0001347439968139686,5.601812131484392e-05,0.0001456351489575652,5.149860166432491e-05,2.939116366756304e-05,4.934009568069101e-05,0.0,4.523991993095718e-06,1.089115214359658e-05,0.0,0.0,0.0,0.0,0.0,6.699849967386774e-05,2.7763969709209786e-05,4.660846155744607e-05,0.0,4.273528536729473e-06 +97046,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,8525.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0020470000750478588,0.0,0.0,0.0020470000750478588,0.0011057935758945403,0.0005060018771370829,0.00038905407486970213,0.0,4.606784007279424e-05,0.0011057935758945403,0.0005060018771370829,0.00038905407486970213,0.0,4.606784007279424e-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.00024393617495640236,8.240396478873158e-05,0.00024393617495640236,0.000131774814511802,6.029905124780887e-05,4.6362657252319865e-05,0.0,5.489795937402671e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.000131774814511802,6.029905124780887e-05,4.6362657252319865e-05,0.0,5.489795937402671e-06 +97047,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,63848.0,,4.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.0054224237783159135,1.1968946456104082e-06,0.0,0.005423620672961525,0.001943081733132754,0.0011703788257691934,0.002310129424453279,0.0,0.0,0.0019418848384871433,0.0011703788257691934,0.002310129424453279,0.0,0.0,1.1968946456104082e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.068272110496451e-08,0.0,0.0,0.0006461791430705035,0.00019868350617255744,0.0006462598257916083,0.00023141044156178815,0.0001394716491410566,0.00027529339515009154,0.0,0.0,8.068272110496451e-08,0.0,0.0,0.0,0.0,0.0,0.00023153087910691687,0.00013945828103770704,0.00027526700877995484,0.0,0.0 +97048,50.0,the Greater Atlanta and Macon Area,G1302550160500,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,20106.0,,7865.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004186509868094264,0.00541019601356262,0.0,0.009596705881656883,0.002347322931369934,0.0006464120987637024,0.0042254538123557405,0.00037229836954203696,0.002005218669625469,0.0017595777688970014,0.0006464120987637024,0.0011555521730035251,0.00037229836954203696,0.0002526694578879977,0.0005877451624729324,0.003069901639352215,0.0017525492117374713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036147752772383297,0.0,0.0,0.0004988995133273224,0.000500587186066579,0.0008603770410511553,0.00020968599626492603,7.703186941940892e-05,0.00013770525686070302,4.436618597094771e-05,3.011020481133669e-05,3.926968038306901e-05,0.00020511280038033994,0.00011709504696042396,0.0,0.0,0.0,0.0002104454156445299,5.795302426606826e-05,0.00037882618192163294,3.3377804167886425e-05,0.00017977461505103764 +97049,50.0,the Greater Atlanta and Macon Area,G1300770170603,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,54090.0,,2830.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004779599284804231,0.000833069362951142,0.0,0.005612699337361671,0.0015414468555147178,0.0017341775830642912,0.0023370442091763645,0.0,0.0,0.0007083774925635757,0.0017341775830642912,0.0023370442091763645,0.0,0.0,0.000833069362951142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.566120737486889e-05,0.0,0.0,0.0005695772679984886,0.0002343695330190286,0.0006252384753733575,8.441622255002642e-05,0.00020665919277507765,0.00027850185267338455,0.0,0.0,5.566120737486889e-05,0.0,0.0,0.0,0.0,0.0,0.00017171272214700758,0.0001931823678571477,0.0002603399666358089,0.0,0.0 +97050,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,119232.0,,13239.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,153306.56730200956,0.0,0.0,0.013413038127672862,0.004920274850579071,0.0,0.018333312978251932,0.011020865437679557,0.001908049883384901,0.005124091559620228,0.0,0.000280383594414791,0.007075152193392141,0.001908049883384901,0.004429913547743364,0.0,0.0,0.003945713244287418,0.0006941780118768631,0.000280383594414791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003287437441269832,0.0,0.0,0.001598407522430873,0.0007904843148205066,0.0019271512665578559,0.0008431331053126124,0.0002273788576268602,0.0005279047946507206,0.0,0.0,0.00026362928587735535,4.638088026488349e-05,1.873357798474445e-05,0.0,0.0,0.0,0.0011584853655191877,0.00020056935447416283,0.0005386314819800838,0.0,2.9473210856078986e-05 +97051,35.0,Eastern Counties in South Carolina and Georgia,G1301890950200,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,129811.0,,4853.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006327044012023004,0.0008253128633806178,0.0,0.0071523391450422,0.003154373139518754,0.0017731070634509603,0.001092012959861052,0.0,0.0011328637125728538,0.002902460164462644,0.0017731070634509603,0.0005186130715365445,0.0,0.0011328637125728538,0.00025191297505611015,0.0005733998883245076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.51423103480719e-05,0.0,0.0,0.0007539805991081219,0.00026529392819993607,0.0008091229094561938,0.0003458801060227311,0.00021129745951556012,6.180203482690827e-05,0.0,0.00013500099874292227,1.6831269773683195e-05,3.8311040574388704e-05,0.0,0.0,0.0,0.0,0.0003568448755575367,0.00020058634201528826,0.00012353618659975205,0.0,0.00012815751106680563 +97052,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,7880.0,,1885.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0005921252639078775,0.0005548987714687639,0.0,0.0011470240353766417,0.0007150678267364749,0.00023861168896463915,0.00019334451967552754,0.0,0.0,0.00016016905526771084,0.00023861168896463915,0.00019334451967552754,0.0,0.0,0.0005548987714687639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7076003095254314e-05,0.0,0.0,7.056166517303746e-05,5.686087606060728e-05,0.00010763766826829176,1.90868316853987e-05,2.8434588303118395e-05,2.3040245184520368e-05,0.0,0.0,3.7076003095254314e-05,0.0,0.0,0.0,0.0,0.0,6.71025463719384e-05,2.2391514937417216e-05,1.8143606958936133e-05,0.0,0.0 +97053,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,41146.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004933078005899044,0.0,0.0,0.004933078005899043,0.0020352119312384578,0.0010989948015207366,0.0017988712731398487,0.0,0.0,0.0020352119312384578,0.0010989948015207366,0.0017988712731398487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005878660108604694,0.00020448491365620687,0.0005878660108604694,0.00024253253604383993,0.00013096522883964515,0.00021436824597698413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024253253604384,0.00013096522883964518,0.0002143682459769842,0.0,0.0 +97054,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970201,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,76357.0,,,10770.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006733249896960262,0.0,0.0010151160668091038,0.007748335590169927,0.0048940373302060755,0.001969606429140455,0.0008847222044228351,0.0,0.0,0.003878921263396972,0.001969606429140455,0.0008847222044228351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010151160668091038,0.0,0.0,0.0,0.0,8.186675381083236e-05,0.0008023873556800456,0.00028207032746768864,0.000884254109490878,0.00046224296187689326,0.00023471389278480447,0.00010543050101834785,0.0,0.0,0.0,0.0,0.0,8.186675381083236e-05,0.0,0.0,0.000558516415670837,0.00022477505765969356,0.00010096610245059916,0.0,0.0 +97055,35.0,Eastern Counties in South Carolina and Georgia,G1301270000101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,7298.0,,35.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,1870.6521585294563,0.0,0.0,0.00031659333351646287,5.921940714297636e-06,0.0,0.0003225152742307605,0.00016819020843062088,5.6914460158369495e-05,3.0265726944030138e-05,0.0,6.712714833631991e-05,0.00016226826771632326,5.6914460158369495e-05,3.0265726944030138e-05,0.0,6.712714833631991e-05,5.921940714297636e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9580711144820166e-07,0.0,0.0,3.7727063527730094e-05,1.168592565957227e-05,3.81228706391783e-05,1.9336810338585674e-05,6.782251003809004e-06,3.606636281464789e-06,0.0,7.99925305309062e-06,3.9580711144820166e-07,0.0,0.0,0.0,0.0,0.0,1.9880898894076157e-05,6.727565406913816e-06,3.5775558098448247e-06,0.0,7.934754713574988e-06 +97056,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,13520.0,,919.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.003066806919440052,0.0007124643596167978,0.0,0.0037793521398399184,0.0011484657019222996,0.0002604525822637279,0.001733816910555372,0.00043042194827377326,0.00020611413604167727,0.0011484657019222996,0.0002604525822637279,0.001021352550938574,0.00043042194827377326,0.00020611413604167727,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507362e-05,0.0,0.0,0.00036546621167372494,0.0001511850954059011,0.00041307149036879856,0.00013686072202921177,3.103769525143217e-05,0.00012171286206794156,5.12926581258533e-05,2.4562274199286133e-05,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.000125523746286999,2.8466661042767286e-05,0.00018950082150854272,4.704378662857817e-05,2.2527637068616522e-05 +97057,81.0,the Columbus-Albany Area,G1302150010502,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,26702.0,,5260.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005559803873101184,0.0036183442577085935,0.0,0.009178148130809778,0.0029063801054366217,0.0005010357175150588,0.0039803149514243815,0.00037731876751312973,0.0014130985889205844,0.0029063801054366217,0.0005010357175150588,0.00036197069371578895,0.00037731876751312973,0.0014130985889205844,0.0,0.0036183442577085935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024175522499615196,0.0,0.0,0.000662552376784164,0.00042153775831880883,0.000904307601780316,0.00034634837678566404,5.970757477604998e-05,4.313543227808821e-05,4.496443614325779e-05,0.00016839655680110402,0.0,0.00024175522499615196,0.0,0.0,0.0,0.0,0.0002863607762209352,4.936621218733228e-05,0.00039217378241806,3.7176587792378346e-05,0.00013923024316161005 +97058,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,88293.0,,11989.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,240343.828889517,0.0,0.0,0.012026305202980082,0.0034926601993470817,0.0,0.015518935028727728,0.008722720660133007,0.00512256829237572,0.0016736764498184388,0.0,0.0,0.005230060460785925,0.00512256829237572,0.0016736764498184388,0.0,0.0,0.0034926601993470817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002333583829803569,0.0,0.0,0.0014331504248953195,0.0006100631197509032,0.0016665088078756762,0.0006232557086399409,0.0006104460847172227,0.0001994486315381562,0.0,0.0,0.00023335838298035687,0.0,0.0,0.0,0.0,0.0,0.0009366938376790485,0.0005500896267937184,0.00017972860508748352,0.0,0.0 +97059,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,6813.0,,459.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016358632114897615,0.0003640765386004313,0.0,0.0019999397500901927,0.0011462373349530616,0.00043181363199292405,0.00031445229435684684,0.0,0.00010743648878736034,0.0008895972851399908,0.00043181363199292405,0.00031445229435684684,0.0,0.0,0.0002566400498130709,0.0,0.00010743648878736034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4325476898007597e-05,0.0,0.0,0.0001949384552564728,8.109313661124676e-05,0.0002192639321544804,0.00010600930404664652,5.1457286763438217e-05,3.7471864446388075e-05,0.0,0.0,1.7147195550776368e-05,0.0,7.178281347231228e-06,0.0,0.0,0.0,0.00012566803836602886,4.7342003630062534e-05,3.447506182752304e-05,0.0,1.177882833086597e-05 +97060,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,22990.0,,363.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0024715294618785286,0.00013488326315062017,0.0,0.0026064127250291485,0.0012386708627221705,0.0003087861890397277,0.000991378422208738,0.0,6.761599948228446e-05,0.0012386708627221705,0.0003087861890397277,0.000856495159058118,0.0,6.761599948228446e-05,0.0,0.00013488326315062017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.011830880661308e-06,0.0,0.0,0.0002945295757205664,7.934881357051991e-05,0.00030354140660122773,0.00014761110853912183,3.679772652886607e-05,0.00010206763046731784,0.0,8.057727794311871e-06,0.0,9.011830880661308e-06,0.0,0.0,0.0,0.0,0.0001442549341384293,3.5961071422064725e-05,0.00011545539118252303,0.0,7.87452247854222e-06 +97061,50.0,the Greater Atlanta and Macon Area,G1300890021504,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,36690.0,,6040.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.008613209751676508,0.0046845077455090174,0.0,0.013297717497185526,0.006746457713756475,0.0017186959441215569,0.002986512161853004,0.00041489667792461585,0.0014312358603129408,0.004668820753593724,0.0017186959441215569,0.0018108772368196791,0.00041489667792461585,0.0,0.0020776369601627517,0.0011756349250333247,0.0014312358603129408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031299184274949957,0.0,0.0,0.0010264192532912666,0.0005896973376318634,0.0013394110960407663,0.0005563741798719895,0.0002048136128644267,0.00021579867608086743,4.944242049434832e-05,0.0,0.00013881574245431174,7.854915854064133e-05,9.562694175454648e-05,0.0,0.0,0.0,0.0006795361927855498,0.0001731154552474064,0.0003008161008754509,4.1790421118534105e-05,0.00014416107070708506 +97062,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,77936.0,,16581.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.00482824337010168,0.002819783489160937,0.0,0.007648009128901197,0.0026342352569000845,0.0010166589238258278,0.003170099970098341,0.0,0.0008270327084383631,0.002443013308984815,0.0010166589238258278,0.0005415384288526728,0.0,0.0008270327084383631,0.00019122194791526946,0.002628561541245668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018840098779559234,0.0,0.0,0.000575371617993302,0.00033753652111491125,0.0007637726057888943,0.0002911287631178711,0.00012115310789246254,6.453399676246047e-05,0.0,9.855575022050777e-05,1.2776301447936414e-05,0.00017562468634765594,0.0,0.0,0.0,0.0,0.0002630693416435051,0.00010152919830007396,0.000316583763691345,0.0,8.259207280619027e-05 +97063,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,11669.0,,1389.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0026497692284599313,0.001102071757576271,0.0,0.003751840986036202,0.001929556030338042,0.0007401456028930622,0.0009780111469673103,0.0,0.00010412820583778805,0.0008274842727617706,0.0007401456028930622,0.0009780111469673103,0.0,0.00010412820583778805,0.001102071757576271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.363587915856344e-05,0.0,0.0,0.00031576564806426016,0.00018092068417669967,0.0003894015272228236,9.860900520890574e-05,8.82010982123436e-05,0.0001165468752219201,0.0,1.240866942109069e-05,7.363587915856344e-05,0.0,0.0,0.0,0.0,0.0,0.00020026756674180443,7.681930796281218e-05,0.0001015072428942065,0.0,1.0807409624000506e-05 +97065,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,3043.0,,465.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00021117518093449284,0.0001369677129066475,0.0,0.0003481428938411404,0.00017057283180263206,8.516365747612523e-05,9.240640456238307e-05,0.0,0.0,3.360511889598455e-05,8.516365747612523e-05,9.240640456238307e-05,0.0,0.0,0.0001369677129066475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.151715665388582e-06,0.0,0.0,2.5165904434617034e-05,1.76105553011797e-05,3.431762010000562e-05,4.004747181500604e-06,1.0149016829830299e-05,1.1012140423286133e-05,0.0,0.0,9.151715665388582e-06,0.0,0.0,0.0,0.0,0.0,1.6813939749279902e-05,8.394869162333886e-06,9.10881118839183e-06,0.0,0.0 +97066,35.0,Eastern Counties in South Carolina and Georgia,G1301270000200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,44699.0,,50.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.01072867889838922,3.9782102468606875e-05,0.0,0.010768543707931564,0.005776013908732013,0.0028868904088705256,0.0019340222123199646,0.0,0.00017161717800906291,0.0057362318062634055,0.0028868904088705256,0.0019340222123199646,0.0,0.00017161717800906291,3.9782102468606875e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6594415905933375e-06,0.0,0.0,0.0012785189359036384,0.00040877373129728263,0.0012811783774942318,0.0006835772656167002,0.00034402595963364265,0.00023047423120106287,0.0,2.0451335517542146e-05,2.6594415905933375e-06,0.0,0.0,0.0,0.0,0.0,0.0006871963683002795,0.00034346534409440915,0.0002300986565335529,0.0,2.041800856599052e-05 +97067,85.0,Rural Climate Zone 3A,G1302850961000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,7755.0,,,850.0,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015546448650777618,0.0,0.00021818126052429297,0.001772743418528315,0.0008028375647874571,0.0003108131831123173,0.0006160849922841011,0.0,4.300767834443987e-05,0.0005846563042631642,0.0003108131831123173,0.0006160849922841011,0.0,4.300767834443987e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021818126052429297,0.0,0.0,0.0,0.0,1.759455858804216e-05,0.00018525978869103672,6.92613045270624e-05,0.0002028543472790789,6.96707690725615e-05,3.703815959466489e-05,7.341597946265535e-05,0.0,5.125024744338943e-06,0.0,0.0,0.0,1.7594558588042162e-05,0.0,0.0,9.186839362872161e-05,3.556623295114205e-05,7.049836861443776e-05,0.0,4.921352084777506e-06 +97068,50.0,the Greater Atlanta and Macon Area,G1301210008903,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,78994.0,,10040.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.0063451967905435456,0.002924795384258874,0.0,0.009269992174802419,0.006782060271256729,0.001958732680541739,0.0005292295966033878,0.0,0.0,0.0038572648869978554,0.001958732680541739,0.0005292295966033878,0.0,0.0,0.002924795384258874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019541825702693624,0.0,0.0,0.0007561450166170521,0.00038437661417793005,0.0009515632736439882,0.00045966291012788544,0.00023341844298413364,6.306728306902904e-05,0.0,0.0,0.00019541825702693624,0.0,0.0,0.0,0.0,0.0,0.000696177445684353,0.0002010636089592479,5.4325336845706736e-05,0.0,0.0 +97069,50.0,the Greater Atlanta and Macon Area,G1302230120301,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,52159.0,,4325.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004599504536458196,0.0012599576518768209,0.0,0.00585943181473558,0.003913213057162194,0.001394117840593371,0.0005521312905794527,0.0,0.0,0.0026532554052853727,0.001394117840593371,0.0005521312905794527,0.0,0.0,0.0012599576518768209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.418235786031263e-05,0.0,0.0,0.0005481127854342433,0.0002051704143437041,0.000632295143294556,0.0003161825799131148,0.0001661339404656004,6.579626505552811e-05,0.0,0.0,8.418235786031263e-05,0.0,0.0,0.0,0.0,0.0,0.00042227739633354794,0.00015044017366507435,5.958085093103819e-05,0.0,0.0 +97070,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,12856.0,,497.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006068570803241473,8.455609361223181e-05,0.0,0.0006914131739363792,0.0003831885710101811,0.00016253422313762406,4.657765945047871e-05,0.0,9.914818106093527e-05,0.0003624440481487194,0.00016253422313762406,4.657765945047871e-05,0.0,3.531887994874518e-05,2.074452286146178e-05,0.0,6.382930111219007e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.650008044326035e-06,0.0,0.0,7.231728349761371e-05,2.3202423164905564e-05,7.796729154193975e-05,4.319133751886579e-05,1.9368701254057466e-05,5.55051578427064e-06,0.0,4.208841812815803e-06,1.3861416254689582e-06,0.0,4.265051155289101e-06,0.0,0.0,0.0,4.321030630845218e-05,1.8328191649527175e-05,5.252335492888391e-06,0.0,1.1180456823841599e-05 +97071,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,4026.0,,21.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0006141000225143576,1.629329352664356e-05,0.0,0.0006303933160410013,0.0003474524167788305,0.00018352699662752318,8.312060910800396e-05,0.0,1.629329352664356e-05,0.0003474524167788305,0.00018352699662752318,8.312060910800396e-05,0.0,0.0,0.0,0.0,1.629329352664356e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0873519628904264e-06,0.0,0.0,7.317985775348332e-05,2.6231136979476424e-05,7.426720971637376e-05,4.1404522885169494e-05,2.1870182404711045e-05,9.905152463602794e-06,0.0,0.0,0.0,0.0,1.0873519628904264e-06,0.0,0.0,0.0,4.093368512444058e-05,2.1621482335428144e-05,9.79251453226917e-06,0.0,1.9195277242358468e-06 +97072,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,35256.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008427850814035426,0.0,0.0,0.008427850814035426,0.005249500677307582,0.0008210331210101048,0.0022237450916287585,0.0,0.00013373733823646012,0.005249500677307582,0.0008210331210101048,0.0022237450916287585,0.0,0.00013373733823646012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001004333398953296,0.00034584669423932355,0.001004333398953296,0.0006255745354756101,9.784119383129902e-05,0.000265000118720876,0.0,1.5937263062880076e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0006255745354756101,9.784119383129902e-05,0.000265000118720876,0.0,1.5937263062880076e-05 +97073,50.0,the Greater Atlanta and Macon Area,G1301210011417,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,5239.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.00123597450996021,0.0,0.0,0.00123597450996021,0.0008709881935486464,0.00016442166259374318,0.0001603690159805171,0.0,4.019563783730341e-05,0.0008709881935486464,0.00016442166259374318,0.0001603690159805171,0.0,4.019563783730341e-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.00014728603603110025,4.642544208742806e-05,0.00014728603603110025,0.00010379210689531027,1.9593458219340696e-05,1.9110520868863986e-05,0.0,4.789950047585301e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010379210689531027,1.9593458219340696e-05,1.9110520868863986e-05,0.0,4.789950047585301e-06 +97074,50.0,the Greater Atlanta and Macon Area,G1300890022800,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,55302.0,,4210.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004814247850314338,0.001239276991907536,0.0,0.0060535555318281704,0.0020389253736004796,0.0016237563796051564,0.0023908737786225353,0.0,0.0,0.0007996483816929438,0.0016237563796051564,0.0023908737786225353,0.0,0.0,0.001239276991907536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.280180375380236e-05,0.0,0.0,0.0005737063149644333,0.0002528115190123336,0.0006565081187182356,9.52928350579992e-05,0.00019350048396084122,0.00028491665317751866,0.0,0.0,8.280180375380236e-05,0.0,0.0,0.0,0.0,0.0,0.00022112146393824837,0.00017609638507922967,0.0002592902697007577,0.0,0.0 +97075,35.0,Eastern Counties in South Carolina and Georgia,G1300510002800,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,10507.0,,325.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0023602117632986162,0.00025821148421411775,0.0,0.0026184232475127338,0.0015414117332794722,0.0006344459626542272,0.0003636630032317347,0.0,7.881984127355995e-05,0.001362102797412654,0.0006344459626542272,0.0003636630032317347,0.0,0.0,0.0001793089358668185,0.0,7.881984127355995e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7249830655207263e-05,0.0,0.0,0.0002812654595653487,0.00010759440284603691,0.000298515290220556,0.00016232122695383983,7.560666294024563e-05,4.333756967126321e-05,0.0,0.0,1.1978742107780061e-05,0.0,5.265563297377488e-06,0.0,0.0,0.0,0.00017572979133391773,7.233048394712041e-05,4.145967121828815e-05,0.0,8.985914639760881e-06 +97076,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,31906.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0038588443141686184,0.0,0.0,0.0038588443141686184,0.0027299487438656967,0.0007373798735503009,0.0003914853231531832,0.0,0.0,0.0027299487438656967,0.0007373798735503009,0.0003914853231531832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004598499070816827,0.00012832347906884797,0.0004598499070816827,0.0003253219290540006,8.787192193553522e-05,4.665243653775646e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003253219290540006,8.787192193553522e-05,4.665243653775646e-05,0.0,0.0 +97077,50.0,the Greater Atlanta and Macon Area,G1302230120601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,11096.0,,2233.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005301555368209988,0.00037978434161753096,0.0,0.0009099398784385299,0.00033221378192752933,0.00014030034991687786,0.00023955491314633345,0.0,0.00019788856380920935,0.0002195018743802537,0.00014030034991687786,7.764125265841123e-05,0.0,9.272979022687616e-05,0.00011271190754727565,0.0001619136604879222,0.00010515877358233319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.537492248033126e-05,0.0,0.0,6.31778893627833e-05,4.229657266075063e-05,8.855281184311456e-05,2.615772951778393e-05,1.6719395288709555e-05,9.252398833471392e-06,0.0,1.1050478625041192e-05,7.530736797734166e-06,1.0818104205900333e-05,7.026081476696767e-06,0.0,0.0,0.0,3.23301189669811e-05,1.3653638863517189e-05,2.3312816211927296e-05,0.0,1.9257963270025945e-05 +97078,50.0,the Greater Atlanta and Macon Area,G1300970080301,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,68127.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006601027418572892,0.0,0.0,0.006601027418572892,0.0023409110995698756,0.001734699306371352,0.0025254170126316642,0.0,0.0,0.0023409110995698756,0.001734699306371352,0.0025254170126316642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007866318768534228,0.00029244506642631167,0.0007866318768534228,0.00027896192138522727,0.00020672081550635946,0.00030094913996183597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027896192138522727,0.00020672081550635946,0.00030094913996183597,0.0,0.0 +97079,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Electricity,4841.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0008588302537089683,0.0,0.0,0.0008588302537089683,0.0005026108871137711,0.00025531673663324204,7.484990173407322e-05,0.0,2.6135435301621144e-05,0.0005026108871137711,0.00025531673663324204,7.484990173407322e-05,0.0,2.6135435301621144e-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.00010234666095201648,3.595653434091047e-05,0.00010234666095201648,5.9896057261691445e-05,3.0426053771078088e-05,8.919850554851206e-06,0.0,3.114555552854122e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.9896057261691445e-05,3.0426053771078088e-05,8.919850554851206e-06,0.0,3.114555552854122e-06 +97080,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,132451.0,,8296.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013178945563603614,0.002441879904289317,0.0,0.015620825467892932,0.005194215865886196,0.0054834347156357465,0.004943174886370988,0.0,0.0,0.002752335961596879,0.0054834347156357465,0.004943174886370988,0.0,0.0,0.002441879904289317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016315212821702482,0.0,0.0,0.0015705108282635756,0.0006209336702482955,0.0017336629564806002,0.0003279908403783699,0.0006534508815914371,0.0005890691062937685,0.0,0.0,0.00016315212821702482,0.0,0.0,0.0,0.0,0.0,0.0005764752735481,0.0006085739617484974,0.0005486137211840027,0.0,0.0 +97081,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,62933.0,,4415.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0052160054863575655,0.001299582068282522,0.0,0.006515556865033791,0.002103833890920121,0.0023437959225618595,0.0020679577411581067,0.0,0.0,0.0008042518226375991,0.0023437959225618595,0.0020679577411581067,0.0,0.0,0.001299582068282522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.682973922722082e-05,0.0,0.0,0.0006215796279609034,0.00025230140632039,0.0007084093671881241,9.584087862051913e-05,0.00027930488213110234,0.00024643386720928193,0.0,0.0,8.682973922722082e-05,0.0,0.0,0.0,0.0,0.0,0.0002287410986056865,0.0002548311711053636,0.00022484043423017525,0.0,0.0 +97082,50.0,the Greater Atlanta and Macon Area,G1300670031002,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,81909.0,,3304.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.008012779997873518,0.0009725229339679033,0.0,0.00898530293184142,0.003330927109127469,0.003021330360796243,0.0026330454619177077,0.0,0.0,0.002358404175159566,0.003021330360796243,0.0026330454619177077,0.0,0.0,0.0009725229339679033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.497832171176575e-05,0.0,0.0,0.0009548673575832389,0.0003668783262752003,0.0010198456792950047,0.0002810464237687211,0.0003600460437906887,0.00031377489002382906,0.0,0.0,6.497832171176575e-05,0.0,0.0,0.0,0.0,0.0,0.00037806534137564934,0.0003429256350680873,0.0002988547028512679,0.0,0.0 +97083,50.0,the Greater Atlanta and Macon Area,G1300630040606,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,165565.0,,3764.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014599769162542481,0.0010966388077000293,0.0,0.01569640797024251,0.009355038253228124,0.005657538499272844,0.0006838312177415445,0.0,0.0,0.008258399445528093,0.005657538499272844,0.0006838312177415445,0.0,0.0,0.0010966388077000293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.327166179247828e-05,0.0,0.0,0.0017398251879393958,0.0004623995832603519,0.0018130968497318738,0.0009841368865103595,0.0006741975077267323,8.149079370230396e-05,0.0,0.0,7.327166179247828e-05,0.0,0.0,0.0,0.0,0.0,0.0010806033086171768,0.000653503989557039,7.898955155765804e-05,0.0,0.0 +97084,35.0,Eastern Counties in South Carolina and Georgia,G1300510003602,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,30376.0,,6170.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0063383241584756425,0.004244316164732846,0.0,0.010582640323208489,0.00396123743913423,0.000718777549518454,0.003812992259044961,0.0003830563651943787,0.0017066484302874802,0.00396123743913423,0.000718777549518454,0.0010529208944801858,0.0003830563651943787,0.00022240363011940986,0.0,0.0027600713645647757,0.0014842448001680705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028358018452054437,0.0,0.0,0.0007553281503148297,0.0005230767125479072,0.0010389083348353741,0.0004720544536773409,8.565559340154821e-05,0.00012547493182280274,4.564822633782369e-05,2.6503491831790156e-05,0.0,0.00018441169707309404,9.916848744745037e-05,0.0,0.0,0.0,0.0003888786225449994,7.05631075308876e-05,0.00037432524564753926,3.760502467795557e-05,0.00016754337525493921 +97085,50.0,the Greater Atlanta and Macon Area,G1301210011617,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,13437.0,,761.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032264856536441218,0.0006038443453706834,0.0,0.0038303299990148053,0.0018441196231653374,0.0003540689826779751,0.0015588629258384663,0.0,7.319576025928708e-05,0.0012402752777946541,0.0003540689826779751,0.0015588629258384663,0.0,7.319576025928708e-05,0.0006038443453706834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0344358346140676e-05,0.0,0.0,0.00038449533330244277,0.00014592231868637174,0.0004248396916485834,0.00014780169742389154,4.2193856139749244e-05,0.00018576729748236246,0.0,8.722626181658043e-06,4.0344358346140676e-05,0.0,0.0,0.0,0.0,0.0,0.00020453987313630295,3.9271435479953046e-05,0.00017290072785007123,0.0,8.118481756542501e-06 +97086,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,99046.0,,21225.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.02110625511027113,0.01460039309950302,0.0,0.03570671992974517,0.016430758479792428,0.0015472866546907928,0.008115831920126547,0.000386857523658206,0.009225913631506174,0.013814844256969033,0.0015472866546907928,0.004278956910733387,0.000386857523658206,0.0010783097642197122,0.002615914222823397,0.00383687500939316,0.008147603867286461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009755153341260687,0.0,0.0,0.0025151917670124795,0.0017328341179838566,0.003490707101138548,0.0016462883802053027,0.00018438717028454275,0.0005099150530043752,4.610106593653581e-05,0.0001285000975817234,0.0001747805295194116,0.00025635819400749804,0.0005443766105991589,0.0,0.0,0.0,0.001606279305838025,0.00015126353032855029,0.0007934078563075345,3.781938827255957e-05,0.0009019300090110342 +97087,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,15866.0,,199.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035561560495690012,0.00015788780376833786,0.0,0.003714043853337339,0.0013205838463955218,0.0006901905303545204,0.0015453816728189592,0.0,0.00015788780376833786,0.0013205838463955218,0.0006901905303545204,0.0015453816728189592,0.0,0.0,0.0,0.0,0.00015788780376833786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0551725961868012e-05,0.0,0.0,0.00042377772441498163,0.00014553565802694757,0.0004343294503768497,0.0001573704892372494,8.224818266955884e-05,0.00018415905250817338,0.0,0.0,0.0,0.0,1.0551725961868012e-05,0.0,0.0,0.0,0.00015443233274322273,8.071258324933886e-05,0.0001807207451185017,0.0,1.8463789265786444e-05 +97088,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,28677.0,,317.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.003226077517992297,0.00011779520826713167,0.0,0.0033438727262594284,0.002117562610720552,0.00034660465064128063,0.0008187154458803373,0.0,6.091252216971415e-05,0.002117562610720552,0.00034660465064128063,0.0007009202376132056,0.0,6.091252216971415e-05,0.0,0.00011779520826713167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.870587623709087e-06,0.0,0.0,0.00038444648661398363,0.0001277969142235426,0.00039231707423769264,0.00025234654199607945,4.130432063084286e-05,8.35275411840488e-05,0.0,7.2588476279133556e-06,0.0,7.870587623709087e-06,0.0,0.0,0.0,0.0,0.0002484412643546782,4.066510109338866e-05,9.605510575765333e-05,0.0,7.146510779072887e-06 +97089,50.0,the Greater Atlanta and Macon Area,G1300210010400,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,24477.0,,327.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0027560978860607047,0.00012167005064433994,0.0,0.002877767936705045,0.0016969484706745937,0.00028135230500909314,0.0008328586205571475,0.0,6.656979204043822e-05,0.0016969484706745937,0.00028135230500909314,0.0007111885699128076,0.0,6.656979204043822e-05,0.0,0.00012167005064433994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.129168522289939e-06,0.0,0.0,0.00032843700325766524,0.00010788823950869317,0.00033656617177995517,0.00020222092735162228,3.3528021041698164e-05,8.475048866538055e-05,0.0,7.932948650273715e-06,0.0,8.129168522289939e-06,0.0,0.0,0.0,0.0,0.00019846473483776803,3.2905248199685655e-05,9.74060604330042e-05,0.0,7.785596530375975e-06 +97090,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,5773.0,,970.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013459749180334889,0.0007691757857755589,0.0,0.002115150703809048,0.0015250357326790894,0.0003007229201161218,0.0002449783524158286,0.0,4.44964056717474e-05,0.0007558599469035305,0.0003007229201161218,0.0002449783524158286,0.0,4.44964056717474e-05,0.0007691757857755589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1390871585003864e-05,0.0,0.0,0.00016039710952721415,9.745240890812184e-05,0.000211787981112218,9.007430158345891e-05,3.583654235227669e-05,2.919357493054002e-05,0.0,5.302546695688905e-06,5.139087158500386e-05,0.0,0.0,0.0,0.0,0.0,0.00015270034346321216,3.011109327144853e-05,2.4529443968655264e-05,0.0,4.4553817876895795e-06 +97091,50.0,the Greater Atlanta and Macon Area,G1300670030319,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,136555.0,,1851.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.016978978070570097,0.0006877457735306973,0.0,0.01766668509567702,0.01083061067695863,0.001950285665296471,0.004661396631357787,0.0,0.00022443087048790348,0.01083061067695863,0.001950285665296471,0.00397365085782709,0.0,0.00022443087048790348,0.0,0.0006877457735306973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5951051606870945e-05,0.0,0.0,0.0020233497945062653,0.0006712240678517371,0.002069300846113136,0.0012906615343113994,0.0002324115199221547,0.00047353177636527384,0.0,2.6744963907437012e-05,0.0,4.5951051606870945e-05,0.0,0.0,0.0,0.0,0.001268590667483882,0.00022843718306542055,0.0005459899206386996,0.0,2.6287613532442892e-05 +97092,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,276225.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,1133273.7058648225,0.0,0.0,0.0233536855667251,0.0,0.0,0.0233536855667251,0.006573928496212021,0.0065014089565305485,0.010278378803588829,0.0,0.0,0.006573928496212021,0.0065014089565305485,0.010278378803588829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027830132933367373,0.0008017121044603964,0.0027830132933367373,0.0007834022746487121,0.0007747602621328049,0.0012248544137759211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007834022746487121,0.0007747602621328049,0.0012248544137759211,0.0,0.0 +97093,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7332.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001532644783463106,0.0,0.0,0.001532644783463106,0.0007612359066965855,0.0003285952039662684,0.0003925277719667531,0.0,5.02031937597596e-05,0.0007612359066965855,0.0003285952039662684,0.0003925277719667531,0.0,5.02031937597596e-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.00018263784480166364,5.803345494764782e-05,0.00018263784480166364,9.071279065104485e-05,3.915709661631912e-05,4.67756306420968e-05,0.0,5.982471091393331e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.071279065104485e-05,3.915709661631912e-05,4.67756306420968e-05,0.0,5.982471091393331e-06 +97094,50.0,the Greater Atlanta and Macon Area,G1300890022302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,22330.0,,2766.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005090105433380753,0.002145236574808041,0.0,0.007235342008188794,0.003778381810443096,0.000686427187468732,0.0017826568235287628,0.00041085363877118946,0.000577022547977014,0.0022101677836120688,0.000686427187468732,0.0017826568235287628,0.00041085363877118946,0.0,0.0015682140268310268,0.0,0.000577022547977014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001433306546826812,0.0,0.0,0.0006065803654337665,0.0002933337656242397,0.0007499110201164477,0.0002633824386154051,8.180051664311178e-05,0.00021243658733820738,4.896082283704216e-05,0.0,0.00010477778804809343,0.0,3.855286663458775e-05,0.0,0.0,0.0,0.0003916124703783151,7.114512511056813e-05,0.0001847644514298015,4.258315239566458e-05,5.980582080209849e-05 +97095,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,402107.0,,51179.0,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.0,0.0,0.06098694524111739,0.026799213179096826,0.0,0.08778615842021423,0.06175551804387349,0.007876369896237306,0.017583272970228003,0.0,0.0005709975098754157,0.035527302374652084,0.007876369896237306,0.017583272970228003,0.0,0.0,0.026228215669221414,0.0,0.0005709975098754157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017905678605348483,0.0,0.0,0.00726769545289053,0.004045634401401024,0.009058263313425378,0.004233719411603623,0.0009386116562135081,0.0020953643850733995,0.0,0.0,0.0017524171214517391,0.0,3.8150739083109376e-05,0.0,0.0,0.0,0.006372277287960097,0.0008127275843708156,0.0018143397472042122,0.0,5.891869389025147e-05 +97096,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,49813.0,,1520.0,,9.325022323477118,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,349688.3371303919,0.0,0.0,0.011566392843861661,0.0012887294085992959,0.0,0.012855122252460957,0.007594673933346158,0.0031158067239113216,0.0018783401269838998,0.0,0.0002661246999034689,0.006305944524746861,0.0031158067239113216,0.0018783401269838998,0.0,0.0002661246999034689,0.0012887294085992959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.610698613689754e-05,0.0,0.0,0.001378340068295143,0.000394506819299237,0.0014644470544320407,0.0007514647067791509,0.0003713034228220584,0.00022383741360492402,0.0,3.1713460020912204e-05,8.610698613689754e-05,0.0,0.0,0.0,0.0,0.0,0.000865180248980628,0.0003549506484186071,0.00021397926928750006,0.0,3.0316750415239153e-05 +97097,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,196603.0,,4151.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014305919415383802,0.000705863418493722,0.0,0.015011782833877524,0.006408036302989803,0.004663226896365247,0.002934126589958858,0.0,0.001006393044563617,0.006408036302989803,0.004663226896365247,0.002228263171465136,0.0,0.001006393044563617,0.0,0.000705863418493722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.716178355257802e-05,0.0,0.0,0.0017048085264197669,0.000518603053409029,0.0017519703099723447,0.0007636331933477016,0.0005557076579785961,0.0002655377780008976,0.0,0.00011992989709257169,0.0,4.716178355257802e-05,0.0,0.0,0.0,0.0,0.000747858497041903,0.0005442281680667065,0.00034243119076487024,0.0,0.00011745245409886517 +97098,50.0,the Greater Atlanta and Macon Area,G1301170130307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14096.0,,308.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003196959228319189,0.0002443166958259141,0.0,0.003441275924145103,0.0013999826371852567,0.0004610919360966389,0.0015128777928394112,0.0,6.724085095005695e-05,0.0011556659413593426,0.0004610919360966389,0.0015128777928394112,0.0,6.724085095005695e-05,0.0002443166958259141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.632586308051341e-05,0.0,0.0,0.00038097582134376425,0.00012885518416074404,0.0003973016844242776,0.0001377186100180167,5.4947488073459037e-05,0.00018028689719097984,0.0,8.01297000963627e-06,1.632586308051341e-05,0.0,0.0,0.0,0.0,0.0,0.00016163059056551016,5.3233918733545184e-05,0.0001746645455558759,0.0,7.763080884371702e-06 +97099,50.0,the Greater Atlanta and Macon Area,G1301210010511,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,12193.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015361989328378106,0.0,0.0,0.0015361989328378106,0.0005343674248556009,0.00045653858328462653,0.0005453236143038808,0.0,0.0,0.0005343674248556009,0.00045653858328462653,0.0005453236143038808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000183067005510252,6.372710110797145e-05,0.000183067005510252,6.36799324745187e-05,5.440516169830806e-05,6.498556858142217e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.36799324745187e-05,5.440516169830806e-05,6.498556858142217e-05,0.0,0.0 +97100,50.0,the Greater Atlanta and Macon Area,G1301390001608,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,201555.0,,14770.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010375080558196678,0.0025118425720174605,0.0,0.01288692313021414,0.005374143467863685,0.003135224349185097,0.003177848138038904,0.0,0.001199707175126453,0.004799183307734212,0.003135224349185097,0.0012409657261509158,0.0,0.001199707175126453,0.0005749601601294723,0.0019368824118879886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016782683093935299,0.0,0.0,0.0012363778061016146,0.0004904186292235269,0.0014042046370409678,0.0005719091717710238,0.0003736184775374493,0.00014788342831069523,0.0,0.00014296672848244606,3.841552120577782e-05,0.00012941130973357517,0.0,0.0,0.0,0.0,0.0005855856437914685,0.0003416251128997235,0.00034626955140160636,0.0,0.00013072432894816938 +97101,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11803.0,,1146.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003213335228919572,0.000908868033321249,0.0,0.004122285969314561,0.002835612023152155,0.0006852281059301621,0.000496655977804541,0.0,0.0001047071553539632,0.002031451145184869,0.0006852281059301621,0.000496655977804541,0.0,0.0,0.000804160877967286,0.0,0.0001047071553539632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.072704997301147e-05,0.0,0.0,0.0003829315055758195,0.0001729954332533827,0.000443658555548831,0.0002420869875412663,8.165828074991414e-05,5.918623728463903e-05,0.0,0.0,5.37309224576932e-05,0.0,6.9961275153182775e-06,0.0,0.0,0.0,0.00030518104363772865,7.374726400870883e-05,5.345230179508707e-05,0.0,1.1269044808089964e-05 +97102,85.0,Rural Climate Zone 3A,G1300090970400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6670.0,,169.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013406816653141731,0.00013390275238393874,0.0,0.0014745017106243727,0.0008642062135020233,0.00039988870152955135,0.00018344428955378386,0.0,2.704521311275352e-05,0.0007573486742308381,0.00039988870152955135,0.00018344428955378386,0.0,0.0,0.00010685753927118519,0.0,2.704521311275352e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.94486847502189e-06,0.0,0.0,0.00015976357077227395,6.186668009609422e-05,0.00016870843924729584,9.025015530917414e-05,4.765310701319831e-05,2.186030844990152e-05,0.0,0.0,7.138214990567189e-06,0.0,1.8066534844546985e-06,0.0,0.0,0.0,9.888010330351102e-05,4.575416781246776e-05,2.0989192183671875e-05,0.0,3.0944390640490087e-06 +97103,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,11836.0,,1029.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002471866312846681,0.0008164842319544428,0.0,0.003288350544801124,0.0019420447984726777,0.0006121977598183536,0.0006433783266180724,0.0,9.072965989202025e-05,0.0011255605665182347,0.0006121977598183536,0.0006433783266180724,0.0,9.072965989202025e-05,0.0008164842319544428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.455415003318289e-05,0.0,0.0,0.0002945629383184094,0.0001395305292987255,0.0003491170883515923,0.00013412878601315735,7.295328635971717e-05,7.666895630805724e-05,0.0,1.081190963747767e-05,5.455415003318289e-05,0.0,0.0,0.0,0.0,0.0,0.00020618270961502398,6.499571639071622e-05,6.830608994911934e-05,0.0,9.632572396732733e-06 +97104,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,NaturalGas,37053.0,,7868.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007637101113597342,0.005412275892722071,0.0,0.0130493052863484,0.0042522770815155795,0.0002992874390481449,0.0065981656134652,0.000384275604701644,0.00151529954761783,0.0042522770815155795,0.0002992874390481449,0.002507115026792716,0.000384275604701644,0.00019407424156824352,0.0,0.004091050586672485,0.0013212253060495866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036161462443092885,0.0,0.0,0.000910096636899621,0.0006378483715561548,0.0012717112613305499,0.0005067345598138568,3.566542955141211e-05,0.00029876741452880746,4.579328337801728e-05,2.312740291543762e-05,0.0,0.00027333856417350054,8.827606025742834e-05,0.0,0.0,0.0,0.00041440280016426836,2.9166855879330273e-05,0.000643019787692908,3.744932034542334e-05,0.00014767249724861967 +97105,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,28078.0,,1003.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007108838402040952,0.0007957247564458766,0.0,0.00790448045141309,0.004227241245889741,0.001573336663742845,0.0019511425765840011,0.0,0.0001528426722702401,0.0034315164894438647,0.001573336663742845,0.0019511425765840011,0.0,0.0001528426722702401,0.0007957247564458766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.316380711828633e-05,0.0,0.0,0.0008471418156546794,0.00028366991520472246,0.0009003056227729656,0.0004089249107817461,0.00018749044535553523,0.00023251259508923046,0.0,1.8213864428167433e-05,5.316380711828633e-05,0.0,0.0,0.0,0.0,0.0,0.0004814749161422701,0.0001792001199306295,0.00022223151076504653,0.0,1.740849611690077e-05 +97106,50.0,the Greater Atlanta and Macon Area,G1302250040200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,123018.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.010960731510011954,0.0,0.0,0.010960731510011954,0.0032170686697629925,0.003015775542056359,0.0047279179877989,0.0,0.0,0.0032170686697629925,0.003015775542056359,0.0047279179877989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013061699964320114,0.00043221679630889396,0.0013061699964320114,0.00038337209237061955,0.0003593843645754265,0.0005634171967092912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038337209237061955,0.0003593843645754265,0.0005634171967092912,0.0,0.0 +97107,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,42082.0,,2364.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0037108641377078906,0.0006886302464527092,0.0,0.004399524757760038,0.0031401745778719724,0.000913243014294884,0.00034607679199374425,0.0,0.0,0.002451544331419263,0.000913243014294884,0.00034607679199374425,0.0,0.0,0.0006886302464527092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.601092771212123e-05,0.0,0.0,0.0004422175401121872,0.00014700685433912967,0.00048822846782430843,0.0002921464821899502,0.00010882965916277713,4.124139875945996e-05,0.0,0.0,4.601092771212123e-05,0.0,0.0,0.0,0.0,0.0,0.0003484745983418099,0.00010134531845377179,3.840518037922891e-05,0.0,0.0 +97108,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,13139.0,,1986.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0011172551172678698,0.0005845756207586427,0.0,0.0017018307380265122,0.0008191669712982827,0.00039390109683101526,0.0004887933595035122,0.0,0.0,0.00023459135053964007,0.00039390109683101526,0.0004887933595035122,0.0,0.0,0.0005845756207586427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905706483052416e-05,0.0,0.0,0.0001331420042620972,8.148262673958565e-05,0.00017219906909262138,2.7955980787789342e-05,4.694073958807905e-05,5.824894113122983e-05,0.0,0.0,3.905706483052416e-05,0.0,0.0,0.0,0.0,0.0,8.288708549979714e-05,3.985672644949409e-05,4.9458362458986544e-05,0.0,0.0 +97109,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,88660.0,,6926.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.007818134121677882,0.002017748584249291,0.0,0.009835882705927173,0.006586727653272546,0.002551898703961595,0.0006972563486930309,0.0,0.0,0.004568979069023256,0.002551898703961595,0.0006972563486930309,0.0,0.0,0.002017748584249291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001348136453392176,0.0,0.0,0.0009316732068307702,0.0003493917176878353,0.0010664868521699877,0.0005444771495255438,0.00030410525222825585,8.309080507697062e-05,0.0,0.0,0.0001348136453392176,0.0,0.0,0.0,0.0,0.0,0.0007141868860236142,0.0002766977298544479,7.560223629192552e-05,0.0,0.0 +97110,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,10178.0,,1878.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,5611.956475588368,0.0,0.0,0.0005657935632753051,0.0003194124609822512,0.0,0.0008852060242575563,0.0005357760613911556,0.0001490591484583839,7.343915700185871e-05,0.0,0.00012693165740615802,0.00028939495909810183,0.0001490591484583839,7.343915700185871e-05,0.0,5.390029871696051e-05,0.00024638110229305375,0.0,7.303135868919748e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1341207384917132e-05,0.0,0.0,6.742475145278781e-05,4.061389551400278e-05,8.876595883770496e-05,3.4486753571257635e-05,1.7763150182181286e-05,8.751631741952528e-06,0.0,6.423215957396349e-06,1.646169402280369e-05,0.0,4.879513362113442e-06,0.0,0.0,0.0,5.372610952525274e-05,1.4947230219696862e-05,7.3642711514195795e-06,0.0,1.2728347941335771e-05 +97111,50.0,the Greater Atlanta and Macon Area,G1300590001900,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,6576.0,,1255.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0004756275184017978,0.0003693494117928529,0.0,0.0008449769301946508,0.0004931205939914883,0.00015854250613393258,0.00019334451967552754,0.0,0.0,0.0001237711821986353,0.00015854250613393258,0.00019334451967552754,0.0,0.0,0.0003693494117928529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4677873270450233e-05,0.0,0.0,5.668075053543631e-05,4.092830559680067e-05,8.135862380588655e-05,1.4749868815938481e-05,1.88935835118121e-05,2.3040955502209882e-05,0.0,0.0,2.4677873270450233e-05,0.0,0.0,0.0,0.0,0.0,4.748012811219209e-05,1.526526897109686e-05,1.8616181672069345e-05,0.0,0.0 +97112,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950400,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,146922.0,,1048.0,,7.614023970037612,Education,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.041107346486907594,0.0007254229125098664,0.0,0.041832769399417456,0.0297973306842269,0.008271206809448949,0.0014107931274030421,0.0007629497643309102,0.001590489014007655,0.0297973306842269,0.008271206809448949,0.0014107931274030421,0.0007629497643309102,0.0008650661014977885,0.0,0.0,0.0007254229125098664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.847088052416061e-05,0.0,0.0,0.004898681999918627,0.0014270222764802877,0.004947152880442787,0.003550889559727116,0.0009856635219195346,0.000168121454908779,9.091922969438905e-05,0.00010308823366880831,0.0,0.0,4.8470880524160606e-05,0.0,0.0,0.0,0.0035238391442961015,0.0009781548097237182,0.00016684071803379195,9.022661369140359e-05,0.00018809159469777178 +97113,35.0,Eastern Counties in South Carolina and Georgia,G1300730030307,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,104023.0,,7318.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004905104486857608,0.0012444408769892458,0.0,0.006149563094208273,0.00340125069193157,0.0010656301820680136,0.0008049052173861372,0.0,0.000877759272461134,0.002849074046226865,0.0010656301820680136,0.0008049052173861372,0.0,0.00018549504117659242,0.0005521766457047045,0.0,0.0006922642312845416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.314650968245402e-05,0.0,0.0,0.0005845327267110718,0.0002317284319126442,0.0006676792363935258,0.0003395191734049355,0.00012698928588754325,9.591914763962599e-05,0.0,2.2105119778967045e-05,3.689332427715483e-05,0.0,4.62531854052992e-05,0.0,0.0,0.0,0.00036928549719420265,0.00011569913753891929,8.739133051902299e-05,0.0,9.53013460950008e-05 +97114,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6865.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016484346866981363,0.0,0.0,0.0016484346866981361,0.0010863574135658032,0.0002452264736370465,0.0002685498684315312,0.0,4.821822399001623e-05,0.0010863574135658032,0.0002452264736370465,0.0002685498684315312,0.0,4.821822399001623e-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.0001964420224146625,6.486662068689854e-05,0.0001964420224146625,0.00012945993499656778,2.922335038179089e-05,3.200277190208264e-05,0.0,5.746109029539322e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012945993499656778,2.9223350381790894e-05,3.200277190208265e-05,0.0,5.746109029539323e-06 +97115,50.0,the Greater Atlanta and Macon Area,G1300890022900,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,33330.0,,14416.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.006449848713404918,0.009916648672357524,0.0,0.01636649738576244,0.0054941800996219,0.0006356541031113607,0.00585450123400433,0.0003667042118028193,0.004015386017251015,0.0038185864167841793,0.0006356541031113607,0.0011914121585113308,0.0003667042118028193,0.00043742010322421184,0.001675593682837721,0.004663089075492999,0.0035779659140268037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000662574078557056,0.0,0.0,0.0007686128215624924,0.0008250999629049285,0.0014311869001195484,0.00045505167804707816,7.574935714612726e-05,0.0001419776961425551,4.3699251166438975e-05,5.212629236536501e-05,0.00011195364251805176,0.0003115610978572396,0.0002390593381817646,0.0,0.0,0.0,0.0004804448013609033,5.558549297002436e-05,0.0005119534910462697,3.206686511968121e-05,0.0003511299779885765 +97116,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,107463.0,,4809.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010752778737738722,0.001415619469694136,0.0,0.012168428897039153,0.005313475675959068,0.002665177479711403,0.004189714362156086,0.0,0.0,0.0038978562062649325,0.002665177479711403,0.004189714362156086,0.0,0.0,0.001415619469694136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.458382737472231e-05,0.0,0.0,0.0012813890347969656,0.00047200283240079777,0.001375972862171688,0.0004645004164731422,0.00031760434038357195,0.0004992806207158304,0.0,0.0,9.458382737472231e-05,0.0,0.0,0.0,0.0,0.0,0.0006008333857880387,0.00030137102463953573,0.00047376151114960073,0.0,0.0 +97117,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,10514.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0009368002322373776,0.0,0.0,0.0009368002322373778,0.0005144498703683918,0.00020479174282457066,0.00021755861904441503,0.0,0.0,0.0005144498703683918,0.00020479174282457066,0.00021755861904441503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011163576838458453,4.225873915585987e-05,0.00011163576838458453,6.130549993221262e-05,2.4404438408856102e-05,2.5925830043515796e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.130549993221261e-05,2.4404438408856095e-05,2.592583004351579e-05,0.0,0.0 +97118,85.0,Rural Climate Zone 3A,G1301470960500,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8091.0,,705.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006364180290192139,0.0002054166529975155,0.0,0.0008418346820167295,0.0005726030966004972,0.00020477880740932277,6.445277800690936e-05,0.0,0.0,0.0003671864436029818,0.00020477880740932277,6.445277800690936e-05,0.0,0.0,0.0002054166529975155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3725436369608806e-05,0.0,0.0,7.58408235600303e-05,3.8684989876367544e-05,8.956625992963912e-05,4.3756966354088024e-05,2.440313236489879e-05,7.68072484104349e-06,0.0,0.0,1.3725436369608806e-05,0.0,0.0,0.0,0.0,0.0,6.092160240271166e-05,2.1787260948391794e-05,6.857396578535654e-06,0.0,0.0 +97119,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,86868.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00722329755028895,0.0,0.0,0.00722329755028895,0.00359793509499833,0.0026827481703394296,0.0009426446585506277,0.0,0.0,0.00359793509499833,0.0026827481703394296,0.0009426446585506277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008607866284718872,0.0002046123999591983,0.0008607866284718872,0.00042875908105992415,0.00031969799617256867,0.00011233317080346074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042875908105992415,0.00031969799617256867,0.00011233317080346074,0.0,0.0 +97120,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,68693.0,,3272.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0061204281839508665,0.0009631932936534018,0.0,0.007083621477604268,0.0035189009477008992,0.0014429332192990919,0.0021217873106042775,0.0,0.0,0.0025557076540474975,0.0014429332192990919,0.0021217873106042775,0.0,0.0,0.0009631932936534018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.43540121353158e-05,0.0,0.0,0.000729360910881047,0.00028429986300403787,0.0007937149230163627,0.0003045592900492909,0.00017195187257129914,0.00025284974826045704,0.0,0.0,6.43540121353158e-05,0.0,0.0,0.0,0.0,0.0,0.0003942904351449394,0.00016167967651781873,0.0002377448113536047,0.0,0.0 +97121,85.0,Rural Climate Zone 3A,G1302610950400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,40851.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.003408737944100574,0.0,0.0,0.003408737944100574,0.002063673466599172,0.0010970032908932826,0.00024806118660811914,0.0,0.0,0.002063673466599172,0.0010970032908932826,0.00024806118660811914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040621303211813584,0.00011246503152260804,0.00040621303211813584,0.0002459241719123072,0.00013072786478307991,2.9560995422748672e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002459241719123072,0.00013072786478307991,2.9560995422748672e-05,0.0,0.0 +97122,50.0,the Greater Atlanta and Macon Area,G1302970110603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5448.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0009574997926799619,0.0,0.0,0.0009574997926799619,0.0003249560927217389,0.0003275200120076574,0.0002593693832464681,0.0,4.5737011777837006e-05,0.0003249560927217389,0.0003275200120076574,0.0002593693832464681,0.0,4.5737011777837006e-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.00011410510895529394,3.418960970825388e-05,0.00011410510895529394,3.87249696022588e-05,3.9030511485096665e-05,3.0909011115470494e-05,0.0,5.450472942236984e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.87249696022588e-05,3.9030511485096665e-05,3.0909011115470494e-05,0.0,5.450472942236984e-06 +97123,50.0,the Greater Atlanta and Macon Area,G1301350050610,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5267.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012646738645477498,0.0,0.0,0.0012646738645477496,0.0006119496385971358,0.00037888110479976735,0.00021305342195245596,0.0,6.070699212465166e-05,0.0006119496385971358,0.00037888110479976735,0.00021305342195245596,0.0,6.070699212465166e-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.00015071301006508984,4.859475596426412e-05,0.00015071301006508984,7.292692181489765e-05,4.5151808194897435e-05,2.5389883848516874e-05,0.0,7.234539885408145e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.292692181489766e-05,4.515180819489744e-05,2.538988384851688e-05,0.0,7.234539885408147e-06 +97124,50.0,the Greater Atlanta and Macon Area,G1301350050538,ComStock 90.1-2004,gen3_t5_cfl,50001_100000,Electricity,128170.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.011302228965983518,0.0,0.0,0.011302228965983518,0.007288722283477866,0.0028380180106652173,0.0011754886718404333,0.0,0.0,0.007288722283477866,0.0028380180106652173,0.0011754886718404333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013468663770392628,0.0003389922418900918,0.0013468663770392628,0.0008685839761996812,0.0003382015217972723,0.0001400808790423091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008685839761996812,0.0003382015217972723,0.0001400808790423091,0.0,0.0 +97125,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,34252.0,,3241.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028629547358036116,0.0009440418441247642,0.0,0.0038069965799283753,0.002801022966550035,0.0007221627002319872,0.00028381091314635303,0.0,0.0,0.0018569811224252708,0.0007221627002319872,0.00028381091314635303,0.0,0.0,0.0009440418441247642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.307465846118827e-05,0.0,0.0,0.0003411739758578756,0.00015262587820855388,0.00040424863431906386,0.00022129362532621945,8.605903424639657e-05,3.382131628525949e-05,0.0,0.0,6.307465846118827e-05,0.0,0.0,0.0,0.0,0.0,0.0002974286120702235,7.668335896704188e-05,3.0136663281798427e-05,0.0,0.0 +97126,50.0,the Greater Atlanta and Macon Area,G1301210011618,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,33480.0,,4700.0,,3.3063363735822096,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.0029900233745241045,0.0014127493789766602,0.0,0.0044027727535007645,0.0014849835201567853,0.00047358019154622336,0.0015204581612916664,0.0,0.0009237195424838854,0.0014849835201567853,0.00047358019154622336,0.0010314283247988916,0.0,0.0,0.0,0.0004890298364927749,0.0009237195424838854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.439222173059008e-05,0.0,0.0,0.0003563143757632837,0.0002336617942094584,0.00045070659749387376,0.00017696215371147193,5.643548868627366e-05,0.00012291299888375629,0.0,0.0,0.0,3.267431113120513e-05,6.171791059938496e-05,0.0,0.0,0.0,0.00015201599246115254,4.847983957440884e-05,0.00015564748917887557,0.0,9.456006824346709e-05 +97127,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,31813.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,14029.891188970922,0.0,0.0,0.0015813709350545094,0.0,0.0,0.0015813709350545094,0.0008741954698157034,0.00043086551286870324,0.00013875780847333324,0.0,0.00013755214389676965,0.0008741954698157034,0.00043086551286870324,0.00013875780847333324,0.0,0.00013755214389676965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001884487474765784,5.551928956245976e-05,0.0001884487474765784,0.00010417609030533355,5.1345363969372494e-05,1.653548489462611e-05,0.0,1.6391808307246277e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00010417609030533355,5.1345363969372494e-05,1.653548489462611e-05,0.0,1.6391808307246277e-05 +97128,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,202425.0,,21788.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,240343.828889517,0.0,0.0,0.017904477528568757,0.006347292568904749,0.0,0.024251739723874073,0.017608729790843367,0.005371236950972595,0.0012718033556575444,0.0,0.0,0.011261437221938618,0.005371236950972595,0.0012718033556575444,0.0,0.0,0.006347292568904749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042408835624706617,0.0,0.0,0.0021336414161226263,0.0011509786838708076,0.0025577297723696924,0.0013420033521477407,0.0006400797563691575,0.00015155830760572815,0.0,0.0,0.0004240883562470661,0.0,0.0,0.0,0.0,0.0,0.0018571192397927735,0.0005664819439914484,0.0001341317919622364,0.0,0.0 +97130,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,24753.0,,,6909.0,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002182707602795721,0.0,0.0006511795983459613,0.002833887201141683,0.0018902402138096094,0.0007148122891680514,0.00022886507176346,0.0,0.0,0.0012390606154636479,0.0007148122891680514,0.00022886507176346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006511795983459613,0.0,0.0,0.0,0.0,5.251577509188221e-05,0.00026010954076593524,0.0001109169424552597,0.00031262531585781746,0.00014765673938946263,8.518296084697783e-05,2.727346009951466e-05,0.0,0.0,0.0,0.0,0.0,5.251577509188222e-05,0.0,0.0,0.00020852521711213766,7.885579129267506e-05,2.524765817074474e-05,0.0,0.0 +97131,50.0,the Greater Atlanta and Macon Area,G1300670031005,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,32144.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029656175019032124,0.0,0.0,0.002965617501903212,0.0020205429553975646,0.0007262631361560837,0.00021881141034956416,0.0,0.0,0.0020205429553975646,0.0007262631361560837,0.00021881141034956416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003534082636349657,8.06599963402783e-05,0.0003534082636349657,0.00024078512384306133,8.654770675122045e-05,2.6075433040683885e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024078512384306138,8.654770675122046e-05,2.6075433040683888e-05,0.0,0.0 +97132,50.0,the Greater Atlanta and Macon Area,G1301210011900,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,13100.0,,2234.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0011671871067142324,0.0006576475733534729,0.0,0.0018248346800677053,0.0009054968338137205,0.000392888339823191,0.0005264801960370913,0.0,0.0,0.0002478492604602477,0.000392888339823191,0.0005264801960370913,0.0,0.0,0.0006576475733534729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3940524742529955e-05,0.0,0.0,0.00013909029297566998,8.724676009679917e-05,0.0001830308177181999,2.953547554878814e-05,4.6819360819166144e-05,6.273911379884357e-05,0.0,0.0,4.3940524742529955e-05,0.0,0.0,0.0,0.0,0.0,9.082128246708744e-05,3.9406678805072144e-05,5.2805934611858513e-05,0.0,0.0 +97133,50.0,the Greater Atlanta and Macon Area,G1300670031313,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,54063.0,,6239.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004816948535668535,0.0018365274200671296,0.0,0.006653475955735666,0.002981648699853314,0.001550070634884372,0.0021217873106042775,0.0,0.0,0.0011451212797861838,0.001550070634884372,0.0021217873106042775,0.0,0.0,0.0018365274200671296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012270542436507132,0.0,0.0,0.0005740265475540593,0.00028968201446754504,0.0006967319719191306,0.00013646191357432046,0.0001847189540056221,0.00025284933719582435,0.0,0.0,0.00012270542436507132,0.0,0.0,0.0,0.0,0.0,0.00031222927565073246,0.00016231873042630015,0.00022218717956527906,0.0,0.0 +97134,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,4365.0,,830.0,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0010480640384245036,0.0006587618423335836,0.0,0.0017068258807580875,0.0011021544646500107,0.00023927156432781638,0.0003363696688977633,0.0,2.903018288249691e-05,0.000472422805198924,0.00023927156432781638,0.0003363696688977633,0.0,0.0,0.0006297316594510865,0.0,2.903018288249691e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4014479265347016e-05,0.0,0.0,0.00012490020568766238,8.677887788774854e-05,0.0001689146849530094,5.629971392739327e-05,2.851454348598542e-05,4.0085948274283695e-05,0.0,0.0,4.207485814517917e-05,0.0,1.939621120167835e-06,0.0,0.0,0.0,0.00010907385238570543,2.367932274890033e-05,3.328856053224253e-05,0.0,2.8729492861610844e-06 +97135,50.0,the Greater Atlanta and Macon Area,G1300670030310,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,25221.0,,1275.0,,8.72605822017302,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.0063477679094918445,0.0010111766835367725,0.0,0.007358944593028616,0.0033124183032592625,0.0015784645023146822,0.0023101739836863346,0.0,0.00015788780376833789,0.0023012416197224898,0.0015784645023146822,0.0023101739836863346,0.0,0.00015788780376833789,0.0010111766835367725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.755898083186735e-05,0.0,0.0,0.0007564545903111886,0.0003088753178143762,0.000824013571143056,0.0002742357331702738,0.00018810339877640435,0.0002753001904439364,0.0,1.881526792057406e-05,6.755898083186735e-05,0.0,0.0,0.0,0.0,0.0,0.0003709061266440321,0.00017674765111114487,0.00025868039773835463,0.0,1.7679395649524527e-05 +97136,50.0,the Greater Atlanta and Macon Area,G1301210010001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,99960.0,,8189.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0051454927269906844,0.001392560316292367,0.0,0.006538053043283051,0.002371240805956442,0.0022037598119826226,0.0012640861174426647,0.0,0.0006989485775399016,0.001989559315666965,0.0022037598119826226,0.0008154370520696485,0.0,0.00013671881691002717,0.00038168149028947664,0.00044864906537301605,0.0005622297606298743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.304314025198548e-05,0.0,0.0,0.0006131785752074542,0.0002612797876268722,0.0007062217154594396,0.00023709199705445347,0.0002626178625270843,9.717408152899309e-05,0.0,1.6292521203497766e-05,2.5501835731713263e-05,2.997623688183548e-05,3.756506763843673e-05,0.0,0.0,0.0,0.0002561346227483464,0.0002380438067075439,0.00013654295253324281,0.0,7.549841828757927e-05 +97137,85.0,Rural Climate Zone 3A,G1302770960300,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,81374.0,,7433.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,56751.431377317895,0.0,0.0,0.016943627992525065,0.005113418773500021,0.0,0.022057046766025084,0.007194158572604929,0.0006915239605325218,0.010460286052655856,0.0003776056473971922,0.0033334008128635705,0.006699577652481275,0.0006915239605325218,0.0058414481992794896,0.0003776056473971922,0.0033334008128635705,0.0004945809201236537,0.004618837853376367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003416479159638394,0.0,0.0,0.0020191406805629723,0.0008889106081102001,0.002360788596526812,0.0007983762265486076,8.240762609467285e-05,0.0006961145333083297,4.499856372002205e-05,0.00039723518415559064,3.3044925150940933e-05,0.0003086029908128984,0.0,0.0,0.0,0.0,0.0007699982549781754,7.401452685700752e-05,0.0011195752673270785,4.041552415496211e-05,0.0003567773469466911 +97138,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,59329.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.005231700635155562,0.0,0.0,0.005231700635155562,0.003952972098826211,0.0008538018801952037,0.00042495702973358577,0.0,0.0,0.003952972098826211,0.0008538018801952037,0.00042495702973358577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006234516553667847,0.00022708064573977852,0.0006234516553667847,0.00047106804660634676,0.00010174592024360835,5.064130807998308e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00047106804660634676,0.00010174592024360835,5.064130807998308e-05,0.0,0.0 +97140,50.0,the Greater Atlanta and Macon Area,G1301210011900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,66174.0,,12043.0,,9.325022323477118,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,699376.6742607838,0.0,0.0,0.01698027606135986,0.010209519249401992,0.0,0.027189795310761856,0.01873691120270209,0.0038159860240226736,0.004074067765543142,0.0,0.0005629187026520071,0.009090222271794046,0.0038159860240226736,0.004074067765543142,0.0,0.0,0.009646688930908044,0.0,0.0005629187026520071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006821415052989217,0.0,0.0,0.002023508742098694,0.0012250526395183262,0.002705650247397616,0.0010832653231388286,0.00045474414264133747,0.0004854992763185281,0.0,0.0,0.0006445364123159371,0.0,3.761099830537544e-05,0.0,0.0,0.0,0.0018645057033949985,0.00037972788731793853,0.0004054095417700145,0.0,5.6015910001805455e-05 +97141,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970200,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,71165.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0088679368390449,0.0,0.0,0.008867936839044898,0.005569880291295491,0.0027643924056281063,0.0005336945157207373,0.0,0.0,0.005569880291295491,0.0027643924056281063,0.0005336945157207373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010567760493579777,0.00031326077591316016,0.0010567760493579777,0.0006637525950473574,0.00032942766038120575,6.359941349651333e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006637525950473575,0.0003294276603812058,6.359941349651333e-05,0.0,0.0 +97142,50.0,the Greater Atlanta and Macon Area,G1301350050727,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5223.0,,849.0,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.001254004652035379,0.0006735664085329196,0.0,0.001927571060568299,0.0012431700253755298,0.00026036186813133984,0.00038880595364848417,0.0,3.515050633920565e-05,0.000604754123181816,0.00026036186813133984,0.00038880595364848417,0.0,0.0,0.000638415902193714,0.0,3.515050633920565e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.50025592772445e-05,0.0,0.0,0.00014943926832830873,9.598149508761546e-05,0.0001944418276055532,7.206832410081742e-05,3.102722706090991e-05,4.633386099534226e-05,0.0,0.0,4.2654071102781224e-05,0.0,2.348488174463275e-06,0.0,0.0,0.0,0.0001254035489032468,2.626374638729433e-05,3.9220416698434114e-05,0.0,3.5457726221728354e-06 +97143,50.0,the Greater Atlanta and Macon Area,G1301510070502,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,119958.0,,12375.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0061748465895932695,0.002104434327307487,0.0,0.008279280916900758,0.003837080705997887,0.002571682541810139,0.0009847620036311528,0.0,0.0008857556654615778,0.00300515441780759,0.002571682541810139,0.00042120246589477444,0.0,0.00017680716408076657,0.0008319262881902974,0.0005635595377363784,0.0007089485013808113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001406060721563479,0.0,0.0,0.000735845501932925,0.0003406610246729787,0.000876451574089273,0.00035811891500015885,0.00030646284135701414,5.019394983092874e-05,0.0,2.106979574482326e-05,5.558447996602943e-05,3.765377327252713e-05,4.736781891779132e-05,0.0,0.0,0.0,0.0004061965596329021,0.00027224045595872085,0.00010424772596179996,0.0,9.376683253584991e-05 +97144,50.0,the Greater Atlanta and Macon Area,G1300590001900,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,77601.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006585897442668123,0.0,0.0,0.006585897442668123,0.0031781235593712066,0.0012860172622989373,0.0021217873106042775,0.0,0.0,0.0031781235593712066,0.0012860172622989373,0.0021217873106042775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007848298640857192,0.0002755492029021404,0.0007848298640857192,0.00037873141858984436,0.00015325242489246346,0.00025284967783004603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037873141858984436,0.00015325242489246346,0.00025284967783004603,0.0,0.0 +97145,81.0,the Columbus-Albany Area,G1302150000300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12853.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029304770367311406,0.0,0.0,0.0029304770367311406,0.0012671550767599292,0.0007139274605177017,0.0008790107797013594,0.0,7.038371975215063e-05,0.0012671550767599292,0.0007139274605177017,0.0008790107797013594,0.0,7.038371975215063e-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.00034922366780889826,0.00011349515903328212,0.00034922366780889826,0.00015100631673346497,8.5078423473877e-05,0.00010475133047733606,0.0,8.387597124220266e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015100631673346497,8.5078423473877e-05,0.00010475133047733606,0.0,8.387597124220266e-06 +97146,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,17472.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003899555819734606,0.0,0.0,0.003899555819734605,0.0017896983686448735,0.0006165812347265369,0.0014295090625101893,0.0,6.376715385300602e-05,0.0017896983686448735,0.0006165812347265369,0.0014295090625101893,0.0,6.376715385300602e-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.0004647022643599162,0.0001270202399312698,0.0004647022643599162,0.0002132747735579594,7.347675201601679e-05,0.00017035173465390125,0.0,7.5990041320387574e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00021327477355795945,7.34767520160168e-05,0.00017035173465390128,0.0,7.599004132038759e-06 +97147,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,78541.0,,5027.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006389967476114791,0.0014644023496923285,0.0,0.007854369825807119,0.005208161095591304,0.0018916070257843079,0.0007546017044315063,0.0,0.0,0.003743758745898976,0.0018916070257843079,0.0007546017044315063,0.0,0.0,0.0014644023496923285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.784219066095033e-05,0.0,0.0,0.0007614797860690565,0.0002879433724040497,0.0008593219767300069,0.00044613632535335604,0.0002254190680477077,8.992439266799273e-05,0.0,0.0,9.784219066095033e-05,0.0,0.0,0.0,0.0,0.0,0.0005698085762509832,0.0002069547939100644,8.25586065689592e-05,0.0,0.0 +97148,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,57603.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.006025362788464017,0.0,0.0,0.006025362788464017,0.003414964531985313,0.0019600994925164385,0.0006502683903628288,0.0,0.0,0.003414964531985313,0.0019600994925164385,0.0006502683903628288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007180312766298671,0.00023077403191850503,0.0007180312766298671,0.0004069549716146149,0.0002335814108368253,7.749127461307537e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004069549716146149,0.0002335814108368253,7.749127461307537e-05,0.0,0.0 +97149,85.0,Rural Climate Zone 3A,G1300990090300,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,24567.0,,13263.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005602035050987602,0.010286219353364346,0.0,0.015888254404351945,0.0036828043648560963,0.00044546205392451935,0.010753190375585092,0.00042840042869706,0.0005784780420722475,0.0036828043648560963,0.00044546205392451935,0.0010453682035099267,0.00042840042869706,0.0,0.0,0.009707822172075165,0.0005784780420722475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006872673021328827,0.0,0.0,0.0006675791654178022,0.0008570472927806849,0.0013548464675506848,0.0004388697039398644,5.3084492238548975e-05,0.0001245736641241534,5.1051305115235516e-05,0.0,0.0,0.0006486220568109595,3.8650647984487286e-05,0.0,0.0,0.0,0.0003140454802283891,3.798609179005809e-05,0.0009169617772025929,3.653118792952038e-05,4.9328825679084335e-05 +97150,50.0,the Greater Atlanta and Macon Area,G1302970110504,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,25525.0,,2517.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0021845782450893776,0.0007409698544517359,0.0,0.0029255174099348156,0.0011208151115984033,0.0007034671555559432,0.0011012658323867666,0.0,0.0,0.0003798452571466673,0.0007034671555559432,0.0011012658323867666,0.0,0.0,0.0007409698544517359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9506357590965583e-05,0.0,0.0,0.0002603307931972118,0.00012439510468607455,0.0003098371507881774,4.526522101347077e-05,8.383044324721476e-05,0.00013123512893652622,0.0,0.0,4.950635759096558e-05,0.0,0.0,0.0,0.0,0.0,0.00011870384348378223,7.450314888243084e-05,0.00011663340871202984,0.0,0.0 +97151,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,27399.0,,6470.0,,8.72605822017302,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.006947146072880606,0.005132718289187679,0.0,0.012079864362068284,0.008503527786506893,0.0013994036876690816,0.001972398294535004,0.0,0.00020453459335730725,0.0035753440906765212,0.0013994036876690816,0.001972398294535004,0.0,0.0,0.0049281836958303725,0.0,0.00020453459335730725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003429387671399839,0.0,0.0,0.0008278802681275477,0.0005737076617867854,0.0011708190352675318,0.00042606802755914815,0.0001667646956048205,0.0002350475449635792,0.0,0.0,0.0003292729399249599,0.0,1.3665827215024095e-05,0.0,0.0,0.0,0.0008241890720753086,0.0001356346748967974,0.00019117114225406765,0.0,1.982414604135815e-05 +97152,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,150261.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012831175214481069,0.0,0.0,0.01283117521448107,0.007244407201898187,0.004510904746898274,0.001075893639284045,0.0,0.0,0.007244407201898187,0.004510904746898274,0.001075893639284045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015290663584200496,0.0004191572548814426,0.0015290663584200496,0.0008633020088929115,0.000537555802895987,0.00012821216619430932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008633020088929114,0.0005375558028959869,0.0001282121661943093,0.0,0.0 +97153,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,116421.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009713444530860718,0.0,0.0,0.009713444530860716,0.002685309861442696,0.002461644010745038,0.0045664599690666855,0.0,0.0,0.002685309861442696,0.002461644010745038,0.0045664599690666855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011575306461102312,0.00036949331265996203,0.0011575306461102312,0.0003200026982237276,0.0002933489117272587,0.0005441753789437541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032000269822372765,0.00029334891172725876,0.0005441753789437542,0.0,0.0 +97154,50.0,the Greater Atlanta and Macon Area,G1300450911200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,37006.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003297199231806294,0.0,0.0,0.0032971992318062936,0.0013351513219815596,0.000874285504208957,0.0010877930952220751,0.0,0.0,0.0013351513219815596,0.000874285504208957,0.0010877930952220751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039292253044350626,0.00013208512847798516,0.00039292253044350626,0.0001591080790318488,0.00010418735675116214,0.00012963075189711251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015910807903184884,0.00010418735675116215,0.00012963075189711254,0.0,0.0 +97155,81.0,the Columbus-Albany Area,G1301450120300,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,4137.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000993311955609082,0.0,0.0,0.000993311955609082,0.0005783705666589767,0.00018865483519936023,0.00019560222939346206,0.0,3.076703143102237e-05,0.0005783705666589767,0.00018865483519936023,0.00019560222939346206,0.0,3.076703143102237e-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.00011837410923998849,3.695518974750502e-05,0.00011837410923998849,6.892507459743876e-05,2.248221008962646e-05,2.3310138913619718e-05,0.0,3.666541934827288e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.892507459743876e-05,2.248221008962646e-05,2.3310138913619718e-05,0.0,3.666541934827288e-06 +97156,81.0,the Columbus-Albany Area,G1302150010402,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,3721.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0005559569496756245,0.0,0.0,0.0005559569496756245,0.0002975800513140281,0.00011570719616129109,0.00011537636786633386,0.0,2.721062726023214e-05,0.0002975800513140281,0.00011570719616129109,0.00011537636786633386,0.0,2.721062726023214e-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,6.625165503149008e-05,2.2423889014364565e-05,6.625165503149008e-05,3.5461686224829115e-05,1.378846554434017e-05,1.3749041768659427e-05,0.0,3.2426055497411837e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.5461686224829115e-05,1.378846554434017e-05,1.3749041768659427e-05,0.0,3.2426055497411837e-06 +97157,50.0,the Greater Atlanta and Macon Area,G1301350050723,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,18775.0,,463.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004508279882455909,0.0003670539932550463,0.0,0.004875333875710954,0.003627284132984805,0.0004996334324591561,0.0006715814387631763,0.0,7.691757857755591e-05,0.003260230139729759,0.0004996334324591561,0.0006715814387631763,0.0,7.691757857755591e-05,0.0003670539932550463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4523939131634193e-05,0.0,0.0,0.000537247922481819,0.000192078906845241,0.0005617718616134532,0.0003885188841532741,5.954089599355461e-05,8.00317953099923e-05,0.0,9.166203157425227e-06,2.452393913163419e-05,0.0,0.0,0.0,0.0,0.0,0.0004179623820513549,5.7571442414488794e-05,7.738455759073812e-05,0.0,8.863009674801289e-06 +97158,85.0,Rural Climate Zone 3A,G1300310110401,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,17433.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0014150756242054198,0.0,0.0,0.0014150756242054196,0.0008691709215107061,0.0004527184996196909,9.31862030750226e-05,0.0,0.0,0.0008691709215107061,0.0004527184996196909,9.31862030750226e-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.00016863111227714326,5.217815093210453e-05,0.00016863111227714326,0.00010357697973604781,5.3949359902355064e-05,1.110477263874038e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010357697973604782,5.394935990235507e-05,1.1104772638740382e-05,0.0,0.0 +97159,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,NaturalGas,7430.0,,1388.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001383606636584874,0.0011014101009863568,0.0,0.002484934030497492,0.0019192176461206283,0.00033777568915133155,0.00019014356252666778,0.0,3.78798397726028e-05,0.0008556873849068747,0.00033777568915133155,0.00019014356252666778,0.0,0.0,0.001063530261213754,0.0,3.78798397726028e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.35888228775824e-05,0.0,0.0,0.0001648769736927675,0.00010956746822065554,0.0002384657965703499,0.00010196767109960982,4.025091521078741e-05,2.2658387382370284e-05,0.0,0.0,7.105794648816041e-05,0.0,2.5308763894219977e-06,0.0,0.0,0.0,0.00018417702810500806,3.2414521990125107e-05,1.824705828973987e-05,0.0,3.635125139930778e-06 +97160,50.0,the Greater Atlanta and Macon Area,G1301210011416,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12916.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002790371253816754,0.0,0.0,0.0027903712538167535,0.0013508546353841078,0.0006646340445690744,0.0006887845101009523,0.0,8.609806376261903e-05,0.0013508546353841078,0.0006646340445690744,0.0006887845101009523,0.0,8.609806376261903e-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.0003325218918800469,9.38549665153798e-05,0.0003325218918800469,0.00016097812733643975,7.920285503432499e-05,8.20808084526952e-05,0.0,1.02601010565869e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00016097812733643978,7.9202855034325e-05,8.208080845269521e-05,0.0,1.0260101056586901e-05 +97161,50.0,the Greater Atlanta and Macon Area,G1300630040613,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,12734.0,,2063.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0024995844298360765,0.00141905134651488,0.0,0.003918635776350957,0.0009330768229130998,0.00019486316124941525,0.0018528854511883116,0.00036964473061445937,0.0005680938904146552,0.0006623339323291682,0.00019486316124941525,0.0011828057619894575,0.00036964473061445937,8.986512368256065e-05,0.0002707428905839317,0.000670079689198854,0.00047822876673209457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.481319933456853e-05,0.0,0.0,0.0002978717631191411,0.0001724692052929065,0.0003926849624537095,7.892935075190142e-05,2.3221553437240514e-05,0.00014095320547919416,4.405001340284784e-05,1.0709093285558469e-05,1.80895495546344e-05,4.477103615601303e-05,3.195261362392111e-05,0.0,0.0,0.0,9.350326442261358e-05,1.9527161370963963e-05,0.0001856769282366043,3.7041954253201414e-05,5.6928467140009395e-05 +97162,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,109533.0,,4658.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005229428257953215,0.0007922102786093792,0.0,0.006021638536562593,0.0023036526682232005,0.0011575266453081473,0.0016294911359485327,0.0,0.0009309680870827126,0.0023036526682232005,0.0011575266453081473,0.0008372808573391535,0.0,0.0009309680870827126,0.0,0.0007922102786093792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.29312615118627e-05,0.0,0.0,0.0006231810927082867,0.00020151737931979402,0.0006761123542201494,0.00027452193933827514,0.00013794026499264428,9.977717904185711e-05,0.0,0.00011094170933551006,0.0,5.29312615118627e-05,0.0,0.0,0.0,0.0,0.0002586551848572133,0.00012996762600077868,0.0001829600168488253,0.0,0.0001045295265133321 +97163,50.0,the Greater Atlanta and Macon Area,G1300890021909,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,53646.0,,8656.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026254409976357385,0.0014719923354542036,0.0,0.004097433333089942,0.0024863108515725844,0.0005343044413932912,0.0005266271948984084,0.0,0.0005501731148642385,0.001468978174012795,0.0005343044413932912,0.0005266271948984084,0.0,9.551345696982445e-05,0.0010173326775597897,0.0,0.00045465965789441397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.835003809133818e-05,0.0,0.0,0.00031286854660510406,0.00018641892539370312,0.0004112185846964423,0.00017505518757110865,6.367199040995713e-05,6.275710831778818e-05,0.0,1.1382147414582349e-05,6.797230201521064e-05,0.0,3.0377736076127544e-05,0.0,0.0,0.0,0.0002495262634884807,5.362281660872832e-05,5.285232782188315e-05,0.0,5.521539735751917e-05 +97164,50.0,the Greater Atlanta and Macon Area,G1302190030100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,49956.0,,782.0,,4.088175128053588,Healthcare,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.00537006655372541,0.00029065192671439295,0.0,0.00566067973201603,0.0025986630402747325,0.0008326261300145149,0.0020421969264838515,0.0,0.00018719363524293195,0.0025986630402747325,0.0008326261300145149,0.0017515449997694587,0.0,0.00018719363524293195,0.0,0.00029065192671439295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9418384378287818e-05,0.0,0.0,0.000639940163890048,0.000194456545693382,0.0006593585482683357,0.00030967751242016675,9.922240195160727e-05,0.0002087281382826929,0.0,2.2307493662891607e-05,0.0,1.9418384378287818e-05,0.0,0.0,0.0,0.0,0.0003026934521631889,9.698467009740702e-05,0.00023787602628507726,0.0,2.1804399722662572e-05 +97165,50.0,the Greater Atlanta and Macon Area,G1300770170603,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,20220.0,,1316.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0016717856134610613,0.00038739490029590217,0.0,0.002059149824150666,0.0006876926979189239,0.00048550957162965807,0.0008859782442083818,0.0,0.0,0.0003002977976230217,0.00048550957162965807,0.0008859782442083818,0.0,0.0,0.00038739490029590217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5883105614332627e-05,0.0,0.0,0.00019922166858028092,8.380150834961106e-05,0.00022510477419461353,3.5785586280758686e-05,5.7856716909719215e-05,0.00010557936538980304,0.0,0.0,2.5883105614332627e-05,0.0,0.0,0.0,0.0,0.0,7.517806993193185e-05,5.307555633359346e-05,9.685450289472248e-05,0.0,0.0 +97166,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock 90.1-2007,gen2_t8_halogen,500001_1mil,Electricity,579476.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,2428443.6554246196,0.0,0.0,0.04275663673553433,0.0,0.0,0.04275663673553432,0.011048074129535216,0.011298010283223707,0.020410552322775406,0.0,0.0,0.011048074129535216,0.011298010283223707,0.020410552322775406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005095226361619783,0.0015005987707998798,0.005095226361619783,0.0013165777958197929,0.0013463622076965364,0.002432286358103454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001316577795819793,0.0013463622076965367,0.0024322863581034545,0.0,0.0 +97167,50.0,the Greater Atlanta and Macon Area,G1300890023309,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,32083.0,,3244.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002706469951500314,0.0009450745465056478,0.0,0.0036515444980059616,0.002682414060745615,0.0006810672201927092,0.0002880328434682006,0.0,0.0,0.0017373395142399667,0.0006810672201927092,0.0002880328434682006,0.0,0.0,0.0009450745465056478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.314494678450838e-05,0.0,0.0,0.00032252343039766224,0.00015015418852170202,0.0003856683771821707,0.00020703451726388665,8.116112135890715e-05,3.4324172227022105e-05,0.0,0.0,6.314494678450838e-05,0.0,0.0,0.0,0.0,0.0,0.00028331087798692594,7.193287380370995e-05,3.042141739644925e-05,0.0,0.0 +97168,50.0,the Greater Atlanta and Macon Area,G1301210010601,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,18356.0,,3215.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006475493229693839,0.002493746549833395,0.0,0.008969239779527235,0.0038936892870988166,0.0004668901614376792,0.0037101353095332582,0.0004151392602738215,0.0004833857611836589,0.0038936892870988166,0.0004668901614376792,0.0012163887596998628,0.0004151392602738215,0.0004833857611836589,0.0,0.002493746549833395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016661746026496027,0.0,0.0,0.0007716721178053267,0.0003744618700527864,0.000938289578070287,0.0004640034900312167,5.563840573671932e-05,0.0001449547172666208,4.947135002637981e-05,5.760415474439004e-05,0.0,0.00016661746026496027,0.0,0.0,0.0,0.0,0.0004073263919945415,4.884228578440559e-05,0.00038812445421646717,4.3428523591468364e-05,5.056792248340434e-05 +97169,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,89438.0,,5512.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004362147629091331,0.0009373332868325113,0.0,0.0052994809159238425,0.0026544833296417852,0.0011719946202269102,0.0008696919580150099,0.0,0.0006033110080401367,0.0019304640210539288,0.0011719946202269102,0.0006563602494089346,0.0,0.0006033110080401367,0.0007240193085878562,0.0002133317086060753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.262750409661393e-05,0.0,0.0,0.0005198282696854043,0.0001890798590753433,0.0005824557737820181,0.0002300494749563142,0.00013966421756341743,7.82171172899071e-05,0.0,7.189534698462059e-05,4.8375026099671446e-05,1.4253662643106323e-05,0.0,0.0,0.0,0.0,0.0002917491668122072,0.00012881167877054725,9.558617351286838e-05,0.0,6.630875468639523e-05 +97170,50.0,the Greater Atlanta and Macon Area,G1300890023425,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,7739.0,,425.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001640246686397945,0.0003370313254876777,0.0,0.0019773607189593617,0.001101161979765139,0.00022148954347386526,0.0006110398607860032,0.0,4.358662786061501e-05,0.0007641306542774613,0.00022148954347386526,0.0006110398607860032,0.0,4.358662786061501e-05,0.0003370313254876777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.251971441500377e-05,0.0,0.0,0.0001954680896349827,8.912671795913932e-05,0.00021798780404998645,9.106139976490545e-05,2.6394894314364844e-05,7.281757998301998e-05,0.0,5.19421557269241e-06,2.251971441500377e-05,0.0,0.0,0.0,0.0,0.0,0.00012139407826340639,2.441740585769883e-05,6.736213385985026e-05,0.0,4.805068292385096e-06 +97171,50.0,the Greater Atlanta and Macon Area,G1300970080303,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,6206.0,,187.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011867638010853224,0.00014870731858327474,0.0,0.0013354711196685968,0.00047035512835544134,0.0003589487000285942,0.00047531755277979975,0.0,3.068432435728305e-05,0.0003524148412031889,0.0003589487000285942,0.00047531755277979975,0.0,0.0,0.00011794028715225236,0.0,3.068432435728305e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.93371650269358e-06,0.0,0.0,0.000141424542705334,5.5470943082887414e-05,0.00015135825920802758,4.199665317913639e-05,4.2775281576496585e-05,5.664275189403822e-05,0.0,0.0,7.878464812481114e-06,0.0,2.049726820077485e-06,0.0,0.0,0.0,5.330862823534112e-05,4.0682160460942576e-05,5.3871054416828804e-05,0.0,3.4776685555321876e-06 +97173,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,320361.0,,1980.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.027794072633120826,0.0005829183820185666,0.0,0.02837699101513939,0.011344044692670262,0.006377883291182294,0.01065509372089313,0.0,0.0,0.010761126310651695,0.006377883291182294,0.01065509372089313,0.0,0.0,0.0005829183820185666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.894623374548984e-05,0.0,0.0,0.0033121664779307528,0.001046145988818078,0.0033511127116762425,0.0012823828411690052,0.0007600401537425465,0.0012697471402408874,0.0,0.0,3.894623374548984e-05,0.0,0.0,0.0,0.0,0.0,0.0013396477572674734,0.0007531808344043876,0.0012582877442198497,0.0,0.0 +97174,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010401,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,112914.0,,2033.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00581226069855319,0.0003457243173296096,0.0,0.006158002746244219,0.002881751102324022,0.001364634997055784,0.0010524387931714944,0.0,0.0008591778536929188,0.002881751102324022,0.001364634997055784,0.0007067144758418848,0.0,0.0008591778536929188,0.0,0.0003457243173296096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.309969125477093e-05,0.0,0.0,0.0006926367002285696,0.0001967352833987059,0.0007157363914833404,0.0003434131189075203,0.00016262110913442405,8.42178986693996e-05,0.0,0.00010238668641264873,0.0,2.309969125477093e-05,0.0,0.0,0.0,0.0,0.00033494206159432184,0.00015860969355369143,0.0001223235479297354,0.0,9.98610884055918e-05 +97175,50.0,the Greater Atlanta and Macon Area,G1300670030230,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,162513.0,,5119.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01447969383692545,0.001506798290004611,0.0,0.01598652281653636,0.006124018867887698,0.0033585784444016987,0.006503894814640664,0.0,0.0,0.004617220577883086,0.0033585784444016987,0.006503894814640664,0.0,0.0,0.001506798290004611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001006755054508592,0.0,0.0,0.0017255190062054628,0.0006800919581316519,0.001826194511656322,0.0005502258509543135,0.0004002357373654009,0.0007750574178857483,0.0,0.0,0.00010067550545085921,0.0,0.0,0.0,0.0,0.0,0.0006995673652214088,0.0003836617626310358,0.0007429618780264653,0.0,0.0 +97176,81.0,the Columbus-Albany Area,G1302150002901,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,62233.0,,2318.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0051430400983967645,0.0006751747419017852,0.0,0.005818184466699112,0.003498188194444753,0.0019085251206711353,0.00041144077798378623,0.0,0.0,0.0028230134525429676,0.0019085251206711353,0.00041144077798378623,0.0,0.0,0.0006751747419017852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.511056051016213e-05,0.0,0.0,0.0006128850722141303,0.0001806238172367588,0.0006579956327242924,0.00033641246628868525,0.000227434850599287,4.903051621258761e-05,0.0,0.0,4.511056051016213e-05,0.0,0.0,0.0,0.0,0.0,0.0003956204151942649,0.00021584073202455135,4.653105046557767e-05,0.0,0.0 +97177,50.0,the Greater Atlanta and Macon Area,G1301210011505,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,199326.0,,31956.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011361509215801317,0.005434373505607604,0.0,0.01679588272140892,0.008291780821701894,0.002416825565167398,0.0022805500072928717,0.0,0.0038067440576081764,0.006984450352755722,0.002416825565167398,0.0014412478887518322,0.0,0.0005190031394877857,0.0013073304689461731,0.0008393021185410395,0.003287740918120391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003630931661169815,0.0,0.0,0.0013539300242829705,0.0006544515029463406,0.001717023190399952,0.0008323240210515291,0.00028800862930990575,0.0001717508433036043,0.0,6.184864351228493e-05,8.734820281326818e-05,5.6077276108330974e-05,0.0002196676871953823,0.0,0.0,0.0,0.0008476589290795808,0.00024706921400769296,0.00023313792518909462,0.0,0.00038915893467742407 +97178,50.0,the Greater Atlanta and Macon Area,G1301210011306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,94003.0,,9384.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008521460222257941,0.002762279394037334,0.0,0.011283770305901573,0.004229027747823444,0.002811167936869575,0.004243543931602257,0.0,0.0,0.0014667483537861093,0.002811167936869575,0.004243543931602257,0.0,0.0,0.002762279394037334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001845602372635161,0.0,0.0,0.0010154875848934757,0.0004690498915617738,0.0012000478221569917,0.0001747898487564696,0.00033500199079556866,0.0005056957453414375,0.0,0.0,0.0001845602372635161,0.0,0.0,0.0,0.0,0.0,0.00044976416579152576,0.00029897240628812597,0.00045130798618644156,0.0,0.0 +97179,50.0,the Greater Atlanta and Macon Area,G1301210003000,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,44076.0,,500.0,,9.325022323477118,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.010779155148066178,0.0004240671903476731,0.0,0.011203222338413851,0.00558526009996676,0.002511170698657376,0.0026747697752170976,0.0,0.0004319333804145642,0.005161192909619087,0.002511170698657376,0.0026747697752170976,0.0,0.0004319333804145642,0.0004240671903476731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8333971450580434e-05,0.0,0.0,0.0012845331596566848,0.00038402824978865484,0.0013128671311072653,0.0006150503768358953,0.0002992518418813504,0.00031874765911781315,0.0,5.147274923532871e-05,2.833397145058043e-05,0.0,0.0,0.0,0.0,0.0,0.0006545174399323221,0.00029427546569014187,0.0003134470793390386,0.0,5.061678870997196e-05 +97180,50.0,the Greater Atlanta and Macon Area,G1300590150600,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7752.0,,701.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0015411636120582545,0.0005559569496756244,0.0,0.002097120561733879,0.0015395094705834683,0.0002987379503463784,0.00021892562418794677,0.0,3.9947516616085484e-05,0.000983552520907844,0.0002987379503463784,0.00021892562418794677,0.0,3.9947516616085484e-05,0.0005559569496756244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.714594086536694e-05,0.0,0.0,0.00018365860614598191,8.136662818207723e-05,0.00022080454701134885,0.00011720876592723072,3.560024071049086e-05,2.6089102203950534e-05,0.0,4.760497304309824e-06,3.714594086536694e-05,0.0,0.0,0.0,0.0,0.0,0.00016209401475269158,3.145393689087364e-05,2.305054566725984e-05,0.0,4.2060497005238004e-06 +97181,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2004,gen3_t5_cfl,1001_5000,Electricity,7042.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016734949300411463,0.0,0.0,0.0016734949300411465,0.0007640479472037219,0.00024117382702382043,0.0006183180832750624,0.0,5.0037779612280984e-05,0.0007640479472037219,0.00024117382702382043,0.0006183180832750624,0.0,5.0037779612280984e-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.0001994295171324462,6.888995866217865e-05,0.0001994295171324462,9.105119498218534e-05,2.8740559056944407e-05,7.368464317891511e-05,0.0,5.962976073200057e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.105119498218532e-05,2.87405590569444e-05,7.36846431789151e-05,0.0,5.962976073200056e-06 +97182,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,120609.0,,12032.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.032290332144790886,0.010642516490793737,0.0,0.042932940852837394,0.03160340582888351,0.006240987015930124,0.0020998790628979544,0.0006326103540239762,0.0023558741565962863,0.02096088933808977,0.006240987015930124,0.0020998790628979544,0.0006326103540239762,0.0023558741565962863,0.010642516490793737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007110724193927217,0.0,0.0,0.0038479804350153714,0.001638257229171844,0.004559052854408093,0.0024978712424456565,0.0007437271262741794,0.00025023878706782716,7.538703084121443e-05,0.0002807452590233973,0.0007110724193927217,0.0,0.0,0.0,0.0,0.0,0.003355968510218338,0.0006627309730966089,0.0002229863467408851,6.717695044760753e-05,0.0002501704887879053 +97183,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,119568.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009755059637000402,0.0,0.0,0.009755059637000402,0.0030262713874101735,0.002485213628381674,0.004243574621208555,0.0,0.0,0.0030262713874101735,0.002485213628381674,0.004243574621208555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011624931243800869,0.0003110443165908148,0.0011624931243800869,0.0003606353842296216,0.00029615849242493615,0.0005056992477255291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003606353842296216,0.00029615849242493615,0.0005056992477255291,0.0,0.0 +97184,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000300,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,19544.0,,861.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004588040831308264,0.0006676674857968334,0.0,0.005255708317105098,0.0016357327806932479,0.00040260583889819966,0.0022366092596754774,0.0003130120912582709,0.0006676674857968334,0.0016357327806932479,0.00040260583889819966,0.0022366092596754774,0.0003130120912582709,0.0,0.0,0.0,0.0006676674857968334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.461108845330688e-05,0.0,0.0,0.0005467433838719911,0.0001986995893027817,0.000591354472325298,0.00019492548312207453,4.7977358271037076e-05,0.00026653017268063575,3.730073385563055e-05,0.0,0.0,0.0,4.461108845330688e-05,0.0,0.0,0.0,0.00018404710403046996,4.5299843342118234e-05,0.00025165568725506936,3.521905876226947e-05,7.512368075434227e-05 +97185,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,51565.0,,3505.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004810104753464148,0.0010316311156972789,0.0,0.0058417358691614275,0.0018253564033747659,0.0020291353891915124,0.001987244076595148,0.0,0.0,0.0007937252876774871,0.0020291353891915124,0.001987244076595148,0.0,0.0,0.0010316311156972789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.892842865888279e-05,0.0,0.0,0.0005732098134786621,0.00021744053563936682,0.0006421382421375449,9.45865313588541e-05,0.00024180768976471079,0.00023681559235509724,0.0,0.0,6.892842865888279e-05,0.0,0.0,0.0,0.0,0.0,0.00020064774895511343,0.0002230476456070176,0.0002184428475754138,0.0,0.0 +97186,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,78939.0,,9345.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00696093039834565,0.0027224160912051334,0.0,0.009683346489550784,0.007267369643073127,0.002033482108758047,0.00038252511131904647,0.0,0.0,0.004544953551867994,0.002033482108758047,0.00038252511131904647,0.0,0.0,0.0027224160912051334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001818962657554312,0.0,0.0,0.0008295210748612879,0.00042965977161051765,0.001011417340616719,0.0005416136263100957,0.00024232626503047148,4.5584803085837844e-05,0.0,0.0,0.00018189626575543117,0.0,0.0,0.0,0.0,0.0,0.0007590706049409044,0.00021239548423172795,3.995442394082632e-05,0.0,0.0 +97187,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen4_led,_1000,Electricity,1156.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.000277647646542855,0.0,0.0,0.000277647646542855,8.518828595148665e-05,7.609050784016282e-05,9.048153867080233e-05,0.0,2.5970021154142532e-05,8.518828595148665e-05,7.609050784016282e-05,9.048153867080233e-05,0.0,2.5970021154142532e-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,3.308347589969551e-05,1.1471839232176877e-05,3.308347589969551e-05,1.0150723913222035e-05,9.066666019576964e-06,1.078144850588826e-05,0.0,3.0944925327686593e-06,0.0,0.0,0.0,0.0,0.0,0.0,1.0150723913222035e-05,9.066666019576964e-06,1.078144850588826e-05,0.0,3.0944925327686593e-06 +97188,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,129964.0,,1770.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.014257482526937863,0.0006577157451073332,0.0,0.014915198272045193,0.008469165487016593,0.0013565048194130742,0.004865097095127627,0.0,0.00022443087048790348,0.008469165487016593,0.0013565048194130742,0.004207381350020293,0.0,0.00022443087048790348,0.0,0.0006577157451073332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.394434058941305e-05,0.0,0.0,0.0016990378854880995,0.000541904077421558,0.0017429822260775125,0.0010092548241754668,0.00016165217636952676,0.0005013858722165207,0.0,2.6745012726585325e-05,0.0,4.394434058941305e-05,0.0,0.0,0.0,0.0,0.0009897022248270045,0.00015852043980245858,0.0005685326879523963,0.0,2.6226873495653564e-05 +97189,50.0,the Greater Atlanta and Macon Area,G1301350050220,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,2162.0,,245.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005191523018616327,0.00019452703743485107,0.0,0.0007136793392964838,0.00043454296542632114,0.00013688020703855379,0.00012968469162323405,0.0,1.248876813463542e-05,0.0002525046961261055,0.00013688020703855379,0.00012968469162323405,0.0,0.0,0.00018203826930021565,0.0,1.248876813463542e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2998256055920651e-05,0.0,0.0,6.186774196665052e-05,3.473267316840682e-05,7.486599802257118e-05,3.0091160781294247e-05,1.6312109758611853e-05,1.5454615167071533e-05,0.0,0.0,1.2163759174779487e-05,0.0,8.344968811411642e-07,0.0,0.0,0.0,4.558418746211484e-05,1.4358932289645996e-05,1.360411228408757e-05,0.0,1.3100898947048612e-06 +97190,50.0,the Greater Atlanta and Macon Area,G1300890023506,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,118551.0,,5412.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005693077209087595,0.000920383061314941,0.0,0.006613460270402535,0.002972051833036351,0.0017244017606300754,0.0009577054721041523,0.0,0.0009593366653547973,0.0025846966270924574,0.0017244017606300754,0.00042467761673310484,0.0,0.0009593366653547973,0.00038735520594389354,0.0005330278553710474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.14941499966243e-05,0.0,0.0,0.0006784331160605383,0.000211539483363081,0.0007399272660571626,0.00030801335066919496,0.0002054936577949615,5.0608018872728115e-05,0.0,0.00011432231451013279,2.5880614428361606e-05,3.5613535568262684e-05,0.0,0.0,0.0,0.0,0.00033251914995853076,0.00019292954492180058,0.00010715001870252075,0.0,0.00010733251989146146 +97191,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,69422.0,,15087.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.003295950075457876,0.0025656896796501607,0.0,0.005861639755108037,0.0030319095331904494,0.0009148334581904645,0.000814976062672727,0.0,0.0010999029706929757,0.001772592882969779,0.0009148334581904645,0.0004197131155354899,0.0,0.00018879288840072225,0.0012593166502206702,0.00039526294713723703,0.0009111100822922533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017142423000369886,0.0,0.0,0.00039277186302263863,0.0002656216110254181,0.0005641960930263375,0.00021123639408524418,0.00010901889698040855,5.001638330368492e-05,0.0,2.2498075761137087e-05,8.414010034305913e-05,2.6409135484862123e-05,6.08749941757776e-05,0.0,0.0,0.0,0.00029182815466349485,8.80547908852717e-05,7.844329056033321e-05,0.0,0.00010586815032982207 +97192,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,308469.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02524456427954546,0.0,0.0,0.02524456427954546,0.007859331966385004,0.006730138592267327,0.010655063031286835,0.0,0.0,0.007859331966385004,0.006730138592267327,0.010655063031286835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030083449929039093,0.0009229045688224939,0.0030083449929039093,0.0009365811073951194,0.0008020173575347336,0.0012697428707541332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009365811073951194,0.0008020173575347336,0.0012697428707541332,0.0,0.0 +97193,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,8226.0,,83.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,9613.75315558068,0.0,0.0,0.0007253519281729513,2.4298879550201457e-05,0.0,0.000749620434123715,0.000520633867962504,0.0001859775493573544,4.3039390403294334e-05,0.0,0.0,0.0004963349884123026,0.0001859775493573544,4.3039390403294334e-05,0.0,0.0,2.4298879550201457e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6230932572211397e-06,0.0,0.0,8.643752461576198e-05,2.846817864338299e-05,8.80606178729831e-05,5.9146417224830056e-05,2.2162261346774028e-05,5.128846044157896e-06,0.0,0.0,1.6230932572211397e-06,0.0,0.0,0.0,0.0,0.0,6.116073950408441e-05,2.1847453939881502e-05,5.055992525365359e-06,0.0,0.0 +97194,50.0,the Greater Atlanta and Macon Area,G1300670030504,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,6156.0,,415.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0014455542348156152,0.0003293395676299221,0.0,0.0017748938024455371,0.0007081379653559502,0.0004312346824767489,0.0005997916987574574,0.0,3.56467487816415e-05,0.00041444514650766954,0.0004312346824767489,0.0005997916987574574,0.0,0.0,0.00029369281884828065,0.0,3.56467487816415e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2003379860181334e-05,0.0,0.0,0.0001722611838111667,7.356802546980148e-05,0.00019426456367134802,4.938784712654516e-05,5.138859208098313e-05,7.147488871716334e-05,0.0,0.0,1.9621798564415854e-05,0.0,2.381581295765484e-06,0.0,0.0,0.0,7.750667260736635e-05,4.7199228097968715e-05,6.564802496480037e-05,0.0,3.901585598432013e-06 +97195,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,137235.0,,7850.0,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,431997.0345818221,0.0,0.0,0.021751461982703203,0.004110264893727919,0.0,0.02586167228253975,0.017997858981318348,0.0043396138313879845,0.0033585616034062247,0.0,0.00016569246031856652,0.013887594087590428,0.0043396138313879845,0.0033585616034062247,0.0,0.00016569246031856652,0.004110264893727919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027462299650911717,0.0,0.0,0.0025920774549267975,0.0010356164199912042,0.0028667004514359145,0.001654956322763191,0.0005171429481096127,0.0004002329507825644,0.0,1.9745233271429687e-05,0.00027462299650911717,0.0,0.0,0.0,0.0,0.0,0.0019950167917586184,0.0004810351315872356,0.00037228799280548437,0.0,1.836658687827574e-05 +97196,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,21553.0,,6980.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004312019817371584,0.004801436899582113,0.0,0.009113456716953695,0.002803246787116174,0.0002658659325548702,0.0036379955297668708,0.00038090476606391033,0.002025371981480856,0.0021013234307863888,0.0002658659325548702,0.0012904574384838897,0.00038090476606391033,0.0002733965295115093,0.0007019233563297854,0.002347538091282981,0.0017519754519693467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032080207939095943,0.0,0.0,0.0005138557057159394,0.0004561147391060498,0.0008346577851068987,0.0002504109628889328,3.1682768675697935e-05,0.00015378150978738415,4.539174114826861e-05,3.258017647471285e-05,4.6898142575459994e-05,0.00015684785968937942,0.00011705607712612001,0.0,0.0,0.0,0.00025673592656557997,2.434938545204434e-05,0.0003331865597666439,3.4885240392718503e-05,0.00018549410444179446 +97197,50.0,the Greater Atlanta and Macon Area,G1300630040416,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,80644.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0065727557975311796,0.0,0.0,0.00657275579753118,0.004606186728334501,0.0014285007551569063,0.0005380683140397736,0.0,0.0,0.004606186728334501,0.0014285007551569063,0.0005380683140397736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007832628644586729,0.00021845816987705157,0.0007832628644586729,0.0005489105517083057,0.00017023173046925726,6.412058228111017e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005489105517083056,0.00017023173046925723,6.412058228111016e-05,0.0,0.0 +97198,50.0,the Greater Atlanta and Macon Area,G1301210005200,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,20829.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0017265265128401268,0.0,0.0,0.0017265265128401268,0.0012734739036266206,0.000329826916294547,0.0001232560665183969,0.0,0.0,0.0012734739036266206,0.000329826916294547,0.0001232560665183969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002057459211307759,4.524390994751704e-05,0.0002057459211307759,0.00015175675518973384,3.9304662976252044e-05,1.4688122511983687e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015175675518973384,3.9304662976252044e-05,1.4688122511983687e-05,0.0,0.0 +97199,50.0,the Greater Atlanta and Macon Area,G1302170100700,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,49023.0,,3604.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004367898216320548,0.0010609703793178827,0.0,0.005428868595638432,0.0019330462318734051,0.0012933520782040884,0.0022025009751672356,0.0,0.0,0.0008720758525555223,0.0012933520782040884,0.0022025009751672356,0.0,0.0,0.0010609703793178827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.088708453911601e-05,0.0,0.0,0.000520514026597944,0.00021547881484393553,0.0005914011111370601,0.00010392360147414144,0.00015412627874875924,0.0002624678035963791,0.0,0.0,7.088708453911601e-05,0.0,0.0,0.0,0.0,0.0,0.00021057899436499416,0.0001408930503044112,0.00023993240968124432,0.0,0.0 +97200,85.0,Rural Climate Zone 3A,G1302850960800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,5503.0,,88.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,1870.6521585294563,0.0,0.0,0.0002952282480052992,1.4982155399944616e-05,0.0,0.00031021040340524383,0.00016136401928390056,5.7996012204992725e-05,1.757078816727233e-05,0.0,7.329731411049829e-05,0.00014638186388395594,5.7996012204992725e-05,1.757078816727233e-05,0.0,7.329731411049829e-05,1.4982155399944616e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0006650004129558e-06,0.0,0.0,3.518280294483999e-05,1.1493565742898717e-05,3.618346794525294e-05,1.7444551144832078e-05,6.911473691224047e-06,2.093937764598909e-06,0.0,8.734953298538738e-06,1.0006650004129558e-06,0.0,0.0,0.0,0.0,0.0,1.882177307783191e-05,6.764753294977275e-06,2.04948655314047e-06,0.0,8.549523118751466e-06 +97201,35.0,Eastern Counties in South Carolina and Georgia,G1300330950400,ComStock 90.1-2004,gen5_led,1001_5000,NaturalGas,6689.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.000445368088555755,0.0,0.0,0.000445368088555755,0.00028098616839864214,0.00012037057457181047,4.4011345585302395e-05,0.0,0.0,0.00028098616839864214,0.00012037057457181047,4.4011345585302395e-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,5.307450128142716e-05,1.4285913432060136e-05,5.307450128142716e-05,3.348511296150056e-05,1.4344557633383061e-05,5.244830686543543e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.348511296150056e-05,1.4344557633383061e-05,5.244830686543543e-06,0.0,0.0 +97202,50.0,the Greater Atlanta and Macon Area,G1301210011617,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,98559.0,,32299.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.020521880786435933,0.022218344980839192,0.0,0.04274022576727513,0.0141114780570896,0.0023924347931387536,0.015004391696233955,0.0003730872892232087,0.010858833931589606,0.011346099414669669,0.0023924347931387536,0.005242586441299137,0.0003730872892232087,0.0011676728481051636,0.002765378642419931,0.00976180525493482,0.009691161083484442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014845014219329975,0.0,0.0,0.002445550272698577,0.002076216249911119,0.003930051694631575,0.0013520913022723742,0.00028510152756764767,0.0006247482301738685,4.4460043959676934e-05,0.00013914916872500964,0.0001847666210240145,0.000652227418112418,0.000647507382796565,0.0,0.0,0.0,0.0012975794408293553,0.00021998930151346139,0.0013796846870624204,3.430614384774345e-05,0.0009984921213785937 +97203,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,29485.0,,,7353.0,3.20458438519356,Mercantile,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,56080.226740887294,0.0,0.0,0.002551534220768342,0.0,0.0006930040447717455,0.0032445382655400877,0.001962741995667523,0.0009574366014768129,0.000324329294796314,0.0,0.0,0.0012697379508957772,0.0009574366014768129,0.000324329294796314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006930040447717455,0.0,0.0,0.0,0.0,5.5889909687024845e-05,0.000304060922104221,0.00012663620252246634,0.0003599508317912458,0.00015131197890178984,0.00011409568938240882,3.864963426258999e-05,0.0,0.0,0.0,0.0,0.0,5.588990968702485e-05,0.0,0.0,0.00021774765963949322,0.00010621853492968282,3.5981267558503686e-05,0.0,0.0 +97204,35.0,Eastern Counties in South Carolina and Georgia,G1300510010102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,116849.0,,7272.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005569602972158347,0.0012367459001329433,0.0,0.006806348872291289,0.0031968905462040407,0.0016497569390516533,0.0012520117413156086,0.0,0.0007076896457199875,0.0028590562397063546,0.0016497569390516533,0.0009073689760326222,0.0,0.00015342081736771692,0.0003378343064976861,0.0003446427652829863,0.0005542688283522707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.263214751263852e-05,0.0,0.0,0.0006637185141889088,0.0002488061545095441,0.0007463506617015474,0.000340708048470655,0.000196598254818849,0.00010812935708415549,0.0,1.828285381524929e-05,2.2572117883185154e-05,2.302701938770615e-05,3.70330102417472e-05,0.0,0.0,0.0,0.0003505552564694768,0.00018090421255374426,0.00013728943507335106,0.0,7.760175760497542e-05 +97205,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,18803.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016295260255891246,0.0,0.0,0.001629526025589125,0.0007050630150834237,0.00040421280454704334,0.0005201888267460621,0.0,0.0,0.0007050630150834237,0.00040421280454704334,0.0005201888267460621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019418618589362582,6.71874256151558e-05,0.00019418618589362582,8.40204424867725e-05,4.816894088940893e-05,6.19894881235655e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.402044248677248e-05,4.8168940889408916e-05,6.198948812356549e-05,0.0,0.0 +97206,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,16107.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0036821189228739668,0.0,0.0,0.003682118922873966,0.0018241872183941644,0.001089334868220418,0.0006561152159739259,0.0,0.00011248162028545811,0.0018241872183941644,0.001089334868220418,0.0006561152159739259,0.0,0.00011248162028545811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043878986267521927,0.00013978665563565238,0.00043878986267521927,0.0002173843039345156,0.0001298135957164266,7.818778033698371e-05,0.0,1.3404182687293311e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00021738430393451565,0.00012981359571642663,7.818778033698373e-05,0.0,1.3404182687293315e-05 +97207,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,156434.0,,14066.0,,9.729435225087556,Education,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.03568309709156874,0.012441029571628955,0.0,0.0481241266631977,0.03560083930209507,0.005533680687159877,0.003671537701911165,0.0006638720027140825,0.0026541969693175053,0.027061982781562986,0.005533680687159877,0.0015602236996693378,0.0006638720027140825,0.0008634301377152319,0.008538856520532082,0.002111314002241828,0.0017907668316022736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008312361785113932,0.0,0.0,0.004252289532984511,0.0017419302379596828,0.005083525711495905,0.0032249270804197527,0.0006594386245259069,0.00018592900975475892,7.911241451767299e-05,0.00010289339312806948,0.0005705160028853492,0.00014106554226534987,0.0001196484719480598,0.0,0.0,0.0,0.0037606455325335728,0.00058454272322199,0.00038783781862716517,7.01272029009133e-05,0.0002803724342122637 +97208,50.0,the Greater Atlanta and Macon Area,G1301210001202,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,398158.0,,21662.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.02049526944061868,0.00368378400116011,0.0,0.024179053441778793,0.015291514746001702,0.0035019768751588898,0.0026096077848876314,0.0,0.002775971766091987,0.01273933560175362,0.0035019768751588898,0.0014780029279756017,0.0,0.002775971766091987,0.00255217914424808,0.0011316048569120299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002461283583994152,0.0,0.0,0.0024423820830213523,0.000991036123493017,0.002688510441420767,0.0015181222727257712,0.0004173238902676746,0.0001761307837596176,0.0,0.00033080724916156775,0.000170521307144279,7.560705125513617e-05,0.0,0.0,0.0,0.0,0.0017002897635657295,0.0003893908178477519,0.0002901667674699167,0.0,0.0003086650640066786 +97209,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5384.0,,598.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012927942696191145,0.00047415965374744933,0.0,0.0017668712162928247,0.0009233417712256279,0.0003826856301917754,0.0004007157722669445,0.0,6.0210749682215816e-05,0.00044918211747817867,0.0003826856301917754,0.0004007157722669445,0.0,6.0210749682215816e-05,0.00047415965374744933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1679492546579734e-05,0.0,0.0,0.00015405502645236824,8.287169402938572e-05,0.000185734518998948,5.3526508135296015e-05,4.5602495515009126e-05,4.775104620060931e-05,0.0,7.174976601453783e-06,3.1679492546579734e-05,0.0,0.0,0.0,0.0,0.0,9.706221832627695e-05,4.0228133661383334e-05,4.212347257173164e-05,0.0,6.329388654741102e-06 +97210,46.0,the Tallahassee-Valdosta Area,G1301850011500,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,68507.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005969895665060634,0.0,0.0,0.005969895665060634,0.002237395057527724,0.0013685416136334603,0.00236395899389945,0.0,0.0,0.002237395057527724,0.0013685416136334603,0.00236395899389945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007114213944963072,0.0002159787557990524,0.0007114213944963072,0.0002666262194800606,0.00016308656596722182,0.0002817086090490248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002666262194800606,0.00016308656596722182,0.0002817086090490248,0.0,0.0 +97211,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,4070.0,,49.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000675551378302663,3.870691050999587e-05,0.0,0.000714258288812659,0.00031751245608520123,0.00017558711754854967,0.00019411350206615454,0.0,2.696250603901422e-05,0.0002788055455752053,0.00017558711754854967,0.00019411350206615454,0.0,2.696250603901422e-05,3.870691050999587e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5870165357154577e-06,0.0,0.0,8.050338633483452e-05,3.114249779328158e-05,8.309040287054998e-05,3.3224401975358374e-05,2.0924178402161325e-05,2.3131910838376184e-05,0.0,3.2130391705626907e-06,2.5870165357154577e-06,0.0,0.0,0.0,0.0,0.0,3.693655125289965e-05,2.0426230349024737e-05,2.2581423753726352e-05,0.0,3.1365761157711083e-06 +97212,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,6146.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014319902747223687,0.0,0.0,0.0014319902747223685,0.0008201233431989725,0.0002258730183820486,0.00033364033546436615,0.0,5.23535776769816e-05,0.0008201233431989725,0.0002258730183820486,0.00033364033546436615,0.0,5.23535776769816e-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.00017064287338860095,6.161137503911633e-05,0.00017064287338860095,9.772985633137156e-05,2.6916119165084282e-05,3.9758192864134014e-05,0.0,6.238705028011113e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.772985633137157e-05,2.6916119165084285e-05,3.975819286413402e-05,0.0,6.238705028011114e-06 +97213,50.0,the Greater Atlanta and Macon Area,G1300670030310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,9062.0,,1216.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.000803199463531909,0.0003541561694441862,0.0,0.0011573556329760957,0.0008792853301234775,0.00024320141069807884,3.483851855510134e-05,0.0,0.0,0.0005251291606792912,0.00024320141069807884,3.483851855510134e-05,0.0,0.0,0.0003541561694441862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.366336779337073e-05,0.0,0.0,9.571433185318447e-05,5.5717070103315814e-05,0.0001193776996465552,6.257771454430897e-05,2.898141942022569e-05,4.151578378293851e-06,0.0,0.0,2.366336779337073e-05,0.0,0.0,0.0,0.0,0.0,9.069559697323446e-05,2.5085482917015727e-05,3.5934868122663965e-06,0.0,0.0 +97214,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,6725.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012639295008840961,0.0,0.0,0.001263929500884096,0.0005356937166094942,0.0003062642940566554,0.00037846756943107077,0.0,4.35039207868757e-05,0.0005356937166094942,0.0003062642940566554,0.00037846756943107077,0.0,4.35039207868757e-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.00015061903373676528,4.372813311470347e-05,0.00015061903373676528,6.383716015659134e-05,3.6496681188800006e-05,4.5100948722643494e-05,0.0,5.184243668730436e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.383716015659134e-05,3.649668118880001e-05,4.51009487226435e-05,0.0,5.184243668730437e-06 +97215,50.0,the Greater Atlanta and Macon Area,G1302230120102,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,7017.0,,1091.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0006252086594968012,0.0003212587987243527,0.0,0.0009464674582211537,0.00045328548501707007,0.00022716446581559597,0.00026598681778219,0.0,0.0,0.00013202668629271738,0.00022716446581559597,0.00026598681778219,0.0,0.0,0.0003212587987243527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.146444900762259e-05,0.0,0.0,7.450593733054599e-05,4.617367002537132e-05,9.597038633816859e-05,1.573358248556886e-05,2.707112449051155e-05,3.169757308285107e-05,0.0,0.0,2.146444900762259e-05,0.0,0.0,0.0,0.0,0.0,4.5962471018636514e-05,2.3034137473253044e-05,2.6970665966047575e-05,0.0,0.0 +97216,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock 90.1-2007,gen2_t8_halogen,500001_1mil,Electricity,1275607.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,4319970.345818221,0.0,0.03411790647495385,0.19017498171722894,0.0,0.0,0.22429288819218282,0.09723734370701147,0.02263833974806568,0.10368864925672633,0.0,0.000728555480379331,0.0631194372320576,0.02263833974806568,0.10368864925672633,0.0,0.000728555480379331,0.0,0.0,0.0,0.03411790647495385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.022662787518913107,0.006652408793556986,0.022662787518913107,0.007521822173383709,0.0026977674921206405,0.012356377295318069,0.0,8.682055809068929e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00982496269541696,0.002287401475929893,0.010476809341430538,0.0,7.361400613571439e-05 +97217,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,2894.0,,288.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0006949048335576608,0.00022843693766796708,0.0,0.0009234244782993674,0.0004911146038640076,0.0002070985126432258,0.00019303831010754352,0.0,3.2090344610851275e-05,0.00029476801080689167,0.0002070985126432258,0.00019303831010754352,0.0,0.0,0.0001963465930571158,0.0,3.2090344610851275e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5264152611567624e-05,0.0,0.0,8.281355504810513e-05,3.4946981124035775e-05,9.807770765967275e-05,3.5128244488389284e-05,2.4680450111932312e-05,2.3004860447783555e-05,0.0,0.0,1.3119876285250377e-05,0.0,2.1442763263172476e-06,0.0,0.0,0.0,5.2161704261812534e-05,2.199611105954506e-05,2.0502764861413003e-05,0.0,3.4083430875013903e-06 +97218,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,20851.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.004662115039611021,0.0,0.0,0.004662115039611021,0.0017190665276715048,0.000807634575064337,0.0019988645581315817,0.0,0.0001365493787435966,0.0017190665276715048,0.000807634575064337,0.0019988645581315817,0.0,0.0001365493787435966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005555759620341577,0.00017072818677226455,0.0005555759620341577,0.00020485810234135727,9.624437668334633e-05,0.00023820113627067221,0.0,1.6272346738781858e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00020485810234135727,9.624437668334633e-05,0.00023820113627067221,0.0,1.6272346738781858e-05 +97219,50.0,the Greater Atlanta and Macon Area,G1300670031308,ComStock 90.1-2007,gen4_led,_1000,Electricity,3392.0,,226.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00016189593012650214,3.8457153920094526e-05,0.0,0.0002003530840465967,8.914825722002548e-05,3.70032642836502e-05,1.0230418539370468e-05,0.0,6.397114400355051e-05,5.0691103299930966e-05,3.70032642836502e-05,1.0230418539370468e-05,0.0,6.397114400355051e-05,3.8457153920094526e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.569215349369326e-06,0.0,0.0,1.9293703686335408e-05,8.170733166900368e-06,2.1862919035704735e-05,6.041035903979076e-06,4.409808300666082e-06,1.2191947242378196e-06,0.0,7.623664757452432e-06,2.569215349369326e-06,0.0,0.0,0.0,0.0,0.0,9.728031585090563e-06,4.037868321019095e-06,1.1163632109381974e-06,0.0,6.9806559186568735e-06 +97220,85.0,Rural Climate Zone 3A,G1300910960300,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,25369.0,,1677.0,,8.53126424238864,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005915289724595079,0.0013003222525249946,0.0,0.0072156119771200735,0.0031766967236301815,0.0004365673677869813,0.002757352702636796,0.00042209328761771487,0.00042298275623146864,0.0031766967236301815,0.0004365673677869813,0.0014570304501118013,0.00042209328761771487,0.00042298275623146864,0.0,0.0013003222525249946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.688009044401824e-05,0.0,0.0,0.0007049135402688735,0.0002758507509359375,0.0007917936307128918,0.0003785607532466163,5.2024881809766356e-05,0.00017363147718654935,5.0300033903867455e-05,5.040603014389476e-05,0.0,8.688009044401824e-05,0.0,0.0,0.0,0.0,0.0003485897302200557,4.7906021316959745e-05,0.0003025736852951153,4.6317731297375416e-05,4.641533571198674e-05 +97221,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300750960300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,33708.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.008093962357349842,0.0,0.0,0.008093962357349842,0.005109560308540674,0.0013772381919069474,0.001481531811892214,0.0,0.00012554933793626868,0.005109560308540674,0.0013772381919069474,0.001481531811892214,0.0,0.00012554933793626868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009645375885365181,0.00020604811198687633,0.0009645375885365181,0.0006088937359594286,0.0001641220882694185,0.0001765505024723813,0.0,1.4961405836714945e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0006088937359594286,0.0001641220882694185,0.0001765505024723813,0.0,1.4961405836714945e-05 +97222,50.0,the Greater Atlanta and Macon Area,G1300890023310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,68024.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00577744114396774,0.0,0.0,0.00577744114396774,0.001739302747316008,0.0016203805229124094,0.002417788563345621,0.0,0.0,0.001739302747316008,0.0016203805229124094,0.002417788563345621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006884878205430583,0.00022053326338872882,0.0006884878205430583,0.00020726974588299477,0.00019309798695832725,0.000288123744929846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020726974588299477,0.00019309798695832725,0.000288123744929846,0.0,0.0 +97223,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,80312.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00715574205240387,0.0,0.0,0.00715574205240387,0.003442852103295191,0.0015103889739414423,0.0022025009751672356,0.0,0.0,0.003442852103295191,0.0015103889739414423,0.0022025009751672356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008527349381106334,0.0002739503066111446,0.0008527349381106334,0.00041027754406564097,0.00017998992121079414,0.0002624674728341982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041027754406564097,0.00017998992121079414,0.0002624674728341982,0.0,0.0 +97224,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,244432.0,,56841.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.022449172999469916,0.009666256169345806,0.0,0.0321154114384543,0.013081691150413419,0.0074288086706650845,0.005107957551864432,0.0,0.006496954065511368,0.010112369793035756,0.0074288086706650845,0.004030855825957645,0.0,0.0008771387098114323,0.0029693213573776626,0.0010771017259067876,0.005619815355699937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000645842343882804,0.0,0.0,0.002675223866002009,0.0013169481005154942,0.003321066209884813,0.0012050712519702102,0.0008852765423561554,0.00048034917394372415,0.0,0.00010452689773191921,0.00019839257635977236,7.196559775292327e-05,0.0003754829851317151,0.0,0.0,0.0,0.0013527823715117316,0.0007682157677825648,0.0005282157215868875,0.0,0.00067185234900363 +97225,35.0,Eastern Counties in South Carolina and Georgia,G1300510010603,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,133099.0,,5007.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.011682704498165412,0.001473991100872367,0.0,0.013156695599037782,0.006156549850563262,0.0024336550898015332,0.0045664599690666855,0.0,0.0,0.004682558749690895,0.0024336550898015332,0.0045664599690666855,0.0,0.0,0.001473991100872367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.848258330682478e-05,0.0,0.0,0.0013922061901173704,0.000492215818439046,0.0014906887734241951,0.0005580118266221353,0.0002900141556404509,0.0005441765506314189,0.0,0.0,9.848258330682478e-05,0.0,0.0,0.0,0.0,0.0,0.0006975535518152643,0.0002757396257628031,0.000517392118631714,0.0,0.0 +97226,50.0,the Greater Atlanta and Macon Area,G1300890022900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,79639.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0062851178108556715,0.0,0.0,0.0062851178108556715,0.0035437789672008186,0.0018012759410564337,0.0009400629025984188,0.0,0.0,0.0035437789672008186,0.0018012759410564337,0.0009400629025984188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007489854211577254,0.00018526128505819053,0.0007489854211577254,0.0004223053349380956,0.00021465459517770873,0.00011202549104192106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004223053349380956,0.00021465459517770873,0.00011202549104192106,0.0,0.0 +97227,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,66522.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005927022285062744,0.0,0.0,0.005927022285062742,0.0021317307430447335,0.001458216643235348,0.0023370442091763645,0.0,0.0,0.0021317307430447335,0.001458216643235348,0.0023370442091763645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007063100222559729,0.00023463304875335141,0.0007063100222559729,0.00025403359666087845,0.00017377242402703157,0.00027850034435615025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025403359666087855,0.00017377242402703163,0.00027850034435615036,0.0,0.0 +97228,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,43745.0,,7211.0,,7.56685751697572,Food Service,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,22700.572550927158,0.0,0.0,0.009289744405710067,0.004960511795294737,0.0,0.014250327920975822,0.004403391060445472,0.0007592276131712586,0.007251964869243511,0.00036577185217961635,0.0014699725259359642,0.004403391060445472,0.0007592276131712586,0.002291453073948773,0.00036577185217961635,0.0014699725259359642,0.0,0.004960511795294737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003314332360647615,0.0,0.0,0.0011070450795118863,0.0006812141727885081,0.0014384783155766477,0.0005247455897318826,9.047602998357752e-05,0.0002730690683898831,4.358848978993438e-05,0.0001751744483793128,0.0,0.0003314332360647615,0.0,0.0,0.0,0.0,0.000444493810288481,7.663911063592454e-05,0.0007320388883385141,3.69222996640105e-05,0.00014838420664971751 +97229,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,37889.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.00324964103024563,0.0,0.0,0.003249641030245631,0.0020052650348803755,0.0008989066753602653,0.0003454389464055515,0.0,0.0,0.0020052650348803755,0.0008989066753602653,0.0003454389464055515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038725300758992175,0.00013352194855105473,0.00038725300758992175,0.00023896329118962357,0.00010712085129895348,4.116524554225369e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002389632911896235,0.00010712085129895345,4.116524554225368e-05,0.0,0.0 +97230,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,48605.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0038334823586380954,0.0,0.0,0.0038334823586380954,0.002363946870640787,0.0012506937040483066,0.00021881141034956416,0.0,0.0,0.002363946870640787,0.0012506937040483066,0.00021881141034956416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000456827177048389,0.000105879095414273,0.000456827177048389,0.0002817060506809951,0.00014904225994027075,2.6075246875918858e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002817060506809951,0.00014904225994027075,2.6075246875918858e-05,0.0,0.0 +97231,50.0,the Greater Atlanta and Macon Area,G1301210009402,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,33569.0,,3374.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.002755341072995657,0.0009830111722033998,0.0,0.0037383522451990567,0.0027318319070308364,0.0007834262502979327,0.00022309408787028713,0.0,0.0,0.0017488207348274366,0.0007834262502979327,0.00022309408787028713,0.0,0.0,0.0009830111722033998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.567996473556988e-05,0.0,0.0,0.0003283482832856121,0.00014806678302582148,0.0003940282480211819,0.00020840334130778468,9.335928204581152e-05,2.6585659932015878e-05,0.0,0.0,6.567996473556988e-05,0.0,0.0,0.0,0.0,0.0,0.0002879394100965487,8.257436769237924e-05,2.3514470232253928e-05,0.0,0.0 +97232,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,5311.0,,391.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0011916435184359414,0.00031048235481736,0.0,0.0015021258732533013,0.001076432564717086,0.00023703847333685508,0.0001528426722702401,0.0,3.57294558553808e-05,0.0008016796657551069,0.00023703847333685508,0.0001528426722702401,0.0,0.0,0.0002747528989619792,0.0,3.57294558553808e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0744054370521875e-05,0.0,0.0,0.00014200815857373308,5.0254234921716056e-05,0.00016275221294425492,9.553616609211513e-05,2.8247874963375836e-05,1.821426131623117e-05,0.0,0.0,1.835688562037125e-05,0.0,2.3871687501506255e-06,0.0,0.0,0.0,0.00011662922869009348,2.568262538807591e-05,1.6560185525877278e-05,0.0,3.871212200854428e-06 +97233,50.0,the Greater Atlanta and Macon Area,G1300670030901,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,7331.0,,337.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017377583263365884,0.00026714384817796294,0.0,0.0020049848815882907,0.0012537565308141613,0.00032206134514086316,0.0003929413073354496,0.0,3.622569829781665e-05,0.001022838380934015,0.00032206134514086316,0.0003929413073354496,0.0,0.0,0.00023091814988014629,0.0,3.622569829781665e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7850276919023648e-05,0.0,0.0,0.0002070881645455261,8.965940947104335e-05,0.00022493844146454975,0.00012189135838058738,3.8379958723539034e-05,4.68267036198084e-05,0.0,0.0,1.5429713051985767e-05,0.0,2.420563867037882e-06,0.0,0.0,0.0,0.00014065843718179645,3.6131931815153734e-05,4.408392605387657e-05,0.0,4.064146413722992e-06 +97234,50.0,the Greater Atlanta and Macon Area,G1300670030345,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,14718.0,,1219.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012351032054510485,0.00035894563525793176,0.0,0.0015940488407089801,0.0005967287048525329,0.0004771313091103852,0.0005201888267460621,0.0,0.0,0.00023778306959460117,0.0004771313091103852,0.0005201888267460621,0.0,0.0,0.00035894563525793176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.398306102945768e-05,0.0,0.0,0.00014718506125172283,6.826358011937998e-05,0.00017116812228118051,2.8336187217749995e-05,5.685889296261734e-05,6.198998107135548e-05,0.0,0.0,2.3983061029457682e-05,0.0,0.0,0.0,0.0,0.0,6.407641303854902e-05,5.1234107874425095e-05,5.585760136820642e-05,0.0,0.0 +97235,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,35351.0,,1838.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003316994027868312,0.0005411191382410954,0.0,0.0038581131661094077,0.0018662349589633064,0.0008502555424778558,0.0011416226646682457,0.0,0.0,0.0013251158207222109,0.0008502555424778558,0.0011416226646682457,0.0,0.0,0.0005411191382410954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6154555137290446e-05,0.0,0.0,0.0003952782706765074,0.00016498891868505278,0.00043143282581379786,0.00015791089331498528,0.00010132292601073851,0.00013604445135078364,0.0,0.0,3.6154555137290446e-05,0.0,0.0,0.0,0.0,0.0,0.000208691395848808,9.507967640176331e-05,0.00012766175356322657,0.0,0.0 +97236,50.0,the Greater Atlanta and Macon Area,G1301350050432,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,9933.0,,217.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0023850238854204084,0.00017219612752523807,0.0,0.0025571373058719074,0.000936740317171396,0.000531062120480093,0.0010130789462327765,0.0,7.642133613512006e-05,0.0007645441896461579,0.000531062120480093,0.0010130789462327765,0.0,7.642133613512006e-05,0.00017219612752523807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.150262207005117e-05,0.0,0.0,0.0002842167869943925,8.670043180639807e-05,0.0002957194090644437,9.110864441433451e-05,6.328522347300323e-05,0.00012072585303236512,0.0,9.10692205093521e-06,1.150262207005117e-05,0.0,0.0,0.0,0.0,0.0,0.0001083290648510217,6.141452634720203e-05,0.00011715722367651109,0.0,8.83772346127e-06 +97237,50.0,the Greater Atlanta and Macon Area,G1301210011622,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13679.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032847114335565948,0.0,0.0,0.0032847114335565943,0.0016560437374821527,0.0007958901705933552,0.0007185590566471028,0.0,0.00011405305468650495,0.0016560437374821527,0.0007958901705933552,0.0007185590566471028,0.0,0.00011405305468650495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039142892654923396,0.00012979340771623538,0.00039142892654923396,0.00019734562246746345,9.484377590792591e-05,8.56284656643521e-05,0.0,1.3591350615923292e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00019734562246746348,9.484377590792592e-05,8.562846566435212e-05,0.0,1.3591350615923296e-05 +97238,50.0,the Greater Atlanta and Macon Area,G1300890021502,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,48275.0,,5865.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0023265602951779082,0.0009974569424079105,0.0,0.003324017237585819,0.0013311068836104642,0.0010000633055366583,0.0006732750142036651,0.0,0.0003195897645964517,0.0009241241675745721,0.0010000633055366583,0.00032749750578979535,0.0,7.489304663830304e-05,0.000406982716035892,0.00034577750841386967,0.0002446967179581487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.664395927153409e-05,0.0,0.0,0.00027725228283169943,0.00012700392031243836,0.0003438962421032335,0.0001101263249489099,0.00011917586447724169,3.902732772071363e-05,0.0,8.924878582225887e-06,2.7192090604170034e-05,2.3102733770258947e-05,1.6349134897105106e-05,0.0,0.0,0.0,0.00013771368268951898,0.00010346456954271899,6.965569993698441e-05,0.0,3.3064124282098956e-05 +97239,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,29358.0,,4524.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001377720003783783,0.0007694090338231913,0.0,0.0021471113072455542,0.0011285020436635207,0.00021313667463045477,0.0005626907500267958,0.0,0.00024278183892478301,0.0010310027862146505,0.00021313667463045477,7.93433673547363e-05,0.0,5.423717558394153e-05,9.749925744887036e-05,0.0004833473826720595,0.0001885446633408415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1406939201606504e-05,0.0,0.0,0.0001641794279666368,8.38002725012064e-05,0.00021558636716824332,0.00012286200912220687,2.5398961489587942e-05,9.455149543790535e-06,0.0,6.463307811051451e-06,6.5142702769820074e-06,3.229414839440016e-05,1.2597335902059768e-05,0.0,0.0,0.0,0.0001133102206272965,2.140054930493859e-05,5.64984471126804e-05,0.0,2.4377150123327846e-05 +97240,50.0,the Greater Atlanta and Macon Area,G1301350050544,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,62955.0,,7627.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005551443516436776,0.002222011040468172,0.0,0.007773454556904948,0.0057037367440176635,0.0013381392968295942,0.0007315785160576903,0.0,0.0,0.003481725703549491,0.0013381392968295942,0.0007315785160576903,0.0,0.0,0.002222011040468172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014846269115577742,0.0,0.0,0.0006615538785579921,0.00030370368669103433,0.0008100165697137694,0.00041490994845546714,0.0001594632529804943,8.718067712203072e-05,0.0,0.0,0.00014846269115577742,0.0,0.0,0.0,0.0,0.0,0.000594345954957136,0.00013943800598336184,7.623260877327158e-05,0.0,0.0 +97241,50.0,the Greater Atlanta and Macon Area,G1300630040515,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,44661.0,,295.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.010630092066491965,0.00023406101868223995,0.0,0.010864153085174202,0.006491264682429543,0.003264200079269246,0.0009694096112984223,0.0,0.00013936141925073302,0.006257203663747303,0.003264200079269246,0.0009694096112984223,0.0,0.00013936141925073302,0.00023406101868223995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5637021890171885e-05,0.0,0.0,0.0012667682342210162,0.0004237413422901955,0.0012824052561111882,0.0007456592837301965,0.00038898863196060635,0.0001155227343150041,0.0,1.660744026284292e-05,1.5637021890171885e-05,0.0,0.0,0.0,0.0,0.0,0.0007662292571076275,0.0003853063654235426,0.00011442916637011534,0.0,1.645022995765245e-05 +97242,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,3158.0,,67.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00044198660206285883,5.351147670933189e-05,0.0,0.0004954980787721908,0.00023323394794484695,0.00010503798364892044,0.00012951927747575543,0.0,2.7706869702667985e-05,0.00017972247123551504,0.00010503798364892044,0.00012951927747575543,0.0,2.7706869702667985e-05,5.351147670933189e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.576047844263224e-06,0.0,0.0,5.2669783916903017e-05,2.1505060050409552e-05,5.624583176116624e-05,2.1416811461719738e-05,1.2516958378455624e-05,1.5434296709182287e-05,0.0,3.30171736754538e-06,3.576047844263224e-06,0.0,0.0,0.0,0.0,0.0,2.647525380846082e-05,1.1923252601682712e-05,1.4702215412783562e-05,0.0,3.1451099382391394e-06 +97243,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Electricity,4139.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0006685212770348219,0.0,0.0,0.0006685212770348219,0.0004165955304248915,0.00017103822849288776,5.1940042308285064e-05,0.0,2.89474758087576e-05,0.0004165955304248915,0.00017103822849288776,5.1940042308285064e-05,0.0,2.89474758087576e-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,7.966953244046708e-05,3.075449637204242e-05,7.966953244046708e-05,4.96468433629386e-05,2.038309947876852e-05,6.189838719858138e-06,0.0,3.4497508789018282e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.96468433629386e-05,2.038309947876852e-05,6.189838719858138e-06,0.0,3.4497508789018282e-06 +97244,85.0,Rural Climate Zone 3A,G1300310110601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,67692.0,,6813.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003484459278075877,0.0011586259277161905,0.0,0.004643085205792068,0.0022911882241449036,0.000872032365722457,0.0007678842227410667,0.0,0.0007119626628222202,0.0020780515495144483,0.000872032365722457,0.0004089330557920978,0.0,0.00012542457668545352,0.00021313667463045472,0.00035895116694896896,0.0005865380861367667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.74121773359084e-05,0.0,0.0,0.00041523616862534864,0.0001753918618014903,0.0004926483459612571,0.0002476373218236699,0.00010391838433532895,4.8731749106602424e-05,0.0,1.494660046739965e-05,1.4240466796562275e-05,2.3982884144114734e-05,3.918882639523139e-05,0.0,0.0,0.0,0.00024310346222008265,9.252582788313567e-05,8.14753284628982e-05,0.0,7.554184613885514e-05 +97245,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301090970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,10147.0,,1844.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006543389882070487,0.0003135437113522137,0.0,0.0009678826995592626,0.0003595717295986709,0.00016547746313335282,0.00024912930831316185,0.0,0.00019372192887549686,0.0003595717295986709,0.00016547746313335282,5.354569148855947e-05,0.0,7.576183434788562e-05,0.0,0.00019558361682460242,0.00011796009452761127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0949186416530045e-05,0.0,0.0,7.797673990152345e-05,4.090193360193674e-05,9.892592631805348e-05,4.284970289128562e-05,1.9719737528815024e-05,6.380971535092828e-06,0.0,9.028440850811804e-06,0.0,1.3067771734943618e-05,7.881414681586429e-06,0.0,0.0,0.0,3.675131960157037e-05,1.6913218236758193e-05,2.5463155410338505e-05,0.0,1.9800045264633018e-05 +97246,85.0,Rural Climate Zone 3A,G1301750951000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Propane,41347.0,,4059.0,16601.0,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.0104278686257568,0.002791915031695707,0.0036946543068692036,0.01691443796432171,0.006415351407346409,0.0015224715447193916,0.0049052156976417014,0.0003767450077450049,0.0036946543068692036,0.006415351407346409,0.0015224715447193916,0.002113300665945995,0.0003767450077450049,0.0,0.0,0.002791915031695707,0.0,0.0,0.0,0.0,0.0,0.0,0.0036946543068692036,0.0,0.00018653790380946398,0.0,0.00029797183431840886,0.001242667738321975,0.0008558041302133342,0.0017271774764498476,0.0007645042827080385,0.00018142981457044429,0.0002518377103887653,4.489593065472695e-05,0.0,0.0,0.00018653790380946398,0.0,0.0,0.00029797183431840886,0.0,0.0006550883025289979,0.00015546354931342168,0.000500884397575945,3.8470417587309406e-05,0.0003772708094441736 +97247,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020501,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,14562.0,,577.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0007495510290327322,9.80843593757321e-05,0.0,0.0008476353884084644,0.0004575142460830425,0.0002897495663265029,7.065549025891041e-05,0.0,2.973381610142855e-05,0.0003594298867073104,0.0002897495663265029,7.065549025891041e-05,0.0,2.973381610142855e-05,9.80843593757321e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.552980640984693e-06,0.0,0.0,8.932360812357042e-05,3.468942162639619e-05,9.587658876455512e-05,4.283307353946824e-05,3.452930582981402e-05,8.419978199229524e-06,0.0,3.543363473050919e-06,6.552980640984693e-06,0.0,0.0,0.0,0.0,0.0,5.174973322903718e-05,3.277376144895851e-05,7.991888347454392e-06,0.0,3.3632112317894644e-06 +97248,35.0,Eastern Counties in South Carolina and Georgia,G1300510002100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,349215.0,,45119.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.016479466691506656,0.00767286709561211,0.0,0.02415233378711877,0.011126227319757216,0.002780794424398242,0.006830426703099721,0.0,0.0034148498791407495,0.00944499898918497,0.002780794424398242,0.0037791910759614146,0.0,0.0004744644716006131,0.0016812283305722465,0.003051235627138307,0.0029403854075401364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005126555618696783,0.0,0.0,0.0019638268215943543,0.0009941968947155646,0.0024764823834640326,0.0011255426338798104,0.0003313820027190469,0.00045035904000025116,0.0,5.6541032101669846e-05,0.00011232972547297564,0.00020386550364229666,0.00019645914811660593,0.0,0.0,0.0,0.0011408382392632543,0.00028513138584272517,0.0007003642608976498,0.0,0.0003501448614616548 +97249,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,50430.0,,3211.0,,9.325022323477118,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.014021616370470252,0.002721701763144278,0.0,0.016743406517772584,0.008525005581032611,0.0024540745325538752,0.005462140967796207,0.0,0.00030218543638989054,0.0058033038178883336,0.0024540745325538752,0.005462140967796207,0.0,0.00030218543638989054,0.002721701763144278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018184946199693578,0.0,0.0,0.0016709340850949586,0.0007353103487598893,0.0018527835470918941,0.0006915706363136014,0.00029244822247766455,0.0006509147932406422,0.0,3.6010965664882776e-05,0.0001818494619969358,0.0,0.0,0.0,0.0,0.0,0.0009433558256283107,0.00027156175850038026,0.0006044268773076244,0.0,3.343908565557877e-05 +97250,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,13894.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033360725263487045,0.0,0.0,0.0033360725263487045,0.0015237951265729998,0.0010977709897418274,0.0006428820841756366,0.0,7.170703293197954e-05,0.0015237951265729998,0.0010977709897418274,0.0006428820841756366,0.0,7.170703293197954e-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.00039755779247131707,0.00012676955436807295,0.00039755779247131707,0.00018158976518473682,0.0001308207204351396,7.661187824473292e-05,0.0,8.5452847598332e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00018158976518473682,0.0001308207204351396,7.661187824473292e-05,0.0,8.5452847598332e-06 +97251,50.0,the Greater Atlanta and Macon Area,G1300670030311,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,18055.0,,3340.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016476635829110672,0.0009832336065658015,0.0,0.0026309278790831664,0.001615746392361456,0.00040077556864170065,0.0006143752284737121,0.0,0.0,0.0006325127857956546,0.00040077556864170065,0.0006143752284737121,0.0,0.0,0.0009832336065658015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.569447130199542e-05,0.0,0.0,0.00019635014033400898,0.00013138169507971007,0.0002620446116360044,7.537580823059019e-05,4.775995534610756e-05,7.321437675731124e-05,0.0,0.0,6.569447130199542e-05,0.0,0.0,0.0,0.0,0.0,0.00016093091690380344,3.991788565276496e-05,6.119275234571574e-05,0.0,0.0 +97252,50.0,the Greater Atlanta and Macon Area,G1301210011201,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,34466.0,,5571.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.004696583899768945,0.0016398070436988552,0.0,0.0063363909434677994,0.0028382361696241486,0.0014301663430792474,0.0020679577411581067,0.0,0.0,0.0011984291259252936,0.0014301663430792474,0.0020679577411581067,0.0,0.0,0.0016398070436988552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010956331162031414,0.0,0.0,0.0005596820843702148,0.00026448048213340486,0.0006692453959905291,0.00014281429342736558,0.0001704299331116175,0.0002464342006150109,0.0,0.0,0.00010956331162031414,0.0,0.0,0.0,0.0,0.0,0.00029977261602094336,0.0001510532176984925,0.00021841632085529324,0.0,0.0 +97253,35.0,Eastern Counties in South Carolina and Georgia,G1300330950100,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,156487.0,,7558.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012605499370658574,0.0022019340912398182,0.0,0.014807403088298953,0.01034582506688759,0.0034204621534835457,0.0010411158679278193,0.0,0.0,0.008143890975647772,0.0034204621534835457,0.0010411158679278193,0.0,0.0,0.0022019340912398182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014711962421979854,0.0,0.0,0.0015021725696998769,0.0005322722320367598,0.0016492921939196756,0.0009704914715810509,0.00040760974806118376,0.00012406773049553069,0.0,0.0,0.00014711962421979854,0.0,0.0,0.0,0.0,0.0,0.0011523484854653475,0.00038098115487893847,0.00011596255357538983,0.0,0.0 +97254,50.0,the Greater Atlanta and Macon Area,G1301210009403,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,9677.0,,1037.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002323572529632103,0.0008226872624848909,0.0,0.0031462597921169933,0.002011766861634914,0.0004849942804072988,0.0005624908085010298,0.0,8.70078415737514e-05,0.0012760874407237745,0.0004849942804072988,0.0005624908085010298,0.0,0.0,0.0007356794209111395,0.0,8.70078415737514e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.496561771107688e-05,0.0,0.0,0.0002768984805032385,0.0001459029856120169,0.00033186409821431544,0.00015207042983143975,5.7796422356054346e-05,6.703162831574447e-05,0.0,0.0,4.9152424805471886e-05,0.0,5.813192905604995e-06,0.0,0.0,0.0,0.00021219900436279305,5.1156674954095486e-05,5.933092536882731e-05,0.0,9.177493528599665e-06 +97255,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8058.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0025115657082415486,0.0,0.0,0.002511565708241548,0.0009393869435310537,0.0005341222822084473,0.0009685825405610293,0.0,6.947394194101824e-05,0.0009393869435310537,0.0005341222822084473,0.0009685825405610293,0.0,6.947394194101824e-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.0002992986456137821,9.186487441213536e-05,0.0002992986456137821,0.00011194500664805008,6.365036563947063e-05,0.00011542419201050489,0.0,8.279081315756478e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001119450066480501,6.365036563947063e-05,0.00011542419201050492,0.0,8.27908131575648e-06 +97256,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,46676.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003866832570820747,0.0,0.0,0.003866832570820747,0.002632024259278384,0.0009783336378899863,0.00025650504725181414,0.0,0.0,0.002632024259278384,0.0009783336378899863,0.00025650504725181414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000460802083433518,0.00012240430727786315,0.000460802083433518,0.00031365264466716024,0.00011658590600345314,3.056715231912951e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031365264466716024,0.00011658590600345314,3.056715231912951e-05,0.0,0.0 +97257,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030401,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Propane,53746.0,,,19048.0,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004739374961869044,0.0,0.0017953227155666346,0.006534697677435679,0.004658641934563499,0.0013439102807227673,0.0005321758357488496,0.0,0.0,0.0028633192189968645,0.0013439102807227673,0.0005321758357488496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017953227155666346,0.0,0.0,0.0,0.0,0.00014479038472442257,0.0005647828364691255,0.0002768570709095603,0.0007095732211935481,0.0003412166294569488,0.00016015138418322007,6.34184423964697e-05,0.0,0.0,0.0,0.0,0.0,0.00014479038472442257,0.0,0.0,0.0005058608258665081,0.00014592913000097482,5.7786563457647685e-05,0.0,0.0 +97258,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,32033.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.002854133385686359,0.0,0.0,0.002854133385686359,0.0007261774642162433,0.000864771726256669,0.0012632148848197443,0.0,0.0,0.0007261774642162433,0.000864771726256669,0.0012632148848197443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003401230264143246,0.00012139394568015919,0.0003401230264143246,8.653753818296505e-05,0.0001030536197666972,0.00015053552570150553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.653753818296505e-05,0.0001030536197666972,0.00015053552570150553,0.0,0.0 +97259,50.0,the Greater Atlanta and Macon Area,G1302190030100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,DistrictHeating,3967.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.002267338902632746,0.0011053625186392144,0.0004288896106302005,0.0,0.0,0.003801591031902162,0.0034616894642107623,0.00017879499424820603,0.0001494780745806376,0.0,1.1628498862555079e-05,0.00010061654180135686,0.00017879499424820603,0.0001494780745806376,0.0,0.0,0.0,0.0,0.0,0.0010937340197766593,0.0,1.1628498862555079e-05,0.002267338902632746,0.0,0.0,0.0,0.0,0.0,0.0,5.11130907274169e-05,1.7618065633985785e-05,5.11130907274169e-05,1.1991016574672779e-05,2.130796488445651e-05,1.781410926828761e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.654305162483916e-05,2.403931587044983e-06,2.009760209260813e-06,0.0,1.5634730627193322e-07 +97260,50.0,the Greater Atlanta and Macon Area,G1300890023507,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,109256.0,,1589.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.011879646753740229,0.00059068097198163,0.0,0.012470327725721861,0.006670386158668964,0.0015006102074214501,0.004114230139272207,0.0,0.00018506247193546737,0.006670386158668964,0.0015006102074214501,0.0035235491672905763,0.0,0.00018506247193546737,0.0,0.00059068097198163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9465912263792525e-05,0.0,0.0,0.0014156737327156164,0.00044152327492629953,0.001455139644979409,0.000794896571223751,0.00017882471572840616,0.00041989430371696453,0.0,2.205352447436847e-05,0.0,3.9465912263792525e-05,0.0,0.0,0.0,0.0,0.000778355113056121,0.0001751034497654572,0.00048008196062686797,0.0,2.1594600048540387e-05 +97261,50.0,the Greater Atlanta and Macon Area,G1301350050536,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5560.0,,629.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009496426206747279,0.000498806361721763,0.0,0.0014483662753227518,0.0009326876705581697,0.00026044457520507907,0.00014531632855996316,0.0,0.00011000040807327885,0.0005438817169096857,0.00026044457520507907,0.00014531632855996316,0.0,0.0,0.0003888059536484841,0.0,0.00011000040807327885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.33256885583173e-05,0.0,0.0,0.00011316236857958296,5.798099184404203e-05,0.00014648805713790027,6.48106371520064e-05,3.10353857043291e-05,1.7316345723247456e-05,0.0,0.0,2.5976465248325258e-05,0.0,7.349223309992043e-06,0.0,0.0,0.0,9.433221906944386e-05,2.6341416852857917e-05,1.4697322772458358e-05,0.0,1.1125463453255327e-05 +97262,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,16159.0,,7400.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0031840798332090684,0.005090540102746041,0.0,0.008274619935955109,0.0025334362561554445,0.0004706264498044397,0.0035229566962578294,0.0003688558109332877,0.0013786012828620755,0.0015366720989804824,0.0004706264498044397,0.000644834259401359,0.0003688558109332877,0.0001629477741474683,0.0009967641571749623,0.002878122436856471,0.0012156535087146072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034012145990619833,0.0,0.0,0.00037944118799473333,0.0004323625416554528,0.0007195626479009318,0.00018312250864886828,5.6083725462236235e-05,7.684376343050381e-05,4.395589760016474e-05,1.9418199367601454e-05,6.659821423224582e-05,0.00019230006742984782,8.122317824410468e-05,0.0,0.0,0.0,0.00022030813679384015,4.092577266564317e-05,0.0003063570373527975,3.207577702215831e-05,0.00011988345049969413 +97263,50.0,the Greater Atlanta and Macon Area,G1300570090601,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,23287.0,,4530.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002258509506660543,0.0013333406352099952,0.0,0.0035918501418705376,0.0016990993630660166,0.0006569724020149234,0.0012358090663958955,0.0,0.0,0.00036575872785602175,0.0006569724020149234,0.0012358090663958955,0.0,0.0,0.0013333406352099952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.908521228487282e-05,0.0,0.0,0.0002691434715864104,0.00017153613828659774,0.0003582286838712832,4.358696453917327e-05,7.829049755748298e-05,0.0001472696667279266,0.0,0.0,8.908521228487282e-05,0.0,0.0,0.0,0.0,0.0,0.00016945755099924577,6.552232126003999e-05,0.00012325187240151773,0.0,0.0 +97264,50.0,the Greater Atlanta and Macon Area,G1300670031001,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,12016.0,,1296.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010960179097098594,0.00038141042706785015,0.0,0.0014773976471714122,0.0005567708374529238,0.00041931209084551316,0.0005013454084792726,0.0,0.0,0.00017536041038507372,0.00041931209084551316,0.0005013454084792726,0.0,0.0,0.00038141042706785015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5483405678205997e-05,0.0,0.0,0.00013060865876901316,6.331406345289251e-05,0.00015609206444721914,2.0897092829113804e-05,4.996796978022085e-05,5.974359615967851e-05,0.0,0.0,2.5483405678205997e-05,0.0,0.0,0.0,0.0,0.0,5.882472441216138e-05,4.430174234612287e-05,5.296884014976674e-05,0.0,0.0 +97265,50.0,the Greater Atlanta and Macon Area,G1300670030239,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,271897.0,,9191.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013995992697761283,0.0015630554717075947,0.0,0.015559048169468877,0.006029617199201617,0.003978409416877128,0.0031450292390503864,0.0,0.0024059923143397457,0.00514744306674689,0.003978409416877128,0.002464147899797519,0.0,0.0024059923143397457,0.0008821741324547271,0.0006808813392528677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010443436713845843,0.0,0.0,0.0016678747260216373,0.0005364863714581615,0.0017723090931600954,0.0006134105940220802,0.0004740991696314056,0.00029364762414522933,0.0,0.000286717338222922,5.894179630629445e-05,4.549257083216399e-05,0.0,0.0,0.0,0.0,0.0006868251369893613,0.00045317496989828894,0.00035824581670497186,0.0,0.0002740631695674733 +97266,50.0,the Greater Atlanta and Macon Area,G1301390000701,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,33230.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.002960779767570876,0.0,0.0,0.0029607797675708755,0.000782891856654398,0.0009824356768020615,0.0011954215445081188,0.0,0.0,0.000782891856654398,0.0009824356768020615,0.0011954215445081188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003528308044273698,0.00011808653275507636,0.0003528308044273698,9.329581571331644e-05,0.00011707509418324916,0.00014245623730557046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.329581571331645e-05,0.00011707509418324917,0.00014245623730557046,0.0,0.0 +97267,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,53029.0,,1674.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004724787647956534,0.000492629560290725,0.0,0.005217417208247259,0.0015038827774063294,0.0015110334556736943,0.0022025009751672356,0.0,0.0,0.0010112532171156043,0.0015110334556736943,0.0022025009751672356,0.0,0.0,0.000492629560290725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.291410878355501e-05,0.0,0.0,0.0005630436331863441,0.0001911024176607497,0.0005959577419698991,0.00012050905307509531,0.00018006687922082467,0.00026246770089042416,0.0,0.0,3.291410878355501e-05,0.0,0.0,0.0,0.0,0.0,0.00017178050909821398,0.00017259729294042536,0.00025157993993125976,0.0,0.0 +97268,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,26343.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.0066474156376493555,0.0,0.0,0.0066474156376493555,0.0026351300764080737,0.0017072394161267838,0.002149639553558339,0.0,0.00015548929862989794,0.0026351300764080737,0.0017072394161267838,0.002149639553558339,0.0,0.00015548929862989794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007921595527447878,0.00026077740202633406,0.0007921595527447878,0.0003140233101912543,0.00020344839047637777,0.000256168351752327,0.0,1.8529356365448606e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003140233101912543,0.00020344839047637777,0.000256168351752327,0.0,1.8529356365448606e-05 +97269,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,8239.0,,1168.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007341260722473483,0.00034369290092797343,0.0,0.0010778189731753217,0.0006130555754029107,0.0002525754598300939,0.00021218793794231704,0.0,0.0,0.0002693626744749373,0.0002525754598300939,0.00021218793794231704,0.0,0.0,0.00034369290092797343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2964507551332118e-05,0.0,0.0,8.748296314994245e-05,5.3527801298610267e-05,0.00011044747070127456,3.2098907552654356e-05,3.009844014564719e-05,2.5285615451640907e-05,0.0,0.0,2.2964507551332118e-05,0.0,0.0,0.0,0.0,0.0,6.282171625081606e-05,2.5882194871056087e-05,2.17435595794024e-05,0.0,0.0 +97270,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,36433.0,,1659.0,,9.325022323477118,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,163187.89066084955,0.0,0.0,0.009198846402043586,0.001406280338812386,0.0,0.010605215125014028,0.0055618382980821965,0.0009635640911151174,0.0037775389152687688,0.0,0.00030218543638989043,0.004457743395659701,0.0009635640911151174,0.0037775389152687688,0.0,0.0,0.0011040949024224951,0.0,0.00030218543638989043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.39610111944782e-05,0.0,0.0,0.00109621137584941,0.0004292901781583556,0.001190172387043888,0.000531221938856827,0.00011482634581285447,0.00045016309117972854,0.0,0.0,7.377040738114646e-05,0.0,2.0190603813331713e-05,0.0,0.0,0.0,0.000624178414633701,0.00010813617271066311,0.00042393505977377926,0.0,3.3912820995941766e-05 +97271,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,111114.0,,15116.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006148782958305791,0.0025706896415706153,0.0,0.008719472599876406,0.0048733671399157135,0.001029761660915247,0.0017287456991779884,0.0,0.001087615830228879,0.003060650449052355,0.001029761660915247,0.0009707727484707312,0.0,0.001087615830228879,0.0018127166908633583,0.0007579729507072573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017175880893994608,0.0,0.0,0.0007327383735262038,0.0003881910160885366,0.0009044971824661499,0.00036473169522783085,0.00012271467209936851,0.00011568507940537243,0.0,0.00012960903968593576,0.00012111538271030851,5.064342622963759e-05,0.0,0.0,0.0,0.0,0.0005055290668886743,0.00010682028187378054,0.00017932800363741364,0.0,0.00011282166929012973 +97272,50.0,the Greater Atlanta and Macon Area,G1300210011000,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,13480.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003236824037861535,0.0,0.0,0.003236824037861535,0.0023091814988014637,0.0004950845434034942,0.0003531592048668427,0.0,7.931608371599582e-05,0.0023091814988014637,0.0004950845434034942,0.0003531592048668427,0.0,7.931608371599582e-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.00038572876396921087,0.00013092902852195073,0.00038572876396921087,0.00027518262188318607,5.8998681038422325e-05,4.208559439259328e-05,0.0,9.452010543910294e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00027518262188318607,5.8998681038422325e-05,4.208559439259328e-05,0.0,9.452010543910294e-06 +97273,35.0,Eastern Counties in South Carolina and Georgia,G1302450010101,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,16240.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003726946156840671,0.0,0.0,0.003726946156840671,0.0020589926007400583,0.0007637998259825041,0.0007998601101328421,0.0,0.00010429361998526668,0.0020589926007400583,0.0007637998259825041,0.0007998601101328421,0.0,0.00010429361998526668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044413484965342195,0.0001445831901395272,0.00044413484965342195,0.0002453672070063898,9.102093419176583e-05,9.531818674267106e-05,0.0,1.2428521712595205e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002453672070063898,9.102093419176583e-05,9.531818674267106e-05,0.0,1.2428521712595205e-05 +97274,85.0,Rural Climate Zone 3A,G1301930000400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4629.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011115003639825523,0.0,0.0,0.0011115003639825523,0.0005946638601856203,0.00032809896152383253,0.0001470531771084886,0.0,4.168436516461094e-05,0.0005946638601856203,0.00032809896152383253,0.0001470531771084886,0.0,4.168436516461094e-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.00013245158205933935,4.530745221702415e-05,0.00013245158205933935,7.08629269295818e-05,3.9097806833053e-05,1.7523544378413975e-05,0.0,4.967303918290575e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.08629269295818e-05,3.9097806833053e-05,1.7523544378413975e-05,0.0,4.967303918290575e-06 +97275,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,21600.0,,8710.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0044975593823889685,0.005991342938702115,0.0,0.010488902321091086,0.004141756606180522,0.0003759560880638331,0.003580691272925398,0.00036878409096227204,0.0020216425429880444,0.002472187400908113,0.0003759560880638331,0.0010391506600451886,0.00036878409096227204,0.00024148114240956243,0.0016695692052724098,0.002541540612880209,0.001780161400578482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004003044896701078,0.0,0.0,0.0005359676029299651,0.0005553712870473297,0.000936272092600073,0.00029460697293885984,4.4802139603873027e-05,0.00012383407110273106,4.394746315206316e-05,2.8776956132438093e-05,0.00011155029106550841,0.0001698100289741149,0.00011893937774547807,0.0,0.0,0.0,0.00036970609564275487,3.355901146962408e-05,0.000319623656358728,3.291881666860111e-05,0.00018045811051235476 +97276,50.0,the Greater Atlanta and Macon Area,G1301990970500,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Propane,7867.0,,,1345.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005952314281816224,0.0,0.0001267794040531761,0.0007219804586353609,0.0004388985118755139,0.0002533765665097257,2.9735753849559032e-05,0.0,0.0,0.0003121191078223377,0.0002533765665097257,2.9735753849559032e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001267794040531761,0.0,0.0,0.0,0.0,1.0224101849463392e-05,7.09308880971528e-05,3.013906802597869e-05,8.115498994661618e-05,3.719374425097424e-05,3.0193675996655033e-05,3.543467849523529e-06,0.0,0.0,0.0,0.0,0.0,1.0224101849463392e-05,0.0,0.0,4.933485926498123e-05,2.848106546633034e-05,3.3424793924163747e-06,0.0,0.0 +97277,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,71877.0,,4155.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007173449955237644,0.0012230115005697534,0.0,0.008396461455807398,0.004638611233472584,0.0015822333422843649,0.0021755861904441502,0.0,0.0,0.0034155997329028314,0.0015822333422843649,0.0021755861904441502,0.0,0.0,0.0012230115005697534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.171381312785122e-05,0.0,0.0,0.0008548472826511289,0.00034954505082747595,0.0009365610957789802,0.0004070309500331878,0.00018855193548597,0.0002592607399061295,0.0,0.0,8.171381312785122e-05,0.0,0.0,0.0,0.0,0.0,0.0005174016271710522,0.00017648603529323156,0.00024267001012369432,0.0,0.0 +97278,50.0,the Greater Atlanta and Macon Area,G1300630040417,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,164886.0,,4352.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014072027872311542,0.001267915534929512,0.0,0.015339943407241055,0.009353580320455112,0.0048278836306306526,0.0011584490825558545,0.0,0.0,0.0080856647855256,0.0048278836306306526,0.0011584490825558545,0.0,0.0,0.001267915534929512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.471554566922562e-05,0.0,0.0,0.001676935786387011,0.0005350418346146947,0.0017616513320562366,0.0009635527131278942,0.0005753293630583673,0.00013805009063885576,0.0,0.0,8.471554566922562e-05,0.0,0.0,0.0,0.0,0.0,0.0010741726219958938,0.0005544380056120854,0.00013303721631988008,0.0,0.0 +97279,35.0,Eastern Counties in South Carolina and Georgia,G1302450000700,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,87976.0,,,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.03312379167535482,0.0,0.021071734475923122,0.0,0.0,0.054195526151277956,0.044062509982056006,0.006149046414915268,0.0010662158765634424,0.0006588000538115579,0.0022589538239316804,0.010938718306701175,0.006149046414915268,0.0010662158765634424,0.0006588000538115579,0.0022589538239316804,0.0,0.0,0.0,0.0,0.0,0.0,0.03312379167535482,0.0,0.0,0.0,0.0,0.0,0.0,0.0025110797267151497,0.0006705079421685024,0.0025110797267151497,0.0013035468820846489,0.0007327705181918948,0.00012705897917418552,7.850798713201706e-05,0.00026919536013240346,0.0,0.0,0.0,0.0,0.0,0.0,0.002041579506309779,0.00028490812595902994,4.9401735937886996e-05,3.05246498478001e-05,0.00010466570866065387 +97280,50.0,the Greater Atlanta and Macon Area,G1300890021910,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,123567.0,,16769.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.011064830654573761,0.004936024208103622,0.0,0.016000854862677383,0.008543372601154502,0.002891022292456198,0.0045664599690666855,0.0,0.0,0.0036073483930508785,0.002891022292456198,0.0045664599690666855,0.0,0.0,0.004936024208103622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032979676516797936,0.0,0.0,0.0013185746823498846,0.0007336420873793162,0.0016483714475178637,0.00042988080070852753,0.00034451759091009003,0.0005441762907312672,0.0,0.0,0.00032979676516797936,0.0,0.0,0.0,0.0,0.0,0.0008801186925392239,0.0002978265000164523,0.0004704262549621877,0.0,0.0 +97281,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960900,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,25275.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0021431165869811807,0.0,0.0,0.0021431165869811807,0.0005699059889483406,0.0006199300472135963,0.0009532498612129461,0.0,0.0,0.0005699059889483406,0.0006199300472135963,0.0009532498612129461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002553899197932011,7.096396269755808e-05,0.0002553899197932011,6.791429159353511e-05,7.387553528214376e-05,0.0001135964357128053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.791429159353511e-05,7.387553528214376e-05,0.0001135964357128053,0.0,0.0 +97282,50.0,the Greater Atlanta and Macon Area,G1300630040417,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,54665.0,,21846.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011092138997303389,0.015027844126756063,0.0,0.026119983124059453,0.008385857611000322,0.0016303383811268704,0.012138389934479122,0.0003734458890782867,0.0035918795884038327,0.006170140826444034,0.0016303383811268704,0.002499154110009983,0.0003734458890782867,0.0004189880706731998,0.002215716784556288,0.00963923582446914,0.003172891517730633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010040724769553343,0.0,0.0,0.0013218256292132238,0.0013858212961423348,0.0023258981061685586,0.0007352820120836347,0.00019428381279637787,0.00029781865830998523,4.4502719216555495e-05,4.992988009662325e-05,0.00014804121079083733,0.0006440372490289158,0.0002119940171355811,0.0,0.0,0.0,0.0007467328842972664,0.00014517624054603774,0.0010808834763195165,3.3254121261799156e-05,0.00031984499731773107 +97283,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,26221.0,,4518.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005459682793563392,0.0031077697840484575,0.0,0.00856745257761185,0.0033380626109795856,0.0004668252913406123,0.0024504562496903827,0.0003733024491362556,0.0019388059764650137,0.001927545941015563,0.0004668252913406123,0.0024504562496903827,0.0003733024491362556,0.00024155286238057805,0.0014105166699640225,0.0,0.0016972531140844356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020764227246045469,0.0,0.0,0.0006506212651829136,0.0003691219318156849,0.0008582635376433681,0.00022970242526181923,5.563078903219158e-05,0.00029201677198692423,4.4485828378023855e-05,2.878545052395472e-05,9.42421437385711e-05,0.0,0.00011340012872188362,0.0,0.0,0.0,0.0003343978153857479,4.676525751124407e-05,0.0002454798822225651,3.7396399653714154e-05,0.00019422418287009694 +97285,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,3628.0,,31.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011594704667513508,2.4812122121792227e-05,0.0,0.001184282588873143,0.000534287696355926,0.00023703847333685508,0.0003882270041323091,0.0,2.4812122121792227e-05,0.000534287696355926,0.00023703847333685508,0.0003882270041323091,0.0,0.0,0.0,0.0,2.4812122121792227e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6559498725288668e-06,0.0,0.0,0.00013817650837035864,4.315877978033065e-05,0.00013983245824288754,6.36721766226205e-05,2.8248368142481477e-05,4.626581997934685e-05,0.0,0.0,0.0,0.0,1.6559498725288666e-06,0.0,0.0,0.0,6.308524898729334e-05,2.7987975789099494e-05,4.583934345918808e-05,0.0,2.9296555257256976e-06 +97286,33.0,Rural Lower Plains-Upper South Appalachia,G1300110970100,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,57128.0,,19079.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011309809109335768,0.013124109216117683,0.0,0.02443391832545345,0.008947568423994589,0.0005921200807048848,0.010165373531839663,0.0003727286893681307,0.004356199319517199,0.00472469653059541,0.0005921200807048848,0.005120590770601583,0.0003727286893681307,0.0004997447580367778,0.004222871893399179,0.005044782761238081,0.003856454561480422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008768750501712122,0.0,0.0,0.001347769152488419,0.0012486841321131138,0.0022246442026596313,0.0005630333966953695,7.056186109138197e-05,0.0006102113852157702,4.441739245299324e-05,5.955366376995512e-05,0.00028214722556891306,0.0003370624294585146,0.0002576653951437844,0.0,0.0,0.0,0.0008146526462603508,5.391098092712598e-05,0.0009255306084869252,3.393596994649634e-05,0.0003966205269540582 +97287,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,23235.0,,1350.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005454625843453677,0.0010471471407374343,0.0,0.006501772984191111,0.0028222030506577555,0.0006500398350878946,0.0019912776438455637,0.0004065680172685575,0.0006316844373313388,0.0017750559099203212,0.0006500398350878946,0.0019912776438455637,0.0004065680172685575,0.0006316844373313388,0.0010471471407374343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.996348178856112e-05,0.0,0.0,0.0006500171235317704,0.00024738668739289314,0.0007199806053203316,0.0002115299508689895,7.746397936569819e-05,0.0002372966732006074,4.8449917682638446e-05,7.527660241383682e-05,6.996348178856112e-05,0.0,0.0,0.0,0.0,0.0,0.00031251959514582323,7.198283838683381e-05,0.0002205062045172495,4.502173297785798e-05,6.995023429256693e-05 +97288,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,46058.0,,3082.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004103722085309923,0.0009070926933412009,0.0,0.0050108454682574214,0.0017754244139284033,0.0012212315034044869,0.002014158861318234,0.0,0.0,0.0008683317205872024,0.0012212315034044869,0.002014158861318234,0.0,0.0,0.0009070926933412009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.060737427441042e-05,0.0,0.0,0.0004890344209329946,0.000211434267101674,0.000549641795207405,0.00010347779194775642,0.0001455323310587783,0.0002400242979264599,0.0,0.0,6.060737427441042e-05,0.0,0.0,0.0,0.0,0.0,0.000194747067796929,0.00013395740901355548,0.00022093395204080235,0.0,0.0 +97289,50.0,the Greater Atlanta and Macon Area,G1301170130613,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,24887.0,,12894.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004967110032628175,0.008869823975413664,0.0,0.013836934008041842,0.0029240232183064627,0.0005165989512254464,0.008183965892591375,0.00036942957070141256,0.001842844655246126,0.002291524793919789,0.0005165989512254464,0.0015647146076475864,0.00036942957070141256,0.00022477038916292506,0.0006324984243866738,0.00661925128494379,0.0016180742660832008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000592631461462827,0.0,0.0,0.0005919187388339995,0.0007411907889452071,0.0011845502002968266,0.00027307558260515353,6.156187354088825e-05,0.00018646333403325824,4.402404700945654e-05,2.6785354946153526e-05,4.22599666753509e-05,0.00044226092577028697,0.00010811056901718922,0.0,0.0,0.0,0.00025031934725600795,4.4224926619696475e-05,0.0007006117418538892,3.1626072055817935e-05,0.00015776197271874233 +97290,81.0,the Columbus-Albany Area,G1302150002400,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,28774.0,,1435.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024911367223971305,0.00042241174108158106,0.0,0.0029135484634787113,0.0011934880993113635,0.0006860968383914434,0.0010339942153822022,0.0,0.0,0.0007710763582297823,0.0006860968383914434,0.0010339942153822022,0.0,0.0,0.00042241174108158106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8223736125162824e-05,0.0,0.0,0.0002968633318142813,0.00011341429841015085,0.0003250870679394441,9.188748844224384e-05,8.176066434287774e-05,0.00012321883624263002,0.0,0.0,2.8223736125162824e-05,0.0,0.0,0.0,0.0,0.0,0.000133166670020825,7.655311463358696e-05,0.00011537070756104903,0.0,0.0 +97291,50.0,the Greater Atlanta and Macon Area,G1300670030226,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,203749.0,,7880.0,,3.20458438519356,Mercantile,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,240343.828889517,0.0,0.0,0.017966895275413335,0.0022956366455052827,0.0,0.02026253192091862,0.014114490164325522,0.0051336546561705,0.0010144174740220353,0.0,0.0,0.011818853518820241,0.0051336546561705,0.0010144174740220353,0.0,0.0,0.0022956366455052827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015338091723242318,0.0,0.0,0.002141080303234577,0.0005762781052419262,0.002294461220467,0.0014084300090839448,0.0006117677372437552,0.00012088617647021856,0.0,0.0,0.00015338091723242318,0.0,0.0,0.0,0.0,0.0,0.0015982775723735712,0.000581317851778074,0.0001148692357199815,0.0,0.0 +97292,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2004,gen5_led,100001_200000,Electricity,120861.0,,2.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.01021383856154476,5.217233070609473e-07,0.0,0.010214360284851823,0.003276637195586834,0.0023174335507521325,0.004620289538512857,0.0,0.0,0.0032761154722797726,0.0023174335507521325,0.004620289538512857,0.0,0.0,5.217233070609473e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.479852636132624e-08,0.0,0.0,0.0012171624551301995,0.00039188187170751434,0.0012171972536565605,0.0003904080456630004,0.00027616386270823873,0.0005505905467589607,0.0,0.0,3.479852636132624e-08,0.0,0.0,0.0,0.0,0.0,0.00039046143708206644,0.0002761576520548577,0.0005505781645196364,0.0,0.0 +97293,46.0,the Tallahassee-Valdosta Area,G1301850010301,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,4705.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0007658675028259867,0.0,0.0,0.0007658675028259867,0.000396828539801197,0.00019626388598337655,0.0001338200453101994,0.0,3.8955031731213796e-05,0.000396828539801197,0.00019626388598337655,0.0001338200453101994,0.0,3.8955031731213796e-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,9.126796646072611e-05,2.4777973412486948e-05,9.126796646072611e-05,4.728981674714512e-05,2.338864842454677e-05,1.5947253750913048e-05,0.0,4.642247538121166e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.728981674714512e-05,2.338864842454677e-05,1.5947253750913048e-05,0.0,4.642247538121166e-06 +97294,50.0,the Greater Atlanta and Macon Area,G1300770170306,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,38540.0,,15858.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.008024747556936721,0.010908751031416471,0.0,0.018933498588353193,0.007243501912663671,0.000686862162416507,0.005818928128380586,0.0003724418094840682,0.0048117645754083595,0.004667392273753936,0.000686862162416507,0.0017186973854181034,0.0003724418094840682,0.000579353925864106,0.0025761096389097333,0.004100230742962483,0.004232410649544254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007288602550785718,0.0,0.0,0.0009562902198438676,0.0010133974670968901,0.001685150474922439,0.0005562021174993227,8.185174220613744e-05,0.00020481310955705105,4.4383011097052495e-05,6.904023948430388e-05,0.00017212088928592143,0.0002739539308019746,0.00028278543499067567,0.0,0.0,0.0,0.0006446981064416407,6.11332392585086e-05,0.0005179058404510635,3.314868032467736e-05,0.00042826460844654887 +97295,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,67214.0,,3981.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005646948937989908,0.0011718212372651853,0.0,0.006818770175255092,0.0023931141198822677,0.0017656958087320321,0.0026599602466407936,0.0,0.0,0.0012212928826170824,0.0017656958087320321,0.0026599602466407936,0.0,0.0,0.0011718212372651853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.829425382032498e-05,0.0,0.0,0.000672936296052914,0.0002920236425756521,0.000751230549873239,0.00014553917838624426,0.00021041465232502017,0.00031698246534164965,0.0,0.0,7.829425382032498e-05,0.0,0.0,0.0,0.0,0.0,0.0002636517128429707,0.00019452842656528095,0.00029305041046498757,0.0,0.0 +97296,35.0,Eastern Counties in South Carolina and Georgia,G1302450010106,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,36414.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.0032444437985805433,0.0,0.0,0.0032444437985805433,0.001420314979457685,0.0007094516287839953,0.0011147078799451605,0.0,0.0,0.001420314979457685,0.0007094516287839953,0.0011147078799451605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038663582632571215,0.00013370925363857656,0.00038663582632571215,0.00016925694812949506,8.454435760392258e-05,0.00013283817782972166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016925694812949506,8.454435760392258e-05,0.00013283817782972166,0.0,0.0 +97297,50.0,the Greater Atlanta and Macon Area,G1300670031406,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,29088.0,,12448.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.006375188223577666,0.008563005939408879,0.0,0.014938122443015536,0.004393708864358364,0.0011595684913803994,0.00545251079646183,0.00036648905188977243,0.0035659169588961813,0.003204089705122424,0.0011595684913803994,0.001262773529671864,0.00036648905188977243,0.00038226744551320694,0.0011896191592359402,0.004189737266789967,0.0031836495133829744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000572128511048956,0.0,0.0,0.0007597163440594231,0.0007409633167201908,0.0013318448551083793,0.00038182391349819695,0.0001381830785324868,0.00015048178276357593,4.367364740852348e-05,4.5553921856639956e-05,7.948319119535184e-05,0.00027993302364804154,0.00021271229620556273,0.0,0.0,0.0,0.0003917318637708586,0.00010338416593397607,0.00048613194056967656,3.267522810011242e-05,0.0003179280511032465 +97298,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5673.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010540189477337338,0.0,0.0,0.0010540189477337338,0.00031552748631545786,0.0003185049409700729,0.00038136231701194653,0.0,3.8624203436256564e-05,0.00031552748631545786,0.0003185049409700729,0.00038136231701194653,0.0,3.8624203436256564e-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.00012560782224441594,4.020241118792871e-05,0.00012560782224441594,3.760152556987185e-05,3.795634992649449e-05,4.544708634408364e-05,0.0,4.602860403965963e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.760152556987185e-05,3.795634992649449e-05,4.544708634408364e-05,0.0,4.602860403965963e-06 +97299,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen1_t12_incandescent,200001_500000,NaturalGas,267215.0,,4681.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02380856691126965,0.0013779326331605573,0.0,0.02518649954443021,0.005453727176739571,0.010082302908952805,0.009650469458737833,0.0,0.0,0.004075794543579013,0.010082302908952805,0.009650469458737833,0.0,0.0,0.0013779326331605573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.206606180227671e-05,0.0,0.0,0.002837221297307942,0.0008050369009564832,0.002929287359110219,0.0004857046258008985,0.0012014887181491952,0.0011500279533578485,0.0,0.0,9.20660618022767e-05,0.0,0.0,0.0,0.0,0.0,0.0006342895744872156,0.0011726108429564138,0.0011223869416665893,0.0,0.0 +97300,50.0,the Greater Atlanta and Macon Area,G1300670031111,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,26978.0,,2733.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002566847981133563,0.0008046200979131714,0.0,0.003371437389440437,0.0017238044961356677,0.0006539955102040463,0.0009936066934944253,0.0,0.0,0.0009191843982224961,0.0006539955102040463,0.0009936066934944253,0.0,0.0,0.0008046200979131714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.375923093070974e-05,0.0,0.0,0.00030588478629916096,0.00014982012777271718,0.00035964401722987074,0.00010953688153189506,7.793499200175899e-05,0.00011840559835987559,0.0,0.0,5.3759230930709734e-05,0.0,0.0,0.0,0.0,0.0,0.00018388476554566534,6.976418226740957e-05,0.00010599179564005874,0.0,0.0 +97301,35.0,Eastern Counties in South Carolina and Georgia,G1300510000900,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,155799.0,,32468.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007415830046105605,0.005521482771264323,0.0,0.01293731281736993,0.003833711937328077,0.0008382382968558363,0.00601725913729184,0.0,0.0022481211762555944,0.003833711937328077,0.0008382382968558363,0.0024408147441687287,0.0,0.0003030827981143826,0.0,0.0035764443931231103,0.0019450383781412124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003689133579614242,0.0,0.0,0.0008837301848990806,0.0005781285657307069,0.0012526435428605047,0.000456856068459111,9.989124352423834e-05,0.00029086719244616246,0.0,3.611779336259345e-05,0.0,0.00023895720864981266,0.00012995614931161155,0.0,0.0,0.0,0.0003711956703275822,8.116166044351017e-05,0.0005826156413198111,0.0,0.000217672287495714 +97302,85.0,Rural Climate Zone 3A,G1301750950500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,24426.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00691447677875358,0.0,0.0,0.00691447677875358,0.003506945340694113,0.0011287034353203284,0.002143022987659195,0.0,0.00013588772215368208,0.003506945340694113,0.0011287034353203284,0.002143022987659195,0.0,0.00013588772215368208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008239890785039355,0.00027771266649678837,0.0008239890785039355,0.0004179180510839916,0.00013450609978640709,0.0002553812230941302,0.0,1.6193560632305038e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004179180510839916,0.00013450609978640709,0.0002553812230941302,0.0,1.6193560632305038e-05 +97303,35.0,Eastern Counties in South Carolina and Georgia,G1302450000200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,108961.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008602593074356698,0.0,0.0,0.0086025930743567,0.006077666126695826,0.0019640176868439088,0.0005609396344164007,0.0,0.0,0.006077666126695826,0.0019640176868439088,0.0005609396344164007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010251545578635489,0.0002438073368300719,0.0010251545578635489,0.0007242638442968601,0.00023404823010801556,6.684610302240622e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00072426384429686,0.0002340482301080155,6.68461030224062e-05,0.0,0.0 +97304,50.0,the Greater Atlanta and Macon Area,G1301210010601,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,15587.0,,1747.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005456485641464252,0.0013547415595301137,0.0,0.006811146340211298,0.0029956494303397473,0.0006624115348973792,0.00209203017954895,0.0004188588562949737,0.0006421963391302474,0.0029956494303397473,0.0006624115348973792,0.0013795658199321518,0.0004188588562949737,0.0,0.0,0.0007124643596167978,0.0006421963391302474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.05149870322603e-05,0.0,0.0,0.0006502340904815919,0.00026968488799563516,0.0007407490775138522,0.00035698314093170625,7.893772479586842e-05,0.00016439898959256727,4.991423516145e-05,0.0,0.0,4.7602217425166856e-05,4.290736701744129e-05,0.0,0.0,0.0,0.0003257931104751781,7.20408443602089e-05,0.00022751961978605036,4.555317062815944e-05,6.984233226425527e-05 +97305,50.0,the Greater Atlanta and Macon Area,G1301350050542,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,112266.0,,16331.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005353026607412402,0.0027772306217528106,0.0,0.008130274959526632,0.0033586269030777623,0.0009900633816957486,0.0022709578817646232,0.0,0.0015106090626270787,0.0021894691406780607,0.0009900633816957486,0.0019583893402905124,0.0,0.0002151047447480806,0.0011691577623997016,0.0003125685414741108,0.001295504317878998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018555869405889884,0.0,0.0,0.0006379102724417984,0.0003293188892529588,0.0008234689665006971,0.00026091498482350996,0.00011798402060577062,0.0002333776327362068,0.0,2.563363427631105e-05,7.811644659268146e-05,2.0884045388792736e-05,8.655820207742462e-05,0.0,0.0,0.0,0.0003401760750413674,0.00010027784715200477,0.00023001231190491092,0.0,0.0001530009365956958 +97306,50.0,the Greater Atlanta and Macon Area,G1300630980000,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,377543.0,,116919.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.17919448938628638,0.10124128479768323,0.0,0.2804357741839696,0.17015722826256502,0.00977448452697909,0.05838690184698571,0.0006588606902981778,0.041458389136764834,0.11215753571959258,0.00977448452697909,0.03587143465346766,0.0006588606902981778,0.020732264075572077,0.05799969254297243,0.022515467193518036,0.020726125061192757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006764351317461205,0.0,0.0,0.02135426286174967,0.012838887853449043,0.028118614179210872,0.01336559794826787,0.001164806533069594,0.004274729917430411,7.851516203476433e-05,0.0024706240593961974,0.0038752006896141085,0.0015043520089465863,0.0013847986189005099,0.0,0.0,0.0,0.017061252136042492,0.0009800638310663232,0.005854312884767085,6.606236170207564e-05,0.004156932017751518 +97307,85.0,Rural Climate Zone 3A,G1302770960700,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,47295.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0039529440495693095,0.0,0.0,0.00395294404956931,0.0010547710788457471,0.0009916425586913725,0.0019064997224258922,0.0,0.0,0.0010547710788457471,0.0009916425586913725,0.0019064997224258922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004710634631515552,0.00013619943276735026,0.0004710634631515552,0.00012569470020384307,0.00011817181625844737,0.0002271932894778183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012569470020384305,0.00011817181625844734,0.00022719328947781825,0.0,0.0 +97308,50.0,the Greater Atlanta and Macon Area,G1301350050320,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,57668.0,,6005.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005138145955180294,0.0017674758058972985,0.0,0.006905621761077591,0.0025413142286938744,0.0022425202217794403,0.0021217873106042775,0.0,0.0,0.0007738384227965757,0.0022425202217794403,0.0021217873106042775,0.0,0.0,0.0017674758058972985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011809279190146025,0.0,0.0,0.0006123032516996774,0.00026418515040936845,0.0007303960436011378,9.221687875385918e-05,0.00026723694417700753,0.0002528494287688107,0.0,0.0,0.00011809279190146025,0.0,0.0,0.0,0.0,0.0,0.0002687905481078125,0.00023718760661279803,0.0002244178888805274,0.0,0.0 +97309,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,181112.0,,12831.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.017948570726361093,0.0037767550198141973,0.0,0.021725356435781582,0.006836416698876272,0.0047361121126803865,0.010152796934618631,0.0,0.0,0.0030596616790620743,0.0047361121126803865,0.010152796934618631,0.0,0.0,0.0037767550198141973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025234090341820595,0.0,0.0,0.0021388984061174628,0.0008798892675074927,0.0023912393095356682,0.0003646142965017777,0.000564393834107785,0.0012098902755079,0.0,0.0,0.00025234090341820595,0.0,0.0,0.0,0.0,0.0,0.0007524621469406469,0.0005212884535029693,0.0011174853311869217,0.0,0.0 +97310,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,NaturalGas,116811.0,,8199.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009947360710061809,0.0024133385704324536,0.0,0.012360699280494263,0.0050653195194358454,0.0029441766905638185,0.0043512030704945985,0.0,0.0,0.002651980949003391,0.0029441766905638185,0.0043512030704945985,0.0,0.0,0.0024133385704324536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016124564332118763,0.0,0.0,0.0011854063369282262,0.00047366515307215035,0.001346651980249414,0.0003160310673344445,0.0003508514276053671,0.0005185238419884145,0.0,0.0,0.00016124564332118763,0.0,0.0,0.0,0.0,0.0,0.0005518476266313254,0.00032075704461223607,0.0004740473090058524,0.0,0.0 +97311,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,4794.0,,478.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00042710725084512964,0.00014055839684347875,0.0,0.0005676656476886083,0.00026718371242780045,0.00019622934266751157,0.00010425259259329635,0.0,0.0,0.0001266253155843217,0.00019622934266751157,0.00010425259259329635,0.0,0.0,0.00014055839684347875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.390654778391463e-06,0.0,0.0,5.089806455573357e-05,2.827322191835907e-05,6.028871933412504e-05,1.5089847981386558e-05,2.338450993528493e-05,1.2423706639062077e-05,0.0,0.0,9.390654778391463e-06,0.0,0.0,0.0,0.0,0.0,2.8376146971016524e-05,2.0840464476531086e-05,1.1072107886577432e-05,0.0,0.0 +97312,35.0,Eastern Counties in South Carolina and Georgia,G1302450001601,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,3692.0,,535.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.00032899257951137385,0.00015734561148832214,0.0,0.00048633819099969594,0.0002763292151045158,0.00012619566109615385,8.378262519272859e-05,0.0,0.0,0.00011898360361619367,0.00012619566109615385,8.378262519272859e-05,0.0,0.0,0.00015734561148832214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0513126833078849e-05,0.0,0.0,3.920435778050487e-05,2.3715234592420423e-05,4.971748461358372e-05,1.4178665589087438e-05,1.5038089476999629e-05,9.983945591490511e-06,0.0,0.0,1.0513126833078849e-05,0.0,0.0,0.0,0.0,0.0,2.824864210643704e-05,1.2900757034836643e-05,8.564948128673159e-06,0.0,0.0 +97313,50.0,the Greater Atlanta and Macon Area,G1302230120501,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,3034.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0007284839054958197,0.0,0.0,0.0007284839054958197,0.00038839241827978764,0.00015309079349145807,0.00014572986392865966,0.0,4.118812272217509e-05,0.00038839241827978764,0.00015309079349145807,0.00014572986392865966,0.0,4.118812272217509e-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,8.681539628417397e-05,2.7918933387554292e-05,8.681539628417397e-05,4.628577440400556e-05,1.82442437014085e-05,1.7367021827056603e-05,0.0,4.9084999261488004e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.628577440400556e-05,1.82442437014085e-05,1.7367021827056603e-05,0.0,4.9084999261488004e-06 +97314,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8577.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,9613.75315558068,0.0,0.0,0.0006400324873523065,0.0,0.0,0.0006400324873523065,0.00037954849857414676,0.00020177182106498535,5.874254131261202e-05,0.0,0.0,0.00037954849857414676,0.00020177182106498535,5.874254131261202e-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,7.627129878121832e-05,2.2909995735178573e-05,7.627129878121832e-05,4.522998052249923e-05,2.4044715157727467e-05,7.000222657691542e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.522998052249923e-05,2.4044715157727467e-05,7.000222657691542e-06,0.0,0.0 +97315,50.0,the Greater Atlanta and Macon Area,G1300570090602,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,79995.0,,,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,699376.6742607838,0.0,0.0,0.024730240960408576,0.0,0.0,0.024730240960408573,0.013681690898590894,0.005529489696234083,0.0048499039049495355,0.0,0.0006692448447921178,0.013681690898590894,0.005529489696234083,0.0048499039049495355,0.0,0.0006692448447921178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029470500304838005,0.0008806775814744558,0.0029470500304838005,0.001630417901884288,0.0006589374848362694,0.000577952696611691,0.0,7.975247970301832e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0016304179018842883,0.0006589374848362695,0.000577952696611691,0.0,7.975247970301833e-05 +97316,50.0,the Greater Atlanta and Macon Area,G1301210009601,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,9054.0,,203.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,5611.956475588368,0.0,0.0,0.00040896851651493803,3.450328332342275e-05,0.0,0.00044345406947694067,0.00027524613068489974,0.00011249914321023505,2.122324261980321e-05,0.0,3.450328332342275e-05,0.00027524613068489974,0.00011249914321023505,2.122324261980321e-05,0.0,0.0,0.0,0.0,3.450328332342275e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3047673398819626e-06,0.0,0.0,4.8735234856913126e-05,1.546034932184228e-05,5.1040002196795086e-05,3.280004274337637e-05,1.340609837714011e-05,2.529093736396645e-06,0.0,0.0,0.0,0.0,2.3047673398819626e-06,0.0,0.0,0.0,3.167986062544668e-05,1.2948255325203505e-05,2.442720508158959e-06,0.0,3.971206440164856e-06 +97317,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11084.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026615136329309133,0.0,0.0,0.0026615136329309133,0.0010612144631490534,0.0008384016064953593,0.0006976341669910581,0.0,6.426339629544187e-05,0.0010612144631490534,0.0008384016064953593,0.0006976341669910581,0.0,6.426339629544187e-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.00031716309698925265,0.00010223538675655057,0.00031716309698925265,0.00012646114659630513,9.990933232380526e-05,8.313457809522515e-05,0.0,7.658039973917007e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012646114659630513,9.990933232380526e-05,8.313457809522515e-05,0.0,7.658039973917007e-06 +97318,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,32594.0,,1323.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002746105971518445,0.000389481793524146,0.0,0.003135587765042591,0.0010745044956951698,0.0007983901078347379,0.0012626931615126835,0.0,0.0,0.0006850227021710238,0.0007983901078347379,0.0012626931615126835,0.0,0.0,0.000389481793524146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.602284616431434e-05,0.0,0.0,0.00032724917967153806,0.0001174375988610741,0.00035327202583585246,8.16330905168574e-05,9.514290801469672e-05,0.00015047318113998393,0.0,0.0,2.602284616431434e-05,0.0,0.0,0.0,0.0,0.0,0.0001210594020667789,8.995088383317871e-05,0.0001422617399358949,0.0,0.0 +97319,50.0,the Greater Atlanta and Macon Area,G1301210011419,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,39559.0,,5000.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0036909086828772883,0.0014566874554351394,0.0,0.005147596138312427,0.004258287520374493,0.0006557660118610618,0.000233512232477436,0.0,0.0,0.002801600064939353,0.0006557660118610618,0.000233512232477436,0.0,0.0,0.0014566874554351394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.732833326389878e-05,0.0,0.0,0.0004398373775026942,0.00023363749688595293,0.0005371657107665929,0.0003338604477241334,7.814617691584854e-05,2.7827133308431845e-05,0.0,0.0,9.732833326389878e-05,0.0,0.0,0.0,0.0,0.0,0.00044436392853468363,6.84309736803485e-05,2.4367638983534933e-05,0.0,0.0 +97320,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock 90.1-2007,gen4_led,_1000,Electricity,3824.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005779570312902803,0.0,0.0,0.0005779570312902803,0.0002503543122088836,9.403794284159255e-05,0.00020668497727452926,0.0,2.687979896527491e-05,0.0002503543122088836,9.403794284159255e-05,0.00020668497727452926,0.0,2.687979896527491e-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,6.887257392642403e-05,2.136028182611134e-05,6.887257392642403e-05,2.9833612088621284e-05,1.120608422357529e-05,2.4629731288227484e-05,0.0,3.2031463259999725e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.9833612088621284e-05,1.120608422357529e-05,2.4629731288227484e-05,0.0,3.2031463259999725e-06 +97321,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,31629.0,,2731.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002789055768371561,0.0007956668108713465,0.0,0.003584722579242908,0.002374122026452433,0.000980824273043882,0.00022977627974659254,0.0,0.0,0.0015784552155810867,0.000980824273043882,0.00022977627974659254,0.0,0.0,0.0007956668108713465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.316091648293424e-05,0.0,0.0,0.0003323668553479673,0.00013553318669462874,0.00038552777183090153,0.0001881017232640693,0.0001168830982074224,2.738203387647561e-05,0.0,0.0,5.316091648293424e-05,0.0,0.0,0.0,0.0,0.0,0.00025533076958668866,0.00010548514932057408,2.471185292363876e-05,0.0,0.0 +97322,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,115189.0,,20079.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.011478311720222711,0.005910449897661983,0.0,0.017388761617884697,0.009387121947097243,0.0031122636642563375,0.004889376006531114,0.0,0.0,0.003476672049435259,0.0031122636642563375,0.004889376006531114,0.0,0.0,0.005910449897661983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003949022012260621,0.0,0.0,0.0013678486982609081,0.0007814713923949566,0.0017627508994869704,0.00041430843254776427,0.00037088257450766947,0.0005826576912054745,0.0,0.0,0.0003949022012260621,0.0,0.0,0.0,0.0,0.0,0.0009516006958667174,0.0003154994987087442,0.0004956507049115084,0.0,0.0 +97323,50.0,the Greater Atlanta and Macon Area,G1300450911200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,93279.0,,10895.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0048015769065259195,0.001852734116588417,0.0,0.006654311023114337,0.0029626192807608834,0.0017514228314342362,0.0012591570769678899,0.0,0.0006811118339513284,0.0024734031484587864,0.0017514228314342362,0.0004285251051612562,0.0,0.00014822582147164145,0.0004892161323020969,0.0008306319718066337,0.000532886012479687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001237892880510089,0.0,0.0,0.0005721940564280814,0.00025011588955582893,0.0006959833444790903,0.00029475037227355533,0.00020871346100425142,5.1066456494788986e-05,0.0,1.766376665548579e-05,3.268667434713085e-05,5.5498163228993415e-05,3.560445047488467e-05,0.0,0.0,0.0,0.0003098643373115395,0.00018318367079393622,0.00013169693310224604,0.0,7.123840327136858e-05 +97324,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302050090200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,41711.0,,8139.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,56751.431377317895,0.0,0.0,0.008300797725375807,0.005599106417217738,0.0,0.01389990414259355,0.005689258420784363,0.0011954284768882048,0.0025283441382133363,0.0003730155692521931,0.004113785817484434,0.00534320956063404,0.0011954284768882048,0.0008929853591153732,0.0003730155692521931,0.0004961587594859973,0.00034604886015032326,0.0016353587790979627,0.003617627057998437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003740987256746402,0.0,0.0,0.0009891886925826685,0.0006602223073851902,0.0013632874182573087,0.000636739100787992,0.00014245670973455724,0.00010641519635858964,4.4451484720988254e-05,5.9126200980541586e-05,2.312091036621628e-05,0.00010926487008714272,0.00024170815332275972,0.0,0.0,0.0,0.0005579962526865726,0.0001172463194889417,0.0002479772318780695,3.6584959662946115e-05,0.00040347562032434656 +97325,50.0,the Greater Atlanta and Macon Area,G1301510070108,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,21994.0,,5887.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005163122720491633,0.004566127559096692,0.0,0.009729250279588326,0.0031238137715033643,0.00044117643242188735,0.004916659053698761,0.00041958660334259046,0.0008278526970555869,0.00218210909188729,0.00044117643242188735,0.002120169732056797,0.00041958660334259046,0.0,0.0009417046796160742,0.002796489321641963,0.0008278526970555869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030508044783986946,0.0,0.0,0.0006152824265218389,0.00047232546869985557,0.0009203628743617083,0.00026003902089391637,5.257440517294921e-05,0.000252657790255632,5.0001574128012e-05,0.0,6.291889170240523e-05,0.0001868441482600019,5.531200525924992e-05,0.0,0.0,0.0,0.0002955050121121128,4.173419305455806e-05,0.0004651037159987809,3.9691848929637426e-05,7.831280580875465e-05 +97326,50.0,the Greater Atlanta and Macon Area,G1300630040514,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,16625.0,,5236.0,,7.614023970037612,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,57105.17977528209,0.0,0.0,0.0032672897872037102,0.003624011380571823,0.0,0.006891301167775533,0.004874449383462636,0.0005732226615664415,0.0005494075440646253,0.0007344437903514635,0.00015970562130763374,0.0014768981202262655,0.0005732226615664415,0.00032294742672917356,0.0007344437903514635,0.00015970562130763374,0.0033975512632363715,0.00022646011733545176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024213477618030305,0.0,0.0,0.0003893567120681635,0.0003525834167013945,0.0006314914882484666,0.00017599914106275054,6.830985475013082e-05,3.848503084562953e-05,8.75222701488205e-05,1.9031815253939252e-05,0.00022700406491412247,1.5130711266180596e-05,0.0,0.0,0.0,0.0,0.0004466751953823337,5.252784965240254e-05,5.0345526803945674e-05,6.73015140265014e-05,1.4634789283742514e-05 +97327,50.0,the Greater Atlanta and Macon Area,G1300890021705,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,135815.0,,3131.0,,9.325022323477118,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.037312079396163614,0.0026545298030225123,0.0,0.039966609199186126,0.02207739045638911,0.005078730490153813,0.012203289086805666,0.0,0.0006072875499955943,0.02003014820336219,0.005078730490153813,0.012203289086805666,0.0,0.0,0.0020472422530269183,0.0,0.0006072875499955943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017736063280448071,0.0,0.0,0.004446407391902615,0.0017021559426381916,0.004623768024707096,0.002386953514080799,0.0006052223611858784,0.0014542420492028717,0.0,0.0,0.00013678512145069547,0.0,4.057551135378527e-05,0.0,0.0,0.0,0.0025541504297368393,0.0005875622705304807,0.0014118079818734818,0.0,7.025756779810887e-05 +97328,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,185337.0,,13881.0,,9.525004485617233,Lodging,Zone-by-Zone,2013 to 2018,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.04857720826694876,0.012019467917722414,0.0,0.06059667618467118,0.02128793515652375,0.006933836182195292,0.024114048481968273,0.0004246753476517715,0.007836090736708858,0.02128793515652375,0.006933836182195292,0.012094580564245857,0.0004246753476517715,0.007836090736708858,0.0,0.012019467917722414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008030714294345334,0.0,0.0,0.005788848714048204,0.0028877353894327046,0.006591920143482739,0.0025368406388934007,0.0008262913843493161,0.0014412869665448305,5.060771147308972e-05,0.0009338112543455022,0.0,0.0008030714294345334,0.0,0.0,0.0,0.0,0.0023157766631256484,0.0007542871536671004,0.002623211237606078,4.619768203283736e-05,0.0008524375861152674 +97329,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,37572.0,,1055.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0017818304012696266,0.00017936033612525414,0.0,0.0019611907373948806,0.0013625605447696377,0.00035815330068506663,8.409510421531044e-05,0.0,0.00015639951808628578,0.0012935007870385322,0.00035815330068506663,8.409510421531044e-05,0.0,4.6098939692137286e-05,6.905975773110566e-05,0.0,0.00011030057839414848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1983884634230832e-05,0.0,0.0,0.00021233779985409848,6.2731079903121e-05,0.00022432168448832928,0.0001541443624677191,4.268054009167319e-05,1.0021475329445839e-05,0.0,5.493534863284667e-06,4.614198364010389e-06,0.0,7.369686270220443e-06,0.0,0.0,0.0,0.00015585015306877748,4.096570016511998e-05,9.618827518968517e-06,0.0,1.788903174042195e-05 +97330,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6824.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016385098378494192,0.0,0.0,0.0016385098378494192,0.0009111838313859501,0.0003226402946570382,0.0003644900739691278,0.0,4.01129307635641e-05,0.0009111838313859501,0.0003226402946570382,0.0003644900739691278,0.0,4.01129307635641e-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.0001952580242557119,6.872673427649762e-05,0.0001952580242557119,0.00010858400147519958,3.8448415154284595e-05,4.343557179823948e-05,0.0,4.780179787189959e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010858400147519958,3.8448415154284595e-05,4.343557179823948e-05,0.0,4.780179787189959e-06 +97331,85.0,Rural Climate Zone 3A,G1300090970300,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,37246.0,,7852.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,22700.572550927158,0.0,0.0,0.007587255733741496,0.00540151789706973,0.0,0.012988773630811225,0.003276957195674284,0.00027246416988830637,0.007456940546406128,0.00037452168864352095,0.0016078183102279685,0.0029626085627128614,0.00027246416988830637,0.0023697712822978202,0.00037452168864352095,0.0016078183102279685,0.0003143486329614232,0.005087169264108307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003609001825419937,0.0,0.0,0.0009041567914669375,0.0006029384153886344,0.001265056974008931,0.00035304762966174727,3.2468963520019794e-05,0.000282400498191233,4.4630936431045904e-05,0.00019160021694967195,2.1003073798783208e-05,0.00033989710874321054,0.0,0.0,0.0,0.0,0.00031916312284346047,2.6536970162226838e-05,0.0007262775463746277,3.647698293949685e-05,0.00015659536643769444 +97332,50.0,the Greater Atlanta and Macon Area,G1300630040609,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,72115.0,,3913.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006334488187877345,0.001151688855533892,0.0,0.007486177043411236,0.002613097217824201,0.0025898344962505425,0.002283214639730194,0.0,0.0,0.0014614083622903088,0.0025898344962505425,0.002283214639730194,0.0,0.0,0.001151688855533892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.694999040356738e-05,0.0,0.0,0.0007548678773744857,0.0003074133820675739,0.000831817867778053,0.00017415301689734078,0.00030862522921381783,0.0002720859740463148,0.0,0.0,7.694999040356738e-05,0.0,0.0,0.0,0.0,0.0,0.00029035126252328555,0.0002877664522328122,0.0002536967429819942,0.0,0.0 +97333,85.0,Rural Climate Zone 3A,G1302330010200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,228526.0,,32959.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.061182550742143064,0.029151625729403115,0.0,0.0903341764715462,0.0627080085375169,0.01376978796683763,0.008498742015575753,0.000650408283809199,0.004707229667806687,0.03705307659876702,0.01376978796683763,0.005002048224922525,0.000650408283809199,0.004707229667806687,0.02565493193874989,0.0034966937906532264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001947742490267256,0.0,0.0,0.0072910083272442906,0.003738492845134307,0.009238750817511547,0.004415544738731305,0.001640919469894674,0.0005960845832481258,7.750791942865364e-05,0.000560951615941532,0.0017141136993816914,0.00023362879088556463,0.0,0.0,0.0,0.0,0.006413338647338964,0.001408278071540871,0.0008691921796503237,6.651923223821324e-05,0.0004814226867431724 +97334,50.0,the Greater Atlanta and Macon Area,G1301350050424,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,25910.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.002243563668393562,0.0,0.0,0.0022435636683935624,0.00114410852277836,0.0005227667536750692,0.0005767190815464307,0.0,0.0,0.00114410852277836,0.0005227667536750692,0.0005767190815464307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026736248010287493,0.00010053996271999389,0.00026736248010287493,0.00013634188165289896,6.229741448700324e-05,6.872684120228747e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013634188165289894,6.229741448700322e-05,6.872684120228745e-05,0.0,0.0 +97335,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,25449.0,,3127.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0022674401820931746,0.0009204426720807017,0.0,0.0031879135437801742,0.0013344454610367121,0.0006709975520929736,0.0011824705306504883,0.0,0.0,0.00041400278895601056,0.0006709975520929736,0.0011824705306504883,0.0,0.0,0.0009204426720807017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.149949063486283e-05,0.0,0.0,0.00027020821723485323,0.0001383036852300803,0.000331707707869716,4.93362322929249e-05,7.996200021145366e-05,0.0001409136419752703,0.0,0.0,6.149949063486283e-05,0.0,0.0,0.0,0.0,0.0,0.00013885127029911615,6.98184116144583e-05,0.00012303802595614154,0.0,0.0 +97336,50.0,the Greater Atlanta and Macon Area,G1301210009300,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,45078.0,,4330.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002257535998169643,0.0007364305615818931,0.0,0.0029939665597515366,0.0015271514898319882,0.0006429206354525347,0.0005253683392375845,0.0,0.0002985260952294291,0.0011007717584025584,0.0006429206354525347,0.00021531750908512125,0.0,0.0002985260952294291,0.0004263797314294298,0.00031005083015246335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.920454480656811e-05,0.0,0.0,0.0002690262384395057,0.00012176376696378794,0.00031823078324607376,0.00013117686087113612,7.661561999948885e-05,2.565897491171762e-05,0.0,3.5574782657163175e-05,2.8488525183781144e-05,2.0716019622786963e-05,0.0,0.0,0.0,0.0,0.00016232199159397863,6.833648048564132e-05,5.5841765347619695e-05,0.0,3.1730545818834096e-05 +97337,50.0,the Greater Atlanta and Macon Area,G1301210010400,ComStock 90.1-2007,gen3_t5_cfl,100001_200000,NaturalGas,221811.0,,45612.0,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.060606100695057945,0.040343849263977744,0.0,0.10095004217628847,0.07311859863758612,0.012732989393908828,0.009038212944298822,0.000656217970733909,0.005403931012508019,0.04002542309015198,0.012732989393908828,0.005541519153645596,0.000656217970733909,0.0016499510866176364,0.03309317554743413,0.0034966937906532264,0.0037539799258903828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026955423994220857,0.0,0.0,0.007222314660025729,0.004793047453797208,0.009917857059447815,0.00476975414426075,0.0015173663197421106,0.000660372381050602,7.820025733135997e-05,0.0001966215576409068,0.0022110943662303315,0.00023362883171679764,0.0002508192014749564,0.0,0.0,0.0,0.007183551329362869,0.0012509550865538407,0.000887961036191242,6.447026562123129e-05,0.0005309102818162103 +97338,46.0,the Tallahassee-Valdosta Area,G1301850010601,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,156581.0,,1159.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007459216240500474,0.00019714388862956709,0.0,0.007656360129130041,0.003573146545898981,0.0015797752025267049,0.001084264791920489,0.0,0.0014191558584224463,0.003573146545898981,0.0015797752025267049,0.000887120903290922,0.0,0.0014191558584224463,0.0,0.00019714388862956709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3172365341368097e-05,0.0,0.0,0.0008889001774212691,0.00022642929082332045,0.0009020725427626372,0.00042580486959963704,0.00018825871412429929,0.00010571645906279676,0.0,0.00016911802174212161,0.0,1.3172365341368097e-05,0.0,0.0,0.0,0.0,0.000420988215804952,0.00018612915404993488,0.00012774810502374487,0.0,0.0001672049788923775 +97339,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,67110.0,,9277.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0032493724160073973,0.0015777007502405583,0.0,0.004827073166247955,0.0020608176382141572,0.0010087689129939044,0.0006758813773324127,0.0,0.0010816052377074811,0.0017231074442464116,0.0010087689129939044,0.00036058236019961387,0.0,0.0001569136985674673,0.00033771019396774575,0.000315299017132799,0.0009246915391400136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010541278701889641,0.0,0.0,0.00038722204339943276,0.0002159882686785697,0.0004926348304183292,0.00020533970876065644,0.00012021323190995998,4.2969970952682243e-05,0.0,1.869913177613403e-05,2.256383078058641e-05,2.1066446304991236e-05,6.178250993331877e-05,0.0,0.0,0.0,0.00021032010760132388,0.00010295155786302556,6.897817709356768e-05,0.0,0.0001103849878604121 +97340,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock 90.1-2004,gen5_led,5001_10000,Electricity,14498.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0012784248003349743,0.0,0.0,0.0012784248003349743,0.000870780722280907,0.00030874763828474727,9.886606616988218e-05,0.0,0.0,0.000870780722280907,0.00030874763828474727,9.886606616988218e-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.0001523476073780186,3.659838515217157e-05,0.0001523476073780186,0.00010376938835638904,3.679290636725015e-05,1.1781693086610845e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010376938835638904,3.679290636725015e-05,1.1781693086610845e-05,0.0,0.0 +97341,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,19882.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0017437527402291747,0.0,0.0,0.0017437527402291747,0.0008613038007450286,0.0003748121617138441,0.0005076367777703017,0.0,0.0,0.0008613038007450286,0.0003748121617138441,0.0005076367777703017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020780063362645535,7.310223256520094e-05,0.00020780063362645535,0.00010264039815425241,4.4665853648953676e-05,6.0494381823249214e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010264039815425241,4.4665853648953676e-05,6.0494381823249214e-05,0.0,0.0 +97342,50.0,the Greater Atlanta and Macon Area,G1300590030200,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,Electricity,75805.0,,1.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.006515065831333025,4.2965448816783896e-07,0.0,0.0065154954858211945,0.002611593427115614,0.001647571514092174,0.0022563305446134064,0.0,0.0,0.002611163772627446,0.001647571514092174,0.0022563305446134064,0.0,0.0,4.2965448816783896e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8841343794147324e-08,0.0,0.0,0.0007763860394294412,0.0003004279097782681,0.0007764148807732354,0.00031116663318766,0.00019633746697553595,0.0002688819392662453,0.0,0.0,2.8841343794147324e-08,0.0,0.0,0.0,0.0,0.0,0.00031120887179719557,0.00019633181290095356,0.0002688741960750863,0.0,0.0 +97343,50.0,the Greater Atlanta and Macon Area,G1301210010206,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9625.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0019956389822557486,0.0,0.0,0.0019956389822557486,0.0014365391637780305,0.000269294232095185,0.00024762497877548644,0.0,4.218060760704679e-05,0.0014365391637780305,0.000269294232095185,0.00024762497877548644,0.0,4.218060760704679e-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.00023781156171840767,6.482624033375579e-05,0.00023781156171840767,0.00017118608377831752,3.209061481848131e-05,2.9508384756306215e-05,0.0,5.026478365302662e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017118608377831752,3.209061481848131e-05,2.9508384756306215e-05,0.0,5.026478365302662e-06 +97344,50.0,the Greater Atlanta and Macon Area,G1300670031306,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,33251.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0031344643411776747,0.0,0.0,0.0031344643411776755,0.0018725627789368375,0.0009388783322203466,0.00032302323002049064,0.0,0.0,0.0018725627789368375,0.0009388783322203466,0.00032302323002049064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003735278062561961,9.74155188754731e-05,0.0003735278062561961,0.0002231495371328696,0.00011188424100686335,3.849402811646314e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022314953713286956,0.00011188424100686333,3.8494028116463125e-05,0.0,0.0 +97345,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,Electricity,328567.0,,2771.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02647785679822495,0.0008156683561803445,0.0,0.02729355584401159,0.0050634167638453865,0.011575045359273069,0.010655063031286835,0.0,0.0,0.004247748407665042,0.011575045359273069,0.010655063031286835,0.0,0.0,0.0008156683561803445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.449913520790802e-05,0.0,0.0,0.003155315328188453,0.0009694039961863656,0.003209814463396361,0.0005061960174167921,0.0013793759187125522,0.0012697433920591085,0.0,0.0,5.4499135207908015e-05,0.0,0.0,0.0,0.0,0.0,0.0005954749339251253,0.0013612644765308376,0.0012530714437389168,0.0,0.0 +97346,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,29946.0,,4762.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002545303877512576,0.0014017784572538724,0.0,0.003947082334766447,0.001655489432516981,0.0012302235580497138,0.0010614000338060507,0.0,0.0,0.0002537109752631089,0.0012302235580497138,0.0010614000338060507,0.0,0.0,0.0014017784572538724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.365862522150435e-05,0.0,0.0,0.00030332046990440585,0.00017750448553879026,0.00039697909512591013,3.023439869659769e-05,0.00014660410138524435,0.00012648562706203353,0.0,0.0,9.365862522150435e-05,0.0,0.0,0.0,0.0,0.0,0.00016650139043780155,0.00012373013620098464,0.00010675065510430208,0.0,0.0 +97347,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,60118.0,,6345.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0053111432658804435,0.001867677370459298,0.0,0.007178820636339741,0.005207688603050887,0.000816036631455917,0.0011550647122266396,0.0,0.0,0.0033400112325915896,0.000816036631455917,0.0011550647122266396,0.0,0.0,0.001867677370459298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001247865966498237,0.0,0.0,0.0006329192902329619,0.0003431189389559164,0.0007577058868827856,0.0003980230682690033,9.724560226103349e-05,0.00013764696247831957,0.0,0.0,0.0001247865966498237,0.0,0.0,0.0,0.0,0.0,0.0005496580164727361,8.613054858010864e-05,0.00012191408262164531,0.0,0.0 +97348,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,Electricity,48156.0,,6093.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004290683166875528,0.0017936233504629417,0.0,0.006084306517338469,0.002482942597515644,0.0014526618244954637,0.0021487020953273625,0.0,0.0,0.0006893192470527021,0.0014526618244954637,0.0021487020953273625,0.0,0.0,0.0017936233504629417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011983889151454262,0.0,0.0,0.0005113121350383069,0.00025836017319958294,0.0006311510265528495,8.214479658030177e-05,0.00017311080545532277,0.00025605653300268236,0.0,0.0,0.00011983889151454262,0.0,0.0,0.0,0.0,0.0,0.00025756620985941346,0.000150690797571046,0.00022289401912239012,0.0,0.0 +97349,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,46188.0,,11852.0,,7.56685751697572,Food Service,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,56751.431377317895,0.0,0.0,0.009617146073396332,0.0081528394251706,0.0,0.017769985498566936,0.00552293980799916,0.001324667864658336,0.004990705903092311,0.00036613045203469445,0.005565541470782432,0.0037302274124929465,0.001324667864658336,0.0035256103351854083,0.00036613045203469445,0.0006705100090249477,0.0017927123955062134,0.0014650955679069023,0.004895031461757486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005447251273205082,0.0,0.0,0.001146056144115828,0.0008487396582011523,0.001690781271436336,0.0004445237716480974,0.0001578580312307081,0.00042013996205951,4.363103678574796e-05,7.990334239176449e-05,0.00011977857491909834,9.788913139891746e-05,0.0003270574210024925,0.0,0.0,0.0,0.0005254975132865609,0.00012603969860405911,0.00047485644109702534,3.483663569971423e-05,0.0005295509827489762 +97350,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,17182.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003979120024671819,0.0,0.0,0.003979120024671819,0.002204722464668718,0.0006892807525433881,0.0009896728443645527,0.0,9.536125602142147e-05,0.002204722464668718,0.0006892807525433881,0.0009896728443645527,0.0,9.536125602142147e-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.00047418040023074784,0.00015704717047928374,0.00047418040023074784,0.00026273049674608814,8.213962410931082e-05,0.00011793649413151108,0.0,1.1363929277422051e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00026273049674608814,8.213962410931082e-05,0.00011793649413151108,0.0,1.1363929277422051e-05 +97351,85.0,Rural Climate Zone 3A,G1301330950301,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,5100.0,,445.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00019565453827028267,7.561999145652519e-05,0.0,0.00027127452972680783,0.00014336770244254696,5.987543051551831e-05,1.0159497093690257e-05,0.0,5.788963003647241e-05,9.194965432439383e-05,5.987543051551831e-05,1.0159497093690257e-05,0.0,3.368768669810033e-05,5.1418048118153127e-05,0.0,2.4201943338372072e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.052300841892069e-06,0.0,0.0,2.3316700939277058e-05,1.2312332690035788e-05,2.8369001781169124e-05,1.0957898601820646e-05,7.1355232507420584e-06,1.2107358077214096e-06,0.0,4.014656255969771e-06,3.4353276533381015e-06,0.0,1.616973188553968e-06,0.0,0.0,0.0,1.4992924732191736e-05,6.261576406209682e-06,1.062446929451628e-06,0.0,6.053907896439034e-06 +97352,50.0,the Greater Atlanta and Macon Area,G1300670031312,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,DistrictHeating,101926.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,215998.51729091106,0.031905707402608334,0.010980906123082645,0.016155151365788666,0.0,0.0,0.05904176489147966,0.04671200749423198,0.002296382852843448,0.009921293285414424,0.0,0.00011208125898979145,0.003937475227530798,0.002296382852843448,0.009921293285414424,0.0,0.0,0.0,0.0,0.0,0.010868824864092854,0.0,0.00011208125898979145,0.031905707402608334,0.0,0.0,0.0,0.0,0.0,0.0,0.0019251763156425384,0.0006709036323027238,0.0019251763156425384,0.00046922086211610367,0.00027365524344785533,0.0011823002100785798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001523139605486113,7.487821355048683e-05,0.0003235038601696604,0.0,3.654636436277713e-06 +97353,50.0,the Greater Atlanta and Macon Area,G1300670030601,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,7236.0,,1834.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0006447579387084378,0.0005399529332017827,0.0,0.0011847108719102207,0.0006553765424874428,0.00022826929164231326,0.0003010650377804643,0.0,0.0,0.00011542360928566017,0.00022826929164231326,0.0003010650377804643,0.0,0.0,0.0005399529332017827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6077193905734684e-05,0.0,0.0,7.683370197513399e-05,6.304777874407906e-05,0.00011291089588086868,1.375465529670517e-05,2.72021074440024e-05,3.58769392344264e-05,0.0,0.0,3.6077193905734684e-05,0.0,0.0,0.0,0.0,0.0,6.24617822846916e-05,2.1755595253267905e-05,2.869351834290914e-05,0.0,0.0 +97354,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,249834.0,,5596.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011932480044611277,0.0009516416884984941,0.0,0.012884121733109771,0.006619346750393993,0.0029279741545460997,0.0016558561833801512,0.0,0.0016809623751509464,0.006044138365204641,0.0029279741545460997,0.0012794228800710103,0.0,0.0016809623751509464,0.000575208385189353,0.00037643330330914106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.358359230585689e-05,0.0,0.0,0.0014219700043020048,0.0003844990053183956,0.0014855535966078618,0.0007202679933291219,0.0003489208786078225,0.00015246628961263224,0.0,0.00020031695564446823,3.843233844925025e-05,2.5151253856606624e-05,0.0,0.0,0.0,0.0,0.0007632180583153281,0.0003375986835705694,0.00019092206357879753,0.0,0.0001938168354736009 +97355,50.0,the Greater Atlanta and Macon Area,G1300670030407,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,150346.0,,22607.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008474208510352818,0.003844562918517149,0.0,0.012318771428869968,0.00453289100956644,0.0019146308083058223,0.0030611114384492765,0.0,0.0028101381725484285,0.003413395989504306,0.0019146308083058223,0.0027448904425226347,0.0,0.00040127353965863506,0.001119495020062134,0.0003162209959266417,0.0024088646328897937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002568717283582004,0.0,0.0,0.0010098547848262467,0.000510825550732241,0.0012667265131844471,0.0004067676961566915,0.0002281627930893193,0.000327103203068331,0.0,4.781897961955693e-05,7.479826102122247e-05,2.1128080223527123e-05,0.00016094657175489872,0.0,0.0,0.0,0.0004661124898978621,0.00019687950392170185,0.00031477092024034575,0.0,0.0002889635991245373 +97356,50.0,the Greater Atlanta and Macon Area,G1300630040520,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,40688.0,,4528.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0036253018127350343,0.0013329416703281249,0.0,0.00495824348306316,0.0030231717371741055,0.0008203638659438931,0.0011147078799451605,0.0,0.0,0.0016902300668459806,0.0008203638659438931,0.0011147078799451605,0.0,0.0,0.0013329416703281249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.905951602311905e-05,0.0,0.0,0.00043201931719361535,0.00020724166694240193,0.0005210788332167344,0.0002014210339160772,9.776097426437875e-05,0.00013283730901315942,0.0,0.0,8.905951602311905e-05,0.0,0.0,0.0,0.0,0.0,0.0003177154988054918,8.621485563172132e-05,0.00011714847877952121,0.0,0.0 +97357,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890400,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,104259.0,,22157.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005366749907151523,0.003768003217905361,0.0,0.009134753125056886,0.005604372210903071,0.0011273673005326374,0.0011868172023740745,0.0,0.0012161964112471018,0.003261499983218713,0.0011273673005326374,0.0007877244971701059,0.0,0.00019015812623006633,0.002342872227684357,0.00039909270520396844,0.0010260382850170357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002517559755768086,0.0,0.0,0.0006395448370196999,0.000445677532723907,0.0008913008125965086,0.0003886664203278429,0.00013434610312653203,9.387155054267685e-05,0.0,2.266076302264809e-05,0.00015653704342120353,2.6665044463541196e-05,6.855388769206388e-05,0.0,0.0,0.0,0.000546832677061548,0.00011000005991439584,0.0001158007361991997,0.0,0.00011866733942136492 +97358,50.0,the Greater Atlanta and Macon Area,G1301530020109,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,100482.0,,28107.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.020922293384616087,0.019334843546156548,0.0,0.04025713693077264,0.014004400140363292,0.0015241928240237663,0.014310716136570966,0.00037703188762906736,0.010040724222214532,0.014004400140363292,0.0015241928240237663,0.00388442535017651,0.00037703188762906736,0.0011321714624524361,0.0,0.010426290786394456,0.008908552759762095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012918433037504798,0.0,0.0,0.002493269239077305,0.0018590904313112457,0.003785112542827785,0.0016688772803162943,0.00018163511106077324,0.0004628994565293873,4.493016087175254e-05,0.0001349186835688578,0.0,0.0006966249250067734,0.0005952183787437067,0.0,0.0,0.0,0.0013167411959082635,0.00014330977848279222,0.0013455420647159055,3.544981674590809e-05,0.0009440629436200088 +97359,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,19189.0,,5379.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.008260634541607066,0.003700463624521468,0.0,0.011961169886099547,0.0022518636499481554,0.00046158973345647274,0.006984736257239345,0.0003692861307593813,0.0018936223947251785,0.0022518636499481554,0.00046158973345647274,0.003284272632717877,0.0003692861307593813,0.0018936223947251785,0.0,0.003700463624521468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024724536063718867,0.0,0.0,0.000984406540540613,0.0005005290839957498,0.0012316519011778017,0.0002683509716171712,5.5006906596856935e-05,0.00039138149064479026,4.400723462821883e-05,0.00022565993705357578,0.0,0.00024724536063718867,0.0,0.0,0.0,0.0,0.0002318763274882514,4.753028994567763e-05,0.0007192242709011186,3.802570896990276e-05,0.00019498791880604826 +97360,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,24246.0,,1533.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002160333456114192,0.0004511679021825286,0.0,0.002611501358296721,0.0008486903725566727,0.0007557008654746334,0.001007079430659117,0.0,0.0,0.00039752247037414413,0.0007557008654746334,0.001007079430659117,0.0,0.0,0.0004511679021825286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0144823939049737e-05,0.0,0.0,0.00025744223424405225,0.0001082011768229936,0.00028758705818310196,4.7371887263836015e-05,9.005522674165817e-05,0.00012001146302499646,0.0,0.0,3.0144823939049737e-05,0.0,0.0,0.0,0.0,0.0,9.346055546801772e-05,8.32202472642102e-05,0.0001109028758112028,0.0,0.0 +97361,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,NaturalGas,80836.0,,1874.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.004161049869865091,0.0003186145947183488,0.0,0.0044796644645834416,0.00277348951549318,0.0012330757153189926,0.00037958930764191054,0.0,9.352765649077854e-05,0.0025483848469041895,0.0012330757153189926,0.00037958930764191054,0.0,0.0,0.00022510466858899038,0.0,9.352765649077854e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1288487156376396e-05,0.0,0.0,0.0004958638421897375,0.00016401764141666286,0.000517152329346114,0.00030368583436491883,0.00014694312277703088,4.523488504778786e-05,0.0,0.0,1.5040547186274612e-05,0.0,6.249124638279661e-06,0.0,0.0,0.0,0.0003201839277682817,0.00014235172823298507,4.382147283438267e-05,0.0,1.07972473820061e-05 +97362,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,126432.0,,1860.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.011037670353000295,0.0005475025763510175,0.0,0.011585172929351312,0.003181898380945824,0.0032448427634624135,0.005158462474549373,0.0,0.0,0.002634395804594807,0.0032448427634624135,0.005158462474549373,0.0,0.0,0.0005475025763510175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.658058220473297e-05,0.0,0.0,0.001315339617061361,0.0004137435090382395,0.001351920199266094,0.000313936279847485,0.0003866821622152195,0.0006147248322246566,0.0,0.0,3.658058220473297e-05,0.0,0.0,0.0,0.0,0.0,0.00037130845775416524,0.0003786536896875545,0.0006019616331173695,0.0,0.0 +97363,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,8108.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001688134082093004,0.0,0.0,0.0016881340820930038,0.00094939449945351,0.00038715181217369805,0.0003018808191484721,0.0,4.9706951317323766e-05,0.00094939449945351,0.00038715181217369805,0.0003018808191484721,0.0,4.9706951317323766e-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.0002011700225966868,6.65920948521255e-05,0.0002011700225966868,0.00011313657779566743,4.613575404316745e-05,3.597425811953882e-05,0.0,5.923432638313104e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011313657779566744,4.6135754043167456e-05,3.597425811953883e-05,0.0,5.923432638313105e-06 +97364,35.0,Eastern Counties in South Carolina and Georgia,G1302450010508,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,9337.0,,586.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0004223372090256578,9.966236154211678e-05,0.0,0.0005219995705677745,0.0002488633528918612,0.00013590322028470475,4.2801092468007466e-05,0.0,9.443190492320124e-05,0.0001958318418844832,0.00013590322028470475,4.2801092468007466e-05,0.0,4.780105438846236e-05,5.303151100737793e-05,0.0,4.663085053473887e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.658336834998159e-06,0.0,0.0,5.0329886618690424e-05,2.0535962588689105e-05,5.698822345368859e-05,2.33372627079528e-05,1.6195574346442574e-05,5.100602279492807e-06,0.0,5.696447284802241e-06,3.542979091528108e-06,0.0,3.1153577434700516e-06,0.0,0.0,0.0,2.7169141822491532e-05,1.483695298300068e-05,4.672720743765642e-06,0.0,1.0309407904430741e-05 +97365,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,21769.0,,579.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0010748322396450208,9.849215768839331e-05,0.0,0.0011733066669719942,0.0006512893660427997,0.0002752461306848997,0.00010491054852245245,0.0,0.00014184289136042242,0.0006512893660427997,0.0002752461306848997,0.00010491054852245245,0.0,4.3350733672029105e-05,0.0,0.0,9.849215768839331e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.580157226478189e-06,0.0,0.0,0.00012808486566906948,4.320766300235352e-05,0.00013466502289554767,7.761240115837632e-05,3.280034071768257e-05,1.2501907757441882e-05,0.0,5.165990276651242e-06,0.0,0.0,6.58015722647819e-06,0.0,0.0,0.0,7.475104323418441e-05,3.159108145720411e-05,1.2040996455957018e-05,0.0,1.6279866764856535e-05 +97366,35.0,Eastern Counties in South Carolina and Georgia,G1300510010809,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,152822.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013476097851342851,0.0,0.0,0.013476097851342855,0.008568605016585852,0.0038164123957540783,0.001091080439002921,0.0,0.0,0.008568605016585852,0.0038164123957540783,0.001091080439002921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016059213029480538,0.00037885525757293915,0.0016059213029480538,0.0010211045871347387,0.0004547947065081433,0.00013002200930517174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010211045871347385,0.0004547947065081432,0.00013002200930517171,0.0,0.0 +97367,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,36763.0,,906.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008596077002021177,0.0007184763495733634,0.0,0.009314470644520801,0.006263158573056533,0.0012358090958127315,0.0016911942438213583,0.0,0.00012439143890391837,0.00554468222348317,0.0012358090958127315,0.0016911942438213583,0.0,0.00012439143890391837,0.0007184763495733634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.800272223764939e-05,0.0,0.0,0.0010243742636499894,0.00036250924755941167,0.0010723769858876388,0.0006607467299930273,0.0001472684612105581,0.0002015356374537205,0.0,1.4823434992683668e-05,4.800272223764939e-05,0.0,0.0,0.0,0.0,0.0,0.000721078778283726,0.000142278963977385,0.00019470755289851218,0.0,1.4321212811001677e-05 +97368,81.0,the Columbus-Albany Area,G1302150010203,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,88809.0,,8257.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,153306.56730200956,0.0,0.0,0.00953106604049052,0.0030687201690538686,0.0,0.012599786209544389,0.006918182328691433,0.0016074008633373104,0.0038288867466145884,0.0,0.0002453162709010561,0.004644502318593159,0.0016074008633373104,0.00327916285856005,0.0,0.0,0.002273680010098274,0.0005497238880545384,0.0002453162709010561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020503295967211078,0.0,0.0,0.001135800631143915,0.0005217284751097166,0.001340833590816026,0.0005534772964951563,0.00019155117668094885,0.00039077215796780985,0.0,0.0,0.00015191327854487748,3.672916054937415e-05,1.639052057785915e-05,0.0,0.0,0.0,0.0007362133848487527,0.0001710550509052868,0.0004074592917618062,0.0,2.6105863300180086e-05 +97369,50.0,the Greater Atlanta and Macon Area,G1300590030200,ComStock 90.1-2004,gen5_led,50001_100000,Electricity,76064.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006706384836992906,0.0,0.0,0.006706384836992906,0.0032921047571608754,0.0012924927692277528,0.0021217873106042775,0.0,0.0,0.0032921047571608754,0.0012924927692277528,0.0021217873106042775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007991884149937805,0.00027427479930150695,0.0007991884149937805,0.0003923144953382382,0.0001540241535099878,0.00025284976614555453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003923144953382382,0.0001540241535099878,0.00025284976614555453,0.0,0.0 +97370,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14458.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034717121272811683,0.0,0.0,0.0034717121272811683,0.002274692649052172,0.0005701825663587853,0.0005517388889149196,0.0,7.509802295529114e-05,0.002274692649052172,0.0005701825663587853,0.0005517388889149196,0.0,7.509802295529114e-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.00041371622255210886,0.00012991863494806187,0.00041371622255210886,0.0002710700702508731,6.794738989599386e-05,6.574949782364011e-05,0.0,8.949264581601745e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002710700702508731,6.794738989599386e-05,6.574949782364011e-05,0.0,8.949264581601745e-06 +97371,50.0,the Greater Atlanta and Macon Area,G1301390000302,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,20790.0,,5669.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2013 to 2018,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0018130191816430896,0.0016687473424375886,0.0,0.0034817358344743808,0.0020432526080884556,0.0005121481498960641,0.0009263350764898609,0.0,0.0,0.00037450526565086705,0.0005121481498960641,0.0009263350764898609,0.0,0.0,0.0016687473424375886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011149549318607053,0.0,0.0,0.0002160523249364729,0.00017447194575672314,0.0003275478181225435,4.4628724375377125e-05,6.1031234317486975e-05,0.00011038870905075663,0.0,0.0,0.00011149549318607053,0.0,0.0,0.0,0.0,0.0,0.00019222105451707975,4.8180854903737384e-05,8.714590870172634e-05,0.0,0.0 +97372,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,4826.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011588088101614363,0.0,0.0,0.0011588088101614363,0.0005968969511765816,0.0001826172188163908,0.0003377756891513315,0.0,4.143624394339302e-05,0.0005968969511765816,0.0001826172188163908,0.0003377756891513315,0.0,4.143624394339302e-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.00013809176411610117,4.4189338935828554e-05,0.00013809176411610117,7.11304162176791e-05,2.1761945269313498e-05,4.0251713985451224e-05,0.0,4.937832690183905e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.11304162176791e-05,2.1761945269313498e-05,4.0251713985451224e-05,0.0,4.937832690183905e-06 +97373,50.0,the Greater Atlanta and Macon Area,G1300670030235,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,68509.0,,5483.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006380096056297521,0.0015974083416302434,0.0,0.007977504397927765,0.006073322701976228,0.0013922650510276682,0.0005118862713244315,0.0,0.0,0.004475914360345984,0.0013922650510276682,0.0005118862713244315,0.0,0.0,0.0015974083416302434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010673019148092244,0.0,0.0,0.0007603038086205646,0.00027515161794942525,0.0008670340001014872,0.0005333861285476289,0.00016591355546454457,6.100050504480931e-05,0.0,0.0,0.00010673019148092244,0.0,0.0,0.0,0.0,0.0,0.00066007826677845,0.0001513181411354141,5.56342910370246e-05,0.0,0.0 +97374,85.0,Rural Climate Zone 3A,G1302510970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,237524.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,1133273.7058648225,0.0,0.0,0.02635632595728605,0.0,0.0,0.026356325957286045,0.009016483571839887,0.006559136105976526,0.010780675589863332,0.0,0.0,0.009016483571839887,0.006559136105976526,0.010780675589863332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031408339070307587,0.0009247098096426839,0.0031408339070307587,0.0010744774279433217,0.0007816399416165857,0.0012847128802480567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001074477427943322,0.0007816399416165858,0.0012847128802480567,0.0,0.0 +97375,50.0,the Greater Atlanta and Macon Area,G1301210001400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,97434.0,,4758.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004627890286055082,0.0008091782344883697,0.0,0.005437068520543452,0.002350762238516281,0.0014899709219341373,0.0009657550561888562,0.0,0.0006305625735427579,0.002029789505729065,0.0014899709219341373,0.0009657550561888562,0.0,0.00014237480220302402,0.0003209727327872159,0.0,0.00048818777133973385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.406412147581652e-05,0.0,0.0,0.0005514974707503023,0.00017727854162940642,0.000605561592226119,0.00024188641246275256,0.0001775571900254838,0.00011508731580291637,0.0,1.6966552459149584e-05,2.144534797924332e-05,0.0,3.261758886706543e-05,0.0,0.0,0.0,0.0002618196402569281,0.0001659477272445465,0.00010756240560817756,0.0,7.022984437109597e-05 +97376,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,13030.0,,593.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.003208538218642692,0.00047052054250291985,0.0,0.003679058761145612,0.0014951784790591996,0.0005191523018616327,0.0015247876114578716,0.0,0.00013994036876690817,0.0011646810123969273,0.0005191523018616327,0.0015247876114578716,0.0,0.0,0.0003304974666622724,0.0,0.00013994036876690817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.14353797279582e-05,0.0,0.0,0.00038235804248545527,0.0001490687653447843,0.00041379342221341346,0.00013879378136516426,6.186682045370941e-05,0.00018170729677944667,0.0,0.0,2.2080467110726125e-05,0.0,9.349386974811968e-06,0.0,0.0,0.0,0.0001681666588758422,5.8390425808367165e-05,0.0001714968759284781,0.0,1.573946160072602e-05 +97377,50.0,the Greater Atlanta and Macon Area,G1300890020500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,69829.0,,9894.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.005891506335741845,0.002882484960242085,0.0,0.008773991295983932,0.006014853523058555,0.002183983293972107,0.0005751544789532685,0.0,0.0,0.0031323685628164696,0.002183983293972107,0.0005751544789532685,0.0,0.0,0.002882484960242085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019259102142488513,0.0,0.0,0.0007020797606746277,0.0004010483585357362,0.0008946707820995127,0.000373278486961009,0.000260261193142933,6.854008057068561e-05,0.0,0.0,0.00019259102142488515,0.0,0.0,0.0,0.0,0.0,0.000613325626177902,0.00022269751311522996,5.8647642806380643e-05,0.0,0.0 +97378,50.0,the Greater Atlanta and Macon Area,G1301530020105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,11106.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.000989494286250533,0.0,0.0,0.000989494286250533,0.0004824713006061854,0.00027332163368734097,0.0002337013519570067,0.0,0.0,0.0004824713006061854,0.00027332163368734097,0.0002337013519570067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011791624775828836,4.52071349308459e-05,0.00011791624775828836,5.749523388772567e-05,3.257124565893295e-05,2.7849768211629737e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.749523388772567e-05,3.257124565893295e-05,2.7849768211629737e-05,0.0,0.0 +97379,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,10596.0,,110.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0025441522952948355,8.69251345000121e-05,0.0,0.002631077429794848,0.0012012375389897011,0.0006730701660904837,0.0006698445902146509,0.0,8.69251345000121e-05,0.0012012375389897011,0.0006730701660904837,0.0006698445902146509,0.0,0.0,0.0,0.0,8.69251345000121e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.805321112830003e-06,0.0,0.0,0.00030318283287023836,0.00010638314298871103,0.0003089881539830684,0.00014314968514051373,8.020876739696367e-05,7.982438033276099e-05,0.0,0.0,0.0,0.0,5.805321112830003e-06,0.0,0.0,0.0,0.00014107078927606202,7.904393301628977e-05,7.866512822547689e-05,0.0,1.0208303465239685e-05 +97380,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,53449.0,,10147.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.006427539074171977,0.0029868045537113277,0.0,0.009414343627883305,0.0040265070358649025,0.0017900633561324078,0.0035977425462796974,0.0,0.0,0.0010397024821535746,0.0017900633561324078,0.0035977425462796974,0.0,0.0,0.0029868045537113277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019956088527448338,0.0,0.0,0.0007659564144662967,0.00041203755324890434,0.0009655172997407801,0.00012389917449776876,0.00021331811352812616,0.0004287354692240816,0.0,0.0,0.00019956088527448335,0.0,0.0,0.0,0.0,0.0,0.0004129509559371825,0.00018358551655783093,0.00036897767977771436,0.0,0.0 +97381,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,125292.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011163374980395687,0.0,0.0,0.011163374980395687,0.002591890699872489,0.003413021805973824,0.005158462474549373,0.0,0.0,0.002591890699872489,0.003413021805973824,0.005158462474549373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013303174505741634,0.00040238719543831634,0.0013303174505741634,0.00030887051936143395,0.0004067230990314893,0.0006147238321812401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030887051936143395,0.0004067230990314893,0.0006147238321812401,0.0,0.0 +97382,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,92219.0,,7372.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008216558983690263,0.0021699393028853727,0.0,0.010386528976181935,0.0035236885262833408,0.002296349791225611,0.0045664599690666855,0.0,0.0,0.0013537492233979675,0.002296349791225611,0.0045664599690666855,0.0,0.0,0.0021699393028853727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000144982918257248,0.0,0.0,0.0009791532000594798,0.0004161221182090501,0.0011241361183167277,0.00016132396624904744,0.0002736520544667991,0.0005441771793436333,0.0,0.0,0.000144982918257248,0.0,0.0,0.0,0.0,0.0,0.00038136951730234706,0.00024853439936723765,0.0004942288801048862,0.0,0.0 +97383,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,42491.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033896936972531034,0.0,0.0,0.0033896936972531034,0.002249924378351466,0.0009477474232561702,0.00019202189564546704,0.0,0.0,0.002249924378351466,0.0009477474232561702,0.00019202189564546704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040394196349564644,9.929904624981549e-05,0.00040394196349564644,0.0002681182880460574,0.00011294086995479084,2.288280549479818e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002681182880460574,0.00011294086995479084,2.288280549479818e-05,0.0,0.0 +97384,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,4688.0,,359.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0011256432735919741,0.0002845950407369568,0.0,0.0014101556072551914,0.0008661084761980273,0.0002028804518825211,0.0002984071220514212,0.0,4.275955712322194e-05,0.0005815134354610705,0.0002028804518825211,0.0002984071220514212,0.0,4.275955712322194e-05,0.0002845950407369568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.901356303558049e-05,0.0,0.0,0.00013413584467373237,5.1830466303520506e-05,0.00015314940770931284,6.929530667898694e-05,2.4175990226646985e-05,3.5559304010494224e-05,0.0,5.095388074674477e-06,1.901356303558049e-05,0.0,0.0,0.0,0.0,0.0,9.406337815436505e-05,2.2033753496243075e-05,3.24083907926804e-05,0.0,4.643885266024325e-06 +97385,50.0,the Greater Atlanta and Macon Area,G1300890021218,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,36874.0,,3552.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003251584940609646,0.001034767785645329,0.0,0.004286352726254975,0.0032488816902596857,0.0007923560885326318,0.0002451149474626572,0.0,0.0,0.0022141139046143567,0.0007923560885326318,0.0002451149474626572,0.0,0.0,0.001034767785645329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.91361893448544e-05,0.0,0.0,0.00038748544564678664,0.00018889766329435094,0.000456621634991641,0.00026385191490073287,9.442362960951792e-05,2.9209901136535815e-05,0.0,0.0,6.91361893448544e-05,0.0,0.0,0.0,0.0,0.0,0.0003461006977363106,8.440904324676653e-05,2.611189400856388e-05,0.0,0.0 +97386,85.0,Rural Climate Zone 3A,G1302830960200,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,28603.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029245220218639344,0.0,0.0,0.0029245220218639344,0.0019451556815930648,0.0007395060255109435,0.00023986031475992618,0.0,0.0,0.0019451556815930648,0.0007395060255109435,0.00023986031475992618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034850847970319316,8.861554334381617e-05,0.00034850847970319316,0.00023179967335173904,8.812521114746473e-05,2.8583595203989374e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023179967335173904,8.812521114746473e-05,2.8583595203989374e-05,0.0,0.0 +97387,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6264.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001800119459936026,0.0,0.0,0.001800119459936026,0.0011519441230410739,0.00027144461601240696,0.00033248243643201584,0.0,4.433099152426878e-05,0.0011519441230410739,0.00027144461601240696,0.00033248243643201584,0.0,4.433099152426878e-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.00021452113249009893,6.620084704583577e-05,0.00021452113249009893,0.00013727775480459903,3.2348190068114164e-05,3.962209752401551e-05,0.0,5.282946336535402e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013727775480459903,3.2348190068114164e-05,3.962209752401551e-05,0.0,5.282946336535402e-06 +97388,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,10113.0,,119.0,,4.088175128053588,Healthcare,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,12264.525384160763,0.0,0.0,0.0010047853768338788,4.4250699947718544e-05,0.0,0.0010490360767815977,0.0005480189574085669,0.00015766733632860487,0.000307972472140514,0.0,3.541605932768368e-05,0.0005480189574085669,0.00015766733632860487,0.00026372177219279546,0.0,3.541605932768368e-05,0.0,4.4250699947718544e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.957855117727485e-06,0.0,0.0,0.00011973674407325863,3.506308025750675e-05,0.00012269459919098612,6.530549425120886e-05,1.8788662667621355e-05,3.142679727594764e-05,0.0,4.220407392038811e-06,0.0,2.957855117727485e-06,0.0,0.0,0.0,0.0,6.409595229040432e-05,1.844067240823412e-05,3.602026647840865e-05,0.0,4.142240005191937e-06 +97389,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,49841.0,,6144.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004806698207165103,0.0018085691887299224,0.0,0.006615267395895026,0.0028609464782844486,0.0015787040375601288,0.0021755861904441502,0.0,0.0,0.0010523772895545261,0.0015787040375601288,0.0021755861904441502,0.0,0.0,0.0018085691887299224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012083730798714663,0.0,0.0,0.0005728044164032606,0.0002740692896993767,0.0006936417243904073,0.00012540965402836244,0.00018813093852244005,0.00025926016663470336,0.0,0.0,0.00012083730798714663,0.0,0.0,0.0,0.0,0.0,0.0002999836181704934,0.00016553450153728038,0.00022812038673388556,0.0,0.0 +97390,50.0,the Greater Atlanta and Macon Area,G1301350050422,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,114712.0,,13685.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.009603372802231181,0.003986869035798741,0.0,0.013590241838029924,0.010101621327408062,0.0028314876867861004,0.0006571328238357607,0.0,0.0,0.006114752291609321,0.0028314876867861004,0.0006571328238357607,0.0,0.0,0.003986869035798741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002663791067997789,0.0,0.0,0.0011444165043441943,0.0005995811030435075,0.0014107956111439734,0.000728683930802766,0.00033742324778358347,7.830932575784501e-05,0.0,0.0,0.0002663791067997789,0.0,0.0,0.0,0.0,0.0,0.0010486438139949658,0.0002939351962337932,6.82166009152144e-05,0.0,0.0 +97392,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,117466.0,,25984.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005961178004120213,0.0044188847856355,0.0,0.010380062789755715,0.006352416159215098,0.0009896023922988271,0.0014772227920731192,0.0,0.001560803715807248,0.0037077909105228627,0.0009896023922988271,0.0010367828840375877,0.0,0.000226984086899516,0.0026446252486922355,0.0004404399080355316,0.0013338196289077323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029524395611133853,0.0,0.0,0.0007103814899842651,0.0005036229130635064,0.0010056254460956036,0.0004418499212314798,0.00011792890959594594,0.00012355131308673344,0.0,2.7049233178903145e-05,0.000176698343300104,2.9427610627106047e-05,8.911800218412843e-05,0.0,0.0,0.0,0.0006154251147883415,9.587315292494535e-05,0.00014311405040123886,0.0,0.00015121141025518575 +97393,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,57231.0,,767.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006438244351850416,0.0002851496505387572,0.0,0.006723355253965401,0.0038336915511623278,0.0006116051208185548,0.002150576267774367,0.0,0.00012748231421015236,0.0038336915511623278,0.0006116051208185548,0.0018654266172356095,0.0,0.00012748231421015236,0.0,0.0002851496505387572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9051224567803224e-05,0.0,0.0,0.000767231109999432,0.0002681639367713268,0.0007862823345672353,0.0004568524062539425,7.288360771707764e-05,0.00022229869758714845,0.0,1.5191780878686353e-05,0.0,1.9051224567803224e-05,0.0,0.0,0.0,0.0,0.0004483422084651475,7.152593966336379e-05,0.00025150539643033155,0.0,1.4908790008392475e-05 +97394,50.0,the Greater Atlanta and Macon Area,G1300210013605,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,20313.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0018098888418007237,0.0,0.0,0.0018098888418007237,0.0005644125494210519,0.0007001526780757913,0.0005453236143038808,0.0,0.0,0.0005644125494210519,0.0007001526780757913,0.0005453236143038808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021568240380900322,6.975579712816714e-05,0.00021568240380900322,6.726040438924575e-05,8.343640181263945e-05,6.498559760711804e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.726040438924575e-05,8.343640181263945e-05,6.498559760711804e-05,0.0,0.0 +97395,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,11605.0,,3434.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.001050014189869603,0.001010854252233734,0.0,0.0020608684421033374,0.0012562483441901655,0.00029698332014286985,0.0005076367777703017,0.0,0.0,0.00024539409195643147,0.00029698332014286985,0.0005076367777703017,0.0,0.0,0.001010854252233734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.753861208494538e-05,0.0,0.0,0.0001251285226144145,0.00010262961298787553,0.0001926671346993599,2.9243224025979382e-05,3.5391030377614114e-05,6.049426821082101e-05,0.0,0.0,6.753861208494538e-05,0.0,0.0,0.0,0.0,0.0,0.00011744455104514527,2.7764472576925567e-05,4.745811107728901e-05,0.0,0.0 +97396,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,66224.0,,3828.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0057326650083793914,0.0011267382056138599,0.0,0.006859403213993252,0.0031223298551219833,0.0015076575989809472,0.002229415759890321,0.0,0.0,0.001995591649508123,0.0015076575989809472,0.002229415759890321,0.0,0.0,0.0011267382056138599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.528177054737974e-05,0.0,0.0,0.0006831514233611673,0.0002792916554519483,0.0007584331939085471,0.0002378110832948414,0.00017966485625440032,0.0002656754838119256,0.0,0.0,7.528177054737974e-05,0.0,0.0,0.0,0.0,0.0,0.00034523099613465976,0.00016669927870444271,0.0002465029190694446,0.0,0.0 +97397,50.0,the Greater Atlanta and Macon Area,G1301530020700,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,160954.0,,794.0,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,863994.0691636442,0.03825535912658577,0.001678325408604076,0.025510906530465022,0.00041589626448330794,0.0,0.06586048733013818,0.044760275877629443,0.005465449059292261,0.01521892072262455,0.0,0.00041589626448330794,0.004826591342439587,0.005465449059292261,0.01521892072262455,0.0,0.0,0.0,0.0,0.00041589626448330794,0.001678325408604076,0.0,0.0,0.03825535912658577,0.0,0.0,0.0,2.7786159598759984e-05,0.0,0.0,0.00304008774118136,0.0010457144741022172,0.0030678739007801202,0.0005751759998932191,0.0006513074972605737,0.001813610749881043,0.0,0.0,0.0,0.0,2.7786159598759984e-05,0.0,0.0,0.0,0.0020849964481489554,0.00025458828509720364,0.0007089186791002694,0.0,1.9373031493746917e-05 +97398,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,92036.0,,,,9.325022323477118,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,699376.6742607838,0.0258170125678523,0.0,0.021914498453093824,0.0,0.0,0.047731511020946124,0.0356876669552716,0.0045085642865413,0.007083901883946572,0.0,0.0004514662793447092,0.0098706543874193,0.0045085642865413,0.007083901883946572,0.0,0.0004514662793447092,0.0,0.0,0.0,0.0,0.0,0.0,0.0258170125678523,0.0,0.0,0.0,0.0,0.0,0.0,0.002611507280225426,0.00086497290601052,0.002611507280225426,0.0011762662900320854,0.0005372766564960888,0.0008441745259160772,0.0,5.380034034584739e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0019525592229220148,0.00024667453859778465,0.0003875775341411429,0.0,2.4700820277145793e-05 +97399,50.0,the Greater Atlanta and Macon Area,G1301210010604,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,8298.0,,864.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.002549362840940412,0.0006857243483725979,0.0,0.00323508718931301,0.0016514121413527512,0.0005693554956213922,0.0009464997518726342,0.0,6.781980046623206e-05,0.0010335075934463855,0.0005693554956213922,0.0009464997518726342,0.0,0.0,0.0006179045479063656,0.0,6.781980046623206e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.581782190999487e-05,0.0,0.0,0.00030380284686825867,0.00012211176382769833,0.00034962066877825356,0.00012316118526037374,6.78490396392776e-05,0.00011279262196860734,0.0,0.0,4.1286328246239486e-05,0.0,4.53149366375537e-06,0.0,0.0,0.0,0.00017847055844293463,6.153109251871398e-05,0.00010228963143291151,0.0,7.329386383693411e-06 +97400,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,49787.0,,1754.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004072188476619387,0.0005109750633412989,0.0,0.004583163539960685,0.0035377649945121437,0.0007011441694210631,0.0003442543760274792,0.0,0.0,0.0030267899311708446,0.0007011441694210631,0.0003442543760274792,0.0,0.0,0.0005109750633412989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.413979995283553e-05,0.0,0.0,0.0004852764887797675,0.00015505950296944843,0.000519416288732603,0.0003606979388370358,8.355428109936714e-05,4.102426884336454e-05,0.0,0.0,3.413979995283553e-05,0.0,0.0,0.0,0.0,0.0,0.00040093981980694895,7.946164241617179e-05,3.901482650948237e-05,0.0,0.0 +97401,50.0,the Greater Atlanta and Macon Area,G1300770170404,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,23264.0,,2091.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005140643422798583,0.0016213395613070497,0.0,0.006761982984105633,0.0030224143495354303,0.00041934402099338486,0.002065022678004062,0.00041780766611508287,0.0008375559910238104,0.0030224143495354303,0.00041934402099338486,0.0012812391077208223,0.00041780766611508287,0.0,0.0,0.0007837835702832394,0.0008375559910238104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010832933848665296,0.0,0.0,0.00061260307383098,0.00028892439881797677,0.000720932412317633,0.00036017676555910236,4.9972623098868436e-05,0.0001526834193986831,4.978953790047305e-05,0.0,0.0,5.236827479682445e-05,5.5961063689828505e-05,0.0,0.0,0.0,0.0003222363133944214,4.470858583293566e-05,0.0002201634911302567,4.454478654045095e-05,8.929647745035626e-05 +97402,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2004,gen5_led,50001_100000,NaturalGas,42574.0,,6230.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00411271413995515,0.0018338881139255275,0.0,0.00594657156427438,0.0027477018310459256,0.001023252853178006,0.0021755861904441502,0.0,0.0,0.0009138137171203981,0.001023252853178006,0.0021755861904441502,0.0,0.0,0.0018338881139255275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001225287238258016,0.0,0.0,0.0004901039541283123,0.0002695044876018298,0.0006126326779541139,0.00010889736092921892,0.00012193900483953574,0.0002592602739210212,0.0,0.0,0.0001225287238258016,0.0,0.0,0.0,0.0,0.0,0.0002830760401650851,0.00010541841275950796,0.0002241350632991878,0.0,0.0 +97403,50.0,the Greater Atlanta and Macon Area,G1300970080201,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,15171.0,,1132.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001358368114055137,0.0003297661690956715,0.0,0.0016881646567502462,0.001132206292641637,0.00045736566033366703,9.856233017550469e-05,0.0,0.0,0.0008024401235459654,0.00045736566033366703,9.856233017550469e-05,0.0,0.0,0.0003297661690956715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2033818073969122e-05,0.0,0.0,0.00016187458261624337,6.510715045866892e-05,0.0001839084006902125,9.562552207277254e-05,5.4503543335168215e-05,1.1745517208302621e-05,0.0,0.0,2.2033818073969122e-05,0.0,0.0,0.0,0.0,0.0,0.000123342381146606,4.9825345404699896e-05,1.0737365243608128e-05,0.0,0.0 +97404,50.0,the Greater Atlanta and Macon Area,G1300590030200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,3684.0,,117.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005308139992588751,9.296275088298153e-05,0.0,0.0006236940430681172,0.00039947516616085487,0.0001246395601251363,8.626347791009764e-05,0.0,1.3315838872028494e-05,0.0003198282541499019,0.0001246395601251363,8.626347791009764e-05,0.0,0.0,7.964691201095303e-05,0.0,1.3315838872028494e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.2087523823360595e-06,0.0,0.0,6.325334632756985e-05,2.126038760972652e-05,6.946209870990591e-05,3.8111668782909425e-05,1.4852413978754716e-05,1.0279407949463284e-05,0.0,0.0,5.3194204129800935e-06,0.0,8.893319693559658e-07,0.0,0.0,0.0,4.4490377505482775e-05,1.3881366232041936e-05,9.607342388865122e-06,0.0,1.4830125835160926e-06 +97405,50.0,the Greater Atlanta and Macon Area,G1301510070310,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,249728.0,,14503.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,1133273.7058648225,0.0,0.0,0.02225045559953528,0.004269077684041945,0.0,0.02651953328357722,0.00848073511470089,0.006755856482344802,0.011282941686531536,0.0,0.0,0.004211657430658945,0.006755856482344802,0.011282941686531536,0.0,0.0,0.004269077684041945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002852354925571723,0.0,0.0,0.0026515430760008485,0.001027969954660895,0.0029367785685580207,0.000501894940928063,0.0008050821430636659,0.0013445659920091199,0.0,0.0,0.0002852354925571723,0.0,0.0,0.0,0.0,0.0,0.0009391583503430135,0.0007481449359401289,0.0012494752822748794,0.0,0.0 +97406,50.0,the Greater Atlanta and Macon Area,G1301210005000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,44583.0,,9988.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.008548303345350682,0.006870916663237569,0.0,0.01541922000858825,0.005119658410978379,0.001090717319205413,0.004529905089317009,0.00036942957070141256,0.004309437898415021,0.003372201317183016,0.001090717319205413,0.003227040095847419,0.00036942957070141256,0.0004888433224424049,0.0017474570937953632,0.0013028649934695902,0.0038205945759726165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004590731757664987,0.0,0.0,0.0010186841698606138,0.0006935475277671166,0.0014777573456271125,0.0004018584695249282,0.00012997859598322186,0.0003845598978343679,4.4024181214464486e-05,5.8254478578487646e-05,0.00011675453463968123,8.704957423617685e-05,0.0002552690668906407,0.0,0.0,0.0,0.0004906611890686434,0.00010453288360635339,0.0004341400224527148,3.540563410417716e-05,0.00041301074284948424 +97407,50.0,the Greater Atlanta and Macon Area,G1301210011622,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,66950.0,,19639.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.013940354206246352,0.01350960406032659,0.0,0.02744995826657294,0.012277526678249408,0.0012054692728303905,0.009455632698669177,0.0003732307291652399,0.004138170607629742,0.0069675234641955975,0.0012054692728303905,0.004934979485613181,0.0003732307291652399,0.00045922297441295756,0.005310003214053811,0.004520653213055996,0.0036789476332167842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009026310107552867,0.0,0.0,0.0016612448705626694,0.0013511518073422845,0.002563875881317956,0.0008303062062966516,0.0001436534263392739,0.0005880918974880471,4.447717935920879e-05,5.4724707808803586e-05,0.0003547826825132982,0.00030204303255325924,0.00024580529568872934,0.0,0.0,0.0,0.0011467432564709458,0.00011259301614470525,0.0008831732414049314,3.4860426940566764e-05,0.0003865126391321602 +97408,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,121357.0,,4121.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0057456654610594715,0.0007008457262118471,0.0,0.0064465111872713185,0.0030803311502286134,0.0016919374688699588,0.0008009513467894652,0.0,0.0008732912213832807,0.0030803311502286134,0.0016919374688699588,0.0008009513467894652,0.0,0.00017244549517143358,0.0,0.0,0.0007008457262118471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.682648955323685e-05,0.0,0.0,0.0006846995150923653,0.00021352216398101297,0.0007315260046456023,0.00036707693115438226,0.00020162482002358855,9.544777754223784e-05,0.0,2.0549986372156668e-05,0.0,0.0,4.682648955323685e-05,0.0,0.0,0.0,0.0003495444704666565,0.00019199474269996985,9.08889663899612e-05,0.0,9.909782508901469e-05 +97409,50.0,the Greater Atlanta and Macon Area,G1301210008500,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,85160.0,,2358.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006898148168307816,0.000687081192881384,0.0,0.007585229361189201,0.004368482939134656,0.0026681992162087462,0.0005485472058457979,0.0,0.0,0.003681401746253272,0.0026681992162087462,0.0005485472058457979,0.0,0.0,0.000687081192881384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5907450566749315e-05,0.0,0.0,0.0008220378204035796,0.00022951622299618188,0.0008679452709703288,0.000438704909445623,0.0003179636932375186,6.536921772043787e-05,0.0,0.0,4.5907450566749315e-05,0.0,0.0,0.0,0.0,0.0,0.0004998667710348637,0.0003053105952951756,6.27679046402895e-05,0.0,0.0 +97410,50.0,the Greater Atlanta and Macon Area,G1300890023700,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,4265.0,,298.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007150026524763126,0.0002367076450418978,0.0,0.0009516275904444712,0.0006094684263849564,0.00015342162178641526,0.00013257943920410981,0.0,5.6075395995250426e-05,0.00042891888441204824,0.00015342162178641526,0.00013257943920410981,0.0,0.0,0.00018054954197290808,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.581395300744536e-05,0.0,0.0,8.520083176518339e-05,4.583747949066952e-05,0.00010101478477262875,5.111064355514645e-05,1.828195985244826e-05,1.57983728536251e-05,0.0,0.0,1.2062145148586032e-05,0.0,3.746282368640096e-06,0.0,0.0,0.0,6.469476351377553e-05,1.6285627129604236e-05,1.4073240047846681e-05,0.0,5.952374767585806e-06 +97411,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,132412.0,,11270.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.011797729142569203,0.003317362303143884,0.0,0.015115091445713089,0.007633272326396125,0.0027538704419117635,0.0047279179877989,0.0,0.0,0.00431591002325224,0.0027538704419117635,0.0047279179877989,0.0,0.0,0.003317362303143884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022164692092760846,0.0,0.0,0.0014059116033164776,0.0005950229989383206,0.001627558524244086,0.0005143182986517373,0.00032817319007129547,0.0005634164573749177,0.0,0.0,0.00022164692092760846,0.0,0.0,0.0,0.0,0.0,0.0008219333298328178,0.0002965304793884339,0.0005090914104361224,0.0,0.0 +97412,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,19794.0,,1070.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004611167482187607,0.0008491535260814692,0.0,0.005460321008269076,0.002367407278713936,0.0014356293859668983,0.0015085770250049674,0.0,0.00014879002565701405,0.0016669610712157412,0.0014356293859668983,0.0015085770250049674,0.0,0.0,0.0007004462074981945,0.0,0.00014879002565701405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.673699542201584e-05,0.0,0.0,0.000549499804987536,0.00021989056577248738,0.0006062368004095517,0.00019864704266180812,0.00017107989910809552,0.00017977286321763233,0.0,0.0,4.680097538025247e-05,0.0,9.941546193065792e-06,0.0,0.0,0.0,0.00026284341373709495,0.00015939197790834593,0.0001674910517944596,0.0,1.651953959310487e-05 +97413,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,38520.0,,635.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003276491292148602,0.00018485372617815755,0.0,0.0034613450183267596,0.0020606057330559593,0.0011283488455130423,0.0002723904397577584,0.0,0.0,0.0018757520068778013,0.0011283488455130423,0.0002723904397577584,0.0,0.0,0.00018485372617815755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2350292108014647e-05,0.0,0.0,0.0003904528860918873,0.0001079172153817257,0.00040280317819990196,0.00022352959900522458,0.00013446306550691573,3.246022157974698e-05,0.0,0.0,1.2350292108014647e-05,0.0,0.0,0.0,0.0,0.0,0.00023979653397658592,0.0001313080605037615,3.169858371955459e-05,0.0,0.0 +97414,85.0,Rural Climate Zone 3A,G1302850960600,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,120706.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010050140201552815,0.0,0.0,0.010050140201552815,0.0030232944955992966,0.0027294722049050904,0.004297373501048428,0.0,0.0,0.0030232944955992966,0.0027294722049050904,0.004297373501048428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001197657075108756,0.0003636430775854255,0.001197657075108756,0.00036028055033823374,0.0003252662780776132,0.000512110246692909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036028055033823374,0.0003252662780776132,0.000512110246692909,0.0,0.0 +97415,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,57570.0,,5488.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004776131359292591,0.0016154088066921812,0.0,0.006391540165984771,0.0026977391519932654,0.0014913000388242714,0.0022025009751672356,0.0,0.0,0.001082330345301084,0.0014913000388242714,0.0022025009751672356,0.0,0.0,0.0016154088066921812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010793200560426934,0.0,0.0,0.000569162061998311,0.0002578738419695165,0.0006770940676025803,0.0001289791516927939,0.00017771525557058819,0.00026246765473492893,0.0,0.0,0.00010793200560426934,0.0,0.0,0.0,0.0,0.0,0.0002857876393353495,0.00015798233024916542,0.00023332409801806546,0.0,0.0 +97416,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,70443.0,,6205.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006048000713088288,0.0018266146772329718,0.0,0.007874615390321261,0.003319970919679189,0.0018139705594383184,0.0027406739112037517,0.0,0.0,0.0014933562424462173,0.0018139705594383184,0.0027406739112037517,0.0,0.0,0.0018266146772329718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012204346066151537,0.0,0.0,0.0007207303532448382,0.00034015042234370244,0.0008427738139063534,0.00017796082097170456,0.00021616790475081265,0.0003266016275223209,0.0,0.0,0.00012204346066151539,0.0,0.0,0.0,0.0,0.0,0.0003553169793505387,0.00019413861006731706,0.00029331822448849744,0.0,0.0 +97417,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,11033.0,,,3778.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.000972957510789504,0.0,0.0003561304534076401,0.0013290575905977066,0.0008801357909077346,0.00033407922021583226,0.0001148729530735774,0.0,0.0,0.0005240053375000944,0.00033407922021583226,0.0001148729530735774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003561304534076401,0.0,0.0,0.0,0.0,2.8720916201876698e-05,0.00011594380931206136,6.085333270085706e-05,0.00014466472551393807,6.24438110152556e-05,3.981100610693232e-05,1.3688992189873447e-05,0.0,0.0,0.0,0.0,0.0,2.8720916201876698e-05,0.0,0.0,9.580066620694707e-05,3.636372045450567e-05,1.2503644945807841e-05,0.0,0.0 +97418,85.0,Rural Climate Zone 3A,G1300170960400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,36773.0,,6711.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007516037802522992,0.004616399374361835,0.0,0.012132508896855845,0.0034563288431843277,0.0005807883252844183,0.006772373423062121,0.0003849928044118002,0.0009379537809421612,0.0034563288431843277,0.0005807883252844183,0.002155974048700284,0.0003849928044118002,0.0009379537809421612,0.0,0.004616399374361835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030844282454563335,0.0,0.0,0.0008956751023370857,0.0005522392836758771,0.001204117926882719,0.000411885593402758,6.921168524600626e-05,0.0002569242368708564,4.5879022771123954e-05,0.00011177456404634108,0.0,0.00030844282454563335,0.0,0.0,0.0,0.0,0.0003430310710391156,5.764163374159109e-05,0.0006721393172327691,3.820947023028662e-05,9.308931663034432e-05 +97419,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,41381.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003497817188174377,0.0,0.0,0.003497817188174377,0.001476691786226565,0.0008525879525564809,0.0011685374493913313,0.0,0.0,0.001476691786226565,0.0008525879525564809,0.0011685374493913313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041682705471949997,0.00015112392759745474,0.00041682705471949997,0.00017597405892517753,0.00010160100029096484,0.00013925199550335763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017597405892517753,0.00010160100029096484,0.00013925199550335763,0.0,0.0 +97420,50.0,the Greater Atlanta and Macon Area,G1300670031116,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2394.0,,131.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.000507656018611869,0.00010371467046909149,0.0,0.0006113706890809604,0.00038930219609092004,0.0001536697430076332,4.251143590200402e-05,0.0,2.5887314080403227e-05,0.0002855875256218285,0.0001536697430076332,4.251143590200402e-05,0.0,2.5887314080403227e-05,0.00010371467046909149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.9284417954753605e-06,0.0,0.0,6.0500150210098815e-05,2.4750806710880248e-05,6.742859200557418e-05,3.403503073891678e-05,1.8313665540952033e-05,5.066320822416226e-06,0.0,3.085133107813772e-06,6.9284417954753605e-06,0.0,0.0,0.0,0.0,0.0,4.293646950354947e-05,1.694836633473442e-05,4.6886223337209325e-06,0.0,2.8551338335693618e-06 +97421,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,91557.0,,2827.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00815766562920497,0.0008322714331874016,0.0,0.008989906372786077,0.0035760143050209236,0.002888475055133488,0.0025254170126316642,0.0,0.0,0.002743742871833522,0.002888475055133488,0.0025254170126316642,0.0,0.0,0.0008322714331874016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.560726577816298e-05,0.0,0.0,0.0009721317842720354,0.0003367117628194196,0.0010277390500501983,0.0003269660433286413,0.0003442134719421987,0.0003009486117856287,0.0,0.0,5.560726577816298e-05,0.0,0.0,0.0,0.0,0.0,0.00040881510801197966,0.00033021463029281605,0.0002887093117454025,0.0,0.0 +97422,50.0,the Greater Atlanta and Macon Area,G1302170100700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,51507.0,,3957.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004589200967333284,0.0011647933174230114,0.0,0.005753994284756295,0.002189734098947391,0.0014424728752046264,0.0021217873106042775,0.0,0.0,0.00102494078152438,0.0014424728752046264,0.0021217873106042775,0.0,0.0,0.0011647933174230114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.782513332113664e-05,0.0,0.0,0.0005468861376862282,0.00023922249339074247,0.0006247112710073648,0.0001221401959414921,0.00017189668202658958,0.00025284925971814654,0.0,0.0,7.782513332113664e-05,0.0,0.0,0.0,0.0,0.0,0.00023773947355937105,0.00015660930801583104,0.0002303624894321627,0.0,0.0 +97423,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,45761.0,,5299.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.009528213309336975,0.0036451675268684316,0.0,0.013173380836205409,0.0033409314098202096,0.0005607067334000473,0.006928364360021074,0.0003723700895130526,0.001971008243451023,0.0033409314098202096,0.0005607067334000473,0.0032831968331526427,0.0003723700895130526,0.001971008243451023,0.0,0.0036451675268684316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024354718473871208,0.0,0.0,0.0011354627610344133,0.000581198646373828,0.0013790099457731254,0.0003981337402788501,6.681857290213277e-05,0.00039125359814707515,4.437478005984564e-05,0.00023488206964650965,0.0,0.00024354718473871208,0.0,0.0,0.0,0.0,0.0003497338837745919,5.869565084579696e-05,0.000725271931268422,3.898027874026321e-05,0.00020632820114405118 +97424,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock 90.1-2004,gen5_led,100001_200000,Electricity,104906.0,,11257.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008839803508384014,0.003313434033537779,0.0,0.01215323754192179,0.005399652090443018,0.0022947232420918325,0.004458831519780642,0.0,0.0,0.0020862180569052396,0.0022947232420918325,0.004458831519780642,0.0,0.0,0.003313434033537779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022138469393505566,0.0,0.0,0.0010534224883857685,0.0005005262229403163,0.001274807182320824,0.00024861061840753424,0.0002734577828057335,0.0005313504299507758,0.0,0.0,0.0002213846939350557,0.0,0.0,0.0,0.0,0.0,0.0005663935427235895,0.00024070373514600233,0.0004677066852818219,0.0,0.0 +97425,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,72961.0,,5386.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006846027071672634,0.0015691305205536967,0.0,0.008415157592226332,0.00580712847650377,0.001981209144125675,0.0006268503451963221,0.0,0.0,0.004237997955950074,0.001981209144125675,0.0006268503451963221,0.0,0.0,0.0015691305205536967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010483975228111586,0.0,0.0,0.0008158282631251075,0.00031515094986059745,0.0009206680154062234,0.000505034303156176,0.000236096994361538,7.470058517252442e-05,0.0,0.0,0.00010483975228111586,0.0,0.0,0.0,0.0,0.0,0.0006353342039144424,0.00021675599902155573,6.858113552166046e-05,0.0,0.0 +97426,35.0,Eastern Counties in South Carolina and Georgia,G1300510002700,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,51921.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004490645556073294,0.0,0.0,0.004490645556073294,0.0029089707389518054,0.0013210693339455778,0.0002605751095764729,0.0,0.0,0.0029089707389518054,0.0013210693339455778,0.0002605751095764729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000535141129493171,0.00017302915023332171,0.000535141129493171,0.0003466561471991279,0.00015742915504660885,3.1052207687148966e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003466561471991279,0.00015742915504660885,3.1052207687148966e-05,0.0,0.0 +97427,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5773.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0014303361332475826,0.0,0.0,0.0014303361332475826,0.0009043191442655874,0.0002494445343977512,0.0002339783116085007,0.0,4.259414297574332e-05,0.0009043191442655874,0.0002494445343977512,0.0002339783116085007,0.0,4.259414297574332e-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.00017045455884768217,4.808416660646392e-05,0.00017045455884768217,0.00010776859873022764,2.9726549640604223e-05,2.788342471262246e-05,0.0,5.075985764227842e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010776859873022764,2.9726549640604223e-05,2.788342471262246e-05,0.0,5.075985764227842e-06 +97428,50.0,the Greater Atlanta and Macon Area,G1301210011617,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,26230.0,,789.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006298309079395739,0.0006261752552802964,0.0,0.006924484334676035,0.003971924509256499,0.0013675614642794482,0.0014531632855996316,0.0,0.00013191778261419532,0.003345749253976203,0.0013675614642794482,0.0014531632855996316,0.0,0.00013191778261419532,0.0006261752552802964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.183576772181144e-05,0.0,0.0,0.0007505585983613028,0.0002652327446509843,0.0007923943660831142,0.0003987071512174307,0.00016296993413047773,0.00017317095510568456,0.0,1.572041396662304e-05,4.183576772181144e-05,0.0,0.0,0.0,0.0,0.0,0.00045452201947822547,0.00015649511894203855,0.00016629085212044862,0.0,1.5095840018902418e-05 +97429,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300830040101,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,28034.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.004443342224997631,0.0,0.0,0.00444334222499763,0.0037254871473275043,0.0002661452204458028,0.0004245766932116941,0.0,2.7078570121255023e-05,0.0037254871473275043,0.0002661452204458028,0.0004245766932116941,0.0,2.7078570121255023e-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.0005295017392925193,0.00018514197654837734,0.0005295017392925193,0.0004439567839550984,3.171584586431865e-05,5.059571964857563e-05,0.0,3.2268840099901653e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0004439567839550985,3.1715845864318655e-05,5.0595719648575634e-05,0.0,3.226884009990166e-06 +97430,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,17536.0,,1229.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014995248533120557,0.00036183045824991577,0.0,0.0018613553115619716,0.0008193511089360689,0.00047160717997679863,0.0005704277122554017,0.0,0.0,0.00045752065068615307,0.00047160717997679863,0.0005704277122554017,0.0,0.0,0.00036183045824991577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4175730388656834e-05,0.0,0.0,0.00017869578448334608,8.184253886453948e-05,0.00020287151487200292,5.452194500885621e-05,5.620061235250156e-05,6.79768843493165e-05,0.0,0.0,2.4175730388656834e-05,0.0,0.0,0.0,0.0,0.0,8.930213358481696e-05,5.140107449239202e-05,6.217165169454614e-05,0.0,0.0 +97432,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,7212.0,,1153.0,,8.53126424238864,Food Service,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,8531.26424238864,0.0,0.0,0.0014601031598684058,0.0008940776783887113,0.0,0.002354180838257117,0.0006834353384951964,0.000291260540612837,0.0006573173055640619,0.00042249759153305743,0.0002995892012688953,0.000480798216125466,0.000291260540612837,0.0002654659508139766,0.00042249759153305743,0.0,0.0002026371223697305,0.0003918513547500854,0.0002995892012688953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.973965154901777e-05,0.0,0.0,0.00017399352087030964,0.0001135070173721826,0.00023373317241932743,5.7294427374140835e-05,3.470812771639006e-05,3.163430963156817e-05,5.03470203548412e-05,0.0,1.3539618954674732e-05,2.6182359718417296e-05,2.0017672875925732e-05,0.0,0.0,0.0,6.785439215800491e-05,2.891759590074938e-05,6.526128180932583e-05,4.194737328745571e-05,2.9744501058377686e-05 +97433,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,41669.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.003674446191982027,0.0,0.0,0.003674446191982027,0.002504910745631393,0.0007207047674589752,0.0004488306788916587,0.0,0.0,0.002504910745631393,0.0007207047674589752,0.0004488306788916587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043787823922312086,0.000150741064537973,0.00043787823922312086,0.0002985064549595435,8.588530572668908e-05,5.348647853688825e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002985064549595435,8.588530572668908e-05,5.348647853688825e-05,0.0,0.0 +97434,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,23265.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.005360576277339471,0.0,0.0,0.0053605762773394705,0.0028446270941897395,0.0013474636453607962,0.0009943871475676933,0.0,0.0001740156831475028,0.0028446270941897395,0.0013474636453607962,0.0009943871475676933,0.0,0.0001740156831475028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006388049479414692,0.00017364433314306986,0.0006388049479414692,0.00033898628968276746,0.00016057349047832897,0.00011849834741105757,0.0,2.0736964397643273e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003389862896827675,0.000160573490478329,0.0001184983474110576,0.0,2.0736964397643276e-05 +97435,50.0,the Greater Atlanta and Macon Area,G1301210011618,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,33248.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007729224162159497,0.0,0.0,0.007729224162159497,0.004214752477755106,0.0010778385849706542,0.002296940851888046,0.0,0.00013977495461942955,0.004214752477755106,0.0010778385849706542,0.002296940851888046,0.0,0.00013977495461942955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009210724590458008,0.0002730917318346156,0.0009210724590458008,0.0005022615915270136,0.00012844334891640584,0.00027372074018618966,0.0,1.6656634412885657e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005022615915270136,0.00012844334891640584,0.00027372074018618966,0.0,1.6656634412885657e-05 +97436,50.0,the Greater Atlanta and Macon Area,G1300670030905,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,15489.0,,2153.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0037829388457621825,0.0017083146080853946,0.0,0.005491253453847577,0.003730502561011461,0.0007796795841404511,0.0008382361923478807,0.0,0.00014275240927404462,0.002022187952926067,0.0007796795841404511,0.0008382361923478807,0.0,0.00014275240927404462,0.0017083146080853946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001141380008791209,0.0,0.0,0.00045080586988036016,0.00020439783986737813,0.0005649438707594812,0.00024098042192821897,9.291298312954272e-05,9.989106651298563e-05,0.0,1.701154225963623e-05,0.0001141380008791209,0.0,0.0,0.0,0.0,0.0,0.00038379662756584017,8.021396315404447e-05,8.623830662631173e-05,0.0,1.46864644535781e-05 +97437,50.0,the Greater Atlanta and Macon Area,G1301210003100,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,71163.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00621977043953653,0.0,0.0,0.00621977043953653,0.002880864032771658,0.00124403388088368,0.002094872525881192,0.0,0.0,0.002880864032771658,0.00124403388088368,0.002094872525881192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007411977215120095,0.00024743869336633505,0.0007411977215120095,0.0003433068596074045,0.00014824905307332136,0.0002496418088312837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003433068596074045,0.00014824905307332136,0.0002496418088312837,0.0,0.0 +97438,85.0,Rural Climate Zone 3A,G1300170960500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,28632.0,,919.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006761174376274948,0.0007124643596167978,0.0,0.007473638735891745,0.0035161502909518607,0.0006502015566540317,0.0023014596076964366,0.0004275918208663747,0.0005782354597230418,0.0035161502909518607,0.0006502015566540317,0.0015889952480796386,0.0004275918208663747,0.0005782354597230418,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.000805714186636698,0.00030583637925544696,0.0008533194653317715,0.0004190118482534255,7.748308048490927e-05,0.00018935704696044668,5.09551709494093e-05,6.890703998850716e-05,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.00040146434586032896,7.423822107126541e-05,0.000262774312663892,4.882125519523087e-05,6.602133054105444e-05 +97439,50.0,the Greater Atlanta and Macon Area,G1300670031311,ComStock 90.1-2004,gen4_led,100001_200000,NaturalGas,87661.0,,5786.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.008676933767762103,0.0017031197014910158,0.0,0.01038002277964682,0.003375120142196161,0.002276953960045463,0.0047279179877989,0.0,0.0,0.0016720004407051454,0.002276953960045463,0.0047279179877989,0.0,0.0,0.0017031197014910158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011379178558877817,0.0,0.0,0.0010340127317342634,0.0004005134401268979,0.0011478045173230417,0.00019924892703201055,0.000271340020250839,0.000563416470014196,0.0,0.0,0.00011379178558877817,0.0,0.0,0.0,0.0,0.0,0.00037321480192864786,0.0002517815323297099,0.0005228047894624261,0.0,0.0 +97440,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,7259.0,,1018.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0006467527631177885,0.0002996533158907699,0.0,0.0009464060790085584,0.0005004554098966393,0.0002122186275486148,0.0002337013519570067,0.0,0.0,0.0002008020940058693,0.0002122186275486148,0.0002337013519570067,0.0,0.0,0.0002996533158907699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0021543590277304e-05,0.0,0.0,7.70723799981357e-05,4.6832587655875535e-05,9.7093923588413e-05,2.3929229492635562e-05,2.5289717551822554e-05,2.784977572771203e-05,0.0,0.0,2.0021543590277304e-05,0.0,0.0,0.0,0.0,0.0,5.134284363305827e-05,2.177198526538284e-05,2.3975946174387605e-05,0.0,0.0 +97441,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,236575.0,,28000.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012177744134134867,0.00476164813260796,0.0,0.016939392266742827,0.007724090109754643,0.003422917193586874,0.0028512016895972715,0.0,0.002941201004165459,0.005881763715319797,0.003422917193586874,0.0024513997699365003,0.0,0.00042168118565311585,0.0018423263944348464,0.0003998019196607707,0.002519519818512343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003181450418989311,0.0,0.0,0.0014511985385735997,0.0007044603264226149,0.001769343580472531,0.0007009185620825744,0.0004079025125078807,0.0002921286343683093,0.0,5.0250942508183866e-05,0.00012309330543245294,2.6712389269318844e-05,0.0001683393471971593,0.0,0.0,0.0,0.0008067921821208057,0.00035752856227624983,0.0002978120659042623,0.0,0.0003072126221326452 +97442,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,36441.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0043642610088128085,0.0,0.0,0.0043642610088128085,0.002795859454645618,0.0012847728826174641,0.0002836590451491643,0.0,0.0,0.002795859454645618,0.0012847728826174641,0.0002836590451491643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005200822298431153,0.00012450208137004462,0.0005200822298431153,0.00033317824405181386,0.00015310439597548774,3.3803209390649433e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033317824405181386,0.00015310439597548774,3.3803209390649433e-05,0.0,0.0 +97443,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,60583.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0029449598407865108,0.0,0.0,0.0029449598407865103,0.0010546373579875807,0.000684356490091198,0.0008431850676920311,0.0,0.00036278092501570037,0.0010546373579875807,0.000684356490091198,0.0008431850676920311,0.0,0.00036278092501570037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035094595589251463,8.045128926558565e-05,0.00035094595589251463,0.00012567937619823688,8.155362231430596e-05,0.00010048095918905472,0.0,4.3231998190916995e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00012567937619823688,8.155362231430597e-05,0.00010048095918905474,0.0,4.3231998190917e-05 +97444,50.0,the Greater Atlanta and Macon Area,G1300970080201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6803.0,,763.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0004845500318304548,0.00022218287988715456,0.0,0.0007067329117176093,0.0004745874912148723,0.00019016910607976418,4.1945940823535275e-05,0.0,0.0,0.0002524046113277177,0.00019016910607976418,4.1945940823535275e-05,0.0,0.0,0.00022218287988715456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.484559658062337e-05,0.0,0.0,5.7743529389081724e-05,2.9630756206815587e-05,7.258912596970509e-05,3.007890235211366e-05,2.2662335454462528e-05,4.998671979334412e-06,0.0,0.0,1.484559658062337e-05,0.0,0.0,0.0,0.0,0.0,4.874527648601694e-05,1.9532427269052935e-05,4.308302516940122e-06,0.0,0.0 +97445,50.0,the Greater Atlanta and Macon Area,G1301390001603,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,51517.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006005986642066733,0.0,0.0,0.006005986642066733,0.0018475142991217076,0.0015792564504734875,0.0025792158924715374,0.0,0.0,0.0018475142991217076,0.0015792564504734875,0.0025792158924715374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007157219324260431,0.00025051061421134244,0.0007157219324260431,0.0002201647428068727,0.0001881969684401804,0.00030736022117898996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002201647428068727,0.0001881969684401804,0.00030736022117898996,0.0,0.0 +97446,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,15110.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0036841865997174488,0.0,0.0,0.0036841865997174488,0.002109195794499818,0.0005682803036627814,0.0009264019329539824,0.0,8.030856860086751e-05,0.002109195794499818,0.0005682803036627814,0.0009264019329539824,0.0,8.030856860086751e-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.0004390398092454894,0.00013891934503258493,0.0004390398092454894,0.0002513501675918391,6.772123760973755e-05,0.00011039813454616068,0.0,9.570269497752168e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002513501675918391,6.772123760973755e-05,0.00011039813454616068,0.0,9.570269497752168e-06 +97447,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,8516.0,,449.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002698731816113601,0.000356219366595197,0.0,0.003054951182708799,0.002092902500973174,0.00023918885725407707,0.0006173255983901905,0.0,0.00010553422609135627,0.0018422173604693336,0.00023918885725407707,0.0006173255983901905,0.0,0.0,0.00025068514050384077,0.0,0.00010553422609135627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3802490514935893e-05,0.0,0.0,0.0003216015938054097,0.00012459155622794013,0.00034540408432034563,0.0002195327582109009,2.8503579812603276e-05,7.356525578190555e-05,0.0,0.0,1.6750719468486348e-05,0.0,7.0517710464495485e-06,0.0,0.0,0.0,0.0002366313006937852,2.7043577222146883e-05,6.979711631608033e-05,0.0,1.1932090088333134e-05 +97448,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,9059.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018717437857942662,0.0,0.0,0.0018717437857942666,0.001141026789307485,0.00035167047753953515,0.0003333095071694089,0.0,4.590242592531562e-05,0.001141026789307485,0.00035167047753953515,0.0003333095071694089,0.0,4.590242592531562e-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.00022305656612826733,7.165912497889453e-05,0.00022305656612826733,0.00013597668624035951,4.190873223354658e-05,3.972064696641409e-05,0.0,5.470213167831221e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013597668624035946,4.1908732233546575e-05,3.972064696641408e-05,0.0,5.47021316783122e-06 +97449,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,2202.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0005288290294891317,0.0,0.0,0.0005288290294891316,0.00027930178801764113,0.00012736889355853342,9.511313480020353e-05,0.0,2.7045213112753528e-05,0.00027930178801764113,0.00012736889355853342,9.511313480020353e-05,0.0,2.7045213112753528e-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,6.301811833704313e-05,1.9635825679769518e-05,6.301811833704313e-05,3.3283106916514636e-05,1.5177964066163029e-05,1.1334193945511352e-05,0.0,3.2228534088540977e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.328310691651464e-05,1.5177964066163032e-05,1.1334193945511356e-05,0.0,3.2228534088540985e-06 +97450,85.0,Rural Climate Zone 3A,G1300810010201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,241875.0,,1678.0,,7.614023970037612,Education,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1142103.5955056418,0.0,0.0,0.04812039342203332,0.0011613117298158347,0.0,0.04928170515184915,0.03291032737682793,0.01082267189816625,0.0021943826602355263,0.0008080541535388952,0.0025462690630805433,0.03291032737682793,0.01082267189816625,0.0021943826602355263,0.0008080541535388952,0.0013849573332647084,0.0,0.0,0.0011613117298158347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.759187958554304e-05,0.0,0.0,0.005734412346528029,0.001413657718391884,0.005812004226113571,0.0039218587841293485,0.0012897164578635747,0.00026150025228388726,9.629421925289195e-05,0.0001650426329983254,0.0,0.0,7.759187958554304e-05,0.0,0.0,0.0,0.0038812569737094026,0.0012763644158855295,0.00025879301975655506,9.529731450699336e-05,0.00030029250225509035 +97451,50.0,the Greater Atlanta and Macon Area,G1300670030345,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,276432.0,,39450.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013671101555100236,0.006708760963035318,0.0,0.020379862518135554,0.012212052383482669,0.0021815613994847173,0.0030605440668838345,0.0,0.002925704668284333,0.009272464842206434,0.0021815613994847173,0.0017980891426918153,0.0,0.00041898617071726784,0.0029395875412762344,0.0012624549241920194,0.0025067184975670655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004482397934493298,0.0,0.0,0.0016291592849256695,0.0009521529666716564,0.0020773990783749994,0.001104982077043512,0.0002599725410042063,0.00021427487829958774,0.0,4.99297885783633e-05,0.00019640588174000585,8.43497834513531e-05,0.00016748412825797092,0.0,0.0,0.0,0.0012448222525514373,0.00022237508406522028,0.00031197322446178147,0.0,0.0002982285172965602 +97452,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300010950300,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,12340.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011352740261848498,0.0,0.0,0.0011352740261848498,0.0006287638819609005,0.0004317607160076421,7.474942821630725e-05,0.0,0.0,0.0006287638819609005,0.0004317607160076421,7.474942821630725e-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.00013528890982042173,3.415488526944416e-05,0.00013528890982042173,7.492885256153653e-05,5.1452279559549854e-05,8.907777699335367e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.492885256153653e-05,5.1452279559549854e-05,8.907777699335367e-06,0.0,0.0 +97453,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300050970202,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,126178.0,,,,7.614023970037612,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,571051.7977528209,0.0,0.0,0.023009156191936508,0.0,0.0,0.023009156191936508,0.01513638351499522,0.003578618323272907,0.0023776868979767784,0.0008033632970612649,0.0011130319916076074,0.01513638351499522,0.003578618323272907,0.0023776868979767784,0.0008033632970612649,0.0011130319916076074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027419548883642108,0.0006125508822593354,0.0027419548883642108,0.0018037723949929682,0.000426456751531228,0.00028334416779663167,9.573518911925527e-05,0.00013263778492510545,0.0,0.0,0.0,0.0,0.0,0.0,0.0018037723949929682,0.000426456751531228,0.00028334416779663167,9.573518911925527e-05,0.00013263778492510545 +97454,35.0,Eastern Counties in South Carolina and Georgia,G1302450010101,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,18655.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0042953918746509315,0.0,0.0,0.004295391874650931,0.0021311131690407346,0.0005739043846770542,0.0015281786014811833,0.0,6.219571945195919e-05,0.0021311131690407346,0.0005739043846770542,0.0015281786014811833,0.0,6.219571945195919e-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.000511877994571304,0.00014240364666112166,0.000511877994571304,0.0002539628436722594,6.839167044055603e-05,0.00018211167239229776,0.0,7.4118080661908265e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00025396284367225943,6.839167044055605e-05,0.00018211167239229778,0.0,7.411808066190828e-06 +97455,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,95542.0,,27194.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.020275666125939337,0.018706433160117768,0.0,0.0389820992860571,0.022001822388343063,0.002484738395835845,0.004756755357639388,0.0003710791300347716,0.00936777573417505,0.011682752958616947,0.002484738395835845,0.004756755357639388,0.0003710791300347716,0.000980412003783403,0.010319069429726118,0.0,0.00838736373039165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012498543653971747,0.0,0.0,0.0024162127308374947,0.0019338202128725516,0.00366606709623467,0.0013922115433596843,0.00029610156862558634,0.0005668535268443756,4.422079711556599e-05,0.00011683384162539371,0.00068945981648051,0.0,0.0005603945489166647,0.0,0.0,0.0,0.0020691588855491394,0.0002336769399944256,0.0004473485169054781,3.4898094603295084e-05,0.0008809914040788537 +97456,50.0,the Greater Atlanta and Macon Area,G1301210010512,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,37934.0,,2756.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.008687439950533416,0.002137473939633462,0.0,0.010824994750949946,0.00454712527507559,0.00044117643242188735,0.004849948907667225,0.0004199100464748646,0.000566753228527311,0.00454712527507559,0.00044117643242188735,0.0027124749680337633,0.0004199100464748646,0.000566753228527311,0.0,0.002137473939633462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014281583608522085,0.0,0.0,0.0010352698706868658,0.00047259382117938333,0.0011780857067720865,0.000541874455803915,5.257436836906782e-05,0.00032324178646267964,5.0040083383535416e-05,6.753917666766795e-05,0.0,0.00014281583608522085,0.0,0.0,0.0,0.0,0.0004948642855460555,4.8013293415714295e-05,0.0005278206242267463,4.569886963119581e-05,6.167983386193944e-05 +97457,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,102943.0,,2003.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004916771064672003,0.0003405647821563742,0.0,0.0052573358468283775,0.002219805789067771,0.0012108418420982462,0.001050683487390909,0.0,0.000776004728271451,0.002219805789067771,0.0012108418420982462,0.0007101187052345348,0.0,0.000776004728271451,0.0,0.0003405647821563742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.275450987685085e-05,0.0,0.0,0.0005859227558059195,0.00015756432009623732,0.0006086772656827703,0.0002645302594277464,0.00014429384236840572,8.462356763159691e-05,0.0,9.247508637817039e-05,0.0,2.2754509876850847e-05,0.0,0.0,0.0,0.0,0.00025700190313153915,0.0001401873350106158,0.00012164472098333745,0.0,8.984330655727787e-05 +97458,50.0,the Greater Atlanta and Macon Area,G1301350050419,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,22653.0,,5310.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001070452840374268,0.0009029718464004489,0.0,0.0019734246867747175,0.0008359156195098095,0.0003226571171221209,0.0004962196250630177,0.0,0.00031861459471834884,0.0005766977355486374,0.0003226571171221209,0.00010829704755368252,0.0,6.278320978840697e-05,0.00025921788396117196,0.00038792257750933524,0.0002558313849299419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0331542078376004e-05,0.0,0.0,0.0001275627638342702,8.80234724039543e-05,0.0001878943059126462,6.872339842437925e-05,3.845011389432619e-05,1.2905445415240375e-05,0.0,7.481693224519672e-06,1.7319493111566474e-05,2.5918822830914015e-05,1.7093226135895532e-05,0.0,0.0,0.0,7.958944984418623e-05,3.0720926658984874e-05,4.72462124631833e-05,0.0,3.033602879777768e-05 +97459,50.0,the Greater Atlanta and Macon Area,G1300630040204,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,17378.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.0061676319028876325,0.0,0.0,0.0061676319028876325,0.002433324816484164,0.0015481110062523563,0.0020584136512238832,0.0,0.00012786513600096929,0.002433324816484164,0.0015481110062523563,0.0020584136512238832,0.0,0.00012786513600096929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007349879806657128,0.00023200668226999274,0.0007349879806657128,0.0002899758807483498,0.00018448620155153158,0.00024529824683270214,0.0,1.5237507618264122e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002899758807483498,0.00018448620155153158,0.00024529824683270214,0.0,1.5237507618264122e-05 +97460,50.0,the Greater Atlanta and Macon Area,G1300570090601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,13474.0,,28.0,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.0,0.002021830173126126,0.0021001178133557216,1.4904132344964958e-05,0.0,0.004136797524935439,0.003665816024056272,0.0002978642713338052,0.00015821309720039726,0.0,1.4904132344964958e-05,0.001643985850930146,0.0002978642713338052,0.00015821309720039726,0.0,0.0,0.0,0.0,1.4904132344964958e-05,0.002021830173126126,0.0,0.0,0.0,0.0,0.0,0.0,9.94417328325647e-07,0.0,0.0,0.00025026506223121926,9.016125477160834e-05,0.0002512594795595449,0.00019590911456193996,3.549563740078851e-05,1.8853804469846977e-05,0.0,0.0,0.0,0.0,9.94417328325647e-07,0.0,0.0,0.0,0.00022265315641228868,1.8091584454784977e-05,9.609496288483664e-06,0.0,9.052424039875913e-07 +97461,35.0,Eastern Counties in South Carolina and Georgia,G1302450000300,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,25027.0,,9835.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005091831062224322,0.006765488305844621,0.0,0.011857319368068945,0.0024678124826761605,0.0003178629115411882,0.007347352430694273,0.00037961380658562934,0.0013445342966296602,0.00200471662982836,0.0003178629115411882,0.0022214543822375366,0.00037961380658562934,0.00016811161206059232,0.0004630958528478005,0.005125898048456737,0.001176422684569068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045202908484283193,0.0,0.0,0.0006067857514735607,0.000598622823813062,0.0010588148363163926,0.00023889902706052411,3.787923897868642e-05,0.00026472733486593704,4.5237999078110844e-05,2.0033604730604913e-05,3.094126914334653e-05,0.0003424815621719251,7.860146163207576e-05,0.0,0.0,0.0,0.00022036654228449354,2.838398428913585e-05,0.0006560914418999372,3.3898111200901636e-05,0.00012006194798475398 +97462,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,23757.0,,1418.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.002116754215171454,0.0004175014040739486,0.0,0.002534255619245403,0.0012920017355269892,0.0005274008842260223,0.0007148223098860933,0.0,0.0,0.0008745003314530406,0.0005274008842260223,0.0007148223098860933,0.0,0.0,0.0004175014040739486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7895851228615427e-05,0.0,0.0,0.0002522486901871613,0.0001130502202612649,0.00028014454141577665,0.0001042121761686915,6.284914011086027e-05,8.518371669840894e-05,0.0,0.0,2.7895851228615427e-05,0.0,0.0,0.0,0.0,0.0,0.00014282191226446564,5.830054305957011e-05,7.901869356668649e-05,0.0,0.0 +97463,50.0,the Greater Atlanta and Macon Area,G1301170130606,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Propane,104979.0,,1790.0,13341.0,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.01226658851352825,0.0006651166940478011,0.0016040684988929113,0.01453577370646896,0.007833342601340484,0.0018624817370289312,0.004533023103400877,0.0,0.00030688751627489566,0.0065361616187224695,0.0018624817370289312,0.0038679064093530766,0.0,0.0,0.0,0.0006651166940478011,0.0,0.0,0.0,0.0,0.0,0.0012971809826180154,0.00030688751627489566,0.0,4.4440270999192076e-05,0.0,0.00012936590283974905,0.0014617848435968556,0.0005992356826785286,0.0016355910174357963,0.0007789013203639157,0.00022194822722407825,0.000460930678436623,0.0,0.0,0.0,4.4440270999192076e-05,0.0,0.00010461584968394518,2.475005315580386e-05,0.0,0.0008814215915832378,0.0002095697457003641,0.0005100637929202097,0.0,3.4531527190672904e-05 +97464,50.0,the Greater Atlanta and Macon Area,G1301210007706,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,169159.0,,7274.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,306613.1346040191,0.0,0.0,0.019029622153436263,0.0027032837844593554,0.0,0.021732905937895616,0.009364215327727932,0.002639193891540331,0.0092321219510889,0.0,0.0004972972706909104,0.008383066489395023,0.002639193891540331,0.008007323024077135,0.0,0.0,0.000981148838332908,0.0012247989270117647,0.0004972972706909104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018061820956125755,0.0,0.0,0.002267723449450836,0.0006927517987592304,0.0024483416590120937,0.0009989939003005263,0.00031450765691701786,0.0009542172746582023,0.0,0.0,6.555484389451159e-05,8.18341716623205e-05,3.3226605052808416e-05,0.0,0.0,0.0,0.0010549347867400685,0.00029732095511448734,0.0010400536789016092,0.0,5.602350777318391e-05 +97465,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,44180.0,,941.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0036489931156531903,0.00027418248212458574,0.0,0.003923175597777777,0.0024532452529877767,0.001244072259370877,0.00022585808541912255,0.0,0.0,0.0021790627708631913,0.001244072259370877,0.00022585808541912255,0.0,0.0,0.00027418248212458574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.831850707256233e-05,0.0,0.0,0.0004348434581469772,0.00011470915223441731,0.00045316196521953954,0.0002596746995045693,0.00014825368705929096,2.6915071583116963e-05,0.0,0.0,1.831850707256233e-05,0.0,0.0,0.0,0.0,0.0,0.00028337182782212523,0.0001437015029994977,2.6088634397916566e-05,0.0,0.0 +97466,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,104137.0,,10046.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009587003352914182,0.0029572197732403416,0.0,0.012544223126154525,0.005758536346488354,0.0028650281959220437,0.003920658583744126,0.0,0.0,0.0028013165732480123,0.0028650281959220437,0.003920658583744126,0.0,0.0,0.0029572197732403416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019758427386310434,0.0,0.0,0.0011424645155808774,0.0005552625393138585,0.001340048789443982,0.00033382743950659407,0.00034141982948036344,0.0004672172465939199,0.0,0.0,0.00019758427386310434,0.0,0.0,0.0,0.0,0.0,0.000615161224611163,0.0003060594129311501,0.00041882815190166876,0.0,0.0 +97467,50.0,the Greater Atlanta and Macon Area,G1301130140101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,103677.0,,18063.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0053900298716960515,0.003071838307108408,0.0,0.00846188590916588,0.003695840646925746,0.0017492242666181494,0.0011622429214458814,0.0,0.0018545780741761031,0.0027556705022660265,0.0017492242666181494,0.0006283108176424111,0.0,0.0002568242851694648,0.0009401701446597197,0.0005339321038034701,0.0015977537890066382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020524250567892247,0.0,0.0,0.000642320193089951,0.0003529926570697626,0.0008475626987688734,0.00032838831161260946,0.00020845191871603718,7.487467329779142e-05,0.0,3.060528946351296e-05,6.281674260261318e-05,3.5674261432789457e-05,0.000106752686283934,0.0,0.0,0.0,0.00037018422448062324,0.00017520647951078618,0.00011641302632769642,0.0,0.00018575896844976762 +97468,50.0,the Greater Atlanta and Macon Area,G1300790070202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,66501.0,,15210.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003423165418646755,0.0025866646972100833,0.0,0.006009847846218258,0.0018531951059853392,0.0008180256848369763,0.0026240225687221338,0.0,0.000714622217035228,0.0016039948762264968,0.0008180256848369763,0.0008872982069051224,0.0,0.00011386438103957909,0.00024920022975884204,0.0017367243618170117,0.0006007578359956491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001728263207981126,0.0,0.0,0.00040793253256858267,0.00026974492627108553,0.0005807588533666952,0.00019114521563050012,9.748266546044243e-05,0.00010573774866814876,0.0,1.3569015705116525e-05,1.6650151408382205e-05,0.00011603810962318422,4.013924440912234e-05,0.0,0.0,0.0,0.00017908264774025206,7.904953185285262e-05,0.00025357120133720815,0.0,6.905718580161745e-05 +97469,50.0,the Greater Atlanta and Macon Area,G1301210006300,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,21620.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.00301239284503735,0.0,0.0,0.00301239284503735,0.0014878811420577108,0.0012619319358402748,0.00026254939353992677,0.0,0.0,0.0014878811420577108,0.0012619319358402748,0.00026254939353992677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035898013021363654,9.624176369032723e-05,0.00035898013021363654,0.00017730747402292042,0.00015038161154677405,3.1287425089905774e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017730747402292042,0.00015038161154677405,3.1287425089905774e-05,0.0,0.0 +97470,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,3308.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006319647504420481,0.0,0.0,0.000631964750442048,0.0003724299530481013,0.00010090262996195504,0.00013133883309802017,0.0,2.721062726023214e-05,0.0003724299530481013,0.00010090262996195504,0.00013133883309802017,0.0,2.721062726023214e-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,7.530843738957096e-05,2.600855573841601e-05,7.530843738957096e-05,4.4380826274733407e-05,1.2024119044009495e-05,1.5651066427776294e-05,0.0,3.242569807769774e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.438082627473341e-05,1.2024119044009498e-05,1.5651066427776297e-05,0.0,3.2425698077697746e-06 +97471,50.0,the Greater Atlanta and Macon Area,G1300670031110,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,21567.0,,696.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005463298462923692,0.000552317838431095,0.0,0.006015616301354786,0.0027526568281916295,0.0018414729968056797,0.0012561550359526013,0.0,0.00016533144040487555,0.002200338989760535,0.0018414729968056797,0.0012561550359526013,0.0,0.00016533144040487555,0.000552317838431095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6903359951931965e-05,0.0,0.0,0.0006510529921516136,0.0002159108610505785,0.0006879563521035456,0.000262211060360929,0.00021944554423906497,0.00014969409054133928,0.0,1.97022970102803e-05,3.6903359951931965e-05,0.0,0.0,0.0,0.0,0.0,0.00031479862664930024,0.00021059405751897934,0.00014365607660445806,0.0,1.8907591330807983e-05 +97472,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,20804.0,,2571.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0010615699293028216,0.00043721298225708207,0.0,0.0014987829115599037,0.0007396220266375028,0.00024317190687602423,0.0002759553451417018,0.0,0.00024003363290467486,0.0004877622426656526,0.00024317190687602423,0.0002759553451417018,0.0,5.468043461944284e-05,0.00025185978397185006,0.0,0.000185353198285232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9211676987742445e-05,0.0,0.0,0.0001265056549920864,6.111080129027108e-05,0.00015571733197982887,5.812587591789783e-05,2.897842196343035e-05,3.288517385627633e-05,0.0,6.516183254481893e-06,1.682760337446293e-05,0.0,1.2384073613279513e-05,0.0,0.0,0.0,7.684366279679365e-05,2.5264553164521757e-05,2.8670616511309992e-05,0.0,2.4938499507203463e-05 +97473,50.0,the Greater Atlanta and Macon Area,G1300670031114,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,6011.0,,567.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014157796882694645,0.0004497610669943537,0.0,0.0018655407552638182,0.0008651986983868949,0.0002710310806437104,0.0006187316186437588,0.0,0.00011066206466319332,0.0005260169889819953,0.0002710310806437104,0.0006187316186437588,0.0,0.0,0.00033918170940489966,0.0,0.00011066206466319332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0052355434194897e-05,0.0,0.0,0.00016871386035008284,8.854484736431278e-05,0.00019876621578427775,6.268373360360597e-05,3.229789229858753e-05,7.373223444788933e-05,0.0,0.0,2.2663609716004644e-05,0.0,7.394272079983959e-06,0.0,0.0,0.0,9.21836045096351e-05,2.887732262480396e-05,6.592348201286494e-05,0.0,1.1790618758616935e-05 +97474,50.0,the Greater Atlanta and Macon Area,G1302070050200,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,17704.0,,1903.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,24034.3828889517,0.0,0.0,0.001561172637501006,0.0005543181897389708,0.0,0.002115490827239977,0.0016735853290201256,0.00034291793765221806,9.898756056763318e-05,0.0,0.0,0.0011192671392811545,0.00034291793765221806,9.898756056763318e-05,0.0,0.0,0.0005543181897389708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.703567880906782e-05,0.0,0.0,0.00018604227654223093,9.793624864486623e-05,0.00022307795535129877,0.0001333811531465828,4.086494488534382e-05,1.1796178510304298e-05,0.0,0.0,3.703567880906782e-05,0.0,0.0,0.0,0.0,0.0,0.000176479135951077,3.616060698525697e-05,1.0438212414964789e-05,0.0,0.0 +97475,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,29026.0,,2243.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002479720188854385,0.00066022550028248,0.0,0.003139945689136865,0.0010834965503403967,0.0008745003314530409,0.001181979496949725,0.0,0.0,0.00042327105005791676,0.0008745003314530409,0.001181979496949725,0.0,0.0,0.00066022550028248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.411262503132959e-05,0.0,0.0,0.00029550406725347095,0.00013290740487514408,0.00033961669228480055,5.044049623217662e-05,0.00010421272767806502,0.0001408545005717844,0.0,0.0,4.411262503132959e-05,0.0,0.0,0.0,0.0,0.0,0.00011719104435521276,9.458600223486157e-05,0.0001278429650841712,0.0,0.0 +97476,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock 90.1-2004,gen5_led,50001_100000,NaturalGas,56478.0,,7256.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005032082675815432,0.0021359659087138157,0.0,0.007168079274135546,0.003484589967860067,0.0012925848380466458,0.0023908737786225353,0.0,0.0,0.0013486240591462511,0.0012925848380466458,0.0023908737786225353,0.0,0.0,0.0021359659087138157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014271347186264207,0.0,0.0,0.0005996648969411025,0.00033180172099613183,0.0007423783688037446,0.00016071327908164334,0.00015403517859914105,0.00028491643926031824,0.0,0.0,0.00014271347186264207,0.0,0.0,0.0,0.0,0.0,0.00036088945411416666,0.00013386947701206125,0.00024761625923891526,0.0,0.0 +97477,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,6795.0,,1518.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0006054138634347828,0.0004467792884819571,0.0,0.0010522238415230374,0.0006241959024889768,0.00020236726392705215,0.00022562998550071085,0.0,0.0,0.00017741661400701977,0.00020236726392705215,0.00022562998550071085,0.0,0.0,0.0004467792884819571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.985208250116757e-05,0.0,0.0,7.214657434088423e-05,5.521550702223226e-05,0.0001019986568420518,2.1142563302309103e-05,2.4115907700298607e-05,2.6888103338276515e-05,0.0,0.0,2.985208250116757e-05,0.0,0.0,0.0,0.0,0.0,6.050722398385614e-05,1.9616728204412582e-05,2.1871729717749663e-05,0.0,0.0 +97478,50.0,the Greater Atlanta and Macon Area,G1300890021410,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,5428.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009793344601471395,0.0,0.0,0.000979334460147139,0.0004805280984253762,0.0003003093847474253,0.0001556547127773766,0.0,4.275955712322194e-05,0.0004805280984253762,0.0003003093847474253,0.0001556547127773766,0.0,4.275955712322194e-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.00011670805254234471,4.0501958986552844e-05,0.00011670805254234471,5.7264908814375704e-05,3.5788103942340476e-05,1.8549493698563698e-05,0.0,5.095689820487476e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.7264908814375724e-05,3.578810394234049e-05,1.8549493698563704e-05,0.0,5.095689820487479e-06 +97479,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302670950400,ComStock 90.1-2004,gen3_t5_cfl,10001_25000,Electricity,37551.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033112994371042657,0.0,0.0,0.0033112994371042657,0.0022325506794730722,0.0006378152145933505,0.00044087279583896773,0.0,0.0,0.0022325506794730722,0.0006378152145933505,0.00044087279583896773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003946014973752665,0.0001074088966430266,0.0003946014973752665,0.00026604898101775115,7.60072725248188e-05,5.253800470011643e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026604898101775115,7.60072725248188e-05,5.253800470011643e-05,0.0,0.0 +97480,50.0,the Greater Atlanta and Macon Area,G1301210009602,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,924782.0,,105780.0,,9.525004485617233,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.2423874269756705,0.09159617097078598,0.0,0.33398368822607977,0.17914023133272797,0.02330261522841936,0.0872617559801165,0.0006639163491987941,0.04361525961524028,0.1405809917365969,0.02330261522841936,0.05608639648795883,0.0006639163491987941,0.0217535974531198,0.03855923959613105,0.031175359492157675,0.021861662162120474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006119923103225368,0.0,0.0,0.028884847512247222,0.015675483966373003,0.03500477061547259,0.016752768739278192,0.0027769282256419367,0.006683708929460026,7.91176454437958e-05,0.00259233473087383,0.0025763039955286884,0.0020829560972397366,0.0014606690424159865,0.0,0.0,0.0,0.018775655598964585,0.0024423429334048006,0.009145889033717183,6.958495378922229e-05,0.0045713075577879445 +97481,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,83303.0,,5251.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006734252225741708,0.0015298878300801213,0.0,0.00826414005582183,0.005832399311235982,0.0019067938255031835,0.0005249772926821024,0.0,0.0,0.004302511481155858,0.0019067938255031835,0.0005249772926821024,0.0,0.0,0.0015298878300801213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010221865853212056,0.0,0.0,0.0008025063431357899,0.00029608561762782293,0.0009047250016679104,0.0005127210326105434,0.00022722851605842933,6.256041402328671e-05,0.0,0.0,0.00010221865853212056,0.0,0.0,0.0,0.0,0.0,0.0006385077504668631,0.00020874816197523572,5.7472414406001696e-05,0.0,0.0 +97482,50.0,the Greater Atlanta and Macon Area,G1300670030104,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,3048.0,,466.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00025343476880642957,0.00013721322975702915,0.0,0.0003906786881697564,0.00017815316455816466,0.0001211932552696283,9.13322683419635e-05,0.0,0.0,4.0939934801135515e-05,0.0001211932552696283,9.13322683419635e-05,0.0,0.0,0.00013721322975702915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.16785361329245e-06,0.0,0.0,3.0203050500607018e-05,2.001654621205383e-05,3.937090411389947e-05,4.879010579778369e-06,1.4443187990663252e-05,1.0884509359385627e-05,0.0,0.0,9.16785361329245e-06,0.0,0.0,0.0,0.0,0.0,1.795350340779155e-05,1.2213330742010134e-05,9.204069964097789e-06,0.0,0.0 +97483,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Propane,53221.0,,4609.0,23436.0,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011081524441593079,0.0031704530387161017,0.005215691452168282,0.019467668932477464,0.007230377157967812,0.0011173971484232203,0.005528892565593456,0.0003753106083246927,0.005215691452168282,0.007230377157967812,0.0011173971484232203,0.002358439526877354,0.0003753106083246927,0.0,0.0,0.0031704530387161017,0.0,0.0,0.0,0.0,0.0,0.0,0.005215691452168282,0.0,0.00021183258255880912,0.0,0.00042063635753872205,0.0013205650773691444,0.0010508107708765032,0.0019530340174666757,0.0008616308722996609,0.00013315818230036225,0.00028105094138415355,4.4725081384967636e-05,0.0,0.0,0.00021183258255880912,0.0,0.0,0.00042063635753872205,0.0,0.0007253653530683961,0.0001120994326264766,0.0005546691438494917,3.765188260169141e-05,0.0005232482053206197 +97484,50.0,the Greater Atlanta and Macon Area,G1301510070104,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,NaturalGas,4326.0,,639.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.00025963406927856554,0.00018797383857342952,0.0,0.0004476079078519951,0.00027040612108905924,0.00010744431164825745,6.978816472097613e-05,0.0,0.0,8.243228251562969e-05,0.00010744431164825745,6.978816472097613e-05,0.0,0.0,0.00018797383857342952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2559185166491172e-05,0.0,0.0,3.094189912812373e-05,2.219196937522559e-05,4.3501084294614904e-05,9.82387010143503e-06,1.280467953280865e-05,8.317006928765174e-06,0.0,0.0,1.2559185166491174e-05,0.0,0.0,0.0,0.0,0.0,2.62796060143882e-05,1.044204978508377e-05,6.782411085769921e-06,0.0,0.0 +97485,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,32710.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.002884398497006664,0.0,0.0,0.002884398497006664,0.0017571734746728185,0.0007642908826521491,0.0003629037660822588,0.0,0.0,0.0017571734746728185,0.0007642908826521491,0.0003629037660822588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034372877414825636,0.00011198365428075932,0.00034372877414825636,0.00020939932018475344,9.107922100893576e-05,4.3246613385318306e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020939932018475344,9.107922100893576e-05,4.3246613385318306e-05,0.0,0.0 +97486,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,107877.0,,6505.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005143240971090338,0.0011062149793585143,0.0,0.0062494559504488525,0.003210808879918782,0.0011280765149894395,0.0010112688939541317,0.0,0.000899283931225078,0.0028160955739855663,0.0011280765149894395,0.0010112688939541317,0.0,0.00018778225779977924,0.00039471330593321543,0.0,0.0007115016734252989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.39109198205744e-05,0.0,0.0,0.0006129093449287513,0.00024021374357314435,0.0006868202647493256,0.00033558826102257167,0.00013443053547714903,0.00012051081386701043,0.0,2.237762167167241e-05,2.6372471943800023e-05,0.0,4.753844787677438e-05,0.0,0.0,0.0,0.00035287049343981963,0.00012397652160855638,0.00011113926955968853,0.0,9.883203156019707e-05 +97487,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,49041.0,,7314.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004369524765454327,0.002152937260996445,0.0,0.0065224620264507744,0.0029813111141840385,0.0014462783863855415,0.002094872525881192,0.0,0.0,0.0008283738531875936,0.0014462783863855415,0.002094872525881192,0.0,0.0,0.002152937260996445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014384709425411106,0.0,0.0,0.0005207072733582455,0.00029456074864952147,0.0006645543676123566,9.871560720396242e-05,0.0001723500187127272,0.0002496416474415558,0.0,0.0,0.00014384709425411106,0.0,0.0,0.0,0.0,0.0,0.0003037569730736119,0.00014735702784595073,0.00021344036669279374,0.0,0.0 +97488,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8694.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006451959992567242,0.0,0.0,0.0006451959992567242,0.00042684019289872634,0.0001605852202273939,5.7770586130603956e-05,0.0,0.0,0.00042684019289872634,0.0001605852202273939,5.7770586130603956e-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,7.688525812965184e-05,2.285575114676931e-05,7.688525812965184e-05,5.086472707353344e-05,1.913625646038364e-05,6.88427459573476e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.086472707353344e-05,1.913625646038364e-05,6.88427459573476e-06,0.0,0.0 +97489,50.0,the Greater Atlanta and Macon Area,G1300630040411,ComStock 90.1-2004,gen1_t12_incandescent,_1000,NaturalGas,6349.0,,296.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00026863270587521997,5.040741751721011e-05,0.0,0.00031904012339243015,0.00018379292648026735,7.824408494669302e-05,1.695022551757048e-05,0.0,4.007061680931933e-05,0.00014565491906573378,7.824408494669302e-05,1.695022551757048e-05,0.0,2.7801206706642793e-05,3.813800741453357e-05,0.0,1.226941010267654e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367989418194705e-06,0.0,0.0,3.2013234058179244e-05,1.3484853808374269e-05,3.538122347637395e-05,1.7357845540752594e-05,9.324427555854071e-06,2.019975695308519e-06,0.0,3.3130982115520466e-06,2.5482044454930743e-06,0.0,8.197849727016307e-07,0.0,0.0,0.0,2.0382447624546644e-05,8.677189018630556e-06,1.8797626788603698e-06,0.0,4.4437904332891585e-06 +97490,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,60298.0,,7398.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004972422081172698,0.0021777651524912873,0.0,0.007150187233663985,0.0035659174245489794,0.0014624824985107283,0.0021217873106042775,0.0,0.0,0.0013881522720576923,0.0014624824985107283,0.0021217873106042775,0.0,0.0,0.0021777651524912873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014550478925375894,0.0,0.0,0.0005925547562414609,0.00029937184504273613,0.0007380595454952199,0.00016542365426089973,0.00017428145605210727,0.00025284964592845393,0.0,0.0,0.00014550478925375894,0.0,0.0,0.0,0.0,0.0,0.0003680825840818514,0.00015096096547844148,0.00021901599593492695,0.0,0.0 +97491,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300830040101,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,122410.0,,5577.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006301104493265466,0.0009484502234428843,0.0,0.00724953698634693,0.002797620537385872,0.002405566785665664,0.0013480216484051946,0.0,0.0006983457452516196,0.0024066306073508674,0.002405566785665664,0.0013480216484051946,0.0,0.00014088545184373955,0.00039098993003500437,0.0,0.0005574602934078801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.336968118786841e-05,0.0,0.0,0.0007508896752497998,0.0002842414651044773,0.0008142593564376682,0.00028679322444681566,0.0002866664510024806,0.00016064096998907388,0.0,1.67890298114296e-05,2.6123571487014647e-05,0.0,3.724610970085378e-05,0.0,0.0,0.0,0.00031422540537675236,0.00027019039511804436,0.00015140818537261687,0.0,7.843736202332348e-05 +97492,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,58897.0,,5229.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002861733524280783,0.0008893194681070085,0.0,0.0037510529923877917,0.002085870638900692,0.0008130434532779413,0.0005043046698705619,0.0,0.00034783423033859584,0.0014698292313609575,0.0008130434532779413,0.0005043046698705619,0.0,7.455616977132204e-05,0.0006160414075397346,0.0,0.0002732780605672738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.94190666786605e-05,0.0,0.0,0.0003410265706650851,0.00015212526458131275,0.0004004456373437455,0.00017515635819386808,9.688862303933719e-05,6.0096892557306956e-05,0.0,8.884696874572857e-06,4.116024306690974e-05,0.0,1.825882361175075e-05,0.0,0.0,0.0,0.00022267821838461527,8.679688196801296e-05,5.383731057694071e-05,0.0,3.7133226414176516e-05 +97493,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen5_led,_1000,Electricity,6229.0,,140.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,4088.1751280535877,0.0,0.0,0.0005701830558061982,5.203913312590718e-05,0.0,0.0006222221889321055,0.0004013561734312335,5.8355126200756686e-05,0.0001427879416001251,0.0,1.972294769999014e-05,0.00036900123958154437,5.8355126200756686e-05,0.00012310374232390702,0.0,1.972294769999014e-05,3.235493384968913e-05,1.9684199276218055e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4767683886819848e-06,0.0,0.0,6.79465849758843e-05,2.3625298025142313e-05,7.142335336456628e-05,4.397249940369325e-05,6.953962417511504e-06,1.4669813147698568e-05,0.0,2.3503100069809796e-06,2.1616542103867892e-06,1.3151141782951962e-06,0.0,0.0,0.0,0.0,4.6070687143490936e-05,6.6984412857788526e-06,1.639027632011625e-05,0.0,2.2639486151802366e-06 +97494,50.0,the Greater Atlanta and Macon Area,G1301210011419,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,132595.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,215998.51729091106,0.0,0.0,0.023217307966081624,0.0,0.0,0.023217307966081624,0.011035063263325156,0.003620666875890389,0.008474882727364965,0.0,8.669509950111486e-05,0.011035063263325156,0.003620666875890389,0.008474882727364965,0.0,8.669509950111486e-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.0027667634906425103,0.0009803692159581876,0.0027667634906425103,0.0013150280040434515,0.00043146815033969074,0.0010099360421891117,0.0,1.0331294070256769e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0013150280040434515,0.00043146815033969074,0.0010099360421891117,0.0,1.0331294070256769e-05 +97495,50.0,the Greater Atlanta and Macon Area,G1300630040524,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,65332.0,,2748.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0033629531112642557,0.0004673900573940119,0.0,0.003830360899019688,0.0015379315495753802,0.0008119619012313181,0.0011654166561400707,0.0,0.0003150330617114982,0.0013133765221904114,0.0008119619012313181,0.0011654166561400707,0.0,7.219803170245502e-05,0.00022455502738496876,0.0,0.00024283503000904319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1228659612932904e-05,0.0,0.0,0.00040075745474380176,0.00013133089946606758,0.0004319861143567346,0.00015651286673914498,9.676013138466617e-05,0.00013888073885607831,0.0,8.60371776391223e-06,1.500364075709553e-05,0.0,1.6225018855837378e-05,0.0,0.0,0.0,0.00017344712202386272,9.157264183863031e-05,0.0001314350856655349,0.0,3.552926520774721e-05 +97496,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,11435.0,,1178.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0010188028602648393,0.00034666979273885066,0.0,0.00136547265300369,0.0005198205514704898,0.00036311942171441937,0.00048253267981878084,0.0,0.0,0.0001731507587316391,0.00036311942171441937,0.00048253267981878084,0.0,0.0,0.00034666979273885066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3162119067698778e-05,0.0,0.0,0.00012141057909623003,6.062461387092527e-05,0.00014457269816392878,2.0634349105670085e-05,4.3272885256697715e-05,5.750334473386224e-05,0.0,0.0,2.3162119067698778e-05,0.0,0.0,0.0,0.0,0.0,5.503724993820659e-05,3.844614129583543e-05,5.108930692988678e-05,0.0,0.0 +97497,50.0,the Greater Atlanta and Macon Area,G1301350050608,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,7304.0,,940.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017538034986420137,0.0007459350980548136,0.0,0.0024997385966968274,0.001719728184261419,0.0005921826479734412,0.00014564715685492038,0.0,4.2097900533307484e-05,0.0009737930862066056,0.0005921826479734412,0.00014564715685492038,0.0,4.2097900533307484e-05,0.0007459350980548136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.983977291477636e-05,0.0,0.0,0.00020899426589045006,0.00011773306442903534,0.0002588340388052264,0.00011604331462363402,7.056821239215386e-05,1.735623212605907e-05,0.0,5.016650853017642e-06,4.9839772914776366e-05,0.0,0.0,0.0,0.0,0.0,0.00017806829568809792,6.131722200388502e-05,1.508095362413988e-05,0.0,4.359003631281771e-06 +97498,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,8072.0,,38.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0019380748589331908,3.0353496062325822e-05,0.0,0.0019684283549955164,0.0014295917695839287,0.00022918130133162088,0.0002792190809439018,0.0,3.0353496062325822e-05,0.0014295917695839287,0.00022918130133162088,0.0002792190809439018,0.0,0.0,0.0,0.0,3.0353496062325822e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0275636642789332e-06,0.0,0.0,0.00023096081551865589,7.867106847021469e-05,0.0002329883791829348,0.00017036477174241314,2.7311587069611044e-05,3.3274600486108564e-05,0.0,0.0,0.0,0.0,2.0275636642789332e-06,0.0,0.0,0.0,0.0001692102577385306,2.7126504147727414e-05,3.3049107904268394e-05,0.0,3.592719964711642e-06 +97499,50.0,the Greater Atlanta and Macon Area,G1300670030409,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,133439.0,,7632.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,140298.9118897092,0.0,0.0,0.007384270002777912,0.0012979688381163854,0.0,0.008682238840894297,0.005667705061895499,0.0024832257686854954,0.0003819829064336177,0.0,0.00014932510387968468,0.004519061327658798,0.0024832257686854954,0.0003819829064336177,0.0,0.0,0.0011486437342367007,0.0,0.00014932510387968468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.672229710548419e-05,0.0,0.0,0.0008799689944786144,0.00029083152853272537,0.0009666912915840987,0.0005385276880437907,0.0002959211515710445,4.552015486377912e-05,0.0,0.0,7.674531180069514e-05,0.0,9.976985304789058e-06,0.0,0.0,0.0,0.0006310493441847251,0.0002764854514619915,4.253045279566704e-05,0.0,1.6626043141714982e-05 +97500,50.0,the Greater Atlanta and Macon Area,G1300630040204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4904.0,,,,9.325022323477118,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,27975.06697043135,0.0,0.0,0.0015276317878218388,0.0,0.0,0.0015276317878218388,0.000786177085898823,0.0004918578395758235,0.00019232392792758166,0.0,5.727293441961071e-05,0.000786177085898823,0.0004918578395758235,0.00019232392792758166,0.0,5.727293441961071e-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.0001820499812472958,6.37803961269589e-05,0.0001820499812472958,9.368980462825135e-05,5.861537523959739e-05,2.2919507011925233e-05,0.0,6.825294367521851e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.368980462825135e-05,5.861537523959739e-05,2.2919507011925233e-05,0.0,6.825294367521851e-06 +97501,85.0,Rural Climate Zone 3A,G1301330950302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,93989.0,,3.0,,9.325022323477118,Office,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,349688.3371303919,0.0,0.0,0.026044513390685753,2.2979881094288246e-06,0.0,0.026046811378795182,0.017794205772887938,0.00434302075850437,0.0036228666386725976,0.0,0.00028671820873027334,0.01779190778477851,0.00434302075850437,0.0036228666386725976,0.0,0.00028671820873027334,2.2979881094288246e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5471348372260235e-07,0.0,0.0,0.0031036712658624194,0.0011295348958987616,0.0031038259793461417,0.0021202251748055024,0.0005175488799892341,0.00043172958994584044,0.0,3.416762112184206e-05,1.5471348372260235e-07,0.0,0.0,0.0,0.0,0.0,0.0021204176341017983,0.0005175290158571793,0.0004317130196586303,0.0,3.41663097285337e-05 +97502,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,53954.0,,11495.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0025799448902318832,0.0019548787287293414,0.0,0.0045348236189612255,0.0017411037610877652,0.0005104216445604801,0.0016162288256063332,0.0,0.0006671048484294866,0.0015870978417931868,0.0005104216445604801,0.0003651390630845674,0.0,0.00011732180151648938,0.00015400591929457864,0.0012510897625217657,0.0005497830469129972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001306133475281439,0.0,0.0,0.0003074479176283851,0.00020846086590971429,0.000438061265156529,0.00018913191842945254,6.082613327390524e-05,4.3513039761108944e-05,0.0,1.398105196170039e-05,1.0289757805738084e-05,8.359036268575761e-05,3.673322703664822e-05,0.0,0.0,0.0,0.0001681895880496469,4.9306427364568225e-05,0.00015612674353357583,0.0,6.444193169347919e-05 +97503,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,38894.0,,2153.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0034654089639240032,0.0006337096804412647,0.0,0.004099149333971565,0.0015659371613402845,0.0013781167707983437,0.0011550647122266396,0.0,0.0,0.0009322274808990198,0.0013781167707983437,0.0011550647122266396,0.0,0.0,0.0006337096804412647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2341170016577185e-05,0.0,0.0,0.0004129677401857229,0.00014319119191996473,0.00045530891020230017,0.00011109219146532457,0.00016422816887511193,0.0001376473798452864,0.0,0.0,4.2341170016577185e-05,0.0,0.0,0.0,0.0,0.0,0.0001739349031435102,0.00015307294121821318,0.00012829765702326886,0.0,0.0 +97504,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,28908.0,,2802.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0024689174474375936,0.0008248138588570599,0.0,0.0032937313062946535,0.0015280968767752167,0.0006913140714620529,0.0010743510476636812,0.0,0.0,0.0007032830179181569,0.0006913140714620529,0.0010743510476636812,0.0,0.0,0.0008248138588570599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.510870984994771e-05,0.0,0.0,0.00029421755165842916,0.00014609555661200684,0.00034932626150837687,8.38092856727894e-05,8.23829625181207e-05,0.00012802896070637714,0.0,0.0,5.510870984994772e-05,0.0,0.0,0.0,0.0,0.0,0.00016206676244852127,7.331932621536373e-05,0.00011394342772002299,0.0,0.0 +97505,50.0,the Greater Atlanta and Macon Area,G1300570090803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,103724.0,,12497.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005339214655866181,0.002125178850168949,0.0,0.0074644112363965506,0.0033203647831332884,0.0016429662106277729,0.0012088737719806201,0.0,0.0012922242010162883,0.0026969652756042317,0.0016429662106277729,0.0008041605422064948,0.0,0.00019514035778910117,0.0006233995075290565,0.0004047132297741253,0.001097083843227187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001419921492569007,0.0,0.0,0.0006362648809904786,0.0002885354699126678,0.0007782570302473793,0.0003213926393149285,0.00019578941246123553,9.583040665392535e-05,0.0,2.325453545657816e-05,4.16519465703826e-05,2.7040595347427568e-05,7.330079197920914e-05,0.0,0.0,0.0,0.00034618902330289765,0.00017129951223014743,0.0001260400160079824,0.0,0.00013473032731543645 +97506,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,43006.0,,14252.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002213759735823533,0.002423669484675538,0.0,0.00463741149013765,0.0013444401153983438,0.0006051726959892422,0.00219273152717935,0.0,0.0004950848819321343,0.001034566588860081,0.0006051726959892422,0.00047366660533671064,0.0,0.00010035384563749887,0.0003098735265382628,0.0017190649218426393,0.0003947310362946355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016193492157120823,0.0,0.0,0.0002638093021489533,0.00023188061338947206,0.00042574422372016157,0.0001232872228260444,7.211721490143183e-05,5.6445898162772515e-05,0.0,1.1958966258704566e-05,2.0703873005062373e-05,0.000114857510504024,2.637353806212185e-05,0.0,0.0,0.0,0.00012342825614802675,5.555874871542391e-05,0.00020130686781862154,0.0,4.5451978799390066e-05 +97507,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,58006.0,,4504.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002985899245305412,0.0007658806919006008,0.0,0.0037517622068445936,0.0016219202716221705,0.0007185938179933201,0.0007531148316781628,0.0,0.00065815101591236,0.0016219202716221705,0.0007185938179933201,0.0005252264963462242,0.0,0.00012015865934369781,0.0,0.0002278883353319387,0.0005379923565686622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.117155236627096e-05,0.0,0.0,0.00035582301241574634,0.00015553166620674815,0.0004069945647820173,0.00019328065334225168,8.5633236762335e-05,6.25900805006452e-05,0.0,1.4319041810514545e-05,0.0,1.522613118260211e-05,3.594542118366886e-05,0.0,0.0,0.0,0.00017594738116816366,7.795370870671868e-05,8.169857956097071e-05,0.0,7.139681875184182e-05 +97508,81.0,the Columbus-Albany Area,G1303210950500,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11333.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0024225728968980537,0.0,0.0,0.0024225728968980537,0.0012059518421928418,0.0003615953263882521,0.0007931608371599581,0.0,6.178218408326264e-05,0.0012059518421928418,0.0003615953263882521,0.0007931608371599581,0.0,6.178218408326264e-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.00028868974051218343,7.397088346913471e-05,0.00028868974051218343,0.00014370916344297387,4.309008041785074e-05,9.451826880310809e-05,0.0,7.362371928667544e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014370916344297387,4.309008041785074e-05,9.451826880310809e-05,0.0,7.362371928667544e-06 +97509,50.0,the Greater Atlanta and Macon Area,G1300150960803,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,48365.0,,2830.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005057125394554359,0.0008331614317700352,0.0,0.005890286826324392,0.0017247558739308965,0.001505386568114917,0.0026601750738848777,0.0,0.0,0.0008915944421608612,0.001505386568114917,0.0026601750738848777,0.0,0.0,0.0008331614317700352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.566716285384751e-05,0.0,0.0,0.0006026492100326769,0.00025927004231575445,0.0006583163728865244,0.0001062498246170377,0.00017939440992409934,0.00031700863272080514,0.0,0.0,5.566716285384751e-05,0.0,0.0,0.0,0.0,0.0,0.0001927639628628136,0.00016824658196346498,0.00029730925802399794,0.0,0.0 +97510,35.0,Eastern Counties in South Carolina and Georgia,G1301910110300,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,251116.0,,3007.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.012894476264179082,0.0005114322751614231,0.0,0.013405926269701926,0.005986408308420948,0.003050065423284583,0.0018744892700508226,0.0,0.00249494553758415,0.005850629200666184,0.003050065423284583,0.0014988361026441637,0.0,0.00249494553758415,0.00013577910775476436,0.00037565316740665873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.417150214373724e-05,0.0,0.0,0.001536610355056465,0.0004226056585846139,0.0015707818572002024,0.0006972084192604264,0.0003634705293179389,0.0001786134642981658,0.0,0.0002973179421799337,9.072122149999644e-06,2.509937999373759e-05,0.0,0.0,0.0,0.0,0.0007014316930798141,0.0003573783216305578,0.0002196352327825946,0.0,0.00029233453222825506 +97511,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,46665.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0040069763586265345,0.0,0.0,0.0040069763586265345,0.0024017923755402255,0.0013773212401042942,0.0002278931165814519,0.0,0.0,0.0024017923755402255,0.0013773212401042942,0.0002278931165814519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004775037493569987,0.00014752950138096255,0.0004775037493569987,0.00028621702796634903,0.0001641327518199439,2.7157589134764676e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028621702796634903,0.0001641327518199439,2.7157589134764676e-05,0.0,0.0 +97512,50.0,the Greater Atlanta and Macon Area,G1300590150500,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,282645.0,,11804.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.013906560754758534,0.002007360598532698,0.0,0.015913921353291234,0.0069204437480293295,0.003281074302226451,0.003286872130410809,0.0,0.0024255489029860636,0.006221122832899608,0.003281074302226451,0.0019788147166464134,0.0,0.0024255489029860636,0.0006993209151297226,0.0013080574137643954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013412061717520146,0.0,0.0,0.0016572180145727126,0.0006286127029929761,0.0017913386317479141,0.0007413592052961818,0.00039099929426768477,0.00023581153196385507,0.0,0.0002890479830449913,4.672471543442884e-05,8.73970863844376e-05,0.0,0.0,0.0,0.0,0.000778994564537006,0.00036933167009764163,0.0003699842982825063,0.0,0.0002730300946356068 +97513,50.0,the Greater Atlanta and Macon Area,G1300890021409,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,29013.0,,6238.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.002501873385687618,0.0018173739487584422,0.0,0.004319277708045499,0.0032645544675695653,0.0008611826648585773,0.00019347982841847911,0.0,0.0,0.0014471805188111234,0.0008611826648585773,0.00019347982841847911,0.0,0.0,0.0018173739487584422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012142664618884062,0.0,0.0,0.0002981449416978241,0.00021716775810910722,0.0004195715878866647,0.00017245858798269423,0.00010262599893114489,2.3056735202320496e-05,0.0,0.0,0.00012142664618884062,0.0,0.0,0.0,0.0,0.0,0.0003171165167614268,8.365467621638198e-05,1.87944939688341e-05,0.0,0.0 +97514,50.0,the Greater Atlanta and Macon Area,G1300970080603,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,43316.0,,3686.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0022297170611015804,0.0006268214672831268,0.0,0.0028565385283847067,0.0011690336498697616,0.000549676664744477,0.0006205803800632681,0.0,0.0005172301033457803,0.0009601877227029596,0.000549676664744477,0.0006205803800632681,0.0,9.927229359087566e-05,0.00020884592716680195,0.0,0.0004179578097549047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.188010589973927e-05,0.0,0.0,0.00026571109519292886,0.00010573763566663883,0.00030759120109266814,0.00011442372480397164,6.550391129854545e-05,7.395337072964291e-05,0.0,1.1830088360768855e-05,1.3953717291121793e-05,0.0,2.79252039819691e-05,0.0,0.0,0.0,0.00012588118833619259,5.9189016301129045e-05,6.682390683039214e-05,0.0,5.569518042502213e-05 +97515,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7139.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016675400207319163,0.0,0.0,0.0016675400207319163,0.001016635350403567,0.00025448966589584893,0.0003524148412031889,0.0,4.4000163229311556e-05,0.001016635350403567,0.00025448966589584893,0.0003524148412031889,0.0,4.4000163229311556e-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.0001987173013872248,6.130390897931389e-05,0.0001987173013872248,0.00012115033571331056,3.0327008053193664e-05,4.199654901353858e-05,0.0,5.243408607182006e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012115033571331056,3.0327008053193664e-05,4.199654901353858e-05,0.0,5.243408607182006e-06 +97516,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,Electricity,178110.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.015418642341603664,0.0,0.0,0.015418642341603664,0.005052583332822299,0.0039698233330330455,0.006396266365354619,0.0,0.0,0.005052583332822299,0.0039698233330330455,0.006396266365354619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018374112782638327,0.000638793852186432,0.0018374112782638327,0.0006021070723617277,0.00047307655260593986,0.0007622313105201601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006021070723617277,0.00047307655260593986,0.0007622313105201601,0.0,0.0 +97517,50.0,the Greater Atlanta and Macon Area,G1301210010400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,94123.0,,21531.0,,9.525004485617233,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,357187.66821064625,0.0,0.0,0.02486616802305818,0.018643554712631735,0.0,0.04350972273568992,0.022126903695156377,0.0028996912183731393,0.01297886947373759,0.000641888121131823,0.004862370227290977,0.013755996470460899,0.0028996912183731393,0.004964115362665882,0.000641888121131823,0.0026043865708032105,0.008370907224695481,0.008014754111071708,0.002257983656487767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001245654436680856,0.0,0.0,0.002963252867636666,0.0021504798068520846,0.004208907304317522,0.0016392753379006531,0.0003455505613143648,0.0005915639703736625,7.649255863959443e-05,0.0003103596809613249,0.0005592955787782726,0.0005354994887642493,0.0001508654011003147,0.0,0.0,0.0,0.0021404431177420905,0.0002805012485006027,0.0012555092309284891,6.209296294527492e-05,0.00047036074420106353 +97518,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Propane,6604.0,,,4752.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005009821491262786,0.0,0.0004478890973090883,0.0009488712464353668,0.0007571227131848396,0.00014576290370177099,4.595525594931852e-05,0.0,0.0,0.0003092336158757513,0.00014576290370177099,4.595525594931852e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004478890973090883,0.0,0.0,0.0,0.0,3.612152314031828e-05,5.970007736716597e-05,5.224238574028904e-05,9.582160050748426e-05,3.685015688584435e-05,1.7369993408817114e-05,5.476307569814607e-06,0.0,0.0,0.0,0.0,0.0,3.612152314031828e-05,0.0,0.0,7.645790767765877e-05,1.4719841896140109e-05,4.640783660941861e-06,0.0,0.0 +97519,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,33201.0,,7453.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0019440454779016895,0.0012674194253896344,0.0,0.0032114649032913244,0.0012385189362749483,0.0005071769884206104,0.0012238204666577246,0.0,0.00024194851193804057,0.0010172440257526893,0.0005071769884206104,0.00017767595179034914,0.0,0.00024194851193804057,0.00022127491052225897,0.0010461445148673755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.46816679952462e-05,0.0,0.0,0.00023166776858768323,0.0001476286372194951,0.0003163494365829294,0.00012122280894870856,6.043920398057985e-05,2.1173265621023974e-05,0.0,2.883249003737084e-05,1.4784315383806957e-05,6.989735261143925e-05,0.0,0.0,0.0,0.0,0.00012200188371553468,4.996011457894249e-05,0.00012055399226348283,0.0,2.3833446024969386e-05 +97520,50.0,the Greater Atlanta and Macon Area,G1300890021502,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,73560.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0061380440179657466,0.0,0.0,0.006138044017965748,0.0022525250334324916,0.001575358870473679,0.002310129424453279,0.0,0.0,0.0022525250334324916,0.001575358870473679,0.002310129424453279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007314570884774302,0.00023760497301909697,0.0007314570884774302,0.00026842841104666884,0.00018773202168818345,0.0002752929985302798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002684284110466688,0.0001877320216881834,0.00027529299853027973,0.0,0.0 +97521,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Propane,40155.0,,759.0,5117.0,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.0045172912433494115,0.00028220477033207887,0.0006153249695006747,0.005414782234758392,0.0023006876614674156,0.0008287900360610787,0.0021344181750614084,0.0,0.00015092511059226245,0.0018362878025590034,0.0008287900360610787,0.0018522134047293294,0.0,0.0,0.0,0.00028220477033207887,0.0,0.0,0.0,0.0,0.0,0.00046439985890841227,0.00015092511059226245,0.0,1.885447642917762e-05,0.0,4.9625075798028614e-05,0.0005383149918155513,0.00019403215005375294,0.0006067945440427574,0.00021882610621151979,9.876496277185474e-05,0.00022072392283217676,0.0,0.0,0.0,1.885447642917762e-05,0.0,3.7453182206509634e-05,1.2171893591518981e-05,0.0,0.00025782102769774816,9.287636145561492e-05,0.00023918843772130965,0.0,1.6913059416972277e-05 +97522,50.0,the Greater Atlanta and Macon Area,G1300770170503,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,72670.0,,7564.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003740698461318481,0.001286408642470511,0.0,0.0050271071037889924,0.0022451956666212866,0.0005131166594963282,0.0015242437105590994,0.0,0.0007445510671122773,0.0022451956666212866,0.0005131166594963282,0.0008528481146659599,0.0,0.00012953802053490579,0.0,0.0006713955958931395,0.0006150130465773716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.595040629557687e-05,0.0,0.0,0.0004457726563835268,0.00022696565762986276,0.0005317230626791036,0.0002675561387158126,6.114723726159374e-05,0.00010163245540842849,0.0,1.543682499769191e-05,0.0,4.485878153092331e-05,4.109162476465357e-05,0.0,0.0,0.0,0.0002374770004939667,5.4272955810593045e-05,0.00016122105961040298,0.0,7.875204676414074e-05 +97523,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,19557.0,,1977.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005709741614034881,0.0015329587254131487,0.0,0.007242700339448031,0.0029437368076097527,0.000726857579002996,0.002343102910976728,0.0004084278152791337,0.000820494365796351,0.0029437368076097527,0.000726857579002996,0.0016306385513599306,0.0004084278152791337,0.0,0.0,0.0007124643596167978,0.000820494365796351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010242343074485694,0.0,0.0,0.0006804182115805655,0.00029980943510893337,0.0007828416423254224,0.00035079908503640294,8.661812870188784e-05,0.0001943198557572889,4.867150607111308e-05,0.0,0.0,4.760274545273418e-05,5.482068529212277e-05,0.0,0.0,0.0,0.0003181796359144468,7.856384417621103e-05,0.0002532589289903289,4.414573110847056e-05,8.868476213772535e-05 +97524,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,63883.0,,1889.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005518881210909594,0.0005559115284765881,0.0,0.0060747927393861815,0.0015864685079534477,0.0018014492000688557,0.002686875031363879,0.0,0.0,0.0010305569794768594,0.0018014492000688557,0.002686875031363879,0.0,0.0,0.0005559115284765881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7143663730245895e-05,0.0,0.0,0.0006576744348010859,0.0002360758708791084,0.0006948180985313319,0.00012280948857314704,0.00021467522840247646,0.0003201897178254624,0.0,0.0,3.7143663730245895e-05,0.0,0.0,0.0,0.0,0.0,0.00018145590794056205,0.00020604480868578658,0.0003073173819049833,0.0,0.0 +97525,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,91872.0,,8290.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.00824718721077537,0.002440345423974432,0.0,0.010687532634749804,0.003718966491155623,0.0027249915223856256,0.004243574621208555,0.0,0.0,0.001278621067181191,0.0027249915223856256,0.004243574621208555,0.0,0.0,0.002440345423974432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016304880535820246,0.0,0.0,0.0009828014455948368,0.00042684308237596775,0.0011458502509530393,0.00015237081456715757,0.00032473200122523714,0.0005056986298024421,0.0,0.0,0.00016304880535820246,0.0,0.0,0.0,0.0,0.0,0.0003987242736757616,0.0002921565085675708,0.0004549694687097068,0.0,0.0 +97526,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,104662.0,,7322.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008851281421139353,0.0021552696710750705,0.0,0.011006551092214423,0.004065574904681878,0.002697401566323991,0.004243574621208555,0.0,0.0,0.0019103052336068077,0.002697401566323991,0.004243574621208555,0.0,0.0,0.0021552696710750705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001440023714561037,0.0,0.0,0.0010547888868301968,0.0004167273863364709,0.0011987912582863004,0.00022764712079425143,0.00032144376165487164,0.0005056980043810738,0.0,0.0,0.0001440023714561037,0.0,0.0,0.0,0.0,0.0,0.00044280679886075306,0.0002937906153076693,0.0004621938441178781,0.0,0.0 +97527,50.0,the Greater Atlanta and Macon Area,G1300450910300,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,35931.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0031684523989485196,0.0,0.0,0.0031684523989485196,0.0020832036910376464,0.0009131822670960085,0.00017206644081486412,0.0,0.0,0.0020832036910376464,0.0009131822670960085,0.00017206644081486412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037757825477058424,0.0001015336825514106,0.00037757825477058424,0.00024825129588649185,0.00010882213878674042,2.050482009735189e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024825129588649185,0.00010882213878674042,2.050482009735189e-05,0.0,0.0 +97528,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,2719.0,,676.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00024226375211406576,0.0001991141656594956,0.0,0.00044137791777356137,0.0002469285722713166,0.00010308638755398364,9.136295794826117e-05,0.0,0.0,4.7814406611820935e-05,0.00010308638755398364,9.136295794826117e-05,0.0,0.0,0.0001991141656594956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3303749272990311e-05,0.0,0.0,2.8869920450564872e-05,2.2497299562917564e-05,4.217366972355518e-05,5.697914373192307e-06,1.2284527843102028e-05,1.0887478234270538e-05,0.0,0.0,1.3303749272990311e-05,0.0,0.0,0.0,0.0,0.0,2.3594030496156657e-05,9.849906591671662e-06,8.729732635726865e-06,0.0,0.0 +97529,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,28094.0,,1952.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025031363584595324,0.0005745401194992937,0.0,0.003077645788352528,0.0010083377045173225,0.0009142433716085659,0.0011550647122266396,0.0,0.0,0.0004337975850180289,0.0009142433716085659,0.0011550647122266396,0.0,0.0,0.0005745401194992937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.838691221884875e-05,0.0,0.0,0.0002982925895518124,0.00012497139866702694,0.0003366795017706611,5.169458888607418e-05,0.00010894812896470814,0.00013764621449629809,0.0,0.0,3.838691221884875e-05,0.0,0.0,0.0,0.0,0.0,0.00011030724759108561,0.00010001378456715489,0.00012635846961242054,0.0,0.0 +97530,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,266110.0,,1537.0,,7.614023970037612,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.04512250313069106,0.0010637419150811211,0.0,0.046186317212794904,0.03411075363296494,0.006761111858765604,0.0021818255982800233,0.0007755789933091461,0.0023569749624524714,0.03411075363296494,0.006761111858765604,0.0021818255982800233,0.0007755789933091461,0.0012932330473713497,0.0,0.0,0.0010637419150811211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.107461042612615e-05,0.0,0.0,0.005377164383385577,0.0013300451723173958,0.005448238993811702,0.004064914772001261,0.0008057090665768539,0.00026000407964624786,9.242429940655002e-05,0.00015411216575466418,0.0,0.0,7.107461042612615e-05,0.0,0.0,0.0,0.004023779103131,0.0007975555422774612,0.000257372919505102,9.148899434132674e-05,0.0002780339215769732 +97531,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,122571.0,,11908.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006851188956322605,0.00202503776886849,0.0,0.008876226725191096,0.00322343289724986,0.0031619794645679567,0.0013764611481229593,0.0,0.0011143354848888985,0.003110933754039625,0.0031619794645679567,0.0003845715392009453,0.0,0.00019368646815265682,0.00011249914321023502,0.0009918896089220139,0.0009206490167362418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013530143139724475,0.0,0.0,0.0008164429507980368,0.00037009243971619643,0.0009517443821952816,0.0003707239648588855,0.0003768069835575411,4.582864729900731e-05,0.0,2.3081242189689065e-05,7.516548748527034e-06,6.627238560107926e-05,6.15124970476385e-05,0.0,0.0,0.0,0.00034562931370761785,0.0003390400318953782,0.00014758964654633584,0.0,0.00011948348892598071 +97532,50.0,the Greater Atlanta and Macon Area,G1300210010800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,16509.0,,551.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0037056077318159296,0.00043685876349102174,0.0,0.004142466495306952,0.002646212824289141,0.0006078969919839095,0.0008025067364924998,0.0,8.58499425414011e-05,0.00229520400333952,0.0006078969919839095,0.0008025067364924998,0.0,0.0,0.0003510088209496207,0.0,8.58499425414011e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9188881945962895e-05,0.0,0.0,0.0004415906421158667,0.00016105926886678885,0.00047077952406182963,0.0002735153537487148,7.244199668671594e-05,9.5633291680436e-05,0.0,0.0,2.345278587252301e-05,0.0,5.736096073439888e-06,0.0,0.0,0.0,0.00030073455401426023,6.908576252554502e-05,9.120260595719227e-05,0.0,9.756601564832071e-06 +97533,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,70803.0,,7373.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0036472949173576427,0.0012537847774576139,0.0,0.004901079694815255,0.0021239731855923856,0.0012205226194335948,0.0008930073832823795,0.0,0.0006635942368683162,0.0016391364525610416,0.0012205226194335948,0.0006737360036005865,0.0,0.00011389984176241921,0.00048483673303134384,0.000219271379681793,0.0005496943951058969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.377061536004812e-05,0.0,0.0,0.00043464092847261685,0.0001921602893522174,0.000518411543832665,0.00019533265221957462,0.00014544726888078788,8.028778828846071e-05,0.0,1.3573219083793564e-05,3.239397399412444e-05,1.4650439801987091e-05,3.672738620368769e-05,0.0,0.0,0.0,0.00022466319398294082,0.00012910074000482233,9.445782665218166e-05,0.0,7.019165862111748e-05 +97534,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,10378.0,,1089.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0024735204543214675,0.0008641235064282838,0.0,0.003337643960749751,0.0019460147380121644,0.0007586719874106669,0.0004765581588858894,0.0,0.000156316369367291,0.0012382076009511715,0.0007586719874106669,0.0004765581588858894,0.0,0.0,0.0007078071370609928,0.0,0.000156316369367291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.773722434199649e-05,0.0,0.0,0.0002947603313236485,0.00015418667894888738,0.000352497555665645,0.00014755264387087777,9.040814923702903e-05,5.678968231808147e-05,0.0,0.0,4.729279918824713e-05,0.0,1.0444425153749365e-05,0.0,0.0,0.0,0.0002055238505081641,8.012538912454371e-05,5.033058891699782e-05,0.0,1.6508992199431768e-05 +97535,50.0,the Greater Atlanta and Macon Area,G1302170100903,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,95934.0,,5849.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004938242532351687,0.0009947264667492222,0.0,0.005932968999100909,0.002376010273178436,0.002126508627275453,0.000816305839779231,0.0,0.000614144258867789,0.0020734948466294948,0.002126508627275453,0.0006100840061025968,0.0,0.00012815505234414166,0.00030251542654894086,0.00020622183367663416,0.0004859892065236474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.646159711090754e-05,0.0,0.0,0.0005884812913944735,0.00022803608158229142,0.000654942888505381,0.0002470945720163367,0.00025341212687352596,7.270259032810127e-05,0.0,1.5272002176509517e-05,2.021224836294502e-05,1.3778493770332528e-05,3.247085497763001e-05,0.0,0.0,0.0,0.00026228875149520684,0.00023474616216441648,9.011233746372844e-05,0.0,6.779563738202925e-05 +97536,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,17022.0,,1507.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0008388943202283784,0.00025629237432686327,0.0,0.0010951866945552418,0.0004037735206188625,0.00015145274725009104,0.00036366744308670304,0.0,0.000176292983599585,0.0004037735206188625,0.00015145274725009104,0.00010737506875983978,0.0,0.000176292983599585,0.0,0.00025629237432686327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7124074943779424e-05,0.0,0.0,9.996997263637619e-05,4.4228085299747264e-05,0.00011709404758015562,4.8117178569729784e-05,1.8048431886120922e-05,1.2795750819755127e-05,0.0,2.1008611360770347e-05,0.0,1.7124074943779424e-05,0.0,0.0,0.0,0.0,4.317024309188887e-05,1.6192869472222136e-05,3.888222263459942e-05,0.0,1.8848712381445175e-05 +97537,35.0,Eastern Counties in South Carolina and Georgia,G1302450000300,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,275856.0,,6518.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012864387840849253,0.0011083958138131808,0.0,0.013972783654662431,0.007664498365021846,0.002298723627748426,0.001854152545502022,0.0,0.002155409116390139,0.006984911342152641,0.002298723627748426,0.001425361484919465,0.0,0.002155409116390139,0.0006795870228692039,0.0004287910605825569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.40562498111642e-05,0.0,0.0,0.00153302518799837,0.00048530405171794626,0.0016070814378095343,0.0008323789018124472,0.0002739346220886859,0.0001698576788431191,0.0,0.0002568560981483327,4.540586107131383e-05,2.864920410521155e-05,0.0,0.0,0.0,0.0,0.0008815332260897094,0.00026438798195919954,0.00021325558402597236,0.0,0.00024790464573465316 +97538,35.0,Eastern Counties in South Carolina and Georgia,G1301270000501,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,9827.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.0013500523397752327,0.0,0.0,0.0013500523397752327,0.0008906993377586201,0.0001465845983378422,0.0003011944987075886,0.0,1.1628498862555079e-05,0.0008906993377586201,0.0001465845983378422,0.0003011944987075886,0.0,1.1628498862555079e-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.0001608816435992678,5.398379161641912e-05,0.0001608816435992678,0.00010614193923418066,1.7468042098913585e-05,3.5892435106035844e-05,0.0,1.3857329486288989e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010614193923418066,1.7468042098913585e-05,3.5892435106035844e-05,0.0,1.3857329486288989e-06 +97539,50.0,the Greater Atlanta and Macon Area,G1301350050534,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,64537.0,,3415.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005690979832253808,0.0009947961287852475,0.0,0.006685775961039055,0.004257649674786299,0.0018977424928707336,0.0005303837933820222,0.0,0.0,0.0032628535460010517,0.0018977424928707336,0.0005303837933820222,0.0,0.0,0.0009947961287852475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.646661043512985e-05,0.0,0.0,0.0006781829890130826,0.00022089248752198853,0.0007446495994482125,0.0003888279058726844,0.0002261502788848425,6.32048042555557e-05,0.0,0.0,6.646661043512985e-05,0.0,0.0,0.0,0.0,0.0,0.0004742092979776876,0.00021136711660802075,5.907318486250414e-05,0.0,0.0 +97540,50.0,the Greater Atlanta and Macon Area,G1301210007500,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,8439.0,,2385.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011176847717560376,0.0007019326752410581,0.0,0.0018196481366033934,0.000899573739798264,0.00042495897840429044,0.0004950847287945412,0.0,0.0,0.00019764106455720594,0.00042495897840429044,0.0004950847287945412,0.0,0.0,0.0007019326752410581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.689996321459231e-05,0.0,0.0,0.0001331929065951891,8.736791016049524e-05,0.0001800928698097814,2.3552604917021826e-05,5.064175780838528e-05,5.899854386978199e-05,0.0,0.0,4.689996321459231e-05,0.0,0.0,0.0,0.0,0.0,8.903194697200824e-05,4.205872576833372e-05,4.899915968041883e-05,0.0,0.0 +97541,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,137645.0,,32328.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.02866030449743239,0.022238354852752548,0.0,0.050898659350184935,0.025511080570136912,0.0034368927310390977,0.012067602323086716,0.00037122256997680283,0.0095117894359744,0.01698314569655467,0.0034368927310390977,0.006837710316657342,0.00037122256997680283,0.001031333183204487,0.008527934873582246,0.005229892006429373,0.008480456252769913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014858356198231572,0.0,0.0,0.003415395973161549,0.0025085367660287634,0.004901231592984706,0.0020238503547240806,0.00040956820939675446,0.0008148374098135925,4.42379134792179e-05,0.00012290208574790442,0.0005697862761251978,0.000349430516890027,0.0005666140349027627,0.0,0.0,0.0,0.0024565620324355168,0.00033095188459039655,0.0011620367709601243,3.574647763276836e-05,0.0009159275211685222 +97542,85.0,Rural Climate Zone 3A,G1300090970400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,127988.0,,1503.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.005925291752606027,0.0002556186205929013,0.0,0.006180910373198927,0.0041255004952178865,0.0006691615703542128,0.0008305965110837937,0.0,0.0005556517965430348,0.004085270305155787,0.0006691615703542128,0.0006152080805529921,0.0,0.0005556517965430348,4.0230190062099806e-05,0.00021538843053080144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7078910213073202e-05,0.0,0.0,0.0007061060117473956,0.00022765173553022063,0.0007231849219604688,0.000486834073750869,7.974274135102726e-05,7.331320419167336e-05,0.0,6.621599245382591e-05,2.68794113015628e-06,1.4390969082916921e-05,0.0,0.0,0.0,0.0,0.0004826958447122594,7.82938966618763e-05,9.718226552084626e-05,0.0,6.501291506548692e-05 +97543,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11986.0,,1924.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002878123459054159,0.0015263590458589184,0.0,0.004404482504913077,0.0029430485119395153,0.0005715885866123536,0.0008143338480372209,0.0,7.551155832398767e-05,0.0014922010244045845,0.0005715885866123536,0.0008143338480372209,0.0,0.0,0.0014508474875349307,0.0,7.551155832398767e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010198067826788661,0.0,0.0,0.0003429807629104641,0.00020392081706032796,0.0004449614411783507,0.00017782289503809285,6.811517723136346e-05,9.704269064100777e-05,0.0,0.0,9.69355219818622e-05,0.0,5.04515628602441e-06,0.0,0.0,0.0,0.0002973205378542538,5.774455477491985e-05,8.226781743797727e-05,0.0,7.628531111199802e-06 +97544,50.0,the Greater Atlanta and Macon Area,G1302970110800,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,88133.0,,5802.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008055653377871409,0.0017079072800734573,0.0,0.009763560657944866,0.0031565487661439216,0.002309638390752516,0.004297373501048428,0.0,0.0,0.0014486414860704646,0.002309638390752516,0.004297373501048428,0.0,0.0,0.0017079072800734573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011411305710252243,0.0,0.0,0.0009599770158921728,0.00039893054221113984,0.0010740900729946951,0.0001726318730043211,0.00027523524984766207,0.0005121098930401896,0.0,0.0,0.00011411305710252243,0.0,0.0,0.0,0.0,0.0,0.0003472521770917629,0.0002540835003361259,0.0004727543955668062,0.0,0.0 +97545,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,67792.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00552586894571019,0.0,0.0,0.00552586894571019,0.00424953992373642,0.000965515978927255,0.0003107826694470767,0.0,0.0,0.00424953992373642,0.000965515978927255,0.0003107826694470767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006585061621039942,0.00014128030904400217,0.0006585061621039942,0.0005064087211224521,0.00011505850536449057,3.7035316059187984e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005064087211224521,0.00011505850536449057,3.7035316059187984e-05,0.0,0.0 +97546,50.0,the Greater Atlanta and Macon Area,G1300670031309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,15666.0,,1704.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001389625373159982,0.0005015295461170588,0.0,0.0018911549192770407,0.0009696381109759193,0.00042646276911287783,0.0004950847287945412,0.0,0.0,0.0004681085648588606,0.00042646276911287783,0.0004950847287945412,0.0,0.0,0.0005015295461170588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.350878971664681e-05,0.0,0.0,0.00016560068747508975,8.450335848979587e-05,0.00019910947719173656,5.578417151187155e-05,5.082127105021747e-05,5.8998902171999724e-05,0.0,0.0,3.350878971664681e-05,0.0,0.0,0.0,0.0,0.0,0.00010208795449470833,4.489995934984861e-05,5.2124794489907725e-05,0.0,0.0 +97547,85.0,Rural Climate Zone 3A,G1302850960600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,73446.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0059479525965577765,0.0,0.0,0.0059479525965577765,0.0016159305299992424,0.002290979110123513,0.0020410429564350213,0.0,0.0,0.0016159305299992424,0.002290979110123513,0.0020410429564350213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007088064027383492,0.00022872939267723174,0.0007088064027383492,0.00019256742340325597,0.00027301170199895656,0.00024322727733613666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019256742340325597,0.00027301170199895656,0.00024322727733613666,0.0,0.0 +97548,50.0,the Greater Atlanta and Macon Area,G1301210007001,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,11354.0,,3477.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0042624953186743714,0.0026963028114200573,0.0,0.00695879813009443,0.0031873703469952265,0.0004169990582843976,0.0022758267394637132,0.00041344118382938234,0.0006651608015217091,0.001868692696713676,0.0004169990582843976,0.0015633623798469154,0.00041344118382938234,0.0,0.0013186776502815505,0.0007124643596167978,0.0006651608015217091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001801523699000895,0.0,0.0,0.0005079536570802175,0.00031216161233965157,0.000688106026980307,0.00022268864087574128,4.9693003937524785e-05,0.00018630299362577162,4.92690186411798e-05,0.0,8.810690803210857e-05,4.760301488048249e-05,4.444244698749846e-05,0.0,0.0,0.0,0.0003151763716927891,4.123406943070966e-05,0.00022504031105823605,4.0882256544351076e-05,6.577301825422098e-05 +97549,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,8793.0,,964.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007003981949261729,0.0002837254102222622,0.0,0.0009841542947547329,0.0003945762681695647,0.0002993157302214952,0.00029020091715107753,0.0,0.0,0.00011085085794730246,0.0002993157302214952,0.00029020091715107753,0.0,0.0,0.0002837254102222622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8957462955369642e-05,0.0,0.0,8.346617891188741e-05,4.8450956627997444e-05,0.00010242364186725705,1.3210053379622178e-05,3.566933848600639e-05,3.458312977788132e-05,0.0,0.0,1.8957462955369642e-05,0.0,0.0,0.0,0.0,0.0,4.1064636506402766e-05,3.115061055043526e-05,3.0202006907096876e-05,0.0,0.0 +97550,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,80320.0,,9910.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004134472058096433,0.001685359504783119,0.0,0.005819831562879551,0.002463438685340716,0.0012362317196517615,0.0013527556549043486,0.0,0.0007674232333441455,0.0018725921213788765,0.0012362317196517615,0.0008757557416206682,0.0,0.00014991020580654648,0.0005908465639618396,0.0004769999132836805,0.000617513027537599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011260572953922507,0.0,0.0,0.000492697898406583,0.00025509220207354144,0.000605303627945808,0.00022315357071269826,0.0001473196000982074,0.00010436230003514942,0.0,1.786454045709288e-05,3.947686424875216e-05,3.187030605222e-05,4.125855923825292e-05,0.0,0.0,0.0,0.0002562150394471215,0.00012857683883150955,0.000140696151905927,0.0,7.981744184418892e-05 +97551,50.0,the Greater Atlanta and Macon Area,G1301350050209,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,128497.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011331083885449383,0.0,0.0,0.011331083885449381,0.006790443384701549,0.003615460661873913,0.0009251798388739205,0.0,0.0,0.006790443384701549,0.003615460661873913,0.0009251798388739205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013503026180011152,0.0003352730825596996,0.0013503026180011152,0.0008092035653822373,0.0004308472204744228,0.00011025183214445504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008092035653822374,0.00043084722047442283,0.00011025183214445505,0.0,0.0 +97552,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,65041.0,,8072.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.00797438730039509,0.0023759586299618514,0.0,0.010350345930356943,0.0035851904973039366,0.002360122793112237,0.004405001950334471,0.0,0.0,0.0012092318673420852,0.002360122793112237,0.004405001950334471,0.0,0.0,0.0023759586299618514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001587482019071243,0.0,0.0,0.0009502909030891803,0.00042357880136664663,0.0011090391049963047,0.00014410160931157593,0.0002812508517559546,0.0005249347848060438,0.0,0.0,0.0001587482019071243,0.0,0.0,0.0,0.0,0.0,0.00038415300195035056,0.0002528870520624529,0.0004719957625935545,0.0,0.0 +97553,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,72110.0,,3354.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0034001514095235255,0.0005704211876059388,0.0,0.003970572597129465,0.0020938315711782956,0.0007878840704228866,0.0006357398390774133,0.0,0.00045311711645086946,0.0020320058009065715,0.0007878840704228866,0.0004824076735167967,0.0,9.783613431585137e-05,6.182577027172412e-05,0.00015333216556061662,0.0003552809821350181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.81121307372414e-05,0.0,0.0,0.0004051889514104409,0.0001336323141007863,0.00044330108214768227,0.00024214989292039942,9.389050129752186e-05,5.748751624328768e-05,0.0,1.1658928059043715e-05,4.1308280455290545e-06,1.0244737865711289e-05,2.373774946266453e-05,0.0,0.0,0.0,0.00023376925585225745,8.796460774395407e-05,7.097821579465796e-05,0.0,5.058900275681278e-05 +97554,35.0,Eastern Counties in South Carolina and Georgia,G1302450010513,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,17737.0,,370.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00415222593000819,0.0002934446976270627,0.0,0.0044456706276352525,0.002145256078650156,0.0006735664085329197,0.0015496824406534032,0.0,7.708299272503452e-05,0.0019288943737481275,0.0006735664085329197,0.0015496824406534032,0.0,0.0,0.00021636170490202817,0.0,7.708299272503452e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9606444901576803e-05,0.0,0.0,0.000494808922290255,0.00018637370955320098,0.0005144153671918319,0.00022986084147982882,8.026698795179343e-05,0.00018467123689252865,0.0,0.0,1.4456161178840167e-05,0.0,5.150283722736635e-06,0.0,0.0,0.0,0.0002482308713019374,7.793940226243265e-05,0.00017931613214528492,0.0,8.919391319816702e-06 +97555,50.0,the Greater Atlanta and Macon Area,G1301350050728,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,70970.0,,5096.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006323347860791277,0.0015000158870128188,0.0,0.007823363747804096,0.0024094716800389434,0.002888475055133488,0.0025254170126316642,0.0,0.0,0.0009094557930261245,0.002888475055133488,0.0025254170126316642,0.0,0.0,0.0015000158870128188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001002229992692031,0.0,0.0,0.0007535408320800598,0.0003180986014291052,0.000853763831349263,0.0001083780443689175,0.0003442138475385754,0.00030094894017256696,0.0,0.0,0.0001002229992692031,0.0,0.0,0.0,0.0,0.0,0.0002629456892701681,0.00031521933650595395,0.00027559880557314085,0.0,0.0 +97556,50.0,the Greater Atlanta and Macon Area,G1300670030412,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,3925.0,,756.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00033589774092835696,0.00022262240408353596,0.0,0.0005585201450118929,0.0003528077139983912,0.00011545429889195787,9.025813212154388e-05,0.0,0.0,0.00013018530991485523,0.00011545429889195787,9.025813212154388e-05,0.0,0.0,0.00022262240408353596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.487353310207957e-05,0.0,0.0,4.002863626087857e-05,2.9958487660102384e-05,5.490216936295813e-05,1.5514068069314475e-05,1.3758586533889919e-05,1.0755981657674176e-05,0.0,0.0,1.487353310207957e-05,0.0,0.0,0.0,0.0,0.0,3.468077031686174e-05,1.1349082979474065e-05,8.872316066622335e-06,0.0,0.0 +97557,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,40096.0,,11673.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,22700.572550927158,0.0,0.0,0.008348778385985252,0.00802998311482086,0.0,0.01637876150080611,0.005086667224311199,0.00029993291878728544,0.009071715693822612,0.00037072053017969355,0.0015497968536763392,0.005086667224311199,0.00029993291878728544,0.0010417325790017507,0.00037072053017969355,0.0015497968536763392,0.0,0.00802998311482086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005365162109587741,0.0,0.0,0.000994908972269114,0.0008489723146015389,0.0015314251832278885,0.0006061690257474973,3.574246891991474e-05,0.00012414140627971346,4.417810182856032e-05,0.000184686516233964,0.0,0.0005365162109587741,0.0,0.0,0.0,0.0,0.00047560679637631217,2.8043929028900476e-05,0.0008482115004800487,3.466261816125934e-05,0.00014490704504675043 +97558,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,289600.0,,3939.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.014409943445835256,0.000669906245533855,0.0,0.015079849691369107,0.006489826460220507,0.003004072865760967,0.0025685619982002096,0.0,0.0030173883671874265,0.006277328078601175,0.003004072865760967,0.0021111541342856872,0.0,0.0030173883671874265,0.00021249838161933285,0.0004574078639145222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.475947905217975e-05,0.0,0.0,0.0017172044987799335,0.0005742935908344876,0.0017619639778321133,0.000748056788523136,0.0003579894299473045,0.00025158206835718106,0.0,0.00035957621195231194,1.4197982067077106e-05,3.056149698510264e-05,0.0,0.0,0.0,0.0,0.0007582861022702974,0.0003510027145219608,0.0003001166330091153,0.0,0.0003525585280307401 +97559,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2004,gen4_led,25001_50000,Propane,56609.0,,,13790.0,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004487334833734579,0.0,0.0012997774407397136,0.005787112274474292,0.00403634762928284,0.001378445063283491,0.0003723195819079619,0.0,0.0,0.0027365701885431262,0.001378445063283491,0.0003723195819079619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012997774407397136,0.0,0.0,0.0,0.0,0.00010482658533417017,0.0005347469338665489,0.0002240053944146902,0.000639573519200719,0.0003261117281983949,0.00016426660777637162,4.436859789178246e-05,0.0,0.0,0.0,0.0,0.0,0.00010482658533417017,0.0,0.0,0.0004460844952610524,0.00015234143011838618,4.114759382128061e-05,0.0,0.0 +97560,50.0,the Greater Atlanta and Macon Area,G1300770170404,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,17923.0,,1483.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0018560107502589938,0.0005510413344627893,0.0,0.0024070520847217823,0.001271568274504669,0.00022477960630185227,0.0008402595694976152,0.0,7.044463441764649e-05,0.0009121378955948289,0.00022477960630185227,0.0007190932483623123,0.0,0.0,0.0003594303789098399,0.00012116632113530285,7.044463441764649e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.681782871764616e-05,0.0,0.0,0.00022117847492550473,9.557602662448427e-05,0.0002579963036431509,0.00010869832981369925,2.678670396131136e-05,8.569344115049409e-05,0.0,0.0,2.4015342042394045e-05,8.095728176645771e-06,4.706758498606335e-06,0.0,0.0,0.0,0.00013629115744291122,2.4092668342464887e-05,9.006197431586813e-05,0.0,7.5505035419067666e-06 +97561,50.0,the Greater Atlanta and Macon Area,G1301210011504,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,28614.0,,6354.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.0025231956524929193,0.001851058270534909,0.0,0.004374253923027829,0.003158550605531812,0.000995130238379063,0.000220542705517516,0.0,0.0,0.0013074923349969028,0.000995130238379063,0.000220542705517516,0.0,0.0,0.001851058270534909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012367737816721406,0.0,0.0,0.00030068394200015187,0.00021769822734458977,0.000424361320167366,0.00015581112349865827,0.00011858758657250308,2.6281612370751914e-05,0.0,0.0,0.00012367737816721406,0.0,0.0,0.0,0.0,0.0,0.00030642178720414115,9.654098484632441e-05,2.1395601470230488e-05,0.0,0.0 +97562,81.0,the Columbus-Albany Area,G1302150010502,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,20463.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004913627250852254,0.0,0.0,0.004913627250852255,0.002591708862694937,0.0007216192183754573,0.0015244567831629145,0.0,7.58423866189449e-05,0.002591708862694937,0.0007216192183754573,0.0015244567831629145,0.0,7.58423866189449e-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.0005855465620919118,0.0001926420251017836,0.0005855465620919118,0.0003088484610286508,8.59938352844964e-05,0.00018166628905029656,0.0,9.037976728467986e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00030884846102865077,8.599383528449638e-05,0.0001816662890502965,0.0,9.037976728467984e-06 +97563,85.0,Rural Climate Zone 3A,G1300690010802,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,125655.0,,627.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005370668317025354,0.00010659493285735744,0.0,0.005477263249882712,0.002446098391871905,0.0011535373139886355,0.0010531125469054564,0.0,0.0008245149971167155,0.0023395034590145474,0.0011535373139886355,0.0010531125469054564,0.0,0.0008245149971167155,0.00010659493285735744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.122357363538592e-06,0.0,0.0,0.0006400118025598081,0.00017407810583687053,0.0006471341599233466,0.0002787939484462746,0.00013746473475293198,0.00012549731609875727,0.0,9.825580326184438e-05,7.122357363538592e-06,0.0,0.0,0.0,0.0,0.0,0.00028900451844226605,0.00013628948739030473,0.00012442438353880324,0.0,9.741577055197265e-05 +97564,50.0,the Greater Atlanta and Macon Area,G1301510070404,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,50109.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004418660125405822,0.0,0.0,0.004418660125405822,0.002932358410518874,0.0012594716742858171,0.00022683004060113063,0.0,0.0,0.002932358410518874,0.0012594716742858171,0.00022683004060113063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005265626441653934,0.00013663135525400597,0.0005265626441653934,0.00034944312403788625,0.0001500886504599504,2.7030869667556787e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034944312403788625,0.0001500886504599504,2.7030869667556787e-05,0.0,0.0 +97565,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,39193.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0033733401450308947,0.0,0.0,0.0033733401450308947,0.0012731583172601998,0.0007970704547639367,0.0013030806834004602,0.0,0.0,0.0012731583172601998,0.0007970704547639367,0.0013030806834004602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000401993056435121,0.00014665932630227239,0.000401993056435121,0.0001517192993523444,9.49850221231551e-05,0.00015528507775100747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001517192993523444,9.49850221231551e-05,0.00015528507775100747,0.0,0.0 +97566,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,4850.0,,174.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.000977101369156178,0.00013778998484968616,0.0,0.0011148913540058641,0.0006803483885795429,0.00018245180466891218,0.00020966243192914433,0.0,4.242872882826471e-05,0.0005425584037298568,0.00018245180466891218,0.00020966243192914433,0.0,4.242872882826471e-05,0.00013778998484968616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.208150990783946e-06,0.0,0.0,0.00011643969109058129,4.7521627068566155e-05,0.00012564784208136525,6.46558636832752e-05,2.1742505378857482e-05,2.498515463980223e-05,0.0,5.056167388646368e-06,9.208150990783946e-06,0.0,0.0,0.0,0.0,0.0,7.667501105054232e-05,2.0562250714502352e-05,2.3628878314262678e-05,0.0,4.781702002057891e-06 +97567,35.0,Eastern Counties in South Carolina and Georgia,G1300510003000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3724.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005546336364957956,0.0,0.0,0.0005546336364957956,0.00022843693766796714,0.00016574497577357205,0.00013200048968793463,0.0,2.8368526292582448e-05,0.00022843693766796714,0.00016574497577357205,0.00013200048968793463,0.0,2.8368526292582448e-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,6.609371868368803e-05,2.0915588536439722e-05,6.609371868368803e-05,2.7222017745950842e-05,1.975123952313015e-05,1.573002908129527e-05,0.0,3.3805764253660887e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.7222017745950842e-05,1.975123952313015e-05,1.573002908129527e-05,0.0,3.3805764253660887e-06 +97568,50.0,the Greater Atlanta and Macon Area,G1300670031110,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,41997.0,,661.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.010790461082472483,0.0005241974333597305,0.0,0.011314575808758474,0.006936146032073278,0.0019741351430835287,0.002250873011815251,0.0,0.00015350432886015458,0.006411948598713547,0.0019741351430835287,0.002250873011815251,0.0,0.00015350432886015458,0.0005241974333597305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5021139730982484e-05,0.0,0.0,0.0012858773603688163,0.0004661968517469211,0.0013208985000997988,0.0007640989088341242,0.00023525368076466872,0.0002682319712602312,0.0,1.8292799509792e-05,3.5021139730982484e-05,0.0,0.0,0.0,0.0,0.0,0.0008097470948178734,0.0002304666293786108,0.00026277386227068134,0.0,1.7920569111680492e-05 +97569,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,220335.0,,33466.0,,7.614023970037612,Education,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.047110415938888116,0.023164315290811973,0.0,0.07027480339672283,0.046510491478910544,0.012685880091081066,0.008172482322350511,0.0007939094170832711,0.0021121122543201615,0.027173265570640426,0.012685880091081066,0.004345320772785922,0.0007939094170832711,0.0021121122543201615,0.019337225908270115,0.0038271615495645886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015477051400447249,0.0,0.0,0.00561406153325169,0.0029544730838464033,0.007161766673296415,0.003238188029816097,0.001511752974696036,0.0005178238763967218,9.460872358068717e-05,0.0002516965287733816,0.0012920012336521175,0.0002557087281743271,0.0,0.0,0.0,0.0,0.004739924862569334,0.0012928291345739387,0.000832864820750867,8.090800301190602e-05,0.000215247206994769 +97570,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,8963.0,,958.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0007184129938229244,0.0002818533442381023,0.0,0.001000266338061027,0.000477039240291492,0.00028952574581252806,0.0002337013519570067,0.0,0.0,0.00019518589605338973,0.00028952574581252806,0.0002337013519570067,0.0,0.0,0.0002818533442381023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8832172291103414e-05,0.0,0.0,8.561257736237347e-05,5.244356875545553e-05,0.00010444474965347687,2.3260113290815298e-05,3.450250138137602e-05,2.7849962690182153e-05,0.0,0.0,1.8832172291103414e-05,0.0,0.0,0.0,0.0,0.0,4.9810977467973e-05,3.0231392269226537e-05,2.4402379916277306e-05,0.0,0.0 +97571,50.0,the Greater Atlanta and Macon Area,G1300630040411,ComStock 90.1-2004,gen5_led,10001_25000,Electricity,37750.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008946672287602103,0.0,0.0,0.008946672287602101,0.005979804138425665,0.001597487129274723,0.0012213353579083527,0.0,0.0001481283690670996,0.005979804138425665,0.001597487129274723,0.0012213353579083527,0.0,0.0001481283690670996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010661609837729034,0.0003613598973996107,0.0010661609837729034,0.0007126039334007994,0.00019037004984213832,0.00014554462987413186,0.0,1.765222672882577e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0007126039334007995,0.00019037004984213837,0.00014554462987413188,0.0,1.7652226728825774e-05 +97572,50.0,the Greater Atlanta and Macon Area,G1301350050319,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,15871.0,,,,8.72605822017302,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,65445.43665129765,0.0,0.0,0.003810811129612329,0.0,0.0,0.003810811129612329,0.0023030611753447547,0.0004768889871808466,0.0009519584187394286,0.0,7.873713419982066e-05,0.0023030611753447547,0.0004768889871808466,0.0009519584187394286,0.0,7.873713419982066e-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.0004541226815302399,0.0001511659884113464,0.0004541226815302399,0.00027444874099077747,5.682939885631051e-05,0.00011344196684636386,0.0,9.382862939855636e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00027444874099077747,5.682939885631051e-05,0.00011344196684636386,0.0,9.382862939855636e-06 +97573,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,91525.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.00815475011660669,0.0,0.0,0.008154750116606692,0.00388186692138383,0.0017205513978681111,0.0025523317973547496,0.0,0.0,0.00388186692138383,0.0017205513978681111,0.0025523317973547496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009717858512804011,0.00034009702516756815,0.0009717858512804011,0.0004625945978494239,0.00020503479333400996,0.00030415646009696723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046259459784942387,0.0002050347933340099,0.0003041564600969671,0.0,0.0 +97574,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,14923.0,,865.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035831185556080155,0.0006858897625200762,0.0,0.004269008318128091,0.0018278263296386938,0.0007821607963526303,0.0015497651477271424,0.0,0.0001092560444096251,0.0012511926115282427,0.0007821607963526303,0.0015497651477271424,0.0,0.0,0.0005766337181104513,0.0,0.0001092560444096251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.582467274133235e-05,0.0,0.0,0.0004269981191360548,0.0001746641101909757,0.00047282279187738714,0.00014910388353277096,9.320963951410729e-05,0.0001846845960891765,0.0,0.0,3.852521624895324e-05,0.0,7.299456492379121e-06,0.0,0.0,0.0,0.0002024446625172477,8.662982685183762e-05,0.00017164742471711256,0.0,1.2100877791189332e-05 +97575,50.0,the Greater Atlanta and Macon Area,G1300210011900,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,9239.0,,525.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0019160747773185353,0.00041676094457237,0.0,0.0023328357218909052,0.0009060559928141128,0.00042436999535638636,0.000856349041496789,0.0,0.00014614339929735617,0.0006353557404653597,0.00042436999535638636,0.000856349041496789,0.0,0.0,0.00027070025234875313,0.0,0.00014614339929735617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7847210558273643e-05,0.0,0.0,0.00022833034085503493,9.255939335215631e-05,0.0002561775514133086,7.571259457195055e-05,5.057033620784668e-05,0.00010204741007523768,0.0,0.0,1.8087699971666927e-05,0.0,9.765036923292224e-06,0.0,0.0,0.0,9.949745003661617e-05,4.660168107146303e-05,9.403894091091955e-05,0.0,1.6048561772222795e-05 +97576,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5331.0,,340.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0012329143482318558,0.0002697077674638815,0.0,0.0015026221156957374,0.0007650404320885936,0.0003656479730014781,0.0003265275271227857,0.0,4.532347640914047e-05,0.0005407388481075919,0.0003656479730014781,0.0003265275271227857,0.0,0.0,0.0002243015839810017,0.0,4.532347640914047e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8019378661889592e-05,0.0,0.0,0.00014692688055524398,5.8631834096464404e-05,0.00016494625921713356,6.444005803113873e-05,4.3574410608085706e-05,3.891241191601953e-05,0.0,0.0,1.4985757415223725e-05,0.0,3.028095524905089e-06,0.0,0.0,0.0,8.398023435482635e-05,4.013801254947971e-05,3.5843671917065344e-05,0.0,4.975261451507551e-06 +97577,35.0,Eastern Counties in South Carolina and Georgia,G1300510010101,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,19148.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.004348241694770349,0.0,0.0,0.004348241694770349,0.002226060889693459,0.0004798664418354617,0.001562584744156735,0.0,7.972961908469236e-05,0.002226060889693459,0.0004798664418354617,0.001562584744156735,0.0,7.972961908469236e-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.0005181726645842142,0.00014289661604229278,0.0005181726645842142,0.0002652759399567109,5.718487845546488e-05,0.00018621060128560802,0.0,9.501244886430222e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002652759399567109,5.718487845546488e-05,0.00018621060128560802,0.0,9.501244886430222e-06 +97578,50.0,the Greater Atlanta and Macon Area,G1301210002500,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,32885.0,,2377.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002721504883222001,0.0006924876935813038,0.0,0.003413962203203867,0.0023420778790456055,0.0007808748679451616,0.000291039829812538,0.0,0.0,0.0016495901854643017,0.0007808748679451616,0.000291039829812538,0.0,0.0,0.0006924876935813038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.62676148730716e-05,0.0,0.0,0.000324315047692769,0.00012514793765424552,0.0003705826625658406,0.00019657760784136654,9.305493868520883e-05,3.46825011661936e-05,0.0,0.0,4.62676148730716e-05,0.0,0.0,0.0,0.0,0.0,0.00025423054055453704,8.47632956868406e-05,3.159212335257329e-05,0.0,0.0 +97579,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,130626.0,,14181.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.011400973912352499,0.004174369559007234,0.0,0.015575343471359736,0.008617825586032728,0.0024987170551526625,0.004458831519780642,0.0,0.0,0.004443456027025493,0.0024987170551526625,0.004458831519780642,0.0,0.0,0.004174369559007234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027890740144604227,0.0,0.0,0.0013586331350404625,0.0006585899084987688,0.0016375405364865048,0.0005295184989302719,0.00029776752515352754,0.0005313507681807161,0.0,0.0,0.00027890740144604227,0.0,0.0,0.0,0.0,0.0,0.0009060499217528442,0.0002627069171570223,0.0004687869241812042,0.0,0.0 +97580,50.0,the Greater Atlanta and Macon Area,G1301210009601,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,52467.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.004177979723461077,0.0,0.0,0.004177979723461076,0.0027820090933020026,0.0012184065678459766,0.0001775336887136594,0.0,0.0,0.0027820090933020026,0.0012184065678459766,0.0001775336887136594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004978804134186169,0.00014526547644155434,0.0004978804134186169,0.0003315257443040237,0.00014519476059318513,2.1156288968120037e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003315257443040238,0.00014519476059318516,2.115628896812004e-05,0.0,0.0 +97581,50.0,the Greater Atlanta and Macon Area,G1300670031208,ComStock 90.1-2004,gen5_led,25001_50000,NaturalGas,96058.0,,11707.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004944590001740066,0.001990924553496309,0.0,0.0069355145552363745,0.002982867353502583,0.0009769074535220692,0.0016216188554780294,0.0,0.0013541031623722725,0.0022855145084904865,0.0009769074535220692,0.0014698646920837976,0.0,0.00021228561728229225,0.0006973528450120967,0.0001517541633942319,0.0011418175450899804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013302242940664167,0.0,0.0,0.0005892368111483279,0.0002797773661999391,0.0007222592405549697,0.00027236015126476566,0.00011641608960455887,0.0001751608088189687,0.0,2.5297648568648293e-05,4.65932118995861e-05,1.0139363368552984e-05,7.628985413850259e-05,0.0,0.0,0.0,0.00031063355029518235,0.0001017344033890924,0.00016887416120306347,0.0,0.0001410152792412023 +97582,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock 90.1-2004,gen4_led,1001_5000,Propane,7624.0,,,902.0,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016081563417870933,0.0,0.0002315798064700608,0.001839736148257154,0.001010018784504422,0.00017757208731829303,0.0006205511742660237,0.0,3.159410216841544e-05,0.0008100330802027769,0.00017757208731829303,0.0006205511742660237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019998570430164534,3.159410216841544e-05,0.0,0.0,0.0,1.8675933465101413e-05,0.00019164233137770837,8.169388222202169e-05,0.00021031826484280977,9.653080608482184e-05,2.1161082363090922e-05,7.395044292979565e-05,0.0,0.0,0.0,0.0,0.0,1.6128002542362573e-05,2.5479309227388354e-06,0.0,0.00011546514342116494,2.0300005152738386e-05,7.094128489100892e-05,0.0,3.6118313778975615e-06 +97583,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2004,gen4_led,200001_500000,Electricity,308535.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.02624578199540172,0.0,0.0,0.02624578199540172,0.0052775688365907574,0.006922623802966519,0.014045589355844443,0.0,0.0,0.0052775688365907574,0.006922623802966519,0.014045589355844443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031276586824923267,0.0009972024986260163,0.0031276586824923267,0.000628917591295468,0.0008249555851210553,0.0016737855060758036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000628917591295468,0.0008249555851210553,0.0016737855060758036,0.0,0.0 +97584,50.0,the Greater Atlanta and Macon Area,G1300350150100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,16631.0,,395.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0008560927708058296,6.723353050484022e-05,0.0,0.0009233263013106699,0.000635597996186053,0.00015758745230142932,4.466278041711301e-05,0.0,8.54603420446545e-05,0.0006176194097061194,0.00015758745230142932,4.466278041711301e-05,0.0,3.620539801974782e-05,1.797858647993354e-05,0.0,4.925494402490669e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.492380581446794e-06,0.0,0.0,0.00010201850268097846,4.150626670634725e-05,0.00010651088326242527,7.360020964272232e-05,1.8779315131897452e-05,5.322355402480837e-06,0.0,4.314509619637105e-06,1.2012853137096648e-06,0.0,3.2910952677371296e-06,0.0,0.0,0.0,7.331980457775984e-05,1.817859917114286e-05,5.152102982910539e-06,0.0,9.858331233675582e-06 +97585,50.0,the Greater Atlanta and Macon Area,G1301130140207,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,46195.0,,1229.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.004055201817753255,0.00036173838943102265,0.0,0.004416940207184278,0.0018520563608537676,0.0011003144545915378,0.0014645387021326747,0.0,0.0,0.001490317971422745,0.0011003144545915378,0.0014645387021326747,0.0,0.0,0.00036173838943102265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4170098947649496e-05,0.0,0.0,0.00048324933660332463,0.00018263369792935886,0.0005074194355509741,0.0001775978615577439,0.00013112201417659833,0.00017452580365719605,0.0,0.0,2.4170098947649493e-05,0.0,0.0,0.0,0.0,0.0,0.00021276479851469317,0.00012640445948742783,0.0001682466519175395,0.0,0.0 +97586,50.0,the Greater Atlanta and Macon Area,G1300890022900,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,345901.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,480687.657779034,0.0,0.0,0.027687996149065246,0.0,0.0,0.027687996149065246,0.018615584238605404,0.005744862597656379,0.003327549312803463,0.0,0.0,0.018615584238605404,0.005744862597656379,0.003327549312803463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003299526018085947,0.00092017468403573,0.003299526018085947,0.002218383887604768,0.0006846043862923601,0.000396537744188819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002218383887604768,0.0006846043862923601,0.000396537744188819,0.0,0.0 +97587,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,72652.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.0058163013035339725,0.0,0.0,0.0058163013035339725,0.003981371414300509,0.0013672979522898361,0.00046763193694362705,0.0,0.0,0.003981371414300509,0.0013672979522898361,0.00046763193694362705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006931172462604367,0.00020572054568480006,0.0006931172462604367,0.0004744522415548327,0.0001629382217411684,5.572678296443549e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004744522415548327,0.0001629382217411684,5.572678296443549e-05,0.0,0.0 +97588,50.0,the Greater Atlanta and Macon Area,G1300670030414,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,47282.0,,4674.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004531412438674709,0.0013758457399323132,0.0,0.005907258178607023,0.002081890822417264,0.0016228663810225231,0.0022025009751672356,0.0,0.0,0.0007060450824849503,0.0016228663810225231,0.0022025009751672356,0.0,0.0,0.0013758457399323132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.192615993377887e-05,0.0,0.0,0.0005399995990007423,0.0002428297602377372,0.0006319257589345213,8.413801801934997e-05,0.00019339382738690886,0.00026246775359448353,0.0,0.0,9.192615993377887e-05,0.0,0.0,0.0,0.0,0.0,0.00022270914833877686,0.00017360525618990402,0.00023561135440584044,0.0,0.0 +97589,85.0,Rural Climate Zone 3A,G1302930010400,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,44110.0,,11205.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.00918445948825915,0.007707888724989751,0.0,0.016892348213248903,0.005593225379594459,0.0006301316653431587,0.005449785437563237,0.0003711508500057872,0.0048480548807422605,0.0041470638840356774,0.0006301316653431587,0.0034730395964309656,0.0003711508500057872,0.0005630734924435624,0.001446161495558781,0.0019767458411322713,0.004284981388298697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005149954921871042,0.0,0.0,0.0010944977561406846,0.0008062476601666382,0.0016094932483277887,0.0004941991547190598,7.509181075630217e-05,0.0004138767284172471,4.422946968630364e-05,6.710059256177194e-05,9.662394953532796e-05,0.00013207445432913652,0.0002862970883226396,0.0,0.0,0.0,0.0005329193059004265,6.0038583631132724e-05,0.0005192524305006695,3.5363040096871366e-05,0.0004619198881986887 +97590,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen5_led,_1000,NaturalGas,2610.0,,354.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.00047854312865563275,0.0002809559294924273,0.0,0.0007594990581480601,0.0005079868469068261,0.00011057935758945402,0.00012794784307470857,0.0,1.2985010577071266e-05,0.00024001592799147012,0.00011057935758945402,0.00012794784307470857,0.0,0.0,0.000267970918915356,0.0,1.2985010577071266e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8772082258196835e-05,0.0,0.0,5.702253958828402e-05,3.727676206690148e-05,7.579462184648086e-05,2.859996714227449e-05,1.3176483828125774e-05,1.5246088617883749e-05,0.0,0.0,1.790448822977855e-05,0.0,8.675940284182818e-07,0.0,0.0,0.0,5.06948238463558e-05,1.103532717072252e-05,1.2768624632092547e-05,0.0,1.2958461973099742e-06 +97591,50.0,the Greater Atlanta and Macon Area,G1302190030200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,DistrictHeating,3771.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.001968491941254218,0.0013284877526827006,0.0003888722882534265,0.0,0.0,0.003685851982190345,0.003362819926933358,0.00018108793768589293,0.00013037021259991327,0.0,1.1628498862555079e-05,7.74687318589937e-05,0.00018108793768589293,0.00013037021259991327,0.0,0.0,0.0,0.0,0.0,0.001316859253820146,0.0,1.1628498862555079e-05,0.001968491941254218,0.0,0.0,0.0,0.0,0.0,0.0,4.634116707482662e-05,1.591043253871373e-05,4.634116707482662e-05,9.231800656911266e-06,2.157990329737468e-05,1.5535968970193168e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.227977705821157e-05,2.276767058494533e-06,1.6391075476891605e-06,0.0,1.4620180387679697e-07 +97592,50.0,the Greater Atlanta and Macon Area,G1300630040611,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,NaturalGas,7196.0,,440.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014529151643784136,0.0003491065582536166,0.0,0.00180202172263203,0.0008375745357579662,0.0005466110503430828,0.0003877307616898732,0.0,3.018808191484721e-05,0.0005186560594191968,0.0005466110503430828,0.0003877307616898732,0.0,0.0,0.0003189184763387694,0.0,3.018808191484721e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3325317454753095e-05,0.0,0.0,0.0001731430638720489,7.882731536899987e-05,0.000196468381326802,6.180794407363913e-05,6.51393242517431e-05,4.620565170103974e-05,0.0,0.0,2.1308321275889112e-05,0.0,2.0169961788639853e-06,0.0,0.0,0.0,9.131794096275583e-05,5.9595168541804415e-05,4.227298382871525e-05,0.0,3.291305268234016e-06 +97593,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,19451.0,,1366.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001733042067631276,0.00040218729053139503,0.0,0.0021351986685563735,0.0006420265637479423,0.0008411714190137356,0.0006520620650072911,0.0,0.0,0.00023983927321654728,0.0008411714190137356,0.0006520620650072911,0.0,0.0,0.00040218729053139503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6871359074609125e-05,0.0,0.0,0.00020652199695110333,9.221332382582765e-05,0.00023339335602571244,2.8581005953123302e-05,0.00010024015254883641,7.770449564760216e-05,0.0,0.0,2.6871359074609125e-05,0.0,0.0,0.0,0.0,0.0,7.017835697326451e-05,9.194639513767718e-05,7.12753131267185e-05,0.0,0.0 +97594,50.0,the Greater Atlanta and Macon Area,G1300210012500,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,58213.0,,2047.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004846778832989903,0.0006026211092616918,0.0,0.005449399942251594,0.0017866568098333627,0.0014064739670174209,0.0022563305446134064,0.0,0.0,0.0011840357005716712,0.0014064739670174209,0.0022563305446134064,0.0,0.0,0.0006026211092616918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.026323139161635e-05,0.0,0.0,0.0005775830661006115,0.00020391698489032563,0.0006178462974922279,0.00014109968576529766,0.0001676073066778421,0.0002688833881224035,0.0,0.0,4.026323139161635e-05,0.0,0.0,0.0,0.0,0.0,0.00020256896292121212,0.00015946429739966387,0.00025581999627137156,0.0,0.0 +97595,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,60488.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005174175552973796,0.0,0.0,0.005174175552973796,0.0014872490107929743,0.0014305959975674154,0.0022563305446134064,0.0,0.0,0.0014872490107929743,0.0014305959975674154,0.0022563305446134064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006165974935334912,0.00020295922782045676,0.0006165974935334912,0.00017723287563910695,0.00017048163467359262,0.00026888298322079164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017723287563910695,0.00017048163467359262,0.00026888298322079164,0.0,0.0 +97596,35.0,Eastern Counties in South Carolina and Georgia,G1300510004210,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,63328.0,,5691.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0029489669024674423,0.0009677231263064819,0.0,0.003916690028773925,0.0016881963626103277,0.0009739819438877608,0.0005467156943873282,0.0,0.0007077960278885078,0.0015212472794791105,0.0009739819438877608,0.0003383307566174476,0.0,0.0001154069224831237,0.0001669490831312172,0.0002083849377698806,0.0005923891054053842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.465776007022752e-05,0.0,0.0,0.0003514218287495947,0.00013513240122418551,0.00041607958881982224,0.00018128365580759415,0.00011606726260770602,4.031812398886363e-05,0.0,1.3752786345430952e-05,1.1154589022009204e-05,1.392309736360176e-05,3.958007368461656e-05,0.0,0.0,0.0,0.00017934124049686685,0.00010346849093330239,5.807894922775706e-05,0.0,7.519090816189595e-05 +97597,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,21189.0,,335.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0023488132037923423,0.0001244599371559299,0.0,0.0024732343925245003,0.0013253898351240918,0.00022745324754212598,0.0008590138066033034,0.0,6.141625167875123e-05,0.0013253898351240918,0.00022745324754212598,0.0007345538694473735,0.0,6.141625167875123e-05,0.0,0.0001244599371559299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.314785606960648e-06,0.0,0.0,0.00027990281784360074,8.685943358466507e-05,0.0002882176034505614,0.0001579437432459601,2.7105094952603003e-05,8.75351422515324e-05,0.0,7.318837393505242e-06,0.0,8.314785606960648e-06,0.0,0.0,0.0,0.0,0.00015445389368343756,2.65061937120824e-05,0.00010010490773477935,0.0,7.157123855817821e-06 +97598,35.0,Eastern Counties in South Carolina and Georgia,G1300510010603,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,110665.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.009453810461582153,0.0,0.0,0.009453810461582151,0.002405267203976158,0.0028587982058436096,0.004189714362156086,0.0,0.0,0.002405267203976158,0.0028587982058436096,0.004189714362156086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011265924491224602,0.0003350461953387757,0.0011265924491224602,0.0002866310765519555,0.0003406774956358966,0.0004992802197131244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028663107655195556,0.00034067749563589664,0.0004992802197131245,0.0,0.0 +97599,50.0,the Greater Atlanta and Macon Area,G1301210008602,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,NaturalGas,144434.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.0205790075717435,0.0,0.0,0.020579007571743493,0.005054394019593863,0.005999695272775704,0.009524887589767632,0.0,0.0,0.005054394019593863,0.005999695272775704,0.009524887589767632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002452359218466174,0.0008616764120715645,0.002452359218466174,0.0006023220373722406,0.0007149716991397594,0.0011350618247351046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006023220373722408,0.0007149716991397597,0.0011350618247351048,0.0,0.0 +97600,50.0,the Greater Atlanta and Macon Area,G1301350050313,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,64469.0,,9807.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.005239142167017812,0.002856971136714374,0.0,0.008096113303732186,0.005516847986677177,0.002006905209250014,0.0005723601078049953,0.0,0.0,0.0026598768499628027,0.002006905209250014,0.0005723601078049953,0.0,0.0,0.002856971136714374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019088575570873107,0.0,0.0,0.0006243400224071266,0.00036312252711009327,0.0008152257781158578,0.0003169731836178149,0.00023915961876357168,6.820722002574001e-05,0.0,0.0,0.00019088575570873107,0.0,0.0,0.0,0.0,0.0,0.0005555105918061369,0.0002020822584166902,5.7632927893030694e-05,0.0,0.0 +97601,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,25658.0,,7709.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0018032664082264702,0.0013110715752058045,0.0,0.003114337983432275,0.0012816569056099368,0.0003583660650221072,0.0010950448516638812,0.0,0.00037925243077492935,0.0012526500343267306,0.0003583660650221072,0.00012115155958322079,0.0,7.10810189329917e-05,2.900687128320638e-05,0.0009738932920806603,0.0003081714118419377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.759848943959505e-05,0.0,0.0,0.00021489104028871842,0.00014976818753041662,0.0003024895297283135,0.00014927537482324328,4.270564580222778e-05,1.4437347999536039e-05,0.0,8.470558778009659e-06,1.9380773375235307e-06,6.507011735665801e-05,2.0590294745413502e-05,0.0,0.0,0.0,0.00012448481722710428,3.4807391829596764e-05,0.00010635955505579488,0.0,3.6836043500646876e-05 +97602,35.0,Eastern Counties in South Carolina and Georgia,G1300510010901,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,63020.0,,2018.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,120171.9144447585,0.0,0.0,0.007883649975665112,0.0005879417643165619,0.0,0.008471591739981672,0.0057344748266486695,0.0020793158703096143,0.0006578010430233912,0.0,0.0,0.005146533062332107,0.0020793158703096143,0.0006578010430233912,0.0,0.0,0.0005879417643165619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.92826947033903e-05,0.0,0.0,0.0009394800619483848,0.0003601509715296112,0.000978762756651775,0.0006133028755898392,0.00024778824639331215,7.838893996523359e-05,0.0,0.0,3.92826947033903e-05,0.0,0.0,0.0,0.0,0.0,0.0006625307925064157,0.0002402331221379686,7.599884200739119e-05,0.0,0.0 +97603,46.0,the Tallahassee-Valdosta Area,G1301850011301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6541.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001222245135719485,0.0,0.0,0.001222245135719485,0.0005906939206461336,0.0002803769799762522,0.0003033695464757796,0.0,4.780468862131969e-05,0.0005906939206461336,0.0002803769799762522,0.0003033695464757796,0.0,4.780468862131969e-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.0001456482375991043,4.054694531808413e-05,0.0001456482375991043,7.038974914960096e-05,3.341098426451237e-05,3.6150882089153786e-05,0.0,5.69662209583721e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.038974914960096e-05,3.341098426451237e-05,3.6150882089153786e-05,0.0,5.69662209583721e-06 +97604,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,DistrictHeating,228223.0,,,,9.729435225087556,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1459415.2837631335,0.0,0.011067545808825298,0.05261870334610945,0.0,0.0,0.06368624915493473,0.044474352232941,0.010792000657539054,0.003395715898866601,0.0006721715554636682,0.004352008810124419,0.03775881523424013,0.010792000657539054,0.003395715898866601,0.0006721715554636682,0.0,0.0,0.0,0.0,0.006715536998700878,0.0,0.004352008810124419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006270465128680282,0.001240683932997201,0.006270465128680282,0.0044996421266638945,0.0012860610294152526,0.00040466063921589576,8.010133338523921e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004378886784788643,0.001062566326165086,0.00033433776385460715,6.618113572322275e-05,0.0004284931181487242 +97605,50.0,the Greater Atlanta and Macon Area,G1300890021813,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,29173.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.002533181483024983,0.0,0.0,0.002533181483024983,0.0008155149081488561,0.0010028442649900337,0.0007148529994923911,0.0,0.0,0.0008155149081488561,0.0010028442649900337,0.0007148529994923911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030187289220557934,0.00010648427601675994,0.00030187289220557934,9.718286889800175e-05,0.00011950643912919139,8.518724138189723e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.718286889800175e-05,0.00011950643912919139,8.518724138189723e-05,0.0,0.0 +97606,50.0,the Greater Atlanta and Macon Area,G1300890023310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,50228.0,,9489.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004200517103572877,0.00279306106915393,0.0,0.00699354748312051,0.003551309171951272,0.0014281101394573012,0.002014158861318234,0.0,0.0,0.0007582481027973426,0.0014281101394573012,0.002014158861318234,0.0,0.0,0.00279306106915393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018661505321026218,0.0,0.0,0.0005005667073575606,0.0003272196732533303,0.0006871817605678227,9.035881697863865e-05,0.0001701848540609532,0.00024002303631796886,0.0,0.0,0.00018661505321026218,0.0,0.0,0.0,0.0,0.0,0.0003489494988047513,0.0001403252415581142,0.00019791003574717492,0.0,0.0 +97607,50.0,the Greater Atlanta and Macon Area,G1300630040609,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,12143.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026274383185503187,0.0,0.0,0.0026274383185503187,0.0010814776962151838,0.0005064981195795186,0.0009624622171043206,0.0,7.700028565129521e-05,0.0010814776962151838,0.0005064981195795186,0.0009624622171043206,0.0,7.700028565129521e-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.0003131035315404457,8.820836826697767e-05,0.0003131035315404457,0.00012887628363204693,6.0357782270010343e-05,0.00011469358463032505,0.0,9.175881008063299e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012887628363204693,6.0357782270010343e-05,0.00011469358463032505,0.0,9.175881008063299e-06 +97608,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,50648.0,,12960.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004261758322730992,0.0022039193852354034,0.0,0.006465677707966395,0.0024251942957576626,0.0012241750738861258,0.001726901741590303,0.0,0.0010894065967323044,0.0019130882668622774,0.0012241750738861258,0.0009363758473158286,0.0,0.0001881014043053402,0.0005121060288953851,0.0007905258942744741,0.0009013051924269642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014725322118674724,0.0,0.0,0.000507865051716479,0.0002778754832145186,0.0006551182729032263,0.00022797882892749096,0.00014588244807152697,0.00011158600092047798,0.0,2.241566090595605e-05,3.421598033448232e-05,5.2818394875644086e-05,6.0220030617424573e-05,0.0,0.0,0.0,0.0002457266152524059,0.00012403641139541104,0.00017497390645226587,0.0,0.00011038133980314352 +97609,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,51357.0,,7283.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004839106431415477,0.002143668999894539,0.0,0.0069827754313100164,0.003245978278895428,0.00150735070291797,0.002229415759890321,0.0,0.0,0.0011023092790008885,0.00150735070291797,0.002229415759890321,0.0,0.0,0.002143668999894539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014322822140302053,0.0,0.0,0.0005766661626692331,0.0003015151714697062,0.0007198943840722537,0.00013135988451698396,0.00017962782136912372,0.0002656747995671191,0.0,0.0,0.00014322822140302053,0.0,0.0,0.0,0.0,0.0,0.00033464652512231024,0.00015540143264415883,0.0002298432623381846,0.0,0.0 +97610,50.0,the Greater Atlanta and Macon Area,G1301210007705,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,236280.0,,9812.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.020095893049631986,0.001668551122156909,0.0,0.021764444171788896,0.010227368917206218,0.0042705880427181785,0.0036117987337946963,0.0,0.0036546884780698052,0.009250284160069948,0.0042705880427181785,0.0029203323687740567,0.0,0.0036546884780698052,0.00097708475713627,0.0006914663650206392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011148289167134948,0.0,0.0,0.002394788918412092,0.0007087164307907133,0.002506271810083442,0.0011023385695767374,0.0005089177621788731,0.0003480103908568681,0.0,0.00043552219579961397,6.528312659233349e-05,4.6199765079016e-05,0.0,0.0,0.0,0.0,0.0011777266722824253,0.0004917770626009171,0.00041591456592023274,0.0,0.00042085350927986725 +97611,50.0,the Greater Atlanta and Macon Area,G1301210006200,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,85367.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012468332195597684,0.0,0.0,0.012468332195597684,0.007842554495625834,0.0036147013218879695,0.0010110763780838829,0.0,0.0,0.007842554495625834,0.0036147013218879695,0.0010110763780838829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014858283302148106,0.0004377768402464628,0.0014858283302148106,0.0009345828670629033,0.00043075734148488603,0.00012048812166702142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009345828670629033,0.00043075734148488603,0.00012048812166702142,0.0,0.0 +97612,50.0,the Greater Atlanta and Macon Area,G1300890021705,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9033.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0007084642068855612,0.0,0.0,0.0007084642068855612,0.00045086571005398805,0.00023023188373815886,2.736661309341439e-05,0.0,0.0,0.00045086571005398805,0.00023023188373815886,2.736661309341439e-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,8.44245875614003e-05,2.8591935409902027e-05,8.44245875614003e-05,5.372769893939662e-05,2.743572877665228e-05,3.2611598453514112e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.372769893939662e-05,2.743572877665228e-05,3.2611598453514112e-06,0.0,0.0 +97613,50.0,the Greater Atlanta and Macon Area,G1301210001201,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,38348.0,,13039.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.00798472781311001,0.008969227855241303,0.0,0.01695395566835131,0.005998514935803677,0.001175490324945865,0.005222576569385781,0.0003713660099188341,0.00418607954826817,0.0037019697439127958,0.001175490324945865,0.002269506762817996,0.0003713660099188341,0.0004663949715145186,0.0022965451918908818,0.002953069806567785,0.0037196845767536514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005992732162707785,0.0,0.0,0.0009515251497946335,0.0008301585714583156,0.001550798366065412,0.0004411568431084468,0.0001400809938304714,0.0002704528962032603,4.425499609848572e-05,5.557942055396921e-05,0.00015344219654888174,0.00019730746831454995,0.00024852834333128883,0.0,0.0,0.0,0.0005486912519553575,0.00010752348955676021,0.00047771525235105073,3.39692879148813e-05,0.00038290564459789037 +97614,50.0,the Greater Atlanta and Macon Area,G1300570090601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10803.0,,331.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0024449038068076667,0.00026284308034351896,0.0,0.002707746887151186,0.001122169576494923,0.0005965661228816243,0.0009175522760638766,0.0,7.137620463702231e-05,0.000859326496151404,0.0005965661228816243,0.0009175522760638766,0.0,7.137620463702231e-05,0.00026284308034351896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7564039898812075e-05,0.0,0.0,0.00029135037481714353,0.00010650368875450359,0.0003089144147159555,0.00010240284139068775,7.109063474023395e-05,0.00010934139772745815,0.0,8.505645054876183e-06,1.7564039898812075e-05,0.0,0.0,0.0,0.0,0.0,0.00012802317660484693,6.805949092355254e-05,0.00010467932792262471,0.0,8.14298359448577e-06 +97615,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,29187.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.002573767695556776,0.0,0.0,0.002573767695556776,0.0013905945030585917,0.0009509366511971341,0.00023223654130105043,0.0,0.0,0.0013905945030585917,0.0009509366511971341,0.00023223654130105043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030670930780106427,8.134298036262815e-05,0.00030670930780106427,0.00016571358720577937,0.00011332068646088155,2.7675034134403358e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016571358720577937,0.00011332068646088155,2.7675034134403358e-05,0.0,0.0 +97616,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,13536.0,,541.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032086209257164316,0.0004294151268544841,0.0,0.003637953345497176,0.002244256445916107,0.0007541230983550051,0.00047159573446153093,0.0,0.00016806077383827266,0.001982902092899895,0.0007541230983550051,0.00047159573446153093,0.0,0.0,0.00026135435301621147,0.0,0.00016806077383827266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8688753560717204e-05,0.0,0.0,0.000382360737406436,0.00015302083623673705,0.00041104949096715314,0.00023629588037941233,8.986635400623491e-05,5.619850302078871e-05,0.0,0.0,1.7460797621699997e-05,0.0,1.122795593901721e-05,0.0,0.0,0.0,0.00025357677300490383,8.52077765343178e-05,5.3285231607663965e-05,0.0,1.898905482756457e-05 +97617,50.0,the Greater Atlanta and Macon Area,G1300670030414,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,115240.0,,2521.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00649750370671539,0.0004286669480526166,0.0,0.006926170654768008,0.00300515441780759,0.0011774201108214466,0.0010985554632250514,0.0,0.0016450406629139192,0.00300515441780759,0.0011774201108214466,0.000669888515172435,0.0,0.0016450406629139192,0.0,0.0004286669480526166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8641424176379157e-05,0.0,0.0,0.0007742946294068279,0.00024268038911858805,0.000802936053583207,0.0003581182914665698,0.00014031081928008696,7.982928567832072e-05,0.0,0.00019603623298185052,0.0,2.8641424176379157e-05,0.0,0.0,0.0,0.0,0.00034838108226245947,0.0001364957787376581,0.00012735316991893257,0.0,0.00019070602266415672 +97618,50.0,the Greater Atlanta and Macon Area,G1300570091006,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,20538.0,,327.0,,4.088175128053588,Healthcare,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0024642835066331493,0.00012139881167793536,0.0,0.0025856435698873126,0.001298847164840215,0.00032777291668804827,0.0008690883967840449,0.0,9.001258842254834e-05,0.001298847164840215,0.00032777291668804827,0.0007476895851061095,0.0,9.001258842254834e-05,0.0,0.00012139881167793536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.110483694791308e-06,0.0,0.0,0.00029366241662452376,9.849254319223474e-05,0.0003017729003193151,0.00015478032305382385,3.90598673243525e-05,8.91002718868313e-05,0.0,1.0726571910919835e-05,0.0,8.110483694791308e-06,0.0,0.0,0.0,0.0,0.00015158967793168547,3.825468632530213e-05,0.00010143212668048252,0.0,1.0505454112031787e-05 +97619,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8917.0,,471.0,,4.088175128053588,Healthcare,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0008828828356469064,0.00017498788175472586,0.0,0.001057870717401632,0.0005449190835068003,0.00016220090190993856,0.00031560591162361427,0.0,3.5106071937507e-05,0.00041553809653181587,0.00016220090190993856,0.0002699990168438729,0.0,3.5106071937507e-05,0.00012938098697498442,4.560689477974144e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.169203393381426e-05,0.0,0.0,0.0001052104601207425,3.910022442408939e-05,0.00011690249405455675,4.951841010905608e-05,1.9328987757973584e-05,3.217496098842808e-05,0.0,4.183483733570011e-06,8.644752281887914e-06,3.0472816519263475e-06,0.0,0.0,0.0,0.0,6.0217566165680076e-05,1.7924392517210897e-05,3.487677426007709e-05,0.0,3.87947912579863e-06 +97620,50.0,the Greater Atlanta and Macon Area,G1301350050434,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,100737.0,,15993.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0051854569616314825,0.002719677868583319,0.0,0.007905152560576221,0.003548625456055048,0.00158488154661568,0.0009436984865823106,0.0,0.0018279470713231838,0.0026174623349967154,0.00158488154661568,0.0007352248970053295,0.0,0.0002479059133751783,0.0009311631210583331,0.00020847358957698083,0.0015800411579480055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018171341647091913,0.0,0.0,0.000617941886743676,0.0003130623994235298,0.0007996553032145952,0.00031191843375351987,0.0001888675772313795,8.76154721556989e-05,0.0,2.954251649940874e-05,6.221502699780125e-05,1.3929020287142448e-05,0.00010556936918597543,0.0,0.0,0.0,0.0003589655156319826,0.0001603206167125253,9.546096595207589e-05,0.0,0.00018490820491801158 +97621,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,37753.0,,3038.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0033637649878660116,0.0008941416794835705,0.0,0.00425793735695588,0.0015911333281106986,0.0014578790575660733,0.0012088942816728106,0.0,0.0,0.0006969916486271279,0.0014578790575660733,0.0012088942816728106,0.0,0.0,0.0008941416794835705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9741778776728594e-05,0.0,0.0,0.0004008548785599252,0.00017073424006188448,0.0004605966573366538,8.305945976474335e-05,0.00017373328240343307,0.00014406213639174876,0.0,0.0,5.9741778776728594e-05,0.0,0.0,0.0,0.0,0.0,0.0001721187116826639,0.0001577041098594543,0.00013077051598757504,0.0,0.0 +97622,50.0,the Greater Atlanta and Macon Area,G1301350050421,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,31229.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002746934590888483,0.0,0.0,0.002746934590888483,0.0010658807163255153,0.0006739744439038508,0.001007079430659117,0.0,0.0,0.0010658807163255153,0.0006739744439038508,0.001007079430659117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032734676377186314,0.00011533447103107199,0.00032734676377186314,0.00012701889743327983,8.031620185230078e-05,0.00012001166448628254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012701889743327983,8.031620185230078e-05,0.00012001166448628254,0.0,0.0 +97623,50.0,the Greater Atlanta and Macon Area,G1301210010603,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,79007.0,,28180.0,,7.614023970037612,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,571051.7977528209,0.0,0.0,0.0278029228439839,0.01950573590635115,0.0,0.04730865875033505,0.04052863913161346,0.002616704077267733,0.0023718413691354236,0.000732350946692213,0.001059051058603491,0.021498195236980374,0.002616704077267733,0.0023718413691354236,0.000732350946692213,0.0005837590468854268,0.019030443894633084,0.0,0.00047529201171806406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013032603528549882,0.0,0.0,0.0033132194415878185,0.0021166027107012925,0.004616479794442807,0.0025618974960982073,0.00031182746038377584,0.0002826476547332573,8.727281689992986e-05,6.956541347098271e-05,0.0012715040921389207,0.0,3.1756260716067244e-05,0.0,0.0,0.0,0.003954871023394477,0.00025534356331032205,0.00023144933814382764,7.146436692884934e-05,0.00010334446045337646 +97624,50.0,the Greater Atlanta and Macon Area,G1300630040415,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,17800.0,,3048.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0009162341567426486,0.0005184003071995038,0.0,0.0014346344639421524,0.0005400668088548084,9.959144009643659e-05,0.0005999954304545869,0.0,0.00019499851489774073,0.0004640744798084621,9.959144009643659e-05,0.00028538789741716994,0.0,6.719806978200013e-05,7.599232904634631e-05,0.0003146075330374169,0.0001278004451157406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.463636212685292e-05,0.0,0.0,0.00010918675185233666,6.810098799097446e-05,0.00014382311397918962,5.5303313781698665e-05,1.1868217067005477e-05,3.400940393635751e-05,0.0,8.007929977559331e-06,5.077346195898886e-06,2.102016586561592e-05,8.538850065338118e-06,0.0,0.0,0.0,5.4142077413131424e-05,9.984111911672988e-06,6.0149963875914884e-05,0.0,1.9548738259672338e-05 +97625,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,96306.0,,1998.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00865241277233024,0.0005880742358765807,0.0,0.009240456318600522,0.0022403719493386013,0.0024336550898015332,0.0045664599690666855,0.0,0.0,0.0016522977134620202,0.0024336550898015332,0.0045664599690666855,0.0,0.0,0.0005880742358765807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.92906955827933e-05,0.0,0.0,0.0010310911184296518,0.00031764633732530694,0.0010703818140124451,0.00019690108900034413,0.0002900139203298406,0.000544176109099467,0.0,0.0,3.92906955827933e-05,0.0,0.0,0.0,0.0,0.0,0.0002595167715222572,0.00028190600765665505,0.0005289625898091021,0.0,0.0 +97626,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,50481.0,,3275.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004844139526848301,0.0009640219130234399,0.0,0.005808161439871741,0.001769930974401115,0.0016204725917313024,0.0024177578737393226,0.0,0.0,0.0008059090613776751,0.0016204725917313024,0.0024177578737393226,0.0,0.0,0.0009640219130234399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.440999899705638e-05,0.0,0.0,0.0005772674836967774,0.00022292570983878496,0.0006416774826938338,9.603874813502895e-05,0.00019310883393091387,0.0002881199016308345,0.0,0.0,6.440999899705638e-05,0.0,0.0,0.0,0.0,0.0,0.0001955394773290998,0.00017902752604263987,0.00026711047932209404,0.0,0.0 +97627,50.0,the Greater Atlanta and Macon Area,G1301210010604,ComStock 90.1-2007,gen4_led,200001_500000,Electricity,121562.0,,9382.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.01922375455763694,0.00276166560191138,0.0,0.02198542015954832,0.005211187218168826,0.005361044565720508,0.011413219065265283,0.0,0.0,0.0024495216162574458,0.005361044565720508,0.011413219065265283,0.0,0.0,0.00276166560191138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018451868167966874,0.0,0.0,0.002290857096936557,0.0008814273630695992,0.002475375778616226,0.00029190468292124636,0.000638865157872868,0.0013600909133625856,0.0,0.0,0.0001845186816796687,0.0,0.0,0.0,0.0,0.0,0.0005867364155006714,0.0006036091086620983,0.0012850337098483282,0.0,0.0 +97628,50.0,the Greater Atlanta and Macon Area,G1300670030320,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,40229.0,,3659.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.009181394962874255,0.002902687459954733,0.0,0.01208408242282899,0.007471012677945378,0.0017399914173275494,0.002541009426492742,0.0,0.0003319861939895799,0.004900311411980225,0.0017399914173275494,0.002541009426492742,0.0,0.0,0.002570701265965153,0.0,0.0003319861939895799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019394152129240043,0.0,0.0,0.0010941305896877993,0.0004883694128667663,0.0012880721109801996,0.0005839614390322799,0.0002073516979925586,0.00030280759660734755,0.0,0.0,0.0001717600400276496,0.0,2.2181481264750833e-05,0.0,0.0,0.0,0.0007963536439523938,0.0001854699711225433,0.000270852453788283,0.0,3.538722616626527e-05 +97629,50.0,the Greater Atlanta and Macon Area,G1300210011800,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,22418.0,,997.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.005288538416112534,0.0007907623320215182,0.0,0.006079300748134054,0.002548535770203019,0.001094462706792255,0.0022889182657353326,0.0,0.00014738400540344584,0.0019051574435849468,0.001094462706792255,0.0022889182657353326,0.0,0.0,0.0006433783266180724,0.0,0.00014738400540344584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.283164566620739e-05,0.0,0.0,0.0006302298256434414,0.0002465359586044205,0.0006830614713096488,0.0002270357042005642,0.0001304260244708515,0.0002727680969720257,0.0,0.0,4.298476850093373e-05,0.0,9.846877165273671e-06,0.0,0.0,0.0,0.0002863498064994492,0.00012297225252830564,0.0002571795578267104,0.0,1.655985445518331e-05 +97630,50.0,the Greater Atlanta and Macon Area,G1301210008102,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,25660.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0035001321048087693,0.0,0.0,0.0035001321048087693,0.00221690827576263,0.0008977221049821929,0.00038547135046450835,0.0,0.0,0.00221690827576263,0.0008977221049821929,0.00038547135046450835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041710244221585533,0.00012977724406156198,0.00041710244221585533,0.0002641837017290677,0.00010697941426404786,4.593570667292703e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002641837017290677,0.00010697941426404786,4.593570667292703e-05,0.0,0.0 +97631,50.0,the Greater Atlanta and Macon Area,G1301390001202,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,79795.0,,4659.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0039378423499480475,0.0007923875822235798,0.0,0.004730229932171628,0.0014484286851269535,0.0009802939525532994,0.0020229987773051844,0.0,0.00027854397790902954,0.0013900248746092996,0.0009802939525532994,0.0012889972752378389,0.0,0.00027854397790902954,5.840381051765392e-05,0.0007340015020673459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.294310785594249e-05,0.0,0.0,0.0004692653901543527,0.0001846618345786521,0.0005222084980102951,0.00016564669357989762,0.00011681981735935813,0.00015360742140435414,0.0,3.319357070512247e-05,3.9022308133063595e-06,4.90420616907276e-05,0.0,0.0,0.0,0.0,0.0001599038057306279,0.00010822261072125403,0.00022333526448432137,0.0,3.075073187127459e-05 +97632,50.0,the Greater Atlanta and Macon Area,G1300630040512,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,36060.0,,3184.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003010023704281206,0.0009276401004283782,0.0,0.003937663804709585,0.0027295235134735672,0.0009647566389413112,0.00024338365229470532,0.0,0.0,0.0018018834130451892,0.0009647566389413112,0.00024338365229470532,0.0,0.0,0.0009276401004283782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.19795979472066e-05,0.0,0.0,0.00035869840520075854,0.00014718593508610393,0.0004206780031479652,0.00021472678294782844,0.00011496808722897773,2.9003535023952344e-05,0.0,0.0,6.19795979472066e-05,0.0,0.0,0.0,0.0,0.0,0.0002916070437044753,0.00010306920969437768,2.6001749749112116e-05,0.0,0.0 +97633,46.0,the Tallahassee-Valdosta Area,G1301850011200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,65523.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0032015359008960944,0.0,0.0,0.0032015359008960944,0.001113413506095056,0.0006799061693747648,0.0006771579633546567,0.0,0.0007310759924330372,0.001113413506095056,0.0006799061693747648,0.0006771579633546567,0.0,0.0007310759924330372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003815213289366683,9.017973861227492e-05,0.0003815213289366683,0.00013268350368412986,8.102320677381606e-05,8.069570795904722e-05,0.0,8.712102341525434e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00013268350368412986,8.102320677381606e-05,8.069570795904722e-05,0.0,8.712102341525434e-05 +97634,85.0,Rural Climate Zone 3A,G1302850960902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,281354.0,,5519.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02506834456018405,0.0016246770677940873,0.0,0.02669302162797814,0.005745523953418129,0.008032083760234773,0.012915413914325236,0.0,0.0,0.004120846885624041,0.008032083760234773,0.012915413914325236,0.0,0.0,0.0016246770677940873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010855193065473054,0.0,0.0,0.0029873469264006473,0.0010114618064504986,0.0030958988570553778,0.000491073483068731,0.0009571681399273752,0.0015391053034045409,0.0,0.0,0.00010855193065473054,0.0,0.0,0.0,0.0,0.0,0.0006663749532921949,0.0009315737753353556,0.001497950128427827,0.0,0.0 +97635,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,114544.0,,4179.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010712606043095027,0.0012301621788371182,0.0,0.011942768221932147,0.003770248823279084,0.0032293138226757757,0.004943174886370988,0.0,0.0,0.002540086644441966,0.0032293138226757757,0.004943174886370988,0.0,0.0,0.0012301621788371182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.219219093346457e-05,0.0,0.0,0.0012766016468522855,0.0004765115601850228,0.00135879383778575,0.0003026974743958056,0.00038483141521740134,0.0005890691000148903,0.0,0.0,8.219219093346457e-05,0.0,0.0,0.0,0.0,0.0,0.0004289617593501096,0.0003674166358240087,0.0005624119508878411,0.0,0.0 +97636,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,20177.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0019404731165974492,0.0,0.0,0.0019404731165974496,0.0009920108339669447,0.00043450344596287604,0.0005139281470613308,0.0,0.0,0.0009920108339669447,0.00043450344596287604,0.0005139281470613308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023124125221508544,9.162662249695957e-05,0.00023124125221508544,0.00011821541122903133,5.1778671952129245e-05,6.124351183149853e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001182154112290313,5.177867195212923e-05,6.124351183149851e-05,0.0,0.0 +97637,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,11988.0,,1861.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010307411171146456,0.0005478401620202922,0.0,0.001578581279134938,0.0007602429272066932,0.00036094045966728245,0.0004573978922609623,0.0,0.0,0.00021240276518640097,0.00036094045966728245,0.0004573978922609623,0.0,0.0,0.0005478401620202922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.660383018944905e-05,0.0,0.0,0.00012283229688117694,7.585093615546619e-05,0.000159436127070626,2.531180630961191e-05,4.301288166556071e-05,5.4507608906004325e-05,0.0,0.0,3.660383018944905e-05,0.0,0.0,0.0,0.0,0.0,7.678425529858947e-05,3.645485332499237e-05,4.619701844704415e-05,0.0,0.0 +97638,81.0,the Columbus-Albany Area,G1300530020201,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13113.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031486582972554337,0.0,0.0,0.0031486582972554337,0.0019576764354094067,0.00040294886325790573,0.0007253410366937261,0.0,6.269196189439503e-05,0.0019576764354094067,0.00040294886325790573,0.0007253410366937261,0.0,6.269196189439503e-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.0003752178055109144,0.00012037742567894491,0.0003752178055109144,0.00023329144881647866,4.801841734828408e-05,8.64370936257084e-05,0.0,7.470845720443212e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00023329144881647866,4.801841734828408e-05,8.64370936257084e-05,0.0,7.470845720443212e-06 +97639,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9026.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0018059916621715167,0.0,0.0,0.0018059916621715167,0.0009866126826361982,0.00024059487750764528,0.000539167413706545,0.0,3.969939539486756e-05,0.0009866126826361982,0.00024059487750764528,0.000539167413706545,0.0,3.969939539486756e-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.00021521738428204043,5.663286485511458e-05,0.00021521738428204043,0.00011757319001192803,2.8671339571187748e-05,6.425179190944411e-05,0.0,4.730918870460679e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011757319001192803,2.8671339571187748e-05,6.425179190944411e-05,0.0,4.730918870460679e-06 +97640,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,32709.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002664341769080152,0.0,0.0,0.002664341769080152,0.0015740814172620504,0.0007406298486901403,0.00034960012952852353,0.0,0.0,0.0015740814172620504,0.0007406298486901403,0.00034960012952852353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003175032427930667,7.31515034944823e-05,0.0003175032427930667,0.00018757952159176333,8.825908950473828e-05,4.166101214729076e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018757952159176333,8.825908950473828e-05,4.166101214729076e-05,0.0,0.0 +97641,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,49281.0,,1560.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004241764282280355,0.00045451054198651815,0.0,0.004696274824266874,0.0024615676192337207,0.001809385692106314,0.0004253215129268388,0.0,0.0,0.0020070570772472026,0.001809385692106314,0.0004253215129268388,0.0,0.0,0.00045451054198651815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0367590682896844e-05,0.0,0.0,0.0005054828876375162,0.00018805907391538653,0.000535850478320413,0.00023917712997357336,0.00021562101135997426,5.06847463039687e-05,0.0,0.0,3.0367590682896844e-05,0.0,0.0,0.0,0.0,0.0,0.0002808677591372309,0.00020645303455651918,4.852968462666294e-05,0.0,0.0 +97642,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,71720.0,,4716.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006740752176021386,0.0013740105177655788,0.0,0.008114762693786966,0.005183862216041103,0.002388367244588739,0.0005425332331571229,0.0,0.0,0.003809851698275524,0.002388367244588739,0.0005425332331571229,0.0,0.0,0.0013740105177655788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.180273042740193e-05,0.0,0.0,0.000803282133193854,0.0003161027905904775,0.0008950848636212559,0.0004540125077182901,0.00028461701082978415,6.465261464577979e-05,0.0,0.0,9.180273042740193e-05,0.0,0.0,0.0,0.0,0.0,0.0005717969557174021,0.00026344471798749915,5.9843189916354564e-05,0.0,0.0 +97643,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,61650.0,,3094.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005303562933124911,0.0009106833772780324,0.0,0.0062142463104029435,0.0024351588805101203,0.0015227568852794167,0.0022563305446134064,0.0,0.0,0.0015244755032320881,0.0015227568852794167,0.0022563305446134064,0.0,0.0,0.0009106833772780324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.084734768882496e-05,0.0,0.0,0.0006320139454880089,0.00024045952783313,0.000692861293176834,0.00018166839721647882,0.0001814635932899957,0.0002688819549815344,0.0,0.0,6.084734768882496e-05,0.0,0.0,0.0,0.0,0.0,0.0002715095679771809,0.0001697807347871624,0.00025157099041249074,0.0,0.0 +97644,50.0,the Greater Atlanta and Macon Area,G1301210011422,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,92889.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.009082404824674862,0.0,0.0,0.009082404824674862,0.007001023549603483,0.0014917385891863053,0.0005896123122856384,0.0,0.0,0.007001023549603483,0.0014917385891863053,0.0005896123122856384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010823331394931314,0.00037297889362112414,0.0010823331394931314,0.0008342988387306273,0.0001777676883715506,7.026299282610593e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008342988387306273,0.0001777676883715506,7.026299282610593e-05,0.0,0.0 +97645,50.0,the Greater Atlanta and Macon Area,G1300670030904,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4948.0,,1104.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001135568122440691,0.0008759506179730047,0.0,0.0020115187404136955,0.0013314184730553707,0.00024382045338347828,0.000393602963925364,0.0,4.259414297574332e-05,0.000455467855082366,0.00024382045338347828,0.000393602963925364,0.0,4.259414297574332e-05,0.0008759506179730047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.852496354101485e-05,0.0,0.0,0.0001353229578138316,9.477370543737018e-05,0.00019384792135484642,5.4277023210544105e-05,2.9055504707587432e-05,4.6904730971305495e-05,0.0,5.075842918727112e-06,5.852496354101485e-05,0.0,0.0,0.0,0.0,0.0,0.0001283073820143217,2.349671773998139e-05,3.7931098956774564e-05,0.0,4.104752251048309e-06 +97646,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Propane,104135.0,,1577.0,9048.0,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.012079937356218127,0.0005859149158576638,0.0010879394942487684,0.01375383051474833,0.00794416309332864,0.0015055312572405048,0.004075249224957491,0.0,0.00022884819079792098,0.007085071789877794,0.0015055312572405048,0.003489334309099827,0.0,0.0,0.0,0.0005859149158576638,0.0,0.0,0.0,0.0,0.0,0.0008590913034508475,0.00022884819079792098,0.0,3.91486335557424e-05,0.0,8.774083691139726e-05,0.0014395436475924158,0.000545838653315306,0.0015664331180595553,0.0008443148161364222,0.00017941135733595418,0.0004158174741200393,0.0,0.0,0.0,3.91486335557424e-05,0.0,6.928454233581183e-05,1.845629457558544e-05,0.0,0.0009047661414260293,0.00017146597953832056,0.0004641329078088292,0.0,2.6063676202020933e-05 +97647,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,382727.0,,18022.0,,3.3063363735822096,Lodging,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,495950.45603733143,0.0,0.0,0.03482099266775104,0.005416933828065274,0.0,0.040237926495816305,0.014665254250786536,0.0034213912501615948,0.01624920324506342,0.0,0.005902109087826963,0.014665254250786536,0.0034213912501615948,0.010832269416998148,0.0,0.005902109087826963,0.0,0.005416933828065274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003619275258608399,0.0,0.0,0.004149549491969216,0.0019347820796160745,0.004511477017830057,0.0017476296240776013,0.00040772049376652407,0.0012908603291429783,0.0,0.0007033427794728363,0.0,0.0003619275258608399,0.0,0.0,0.0,0.0,0.0016442685614015704,0.0003836064464135291,0.001821860950160424,0.0,0.0006617445734741277 +97648,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,20572.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004939679979080136,0.0,0.0,0.004939679979080136,0.00306313918300899,0.0007625592198764144,0.0009832216926128868,0.0,0.00013084259065558433,0.00306313918300899,0.0007625592198764144,0.0009832216926128868,0.0,0.00013084259065558433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005886563854297485,0.00016863751466034078,0.0005886563854297485,0.0003650310237049169,9.087336749539189e-05,0.0001171694786101105,0.0,1.559237173294034e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003650310237049169,9.087336749539189e-05,0.0001171694786101105,0.0,1.559237173294034e-05 +97649,50.0,the Greater Atlanta and Macon Area,G1301210000200,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,53899.0,,5311.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.0046024895668601885,0.001563389924017575,0.0,0.006165879490877764,0.002340604203506898,0.0016227743122036301,0.0022025009751672356,0.0,0.0,0.000777214279489323,0.0016227743122036301,0.0022025009751672356,0.0,0.0,0.001563389924017575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010445740966923874,0.0,0.0,0.000548470020749855,0.000254570331691437,0.0006529274304190938,9.261916313031412e-05,0.00019338296105988627,0.0002624678965596546,0.0,0.0,0.00010445740966923874,0.0,0.0,0.0,0.0,0.0,0.00024785510169066414,0.00017184148074655156,0.00023323084798187806,0.0,0.0 +97650,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,11977.0,,640.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.002653242925556982,0.0005073251903169116,0.0,0.0031605681158738937,0.0019020972818565918,0.0007895217259154287,0.0003851668424039547,0.0,8.37822656979184e-05,0.0014785543572375986,0.0007895217259154287,0.0003851668424039547,0.0,0.0,0.00042354292461899325,0.0,8.37822656979184e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3897692307044704e-05,0.0,0.0,0.0003161813128965818,0.00011544924347643241,0.0003500790052036265,0.0001761961761425247,9.408562384385195e-05,4.589951291020517e-05,0.0,0.0,2.8299654761065524e-05,0.0,5.598037545979179e-06,0.0,0.0,0.0,0.00021068500972609515,8.745104369272567e-05,4.2662844173163995e-05,0.0,9.280107611641638e-06 +97651,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,19602.0,,6010.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004405457183139529,0.004661381561551418,0.0,0.009066838744690948,0.0036824000609407535,0.00045686342433718177,0.0038107261236705065,0.00041077277798812103,0.0007061572185374527,0.002220922267760183,0.00045686342433718177,0.0013169795738371113,0.00041077277798812103,0.0,0.0014614777931805706,0.002493746549833395,0.0007061572185374527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031144684922637374,0.0,0.0,0.0005249915300678442,0.00045595131518388156,0.0008364383792942179,0.00026466387733275955,5.4443708837475106e-05,0.00015694242227185082,4.895115768042011e-05,0.0,9.764758535426787e-05,0.00016661787829620563,4.718138557590025e-05,0.0,0.0,0.0,0.0003397105458272051,4.214678489072703e-05,0.0003515489436363349,3.789480836192802e-05,6.514475618596797e-05 +97652,50.0,the Greater Atlanta and Macon Area,G1300590130500,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,29696.0,,2462.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025322301052297545,0.0007247657423265488,0.0,0.003256995847556303,0.0014742979969353438,0.0007352615876803633,0.001047436262940596,0.0,0.0,0.0007495322546087951,0.0007352615876803633,0.001047436262940596,0.0,0.0,0.0007247657423265488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8423844228837405e-05,0.0,0.0,0.0003017610672755845,0.00013076252413543276,0.00035018491150442193,8.932033966467018e-05,8.761973130598894e-05,0.0001248209963049254,0.0,0.0,4.8423844228837405e-05,0.0,0.0,0.0,0.0,0.0,0.00015851322437985548,7.905368200196879e-05,0.00011261800512259767,0.0,0.0 +97653,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,13127.0,,2992.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011815498424615574,0.0008806689423188789,0.0,0.0020621880951741385,0.0010766527681360088,0.0004339203434432197,0.0005515842939886121,0.0,0.0,0.00019598382581712998,0.0004339203434432197,0.0005515842939886121,0.0,0.0,0.0008806689423188789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8840769902689e-05,0.0,0.0,0.00014080139242615897,0.00010216671364010726,0.00019964216232884797,2.3354745247622105e-05,5.170885422112887e-05,6.573047859935986e-05,0.0,0.0,5.8840769902689e-05,0.0,0.0,0.0,0.0,0.0,0.00010423165918328214,4.200819306745415e-05,5.339933899153783e-05,0.0,0.0 +97654,35.0,Eastern Counties in South Carolina and Georgia,G1300510003501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,8931.0,,451.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007058916344534617,0.00013285530566275533,0.0,0.0008387469401162171,0.00029195022471004654,0.0002646671647113888,0.0002821295506947817,0.0,0.0,0.00015909491904729124,0.0002646671647113888,0.0002821295506947817,0.0,0.0,0.00013285530566275533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.87616129873682e-06,0.0,0.0,8.411897878073021e-05,3.7363173110145564e-05,9.299514007946704e-05,1.8958862049445913e-05,3.153958840941773e-05,3.362052832186656e-05,0.0,0.0,8.87616129873682e-06,0.0,0.0,0.0,0.0,0.0,3.236965852820965e-05,2.9344679401585208e-05,3.128080214967217e-05,0.0,0.0 +97655,85.0,Rural Climate Zone 3A,G1300090970300,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,5919.0,,141.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010569136953146095,0.00011223349906424016,0.0,0.0011691471943788498,0.0006802656815058036,0.00021487297757472068,0.00016194045038156392,0.0,0.00011223349906424016,0.0006802656815058036,0.00021487297757472068,0.00016194045038156392,0.0,0.0,0.0,0.0,0.00011223349906424016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.497625947304832e-06,0.0,0.0,0.00012595173008214913,3.969600709779587e-05,0.00013344935602945397,8.106682681944414e-05,2.560627551087123e-05,1.9298340050148522e-05,0.0,0.0,0.0,0.0,7.497625947304832e-06,0.0,0.0,0.0,7.764720948940711e-05,2.452613376942002e-05,1.8484284034074057e-05,0.0,1.2810609516975736e-05 +97656,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,11774.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0025988216710365174,0.0,0.0,0.0025988216710365174,0.001824518046689122,0.0003054372233192623,0.0004244527024301257,0.0,4.441369859800809e-05,0.001824518046689122,0.0003054372233192623,0.0004244527024301257,0.0,4.441369859800809e-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.0003096920309725805,9.910037761903773e-05,0.0003096920309725805,0.00021742111269986404,3.639783178606517e-05,5.058046919200825e-05,0.0,5.292617294643109e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00021742111269986404,3.639783178606517e-05,5.058046919200825e-05,0.0,5.292617294643109e-06 +97657,85.0,Rural Climate Zone 3A,G1301750950201,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,28524.0,,5745.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007192867613126648,0.003952200722786263,0.0,0.011145068335912911,0.004114072697368497,0.000879215124680376,0.004402530420793284,0.0003755974882087551,0.0013736526048619985,0.004114072697368497,0.000879215124680376,0.00045032969800702183,0.0003755974882087551,0.0013736526048619985,0.0,0.003952200722786263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026406246386346844,0.0,0.0,0.0008571586169818226,0.0005404389515493797,0.0011212210808452911,0.0004902652256526338,0.00010477418198622174,5.366482491977211e-05,4.475914765167169e-05,0.00016369523677152336,0.0,0.00026406246386346844,0.0,0.0,0.0,0.0,0.0004138857562277807,8.845118779694862e-05,0.0004429053073591394,3.778602418571008e-05,0.00013819280527571228 +97658,50.0,the Greater Atlanta and Macon Area,G1300890022100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,23825.0,,2592.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.002119976623832713,0.0007629743021671889,0.0,0.0028829509259999018,0.0018169474512491957,0.00043281551761650236,0.0006332186467405015,0.0,0.0,0.0010539731490820067,0.00043281551761650236,0.0006332186467405015,0.0,0.0,0.0007629743021671889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.097683377765974e-05,0.0,0.0,0.00025263402946103366,0.0001325120340115188,0.0003036108632386934,0.00012560019794696255,5.157789335952051e-05,7.545959538303812e-05,0.0,0.0,5.097683377765974e-05,0.0,0.0,0.0,0.0,0.0,0.00019134733760401543,4.558089828777498e-05,6.668585934706523e-05,0.0,0.0 +97659,50.0,the Greater Atlanta and Macon Area,G1301350050511,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,32428.0,,2360.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002914346393242452,0.0006946899281548002,0.0,0.0036090363213972516,0.001552587182600784,0.0008744696418467431,0.001181979496949725,0.0,0.0,0.0008578972544459836,0.0008744696418467431,0.001181979496949725,0.0,0.0,0.0006946899281548002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.641490810941962e-05,0.0,0.0,0.0003472967541646754,0.0001539587397577213,0.00039371166227409503,0.00010223387740274358,0.00010420877522765169,0.0001408541015342801,0.0,0.0,4.641490810941962e-05,0.0,0.0,0.0,0.0,0.0,0.00016937254880564694,9.539635116956125e-05,0.00012894276229888686,0.0,0.0 +97660,85.0,Rural Climate Zone 3A,G1300310110500,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6474.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001700870971448857,0.0,0.0,0.0017008709714488568,0.0009799134096633143,0.0002790536667964232,0.00038574579192012984,0.0,5.6240810142729056e-05,0.0009799134096633143,0.0002790536667964232,0.00038574579192012984,0.0,5.6240810142729056e-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.00020268528417032302,6.863565733019265e-05,0.00020268528417032302,0.00011677195462436115,3.3253593425269626e-05,4.596762292100105e-05,0.0,6.701969036509588e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011677195462436117,3.325359342526963e-05,4.596762292100106e-05,0.0,6.701969036509589e-06 +97661,50.0,the Greater Atlanta and Macon Area,G1300630040523,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Electricity,14335.0,,2290.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0028029599072321113,0.001575042283473834,0.0,0.0043780021907059465,0.000815599510389529,0.00025116333849666987,0.002362240685341181,0.00037409136881742723,0.0005749072876611382,0.000815599510389529,0.00025116333849666987,0.000787198401867347,0.00037409136881742723,0.0005749072876611382,0.0,0.001575042283473834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010523383900743094,0.0,0.0,0.00033402195514583134,0.00019502633326753073,0.00043925579415326224,9.719302169588031e-05,2.9930527785699327e-05,9.380853026151797e-05,4.457956394352019e-05,6.851031145921354e-05,0.0,0.00010523383900743094,0.0,0.0,0.0,0.0,8.183111726341919e-05,2.5199839312037806e-05,0.00023700945386081936,3.753351280742125e-05,5.7681870909564564e-05 +97662,50.0,the Greater Atlanta and Macon Area,G1300670030101,ComStock 90.1-2007,gen1_t12_incandescent,_1000,NaturalGas,2908.0,,492.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,3204.5843851935597,0.0,0.0,0.00023560801083864088,0.00014339376294562631,0.0,0.00037900177378426725,0.0002482434282047456,0.00010755291560907921,2.320542997044239e-05,0.0,0.0,0.00010484966525911929,0.00010755291560907921,2.320542997044239e-05,0.0,0.0,0.00014339376294562631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.581037238393538e-06,0.0,0.0,2.8076251534181643e-05,1.829469627265414e-05,3.7657288772575183e-05,1.2494420561556664e-05,1.281655365251221e-05,2.765277320112772e-06,0.0,0.0,9.581037238393538e-06,0.0,0.0,0.0,0.0,0.0,2.466525253552307e-05,1.0686364765482348e-05,2.3056714715697577e-06,0.0,0.0 +97663,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,16640.0,,2721.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015174782729962118,0.0008009987243700426,0.0,0.0023184769973662546,0.0013467519931620912,0.000445244808167072,0.0005264801960370913,0.0,0.0,0.0005457532687920487,0.000445244808167072,0.0005264801960370913,0.0,0.0,0.0008009987243700426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3518516425241015e-05,0.0,0.0,0.00018083383941745634,0.00011150120971319267,0.00023435235584269733,6.503596178377678e-05,5.3058636538212526e-05,6.273924109546705e-05,0.0,0.0,5.3518516425241015e-05,0.0,0.0,0.0,0.0,0.0,0.00013613009863454168,4.500547982111367e-05,5.3216777387041973e-05,0.0,0.0 +97664,50.0,the Greater Atlanta and Macon Area,G1300210011800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,3894.0,,76.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0005791149303226305,6.004533553473719e-05,0.0,0.0006391602658573676,0.0002315798064700608,0.00019709095672076958,0.00018236909759517287,0.0,2.812040507136452e-05,0.00019973758308042744,0.00019709095672076958,0.00018236909759517287,0.0,0.0,3.1842223389633354e-05,0.0,2.812040507136452e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.010873435197813e-06,0.0,0.0,6.900959114570646e-05,2.069554526163465e-05,7.302046458090427e-05,2.3801508514264657e-05,2.3486126206829264e-05,2.1731812121719902e-05,0.0,0.0,2.1269783368473246e-06,0.0,1.8783704792937415e-06,0.0,0.0,0.0,2.645669006554503e-05,2.251653300935493e-05,2.083464342661671e-05,0.0,3.21259807938761e-06 +97665,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,4966.0,,281.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,1870.6521585294563,0.0,0.0,0.0002556363509543213,4.776559366562225e-05,0.0,0.00030341967498136353,0.00017671851227366627,4.189684403558478e-05,1.276586022243802e-05,0.0,7.203845844967453e-05,0.00016099168169407942,4.189684403558478e-05,1.276586022243802e-05,0.0,3.999969536363913e-05,1.5726830579586833e-05,0.0,3.203876308603541e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1914877905471878e-06,0.0,0.0,3.046465441627239e-05,1.2952488365200965e-05,3.365614220681958e-05,1.9185674996514998e-05,4.992924010656934e-06,1.521331056992379e-06,0.0,4.766837311909454e-06,1.0507979473702134e-06,0.0,2.1406898431769733e-06,0.0,0.0,0.0,1.9602101874327753e-05,4.647312805160679e-06,1.4160242148606385e-06,0.0,7.990703312470518e-06 +97666,50.0,the Greater Atlanta and Macon Area,G1301510070403,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,241059.0,,32496.0,,7.614023970037612,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.050505946525487976,0.02249345064748809,0.0,0.07299932500595332,0.059538659758813166,0.005445074032210698,0.004932327335694323,0.000785249374355338,0.002298086671902526,0.0402682605135936,0.005445074032210698,0.0027255319475487593,0.000785249374355338,0.0012818306577795711,0.019270399245219564,0.002206795388145564,0.0010162560141229546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015028786120438067,0.0,0.0,0.006018693288760826,0.0027297998290838773,0.007521571900804632,0.004798688589687742,0.0006488786526935749,0.00032479622637577026,9.3576607599088e-05,0.00015275321240465042,0.0012875334836373702,0.00014744494484092183,6.790018356551428e-05,0.0,0.0,0.0,0.006134636316389708,0.0005610396511904309,0.000508208188099047,8.090909921144956e-05,0.00023678608172864626 +97667,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010300,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,NaturalGas,9179.0,,134.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0019479997077819077,0.00010644400390248866,0.0,0.0020544437116843963,0.0013016439265092204,0.0002882341519814864,0.0003581216292912011,0.0,0.00010644400390248866,0.0013016439265092204,0.0002882341519814864,0.0003581216292912011,0.0,0.0,0.0,0.0,0.00010644400390248866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.112815278506708e-06,0.0,0.0,0.0002321401791271785,8.356755187831579e-05,0.00023925299440568517,0.00015511493818636842,3.434842798192235e-05,4.267681295888773e-05,0.0,0.0,0.0,0.0,7.1128152785067074e-06,0.0,0.0,0.0,0.00015158468703529282,3.3566694263438524e-05,4.170553404897813e-05,0.0,1.239607905797572e-05 +97668,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,105605.0,,13634.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.004861044538728776,0.002318617093261725,0.0,0.007179661631990503,0.003739457336019076,0.0011204701899402369,0.0010599210056907566,0.0,0.001259830830701852,0.0030293031700617023,0.0011204701899402369,0.0005201910737029292,0.0,0.00019108010502390908,0.0007101541659573749,0.0005397299319878274,0.0010687507256779427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001549164152154294,0.0,0.0,0.0005792810967311896,0.00030663612010378466,0.0007341975119466189,0.000360996088125438,0.00013352422412754193,6.199014497472826e-05,0.0,2.2770639503481597e-05,4.744834235896027e-05,3.606159313282675e-05,7.140766436255479e-05,0.0,0.0,0.0,0.0003823996746451921,0.00011458011085076795,0.00010838830645872157,0.0,0.00012883123311181768 +97669,50.0,the Greater Atlanta and Macon Area,G1300890023316,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,130399.0,,10758.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00671230703531933,0.0018295428038509881,0.0,0.0085418321088089,0.004014756657788237,0.001996509617343626,0.0011549912036250796,0.0,0.0013755923604133766,0.003551852381833498,0.001996509617343626,0.0009614111176409431,0.0,0.0002025339185012632,0.0004629042759547385,0.0001935800859841365,0.0011730584419121135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012223883483206252,0.0,0.0,0.0007998920871925661,0.00034402033254142317,0.0009221309220246287,0.0004232670824137177,0.00023792002310291357,0.00011456942322415176,0.0,2.413555845178308e-05,3.0928426059440515e-05,1.2933834675845398e-05,7.837657409677662e-05,0.0,0.0,0.0,0.00043341185022038794,0.00021553259661630567,0.00012468672879097884,0.0,0.00014850166047280253 +97670,50.0,the Greater Atlanta and Macon Area,G1301350050212,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,55074.0,,16678.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002834925217813663,0.0028362018038359063,0.0,0.0056711447520109886,0.0017495079524008702,0.0008155611645995889,0.0025687747625372497,0.0,0.0005373008724732801,0.0013325962339697487,0.0008155611645995889,0.0005871586487864686,0.0,9.96269008192767e-05,0.00041691171843112157,0.001981616113750781,0.00043767397165400343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018949877244753367,0.0,0.0,0.00033783334325595654,0.00027210380943464707,0.0005273321157034901,0.00015880328627486498,9.718907332549981e-05,6.997072377597398e-05,0.0,1.1872372777424744e-05,2.785565496603156e-05,0.0001324002475811666,2.924286990033551e-05,0.0,0.0,0.0,0.00016267821935817944,7.5835058567567e-05,0.00023885784784706082,0.0,4.996098993068286e-05 +97671,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5824.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010917333733588578,0.0,0.0,0.0010917333733588578,0.0005423929895823781,0.00028980558638253326,0.0002026323306613032,0.0,5.6819759658904194e-05,0.0005423929895823781,0.00028980558638253326,0.0002026323306613032,0.0,5.6819759658904194e-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.0001300975714527302,4.226582014069952e-05,0.0001300975714527302,6.463483890810644e-05,3.453499169472476e-05,2.4146897731756746e-05,0.0,6.770987241517096e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.463483890810644e-05,3.453499169472476e-05,2.4146897731756746e-05,0.0,6.770987241517096e-06 +97672,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,36228.0,,3267.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0076152882171056716,0.0009617201925511121,0.0,0.008577008409656781,0.0037216057972972254,0.0025442604308984536,0.0023111421814611035,0.0,0.0,0.002759885604746114,0.0025442604308984536,0.0023111421814611035,0.0,0.0,0.0009617201925511121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.425670711946548e-05,0.0,0.0,0.0009074979673851128,0.0003245198644657718,0.0009717546745045782,0.0003288897944659075,0.0003031941935372029,0.0002754139793820024,0.0,0.0,6.425670711946548e-05,0.0,0.0,0.0,0.0,0.0,0.00042164909458583993,0.0002882586618545172,0.0002618469180642212,0.0,0.0 +97673,50.0,the Greater Atlanta and Macon Area,G1301170130205,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,20325.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0019080695166795697,0.0,0.0,0.0019080695166795697,0.0012390302418642102,0.0005649793231416217,0.00010405995167373773,0.0,0.0,0.0012390302418642102,0.0005649793231416217,0.00010405995167373773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022738253556289174,6.623589725477229e-05,0.00022738253556289174,0.0001476538645847985,6.732796154099568e-05,1.2400709437097532e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001476538645847985,6.732796154099568e-05,1.2400709437097532e-05,0.0,0.0 +97674,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,17048.0,,936.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001518982063704799,0.00027550059573447784,0.0,0.0017944519698329794,0.0007456039850026891,0.0005035243705264096,0.0005453236143038808,0.0,0.0,0.00047010338926821134,0.0005035243705264096,0.0005453236143038808,0.0,0.0,0.00027550059573447784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.840656853415265e-05,0.0,0.0,0.0001810134963815222,7.516664454413411e-05,0.00019942006491567484,5.602110794165387e-05,6.0003807154897175e-05,6.498492407724555e-05,0.0,0.0,1.840656853415265e-05,0.0,0.0,0.0,0.0,0.0,8.286005844138667e-05,5.595739777105706e-05,6.060260870323111e-05,0.0,0.0 +97675,50.0,the Greater Atlanta and Macon Area,G1300890023206,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5719.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001013244360380255,0.0,0.0,0.001013244360380255,0.0005561223638231031,0.00023645952382067998,0.00018088037026786535,0.0,3.9782102468606875e-05,0.0005561223638231031,0.00023645952382067998,0.00018088037026786535,0.0,3.9782102468606875e-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.00012074360401367273,3.529437952639214e-05,0.00012074360401367273,6.627050799019962e-05,2.817777845686805e-05,2.1554669984319835e-05,0.0,4.74064758228525e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.627050799019962e-05,2.817777845686805e-05,2.1554669984319835e-05,0.0,4.74064758228525e-06 +97676,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,7934.0,,374.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0019050747365112074,0.0002966702735028957,0.0,0.0022017450100141026,0.0015342989249378918,0.0002430760897198245,0.00038955031731213795,0.0,3.4736970970509115e-05,0.0012723656224055053,0.0002430760897198245,0.00038955031731213795,0.0,0.0,0.00026193330253238657,0.0,3.4736970970509115e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9823704953338823e-05,0.0,0.0,0.00022702306460454144,8.975271493714538e-05,0.00024684676955788026,0.00015162467768847204,2.8966778973376194e-05,4.6421751944403494e-05,0.0,0.0,1.7502557453923628e-05,0.0,2.3211474994151954e-06,0.0,0.0,0.0,0.00017201661928808974,2.7252269100732883e-05,4.367410257381827e-05,0.0,3.894505961996534e-06 +97677,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen1_t12_incandescent,200001_500000,Electricity,336491.0,,1821.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.027928922763192927,0.000535901905170486,0.0,0.02846482466836341,0.00564891307279296,0.01178413364697932,0.011031777948591137,0.0,0.0,0.005113011167622475,0.01178413364697932,0.011031777948591137,0.0,0.0,0.000535901905170486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5805010264887654e-05,0.0,0.0,0.0033282373275876857,0.0008668012531191219,0.003364042337852574,0.0006093079482063182,0.0014042930982231256,0.0013146362811582424,0.0,0.0,3.5805010264887654e-05,0.0,0.0,0.0,0.0,0.0,0.0006676023113131997,0.001392677628097638,0.001303762398441737,0.0,0.0 +97678,50.0,the Greater Atlanta and Macon Area,G1301350050103,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,2415.0,,119.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.00047548296692727837,9.47823065052463e-05,0.0,0.0005702652734325247,0.0002820311214510383,0.0001492035610257106,0.00010859438781971064,0.0,3.0518910209804434e-05,0.000187248814945792,0.0001492035610257106,0.00010859438781971064,0.0,3.0518910209804434e-05,9.47823065052463e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.334224211679204e-06,0.0,0.0,5.6664254359635024e-05,2.470106574738615e-05,6.299847857131423e-05,2.2314815075702502e-05,1.778088621756507e-05,1.2941409979857502e-05,0.0,3.6369994535928546e-06,6.3342242116792045e-06,0.0,0.0,0.0,0.0,0.0,3.1156607966378756e-05,1.6482850666084247e-05,1.1996664592332935e-05,0.0,3.3714921816990492e-06 +97679,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,23310.0,,4524.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0020689398085596334,0.0013317447756825143,0.0,0.0034007152738484456,0.0016456994481080138,0.0007748511798044,0.0009801646459360316,0.0,0.0,0.00031395467242549953,0.0007748511798044,0.0009801646459360316,0.0,0.0,0.0013317447756825143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.898035187490006e-05,0.0,0.0,0.0002465528731519714,0.00016502607472469342,0.00033553322502687143,3.741357105013227e-05,9.233800995833232e-05,0.00011680494938407864,0.0,0.0,8.898035187490006e-05,0.0,0.0,0.0,0.0,0.0,0.00016237373575346043,7.645106818408493e-05,9.670842108932607e-05,0.0,0.0 +97680,50.0,the Greater Atlanta and Macon Area,G1301210007500,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,69341.0,,12240.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011736844800338308,0.003565951694790377,0.0,0.015302796495128685,0.011376522790208258,0.0026410755919108343,0.0012852284866090309,0.0,0.0,0.007810571095417881,0.0026410755919108343,0.0012852284866090309,0.0,0.0,0.003565951694790377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023825640008075168,0.0,0.0,0.0013986561284490555,0.0006378514984051583,0.001636912528529807,0.0009307700080500668,0.00031473165277066874,0.00015315808718891906,0.0,0.0,0.00023825640008075168,0.0,0.0,0.0,0.0,0.0,0.0012169261149310067,0.000282511090477438,0.00013747857213048788,0.0,0.0 +97681,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,31208.0,,6630.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0016064416661024643,0.0011275091434239978,0.0,0.0027339508095264617,0.001098626384670732,0.00048263816821525734,0.0008029548776299311,0.0,0.00034973137901054153,0.0008895676931668893,0.00048263816821525734,0.0001631547857873259,0.0,7.10810189329917e-05,0.00020905869150384258,0.0006398000918426053,0.0002786503600775498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.533404848915263e-05,0.0,0.0,0.00019143561066032168,0.00012117505418109267,0.0002667696591494743,0.00010600754335404241,5.7514775923630474e-05,1.944274523526864e-05,0.0,8.470546147380133e-06,1.3968168413253216e-05,4.274797364025463e-05,1.8617906435644772e-05,0.0,0.0,0.0,0.00010720024118575632,4.709419759077953e-05,7.834961707114478e-05,0.0,3.41256033017937e-05 +97682,50.0,the Greater Atlanta and Macon Area,G1301210011411,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,564635.0,,17873.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.0270371877026913,0.0030393917457097112,0.0,0.03007657944840101,0.013636811036113852,0.004992249213237167,0.004246315177934126,0.0,0.007201221751477286,0.011649397094178714,0.004992249213237167,0.003194319643798133,0.0,0.007201221751477286,0.0019874139419351388,0.0010519955341359926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002030749132826267,0.0,0.0,0.0032219691253399605,0.001073681129606854,0.0034250440386225873,0.0013882360169631363,0.0005949166388134282,0.0003806608653961466,0.0,0.000858155604167249,0.00013278772454549805,7.028837337929034e-05,0.0,0.0,0.0,0.0,0.0015529252063119022,0.0005685045879785141,0.00048355952548550515,0.0,0.0008200567379349331 +97683,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,3615.0,,14.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0005135282208473598,1.0834626659849271e-05,0.0,0.0005243628475072091,0.0003295049817774008,0.00011049665051571472,7.35265885542443e-05,0.0,1.0834626659849271e-05,0.0003295049817774008,0.00011049665051571472,7.35265885542443e-05,0.0,0.0,0.0,0.0,1.0834626659849271e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.255233752015751e-07,0.0,0.0,6.119467159756848e-05,1.991136877025951e-05,6.192019497277006e-05,3.926551322994248e-05,1.3167350822089143e-05,8.761807545536862e-06,0.0,0.0,0.0,0.0,7.255233752015752e-07,0.0,0.0,0.0,3.8910103591721754e-05,1.3048167268709906e-05,8.682500525361605e-06,0.0,1.2794235869767944e-06 +97684,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,11390.0,,1289.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010148439010524354,0.00037938491305220174,0.0,0.0013942288141046374,0.0005353494922571273,0.00035127323368350607,0.0005076367777703017,0.0,0.0,0.00015596457920492553,0.00035127323368350607,0.0005076367777703017,0.0,0.0,0.00037938491305220174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5347370448243536e-05,0.0,0.0,0.00012093816395553142,6.141749289366269e-05,0.00014628553440377496,1.858617845717947e-05,4.186095998049513e-05,6.04946827745387e-05,0.0,0.0,2.5347370448243536e-05,0.0,0.0,0.0,0.0,0.0,5.617003878801343e-05,3.6856355421210835e-05,5.3262360215118685e-05,0.0,0.0 +97685,35.0,Eastern Counties in South Carolina and Georgia,G1301030030204,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,15310.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.0023530513120891385,0.0,0.0,0.002353051312089138,0.0015828952864832017,0.00011977899767345468,0.0006390760924181679,0.0,1.1300935514314089e-05,0.0015828952864832017,0.00011977899767345468,0.0006390760924181679,0.0,1.1300935514314089e-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.000280406583271579,0.00010096133939167397,0.000280406583271579,0.00018862923076903463,1.4273730161663172e-05,7.61569212727571e-05,0.0,1.3467010681241e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00018862923076903466,1.4273730161663174e-05,7.615692127275712e-05,0.0,1.3467010681241003e-06 +97686,35.0,Eastern Counties in South Carolina and Georgia,G1300510004001,ComStock 90.1-2004,gen5_led,100001_200000,NaturalGas,288560.0,,40014.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.0,0.07272168098194397,0.034648416597634644,0.0,0.10737000729995538,0.03785857944027957,0.004500980895520136,0.04836008577309192,0.0006727637522748727,0.015977416879542423,0.03785857944027957,0.004500980895520136,0.022070478930640576,0.0006727637522748727,0.0076186974039823534,0.0,0.02628960684245135,0.008358719475560068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002315001740231405,0.0,0.0,0.008666098139730452,0.005086812149149741,0.010981099879961858,0.004511531642698203,0.0005363729446148821,0.002630095094353959,8.01719187915216e-05,0.000907905022385468,0.0,0.0017565156381324826,0.0005584800701498347,0.0,0.0,0.0,0.003871927110759852,0.0004603307945525987,0.004945952276917332,6.88058625041312e-05,0.0016340653688128861 +97687,50.0,the Greater Atlanta and Macon Area,G1301210000500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,47560.0,,1802.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.004410011836629879,0.0005416777137954255,0.0,0.004951720888447509,0.0015417053403459502,0.0008798463113983434,0.0017805950836067273,0.0,0.0007495114770520794,0.0015417053403459502,0.0008798463113983434,0.0012389173698113018,0.0,0.0007495114770520794,0.0,0.0005416777137954255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.619275258611871e-05,0.0,0.0,0.0005255339472299639,0.00022544005116918614,0.0005617266998160826,0.00018372252116145998,0.0001048498557632562,0.00014763977054226278,0.0,8.931806526178225e-05,0.0,3.619275258611871e-05,0.0,0.0,0.0,0.0,0.0001748921379922283,9.981038430502077e-05,0.0002019919584637048,0.0,8.502510904057494e-05 +97688,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,65637.0,,16470.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.013666885956763828,0.01132989070122014,0.0,0.024996776657983968,0.008176793895489816,0.0017382052175343495,0.01022604862731887,0.0003714377298898497,0.004484362907722097,0.006059620351108978,0.0017382052175343495,0.00497944586764286,0.0003714377298898497,0.0005182485105588054,0.002117173544380838,0.00524660275967601,0.003966114397163291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007569969108079369,0.0,0.0,0.001628658858065541,0.0012170116568436986,0.002385655768873478,0.0007221143421090451,0.00020713887081731354,0.0005933918411443827,4.426358359312043e-05,6.17587671449871e-05,0.0001414571309649075,0.0003505472546953537,0.00026499252514767564,0.0,0.0,0.0,0.000780381238531976,0.00016589176122323455,0.0009759591100219694,3.5449473154610157e-05,0.000427981030790723 +97689,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8369.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017861419644740833,0.0,0.0,0.0017861419644740833,0.001125064324075799,0.0003678810639924394,0.00023463996819841516,0.0,5.847390113369035e-05,0.001125064324075799,0.0003678810639924394,0.00023463996819841516,0.0,5.847390113369035e-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.00021284917267735054,7.118898201783181e-05,0.00021284917267735054,0.00013407053602194848,4.383928135158618e-05,2.7961340196593974e-05,0.0,6.9681591536806265e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013407053602194848,4.383928135158618e-05,2.7961340196593974e-05,0.0,6.9681591536806265e-06 +97690,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7373.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014429903155296967,0.0,0.0,0.0014429903155296969,0.00084907081900773,0.00021826396759803228,0.0003275200120076574,0.0,4.8052809842537614e-05,0.00084907081900773,0.00021826396759803228,0.0003275200120076574,0.0,4.8052809842537614e-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.00017195482310099956,6.0042271174755426e-05,0.00017195482310099956,0.00010118004321401165,2.600955913128548e-05,3.9029122455434067e-05,0.0,5.726242461264443e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010118004321401164,2.6009559131285476e-05,3.9029122455434067e-05,0.0,5.726242461264442e-06 +97691,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,41562.0,,2935.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.004454170061024688,0.0010907293807603583,0.0,0.005544899441785048,0.0026746486992917863,0.0008105782768881998,0.0018737962767703795,0.0,0.00018583744041090905,0.0020414994548559537,0.0008105782768881998,0.001602053580856763,0.0,0.0,0.0006331492444358327,0.00027174269591361656,0.00018583744041090905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.287664220316331e-05,0.0,0.0,0.0005307959591364517,0.0002061984268360125,0.0006036726013396151,0.00024328205846893978,9.659525075184586e-05,0.0001909140323311376,0.0,0.0,4.230361055809047e-05,1.8156378264619853e-05,1.2416653380452994e-05,0.0,0.0,0.0,0.00029118871404659865,8.82475691643844e-05,0.00020399999759315935,0.0,2.023210199877564e-05 +97692,50.0,the Greater Atlanta and Macon Area,G1301130140206,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,2603.0,,127.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0004744077749686674,0.00010073721581447643,0.0,0.0005751449907831438,0.00027235439382353936,0.0001815420268577798,9.213568014558848e-05,0.0,2.9112889956236213e-05,0.00017161717800906291,0.0001815420268577798,9.213568014558848e-05,0.0,2.9112889956236213e-05,0.00010073721581447643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.731181624589e-06,0.0,0.0,5.6534718572656955e-05,2.575428814902396e-05,6.326590019724595e-05,2.0451454155903624e-05,2.1634188854076362e-05,1.0979720448036933e-05,0.0,3.469355114640036e-06,6.731181624589e-06,0.0,0.0,0.0,0.0,0.0,2.9958960217073765e-05,1.996960755435072e-05,1.0134917000249067e-05,0.0,3.2024154255724155e-06 +97693,35.0,Eastern Counties in South Carolina and Georgia,G1302450000600,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,9887.0,,138.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.002022849609515981,0.00010950416563084301,0.0,0.002132353775146824,0.0013494486151305399,0.00034290352772316864,0.00033049746666227243,0.0,0.00010950416563084301,0.0013494486151305399,0.00034290352772316864,0.00033049746666227243,0.0,0.0,0.0,0.0,0.00010950416563084301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.315312036056597e-06,0.0,0.0,0.00024106277317828865,7.572717519922515e-05,0.00024837808521434524,0.0001608136481796123,4.086377698900912e-05,3.9385348009667236e-05,0.0,0.0,0.0,0.0,7.315312036056597e-06,0.0,0.0,0.0,0.00015718473502277777,3.994164693579534e-05,3.849658011467394e-05,0.0,1.2755123141098171e-05 +97694,50.0,the Greater Atlanta and Macon Area,G1300670031405,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,32044.0,,1340.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.001749756177460751,0.0002278706049705186,0.0,0.0019776445127926896,0.0010588926447283936,0.0002736149374342549,0.00039194736955168723,0.0,0.0002532250218011942,0.0009284681061224852,0.0002736149374342549,0.00029448357282565703,0.0,0.0002532250218011942,0.0001304245386059084,9.746379672603024e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5225429017984379e-05,0.0,0.0,0.0002085160050585918,7.409326311918098e-05,0.00022374143407657615,0.00011064425021429589,3.2606310760932936e-05,3.509319695621664e-05,0.0,3.0176472932066112e-05,8.714461239985457e-06,6.5121524519032155e-06,0.0,0.0,0.0,0.0,0.0001197981524647775,3.0955512019631735e-05,4.4343088951916734e-05,0.0,2.8648692500283856e-05 +97695,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,18244.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016087680678199628,0.0,0.0,0.0016087680678199628,0.0010053357677901476,0.0004352536799429836,0.00016817862008683187,0.0,0.0,0.0010053357677901476,0.0004352536799429836,0.00016817862008683187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001917127535082005,5.5058060266424426e-05,0.0001917127535082005,0.00011980327810988048,5.186806173342359e-05,2.0041413664896472e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011980327810988048,5.186806173342359e-05,2.0041413664896472e-05,0.0,0.0 +97697,50.0,the Greater Atlanta and Macon Area,G1300890023212,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,15863.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003644321790175103,0.0,0.0,0.003644321790175103,0.0020012630632700217,0.0005399117773701989,0.0009987706224758766,0.0,0.00010429361998526668,0.0020012630632700217,0.0005399117773701989,0.0009987706224758766,0.0,0.00010429361998526668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043428732574949676,0.00014697071647961867,0.00043428732574949676,0.00023848694871344604,6.434032323020936e-05,0.0001190217131323542,0.0,1.2428484619070773e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00023848694871344604,6.434032323020936e-05,0.0001190217131323542,0.0,1.2428484619070773e-05 +97698,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,3131.0,,427.0,,8.72605822017302,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0007516418861428259,0.0003384373457412459,0.0,0.001090079231884072,0.0005414005046975063,0.00022479782642343755,0.00022239932128499765,0.0,0.00010156428655186949,0.00030452744550812986,0.00022479782642343755,0.00022239932128499765,0.0,0.0,0.0002368730591893764,0.0,0.00010156428655186949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.261225548401503e-05,0.0,0.0,8.957588377465222e-05,4.541745350462221e-05,0.00011218813925866725,3.629163777049619e-05,2.67899705215124e-05,2.650413198393924e-05,0.0,0.0,1.5826368452155193e-05,0.0,6.785887031859838e-06,0.0,0.0,0.0,5.5719541698576294e-05,2.313561172269025e-05,2.288876376832748e-05,0.0,1.0452734067499495e-05 +97699,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,12626.0,,985.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010499528106570077,0.00028989402108810046,0.0,0.0013398161421388107,0.0005797573525699033,0.0002712961196716926,0.0004887933595035122,0.0,0.0,0.00028986333148180285,0.0002712961196716926,0.0004887933595035122,0.0,0.0,0.00028989402108810046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.936851512505823e-05,0.0,0.0,0.0001251192583293604,5.410229866757981e-05,0.00014448777345441865,3.454201434937476e-05,3.232942370020887e-05,5.8247820279776774e-05,0.0,0.0,1.936851512505823e-05,0.0,0.0,0.0,0.0,0.0,6.252189862627808e-05,2.9256978659483262e-05,5.271220578162781e-05,0.0,0.0 +97700,50.0,the Greater Atlanta and Macon Area,G1300850970100,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,100075.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00625559065550019,0.0,0.0,0.006255590655500189,0.0030338244122238155,0.0011697428643265635,0.0009524218244009764,0.0,0.001099619284910255,0.0030338244122238155,0.0011697428643265635,0.0009524218244009764,0.0,0.001099619284910255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007454673866493007,0.00020847072853213605,0.0007454673866493007,0.00036153534984659284,0.0001393961344568615,0.00011349838049260661,0.0,0.00013103963474823558,0.0,0.0,0.0,0.0,0.0,0.0,0.0003615353498465929,0.00013939613445686152,0.00011349838049260664,0.0,0.0001310396347482356 +97701,50.0,the Greater Atlanta and Macon Area,G1301170130509,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,44660.0,,4613.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002160816876623255,0.0007845507624759164,0.0,0.0029453853694605915,0.0014034290278428594,0.0005334001929608685,0.0006069989232155077,0.0,0.00040153949507993583,0.0010099036561247877,0.0005334001929608685,0.00021595580209624317,0.0,0.00040153949507993583,0.0003935253717180719,0.00039104312111926456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2419559830695576e-05,0.0,0.0,0.00025750074195349487,0.0001082701526203645,0.0003099203017841905,0.000120348440243611,6.356436166872298e-05,2.5735072634125985e-05,0.0,4.785075451108794e-05,2.6293297711638417e-05,2.6127446768649937e-05,0.0,0.0,0.0,0.0,0.00014767206775438273,5.6125609398423964e-05,6.386983904251577e-05,0.0,4.225091995898509e-05 +97702,50.0,the Greater Atlanta and Macon Area,G1300150960500,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,194231.0,,30740.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01081950979755172,0.005227619761088368,0.0,0.016047111828278667,0.007690703839200685,0.0026638981515558335,0.003120472688483613,0.0,0.00257201941867712,0.006285164898348838,0.0026638981515558335,0.0015084814192566724,0.0,0.00036194759802895795,0.0014055389408518457,0.0016119912692269406,0.0022100718206481615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034927883964533634,0.0,0.0,0.001289339220652462,0.0006368593249766741,0.0016386180602977985,0.0007489904592112888,0.0003174513846645568,0.0001797626966346689,0.0,4.313256725043937e-05,9.390985434542378e-05,0.00010770378599930486,0.00014766401466202524,0.0,0.0,0.0,0.0007853205201142825,0.0002720185207559275,0.00031864069738733546,0.0,0.0002626365115405978 +97703,50.0,the Greater Atlanta and Macon Area,G1300890022004,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,14483.0,,1384.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032790873525423213,0.0010976055755943489,0.0,0.0043766102210629305,0.002878619701496595,0.000982477328949233,0.00043785124837589353,0.0,7.774464931494897e-05,0.001858758775217195,0.000982477328949233,0.00043785124837589353,0.0,0.0,0.0010198609262793998,0.0,7.774464931494897e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.333321932387336e-05,0.0,0.0,0.00039075993616042193,0.00019557297440394824,0.00046409315548429536,0.00022150323619111968,0.00011707915558931705,5.217754437998522e-05,0.0,0.0,6.813894412498548e-05,0.0,5.194275198887872e-06,0.0,0.0,0.0,0.0003052471280804071,0.00010418131402003033,4.6429487029382995e-05,0.0,8.243996563585193e-06 +97704,35.0,Eastern Counties in South Carolina and Georgia,G1301910110100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,50984.0,,5840.0,,9.525004485617233,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,166687.57849830156,0.0,0.0,0.013363009270561206,0.00505674225609503,0.0,0.018419751526656234,0.006889870005684576,0.0008414060884597174,0.007715838278572769,0.000674388785492928,0.0022981580888230217,0.006889870005684576,0.0008414060884597174,0.003650456565114664,0.000674388785492928,0.0013068878258093205,0.0,0.004065381713458104,0.0009912702630137011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033786065395448664,0.0,0.0,0.0015924468851762927,0.0008422091008948232,0.0019303075391307793,0.0008210539862449104,0.00010026891979247826,0.0004350186450438689,8.036575438302712e-05,0.0001557395797120081,0.0,0.00027162399321974736,6.623062880133299e-05,0.0,0.0,0.0,0.0007220275472422865,8.817559312208433e-05,0.0008085853263703927,7.067292710536159e-05,0.00024083668439010497 +97705,50.0,the Greater Atlanta and Macon Area,G1301510070203,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,243228.0,,26520.0,,7.614023970037612,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1142103.5955056418,0.0,0.0,0.04436879074526995,0.01835698123849082,0.0,0.06272577198376077,0.048408267675714364,0.006192147051540398,0.004793261482888263,0.0007908784021284945,0.002541217371489249,0.030051286437223546,0.006192147051540398,0.004793261482888263,0.0007908784021284945,0.002541217371489249,0.01835698123849082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012265070810179785,0.0,0.0,0.005287339147725094,0.0024976115031317622,0.0065138462287430724,0.0035811510872869857,0.0007379056531435983,0.000571203286320346,9.424738124308815e-05,0.00030283173973107613,0.0012265070810179785,0.0,0.0,0.0,0.0,0.0,0.005027024807619302,0.000643032240877662,0.0004977629967116933,8.212988272878918e-05,0.00026389630080562586 +97706,50.0,the Greater Atlanta and Macon Area,G1300670030506,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,55441.0,,6608.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005402659671860195,0.0019451379367546998,0.0,0.007347797608614893,0.0037598450467441636,0.0012509083526943655,0.0023370442091763645,0.0,0.0,0.0018147071099894633,0.0012509083526943655,0.0023370442091763645,0.0,0.0,0.0019451379367546998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012996246759213912,0.0,0.0,0.0006438259799846761,0.0003366472210959326,0.0007737884475768151,0.00021625563230634663,0.0001490686707954658,0.00027850167688286346,0.0,0.0,0.00012996246759213912,0.0,0.0,0.0,0.0,0.0,0.00039594512761735834,0.00013173177649278048,0.0002461115434666763,0.0,0.0 +97707,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,132726.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011703950192147223,0.0,0.0,0.011703950192147223,0.006204020300356873,0.0038197231180927944,0.0016802067736975553,0.0,0.0,0.006204020300356873,0.0038197231180927944,0.0016802067736975553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001394737791755493,0.0003276418747802019,0.001394737791755493,0.0007393214625547298,0.0004551892394775099,0.0002002270897232533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007393214625547298,0.0004551892394775099,0.0002002270897232533,0.0,0.0 +97708,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,69780.0,,7663.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,166687.57849830156,0.0,0.0,0.021906982532979576,0.006635642586682154,0.0,0.02854262511966173,0.015106579633911264,0.0026026712579619304,0.007735158117942981,0.0006584092921820513,0.0024398970972867294,0.015106579633911264,0.0026026712579619304,0.002174655564250823,0.0006584092921820513,0.0013646667846735072,0.0,0.005560502553692157,0.0010752303126132224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004433560615181063,0.0,0.0,0.0026106160376058725,0.0012335630507662226,0.0030539720991239793,0.0018002241525636115,0.00031015569197731654,0.0002591498251187901,7.846146108399769e-05,0.00016262490686215673,0.0,0.00037152129278544794,7.184080070584953e-05,0.0,0.0,0.0,0.001616357028190065,0.00027847772836886995,0.0008276378565557175,7.044774612349262e-05,0.00026106139952468275 +97709,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,57943.0,,5852.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005162666950612157,0.0017224848430648667,0.0,0.006885121104070726,0.0025865507083766884,0.001800098857391757,0.0024985022279085793,0.0,0.0,0.0008640658653118219,0.001800098857391757,0.0024985022279085793,0.0,0.0,0.0017224848430648667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011508546447592272,0.0,0.0,0.0006152236083378971,0.00030968817537986224,0.0007303090728138198,0.00010296881913634063,0.00021451380168503148,0.0002977409875165251,0.0,0.0,0.00011508546447592272,0.0,0.0,0.0,0.0,0.0,0.0002743570405034235,0.00019093760409497166,0.00026501768348103033,0.0,0.0 +97710,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,119327.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01024953057366899,0.0,0.0,0.010249530573668989,0.0025389511290089513,0.0030902899061471816,0.004620258848906558,0.0,0.0,0.0025389511290089513,0.0030902899061471816,0.004620258848906558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012214154550540953,0.0003711829808818531,0.0012214154550540953,0.00030256157843612167,0.0003682634853212289,0.0005505867340795509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003025615784361217,0.00036826348532122897,0.000550586734079551,0.0,0.0 +97711,50.0,the Greater Atlanta and Macon Area,G1300670030220,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,8204.0,,861.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007284484950822734,0.00025343476880642957,0.0,0.0009818832638887028,0.0005538860144609398,0.00020236726392705215,0.00022562998550071085,0.0,0.0,0.0003004512456545102,0.00020236726392705215,0.00022562998550071085,0.0,0.0,0.00025343476880642957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6933058314716407e-05,0.0,0.0,8.680898920173696e-05,4.570867807979465e-05,0.00010374204751645336,3.5804685047396554e-05,2.4116046292393554e-05,2.688825786194683e-05,0.0,0.0,1.6933058314716407e-05,0.0,0.0,0.0,0.0,0.0,5.852148757820061e-05,2.1381354670359865e-05,2.383920526789289e-05,0.0,0.0 +97712,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,14536.0,,485.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034534338639847814,0.000385001428256476,0.0,0.0038383525851675183,0.001779856226869896,0.0011219214552737051,0.0008579204758978359,0.0,7.873713419982066e-05,0.0013948547986134198,0.0011219214552737051,0.0008579204758978359,0.0,7.873713419982066e-05,0.000385001428256476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5721128346981267e-05,0.0,0.0,0.00041153804005184506,0.0001664118625294921,0.0004372591683988263,0.00016622174698777074,0.00013369688691901036,0.00010223647681613672,0.0,9.382929328927231e-06,2.5721128346981267e-05,0.0,0.0,0.0,0.0,0.0,0.00020275845857361163,0.00012780755067616362,9.773296890260563e-05,0.0,8.969612107903264e-06 +97713,50.0,the Greater Atlanta and Macon Area,G1301210011420,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,134140.0,,2572.0,,9.325022323477118,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.03442023812876355,0.0021807023316899,0.0,0.03660094046045345,0.024938915957576323,0.005187619772877518,0.005779616863529605,0.0,0.0006946110981538898,0.023452824724040314,0.005187619772877518,0.005779616863529605,0.0,0.0,0.00148609123353601,0.0,0.0006946110981538898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014570472257288163,0.0,0.0,0.0041017882831260975,0.0014199685709845034,0.004247493005698979,0.002794824408227715,0.0006181978730681909,0.0006887449367171284,0.0,0.0,9.929393285536542e-05,0.0,4.641078971751618e-05,0.0,0.0,0.0,0.0028941297618833846,0.0006020167357538441,0.0006707172519237975,0.0,8.06087423976805e-05 +97714,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,8071.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0019379921518594514,0.0,0.0,0.0019379921518594514,0.0012038014582756195,0.0003077530213839629,0.00038392623629786505,0.0,4.259414297574332e-05,0.0012038014582756195,0.0003077530213839629,0.00038392623629786505,0.0,4.259414297574332e-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.00023094821843529885,8.000958120184017e-05,0.00023094821843529885,0.00014345558720236322,3.667456131775978e-05,4.5752032689341805e-05,0.0,5.075893329386262e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014345558720236322,3.667456131775978e-05,4.5752032689341805e-05,0.0,5.075893329386262e-06 +97715,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,14856.0,,848.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011829302037026825,0.00024693736342892223,0.0,0.0014298979407310426,0.0008480916435009065,0.000424683667338646,0.00015712262989149017,0.0,0.0,0.0006011542800719842,0.000424683667338646,0.00015712262989149017,0.0,0.0,0.00024693736342892223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6499263013843075e-05,0.0,0.0,0.0001409692121264236,5.103474901640457e-05,0.00015746847514026667,7.163926067904729e-05,5.06093443216673e-05,1.8724226732655192e-05,0.0,0.0,1.6499263013843075e-05,0.0,0.0,0.0,0.0,0.0,9.339666424934736e-05,4.676857530027845e-05,1.730323559064085e-05,0.0,0.0 +97716,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,7478.0,,1273.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0005665608218618911,0.0003747507825012486,0.0,0.0009413116043631395,0.0004822564733621015,0.00022802377479193167,0.00023100066660280884,0.0,0.0,0.00010750569086085287,0.00022802377479193167,0.00023100066660280884,0.0,0.0,0.0003747507825012486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5039032925181084e-05,0.0,0.0,6.751562909924461e-05,4.6730873336484126e-05,9.255466202442571e-05,1.2811182965963594e-05,2.7173020107653294e-05,2.7527768822383093e-05,0.0,0.0,2.5039032925181084e-05,0.0,0.0,0.0,0.0,0.0,4.741796945265473e-05,2.24204857473097e-05,2.2713189262449548e-05,0.0,0.0 +97717,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,26642.0,,1627.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002373810357521013,0.00047888061666935414,0.0,0.002852690974190367,0.0008743468834215521,0.0008367521157068666,0.0011416226646682457,0.0,0.0,0.0003954662667521981,0.0008367521157068666,0.0011416226646682457,0.0,0.0,0.00047888061666935414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1996538307932365e-05,0.0,0.0,0.0002828825284103352,0.0001147177719328341,0.0003148790667182676,4.712697334284321e-05,9.97141803657163e-05,0.0001360450319246022,0.0,0.0,3.1996538307932365e-05,0.0,0.0,0.0,0.0,0.0,9.651011382960679e-05,9.236041606052054e-05,0.00012601192433652313,0.0,0.0 +97718,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,18746.0,,8.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.0016308763682662234,2.2096516534346004e-06,0.0,0.0016330860199196581,0.0006689720380773252,0.00036201459588770205,0.0006020993859546309,0.0,0.0,0.0006667623864238907,0.00036201459588770205,0.0006020993859546309,0.0,0.0,2.2096516534346004e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4701946904174243e-07,0.0,0.0,0.00019435018307686439,7.479543755840177e-05,0.00019449720254590615,7.945752013563833e-05,4.314097889717342e-05,7.175168404405267e-05,0.0,0.0,1.4701946904174243e-07,0.0,0.0,0.0,0.0,0.0,7.96732005542943e-05,4.311519743730873e-05,7.170880455430314e-05,0.0,0.0 +97719,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,45073.0,,2073.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0039745677280264525,0.0006040397720185704,0.0,0.004578607500045022,0.003141845125841049,0.0011522528682705532,0.0002845398795328591,0.0,0.0,0.002537805353822478,0.0011522528682705532,0.0002845398795328591,0.0,0.0,0.0006040397720185704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.035818398607924e-05,0.0,0.0,0.00047364323340742706,0.00018579132219782865,0.0005140014173935062,0.00030242643119834586,0.00013731223407825513,3.390818770679814e-05,0.0,0.0,4.035818398607924e-05,0.0,0.0,0.0,0.0,0.0,0.0003527082956766437,0.00012935365337189822,3.194287813127221e-05,0.0,0.0 +97720,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14120.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003139477812070371,0.0,0.0,0.0031394778120703705,0.0018892776854269994,0.0006636415596842028,0.0005033552507774249,0.0,8.312060910800396e-05,0.0018892776854269994,0.0006636415596842028,0.0005033552507774249,0.0,8.312060910800396e-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.00037412440038060073,0.00011795804772563278,0.00037412440038060073,0.00022514090671234914,7.908464892789431e-05,5.9983695585140165e-05,0.0,9.905293142140301e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00022514090671234917,7.908464892789432e-05,5.998369558514017e-05,0.0,9.905293142140301e-06 +97721,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,275861.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.023207510971929145,0.0,0.0,0.02320751097192914,0.006978417507215744,0.006076327219701067,0.010152796934618631,0.0,0.0,0.006978417507215744,0.006076327219701067,0.010152796934618631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027655961714010626,0.0008889565197703836,0.0027655961714010626,0.0008316051111098418,0.0007241046795286049,0.0012098900379862527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000831605111109842,0.0007241046795286051,0.001209890037986253,0.0,0.0 +97722,50.0,the Greater Atlanta and Macon Area,G1301350050721,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,51340.0,,4989.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004353228584510247,0.0014685283509513758,0.0,0.00582178762506792,0.002134861082887099,0.0014305959975674154,0.0022563305446134064,0.0,0.0,0.0006663327319357228,0.0014305959975674154,0.0022563305446134064,0.0,0.0,0.0014685283509513758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.811860730924056e-05,0.0,0.0,0.0005187676181283922,0.00024882627020449133,0.0006168862254376328,7.940585648482977e-05,0.00017048194546980197,0.00026888347340738624,0.0,0.0,9.811860730924056e-05,0.0,0.0,0.0,0.0,0.0,0.00022621340386674713,0.0001515883130579247,0.00023908450851296107,0.0,0.0 +97723,85.0,Rural Climate Zone 3A,G1301070970600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,31973.0,,1878.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006657334589553081,0.0012918918379042016,0.0,0.007949226427457282,0.002322005781601424,0.0006356541031113607,0.003043436970047455,0.00037444996867250533,0.0015736796040245378,0.002322005781601424,0.0006356541031113607,0.0017515451321432531,0.00037444996867250533,0.0015736796040245378,0.0,0.0012918918379042016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.6314873802803e-05,0.0,0.0,0.0007933413967826757,0.00030066957308304374,0.0008796562705854786,0.00027670883674734884,7.574964233048407e-05,0.00020872816935519373,4.46224622145388e-05,0.0001875322861351102,0.0,8.6314873802803e-05,0.0,0.0,0.0,0.0,0.00025695166249966586,7.03410731632857e-05,0.00033678477261469354,4.143639207779699e-05,0.00017414237023003667 +97724,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6395.0,,417.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012853506329825765,0.0003304974666622724,0.0,0.0016158480996448488,0.0008794243150700558,0.0003071740718677878,0.0003875653475423946,0.0,4.168436516461094e-05,0.0005489268484077834,0.0003071740718677878,0.0003875653475423946,0.0,4.168436516461094e-05,0.0003304974666622724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2080857502439253e-05,0.0,0.0,0.00015317176390679347,7.532023983942332e-05,0.00017525262140923273,6.541413017498156e-05,3.660510463611293e-05,4.618511586559644e-05,0.0,4.967413230102562e-06,2.2080857502439253e-05,0.0,0.0,0.0,0.0,0.0,9.538112931588125e-05,3.3315669545676946e-05,4.2034794693333916e-05,0.0,4.521027854340651e-06 +97725,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,33725.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0030048807318206754,0.0,0.0,0.0030048807318206754,0.0008412021086200333,0.0009144275092463521,0.0012492511139542896,0.0,0.0,0.0008412021086200333,0.0009144275092463521,0.0012492511139542896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035808589074176925,0.00011832947409157286,0.00035808589074176925,0.00010024444669940245,0.00010897057766710673,0.00014887086637526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010024444669940245,0.00010897057766710673,0.00014887086637526,0.0,0.0 +97726,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,147740.0,,7088.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0076049598113733085,0.0012053099693351895,0.0,0.008810287511069917,0.005385490899172517,0.0013034120590723415,0.0011201865041575159,0.0,0.0010011625879447017,0.0044099664138412134,0.0013034120590723415,0.0008904010201536317,0.0,0.0010011625879447017,0.0009755244853313051,0.00022978548400388426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.053202978239445e-05,0.0,0.0,0.0009062690035302703,0.0003356356370858518,0.0009868010333126645,0.0005255275460492046,0.00015532520582137296,0.0001061074437329932,0.0,0.00011930669503230242,6.517905676121421e-05,1.5352973021180228e-05,0.0,0.0,0.0,0.0,0.000603204830435098,0.0001459893749334155,0.0001254670972333908,0.0,0.00011213575891325675 +97727,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,26623.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0021624180383713032,0.0,0.0,0.0021624180383713037,0.0016116231861671116,0.0004173940034735856,0.00013343122233004374,0.0,0.0,0.0016116231861671116,0.0004173940034735856,0.00013343122233004374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002576921769126974,5.913477420927146e-05,0.0002576921769126974,0.00019205476454459258,4.974022944537866e-05,1.5900802499894367e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019205476454459253,4.9740229445378646e-05,1.5900802499894364e-05,0.0,0.0 +97728,50.0,the Greater Atlanta and Macon Area,G1300210012000,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13218.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002924356713274432,0.0,0.0,0.0029243567132744316,0.0016419008278727308,0.0005051748063996898,0.000706731945102382,0.0,7.046642682588993e-05,0.0016419008278727308,0.0005051748063996898,0.000706731945102382,0.0,7.046642682588993e-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.0003484920162465791,9.725229363063383e-05,0.0003484920162465791,0.00019566331541736204,6.0201064405059826e-05,8.422038234139428e-05,0.0,8.39739798184528e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019566331541736207,6.020106440505983e-05,8.42203823413943e-05,0.0,8.39739798184528e-06 +97729,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,11226.0,,107.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0026956716543852467,8.477475058279009e-05,0.0,0.0027803636978942976,0.0016452091108223035,0.0004228812680290788,0.0006274985684601254,0.0,8.477475058279009e-05,0.0016452091108223035,0.0004228812680290788,0.0006274985684601254,0.0,0.0,0.0,0.0,8.477475058279009e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.661637234566987e-06,0.0,0.0,0.00032123595715141695,9.688492089947562e-05,0.0003268975943859839,0.00019605515477728308,5.03936258986652e-05,7.477732049543768e-05,0.0,0.0,0.0,0.0,5.661637234566986e-06,0.0,0.0,0.0,0.00019343329111836253,4.971970729379587e-05,7.377731649482284e-05,0.0,9.967279479002691e-06 +97730,50.0,the Greater Atlanta and Macon Area,G1300450910600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2092.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.00045588139045106254,0.0,0.0,0.00045588139045106254,0.00026788821184161677,0.00011727863056233792,4.4000163229311556e-05,0.0,2.6631677744056995e-05,0.00026788821184161677,0.00011727863056233792,4.4000163229311556e-05,0.0,2.6631677744056995e-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,5.432391499769546e-05,1.758223079341902e-05,5.432391499769546e-05,3.192219896181705e-05,1.3975201644907866e-05,5.243164509937226e-06,0.0,3.1734943086462153e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.192219896181705e-05,1.3975201644907866e-05,5.243164509937226e-06,0.0,3.1734943086462153e-06 +97731,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,308441.0,,36689.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,280597.8237794184,0.0,0.0,0.01394117042025048,0.006239331914078001,0.0,0.020180484603967062,0.007641892154211279,0.005796321103636562,0.003206624514623649,0.0,0.003535629101134149,0.006194562751492369,0.005796321103636562,0.0013059120400325693,0.0,0.0006443390643661389,0.0014473294027189103,0.0019007124745910801,0.0028912900367680104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041687540768346,0.0,0.0,0.0016613417070353597,0.0008069906520557896,0.0020782171147188198,0.0007381937918894678,0.0006907361223310855,0.00015562295506224485,0.0,7.678461196835255e-05,9.670202565267176e-05,0.00012699441200529296,0.00019317897002549533,0.0,0.0,0.0,0.0007869737211660109,0.0005969139966844694,0.00033022308817389753,0.0,0.00036410448279475315 +97732,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,67148.0,,5849.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0054725329050974965,0.0017039285548584395,0.0,0.0071764614599559365,0.004842159222366396,0.001922800712406879,0.00041144077798378623,0.0,0.0,0.003138230667507956,0.001922800712406879,0.00041144077798378623,0.0,0.0,0.0017039285548584395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011384585485919547,0.0,0.0,0.0006521506553859741,0.00026307495866024675,0.0007659965102451696,0.00037397658854848223,0.00022913626405146741,4.903056366544788e-05,0.0,0.0,0.00011384585485919547,0.0,0.0,0.0,0.0,0.0,0.0005168392650166753,0.00020523466109572595,4.391610013747262e-05,0.0,0.0 +97733,50.0,the Greater Atlanta and Macon Area,G1300570090601,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,62466.0,,3918.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006562459147321784,0.0011414094932712755,0.0,0.007703868640593059,0.004873352908988967,0.0023299284392705043,0.0005005872923335878,0.0,0.0,0.003731943415717691,0.0023299284392705043,0.0005005872923335878,0.0,0.0,0.0011414094932712755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.626130366070176e-05,0.0,0.0,0.0007820361303769928,0.0002922817972660952,0.0008582974340376946,0.00044472880091068296,0.00027765326683153933,5.965406263477038e-05,0.0,0.0,7.626130366070176e-05,0.0,0.0,0.0,0.0,0.0,0.0005429462121025165,0.00025958017902592096,5.577104290925711e-05,0.0,0.0 +97734,81.0,the Columbus-Albany Area,G1302150010302,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,110435.0,,20712.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005302051818329751,0.003522242678262009,0.0,0.00882431222695318,0.0033772615129302372,0.0009832371925490282,0.002812177164111735,0.0,0.0016516186270007587,0.0028259004638508554,0.0009832371925490282,0.0012519408198699287,0.0,0.0002409733420599376,0.0005513610490793819,0.0015602363442418063,0.0014106452849408208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023533604223609073,0.0,0.0,0.0006318359007966084,0.0003817209893614224,0.0008671719430326992,0.0003367574339741605,0.00011717059329809561,0.0001491915173163562,0.0,2.871635620799598e-05,3.68387811363146e-05,0.00010424603860286883,9.425122249690728e-05,0.0,0.0,0.0,0.0003318860839207255,9.662347441882746e-05,0.0002763548107586581,0.0,0.0001623058315582475 +97735,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,62663.0,,3688.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0059327612414404145,0.0010854606851434495,0.0,0.007018221926583864,0.0031953097388979206,0.0015396975479557487,0.002283214639730194,0.0,0.0,0.002109849053754471,0.0015396975479557487,0.002283214639730194,0.0,0.0,0.0010854606851434495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.252447188645832e-05,0.0,0.0,0.0007069962717729419,0.0002978943375908665,0.0007795207436594004,0.00025142684060650337,0.0001834829317686082,0.00027208649939783027,0.0,0.0,7.252447188645832e-05,0.0,0.0,0.0,0.0,0.0,0.0003549061642597898,0.00017101570599338875,0.0002535988734062217,0.0,0.0 +97736,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,195659.0,,7926.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012956231113005125,0.0013478798055138342,0.0,0.014304128648880381,0.006993687871055567,0.002252092777213687,0.0031823871105624377,0.0,0.0018759608900486872,0.006993687871055567,0.002252092777213687,0.0018345073050486038,0.0,0.0018759608900486872,0.0,0.0013478798055138342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.005772449456235e-05,0.0,0.0,0.001543970142223431,0.00045617044201842836,0.0016340278667179933,0.0008334248719985516,0.0002683777384956256,0.000218614848714971,0.0,0.00022355479590871973,0.0,9.005772449456235e-05,0.0,0.0,0.0,0.0,0.0007989218464787033,0.0002572671462018431,0.00036353904169830043,0.0,0.00021429983233914627 +97737,50.0,the Greater Atlanta and Macon Area,G1300890023802,ComStock 90.1-2007,gen3_t5_cfl,100001_200000,Electricity,435905.0,,13162.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02049702474639926,0.0022383517471131456,0.0,0.022735376493512406,0.011365090748808164,0.005595489299831624,0.0034048676856612606,0.0,0.002369946489572778,0.009824694678995398,0.005595489299831624,0.0027069120083608816,0.0,0.002369946489572778,0.0015403960698127672,0.0006979556773003785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014955305318883563,0.0,0.0,0.002442590858043948,0.0007528470855062714,0.0025921439112327836,0.001170789892821049,0.0006668036546354097,0.00032257747682688386,0.0,0.0002824219466535377,0.0001029198988307789,4.6633154358056744e-05,0.0,0.0,0.0,0.0,0.0012957758053198543,0.0006379623193425267,0.0003882014904155464,0.0,0.00027020631765858704 +97738,50.0,the Greater Atlanta and Macon Area,G1301350050313,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,9374.0,,520.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0019869547395131217,0.0004121293484429688,0.0,0.002399084087956091,0.0011510343452299412,0.0003907909234182276,0.0007843111802698523,0.0,7.294763903806914e-05,0.0007389049967869725,0.0003907909234182276,0.0007843111802698523,0.0,7.294763903806914e-05,0.0004121293484429688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7533568752693337e-05,0.0,0.0,0.00023678236291011455,9.323555685555911e-05,0.0002643159316628079,8.805418041287725e-05,4.656995774018861e-05,9.346516597888012e-05,0.0,8.693058778168538e-06,2.7533568752693337e-05,0.0,0.0,0.0,0.0,0.0,0.00012681369396874188,4.30548756199113e-05,8.641045195843786e-05,0.0,8.036910115716776e-06 +97739,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,13127.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015082713911069008,0.0,0.0,0.0015082713911069008,0.0004819495772991245,0.0004747375198191643,0.0005515842939886121,0.0,0.0,0.0004819495772991245,0.0004747375198191643,0.0005515842939886121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017973608782027905,5.729875269929575e-05,0.00017973608782027905,5.74324568251671e-05,5.6573017997230634e-05,6.573061299788133e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.74324568251671e-05,5.6573017997230634e-05,6.573061299788133e-05,0.0,0.0 +97740,50.0,the Greater Atlanta and Macon Area,G1300570090601,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,66702.0,,5719.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007030425193859226,0.0016660223027601248,0.0,0.008696447496619353,0.005852081403671642,0.0019196722316647905,0.0009246938612829166,0.0,0.0,0.004186059100911518,0.0019196722316647905,0.0009246938612829166,0.0,0.0,0.0016660223027601248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011131428183555487,0.0,0.0,0.000837803022698319,0.00035558991579376283,0.0009491173045338739,0.0004988450728415077,0.00022876385907406798,0.00011019409078274307,0.0,0.0,0.00011131428183555487,0.0,0.0,0.0,0.0,0.0,0.0006386874329920138,0.00020951016318036673,0.00010091970836149308,0.0,0.0 +97741,50.0,the Greater Atlanta and Macon Area,G1300890023603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,9475.0,,1050.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.00197041332476526,0.000832942939628565,0.0,0.0028033562643938253,0.0015561335924050694,0.00048160329038398714,0.0006933333991566142,0.0,7.228598244815468e-05,0.0007231906527765041,0.00048160329038398714,0.0006933333991566142,0.0,7.228598244815468e-05,0.000832942939628565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.565282313636371e-05,0.0,0.0,0.00023480915885246105,0.00011986890951408115,0.0002904619819888247,8.61807960462525e-05,5.7391442746720986e-05,8.262278285175374e-05,0.0,8.614137207733837e-06,5.5652823136363705e-05,0.0,0.0,0.0,0.0,0.0,0.0001612344649983696,4.989998882197747e-05,7.183781663998577e-05,0.0,7.489711528491895e-06 +97742,50.0,the Greater Atlanta and Macon Area,G1300670030313,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,5797.0,,485.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013397718875030411,0.0003848360141089974,0.0,0.0017246079016120387,0.0011583125677190004,0.00023571516015702615,0.00028707625294913607,0.0,4.358662786061501e-05,0.0007734765536100032,0.00023571516015702615,0.00028707625294913607,0.0,4.358662786061501e-05,0.0003848360141089974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5711538289481963e-05,0.0,0.0,0.00015965920763552367,6.304636572367197e-05,0.00018537074592500562,9.217438791329201e-05,2.8089927882044716e-05,3.421057532581657e-05,0.0,5.19417262941669e-06,2.571153828948196e-05,0.0,0.0,0.0,0.0,0.0,0.00012450207638018911,2.533601697133445e-05,3.0856601721930485e-05,0.0,4.684940682067809e-06 +97743,50.0,the Greater Atlanta and Macon Area,G1301170130306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7472.0,,228.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014813663977447352,0.00018096307734160463,0.0,0.0016623294750863402,0.0008025067364924998,0.00026383556522839065,0.0005506636969563088,0.0,4.5158062261661854e-05,0.0006215436591508952,0.00026383556522839065,0.0005506636969563088,0.0,4.5158062261661854e-05,0.00018096307734160463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2093166040580783e-05,0.0,0.0,0.00017652987504952687,6.311814965406636e-05,0.00018862304109010765,7.406744520111632e-05,3.1440472414046715e-05,6.562089822342416e-05,0.0,5.38134731600925e-06,1.2093166040580784e-05,0.0,0.0,0.0,0.0,0.0,9.105972275721748e-05,2.993718598325505e-05,6.248331795501948e-05,0.0,5.124044999014815e-06 +97744,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,70864.0,,2608.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0036505573038589307,0.00044347179983836066,0.0,0.004094029103697293,0.001850872428639312,0.0007618381694968289,0.0011317998908876505,0.0,0.0003495186146735009,0.0014074006288009515,0.0007618381694968289,0.0011317998908876505,0.0,0.0003495186146735009,0.00044347179983836066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.96304248839468e-05,0.0,0.0,0.00043502990835899075,0.00014440160976890494,0.0004646603332429375,0.0001677172320852092,9.078679266594358e-05,0.00013487442103513874,0.0,4.1651462572699354e-05,2.96304248839468e-05,0.0,0.0,0.0,0.0,0.0,0.00021006860911296956,8.646640479323766e-05,0.00012845597848565283,0.0,3.96693408510774e-05 +97745,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,39849.0,,8198.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,32736.412774265485,0.0,0.0,0.0021439907636356254,0.001394120588097332,0.0,0.003538111351732957,0.0019941337489133384,0.0005536305353411487,0.0006603318503670266,0.0,0.00033001521711144283,0.0012458061148185903,0.0005536305353411487,0.0002708667314141467,0.0,7.368738206173944e-05,0.0007483276340947485,0.00038946511895287985,0.00025632783504970336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.314685373525028e-05,0.0,0.0,0.0002554963023162052,0.0001649832732450936,0.00034864315605145544,0.00014846092676225868,6.597535634395317e-05,3.227879964344508e-05,0.0,8.781219566548258e-06,4.99988058954072e-05,2.6021745019630255e-05,1.7126302820212812e-05,0.0,0.0,0.0,0.0001965006227035053,5.4554387338107524e-05,6.50686644558251e-05,0.0,3.2519481554017465e-05 +97746,35.0,Eastern Counties in South Carolina and Georgia,G1300730030504,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,91300.0,,6170.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.00457017795963281,0.001049335979922985,0.0,0.005619513939555796,0.0023884924476181534,0.0010827222504769447,0.001452595320060666,0.0,0.000695686191038612,0.0023884924476181534,0.0010827222504769447,0.000403259340137681,0.0,0.000695686191038612,0.0,0.001049335979922985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.011094149371444e-05,0.0,0.0,0.0005446185093457501,0.00024011123411355056,0.0006147294508394646,0.0002846316287670108,0.00012902573669967252,4.805556865518212e-05,0.0,8.290346233395098e-05,0.0,7.011094149371444e-05,0.0,0.0,0.0,0.0,0.00026128178814955987,0.00011844107188031523,0.00015890219919330862,0.0,7.61024520579034e-05 +97747,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,52857.0,,5323.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004709534913626576,0.0015668271599229178,0.0,0.006276362073549494,0.0023908430890162377,0.001575389560079977,0.002310129424453279,0.0,0.0,0.0008240159290933197,0.001575389560079977,0.002310129424453279,0.0,0.0,0.0015668271599229178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010468657867620956,0.0,0.0,0.0005612245578855623,0.0002670425427414541,0.0006659111365617719,9.819610300753533e-05,0.0001877355886661382,0.0002752928662118888,0.0,0.0,0.00010468657867620955,0.0,0.0,0.0,0.0,0.0,0.000253664307458808,0.0001671461015452735,0.00024510072755769036,0.0,0.0 +97748,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,14372.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003175289974999491,0.0,0.0,0.0031752899749994904,0.0016239533928713013,0.000509806402529091,0.0009704848032570332,0.0,7.096266926832577e-05,0.0016239533928713013,0.000509806402529091,0.0009704848032570332,0.0,7.096266926832577e-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.0003783922796696737,0.00010441156923104858,0.0003783922796696737,0.00019352293215550226,6.075250083048211e-05,0.0001156505264024784,0.0,8.456464262257241e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001935229321555023,6.075250083048212e-05,0.00011565052640247843,0.0,8.456464262257243e-06 +97749,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890101,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,17825.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.004075556472651852,0.0,0.0,0.004075556472651852,0.0016769686271381975,0.0008080481104330336,0.0015051860349816555,0.0,8.527099302522596e-05,0.0016769686271381975,0.0008080481104330336,0.0015051860349816555,0.0,8.527099302522596e-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.00048567383325703677,0.00014407241645278813,0.00048567383325703677,0.00019984014130567363,9.629306473448566e-05,0.00017936924105454492,0.0,1.0161530167989223e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00019984014130567363,9.629306473448566e-05,0.00017936924105454492,0.0,1.0161530167989223e-05 +97750,50.0,the Greater Atlanta and Macon Area,G1301350050430,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,16259.0,,996.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013208870923489512,0.00029003750103109215,0.0,0.0016109245933800436,0.0009341096771086195,0.0005493976666300551,0.0001274172496413689,0.0,0.0,0.0006440721760775274,0.0005493976666300551,0.0001274172496413689,0.0,0.0,0.00029003750103109215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9378986453609532e-05,0.0,0.0,0.00015740768025070476,5.635091903567835e-05,0.00017678666670431427,7.675289412518844e-05,6.547070733017725e-05,1.5184078795339093e-05,0.0,0.0,1.9378986453609532e-05,0.0,0.0,0.0,0.0,0.0,0.00010251140049068538,6.0292196529736534e-05,1.3983069683892344e-05,0.0,0.0 +97751,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,58025.0,,11559.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.00278370220367113,0.001965676518834154,0.0,0.004749378722505284,0.0017758907301939088,0.0006818919698538107,0.0014651129552232234,0.0,0.0008264653368729212,0.0012971709718524833,0.0006818919698538107,0.0006772820758845971,0.0,0.00012733945571881923,0.0004787197583414257,0.0007878308793386263,0.000699125881154102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013133523930640464,0.0,0.0,0.00033172788776127663,0.00020627293410325744,0.0004630631270676813,0.00015458111359411194,8.125961984822445e-05,8.071026856086551e-05,0.0,1.5174772868507973e-05,3.1985310614467374e-05,5.263834414234234e-05,4.671158454959492e-05,0.0,0.0,0.0,0.00017314886070410326,6.648428064635045e-05,0.0001428481126043287,0.0,8.058014440750756e-05 +97752,50.0,the Greater Atlanta and Macon Area,G1300630040609,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,222731.0,,43900.0,,7.614023970037612,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.041433252761568805,0.030387079593999142,0.0,0.07182026018854522,0.054451317658288846,0.009842282894341485,0.005050609085953343,0.000780414183832242,0.0016957085331520427,0.027183946290004878,0.009842282894341485,0.0027057581833199785,0.000780414183832242,0.0009208512100702244,0.027267371368283968,0.0023448509026333646,0.0007748573230818181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020302856687222652,0.0,0.0,0.004937517867078694,0.0033818690152035255,0.006967803535800959,0.00323945651279165,0.0011728851684251415,0.0003224397913197037,9.300039749636667e-05,0.00010973599704583307,0.0018218451411726778,0.00015666912538206328,5.177140216752472e-05,0.0,0.0,0.0,0.005282716641688783,0.0009548711376359472,0.0004899961620114954,7.571363143519769e-05,0.0001645129644750176 +97753,50.0,the Greater Atlanta and Macon Area,G1302470060308,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,4378.0,,428.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000738739582639494,0.00033918170940489966,0.0,0.0010779212920443936,0.0008573415263816607,0.00012497038842009352,8.436121521409358e-05,0.0,1.1330869102285117e-05,0.0005294079790053068,0.00012497038842009352,8.436121521409358e-05,0.0,0.0,0.00032793354737635386,0.0,1.1330869102285117e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2663394631839295e-05,0.0,0.0,8.803225848405899e-05,5.074346883540639e-05,0.00011069565311589829,6.308715702602569e-05,1.4892156579647683e-05,1.0052944878385598e-05,0.0,0.0,2.1911816560654184e-05,0.0,7.571043805320616e-07,0.0,0.0,0.0,8.804351570623814e-05,1.2833663151854702e-05,8.663359639240104e-06,0.0,1.1636081084077394e-06 +97754,50.0,the Greater Atlanta and Macon Area,G1301210009602,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,19115.0,,3166.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.004589829057162866,0.002511152172872852,0.0,0.007100981230035718,0.00464425031168333,0.0011922224679521165,0.0010328459368564712,0.0,0.00023174522061753943,0.002364843359428017,0.0011922224679521165,0.0010328459368564712,0.0,0.0,0.0022794069522553127,0.0,0.00023174522061753943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016778014473599388,0.0,0.0,0.0005469642122898616,0.00033344728856367015,0.0007147443570258556,0.0002818154378232996,0.00014207566663948742,0.00012308296392604364,0.0,0.0,0.0001522963174008297,0.0,1.5483827335164184e-05,0.0,0.0,0.0,0.00046746380469935906,0.0001200023283660937,0.00010396039380060898,0.0,2.3326154983128314e-05 +97755,35.0,Eastern Counties in South Carolina and Georgia,G1301030030203,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11804.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028344541241198044,0.0,0.0,0.002834454124119805,0.0019007739686767635,0.0003901292668283131,0.0004645656331936898,0.0,7.890254834729929e-05,0.0019007739686767635,0.0003901292668283131,0.0004645656331936898,0.0,7.890254834729929e-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.00033777548584157336,0.0001009754756119329,0.00033777548584157336,0.0002265109338977865,4.649082217369501e-05,5.536123556278246e-05,0.0,9.4026381924327e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00022651093389778647,4.6490822173695e-05,5.536123556278245e-05,0.0,9.402638192432698e-06 +97756,50.0,the Greater Atlanta and Macon Area,G1301350050219,ComStock 90.1-2004,gen5_led,5001_10000,NaturalGas,15987.0,,627.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0036864196907084104,0.0004975657556156734,0.0,0.004183985446324083,0.002988620109569873,0.00046952805761804833,0.0005851525467056,0.0,0.00014068473243056192,0.002631739086384762,0.00046952805761804833,0.0005851525467056,0.0,0.0,0.0003568810231851115,0.0,0.00014068473243056192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3245242674866826e-05,0.0,0.0,0.0004393030981986307,0.00016903541119218333,0.00047254834087349755,0.00031361896672082084,5.5952698745257715e-05,6.973143273255209e-05,0.0,0.0,2.3845282935846138e-05,0.0,9.399959739020691e-06,0.0,0.0,0.0,0.0003375412014205708,5.302951156675193e-05,6.608839075828251e-05,0.0,1.5889237127892375e-05 +97757,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9519.0,,320.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0021198650070121884,0.00025415883760089174,0.0,0.0023740238446130794,0.00120967366051111,0.0004907837755690502,0.0006194759823074126,0.0,5.4090426225507056e-05,0.0009555148229102186,0.0004907837755690502,0.0006194759823074126,0.0,5.4090426225507056e-05,0.00025415883760089174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6980501080767963e-05,0.0,0.0,0.000252622573055774,0.00010552575005940782,0.00026960307413654194,0.00011386791722965772,5.848629973520201e-05,7.382244439107906e-05,0.0,6.445911699835207e-06,1.6980501080767963e-05,0.0,0.0,0.0,0.0,0.0,0.00013737508926703814,5.573525090322744e-05,7.035002178381758e-05,0.0,6.142712182458839e-06 +97758,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,10572.0,,1230.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0025381973859856053,0.0009759434701238275,0.0,0.003514140856109433,0.0019580899707781034,0.0010418610078940555,0.0003617607405357307,0.0,0.00015234642982780424,0.00113449293048208,0.0010418610078940555,0.0003617607405357307,0.0,0.0,0.0008235970402960232,0.0,0.00015234642982780424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.520739735953921e-05,0.0,0.0,0.0003024688831074732,0.00014758100328311505,0.00036767628046701235,0.00013519390236192808,0.00012415525173530709,4.310987307217856e-05,0.0,0.0,5.5028412110702655e-05,0.0,1.0178985248836543e-05,0.0,0.0,0.0,0.00020487034150148316,0.00010900746322678703,3.785017418067528e-05,0.0,1.5939648111752137e-05 +97759,50.0,the Greater Atlanta and Macon Area,G1302270050500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,37860.0,,2294.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,32736.412774265485,0.0,0.0,0.0022443800699959637,0.000390192063771102,0.0,0.002634572133767066,0.0013301494440937814,0.0010818357324059416,0.00015742787904864884,0.0,6.517680858011409e-05,0.0010051341889027936,0.0010818357324059416,0.00015742787904864884,0.0,0.0,0.0003250152551909879,0.0,6.517680858011409e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6070796507994268e-05,0.0,0.0,0.00026745870936385513,0.00010540065361454258,0.00029352950587184946,0.00011978002143902035,0.0001289204055057905,1.876039531411292e-05,0.0,0.0,2.171598903930763e-05,0.0,4.354807468686642e-06,0.0,0.0,0.0,0.00014819791952414357,0.00012053217442696237,1.753974657035858e-05,0.0,7.261640769527889e-06 +97760,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,35527.0,,1584.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0030068952235391177,0.00046143572265832565,0.0,0.0034683613197968805,0.0020785565303236705,0.0009787588682821145,0.0004110155475916577,0.0,0.0,0.0016171208076653446,0.0009787588682821145,0.0004110155475916577,0.0,0.0,0.00046143572265832565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.083124350140466e-05,0.0,0.0,0.00035832629180463873,0.00011754730558291407,0.00038915753530604336,0.00019270937606160558,0.00011663693270616962,4.897998303686345e-05,0.0,0.0,3.083124350140466e-05,0.0,0.0,0.0,0.0,0.0,0.00023321847459145694,0.00010981883192663053,4.6116820805336544e-05,0.0,0.0 +97761,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13416.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028392511343966844,0.0,0.0,0.002839251134396685,0.0016420662420202096,0.0005533103233159668,0.0005704306875800033,0.0,7.344388148050498e-05,0.0016420662420202096,0.0005533103233159668,0.0005704306875800033,0.0,7.344388148050498e-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.0003383484645708711,9.503220090504125e-05,0.0003383484645708711,0.00019568208848466532,6.593699868854695e-05,6.79772017869818e-05,0.0,8.752175610677081e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001956820884846653,6.593699868854694e-05,6.79772017869818e-05,0.0,8.75217561067708e-06 +97762,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,12309.0,,1281.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026462955313628807,0.0010163872291823488,0.0,0.003662765467618968,0.002603866802534616,0.0005392501207802843,0.0004426482586527733,0.0,7.69175785775559e-05,0.0016643971519298226,0.0005392501207802843,0.0004426482586527733,0.0,0.0,0.000939469650604793,0.0,7.69175785775559e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.791147047986256e-05,0.0,0.0,0.00031535678152051446,0.00013495379488643905,0.00038326825200037703,0.00019834478907734818,6.426197698192756e-05,5.2750015461238695e-05,0.0,0.0,6.277210457976718e-05,0.0,5.139365900095385e-06,0.0,0.0,0.0,0.00027246611519956356,5.642661344538812e-05,4.6318287601183624e-05,0.0,8.048581365676526e-06 +97763,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,26942.0,,5276.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0023894620567328413,0.0015529861474826534,0.0,0.003942417514609197,0.00220885372367086,0.0007534605242149009,0.0009801646459360316,0.0,0.0,0.0006558675761882063,0.0007534605242149009,0.0009801646459360316,0.0,0.0,0.0015529861474826534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010376070173111862,0.0,0.0,0.0002847465392856134,0.00018837472646697005,0.00038850724101673203,7.815818712124281e-05,8.978810781028644e-05,0.00011680390156184796,0.0,0.0,0.00010376070173111863,0.0,0.0,0.0,0.0,0.0,0.00021767244661755918,7.425009360196314e-05,9.65907494382917e-05,0.0,0.0 +97764,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,6057.0,,690.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0011287861423940676,0.0005473554140067366,0.0,0.001676141556400804,0.0011846134171681001,0.0002946853037331524,0.00016466978381496106,0.0,3.2090344610851275e-05,0.0006693483477722149,0.0002946853037331524,0.00016466978381496106,0.0,0.0,0.0005152650693958853,0.0,3.2090344610851275e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.657335829174307e-05,0.0,0.0,0.00013451072787872326,6.757741134439493e-05,0.00017108408617046636,7.976225972468548e-05,3.511589415532614e-05,1.962271828887295e-05,0.0,0.0,3.442913601655475e-05,0.0,2.144222275188321e-06,0.0,0.0,0.0,0.00012091371588964718,3.007858477377735e-05,1.680787602710937e-05,0.0,3.2754675532488377e-06 +97765,50.0,the Greater Atlanta and Macon Area,G1300890021102,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7886.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018936611603351829,0.0,0.0,0.0018936611603351829,0.0009176349831376159,0.00033827193159376737,0.0005949946884805775,0.0,4.275955712322194e-05,0.0009176349831376159,0.00033827193159376737,0.0005949946884805775,0.0,4.275955712322194e-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.0002256653645361976,7.39575542888974e-05,0.0002256653645361976,0.00010935347744274599,4.031146667335116e-05,7.090481448608513e-05,0.0,5.095605934015293e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010935347744274599,4.031146667335116e-05,7.090481448608513e-05,0.0,5.095605934015293e-06 +97766,50.0,the Greater Atlanta and Macon Area,G1301210010508,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,7652.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0022205195157529263,0.0,0.0,0.002220519515752926,0.001354576453702377,0.00037582094307141297,0.0004228812680290788,0.0,6.724085095005695e-05,0.001354576453702377,0.00037582094307141297,0.0004228812680290788,0.0,6.724085095005695e-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.0002646182461562435,7.012973528830743e-05,0.0002646182461562435,0.00016142422659218395,4.4786401614048354e-05,5.0394557978131424e-05,0.0,8.01305997187969e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016142422659218397,4.478640161404837e-05,5.039455797813143e-05,0.0,8.013059971879692e-06 +97767,85.0,Rural Climate Zone 3A,G1300810010400,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,20497.0,,,595.0,3.20458438519356,Mercantile,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,24034.3828889517,0.0,0.0,0.0016488308454783577,0.0,5.61000381615276e-05,0.0017049308836398853,0.0011207554456536045,0.0004237117121566379,0.00016046372582964287,0.0,0.0,0.0010646554074920768,0.0004237117121566379,0.00016046372582964287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.61000381615276e-05,0.0,0.0,0.0,0.0,4.523921909492814e-06,0.00019648902568738868,5.2542516509472616e-05,0.00020101294759688147,0.00012687359912304222,5.049317322168319e-05,1.9122253342663248e-05,0.0,0.0,0.0,0.0,0.0,4.523921909492814e-06,0.0,0.0,0.00013213811646435776,4.9956007606650336e-05,1.8918823525873384e-05,0.0,0.0 +97768,85.0,Rural Climate Zone 3A,G1301050000400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,102639.0,,6957.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004795123054969021,0.0011831647479215435,0.0,0.0059782878028905645,0.0026210084072807254,0.0015840659499903576,0.0007812706456132067,0.0,0.0009919428000062741,0.002255089208293676,0.0015840659499903576,0.0007812706456132067,0.0,0.00017469725107178028,0.0003659191989870497,0.0,0.0008172455489344939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.905204250141881e-05,0.0,0.0,0.0005714250024882396,0.00020303369860060147,0.0006504770449896585,0.00026873436649870114,0.00018876989788130133,9.310242417050953e-05,0.0,2.0818313937727634e-05,2.444854794839402e-05,0.0,5.460349455302479e-05,0.0,0.0,0.0,0.0002851829587121379,0.00017235679716193247,8.500738633725897e-05,0.0,0.00010792990277832904 +97769,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2004,gen5_led,_1000,NaturalGas,19618.0,,1881.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.004487692599520221,0.001458971108905446,0.0,0.005946663708425668,0.0012163887596998628,0.00015638475445453265,0.003942044035373796,0.00043414154429492546,0.00019778547538561885,0.0011360131413297463,0.00015638475445453265,0.002761234020224085,0.00043414154429492546,0.0,8.037561837011657e-05,0.0011808100151497105,0.00019778547538561885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.748013817585546e-05,0.0,0.0,0.0005347902672232008,0.0002410444597557298,0.0006322704053990563,0.00013537664578134286,1.863609032252239e-05,0.00032905129903489897,5.1735868118729435e-05,0.0,5.370240943679007e-06,7.88949984914935e-05,1.321489874068295e-05,0.0,0.0,0.0,0.0001293307730061462,1.6627382503083608e-05,0.0004191321222377606,4.615947086817781e-05,2.1029254189525597e-05 +97770,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,209559.0,,16115.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.019108760602839447,0.004743661755829622,0.0,0.023852422358669068,0.01550475737687502,0.0033506605259768923,0.0049970044558171585,0.0,0.0,0.0107610956210454,0.0033506605259768923,0.0049970044558171585,0.0,0.0,0.004743661755829622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031694438735104793,0.0,0.0,0.0022771535753344204,0.0010410849175453252,0.0025940979626854687,0.0012823786888793748,0.00039929165240190525,0.0005954832340531404,0.0,0.0,0.00031694438735104793,0.0,0.0,0.0,0.0,0.0,0.0016862379392114809,0.000364404986352601,0.000543455037121387,0.0,0.0 +97771,81.0,the Columbus-Albany Area,G1300950000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,17605.0,,1665.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00514517162665042,0.0012914275663874564,0.0,0.006436518332254808,0.0022335365499188734,0.0007552397138600492,0.0024919676126058878,0.0004344649874271996,0.0005213094684427983,0.0022335365499188734,0.0007552397138600492,0.0012005400462184314,0.0004344649874271996,0.0005213094684427983,0.0,0.0012914275663874564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.628317177909942e-05,0.0,0.0,0.0006131386076420381,0.00025639938773614217,0.0006994217794211374,0.00026616556058916196,9.000022937885645e-05,0.00014306567511647553,5.177422188999954e-05,6.212328466868174e-05,0.0,8.628317177909942e-05,0.0,0.0,0.0,0.0,0.000242706386823752,8.206783190695256e-05,0.00027078869846985693,4.721097011092678e-05,5.6647892109649155e-05 +97772,50.0,the Greater Atlanta and Macon Area,G1302110010200,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,64918.0,,1791.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0033416589471987725,0.0003045366877508269,0.0,0.003646195634949599,0.0015716369666349008,0.0007240193085878562,0.0008829188076343694,0.0,0.0004676205520924727,0.0014811412019469512,0.0007240193085878562,0.000668877884571492,0.0,0.0004676205520924727,9.049576468794951e-05,0.0002140409230628774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0347485201407003e-05,0.0,0.0,0.0003982186831508324,0.0001252900142532037,0.00041856616835223937,0.0001765045770138169,8.627990474112324e-05,7.970881367353677e-05,0.0,5.572538772235544e-05,6.046434819980285e-06,1.430105038142672e-05,0.0,0.0,0.0,0.0,0.00018041655715333,8.31140229843552e-05,0.00010135494067716262,0.0,5.3680647537391553e-05 +97773,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010400,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,100317.0,,21689.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00474157736348046,0.003688358434406484,0.0,0.008429935797886945,0.0032965351773847373,0.0011517997385694701,0.0032296385237468783,0.0,0.0007519623581858593,0.0026502635036238127,0.0011517997385694701,0.0007831500639237324,0.0,0.00015636405736344565,0.0006462716737609246,0.0024464884598231454,0.0005955983008224137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002464344703860236,0.0,0.0,0.0005650456643109584,0.00039881345659492304,0.000811480134696982,0.00031582736865965225,0.0001372580047824957,9.33266536012259e-05,0.0,1.863363726758458e-05,4.318008145929845e-05,0.00016346000493822708,3.979438398849804e-05,0.0,0.0,0.0,0.00031733015219974066,0.00011087422602110275,0.00031089056513687894,0.0,7.23851913392597e-05 +97774,50.0,the Greater Atlanta and Macon Area,G1300590150700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,34854.0,,1960.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028842466290094756,0.0005709021750319831,0.0,0.0034551488040414587,0.0022013569928505013,0.0009653641109300662,0.00028842770026089133,0.0,0.0,0.0016304548178185181,0.0009653641109300662,0.00028842770026089133,0.0,0.0,0.0005709021750319831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.814408731438761e-05,0.0,0.0,0.0003437114857415916,0.00012623823674565014,0.0003818555730559792,0.00019429893485197443,0.00011504104035768072,3.4371510531936456e-05,0.0,0.0,3.814408731438761e-05,0.0,0.0,0.0,0.0,0.0,0.00024328921377350578,0.00010668995365863642,3.187640562383701e-05,0.0,0.0 +97775,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,27302.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006969476982790219,0.0,0.0,0.006969476982790219,0.0034305240045589937,0.0013138018663488985,0.0020957145414803105,0.0,0.00012951927747575543,0.0034305240045589937,0.0013138018663488985,0.0020957145414803105,0.0,0.00012951927747575543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008305420537241711,0.00024945132504969824,0.0008305420537241711,0.00040881036828617576,0.00015656378562673952,0.00024974313906175335,0.0,1.5434616826658742e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00040881036828617576,0.00015656378562673952,0.00024974313906175335,0.0,1.5434616826658742e-05 +97776,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,51557.0,,4786.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006294100665989566,0.001408929135521237,0.0,0.007702999111904506,0.0041475468431030425,0.0012991524137943545,0.0022563305446134064,0.0,0.0,0.0027386177075818057,0.0012991524137943545,0.0022563305446134064,0.0,0.0,0.001408929135521237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.413552396825452e-05,0.0,0.0,0.0007500553008747686,0.0003189740268709187,0.0008441908248430232,0.00032635555699652764,0.00015481737682972128,0.00026888236704851974,0.0,0.0,9.413552396825453e-05,0.0,0.0,0.0,0.0,0.0,0.00045453997069052764,0.00014237734314455895,0.00024727687435819516,0.0,0.0 +97777,50.0,the Greater Atlanta and Macon Area,G1301350050320,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,16314.0,,1949.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001453613202290692,0.0005736808105229581,0.0,0.0020272940128136505,0.000898653051609333,0.0006398169120945075,0.0004887933595035122,0.0,0.0,0.0003249722410863748,0.0006398169120945075,0.0004887933595035122,0.0,0.0,0.0005736808105229581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.832983596875385e-05,0.0,0.0,0.00017322294016990116,9.11896555917287e-05,0.00021155277613865502,3.8726015274128237e-05,7.624515690197612e-05,5.82481108009293e-05,0.0,0.0,3.832983596875385e-05,0.0,0.0,0.0,0.0,0.0,9.377650535729355e-05,6.67663610302867e-05,5.100670722032696e-05,0.0,0.0 +97778,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,53510.0,,6022.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004590367172372596,0.0017725089013301218,0.0,0.006362876073702719,0.0024773877787757593,0.001575358870473679,0.002310129424453279,0.0,0.0,0.0007048788774456376,0.001575358870473679,0.002310129424453279,0.0,0.0,0.0017725089013301218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011842847400597672,0.0,0.0,0.0005470258215510756,0.00026728453750606907,0.0006654542955570523,8.399915138583648e-05,0.00018773269065385566,0.00027529397951138343,0.0,0.0,0.00011842847400597672,0.0,0.0,0.0,0.0,0.0,0.00025909483699680446,0.00016475714995193457,0.00024160230860831303,0.0,0.0 +97779,50.0,the Greater Atlanta and Macon Area,G1301350050319,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,51277.0,,3868.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004568761689539014,0.0011386764624636662,0.0,0.00570743815200268,0.00205374845344227,0.0013435602741071304,0.002310129424453279,0.0,0.0,0.0009150719909786038,0.0013435602741071304,0.002310129424453279,0.0,0.0,0.0011386764624636662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.608003427374187e-05,0.0,0.0,0.0005444498615638614,0.00023167367016290044,0.0006205298958376033,0.00010904723263417514,0.00016010929327201108,0.0002752933356576751,0.0,0.0,7.608003427374187e-05,0.0,0.0,0.0,0.0,0.0,0.0002232897282371764,0.00014607592666609904,0.0002511642409343278,0.0,0.0 +97780,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300750960300,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,125637.0,,3688.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.033636519600773684,0.0032623697513565904,0.0,0.0368987971348775,0.02874633090346501,0.004247526662732413,0.0009993583683028911,0.0006593533573281971,0.002246227843048982,0.025483961152108426,0.004247526662732413,0.0009993583683028911,0.0006593533573281971,0.002246227843048982,0.0032623697513565904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021797046267456045,0.0,0.0,0.004008395475356185,0.0010222086867053065,0.004226365938030745,0.003036871703394504,0.0005061690941401602,0.00011909149963519142,7.857379555150122e-05,0.0002676783932927925,0.00021797046267456045,0.0,0.0,0.0,0.0,0.0,0.003292587379736774,0.0004865091385670524,0.0001144659039220831,7.552193531815948e-05,0.00025728158048667527 +97781,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,16764.0,,1113.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0014587690561487063,0.0003277649952594657,0.0,0.0017865340514081718,0.0007314253868931504,0.0005035550601327073,0.0005515842939886121,0.0,0.0,0.0004036603916336847,0.0005035550601327073,0.0005515842939886121,0.0,0.0,0.0003277649952594657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1898660761173346e-05,0.0,0.0,0.00017383866218494397,7.728111298650807e-05,0.00019573732294611733,4.810342128034352e-05,6.000767401869357e-05,6.573122410641025e-05,0.0,0.0,2.1898660761173346e-05,0.0,0.0,0.0,0.0,0.0,8.01368700766979e-05,5.5170803684742145e-05,6.043301161786143e-05,0.0,0.0 +97782,50.0,the Greater Atlanta and Macon Area,G1300970080202,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,48598.0,,11129.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002741255718431524,0.0018925919690606964,0.0,0.00463384768749222,0.0016979126006685164,0.0007079556011412882,0.0013990850892949467,0.0,0.0008288766660260484,0.0012490685013198798,0.0007079556011412882,0.0006650481265047607,0.0,0.00011918348946559494,0.00044884409934863663,0.000734036962790186,0.0007096931765604534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012645197207743496,0.0,0.0,0.0003266703394242467,0.00021916161810446117,0.00045312231150168174,0.00014884916738952273,8.436575069123683e-05,7.925254683757677e-05,0.0,1.4202874505910343e-05,2.9989148451329504e-05,4.904407449674271e-05,4.741756448988213e-05,0.0,0.0,0.0,0.00016603093891485223,6.922766997620306e-05,0.00013680999299136489,0.0,8.10519758500718e-05 +97783,50.0,the Greater Atlanta and Macon Area,G1300630040408,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,82919.0,,6991.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003984029941447284,0.0011888739242988005,0.0,0.0051729038657460855,0.00224312121433514,0.0007180973678735587,0.0014279855784096326,0.0,0.0007836997051277539,0.0017035153948772534,0.0007180973678735587,0.0007787174735687191,0.0,0.0007836997051277539,0.000539605819457887,0.0006492681048409134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.943418995685709e-05,0.0,0.0,0.0004747688776450228,0.0001894912808178034,0.0005542030676018799,0.00020300452154310022,8.557422669904039e-05,9.279820341773917e-05,0.0,9.339192598514319e-05,3.605357160972647e-05,4.338061834713062e-05,0.0,0.0,0.0,0.0,0.00024031853099363377,7.693391844137095e-05,0.00015298834244462046,0.0,8.396227572225469e-05 +97784,50.0,the Greater Atlanta and Macon Area,G1301210004200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,58616.0,,11137.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.0051773541864625185,0.00189386855508294,0.0,0.007071222741545458,0.0035114626185186178,0.0016267074692055846,0.0010649386979726314,0.0,0.0008681139558486254,0.0026726746804587595,0.0016267074692055846,0.0007116435163166594,0.0,0.00016632852048151532,0.0008387879380598579,0.0003532951816559721,0.00070178543536711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012653759319314366,0.0,0.0,0.0006169747141295056,0.000288386028617457,0.0007435123073226493,0.0003184971778150432,0.0001938514035624039,8.480510299829102e-05,0.0,1.9821029753767543e-05,5.604306940767907e-05,2.36051873048409e-05,4.688933648062369e-05,0.0,0.0,0.0,0.0003692170037626901,0.00017104213344348607,0.00011197427339331098,0.0,9.127889672316223e-05 +97785,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,244834.0,,7572.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011210978447345069,0.0012877206892155948,0.0,0.012498699136560662,0.006555375606390443,0.002064824699895089,0.00149420847831353,0.0,0.002384272621600181,0.005638538617359512,0.002064824699895089,0.0011233425084902853,0.0,0.002384272621600181,0.0009168369890309302,0.00037086596982324445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.603744748175186e-05,0.0,0.0,0.0013359908977446033,0.000326024074594118,0.0014220283452263552,0.0006719338820205908,0.00024606121735532786,0.00013386658206875936,0.0,0.000284129216299925,6.125731686514e-05,2.47789459846864e-05,0.0,0.0,0.0,0.0,0.0007458320121191256,0.0002349235883745179,0.00017000223676270316,0.0,0.00027126849071395387 +97786,50.0,the Greater Atlanta and Macon Area,G1301210011419,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,73501.0,,3580.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006980673237980189,0.0010430294046923974,0.0,0.008023702642672588,0.004472087286816827,0.0026011646822496287,0.0009504810472055678,0.0,0.0,0.00342905788212443,0.0026011646822496287,0.0009504810472055678,0.0,0.0,0.0010430294046923974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.968834064104335e-05,0.0,0.0,0.0008318738947113613,0.0002855623143039438,0.0009015622353524047,0.0004086344738317684,0.00030997597527351563,0.00011326706517164053,0.0,0.0,6.968834064104335e-05,0.0,0.0,0.0,0.0,0.0,0.000502494320957374,0.0002922730252959097,0.00010679830194870213,0.0,0.0 +97787,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,48191.0,,2743.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.004191310221683567,0.0008075356105114532,0.0,0.004998876521801318,0.0025890058768805045,0.0010529603920741825,0.0013568795632403334,0.0,0.0,0.0017814702663690512,0.0010529603920741825,0.0013568795632403334,0.0,0.0,0.0008075356105114532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3955374849240285e-05,0.0,0.0,0.000499471388776769,0.00020869195163832692,0.0005534267636260094,0.00021229481497326587,0.00012547951870405097,0.00016169705509945227,0.0,0.0,5.3955374849240285e-05,0.0,0.0,0.0,0.0,0.0,0.0002866294330739711,0.00011657348595640104,0.00015022044694230137,0.0,0.0 +97788,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,58244.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.005136084544125521,0.0,0.0,0.00513608454412552,0.002468796535899906,0.0017512809963818948,0.0009160070118437194,0.0,0.0,0.002468796535899906,0.0017512809963818948,0.0009160070118437194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000612056040300451,0.000166957232882499,0.000612056040300451,0.0002942011213188936,0.00020869635281313921,0.00010915856616841811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029420112131889364,0.00020869635281313924,0.00010915856616841812,0.0,0.0 +97789,50.0,the Greater Atlanta and Macon Area,G1300210013502,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,14001.0,,787.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012475018063953206,0.00023176790676025138,0.0,0.0014792697131555718,0.0004517203150958872,0.0004884864634405352,0.0005390322450128517,0.0,0.0,0.00021995240833563585,0.0004884864634405352,0.0005390322450128517,0.0,0.0,0.00023176790676025138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5485217029782253e-05,0.0,0.0,0.00014866140060789635,6.356665837319897e-05,0.00016414661763767857,2.621113085578472e-05,5.821160455302433e-05,6.423500800209333e-05,0.0,0.0,1.5485217029782253e-05,0.0,0.0,0.0,0.0,0.0,5.0124978008941536e-05,5.420472008752785e-05,5.981351408037566e-05,0.0,0.0 +97790,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,42477.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0034631066870941495,0.0,0.0,0.0034631066870941495,0.002319206558668978,0.0009043739232590605,0.00023952620516611088,0.0,0.0,0.002319206558668978,0.0009043739232590605,0.00023952620516611088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041269027769438453,0.00011966543967508684,0.00041269027769438453,0.0002763743901666631,0.00010777211309147146,2.8543774436250003e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002763743901666631,0.00010777211309147146,2.8543774436250003e-05,0.0,0.0 +97791,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6128.0,,339.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018919243117866572,0.00026888069672648834,0.0,0.0021607223014394063,0.0013675614642794482,0.0003431516489443865,0.00039170070122936,0.0,5.839119405995104e-05,0.0010986807675529599,0.0003431516489443865,0.00039170070122936,0.0,5.839119405995104e-05,0.00026888069672648834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7962759271448538e-05,0.0,0.0,0.0002254552289258577,9.657849371665378e-05,0.00024341798819730624,0.00013092665622081284,4.089240414484738e-05,4.6677856358157916e-05,0.0,6.958312202039587e-06,1.7962759271448538e-05,0.0,0.0,0.0,0.0,0.0,0.00015406378697961566,3.865803762796646e-05,4.4127371946504974e-05,0.0,6.578109078174095e-06 +97792,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8387.0,,604.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0020139172455521355,0.0004790393710980685,0.0,0.0024929566166502046,0.0014445617499307436,0.0005543028082008384,0.0004119639342954903,0.0,8.204541714939297e-05,0.000965522378832675,0.0005543028082008384,0.0004119639342954903,0.0,8.204541714939297e-05,0.0004790393710980685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.200918462020481e-05,0.0,0.0,0.00023999405320733613,9.277184099032231e-05,0.0002720032378275409,0.00011505916127895041,6.605503673903765e-05,4.909282870742265e-05,0.0,9.777170463313242e-06,3.200918462020481e-05,0.0,0.0,0.0,0.0,0.0,0.00015761424430680876,6.047925485767962e-05,4.4948846381095524e-05,0.0,8.951868221250102e-06 +97793,35.0,Eastern Counties in South Carolina and Georgia,G1302450010300,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,83093.0,,2608.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.007220865396967595,0.0007676391223244397,0.0,0.007988504519292035,0.003003960043631744,0.0018402408624291521,0.0031443036132311384,0.0,0.0,0.002236320921307304,0.0018402408624291521,0.0031443036132311384,0.0,0.0,0.0007676391223244397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.12886473397234e-05,0.0,0.0,0.0008604981292248419,0.0003416993243416891,0.0009117867765645652,0.00026649852383890736,0.00021929834339640182,0.0003747012619895326,0.0,0.0,5.12886473397234e-05,0.0,0.0,0.0,0.0,0.0,0.0003428640540287851,0.00021004022467591631,0.00035888249785986367,0.0,0.0 +97794,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,10358.0,,2320.0,,8.72605822017302,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0023237379437795816,0.0018400669765521113,0.0,0.004163804920331693,0.0029198905312925088,0.0004690318151756124,0.0006896942879120845,0.0,8.518828595148664e-05,0.0010798235547403977,0.0004690318151756124,0.0006896942879120845,0.0,8.518828595148664e-05,0.0018400669765521113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012294165908900405,0.0,0.0,0.00027691203873770617,0.0001931954203703137,0.00039985369782671024,0.000128678942830278,5.589294460711602e-05,8.218854965239647e-05,0.0,1.015160164791562e-05,0.00012294165908900405,0.0,0.0,0.0,0.0,0.0,0.0002803995500570907,4.504152074478138e-05,6.623192408582823e-05,0.0,8.180702939009843e-06 +97795,81.0,the Columbus-Albany Area,G1302150010401,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,7019.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001400644293775171,0.0,0.0,0.001400644293775171,0.0005366862014943659,0.00020999326022410152,0.0006147616791042721,0.0,3.920315295243172e-05,0.0005366862014943659,0.00020999326022410152,0.0006147616791042721,0.0,3.920315295243172e-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.00016690913988287741,4.9041121689742064e-05,0.00016690913988287741,6.395473331561806e-05,2.502405114630208e-05,7.325867356063939e-05,0.0,4.671681860317916e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.395473331561806e-05,2.502405114630208e-05,7.325867356063939e-05,0.0,4.671681860317916e-06 +97796,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8417.0,,,,8.72605822017302,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,26178.17466051906,0.0,0.0,0.0017371793768204134,0.0,0.0,0.001737179376820413,0.001209260125142414,0.00022752715985683474,0.0002563092215181137,0.0,4.4082870303050854e-05,0.001209260125142414,0.00022752715985683474,0.0002563092215181137,0.0,4.4082870303050854e-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.00020701634044365246,7.378970102195875e-05,0.00020701634044365246,0.00014410521394147034,2.7113976031255373e-05,3.054387921514373e-05,0.0,5.253271255783028e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014410521394147036,2.711397603125538e-05,3.054387921514374e-05,0.0,5.25327125578303e-06 +97797,50.0,the Greater Atlanta and Macon Area,G1300150960401,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,23414.0,,1440.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0020861873672989423,0.00042385415257757306,0.0,0.002510041519876515,0.0015477689144120445,0.00043576171982108176,0.0005264801960370913,0.0,0.0,0.0011239147618344713,0.00043576171982108176,0.0005264801960370913,0.0,0.0,0.00042385415257757306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.831982383237402e-05,0.0,0.0,0.00024860693081118796,0.00010413072009834239,0.000276926754643562,0.00013393475764107455,5.1928884925608026e-05,6.27396310232274e-05,0.0,0.0,2.8319823832374025e-05,0.0,0.0,0.0,0.0,0.0,0.00017076156669607723,4.807652698664764e-05,5.808527505147829e-05,0.0,0.0 +97798,50.0,the Greater Atlanta and Macon Area,G1300150960401,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,83701.0,,7267.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0074576357095543725,0.0021390962485561813,0.0,0.009596731958110553,0.006369781235119702,0.0011589929818327457,0.0020679577411581067,0.0,0.0,0.00423068498656352,0.0011589929818327457,0.0020679577411581067,0.0,0.0,0.0021390962485561813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014292200584751483,0.0,0.0,0.0008887123003517439,0.00042784980277119045,0.0010316343061992587,0.0005041627042274932,0.00013811499503207217,0.00024643460109217844,0.0,0.0,0.00014292200584751483,0.0,0.0,0.0,0.0,0.0,0.0006847419385908903,0.0001245900089657439,0.00022230235864262465,0.0,0.0 +97799,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,27300.0,,3061.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002432396815943327,0.0009011082201131489,0.0,0.003333505036056476,0.0013587823188307905,0.0007254409136650984,0.0012492511139542896,0.0,0.0,0.00045767409871764163,0.0007254409136650984,0.0012492511139542896,0.0,0.0,0.0009011082201131489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0206263598069105e-05,0.0,0.0,0.00028986348894386745,0.00015064394704589914,0.0003500697525419366,5.4540036471017385e-05,8.644923101333795e-05,0.00014887056424523797,0.0,0.0,6.0206263598069105e-05,0.0,0.0,0.0,0.0,0.0,0.000142693226788752,7.618255211366506e-05,0.0001311907507546683,0.0,0.0 +97800,35.0,Eastern Counties in South Carolina and Georgia,G1301270000504,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,74886.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,215998.51729091106,0.0,0.0,0.011715030180382072,0.0,0.0,0.011715030180382072,0.005979232171008249,0.0018307515533188827,0.0038301982309818746,0.0,7.49028189644393e-05,0.005979232171008249,0.0018307515533188827,0.0038301982309818746,0.0,7.49028189644393e-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.0013960605470721885,0.00045335813690304983,0.0013960605470721885,0.0007125350944215124,0.00021816759971814793,0.0004564383151734307,0.0,8.92604362179576e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0007125350944215124,0.00021816759971814793,0.0004564383151734307,0.0,8.92604362179576e-06 +97801,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,32942.0,,775.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002975602847412667,0.00022811584361082476,0.0,0.003203718691023491,0.001261496266867073,0.0007468008796482995,0.0011954215445081188,0.0,0.0,0.0010333804232562482,0.0007468008796482995,0.0011954215445081188,0.0,0.0,0.00022811584361082476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5241628744144893e-05,0.0,0.0,0.00035459574456033887,0.00012927649071403977,0.0003698373733044838,0.00012314556726454473,8.899454246303846e-05,0.0001424556348327556,0.0,0.0,1.5241628744144893e-05,0.0,0.0,0.0,0.0,0.0,0.00014562716354552414,8.621071396951182e-05,0.00013799949578944789,0.0,0.0 +97802,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,58514.0,,7839.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.005089073274710266,0.002307459428705379,0.0,0.007396563393021942,0.002955900120169541,0.0015374572066960163,0.00290314468694379,0.0,0.0,0.0006484406914641622,0.0015374572066960163,0.00290314468694379,0.0,0.0,0.002307459428705379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001541719511641663,0.0,0.0,0.0006064552668658546,0.00034320068154541043,0.000760627218030021,7.727345458804904e-05,0.00018321587649663932,0.000345962278558648,0.0,0.0,0.0001541719511641663,0.0,0.0,0.0,0.0,0.0,0.00030397063686363955,0.00015810474889901735,0.000298545520322581,0.0,0.0 +97803,50.0,the Greater Atlanta and Macon Area,G1300670031005,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,24979.0,,4748.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002362301755159374,0.0013976660500099798,0.0,0.003759998494775653,0.0018478211951846843,0.0007974387300395092,0.0011147078799451605,0.0,0.0,0.0004501551451747045,0.0007974387300395092,0.0011147078799451605,0.0,0.0,0.0013976660500099798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.338400353878842e-05,0.0,0.0,0.0002815127254239125,0.00017668304439417436,0.0003748967289627009,5.364445990227803e-05,9.502983679443634e-05,0.00013283842872719814,0.0,0.0,9.33840035387884e-05,0.0,0.0,0.0,0.0,0.0,0.0001842399997620266,7.950991785112938e-05,0.00011114375139273097,0.0,0.0 +97804,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,30890.0,,3924.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0029366884266271796,0.0011551567810455326,0.0,0.004091845207672712,0.0021429324493433943,0.0008341741887778594,0.0011147078799451605,0.0,0.0,0.0009877756682978617,0.0008341741887778594,0.0011147078799451605,0.0,0.0,0.0011551567810455326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.718168198460997e-05,0.0,0.0,0.0003499580347021483,0.00017289439627810095,0.0004271397166867584,0.00011771082981422659,9.940651417325838e-05,0.00013283703350874105,0.0,0.0,7.718168198460997e-05,0.0,0.0,0.0,0.0,0.0,0.00022369652634343052,8.707781173976435e-05,0.00011636217497559769,0.0,0.0 +97805,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,9347.0,,689.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001901518332340417,0.000546445636195604,0.0,0.0024478812614622814,0.0014463813055530083,0.0005449569088682966,0.00038194126652812163,0.0,7.451907343911598e-05,0.0009744547427965202,0.0005449569088682966,0.00038194126652812163,0.0,0.0,0.00047192656275648806,0.0,7.451907343911598e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.650754924241096e-05,0.0,0.0,0.00022659605419680497,8.419789703251617e-05,0.00026310360343921596,0.00011612173070100285,6.49402549303096e-05,4.5514356847498814e-05,0.0,0.0,3.1528995909973806e-05,0.0,4.978553332437154e-06,0.0,0.0,0.0,0.00015546020937747101,5.8573154139304466e-05,4.105187825395477e-05,0.0,8.009472132267918e-06 +97806,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Propane,3208.0,,,1526.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00028286933156378277,0.0,0.00014378861973831712,0.0004266579513020998,0.00032408630600081194,8.161386168923915e-05,2.0957783612048757e-05,0.0,0.0,0.00018029768626249485,8.161386168923915e-05,2.0957783612048757e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014378861973831712,0.0,0.0,0.0,0.0,1.1596774099593108e-05,3.370830781884348e-05,2.2758609038128115e-05,4.530508191843659e-05,2.1485291013921926e-05,9.725568893936692e-06,2.497447910984859e-06,0.0,0.0,0.0,0.0,0.0,1.1596774099593108e-05,0.0,0.0,3.441341382997924e-05,8.66624582578765e-06,2.225422262669698e-06,0.0,0.0 +97807,50.0,the Greater Atlanta and Macon Area,G1300630040515,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,238124.0,,6625.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011341739862817958,0.0011266758164372554,0.0,0.012468415679255213,0.006593619995973497,0.003229283916518477,0.0013320465927657268,0.0,0.0013134297132746714,0.005659478174196594,0.003229283916518477,0.0011395125981053735,0.0,0.0013134297132746714,0.0009341418217769019,0.00019253399466035337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.527779989296585e-05,0.0,0.0,0.0013515734242040673,0.0003918066200391545,0.001426851224097033,0.0006744291782060464,0.000384827581444067,0.00013579353456995023,0.0,0.00015651890419755672,6.241381957920841e-05,1.2863980313757432e-05,0.0,0.0,0.0,0.0,0.0007545557514687738,0.0003695503765492431,0.00015243575128829771,0.0,0.0001503052867630513 +97808,50.0,the Greater Atlanta and Macon Area,G1301170130307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,10779.0,,103.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0023009107914275326,8.196271007565364e-05,0.0,0.0023828735015031864,0.0012455685305139696,0.0006631453172417669,0.0003922796507455351,0.0,8.196271007565364e-05,0.0012455685305139696,0.0006631453172417669,0.0003922796507455351,0.0,0.0,0.0,0.0,8.196271007565364e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.478003488782372e-06,0.0,0.0,0.00027419552690697034,7.833900012789446e-05,0.00027967353039575263,0.00014843222987846776,7.902587112653084e-05,4.674728195973257e-05,0.0,0.0,0.0,0.0,5.478003488782372e-06,0.0,0.0,0.0,0.00014619011376765936,7.783216017191852e-05,4.604114937583057e-05,0.0,9.619814259213175e-06 +97809,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,23856.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.002125531442572597,0.0,0.0,0.002125531442572597,0.0009959084139667532,0.0005340605287926238,0.0005955318102069224,0.0,0.0,0.0009959084139667532,0.0005340605287926238,0.0005955318102069224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002532941202529189,9.350859496349744e-05,0.0002532941202529189,0.00011867984660950163,6.364262089607552e-05,7.096799554581918e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011867984660950163,6.364262089607552e-05,7.096799554581918e-05,0.0,0.0 +97810,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,99110.0,,8282.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.008926685783812808,0.002437736807439127,0.0,0.011364422591251935,0.004051365616966041,0.002908024334345125,0.004405001950334471,0.0,0.0,0.0016136288095269147,0.002908024334345125,0.004405001950334471,0.0,0.0,0.002437736807439127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016287455480002092,0.0,0.0,0.0010637758727472595,0.0004498940088892895,0.0012266504275472803,0.00019229302304527165,0.00034654363323147566,0.0005249355592495107,0.0,0.0,0.00016287455480002092,0.0,0.0,0.0,0.0,0.0,0.00043729536862059616,0.0003138856606571666,0.00047546608570186316,0.0,0.0 +97811,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,35066.0,,1378.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0020642218676068073,0.00023427126544315767,0.0,0.0022985108634113855,0.0012801320945278122,0.0008245504578395556,0.00011921895018843504,0.0,7.459163049416213e-05,0.0011204524595788167,0.0008245504578395556,0.00011921895018843504,0.0,0.0,0.00015967963494899554,0.0,7.459163049416213e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5653091314575493e-05,0.0,0.0,0.0002459900478680879,7.691668818969637e-05,0.0002616431391826634,0.00013352254352641614,9.826037102724915e-05,1.4207133314422604e-05,0.0,0.0,1.0669169785746378e-05,0.0,4.983921528829115e-06,0.0,0.0,0.0,0.00014571946781388254,9.385988712859568e-05,1.3570882293359366e-05,0.0,8.490883671648254e-06 +97812,50.0,the Greater Atlanta and Macon Area,G1300670031308,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,492738.0,,9650.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.03152477763882951,0.0016410336012329873,0.0,0.03316581124006249,0.01839826413474619,0.006039546201596847,0.004103869454285421,0.0,0.004624131449434031,0.01839826413474619,0.006039546201596847,0.0024628358530524343,0.0,0.004624131449434031,0.0,0.0016410336012329873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010964378497942291,0.0,0.0,0.0037567474285135952,0.001232758282013895,0.0038663912134930182,0.0021924859318337747,0.0007197211641642664,0.00029349143596843935,0.0,0.0005510488965471142,0.0,0.00010964378497942291,0.0,0.0,0.0,0.0,0.0021448257749287114,0.0007040758990732043,0.00047841931815027853,0.0,0.0005390702213408239 +97813,35.0,Eastern Counties in South Carolina and Georgia,G1302450000600,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,205454.0,,2408.0,,9.325022323477118,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.050432265738631375,0.002041143746121126,0.0,0.05247332110059445,0.03568775533942965,0.0037211498224297077,0.012394375636520478,0.0,0.0006701286863726673,0.03431674027968119,0.0037211498224297077,0.012394375636520478,0.0,0.0,0.0013710150597484587,0.0,0.0006701286863726673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013637694357923795,0.0,0.0,0.0060099112210232385,0.0015867041368498292,0.006146288164602476,0.004089456609874555,0.00044344190659271056,0.001477012704555973,0.0,0.0,9.16029769118013e-05,0.0,4.477396666743666e-05,0.0,0.0,0.0,0.0041801666763852,0.00043586452377326695,0.0014517740193410416,0.0,7.84932976877324e-05 +97814,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,10939.0,,2410.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026267766619604035,0.0019118567165578304,0.0,0.004538633378518234,0.002954875623484236,0.0005423102825086388,0.0009594847624497055,0.0,8.196271007565364e-05,0.0011249816170020594,0.0005423102825086388,0.0009594847624497055,0.0,0.0,0.0018298940064821767,0.0,8.196271007565364e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012774155871807558,0.0,0.0,0.00031302358668643365,0.00021532032390365882,0.00044076514540450926,0.00013406003860544303,6.462517814555874e-05,0.0001143383699354319,0.0,0.0,0.0001222651837098729,0.0,5.4763750082026685e-06,0.0,0.0,0.0,0.000286959988881604,5.266595703800145e-05,9.317946737804708e-05,0.0,7.959732106856705e-06 +97815,81.0,the Columbus-Albany Area,G1302150003400,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,123959.0,,3558.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010930850965658125,0.0010365598280121565,0.0,0.011967441167269721,0.007130718819202682,0.0036914554076671676,0.0011452669403998702,0.0,0.0,0.006094158991190525,0.0036914554076671676,0.0011452669403998702,0.0,0.0,0.0010365598280121565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.925733593234285e-05,0.0,0.0,0.0013026095717106742,0.000363754360852838,0.001371866907643017,0.0007262298112371614,0.0004399040077188418,0.00013647937232111448,0.0,0.0,6.925733593234285e-05,0.0,0.0,0.0,0.0,0.0,0.0008174176115881609,0.00042316360231364346,0.00013128569374121235,0.0,0.0 +97816,50.0,the Greater Atlanta and Macon Area,G1300590150600,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,13265.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0010542980100838035,0.0,0.0,0.0010542980100838033,0.0008149236729148814,0.00019083732526739469,4.853701190152741e-05,0.0,0.0,0.0008149236729148814,0.00019083732526739469,4.853701190152741e-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.00012563743918561052,3.0009748500612853e-05,0.00012563743918561052,9.711193838696466e-05,2.274149492677223e-05,5.7840058718736305e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.711193838696468e-05,2.2741494926772232e-05,5.784005871873632e-06,0.0,0.0 +97817,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,48694.0,,4685.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0046726441639043026,0.0013647769435365022,0.0,0.006037421107440806,0.0039210494458171334,0.0017476361644493644,0.00036870512357486935,0.0,0.0,0.002556272502280631,0.0017476361644493644,0.00036870512357486935,0.0,0.0,0.0013647769435365022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.11865180661039e-05,0.0,0.0,0.000556828308977037,0.0002177367821370286,0.0006480148270431409,0.0003046251425959374,0.00020826180124624283,4.3937745582539226e-05,0.0,0.0,9.11865180661039e-05,0.0,0.0,0.0,0.0,0.0,0.00042085819975805057,0.00018757912139742139,3.95742457965744e-05,0.0,0.0 +97818,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,10256.0,,1463.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002510325102135459,0.0011602148304150045,0.0,0.0036705399325504635,0.002130203391229602,0.0004897085836104392,0.0009810713086956645,0.0,6.947394194101823e-05,0.0010394625027556157,0.0004897085836104392,0.0009810713086956645,0.0,0.0,0.0010907408884739862,0.0,6.947394194101823e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.751931888481878e-05,0.0,0.0,0.0002991542491628847,0.00019071580378812844,0.00037667356804770344,0.00012387225235500578,5.83583391306484e-05,0.00011691380151456702,0.0,0.0,7.287744350249429e-05,0.0,4.641875382324477e-06,0.0,0.0,0.0,0.00021860307387644543,5.025426310073123e-05,0.00010067827544348485,0.0,7.129468164940759e-06 +97819,50.0,the Greater Atlanta and Macon Area,G1300890021706,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,76381.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.006355523814352379,0.0,0.0,0.006355523814352379,0.0036436169885527094,0.0022452164704386147,0.0004666599817616189,0.0,0.0,0.0036436169885527094,0.0022452164704386147,0.0004666599817616189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007573745653131296,0.0002457956574745895,0.0007573745653131296,0.00043420226459395955,0.00026755778091685134,5.5610900243594465e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043420226459395955,0.00026755778091685134,5.5610900243594465e-05,0.0,0.0 +97820,50.0,the Greater Atlanta and Macon Area,G1300670031309,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,13538.0,,1660.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0012005160191535375,0.0004887626698972144,0.0,0.0016893093786570497,0.0006689106588647298,0.0004248669095853974,0.0005955318102069224,0.0,0.0,0.00018014798896751532,0.0004248669095853974,0.0005955318102069224,0.0,0.0,0.0004887626698972144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.26568028538809e-05,0.0,0.0,0.0001430641008718142,8.040245399950294e-05,0.0001757209037256951,2.1468026793740714e-05,5.063089658135375e-05,7.096883474148867e-05,0.0,0.0,3.26568028538809e-05,0.0,0.0,0.0,0.0,0.0,6.95796678645699e-05,4.419438988424968e-05,6.194684597687553e-05,0.0,0.0 +97821,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,12290.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0005828501709613957,0.0,0.0,0.0005828679013228158,0.00038457153920094534,0.0001489173055670235,2.8492690802024857e-05,0.0,2.086863539140215e-05,0.00038457153920094534,0.0001489173055670235,2.8492690802024857e-05,0.0,2.086863539140215e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.722309668992968e-10,0.0,0.0,6.945759770682335e-05,1.7594901050178123e-05,6.945816993779025e-05,4.582895672013503e-05,1.7746307399373628e-05,3.3954418372179337e-06,0.0,2.486891750096769e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.5827940194398945e-05,1.7745913770989244e-05,3.3953665233932274e-06,0.0,2.4868365886955993e-06 +97822,50.0,the Greater Atlanta and Macon Area,G1301210010118,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,14042.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003371636568056607,0.0,0.0,0.0033716365680566064,0.001298418350633387,0.00042660308634734763,0.0015611787239031669,0.0,8.535370009896524e-05,0.001298418350633387,0.00042660308634734763,0.0015611787239031669,0.0,8.535370009896524e-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.0004017910675942957,0.00012982692224457478,0.0004017910675942957,0.00015472987220141408,5.083742154372214e-05,0.0001860424910933112,0.0,1.0171426722202644e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00015472987220141408,5.0837421543722144e-05,0.00018604249109331123,0.0,1.0171426722202646e-05 +97823,85.0,Rural Climate Zone 3A,G1302610950600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,224290.0,,,19396.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.019509661511655063,0.0,0.0018280958293599688,0.021337757341015035,0.016685919092725588,0.003637967499057287,0.0010138403756327183,0.0,0.0,0.014857823263365622,0.003637967499057287,0.0010138403756327183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018280958293599688,0.0,0.0,0.0,0.0,0.00014743365882771632,0.0023249283407813653,0.0008059280566787791,0.002472361999609081,0.0017705778425055306,0.0004335294969800977,0.00012081738173308634,0.0,0.0,0.0,0.0,0.0,0.00014743365882771632,0.0,0.0,0.0019333630818881527,0.0004215238019973781,0.00011747159639713532,0.0,0.0 +97824,50.0,the Greater Atlanta and Macon Area,G1301350050423,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,6424.0,,313.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001257230227911212,0.0002485347565866188,0.0,0.00150584769157157,0.0011250643240757988,0.0001985796840480771,0.0001528426722702401,0.0,2.936101117745413e-05,0.0009058078715928948,0.0001985796840480771,0.0001528426722702401,0.0,0.0,0.00021925645248290396,0.0,2.936101117745413e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6607999588576806e-05,0.0,0.0,0.00014982257639971092,6.315303795247508e-05,0.0001664305759882877,0.0001079440074159354,2.366449614733938e-05,1.821407283643614e-05,0.0,0.0,1.4651516442368424e-05,0.0,1.9620099347569936e-06,0.0,0.0,0.0,0.0001243453136249068,2.1947592296802264e-05,1.6892607482086875e-05,0.0,3.2450625844917965e-06 +97825,50.0,the Greater Atlanta and Macon Area,G1301130140206,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,55548.0,,2133.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004862782896384628,0.0006213830972975267,0.0,0.005484165993682156,0.004422942802926545,0.0007848234358720694,0.00027639975488354156,0.0,0.0,0.0038015597056290187,0.0007848234358720694,0.00027639975488354156,0.0,0.0,0.0006213830972975267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.15170389617602e-05,0.0,0.0,0.0005794900373891996,0.0001746141657834101,0.0006210070763509599,0.00045302577205124484,9.352614992035884e-05,3.293811541759609e-05,0.0,0.0,4.15170389617602e-05,0.0,0.0,0.0,0.0,0.0,0.0005008380092938744,8.887056079704721e-05,3.129850626003829e-05,0.0,0.0 +97826,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,28552.0,,5351.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005770015108147941,0.003681027512376237,0.0,0.009451114340495195,0.002685697754621587,0.0004737821285291266,0.00412726917203537,0.00037495200846961456,0.0017894849968105111,0.002685697754621587,0.0004737821285291266,0.00044624165965913195,0.00037495200846961456,0.0017894849968105111,0.0,0.003681027512376237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002459467777016033,0.0,0.0,0.0006876053666255316,0.000437283284960947,0.000933552144327135,0.0003200511878390379,5.6460014069609964e-05,5.3178051398896944e-05,4.468255427731167e-05,0.00021325065259625162,0.0,0.0002459467777016033,0.0,0.0,0.0,0.0,0.0002652850031766928,4.6798748390665007e-05,0.0004076790150828943,3.7036611654011e-05,0.0001767598503020712 +97827,81.0,the Columbus-Albany Area,G1302150001800,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,48605.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.004226848785776307,0.0,0.0,0.004226848785776306,0.0021526303649334684,0.0007980832117717608,0.0012761658986773748,0.0,0.0,0.0021526303649334684,0.0007980832117717608,0.0012761658986773748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005037054805988071,0.00015757577733306613,0.0005037054805988071,0.0002565248409569627,9.510604900182225e-05,0.0001520782478616718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025652484095696276,9.510604900182226e-05,0.00015207824786167182,0.0,0.0 +97828,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,358761.0,,28075.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.018467288431754457,0.004774467183914658,0.0,0.023241755615669116,0.011290924646988085,0.006487556973958741,0.0027717696704354345,0.0,0.002691504324286855,0.009847761879202888,0.006487556973958741,0.0016697567867334727,0.0,0.0004622127918593565,0.0014431627677851978,0.0011020128837019617,0.002229291532427499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031900211023719435,0.0,0.0,0.002200711083421082,0.0007638159701502761,0.0025197131936582763,0.0011735387571674208,0.0007731096305598964,0.0001989816902877506,0.0,5.5081005406014026e-05,9.642373705912923e-05,7.363008726792945e-05,0.0001489482859101357,0.0,0.0,0.0,0.0012240853174807914,0.0007033368378967438,0.00030049643081478335,0.0,0.0002917946074659579 +97829,35.0,Eastern Counties in South Carolina and Georgia,G1300730030302,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,62193.0,,1181.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.003069887967352203,0.00020081407344351804,0.0,0.0032707020407957204,0.001904896839886213,0.000588612538422913,0.000570474378690199,0.0,0.0002067005534349756,0.001904896839886213,0.000588612538422913,0.0003696603052466809,0.0,0.0002067005534349756,0.0,0.00020081407344351804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3417516632231657e-05,0.0,0.0,0.00036583231777492515,0.00012873756916957093,0.0003792498344071568,0.00022700268982739485,7.014376143125604e-05,4.405166823544361e-05,0.0,2.4632085389649464e-05,0.0,1.3417516632231657e-05,0.0,0.0,0.0,0.0,0.00022087973837989965,6.82517713146859e-05,6.614858551870651e-05,0.0,2.396768329377096e-05 +97830,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,20643.0,,2347.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0018604653129793381,0.0006907923481549918,0.0,0.0025512576611343304,0.0006966847525641508,0.0008340207407463708,0.0010205214782175107,0.0,0.0,5.892404409158935e-06,0.0008340207407463708,0.0010205214782175107,0.0,0.0,0.0006907923481549918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.615420326777579e-05,0.0,0.0,0.00022170774051196178,0.00011575338910268836,0.00026786194377973756,7.021854471692895e-07,9.938849850141984e-05,0.00012161339934750198,0.0,0.0,4.615420326777579e-05,0.0,0.0,0.0,0.0,0.0,7.314640730586449e-05,8.756560349518408e-05,0.00010714671081194275,0.0,0.0 +97831,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,68051.0,,15563.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,364853.82094078336,0.0,0.0,0.016115426008376094,0.01376554597321006,0.0,0.02988106419883893,0.02327074708555224,0.002491525735425626,0.002059303471677757,0.0006526214978757552,0.001406958625560322,0.011354710333960964,0.002491525735425626,0.0011276325669103764,0.0006526214978757552,0.000489028091456144,0.011916036751591277,0.0009316709047673809,0.0009179305341041781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009197346572555225,0.0,0.0,0.0019204489201886923,0.001374721859351847,0.002840183577444215,0.0013531222313686799,0.0002969110407465199,0.0001343781259252515,7.777183490129252e-05,5.827667662590848e-05,0.0007961610820884344,6.224889459080038e-05,6.133084200305128e-05,0.0,0.0,0.0,0.0022118754963824697,0.00023681855604093397,0.00019573599729625046,6.203142057523464e-05,0.000133730872363481 +97832,85.0,Rural Climate Zone 3A,G1302770960600,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,Electricity,29473.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026259868524692366,0.0,0.0,0.0026259868524692366,0.0006591206744557626,0.0008387162505099193,0.0011281499275035544,0.0,0.0,0.0006591206744557626,0.0008387162505099193,0.0011281499275035544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031293213679542365,9.375080713363487e-05,0.00031293213679542365,7.854572496032669e-05,9.994767041210448e-05,0.00013443874142299246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.854572496032669e-05,9.994767041210448e-05,0.00013443874142299246,0.0,0.0 +97833,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,43943.0,,6620.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.003915318592248325,0.001948636551872638,0.0,0.005863924454514667,0.0025385828537333784,0.0013650429985155221,0.001960329291872063,0.0,0.0,0.0005899463018607406,0.0013650429985155221,0.001960329291872063,0.0,0.0,0.001948636551872638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013019578138419422,0.0,0.0,0.00046658024643814297,0.00026129088615000593,0.0005967760278223372,7.030265466836306e-05,0.00016266929079717635,0.00023360830097260364,0.0,0.0,0.00013019578138419422,0.0,0.0,0.0,0.0,0.0,0.00025835349747429284,0.00013892145862036162,0.00019950419503213249,0.0,0.0 +97834,50.0,the Greater Atlanta and Macon Area,G1300150960801,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,37035.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003792744304695301,0.0,0.0,0.003792744304695301,0.0019007914556545193,0.0008041597538187061,0.0010877930952220751,0.0,0.0,0.0019007914556545193,0.0008041597538187061,0.0010877930952220751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004519734412646842,0.0001622655698904077,0.0004519734412646842,0.0002265133598052294,9.583004338311205e-05,0.00012963003807634266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002265133598052294,9.583004338311205e-05,0.00012963003807634266,0.0,0.0 +97835,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock 90.1-2007,gen4_led,_1000,Electricity,2217.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005324681407336612,0.0,0.0,0.0005324681407336612,0.00026706114110422365,0.00010644400390248866,0.00013216590383541326,0.0,2.6797091891535604e-05,0.00026706114110422365,0.00010644400390248866,0.00013216590383541326,0.0,2.6797091891535604e-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,6.345263252049367e-05,2.191054119456986e-05,6.345263252049367e-05,3.1824875801285185e-05,1.2684612931636431e-05,1.5749814657929306e-05,0.0,3.193329129642738e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.1824875801285185e-05,1.2684612931636431e-05,1.5749814657929306e-05,0.0,3.193329129642738e-06 +97836,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,129874.0,,5300.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011395327024793723,0.0015600447569311256,0.0,0.012955371781724848,0.0035759836154146264,0.003628892496671866,0.005750495669638357,0.0,0.0,0.0020159388584835005,0.003628892496671866,0.005750495669638357,0.0,0.0,0.0015600447569311256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010423311441471612,0.0,0.0,0.0013579575162285002,0.0005224200005654931,0.001462190630643216,0.00024023525776649022,0.0004324476016106235,0.0006852746568513865,0.0,0.0,0.00010423311441471612,0.0,0.0,0.0,0.0,0.0,0.00040359858643105445,0.0004095700762312376,0.0006490219679809241,0.0,0.0 +97837,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,14631.0,,2072.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012479314608834884,0.0006098945459542472,0.0,0.0018578260068377358,0.0008420000383837733,0.0004830544031258418,0.0005327408757218226,0.0,0.0,0.00023210549242952614,0.0004830544031258418,0.0005327408757218226,0.0,0.0,0.0006098945459542472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.075024497089021e-05,0.0,0.0,0.0001487134734244845,8.726576233220306e-05,0.0001894637183953747,2.7659543061490207e-05,5.756461824512175e-05,6.348565489943256e-05,0.0,0.0,4.075024497089021e-05,0.0,0.0,0.0,0.0,0.0,8.586835235059301e-05,4.926256983519225e-05,5.4329666440222494e-05,0.0,0.0 +97838,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,134585.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011991380558307705,0.0,0.0,0.011991380558307705,0.005222603751711571,0.0026328920138862203,0.0041359154823162134,0.0,0.0,0.005222603751711571,0.0026328920138862203,0.0041359154823162134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001428990911739187,0.0004636604356556917,0.001428990911739187,0.0006223681468970114,0.00031375693075035417,0.0004928694913161313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006223681468970114,0.00031375693075035417,0.0004928694913161313,0.0,0.0 +97839,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970300,ComStock 90.1-2007,gen5_led,100001_200000,NaturalGas,224270.0,,9459.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.05378027186204035,0.008366041388835153,0.0,0.0621463132508755,0.041143741714532264,0.010947571162967398,0.004323974765281375,0.0006660852167806385,0.005064940391313831,0.03626720117063402,0.010947571162967398,0.004323974765281375,0.0006660852167806385,0.0015754395463769113,0.004876540543898235,0.0,0.003489500844936919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005589727231689852,0.0,0.0,0.006408889141008062,0.0021038918281621457,0.0069678618641770464,0.004321890978042614,0.0013046005071662148,0.0005152795618120427,7.937606421481336e-05,0.000187742029772376,0.00032582353119894083,0.0,0.00023314919197004448,0.0,0.0,0.0,0.004613047723119777,0.0012274447126713547,0.00048480524897820133,7.468165909636688e-05,0.0005678825203113465 +97840,50.0,the Greater Atlanta and Macon Area,G1301350050524,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,8884.0,,89.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002133098138810478,7.071454804710785e-05,0.0,0.0022038126868575854,0.0011250643240757988,0.0004951672504772335,0.0005128665642574453,0.0,7.071454804710785e-05,0.0011250643240757988,0.0004951672504772335,0.0005128665642574453,0.0,0.0,0.0,0.0,7.071454804710785e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.722950408734414e-06,0.0,0.0,0.0002542012160191573,7.4681866163773e-05,0.00025892416642789165,0.00013407386846219985,5.9009060536880864e-05,6.111828702007654e-05,0.0,0.0,0.0,0.0,4.722950408734414e-06,0.0,0.0,0.0,0.00013218289559103094,5.8176798934316124e-05,6.0256276965374016e-05,0.0,8.308194937170583e-06 +97841,50.0,the Greater Atlanta and Macon Area,G1300570091006,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,117313.0,,5970.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012620352060783633,0.0017393137982034204,0.0,0.014359665858987054,0.007904182528885032,0.005342898382697173,0.0011125545738054114,0.0,0.0,0.006164868730681612,0.005342898382697173,0.0011125545738054114,0.0,0.0,0.0017393137982034204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011621137175967452,0.0,0.0,0.0015039419360935685,0.0004971460548562993,0.0016201533078532427,0.0007346549898076539,0.000636702438990901,0.00013258088773434508,0.0,0.0,0.00011621137175967452,0.0,0.0,0.0,0.0,0.0,0.0008918026084871756,0.000602821442591784,0.0001255258298221462,0.0,0.0 +97842,35.0,Eastern Counties in South Carolina and Georgia,G1301270000101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,84534.0,,6219.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.004054171251225014,0.0010576515194289896,0.0,0.005111822770654004,0.0018976451220654115,0.0008020506291975087,0.0021079626692300777,0.0,0.0003041288894381657,0.0018865991069007186,0.0008020506291975087,0.0012941568104110743,0.0,7.134697435429248e-05,1.1046015164692895e-05,0.0008138058588190035,0.00023278191508387323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.066600064761092e-05,0.0,0.0,0.00048312870740512914,0.0001960663803815206,0.00055379470805274,0.0002248228136966844,9.557901226806273e-05,0.00015422247069719178,0.0,8.50229784611116e-06,7.380292094726347e-07,5.437368007316928e-05,1.5553106727393614e-05,0.0,0.0,0.0,0.0002055833845404363,8.689100032768225e-05,0.00022836835770090506,0.0,3.294812380892947e-05 +97843,50.0,the Greater Atlanta and Macon Area,G1300130180402,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,33703.0,,1434.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0029755107785937734,0.0004221662242311995,0.0,0.003397677002824973,0.0009549070999530223,0.0013280620229267903,0.0011147078799451605,0.0,0.0,0.0005327408757218226,0.0013280620229267903,0.0011147078799451605,0.0,0.0,0.0004221662242311995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8207582785783647e-05,0.0,0.0,0.00035458506073770835,0.0001284466465716554,0.00038279264352349205,6.348555586969087e-05,0.0001582622239014346,0.00013283728096658286,0.0,0.0,2.8207582785783647e-05,0.0,0.0,0.0,0.0,0.0,0.00010758274338804145,0.0001496235139763492,0.00012558638615910143,0.0,0.0 +97844,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6418.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,9713.774621698478,0.0,0.0,0.0004639961576149685,0.0,0.0,0.0004639961576149684,0.00025987958612894716,0.00011496326519119464,8.91839959011243e-05,0.0,0.0,0.00025987958612894716,0.00011496326519119464,8.91839959011243e-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,5.529221018165158e-05,2.2689940490662124e-05,5.529221018165158e-05,3.096861140407603e-05,1.369962427015456e-05,1.062763164150271e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0968611404076034e-05,1.3699624270154563e-05,1.0627631641502711e-05,0.0,0.0 +97845,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,92841.0,,1257.0,,9.325022323477118,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.023822977577974462,0.001065559409510535,0.0,0.024888536987485,0.01263539923553634,0.0016492483893054567,0.010273244227359616,0.0,0.00033064513528358584,0.011900573345467446,0.0016492483893054567,0.010273244227359616,0.0,0.0,0.0007348258900688943,0.0,0.00033064513528358584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.119273528303939e-05,0.0,0.0,0.002838942876034171,0.001008799860434107,0.0029101356113172103,0.0014181706635644452,0.000196538067095291,0.0012242446779610959,0.0,0.0,4.9095587354279156e-05,0.0,2.209124275828221e-05,0.0,0.0,0.0,0.001477416101116527,0.00019284124543113033,0.0012012170054363344,0.0,3.866125933321856e-05 +97846,50.0,the Greater Atlanta and Macon Area,G1301350050727,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,186741.0,,43399.0,,9.729435225087556,Education,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.04999567580822927,0.0383862614221088,0.0,0.08838193723033809,0.0652941491742878,0.00898758567252635,0.007914453502004919,0.0006500394147981063,0.005535709466720886,0.034357566300207136,0.00898758567252635,0.004337069615175165,0.0006500394147981063,0.001663507022775293,0.030936582874080673,0.003577383886829754,0.0038722024439455925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025647436607067068,0.0,0.0,0.005957889627899298,0.003900445292539687,0.008522633288606005,0.004094325851000362,0.0010710334962486345,0.0005168403398494734,7.74639611234917e-05,0.00019823696903201405,0.0020670000638438623,0.0002390196988648781,0.0002587177365848537,0.0,0.0,0.0,0.006296287530490723,0.0008666691321468158,0.0007631874452075016,6.268302923736577e-05,0.0005338061515235961 +97847,35.0,Eastern Counties in South Carolina and Georgia,G1300510011600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,26335.0,,191.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.006303933160410012,0.0001513539449429326,0.0,0.006455369812426684,0.0028883791361978333,0.001136974142694259,0.002298181457994135,0.0,0.00013166966139297742,0.002737025191254901,0.001136974142694259,0.002298181457994135,0.0,0.00013166966139297742,0.0001513539449429326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0114582845499159e-05,0.0,0.0,0.0007512297684440861,0.00022998281561787328,0.0007613443512895853,0.00032616697359118534,0.0001354914146785732,0.0002738706583017032,0.0,1.5690865801141238e-05,1.0114582845499159e-05,0.0,0.0,0.0,0.0,0.0,0.0003406545563809072,0.00013409438440478567,0.0002710468218124521,0.0,1.552907979722258e-05 +97848,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,61508.0,,4082.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0049940879667540305,0.0011892479123857347,0.0,0.006183335879139764,0.004141166920942521,0.00144344456608028,0.0005987243921169639,0.0,0.0,0.0029519190085567863,0.00144344456608028,0.0005987243921169639,0.0,0.0,0.0011892479123857347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.945846330592582e-05,0.0,0.0,0.000595134879840742,0.00021661229189034605,0.0006745933431466679,0.00035177393272848033,0.00017201223008278443,7.134871702947724e-05,0.0,0.0,7.945846330592582e-05,0.0,0.0,0.0,0.0,0.0,0.0004517955505460361,0.00015747779427024357,6.531999833038825e-05,0.0,0.0 +97849,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7142.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0017148484669108003,0.0,0.0,0.0017148484669107999,0.0009662667424963287,0.0003068432435728306,0.00038318187263421127,0.0,5.855660820742966e-05,0.0009662667424963287,0.0003068432435728306,0.00038318187263421127,0.0,5.855660820742966e-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.0002043553700575747,7.534052081017635e-05,0.0002043553700575747,0.00011514824869213105,3.656595075304342e-05,4.566308620993264e-05,0.0,6.9780844024675835e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011514824869213107,3.6565950753043425e-05,4.566308620993265e-05,0.0,6.978084402467586e-06 +97850,50.0,the Greater Atlanta and Macon Area,G1301210004300,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,25932.0,,2937.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0022345102345357397,0.0008644341405873942,0.0,0.0030989443751231346,0.0012604835098592485,0.0007237836749250224,0.0011147078799451605,0.0,0.0,0.00039604936927185435,0.0007237836749250224,0.0011147078799451605,0.0,0.0,0.0008644341405873942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.775586574928168e-05,0.0,0.0,0.00026628259332295545,0.00013470468897342551,0.0003240384590722371,4.719649590485839e-05,8.625200770400468e-05,0.0001328377469396565,0.0,0.0,5.775586574928168e-05,0.0,0.0,0.0,0.0,0.0,0.00013180137646211432,7.5681818817747e-05,0.00011655847282472042,0.0,0.0 +97851,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,106180.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010370938656182702,0.0,0.0,0.010370938656182702,0.0033162267877108694,0.0027573076778171068,0.004297373501048428,0.0,0.0,0.0033162267877108694,0.0027573076778171068,0.004297373501048428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012358833616174937,0.00040294599369480953,0.0012358833616174937,0.00039518790402243517,0.00032858266689706075,0.0005121091334809362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039518790402243517,0.00032858266689706075,0.0005121091334809362,0.0,0.0 +97852,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13511.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002825769881377177,0.0,0.0,0.0028257698813771775,0.0014141255467946783,0.0004219714902179465,0.000912507144565779,0.0,7.708299272503453e-05,0.0014141255467946783,0.0004219714902179465,0.000912507144565779,0.0,7.708299272503453e-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.0003367412039084968,0.0001024104322915386,0.0003367412039084968,0.00016851844244065677,5.028547744369112e-05,0.00010874160576955002,0.0,9.185822222171724e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016851844244065675,5.028547744369111e-05,0.00010874160576955001,0.0,9.185822222171722e-06 +97853,50.0,the Greater Atlanta and Macon Area,G1300770170405,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,55240.0,,5712.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002822301200482585,0.0009714110414818528,0.0,0.0037936945116030176,0.001339457883839309,0.0010046377387830318,0.0010572437211163286,0.0,0.0003923374375029284,0.0011128815952524543,0.0010046377387830318,0.00031240896822133044,0.0,0.0003923374375029284,0.00022657628858685475,0.0007448347528949981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.490345192837008e-05,0.0,0.0,0.00033632717314757075,0.00013993366016236625,0.00040123062507594086,0.00013261955205745465,0.00011972037947774298,3.7229061565031805e-05,0.0,4.6753954274178406e-05,1.5138373588972791e-05,4.976507833939728e-05,0.0,0.0,0.0,0.0,0.00014166441772051183,0.00010625300130886664,0.00011181674164424852,0.0,4.149458919492078e-05 +97854,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,78339.0,,7873.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0037090143054608463,0.0013389082426352873,0.0,0.005047922548096133,0.0018605532059746608,0.0006658105320458228,0.001687664451767726,0.0,0.0008339120886693436,0.0018138868947170817,0.0006658105320458228,0.00039540479002859763,0.0,0.0008339120886693436,4.666631125757897e-05,0.0012922596617391284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.945849522756841e-05,0.0,0.0,0.00044199585159325965,0.00020998352803968946,0.0005314543468208279,0.0002161572905081353,7.934331573703372e-05,4.711960173230691e-05,0.0,9.937564361578364e-05,3.11798661774429e-06,8.63416932551956e-05,0.0,0.0,0.0,0.0,0.00019588238119453607,7.009772793528645e-05,0.0001776803428184981,0.0,8.779576155678334e-05 +97855,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen4_led,_1000,Electricity,12590.0,,2559.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0026371433342440185,0.0017601515286651264,0.0,0.00439722314293813,0.001105993673031738,0.00013791750426302005,0.0022271202599477694,0.00036878409096227204,0.0005573358947623136,0.0006933886797789276,0.00013791750426302005,0.0008795737245354539,0.00036878409096227204,0.0005573358947623136,0.00041260499325281036,0.0013475465354123156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011760096314911907,0.0,0.0,0.0003142593001263495,0.00020050299891077183,0.0004318602632754686,8.262874391138282e-05,1.6435154586428342e-05,0.00010481577527194859,4.3946731608639904e-05,6.641580150345015e-05,2.7567367818306658e-05,9.003359533081238e-05,0.0,0.0,0.0,0.0,0.00010862189688589323,1.3545159698565119e-05,0.00021873002814328785,3.6219038569954156e-05,5.473709621297429e-05 +97856,50.0,the Greater Atlanta and Macon Area,G1300670030904,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,NaturalGas,9581.0,,2539.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0019949627137702372,0.0017467398940852073,0.0,0.0037416308878844293,0.0014405673378195638,0.0003357929042950909,0.0008546151746220214,0.0003667042118028193,0.0007438795393739177,0.0007021385162428323,0.0003357929042950909,0.000477224687137876,0.0003667042118028193,0.00011303067432060304,0.0007384288215767314,0.00037739048748414535,0.0006308488650533147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011670638083776637,0.0,0.0,0.00023773219844704208,0.00019216420607657075,0.0003544385792848085,8.367120444336146e-05,4.001517662960349e-05,5.6869069904609506e-05,4.3698760808877115e-05,1.3469440061566666e-05,4.9337257117866656e-05,2.521490355033162e-05,4.2149428283678615e-05,0.0,0.0,0.0,0.0001364625896782569,3.180911305753254e-05,8.095629884527078e-05,3.473729070123108e-05,7.046649308687047e-05 +97857,50.0,the Greater Atlanta and Macon Area,G1300150960500,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,41326.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0038285283856384226,0.0,0.0,0.0038285283856384217,0.001669422513776138,0.0008156990457866423,0.0013434375156819395,0.0,0.0,0.001669422513776138,0.0008156990457866423,0.0013434375156819395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000456239590916169,0.00014936435280518787,0.000456239590916169,0.0001989424050265879,9.720554779126938e-05,0.0001600952953295014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019894240502658795,9.72055477912694e-05,0.00016009529532950143,0.0,0.0 +97858,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000500,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,112693.0,,6046.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0053745867268991864,0.001028112737303182,0.0,0.006402699464202368,0.0031133805439155925,0.0011071901492366173,0.0008234157147086722,0.0,0.0013587130563414865,0.00208526780661241,0.0011071901492366173,0.0008234157147086722,0.0,0.0013587130563414865,0.001028112737303182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.869214997843469e-05,0.0,0.0,0.000640479797516473,0.00021170445286659907,0.0007091719474949076,0.00024849759998519567,0.00013194185127689422,9.812496421148264e-05,0.0,0.0001619153820429004,6.869214997843469e-05,0.0,0.0,0.0,0.0,0.0,0.00034484238342997607,0.00012263392944980684,9.120267619348684e-05,0.0,0.00015049295842163788 +97859,50.0,the Greater Atlanta and Macon Area,G1300210013410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10959.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026314082580898047,0.0,0.0,0.0026314082580898047,0.0012980048152646906,0.0004544753701974943,0.0008101157872765161,0.0,6.881228535110377e-05,0.0012980048152646906,0.0004544753701974943,0.0008101157872765161,0.0,6.881228535110377e-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.0003135780297517997,8.259322698761321e-05,0.0003135780297517997,0.0001546798340119671,5.415863947341399e-05,9.653937645897908e-05,0.0,8.20017980743957e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001546798340119671,5.415863947341399e-05,9.653937645897908e-05,0.0,8.20017980743957e-06 +97860,50.0,the Greater Atlanta and Macon Area,G1300670030318,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,11616.0,,559.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028107171939566232,0.0004433099152426877,0.0,0.003254027109199311,0.0016686979197642663,0.0006413106497745898,0.0008556873849068745,0.0,8.841386182731961e-05,0.0013137191592751591,0.0006413106497745898,0.0008556873849068745,0.0,0.0,0.00035497876048910744,0.0,8.841386182731961e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9620540684672078e-05,0.0,0.0,0.0003349502005304023,0.0001436000009509411,0.00036457074121507433,0.00015655452522436768,7.642431305651895e-05,0.00010197136224951572,0.0,0.0,2.371853742884563e-05,0.0,5.907529476103442e-06,0.0,0.0,0.0,0.0001869555529370511,7.185038449018113e-05,9.586846504196723e-05,0.0,9.905604980655611e-06 +97861,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,NaturalGas,50252.0,,8235.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.011120945216980756,0.006387031533016869,0.0,0.017507976749997625,0.007892901896102063,0.0020755345798029704,0.005679176238034977,0.0004160287288875752,0.0014443353071700426,0.0057467758526802675,0.0020755345798029704,0.002882686916393014,0.0004160287288875752,0.0,0.0021461260434217947,0.002796489321641963,0.0014443353071700426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042674424465024527,0.0,0.0,0.001325262429887702,0.000763447889675775,0.0017520066745379474,0.0006848326272585217,0.00024733760906812626,0.00034352445703906425,4.957737255164055e-05,0.0,0.00014339164173370842,0.0001868451278293422,9.650207244065785e-05,0.0,0.0,0.0,0.0007898352277310348,0.000207696782385184,0.0005683097948434242,4.163160142480021e-05,0.00014453326815350463 +97862,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,79899.0,,11682.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003741389945413862,0.0019865806149483964,0.0,0.005727970560362258,0.0020990620277972116,0.0007375653047127766,0.0025251403430825003,0.0,0.00036618515440835046,0.0019304640210539292,0.0007375653047127766,0.0009911449337423718,0.0,8.219795554336478e-05,0.0001685980067432821,0.0015339954093401282,0.0002839871988649857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013273210028746688,0.0,0.0,0.00044585419562402976,0.00024197150473848604,0.0005785862959114967,0.00023004965957722988,8.789422927059567e-05,0.00011811282267495778,0.0,9.795371208406006e-06,1.1264766891877497e-05,0.00010249291218334812,1.897442121224123e-05,0.0,0.0,0.0,0.00021202771745301274,7.45019851532915e-05,0.0002550661848493142,0.0,3.6988617499721846e-05 +97863,50.0,the Greater Atlanta and Macon Area,G1300450910400,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,64658.0,,12510.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003328290254688052,0.002127501527514976,0.0,0.005455791782203029,0.002674234952263724,0.0012316040953211278,0.0009846201607397922,0.0,0.0005653503042398035,0.0016530547862757831,0.0012316040953211278,0.0003448200688971869,0.0,9.882903455537432e-05,0.001021180165987941,0.0006398000918426053,0.0004665212696844293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014214769256054905,0.0,0.0,0.00039662600645964854,0.00026114266447765174,0.0005387736990201975,0.00019699138842114682,0.00014676791279802343,4.109155043830471e-05,0.0,1.1777267695552776e-05,6.822951824308972e-05,4.2747845573433324e-05,3.117032874402598e-05,0.0,0.0,0.0,0.00026408769153914364,0.0001216241236201735,9.72338145055511e-05,0.0,5.582982027486362e-05 +97864,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010702,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,26066.0,,663.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.002932286968952365,0.00024636247834290237,0.0,0.0031786494472952676,0.0018645741519126237,0.0003161096411326514,0.0008818366282050601,0.0,0.00011612902604493213,0.0018645741519126237,0.0003161096411326514,0.0007516031759070899,0.0,0.0,0.0,0.00013023345229797023,0.00011612902604493213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6459400353179017e-05,0.0,0.0,0.00034943684862273893,0.00012262016790112295,0.00036589624897591795,0.000222198892047918,3.7670377417433816e-05,8.956757915738708e-05,0.0,0.0,0.0,8.700856336432003e-06,7.758544016747014e-06,0.0,0.0,0.0,0.00021463225166361307,3.63875708452152e-05,0.00010150874445886338,0.0,1.3367682008226277e-05 +97865,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,33950.0,,1491.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008152022723114835,0.0011830419827670532,0.0,0.00933506470588189,0.00475176950754443,0.0008494016473026874,0.0036068554857711975,0.0,0.0001270380652635762,0.0035687275247773763,0.0008494016473026874,0.0036068554857711975,0.0,0.0001270380652635762,0.0011830419827670532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.904597261341486e-05,0.0,0.0,0.0009714580634714145,0.00041116064167336894,0.0010505040360848294,0.00042527716715596886,0.00010122126831889037,0.0004298207898137107,0.0,1.5138838182844747e-05,7.904597261341486e-05,0.0,0.0,0.0,0.0,0.0,0.0005347314885857208,9.55858247223879e-05,0.0004058907318542684,0.0,1.4295990922452559e-05 +97866,50.0,the Greater Atlanta and Macon Area,G1301210004200,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,4227.0,,1512.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,9613.75315558068,0.0,0.0,0.0004877392597714188,0.0004405690598445902,0.0,0.0009283083196160089,0.0007512909820927913,0.00013242889354859796,4.458844397461968e-05,0.0,0.0,0.0003107219222482011,0.00013242889354859796,4.458844397461968e-05,0.0,0.0,0.0004405690598445902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9436118195521066e-05,0.0,0.0,5.8122618096396626e-05,4.8373097962929346e-05,8.75587362919177e-05,3.702792272550363e-05,1.5781206557497154e-05,5.313488813395831e-06,0.0,0.0,2.9436118195521063e-05,0.0,0.0,0.0,0.0,0.0,7.086232837681459e-05,1.2490792469088808e-05,4.205615446014306e-06,0.0,0.0 +97867,50.0,the Greater Atlanta and Macon Area,G1301170130613,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,23139.0,,4546.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005367053615390461,0.003526015306486221,0.0,0.008893068921876681,0.00487598607981529,0.00044538119314145087,0.002613097065642542,0.00041101536033732647,0.00054758922294007,0.002641398339716527,0.00044538119314145087,0.001321669499255086,0.00041101536033732647,0.00054758922294007,0.0022345877400987636,0.0012914275663874564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023558525227400647,0.0,0.0,0.0006395823256198191,0.00042883322697340946,0.0008751675778938254,0.00031477078748752535,5.307529227580022e-05,0.00015750102618880798,4.8979976513778584e-05,6.525524315390688e-05,0.00014930051934578193,8.628473292822448e-05,0.0,0.0,0.0,0.0,0.0004798461548879392,4.3829996536090115e-05,0.00025715507771610163,4.044805235892266e-05,5.3888296394771644e-05 +97868,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,82879.0,,3070.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006809032027557452,0.0008943202618451647,0.0,0.007703321915803179,0.004558560924416108,0.0024661540327488214,0.0006786373322376889,0.0,0.0,0.003664240662570942,0.0024661540327488214,0.0006786373322376889,0.0,0.0,0.0008943202618451647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.975224997279289e-05,0.0,0.0,0.0008114183812782527,0.0002470640465501739,0.0008711706312510456,0.0004366600443358216,0.00029388651795690196,8.087181898552922e-05,0.0,0.0,5.975224997279289e-05,0.0,0.0,0.0,0.0,0.0,0.0005155288123131576,0.00027889798569427925,7.674726820168092e-05,0.0,0.0 +97869,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,118602.0,,0.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.010567260067669107,9.206881889310834e-08,0.0,0.010567382826094297,0.0031961383582679594,0.002858552688993228,0.004512661089226813,0.0,0.0,0.0031960462894490664,0.002858552688993228,0.004512661089226813,0.0,0.0,9.206881889310834e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.908410479293283e-09,0.0,0.0,0.0012592810033996702,0.0003600178183970504,0.0012592879118101497,0.00038086697521555116,0.0003406484817648888,0.0005377655464192303,0.0,0.0,6.908410479293282e-09,0.0,0.0,0.0,0.0,0.0,0.00038087561180246993,0.0003406463933181868,0.0005377622494878127,0.0,0.0 +97870,50.0,the Greater Atlanta and Macon Area,G1300590130700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,44336.0,,3296.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003662418246604677,0.0009603220934233991,0.0,0.004622740340028077,0.003043616905259359,0.0013357094088745742,0.00024341402589414312,0.0,0.0,0.00208329481183596,0.0013357094088745742,0.00024341402589414312,0.0,0.0,0.0009603220934233991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.416251807244525e-05,0.0,0.0,0.00043644381466602383,0.00016390712901237565,0.0005006063327384691,0.00024826250677255503,0.0001591740949398574,2.9007212953611452e-05,0.0,0.0,6.416251807244525e-05,0.0,0.0,0.0,0.0,0.0,0.0003295997146994075,0.00014464679813205942,2.6359819907002094e-05,0.0,0.0 +97871,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,60141.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00479386519926037,0.0,0.0,0.004793865199260369,0.0029524049861477906,0.0013797815016587521,0.00046167871145382774,0.0,0.0,0.0029524049861477906,0.0013797815016587521,0.00046167871145382774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005712760807783883,0.00013459331061795523,0.0005712760807783883,0.0003518326609637058,0.00016442601863726698,5.501740117741559e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035183266096370586,0.000164426018637267,5.501740117741561e-05,0.0,0.0 +97872,81.0,the Columbus-Albany Area,G1302150000800,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,205322.0,,4392.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.016968849171488245,0.00127942712911642,0.0,0.018248276300604667,0.012558845521922185,0.0038119778502361673,0.001877422554846878,0.0,0.0,0.011279418392805766,0.0038119778502361673,0.001877422554846878,0.0,0.0,0.00127942712911642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.548399918392366e-05,0.0,0.0,0.0020221436527747853,0.0006368427347108927,0.0021076276519587087,0.0013441456211613515,0.0004542657393245648,0.00022372867272806764,0.0,0.0,8.548399918392366e-05,0.0,0.0,0.0,0.0,0.0,0.00145051344371654,0.0004402733602595463,0.00021683733991221578,0.0,0.0 +97873,50.0,the Greater Atlanta and Macon Area,G1300630040514,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,136117.0,,9136.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006613123393535555,0.001553693840877807,0.0,0.008166817234413362,0.003971902374235969,0.0010543891329277,0.0020194704353825943,0.0,0.0011210552918670986,0.0033907188572480586,0.0010543891329277,0.001046960111492698,0.0,0.0011210552918670986,0.0005811835169879108,0.0009725103238898961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010380882643973547,0.0,0.0,0.0007880733966655496,0.00031569273391019007,0.0008918822231052852,0.00040406554784407436,0.0001256495570921648,0.00012476425467033094,0.0,0.00013359403705897954,3.883131750753848e-05,6.4977508932197e-05,0.0,0.0,0.0,0.0,0.0004337637316730278,0.00011514778608378657,0.00022054243773386034,0.0,0.0001224282676146105 +97874,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,Electricity,91818.0,,10.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.011923525838783486,2.946202204579467e-06,0.0,0.011926441351381767,0.003543176426282382,0.004355008581675513,0.00402828703303017,0.0,0.0,0.003540230224077803,0.004355008581675513,0.00402828703303017,0.0,0.0,2.946202204579467e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.959559647165952e-07,0.0,0.0,0.0014209020367478347,0.0004240243042196889,0.0014210979927125513,0.0004218819503528345,0.0005189774104928999,0.00048004267590210037,0.0,0.0,1.959559647165952e-07,0.0,0.0,0.0,0.0,0.0,0.0004221880407463672,0.0005189220968204382,0.00047999151197317857,0.0,0.0 +97875,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,40529.0,,3160.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033796400358392076,0.0009206237989582578,0.0,0.004300233461198028,0.0029834771783726105,0.0009850462033657293,0.00033171007945968767,0.0,0.0,0.002062853379414353,0.0009850462033657293,0.00033171007945968767,0.0,0.0,0.0009206237989582578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.150977873957494e-05,0.0,0.0,0.0004027438624468149,0.00016589581092529411,0.0004642536411863898,0.00024582545149087244,0.00011738567078892282,3.9529120615640164e-05,0.0,0.0,6.150977873957494e-05,0.0,0.0,0.0,0.0,0.0,0.00032209649916776844,0.00010634568815293198,3.581145386568932e-05,0.0,0.0 +97876,85.0,Rural Climate Zone 3A,G1301750950400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,14981.0,,12.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0008679011915115847,2.021261201886019e-06,0.0,0.0008699047223520508,0.0006195697494623251,0.00012046007548783874,4.0903943796061815e-05,0.0,8.900641432866507e-05,0.0006175484882604391,0.00012046007548783874,4.0903943796061815e-05,0.0,8.900641432866507e-05,2.021261201886019e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3459651848404325e-07,0.0,0.0,0.00010342585096066907,3.3219374695600144e-05,0.0001035604474791531,7.359187720041069e-05,1.4354958762549247e-05,4.874431831792922e-06,0.0,1.0606696053576276e-05,1.3459651848404325e-07,0.0,0.0,0.0,0.0,0.0,7.375856096674736e-05,1.4340535233747754e-05,4.869534116022382e-06,0.0,1.0596038691994954e-05 +97877,50.0,the Greater Atlanta and Macon Area,G1300590130400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,10108.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.002070819712284779,0.0,0.0,0.002070819712284779,0.0013014785123617416,0.0003398433659948142,0.0003907909234182276,0.0,3.878961758373519e-05,0.0013014785123617416,0.0003398433659948142,0.0003907909234182276,0.0,3.878961758373519e-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.0002467795992826664,6.668292752498575e-05,0.0002467795992826664,0.0001550972032235817,4.049913625099753e-05,4.657055701775696e-05,0.0,4.622558992873654e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001550972032235817,4.049913625099753e-05,4.657055701775696e-05,0.0,4.622558992873654e-06 +97878,85.0,Rural Climate Zone 3A,G1300690010300,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,84857.0,,1221.0,,1.8706521585294562,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,70149.4559448546,0.0,0.0,0.004368051839444208,0.0002076225322288183,0.0,0.004575674371673026,0.002160497730117694,0.0012026681454836016,0.0007146931384809083,0.0,0.0004978330879522426,0.002160497730117694,0.0012026681454836016,0.0005070706062520901,0.0,0.0004978330879522426,0.0,0.0002076225322288183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3872325409567543e-05,0.0,0.0,0.0005205327017681173,0.00012811611729625412,0.0005344050271776849,0.0002574625398138919,0.00014331975033947544,6.04266712853807e-05,0.0,5.932585322392109e-05,0.0,1.3872325409567543e-05,0.0,0.0,0.0,0.0,0.00025233020411780696,0.0001404627713352561,8.347088867557368e-05,0.0,5.81432338245245e-05 +97879,50.0,the Greater Atlanta and Macon Area,G1301210010604,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,5035.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005360636564768819,0.0,0.0,0.0005360636564768819,0.00036569813723053197,0.0001325807615457867,3.778475770056327e-05,0.0,0.0,0.00036569813723053197,0.0001325807615457867,3.778475770056327e-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,6.388231240697627e-05,1.8974202697061994e-05,6.388231240697627e-05,4.357997854722616e-05,1.5799552023143033e-05,4.502781836607088e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.357997854722616e-05,1.5799552023143033e-05,4.502781836607088e-06,0.0,0.0 +97880,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,14928.0,,5093.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.00115504439470934,0.0008661281553695794,0.0,0.00202117255007892,0.0007221930813615907,0.0004362555427403992,0.0004847835419470836,0.0,0.0003779403840298455,0.0004900849200116796,0.0004362555427403992,0.00016170089615088156,0.0,6.698530544495948e-05,0.0002321081613499112,0.00032308264579620214,0.000310955078584886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.786997072061875e-05,0.0,0.0,0.00013764381638259074,9.73567820283338e-05,0.0001955137871032095,5.8402221638363506e-05,5.198750636416678e-05,1.9269500428417033e-05,0.0,7.982475067824512e-06,1.5508204436102762e-05,2.1586624492755678e-05,2.0776326438039135e-05,0.0,0.0,0.0,6.985979715152355e-05,4.2200243270972136e-05,4.689449508290672e-05,0.0,3.6559251597807035e-05 +97881,50.0,the Greater Atlanta and Macon Area,G1300630040522,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,33260.0,,2772.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007872472813875977,0.0021990156765807054,0.0,0.010071405783382944,0.007157552868473404,0.0015821863206329511,0.0011736133763607722,0.0,0.0001581359249895558,0.004958537191892699,0.0015821863206329511,0.0011736133763607722,0.0,0.0001581359249895558,0.0021990156765807054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014692264591844155,0.0,0.0,0.0009381434855021014,0.0004367081519830325,0.001085066131420543,0.0005908968470484582,0.00018854530522304145,0.0001398566587096162,0.0,1.8844674520985637e-05,0.00014692264591844155,0.0,0.0,0.0,0.0,0.0,0.0007711354669321783,0.0001704604925112094,0.000126441944000735,0.0,1.7037138613770638e-05 +97882,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,19176.0,,3000.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0017847223293628593,0.0008738484558241199,0.0,0.0026585707851869795,0.0018336238244576397,0.0006697986148013031,0.0001551483459280363,0.0,0.0,0.0009597753686335199,0.0006697986148013031,0.0001551483459280363,0.0,0.0,0.0008738484558241199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.838610499690124e-05,0.0,0.0,0.00021268152317236927,0.00010864336679106834,0.0002710676281692705,0.00011437436734327844,7.981846098465063e-05,1.8488694844440205e-05,0.0,0.0,5.838610499690124e-05,0.0,0.0,0.0,0.0,0.0,0.00018695611334472792,6.8292604009971e-05,1.5818910814571554e-05,0.0,0.0 +97883,81.0,the Columbus-Albany Area,G1302150000300,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,73753.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006110712602884101,0.0,0.0,0.006110712602884099,0.0034031188282045892,0.0018857449210928218,0.0008218792271861264,0.0,0.0,0.0034031188282045892,0.0018857449210928218,0.0008218792271861264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007282022472715847,0.00020339739613153802,0.0007282022472715847,0.0004055433366742196,0.00022472071238838047,9.794181777429632e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004055433366742197,0.00022472071238838052,9.794181777429635e-05,0.0,0.0 +97884,50.0,the Greater Atlanta and Macon Area,G1301210011301,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,20832.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.00271315214337662,0.0,0.0,0.0027131521433766195,0.001720512540151452,0.0007228005458201802,0.0002698694310044249,0.0,0.0,0.001720512540151452,0.0007228005458201802,0.0002698694310044249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003233224862723024,9.149012619681779e-05,0.0003233224862723024,0.00020503103502781457,8.613511414170543e-05,3.215995668147466e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020503103502781463,8.613511414170545e-05,3.215995668147467e-05,0.0,0.0 +97885,50.0,the Greater Atlanta and Macon Area,G1301210005800,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,7995.0,,1509.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010765300097108183,0.0004442934303718431,0.0,0.0015208234400826614,0.0006591513640620604,0.0003728480269107911,0.0004887933595035122,0.0,0.0,0.0002148579336902172,0.0003728480269107911,0.0004887933595035122,0.0,0.0,0.0004442934303718431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9685737648090326e-05,0.0,0.0,0.0001282886728858271,7.046613977054645e-05,0.0001579744105339174,2.560433886976668e-05,4.4431811588172456e-05,5.824886518765517e-05,0.0,0.0,2.9685737648090326e-05,0.0,0.0,0.0,0.0,0.0,6.84688606487232e-05,3.872931315864317e-05,5.0773048866384866e-05,0.0,0.0 +97887,35.0,Eastern Counties in South Carolina and Georgia,G1300510004208,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,8069.0,,113.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.001106499989235596,4.211953664025399e-05,0.0,0.0011486195258758503,0.0006450450105338621,0.00016398332940345433,0.0003011140011328554,0.0,3.843843638190613e-05,0.0006450450105338621,0.00016398332940345433,0.0002589944644926014,0.0,3.843843638190613e-05,0.0,4.211953664025399e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8132001285492048e-06,0.0,0.0,0.00013186109827261933,4.5574454361184095e-05,0.00013467429840116857,7.686971925144607e-05,1.9541818458107753e-05,3.0864252025990614e-05,0.0,4.580690905114106e-06,0.0,2.813200128549205e-06,0.0,0.0,0.0,0.0,7.563077439814636e-05,1.9226853922806236e-05,3.530526508367847e-05,0.0,4.506861789088797e-06 +97888,85.0,Rural Climate Zone 3A,G1302930010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,121769.0,,8742.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006268108290662749,0.001486602153264327,0.0,0.0077547104439270745,0.003534831234870247,0.0023552834806783943,0.001078892492410213,0.0,0.00078572096632964,0.0030125125177969114,0.0023552834806783943,0.0007342497271272267,0.0,0.00016606256506021454,0.0005223187170733355,0.0003446427652829863,0.0006196584012694254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.932651134525924e-05,0.0,0.0,0.00074695837919815,0.00031323252582857327,0.0008462848905434093,0.000358995308195257,0.00028067459107246757,8.749912424433357e-05,0.0,1.9789355686091667e-05,3.489843995133869e-05,2.3027118224451657e-05,4.140213781388831e-05,0.0,0.0,0.0,0.0003857622133440581,0.0002570361378490381,0.00011774139362772957,0.0,8.57470806674254e-05 +97889,85.0,Rural Climate Zone 3A,G1301330950303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,99253.0,,4724.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.00884330212350195,0.001390638130167806,0.0,0.010233940253669756,0.0029496087508785124,0.002825469293404304,0.004458831519780642,0.0,0.0,0.001558970620710706,0.002825469293404304,0.004458831519780642,0.0,0.0,0.001390638130167806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.29140896178386e-05,0.0,0.0,0.0010538386399644249,0.00036862964271320957,0.0011467527295822635,0.0001857794131343864,0.0003367055287536993,0.0005313500408572923,0.0,0.0,9.291408961783858e-05,0.0,0.0,0.0,0.0,0.0,0.0003305151097649564,0.00031660480169408775,0.0004996293792337087,0.0,0.0 +97890,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,25745.0,,3649.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023020887476032812,0.0010739827723881088,0.0,0.0033760715199913907,0.00150240967630404,0.0007455119161837961,0.0011281499275035544,0.0,0.0,0.0004284269039159309,0.0007455119161837961,0.0011281499275035544,0.0,0.0,0.0010739827723881088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.175638374884868e-05,0.0,0.0,0.00027433585604310306,0.00016060875414216253,0.0003460922397919517,5.105487855758704e-05,8.884134025221377e-05,0.00013443963723330226,0.0,0.0,7.175638374884868e-05,0.0,0.0,0.0,0.0,0.0,0.00015401697709250316,7.642488831643523e-05,0.0001156503743830133,0.0,0.0 +97891,50.0,the Greater Atlanta and Macon Area,G1300890022800,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,46535.0,,4915.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004068950761374626,0.001446800109692602,0.0,0.005515750871067229,0.002066515329662114,0.0013812778002470069,0.0020679577411581067,0.0,0.0,0.0006197152199695123,0.0013812778002470069,0.0020679577411581067,0.0,0.0,0.001446800109692602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.666726521489314e-05,0.0,0.0,0.0004848891209310293,0.0002442533263300964,0.0005815563861459224,7.38502837368029e-05,0.00016460424753261154,0.0002464345896616149,0.0,0.0,9.666726521489313e-05,0.0,0.0,0.0,0.0,0.0,0.0002178842400836926,0.0001456358244874486,0.0002180363215747811,0.0,0.0 +97892,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,442384.0,,35663.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.0201189779802009,0.006064794236259001,0.0,0.0261837722164599,0.012053046502267637,0.00393202679140227,0.00366974155491543,0.0,0.0065289573678745634,0.012053046502267637,0.00393202679140227,0.003251641902269164,0.0,0.0008822627842618274,0.0,0.0004180996526462651,0.005646694583612737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040521431403669084,0.0,0.0,0.002397539856799673,0.0009528410942732674,0.002802754170836364,0.0014363383375380577,0.00046857205965772125,0.00038749190283931016,0.0,0.00010513755676458376,0.0,2.7934989604946563e-05,0.0003772793244317444,0.0,0.0,0.0,0.0012901779803247398,0.0004208906340284774,0.00039281518964884077,0.0,0.0006988703668343061 +97893,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock 90.1-2004,gen4_led,_1000,NaturalGas,4944.0,,356.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0008721460925809969,0.00028203112145103827,0.0,0.001154177214032035,0.0009293793876085975,0.00015342162178641526,5.7481416248818665e-05,0.0,1.3812081314464338e-05,0.0006611603474720235,0.00015342162178641526,5.7481416248818665e-05,0.0,0.0,0.00026821904013657396,0.0,1.3812081314464338e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8845648912968363e-05,0.0,0.0,0.0001039322696124991,5.410486709832309e-05,0.00012277791852546746,7.878943226954174e-05,1.8283011866399787e-05,6.849969405470543e-06,0.0,0.0,1.792270950872622e-05,0.0,9.229394042421456e-07,0.0,0.0,0.0,9.886459838557347e-05,1.632053306089159e-05,6.114701065940516e-06,0.0,1.4692878820317495e-06 +97894,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2004,gen5_led,25001_50000,Electricity,59306.0,,4489.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005541693591017257,0.0013078264445907178,0.0,0.006849520035607975,0.004536691932820926,0.0015747496364496808,0.0007381088399368071,0.0,0.0,0.0032288654882302076,0.0015747496364496808,0.0007381088399368071,0.0,0.0,0.0013078264445907178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.738056561124991e-05,0.0,0.0,0.0006603935902334919,0.00026943849886613866,0.0007477741558447418,0.00038477805333909574,0.00018766006258801333,8.795909387322673e-05,0.0,0.0,8.738056561124991e-05,0.0,0.0,0.0,0.0,0.0,0.0004952786418255511,0.00017191818900321706,8.058064095527484e-05,0.0,0.0 +97895,50.0,the Greater Atlanta and Macon Area,G1300890021303,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,111293.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009652525662359777,0.0,0.0,0.009652525662359777,0.002544966291843301,0.0024872698320036195,0.004620289538512857,0.0,0.0,0.002544966291843301,0.0024872698320036195,0.004620289538512857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011502720183434003,0.00035072858992803667,0.0011502720183434003,0.0003032785009368049,0.0002964029301657416,0.0005505905872408539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003032785009368049,0.0002964029301657416,0.0005505905872408539,0.0,0.0 +97896,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,16636.0,,1206.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003697833266884435,0.0009563418936476116,0.0,0.004654175160532046,0.0025950998527182493,0.0011284553140991104,0.0008274015656880314,0.0,0.00010330113510039496,0.0017420590941710325,0.0011284553140991104,0.0008274015656880314,0.0,0.0,0.0008530407585472167,0.0,0.00010330113510039496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.389639595553545e-05,0.0,0.0,0.00044066845453669237,0.00017238195265541038,0.0005045648504922278,0.00020760008181405396,0.00013447730694919773,9.860092192317312e-05,0.0,0.0,5.6994502108915735e-05,0.0,6.901893846619716e-06,0.0,0.0,0.0,0.0002813379651679249,0.000122337227802249,8.969962085412627e-05,0.0,1.1199003043462987e-05 +97897,50.0,the Greater Atlanta and Macon Area,G1300210012102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,15090.0,,754.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013306370177684696,0.00021966187113382115,0.0,0.0015502988889022908,0.0009503595528078168,0.000511582535330054,8.83871743638578e-05,0.0,0.0,0.0007306976816739957,0.000511582535330054,8.83871743638578e-05,0.0,0.0,0.00021966187113382115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.46769618548114e-05,0.0,0.0,0.00015856991757399745,5.717343538154346e-05,0.00017324687942880886,8.707609183221842e-05,6.0964484961967605e-05,1.053296035381617e-05,0.0,0.0,1.46769618548114e-05,0.0,0.0,0.0,0.0,0.0,0.00010620327992100468,5.716967124898469e-05,9.87732252772935e-06,0.0,0.0 +97898,50.0,the Greater Atlanta and Macon Area,G1300890022700,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,250748.0,,59547.0,,7.614023970037612,Education,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.045711963372372384,0.04121768986466601,0.0,0.0869297254040611,0.06956958725057814,0.012143761416312453,0.0018451664372316223,0.0007654756101265573,0.0026056625227896184,0.02835189738591213,0.012143761416312453,0.0018451664372316223,0.0007654756101265573,0.0026056625227896184,0.04121768986466601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027539271015128816,0.0,0.0,0.005447408192451407,0.004105997433261251,0.00820133529396429,0.0033786419724186074,0.001447149073154382,0.00021988499344761928,9.122028025261645e-05,0.0003105118731781814,0.0027539271015128816,0.0,0.0,0.0,0.0,0.0,0.006563502974990872,0.0011456962350007871,0.00017408117366719632,7.221835924155003e-05,0.00024582974250734476 +97899,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,314052.0,,8639.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.016165887519431602,0.0014691909383498353,0.0,0.01763507845778144,0.00778744069110849,0.0034193001998571826,0.003345577357072604,0.0,0.003082760209743161,0.006318249752758656,0.0034193001998571826,0.003345577357072604,0.0,0.003082760209743161,0.0014691909383498353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.816257032109572e-05,0.0,0.0,0.0019264583270571965,0.0005881572240231498,0.0020246208973782923,0.0007529339069072622,0.00040747155606553494,0.00039868614393112747,0.0,0.000367366720153272,9.816257032109572e-05,0.0,0.0,0.0,0.0,0.0,0.0008940484839949956,0.00039255774538309236,0.0003840938869163935,0.0,0.0003539207810838107 +97900,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,17726.0,,2041.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001538224446853459,0.0006006876640649365,0.0,0.0021389121109183953,0.001118574770338671,0.00042483621997909966,0.0005955318102069224,0.0,0.0,0.0005178871062737345,0.00042483621997909966,0.0005955318102069224,0.0,0.0,0.0006006876640649365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.013477192046875e-05,0.0,0.0,0.0001833061112965904,9.993090513598525e-05,0.00022344088321705918,6.171522740772441e-05,5.0626601066970616e-05,7.096794002055657e-05,0.0,0.0,4.013477192046875e-05,0.0,0.0,0.0,0.0,0.0,0.00011685161505840268,4.438040241586557e-05,6.221207172432791e-05,0.0,0.0 +97901,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,24753.0,,3157.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002205447177371815,0.0009294040371196311,0.0,0.0031348512144914464,0.001274999693638062,0.0007451436409082235,0.0011147078799451605,0.0,0.0,0.000345595656518431,0.0007451436409082235,0.0011147078799451605,0.0,0.0,0.0009294040371196311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.209830737253548e-05,0.0,0.0,0.00026281864349459534,0.0001527049167681772,0.00032491695086713077,4.11839297606924e-05,8.879724843172113e-05,0.00013283746530218184,0.0,0.0,6.209830737253548e-05,0.0,0.0,0.0,0.0,0.0,0.00013214949752586905,7.723167167957878e-05,0.00011553578166168289,0.0,0.0 +97902,85.0,Rural Climate Zone 3A,G1301670960200,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,47588.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004196386124720354,0.0,0.0,0.004196386124720353,0.0025202797869468955,0.001236843342704692,0.0004392629950687669,0.0,0.0,0.0025202797869468955,0.001236843342704692,0.0004392629950687669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005000748271664353,0.00012200808643330511,0.0005000748271664353,0.0003003366328575203,0.00014739211370264993,5.234608060626516e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030033663285752035,0.00014739211370264996,5.234608060626517e-05,0.0,0.0 +97903,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,17918.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0015345349907940977,0.0,0.0,0.0015345349907940973,0.000647534766413431,0.0007796295503682138,0.00010737067401245267,0.0,0.0,0.000647534766413431,0.0007796295503682138,0.00010737067401245267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018286812376134146,6.028672455284978e-05,0.00018286812376134146,7.71657006941142e-05,9.290722854808028e-05,1.2795194519146943e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.716570069411423e-05,9.29072285480803e-05,1.2795194519146947e-05,0.0,0.0 +97904,50.0,the Greater Atlanta and Macon Area,G1300890023108,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,38224.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0031696369693265916,0.0,0.0,0.0031696369693265916,0.002168492758258854,0.0006313456379131094,0.0003697985731546284,0.0,0.0,0.002168492758258854,0.0006313456379131094,0.0003697985731546284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003777201101070491,0.00011804945350883036,0.0003777201101070491,0.00025841550036876683,7.52363586669074e-05,4.4068251071374844e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025841550036876683,7.52363586669074e-05,4.4068251071374844e-05,0.0,0.0 +97905,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,38878.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.009335230120029368,0.0,0.0,0.009335230120029367,0.006137774649267744,0.002302647639976058,0.000771326169692781,0.0,0.00012364707524026462,0.006137774649267744,0.002302647639976058,0.000771326169692781,0.0,0.00012364707524026462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011124599083070733,0.0003559557393449491,0.0011124599083070733,0.0007314258069422282,0.0002744017179539229,9.191733133286465e-05,0.0,1.4734764137104083e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0007314258069422283,0.00027440171795392295,9.191733133286466e-05,0.0,1.4734764137104087e-05 +97906,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,54077.0,,18814.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011259963729479919,0.012942370809564122,0.0,0.024202262819073027,0.004796631661524067,0.0006887986016339287,0.014700227299156751,0.0003715811698318809,0.0036450240869264007,0.004796631661524067,0.0006887986016339287,0.0017578564895926268,0.0003715811698318809,0.0036450240869264007,0.0,0.012942370809564122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008647317760064688,0.0,0.0,0.001341826374548191,0.0011895116722851974,0.00220655815055466,0.0005716045830214398,8.208269161689456e-05,0.00020948008866410718,4.4280552401825355e-05,0.00043436991212468057,0.0,0.0008647317760064688,0.0,0.0,0.0,0.0,0.00043731640991864296,6.279884570661854e-05,0.0013402427121978842,3.387763636047382e-05,0.0003323225463710405 +97907,50.0,the Greater Atlanta and Macon Area,G1300890021502,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,9941.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002098774703208665,0.0,0.0,0.002098774703208665,0.0013071853004497538,0.0003387681740362032,0.00038500142825647607,0.0,6.781980046623209e-05,0.0013071853004497538,0.0003387681740362032,0.00038500142825647607,0.0,6.781980046623209e-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.0002501050106959141,6.960677731605977e-05,0.0002501050106959141,0.0001557735535170603,4.0370039557474146e-05,4.5879524936533734e-05,0.0,8.081892684845899e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001557735535170603,4.0370039557474146e-05,4.5879524936533734e-05,0.0,8.081892684845899e-06 +97908,50.0,the Greater Atlanta and Macon Area,G1301210011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,41718.0,,4581.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005733953971843895,0.0013485319903273577,0.0,0.007082485962171254,0.0030443168759132226,0.0016204112125187073,0.002417788563345621,0.0,0.0,0.0016957848855858647,0.0016204112125187073,0.002417788563345621,0.0,0.0,0.0013485319903273577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.01003072901118e-05,0.0,0.0,0.0006833039925473224,0.00028925696807576684,0.0007734042998374343,0.0002020833422298305,0.00019310121018052437,0.00028812309735685743,0.0,0.0,9.01003072901118e-05,0.0,0.0,0.0,0.0,0.0,0.00033243804145531184,0.00017694817977197363,0.00026402142990143235,0.0,0.0 +97909,50.0,the Greater Atlanta and Macon Area,G1301390001102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,68452.0,,1105.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003271730401758084,0.0001878354488840394,0.0,0.003459565850642123,0.0015839595678218373,0.0007761997622470718,0.0006643211816865384,0.0,0.0004350853388866757,0.0015839595678218373,0.0007761997622470718,0.00047648573280249904,0.0,0.0004350853388866757,0.0,0.0001878354488840394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2549754495146793e-05,0.0,0.0,0.0003898860833185938,0.00010482331452276747,0.00040243583781374056,0.00018875754301186218,9.249829540133098e-05,5.678192678092577e-05,0.0,5.1848318124474865e-05,0.0,1.2549754495146793e-05,0.0,0.0,0.0,0.0,0.00018425493927833668,9.029185022529577e-05,7.72775148303116e-05,0.0,5.061153347979653e-05 +97910,81.0,the Columbus-Albany Area,G1300950011300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,337525.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.022266603467927634,0.0,0.0,0.022266603467927634,0.012281910007477677,0.004193265936565328,0.003019232324775112,0.0,0.0027721597383866758,0.012281910007477677,0.004193265936565328,0.003019232324775112,0.0,0.0027721597383866758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002653467723527835,0.0008123794454708189,0.002653467723527835,0.0014636112703518974,0.0004997033263232753,0.00035979602974302657,0.0,0.0003303528713244303,0.0,0.0,0.0,0.0,0.0,0.0,0.0014636112703518974,0.0004997033263232753,0.00035979602974302657,0.0,0.0003303528713244303 +97911,50.0,the Greater Atlanta and Macon Area,G1300670031509,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,93448.0,,4896.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008240418274660944,0.0014261923615996367,0.0,0.009666610636260582,0.00636767325412748,0.002431710370986411,0.00086722701114669,0.0,0.0,0.004941480892527844,0.002431710370986411,0.00086722701114669,0.0,0.0,0.0014261923615996367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.52903266924493e-05,0.0,0.0,0.0009819942987946595,0.00034915259775064665,0.0010772846254871087,0.0005888664752596854,0.0002897821009852506,0.00010334572254972363,0.0,0.0,9.52903266924493e-05,0.0,0.0,0.0,0.0,0.0,0.0007096382335981451,0.0002709992462585204,9.66471456304431e-05,0.0,0.0 +97912,50.0,the Greater Atlanta and Macon Area,G1301350050610,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,79668.0,,5806.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.008962277927940118,0.0021578997198672904,0.0,0.011120177647807407,0.005012031118071365,0.0014479123510914176,0.004364312466297229,0.0,0.00029592171234739623,0.0037933544420155896,0.0014479123510914176,0.0037210498832568827,0.0,0.0,0.0012186766760557757,0.0006432625830403463,0.00029592171234739623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014417766929904698,0.0,0.0,0.0010680191657088892,0.00048085446004284736,0.0012121968350079365,0.0004520474904900392,0.00017254521157074573,0.0004434310812307727,0.0,0.0,8.142452643426696e-05,4.297887390974105e-05,1.9771680022209046e-05,0.0,0.0,0.0,0.000546355323692633,0.00015783513761652765,0.00047574831321820697,0.0,3.225806048056899e-05 +97913,50.0,the Greater Atlanta and Macon Area,G1301690030301,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,26321.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.0036152074867530394,0.0,0.0,0.0036152074867530394,0.0024745227203951713,0.0003699828018381961,0.0007416580143089705,0.0,2.9043950210700948e-05,0.0024745227203951713,0.0003699828018381961,0.0007416580143089705,0.0,2.9043950210700948e-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.0004308157735644035,0.00013678815267513644,0.0004308157735644035,0.0002948830527420742,4.408998032989976e-05,8.83816412544914e-05,0.0,3.461099237938125e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002948830527420742,4.408998032989976e-05,8.83816412544914e-05,0.0,3.461099237938125e-06 +97914,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950203,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8506.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002042368478918458,0.0,0.0,0.002042368478918458,0.0007642133613512005,0.0006987920660234084,0.00047415965374744944,0.0,0.00010520339779639905,0.0007642133613512005,0.0006987920660234084,0.00047415965374744944,0.0,0.00010520339779639905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024338880313794673,6.484522845470556e-05,0.00024338880313794673,9.107121329046031e-05,8.32749654860497e-05,5.650554824612652e-05,0.0,1.2537076115310124e-05,0.0,0.0,0.0,0.0,0.0,0.0,9.107121329046031e-05,8.32749654860497e-05,5.650554824612652e-05,0.0,1.2537076115310124e-05 +97915,35.0,Eastern Counties in South Carolina and Georgia,G1300510010102,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,40694.0,,1242.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.0035851904973039374,0.00036557459021823547,0.0,0.003950765087522173,0.00036781493147796784,0.0013804798704832666,0.0022025009751672356,0.0,0.0,2.2403412597323034e-06,0.0013804798704832666,0.0022025009751672356,0.0,0.0,0.00036557459021823547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4424549904735116e-05,0.0,0.0,0.0004272418647754523,0.0001554249135869625,0.00045166641468018736,2.6697816427361534e-07,0.00016450975048432553,0.00026246879336198014,0.0,0.0,2.4424549904735112e-05,0.0,0.0,0.0,0.0,0.0,4.20499947949791e-05,0.00015782168259221945,0.00025179824584491156,0.0,0.0 +97916,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970500,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,6856.0,,16.0,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.0026207797553847727,0.0005416259963164739,0.000953373125055396,8.134489814651206e-06,0.0,0.004123913366571293,0.003284532286703761,0.0001410160214177454,0.000690175974743762,0.0,8.134489814651206e-06,0.00012212653500251507,0.0001410160214177454,0.000690175974743762,0.0,0.0,0.0,0.0,8.134489814651206e-06,0.0005416259963164739,0.0,0.0,0.0026207797553847727,0.0,0.0,0.0,5.423534699308756e-07,0.0,0.0,0.0001136130734910359,4.0150175067523365e-05,0.00011415542696096678,1.4553767703112138e-05,1.6804819837791087e-05,8.224798001910759e-05,0.0,0.0,0.0,0.0,5.423534699308756e-07,0.0,0.0,0.0,9.09202381880993e-05,3.903511713841738e-06,1.910499229050997e-05,0.0,2.251735367256752e-07 +97917,85.0,Rural Climate Zone 3A,G1301750950500,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,9708.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002326136448918021,0.0,0.0,0.002326136448918021,0.0010544324831024304,0.00044016704644059414,0.0007533787346913512,0.0,7.824089175738482e-05,0.0010544324831024304,0.00044016704644059414,0.0007533787346913512,0.0,7.824089175738482e-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.0002771967587914984,6.806755503553709e-05,0.0002771967587914984,0.0001256526747673889,5.245301867691927e-05,8.977725425179586e-05,0.0,9.323666980151377e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001256526747673889,5.245301867691927e-05,8.977725425179586e-05,0.0,9.323666980151377e-06 +97918,50.0,the Greater Atlanta and Macon Area,G1301130140204,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,86628.0,,1672.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.00980435867335502,0.0006213697236091195,0.0,0.01042572839696414,0.004523684733271804,0.0011959700997253352,0.004366249887485833,0.0,0.00033986242490493813,0.004523684733271804,0.0011959700997253352,0.0037448801638767133,0.0,0.00033986242490493813,0.0,0.0006213697236091195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1517294608394154e-05,0.0,0.0,0.001168365900687675,0.0003525791580150419,0.0012098831952960692,0.000539078502113548,0.00014252137537140486,0.00044626991233257077,0.0,4.050072844265647e-05,0.0,4.1517294608394154e-05,0.0,0.0,0.0,0.0,0.0005249638136743187,0.0001387897392527119,0.0005066938408706976,0.0,3.944029816897898e-05 +97919,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,29449.0,,2773.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002421444094376451,0.0008078466242458853,0.0,0.0032292907186223362,0.0020466338773145933,0.0009486282576398649,0.00023402858366787779,0.0,0.0,0.001238787253068708,0.0009486282576398649,0.00023402858366787779,0.0,0.0,0.0008078466242458853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.397506965752206e-05,0.0,0.0,0.00028855797905622633,0.00012580869509250847,0.00034253304871374843,0.00014762345620792492,0.0001130458694197845,2.7888653428516893e-05,0.0,0.0,5.397506965752206e-05,0.0,0.0,0.0,0.0,0.0,0.00021708783837724017,0.00010062164032231105,2.4823570014197192e-05,0.0,0.0 +97920,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000601,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,62874.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.00527902270307958,0.0,0.0,0.00527902270307958,0.002319844404257171,0.0022235904676389355,0.000735557457584036,0.0,0.0,0.002319844404257171,0.0022235904676389355,0.000735557457584036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006290895420252678,0.00019877058646481396,0.0006290895420252678,0.00027645076294001756,0.0002649803927008498,8.765476682926019e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027645076294001756,0.0002649803927008498,8.765476682926019e-05,0.0,0.0 +97921,50.0,the Greater Atlanta and Macon Area,G1300890021805,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,NaturalGas,86729.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007045703114376415,0.0,0.0,0.007045703114376414,0.0035766128281930283,0.00259654789513509,0.0008725423910482965,0.0,0.0,0.0035766128281930283,0.00259654789513509,0.0008725423910482965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008396244512470065,0.00019087788839868914,0.0008396244512470065,0.00042621886480954273,0.0003094261944050595,0.00010397939203240426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004262188648095428,0.00030942619440505956,0.00010397939203240428,0.0,0.0 +97922,50.0,the Greater Atlanta and Macon Area,G1301210009403,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,30453.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0073122150963659096,0.0,0.0,0.0073122150963659096,0.0041641357486266505,0.0009831389855391474,0.001994894618592095,0.0,0.00017012845068175536,0.0041641357486266505,0.0009831389855391474,0.001994894618592095,0.0,0.00017012845068175536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008713841789483014,0.00029347989384045356,0.0008713841789483014,0.0004962329420738265,0.00011715899305695511,0.00023772818310202382,0.0,2.0273916776155178e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004962329420738265,0.00011715899305695511,0.00023772818310202382,0.0,2.0273916776155178e-05 +97923,85.0,Rural Climate Zone 3A,G1302610950200,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,26189.0,,919.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006081458633800904,0.0007124643596167978,0.0,0.0067939229934177005,0.0028492914129857124,0.0012292456242077587,0.00195691181104144,0.0004261363267711412,0.00033233781841164904,0.0028492914129857124,0.0012292456242077587,0.001244447451424642,0.0004261363267711412,0.00033233781841164904,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.0007247120043224072,0.0002455308167834828,0.0007723172830174808,0.0003395428325906296,0.00014648608397544488,0.00014829764717682519,5.0781585485501546e-05,3.960385509400595e-05,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.0003239007867375265,0.00013973776882208693,0.0002224571597989295,4.8442181403262604e-05,3.777938625567539e-05 +97924,50.0,the Greater Atlanta and Macon Area,G1301510070310,ComStock 90.1-2004,gen5_led,1001_5000,Electricity,25563.0,,4890.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006001163876213855,0.003792775029829294,0.0,0.009793938906043147,0.0031433012202228792,0.00036468213163906013,0.00534344226673445,0.0004188588562949737,0.0005236544311517857,0.0031433012202228792,0.00036468213163906013,0.0015506672369051564,0.0004188588562949737,0.0005236544311517857,0.0,0.003792775029829294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025340857656663146,0.0,0.0,0.0007151511373361888,0.00044307705478840813,0.0009685597139028202,0.0003745832456838103,4.345871010814664e-05,0.00018479106069710157,4.9914882119778187e-05,6.240323872735205e-05,0.0,0.00025340857656663146,0.0,0.0,0.0,0.0,0.0003108529632230938,3.606479726638419e-05,0.0005284332445581375,4.1422538767155236e-05,5.178617008804969e-05 +97925,35.0,Eastern Counties in South Carolina and Georgia,G1301890950300,ComStock DOE Ref 1980-2004,gen3_t5_cfl,_1000,NaturalGas,39422.0,,887.0,,8.53126424238864,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.009211336964034407,0.0006880444031301026,0.0,0.009899381367164511,0.0027079467641819258,0.00021484710061307822,0.006251508860594017,0.0004288047326124027,0.0002961930483800171,0.0027079467641819258,0.00021484710061307822,0.005859657505843932,0.0004288047326124027,0.0,0.0,0.0003918513547500854,0.0002961930483800171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.597240275186035e-05,0.0,0.0,0.0010976969723161176,0.00035684488180390674,0.0011436693750679777,0.0003227007084684721,2.5602907892165496e-05,0.0006982839003815073,5.109981955293701e-05,0.0,0.0,2.6181956015456014e-05,1.979044673640433e-05,0.0,0.0,0.0,0.00031284740618053094,2.4821151966964395e-05,0.0007222329322054766,4.9539544177949644e-05,3.4218998741057796e-05 +97926,50.0,the Greater Atlanta and Macon Area,G1301210000600,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,21034.0,,3561.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0010169603399699685,0.0006056336853861637,0.0,0.0016225940253561321,0.000689391912734493,0.00024435984109116767,0.0004039862849559031,0.0,0.00028485598657456833,0.0004914501578410235,0.00024435984109116767,0.00022201958570190123,0.0,5.913075533587609e-05,0.0001979417548934695,0.0001819666992540019,0.0002257252312386922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0464896254389935e-05,0.0,0.0,0.00012119000790731176,6.810924671272618e-05,0.00016165490416170168,5.8565556761596095e-05,2.912008454031017e-05,2.6457821695963147e-05,0.0,7.046544909442348e-06,1.3225308911060636e-05,1.2157949243480412e-05,1.5081638099848883e-05,0.0,0.0,0.0,6.868235790433573e-05,2.4344947704273313e-05,4.0248123163682166e-05,0.0,2.837947538941047e-05 +97927,50.0,the Greater Atlanta and Macon Area,G1301350050718,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,10921.0,,1157.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002349542550786245,0.0009178831043588336,0.0,0.0032674256551450793,0.0017222921035473376,0.0007264989357260764,0.0007451907343911598,0.0,7.344388148050497e-05,0.0008778528806690091,0.0007264989357260764,0.0007451907343911598,0.0,0.0,0.0008444392228783286,0.0,7.344388148050497e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.132687234890225e-05,0.0,0.0,0.0002799953700426503,0.00013862997057778953,0.00034132224239155244,0.00010461387136133099,8.65769969886877e-05,8.880450169263161e-05,0.0,0.0,5.641983841073094e-05,0.0,4.907033938171309e-06,0.0,0.0,0.0,0.00017991430100647212,7.58916260104135e-05,7.784421110585447e-05,0.0,7.672104268812294e-06 +97928,50.0,the Greater Atlanta and Macon Area,G1300890023410,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,124377.0,,13640.0,,9.729435225087556,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.029605887916563774,0.012064598745808858,0.0,0.04167048666237263,0.03084252127625204,0.006353953150577262,0.0009947475056642323,0.0006427542518290257,0.002836602695302844,0.0207053553306553,0.006353953150577262,0.0009947475056642323,0.0006427542518290257,0.0009091698950907265,0.010137165945596742,0.0,0.001927432800212118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008060841084080677,0.0,0.0,0.0035280804162075258,0.0016686888175869701,0.004334164524615594,0.00246741995573905,0.0007571891692364963,0.00011854227117578715,7.65958681834835e-05,0.00010834414123686711,0.0006773046120476783,0.0,0.00012877949636038938,0.0,0.0,0.0,0.0032079433736477026,0.0006608772909093123,0.00010346409882207704,6.685313514321657e-05,0.0002950362176478251 +97929,81.0,the Columbus-Albany Area,G1302150001800,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,20750.0,,1213.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0018863059614820038,0.00035698150045487874,0.0,0.002243287461936883,0.0003598970130531606,0.0007282950470507848,0.0011550647122266396,0.0,0.0,2.9155125982817643e-06,0.0007282950470507848,0.0011550647122266396,0.0,0.0,0.00035698150045487874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3852157334217735e-05,0.0,0.0,0.0002247859413472286,9.37614163451827e-05,0.00024863809868144634,3.474336917217675e-07,8.678893619209753e-05,0.00013764591426665434,0.0,0.0,2.3852157334217735e-05,0.0,0.0,0.0,0.0,0.0,3.9889720138411425e-05,8.07216635631143e-05,0.00012802331345181125,0.0,0.0 +97931,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,167247.0,,616.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01315504165560818,0.00010471551454683185,0.0,0.013259774900516429,0.006616758117626666,0.003296907514974559,0.001906598954582538,0.0,0.001439510313332667,0.006616758117626666,0.003296907514974559,0.001801883440035706,0.0,0.001439510313332667,0.0,0.00010471551454683185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.996841275834739e-06,0.0,0.0,0.0015676617438106291,0.0004325351452686017,0.001574658585086464,0.0007885067064481447,0.00039288631077074606,0.00021472708408685592,0.0,0.00017154375539893678,0.0,6.996841275834739e-06,0.0,0.0,0.0,0.0,0.0007857701245709371,0.00039152276427321367,0.00022641729853448283,0.0,0.0001709483977078304 +97932,85.0,Rural Climate Zone 3A,G1300550010400,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,66537.0,,5783.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003425027106595861,0.0009834144961632285,0.0,0.004408441602759089,0.0018290995448154875,0.001579225561322683,0.0006439667267763177,0.0,0.00035613203948318056,0.00154787828233203,0.001579225561322683,0.00021795933293670914,0.0,7.99461996430181e-05,0.00028122126248345745,0.00042600739383960866,0.00027618583984016245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.570620618211942e-05,0.0,0.0,0.0004081543387844651,0.00018006994051435887,0.00047386054496658444,0.0001844578793631749,0.00018819347839083884,2.5973822877303915e-05,0.0,9.527045257769734e-06,1.8789617529155252e-05,2.84634096446008e-05,1.8453179008363363e-05,0.0,0.0,0.0,0.0001966087305232619,0.00016974993717625104,6.921956818019105e-05,0.0,3.828040326176535e-05 +97933,35.0,Eastern Counties in South Carolina and Georgia,G1300290920305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,22642.0,,11234.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0064620411084775715,0.007727683436990058,0.0,0.014189652825496614,0.003407128943067619,0.0004919990011670917,0.008202111045258326,0.0003869292436292217,0.001701556312345372,0.003407128943067619,0.0004919990011670917,0.0019546560900594637,0.0003869292436292217,0.0002213278305541757,0.0,0.006247454955198862,0.0014802284817911962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005163168243086111,0.0,0.0,0.0007700668071021654,0.0007409847665890196,0.0012863836314107764,0.00040601984149116514,5.863040695131967e-05,0.000232931940386482,4.61094818516574e-05,2.6375136421541185e-05,0.0,0.00041741695668317565,9.88998676254355e-05,0.0,0.0,0.0,0.00030887823376430566,4.460288560651574e-05,0.0007435743158335219,3.507763379696101e-05,0.0001542570642878405 +97934,35.0,Eastern Counties in South Carolina and Georgia,G1301890950500,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,149379.0,,4590.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007196611857508072,0.0007804905097107244,0.0,0.007977102367218797,0.0034740160951994667,0.0012082000182466583,0.0021044697880303275,0.0,0.0011904341961037654,0.0034740160951994667,0.0012082000182466583,0.001323979278319603,0.0,0.0011904341961037654,0.0,0.0007804905097107244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.214838305975244e-05,0.0,0.0,0.0008576062375221656,0.00027837994557236204,0.0009097546205819181,0.00041399174104230456,0.000143978846204096,0.00015777603543428467,0.0,0.00014186172773416507,0.0,5.214838305975244e-05,0.0,0.0,0.0,0.0,0.00039619677034250867,0.00013779007697130473,0.00024000583487599712,0.0,0.00013576396046446987 +97935,50.0,the Greater Atlanta and Macon Area,G1302230120400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,NaturalGas,482496.0,,78641.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,2664908.3895131643,0.0,0.0,0.101091276775982,0.054434286240923904,0.0,0.1555255630169059,0.12462155103907187,0.018397106103130247,0.005173004356508132,0.0007793316784912505,0.006554425505658935,0.07314979324835116,0.018397106103130247,0.005173004356508132,0.0007793316784912505,0.003591897055455738,0.05147175779072071,0.0,0.002962528450203196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003636981746873684,0.0,0.0,0.012046849061541997,0.006217991738955254,0.01568383080841568,0.008717117304776766,0.0021923470299490665,0.0006164567771327102,9.287142668567875e-05,0.00042803932299283285,0.003439042862357135,0.0,0.00019793888451654897,0.0,0.0,0.0,0.012567344452350129,0.0018552390609548983,0.000521666814926441,7.859097856322647e-05,0.0006609749463883616 +97936,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,12394.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0010506893612081526,0.0,0.0,0.0010506893612081526,0.0004789419958819497,0.0003380460133691962,0.0002337013519570067,0.0,0.0,0.0004789419958819497,0.0003380460133691962,0.0002337013519570067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012520706515012158,4.386685986518668e-05,0.00012520706515012158,5.70738830100712e-05,4.028378965500027e-05,2.7849392485050117e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.70738830100712e-05,4.028378965500027e-05,2.7849392485050117e-05,0.0,0.0 +97937,85.0,Rural Climate Zone 3A,G1302850960100,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,12029.0,,8259.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0026798884369693228,0.005681656103856707,0.0,0.008361544540826028,0.002145287773018958,0.00029684896003361413,0.003969772115685086,0.0003695012906724282,0.0015801344014159426,0.001499521153994396,0.00029684896003361413,0.0003205165504687658,0.0003695012906724282,0.00019350048180011861,0.0006457666190245618,0.003649255565216321,0.001386633919615824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037961352951381794,0.0,0.0,0.0003193589279899717,0.0004554454798115395,0.0006989724575037896,0.00017869604630986265,3.5375116494955114e-05,3.819555342255482e-05,4.403300318482937e-05,2.3059208577769728e-05,4.314617798210574e-05,0.00024382094936533806,9.264640216637409e-05,0.0,0.0,0.0,0.0001793325454930554,2.4814703322939164e-05,0.00033184794482435506,3.0887980555637254e-05,0.00013208928330780278 +97938,50.0,the Greater Atlanta and Macon Area,G1301170130608,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11797.0,,441.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026914535936245427,0.00034952009362231316,0.0,0.0030410563943205947,0.0017440440639407758,0.0006518971552132211,0.0005702652734325247,0.0,7.47671946603339e-05,0.0014692911649787962,0.0006518971552132211,0.0005702652734325247,0.0,0.0,0.0002747528989619792,0.0,7.47671946603339e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3354328693697227e-05,0.0,0.0,0.00032073966264583453,0.00012457306840904468,0.0003440939913395317,0.0001750949574981024,7.768637517591013e-05,6.795832997182191e-05,0.0,0.0,1.835851394237155e-05,0.0,4.995814751325672e-06,0.0,0.0,0.0,0.00019733770283055578,7.376183305877747e-05,6.452522696527159e-05,0.0,8.459870221407616e-06 +97939,35.0,Eastern Counties in South Carolina and Georgia,G1300730030102,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,37317.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.003153326357482663,0.0,0.0,0.003153326357482663,0.0013264047841867143,0.000779485310355353,0.001047436262940596,0.0,0.0,0.0013264047841867143,0.000779485310355353,0.001047436262940596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000375775981971285,0.00011342792629678122,0.000375775981971285,0.00015806516794128353,9.288980103055668e-05,0.00012482101299944487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015806516794128353,9.288980103055668e-05,0.00012482101299944487,0.0,0.0 +97940,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,269395.0,,,,7.614023970037612,Education,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.044348800479972965,0.0,0.0,0.04434880047997297,0.03265904180367241,0.006484279159562676,0.0021965476709175096,0.0007500318672617432,0.002258827811535896,0.03265904180367241,0.006484279159562676,0.0021965476709175096,0.0007500318672617432,0.002258827811535896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00528496181302132,0.0012644215181719259,0.00528496181302132,0.003891915607959209,0.000772719157505376,0.0002617583888547832,8.937986448624245e-05,0.0002691801942095054,0.0,0.0,0.0,0.0,0.0,0.0,0.0038919156079592083,0.0007727191575053759,0.0002617583888547832,8.937986448624244e-05,0.00026918019420950535 +97941,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,36513.0,,3236.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.00326064791070573,0.0009526360690869921,0.0,0.004213283979792722,0.0017492461797564628,0.0008783365322402537,0.0015856705781897074,0.0,0.0,0.0007966101106694712,0.0008783365322402537,0.0015856705781897074,0.0,0.0,0.0009526360690869921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.364986379784402e-05,0.0,0.0,0.000388565352959599,0.00019459609711599833,0.000452215216757443,9.493054671961591e-05,0.00010466973252361239,0.00018896141649301206,0.0,0.0,6.364986379784402e-05,0.0,0.0,0.0,0.0,0.0,0.00018774802366386279,9.427257863889531e-05,0.00017019132051413147,0.0,0.0 +97942,50.0,the Greater Atlanta and Macon Area,G1300890023315,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,11830.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0009778629254637036,0.0,0.0,0.0009778629254637039,0.0003159188072285524,0.0003878552443903678,0.00027405818423848583,0.0,0.0,0.0003159188072285524,0.0003878552443903678,0.00027405818423848583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011652963678064809,4.324109467656064e-05,0.00011652963678064809,3.764730505664851e-05,4.621980195316922e-05,3.2658872562256774e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.76473050566485e-05,4.621980195316921e-05,3.265887256225677e-05,0.0,0.0 +97943,50.0,the Greater Atlanta and Macon Area,G1300670031209,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,94628.0,,9866.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005292566074970023,0.0016777709100953364,0.0,0.006970336985065358,0.0029008112408505787,0.002181720972737497,0.0008143377696616052,0.0,0.0010734670018156768,0.0024869668749451265,0.002181720972737497,0.0004386846022549465,0.0,0.00018519362503245152,0.00041384436590545244,0.00037565316740665873,0.0008882733767832253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001120985276953594,0.0,0.0,0.0006307051317627536,0.0002434277910454053,0.0007428036594581129,0.0002963671588286697,0.0002599915795265267,5.227721788415543e-05,0.0,2.206917552340164e-05,2.765058318384165e-05,2.5098877765136586e-05,5.9349066746381165e-05,0.0,0.0,0.0,0.0003091289861190025,0.0002324981311431862,8.678103750731736e-05,0.0,0.00011439550468860679 +97944,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,123440.0,,17557.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006249863748761513,0.0029857396720526317,0.0,0.009235603420814146,0.0057283251675906595,0.0009628118161931272,0.001120594302470177,0.0,0.0014238721345601806,0.0044711361607403955,0.0009628118161931272,0.0005968926172060776,0.0,0.00021902315462191227,0.001257189006850264,0.0005237016852640996,0.0012048489799382682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019949022577103685,0.0,0.0,0.000744783483492965,0.0004167844775697825,0.0009442737092640019,0.0005328161538925515,0.00011473631542041297,7.113047269263583e-05,0.0,2.6100541487364632e-05,8.399825381996792e-05,3.499078248780629e-05,8.050118946326265e-05,0.0,0.0,0.0,0.0005856798530002644,9.844055050598413e-05,0.00011457266952247959,0.0,0.00014558063623527372 +97945,50.0,the Greater Atlanta and Macon Area,G1300590001900,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,132866.0,,5834.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0062044917538875985,0.0009921023732590547,0.0,0.007196576396785232,0.0031246215930559053,0.000966003281248737,0.00200473650504253,0.0,0.0011011972870766395,0.0031246215930559053,0.000966003281248737,0.0010126341317834757,0.0,0.0011011972870766395,0.0,0.0009921023732590547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.628609549527377e-05,0.0,0.0,0.0007393767126009433,0.00024797103474326847,0.0008056628080962172,0.0003723548250584799,0.00011511665399569407,0.00012067355798425331,0.0,0.00013122744978001516,0.0,6.628609549527377e-05,0.0,0.0,0.0,0.0,0.00034980402737391005,0.00010814488352387643,0.00022443194556609692,0.0,0.0001232799667033922 +97946,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,110568.0,,11155.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009250522509466168,0.003283480977791221,0.0,0.012534003487257389,0.005847474825539099,0.0023353255912236933,0.0043512030704945985,0.0,0.0,0.002563993847747877,0.0023353255912236933,0.0043512030704945985,0.0,0.0,0.003283480977791221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021938268392643942,0.0,0.0,0.001102367307141522,0.000575113500468729,0.0013217499910679613,0.0003055463073114956,0.00027829634279161484,0.0005185246570384118,0.0,0.0,0.00021938268392643942,0.0,0.0,0.0,0.0,0.0,0.0006166345658259922,0.00024626741028744626,0.00045884801495452295,0.0,0.0 +97947,50.0,the Greater Atlanta and Macon Area,G1301210004400,ComStock DOE Ref 1980-2004,gen3_t5_cfl,_1000,Electricity,3507.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0004945055938873191,0.0,0.0,0.000494505593887319,0.0002783093031327695,0.00011132372125310778,7.832359883112413e-05,0.0,2.6466263596578376e-05,0.0002783093031327695,0.00011132372125310778,7.832359883112413e-05,0.0,2.6466263596578376e-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,5.89274418566194e-05,1.9370057703727954e-05,5.89274418566194e-05,3.3164549564730606e-05,1.326581982589224e-05,9.333381407964304e-06,0.0,3.1538353226489727e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.316454956473061e-05,1.3265819825892243e-05,9.333381407964306e-06,0.0,3.1538353226489736e-06 +97948,50.0,the Greater Atlanta and Macon Area,G1301210000700,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,2864.0,,482.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.0003589487000285942,0.0003822720948230788,0.0,0.000741220794851673,0.0005239493121385124,0.0001279478430747086,6.318820433683088e-05,0.0,2.6135435301621144e-05,0.00014167721731543363,0.0001279478430747086,6.318820433683088e-05,0.0,2.6135435301621144e-05,0.0003822720948230788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.553916159488885e-05,0.0,0.0,4.2774150824858666e-05,3.89399532012271e-05,6.831331241974751e-05,1.688297704216196e-05,1.524691505208672e-05,7.529827472394476e-06,0.0,3.114431258215515e-06,2.553916159488885e-05,0.0,0.0,0.0,0.0,0.0,4.828886790661688e-05,1.1792088184930756e-05,5.823629846985842e-06,0.0,2.408726481214039e-06 +97949,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950300,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6547.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,9713.774621698478,0.0,0.0,0.0005081891906836605,0.0,0.0,0.0005081891906836604,0.00024898477589326267,0.00015710009463794055,0.00010210432015245717,0.0,0.0,0.00024898477589326267,0.00015710009463794055,0.00010210432015245717,0.0,0.0,0.0,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.0558818895029984e-05,2.5896336390152808e-05,6.0558818895029984e-05,2.9670493248105448e-05,1.8720973121786243e-05,1.2167352525138276e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9670493248105455e-05,1.872097312178625e-05,1.216735252513828e-05,0.0,0.0 +97950,50.0,the Greater Atlanta and Macon Area,G1301210011423,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,26293.0,,1372.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0058191432882936335,0.0009440499784784882,0.0,0.006763193266772122,0.0022375196557450337,0.0002798513269029143,0.002898921228450999,0.00036763657142602224,0.000979336204218169,0.0022375196557450337,0.0002798513269029143,0.0019548712499725105,0.00036763657142602224,0.000979336204218169,0.0,0.0009440499784784882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.307620431953367e-05,0.0,0.0,0.0006934570946029218,0.0002322843705272106,0.0007565332989224555,0.0002666412911177633,3.3349391561687034e-05,0.00023295857657532127,4.381060511153454e-05,0.00011670577697971207,0.0,6.307620431953367e-05,0.0,0.0,0.0,0.0,0.00025028977581954153,3.130427287800022e-05,0.00032427440023802387,4.112396278129911e-05,0.00010954890982806077 +97951,35.0,Eastern Counties in South Carolina and Georgia,G1302450010600,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,112783.0,,13457.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005861480181855257,0.0022885286699318953,0.0,0.008150008851787151,0.004554451129053223,0.0011938384254964152,0.00110809439766904,0.0,0.0012936426299298923,0.0035669763801248026,0.0011938384254964152,0.0008941775871361031,0.0,0.000206505519459355,0.0009874747489284207,0.00021391681053293705,0.0010871371104705374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001529056103919396,0.0,0.0,0.0006985018294452936,0.00036582793356655484,0.0008514074398372331,0.0004250700249432067,0.00014226753284140458,0.00010655750102115928,0.0,2.4608883534133922e-05,6.597707567107772e-05,1.4292624303723069e-05,7.263591041713882e-05,0.0,0.0,0.0,0.0004757901060194176,0.0001247167869281919,0.00011575936067977385,0.0,0.00013514303844852803 +97952,50.0,the Greater Atlanta and Macon Area,G1300890023107,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,28386.0,,6514.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.0024228716535500253,0.0018976513720724204,0.0,0.004320523025622446,0.003170791166105225,0.0009464109848809091,0.00020329050103687295,0.0,0.0,0.0012731397940328054,0.0009464109848809091,0.00020329050103687295,0.0,0.0,0.0018976513720724204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012679071254150472,0.0,0.0,0.00028872773411624096,0.00020249107030849176,0.00041551844665774565,0.00015171697906726114,0.00011278149992262598,2.4225635578232154e-05,0.0,0.0,0.00012679071254150472,0.0,0.0,0.0,0.0,0.0,0.0003049450754463537,9.101935575980131e-05,1.955109432588819e-05,0.0,0.0 +97953,50.0,the Greater Atlanta and Macon Area,G1300670031117,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,35278.0,,1630.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003283629088016473,0.00047483048001037415,0.0,0.0037584595680268482,0.0022934497463457646,0.0012595020478852548,0.00020553814739526657,0.0,0.0,0.0018186192663353904,0.0012595020478852548,0.00020553814739526657,0.0,0.0,0.00047483048001037415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1725185549837585e-05,0.0,0.0,0.00039130282915052206,0.00011899683613815272,0.0004230280147003596,0.00021672084300317752,0.00015009207844363692,2.4493527258496907e-05,0.0,0.0,3.1725185549837585e-05,0.0,0.0,0.0,0.0,0.0,0.0002581359398582099,0.00014176144273587423,2.3134050763104656e-05,0.0,0.0 +97954,50.0,the Greater Atlanta and Macon Area,G1300630040512,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,24197.0,,4137.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0055920083138871046,0.003208636732942249,0.0,0.008800645046829352,0.004897899352026862,0.0006349188686540798,0.002219224191315744,0.00041982918569179607,0.0006287734491408717,0.003030500427842283,0.0006349188686540798,0.001506759831698946,0.00041982918569179607,0.0,0.0018673989241845797,0.0007124643596167978,0.0006287734491408717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021438365912775727,0.0,0.0,0.0006663901230619125,0.0004114693646359903,0.0008807737821896698,0.00036113958343620745,7.566220206897647e-05,0.00017955800730429288,5.00303302524358e-05,0.0,0.00012476944189653553,4.7602994394664175e-05,4.2011222836557564e-05,0.0,0.0,0.0,0.0004901846755679841,6.354305739549315e-05,0.00022210127486236753,4.201675420241982e-05,6.292802016140535e-05 +97955,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,27634.0,,762.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006635340404883418,0.0006046714161080765,0.0,0.007240011820991495,0.004500670831671891,0.0010006728851718802,0.0015939307251039328,0.0,0.000144737379043788,0.0038959994155638154,0.0010006728851718802,0.0015939307251039328,0.0,0.000144737379043788,0.0006046714161080765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.039945887286106e-05,0.0,0.0,0.0007907206210228644,0.00027934130716778487,0.0008311200798957255,0.00046427867892234585,0.00011924824303234114,0.00018994562688811302,0.0,1.7248072180064228e-05,4.039945887286106e-05,0.0,0.0,0.0,0.0,0.0,0.0005166563251123589,0.00011487264784046218,0.00018297592108284884,0.0,1.6615185860055288e-05 +97956,85.0,Rural Climate Zone 3A,G1300310110401,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,65547.0,,2831.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0032134329734089502,0.0004814856947229539,0.0,0.0036949009377704838,0.001323216872778541,0.0007297462153265334,0.0010682365451967612,0.0,0.0005737190348300686,0.001323216872778541,0.0007297462153265334,0.0005867508504738074,0.0,0.0005737190348300686,0.0,0.0004814856947229539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2169940377396995e-05,0.0,0.0,0.0003829375765590573,0.0001345840583891838,0.0004151075169364543,0.00015768477722014824,8.696221440207506e-05,6.992177854142256e-05,0.0,6.836880639541144e-05,0.0,3.2169940377396995e-05,0.0,0.0,0.0,0.0,0.00014865818588331522,8.19841031031152e-05,0.00012001215384274227,0.0,6.445506604331118e-05 +97957,85.0,Rural Climate Zone 3A,G1302610950300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,29132.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.004323454039541429,0.0,0.0,0.004323454039541429,0.002272361540639109,0.00033569783805563935,0.0016883706846168,0.0,2.6969382338508024e-05,0.002272361540639109,0.00033569783805563935,0.0016883706846168,0.0,2.6969382338508024e-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.0005152168748810709,0.00016456065245624342,0.0005152168748810709,0.0002707925193284106,4.0004401445123995e-05,0.0002011995640090917,0.0,3.2138842598619704e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002707925193284106,4.0004401445123995e-05,0.0002011995640090917,0.0,3.2138842598619704e-06 +97958,35.0,Eastern Counties in South Carolina and Georgia,G1302450010508,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,103356.0,,4134.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.010924304365639528,0.001536568744681943,0.0,0.012460873110321473,0.005830669067104157,0.0022568631941811902,0.004172236529659015,0.0,0.0002010655709533376,0.004896715808925647,0.0022568631941811902,0.0035696597915793548,0.0,0.0002010655709533376,0.0009339532581785113,0.0006025767380796594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010266328949419967,0.0,0.0,0.0013018300336488842,0.00045780595951897045,0.0014044933231430838,0.0005835329640167448,0.00026894639600695785,0.00042539004508181067,0.0,2.3960628543371062e-05,6.240053629249008e-05,4.026016429010967e-05,0.0,0.0,0.0,0.0,0.0006571879595998417,0.0002543761788930599,0.0004702622598432495,0.0,2.2662557384041063e-05 +97959,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950200,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,62675.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005336830466351621,0.0,0.0,0.005336830466351621,0.001139750598684086,0.0017254924244820414,0.002471587443185494,0.0,0.0,0.001139750598684086,0.0017254924244820414,0.002471587443185494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006359814308902636,0.00018663108558270933,0.0006359814308902636,0.00013582223028805906,0.00020562413365598128,0.0002945350669462232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013582223028805906,0.00020562413365598128,0.0002945350669462232,0.0,0.0 +97960,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,46380.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0037105604017135135,0.0,0.0,0.0037105604017135143,0.0021020353226890525,0.0013843679151738523,0.0002241875374500462,0.0,0.0,0.0021020353226890525,0.0013843679151738523,0.0002241875374500462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004421803352412141,0.00010960700310078137,0.0004421803352412141,0.0002504955001531013,0.00016497245767676283,2.671599697468486e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002504955001531012,0.0001649724576767628,2.6715996974684853e-05,0.0,0.0 +97961,50.0,the Greater Atlanta and Macon Area,G1301210010119,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,124174.0,,,,9.325022323477118,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.03186293089960148,0.0,0.0,0.03186293089960148,0.012774604284472895,0.005425726694677567,0.01310224435838261,0.0,0.0005603555620684136,0.012774604284472895,0.005425726694677567,0.01310224435838261,0.0,0.0005603555620684136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00379704470148012,0.0011621206435588692,0.00379704470148012,0.0015223252269134387,0.0006465735014339931,0.001561369469596305,0.0,6.67765035363836e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0015223252269134387,0.0006465735014339931,0.001561369469596305,0.0,6.67765035363836e-05 +97962,35.0,Eastern Counties in South Carolina and Georgia,G1300510010101,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,14773.0,,380.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003253944402125572,0.0003013018696322969,0.0,0.00355524627175787,0.0018767062102186252,0.0006763784490400562,0.0009035747806019338,0.0,9.850412482351512e-05,0.0016738257583361039,0.0006763784490400562,0.0009035747806019338,0.0,0.0,0.0002028804518825211,0.0,9.850412482351512e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0133553418294554e-05,0.0,0.0,0.0003877617425511639,0.00012135716916746463,0.00040789529596945844,0.00019946425401597378,8.060177237585896e-05,0.00010767600430499622,0.0,0.0,1.3556850544901605e-05,0.0,6.582229514463028e-06,0.0,0.0,0.0,0.00021531550181089147,7.760125925739148e-05,0.00010366761523440965,0.0,1.1301430640199711e-05 +97963,50.0,the Greater Atlanta and Macon Area,G1300890022500,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,134738.0,,13623.0,,9.729435225087556,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.031875170072806054,0.012049751768112378,0.0,0.04392492184091843,0.03243907857351401,0.006870185331601494,0.0011349177298794573,0.0006442297278733963,0.0028366949125556173,0.022316667388360977,0.006870185331601494,0.0011349177298794573,0.0006442297278733963,0.0009092621123434995,0.010122411185153033,0.0,0.001927432800212118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008050955228869786,0.0,0.0,0.0037985028257018242,0.0017076839310891032,0.004603598348588802,0.002659434410587112,0.0008187067970328217,0.00013524596712862999,7.677161992042001e-05,0.00010835502038582041,0.0006763216440320432,0.0,0.00012878004028454574,0.0,0.0,0.0,0.0033998122772220057,0.0007200371115423786,0.00011894626485573224,6.751918471456451e-05,0.0002973028401094645 +97964,50.0,the Greater Atlanta and Macon Area,G1302970110603,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,NaturalGas,36869.0,,1457.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0033050557710185063,0.00042894862722299177,0.0,0.0037340043982414975,0.0014960569278004154,0.0009752543089283991,0.0012626931615126835,0.0,0.0,0.0010671083005774236,0.0009752543089283991,0.0012626931615126835,0.0,0.0,0.00042894862722299177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.865991660611656e-05,0.0,0.0,0.00039385719123165573,0.00015514094164300135,0.0004225171078377723,0.0001271652604748303,0.00011621919551836753,0.00015047273523845786,0.0,0.0,2.865991660611656e-05,0.0,0.0,0.0,0.0,0.0,0.00016928465499199252,0.000110353814850569,0.00014287863799521087,0.0,0.0 +97965,50.0,the Greater Atlanta and Macon Area,G1300890023101,ComStock 90.1-2004,gen5_led,50001_100000,NaturalGas,219439.0,,27849.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009978328260700157,0.004736010029994565,0.0,0.014714338290694722,0.006920496939113591,0.002039824890292815,0.0025907781410595353,0.0,0.00316323832022878,0.005596216244649847,0.002039824890292815,0.0019096485767467874,0.0,0.00043263854901070837,0.0013242806944637436,0.0006811295643127484,0.002730599771218072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031643294821551973,0.0,0.0,0.0011890972195740888,0.0005717562508176387,0.0015055301677896085,0.0006668897838185124,0.00024308181111041259,0.00022756896282082091,0.0,5.155666182434288e-05,8.848081861316058e-05,4.550915956410734e-05,0.00018244297003825174,0.0,0.0,0.0,0.0007080859983027639,0.00020870920925381055,0.00026508121346385425,0.0,0.0003236537467691797 +97966,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,124469.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010231454395559642,0.0,0.0,0.010231454395559643,0.00326411583621737,0.0027237946277400152,0.004243574621208555,0.0,0.0,0.00326411583621737,0.0027237946277400152,0.004243574621208555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001219263843318845,0.0003366184839782228,0.001219263843318845,0.00038897875762721487,0.00032458966026089193,0.0005056990826553984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038897875762721476,0.0003245896602608919,0.0005056990826553983,0.0,0.0 +97967,46.0,the Tallahassee-Valdosta Area,G1301850010202,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,74298.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006318775109452918,0.0,0.0,0.006318775109452919,0.0016484615126748075,0.0016873452438539967,0.002982968352924115,0.0,0.0,0.0016484615126748075,0.0016873452438539967,0.002982968352924115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007529978976201095,0.00024133362310380972,0.0007529978976201095,0.000196444410799622,0.0002010781202326026,0.00035547536658788506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019644441079962196,0.00020107812023260254,0.00035547536658788495,0.0,0.0 +97968,50.0,the Greater Atlanta and Macon Area,G1301210006500,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,39951.0,,4524.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005864078975449556,0.0013180623476012402,0.0,0.0071821413230507974,0.004576785084078757,0.0021136987848731498,0.0004916574540988888,0.0,0.0,0.0032587227364775173,0.0021136987848731498,0.0004916574540988888,0.0,0.0,0.0013180623476012402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.806504223119103e-05,0.0,0.0,0.0006988109322974218,0.00025962625915956186,0.0007868759745286128,0.0003883356760900514,0.0002518853897836355,5.858986642373483e-05,0.0,0.0,8.806504223119103e-05,0.0,0.0,0.0,0.0,0.0,0.0005014329377903025,0.0002315770069671241,5.386602977118605e-05,0.0,0.0 +97969,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,195739.0,,5782.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,140298.9118897092,0.0,0.0,0.00980873735371735,0.0009832549229104482,0.0,0.010791992276627799,0.007019343704030384,0.0030779730121597466,0.0005655630685768443,0.0,0.0001290770311379844,0.006165165812257921,0.0030779730121597466,0.0005655630685768443,0.0,0.0,0.0008541778917724638,0.0,0.0001290770311379844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.56952205986743e-05,0.0,0.0,0.0011688875511450608,0.00037190111410995884,0.001234582771743735,0.0007346904406572074,0.0003667958685131358,6.739701619152187e-05,0.0,0.0,5.707106440352231e-05,0.0,8.624156195151992e-06,0.0,0.0,0.0,0.0008029991667721654,0.0003521140819322373,6.469930693998528e-05,0.0,1.4766159462132198e-05 +97970,50.0,the Greater Atlanta and Macon Area,G1301210011414,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,287818.0,,37532.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013629665700461572,0.006382628695074867,0.0,0.020012294395536437,0.006346228263079501,0.004535993822814949,0.005887490622058474,0.0,0.003242563957222097,0.005748715083223721,0.004535993822814949,0.002915899778419044,0.0,0.00042903928564243775,0.0005975131798557794,0.0029715908436394297,0.002813524671579659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042645014163300967,0.0,0.0,0.0016242201130925718,0.0008131595181598655,0.0020506702547255814,0.0006850629258129494,0.0005405453487850552,0.0003474819685203282,0.0,5.112775708238518e-05,3.992235681416186e-05,0.0001985444237298728,0.0001879833610889751,0.0,0.0,0.0,0.0006503013233554361,0.0004648056551746653,0.0006032942377823487,0.0,0.00033226722157374033 +97971,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001300,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,29974.0,,1525.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027077746532526144,0.0004489889401353917,0.0,0.0031567635933880053,0.0013168910062344263,0.0006040635207576839,0.0012358090663958955,0.0,0.0,0.0008679020660990348,0.0006040635207576839,0.0012358090663958955,0.0,0.0,0.0004489889401353917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.999880204045305e-05,0.0,0.0,0.0003226800373921023,0.00013169649882490127,0.0003526788394325554,0.00010342613658973213,7.198502993266255e-05,0.00014726887086970763,0.0,0.0,2.999880204045305e-05,0.0,0.0,0.0,0.0,0.0,0.00014712523697077567,6.748697364940055e-05,0.00013806662881237926,0.0,0.0 +97972,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,140988.0,,19494.0,,9.729435225087556,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.03265090160313399,0.017242136402758734,0.0,0.049893038005892724,0.03467036722161374,0.008102668914914967,0.0036376017528906377,0.0006457974211705402,0.0028366949125556173,0.020749066308469788,0.008102668914914967,0.002244199063487972,0.0006457974211705402,0.0009092621123434995,0.013921300913143952,0.0013934026894026647,0.001927432800212118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011520176307609536,0.0,0.0,0.0038909455688936677,0.002092049123075869,0.005042963199654621,0.002472626593682553,0.0009655795755322953,0.0002674369151556813,7.69584449718621e-05,0.00010835502890512072,0.0009301390338441116,9.309893086594324e-05,0.00012877966605089877,0.0,0.0,0.0,0.0035043243106675503,0.0008189812204274992,0.00036767237490449144,6.527428995224238e-05,0.00028672032460672964 +97973,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,9166.0,,2030.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011016504516072586,0.0005914347282519035,0.0,0.001693085179859162,0.0011786475261819592,0.00040290579654177796,0.00011153185713542469,0.0,0.0,0.000587212797930056,0.00040290579654177796,0.00011153185713542469,0.0,0.0,0.0005914347282519035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9516516386505685e-05,0.0,0.0,0.0001312823334294872,6.93470860511801e-05,0.00017079884981599289,6.99774290651303e-05,4.801378971442371e-05,1.3291114649933197e-05,0.0,0.0,3.9516516386505685e-05,0.0,0.0,0.0,0.0,0.0,0.00011890225264808588,4.064523595868727e-05,1.1251361209219725e-05,0.0,0.0 +97974,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,3218.0,,809.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007728148970200886,0.0006420550134382435,0.0,0.0014147872033845926,0.0009205297307184915,0.0002731814645609324,0.00017442921851619936,0.0,4.656408251523008e-05,0.00027847471728024807,0.0002731814645609324,0.00017442921851619936,0.0,4.656408251523008e-05,0.0006420550134382435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.289646595743076e-05,0.0,0.0,9.208996128865559e-05,7.105602665034285e-05,0.00013498642724608635,3.318352950116688e-05,3.255277634165555e-05,2.078528770952212e-05,0.0,5.548656700076316e-06,4.289646595743076e-05,0.0,0.0,0.0,0.0,0.0,8.782876974447217e-05,2.6064548649235547e-05,1.6642486558049582e-05,0.0,4.442731120048323e-06 +97975,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,31891.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.002557851929451394,0.0,0.0,0.002557851929451394,0.0016339174081544214,0.0007359219407772889,0.00018804295411912152,0.0,0.0,0.0016339174081544214,0.0007359219407772889,0.00018804295411912152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003048160414183321,8.944067942802839e-05,0.0003048160414183321,0.00019471191065581034,8.769890477152896e-05,2.2408845575159343e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019471191065581034,8.769890477152896e-05,2.2408845575159343e-05,0.0,0.0 +97976,50.0,the Greater Atlanta and Macon Area,G1301210007200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,23627.0,,1918.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003244996211493902,0.0005645353078462427,0.0,0.0038095315193401444,0.0016592642540915988,0.000901016151294256,0.0012492511139542896,0.0,0.0,0.0010947289462453563,0.000901016151294256,0.0012492511139542896,0.0,0.0,0.0005645353078462427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.771812803858978e-05,0.0,0.0,0.0003867001950330472,0.00015724050271765825,0.00042441832307163696,0.00013045682319194816,0.00010737242780108224,0.00014887094404001682,0.0,0.0,3.771812803858978e-05,0.0,0.0,0.0,0.0,0.0,0.00018485794084629242,0.00010038183489265525,0.0001391785473326893,0.0,0.0 +97977,50.0,the Greater Atlanta and Macon Area,G1301210000600,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,60719.0,,3736.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005265968165410225,0.0010996392832529885,0.0,0.006365607448663215,0.0016942810948772776,0.0024139830521647055,0.0022573433016212304,0.0,0.0,0.0005946418116242892,0.0024139830521647055,0.0022573433016212304,0.0,0.0,0.0010996392832529885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.347234109684241e-05,0.0,0.0,0.0006275335634924989,0.00024088521928524725,0.0007010059045893412,7.086212512664441e-05,0.0002876689222858998,0.00026900251607995466,0.0,0.0,7.347234109684241e-05,0.0,0.0,0.0,0.0,0.0,0.00018658094472861098,0.0002658373747978169,0.0002485875850629132,0.0,0.0 +97978,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,50682.0,,4351.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004515699360250285,0.0012808614084409233,0.0,0.005796560768691209,0.0020032947406888467,0.0014293377237092095,0.00236395899389945,0.0,0.0,0.0007224333322479235,0.0014293377237092095,0.00236395899389945,0.0,0.0,0.0012808614084409233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.55792961157481e-05,0.0,0.0,0.0005381271027534156,0.00023868042126742972,0.0006237063988691637,8.60909739556983e-05,0.0001703313942656199,0.00028170839175274123,0.0,0.0,8.55792961157481e-05,0.0,0.0,0.0,0.0,0.0,0.00021555329072668207,0.00015379586620357393,0.00025436054412180384,0.0,0.0 +97979,35.0,Eastern Counties in South Carolina and Georgia,G1301030030304,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,4020.0,,53.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0009651915505377176,4.242872882826471e-05,0.0,0.0010076202793659823,0.00034009148721603216,0.0002525046961261055,0.0003725953671955799,0.0,4.242872882826471e-05,0.00034009148721603216,0.0002525046961261055,0.0003725953671955799,0.0,0.0,0.0,0.0,4.242872882826471e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8337444399496807e-06,0.0,0.0,0.00011502226225895674,3.990211043504909e-05,0.00011785600669890641,4.0528838252684675e-05,3.009108540502098e-05,4.4402338601251075e-05,0.0,0.0,0.0,0.0,2.8337444399496802e-06,0.0,0.0,0.0,3.977869979035568e-05,2.9534136785008717e-05,4.358050645806233e-05,0.0,4.962663665479684e-06 +97980,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020501,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,3110.0,,637.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00016008743326165678,0.00010829704755368252,0.0,0.00026838448081533924,0.00012090333452334005,4.944997800052727e-05,2.402463972417155e-05,0.0,7.398879820588035e-05,5.099251944407186e-05,4.944997800052727e-05,2.402463972417155e-05,0.0,3.5620296092886084e-05,6.991081507926819e-05,0.0,3.836850211299426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.235331521418972e-06,0.0,0.0,1.9078146994363753e-05,1.2882492657266507e-05,2.6313478515782727e-05,6.076946589410804e-06,5.893116842095525e-06,2.8630954897954243e-06,0.0,4.244988073061998e-06,4.670745283064015e-06,0.0,2.563401671963106e-06,0.0,0.0,0.0,1.1853842240808775e-05,4.8482718887836456e-06,2.3554709248124203e-06,0.0,7.25415510645183e-06 +97981,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,17069.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003974157600247461,0.0,0.0,0.003974157600247461,0.0029896953015284846,0.0005633178792384229,0.00034960280069605245,0.0,7.145891171076161e-05,0.0029896953015284846,0.0005633178792384229,0.00034960280069605245,0.0,7.145891171076161e-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.00047359106470736055,0.0001452149734161462,0.00047359106470736055,0.00035627499546402085,6.712927393231843e-05,4.1661347953591246e-05,0.0,8.515591348924258e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00035627499546402085,6.712927393231843e-05,4.1661347953591246e-05,0.0,8.515591348924258e-06 +97982,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,190997.0,,3394.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.009986874294904623,0.0005771232642227187,0.0,0.01056399755912734,0.005439089781745338,0.002471027280028499,0.001196462518986583,0.0,0.0014574179783669204,0.005439089781745338,0.002471027280028499,0.0006193392547638644,0.0,0.0014574179783669204,0.0,0.0005771232642227187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.855991040618915e-05,0.0,0.0,0.0011901163457423175,0.0004298050887837258,0.0012286762561485064,0.0006481657287423544,0.00029446750503683806,7.380545192507401e-05,0.0,0.000173677660038051,0.0,3.855991040618915e-05,0.0,0.0,0.0,0.0,0.0006326090509284926,0.0002873999667524578,0.00013915802992403226,0.0,0.00016950920854352382 +97983,81.0,the Columbus-Albany Area,G1302150000900,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,14189.0,,497.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003101019022781592,0.0003940992063677998,0.0,0.0034951182291493924,0.0018705031796881768,0.0010775077566756973,0.0004517460367640972,0.0,9.527854894768216e-05,0.0014764039733203766,0.0010775077566756973,0.0004517460367640972,0.0,9.527854894768216e-05,0.0003940992063677998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6332012666351452e-05,0.0,0.0,0.00036954005714073964,0.00012143666173231153,0.00039587206980709117,0.00017593907185201212,0.0001284036876414775,5.383335445945272e-05,0.0,1.1354087209317015e-05,2.633201266635145e-05,0.0,0.0,0.0,0.0,0.0,0.0002118612066247941,0.00012204314644091873,5.1166692190689137e-05,0.0,1.0791656793056367e-05 +97984,50.0,the Greater Atlanta and Macon Area,G1301210010121,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,79242.0,,2747.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007440468786268876,0.0008003139715853227,0.0,0.008240782757854196,0.005104435253511382,0.002544548292897659,0.0005917992114451566,0.0,0.0,0.004304121281926059,0.002544548292897659,0.0005917992114451566,0.0,0.0,0.0008003139715853227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.347260011184931e-05,0.0,0.0,0.0008866648301090231,0.0002711140540165782,0.0009401374302208722,0.0005129129729366612,0.0003032284046389623,7.05234525333995e-05,0.0,0.0,5.347260011184931e-05,0.0,0.0,0.0,0.0,0.0,0.0005823318952791551,0.0002902910031061928,6.751453183552445e-05,0.0,0.0 +97985,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,97828.0,,13578.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0050357063290777165,0.002309060428456317,0.0,0.007344766757534032,0.0022620749706931766,0.0022575005374468027,0.0021674480317943547,0.0,0.0006577432175996989,0.0020073960592555382,0.0022575005374468027,0.0006438958053306376,0.0,0.00012691392704473797,0.0002546789114376384,0.001523552226463717,0.0005308292905549609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001542783923490578,0.0,0.0,0.0006000954646555116,0.00028809567333116154,0.0007543738570045695,0.00023921753815759575,0.00026902200911849453,7.673182811682989e-05,0.0,1.5124089262591377e-05,1.7016208210745944e-05,0.00010179516536766834,3.546701877064348e-05,0.0,0.0,0.0,0.0002323355222580604,0.00023186568666414762,0.00022261648130956243,0.0,6.75561667727992e-05 +97986,50.0,the Greater Atlanta and Macon Area,G1301170130205,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,33045.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0033130914794710933,0.0,0.0,0.0033130914794710933,0.0023034122869613474,0.0008359422037258056,0.0001737369887839404,0.0,0.0,0.0023034122869613474,0.0008359422037258056,0.0001737369887839404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003948132468695639,0.0001419204752904904,0.0003948132468695639,0.00027449217431196253,9.961724802750452e-05,2.070382453009686e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027449217431196253,9.961724802750452e-05,2.070382453009686e-05,0.0,0.0 +97988,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,1402476.0,,67946.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,654728.2554853096,0.0,0.0,0.0721928012458361,0.01155484107672557,0.0,0.08374764232256168,0.05044067967523414,0.014255405615698075,0.010233929150931636,0.0,0.0088176101503364,0.039313920444634325,0.014255405615698075,0.009805865035167302,0.0,0.0088176101503364,0.011126759230599815,0.0004280641157643347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007720264802647586,0.0,0.0,0.008603077335788974,0.0032154013530746577,0.00937510381605373,0.004684964319454941,0.0016987892815970285,0.0011685460847347168,0.0,0.0010507776500022876,0.0007434245705772771,2.860072504907498e-05,0.0,0.0,0.0,0.0,0.005646566224351314,0.0015958169553284306,0.0011456340211535158,0.0,0.0009870846304006649 +97989,81.0,the Columbus-Albany Area,G1302150010301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,17669.0,,175.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0040567819669130286,0.00013878246973455786,0.0,0.004195564436647588,0.0016334647063513219,0.0009864472684887196,0.0014988175903037292,0.0,7.68348715038166e-05,0.001494682236616764,0.0009864472684887196,0.0014988175903037292,0.0,7.68348715038166e-05,0.00013878246973455786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.273505360711209e-06,0.0,0.0,0.0004834374903756529,0.0001573757639922493,0.0004927109957363642,0.00017811788636225897,0.00011755267987177193,0.00017861068706600579,0.0,9.156237075616344e-06,9.273505360711209e-06,0.0,0.0,0.0,0.0,0.0,0.00019182783010946998,0.00011584458378307079,0.0001760153892275349,0.0,9.023192616288484e-06 +97990,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,12414.0,,1447.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.001126953032857944,0.00042597173541211454,0.0,0.0015529554578763564,0.001051241774121511,0.00025994096534154255,0.0002417727184133025,0.0,0.0,0.0006252700387093965,0.00025994096534154255,0.0002417727184133025,0.0,0.0,0.00042597173541211454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8461173230987356e-05,0.0,0.0,0.0001342986122422731,7.48823757901262e-05,0.0001627597854732605,7.451321929751565e-05,3.0977077031999484e-05,2.8811973182773546e-05,0.0,0.0,2.8461173230987356e-05,0.0,0.0,0.0,0.0,0.0,0.00011017694343308693,2.7243495967718985e-05,2.5339346072454567e-05,0.0,0.0 +97992,50.0,the Greater Atlanta and Macon Area,G1301170130307,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,35113.0,,5199.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029837201671681123,0.0015146706567618078,0.0,0.004498360450330483,0.0034009926762439474,0.0007317911312537547,0.0003656373900316564,0.0,0.0,0.0018863220194821394,0.0007317911312537547,0.0003656373900316564,0.0,0.0,0.0015146706567618078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010120045732292342,0.0,0.0,0.0003555638702409108,0.00019563890128615813,0.00045676432756383415,0.00022478916258567838,8.720606231767276e-05,4.3572264897694114e-05,0.0,0.0,0.00010120045732292342,0.0,0.0,0.0,0.0,0.0,0.00034533740681006635,7.430620282101712e-05,3.712688621422837e-05,0.0,0.0 +97993,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,38662.0,,3285.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.003444785548491947,0.0009669681152280193,0.0,0.004411753663719965,0.002568720047117723,0.0007686518793322639,0.0010743510476636812,0.0,0.0,0.0016017519318897036,0.0007686518793322639,0.0010743510476636812,0.0,0.0,0.0009669681152280193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.46071029051527e-05,0.0,0.0,0.0004105081812038923,0.0001987884809943518,0.00047511528410904507,0.00019087756350688262,9.159870201550778e-05,0.00012802825846270385,0.0,0.0,6.46071029051527e-05,0.0,0.0,0.0,0.0,0.0,0.0002766333408456605,8.27784785522152e-05,0.00011570015965333376,0.0,0.0 +97995,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,59566.0,,3909.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004942908451701418,0.0011388884845179423,0.0,0.006081796936219361,0.0035979047213988927,0.0018485372617815755,0.0006353245794394548,0.0,0.0,0.00245901623688095,0.0018485372617815755,0.0006353245794394548,0.0,0.0,0.0011388884845179423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.60945639389647e-05,0.0,0.0,0.0005890357126241548,0.00021970988141768695,0.0006651302765631194,0.0002930356480599922,0.00022028618857608325,7.571025643190821e-05,0.0,0.0,7.60945639389647e-05,0.0,0.0,0.0,0.0,0.0,0.00039348162845427234,0.0002021636225379005,6.948170378943913e-05,0.0,0.0 +97996,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,47933.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005723540330851078,0.0,0.0,0.0057235403308510775,0.0034733122165052344,0.001677928753739724,0.0005723297342055576,0.0,0.0,0.0034733122165052344,0.001677928753739724,0.0005723297342055576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006820642537240119,0.00019011946085697843,0.0006820642537240119,0.000413908519545431,0.00019995582402952477,6.820352971758113e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041390851954543103,0.0001999558240295248,6.820352971758114e-05,0.0,0.0 +97997,50.0,the Greater Atlanta and Macon Area,G1300450911200,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,195125.0,,39358.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.04088189670789039,0.02724319541566848,0.0,0.0681250921235589,0.05858547772255867,0.005094991804934001,0.0017226989996541012,0.0007457740129205094,0.001976149583491611,0.03224206074632243,0.005094991804934001,0.0017226989996541012,0.0007457740129205094,0.0010763711440593573,0.02634341697623623,0.0,0.0008997784394322538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001820228834059859,0.0,0.0,0.004871820708319686,0.0028075934803329632,0.006692049542379544,0.0038422272906070477,0.0006071608360383588,0.00020529088267806888,8.887252237422662e-05,0.00012826917662198473,0.0017601109721596354,0.0,6.011786190022391e-05,0.0,0.0,0.0,0.005754956171982266,0.0005004901500139786,0.00016922380128872076,7.325871402612544e-05,0.0001941207050684529 +97998,50.0,the Greater Atlanta and Macon Area,G1301210010304,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,19310.0,,343.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.007084687936509074,0.00027194085845484283,0.0,0.007356628794963918,0.0028383413565855518,0.0007484163102669929,0.0036336525776627326,0.0,0.00013621855044863932,0.0025664004981307094,0.0007484163102669929,0.0036336525776627326,0.0,0.00013621855044863932,0.00027194085845484283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.816944069888202e-05,0.0,0.0,0.0008442645995013613,0.00027582858987436717,0.0008624340402002433,0.00030583154941077795,8.918690591743892e-05,0.0004330133191045156,0.0,1.6232825068628784e-05,1.816944069888202e-05,0.0,0.0,0.0,0.0,0.0,0.000332745102662139,8.773851722098305e-05,0.00042598121511621946,0.0,1.5969205200901656e-05 +97999,81.0,the Columbus-Albany Area,G1300950000900,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,9696.0,,136.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028163412749708963,0.00010751919586109964,0.0,0.0029238604708319966,0.001832375218694356,0.00047498672448484256,0.0005515734747674413,0.0,6.484234581161703e-05,0.0017248560228332564,0.00047498672448484256,0.0005515734747674413,0.0,6.484234581161703e-05,0.00010751919586109964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.184268284776026e-06,0.0,0.0,0.0003356192953736524,0.00011718107258373933,0.0003428035636584284,0.0002055485846651451,5.6603477426608894e-05,6.573020911684741e-05,0.0,7.727168083312098e-06,7.184268284776026e-06,0.0,0.0,0.0,0.0,0.0,0.0002148340391732428,5.568909442437073e-05,6.466839120949476e-05,0.0,7.602341986541294e-06 +98000,50.0,the Greater Atlanta and Macon Area,G1301350050308,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7526.0,,,2322.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005503088746131874,0.0,0.0002188114103495641,0.0007691506585621895,0.0005122811281171223,0.0002075428049581582,4.932672548690896e-05,0.0,0.0,0.0002934697177675581,0.0002075428049581582,4.932672548690896e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002188114103495641,0.0,0.0,0.0,0.0,1.7647827750011914e-05,6.558083721956397e-05,3.43348057542257e-05,8.322866496957589e-05,3.497306817614677e-05,2.473307543444534e-05,5.878313259994034e-06,0.0,0.0,0.0,0.0,0.0,1.7647827750011918e-05,0.0,0.0,5.543318972384263e-05,2.2457902607791808e-05,5.337572637941445e-06,0.0,0.0 +98001,50.0,the Greater Atlanta and Macon Area,G1301350050524,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,10683.0,,665.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0025651598920246195,0.0005275884233830419,0.0,0.003092748315407661,0.001358380979094385,0.0006332053565481377,0.0009463343377251555,0.0,0.0001547449349662442,0.0009855374906775872,0.0006332053565481377,0.0009463343377251555,0.0,0.0,0.0003728434884167978,0.0,0.0001547449349662442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.525206931906496e-05,0.0,0.0,0.00030568371172427533,0.00012194035006181516,0.00034093578104334036,0.00011744404671631357,7.545750433535555e-05,0.00011277230467674218,0.0,0.0,2.4912420205415404e-05,0.0,1.0339649113649564e-05,0.0,0.0,0.0,0.00014974405701063866,6.980275818761872e-05,0.0001043212067898032,0.0,1.7058641662622076e-05 +98002,50.0,the Greater Atlanta and Macon Area,G1302970110504,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,58951.0,,12127.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0028274430052944006,0.002062377910019122,0.0,0.004889803184952103,0.0020876082143198573,0.0006313604398066602,0.001253235136253592,0.0,0.0009176171249334127,0.0015651299239937413,0.0006313604398066602,0.00048384383279182093,0.0,0.0001471088087021781,0.000522478290326116,0.0007693913034617712,0.0007705083162312346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013779552439343416,0.0,0.0,0.0003369400045070018,0.00022717623556471766,0.000474735528900436,0.00018651300226282902,7.523779932456983e-05,5.765857804959943e-05,0.0,1.7530624870003536e-05,3.490881552305056e-05,5.14060384419457e-05,5.14806704284379e-05,0.0,0.0,0.0,0.00020267928018287713,6.129678863984024e-05,0.00012167263645229654,0.0,8.908854501014609e-05 +98003,35.0,Eastern Counties in South Carolina and Georgia,G1300510003501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,24267.0,,898.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001158111747235009,0.00015264068146523456,0.0,0.0013107524287002436,0.0007677069191268664,0.0003197847985720724,8.670146734405821e-05,0.0,0.0001365592436572467,0.000704817327169939,0.0003197847985720724,8.670146734405821e-05,0.0,4.68081541489394e-05,6.288959195692728e-05,0.0,8.975108950830729e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0198880148438523e-05,0.0,0.0,0.0001380094396449397,3.6466008204300235e-05,0.00014820831979337824,8.399141499687136e-05,3.810799861349295e-05,1.0332008938788009e-05,0.0,5.578017095787391e-06,4.202047611396381e-06,0.0,5.996832537042144e-06,0.0,0.0,0.0,8.680552489257626e-05,3.615844354286485e-05,9.803436955234483e-06,0.0,1.5440914402702653e-05 +98004,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,67117.0,,877.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.0074148983730257636,0.0003259517407707604,0.0,0.007740888862220295,0.004420652674461837,0.0010065290559036226,0.0021842098996085347,0.0,0.0001294972322463007,0.004420652674461837,0.0010065290559036226,0.0018582581588377745,0.0,0.0001294972322463007,0.0,0.0003259517407707604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.177936204179201e-05,0.0,0.0,0.0008836213240851552,0.0002923029424603834,0.0009054006861269471,0.000526801956415024,0.00011994642304784695,0.00022144558862433001,0.0,1.5431973584304916e-05,0.0,2.177936204179201e-05,0.0,0.0,0.0,0.0,0.000517054570324713,0.00011772706132877606,0.0002554726178026554,0.0,1.514643667080265e-05 +98005,35.0,Eastern Counties in South Carolina and Georgia,G1300730030603,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,7401.0,,823.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005535177391853674,0.0002421103040825772,0.0,0.0007956280432679447,0.000383589389114987,0.0001971807204627404,0.0002148579336902172,0.0,0.0,0.00014147908503240982,0.0001971807204627404,0.0002148579336902172,0.0,0.0,0.0002421103040825772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6176263961549432e-05,0.0,0.0,6.596191822207555e-05,3.623374028690548e-05,8.213818218362498e-05,1.6859860445984044e-05,2.3497744764739157e-05,2.560431301135235e-05,0.0,0.0,1.6176263961549432e-05,0.0,0.0,0.0,0.0,0.0,3.960058395807631e-05,2.0356328660744087e-05,2.2181269564804567e-05,0.0,0.0 +98006,81.0,the Columbus-Albany Area,G1302150010203,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,29632.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025456721527881486,0.0,0.0,0.0025456721527881486,0.0007185357522481152,0.0007796694479931393,0.001047436262940596,0.0,0.0,0.0007185357522481152,0.0007796694479931393,0.001047436262940596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030336328213258836,9.882460417159791e-05,0.00030336328213258836,8.562664437871812e-05,9.291183959515374e-05,0.0001248211409322022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.562664437871812e-05,9.291183959515374e-05,0.0001248211409322022,0.0,0.0 +98007,50.0,the Greater Atlanta and Macon Area,G1300670030226,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,45409.0,,3533.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004004242734677136,0.0010293612849454092,0.0,0.0050336040196225455,0.004009558114578742,0.0007472512933675702,0.00027676423807679464,0.0,0.0,0.0029801968296333334,0.0007472512933675702,0.00027676423807679464,0.0,0.0,0.0010293612849454092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.877611700963296e-05,0.0,0.0,0.00047717711657111714,0.00021554960896778673,0.0005459532335807501,0.00035514373733226787,8.904835224778791e-05,3.298140743361693e-05,0.0,0.0,6.877611700963296e-05,0.0,0.0,0.0,0.0,0.0,0.0004348834769979282,8.104814330270157e-05,3.0018318907983774e-05,0.0,0.0 +98008,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,32861.0,,2436.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029462635837920626,0.0007169398927206347,0.0,0.0036632034765126968,0.0011323544035663395,0.0009721546586923309,0.0015586944142540267,0.0,0.0,0.0004154145108457049,0.0009721546586923309,0.0015586944142540267,0.0,0.0,0.0007169398927206347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.79009823137275e-05,0.0,0.0,0.0003511006709709309,0.00016888980572555534,0.0003990016532846584,4.950416327016646e-05,0.00011584983598618962,0.0001857466717145748,0.0,0.0,4.7900982313727504e-05,0.0,0.0,0.0,0.0,0.0,0.00012333775123986532,0.00010588855316218697,0.00016977534888260617,0.0,0.0 +98009,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,21060.0,,1715.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002830809284900105,0.0005048747132035085,0.0,0.003335653308497316,0.0013347216674933916,0.0008996964982234547,0.001101235142780469,0.0,0.0,0.0008298469542898833,0.0008996964982234547,0.001101235142780469,0.0,0.0,0.0005048747132035085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.373217068116874e-05,0.0,0.0,0.0003373408465098386,0.00012626515894049537,0.00037107301719100733,9.889089862994401e-05,0.0001072147035590029,0.0001312315871131021,0.0,0.0,3.373217068116874e-05,0.0,0.0,0.0,0.0,0.0,0.0001484804176157337,0.00010008626894812374,0.00012250633062714983,0.0,0.0 +98010,81.0,the Columbus-Albany Area,G1302150002700,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,9878.0,,445.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0008801165294055204,0.00013086048125340467,0.0,0.0010109463210526274,0.0005112888409197284,0.0003009422793552735,0.00019871520077762553,0.0,0.0,0.0003804283596663237,0.0003009422793552735,0.00019871520077762553,0.0,0.0,0.00013086048125340467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.7424061007363e-06,0.0,0.0,0.0001048811167985555,4.196695626236738e-05,0.00011362352289929181,4.5334623189723624e-05,3.586248104214503e-05,2.368035536894647e-05,0.0,0.0,8.7424061007363e-06,0.0,0.0,0.0,0.0,0.0,5.7465404556698396e-05,3.382387497496905e-05,2.2334243367624372e-05,0.0,0.0 +98011,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,32006.0,,2769.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029630814880432037,0.0008151159432669859,0.0,0.0037781974313101903,0.0018862752718757064,0.0008041597538187061,0.0010877930952220751,0.0,0.0,0.00107115932860872,0.0008041597538187061,0.0010877930952220751,0.0,0.0,0.0008151159432669859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4460757367215116e-05,0.0,0.0,0.00035310506116916586,0.000161533396177322,0.000407565818536381,0.00012764811962700563,9.583026326064891e-05,0.00012963033550638097,0.0,0.0,5.4460757367215116e-05,0.0,0.0,0.0,0.0,0.0,0.00020347833567298826,8.674719472917545e-05,0.0001173435987167738,0.0,0.0 +98012,85.0,Rural Climate Zone 3A,G1300310110300,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,212112.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.01889896645418835,0.0,0.0,0.01889896645418835,0.004951982803378428,0.004673198419770096,0.009273785231039826,0.0,0.0,0.004951982803378428,0.004673198419770096,0.009273785231039826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00225215369385806,0.0006549190823357628,0.00225215369385806,0.0005901183215275085,0.0005568961196226896,0.0011051392527078622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005901183215275085,0.0005568961196226896,0.0011051392527078622,0.0,0.0 +98013,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11250.0,,6119.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0010868002336035566,0.0010405417206586387,0.0,0.0021273419542621953,0.0008224050841077291,0.00031207209135434937,0.0006012188253925704,0.0,0.00039164595340754636,0.000475811979068537,0.00031207209135434937,0.00022881031412578143,0.0,7.01058490548888e-05,0.00034659310503919215,0.000372408511266789,0.0003215401043526575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.952343855520966e-05,0.0,0.0,0.00012951171080780494,0.00010115742357660324,0.0001990351493630146,5.6701518390078515e-05,3.718897843135236e-05,2.72668465801149e-05,0.0,8.354367406259149e-06,2.3157499563399703e-05,2.488234708561732e-05,2.1483591906192633e-05,0.0,0.0,0.0,7.694462022164864e-05,2.91976168618756e-05,5.625032612745523e-05,0.0,3.664258615203512e-05 +98014,35.0,Eastern Counties in South Carolina and Georgia,G1301790010202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Propane,25674.0,,,992.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003080581575775103,0.0,9.345956546996236e-05,0.0031740411412450654,0.0015898756889696814,0.0013399617127958594,0.00024420373947952467,0.0,0.0,0.001496416123499719,0.0013399617127958594,0.00024420373947952467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.345956546996236e-05,0.0,0.0,0.0,0.0,7.53827956624024e-06,0.0003671072595240679,0.00010626011358038106,0.0003746455390903081,0.00017832516643140364,0.00015968078109663273,2.9101311996031534e-05,0.0,0.0,0.0,0.0,0.0,7.53827956624024e-06,0.0,0.0,0.00018765977127409655,0.00015816136461730174,2.882440319890983e-05,0.0,0.0 +98015,50.0,the Greater Atlanta and Macon Area,G1301510070310,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,222458.0,,15740.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.019820759468946153,0.004633240552370486,0.0,0.024454000021316636,0.008022140327794317,0.00615351157953979,0.010278378803588829,0.0,0.0,0.00338889977542383,0.00615351157953979,0.010278378803588829,0.0,0.0,0.004633240552370486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003095658065551802,0.0,0.0,0.0023620020627647402,0.0009249733406633118,0.00267156786931992,0.0004038487159180307,0.000733302226228594,0.0012248547778399032,0.0,0.0,0.0003095658065551802,0.0,0.0,0.0,0.0,0.0,0.0008764084535956813,0.0006722631800546407,0.001122899588469387,0.0,0.0 +98016,35.0,Eastern Counties in South Carolina and Georgia,G1300510002200,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,222046.0,,1994.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.018301156737225793,0.000580955836445879,0.0,0.01888214294727111,0.012573303355254556,0.0051496919166736325,0.0011590869281440472,0.0,0.0,0.011992347518808677,0.0051496919166736325,0.0011590869281440472,0.0,0.0,0.000580955836445879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8816677631823276e-05,0.0,0.0,0.0021809147816792833,0.0005961640114218269,0.002219731459311107,0.0014291057306560916,0.0006136791998138101,0.00013812623164407566,0.0,0.0,3.8816677631823276e-05,0.0,0.0,0.0,0.0,0.0,0.001478082073790992,0.0006053832547037569,0.0001362589895470233,0.0,0.0 +98017,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,29774.0,,6156.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006537705677899042,0.004234633968645739,0.0,0.01077233964654478,0.004281897429545026,0.0006608278129378403,0.0037049102627244356,0.0003689275309043032,0.0017557766104331742,0.0023873426751966453,0.0006608278129378403,0.0013648310484270783,0.0003689275309043032,0.0017557766104331742,0.0018945547543483814,0.0023400792142973573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002829334426417664,0.0,0.0,0.00077908943520761,0.0004982123357429614,0.0010620228778493767,0.0002844963582183917,7.874994576333889e-05,0.00016264504752293668,4.3964588778664544e-05,0.00020923349492427815,0.0001265830536688724,0.00015635038897289402,0.0,0.0,0.0,0.0,0.00042214348785779847,6.514965909789719e-05,0.0003652595061514188,3.637180881263111e-05,0.0001730984159296311 +98018,85.0,Rural Climate Zone 3A,G1302610950300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,21843.0,,304.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001935746917227603,8.93374439326128e-05,0.0,0.0020251150507665135,0.0006668851448490815,0.0007877715040557327,0.0005704277122554017,0.0,0.0,0.0005775477009164686,0.0007877715040557327,0.0005704277122554017,0.0,0.0,8.93374439326128e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.969860497214409e-06,0.0,0.0,0.0002306799991187989,7.643364285844576e-05,0.00023664985961601326,6.882547607477885e-05,9.387752512691952e-05,6.797699791710052e-05,0.0,0.0,5.969860497214409e-06,0.0,0.0,0.0,0.0,0.0,7.793052342818992e-05,9.205699981031786e-05,6.665875006717746e-05,0.0,0.0 +98019,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,7323.0,,798.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0014558099119592893,0.0006332053565481376,0.0,0.002089015268507427,0.0012851025117613588,0.0005237011909172947,0.00022603843252952722,0.0,5.417313329924637e-05,0.0006518971552132211,0.0005237011909172947,0.00022603843252952722,0.0,5.417313329924637e-05,0.0006332053565481376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.230682430331767e-05,0.0,0.0,0.00017348419971898222,9.131124658523599e-05,0.0002157910240222999,7.76844939316565e-05,6.240779187709325e-05,2.6936275300078315e-05,0.0,6.45563861015415e-06,4.230682430331767e-05,0.0,0.0,0.0,0.0,0.0,0.0001327484730088881,5.409726677128843e-05,2.3349309868277206e-05,0.0,5.595974373846165e-06 +98020,50.0,the Greater Atlanta and Macon Area,G1301210010512,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,291064.0,,13791.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01532381946450904,0.0023453190175603245,0.0,0.017669138482069364,0.007640420534213415,0.0033677757695705097,0.0047179073309846905,0.0,0.0019430348473007462,0.006914078548279532,0.0033677757695705097,0.0047179073309846905,0.0,0.0003240578156743051,0.0007263419859338831,0.0,0.0016189770316264412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015670056002363216,0.0,0.0,0.0018261099306006673,0.000635294902692304,0.001982810490624299,0.0008239373693489816,0.0004013313254631227,0.000562223892595361,0.0,3.8617343193201654e-05,4.8529942030195084e-05,0.0,0.00010817061799343707,0.0,0.0,0.0,0.0008573992446430473,0.0003779279410114544,0.0005294381590343465,0.0,0.00021804514593545073 +98021,50.0,the Greater Atlanta and Macon Area,G1301350050211,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,363465.0,,38644.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.01870944970802954,0.006571829381788251,0.0,0.02528127908981779,0.009697461605445101,0.006429596422476588,0.006391369763254954,0.0,0.002762851298641148,0.008473782981678736,0.006429596422476588,0.003325488857583684,0.0,0.0004805814462905313,0.001223678623766364,0.0030658809056712706,0.002282269852350617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043909112011111286,0.0,0.0,0.0022295691403669635,0.0009529699573627829,0.002668660260478077,0.001009804421452834,0.0007662026404985804,0.00039629211169801143,0.0,5.726996671753741e-05,8.175903334535324e-05,0.00020484419220149607,0.00015248789456426365,0.0,0.0,0.0,0.0010236519411071377,0.0006787001718788014,0.0006746650134521575,0.0,0.00029164313403998025 +98022,50.0,the Greater Atlanta and Macon Area,G1301210011417,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,18148.0,,1124.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0044989339831233675,0.0008915822549097339,0.0,0.005390516238033099,0.003119462700225458,0.0007724840687251313,0.001366651686468316,0.0,0.00013191778261419532,0.002227880445315724,0.0007724840687251313,0.001366651686468316,0.0,0.00013191778261419532,0.0008915822549097339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9568160273358776e-05,0.0,0.0,0.0005361284486708347,0.0001867423592875757,0.0005956966089441935,0.00026549180126932625,9.205529286318102e-05,0.0001628609913566599,0.0,1.5720363181667423e-05,5.9568160273358776e-05,0.0,0.0,0.0,0.0,0.0,0.00034472641769283405,8.53658758981645e-05,0.00015102630977957925,0.0,1.4578005573615883e-05 +98023,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,13395.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0017884674966049275,0.0,0.0,0.0017884674966049275,0.0006486862083145438,0.0004625844357252741,0.0006771661629588118,0.0,0.0,0.0006486862083145438,0.0004625844357252741,0.0006771661629588118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002131274630400619,7.585166131611124e-05,0.0002131274630400619,7.730240898959757e-05,5.512509867531837e-05,8.069629816698066e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.730240898959757e-05,5.512509867531837e-05,8.069629816698066e-05,0.0,0.0 +98024,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,38885.0,,1.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.0033773604834558936,1.8413763778621668e-07,0.0,0.00337754462109368,0.0012524428330092506,0.0008892927216885334,0.0012358090663958955,0.0,0.0,0.0012522586953714644,0.0008892927216885334,0.0012358090663958955,0.0,0.0,1.8413763778621668e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2594622543013597e-08,0.0,0.0,0.0004024745916688631,0.00013782679171318155,0.0004024871862914061,0.0001492296453257757,0.00010597557672299289,0.00014726936962009446,0.0,0.0,1.2594622543013597e-08,0.0,0.0,0.0,0.0,0.0,0.00014924812205308513,0.00010597311523480145,0.00014726594900351948,0.0,0.0 +98025,50.0,the Greater Atlanta and Macon Area,G1300630040614,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,9255.0,,825.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007640484383876084,0.0002428161650274244,0.0,0.001006864603415033,0.000539615347532508,0.00024698995148391203,0.0002202593043986129,0.0,0.0,0.0002967991825050837,0.00024698995148391203,0.0002202593043986129,0.0,0.0,0.0002428161650274244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6223745802637465e-05,0.0,0.0,9.104912037946653e-05,4.751532474224846e-05,0.00010727286618210399,3.5368574999591144e-05,2.9432974004416247e-05,2.6247571375459168e-05,0.0,0.0,1.6223745802637465e-05,0.0,0.0,0.0,0.0,0.0,5.7491429105094314e-05,2.631468017049418e-05,2.3466756906515494e-05,0.0,0.0 +98026,50.0,the Greater Atlanta and Macon Area,G1301350050211,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,20165.0,,13956.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004198630543195902,0.009600435320149694,0.0,0.013799065863345599,0.0026698476410271376,0.0005331662645300526,0.008323389516245724,0.0003727286893681307,0.001899933752174552,0.0017299574208675542,0.0005331662645300526,0.001329688262629429,0.0003727286893681307,0.00023308990580073592,0.0009398902201595829,0.006993701253616295,0.001666843846373816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006414460083585472,0.0,0.0,0.0005003422386029984,0.000776474850176452,0.0011417882469615457,0.0002061554975460853,6.353633633587322e-05,0.00015845623831949013,4.441731772094878e-05,2.7776848680601022e-05,6.279807216150278e-05,0.00046727899341905997,0.00011136894277798442,0.0,0.0,0.0,0.00022091355225720372,4.411624529844872e-05,0.0006887095415477759,3.0841017866026094e-05,0.00015720788999209104 +98027,35.0,Eastern Counties in South Carolina and Georgia,G1302450000700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7192.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013603659488641286,0.0,0.0,0.0013603659488641286,0.0006844010351927688,0.00047639274473841077,0.00015739156132590204,0.0,4.226331468078609e-05,0.0006844010351927688,0.00047639274473841077,0.00015739156132590204,0.0,4.226331468078609e-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.00016211684429225012,5.2202403017044676e-05,0.00016211684429225012,8.156109475427829e-05,5.677243574436774e-05,1.87565877120715e-05,0.0,5.036582407182624e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.156109475427829e-05,5.677243574436774e-05,1.87565877120715e-05,0.0,5.036582407182624e-06 +98028,50.0,the Greater Atlanta and Macon Area,G1301210011800,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,133716.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011791243916931322,0.0,0.0,0.011791243916931322,0.006786464443175203,0.004070335687053684,0.0009344437867024347,0.0,0.0,0.006786464443175203,0.004070335687053684,0.0009344437867024347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001405140145055749,0.00036116244727108805,0.001405140145055749,0.00080873007964885,0.00048505417392982574,0.00011135589147707308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00080873007964885,0.00048505417392982574,0.00011135589147707308,0.0,0.0 +98029,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,24792.0,,1444.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005635908125817626,0.0011454102642156686,0.0,0.006781401097107034,0.003371057618540431,0.0010006728851718804,0.002257737698935615,0.0,0.00015193289445910774,0.0023775802487838705,0.0010006728851718804,0.002257737698935615,0.0,0.0,0.0009934773697565606,0.0,0.00015193289445910774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.653167427416025e-05,0.0,0.0,0.0006716241331729187,0.00026626593269938025,0.0007481558074470788,0.0002833332691005957,0.00011924893807521158,0.0002690517820958035,0.0,0.0,6.6380133683386e-05,0.0,1.0151540590774234e-05,0.0,0.0,0.0,0.0003719108040410216,0.0001103989013001379,0.0002490841563510344,0.0,1.6761945754884978e-05 +98030,50.0,the Greater Atlanta and Macon Area,G1301350050423,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,22049.0,,1.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.0019656385937615655,2.455168503816222e-07,0.0,0.0019658841106119473,0.0007252874656336098,0.0005069002272191569,0.0007336657281528827,0.0,0.0,0.0007250419487832283,0.0005069002272191569,0.0007336657281528827,0.0,0.0,2.455168503816222e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6243806893901835e-08,0.0,0.0,0.00023424050287912924,9.053216716627866e-05,0.0002342567466860231,8.640153445829643e-05,6.040610136074846e-05,8.74292098522766e-05,0.0,0.0,1.6243806893901835e-08,0.0,0.0,0.0,0.0,0.0,8.642599082740034e-05,6.040274575788819e-05,8.742435309608736e-05,0.0,0.0 +98031,50.0,the Greater Atlanta and Macon Area,G1300630040611,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,75659.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.006379908805197944,0.0,0.0,0.006379908805197942,0.0017277020761354758,0.0024766205386183167,0.0021755861904441502,0.0,0.0,0.0017277020761354758,0.0024766205386183167,0.0021755861904441502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007602829695861978,0.000234024317574457,0.0007602829695861978,0.00020588734182757092,0.0002951346915969722,0.0002592609361616545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020588734182757097,0.00029513469159697225,0.00025926093616165463,0.0,0.0 +98032,35.0,Eastern Counties in South Carolina and Georgia,G1300510010808,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,74543.0,,2735.0,,3.3063363735822096,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.006782049413291917,0.0008222156885652633,0.0,0.007604265101857182,0.0027788051048694223,0.0007684083044410666,0.002924558246140035,0.0,0.001132493446406658,0.0027788051048694223,0.0007684083044410666,0.002102342557574771,0.0,0.001132493446406658,0.0,0.0008222156885652633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.493542803248071e-05,0.0,0.0,0.0008082026510888389,0.00036205537690123956,0.0008631380791213198,0.0003311443954113815,9.156961132586472e-05,0.000250531767757217,0.0,0.00013495687659437593,0.0,5.493542803248071e-05,0.0,0.0,0.0,0.0,0.00031541410883791115,8.721979823062052e-05,0.0003319581252151794,0.0,0.00012854604683760863 +98033,35.0,Eastern Counties in South Carolina and Georgia,G1301270000101,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9178.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002004157810850897,0.0,0.0,0.002004157810850897,0.0013834412224373953,0.00026127164594247213,0.00032048991073981627,0.0,3.90377388049531e-05,0.0013834412224373953,0.00026127164594247213,0.00032048991073981627,0.0,3.90377388049531e-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.00023883396189849367,7.938154134890816e-05,0.00023883396189849367,0.00016486363819231202,3.1135543316166294e-05,3.81925388889346e-05,0.0,4.652097640148936e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016486363819231202,3.1135543316166294e-05,3.81925388889346e-05,0.0,4.652097640148936e-06 +98034,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,20279.0,,5404.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004760759463942639,0.004191418690357135,0.0,0.008952097293516708,0.0029296670313558285,0.0004169990582843976,0.004661462422334487,0.00041473495635847884,0.0005291529644004454,0.0020638906270411023,0.0004169990582843976,0.0018649731006925238,0.00041473495635847884,0.0,0.0008657764043147265,0.002796489321641963,0.0005291529644004454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028004462095572853,0.0,0.0,0.0005673269909725381,0.0004274427191590191,0.0008473716119282666,0.00024594833408490835,4.969266411518071e-05,0.00022224386371001118,4.9422857135303837e-05,0.0,5.7845813766238754e-05,0.0001868440854853461,3.535472170414367e-05,0.0,0.0,0.0,0.0002773111812101257,3.94715509232596e-05,0.00044123637146094026,3.925723961322445e-05,5.008761474535791e-05 +98035,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,21650.0,,6844.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004213476577196134,0.004708057497319787,0.0,0.00892153407451592,0.004320195894067363,0.0004890584823554518,0.0014368378993267518,0.0003698598905275062,0.002305510188267833,0.0022441178930784696,0.0004890584823554518,0.0008131610313749982,0.0003698598905275062,0.0002972792798597078,0.002076078000988893,0.0006236768679517537,0.002008230908408125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031456253494777103,0.0,0.0,0.0005021134794435038,0.0004586118199607956,0.0008166760143912748,0.0002674280544653906,5.828034207093316e-05,9.690314098844995e-05,4.4075630453116634e-05,3.542631146561343e-05,0.00013871036178129528,4.167013182886461e-05,0.0001341772494641258,0.0,0.0,0.0,0.0003954701438886701,4.4768346882760454e-05,0.0001315279456590736,3.385692401736262e-05,0.00021104608870702707 +98036,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,3951.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009488155499373348,0.0,0.0,0.0009488155499373348,0.0005265959384981704,0.0002262865537507451,0.00015309079349145807,0.0,4.275955712322194e-05,0.0005265959384981704,0.0002262865537507451,0.00015309079349145807,0.0,4.275955712322194e-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.0001130641365770895,2.7054424679097202e-05,0.0001130641365770895,6.27509900267023e-05,2.69650869660841e-05,1.824282747595822e-05,0.0,5.095376447904051e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.27509900267023e-05,2.69650869660841e-05,1.824282747595822e-05,0.0,5.095376447904051e-06 +98037,50.0,the Greater Atlanta and Macon Area,G1301210009602,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,14038.0,,219.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003370809497319213,0.0001738502690000242,0.0,0.0035446597663192376,0.0016816829303413381,0.0007881984127355998,0.0009906653292494243,0.0,8.403038691913633e-05,0.001507832661341314,0.0007881984127355998,0.0009906653292494243,0.0,8.403038691913633e-05,0.0001738502690000242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1612945347968343e-05,0.0,0.0,0.000401696883430102,0.00013738568851922456,0.0004133098287780703,0.00017968730694411112,9.39290239250386e-05,0.00011805685714313874,0.0,1.0013839276793198e-05,1.1612945347968343e-05,0.0,0.0,0.0,0.0,0.0,0.0001960854157577233,9.19044908361335e-05,0.0001155122761002316,0.0,9.798002380851169e-06 +98038,50.0,the Greater Atlanta and Macon Area,G1301350050544,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,164196.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014479064478376855,0.0,0.0,0.014479064478376855,0.008979681311376388,0.0038750334426689405,0.0016243497243315296,0.0,0.0,0.008979681311376388,0.0038750334426689405,0.0016243497243315296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001725441560557014,0.0004850762609665672,0.001725441560557014,0.0010700909135631421,0.0004617800936320474,0.00019357055336182487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010700909135631421,0.0004617800936320474,0.00019357055336182487,0.0,0.0 +98039,50.0,the Greater Atlanta and Macon Area,G1301130140407,ComStock DOE Ref Pre-1980,gen2_t8_halogen,50001_100000,NaturalGas,199908.0,,14103.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010491498111280745,0.002398403719651962,0.0,0.012889901830932709,0.0068594867654671885,0.0035753628410764874,0.001230327509298884,0.0,0.0012247247150901472,0.005857579502342845,0.0035753628410764874,0.0008322277043344384,0.0,0.00022632806352697402,0.0010019072631243435,0.0003980998049644455,0.0009983966515631731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016024750254464031,0.0,0.0,0.001250250726468593,0.0004650180413392402,0.0014104982290132333,0.0006980359668823002,0.0004260687979954281,9.917490151503285e-05,0.0,2.6971060075831828e-05,6.69416643167607e-05,2.6598732726414447e-05,6.670710550146519e-05,0.0,0.0,0.0,0.0007506103662801194,0.0003912398264598106,0.0001346305655181834,0.0,0.00013401747075511978 +98040,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,24287.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.0052505758692661915,0.0,0.0,0.0052505758692661915,0.0031237634680599024,0.000965853207127632,0.0010400414522717908,0.0,0.00012083503473312813,0.0031237634680599024,0.000965853207127632,0.0010400414522717908,0.0,0.00012083503473312813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006256993323468215,0.00013250145189577228,0.0006256993323468215,0.00037225187580188873,0.00011509855716631248,0.0001239394036963846,0.0,1.4399639666037211e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00037225187580188873,0.00011509855716631248,0.0001239394036963846,0.0,1.4399639666037211e-05 +98041,35.0,Eastern Counties in South Carolina and Georgia,G1300510011106,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,30220.0,,2927.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006292423377025651,0.002013394746321249,0.0,0.008305818123346902,0.00250295526847381,0.00044502242015186653,0.0035341450117362663,0.00029039416264220913,0.0015333729803137643,0.0022195896629911304,0.00044502242015186653,0.0018040441509266803,0.00029039416264220913,0.0015333729803137643,0.00028336560548267923,0.0017301008608095853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013452377602200571,0.0,0.0,0.0007498533427547997,0.00033569920137798456,0.0008843771187768054,0.00026450329684024273,5.303227856060831e-05,0.00021498371231483347,3.460559160224063e-05,0.00018272846343687444,1.8932904893062534e-05,0.00011559566305627626,0.0,0.0,0.0,0.0,0.00026650672286430006,4.738457306435662e-05,0.00037630452971672875,3.09202475967091e-05,0.00016326868204930616 +98042,50.0,the Greater Atlanta and Macon Area,G1301390001603,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,10577.0,,2152.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010506586716018547,0.0006334027843782876,0.0,0.0016840307663738446,0.000828926266100952,0.0003537897813999177,0.0005013760980855704,0.0,0.0,0.00019552348172266444,0.0003537897813999177,0.0005013760980855704,0.0,0.0,0.0006334027843782876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.231931954891464e-05,0.0,0.0,0.00012520358295586715,8.039448681028383e-05,0.0001675229025047818,2.3299898554456832e-05,4.215997967913646e-05,5.974736190302327e-05,0.0,0.0,4.231931954891464e-05,0.0,0.0,0.0,0.0,0.0,8.245938069094375e-05,3.5194066664390956e-05,4.987556099029797e-05,0.0,0.0 +98043,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,75002.0,,31908.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.02008012235685318,0.028222075821449515,0.0,0.048302105961049925,0.03615100743213983,0.004718849041656107,0.003923014150223612,0.0006431231208401183,0.002866296650695806,0.01247275230658293,0.004718849041656107,0.001327744005428165,0.0006431231208401183,0.0009177460995986316,0.023678255125556897,0.0025952701447954467,0.0019485505510971747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018856325615284762,0.0,0.0,0.0023929041582917074,0.002437798916499876,0.004278536719820184,0.0014863505475392956,0.0005623348948506757,0.00015822434222626154,7.663957234935047e-05,0.00010936579065396269,0.0015820412767438817,0.00017340063579836528,0.00013019064898622956,0.0,0.0,0.0,0.003202208468542322,0.0004179894126416488,0.00034749540957160067,5.696699622369816e-05,0.0002538927698057049 +98044,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,71699.0,,25569.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.003694812285963383,0.004348282486460849,0.0,0.008043094772424235,0.002617320492105355,0.001089637091430765,0.003352492198026424,0.0,0.0009836449908616892,0.0019508362063255695,0.001089637091430765,0.00048026229978497036,0.0,0.00017407668842207844,0.0006664842857797849,0.0028722298982414535,0.0008095683024396109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002905267613091144,0.0,0.0,0.0004403034378458413,0.0003829250428327836,0.0007308301991549557,0.000232477274037028,0.000129849886876246,5.723190389574453e-05,0.0,2.074437303682282e-05,4.4530575374052936e-05,0.00019190557482627572,5.4090611108785766e-05,0.0,0.0,0.0,0.00023782100181832987,9.900911465910171e-05,0.00030462186634294897,0.0,8.937821633457505e-05 +98045,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,33043.0,,9110.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006657262869582065,0.006266891067344092,0.0,0.012924153936926159,0.0027208405404192367,0.0006832761638657266,0.007531601036233377,0.0003791834867595357,0.001609180989677265,0.0027208405404192367,0.0006832761638657266,0.002668484961577841,0.0003791834867595357,0.00020540599698871007,0.0,0.0048631160746555385,0.001403774992688555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041871813993906023,0.0,0.0,0.0007933330111949339,0.0006106109979219556,0.001212051151133994,0.0003242372520356184,8.142468566685127e-05,0.0003179981399817923,4.518655538161464e-05,2.4477831400216443e-05,0.0,0.00032492585162334476,9.379228831571558e-05,0.0,0.0,0.0,0.000255165477381455,6.40789072149385e-05,0.0007063275283163167,3.5560531378752996e-05,0.00015091198081049382 +98046,50.0,the Greater Atlanta and Macon Area,G1300890022800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,38757.0,,3147.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.003308462317317551,0.0009262736972772653,0.0,0.004234736014594817,0.002221344393434025,0.0008583269089341514,0.0011550647122266396,0.0,0.0,0.0012950706961567598,0.0008583269089341514,0.0011550647122266396,0.0,0.0,0.0009262736972772653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.188783671612423e-05,0.0,0.0,0.00039426279884155756,0.00017161484460327084,0.00045615063555768173,0.0001543309696144381,0.00010228509107269378,0.0001376467381544256,0.0,0.0,6.188783671612423e-05,0.0,0.0,0.0,0.0,0.0,0.0002392752826540414,9.245590839126608e-05,0.00012441944451237416,0.0,0.0 +98047,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,36417.0,,6310.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.003723784759344362,0.0018573042835306744,0.0,0.005581089042875038,0.0026599909362470912,0.0009338233404265002,0.001987244076595148,0.0,0.0,0.0008026866527164163,0.0009338233404265002,0.001987244076595148,0.0,0.0,0.0018573042835306744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012409447989891178,0.0,0.0,0.00044375507208514243,0.00025330488533057007,0.0005678495519840543,9.565436684924551e-05,0.00011128163159964987,0.00023681541642474457,0.0,0.0,0.00012409447989891178,0.0,0.0,0.0,0.0,0.0,0.0002706415629325726,9.501213139940834e-05,0.0002021927351290222,0.0,0.0 +98048,35.0,Eastern Counties in South Carolina and Georgia,G1300510003501,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,14498.0,,140.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003214575835025662,0.00011099289295815056,0.0,0.0033255687279838122,0.0016887130316091791,0.0009816502582118399,0.0005442125452046428,0.0,0.00011099289295815056,0.0016887130316091791,0.0009816502582118399,0.0005442125452046428,0.0,0.0,0.0,0.0,0.00011099289295815056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.41740949661895e-06,0.0,0.0,0.0003830730094937804,0.00011956438509937507,0.00039049041899039935,0.00020123973313721172,0.0001169808204822003,6.485245587436835e-05,0.0,0.0,0.0,0.0,7.41740949661895e-06,0.0,0.0,0.0,0.000198289770323708,0.00011526600470036684,6.390178708639428e-05,0.0,1.3032856879930263e-05 +98049,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,14009.0,,4006.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.004798333590059659,0.003178019308432887,0.0,0.007976270191418808,0.005839202113068842,0.0012554933793626868,0.0007570178459358809,0.0,0.0001246395601251363,0.0026611828046359557,0.0012554933793626868,0.0007570178459358809,0.0,0.0001246395601251363,0.003178019308432887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002123344159107912,0.0,0.0,0.0005718048419940796,0.00034924051727676055,0.0007841392579048708,0.00031712618236351186,0.00014961385654767872,9.021183326619917e-05,0.0,1.4852969816689845e-05,0.0002123344159107912,0.0,0.0,0.0,0.0,0.0,0.0005740462022743859,0.00012342631620692595,7.442167801330653e-05,0.0,1.2253192261122361e-05 +98050,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,16166.0,,404.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0038863226879363166,0.00032057261781355556,0.0,0.004206895305749872,0.0020581655300026653,0.0011572373757603894,0.0009169733265477016,0.0,7.451907343911598e-05,0.0018121119856282257,0.0011572373757603894,0.0009169733265477016,0.0,0.0,0.00024605354437443955,0.0,7.451907343911598e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.141902450759075e-05,0.0,0.0,0.0004631275756468746,0.00018062887527664633,0.00048454660015446533,0.00021594682122247808,0.00013790634059995037,0.00010927441382444614,0.0,0.0,1.6440040740475357e-05,0.0,4.978983767115393e-06,0.0,0.0,0.0,0.0002370577439269413,0.0001332896103285418,0.00010561620280964431,0.0,8.583043089337918e-06 +98051,50.0,the Greater Atlanta and Macon Area,G1300890021102,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,56384.0,,4677.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004971975986363348,0.00136265079157586,0.0,0.006334626777939206,0.00435451108339329,0.0014652528104765856,0.0005148932576687689,0.0,0.0,0.0029918602918174294,0.0014652528104765856,0.0005148932576687689,0.0,0.0,0.00136265079157586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.10438396477572e-05,0.0,0.0,0.0005925022981003818,0.0002340627782564378,0.0006835461377481389,0.0003565351287614927,0.00017461179617249572,6.135899273887662e-05,0.0,0.0,9.10438396477572e-05,0.0,0.0,0.0,0.0,0.0,0.0004698791794965498,0.00015811000940322295,5.556022635110043e-05,0.0,0.0 +98052,85.0,Rural Climate Zone 3A,G1302770960600,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,194177.0,,13263.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.009995296216579148,0.0022555679280520167,0.0,0.012250881874992585,0.005933678213557712,0.0033438397816534385,0.0016969728915132538,0.0,0.0012763909882681811,0.005743981076724566,0.0033438397816534385,0.0006616793578349507,0.0,0.000245796000366192,0.00018969713683314492,0.0010352935336783032,0.001030594987901989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015070439905285184,0.0,0.0,0.0011911208992143815,0.00044723259701908146,0.0013418252982672332,0.0006844995642880635,0.0003984791807315745,7.885110101976537e-05,0.0,2.929105317497808e-05,1.2674498804908715e-05,6.917250768458966e-05,6.88585772066664e-05,0.0,0.0,0.0,0.0006499090938899188,0.0003662470063917485,0.00018586753015342083,0.0,0.00013980166783214513 +98053,50.0,the Greater Atlanta and Macon Area,G1300670031311,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,NaturalGas,108352.0,,5395.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010878421985921516,0.0015880643674809282,0.0,0.012466486353402443,0.005679602679090664,0.002274253274691265,0.004512661089226813,0.0,0.0,0.004091538311609735,0.002274253274691265,0.004512661089226813,0.0,0.0,0.0015880643674809282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010610465489782558,0.0,0.0,0.0012963621360280726,0.0004950661852701592,0.0014024667909258981,0.0004875813194361733,0.00027101870444657685,0.0005377657693709406,0.0,0.0,0.00010610465489782558,0.0,0.0,0.0,0.0,0.0,0.0006389494134331143,0.0002558511357162361,0.0005076696943254407,0.0,0.0 +98054,50.0,the Greater Atlanta and Macon Area,G1301210011618,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,122525.0,,2249.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.005958500719545785,0.0003824438958305389,0.0,0.006340944615376324,0.0032962160308791766,0.0011922604233300309,0.0013507343937024627,0.0,0.0005017160371032343,0.0032962160308791766,0.0011922604233300309,0.0009682904978719237,0.0,0.0005017160371032343,0.0,0.0003824438958305389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5552279403494514e-05,0.0,0.0,0.000710063042638853,0.0002578957857692013,0.0007356153220423474,0.0003928037092289633,0.00014207937594612612,0.00011538931174781153,0.0,5.978853282296608e-05,0.0,2.555227940349451e-05,0.0,0.0,0.0,0.0,0.00038239523669651693,0.0001383145711664941,0.00015669919488141472,0.0,5.8204262392158166e-05 +98055,50.0,the Greater Atlanta and Macon Area,G1301210007704,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,126615.0,,6473.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.011165122538121505,0.0018856538002945081,0.0,0.013050776338416016,0.009958804662851753,0.0025780199994780615,0.0005139516760861985,0.0,0.0,0.008073150862557246,0.0025780199994780615,0.0005139516760861985,0.0,0.0,0.0018856538002945081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012598768845344924,0.0,0.0,0.0013305265690917668,0.0004972073005961133,0.0014565142575452162,0.0009620621432718964,0.00030721777510671285,6.124665071315772e-05,0.0,0.0,0.00012598768845344924,0.0,0.0,0.0,0.0,0.0,0.0011114389369201204,0.00028771643832586327,5.7358882299232205e-05,0.0,0.0 +98056,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,23201.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005243049525555915,0.0,0.0,0.005243049525555915,0.0030761241935860616,0.0009583268634173552,0.001048642987940679,0.0,0.00015995548061182053,0.0030761241935860616,0.0009583268634173552,0.001048642987940679,0.0,0.00015995548061182053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006248056875724631,0.0001661641724408872,0.0006248056875724631,0.00036657671884723274,0.00011420225422210862,0.0001249650799414961,0.0,1.906163456162579e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00036657671884723274,0.00011420225422210862,0.0001249650799414961,0.0,1.906163456162579e-05 +98057,85.0,Rural Climate Zone 3A,G1302850960901,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,131965.0,,7234.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.011757894033594783,0.0021294904017850006,0.0,0.013887384435379783,0.006688370038096154,0.0027940124469491593,0.004405001950334471,0.0,0.0,0.004558879636311152,0.0027940124469491593,0.004405001950334471,0.0,0.0,0.0021294904017850006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001422809282565511,0.0,0.0,0.0014011650478278205,0.0005303701865534827,0.0015434459760843716,0.0005432726970835138,0.00033295695408339516,0.0005249353966609115,0.0,0.0,0.0001422809282565511,0.0,0.0,0.0,0.0,0.0,0.0007433464429459695,0.000310526959805833,0.0004895725733325692,0.0,0.0 +98058,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,29728.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.002453700856979343,0.0,0.0,0.002453700856979343,0.00146127386895024,0.0008328744701825927,0.00015955251784651034,0.0,0.0,0.00146127386895024,0.0008328744701825927,0.00015955251784651034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029240375151475423,8.851650397561644e-05,0.00029240375151475423,0.0001741377560578187,9.925236767535744e-05,1.9013627781578088e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001741377560578187,9.925236767535744e-05,1.9013627781578088e-05,0.0,0.0 +98059,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000601,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,22563.0,,4014.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005208404759010009,0.0031131401481383184,0.0,0.008321464046365258,0.002025886058998894,0.0007392292788124807,0.004500226020895843,0.00031349725595668205,0.0007427062924844273,0.002025886058998894,0.0007392292788124807,0.0021297921652419526,0.00031349725595668205,0.0,0.0,0.0023704338556538905,0.0007427062924844273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020799969223988997,0.0,0.0,0.0006206709497306305,0.0003830592139448943,0.0008286706419705206,0.00024141914510574455,8.809187453327679e-05,0.000253801343615399,3.7358586476210244e-05,0.0,0.0,0.00015837690851980193,4.962278372008803e-05,0.0,0.0,0.0,0.00020174242077066032,7.361416183784532e-05,0.00044814291871838143,3.121878204389918e-05,7.396041090358884e-05 +98060,50.0,the Greater Atlanta and Macon Area,G1302230120101,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,103803.0,,21603.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005343274908631373,0.0036737486165963613,0.0,0.009017005794866315,0.003857772037775089,0.001192703682365532,0.0032233797061655997,0.0,0.0007431858292829332,0.003265719809236686,0.001192703682365532,0.0007434695150656542,0.0,0.0001413996323249211,0.0005920522285384032,0.0024799101910999454,0.0006017861969580121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002454578539136457,0.0,0.0,0.0006367471266230518,0.00039004956972124035,0.0008822049805366973,0.0003891691407320961,0.0001421320548999249,8.859773931623262e-05,0.0,1.6850304565652845e-05,3.955737982869029e-05,0.0001656927288535953,4.020774523136011e-05,0.0,0.0,0.0,0.00037743634449453574,0.00011669163276865026,0.0003153687261196185,0.0,7.271174655682029e-05 +98061,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970500,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,36148.0,,3467.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.003938019653562248,0.000589623169023856,0.0,0.004527660552947524,0.0020551261921983206,0.0011552039679621204,0.0007443383027752368,0.0,0.0005729743596504264,0.0014655030231744645,0.0011552039679621204,0.0007443383027752368,0.0,0.0005729743596504264,0.000589623169023856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9395547757057944e-05,0.0,0.0,0.00046928677416990236,0.0001438314858960598,0.0005086823219269602,0.00017464137987723555,0.00013766359523950647,8.870146716624798e-05,0.0,6.828033188691239e-05,3.9395547757057944e-05,0.0,0.0,0.0,0.0,0.0,0.00023089327282271432,0.00012978707874636465,8.362635222474652e-05,0.0,6.437362612836541e-05 +98062,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock 90.1-2004,gen4_led,100001_200000,NaturalGas,113450.0,,18302.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009634480173856728,0.005387376247923937,0.0,0.015021856421780666,0.007992893132992606,0.0024624726301150763,0.0045664599690666855,0.0,0.0,0.0026055168850686685,0.0024624726301150763,0.0045664599690666855,0.0,0.0,0.005387376247923937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003599538484259557,0.0,0.0,0.001148120871731398,0.0006851284869136122,0.0015080747201573535,0.00031049400314437785,0.0002934477181627415,0.0005441754932080201,0.0,0.0,0.00035995384842595567,0.0,0.0,0.0,0.0,0.0,0.0008024227989097375,0.000247212635927706,0.000458436204327912,0.0,0.0 +98063,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,59104.0,,3883.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004945216845258687,0.0011312950846585042,0.0,0.0060765119299171924,0.004008160929004607,0.0012930952488634081,0.0007752253784497397,0.0,0.0,0.0028768658443461014,0.0012930952488634081,0.0007752253784497397,0.0,0.0,0.0011312950846585042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.558601199658687e-05,0.0,0.0,0.0005893133790452736,0.00022832399190439657,0.0006648993910418606,0.00034283138330263636,0.00015409603954287697,9.238233662774175e-05,0.0,0.0,7.558601199658687e-05,0.0,0.0,0.0,0.0,0.0,0.0004385778867267457,0.00014149206871385503,8.482611208474202e-05,0.0,0.0 +98064,50.0,the Greater Atlanta and Macon Area,G1301210000500,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,124302.0,,2752.0,,9.325022323477118,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.03134738610566693,0.002333165004334697,0.0,0.03368055111000163,0.02053093284290156,0.003357537396191623,0.009284048730408565,0.0,0.0005079437563418253,0.018197767838566865,0.003357537396191623,0.009284048730408565,0.0,0.0005079437563418253,0.002333165004334697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015588789303843973,0.0,0.0,0.0037356094907267166,0.0012812194564291207,0.003891497383765156,0.002168594026265639,0.0004001114644903644,0.0011063627580550927,0.0,6.053070934047921e-05,0.00015588789303843973,0.0,0.0,0.0,0.0,0.0,0.002372172331250362,0.00038793450708392356,0.0010726918103903735,0.0,5.868852301282797e-05 +98065,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,177901.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013877059737520615,0.0,0.0,0.013877059737520615,0.00915244634497832,0.0036711050960438747,0.0010535082964984218,0.0,0.0,0.00915244634497832,0.0036711050960438747,0.0010535082964984218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016537035584857007,0.00031856376502132055,0.0016537035584857007,0.001090680113498186,0.00043747880860441003,0.00012554463638310477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001090680113498186,0.00043747880860441003,0.00012554463638310477,0.0,0.0 +98066,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,117149.0,,5883.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010437841997911694,0.0017316610353478794,0.0,0.012169503033259572,0.003426709370382599,0.00347667204943526,0.0052660909238354155,0.0,0.0,0.00169504833503472,0.00347667204943526,0.0052660909238354155,0.0,0.0,0.0017316610353478794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011570041580068276,0.0,0.0,0.0012438568468985155,0.0004744396441962376,0.0013595572626991985,0.00020199553487959424,0.00041430808532797716,0.000627549569471671,0.0,0.0,0.00011570041580068276,0.0,0.0,0.0,0.0,0.0,0.0003828264473027713,0.0003884081972710573,0.0005883191895320233,0.0,0.0 +98067,50.0,the Greater Atlanta and Macon Area,G1300970080303,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,42112.0,,9171.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.003902035572569101,0.002671692180144088,0.0,0.006573697379113752,0.004885441601565192,0.0012875368801662996,0.00040071889738225986,0.0,0.0,0.0022137494214211034,0.0012875368801662996,0.00040071889738225986,0.0,0.0,0.002671692180144088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001785060410380474,0.0,0.0,0.0004649965040509147,0.00028296278922510464,0.0006435025450889621,0.0002638073699384038,0.00015343277552945693,4.77527390318501e-05,0.0,0.0,0.0001785060410380474,0.0,0.0,0.0,0.0,0.0,0.0004782383372984738,0.00012603763323747896,3.9226574553009214e-05,0.0,0.0 +98068,50.0,the Greater Atlanta and Macon Area,G1301530020200,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,35131.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008435459864819443,0.0,0.0,0.008435459864819443,0.004466347396070079,0.0016129533520639733,0.002200587110981753,0.0,0.0001556547127773766,0.004466347396070079,0.0016129533520639733,0.002200587110981753,0.0,0.0001556547127773766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010052388974871546,0.0003183760632624479,0.0010052388974871546,0.0005322467540797447,0.00019221281060077737,0.00026224009084477925,0.0,1.8549098018185983e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005322467540797447,0.00019221281060077737,0.00026224009084477925,0.0,1.8549098018185983e-05 +98069,46.0,the Tallahassee-Valdosta Area,G1301850010402,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,173224.0,,6461.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.008140257153006123,0.0010987327668392519,0.0,0.009238989919845375,0.004224879170977282,0.001100239847559957,0.002111366898622728,0.0,0.0018025040026854082,0.004224879170977282,0.001100239847559957,0.0010126341317834757,0.0,0.0018025040026854082,0.0,0.0010987327668392519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.341076745356117e-05,0.0,0.0,0.0009700590066214518,0.000285058255516533,0.0010434697740750128,0.0005034708381639256,0.00013111349598767972,0.00012067368898611449,0.0,0.00021480098348373178,0.0,7.341076745356117e-05,0.0,0.0,0.0,0.0,0.0004771662002319485,0.00012426326201478625,0.00023846194874214028,0.0,0.00020357836308613786 +98070,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,81835.0,,18515.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008034078584644123,0.005450105803196441,0.0,0.013484184387840565,0.007112561776343,0.00223570712918135,0.0041359154823162134,0.0,0.0,0.0016624559731465596,0.00223570712918135,0.0041359154823162134,0.0,0.0,0.005450105803196441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003641445725386738,0.0,0.0,0.0009574059448750472,0.0006230063676161427,0.0013215505174137211,0.00019811173304001874,0.0002664249887434433,0.0004928692230915852,0.0,0.0,0.0003641445725386738,0.0,0.0,0.0,0.0,0.0,0.0006970840375142967,0.00021911595305827206,0.00040535052684115215,0.0,0.0 +98071,35.0,Eastern Counties in South Carolina and Georgia,G1301270000600,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,24935.0,,2190.0,,9.525004485617233,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,71437.53364212924,0.0,0.0,0.006493000781986194,0.0018965040450936994,0.0,0.008389504827079895,0.004608865045274359,0.0009471235272565337,0.001085341630414455,0.0006220266040222588,0.0011262382997355121,0.0035237039741063546,0.0009471235272565337,0.0007889536273658229,0.0006220266040222588,0.0006112833288584492,0.0010851610711680043,0.00029638800304863217,0.000514954970877063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001267115156670864,0.0,0.0,0.0007737618998159005,0.00037418312917698025,0.0009004734154829869,0.00041991491652944773,0.00011286739743563926,9.401850978839496e-05,7.412604788214226e-05,7.284578667779177e-05,7.250309031838808e-05,1.9802632738375053e-05,3.440579261032327e-05,0.0,0.0,0.0,0.000494684791815405,0.00010165791367329561,0.00011649332172150985,6.676418122285833e-05,0.00012088289706170649 +98072,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,71379.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,215998.51729091106,0.0,0.0,0.02594907710262872,0.0,0.0,0.02594907710262872,0.01478566360068447,0.0031933058942186466,0.007878662839674994,0.0,9.14447680506092e-05,0.01478566360068447,0.0031933058942186466,0.007878662839674994,0.0,9.14447680506092e-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.0030923016021794794,0.0010718211248006173,0.0030923016021794794,0.0017619790893084076,0.0003805401207097713,0.0009388850950576137,0.0,1.089729710368712e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0017619790893084076,0.0003805401207097713,0.0009388850950576137,0.0,1.089729710368712e-05 +98073,50.0,the Greater Atlanta and Macon Area,G1300890023214,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,5072.0,,801.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009013416896109724,0.0006355211546128382,0.0,0.0015368628442238104,0.0009257402763640679,0.00034736970970509123,0.00023323394794484695,0.0,3.043620313606513e-05,0.0003207380319610342,0.00034736970970509123,0.00023323394794484695,0.0,0.0,0.0006050022444030337,0.0,3.043620313606513e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.245926747188703e-05,0.0,0.0,0.00010741153268426427,7.479360846470577e-05,0.00014987080015615133,3.822186857676425e-05,4.139552553440172e-05,2.7794138573098294e-05,0.0,0.0,4.042029432025684e-05,0.0,2.0334474791325385e-06,0.0,0.0,0.0,9.027574352318382e-05,3.387457543083822e-05,2.2744357789277085e-05,0.0,2.9680580377496336e-06 +98074,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,34613.0,,1980.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029677463082004546,0.0005828263131996735,0.0,0.00355054193179383,0.0010036115051474763,0.001391896404026012,0.0011550647122266396,0.0,0.0,0.00042078519194780283,0.001391896404026012,0.0011550647122266396,0.0,0.0,0.0005828263131996735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8940045862984685e-05,0.0,0.0,0.00035365953040983404,0.000132662485587822,0.0003925995762728187,5.014400758463356e-05,0.00016586910655630297,0.00013764641626889745,0.0,0.0,3.8940045862984685e-05,0.0,0.0,0.0,0.0,0.0,0.00011097389053066518,0.0001539083184859577,0.00012772076074560104,0.0,0.0 +98075,50.0,the Greater Atlanta and Macon Area,G1301210000200,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,9518.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0019368342528271014,0.0,0.0,0.0019368342528271014,0.0011490493754601982,0.00039376837807284263,0.00032785084030261463,0.0,6.616565899144594e-05,0.0011490493754601982,0.00039376837807284263,0.00032785084030261463,0.0,6.616565899144594e-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.00023080873113097555,6.29219431560895e-05,0.00023080873113097555,0.0001369299556581537,4.692460367728134e-05,3.906934025976544e-05,0.0,7.884831535775062e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001369299556581537,4.692460367728134e-05,3.906934025976544e-05,0.0,7.884831535775062e-06 +98076,85.0,Rural Climate Zone 3A,G1301750951000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,213155.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02321711681870032,0.0,0.0,0.023217116818700326,0.007290070459168915,0.006150964342217081,0.009776082017314329,0.0,0.0,0.007290070459168915,0.006150964342217081,0.009776082017314329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027667379440711667,0.0008517312284991147,0.0027667379440711667,0.0008687432945200659,0.0007329982689553184,0.001164996380595783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008687432945200657,0.0007329982689553182,0.0011649963805957825,0.0,0.0 +98077,50.0,the Greater Atlanta and Macon Area,G1301350050537,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,64072.0,,4232.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005507648815004634,0.001245660430017458,0.0,0.006753309245022093,0.002253353652802529,0.0015978236622835977,0.0029021319299359664,0.0,0.0,0.001007693222785071,0.0015978236622835977,0.0029021319299359664,0.0,0.0,0.001245660430017458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.322740624085594e-05,0.0,0.0,0.0006563356995946807,0.00028308578084292296,0.0007395631058355366,0.00012008482359144419,0.0001904095098359966,0.00034584136616724003,0.0,0.0,8.322740624085594e-05,0.0,0.0,0.0,0.0,0.0,0.00024676749805895167,0.00017497961182911937,0.0003178159959474656,0.0,0.0 +98078,50.0,the Greater Atlanta and Macon Area,G1301350050315,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,407421.0,,,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,1459415.2837631335,0.0,0.0,0.09810560101449992,0.0,0.0,0.09810560101449992,0.08235138998523633,0.007758237475807162,0.0026904383496573633,0.0006476417662260038,0.004657985654825812,0.08235138998523633,0.007758237475807162,0.0026904383496573633,0.0006476417662260038,0.004657985654825812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011691052863699406,0.003580357864514227,0.011691052863699406,0.009813654304755002,0.0009245340074456066,0.0003206142834568593,7.717820437763574e-05,0.0005550830530142046,0.0,0.0,0.0,0.0,0.0,0.0,0.009813654304755002,0.0009245340074456066,0.0003206142834568593,7.717820437763574e-05,0.0005550830530142046 +98079,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,89594.0,,27687.0,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.023986721836083167,0.02448939808094974,0.0,0.0484761199170329,0.03725862885519842,0.005681597160608047,0.0020973891970730786,0.0006441375106206232,0.0027942749762799573,0.014664756405001287,0.005681597160608047,0.0020973891970730786,0.0006441375106206232,0.0008987493455273578,0.022593872450197137,0.0,0.0018955256307525998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00163623816984628,0.0,0.0,0.002858447083984123,0.0023564034555318553,0.004494685253830402,0.00174756811162731,0.0006770639584306154,0.00024994144991228706,7.676050948106423e-05,0.00010710206519720144,0.0015095902473980746,0.0,0.00012664792244820527,0.0,0.0,0.0,0.003454604245967267,0.0005267952761008172,0.0001944690357182482,5.9724156458492944e-05,0.00025908398924105866 +98080,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,212332.0,,5868.0,,9.729435225087556,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1459415.2837631335,0.0,0.0,0.05684714103751781,0.005190632506843667,0.0,0.06203777354436148,0.0355100053081135,0.012396396421286742,0.00888273465612325,0.0006616587886475263,0.004586978370190467,0.0355100053081135,0.012396396421286742,0.003692102149279584,0.0006616587886475263,0.004586978370190467,0.0,0.005190632506843667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003468076855746458,0.0,0.0,0.006774367118754993,0.0019787544041148723,0.007121174804329638,0.00423166069490349,0.0014772552985908927,0.00043998088457354665,7.884863618191164e-05,0.0005466216045051522,0.0,0.0003468076855746458,0.0,0.0,0.0,0.0,0.004076112675464202,0.0014229541264343553,0.001019628890799866,7.595030616968814e-05,0.0005265288054615272 +98081,50.0,the Greater Atlanta and Macon Area,G1300210010400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,46212.0,,623.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,56080.226740887294,0.0,0.0,0.0040178501072252485,0.0001815733774388804,0.0,0.004199423484664129,0.002623003300245372,0.0014061457859707205,0.00017027439844803673,0.0,0.0,0.0024414299228064915,0.0014061457859707205,0.00017027439844803673,0.0,0.0,0.0001815733774388804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.213132956187445e-05,0.0,0.0,0.0004788007498647851,0.00017672678357246455,0.0004909320794266595,0.0002909412861569797,0.000167568136882774,2.0291326825031454e-05,0.0,0.0,1.213132956187445e-05,0.0,0.0,0.0,0.0,0.0,0.00030664124950366677,0.00016438496312758808,1.9905866795404665e-05,0.0,0.0 +98082,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6879.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.0008785248999823302,0.0,0.0,0.0008785248999823302,0.0005177684657862553,0.00019555531889986992,0.00015351802254227645,0.0,1.1628498862555079e-05,0.0005177684657862553,0.00019555531889986992,0.00015351802254227645,0.0,1.1628498862555079e-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.00010468999314486309,3.554617718739138e-05,0.00010468999314486309,6.170021718778782e-05,2.3303477221283842e-05,1.8294075361878885e-05,0.0,1.3857176572120207e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.170021718778782e-05,2.3303477221283842e-05,1.8294075361878885e-05,0.0,1.3857176572120207e-06 +98083,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13650.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003001439705999466,0.0,0.0,0.0030014397059994666,0.001228117337954976,0.0007221154608178932,0.0009641163585791067,0.0,8.70078415737514e-05,0.001228117337954976,0.0007221154608178932,0.0009641163585791067,0.0,8.70078415737514e-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.00035767284555674844,0.00011261830733096174,0.00035767284555674844,0.00014635117342717436,8.605240051132465e-05,0.00011489094407977451,0.0,1.0368471576899954e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00014635117342717436,8.605240051132464e-05,0.0001148909440797745,0.0,1.0368471576899952e-05 +98084,50.0,the Greater Atlanta and Macon Area,G1301350050426,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,5107.0,,44.0,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0008802513858074489,3.515050633920565e-05,0.0,0.0009154018921466547,0.0005336260397660115,0.0002116474016988877,0.0001348952372688104,0.0,3.515050633920565e-05,0.0005336260397660115,0.0002116474016988877,0.0001348952372688104,0.0,0.0,0.0,0.0,3.515050633920565e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3490008220943058e-06,0.0,0.0,0.00010489753870386694,3.5477186896314376e-05,0.00010724653952596124,6.359099123530485e-05,2.522153542640191e-05,1.6075156029879448e-05,0.0,0.0,0.0,0.0,2.3490008220943058e-06,0.0,0.0,0.0,6.251849232214509e-05,2.4796159617540188e-05,1.580403920914734e-05,0.0,4.118158592205775e-06 +98085,50.0,the Greater Atlanta and Macon Area,G1301210007100,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,41238.0,,4341.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0068266880936799,0.0012779458958426413,0.0,0.00810463398952254,0.003302017499995033,0.0025731700400308897,0.002229415759890321,0.0,0.0,0.002024071604152392,0.0025731700400308897,0.002229415759890321,0.0,0.0,0.0012779458958426413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.538450685150252e-05,0.0,0.0,0.0008135233187182235,0.00032534432565232513,0.0008989078255697261,0.00024120472857955974,0.0003066397353835789,0.0002656751975336002,0.0,0.0,8.538450685150252e-05,0.0,0.0,0.0,0.0,0.0,0.00036623607861267294,0.00028539755015409373,0.0002472707929321246,0.0,0.0 +98086,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,32772.0,,2156.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002927143959068594,0.0006347531270553866,0.0,0.0035618970861239804,0.001525396191421019,0.0008007225179133634,0.0012358090663958955,0.0,0.0,0.0008906430643656325,0.0008007225179133634,0.0012358090663958955,0.0,0.0,0.0006347531270553866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2410158678216206e-05,0.0,0.0,0.00034882380487991327,0.00015057805886487598,0.0003912339635581294,0.00010613673493557242,9.542102447207264e-05,0.0001472697027113342,0.0,0.0,4.2410158678216206e-05,0.0,0.0,0.0,0.0,0.0,0.00016754745674461288,8.795027953331111e-05,0.00013573959818509722,0.0,0.0 +98087,85.0,Rural Climate Zone 3A,G1303030950300,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,NaturalGas,26316.0,,2001.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006093911194393457,0.001552284452566527,0.0,0.007646195646959984,0.0027595359437796465,0.00043058366983991027,0.0032852118945081456,0.00042007176804100167,0.0007507115100082115,0.0027595359437796465,0.00043058366983991027,0.00248363895194983,0.00042007176804100167,0.0,0.0,0.0008015729425583154,0.0007507115100082115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010371300377754147,0.0,0.0,0.0007261989667120211,0.00029620832249397175,0.0008299119704895626,0.00032884826953519827,5.13117776328107e-05,0.0002959701877918837,5.005909573754959e-05,0.0,0.0,5.355560798284985e-05,5.015739579469162e-05,0.0,0.0,0.0,0.00029951782801287334,4.6735207729028354e-05,0.00035657427598403084,4.559425430090184e-05,8.148162789789656e-05 +98088,85.0,Rural Climate Zone 3A,G1301750950900,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,39754.0,,9193.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0024696797725605748,0.001563410078935996,0.0,0.00403308985149657,0.0018777871172749525,0.0007368915509788145,0.0011047078986378097,0.0,0.00031372101496641427,0.0015022403320368138,0.0007368915509788145,0.0001512754436358905,0.0,7.929017627047613e-05,0.00037554678523813844,0.0009534324550019192,0.00023443083869593813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001044578019378768,0.0,0.0,0.00029430769140980956,0.0001996526833855352,0.0003987654933476863,0.00017901951863421854,8.781415857939922e-05,1.802724672167258e-05,0.0,9.44888037263476e-06,2.509181195602219e-05,6.370270979288687e-05,1.5663280188967723e-05,0.0,0.0,0.0,0.00018566328393209932,7.285900728464308e-05,0.00010922627722809777,0.0,3.101867796478609e-05 +98089,50.0,the Greater Atlanta and Macon Area,G1300670030223,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,244204.0,,25103.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012570453909227617,0.004269063231636054,0.0,0.016839517140863673,0.008998371185013837,0.0032799927501798282,0.0018714041871637332,0.0,0.00268978447922911,0.0070207798633054085,0.0032799927501798282,0.0018714041871637332,0.0,0.0003983125693014863,0.0019775913217084293,0.0,0.0022914719099276244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028523368143445793,0.0,0.0,0.0014979967227383491,0.0006498910892859432,0.0017832304041728072,0.0008366527813747907,0.00039087040339634235,0.0002230116238867262,0.0,4.7466139866367006e-05,0.00013213101386824793,0.0,0.00015310266756620998,0.0,0.0,0.0,0.00095288771945905,0.00034733672875890235,0.000198173428438074,0.0,0.0002848362826505288 +98090,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,154660.0,,24274.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.04053681474288107,0.02101926299780528,0.0,0.06155607774068634,0.021954559894419304,0.005805882569618499,0.023768638643508307,0.0006603051642697825,0.009366601189247226,0.021954559894419304,0.005805882569618499,0.007310121651798307,0.0006603051642697825,0.004805945462775172,0.0,0.01645851699171,0.004560655726472052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014043815612093551,0.0,0.0,0.004830694849239733,0.0028674452341489872,0.006235076410449088,0.0026162830027961605,0.000691875945415081,0.000871133246029388,7.868730624733173e-05,0.0005727153487517716,0.0,0.0010996597640184544,0.0003047157652459067,0.0,0.0,0.0,0.0022237992335403006,0.0005880836268380184,0.002407549076452493,6.688296760524441e-05,0.0009487523615000975 +98091,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000900,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,45297.0,,17977.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.013463488118963555,0.01236638772233775,0.0,0.025829875841301305,0.007373386780172943,0.0006608995329088559,0.013352178723947325,0.00036770829139703786,0.004075702512875145,0.007373386780172943,0.0006608995329088559,0.000985791001609574,0.00036770829139703786,0.004075702512875145,0.0,0.01236638772233775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008262504246230844,0.0,0.0,0.0016044197042924858,0.001307550932591446,0.0024306701289155703,0.0008786732630466266,7.875821063511267e-05,0.0001174749435897584,4.381913683409904e-05,0.000485694150186889,0.0,0.0008262504246230845,0.0,0.0,0.0,0.0,0.0006938581937296841,6.219266258675432e-05,0.0012564807581593748,3.460247217387839e-05,0.0003835360422658789 +98092,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,87638.0,,11624.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.007973458341442018,0.003493907433541555,0.0,0.011467334436961369,0.003286167684351513,0.0019572161767482383,0.004195816454865821,0.0,0.0020281654590180004,0.0030295719585455,0.0019572161767482383,0.0029866702061482806,0.0,0.0,0.0002565957258060135,0.001209146248717541,0.0020281654590180004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023344180225201133,0.0,0.0,0.0009501798162168252,0.000587036899580639,0.0011836216184688364,0.00036102754959221395,0.0002332372262426477,0.00035591504038196367,0.0,0.0,1.714417734919831e-05,8.078785281405319e-05,0.0001355097720887598,0.0,0.0,0.0,0.0003391877279322458,0.00020201759977883708,0.0004330787673811339,0.0,0.00020934075798713562 +98093,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,19206.0,,307.0,1185.0,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.002084393959971649,0.00011399786273746757,0.00014247795420994843,0.0023408697769190657,0.00104368879430105,0.0003564080018556175,0.000876644339419601,0.0,6.416738976656909e-05,0.0009012108400911014,0.0003564080018556175,0.0007626464766821335,0.0,6.416738976656909e-05,0.0,0.00011399786273746757,0.0,0.0,0.0,0.0,0.0,0.00014247795420994843,0.0,0.0,7.617625731190796e-06,0.0,1.1491435038371035e-05,0.00024839251678703396,7.720132826196174e-05,0.0002675015775565958,0.00010739525877777475,4.2472335980650625e-05,9.088285679182056e-05,0.0,7.646682798864689e-06,0.0,7.617625731190796e-06,0.0,1.1491435038371035e-05,0.0,0.0,0.0001192669501338626,4.072832401452639e-05,0.00010017803897636932,0.0,7.332692386176961e-06 +98094,50.0,the Greater Atlanta and Macon Area,G1300890021504,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,17793.0,,4390.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004177106331754006,0.0034047241318834287,0.0,0.007581830463637435,0.003233784436476562,0.000646886264548222,0.002498193892902164,0.0004141689308769991,0.0007888777996165566,0.0019092848098140771,0.000646886264548222,0.001206766326514708,0.0004141689308769991,0.0,0.0013244996266624845,0.0012914275663874564,0.0007888777996165566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002274832011557646,0.0,0.0,0.000497781326089506,0.0003574393333691866,0.0007252645272452707,0.00022752744340906377,7.708874924921693e-05,0.00014380906172441416,4.9356071706811136e-05,0.0,8.84951036653072e-05,8.628542738941519e-05,5.2708072732523615e-05,0.0,0.0,0.0,0.000309338114559883,6.187999891175895e-05,0.00023897282079734904,3.961866930325366e-05,7.546265867289002e-05 +98095,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,11090.0,,195.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002662919653184481,0.0001547449349662442,0.0,0.0028176645881507253,0.0018530519871291827,0.00044554300623364914,0.0003643246598216492,0.0,0.0001547449349662442,0.0018530519871291827,0.00044554300623364914,0.0003643246598216492,0.0,0.0,0.0,0.0,0.0001547449349662442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0339903722808819e-05,0.0,0.0,0.00031733337776524063,0.000104818145391869,0.0003276732814880495,0.00022082350308507673,5.309422946303543e-05,4.341564521712846e-05,0.0,0.0,0.0,0.0,1.0339903722808819e-05,0.0,0.0,0.0,0.00021549606292531844,5.1813313589765266e-05,4.236822839482383e-05,0.0,1.7995676578141968e-05 +98096,50.0,the Greater Atlanta and Macon Area,G1301210011621,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,Electricity,285893.0,,,,9.325022323477118,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,1398753.3485215676,0.0,0.0,0.07335973502719305,0.0,0.0,0.07335973502719305,0.03500463418182291,0.007697376325006014,0.02985988072560204,0.0,0.0007979321789201321,0.03500463418182291,0.007697376325006014,0.02985988072560204,0.0,0.0007979321789201321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008742143297261563,0.002572434184088059,0.008742143297261563,0.004171437205604438,0.0009172820324556445,0.0035583464968294847,0.0,9.508809494786495e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.004171437205604438,0.0009172820324556445,0.0035583464968294847,0.0,9.508809494786495e-05 +98097,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,14067.0,,304.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031848012884795112,0.0002407602916551239,0.0,0.0034254788730608957,0.0018683527957709545,0.000490701068495311,0.0009265673471014611,0.0,0.00013985766169316883,0.0017674501658089996,0.000490701068495311,0.0009265673471014611,0.0,0.0,0.00010090262996195504,0.0,0.00013985766169316883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6085731758691625e-05,0.0,0.0,0.0003795223391840429,0.00013438384267043296,0.0003956080709427346,0.00021062124778255893,5.847523926504081e-05,0.00011041599620533495,0.0,0.0,6.741529627483263e-06,0.0,9.34420213120836e-06,0.0,0.0,0.0,0.00021577580033793788,5.667099705201353e-05,0.00010700913196927483,0.0,1.615214158350832e-05 +98098,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock 90.1-2004,gen4_led,100001_200000,NaturalGas,404387.0,,76519.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.020815923026900333,0.013012790965935092,0.0,0.03382871399283542,0.020035964428032214,0.004738545471677632,0.006651084097335887,0.0,0.0024031022654282764,0.014044502966606549,0.004738545471677632,0.0015507683312434985,0.0,0.00048210625737265584,0.0059914614614256624,0.0051003157660923885,0.0019209960080556207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008694386538392905,0.0,0.0,0.00248059313830653,0.0015974559323655075,0.00335003179214582,0.0016736561547075286,0.0005646832651815077,0.0001848020516128184,0.0,5.745166680467559e-05,0.0004003144445483364,0.0003407732964769116,0.0001283497281748974,0.0,0.0,0.0,0.0019841463034753915,0.000469254550498452,0.0006586517945384998,0.0,0.00023797738780928466 +98099,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,26677.0,,4329.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0023768793181507828,0.0012743245222995127,0.0,0.0036512038404502953,0.0016896469643263242,0.000819964901062023,0.0011416226646682457,0.0,0.0,0.0004153224420268117,0.000819964901062023,0.0011416226646682457,0.0,0.0,0.0012743245222995127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.514192263263792e-05,0.0,0.0,0.00028324811872905344,0.00017401389413703252,0.0003683900413616913,4.949317345298557e-05,9.771363395528477e-05,0.00013604496854190574,0.0,0.0,8.514192263263792e-05,0.0,0.0,0.0,0.0,0.0,0.00017047777726867899,8.273076963572665e-05,0.00011518459090049385,0.0,0.0 +98100,81.0,the Columbus-Albany Area,G1302150001600,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,29631.0,,1013.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002638262694988318,0.00029814952518218246,0.0,0.002936381530564203,0.0011231168320707309,0.000765859125159173,0.001047436262940596,0.0,0.0,0.0008249673068885484,0.000765859125159173,0.001047436262940596,0.0,0.0,0.00029814952518218246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9919844236227584e-05,0.0,0.0,0.00031439601508046833,0.00011979506838821282,0.000334315859316696,9.830955588695608e-05,9.126576270075478e-05,0.00012482069649275742,0.0,0.0,1.9919844236227584e-05,0.0,0.0,0.0,0.0,0.0,0.00012787022562242686,8.719536234582093e-05,0.00011925376545232893,0.0,0.0 +98101,50.0,the Greater Atlanta and Macon Area,G1300210011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,15923.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0038233826048207032,0.0,0.0,0.003823382604820704,0.0017435478214983399,0.00101506391600252,0.0009840487633502796,0.0,8.072210396956403e-05,0.0017435478214983399,0.00101506391600252,0.0009840487633502796,0.0,8.072210396956403e-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.0004556213308961955,0.0001566749214353969,0.0004556213308961955,0.00020777349823965344,0.0001209622002701611,0.00011726621517268613,0.0,9.619417213694877e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00020777349823965338,0.00012096220027016108,0.0001172662151726861,0.0,9.619417213694874e-06 +98102,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,371371.0,,38091.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,280597.8237794184,0.0,0.0,0.02481032522977835,0.00647766343228635,0.0,0.0312879886620647,0.017761779620489134,0.006241034028774326,0.0040138701397172336,0.0,0.0032712871427225828,0.012333789044992752,0.006241034028774326,0.0029641972829272676,0.0,0.0032712871427225828,0.005427990575496385,0.001049672856789966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043279904929675406,0.0,0.0,0.002956599102648417,0.0013412061275659324,0.0033893981519451714,0.0014697940992289935,0.0007437321130690094,0.00035323773250085403,0.0,0.0003898330449562308,0.0003626661349766044,7.013291432014966e-05,0.0,0.0,0.0,0.0,0.001924116748800003,0.0006760853000756206,0.0004348187472402302,0.0,0.00035437543511607255 +98103,35.0,Eastern Counties in South Carolina and Georgia,G1300730030504,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,30854.0,,687.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001499243900956825,0.00011678989067388782,0.0,0.0016160515219921328,0.000883432988115551,0.00048045733376059083,0.00012097425596902028,0.0,0.00013115148342413057,0.0007666430974416633,0.00048045733376059083,0.00012097425596902028,0.0,0.00013115148342413057,0.00011678989067388782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.803763994697353e-06,0.0,0.0,0.00017866258513682203,4.847145102708449e-05,0.0001864663491315194,9.135967642010275e-05,5.725536001369005e-05,1.4416315645929857e-05,0.0,1.5629120157253866e-05,7.803763994697353e-06,0.0,0.0,0.0,0.0,0.0,0.00010193395554195561,5.543704747071634e-05,1.3958483094423859e-05,0.0,1.5132771427444415e-05 +98104,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6653.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012305985501671552,0.0,0.0,0.0012305985501671554,0.000676874691482492,0.00031552748631545786,0.00018997814837918916,0.0,4.813551691627692e-05,0.000676874691482492,0.00031552748631545786,0.00018997814837918916,0.0,4.813551691627692e-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.0001466520976133362,3.816503207162888e-05,0.0001466520976133362,8.066407466009432e-05,3.7601838322123635e-05,2.26399535061384e-05,0.0,5.736374810871809e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.066407466009431e-05,3.760183832212363e-05,2.2639953506138393e-05,0.0,5.736374810871808e-06 +98105,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,28699.0,,9891.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005726696245654511,0.006803930210308989,0.0,0.012530626455963504,0.0022734513612238548,0.0004961587594859973,0.00810858820305397,0.0003826260453682849,0.001269730366860378,0.0022734513612238548,0.0004961587594859973,0.0013046579927449807,0.0003826260453682849,0.001269730366860378,0.0,0.006803930210308989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045460041930238615,0.0,0.0,0.0006824398229451419,0.0006179507249852249,0.001137040242247528,0.0002709230030500207,5.9126323704219174e-05,0.00015547368524189805,4.559683968806147e-05,0.00015131142452435615,0.0,0.00045460041930238615,0.0,0.0,0.0,0.0,0.00020629500812177696,4.502188921374343e-05,0.0007357805395514048,3.471982927946244e-05,0.00011521646814687968 +98106,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,88701.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007048558232723563,0.0,0.0,0.007048558232723563,0.004098795749726857,0.002601498791843444,0.0003482636911532624,0.0,0.0,0.004098795749726857,0.002601498791843444,0.0003482636911532624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008399626593373677,0.000157115616780837,0.0008399626593373677,0.0004884453336907395,0.0003100154345487221,4.150189109790598e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004884453336907395,0.0003100154345487221,4.150189109790598e-05,0.0,0.0 +98107,50.0,the Greater Atlanta and Macon Area,G1300630040513,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,212015.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01679571965469306,0.0,0.0,0.01679571965469306,0.010721242755938202,0.005287253948527211,0.0007872229502276518,0.0,0.0,0.010721242755938202,0.005287253948527211,0.0007872229502276518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002001511753296792,0.00045663645665555735,0.002001511753296792,0.0012776286951159256,0.000630071300200889,9.381175797997773e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012776286951159256,0.000630071300200889,9.381175797997773e-05,0.0,0.0 +98108,50.0,the Greater Atlanta and Macon Area,G1301210003900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,5834.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.001053026462848862,0.0,0.0,0.001053026462848862,0.0006688521053297791,0.00015234642982780427,0.00020461730043104653,0.0,2.721062726023214e-05,0.0006688521053297791,0.00015234642982780427,0.00020461730043104653,0.0,2.721062726023214e-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.0001254835951025005,4.299153785828785e-05,0.0001254835951025005,7.97035684569527e-05,1.8154318424348568e-05,2.43831616622358e-05,0.0,3.2425465589634517e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.97035684569527e-05,1.8154318424348568e-05,2.43831616622358e-05,0.0,3.2425465589634517e-06 +98109,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,19747.0,,3259.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0017478037682604711,0.0009593570928661889,0.0,0.00270716086112666,0.0009658325997950042,0.0007477215678372307,0.0009936066934944253,0.0,0.0,6.475506928815286e-06,0.0007477215678372307,0.0009936066934944253,0.0,0.0,0.0009593570928661889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.409798774265871e-05,0.0,0.0,0.0002082826493127693,0.00012927779545163055,0.000272380637055428,7.716745799897159e-07,8.910464202307794e-05,0.00011840633270970166,0.0,0.0,6.409798774265871e-05,0.0,0.0,0.0,0.0,0.0,9.717712109341662e-05,7.523190805249288e-05,9.99716079095185e-05,0.0,0.0 +98110,35.0,Eastern Counties in South Carolina and Georgia,G1300290920101,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,89530.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011057772045125291,0.0,0.0,0.01105777204512529,0.002103649753282335,0.004547094827492835,0.004407027464350119,0.0,0.0,0.002103649753282335,0.004547094827492835,0.004407027464350119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013177347426252342,0.0003450396591233976,0.0013177347426252342,0.0002506881453969895,0.0005418690860823324,0.0005251775111459121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025068814539698953,0.0005418690860823325,0.0005251775111459121,0.0,0.0 +98111,50.0,the Greater Atlanta and Macon Area,G1301210010121,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,43789.0,,2799.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004155655127874329,0.0008153489033070097,0.0,0.004971004031181339,0.003740812506753515,0.0009463806112814712,0.0002838412867457908,0.0,0.0,0.002925463603446505,0.0009463806112814712,0.0002838412867457908,0.0,0.0,0.0008153489033070097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.447621045812378e-05,0.0,0.0,0.0004952211136748411,0.00017398058528452038,0.0005496973241329649,0.00034862164908642146,0.0001127782854586436,3.382479869089879e-05,0.0,0.0,5.447621045812377e-05,0.0,0.0,0.0,0.0,0.0,0.0004136618301146018,0.0001046514720908636,3.138738066272291e-05,0.0,0.0 +98112,35.0,Eastern Counties in South Carolina and Georgia,G1301270000900,ComStock 90.1-2004,gen3_t5_cfl,50001_100000,Electricity,314811.0,,17354.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,140298.9118897092,0.0,0.0,0.015086658150154409,0.002951254119090629,0.0,0.01803791226924504,0.008762610569211397,0.0021933343594676322,0.005083188236960618,0.0,0.0019987791036053925,0.008762610569211397,0.0021933343594676322,0.002131934117869989,0.0,0.0019987791036053925,0.0,0.002951254119090629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019718601872637754,0.0,0.0,0.0017978470893463645,0.000742602734320165,0.001995033108072742,0.0010442228988115014,0.0002613752996114581,0.0002540583547623859,0.0,0.0002381905361610193,0.0,0.0001971860187263775,0.0,0.0,0.0,0.0,0.0009691641658847338,0.0002425876453381038,0.0005622118943661318,0.0,0.00022106940248377283 +98113,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,143052.0,,4056.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012614520329691585,0.0011817152597251722,0.0,0.013796235589416759,0.008847222044228352,0.003817809581328215,0.0011312039638601912,0.0,0.0,0.007665506784503179,0.003817809581328215,0.0011312039638601912,0.0,0.0,0.0011817152597251722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.895434618069571e-05,0.0,0.0,0.0015032495401831058,0.00046754762404984214,0.0015822038863638015,0.0009134845596904766,0.00045496145296383315,0.00013480352752879622,0.0,0.0,7.895434618069571e-05,0.0,0.0,0.0,0.0,0.0,0.001014632506902078,0.00043784067891738764,0.00012973070054433567,0.0,0.0 +98114,50.0,the Greater Atlanta and Macon Area,G1300150961000,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,33455.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0027560187143526034,0.0,0.0,0.002756018714352603,0.0010982582509695919,0.0006506503431175967,0.001007079430659117,0.0,0.0,0.0010982582509695919,0.0006506503431175967,0.001007079430659117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003284282280756907,0.00010888724262624619,0.0003284282280756907,0.00013087683674171984,7.753646162636792e-05,0.00012001127249984733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013087683674171984,7.753646162636793e-05,0.00012001127249984734,0.0,0.0 +98115,81.0,the Columbus-Albany Area,G1300530020100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,107585.0,,25770.0,,7.614023970037612,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,571051.7977528209,0.0,0.0,0.022541008715468987,0.017837523008860295,0.0,0.04037845955730656,0.03288441941566687,0.00316589512026416,0.0026091987069035245,0.0007732696485816972,0.0009457488329130324,0.0167665643915059,0.00316589512026416,0.001313151145645596,0.0007732696485816972,0.0005221284094716359,0.01611785502416097,0.001296047561257928,0.00042362042344139635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011917988127655595,0.0,0.0,0.002686164536687723,0.001777192798362555,0.0038779633494532826,0.0019980361677269,0.00037727305402664917,0.0001564854564970459,9.214891549603468e-05,6.222094294109295e-05,0.0010769006701536303,8.659430706985753e-05,2.8303835542071586e-05,0.0,0.0,0.0,0.003158232747364188,0.00030405382917525925,0.00025058848375462175,7.426512525047078e-05,9.083009485836863e-05 +98116,35.0,Eastern Counties in South Carolina and Georgia,G1302450010710,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,53314.0,,3692.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.004839413327478454,0.0010867189590016554,0.0,0.005926101596873811,0.0041094610416875935,0.0008365372884627826,0.0009801646459360316,0.0,0.0,0.003022742082685938,0.0008365372884627826,0.0009801646459360316,0.0,0.0,0.0010867189590016554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.260756188159272e-05,0.0,0.0,0.0005767018231579729,0.00027192031815125213,0.0006493093850395657,0.0003602132638936222,9.968823631096668e-05,0.00011680398016360901,0.0,0.0,7.260756188159272e-05,0.0,0.0,0.0,0.0,0.0,0.0004502642383366892,9.165747556892607e-05,0.00010739439631375599,0.0,0.0 +98117,50.0,the Greater Atlanta and Macon Area,G1300210011702,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,Electricity,376095.0,,3253.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.019359568870218617,0.0005532050066670675,0.0,0.01991277387688568,0.009728542929014454,0.0036024193726034884,0.0027266990917056604,0.0,0.0038551302139235013,0.009385974616017612,0.0036024193726034884,0.002516062398035433,0.0,0.0038551302139235013,0.00034256831299684016,0.00021063669367022726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.69616568765245e-05,0.0,0.0,0.002307043031326668,0.0005782930001382927,0.0023440046882031926,0.001118508757878548,0.00042929347059303673,0.0002998343744472633,0.0,0.0004594085413012954,2.2888246290546133e-05,1.4073410585978367e-05,0.0,0.0,0.0,0.0,0.001145182001060435,0.0004240538234634551,0.00032096961949115737,0.0,0.0004538013312931642 +98119,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,110168.0,,9061.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010961621508594588,0.002667172304120753,0.0,0.013628824502321639,0.006303062031028496,0.0026516126737278186,0.004674119107959026,0.0,0.0,0.0036358897269077426,0.0026516126737278186,0.004674119107959026,0.0,0.0,0.002667172304120753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001782058888893381,0.0,0.0,0.001306275553958703,0.0005455558151607151,0.0014844814428480412,0.0004332820526073892,0.00031598763116770094,0.0005570058701836128,0.0,0.0,0.0001782058888893381,0.0,0.0,0.0,0.0,0.0,0.0006865433344297582,0.00028881946547180867,0.0005091153001672765,0.0,0.0 +98120,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,55484.0,,6297.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002603419888752033,0.0010708783690483493,0.0,0.003674280527438962,0.0015434634223384365,0.0007147108688423285,0.0006233995075290566,0.0,0.0007927067287291407,0.0013251672125347465,0.0007147108688423285,0.0004400675704457107,0.0,0.00012345650656782767,0.00021829620980369009,0.00018333193708334596,0.0006692502221613129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.154930627656401e-05,0.0,0.0,0.0003102435876724132,0.000141126559840626,0.0003817928939489773,0.00015791714277780462,8.51704579257868e-05,5.2441844845398875e-05,0.0,1.4712029236845782e-05,1.4585169357877013e-05,1.2249078229406134e-05,4.471505868928084e-05,0.0,0.0,0.0,0.00016038061392381628,7.426529599858745e-05,6.477717209899119e-05,0.0,8.236981192758239e-05 +98121,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,34356.0,,1108.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0030295235551202424,0.0003228409884238641,0.0,0.0033523645435441065,0.0018679763654217373,0.001119722743272721,0.0003646654348496484,0.0,0.0,0.0015451353769978732,0.001119722743272721,0.0003646654348496484,0.0,0.0,0.0003228409884238641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1569999461633108e-05,0.0,0.0,0.0003610217901167621,0.00010719457389969332,0.00038259178957839523,0.00018413045141494865,0.0001334349450848633,4.345639361695019e-05,0.0,0.0,2.1569999461633108e-05,0.0,0.0,0.0,0.0,0.0,0.00021318457800573802,0.00012778942224685416,4.161778932580309e-05,0.0,0.0 +98122,35.0,Eastern Counties in South Carolina and Georgia,G1301790010205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,30520.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0035933183078837912,0.0,0.0,0.003593318307883792,0.0022946039431243994,0.0009426142849511901,0.0003561000798082024,0.0,0.0,0.0022946039431243994,0.0009426142849511901,0.0003561000798082024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042820936979439533,9.570721145605855e-05,0.00042820936979439533,0.0002734438822904331,0.00011232967255713473,4.2435814946827594e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027344388229043305,0.0001123296725571347,4.243581494682759e-05,0.0,0.0 +98123,50.0,the Greater Atlanta and Macon Area,G1301130140206,ComStock 90.1-2004,gen5_led,5001_10000,NaturalGas,7999.0,,1370.0,,8.72605822017302,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0016818483444888165,0.001086605534787021,0.0,0.002768536586349577,0.0015988104424545515,0.0007349350572474859,0.0003582870434386798,0.0,7.658675028259868e-05,0.0005887089508763903,0.0007349350572474859,0.0003582870434386798,0.0,0.0,0.0010101014915781614,0.0,7.658675028259868e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.260318617464739e-05,0.0,0.0,0.0002004260520640917,0.00013491971997011413,0.0002730292382387391,7.015651038073295e-05,8.758229154863628e-05,4.269710634579028e-05,0.0,0.0,6.749145324638213e-05,0.0,5.117259126025536e-06,0.0,0.0,0.0,0.00015767246831550053,7.247827600494223e-05,3.533377128667676e-05,0.0,7.552879088518624e-06 +98124,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,14595.0,,581.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003296703959248794,0.00046092652194916023,0.0,0.0037576304811979535,0.0023535124903257317,0.000444964056717474,0.0008910033053935589,0.0,6.81506287611893e-05,0.0019606538900640218,0.000444964056717474,0.0008910033053935589,0.0,0.0,0.00039285860026171013,0.0,6.81506287611893e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0797179060671906e-05,0.0,0.0,0.0003928602055181733,0.00015284839617167557,0.0004236573845788452,0.00023364636307109422,5.302528614369725e-05,0.00010617870030223986,0.0,0.0,2.6249165716524584e-05,0.0,4.553539484298161e-06,0.0,0.0,0.0,0.00026534885514,5.016786760799832e-05,0.00010045695868791187,0.0,7.683703142935057e-06 +98125,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300750960400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,34010.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.002945680481272406,0.0,0.0,0.002945680481272406,0.0010399479990039564,0.0008313814346047685,0.0010743510476636812,0.0,0.0,0.0010399479990039564,0.0008313814346047685,0.0010743510476636812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003510314478235227,0.00010780184723509512,0.0003510314478235227,0.00012392873363978923,9.907423107778701e-05,0.00012802848310594644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012392873363978923,9.907423107778701e-05,0.00012802848310594644,0.0,0.0 +98126,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,187163.0,,6279.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.009238333896472833,0.0010678464772455201,0.0,0.010306180373718351,0.004688528122111664,0.002493207962164985,0.0016409981405101472,0.0,0.0014834638792929778,0.004688528122111664,0.002493207962164985,0.000573151663264627,0.0,0.0014834638792929778,0.0,0.0010678464772455201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.134767692335649e-05,0.0,0.0,0.001100913641678934,0.0003825537606592711,0.0011722613186022908,0.0005587224522160595,0.0002971105707857048,6.83013292126093e-05,0.0,0.00017678140235601663,0.0,7.134767692335649e-05,0.0,0.0,0.0,0.0,0.0005332897309604899,0.00028358627030537623,0.0001866529183715704,0.0,0.00016873441567871977 +98127,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030301,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,21226.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0018912162984896365,0.0,0.0,0.0018912162984896365,0.000598784908474479,0.0007596905142933346,0.0005327408757218226,0.0,0.0,0.000598784908474479,0.0007596905142933346,0.0005327408757218226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002253714487166538,7.868791542400014e-05,0.0002253714487166538,7.135567856534195e-05,9.053039143080695e-05,6.348537872050489e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.135567856534195e-05,9.053039143080695e-05,6.348537872050489e-05,0.0,0.0 +98128,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6334.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012089292968474564,0.0,0.0,0.0012089292968474564,0.0005417313329924636,0.0002946853037331524,0.00033082829495722967,0.0,4.168436516461094e-05,0.0005417313329924636,0.0002946853037331524,0.00033082829495722967,0.0,4.168436516461094e-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.00014406276537938723,4.811572053813097e-05,0.00014406276537938723,6.455573053533464e-05,3.511634624387746e-05,3.942334689180741e-05,0.0,4.967341708367734e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.455573053533464e-05,3.511634624387746e-05,3.942334689180741e-05,0.0,4.967341708367734e-06 +98129,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2004,gen4_led,_1000,Electricity,2286.0,,225.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000548844141334044,0.00017848186512942537,0.0,0.0007273260064634694,0.0005338741609872293,0.0001224891762079143,4.507535518792255e-05,0.0,2.5887314080403227e-05,0.000355392295857804,0.0001224891762079143,4.507535518792255e-05,0.0,2.5887314080403227e-05,0.00017848186512942537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1927713785061011e-05,0.0,0.0,6.540001472203826e-05,3.422374607430666e-05,7.732772850709926e-05,4.234838204650369e-05,1.4595753737694195e-05,5.371158532777405e-06,0.0,3.084720405062987e-06,1.1927713785061011e-05,0.0,0.0,0.0,0.0,0.0,5.676034654461289e-05,1.3022784389244258e-05,4.792314309343769e-06,0.0,2.752283263898348e-06 +98130,50.0,the Greater Atlanta and Macon Area,G1300890023501,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,3268.0,,295.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0004518287438378364,0.00023397831160850067,0.0,0.000685807055446337,0.000378798397726028,0.00016516602625739693,8.584994254140111e-05,0.0,5.6075395995250426e-05,0.00020089548211277774,0.00016516602625739693,8.584994254140111e-05,0.0,0.0,0.00017790291561325022,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.56348326211821e-05,0.0,0.0,5.3844358013684855e-05,3.140223508455988e-05,6.947919063486695e-05,2.3940681972403538e-05,1.9682808521568492e-05,1.0230723708256433e-05,0.0,0.0,1.1887778355660196e-05,0.0,3.7470542655219033e-06,0.0,0.0,0.0,3.837610867193569e-05,1.6732988868527416e-05,8.697467423901581e-06,0.0,5.68100473353109e-06 +98131,35.0,Eastern Counties in South Carolina and Georgia,G1300730030306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,17523.0,,194.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004018157763476773,0.00015400057130259042,0.0,0.004172158334779363,0.0024913851822491576,0.0007260026932836407,0.000858747546635229,0.0,9.602291261133592e-05,0.0023373846109465673,0.0007260026932836407,0.000858747546635229,0.0,9.602291261133592e-05,0.00015400057130259042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0289156682687037e-05,0.0,0.0,0.00047883602484564774,0.00016407474772492538,0.0004891251815283348,0.0002785415659420548,8.651632517743031e-05,0.00010233527048499188,0.0,1.1442863241170718e-05,1.0289156682687037e-05,0.0,0.0,0.0,0.0,0.0,0.00029207885505358374,8.511330842413963e-05,0.00010067572127681041,0.0,1.1257296773801103e-05 +98132,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001300,ComStock 90.1-2004,gen5_led,10001_25000,Electricity,30532.0,,5688.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.00210195207670868,0.000967350788716661,0.0,0.003069302865425341,0.0014635349530568388,0.0005390029871696053,0.0007704551251469743,0.0,0.00029629206969050237,0.0010611089399059003,0.0005390029871696053,0.0002055303495812521,0.0,0.00029629206969050237,0.00040242601315093845,0.0005649247755657223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.463318814004325e-05,0.0,0.0,0.0002504847698727994,0.0001342678960290914,0.0003151179580128426,0.0001264498993899455,6.423173996113996e-05,2.4492576632550467e-05,0.0,3.5308441002980575e-05,2.6887946465561346e-05,3.7745241674481885e-05,0.0,0.0,0.0,0.0,0.00015025762073948406,5.533814293565026e-05,7.910077839229426e-05,0.0,3.0419595611764842e-05 +98133,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,472719.0,,32127.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02312141965271122,0.005463575410866431,0.0,0.028584995063577652,0.012677988551240237,0.009779960977132605,0.0031913764038024044,0.0,0.0029356691314024025,0.011424434268481082,0.009779960977132605,0.0014023120150733963,0.0,0.0005147123920241328,0.0012535542827591532,0.0017890643887290081,0.0024209567393782697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003650441227104906,0.0,0.0,0.0027553345693591743,0.0011167062264681093,0.0031203786920696646,0.001361427591736409,0.0011654589109158522,0.00016711079294416846,0.0,6.133727376274431e-05,8.375515829975984e-05,0.0001195348084621005,0.00016175415594863027,0.0,0.0,0.0,0.0013839472508427964,0.001067594441574758,0.00034837518448577865,0.0,0.0003204618151663314 +98134,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301610960200,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,131337.0,,3941.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,1459415.2837631335,0.11078565770531691,0.0,0.04198826731542899,0.0034856277203204455,0.0,0.15625955274106637,0.1334034144239823,0.014782056750528766,0.0023488656453855253,0.0006687595171110608,0.005056548621311471,0.02261775671866539,0.014782056750528766,0.0023488656453855253,0.0006687595171110608,0.0015709209009910259,0.0,0.0,0.0034856277203204455,0.0,0.0,0.0,0.11078565770531691,0.0,0.0,0.0,0.00023288705356652858,0.0,0.0,0.0050036657770886625,0.0018408436474490687,0.005236552830655191,0.002695317108408452,0.0017615509333109413,0.0002799100652690209,7.969486056028187e-05,0.00018720379890297875,0.0,0.0,0.00023288705356652858,0.0,0.0,0.0,0.004470600453967514,0.0004953746491784489,7.871492544557737e-05,2.241139489346029e-05,0.0001694544975445543 +98135,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,151426.0,,4419.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0072713630612550135,0.0007515722902346183,0.0,0.008022935351489633,0.00345880344510106,0.001584509209025859,0.002026403006697835,0.0,0.000953219690664879,0.00345880344510106,0.001584509209025859,0.0012748307164632167,0.0,0.000953219690664879,0.0,0.0007515722902346183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0215493704804584e-05,0.0,0.0,0.0008665136480096678,0.0002490118881413759,0.0009167291417144724,0.00041217861984265113,0.0001888227617644133,0.00015191900134974966,0.0,0.00011359326505285383,0.0,5.0215493704804584e-05,0.0,0.0,0.0,0.0,0.0003952151892882734,0.00018105166046978715,0.00023154401820685457,0.0,0.00010891827374955741 +98136,50.0,the Greater Atlanta and Macon Area,G1300630040203,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,9364.0,,87.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002951236512239707,6.939123486727893e-05,0.0,0.0030206277471069858,0.0015769757749873746,0.00045555056215610534,0.0009187928821699662,0.0,6.939123486727893e-05,0.0015769757749873746,0.00045555056215610534,0.0009187928821699662,0.0,0.0,0.0,0.0,6.939123486727893e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.638707389634327e-06,0.0,0.0,0.00035169375649185053,0.00011894170464043434,0.0003563324638814849,0.00018792547866014947,5.428717346515464e-05,0.00010949096042563594,0.0,0.0,0.0,0.0,4.638707389634327e-06,0.0,0.0,0.0,0.00018603009388391305,5.3739642162510784e-05,0.00010838665301077202,0.0,8.185831476823993e-06 +98137,81.0,the Columbus-Albany Area,G1301770020402,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,17616.0,,501.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001569589224489711,0.00014758631668565267,0.0,0.0017171755411753639,0.0007300136650034561,0.0004732337291105769,0.0005139281470613308,0.0,0.0,0.0005824273483178035,0.0004732337291105769,0.0005139281470613308,0.0,0.0,0.00014758631668565267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.860840465188543e-06,0.0,0.0,0.0001870463202481767,6.966557207522797e-05,0.00019690716071336527,6.940726313291683e-05,5.639477276370415e-05,6.124428435155574e-05,0.0,0.0,9.860840465188543e-06,0.0,0.0,0.0,0.0,0.0,8.371008939447072e-05,5.426533730452509e-05,5.893173401436946e-05,0.0,0.0 +98138,50.0,the Greater Atlanta and Macon Area,G1300570091102,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,76003.0,,,8577.0,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00805781219484118,0.0,0.0008083933490357647,0.008866205543876945,0.004898198513329048,0.0032566269581163127,0.0007113496988321476,0.0,0.0,0.004089805164293283,0.0032566269581163127,0.0007113496988321476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008083933490357647,0.0,0.0,0.0,0.0,6.519498165909681e-05,0.0009602337662859304,0.0003318249961756135,0.0010254287479450272,0.0004873741061871935,0.0003880858840793516,8.477015645676992e-05,0.0,0.0,0.0,0.0,0.0,6.519498165909681e-05,0.0,0.0,0.0005665054282638352,0.00037664803592236474,8.227177087364908e-05,0.0,0.0 +98139,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,2523.0,,251.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006207165884135022,0.00019907592649051294,0.0,0.0008197098078302758,0.00047200926983022746,0.00019833156282685922,0.0001223237620604357,0.0,2.7045213112753528e-05,0.00027293334333971446,0.00019833156282685922,0.0001223237620604357,0.0,2.7045213112753528e-05,0.00019907592649051294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3300740633714038e-05,0.0,0.0,7.396525902819524e-05,3.7113351849263106e-05,8.72659996619093e-05,3.2523031951105166e-05,2.3633403217803092e-05,1.4576231592631685e-05,0.0,3.222736802427695e-06,1.3300740633714038e-05,0.0,0.0,0.0,0.0,0.0,5.024993038750039e-05,2.111430402474609e-05,1.3022541973561082e-05,0.0,2.8792232761017397e-06 +98140,85.0,Rural Climate Zone 3A,G1302370960101,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,17150.0,,5065.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0035710090768382905,0.003484156191938385,0.0,0.007055165268776676,0.0015620609687200086,0.0003742348087594585,0.003730299132463962,0.00036749313148399105,0.0010210772273492547,0.0015620609687200086,0.0003742348087594585,0.00024614294052557715,0.00036749313148399105,0.0010210772273492547,0.0,0.003484156191938385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023278971136375513,0.0,0.0,0.00042554841609512655,0.00033185294397367174,0.0006583381274588817,0.00018614698444602146,4.459664668683838e-05,2.9332252094524597e-05,4.3793257497769234e-05,0.00012167927536997281,0.0,0.00023278971136375513,0.0,0.0,0.0,0.0,0.0001457604824191524,3.492094569619547e-05,0.00034808513368158656,3.42918600512276e-05,9.527970561071961e-05 +98141,81.0,the Columbus-Albany Area,G1302150010301,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,4394.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0006905213586494777,0.0,0.0,0.0006905213586494777,0.00033827193159376737,0.00018749693616700996,0.0001270380652635762,0.0,3.771442562512419e-05,0.00033827193159376737,0.00018749693616700996,0.0001270380652635762,0.0,3.771442562512419e-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,8.229236031389854e-05,2.3972253109220642e-05,8.229236031389854e-05,4.031330143536292e-05,2.234480546551779e-05,1.5139665282327004e-05,0.0,4.49458813069083e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.031330143536292e-05,2.234480546551779e-05,1.5139665282327004e-05,0.0,4.49458813069083e-06 +98142,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5549.0,,116.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0013323282508665036,9.205297307184915e-05,0.0,0.0014243812239383526,0.0005541373940533596,0.0004945883009610585,0.00033115912325218697,0.0,4.4579112745486695e-05,0.0004620844209815106,0.0004945883009610585,0.00033115912325218697,0.0,4.4579112745486695e-05,9.205297307184915e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.150172284585671e-06,0.0,0.0,0.00015876916910486513,5.940163951481633e-05,0.0001649193413894508,5.5065078390271354e-05,5.893845870302896e-05,3.946314191420199e-05,0.0,5.312346026911805e-06,6.150172284585671e-06,0.0,0.0,0.0,0.0,0.0,6.415977164727209e-05,5.7264990216520494e-05,3.8342645623235456e-05,0.0,5.161509987743233e-06 +98143,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,8322.0,,1275.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,5611.956475588368,0.0,0.0,0.0005803324596397484,0.00021689551125150594,0.0,0.0007972279708912541,0.0005093046317910169,0.000148757732314243,2.734021730972142e-05,0.0,0.00011180765911485296,0.0003636142520024429,0.000148757732314243,2.734021730972142e-05,0.0,4.0620258013340965e-05,0.00014569037978857385,0.0,7.118740110151201e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4491380628992511e-05,0.0,0.0,6.915786682585573e-05,3.219422707230872e-05,8.364924745484825e-05,4.3331689617324524e-05,1.7727368631234284e-05,3.258117095275717e-06,0.0,4.8406914820211855e-06,9.733971603730193e-06,0.0,4.756224411461206e-06,0.0,0.0,0.0,5.343885404191169e-05,1.5608424209282468e-05,2.8686758201088875e-06,0.0,1.1731433023091207e-05 +98144,81.0,the Columbus-Albany Area,G1302150010501,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,61508.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0054802736861870845,0.0,0.0,0.0054802736861870845,0.002141950381941868,0.0012434814679703214,0.002094872525881192,0.0,0.0,0.002141950381941868,0.0012434814679703214,0.002094872525881192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000653074260143091,0.00018823563508390607,0.000653074260143091,0.0002552523361151972,0.000148183427726102,0.00024964215352642585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002552523361151972,0.000148183427726102,0.00024964215352642585,0.0,0.0 +98145,50.0,the Greater Atlanta and Macon Area,G1301390000303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,30102.0,,9187.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006989606088443538,0.007125047900083322,0.0,0.01411465398852686,0.0029429281997790675,0.0006663737132677371,0.009561706737070337,0.0004137646269616565,0.0005299615722311309,0.0029429281997790675,0.0006663737132677371,0.002436658836987015,0.0004137646269616565,0.0005299615722311309,0.0,0.007125047900083322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00047605278695073627,0.0,0.0,0.0008329415836197327,0.0006938436939631093,0.001308994370570469,0.0003507046383137457,7.94108235841071e-05,0.0002903732262933483,4.93077520058095e-05,6.315477948916855e-05,0.0,0.00047605278695073627,0.0,0.0,0.0,0.0,0.00027292744474184194,6.179956236069569e-05,0.0008867536038817987,3.837257136265985e-05,4.914868726028389e-05 +98147,50.0,the Greater Atlanta and Macon Area,G1302190030100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,111159.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009532652060160948,0.0,0.0,0.00953265206016095,0.002081553236747989,0.0029922979932386165,0.004458831519780642,0.0,0.0,0.002081553236747989,0.0029922979932386165,0.004458831519780642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011359874066246014,0.0003274351695383593,0.0011359874066246014,0.00024805460728464574,0.0003565862695642898,0.0005313501869957185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002480546072846457,0.00035658626956428977,0.0005313501869957185,0.0,0.0 +98148,50.0,the Greater Atlanta and Macon Area,G1300570090602,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,7444.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015629155724516922,0.0,0.0,0.0015629155724516924,0.0007378298048283615,0.0003179259914538977,0.0004551370267874088,0.0,5.210545645576367e-05,0.0007378298048283615,0.0003179259914538977,0.0004551370267874088,0.0,5.210545645576367e-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.00018625364457808434,6.221143476507105e-05,0.00018625364457808434,8.792764794840931e-05,3.788744296756925e-05,5.42389694720431e-05,0.0,6.209440444736897e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.79276479484093e-05,3.788744296756925e-05,5.4238969472043095e-05,0.0,6.209440444736896e-06 +98149,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,Electricity,344277.0,,11377.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.016564519235238648,0.0019348256899632621,0.0,0.018499327194840494,0.008391336801075492,0.002084824547576909,0.003414991722032111,0.0,0.004608156393794564,0.00688000079363019,0.002084824547576909,0.0029915197698755693,0.0,0.004608156393794564,0.0015113360074453007,0.0004234719521565411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012927320550445664,0.0,0.0,0.0019739610996459787,0.0006443285943437689,0.0021032343051504356,0.0008198761303780028,0.0002484444310191025,0.000356493513074253,0.0,0.0005491449122824067,0.00010097821798121313,2.829380288905789e-05,0.0,0.0,0.0,0.0,0.0009540318542511981,0.00023702886394195156,0.0003882588629269674,0.0,0.0005239127082216361 +98150,50.0,the Greater Atlanta and Macon Area,G1300970080303,ComStock 90.1-2004,gen4_led,100001_200000,NaturalGas,125967.0,,2014.0,,7.614023970037612,Education,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1142103.5955056418,0.0,0.0,0.04963250904935317,0.001393978211106305,0.0,0.05102648726045948,0.03957271474849511,0.005352122906930884,0.0022220947969649124,0.0007970847660835133,0.0030824700419850703,0.03957271474849511,0.005352122906930884,0.0022220947969649124,0.0007970847660835133,0.001688491830878765,0.0,0.0,0.001393978211106305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.313766276419085e-05,0.0,0.0,0.005914612708989029,0.0016650365896732503,0.00600775037175322,0.0047158059518592295,0.0006378024156289809,0.00026480285559688725,9.49870916848306e-05,0.000201214394219102,0.0,0.0,9.313766276419083e-05,0.0,0.0,0.0,0.004659207492140716,0.0006301475980436401,0.00026162472784760214,9.384706956827533e-05,0.0003629234841529872 +98151,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12806.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0027579500809109454,0.0,0.0,0.002757950080910946,0.0010815604032889232,0.0006194759823074126,0.0009764397125662634,0.0,8.039127567460682e-05,0.0010815604032889232,0.0006194759823074126,0.0009764397125662634,0.0,8.039127567460682e-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.00032866185901734435,8.6809126125052e-05,0.00032866185901734435,0.0001288883563356868,7.38222672596386e-05,0.0001163612399555799,0.0,9.580139355990485e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012888835633568678,7.382226725963859e-05,0.00011636123995557988,0.0,9.580139355990485e-06 +98152,50.0,the Greater Atlanta and Macon Area,G1301350050103,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,9045.0,,1203.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002177263716187268,0.0009539433885091716,0.0,0.0031312071046964395,0.0019877818102505148,0.000597806728987714,0.0004395053898506797,0.0,0.00010603046853379211,0.001139951597348874,0.000597806728987714,0.0004395053898506797,0.0,0.0,0.0008478302129016404,0.0,0.00010603046853379211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.373663833337069e-05,0.0,0.0,0.00025946409602748663,0.00013256497533134122,0.00032320073436085733,0.00013584781141678435,7.124051229199138e-05,5.237577231871088e-05,0.0,0.0,5.664680766042856e-05,0.0,7.08430469424148e-06,0.0,0.0,0.0,0.00020517727487859812,6.170514033546256e-05,4.536540062847926e-05,0.0,1.0944381559222883e-05 +98153,85.0,Rural Climate Zone 3A,G1300310110403,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,47726.0,,1199.0,,4.088175128053588,Healthcare,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.00536894284943602,0.00044560687337895203,0.0,0.0058145497228149715,0.002777060783321401,0.0008816816345099717,0.002004804697543791,0.0,0.00015100260743980661,0.002777060783321401,0.0008816816345099717,0.001710161683180874,0.0,0.0,0.0,0.0002946430143629175,0.00015100260743980661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.977373282097968e-05,0.0,0.0,0.0006398058936800431,0.00019075036038196676,0.0006695796265010227,0.0003309366305628288,0.00010506818975884422,0.00020379645578828297,0.0,0.0,0.0,1.9686909945280825e-05,1.0089411895944159e-05,0.0,0.0,0.0,0.00031979489568570885,0.00010153083001622209,0.00023086506171263578,0.0,1.7388839086455896e-05 +98154,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,18173.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0010786442673503325,0.0,0.0,0.0010786442673503323,0.000680952260698548,0.00023473225484007908,5.526553654630459e-05,0.0,0.00010771194562682078,0.000680952260698548,0.00023473225484007908,5.526553654630459e-05,0.0,0.00010771194562682078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012853957825456651,3.153591688079987e-05,0.00012853957825456651,8.114752847729766e-05,2.7972507668357645e-05,6.585867996243733e-06,0.0,1.2835786999416323e-05,0.0,0.0,0.0,0.0,0.0,0.0,8.114752847729769e-05,2.7972507668357652e-05,6.585867996243735e-06,0.0,1.2835786999416326e-05 +98155,50.0,the Greater Atlanta and Macon Area,G1302550160700,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,89408.0,,3476.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,70149.4559448546,0.0,0.0,0.004602323104887366,0.0005911834408288206,0.0,0.005193506545716187,0.00291128988444983,0.0017890643887290085,0.000403259340137681,0.0,8.987520203824765e-05,0.002409999376020677,0.0017890643887290085,0.000403259340137681,0.0,0.0,0.0005012905084291528,0.0,8.987520203824765e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.949921653646136e-05,0.0,0.0,0.0005484497008626691,0.00016840008347070152,0.0005879489173991304,0.0002871948376362653,0.00021319924882729242,4.8055614399111414e-05,0.0,0.0,3.3493127467095695e-05,0.0,6.004904436413119e-06,0.0,0.0,0.0,0.00032958266649518085,0.00020253723784717078,4.565237193368004e-05,0.0,1.0174633896052764e-05 +98156,50.0,the Greater Atlanta and Macon Area,G1300630040606,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11009.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0009809011964871763,0.0,0.0,0.0009809011964871763,0.0005519832588704823,0.00021676068928067475,0.00021218793794231704,0.0,0.0,0.0005519832588704823,0.00021676068928067475,0.00021218793794231704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011689262549383546,4.506375636059019e-05,0.00011689262549383546,6.577907396696467e-05,2.5831068577152865e-05,2.5286140187234164e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.577907396696467e-05,2.5831068577152865e-05,2.5286140187234164e-05,0.0,0.0 +98157,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7483.0,,916.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.0005854656193412759,0.00026963888093161666,0.0,0.0008551045002728929,0.0005908976796559695,0.00015777526597649002,0.00010640086503413556,0.0,0.0,0.00032125879872435276,0.00015777526597649002,0.00010640086503413556,0.0,0.0,0.00026963888093161666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8016147401587597e-05,0.0,0.0,6.976785890144867e-05,4.363972367853631e-05,8.778400630303626e-05,3.8283270272074475e-05,1.8801518195331953e-05,1.2679413262636819e-05,0.0,0.0,1.8016147401587597e-05,0.0,0.0,0.0,0.0,0.0,6.066084977779349e-05,1.6197020292284008e-05,1.092298567464475e-05,0.0,0.0 +98158,81.0,the Columbus-Albany Area,G1300950000502,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,5354.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.0009003624565317294,0.0,0.0,0.0009003624565317294,0.0006052824736579725,0.00017857661868271203,0.0001048748653284897,0.0,1.1628498862555079e-05,0.0006052824736579725,0.00017857661868271203,0.0001048748653284897,0.0,1.1628498862555079e-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.00010729236093511546,3.3244593682010246e-05,0.00010729236093511546,7.212893558620088e-05,2.1280215414671513e-05,1.2497491229466212e-05,0.0,1.3857187047768366e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.212893558620088e-05,2.1280215414671513e-05,1.2497491229466212e-05,0.0,1.3857187047768366e-06 +98159,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,188099.0,,18736.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.018618862417509218,0.0055151370789412735,0.0,0.02413399949645049,0.008463518245567878,0.005894399233568285,0.009776082017314329,0.0,0.0,0.002948381166626604,0.005894399233568285,0.009776082017314329,0.0,0.0,0.0055151370789412735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036848967232920143,0.0,0.0,0.0022187726186674982,0.0009467643820566169,0.0025872622909966997,0.0003513526903638394,0.0007024237748616214,0.0011649961534420372,0.0,0.0,0.00036848967232920143,0.0,0.0,0.0,0.0,0.0,0.0009073233638353588,0.0006319034218648269,0.0010480355052965142,0.0,0.0 +98160,50.0,the Greater Atlanta and Macon Area,G1301950020300,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,10272.0,,923.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,5611.956475588368,0.0,0.0,0.0004869111853174901,0.00015696688965172745,0.0,0.0006438958053306376,0.0002919658615040095,0.00019748076549654813,6.093925220072148e-05,0.0,9.349219576793843e-05,0.00018097379901447897,0.00019748076549654813,6.093925220072148e-05,0.0,4.751736860574151e-05,0.00011099206248953054,0.0,4.5974827162196916e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0487825681134512e-05,0.0,0.0,5.8025227811133504e-05,2.8643622686533575e-05,6.851305349226803e-05,2.1566655752248183e-05,2.3533791688893926e-05,7.262133420248555e-06,0.0,5.662646949742837e-06,7.41599330892376e-06,0.0,3.0718323722107525e-06,0.0,0.0,0.0,3.10663193043611e-05,2.101273239885674e-05,6.4841768050700845e-06,0.0,9.947938403588759e-06 +98162,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,17987.0,,709.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0015578011679634155,0.00020669234417390115,0.0,0.0017644935121373165,0.001169140589557943,0.00047698700557045464,0.00011836591700891885,0.0,0.0,0.0009624482453840419,0.00047698700557045464,0.00011836591700891885,0.0,0.0,0.00020669234417390115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.381013097883278e-05,0.0,0.0,0.0001856401400229737,6.355969811820122e-05,0.00019945027100180647,0.00011469308838145311,5.6841615171595284e-05,1.4105436469925296e-05,0.0,0.0,1.381013097883278e-05,0.0,0.0,0.0,0.0,0.0,0.0001321543014029493,5.391642806899917e-05,1.3379541529857984e-05,0.0,0.0 +98163,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,147700.0,,15212.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.03467036722161374,0.013454773831364463,0.0,0.0481251410529782,0.0343009449070044,0.009513777316850082,0.0009993583683028911,0.0006568634915033213,0.0026541969693175053,0.022636937907242215,0.009513777316850082,0.0009993583683028911,0.0006568634915033213,0.0008634301377152319,0.011664006999762187,0.0,0.0017907668316022736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008989710942936011,0.0,0.0,0.0041315958688150035,0.0019607528806264572,0.005030566963108604,0.0026975970154097047,0.001133737142380753,0.00011909146734886371,7.827706209522525e-05,0.00010289318158045684,0.000779322288716694,0.0,0.00011964880557690685,0.0,0.0,0.0,0.0035855105351822406,0.0009944842304323235,0.00010446388481971068,6.866256819883724e-05,0.0002774457444754925 +98164,50.0,the Greater Atlanta and Macon Area,G1300590030200,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,15755.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56663.68529324113,0.0,0.0,0.0013814926274910908,0.0,0.0,0.0013814926274910908,0.0005177029686359483,0.00036870493006060126,0.0004950847287945412,0.0,0.0,0.0005177029686359483,0.00036870493006060126,0.0004950847287945412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016463014296635604,6.18998451165887e-05,0.00016463014296635604,6.16937883305445e-05,4.393794374314787e-05,5.899841089266367e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.16937883305445e-05,4.393794374314787e-05,5.899841089266367e-05,0.0,0.0 +98165,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,106102.0,,,,9.325022323477118,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.02448674260496718,0.0,0.0,0.024486742604967176,0.010886983820893223,0.007088232707691266,0.005904857215493476,0.0,0.0006067572450472649,0.010886983820893223,0.007088232707691266,0.005904857215493476,0.0,0.0006067572450472649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002918039292146827,0.0007566674399312469,0.002918039292146827,0.0012973814882134994,0.000844691426973536,0.0007036707841177458,0.0,7.230612541676009e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0012973814882134996,0.0008446914269735361,0.0007036707841177459,0.0,7.23061254167601e-05 +98166,85.0,Rural Climate Zone 3A,G1302930010201,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,51313.0,,3637.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004190098789636739,0.0010594615219882211,0.0,0.005249529938025522,0.0035921944847045954,0.0012321658083912783,0.0004252303921285255,0.0,0.0,0.002532732962716374,0.0012321658083912783,0.0004252303921285255,0.0,0.0,0.0010594615219882211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078629896700249e-05,0.0,0.0,0.0004993253354771151,0.00018684603539783625,0.0005701116344441176,0.00030182050585779636,0.00014683463004740873,5.067381913041936e-05,0.0,0.0,7.078629896700249e-05,0.0,0.0,0.0,0.0,0.0,0.00039012099999307114,0.0001338161837766995,4.6181047966913804e-05,0.0,0.0 +98167,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,16084.0,,655.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014183255993452592,0.00019086769886683243,0.0,0.0016091932982120914,0.0009121799383145626,0.0005404678283953559,0.00015657590510161063,0.0,0.0,0.0007213122394477303,0.0005404678283953559,0.00015657590510161063,0.0,0.0,0.00019086769886683243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2752005168616754e-05,0.0,0.0,0.00016902001790794542,5.1118532845106126e-05,0.00018177202307656217,8.595784189819015e-05,6.440684852351337e-05,1.865894706860242e-05,0.0,0.0,1.2752005168616754e-05,0.0,0.0,0.0,0.0,0.0,0.00010303845596518148,6.105042239759054e-05,1.7686575669303093e-05,0.0,0.0 +98168,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,168431.0,,34133.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010662862054405555,0.0058045657216968865,0.0,0.016467427776102442,0.005991656495401284,0.002182128771050159,0.006325501470579457,0.0,0.001968141039071541,0.0051473012238555296,0.002182128771050159,0.001365291020428326,0.0,0.001968141039071541,0.0008443552715457545,0.004960210450151131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038782695262574014,0.0,0.0,0.001270672696601886,0.0006723861236365684,0.001658499649227626,0.0006133939549219201,0.0002600400751407305,0.00016269909652045266,0.0,0.00023453957001878274,5.641485471911233e-05,0.0003314120979066278,0.0,0.0,0.0,0.0,0.0006034433750689515,0.00021977080152178863,0.0006370662202247026,0.0,0.00019821925241218316 +98169,50.0,the Greater Atlanta and Macon Area,G1301530020900,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,8513.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0020440226203932437,0.0,0.0,0.0020440226203932437,0.0012004931753260475,0.00043388130883640675,0.000346790760188916,0.0,6.294008311561295e-05,0.0012004931753260475,0.00043388130883640675,0.000346790760188916,0.0,6.294008311561295e-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.00024358683771091527,5.985945820849117e-05,0.00024358683771091527,0.00014306316053143707,5.170577610388693e-05,4.1327167213800585e-05,0.0,7.500590090556223e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014306316053143707,5.170577610388693e-05,4.1327167213800585e-05,0.0,7.500590090556223e-06 +98170,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,31658.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027544228548251224,0.0,0.0,0.0027544228548251224,0.0007214205752400994,0.0007837818552370315,0.0012492511139542896,0.0,0.0,0.0007214205752400994,0.0007837818552370315,0.0012492511139542896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003282407857750383,9.974154467208725e-05,0.0003282407857750383,8.597069839014414e-05,9.34022064145102e-05,0.00014887153820858498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.597069839014414e-05,9.34022064145102e-05,0.00014887153820858498,0.0,0.0 +98171,50.0,the Greater Atlanta and Macon Area,G1300890021909,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,29353.0,,4223.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.006591771035746381,0.0032749425750584417,0.0,0.009866632750021757,0.0049270092339315326,0.0010084148256476093,0.0023638032714422717,0.0004163521720198493,0.0011510532469804925,0.002803119905853583,0.0010084148256476093,0.0023638032714422717,0.0004163521720198493,0.0,0.0021238893280779497,0.0,0.0011510532469804925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021881053000573933,0.0,0.0,0.0007855260044526692,0.00040633670321682487,0.0010043365344584085,0.0003340412717168331,0.00012017044653495139,0.0002816889314053592,4.961571880430316e-05,0.0,0.00014190457966792796,0.0,7.69059503378114e-05,0.0,0.0,0.0,0.0005015262556762805,0.00010264777021169323,0.00024061440675153788,4.2380993410312606e-05,0.00011716710840858419 +98172,50.0,the Greater Atlanta and Macon Area,G1300450910104,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,5251.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012608693391557419,0.0,0.0,0.0012608693391557417,0.00060425788073938,0.00023058732158518912,0.0003844224787403009,0.0,4.160165809087163e-05,0.00060425788073938,0.00023058732158518912,0.0003844224787403009,0.0,4.160165809087163e-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.00015025369625061078,4.8474176219051406e-05,0.00015025369625061078,7.200744537926941e-05,2.747834077708776e-05,4.5810375872275426e-05,0.0,4.95753422197817e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.200744537926942e-05,2.7478340777087762e-05,4.581037587227543e-05,0.0,4.9575342219781705e-06 +98173,50.0,the Greater Atlanta and Macon Area,G1300630980000,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,NaturalGas,450946.0,,103818.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.21646173729444027,0.08989656678394664,0.0,0.3063583040783869,0.1740237239660578,0.025427346161026595,0.06631029297935342,0.0006564231404710949,0.039940608111101235,0.13251387544405457,0.025427346161026595,0.03868499911128389,0.0006564231404710949,0.019179183717227388,0.04150984852200325,0.02762529386806954,0.02076142439387385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00600636031845959,0.0,0.0,0.025795331268340053,0.014946985545128253,0.031801691586799644,0.01579142511492139,0.0030301282143284473,0.004610017362253883,7.822469029537312e-05,0.002285546644991013,0.002773444147061152,0.0018457597971871442,0.0013871563742112937,0.0,0.0,0.0,0.018064628001527566,0.0026394995980812703,0.006883376289418801,6.814036370419034e-05,0.004146056705593569 +98174,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,38282.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0031434853002106867,0.0,0.0,0.0031434853002106876,0.0019039994543549107,0.0010657184834723982,0.0001737369887839404,0.0,0.0,0.0019039994543549107,0.0010657184834723982,0.0001737369887839404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003746031613103969,0.00010465133353254606,0.0003746031613103969,0.00022689599174738188,0.0001269996436595155,2.0703906339454173e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022689599174738182,0.00012699964365951545,2.070390633945417e-05,0.0,0.0 +98175,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050200,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,12989.0,,1634.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0006524950306193632,0.0002777993027293873,0.0,0.0009302943333487508,0.0003705290929562635,0.0002026048399469434,0.0001725164166171138,0.0,0.00018464398382842987,0.00025866824275715036,0.0002026048399469434,0.00010235737647796485,0.0,8.886457143730464e-05,0.00011186085019911311,7.015904013914894e-05,9.577941239112523e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8561473581173718e-05,0.0,0.0,7.775570146381373e-05,4.1878062870010306e-05,9.631717504498745e-05,3.0824649565380794e-05,2.4143756980163572e-05,1.2197594210771357e-05,0.0,1.0589700707498013e-05,7.47410880926889e-06,4.6877553587378355e-06,6.399609413166991e-06,0.0,0.0,0.0,3.836239158531985e-05,2.0976507256457555e-05,1.7861329798313822e-05,0.0,1.9116946404896205e-05 +98176,50.0,the Greater Atlanta and Macon Area,G1301530021202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14896.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035769155250775673,0.0,0.0,0.0035769155250775673,0.002313482266635907,0.0006256790128378607,0.0005584381618878036,0.0,7.931608371599582e-05,0.002313482266635907,0.0006256790128378607,0.0005584381618878036,0.0,7.931608371599582e-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.000426251282521257,0.00013212497787111078,0.000426251282521257,0.00027569138167509707,7.456046412026704e-05,6.654755502181666e-05,0.0,9.451881704076152e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00027569138167509707,7.456046412026704e-05,6.654755502181666e-05,0.0,9.451881704076152e-06 +98177,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,350659.0,,4277.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.018050234870431975,0.0007273703468962461,0.0,0.01877760521732822,0.009387800843243877,0.00537896612616994,0.0015873992579373277,0.0,0.0024234389899770773,0.00866043049634763,0.00537896612616994,0.0015873992579373277,0.0,0.0024234389899770773,0.0007273703468962461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.859892061379745e-05,0.0,0.0,0.0021510120994480252,0.0005782708267826998,0.002199611020061823,0.0010320470020358577,0.0006410011450247526,0.00018916734518902652,0.0,0.0002887966071983883,4.859892061379745e-05,0.0,0.0,0.0,0.0,0.0,0.0010996881631044873,0.0006300927637324204,0.00018594814730553373,0.0,0.0002838819459193819 +98178,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,52297.0,,3170.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005031837158965051,0.0009332095483005462,0.0,0.005965077396871895,0.0018408239649488085,0.001652635299131295,0.002471587443185494,0.0,0.0,0.0009076144166482621,0.001652635299131295,0.002471587443185494,0.0,0.0,0.0009332095483005462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.23525119210206e-05,0.0,0.0,0.0005996358028813407,0.0002304701681913943,0.0006619883148023612,0.00010815892530701436,0.00019694184512689266,0.00029453503244743364,0.0,0.0,6.23525119210206e-05,0.0,0.0,0.0,0.0,0.0,0.0002042897138339399,0.0001834050396778644,0.00027429015544023794,0.0,0.0 +98179,81.0,the Columbus-Albany Area,G1302150000300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,18677.0,,136.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004348158987696608,0.00010826355952475341,0.0,0.004456505254295103,0.0021507974525906896,0.0006896942879120846,0.0015417425615744296,0.0,7.435365929163737e-05,0.0021168048452838337,0.0006896942879120846,0.0015417425615744296,0.0,0.0,3.3992607306855354e-05,0.0,7.435365929163737e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.235277208603896e-06,0.0,0.0,0.0005181647302813372,0.00017138415395035034,0.0005254000074899412,0.0002522570160884969,8.219001551777666e-05,0.0001837275547747781,0.0,0.0,2.2717333328771594e-06,0.0,4.9690712074369e-06,0.0,0.0,0.0,0.0002535684203696141,8.131155767976205e-05,0.00018176385018688624,0.0,8.765930010085871e-06 +98180,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,6485.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0014723513267071507,0.0,0.0,0.001472351326707151,0.0009353342969178278,0.0003134598094719751,0.00017839915805568612,0.0,4.5158062261661854e-05,0.0009353342969178278,0.0003134598094719751,0.00017839915805568612,0.0,4.5158062261661854e-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.00017545979324486445,4.9605502978701254e-05,0.00017545979324486445,0.0001114635884623173,3.7354938568589834e-05,2.1259789575843876e-05,0.0,5.3814766381134705e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011146358846231727,3.735493856858983e-05,2.1259789575843873e-05,0.0,5.38147663811347e-06 +98181,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Electricity,4589.0,,300.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00040463709170972977,8.744559278128749e-05,0.0,0.0004920826844910172,0.00037733122581519083,0.00010330061168779395,1.1450846988032437e-05,0.0,0.0,0.0002898856330339034,0.00010330061168779395,1.1450846988032437e-05,0.0,0.0,8.744559278128749e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.842712183864277e-06,0.0,0.0,4.82197851482101e-05,2.07381133377684e-05,5.406249733207438e-05,3.454508553179081e-05,1.2310125303187401e-05,1.3645743132318877e-06,0.0,0.0,5.842712183864276e-06,0.0,0.0,0.0,0.0,0.0,4.145536722155176e-05,1.134908668763564e-05,1.258043422886985e-06,0.0,0.0 +98182,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,244645.0,,15041.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.022264756956070008,0.0044275588109632825,0.0,0.02669234645663959,0.008050988557714156,0.006981639915877002,0.011659687293442135,0.0,0.0,0.0036234297467508747,0.006981639915877002,0.011659687293442135,0.0,0.0,0.0044275588109632825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029582387744257527,0.0,0.0,0.002653249954056771,0.0010599449383220658,0.0029490738314993463,0.0004317974289170797,0.0008319891307410563,0.0013894633943986353,0.0,0.0,0.00029582387744257527,0.0,0.0,0.0,0.0,0.0,0.0008895044020136918,0.0007713586218547925,0.0012882074169242798,0.0,0.0 +98183,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10750.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002621814237536045,0.0,0.0,0.002621814237536045,0.0011738614975819902,0.00042949783392822344,0.0009505523984858601,0.0,6.781980046623209e-05,0.0011738614975819902,0.00042949783392822344,0.0009505523984858601,0.0,6.781980046623209e-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.0003124320536870763,0.00010153053928200959,0.0003124320536870763,0.00013988479930538404,5.11816925803466e-05,0.0001132738672878728,0.0,8.081838612725633e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013988479930538404,5.11816925803466e-05,0.0001132738672878728,0.0,8.081838612725633e-06 +98184,50.0,the Greater Atlanta and Macon Area,G1300590140300,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,29545.0,,1605.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026346413214451887,0.00047246648895313433,0.0,0.003107107810398323,0.000900402359168302,0.000930539552552646,0.0012761658986773748,0.0,0.0,0.0004279358702151676,0.000930539552552646,0.0012761658986773748,0.0,0.0,0.00047246648895313433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.156701653729772e-05,0.0,0.0,0.00031396507112451376,0.00012921669712657335,0.0003455320876618115,5.0996283568169554e-05,0.0001108905847726957,0.00015207820278364848,0.0,0.0,3.156701653729772e-05,0.0,0.0,0.0,0.0,0.0,0.00010013103049010685,0.00010348249686391932,0.0001419185603077853,0.0,0.0 +98185,81.0,the Columbus-Albany Area,G1302150001200,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,27572.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.002261800455731627,0.0,0.0,0.002261800455731627,0.001324835660275859,0.0006612332597598572,0.0002757011620964733,0.0,0.0,0.001324835660275859,0.0006612332597598572,0.0002757011620964733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002695347108309185,7.796121108994698e-05,0.0002695347108309185,0.0001578782936779605,7.879798370785455e-05,3.285481387763875e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001578782936779605,7.879798370785455e-05,3.285481387763875e-05,0.0,0.0 +98186,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,DistrictHeating,102225.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,863994.0691636442,0.04260010478376286,0.003211267284480527,0.01668209160532567,0.0,0.0,0.06249351826746044,0.048043934662071214,0.0053080548704624655,0.008919822942058973,0.0,0.00022159660508502845,0.00245421379280423,0.0053080548704624655,0.008919822942058973,0.0,0.0,0.0,0.0,0.0,0.0029896160855041247,0.0,0.00022159660508502845,0.04260010478376286,0.0,0.0,0.0,0.0,0.0,0.0,0.0019879755889528096,0.0006112531760956283,0.0019879755889528096,0.00029246435192865916,0.0006325515862730719,0.0010629596507510783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001528321207595896,0.0001688540475852179,0.00028374767108971515,0.0,7.049189319418268e-06 +98187,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,5819.0,,418.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0013970878896043812,0.0003314899515471441,0.0,0.0017285778411515252,0.0009502215701909029,0.00045364829946010127,0.000268219040136574,0.0,5.6571638437686274e-05,0.0006187316186437588,0.00045364829946010127,0.000268219040136574,0.0,5.6571638437686274e-05,0.0003314899515471441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2146441058748515e-05,0.0,0.0,0.00016649284389954594,6.795528671440052e-05,0.00018863928495829445,7.37350796360705e-05,5.4061878332288035e-05,3.1964023962007306e-05,0.0,6.741718282458524e-06,2.2146441058748515e-05,0.0,0.0,0.0,0.0,0.0,0.00010369745190841362,4.950653004766723e-05,2.9270679479413824e-05,0.0,6.1736493259078175e-06 +98188,35.0,Eastern Counties in South Carolina and Georgia,G1300730030505,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7200.0,,502.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,9613.75315558068,0.0,0.0,0.000525402523074231,0.00014612738689502399,0.0,0.0006715299099692551,0.0004296041904475618,0.0002052951585997646,3.66305609219287e-05,0.0,0.0,0.00028347680355253783,0.0002052951585997646,3.66305609219287e-05,0.0,0.0,0.00014612738689502399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.762786983450855e-06,0.0,0.0,6.261216143884853e-05,2.7582090593231502e-05,7.237494842229938e-05,3.378189979817167e-05,2.4465001686043317e-05,4.36525995463356e-06,0.0,0.0,9.762786983450855e-06,0.0,0.0,0.0,0.0,0.0,4.63011113340722e-05,2.2125934071478648e-05,3.94790301674852e-06,0.0,0.0 +98189,50.0,the Greater Atlanta and Macon Area,G1300570090100,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,41125.0,,5810.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004249129439948438,0.0017102703797583804,0.0,0.005959399819706819,0.002510348415939492,0.0014080084473323063,0.0020410429564350213,0.0,0.0,0.0008000780361811116,0.0014080084473323063,0.0020410429564350213,0.0,0.0,0.0017102703797583804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011427103576701166,0.0,0.0,0.0005063604577889087,0.0002602781646218072,0.0006206314935559205,9.534373720383412e-05,0.00016778961715284643,0.00024322710343222833,0.0,0.0,0.00011427103576701166,0.0,0.0,0.0,0.0,0.0,0.00026143593883031565,0.00014663462966815882,0.0002125609250574461,0.0,0.0 +98190,50.0,the Greater Atlanta and Macon Area,G1301710970300,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,16328.0,,16216.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0033997417860530104,0.01115518085182611,0.0,0.014554922637879122,0.0026991811091725214,0.00033385646507766946,0.00932237699252217,0.00037287212931016187,0.0018267076617676135,0.0020996738714530293,0.00033385646507766946,0.0003678517313390691,0.00037287212931016187,0.00022555930884409677,0.0005995072377194927,0.0089545252611831,0.0016011483529235165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007453240980482815,0.0,0.0,0.00040513691240709276,0.0008401812300782675,0.0011504610104553744,0.0002502117639733783,3.978466188331998e-05,4.383577460785138e-05,4.443404020008176e-05,2.6879218393779018e-05,4.005557571516662e-05,0.0005982891315159005,0.00010697939081721435,0.0,0.0,0.0,0.00021335067890908198,2.638893079106621e-05,0.0007368662494124939,2.9472835914662347e-05,0.0001443879843713118 +98191,46.0,the Tallahassee-Valdosta Area,G1301850010301,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,NaturalGas,49613.0,,1555.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005458296714654442,0.0005780102374081589,0.0,0.006036306952062601,0.002902683173190494,0.0006557395754949572,0.002215131141778657,0.0,0.0002627530615984934,0.002902683173190494,0.0006557395754949572,0.0018998739659689913,0.0,0.0,0.0,0.00031525717580966554,0.0002627530615984934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.861873439453279e-05,0.0,0.0,0.0006504548773511122,0.00023174658106191388,0.000689073611745645,0.0003459072538760457,7.814324274598285e-05,0.00022640438072908377,0.0,0.0,0.0,2.1063352083791566e-05,1.755538231074123e-05,0.0,0.0,0.0,0.00033135531274138235,7.485584169911514e-05,0.000252867925451357,0.0,2.9994531853790678e-05 +98192,50.0,the Greater Atlanta and Macon Area,G1301130140403,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,141026.0,,6926.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007370014792196191,0.0011778456394955276,0.0,0.008547860431691718,0.0036990498423427765,0.0018667942931945198,0.0013006283923293937,0.0,0.0016814056341864472,0.0030593029415844314,0.0018667942931945198,0.000762529653592211,0.0,0.0016814056341864472,0.0006397469007583451,0.0005380987387371824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.869671633041662e-05,0.0,0.0,0.0008782707844147375,0.00031112587795985324,0.0009569675007451542,0.00036457137061824053,0.00022246236058589194,9.086922290970912e-05,0.0,0.00020036994319467838,4.274412425876613e-05,3.595259207165049e-05,0.0,0.0,0.0,0.0,0.00041412357057612174,0.00020899516123827437,0.00014561060185201406,0.0,0.00018824015206431912 +98193,50.0,the Greater Atlanta and Macon Area,G1301210011900,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,124207.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.010952719957253308,0.0,0.0,0.010952719957253308,0.007394543903918993,0.002886676516964496,0.0006714995363698174,0.0,0.0,0.007394543903918993,0.002886676516964496,0.0006714995363698174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013052142412259052,0.0004402856831470626,0.0013052142412259052,0.0008811933518279818,0.000343999601419492,8.002128797843127e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008811933518279818,0.000343999601419492,8.002128797843127e-05,0.0,0.0 +98194,50.0,the Greater Atlanta and Macon Area,G1300670031002,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,27769.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007136876100038577,0.0,0.0,0.007136876100038577,0.0045801523295353665,0.0012225759640144425,0.0011763427097941695,0.0,0.00015780509669459857,0.0045801523295353665,0.0012225759640144425,0.0011763427097941695,0.0,0.00015780509669459857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008504868701921314,0.0002705401682764352,0.0008504868701921314,0.0005458073483619365,0.00014569186723041903,0.00014018234525898048,0.0,1.880530934079553e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005458073483619365,0.00014569186723041903,0.00014018234525898048,0.0,1.880530934079553e-05 +98196,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,15152.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033985990740956207,0.0,0.0,0.0033985990740956207,0.0014057721323470084,0.0005178289886818038,0.001397832253268035,0.0,7.716569979877382e-05,0.0014057721323470084,0.0005178289886818038,0.001397832253268035,0.0,7.716569979877382e-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.00040500792550488983,0.00011497742261080159,0.00040500792550488983,0.00016752457193143708,6.170920426326573e-05,0.00016657838384498546,0.0,9.195765465201552e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016752457193143708,6.170920426326573e-05,0.00016657838384498546,0.0,9.195765465201552e-06 +98197,50.0,the Greater Atlanta and Macon Area,G1302550160500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,493137.0,,107394.0,,7.614023970037612,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,2664908.3895131643,0.0,0.0,0.10332066044224292,0.07433672427123714,0.0,0.17765738471348005,0.13868069740573494,0.015827671425752483,0.0171118114282595,0.0008043014683567908,0.005232975152399068,0.07216810523811722,0.015827671425752483,0.01164277794450152,0.0008043014683567908,0.00287787653253765,0.06651259216761772,0.00546903348375798,0.0023550986198614186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004966746818518415,0.0,0.0,0.012312522633784144,0.008284086165651839,0.017279269452302556,0.008600133074820528,0.0018861528936762334,0.0013874472573850098,9.584704541319356e-05,0.0003429509624932556,0.004443983895961768,0.0003654089539473538,0.00015735396860929157,0.0,0.0,0.0,0.013488328347125031,0.00153942713841681,0.0016643248518081499,7.822777429169862e-05,0.0005089683597523239 +98198,50.0,the Greater Atlanta and Macon Area,G1302970110504,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,46702.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.004022425318227309,0.0,0.0,0.004022425318227308,0.0015006603687450707,0.0009899546303449988,0.001531810319137239,0.0,0.0,0.0015006603687450707,0.0009899546303449988,0.001531810319137239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004793451033989063,0.00017187973118065785,0.0004793451033989063,0.0001788309645832676,0.00011797109134448165,0.00018254304747115701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017883096458326764,0.00011797109134448167,0.00018254304747115707,0.0,0.0 +98199,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,152808.0,,1655.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013392913498711198,0.0004872588791886271,0.0,0.013880172377899824,0.006480877609917386,0.0029942928176479675,0.004405001950334471,0.0,0.0,0.005993618730728759,0.0029942928176479675,0.004405001950334471,0.0,0.0,0.0004872588791886271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.255667698475413e-05,0.0,0.0,0.001596007596836897,0.0004920456210357895,0.0016285642738216512,0.000714247951180118,0.0003568240834662442,0.0005249355621905347,0.0,0.0,3.255667698475413e-05,0.0,0.0,0.0,0.0,0.0,0.0007604030736193989,0.0003513211634133959,0.0005168400367888565,0.0,0.0 +98200,81.0,the Columbus-Albany Area,G1302150001400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,56151.0,,936.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006094894568805991,0.0003479608454733034,0.0,0.006442855414279294,0.003301946931738035,0.000673951334667836,0.002342380965446177,0.0,0.00012453743400347409,0.003301946931738035,0.000673951334667836,0.0019944201199728734,0.0,0.00012453743400347409,0.0,0.0003479608454733034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3248587112887395e-05,0.0,0.0,0.0007263153815668511,0.00023874612145181035,0.0007495639686797385,0.00039348586239919644,8.031332048007069e-05,0.00023767072491402973,0.0,1.48408562078392e-05,0.0,2.3248587112887395e-05,0.0,0.0,0.0,0.0,0.00038414961804638075,7.840772524415538e-05,0.0002725133903716689,0.0,1.4488727012862381e-05 +98201,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,148114.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0076241795231526445,0.0,0.0,0.0076241795231526445,0.003155738377348098,0.0027482237504696046,0.0007630083733505524,0.0,0.0009572267523458107,0.003155738377348098,0.0027482237504696046,0.0007630083733505524,0.0,0.0009572267523458107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009085596272010941,0.00022312282539674417,0.0009085596272010941,0.00037606361116769436,0.00032750083318596395,9.092632212259775e-05,0.0,0.00011407097361980775,0.0,0.0,0.0,0.0,0.0,0.0,0.00037606361116769436,0.00032750083318596395,9.092632212259775e-05,0.0,0.00011407097361980775 +98202,50.0,the Greater Atlanta and Macon Area,G1300890020200,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,5154.0,,495.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008796724362912738,0.0003929413073354495,0.0,0.0012725310365529839,0.0008769431028578765,0.00017831645098194678,0.00017451192558993865,0.0,4.275955712322194e-05,0.00048400179552242703,0.00017831645098194678,0.00017451192558993865,0.0,4.275955712322194e-05,0.0003929413073354495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.625168652075322e-05,0.0,0.0,0.00010482637580368455,5.1634356140893754e-05,0.00013107806232443776,5.767618947002274e-05,2.1249122436324167e-05,2.079575526003896e-05,0.0,5.095452829118551e-06,2.625168652075322e-05,0.0,0.0,0.0,0.0,0.0,9.03302154443009e-05,1.8367626567755608e-05,1.797573843133782e-05,0.0,4.404481881043438e-06 +98203,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14489.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004291339228037705,0.0,0.0,0.004291339228037705,0.002176850180818571,0.0008154917470695712,0.0011947863872380348,0.0,0.00010412820583778805,0.002176850180818571,0.0008154917470695712,0.0011947863872380348,0.0,0.00010412820583778805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005113869426144535,0.00017506586360755802,0.0005113869426144535,0.00025940917260171173,9.717988000960783e-05,0.00014237936578283917,0.0,1.2408668248691302e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00025940917260171173,9.717988000960783e-05,0.00014237936578283917,0.0,1.2408668248691302e-05 +98204,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,7181.0,,,2604.0,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005258581270657973,0.0,0.0002454186834570347,0.000771276810522832,0.0005695353630572845,0.00016477677694980364,3.699504411518172e-05,0.0,0.0,0.00032411667960024966,0.00016477677694980364,3.699504411518172e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002454186834570347,0.0,0.0,0.0,0.0,1.9792786804905784e-05,6.266711685755749e-05,3.6217424329658835e-05,8.245990366246326e-05,3.862535689868861e-05,1.963663772611618e-05,4.4087418894764065e-06,0.0,0.0,0.0,0.0,0.0,1.9792786804905784e-05,0.0,0.0,6.089101931929464e-05,1.7616862023741317e-05,3.955269667265792e-06,0.0,0.0 +98205,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,30145.0,,129.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007238357679516708,0.00010255677143674119,0.0,0.007340914450953448,0.0033527793552440444,0.001448200861175273,0.0023603771774460946,0.0,0.00017955705708803642,0.0032502225838073034,0.001448200861175273,0.0023603771774460946,0.0,0.00017955705708803642,0.00010255677143674119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.8515695740730605e-06,0.0,0.0,0.0008625803227725868,0.0002730168115149686,0.0008694318923466598,0.00038732239681342256,0.0001725791431676683,0.0002812813344866982,0.0,2.139744830479771e-05,6.8515695740730605e-06,0.0,0.0,0.0,0.0,0.0,0.0003970913050310834,0.00017151977776639867,0.000279554708033995,0.0,2.1266101515182842e-05 +98206,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,14419.0,,,1537.0,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003231613492215959,0.0,0.0003945954488102357,0.0036262089410261946,0.0021184589867586203,0.0004941747655923619,0.0009358305393602636,0.0,7.766194224120967e-05,0.0017238635379483846,0.0004941747655923619,0.0009358305393602636,0.0,7.766194224120967e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003945954488102357,0.0,0.0,0.0,0.0,3.1824106892036596e-05,0.0003851070031964084,0.00014292258452160372,0.00041693111008844503,0.00020543048313727486,5.889013753995189e-05,0.00011152165795222691,0.0,9.254868476989929e-06,0.0,0.0,0.0,3.1824106892036596e-05,0.0,0.0,0.00024357434207201512,5.6818798074501854e-05,0.0001075991130063579,0.0,8.929347513298283e-06 +98207,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,FuelOil,190851.0,,3235.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01700461981585635,0.0009523291730240151,0.0,0.017956948988880367,0.006875545946905843,0.005922940567425149,0.005158462474549373,0.0,0.0,0.005923216773881829,0.005922940567425149,0.005158462474549373,0.0,0.0,0.0009523291730240151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.362896894363833e-05,0.0,0.0,0.002026407325430708,0.000719135715708997,0.0020900362943743465,0.0007058581721136657,0.0007058252571297845,0.0006147238961872578,0.0,0.0,6.362896894363833e-05,0.0,0.0,0.0,0.0,0.0,0.0008002551314017871,0.0006893799588675337,0.0006004012041050255,0.0,0.0 +98208,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,44036.0,,7600.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.003923604785948705,0.002237210919889937,0.0,0.006160815705838643,0.00295952149371267,0.0011871353508077392,0.002014158861318234,0.0,0.0,0.0007223105738227327,0.0011871353508077392,0.002014158861318234,0.0,0.0,0.002237210919889937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001494769324805331,0.0,0.0,0.0004675683070883019,0.0002813100025467263,0.000617045239568835,8.60763381173759e-05,0.0001414685975125907,0.00024002337145833538,0.0,0.0,0.0001494769324805331,0.0,0.0,0.0,0.0,0.0,0.00029641507493340357,0.00011889922567324718,0.0002017309389621843,0.0,0.0 +98209,50.0,the Greater Atlanta and Macon Area,G1301130140204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,16012.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003499667118205055,0.0,0.0,0.0034996671182050544,0.0016910288296738797,0.0007318748955191314,0.0009716427022893835,0.0,0.00010503798364892044,0.0016910288296738797,0.0007318748955191314,0.0009716427022893835,0.0,0.00010503798364892044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004170467070094204,0.00012337563441514838,0.0004170467070094204,0.00020151573879837898,8.721572789919082e-05,0.00011578826662444272,0.0,1.2517117689227298e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000201515738798379,8.721572789919083e-05,0.00011578826662444274,0.0,1.25171176892273e-05 +98210,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,109037.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009715101769600793,0.0,0.0,0.009715101769600791,0.0029406166962332855,0.0024770808827127826,0.004297373501048428,0.0,0.0,0.0029406166962332855,0.0024770808827127826,0.004297373501048428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011577303401044332,0.0003625069112002674,0.0011577303401044332,0.00035042774111740773,0.0002951890531690334,0.0005121098885955378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003504277411174078,0.0002951890531690335,0.0005121098885955379,0.0,0.0 +98211,81.0,the Columbus-Albany Area,G1302150010205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,325417.0,,6645.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,480687.657779034,0.0,0.0,0.02620898409804336,0.0019358309865656744,0.0,0.028144815084609028,0.01719838246243934,0.007469111090538676,0.0034773215316310172,0.0,0.0,0.015262551475873666,0.007469111090538676,0.0034773215316310172,0.0,0.0,0.0019358309865656744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012934078758333175,0.0,0.0,0.0031232733877425652,0.0009115164932353194,0.0032526141753258966,0.0018188084160502042,0.0008900793640801157,0.0004143856076122454,0.0,0.0,0.00012934078758333175,0.0,0.0,0.0,0.0,0.0,0.0019875668900946903,0.0008631833798565334,0.0004018639053746735,0.0,0.0 +98212,85.0,Rural Climate Zone 3A,G1302490960100,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,46255.0,,4615.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0023809747743760504,0.0007847635268129569,0.0,0.0031657383011890077,0.001791759403664856,0.0004891806715792569,0.0005766268141029571,0.0,0.0003081891422033578,0.0016008388718937276,0.0004891806715792569,0.00022955498930542367,0.0,6.141797195906292e-05,0.0001909205317711286,0.00034707182479753356,0.00024677117024429486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.243289462997439e-05,0.0,0.0,0.0002837371290934205,0.0001421270497762775,0.00033617002372339494,0.0001907695245411858,5.829491385445814e-05,2.7355717639495092e-05,0.0,7.31908595838503e-06,1.2756092482672431e-05,2.31891261467601e-05,1.648767600054187e-05,0.0,0.0,0.0,0.0001902670858833788,5.194613778026462e-05,6.12320512102126e-05,0.0,3.272663163815004e-05 +98213,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,71016.0,,,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,349688.3371303919,0.0,0.0,0.017075996104533378,0.0,0.0,0.017075996104533378,0.010135276556635833,0.002984909785831934,0.003634621731693906,0.0,0.0003211880303717057,0.010135276556635833,0.002984909785831934,0.003634621731693906,0.0,0.0003211880303717057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020349178749715932,0.0006535702351788061,0.0020349178749715932,0.001207803943419931,0.0003557067032098045,0.0004331317883482408,0.0,3.827543999361688e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.001207803943419931,0.0003557067032098045,0.0004331317883482408,0.0,3.827543999361688e-05 +98214,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,58409.0,,5280.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00515054237745789,0.001538240569925503,0.0,0.006688782947383391,0.004912838588258045,0.0012515441648325639,0.0005244001942927852,0.0,0.0,0.0033745980183325416,0.0012515441648325639,0.0005244001942927852,0.0,0.0,0.001538240569925503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010277649065010584,0.0,0.0,0.0006137808831670778,0.0002408595106631687,0.0007165573738171837,0.00040214478403113624,0.00014914426996573418,6.24918291702075e-05,0.0,0.0,0.00010277649065010584,0.0,0.0,0.0,0.0,0.0,0.0005263036257092235,0.00013407569165022258,5.6178056457737956e-05,0.0,0.0 +98215,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,5656.0,,213.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013579674437256886,0.00016930137994436228,0.0,0.0015272688236700512,0.0007935743725286546,0.0003031214252545617,0.00038797888291109117,0.0,4.251143590200402e-05,0.0006242729925842925,0.0003031214252545617,0.00038797888291109117,0.0,4.251143590200402e-05,0.00016930137994436228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1310706676182793e-05,0.0,0.0,0.0001618278950626888,6.442967417985673e-05,0.0001731386017388716,7.439411364475152e-05,3.6122738011130666e-05,4.623513342707067e-05,0.0,5.066053843852979e-06,1.1310706676182793e-05,0.0,0.0,0.0,0.0,0.0,8.996344003490049e-05,3.436331503156961e-05,4.398316802540055e-05,0.0,4.819302571958193e-06 +98216,50.0,the Greater Atlanta and Macon Area,G1301510070202,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8550.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0017968111769864536,0.0,0.0,0.0017968111769864536,0.000833191060849783,0.0002970838088715922,0.0006097165476061743,0.0,5.6737052585164897e-05,0.000833191060849783,0.0002970838088715922,0.0006097165476061743,0.0,5.6737052585164897e-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.0002141250057490202,7.638901737908301e-05,0.0002141250057490202,9.929092326424071e-05,3.5403315104740186e-05,7.265958768155476e-05,0.0,6.761323541718199e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.929092326424071e-05,3.5403315104740186e-05,7.265958768155476e-05,0.0,6.761323541718199e-06 +98217,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,10307.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0009088692159758479,0.0,0.0,0.0009088692159758479,0.0007036955517738343,0.00016101045061952241,4.4163213582491154e-05,0.0,0.0,0.0007036955517738343,0.00016101045061952241,4.4163213582491154e-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.00010830874087398211,2.64334879273701e-05,0.00010830874087398211,8.385846701762582e-05,1.9187402178022897e-05,5.262871678333389e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.385846701762582e-05,1.9187402178022897e-05,5.262871678333389e-06,0.0,0.0 +98218,50.0,the Greater Atlanta and Macon Area,G1300890022301,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,282612.0,,4164.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013609488549165551,0.0007081683654783289,0.0,0.014317674645005296,0.0054580435381033745,0.0029933814578246747,0.0030102075708123045,0.0,0.0028560243479035254,0.0054580435381033745,0.0029933814578246747,0.002302039205333976,0.0,0.0028560243479035254,0.0,0.0007081683654783289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7316144977054496e-05,0.0,0.0,0.0016218167640199934,0.00042640961812233494,0.001669132908997048,0.000650424626676349,0.00035671555267257455,0.00027432961651382705,0.0,0.00034034696815724274,0.0,4.7316144977054496e-05,0.0,0.0,0.0,0.0,0.0006362904811058203,0.00034896389422982835,0.0003509254570963203,0.0,0.0003329510095862948 +98219,50.0,the Greater Atlanta and Macon Area,G1300210012000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,93420.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007337897140967588,0.0,0.0,0.007337897140967588,0.004338747185285098,0.0025337049178983818,0.0004654450377841089,0.0,0.0,0.004338747185285098,0.0025337049178983818,0.0004654450377841089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000874441375353022,0.000197398303038373,0.000874441375353022,0.0005170391439296562,0.00030193615017798234,5.546608124538349e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005170391439296562,0.00030193615017798234,5.546608124538349e-05,0.0,0.0 +98220,85.0,Rural Climate Zone 3A,G1302930010300,ComStock 90.1-2004,gen3_t5_cfl,10001_25000,Electricity,60765.0,,8070.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0029632575737720047,0.001372383164996347,0.0,0.0043356584691297715,0.0016317074311260396,0.0007254731982243005,0.0012094056828232216,0.0,0.0007690544265947903,0.0012117638208920887,0.0007254731982243005,0.00025696612806082526,0.0,0.0007690544265947903,0.00041994361023395065,0.0009524395547623963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.169499629667628e-05,0.0,0.0,0.0003531262368635346,0.00018349335113820043,0.00044482123316021084,0.00014440378110442477,8.645337573817378e-05,3.0622205307655804e-05,0.0,9.164687471328024e-05,2.805829215000424e-05,6.363670414667204e-05,0.0,0.0,0.0,0.0,0.00016740666194951624,7.443065106638511e-05,0.00012408019013830911,0.0,7.890191094177124e-05 +98221,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,28195.0,,930.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.006770152935078488,0.0007377470977546221,0.0,0.00750790003283311,0.002473106918952771,0.002628099975140232,0.002149639553558339,0.0,0.0002570535851817675,0.001992413406379916,0.002628099975140232,0.002149639553558339,0.0,0.0,0.00048069351257285474,0.0,0.0002570535851817675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9292078537860014e-05,0.0,0.0,0.0008067812034623825,0.0003090426220925332,0.0008560732820002425,0.00023743063136211678,0.00031318371698474976,0.00025616685511551583,0.0,0.0,3.211721529843525e-05,0.0,1.717486323942477e-05,0.0,0.0,0.0,0.00028199106908546504,0.00029966384226004056,0.0002451083498294535,0.0,2.9310020825283432e-05 +98222,50.0,the Greater Atlanta and Macon Area,G1301710970200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,231879.0,,27759.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011936026116895287,0.004720602345920538,0.0,0.01665661073245441,0.007118881953042561,0.0033516234103168423,0.0032879359520960115,0.0,0.002898151686637571,0.006193871267396986,0.0033516234103168423,0.001966332542206696,0.0,0.0004241811666133432,0.0009250106856455748,0.0013216034098893156,0.0024739705200242275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000315402507472676,0.0,0.0,0.0014223926021151398,0.0006831250177996537,0.001737795109587816,0.0007381113766774014,0.0003994063264625827,0.00023432395622644372,0.0,5.054882985664315e-05,6.180369967908003e-05,8.830166127501763e-05,0.0001652959618815256,0.0,0.0,0.0,0.0007427176177939887,0.00034967706607203614,0.00034303251183372444,0.0,0.0003023660640678442 +98223,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6689.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001606088664943611,0.0,0.0,0.001606088664943611,0.0008421234248136282,0.00032098615318225214,0.0003902946809757917,0.0,5.260169889819953e-05,0.0008421234248136282,0.00032098615318225214,0.0003902946809757917,0.0,5.260169889819953e-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.00019139212829175244,5.9865268600505475e-05,0.00019139212829175244,0.00010035298677926894,3.825082907978224e-05,4.6510090808423694e-05,0.0,6.268365703360346e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010035298677926894,3.825082907978224e-05,4.6510090808423694e-05,0.0,6.268365703360346e-06 +98224,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,44449.0,,,,9.325022323477118,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,349688.3371303919,0.0,0.0,0.0157403347080069,0.0,0.0,0.0157403347080069,0.00718837195876753,0.002157280529805337,0.006094971539469684,0.0,0.0002996222958062968,0.00718837195876753,0.002157280529805337,0.006094971539469684,0.0,0.0002996222958062968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001875744335357708,0.0005770703352511306,0.001875744335357708,0.000856623968437182,0.00025707882383857,0.0007263256183180838,0.0,3.5705392199801395e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000856623968437182,0.00025707882383857,0.0007263256183180838,0.0,3.5705392199801395e-05 +98225,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,47242.0,,19674.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009406647958465516,0.013533845410529866,0.0,0.02294049336899538,0.005035100565150974,0.0011366181006554038,0.01199380247291165,0.00037444996867250533,0.004400450541633831,0.005035100565150974,0.0011366181006554038,0.0023545666484425113,0.00037444996867250533,0.0005058409555731048,0.0,0.00963923582446914,0.003894609586060726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009042523380298903,0.0,0.0,0.0011209685282133508,0.0011846531223639618,0.0020252208662432415,0.0006000213141647348,0.00013544815592739427,0.00028058827354217287,4.462233859773635e-05,6.0279899277884414e-05,0.0,0.0006440373202664241,0.0002602150177634662,0.0,0.0,0.0,0.0004445061648917558,0.00010034233603311081,0.0010588307166300578,3.305700002706156e-05,0.0003884783171155696 +98226,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950100,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,148536.0,,12809.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007260281585367482,0.0021782458218991664,0.0,0.00943852740726665,0.0030481860049740577,0.0021987243893393286,0.002752532228294677,0.0,0.0014390847846585857,0.0030481860049740577,0.0021987243893393286,0.0017992416161841183,0.0,0.00021412957486997773,0.0,0.0009532906121105588,0.001224955209788608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014553748981688264,0.0,0.0,0.0008651931033719008,0.00037021526250509374,0.0010107305931887833,0.0003632461741722948,0.00026201754787389477,0.00021441199205821421,0.0,2.5517389267496936e-05,0.0,6.369323487631263e-05,8.184425494057002e-05,0.0,0.0,0.0,0.0003264168991642933,0.00023545177233734994,0.0002947566301215197,0.0,0.00015410529156562026 +98227,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,63919.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005420306195481373,0.0,0.0,0.005420306195481372,0.001894162500694216,0.0014312711689059648,0.002094872525881192,0.0,0.0,0.001894162500694216,0.0014312711689059648,0.002094872525881192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006459274718191946,0.0002270118108659856,0.0006459274718191946,0.0002257237047434884,0.0001705618343830536,0.0002496419326926526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022572370474348841,0.00017056183438305363,0.00024964193269265265,0.0,0.0 +98228,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,1101016.0,,104871.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,654728.2554853096,0.0,0.0,0.05310695369522026,0.017834296798697153,0.0,0.07094125049391742,0.03950189773640972,0.013421670830642931,0.006990124068410137,0.0,0.011027557858454622,0.03217147484126451,0.013421670830642931,0.005921125117672314,0.0,0.0015926829056405031,0.00733042289514521,0.0010689989507378236,0.009434874952814117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011915829109828372,0.0,0.0,0.00632865412808439,0.0029107917961677704,0.007520237039067227,0.0038338131429868916,0.001599434849824254,0.000705609158716134,0.0,0.00018979697655710934,0.0004897757815026646,7.142422804418222e-05,0.0006303829014359903,0.0,0.0,0.0,0.004187459798108081,0.001422784986224952,0.0007409989189778998,0.0,0.0011689933357562933 +98229,50.0,the Greater Atlanta and Macon Area,G1301210011306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,23104.0,,8192.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004655199878681282,0.005635396722551637,0.0,0.01029059660123292,0.003558027762084464,0.00046158973345647274,0.0038758906736256525,0.0003691426908173501,0.002026017461219996,0.002467238722908036,0.00046158973345647274,0.0011031248741911136,0.0003691426908173501,0.0002541755772793255,0.0010907890391764284,0.002772765799434539,0.0017718418839406706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037652464712113,0.0,0.0,0.0005547491506320386,0.000510965468334294,0.0009312737977531686,0.0002940149986271764,5.5006555947923224e-05,0.00013145678014838522,4.398986069980747e-05,3.028950190793037e-05,7.288022091078926e-05,0.00018526018940311816,0.0001183842368072226,0.0,0.0,0.0,0.0003219928012833206,4.177274075911009e-05,0.0003507586165481398,3.3406509740077634e-05,0.000183349619904304 +98230,50.0,the Greater Atlanta and Macon Area,G1301170130608,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,30607.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006853356251260231,0.0,0.0,0.006853356251260231,0.003372050103425303,0.0017365177202304986,0.0015381034503299002,0.0,0.00020660227020078995,0.003372050103425303,0.0017365177202304986,0.0015381034503299002,0.0,0.00020660227020078995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008167017984706172,0.000227405707199911,0.0008167017984706172,0.00040184097878963516,0.00020693760738434616,0.00018329294553851618,0.0,2.4620410708996802e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00040184097878963516,0.00020693760738434616,0.00018329294553851618,0.0,2.4620410708996802e-05 +98231,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6958.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001319343240289432,0.0,0.0,0.001319343240289432,0.000701107864088109,0.00023679035211563715,0.0003391817094048997,0.0,4.226331468078609e-05,0.000701107864088109,0.00023679035211563715,0.0003391817094048997,0.0,4.226331468078609e-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.00015722469467316502,4.3147238689177376e-05,0.00015722469467316502,8.355025932449974e-05,2.8218047946920224e-05,4.041991429630452e-05,0.0,5.036473105440529e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.355025932449974e-05,2.8218047946920224e-05,4.041991429630452e-05,0.0,5.036473105440529e-06 +98232,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,57246.0,,4155.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0053717836757624735,0.0012103575639949723,0.0,0.006582141239757446,0.004066933843916656,0.0019252609739613367,0.0005899464218794536,0.0,0.0,0.0028565762799216835,0.0019252609739613367,0.0005899464218794536,0.0,0.0,0.0012103575639949723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.086919689392402e-05,0.0,0.0,0.0006401452891923377,0.00023304836448146267,0.0007210144860862616,0.00034041278636390407,0.00022942970479396073,7.030279803447291e-05,0.0,0.0,8.086919689392402e-05,0.0,0.0,0.0,0.0,0.0,0.00044549609444820255,0.00021089505696687572,6.462333467118335e-05,0.0,0.0 +98233,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010200,ComStock 90.1-2004,gen2_t8_halogen,500001_1mil,Electricity,652593.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,2428443.6554246196,0.0,0.0,0.05484653093005767,0.0,0.0,0.05484653093005767,0.017896183568410915,0.013579843890670506,0.023370534160582542,0.0,0.0,0.017896183568410915,0.013579843890670506,0.023370534160582542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0065359562454403025,0.0019393520626455032,0.0065359562454403025,0.0021326539852204005,0.001618284037007168,0.0027850218804344497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021326539852204005,0.001618284037007168,0.0027850218804344497,0.0,0.0 +98234,50.0,the Greater Atlanta and Macon Area,G1301210009802,ComStock 90.1-2004,gen4_led,200001_500000,Electricity,754931.0,,32133.0,,5.759960461090961,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,2015986.1613818365,0.0,0.0,0.10976030888582992,0.016825782727420715,0.0,0.12658603701935925,0.08450588445703759,0.008999912180703895,0.032615155021006946,0.0,0.0004650307667194562,0.06768010172961687,0.008999912180703895,0.032615155021006946,0.0,0.0004650307667194562,0.016825782727420715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011241986816815613,0.0,0.0,0.013079924440854707,0.004653572675601441,0.014204123122536268,0.008065307265976861,0.001072502186745689,0.003886685156337133,0.0,5.541682009741938e-05,0.0011241986816815613,0.0,0.0,0.0,0.0,0.0,0.009482341146543793,0.0010098733139673344,0.0036597217867570986,0.0,5.2180749328935996e-05 +98235,50.0,the Greater Atlanta and Macon Area,G1300630040611,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,56761.0,,2498.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0028174608118149112,0.0004248726507087253,0.0,0.003242351192885056,0.0015112296252767807,0.0006532219754375855,0.0006029918615345758,0.0,0.00047490773063611443,0.0012774370795919645,0.0006532219754375855,0.00041191175651066677,0.0,0.00047490773063611443,0.0002337925456848163,0.00019108010502390902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8387956775414126e-05,0.0,0.0,0.00033575235399111917,0.0001220922841814247,0.0003641403107665333,0.00015223015871239696,7.784343086944993e-05,4.908687329566964e-05,0.0,5.6594004012763064e-05,1.562089880401497e-05,1.2767057971399157e-05,0.0,0.0,0.0,0.0,0.0001697223997805802,7.336171777361307e-05,6.772049996641894e-05,0.0,5.333569324592113e-05 +98236,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,55481.0,,5608.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005483741611698724,0.0016506711643282418,0.0,0.007134412776026966,0.002811658970570338,0.0015551344199234932,0.002767588695926837,0.0,0.0,0.0011609878062420963,0.0015551344199234932,0.002767588695926837,0.0,0.0,0.0016506711643282418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011028884324374612,0.0,0.0,0.0006534852902805221,0.00030067687418451237,0.0007637741335242682,0.00013835233446370213,0.0001853219097086751,0.0003298073888960259,0.0,0.0,0.00011028884324374612,0.0,0.0,0.0,0.0,0.0,0.0003010019831245294,0.00016648482242042088,0.0002962840425053491,0.0,0.0 +98237,50.0,the Greater Atlanta and Macon Area,G1302270050600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2934.0,,0.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,3237.924873899493,0.0,0.0,0.00020356415857266256,3.068960629770278e-08,0.0,0.00020359484817896028,0.00010087673590054904,7.475988094120398e-05,2.7927541730909537e-05,0.0,0.0,0.00010084604629425134,7.475988094120398e-05,2.7927541730909537e-05,0.0,0.0,3.068960629770278e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3126936217713624e-09,0.0,0.0,2.4256624345443732e-05,1.0831545618975028e-05,2.4258937039065502e-05,1.201677485287624e-05,8.908357742424383e-06,3.327834788836695e-06,0.0,0.0,2.3126936217713624e-09,0.0,0.0,0.0,0.0,0.0,1.201976575933197e-05,8.90786412830322e-06,3.32765039275695e-06,0.0,0.0 +98238,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,39081.0,,11568.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007419144121680901,0.007957474224124076,0.0,0.015376546625833959,0.004452877840446243,0.0006784709258076807,0.005587416061942194,0.0003710791300347716,0.0042867743875740875,0.004452877840446243,0.0006784709258076807,0.0014232828248048014,0.0003710791300347716,0.0004934334005874041,0.0,0.004164133237137393,0.003793340986986683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005316707677779855,0.0,0.0,0.0008841227371426725,0.0007668366634553504,0.001415793504920658,0.0005306394484173105,8.085185597673843e-05,0.0001696094166869317,4.422066626042754e-05,5.8801349801264304e-05,0.0,0.00027822244256937796,0.0002534483252086076,0.0,0.0,0.0,0.00040999814055238143,6.247012111433196e-05,0.0005144605978364846,3.416706201327205e-05,0.0003947041870110713 +98239,50.0,the Greater Atlanta and Macon Area,G1300670031001,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,85474.0,,15445.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0047535453574389964,0.002626628931850882,0.0,0.007380174289289878,0.0037974178875012287,0.0012274019996645752,0.0016424697605080115,0.0,0.000712884641616063,0.0023606380498272504,0.0012274019996645752,0.0010146199322625218,0.0,0.00015088537568464934,0.0014367798376739788,0.0006278498282454898,0.0005619992659314137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017549622542905308,0.0,0.0,0.0005664705435041215,0.00031716608228680505,0.0007419667689331744,0.0002813125401253338,0.00014626705449648385,0.00012091023883456056,0.0,1.7980710047743296e-05,9.599735814478794e-05,4.194931139958148e-05,3.754955588468369e-05,0.0,0.0,0.0,0.0003817738944684778,0.00012339701749250546,0.00016512590807551698,0.0,7.166994889667419e-05 +98240,50.0,the Greater Atlanta and Macon Area,G1300670031106,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,61372.0,,8665.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.003439636924405984,0.0014735526072591682,0.0,0.004913189531665152,0.002388776133400874,0.001166764163607995,0.0007344802218256874,0.0,0.0006231512824691757,0.0017493129184252497,0.001166764163607995,0.0003886672526889775,0.0,0.00013489258968376174,0.0006394632149756243,0.0003458129691367098,0.00048825869278541404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.845440912897416e-05,0.0,0.0,0.00040989530649581,0.00018393032177331577,0.0005083497156247841,0.00020846245421057854,0.0001390411735195043,4.6316773010379795e-05,0.0,1.6074905755347365e-05,4.272529713563612e-05,2.3105256899391303e-05,3.2622670451981016e-05,0.0,0.0,0.0,0.0002471579124475685,0.00012072081220328882,7.599397692491927e-05,0.0,6.447517955348732e-05 +98241,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,77064.0,,1523.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003797258314248449,0.0002590051196241313,0.0,0.004056263433872579,0.0020133002696084163,0.0005748183172381119,0.001086906615772077,0.0,0.0003812205008925553,0.0018569362122449703,0.0005748183172381119,0.0009842655535113912,0.0,0.0003812205008925553,0.00015636405736344565,0.00010264106226068566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7305257040444025e-05,0.0,0.0,0.00045251174479538997,0.00013403468082220913,0.000469817001835834,0.0002212874068176273,6.849995921998508e-05,0.00011729297458911262,0.0,4.54292912766471e-05,1.0447361845541886e-05,6.857895194902139e-06,0.0,0.0,0.0,0.0,0.00023319064747223607,6.657837263476228e-05,0.00012589103637434293,0.0,4.415489173411547e-05 +98242,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,14860.0,,196.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003581464414133229,0.00015515847033494072,0.0,0.00373662288446817,0.001474253589403155,0.0011459892137318437,0.0009613043180719703,0.0,0.00015515847033494072,0.001474253589403155,0.0011459892137318437,0.0009613043180719703,0.0,0.0,0.0,0.0,0.00015515847033494072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0365323521683772e-05,0.0,0.0,0.0004267991190141048,0.00016078113510997332,0.0004371644425357886,0.00017568515568035516,0.0001365662562191866,0.00011455756322427872,0.0,0.0,0.0,0.0,1.0365323521683772e-05,0.0,0.0,0.0,0.00017247960752120304,0.00013407447078899238,0.00011246734800667283,0.0,1.8152692494237133e-05 +98243,50.0,the Greater Atlanta and Macon Area,G1301350050435,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,10821.0,,347.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00248989645492185,0.00027533184847815435,0.0,0.0027652283034000046,0.0013771554848332078,0.0003734224379329731,0.0009404621354896648,0.0,7.410553807041946e-05,0.0011018236363550535,0.0003734224379329731,0.0009404621354896648,0.0,7.410553807041946e-05,0.00027533184847815435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8397025542411146e-05,0.0,0.0,0.00029671359885730504,0.00011937095749971309,0.0003151106243997162,0.00013130106507148375,4.449964786051262e-05,0.00011207209209787132,0.0,8.830937869993202e-06,1.8397025542411146e-05,0.0,0.0,0.0,0.0,0.0,0.00015693327172577835,4.2553223340453395e-05,0.000107170033799401,0.0,8.444670678415556e-06 +98244,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,13674.0,,897.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032833881203767653,0.0007116116624530009,0.0,0.003994999782829767,0.0024661595247586683,0.0010171315928460027,0.0004265203792736084,0.0,8.518828595148664e-05,0.001839736148257154,0.0010171315928460027,0.0004265203792736084,0.0,0.0,0.0006264233765015144,0.0,8.518828595148664e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7546160339449266e-05,0.0,0.0,0.0003912762953572513,0.0001759149954591288,0.00043882245569670065,0.00021923851769381337,0.00012121000227470407,5.082777538873386e-05,0.0,0.0,4.185432571024975e-05,0.0,5.691834629199529e-06,0.0,0.0,0.0,0.0002708901721210735,0.00011172470778539684,4.685024540976513e-05,0.0,9.357330380465014e-06 +98245,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,59136.0,,4749.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.00361614267234261,0.0008076888841290854,0.0,0.004423831556471694,0.0022614544080434753,0.0006981861719988393,0.0010221198751432037,0.0,0.00044207110128617654,0.00189046432569029,0.0006981861719988393,0.0005854210733673035,0.0,0.00044207110128617654,0.00037099008235318484,0.0004366988017759005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3965299631876794e-05,0.0,0.0,0.00043092898980655683,0.00019030566561605803,0.00048489428943843365,0.00022528311406676323,8.320154624913015e-05,6.976353938884095e-05,0.0,5.2680790101822384e-05,2.4787503391521933e-05,2.917779624035486e-05,0.0,0.0,0.0,0.0,0.0002478770527963412,7.652788842555548e-05,0.00011203412341806138,0.0,4.845522479847566e-05 +98246,50.0,the Greater Atlanta and Macon Area,G1302230120204,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,7236.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017375929121891097,0.0,0.0,0.0017375929121891097,0.001239448207057261,0.00020999326022410155,0.00024737685755426853,0.0,4.0774587353478564e-05,0.001239448207057261,0.00020999326022410155,0.00024737685755426853,0.0,4.0774587353478564e-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.00020706512266141278,6.708496204759808e-05,0.00020706512266141278,0.00014770231463677146,2.502443459647423e-05,2.947935560380245e-05,0.0,4.85901782436463e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014770231463677146,2.502443459647423e-05,2.947935560380245e-05,0.0,4.85901782436463e-06 +98247,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,59410.0,,4407.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005238808057423996,0.0012837705538360185,0.0,0.006522578611260013,0.004574567811319802,0.0014464211788251795,0.0005016199947144713,0.0,0.0,0.0032907972574837832,0.0014464211788251795,0.0005016199947144713,0.0,0.0,0.0012837705538360185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.577431734708005e-05,0.0,0.0,0.0006242994319729752,0.00023112345411348172,0.0007100737493200553,0.0003921584520879645,0.00017236743748505647,5.9777161967739175e-05,0.0,0.0,8.577431734708005e-05,0.0,0.0,0.0,0.0,0.0,0.0004980055758462063,0.00015746314007949132,5.4608339984729405e-05,0.0,0.0 +98248,50.0,the Greater Atlanta and Macon Area,G1301210007200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,36817.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.0049476467332137085,0.0,0.0,0.004947646733213708,0.002521251742128903,0.0018493573489663949,0.0005770376421184092,0.0,0.0,0.002521251742128903,0.0018493573489663949,0.0005770376421184092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005896012624327038,0.00014120757065144119,0.0005896012624327038,0.0003004525767958958,0.00022038425264277788,6.876443299402985e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030045257679589587,0.00022038425264277794,6.876443299402987e-05,0.0,0.0 +98249,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,118679.0,,9342.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01046525405987683,0.0027215960040203138,0.0,0.013186850063897141,0.008220310951833154,0.00407200623502276,0.0008945025034417911,0.0,0.0,0.005498714947812839,0.00407200623502276,0.0008945025034417911,0.0,0.0,0.0027215960040203138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001818416987434897,0.0,0.0,0.0012471238654939807,0.0004499845856356082,0.0014289655642374707,0.0006552711096864274,0.00048525302176915755,0.00010659611447593454,0.0,0.0,0.00018184169874348966,0.0,0.0,0.0,0.0,0.0,0.0008907768891415027,0.00044125448147305064,9.693090225102443e-05,0.0,0.0 +98250,50.0,the Greater Atlanta and Macon Area,G1301350050524,ComStock 90.1-2004,gen5_led,10001_25000,Electricity,18267.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004386121534542951,0.0,0.0,0.004386121534542951,0.0020062254876943805,0.0008434467379934571,0.0013977495461942955,0.0,0.0001387824697345579,0.0020062254876943805,0.0008434467379934571,0.0013977495461942955,0.0,0.0001387824697345579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005226848714639436,0.00013883156181067726,0.0005226848714639436,0.00023907766871136073,0.00010051177249942104,0.0001665668714689366,0.0,1.6538414812122822e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00023907766871136073,0.00010051177249942104,0.0001665668714689366,0.0,1.6538414812122822e-05 +98251,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,158985.0,,7030.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01601844000708597,0.0020691853254100143,0.0,0.01808762533249598,0.010543997346095447,0.002923338447887679,0.004620258848906558,0.0,0.0,0.008474812020685434,0.002923338447887679,0.004620258848906558,0.0,0.0,0.0020691853254100143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013825092039532902,0.0,0.0,0.0019088861684797892,0.0007005007976266287,0.002047137088875118,0.0010099267743673148,0.00034836852567974387,0.0005505872112123676,0.0,0.0,0.00013825092039532902,0.0,0.0,0.0,0.0,0.0,0.0011933577589874924,0.0003308601571514124,0.0005229156993210942,0.0,0.0 +98252,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,85414.0,,9993.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.007714108749384273,0.002941629453241109,0.0,0.010655738202625383,0.004117624476962782,0.0025636562620786024,0.003974488153190296,0.0,0.0,0.0011759950237216733,0.0025636562620786024,0.003974488153190296,0.0,0.0,0.002941629453241109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019654155393947467,0.0,0.0,0.000919276350580293,0.0004518623868604579,0.0011158179045197677,0.00014014119437890133,0.0003055062677116188,0.00047363254571450167,0.0,0.0,0.00019654155393947467,0.0,0.0,0.0,0.0,0.0,0.0004311779276213739,0.00026845381369793156,0.0004161893768691485,0.0,0.0 +98253,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,127938.0,,10508.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.01092470191221845,0.0030930212811076776,0.0,0.014017723193326129,0.005527198094216272,0.0032782637447206116,0.005212292043995544,0.0,0.0,0.002434176813108594,0.0032782637447206116,0.005212292043995544,0.0,0.0,0.0030930212811076776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020665827780801086,0.0,0.0,0.001301875448346712,0.0005503174663490701,0.0015085337261547228,0.00029007610966269397,0.0003906643052368875,0.0006211386906677378,0.0,0.0,0.00020665827780801086,0.0,0.0,0.0,0.0,0.0,0.0005948159070677811,0.0003527941987394802,0.0005609269230454464,0.0,0.0 +98254,46.0,the Tallahassee-Valdosta Area,G1300270960500,ComStock 90.1-2004,gen5_led,25001_50000,Electricity,35194.0,,358.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0031709421914975443,0.00010538810802631135,0.0,0.0032763302995238554,0.0013016689615107657,0.0007254102240588006,0.0012492511139542896,0.0,0.0,0.0011962808534844546,0.0007254102240588006,0.0012492511139542896,0.0,0.0,0.00010538810802631135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.041438702366779e-06,0.0,0.0,0.00037787552296916787,0.00012801189555915082,0.00038491696167153474,0.00014255865475584496,8.644584203345065e-05,0.00014887102617987233,0.0,0.0,7.041438702366779e-06,0.0,0.0,0.0,0.0,0.0,0.00015292550382959877,8.522422157825779e-05,0.00014676723626367826,0.0,0.0 +98255,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,6658.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012587189552385196,0.0,0.0,0.0012587189552385196,0.0006208820025609808,0.00024795580707044363,0.0003409185579534252,0.0,4.879717350619138e-05,0.0006208820025609808,0.00024795580707044363,0.0003409185579534252,0.0,4.879717350619138e-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.0001499952108501872,4.620162036395044e-05,0.0001499952108501872,7.398738733506509e-05,2.9547647160053963e-05,4.062555089851316e-05,0.0,5.814913884066658e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.398738733506509e-05,2.9547647160053963e-05,4.062555089851316e-05,0.0,5.814913884066658e-06 +98256,50.0,the Greater Atlanta and Macon Area,G1301210000500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,265485.0,,651.0,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,863994.0691636442,0.08792701065995782,0.01910747982348469,0.04470524523512495,0.0003408296638447481,0.0,0.15208061997630362,0.123119161135468,0.013399087947580365,0.015221486635519105,0.0,0.0003408296638447481,0.01608467065202548,0.013399087947580365,0.015221486635519105,0.0,0.0,0.0,0.0,0.0003408296638447481,0.01910747982348469,0.0,0.0,0.08792701065995782,0.0,0.0,0.0,2.2773195108202534e-05,0.0,0.0,0.005327440664888346,0.0019523643151941141,0.005350213859996548,0.0019167801912785365,0.0015967443110740257,0.0018139161625357837,0.0,0.0,0.0,0.0,2.2773195108202534e-05,0.0,0.0,0.0,0.004331346376946428,0.00047138146898419544,0.0005354936663185343,0.0,1.1990427127955328e-05 +98257,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,30284.0,,3834.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006305691571663539,0.002637071614273002,0.0,0.008942763185936542,0.003115802420802207,0.000473710408558111,0.0035242476557361107,0.00037703188762906736,0.0014518990932400303,0.003115802420802207,0.000473710408558111,0.0008871760414631086,0.00037703188762906736,0.0014518990932400303,0.0,0.002637071614273002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001761921366971497,0.0,0.0,0.0007514357390639983,0.00039128447433678474,0.000927627875761148,0.00037130349117840277,5.6451053292361435e-05,0.00010572286589349142,4.4930081325956716e-05,0.00017301970065867748,0.0,0.0001761921366971497,0.0,0.0,0.0,0.0,0.0003232004606188734,4.9137718497091854e-05,0.0003655682587779858,3.910930902940377e-05,0.0001506046893648944 +98258,81.0,the Columbus-Albany Area,G1302150010607,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6048.0,,730.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005333300325274842,0.0002125544488653872,0.0,0.0007458844813928716,0.0005425028595576853,0.0001531436883651447,5.023793347004151e-05,0.0,0.0,0.00032994841069229803,0.0001531436883651447,5.023793347004151e-05,0.0,0.0,0.0002125544488653872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.420109440251079e-05,0.0,0.0,6.355576857167933e-05,3.0716050628315175e-05,7.775686297419013e-05,3.931922740441668e-05,1.8249796978097115e-05,5.986744189165534e-06,0.0,0.0,1.420109440251079e-05,0.0,0.0,0.0,0.0,0.0,5.655476359416907e-05,1.596490219146747e-05,5.237197188553588e-06,0.0,0.0 +98259,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,4781.0,,593.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.0004259410458058169,0.00017447041180244032,0.0,0.0006004114576082573,0.0003640707995096481,0.0001224208395215364,0.00011391981857707275,0.0,0.0,0.00018960038770720778,0.0001224208395215364,0.00011391981857707275,0.0,0.0,0.00017447041180244032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1657886451240517e-05,0.0,0.0,5.0758651488979054e-05,2.980546685454381e-05,6.241653794021957e-05,2.2594347496138958e-05,1.4588677915522548e-05,1.357562607731755e-05,0.0,0.0,1.1657886451240515e-05,0.0,0.0,0.0,0.0,0.0,3.784744375305789e-05,1.2726414324449796e-05,1.1842679862711871e-05,0.0,0.0 +98260,50.0,the Greater Atlanta and Macon Area,G1301390001102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,124453.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.01082063345726294,0.0,0.0,0.010820633457262939,0.0036222942313178593,0.0027933372756106098,0.004405001950334471,0.0,0.0,0.0036222942313178593,0.0027933372756106098,0.004405001950334471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001289475489094957,0.0004048001000257078,0.001289475489094957,0.0004316623092374782,0.0003328769950392784,0.0005249361848182004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043166230923747826,0.0003328769950392785,0.0005249361848182005,0.0,0.0 +98261,50.0,the Greater Atlanta and Macon Area,G1302170100800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,27996.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.002494389820664687,0.0,0.0,0.002494389820664687,0.0015824788591347464,0.0004168262327353992,0.0004950847287945412,0.0,0.0,0.0015824788591347464,0.0004168262327353992,0.0004950847287945412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029725156933140825,9.819559493037622e-05,0.00029725156933140825,0.00018858091883418312,4.9672369087073826e-05,5.89982814101513e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018858091883418312,4.9672369087073826e-05,5.89982814101513e-05,0.0,0.0 +98262,50.0,the Greater Atlanta and Macon Area,G1300570090902,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,166174.0,,40704.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009364680451952129,0.006922092671641394,0.0,0.016286790853954944,0.007490740823105329,0.0023247872590359034,0.004207964406182551,0.0,0.00226328063526974,0.005474603695669705,0.0023247872590359034,0.0011945653703146375,0.0,0.00037072412693188407,0.002016137127435624,0.0030133990358679136,0.001892556508337856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046249385061690565,0.0,0.0,0.0011159718853428497,0.0007056616260686943,0.0015784657359597554,0.0006523985350175923,0.00027704065651770467,0.00014235417591824094,0.0,4.41785178893119e-05,0.00013470652123157755,0.00020133774418442562,0.00012644958520090246,0.0,0.0,0.0,0.0007259795887509373,0.0002253112393159317,0.00040782298322965683,0.0,0.000219350206291069 +98263,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,8291.0,,641.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00199075926490513,0.0005088139176442192,0.0,0.0024995731825493486,0.0014132984760572853,0.0005571148487079747,0.0004435580364639057,0.0,8.560182132018318e-05,0.0009901690868069884,0.0005571148487079747,0.0004435580364639057,0.0,0.0,0.00042312938925029677,0.0,8.560182132018318e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.399589677325492e-05,0.0,0.0,0.00023723701605349936,8.667524584297686e-05,0.0002712329128267543,0.00011799757192324444,6.639088243192237e-05,5.2858417826959576e-05,0.0,0.0,2.8270970073467523e-05,0.0,5.719400708764442e-06,0.0,0.0,0.0,0.00015335940753039435,6.0453474316756565e-05,4.813123259512552e-05,0.0,9.288798384477887e-06 +98264,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010400,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,25372.0,,4315.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001233323940378873,0.0007338773895374054,0.0,0.0019672013299162788,0.0009108441268709526,0.00032958968843736157,0.000418028731200585,0.0,0.0003087387834073794,0.0006065379338185864,0.00032958968843736157,0.00023354432062493554,0.0,6.365199749798957e-05,0.0003043061930523662,0.0001844844105756494,0.00024508678590938986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9033221011803784e-05,0.0,0.0,0.00014697341001188266,8.387305463400213e-05,0.0001960066310236865,7.228023839989209e-05,3.927672108555041e-05,2.78311350873565e-05,0.0,7.585315439083652e-06,2.0331887903785566e-05,1.232612559802417e-05,1.637520750999405e-05,0.0,0.0,0.0,9.075405042720499e-05,3.2839426991188076e-05,4.1651254514564594e-05,0.0,3.076189909072881e-05 +98265,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,33113.0,,7106.0,,1.8706521585294562,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,14029.891188970922,0.0,0.0,0.001628906034021671,0.0012084482433065387,0.0,0.0028373542773282097,0.0008984683345997559,0.0004391633220132879,0.0012013383683770974,0.0,0.0002983842523380686,0.0008984683345997559,0.0004391633220132879,0.00023005143942518512,0.0,6.122293798344233e-05,0.0,0.0009712869289519124,0.00023716131435462626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.074176094069432e-05,0.0,0.0,0.0001941129076305157,0.00013125425808353095,0.00027485466857120994,0.00010706836195609883,5.233406199018454e-05,2.7414689907652487e-05,0.0,7.295793776579886e-06,0.0,6.48959667545839e-05,1.5845794186110408e-05,0.0,0.0,0.0,8.70346781511829e-05,4.254177572574987e-05,0.00011637371537300284,0.0,2.8904499321274354e-05 +98266,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,174220.0,,21496.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.027664501115331922,0.0063276137160666575,0.0,0.03399214552100487,0.015509575645063757,0.006948433761862888,0.011534105424471934,0.0,0.0,0.0091819619289971,0.006948433761862888,0.011534105424471934,0.0,0.0,0.0063276137160666575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004227749719680797,0.0,0.0,0.0032967261349871814,0.0013276583375843763,0.003719501106955261,0.0010941969904169322,0.0008280316743997008,0.0013744974701705485,0.0,0.0,0.00042277497196807964,0.0,0.0,0.0,0.0,0.0,0.0016970945168663669,0.0007603140864669463,0.0012620891454925085,0.0,0.0 +98267,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Propane,32652.0,,,9206.0,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027914552827271438,0.0,0.0008676522415388186,0.0036590771506665246,0.0024124535089428763,0.0009705579964339216,0.0002760960188891641,0.0,0.0,0.0015448012674040578,0.0009705579964339216,0.0002760960188891641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008676522415388186,0.0,0.0,0.0,0.0,6.997388778796427e-05,0.0003326514069426654,0.0001525343185046485,0.00040262529473062965,0.00018409047002419874,0.00011565919935417313,3.290173756429348e-05,0.0,0.0,0.0,0.0,0.0,6.997388778796428e-05,0.0,0.0,0.00026545349143161304,0.00010679501504804172,3.0380130399533687e-05,0.0,0.0 +98268,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,41708.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.003377422763080252,0.0,0.0,0.0033774227630802515,0.0019830619336913785,0.0011670144375973005,0.00022734639179157243,0.0,0.0,0.0019830619336913785,0.0011670144375973005,0.00022734639179157243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004024805518688872,0.00011591043450289348,0.0004024805518688872,0.0002363174282435319,0.00013907071984519572,2.7092403780159547e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023631742824353194,0.00013907071984519575,2.709240378015955e-05,0.0,0.0 +98269,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,34671.0,,3745.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.004020359451996973,0.0006368213911240365,0.0,0.0046571985734824295,0.0027867518258353793,0.0005162017423834173,0.0008399758722750015,0.0,0.0005142691329886316,0.0024585096448659417,0.0005162017423834173,0.0005313789317589825,0.0,0.0005142691329886316,0.0003282421809694375,0.000308596940516019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.254905567305572e-05,0.0,0.0,0.0004790989225591252,0.00017782371384576128,0.0005216479782321809,0.00029297612216525184,6.151482263014938e-05,6.332346067958978e-05,0.0,6.12845170841342e-05,2.193141597781776e-05,2.0618824344726308e-05,0.0,0.0,0.0,0.0,0.0003121411794762392,5.781922136785492e-05,9.408482559257151e-05,0.0,5.760275179551529e-05 +98270,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,102461.0,,11440.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.0049091647396228,0.001945552558622394,0.0,0.006854717298245194,0.002896591414832606,0.0015621866839980124,0.0010514636232933914,0.0,0.0013444578457597637,0.002425531172624643,0.0015621866839980124,0.0007176895695608974,0.0,0.00020375731343924683,0.00047106024220796276,0.000333774053732494,0.001140700532320517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001299902928130441,0.0,0.0,0.0005850167301263385,0.00029020342007680223,0.0007150070229393826,0.00028904638379224576,0.00018616310394783074,8.552583331366383e-05,0.0,2.428140907259807e-05,3.147345392743056e-05,2.230080435802019e-05,7.621484988991165e-05,0.0,0.0,0.0,0.00030213984240042,0.0001629497471014465,0.00010967686081124394,0.0,0.00014023872319435788 +98271,81.0,the Columbus-Albany Area,G1300950010700,ComStock 90.1-2007,gen5_led,200001_500000,Electricity,176900.0,,3373.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.019929523433665212,0.0009928701429432803,0.0,0.02092239357660849,0.005167607977226087,0.005225273747459471,0.010529511851922933,0.0,0.0,0.004174737834282807,0.005225273747459471,0.010529511851922933,0.0,0.0,0.0009928701429432803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.633842902527306e-05,0.0,0.0,0.0023749630107807295,0.0007420025361456344,0.0024413014398060023,0.0004974954854856301,0.0006226858315365936,0.0012547816937585057,0.0,0.0,6.633842902527306e-05,0.0,0.0,0.0,0.0,0.0,0.0006029754076158635,0.0006097040606919472,0.0012286219714981916,0.0,0.0 +98272,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,13717.0,,778.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032249969263168144,0.0006169947700952333,0.0,0.0038419916964120473,0.0022791588310340947,0.000514107170363535,0.0009595674695234447,0.0,8.915822549097339e-05,0.0016621640609388614,0.000514107170363535,0.0009595674695234447,0.0,8.915822549097339e-05,0.0006169947700952333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1222615421412195e-05,0.0,0.0,0.00038432093785066075,0.00016937000324282066,0.0004255435532720729,0.00019807908824621677,6.126584129663548e-05,0.00011435107637122985,0.0,1.0624931936578674e-05,4.1222615421412195e-05,0.0,0.0,0.0,0.0,0.0,0.000252442333057467,5.694311943554143e-05,0.00010628283006614407,0.0,9.875270712920469e-06 +98273,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5407.0,,379.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012984183506333873,0.00030072292011612176,0.0,0.00159905856367577,0.0009345899332541739,0.00025200845368366975,0.00036018930613468386,0.0,5.23535776769816e-05,0.0006338670131380522,0.00025200845368366975,0.00036018930613468386,0.0,5.23535776769816e-05,0.00030072292011612176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.009062205630793e-05,0.0,0.0,0.00015472767646311495,7.210038709111657e-05,0.00017481829851942286,7.553556993523875e-05,3.0030908349774588e-05,4.292241741492233e-05,0.0,6.238780763179295e-06,2.009062205630793e-05,0.0,0.0,0.0,0.0,0.0,0.00010217475810848652,2.7551016633323754e-05,3.937797093473087e-05,0.0,5.723594856873625e-06 +98274,85.0,Rural Climate Zone 3A,G1302770960900,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,121831.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.010533839086410908,0.0,0.0,0.01053383908641091,0.0032181121163771136,0.0025339794127887233,0.004781716867638773,0.0,0.0,0.0032181121163771136,0.0025339794127887233,0.004781716867638773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00125529807412946,0.0003681071193710036,0.00125529807412946,0.0003834964545103257,0.0003019696286096564,0.000569828333785994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038349645451032563,0.0003019696286096563,0.000569828333785994,0.0,0.0 +98275,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,87746.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.009354764890833183,0.0,0.0,0.009354764890833185,0.0052671769992988565,0.0030444369924441787,0.0010431205254907109,0.0,0.0,0.0052671769992988565,0.0030444369924441787,0.0010431205254907109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001114788173150568,0.00031571538896279887,0.001114788173150568,0.0006276786956412852,0.0003627993212747196,0.0001243065366749244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006276786956412851,0.0003627993212747195,0.00012430653667492436,0.0,0.0 +98276,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5046.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.000871649850138561,0.0,0.0,0.000871649850138561,0.0004433099152426877,0.0001862563300609203,0.00020296315895626041,0.0,3.912044587869241e-05,0.0004433099152426877,0.0001862563300609203,0.00020296315895626041,0.0,3.912044587869241e-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.00010387669609105762,2.8755233266257342e-05,0.00010387669609105762,5.2830353074112225e-05,2.219663341845163e-05,2.418762806788646e-05,0.0,4.6620815306072925e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.2830353074112225e-05,2.219663341845163e-05,2.418762806788646e-05,0.0,4.6620815306072925e-06 +98278,50.0,the Greater Atlanta and Macon Area,G1300670030219,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4763.0,,506.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011435907085934039,0.0004014601359305982,0.0,0.0015449681374502626,0.0009138304577456077,0.00022140683640012597,0.0003681291852136573,0.0,4.168436516461094e-05,0.0005123703218150094,0.00022140683640012597,0.0003681291852136573,0.0,4.168436516461094e-05,0.0004014601359305982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6821050546295075e-05,0.0,0.0,0.00013627686022851183,7.143152162011578e-05,0.00016309791077480693,6.105700073158533e-05,2.6384114763269407e-05,4.386839552159586e-05,0.0,4.967349212061181e-06,2.6821050546295075e-05,0.0,0.0,0.0,0.0,0.0,9.647049336995942e-05,2.3373292673670138e-05,3.886235550635255e-05,0.0,4.400500376365241e-06 +98279,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,238425.0,,19146.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.019410101847076595,0.00563568585247865,0.0,0.02504578769955524,0.008666591370439777,0.00547296955988823,0.010906196079620935,0.0,0.0,0.0030309055179611267,0.00547296955988823,0.010906196079620935,0.0,0.0,0.00563568585247865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037654292153943634,0.0,0.0,0.0023130642044059025,0.0010435304821843723,0.0026896071259453385,0.00036118713419260647,0.000652203171344371,0.0012996702416480433,0.0,0.0,0.0003765429215394364,0.0,0.0,0.0,0.0,0.0,0.0009306844802491531,0.0005877290866207695,0.0011711902633921344,0.0,0.0 +98280,50.0,the Greater Atlanta and Macon Area,G1300890021805,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,26485.0,,2326.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002370864155316433,0.0006847464957143444,0.0,0.0030556106510307777,0.0010623821012075772,0.0008112490528734755,0.001181979496949725,0.0,0.0,0.0003776356054932328,0.0008112490528734755,0.001181979496949725,0.0,0.0,0.0006847464957143444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.574998597846792e-05,0.0,0.0,0.00028253259417857006,0.0001331809676957217,0.000328282580157038,4.500231151369273e-05,9.66754248316094e-05,0.00014085485783326792,0.0,0.0,4.574998597846792e-05,0.0,0.0,0.0,0.0,0.0,0.00011413808142717003,8.715735171868774e-05,0.00012698714701118026,0.0,0.0 +98281,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12844.0,,1098.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011326315230337654,0.0003199251228778399,0.0,0.0014525870195110431,0.0008400122660504643,0.0004609801186667594,0.00015159463479381936,0.0,0.0,0.0005200871431726245,0.0004609801186667594,0.00015159463479381936,0.0,0.0,0.0003199251228778399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1376339272351176e-05,0.0,0.0,0.00013497490116793736,5.586444761160223e-05,0.00015635124044028855,6.197841868325535e-05,5.4934676187336693e-05,1.8065425897805725e-05,0.0,0.0,2.1376339272351176e-05,0.0,0.0,0.0,0.0,0.0,9.041589799298719e-05,4.961824138847147e-05,1.631710105882988e-05,0.0,0.0 +98282,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000100,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,39837.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00956565202746708,0.0,0.0,0.00956565202746708,0.00458329519833746,0.001248297863947367,0.0035414341904434045,0.0,0.00019254206766510768,0.00458329519833746,0.001248297863947367,0.0035414341904434045,0.0,0.00019254206766510768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011399201231445757,0.00038840875649177165,0.0011399201231445757,0.000546182362884908,0.00014875722540461087,0.0004220258155833852,0.0,2.2944863230764863e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000546182362884908,0.00014875722540461087,0.0004220258155833852,0.0,2.2944863230764863e-05 +98283,50.0,the Greater Atlanta and Macon Area,G1300670031313,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,44257.0,,9128.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.003943215444372938,0.002686844341757581,0.0,0.006630059786130519,0.0034680482700656053,0.0011747981290760627,0.001987244076595148,0.0,0.0,0.0007812039283080245,0.0011747981290760627,0.001987244076595148,0.0,0.0,0.002686844341757581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017951960737200848,0.0,0.0,0.00046990443928658014,0.0003114003676423873,0.0006494240466585886,9.309437921377182e-05,0.00013999814717356845,0.0002368155701131159,0.0,0.0,0.00017951960737200848,0.0,0.0,0.0,0.0,0.0,0.0003397003970107164,0.00011507319384774191,0.00019465346189192345,0.0,0.0 +98284,50.0,the Greater Atlanta and Macon Area,G1300630040622,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,25079.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0022345102345357397,0.0,0.0,0.0022345102345357397,0.0011306664752199658,0.0005585508346181906,0.0005453236143038808,0.0,0.0,0.0011306664752199658,0.0005585508346181906,0.0005453236143038808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002662834298985439,9.907006858512648e-05,0.0002662834298985439,0.00013473992754185077,6.656171438200108e-05,6.498544521174601e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013473992754185077,6.656171438200108e-05,6.498544521174601e-05,0.0,0.0 +98285,50.0,the Greater Atlanta and Macon Area,G1301210010212,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,Electricity,505747.0,,35776.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.024024072352606108,0.006083960756954078,0.0,0.03010803310956019,0.010884456111433375,0.005248488396479772,0.00887177640447466,0.0,0.005103312197172378,0.010073593492610102,0.005248488396479772,0.0035986782663438572,0.0,0.005103312197172378,0.0008108626188232747,0.005273098138130803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040649476917329106,0.0,0.0,0.0028629015943790084,0.0011519339130918464,0.0032693963635522997,0.0012004503835916461,0.0006254520706491158,0.0004288474324901578,0.0,0.0006081517076480888,5.417711031305807e-05,0.00035231765886023297,0.0,0.0,0.0,0.0,0.001181930453592646,0.0005699272621082907,0.0009633759006937087,0.0,0.0005541627471576536 +98286,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,33928.0,,1949.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.004475094209861613,0.0007243630339953156,0.0,0.005199495992280702,0.0025355418579500093,0.0005425554296567031,0.0019858567183192433,0.0,0.00013554198635474558,0.0022018791808486042,0.0005425554296567031,0.0017306983477800779,0.0,0.0,0.00033366267710140487,0.00025515837053916506,0.00013554198635474558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.839854296688205e-05,0.0,0.0,0.00053329046517513,0.00016592596664025824,0.0005816890081420121,0.0002623947379759181,6.465554106711494e-05,0.00020624480372537416,0.0,0.0,2.2293776264460326e-05,1.7048486436124864e-05,9.056280266296854e-06,0.0,0.0,0.0,0.0002836614992382267,6.06979080679389e-05,0.00022216596118282173,0.0,1.516363965302459e-05 +98287,50.0,the Greater Atlanta and Macon Area,G1302230120103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,8789.0,,,1393.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007750431368531132,0.0,0.00013133544396883888,0.0009063785808219522,0.000641308178528692,0.00021556143520972472,4.950896708353548e-05,0.0,0.0,0.0005099727345598531,0.00021556143520972472,4.950896708353548e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013133544396883888,0.0,0.0,0.0,0.0,1.05916327923706e-05,9.236200113436881e-05,3.332719722299838e-05,0.00010295363392673942,6.0773523495945935e-05,2.568848697145494e-05,5.899990666967951e-06,0.0,0.0,0.0,0.0,0.0,1.05916327923706e-05,0.0,0.0,7.28448452373974e-05,2.448516939707348e-05,5.623619292268532e-06,0.0,0.0 +98288,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,64970.0,,161.0,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,100799.30806909183,0.0,0.0,0.011183067302838707,8.451134384617493e-05,0.0,0.011267578646684881,0.005418061561580065,0.0014769831372186159,0.004287968010148655,0.0,8.451134384617493e-05,0.005418061561580065,0.0014769831372186159,0.004287968010148655,0.0,0.0,0.0,0.0,8.451134384617493e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.647163221558963e-06,0.0,0.0,0.0013326616089230836,0.00047520733607989195,0.0013383087721446426,0.0006456585158945408,0.000176008841822707,0.0005109877453715114,0.0,0.0,0.0,0.0,5.647163221558964e-06,0.0,0.0,0.0,0.0006435312806106468,0.00017542894980643916,0.0005093042065737838,0.0,1.0037850754061053e-05 +98289,50.0,the Greater Atlanta and Macon Area,G1300670031208,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,102366.0,,7950.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.00902679076410434,0.002315986957128576,0.0,0.01134274734763348,0.007837512478119167,0.0025371978818337225,0.0009680369876805884,0.0,0.0,0.005521525520990591,0.0025371978818337225,0.0009680369876805884,0.0,0.0,0.002315986957128576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001547402178818093,0.0,0.0,0.0010757035439036302,0.0003905144852046123,0.0012304437617854393,0.0006579885062034282,0.000302352499841523,0.00011535891830114067,0.0,0.0,0.0001547402178818093,0.0,0.0,0.0,0.0,0.0,0.000850201282022674,0.0002752313183427183,0.0001050111614200469,0.0,0.0 +98290,50.0,the Greater Atlanta and Macon Area,G1301350050532,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,6029.0,,1321.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005371908686349896,0.00038892938061078734,0.0,0.0009261202492457768,0.0004898981853302295,0.000229435496681626,0.00020678656723392133,0.0,0.0,0.00010096880471944215,0.000229435496681626,0.00020678656723392133,0.0,0.0,0.00038892938061078734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.59864550196245e-05,0.0,0.0,6.401694250735994e-05,4.7896791856162344e-05,9.000339752698443e-05,1.2032434920544685e-05,2.7341788287535583e-05,2.464271929927966e-05,0.0,0.0,2.59864550196245e-05,0.0,0.0,0.0,0.0,0.0,4.760990935889096e-05,2.2297292637165246e-05,2.0096195530928226e-05,0.0,0.0 +98291,50.0,the Greater Atlanta and Macon Area,G1301530021202,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,254134.0,,17190.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,140298.9118897092,0.0,0.0,0.01308162022896774,0.0029233465302154656,0.0,0.016004966759183205,0.008613586881475852,0.0024174283974556796,0.0032594432612939868,0.0,0.001714543679680526,0.008613586881475852,0.0024174283974556796,0.0017203415078648832,0.0,0.00033029890289416365,0.0,0.0015391017534291036,0.0013842447767863622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019532136983927374,0.0,0.0,0.0015589106496727357,0.0006746282986537312,0.0017542320195120095,0.0010264640072396942,0.0002880801313334203,0.0002050096739351867,0.0,3.9361062948206636e-05,0.0,0.00010283401563742889,9.248735420184487e-05,0.0,0.0,0.0,0.0009440963007101347,0.00026496339314551495,0.0003572528341218725,0.0,0.00018792337822393679 +98292,50.0,the Greater Atlanta and Macon Area,G1300890021209,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Propane,161734.0,,,40465.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013097217571956336,0.0,0.0038139521341996213,0.01691116970615596,0.01129369398454151,0.004033340642938503,0.0015841350786759462,0.0,0.0,0.007479741850341888,0.004033340642938503,0.0015841350786759462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038139521341996213,0.0,0.0,0.0,0.0,0.00030758926189175913,0.0015607713622356057,0.0006914656456998402,0.001868360624127365,0.0008913470981749144,0.00048064579633451534,0.00018877846772617606,0.0,0.0,0.0,0.0,0.0,0.00030758926189175913,0.0,0.0,0.0012477370583053413,0.00044560695516027545,0.0001750166106617479,0.0,0.0 +98293,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,67070.0,,4394.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0059758801382886854,0.0012934441470229814,0.0,0.007269293595705369,0.0022760946510691268,0.002656154735459878,0.0023370442091763645,0.0,0.0,0.0009826505040461456,0.002656154735459878,0.0023370442091763645,0.0,0.0,0.0012934441470229814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.641972066248754e-05,0.0,0.0,0.0007121333356875197,0.0002689845834236295,0.0007985530563500073,0.00011710043793846907,0.00031652849255556253,0.00027850074797627526,0.0,0.0,8.641972066248754e-05,0.0,0.0,0.0,0.0,0.0,0.0002500356212365621,0.0002917863275453815,0.0002567311075680637,0.0,0.0 +98294,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,11685.0,,765.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005642687521931805,0.0001301231224617675,0.0,0.0006943918746549479,0.0002568242851694648,0.0002485087456634601,5.040741751721012e-05,0.0,0.00013866915666623298,0.0002146260249897392,0.0002485087456634601,5.040741751721012e-05,0.0,5.072656402277107e-05,4.219826017972567e-05,0.0,8.79425926434619e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.694604685095542e-06,0.0,0.0,6.724197260731374e-05,2.824435500405056e-05,7.593657729240928e-05,2.557624755417228e-05,2.9613935210184114e-05,6.006879124040627e-06,0.0,6.04491071891672e-06,2.819615635717045e-06,0.0,5.87617376183048e-06,0.0,0.0,0.0,2.808552042897938e-05,2.71761583936883e-05,5.5124014207517015e-06,0.0,1.5164435987231463e-05 +98295,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,225796.0,,15151.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013148640995135538,0.0025765938519234934,0.0,0.01572523484705903,0.009677621331016061,0.0031222457246256187,0.0018808190090777814,0.0,0.001044584243062411,0.007292231696646418,0.0031222457246256187,0.0016895970611625118,0.0,0.001044584243062411,0.0023853896343696435,0.00019122194791526946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017215343907275366,0.0,0.0,0.001566898367776229,0.0006874258971983455,0.0017390518068489825,0.0008690012866841962,0.0003720720439110111,0.0002013460462046605,0.0,0.00012448110386957808,0.0001593782538829973,1.2776369832299862e-05,0.0,0.0,0.0,0.0,0.0010702469645374676,0.00034528877448543647,0.00020799954518353975,0.0,0.00011552044423955961 +98296,50.0,the Greater Atlanta and Macon Area,G1301350050718,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,38967.0,,9172.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007937607792152754,0.006309062410301273,0.0,0.014246670202454027,0.005190374302399771,0.0004736386885870954,0.006550041512913726,0.00036907097084633447,0.0016634730077360826,0.0030265110568877705,0.0004736386885870954,0.00387495831400245,0.00036907097084633447,0.00019335704185808743,0.0021638632455120007,0.0026750831989112763,0.0014701159658779951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042153374075911326,0.0,0.0,0.0009459085986895929,0.0006780377232420147,0.001367442339448706,0.0003606631755690275,5.6442560521762556e-05,0.0004617709119367518,4.39814379837962e-05,2.304196595497757e-05,0.00014457637427750097,0.00017873302788029926,9.8224338601313e-05,0.0,0.0,0.0,0.0004981892244171848,4.546140165885158e-05,0.0006286945624923679,3.542464762817235e-05,0.0001596656193330411 +98297,50.0,the Greater Atlanta and Macon Area,G1300890020400,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,19285.0,,10695.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.003831567731538005,0.0073567477468973195,0.0,0.011188315478435323,0.0042953807840959615,0.00046453025226811287,0.003964393117858916,0.00036849721107820956,0.0020955858331051396,0.0023130407852244724,0.00046453025226811287,0.000423004389050074,0.00036849721107820956,0.00026249509391713645,0.0019823399988714895,0.003541388728808842,0.001833090739188003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004915369034300812,0.0,0.0,0.0004565976495228118,0.0006242124417878881,0.0009481345529528929,0.0002756388663289945,5.535682419809922e-05,5.040829845922327e-05,4.3912824259662446e-05,3.128083627683234e-05,0.00013244891603111299,0.00023661586743069083,0.000122476911897222,0.0,0.0,0.0,0.0003640046571211648,3.936581730433262e-05,0.00033595567659630836,3.122766239148695e-05,0.00017758681732519605 +98298,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,99582.0,,4291.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.010080846320591627,0.0012897476418261226,0.0,0.011370593962417748,0.003459968355494668,0.0019162887197498684,0.00425604813354183,0.0,0.001738320091653587,0.003459968355494668,0.0019162887197498684,0.0029663004917157075,0.0,0.001738320091653587,0.0,0.0012897476418261226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.617322044306166e-05,0.0,0.0,0.0012013160361407707,0.0005390751995861548,0.0012874892565838323,0.00041231810681460887,0.00022836062525909828,0.00035348860952591124,0.0,0.00020715242903599702,0.0,8.617322044306166e-05,0.0,0.0,0.0,0.0,0.0003917712742661519,0.0002169808496676049,0.00048191117065212987,0.0,0.00019682951039366213 +98299,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,12502.0,,,,8.72605822017302,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,65445.43665129765,0.0,0.0,0.003001853241368163,0.0,0.0,0.003001853241368163,0.0016600963840953786,0.0007491606739306467,0.0005142725845110136,0.0,7.824089175738482e-05,0.0016600963840953786,0.0007491606739306467,0.0005142725845110136,0.0,7.824089175738482e-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.00035772232356511024,0.00013137563928245492,0.00035772232356511024,0.00019782897034299196,8.927534941046339e-05,6.128440302873276e-05,0.0,9.323744815886328e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019782897034299196,8.927534941046339e-05,6.128440302873276e-05,0.0,9.323744815886328e-06 +98300,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock 90.1-2004,gen5_led,100001_200000,NaturalGas,216870.0,,11994.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,480687.657779034,0.0,0.0,0.017547405493578545,0.0034943003737167204,0.0,0.021041705867295264,0.0147254551170159,0.004658398945767996,0.001657821430911932,0.0,0.0,0.011231154743299181,0.004658398945767996,0.001657821430911932,0.0,0.0,0.0034943003737167204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023346849811241657,0.0,0.0,0.002091089328710739,0.0007145748519904589,0.002324557826823156,0.0013383943193998882,0.0005551321149977169,0.0001975592747518445,0.0,0.0,0.00023346849811241657,0.0,0.0,0.0,0.0,0.0,0.0016267774182223377,0.0005146311709774734,0.000183145882135499,0.0,0.0 +98301,46.0,the Tallahassee-Valdosta Area,G1301850010700,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,80852.0,,2477.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003933675715014335,0.0004211670051719343,0.0,0.004354860450547689,0.0015375946727083992,0.0005679921280913916,0.0018785317924545945,0.0,0.000370724126931884,0.0015071871028730088,0.0005679921280913916,0.0017707843861049337,0.0,8.771209794500122e-05,3.040756983539055e-05,0.00010774740634966088,0.0002830120289868828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8140238797751404e-05,0.0,0.0,0.0004687692386271707,0.00015467877719304478,0.0004969094774249221,0.00017960884472143044,6.768662612816771e-05,0.00021102127083809873,0.0,1.0452496939473875e-05,2.0316792766752396e-06,7.19913409000317e-06,1.890942543107299e-05,0.0,0.0,0.0,0.00017544657836528026,6.481049731820151e-05,0.00021434906167827218,0.0,4.2301316947909325e-05 +98302,85.0,Rural Climate Zone 3A,G1300310110601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,30566.0,,358.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.003438535125534627,0.00013294584196201607,0.0,0.0035714422190728707,0.002184829874388888,0.00040406856309527933,0.0009155090084630002,0.0,6.703477312570322e-05,0.002184829874388888,0.00040406856309527933,0.0007825631665009839,0.0,6.703477312570322e-05,0.0,0.00013294584196201607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.882167252951964e-06,0.0,0.0,0.00040976181947713445,0.0001342154154386642,0.00041864398673008643,0.00026036083154404126,4.815186222118051e-05,9.325613822583058e-05,0.0,7.988369931208503e-06,0.0,8.882167252951964e-06,0.0,0.0,0.0,0.0,0.00025610547023734317,4.7364863769353815e-05,0.00010731584544289631,0.0,7.857807280493106e-06 +98303,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970701,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7629.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001831796269178181,0.0,0.0,0.0018317962691781805,0.0011181169298816972,0.0003782194482098528,0.00029096348541488357,0.0,4.44964056717474e-05,0.0011181169298816972,0.0003782194482098528,0.00029096348541488357,0.0,4.44964056717474e-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.00021829316390662934,7.013927147035847e-05,0.00021829316390662934,0.0001332447752778455,4.507199921189343e-05,3.4673801274314706e-05,0.0,5.302588142575699e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013324477527784553,4.5071999211893446e-05,3.467380127431471e-05,0.0,5.302588142575701e-06 +98304,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001300,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,66430.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.008272826905261026,0.0,0.0,0.008272826905261026,0.003634565655920258,0.0037729174013592186,0.0008653438479815494,0.0,0.0,0.003634565655920258,0.0037729174013592186,0.0008653438479815494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009858581948495693,0.00030772951548558875,0.0009858581948495693,0.000433124780397509,0.00044961191394626024,0.00010312150050579995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000433124780397509,0.00044961191394626024,0.00010312150050579995,0.0,0.0 +98305,85.0,Rural Climate Zone 3A,G1301470960400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,13752.0,,140.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0014891794224086857,5.2194126820995514e-05,0.0,0.0015413735492296814,0.0009157027505818607,0.0002336529953456592,0.0003533081279538509,0.0,3.8709675348310707e-05,0.0009157027505818607,0.0002336529953456592,0.0003011140011328554,0.0,3.8709675348310707e-05,0.0,5.2194126820995514e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4870926879852877e-06,0.0,0.0,0.00017746236571162307,6.021787197052941e-05,0.00018094945839960833,0.00010912236226314211,2.784393383745543e-05,3.58831193782531e-05,0.0,4.612950232772467e-06,0.0,3.4870926879852877e-06,0.0,0.0,0.0,0.0,0.00010749887128634568,2.7429679834828377e-05,4.1476587186395556e-05,0.0,4.544320092038732e-06 +98306,50.0,the Greater Atlanta and Macon Area,G1301130140304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,19161.0,,447.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004246263872849782,0.00035481334634162876,0.0,0.004601077219191411,0.00197645094114823,0.0009829735713916688,0.0015244567831629145,0.0,0.00011719592348859863,0.0016216375948066007,0.0009829735713916688,0.0015244567831629145,0.0,0.00011719592348859863,0.00035481334634162876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.370558063192865e-05,0.0,0.0,0.0005060239504784721,0.00019758722592366215,0.0005297295311104007,0.00019324928608775447,0.00011714019305110228,0.00018166832463760343,0.0,1.3966146702011939e-05,2.370558063192865e-05,0.0,0.0,0.0,0.0,0.0,0.0002275520232414526,0.00011317135189457521,0.00017551319799081282,0.0,1.349295798356021e-05 +98307,50.0,the Greater Atlanta and Macon Area,G1300890021308,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,6449.0,,374.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001245651237587709,0.0002968356876503743,0.0,0.001542569632311823,0.0006922582071980032,0.0004218887831442072,0.00040005411567703,0.0,2.8451233366321743e-05,0.0004237910458402112,0.0004218887831442072,0.00040005411567703,0.0,0.0,0.00026846716135779186,0.0,2.8451233366321743e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9834800364619978e-05,0.0,0.0,0.00014844512298860062,6.544326578536472e-05,0.00016827992335322062,5.050347322180396e-05,5.027677925535169e-05,4.767472677085594e-05,0.0,0.0,1.793919252815727e-05,0.0,1.9011343899217804e-06,0.0,0.0,0.0,7.551889756401568e-05,4.6024121442538106e-05,4.3642163383171304e-05,0.0,3.103763531902196e-06 +98308,50.0,the Greater Atlanta and Macon Area,G1301170130306,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5952.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011138988691209923,0.0,0.0,0.0011138988691209923,0.0004882198562831317,0.00038533225655143337,0.00018658715835587756,0.0,5.367689085681052e-05,0.0004882198562831317,0.00038533225655143337,0.00018658715835587756,0.0,5.367689085681052e-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.00013274044511837283,4.339027472442543e-05,0.00013274044511837283,5.817989660927791e-05,4.591904765418022e-05,2.2235108715997115e-05,0.0,6.3965361510115815e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.817989660927791e-05,4.591904765418022e-05,2.2235108715997115e-05,0.0,6.3965361510115815e-06 +98309,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,93625.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0076330981539030965,0.0,0.0,0.0076330981539030965,0.00554801129970031,0.0014647972064850195,0.0006203200213172055,0.0,0.0,0.00554801129970031,0.0014647972064850195,0.0006203200213172055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009096222770185957,0.00025280488531562916,0.0009096222770185957,0.0006611463090878474,0.00017455719073284392,7.392239676392136e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006611463090878474,0.00017455719073284392,7.392239676392136e-05,0.0,0.0 +98310,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,27293.0,,2703.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0024317830238173733,0.0007956587328742424,0.0,0.0032274110670853185,0.0012571383427727992,0.0008420921072026667,0.0011281499275035544,0.0,0.0,0.0004614796098985567,0.0008420921072026667,0.0011281499275035544,0.0,0.0,0.0007956587328742424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3160755359365686e-05,0.0,0.0,0.00028978961846368287,0.00013722480593104998,0.0003429503738230485,5.499339323100531e-05,0.00010035005099857384,0.0001344388598238848,0.0,0.0,5.3160755359365686e-05,0.0,0.0,0.0,0.0,0.0,0.00013358573037012574,8.948218772125772e-05,0.00011987919460014701,0.0,0.0 +98311,50.0,the Greater Atlanta and Macon Area,G1300670030410,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,71611.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.0070092298719386355,0.0,0.0,0.007009229871938637,0.003013995544891093,0.0016043298588187106,0.0023908737786225353,0.0,0.0,0.003013995544891093,0.0016043298588187106,0.0023908737786225353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008352763840254778,0.00028878604141805147,0.0008352763840254778,0.0003591720269133117,0.00019118489017218665,0.0002849158097188806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003591720269133116,0.0001911848901721866,0.0002849158097188805,0.0,0.0 +98312,50.0,the Greater Atlanta and Macon Area,G1301210011423,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,15912.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00393727024535973,0.0,0.0,0.0039372702453597305,0.002691040058255846,0.0005334606256185329,0.0005996262846099787,0.0,0.00011306056980163324,0.002691040058255846,0.0005334606256185329,0.0005996262846099787,0.0,0.00011306056980163324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046919403929912985,0.000163240548187573,0.00046919403929912985,0.0003206840973989243,6.357108609346472e-05,7.145587196552234e-05,0.0,1.347312785887849e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003206840973989242,6.35710860934647e-05,7.145587196552233e-05,0.0,1.3473127858878487e-05 +98313,85.0,Rural Climate Zone 3A,G1300090970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,126177.0,,,12370.0,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010551332162000599,0.0,0.0011779898481310237,0.011729322010131622,0.003553396065179517,0.0032865499384209912,0.004889376006531114,0.0,0.0,0.002375406217048493,0.0032865499384209912,0.004889376006531114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011779898481310237,0.0,0.0,0.0,0.0,9.500450969936423e-05,0.0012573802438479887,0.00045690100440375325,0.0013523847535473529,0.0002830722038291086,0.0003916513004749195,0.0005826567395439605,0.0,0.0,0.0,0.0,0.0,9.500450969936423e-05,0.0,0.0,0.0004097047261310553,0.0003789375059064189,0.0005637425215098788,0.0,0.0 +98314,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,13654.0,,2486.0,,8.53126424238864,Food Service,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,25593.792727165917,0.0,0.0,0.004826175837445078,0.001928287093835181,0.0,0.0067544629312802605,0.00250781632608732,0.0006666162956169428,0.002524392786616368,0.00041643303280291795,0.0006392044901567118,0.0018065916153170466,0.0006666162956169428,0.001936534893708171,0.00041643303280291795,0.0,0.0007012247107702726,0.0005878578929081966,0.0006392044901567118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012883685214349304,0.0,0.0,0.0005751243500519234,0.00028404735410624243,0.0007039612021954165,0.00021528739597654473,7.943914118837324e-05,0.0002307724396312895,4.962537325571595e-05,0.0,4.685172901364413e-05,3.92772220859309e-05,4.2707901043917995e-05,0.0,0.0,0.0,0.00026136872964718484,6.947584340012226e-05,0.0002630963555444465,4.340133351657323e-05,6.661894008708957e-05 +98315,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,44408.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003753461608634241,0.0,0.0,0.003753461608634241,0.0015463878821286477,0.0009309385174345163,0.0012761658986773748,0.0,0.0,0.0015463878821286477,0.0009309385174345163,0.0012761658986773748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004472933882955045,0.00015824995070779519,0.0004472933882955045,0.00018428031175949993,0.00011093829834311089,0.00015207843541905388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018428031175949993,0.00011093829834311089,0.00015207843541905388,0.0,0.0 +98316,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,69383.0,,,,9.325022323477118,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.019289488958861668,0.0,0.0,0.019289488958861668,0.00900590378500962,0.0019062695209292654,0.008057718537396065,0.0,0.00031950873136866163,0.00900590378500962,0.0019062695209292654,0.008057718537396065,0.0,0.00031950873136866163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022986936604324957,0.0008072833783492086,0.0022986936604324957,0.0010732173351620151,0.00022716670577333864,0.0009602238068081401,0.0,3.807528010805913e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0010732173351620151,0.00022716670577333864,0.0009602238068081401,0.0,3.807528010805913e-05 +98317,35.0,Eastern Counties in South Carolina and Georgia,G1302450000200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7781.0,,70.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016267654333784376,5.590998184777181e-05,0.0,0.0016826754152262095,0.000926319225880243,0.00031817411267511566,0.00038955031731213795,0.0,4.846634521123415e-05,0.0008704092440324714,0.00031817411267511566,0.00038955031731213795,0.0,4.846634521123415e-05,5.590998184777181e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7336431431032364e-06,0.0,0.0,0.00019385777786188395,6.829979058127382e-05,0.0001975914210049872,0.00010372460492238887,3.7916054269900234e-05,4.642178726572136e-05,0.0,5.775619392295694e-06,3.7336431431032364e-06,0.0,0.0,0.0,0.0,0.0,0.0001087748299462205,3.7362211678849144e-05,4.574370080774095e-05,0.0,5.691254495400466e-06 +98318,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,114461.0,,1123.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005613769302455699,0.00019097372285538874,0.0,0.005804743025311088,0.0029230805747941656,0.0011439451884603868,0.0011020483444248023,0.0,0.0006356689176317331,0.002732106851938777,0.0011439451884603868,0.0011020483444248023,0.0,0.0006356689176317331,0.00019097372285538874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2759759356168176e-05,0.0,0.0,0.0006689827521136948,0.00018932540545514524,0.0006817425114698629,0.00032558024072687833,0.00013632188271589347,0.00013132911145692086,0.0,7.575151721400227e-05,1.2759759356168176e-05,0.0,0.0,0.0,0.0,0.0,0.0003433034474738264,0.0001343515229467121,0.00012943091585851984,0.0,7.465662519080461e-05 +98319,50.0,the Greater Atlanta and Macon Area,G1300670031405,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,286570.0,,45487.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.017103451300962576,0.007735508462509155,0.0,0.024838959763471738,0.01491245734920239,0.004215411157978974,0.0028410599228650005,0.0,0.002870031333425367,0.010004161397289173,0.004215411157978974,0.002473154923398905,0.0,0.0004107238222955232,0.004908295951913217,0.0003679049994660956,0.0024593075111298437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005168415979986674,0.0,0.0,0.0020381852208429803,0.0011268189282852491,0.0025550268188416474,0.0011921765699847429,0.0005023423969106046,0.0002947210902072735,0.0,4.8945163740359264e-05,0.00032794373317954526,2.458126815545846e-05,0.00016431659666366364,0.0,0.0,0.0,0.0015339502469051407,0.0004336127061536499,0.0002922418799329651,0.0,0.00029522198584989106 +98320,81.0,the Columbus-Albany Area,G1302150002400,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,NaturalGas,10679.0,,143.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0023919712796145096,0.00011380493346528697,0.0,0.002505776213079797,0.0017466906903004335,0.0005198139584515472,0.0002084218258230547,0.0,3.0849738504761666e-05,0.0016637354953399084,0.0005198139584515472,0.0002084218258230547,0.0,0.0,8.295519496052534e-05,0.0,3.0849738504761666e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.604224245038742e-06,0.0,0.0,0.00028504609491267804,0.00010116627462346518,0.0002926503191577168,0.00019826379603967475,6.19451162313261e-05,2.4837182641677284e-05,0.0,0.0,5.542904736754259e-06,0.0,2.061319508284485e-06,0.0,0.0,0.0,0.00020399650428398262,6.070922057980164e-05,2.4341644528416884e-05,0.0,3.6029497655156735e-06 +98321,50.0,the Greater Atlanta and Macon Area,G1301210001202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5862.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0014076743950430122,0.0,0.0,0.0014076743950430124,0.0008891010426975547,0.00028988829345627255,0.00018096307734160466,0.0,4.763927447384108e-05,0.0008891010426975547,0.00028988829345627255,0.00018096307734160466,0.0,4.763927447384108e-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.0001677460738739688,5.93144737589557e-05,0.0001677460738739688,0.00010595007603673117,3.4544652698487705e-05,2.1564536406359803e-05,0.0,5.676952911363457e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010595007603673115,3.45446526984877e-05,2.15645364063598e-05,0.0,5.676952911363456e-06 +98322,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,43261.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003600425730152225,0.0,0.0,0.003600425730152225,0.0022273264203697793,0.0009503291792083791,0.00042277013057406766,0.0,0.0,0.0022273264203697793,0.0009503291792083791,0.00042277013057406766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004290552108586822,0.00011168893455654037,0.0004290552108586822,0.00026542583532266473,0.0001132487424905638,5.038063304545377e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026542583532266473,0.0001132487424905638,5.038063304545377e-05,0.0,0.0 +98323,50.0,the Greater Atlanta and Macon Area,G1300130180103,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,65892.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007641633135345107,0.0,0.0,0.007641633135345107,0.00578000485220586,0.0013830314767985913,0.0004785968063406555,0.0,0.0,0.00578000485220586,0.0013830314767985913,0.0004785968063406555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009106375967847442,0.0002862942318933102,0.0009106375967847442,0.0006887912092601653,0.0001648129971699625,5.703339035461633e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006887912092601653,0.0001648129971699625,5.703339035461633e-05,0.0,0.0 +98324,85.0,Rural Climate Zone 3A,G1300090970400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,32840.0,,1102.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007569135320695678,0.0008550219201666123,0.0,0.00842415724086229,0.0033628382462539317,0.0007038122558284657,0.0034037538024866065,0.0004242765287605651,0.0005294764075327197,0.0033628382462539317,0.0007038122558284657,0.0025487318823199947,0.0004242765287605651,0.0005294764075327197,0.0,0.0008550219201666123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.712552229985036e-05,0.0,0.0,0.000901999018478181,0.00029668847852567745,0.0009591245407780314,0.00040074284167285125,8.387192685198851e-05,0.00030372738216620835,5.056020222798525e-05,6.309666555914758e-05,0.0,5.712552229985036e-05,0.0,0.0,0.0,0.0,0.00038287280216043966,8.013188588064989e-05,0.0003875312045335564,4.830560721688533e-05,6.0283040986499925e-05 +98325,35.0,Eastern Counties in South Carolina and Georgia,G1302450001602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,39495.0,,1785.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003188195238583058,0.0005199656487748734,0.0,0.0037081912609573694,0.0025122915302947667,0.000939698419405166,0.0002562013112574366,0.0,0.0,0.001992325881519893,0.000939698419405166,0.0002562013112574366,0.0,0.0,0.0005199656487748734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4741734128904645e-05,0.0,0.0,0.0003799318618359036,0.00011722374322984518,0.00041467359596480827,0.00023742212283276739,0.00011198227941885169,3.053107915502017e-05,0.0,0.0,3.4741734128904645e-05,0.0,0.0,0.0,0.0,0.0,0.00028094046117521404,0.00010508307022884882,2.8650064560745356e-05,0.0,0.0 +98326,50.0,the Greater Atlanta and Macon Area,G1301510070113,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,6599.0,,243.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.001301809340656699,0.00019237665351762905,0.0,0.0014942687012480674,0.0006904386515757384,0.00018476760273361276,0.0005873856376965613,0.0,3.159410216841543e-05,0.0005295733931527855,0.00018476760273361276,0.0005873856376965613,0.0,0.0,0.0001608652584229529,0.0,3.159410216841543e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2855494003418734e-05,0.0,0.0,0.0001551356905633868,5.8016043813105055e-05,0.00016799118456680554,6.310888352461028e-05,2.201862342557853e-05,6.99983274702143e-05,0.0,0.0,1.0749757453417642e-05,0.0,2.1112634175863956e-06,0.0,0.0,0.0,7.762165322210065e-05,2.0772253629393008e-05,6.603605428645889e-05,0.0,3.551925195357264e-06 +98327,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5834.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014008924149963892,0.0,0.0,0.0014008924149963892,0.0008210331210101048,0.00025647463566559235,0.00027913637387016256,0.0,4.424828445052947e-05,0.0008210331210101048,0.00025647463566559235,0.00027913637387016256,0.0,4.424828445052947e-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.00016694090468985002,5.293994575091789e-05,0.00016694090468985002,9.7840498338419e-05,3.056345173239019e-05,3.326399535531018e-05,0.0,5.27295926373065e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.7840498338419e-05,3.056345173239019e-05,3.326399535531018e-05,0.0,5.27295926373065e-06 +98328,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,14347.0,,669.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034751031173044806,0.0005304004638901784,0.0,0.004005503581194659,0.0020664362373765963,0.0011267184655505851,0.0007053259248488137,0.0,0.00010694024634492448,0.0015360357734864175,0.0011267184655505851,0.0007053259248488137,0.0,0.00010694024634492448,0.0005304004638901784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5437745002843575e-05,0.0,0.0,0.0004141239599095048,0.00016115684904674087,0.0004495617049123484,0.0001830475803469863,0.00013426971715846405,8.405286265340829e-05,0.0,1.2743943645738382e-05,3.5437745002843575e-05,0.0,0.0,0.0,0.0,0.0,0.000231928540103965,0.00012645837509851171,7.916296137709078e-05,0.0,1.2002545621549996e-05 +98329,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,35271.0,,2210.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028978843751570255,0.0006438595608814631,0.0,0.0035417743096379274,0.0023490638069162883,0.0009880531897100667,0.00020465731301157176,0.0,0.0,0.0017052042460348254,0.0009880531897100667,0.00020465731301157176,0.0,0.0,0.0006438595608814631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.301981134353297e-05,0.0,0.0,0.00034533659993976086,0.00012761437243632133,0.0003883564112832939,0.00020320667089990485,0.00011774483896570961,2.4388709651120542e-05,0.0,0.0,4.301981134353297e-05,0.0,0.0,0.0,0.0,0.0,0.00025757541564604754,0.00010834027167361776,2.2440723963628543e-05,0.0,0.0 +98330,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,16545.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014589351017935332,0.0,0.0,0.0014589351017935332,0.0009359624666743224,0.0004167865314848306,0.00010618610363438038,0.0,0.0,0.0009359624666743224,0.0004167865314848306,0.00010618610363438038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001738591812861575,4.530926936635046e-05,0.0001738591812861575,0.00011153729043226413,4.9667846805501504e-05,1.2654044048391871e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011153729043226413,4.9667846805501504e-05,1.2654044048391871e-05,0.0,0.0 +98331,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,50649.0,,5483.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0042748166404196165,0.001614058464015082,0.0,0.005888905794040996,0.002392623086181504,0.0012937817326922564,0.0022025009751672356,0.0,0.0,0.0007785646221664219,0.0012937817326922564,0.0022025009751672356,0.0,0.0,0.001614058464015082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010784219642571307,0.0,0.0,0.0005094232899008137,0.0002473442636017585,0.0006172654863265268,9.278034231322504e-05,0.00015417796881621776,0.0002624686360043053,0.0,0.0,0.00010784219642571307,0.0,0.0,0.0,0.0,0.0,0.00025079084375612956,0.0001356120879431923,0.00023086255462720495,0.0,0.0 +98332,50.0,the Greater Atlanta and Macon Area,G1300670031307,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,23085.0,,3134.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00211530858564335,0.000913121519897133,0.0,0.0030283997319410453,0.0021689483622504193,0.0006800345178118255,0.0001794472254782378,0.0,0.0,0.001255826842353287,0.0006800345178118255,0.0001794472254782378,0.0,0.0,0.000913121519897133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.100864947002719e-05,0.0,0.0,0.0002520761317356807,0.00012074700177933991,0.00031308478120570796,0.00014965380214441445,8.103804421736793e-05,2.1384285373898337e-05,0.0,0.0,6.100864947002719e-05,0.0,0.0,0.0,0.0,0.0,0.00022423219639053604,7.030394831166537e-05,1.855177661464644e-05,0.0,0.0 +98333,35.0,Eastern Counties in South Carolina and Georgia,G1300730030603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14933.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033995915589804925,0.0,0.0,0.0033995915589804925,0.0022669181841206776,0.0004935958160761867,0.0005732427280871397,0.0,6.591753777022802e-05,0.0022669181841206776,0.0004935958160761867,0.0005732427280871397,0.0,6.591753777022802e-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.00040512648349410994,0.00013001931716923723,0.00040512648349410994,0.0002701467445039427,5.8821400678592056e-05,6.83128565856772e-05,0.0,7.855337858719483e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002701467445039427,5.8821400678592056e-05,6.83128565856772e-05,0.0,7.855337858719483e-06 +98334,50.0,the Greater Atlanta and Macon Area,G1301210002900,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6893.0,,791.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.000490412136521941,0.00023047487253366076,0.0,0.0007208870090556018,0.0005002228091403347,0.00018956163409100915,3.107219222482012e-05,0.0,0.0,0.0002697479366066739,0.00018956163409100915,3.107219222482012e-05,0.0,0.0,0.00023047487253366076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5399782783432938e-05,0.0,0.0,5.84417826195004e-05,2.917382807789644e-05,7.384156540293335e-05,3.214551414863019e-05,2.2589815764170817e-05,3.702833123978008e-06,0.0,0.0,1.5399782783432938e-05,0.0,0.0,0.0,0.0,0.0,5.123859191964731e-05,1.9417089815442278e-05,3.182772453324379e-06,0.0,0.0 +98335,50.0,the Greater Atlanta and Macon Area,G1300890021805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,12746.0,,1332.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,9613.75315558068,0.0,0.0,0.001000141882286292,0.0003879316120189662,0.0,0.0013880734943052585,0.0011601500041243686,0.00018746585572980426,4.042726085164768e-05,0.0,0.0,0.0007722183921054023,0.00018746585572980426,4.042726085164768e-05,0.0,0.0,0.0003879316120189662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.592031837616623e-05,0.0,0.0,0.00011918379329261103,5.53707874302912e-05,0.00014510411166877726,9.202286080756021e-05,2.233972218786429e-05,4.817590769936386e-06,0.0,0.0,2.592031837616623e-05,0.0,0.0,0.0,0.0,0.0,0.0001212778260240835,1.9596992936973593e-05,4.226117563044695e-06,0.0,0.0 +98336,85.0,Rural Climate Zone 3A,G1302930010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,14526.0,,432.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034879227137340728,0.0003425726994282113,0.0,0.003830495413162284,0.002061639227099716,0.0007457696839073351,0.0009561764795001332,0.0,6.691002265509969e-05,0.0017859765503266043,0.0007457696839073351,0.0009561764795001332,0.0,0.0,0.0002756626767731116,0.0,6.691002265509969e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2888513062470267e-05,0.0,0.0,0.00041565036219624386,0.0001606914402724339,0.0004385388752587142,0.00021283206680417548,8.887222128245117e-05,0.00011394607410961718,0.0,0.0,1.8418014011881555e-05,0.0,4.470499050588712e-06,0.0,0.0,0.0,0.00023602924695716128,8.538033938350879e-05,0.00010946901448516637,0.0,7.66027443287774e-06 +98337,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,91386.0,,5034.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.00883556834271493,0.0014818169504782809,0.0,0.010317354603586912,0.006215105619379278,0.0017114058951913957,0.0023908737786225353,0.0,0.0,0.0047332886689009975,0.0017114058951913957,0.0023908737786225353,0.0,0.0,0.0014818169504782809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.900535206824625e-05,0.0,0.0,0.0010529164941905607,0.00040246151673100424,0.001151921846258807,0.0005640562687017563,0.00020394471814455875,0.0002849155073442455,0.0,0.0,9.900535206824625e-05,0.0,0.0,0.0,0.0,0.0,0.0006939100394281175,0.00019107667752368455,0.00026693855576943686,0.0,0.0 +98338,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,55746.0,,3314.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004966897952039111,0.0009754077569598876,0.0,0.0059422750193927005,0.001796999207155689,0.0017275486281039874,0.002417788563345621,0.0,0.0,0.0008215914501958012,0.0017275486281039874,0.002417788563345621,0.0,0.0,0.0009754077569598876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.517042806299662e-05,0.0,0.0,0.0005918941082810761,0.00023126372086186033,0.0006570645363440727,9.790721361314786e-05,0.00020586810210667164,0.0002881224497729265,0.0,0.0,6.517042806299662e-05,0.0,0.0,0.0,0.0,0.0,0.0001987024240727739,0.0001910229557926105,0.000267345943459051,0.0,0.0 +98339,50.0,the Greater Atlanta and Macon Area,G1300630040613,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,109497.0,,8508.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009597222991811316,0.0025044867011366307,0.0,0.012101740382554245,0.005308902924620711,0.002387804817992765,0.004405001950334471,0.0,0.0,0.0028044162234840807,0.002387804817992765,0.004405001950334471,0.0,0.0,0.0025044867011366307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016733545374711896,0.0,0.0,0.0011436841311989316,0.0004957133089324592,0.0013110195849460507,0.00033419733341740794,0.00028455048726790783,0.0005249363105136158,0.0,0.0,0.00016733545374711896,0.0,0.0,0.0,0.0,0.0,0.0005751301456432414,0.00025867840347408995,0.00047720771112717727,0.0,0.0 +98340,50.0,the Greater Atlanta and Macon Area,G1301210002100,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,27593.0,,3488.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023201035465000323,0.0010267514682959443,0.0,0.0033468550147959767,0.001419670497725433,0.0008394221114547666,0.0010877930952220751,0.0,0.0,0.0003929190294294887,0.0008394221114547666,0.0010877930952220751,0.0,0.0,0.0010267514682959443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.860233296104433e-05,0.0,0.0,0.00027648157324975243,0.0001583121907013946,0.0003450839062107968,4.682328578839113e-05,0.00010003206380411421,0.0001296298808692903,0.0,0.0,6.860233296104433e-05,0.0,0.0,0.0,0.0,0.0,0.00014637784986846317,8.655022697425809e-05,0.00011215899367880147,0.0,0.0 +98341,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,22384.0,,311.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0025181050672525717,0.0001154703028408067,0.0,0.0026335753700933787,0.0015003002200312736,0.0002672091303322829,0.0007974038128056918,0.0,6.866220692413069e-05,0.0015003002200312736,0.0002672091303322829,0.0006819335099648849,0.0,6.866220692413069e-05,0.0,0.0001154703028408067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.714945425495848e-06,0.0,0.0,0.00030007827841198786,0.00010861994995214831,0.0003077932238374837,0.0001787882137973373,3.1842855506248557e-05,8.126485122599598e-05,0.0,8.182357882406096e-06,0.0,7.714945425495848e-06,0.0,0.0,0.0,0.0,0.00017534422849312204,3.1229468728235996e-05,9.319478494175878e-05,0.0,8.024741674366906e-06 +98342,50.0,the Greater Atlanta and Macon Area,G1301210007500,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,11998.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014533159858975489,0.0,0.0,0.0014533159858975493,0.0008689583063146418,0.0004520199068326227,0.00013236814634972247,0.0,0.0,0.0008689583063146418,0.0004520199068326227,0.00013236814634972247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001731888294590225,4.97190533407363e-05,0.0001731888294590225,0.00010355206533174167,5.386633004533468e-05,1.5774053644508034e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010355206533174163,5.386633004533466e-05,1.5774053644508027e-05,0.0,0.0 +98343,81.0,the Columbus-Albany Area,G1302150002100,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,41679.0,,1785.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0021454269229106496,0.00030352605714988387,0.0,0.0024489529800605335,0.0012401501295255931,0.00032404008531288506,0.0006319987328177821,0.0,0.0002527817627656928,0.0011206120328315972,0.00032404008531288506,0.0004479930420004741,0.0,0.0002527817627656928,0.00011953809669399601,0.00018400569081730795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0280082148378122e-05,0.0,0.0,0.0002556660845679082,7.258730429475298e-05,0.00027594616671628634,0.00013354101586692479,3.861518608268465e-05,5.338640330221015e-05,0.0,3.0123479316088582e-05,7.98693345664848e-06,1.2294333345164329e-05,0.0,0.0,0.0,0.0,0.0001397391771837263,3.651259135334595e-05,7.121313847614446e-05,0.0,2.8483257546763682e-05 +98344,50.0,the Greater Atlanta and Macon Area,G1301170130305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,124948.0,,5659.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010003909458016816,0.0016485878566828553,0.0,0.011652497314699672,0.007180288533485094,0.0036027644973089324,0.0008694139103062082,0.0,0.0,0.005531700676802238,0.0036027644973089324,0.0008694139103062082,0.0,0.0,0.0016485878566828553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011014818248024965,0.0,0.0,0.0011921471345172074,0.0003739633421642659,0.001302295316997457,0.0006592023986754479,0.00042933469058591627,0.00010360642569094355,0.0,0.0,0.00011014818248024965,0.0,0.0,0.0,0.0,0.0,0.0008024765747040364,0.00040264873755184785,9.71666101562542e-05,0.0,0.0 +98345,50.0,the Greater Atlanta and Macon Area,G1300970080603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,701066.0,,71608.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,654728.2554853096,0.0,0.0,0.036087562037750154,0.012177620021604926,0.0,0.04826518205935509,0.022562682773281093,0.013118552571805707,0.004619681128717598,0.0,0.007964265585550679,0.01881739214835482,0.013118552571805707,0.002733702584466581,0.0,0.0014179147331230427,0.003745290624926274,0.0018859785442510164,0.006546350852427635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008136378602098993,0.0,0.0,0.004300484756689885,0.001784541723505288,0.005114122616899784,0.0022424321158077587,0.0015633124594526514,0.0003257700334958733,0.0,0.0001689701479336011,0.0002502385724404953,0.0001260101353485934,0.0004373891524208105,0.0,0.0,0.0,0.0023907156535092075,0.0013900265894771773,0.0004894960452896605,0.0,0.0008438843286237376 +98346,50.0,the Greater Atlanta and Macon Area,G1301210010508,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,57496.0,,6245.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008585158628279427,0.0018194697271196473,0.0,0.010404597981799638,0.007203554710654411,0.0027262431647342906,0.0004748001064109366,0.0,0.0,0.005384084983534765,0.0027262431647342906,0.0004748001064109366,0.0,0.0,0.0018194697271196473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012156540969321583,0.0,0.0,0.0010230760999875787,0.00044685956484234084,0.0011446415096807944,0.0006416105869974322,0.00032488091896248786,5.658097446685618e-05,0.0,0.0,0.00012156540969321583,0.0,0.0,0.0,0.0,0.0,0.0007924849911063529,0.00029992231293290717,5.2234205641534415e-05,0.0,0.0 +98347,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,4709.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012655836423588823,0.0,0.0,0.0012655836423588823,0.0005603404245838078,0.0002799634446075556,0.0003778886199148956,0.0,4.739115325262316e-05,0.0005603404245838078,0.0002799634446075556,0.0003778886199148956,0.0,4.739115325262316e-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.00015081852201138165,4.3725419974602945e-05,0.00015081852201138165,6.677528993772778e-05,3.336300464047359e-05,4.503266416612225e-05,0.0,5.647563267058011e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.677528993772778e-05,3.336300464047359e-05,4.503266416612225e-05,0.0,5.647563267058011e-06 +98348,85.0,Rural Climate Zone 3A,G1300310110401,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,26488.0,,3976.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005349592638054428,0.0027352562545933743,0.0,0.008084848892647803,0.002106917588525606,0.00032202266986009365,0.003791619707682309,0.00037638640788992684,0.0014879742386608825,0.002106917588525606,0.00032202266986009365,0.0010563634530889353,0.00037638640788992684,0.0014879742386608825,0.0,0.0027352562545933743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018275246196651927,0.0,0.0,0.0006375002375267015,0.00035441067637116143,0.0008202526994932207,0.0002510771481139819,3.837479644047312e-05,0.0001258847164302291,4.4853214191448316e-05,0.00017731890907583423,0.0,0.00018275246196651927,0.0,0.0,0.0,0.0,0.00021375845888343929,3.267098343556668e-05,0.00038468081988599187,3.818648576166012e-05,0.00015096322791485566 +98349,50.0,the Greater Atlanta and Macon Area,G1300590002000,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7070.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013647494237723117,0.0,0.0,0.001364749423772312,0.0007729803111675671,0.00019990299722790603,0.00034579827530404434,0.0,4.606784007279424e-05,0.0007729803111675671,0.00019990299722790603,0.00034579827530404434,0.0,4.606784007279424e-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.0001626362566392333,4.819527212773031e-05,0.0001626362566392333,9.211553569785314e-05,2.382230363596309e-05,4.120854427056751e-05,0.0,5.489873034849583e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.211553569785312e-05,2.3822303635963083e-05,4.12085442705675e-05,0.0,5.489873034849582e-06 +98350,50.0,the Greater Atlanta and Macon Area,G1300130180106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,69951.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005920301261283547,0.0,0.0,0.005920301261283547,0.0014552090618181728,0.001885876306993836,0.0025792158924715374,0.0,0.0,0.0014552090618181728,0.001885876306993836,0.0025792158924715374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000705509865306476,0.0002273745670450338,0.000705509865306476,0.00017341420712997923,0.0002247359180913433,0.00030735974008515337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017341420712997923,0.0002247359180913433,0.00030735974008515337,0.0,0.0 +98351,50.0,the Greater Atlanta and Macon Area,G1302890060100,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7426.0,,124.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,9613.75315558068,0.0,0.0,0.0005500355122182477,3.620533052980017e-05,0.0,0.0005862408427480479,0.00035849959416378477,0.0001525665899758274,7.520503220787352e-05,0.0,0.0,0.0003222942636339846,0.0001525665899758274,7.520503220787352e-05,0.0,0.0,3.620533052980017e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.418518351554394e-06,0.0,0.0,6.554822923479608e-05,2.2822553299393118e-05,6.796674758635046e-05,3.840809875809936e-05,1.818149845084658e-05,8.962251675153521e-06,0.0,0.0,2.418518351554394e-06,0.0,0.0,0.0,0.0,0.0,4.156321028763766e-05,1.7688045859087006e-05,8.719012850308468e-06,0.0,0.0 +98352,50.0,the Greater Atlanta and Macon Area,G1300890021909,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,17507.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003957368064278381,0.0,0.0,0.003957368064278382,0.001676885920064458,0.001211989458575811,0.0009485674287161167,0.0,0.00011992525692199579,0.001676885920064458,0.001211989458575811,0.0009485674287161167,0.0,0.00011992525692199579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00047158950040703586,0.0001515632307532131,0.00047158950040703586,0.00019983023576226075,0.00014442970529519945,0.00011303837109530794,0.0,1.4291188254267727e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0001998302357622607,0.00014442970529519942,0.00011303837109530791,0.0,1.4291188254267724e-05 +98353,50.0,the Greater Atlanta and Macon Area,G1301350050423,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,NaturalGas,24448.0,,2201.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0022373029887088306,0.0006478882785508034,0.0,0.0028852219568659314,0.000652675857133245,0.0009294654163322265,0.0013030806834004602,0.0,0.0,4.787578582441634e-06,0.0009294654163322265,0.0013030806834004602,0.0,0.0,0.0006478882785508034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3288325950657954e-05,0.0,0.0,0.00026661674149734666,0.0001310611154232553,0.0003099050674480046,5.705300568385355e-07,0.00011076329039366594,0.00015528657829079628,0.0,0.0,4.3288325950657954e-05,0.0,0.0,0.0,0.0,0.0,7.010467775112713e-05,9.983496827811334e-05,0.0001399654214187642,0.0,0.0 +98354,50.0,the Greater Atlanta and Macon Area,G1300890023410,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,Electricity,89014.0,,3996.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,120171.9144447585,0.0,0.0,0.007373191263514256,0.0011642808136479027,0.0,0.00853744170356272,0.006277068807004667,0.001654905565365908,0.0006055280783910204,0.0,0.0,0.005112787993356765,0.001654905565365908,0.0006055280783910204,0.0,0.0,0.0011642808136479027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.778967243416427e-05,0.0,0.0,0.0008786476490400129,0.00037660749968786053,0.0009564373214741771,0.0006092801596824113,0.00019721160518206012,7.215950373331286e-05,0.0,0.0,7.778967243416427e-05,0.0,0.0,0.0,0.0,0.0,0.0007032109951597454,0.00018539669156051296,6.78364401752847e-05,0.0,0.0 +98355,50.0,the Greater Atlanta and Macon Area,G1301350050423,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,10039.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0021521207657705186,0.0,0.0,0.0021521207657705186,0.0010722972110301207,0.00041171581307427235,0.0006201376388973271,0.0,4.797010276879831e-05,0.0010722972110301207,0.00041171581307427235,0.0006201376388973271,0.0,4.797010276879831e-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.00025646546969027907,7.914130942462296e-05,0.00025646546969027907,0.00012778428248470342,4.906364506045921e-05,7.39010065615354e-05,0.0,5.716535583581026e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012778428248470342,4.906364506045921e-05,7.39010065615354e-05,0.0,5.716535583581026e-06 +98357,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970200,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,52777.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0064679572856660515,0.0,0.0,0.0064679572856660515,0.0013354582180445363,0.0027416252889989807,0.0023908737786225353,0.0,0.0,0.0013354582180445363,0.0027416252889989807,0.0023908737786225353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007707722686256731,0.00022131393161347145,0.0007707722686256731,0.00015914362369988784,0.0003267134661520346,0.0002849151787737508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015914362369988784,0.0003267134661520346,0.0002849151787737508,0.0,0.0 +98358,50.0,the Greater Atlanta and Macon Area,G1301210007806,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,45699.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0075565483106518685,0.0,0.0,0.0075565483106518685,0.0029043722711956984,0.002476589849012019,0.0021755861904441502,0.0,0.0,0.0029043722711956984,0.002476589849012019,0.0021755861904441502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009004990622110676,0.00027054694985388823,0.0009004990622110676,0.0003461083551648646,0.0002951303617516853,0.0002592603452945175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003461083551648646,0.0002951303617516853,0.0002592603452945175,0.0,0.0 +98359,50.0,the Greater Atlanta and Macon Area,G1301350050430,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,61576.0,,4776.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00533551081328082,0.001405829485285169,0.0,0.006741340298565987,0.003144856026144497,0.001367099202137468,0.002229415759890321,0.0,0.0,0.0017390265408593283,0.001367099202137468,0.002229415759890321,0.0,0.0,0.001405829485285169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.392896114827467e-05,0.0,0.0,0.0006358232463211545,0.00028378267127876386,0.0007297522074694292,0.00020723667130343978,0.00016291475796140523,0.00026567547428160384,0.0,0.0,9.392896114827467e-05,0.0,0.0,0.0,0.0,0.0,0.000340431653886493,0.0001479889185837022,0.00024133495715876767,0.0,0.0 +98360,50.0,the Greater Atlanta and Macon Area,G1301210005800,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,66124.0,,11550.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010536110117276936,0.0033999480336910025,0.0,0.013936058150967944,0.0049793272425896805,0.004659326717723534,0.004297373501048428,0.0,0.0,0.0015793792088986784,0.004659326717723534,0.004297373501048428,0.0,0.0,0.0033999480336910025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022716402867964473,0.0,0.0,0.0012555680503330304,0.0005392565589073546,0.0014827320790126754,0.00018821159346101726,0.0005552430354010668,0.0005121097642493804,0.0,0.0,0.00022716402867964473,0.0,0.0,0.0,0.0,0.0,0.0005297773699356051,0.0004957307953317977,0.00045722064851322044,0.0,0.0 +98361,50.0,the Greater Atlanta and Macon Area,G1301350050317,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,18631.0,,8293.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004227806042737973,0.006431424102921491,0.0,0.010659230145659464,0.004772888581402919,0.0005198539743475649,0.004300904190631922,0.00041222827208335454,0.0006532742664106355,0.002646330847483708,0.0005198539743475649,0.0006493929488233463,0.00041222827208335454,0.0,0.002126557733919211,0.0036515112418085763,0.0006532742664106355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042970886464293413,0.0,0.0,0.0005038216598474239,0.0005876249899048574,0.0009335305244903581,0.00031535950008275117,6.195026204760616e-05,7.738723821812492e-05,4.912465949894172e-05,0.0,0.0001420837274632501,0.00024397189873323892,4.3647835817924546e-05,0.0,0.0,0.0,0.000418007409526239,4.552857445607343e-05,0.00037667123141143095,3.610276443880268e-05,5.721346290723553e-05 +98362,85.0,Rural Climate Zone 3A,G1301050000400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,36132.0,,9069.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007335303475563652,0.0062384899588219115,0.0,0.013573793434385563,0.004681090788217917,0.000499888197978809,0.006531537760391698,0.0003710791300347716,0.0014901975577623662,0.002946399849263333,0.000499888197978809,0.0033399990501970065,0.0003710791300347716,0.00017793724808973102,0.0017346909389545841,0.0031915387101946915,0.0013122603096726352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041681794220831185,0.0,0.0,0.0008741335416094911,0.0006546451157454255,0.0012909514838178031,0.00035111661621284464,5.957068338940478e-05,0.00039802105099635295,4.422076267672602e-05,2.120442833416259e-05,0.0001159014941620578,0.00021323919833842866,8.767724970782536e-05,0.0,0.0,0.0,0.00044520060866900304,4.754245112416234e-05,0.0006211895299680722,3.5291914220432706e-05,0.00014172697983613267 +98363,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970701,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5759.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.00138286227292122,0.0,0.0,0.00138286227292122,0.0007996946959853634,0.000228685058889185,0.0003156929004629364,0.0,3.878961758373519e-05,0.0007996946959853634,0.000228685058889185,0.0003156929004629364,0.0,3.878961758373519e-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.00016479046585980494,3.9516306480301044e-05,0.00016479046585980494,9.529659177024247e-05,2.7251533379327786e-05,3.761992871931073e-05,0.0,4.622411990923955e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.529659177024247e-05,2.7251533379327786e-05,3.761992871931073e-05,0.0,4.622411990923955e-06 +98364,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2004,gen4_led,100001_200000,NaturalGas,68498.0,,22917.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.00841699280242056,0.006745698222660262,0.0,0.015162691025080824,0.008055131654564347,0.0024872698320036195,0.004620289538512857,0.0,0.0,0.0013094334319040848,0.0024872698320036195,0.004620289538512857,0.0,0.0,0.006745698222660262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045070785652524836,0.0,0.0,0.001003036442187205,0.0007628305653172615,0.0014537442987124533,0.0001560426011580222,0.0002964030434165295,0.0005505907976126533,0.0,0.0,0.00045070785652524836,0.0,0.0,0.0,0.0,0.0,0.0007722970611767585,0.00023847048862591128,0.00044297674890978367,0.0,0.0 +98365,50.0,the Greater Atlanta and Macon Area,G1301210011411,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,8713.0,,737.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0017385026900002421,0.0005847390113369034,0.0,0.0023232417013371457,0.0012919671988817212,0.00043768583422841486,0.0004305730258868345,0.0,0.00016301564234017492,0.0008701611228112534,0.00043768583422841486,0.0004305730258868345,0.0,0.0,0.00042180607607046784,0.0,0.00016301564234017492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.907117453455434e-05,0.0,0.0,0.0002071716961385028,8.754366992838504e-05,0.0002462428706730572,0.00010369426332412882,5.215759352830431e-05,5.1309983353808076e-05,0.0,0.0,2.818429846198404e-05,0.0,1.0892402405602067e-05,0.0,0.0,0.0,0.0001369369840791679,4.6390789305867514e-05,4.5636895148591524e-05,0.0,1.7278202139430245e-05 +98366,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,9878.0,,392.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0023717907536221186,0.0003109785972597959,0.0,0.0026827693508819153,0.0017943299647742747,0.0002281061093730099,0.0006140173154406183,0.0,4.639866836775146e-05,0.0014833513675144786,0.0002281061093730099,0.0006140173154406183,0.0,4.639866836775146e-05,0.0003109785972597959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.07770098800857e-05,0.0,0.0,0.00028263938329092797,0.00011404626975684592,0.0003034163931710137,0.0001767666540894373,2.7182739446817296e-05,7.317065179592877e-05,0.0,5.5291939193852424e-06,2.07770098800857e-05,0.0,0.0,0.0,0.0,0.0,0.00020293549495468575,2.5798391107860026e-05,6.944425510687194e-05,0.0,5.247606023027365e-06 +98367,50.0,the Greater Atlanta and Macon Area,G1301210009602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,511789.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,2015986.1613818365,0.0,0.0,0.08111767837061555,0.0,0.0,0.08111767837061555,0.05777360338876466,0.010009298638308501,0.012944320832439127,0.0,0.0003904555111032579,0.05777360338876466,0.010009298638308501,0.012944320832439127,0.0,0.0003904555111032579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009666637029527289,0.0030333485635796573,0.009666637029527289,0.006884768709669592,0.0011927887829161475,0.0015425497079594001,0.0,4.6529828982149596e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.006884768709669592,0.0011927887829161475,0.0015425497079594001,0.0,4.6529828982149596e-05 +98368,35.0,Eastern Counties in South Carolina and Georgia,G1301030030305,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,39821.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0035115222045979263,0.0,0.0,0.0035115222045979263,0.001964230302039973,0.0013446088735098356,0.00020268302904811794,0.0,0.0,0.001964230302039973,0.0013446088735098356,0.00020268302904811794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041846011454315827,0.0001375633815869794,0.00041846011454315827,0.00023407285766398962,0.0001602339812882085,2.4153275590960162e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023407285766398962,0.0001602339812882085,2.4153275590960162e-05,0.0,0.0 +98369,85.0,Rural Climate Zone 3A,G1302090950200,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,NaturalGas,36719.0,,5153.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.00228663152125995,0.0008762876524632696,0.0,0.0031629191737232196,0.001763816354066853,0.00023377481532339624,0.0007960045759532704,0.0,0.0003693234283796999,0.0017409973789192451,0.00023377481532339624,0.00023847336109971017,0.0,7.338596591759855e-05,2.2818975147607957e-05,0.0005575312148535603,0.0002959374624621013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.854856839522351e-05,0.0,0.0,0.00027249414495147527,0.00013872945270279353,0.0003310427133466988,0.00020747181507843257,2.785856305244909e-05,2.8418481081186208e-05,0.0,8.745285739407414e-06,1.5246344318364457e-06,3.725107203504043e-05,1.977286192834663e-05,0.0,0.0,0.0,0.00018460748429693143,2.4467728995326105e-05,8.331275640843119e-05,0.0,3.865474364601007e-05 +98370,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,23091.0,,939.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.005561637173599727,0.0007451907343911597,0.0,0.006306745200917148,0.002891935540368623,0.0011573200828341288,0.0021263988658375937,0.0,0.00013117341895054158,0.0021467448059774635,0.0011573200828341288,0.0021263988658375937,0.0,0.00013117341895054158,0.0007451907343911597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9786758925978614e-05,0.0,0.0,0.0006627684323137043,0.0002558113276284322,0.0007125551912396829,0.00025582299693857553,0.0001379153643150519,0.00025339841467447895,0.0,1.5631656385597964e-05,4.9786758925978614e-05,0.0,0.0,0.0,0.0,0.0,0.0003267396440434174,0.00013075753129038322,0.00024024698988606822,0.0,1.4820370515725562e-05 +98371,50.0,the Greater Atlanta and Macon Area,G1301210009900,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,106999.0,,9695.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.008791122006066823,0.002824441011716542,0.0,0.011615593391382805,0.008186869618852188,0.0026689889297941277,0.0007597044691370486,0.0,0.0,0.005362428607135646,0.0026689889297941277,0.0007597044691370486,0.0,0.0,0.002824441011716542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001887135358581359,0.0,0.0,0.0010476225793939443,0.00046148645366250003,0.00123633611525208,0.0006390312050437285,0.00031805872618707843,9.053264816313736e-05,0.0,0.0,0.00018871353585813593,0.0,0.0,0.0,0.0,0.0,0.0008713909173297971,0.00028408082944436213,8.086113558428608e-05,0.0,0.0 +98372,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,14546.0,,,,9.325022323477118,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,69937.66742607838,0.0,0.0,0.0041711135710874835,0.0,0.0,0.0041711135710874835,0.0018138196916037826,0.000987958118738285,0.0012382620543499167,0.0,0.0001311620905535529,0.0018138196916037826,0.000987958118738285,0.0012382620543499167,0.0,0.0001311620905535529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004970596214759044,0.00015827911979708728,0.0004970596214759044,0.0002161476819004621,0.00011773213080028093,0.00014756013173304128,0.0,1.5630209528325e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002161476819004621,0.00011773213080028093,0.00014756013173304128,0.0,1.5630209528325e-05 +98373,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,4908.0,,710.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.0004372655105296692,0.00020896552928105822,0.0,0.0006462003502044298,0.0004392296453327222,0.0001134901640889049,9.348054078280269e-05,0.0,0.0,0.00023026411605166393,0.0001134901640889049,9.348054078280269e-05,0.0,0.0,0.00020896552928105822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3961436544115737e-05,0.0,0.0,5.210652341825369e-05,3.184061970105753e-05,6.606795996236943e-05,2.743930693480891e-05,1.352399800678707e-05,1.11395613652443e-05,0.0,0.0,1.3961436544115737e-05,0.0,0.0,0.0,0.0,0.0,4.490713539995399e-05,1.1603310977433614e-05,9.557513584981826e-06,0.0,0.0 +98374,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,25596.0,,1229.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005829577294542439,0.000953348632377942,0.0,0.006782925926920382,0.0029583726093451563,0.0006744597915745899,0.00234852058344232,0.0004120665505172174,0.0003895872528241667,0.002005023976967214,0.0006744597915745899,0.00234852058344232,0.0004120665505172174,0.0003895872528241667,0.000953348632377942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.36967338475155e-05,0.0,0.0,0.0006947014893183211,0.0002389069355171189,0.0007583982231658367,0.00023893553040665093,8.037430469115485e-05,0.0002798694767353916,4.9105317912255737e-05,4.642649562426376e-05,6.36967338475155e-05,0.0,0.0,0.0,0.0,0.0,0.00033077532536294525,7.541127723315821e-05,0.00026258783550651564,4.60731169859938e-05,4.3559709112739035e-05 +98375,50.0,the Greater Atlanta and Macon Area,G1300630040520,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,18998.0,,1130.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004561708652091501,0.0008965446793340924,0.0,0.005458253331425593,0.003761352299516223,0.000701934934825502,0.0008959657298179173,0.0,9.883495311847235e-05,0.002963725280374342,0.000701934934825502,0.0008959657298179173,0.0,0.0,0.0007976270191418808,0.0,9.883495311847235e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9900037806388986e-05,0.0,0.0,0.0005436147826203248,0.00023204628812467385,0.0006035148204267139,0.0003531845185462192,8.364896491884137e-05,0.00010677144302648858,0.0,0.0,5.329114064620068e-05,0.0,6.603371326442327e-06,0.0,0.0,0.0,0.0004158897947324205,7.761239913571512e-05,9.906623304314858e-05,0.0,1.0928103801953526e-05 +98376,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,16815.0,,7219.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0032531461652971017,0.004965890793120909,0.0,0.008218965238446995,0.0025485691700397385,0.00028752536380158473,0.003237869811470776,0.00036620217200571006,0.0017787987211291853,0.001444153336370344,0.00028752536380158473,0.000942256979203098,0.00036620217200571006,0.00021293659394534922,0.0011044158336693947,0.002295612832267678,0.001565862127183836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033178955120316485,0.0,0.0,0.0003876697195159109,0.0004250960342972149,0.0007194592707190757,0.00017209633087529225,3.426371625342902e-05,0.00011228653133887514,4.363944504614831e-05,2.5375149303175543e-05,7.379011119262763e-05,0.000153378393340712,0.00010462104666982522,0.0,0.0,0.0,0.00022309276937644944,2.5168957715778414e-05,0.00028343171988938194,3.205604841525682e-05,0.0001557097753222091 +98377,50.0,the Greater Atlanta and Macon Area,G1302230120203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,18536.0,,2088.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001801909544163321,0.0006146207453240935,0.0,0.002416530289487415,0.001444222182763595,0.0004395365413956992,0.0005327408757218226,0.0,0.0,0.0008296014374395015,0.0004395365413956992,0.0005327408757218226,0.0,0.0,0.0006146207453240935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.106551654643127e-05,0.0,0.0,0.00021472949335643612,0.00010661840686270127,0.00025579500990286744,9.886173083781008e-05,5.237857757691314e-05,6.348552773059876e-05,0.0,0.0,4.106551654643127e-05,0.0,0.0,0.0,0.0,0.0,0.00015287407285936215,4.6525903047064e-05,5.639178543457507e-05,0.0,0.0 +98378,50.0,the Greater Atlanta and Macon Area,G1301210009700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,8978.0,,734.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0008724982580759882,0.0002727889033554628,0.0,0.001145287161431451,0.0005307371604062179,0.00018064515162544996,0.0003591591399434353,0.0,7.478445788011977e-05,0.00037919207503360215,0.00018064515162544996,0.000312661031416936,0.0,0.0,0.0001515450853726158,4.6498108526499346e-05,7.478445788011977e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8226327771521792e-05,0.0,0.0,0.00010397579152848586,4.111276581972186e-05,0.00012220211930000764,4.518839525237654e-05,2.1527518768299554e-05,3.725987750780976e-05,0.0,0.0,1.0125449987843996e-05,3.106760415600306e-06,4.996706335090492e-06,0.0,0.0,0.0,5.6629645364962774e-05,1.9274834393769178e-05,3.8322273701382776e-05,0.0,7.979500296004829e-06 +98379,50.0,the Greater Atlanta and Macon Area,G1300970080404,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,15772.0,,1405.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003787239613596626,0.0011143951115634282,0.0,0.004901552018086315,0.003408937458313034,0.0004510016731004434,0.0009646953080952817,0.0,7.691757857755591e-05,0.002294542346749606,0.0004510016731004434,0.0009646953080952817,0.0,7.691757857755591e-05,0.0011143951115634282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.445613556868581e-05,0.0,0.0,0.0004513131901456262,0.00022564426384848687,0.000525769325714312,0.0002734332474549608,5.374442195767945e-05,0.00011495964381338219,0.0,9.16602098306288e-06,7.445613556868581e-05,0.0,0.0,0.0,0.0,0.0,0.0003656627007621287,4.837709457883611e-05,0.00010347889806850254,0.0,8.250632304844597e-06 +98380,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,8736.0,,1310.0,,8.72605822017302,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.00205527078242179,0.0010390489673869191,0.0,0.003094319749808709,0.001993819426633484,0.0005723329502760073,0.00043925726862946175,0.0,8.891010426975547e-05,0.0010436805635163204,0.0005723329502760073,0.00043925726862946175,0.0,0.0,0.0009501388631171635,0.0,8.891010426975547e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.942242953328335e-05,0.0,0.0,0.0002449272918908124,0.0001288037571035778,0.00031434972142409576,0.000124375754381093,6.820510502553004e-05,5.234643248418932e-05,0.0,0.0,6.348204015588307e-05,0.0,5.9403893774002695e-06,0.0,0.0,0.0,0.00020255068383638513,5.814289343957294e-05,4.4623830499649116e-05,0.0,9.03231364848857e-06 +98381,50.0,the Greater Atlanta and Macon Area,G1300570091102,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,138758.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01498900683933727,0.0,0.0,0.01498900683933727,0.010196872935244855,0.003750380190576406,0.0010417233399165745,0.0,0.0,0.010196872935244855,0.003750380190576406,0.0010417233399165745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001786209966010052,0.0005257038391218662,0.001786209966010052,0.0012151409532533005,0.00044692530629537327,0.00012414008690028283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012151409532533005,0.00044692530629537327,0.00012414008690028283,0.0,0.0 +98382,85.0,Rural Climate Zone 3A,G1300170960500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,10127.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,9613.75315558068,0.0,0.0,0.0007966691396527928,0.0,0.0,0.0007966691396527928,0.00047194498806378776,0.0002602409999826576,6.445277800690936e-05,0.0,0.0,0.00047194498806378776,0.0002602409999826576,6.445277800690936e-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,9.49372002252606e-05,2.928068893160654e-05,9.49372002252606e-05,5.6240581688211464e-05,3.101231200312755e-05,7.680686983034157e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6240581688211464e-05,3.101231200312755e-05,7.680686983034157e-06,0.0,0.0 +98383,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,70655.0,,12886.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0043588320515057805,0.0021914194804342657,0.0,0.006550269262301468,0.0031599050122818103,0.000962776355470287,0.001266958435992713,0.0,0.0011606117281952363,0.002297819379316003,0.000962776355470287,0.0009236099870933905,0.0,0.00017462632962610006,0.0008620856329658073,0.00034334844889932244,0.0009859853985691362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014641824051122042,0.0,0.0,0.0005194343533692543,0.000268994803958783,0.0006658525938804747,0.0002738270961924366,0.00011473236585707726,0.00011006497858652454,0.0,2.0809912733215854e-05,5.7599680333151775e-05,2.294059910434544e-05,6.587796107372322e-05,0.0,0.0,0.0,0.00032121289440008386,9.786882156222059e-05,0.00012878975308689705,0.0,0.00011797932249206088 +98384,50.0,the Greater Atlanta and Macon Area,G1301350050609,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,125613.0,,7274.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011076704990158212,0.002119196406371382,0.0,0.01319590139652959,0.007615511839828638,0.003942189471025809,0.0016382000856751445,0.0,0.0,0.005496315433457256,0.003942189471025809,0.0016382000856751445,0.0,0.0,0.002119196406371382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014159152488657048,0.0,0.0,0.0013199906160204521,0.0004287194646817167,0.0014615821409070227,0.0006549858284840296,0.0004697834882261654,0.0001952212993102568,0.0,0.0,0.00014159152488657048,0.0,0.0,0.0,0.0,0.0,0.0008434964588237071,0.0004366381313244989,0.00018144755075881692,0.0,0.0 +98385,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,38657.0,,18617.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007632797915336407,0.012806820064344618,0.0,0.020439617979681027,0.0066878872972057305,0.0013502001743398936,0.0063911100571431316,0.00037036193032461545,0.005640058520667652,0.004129349051194822,0.0013502001743398936,0.0011324583423364986,0.00037036193032461545,0.0006504284171405767,0.0025585382460109082,0.005258651714806633,0.004989630103527076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008556757507603387,0.0,0.0,0.0009095868711104921,0.0010894274183963506,0.0017652626218708307,0.0004920871382763231,0.00016090093902303146,0.0001349530344828252,4.413536859210317e-05,7.75103907362091e-05,0.00017094634917215565,0.0003513519149520883,0.0003333774866360947,0.0,0.0,0.0,0.0005775977553385882,0.00011660970876143982,0.000551966661380507,3.198621778625705e-05,0.0004871022786040383 +98386,35.0,Eastern Counties in South Carolina and Georgia,G1301790010102,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,245236.0,,14823.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.06565647076043363,0.013110987913026067,0.0,0.07876755089071247,0.05747698487395859,0.01291170642978324,0.0033934104675472716,0.0006667307375500509,0.004318718381873304,0.04436599696093252,0.01291170642978324,0.0033934104675472716,0.0006667307375500509,0.004318718381873304,0.013110987913026067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008760010297521046,0.0,0.0,0.007824158100562403,0.0026723542790773025,0.008700159130314506,0.005287012391786905,0.001538663764357428,0.0004043863413717531,7.945304766883456e-05,0.0005146535447340056,0.0008760010297521046,0.0,0.0,0.0,0.0,0.0,0.006348539583615286,0.0014261443870316468,0.00037481438394725204,7.364280656390651e-05,0.0004770179691564136 +98387,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,25834.0,,2382.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0022781110786296997,0.0006940671207520668,0.0,0.0029721781993817665,0.0021073507025906593,0.000662600071734556,0.0002022577986559894,0.0,0.0,0.0014132835818385923,0.000662600071734556,0.0002022577986559894,0.0,0.0,0.0006940671207520668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6374061826726295e-05,0.0,0.0,0.0002714775431397715,0.0001104106901945372,0.0003178516049664978,0.00016841793104667237,7.89606096235366e-05,2.41026220253555e-05,0.0,0.0,4.63740618267263e-05,0.0,0.0,0.0,0.0,0.0,0.00022536495395365124,7.085998285552099e-05,2.162991638023902e-05,0.0,0.0 +98388,50.0,the Greater Atlanta and Macon Area,G1301530020400,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,15656.0,,1139.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0013949346750494844,0.00033540670722759366,0.0,0.001730372071883376,0.0006889509717771297,0.0004898061165113364,0.0005515842939886121,0.0,0.0,0.00035354426454953616,0.0004898061165113364,0.0005515842939886121,0.0,0.0,0.00033540670722759366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2410604510388548e-05,0.0,0.0,0.00016623238688802115,8.207290941357821e-05,0.0001886429913984097,4.213136859943248e-05,5.836950024713039e-05,6.573151804145832e-05,0.0,0.0,2.2410604510388548e-05,0.0,0.0,0.0,0.0,0.0,7.510857020560983e-05,5.3398048041406424e-05,6.013302740903495e-05,0.0,0.0 +98389,50.0,the Greater Atlanta and Macon Area,G1301530021113,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,26025.0,,12983.0,,8.53126424238864,Food Service,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.006109598186308751,0.010068865568476143,0.0,0.016178544615567964,0.0028598841755676893,0.0006787454130772219,0.011733303927158718,0.00042071865430554995,0.00048589244545878317,0.0028598841755676893,0.0006787454130772219,0.0021502499433582903,0.00042071865430554995,0.0,0.0,0.009583053983800428,0.00048589244545878317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006727450254102649,0.0,0.0,0.0007280738552174914,0.0008653554336306084,0.0014008188806277563,0.0003408091389458586,8.088531758401765e-05,0.0002562428359773884,5.0136562710226826e-05,0.0,0.0,0.0006402858248524083,3.2464603221065376e-05,0.0,0.0,0.0,0.0002476229997653051,5.876915460387839e-05,0.001015927826875837,3.642791415344048e-05,4.207098522929536e-05 +98390,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,19842.0,,1206.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.004652851847352217,0.0009565073077950902,0.0,0.005609359155147309,0.002110932643048343,0.0008149955046271353,0.002523227405638791,0.0,0.00016028630890677778,0.001314711644160031,0.0008149955046271353,0.002523227405638791,0.0,0.0,0.0007962209988883125,0.0,0.00016028630890677778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.39075025910569e-05,0.0,0.0,0.0005544718415629493,0.00022038765362645266,0.0006183793441540062,0.00015667178117362537,9.712152313065579e-05,0.00030068839330932073,0.0,0.0,5.319822978332078e-05,0.0,1.0709272807736125e-05,0.0,0.0,0.0,0.00023271056590549818,8.984562615808405e-05,0.00027816220446832035,0.0,1.7670065302858422e-05 +98391,50.0,the Greater Atlanta and Macon Area,G1300570090502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,16151.0,,219.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0039526537610752414,0.0001736848548525456,0.0,0.004126255908854047,0.0019738870218623116,0.0005237838979910339,0.0015521636528655824,0.0,7.642133613512006e-05,0.0018766235031448858,0.0005237838979910339,0.0015521636528655824,0.0,0.0,9.726351871742553e-05,0.0,7.642133613512006e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.160236344887539e-05,0.0,0.0,0.0004710288808786528,0.00016414535653797347,0.0004826312443275281,0.00022363301264122186,6.241815200779452e-05,0.0001849678602132133,0.0,0.0,6.497323531370219e-06,0.0,5.105039917505171e-06,0.0,0.0,0.0,0.0002308774759895929,6.126485608992253e-05,0.00018155022173370856,0.0,8.93869051430419e-06 +98392,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,21188.0,,2296.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0018878404417968892,0.0006759385787069039,0.0,0.002563748330897495,0.0014646614605578652,0.0005663153050115094,0.0005327408757218226,0.0,0.0,0.0007887228818509616,0.0005663153050115094,0.0005327408757218226,0.0,0.0,0.0006759385787069039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51618530182533e-05,0.0,0.0,0.00022496894242170494,0.00011332827354622357,0.00027013079543995825,9.399001561006952e-05,6.74862940876503e-05,6.348531832588314e-05,0.0,0.0,4.51618530182533e-05,0.0,0.0,0.0,0.0,0.0,0.00015432488463180835,5.967013297246223e-05,5.613254420793214e-05,0.0,0.0 +98393,50.0,the Greater Atlanta and Macon Area,G1302550160700,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,49423.0,,,6293.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0043582166625246955,0.0,0.0005931356498204176,0.004951352312345113,0.0031394152378860277,0.0013497723854142532,0.00046216468904483165,0.0,0.0,0.0025462795880656103,0.0013497723854142532,0.00046216468904483165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005931356498204176,0.0,0.0,0.0,0.0,4.783553126502272e-05,0.0005193608178445744,0.00017429696587595612,0.0005671963491095971,0.0003034355452518092,0.00016084994030257123,5.507533229019384e-05,0.0,0.0,0.0,0.0,0.0,4.783553126502272e-05,0.0,0.0,0.000359632025543465,0.0001546215903940213,5.294273317211071e-05,0.0,0.0 +98394,50.0,the Greater Atlanta and Macon Area,G1302070050200,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,63124.0,,,9949.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00556638732736015,0.0,0.0009376937618422741,0.006504050715602987,0.004528642928969921,0.0015132734711876712,0.00046216468904483165,0.0,0.0,0.003590949167127647,0.0015132734711876712,0.00046216468904483165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009376937618422741,0.0,0.0,0.0,0.0,7.562264761903887e-05,0.0006633339998783261,0.0002382317923091541,0.000738956647497365,0.000427925427086689,0.0001803334345094397,5.507513828219731e-05,0.0,0.0,0.0,0.0,0.0,7.562264761903887e-05,0.0,0.0,0.0005145210181827451,0.00017193031541603993,5.2508764790061887e-05,0.0,0.0 +98395,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5663.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010091090066932898,0.0,0.0,0.0010091090066932898,0.00046754308784830486,0.00024324150386730313,0.00026052728227881836,0.0,3.78798397726028e-05,0.00046754308784830486,0.00024324150386730313,0.00026052728227881836,0.0,3.78798397726028e-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.0001202558768921137,3.500037755250233e-05,0.0001202558768921137,5.571727498328979e-05,2.898717596424116e-05,3.10471282853994e-05,0.0,4.514153890385057e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.571727498328979e-05,2.898717596424116e-05,3.10471282853994e-05,0.0,4.514153890385057e-06 +98396,35.0,Eastern Counties in South Carolina and Georgia,G1301270000102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,37154.0,,,1547.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003276339424151414,0.0,0.00014579327730120876,0.0034221023278531845,0.0020675309137277668,0.0009472918192646038,0.00040727959486081423,0.0,0.0,0.001921737636426558,0.0009472918192646038,0.00040727959486081423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014579327730120876,0.0,0.0,0.0,0.0,1.1757722770057296e-05,0.00039043341418859323,0.00010564004717602198,0.00040219113695865057,0.00022900880813320253,0.00011288646606698784,4.853452044030525e-05,0.0,0.0,0.0,0.0,0.0,1.1757722770057296e-05,0.0,0.0,0.00024299174285971357,0.00011133284084484716,4.78665532540899e-05,0.0,0.0 +98397,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,Electricity,112283.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01011940664296673,0.0,0.0,0.01011940664296673,0.0032769440916498097,0.0026527174995545355,0.004189745051762384,0.0,0.0,0.0032769440916498097,0.0026527174995545355,0.004189745051762384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012059100949841448,0.0003791082262322119,0.0012059100949841448,0.0003905070821089788,0.0003161192078467629,0.0004992838050284031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003905070821089788,0.0003161192078467629,0.0004992838050284031,0.0,0.0 +98398,50.0,the Greater Atlanta and Macon Area,G1301210011201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,60841.0,,5372.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009266910759229141,0.0015812512748828382,0.0,0.01084816203411198,0.003103056782367026,0.003124846402838395,0.004620289538512857,0.0,0.0,0.0015218055074841877,0.003124846402838395,0.004620289538512857,0.0,0.0,0.0015812512748828382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010564961672103316,0.0,0.0,0.001104321322895845,0.00042686854263882125,0.0012099709396168781,0.00018135086382928725,0.0003723824047827427,0.0005505917115097783,0.0,0.0,0.00010564961672103316,0.0,0.0,0.0,0.0,0.0,0.0003461054986862118,0.0003485358465619841,0.0005153330173938593,0.0,0.0 +98399,35.0,Eastern Counties in South Carolina and Georgia,G1300510002600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,17800.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0008803656355898819,0.0,0.0,0.0008803656355898819,0.00039552890255853797,0.00014604498701697495,0.00018615106454913436,0.0,0.00015264068146523456,0.00039552890255853797,0.00014604498701697495,0.00018615106454913436,0.0,0.00015264068146523456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010491231540295445,2.9849689609998993e-05,0.00010491231540295445,4.713479411131468e-05,1.7404038869235208e-05,2.2183441069333544e-05,0.0,1.8190041353071006e-05,0.0,0.0,0.0,0.0,0.0,0.0,4.713479411131468e-05,1.7404038869235208e-05,2.2183441069333544e-05,0.0,1.8190041353071006e-05 +98400,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,259230.0,,31038.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.015474793492000784,0.005278310864388299,0.0,0.020753104356389083,0.012322282040431136,0.0032167662813559206,0.002724908325202235,0.0,0.002489147709399793,0.009390158981312744,0.0032167662813559206,0.002514271631532008,0.0,0.00035359659780011303,0.002932123059118392,0.00021063669367022726,0.0021355511115996794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035266594948501465,0.0,0.0,0.0018441003397913752,0.000882461444025871,0.0021967662892763895,0.001119006555860344,0.00038333563517628044,0.00029962074598492846,0.0,4.213740276982234e-05,0.00019590736302166055,1.4073515463209394e-05,0.00014268507100014465,0.0,0.0,0.0,0.001304343356469532,0.0003405024909050851,0.0002884381366458074,0.0,0.0002634823052559651 +98401,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,129362.0,,9506.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,240343.828889517,0.0,0.0,0.010733787052505992,0.002769464796734211,0.0,0.013503251849240203,0.008123965894416604,0.0038546527574462087,0.0015246331973773905,0.0,0.0,0.005354501097682394,0.0038546527574462087,0.0015246331973773905,0.0,0.0,0.002769464796734211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018503977146654054,0.0,0.0,0.0012791247068717714,0.0005577987882148527,0.0014641644783383117,0.0006380855716173848,0.00045935153681940386,0.00018168759843498276,0.0,0.0,0.00018503977146654054,0.0,0.0,0.0,0.0,0.0,0.0008808857613439252,0.0004179619625549033,0.00016531675443948312,0.0,0.0 +98402,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,37118.0,,1072.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.00182323079518545,0.00018223265467530268,0.0,0.0020054457194993327,0.0008064832195525219,0.0003492526592522001,0.0006184350063314417,0.0,0.00023127483436316876,0.0008064832195525219,0.0003492526592522001,0.0004362023516561391,0.0,0.00023127483436316876,0.0,0.00018223265467530268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.21754586340163e-05,0.0,0.0,0.00021727008350162408,6.554228380871416e-05,0.00022944554213564039,9.61066897934949e-05,4.161960989210443e-05,5.1981198221421125e-05,0.0,2.7560472709544634e-05,0.0,1.2175458634016298e-05,0.0,0.0,0.0,0.0,9.227074945699453e-05,3.995843166697178e-05,7.075591920722792e-05,0.0,2.646044180444613e-05 +98403,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,29272.0,,1009.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003543292989609814,0.0002938949481596866,0.0,0.0038371879377695002,0.0024997472337269754,0.0009685533388710302,0.0003688873651714959,0.0,0.0,0.0022058522855672885,0.0009685533388710302,0.0003688873651714959,0.0,0.0,0.0002938949481596866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.963711955550434e-05,0.0,0.0,0.0004222473912521988,0.00012611836733677275,0.0004418845108077032,0.00026286716221315216,0.00011542063324318402,4.3959595795862696e-05,0.0,0.0,1.963711955550434e-05,0.0,0.0,0.0,0.0,0.0,0.00028786694877406524,0.00011153707487858314,4.248048715505494e-05,0.0,0.0 +98404,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010702,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,51689.0,,2387.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00460540507945847,0.0007026999153985006,0.0,0.005308104994856971,0.0015368127249637646,0.001380449180876969,0.0023908737786225353,0.0,0.0,0.0008341128095652639,0.001380449180876969,0.0023908737786225353,0.0,0.0,0.0007026999153985006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.695023493752129e-05,0.0,0.0,0.0005488171280437998,0.0001981292751262694,0.0005957673629813211,9.939959432710333e-05,0.00016450543259234835,0.00028491575834478774,0.0,0.0,4.695023493752129e-05,0.0,0.0,0.0,0.0,0.0,0.00017248770803043826,0.00015493788631114992,0.0002683452131582254,0.0,0.0 +98405,50.0,the Greater Atlanta and Macon Area,G1301350050220,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,974.0,,249.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0002339783116085007,0.0001975871991632054,0.0,0.00043148280369796686,0.00025655734273933163,0.00010247406436300192,4.56543047040977e-05,0.0,2.6797091891535604e-05,5.8970143576126194e-05,0.00010247406436300192,4.56543047040977e-05,0.0,2.6797091891535604e-05,0.0001975871991632054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.320037435941841e-05,0.0,0.0,2.78788128443914e-05,2.1685654939536788e-05,4.107918720380981e-05,7.0263674648466136e-06,1.2209914851255198e-05,5.43976835988125e-06,0.0,3.192907515582472e-06,1.320037435941841e-05,0.0,0.0,0.0,0.0,0.0,2.442546266172475e-05,9.756011682100894e-06,4.346503993962625e-06,0.0,2.5512088660215405e-06 +98406,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,8163.0,,63.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016562091516296312,4.970695131732376e-05,0.0,0.001705916102946955,0.0009755299347551311,0.00047060324957665925,0.00020999326022410155,0.0,4.970695131732376e-05,0.0009755299347551311,0.00047060324957665925,0.00020999326022410155,0.0,0.0,0.0,0.0,4.970695131732376e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3231503530784492e-06,0.0,0.0,0.00019736461461915183,6.785234016402177e-05,0.00020068776497223027,0.00011625046838616208,5.608013269328209e-05,2.5024157628865242e-05,0.0,0.0,0.0,0.0,3.323150353078449e-06,0.0,0.0,0.0,0.00011476351148295626,5.536281308503782e-05,2.4704074239527424e-05,0.0,5.847636320581324e-06 +98407,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970300,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,62646.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00525415266698561,0.0,0.0,0.00525415266698561,0.0013248703038718293,0.0014307494455989037,0.0024985022279085793,0.0,0.0,0.0013248703038718293,0.0014307494455989037,0.0024985022279085793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006261256045988614,0.00017605834925905295,0.0006261256045988614,0.00015788182654820796,0.00017049920671015646,0.00029774091412885584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015788182654820796,0.00017049920671015646,0.00029774091412885584,0.0,0.0 +98408,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,511758.0,,,,5.759960461090961,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,863994.0691636442,0.0,0.0,0.08111287410817469,0.0,0.0,0.08111287410817469,0.039228822803666616,0.010875212349383554,0.030752302259560445,0.0,0.0002564821016726937,0.039228822803666616,0.010875212349383554,0.030752302259560445,0.0,0.0002564821016726937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009666062474419816,0.0033929893812419338,0.009666062474419816,0.004674822045049085,0.0012959777735348317,0.0036646916798525227,0.0,3.056447013617654e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.004674822045049085,0.0012959777735348317,0.0036646916798525227,0.0,3.056447013617654e-05 +98409,50.0,the Greater Atlanta and Macon Area,G1300890021907,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,48609.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004021980916748783,0.0,0.0,0.004021980916748783,0.0029928929941983136,0.0007660221778201011,0.0002630353711309308,0.0,0.0,0.0029928929941983136,0.0007660221778201011,0.0002630353711309308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00047929156478286963,0.0001370511861252918,0.00047929156478286963,0.0003566571786662199,9.128535810223743e-05,3.134540845223537e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003566571786662199,9.128535810223743e-05,3.134540845223537e-05,0.0,0.0 +98410,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,8859.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001887871665173431,0.0,0.0,0.001887871665173431,0.0009420335698907116,0.0003248733856479996,0.000575475819078101,0.0,4.5488890556619085e-05,0.0009420335698907116,0.0003248733856479996,0.000575475819078101,0.0,4.5488890556619085e-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.0002249748244374106,7.466712369902048e-05,0.0002249748244374106,0.00011226072243678731,3.871467232060584e-05,6.857858706893468e-05,0.0,5.420842611082794e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011226072243678731,3.871467232060584e-05,6.857858706893468e-05,0.0,5.420842611082794e-06 +98411,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,12574.0,,1295.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030193044339271564,0.0010270564416947194,0.0,0.004046443582695616,0.002646212824289141,0.00044752797600339244,0.0008743791835719582,0.0,7.832359883112413e-05,0.0016191563825944215,0.00044752797600339244,0.0008743791835719582,0.0,7.832359883112413e-05,0.0010270564416947194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.862275170941369e-05,0.0,0.0,0.00035980923982609377,0.0001888706338538085,0.00042843199153550746,0.0001929541852866772,5.3331720722593376e-05,0.00010419939964502998,0.0,9.333790338993888e-06,6.862275170941369e-05,0.0,0.0,0.0,0.0,0.0,0.0002801774464829547,4.7383658787912734e-05,9.257808920824496e-05,0.0,8.292797056395004e-06 +98412,50.0,the Greater Atlanta and Macon Area,G1302550160700,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,76798.0,,4327.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006772128104240585,0.0012604740030672627,0.0,0.008032602107307848,0.005225717036066326,0.0020278022456631873,0.000779113199177772,0.0,0.0,0.003965243032999063,0.0020278022456631873,0.000779113199177772,0.0,0.0,0.0012604740030672627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.421700327535709e-05,0.0,0.0,0.0008070214824706434,0.0002875185937019214,0.0008912384857460006,0.0004725303865476923,0.00024164929387966998,9.284542160671362e-05,0.0,0.0,8.421700327535709e-05,0.0,0.0,0.0,0.0,0.0,0.0005798071504031911,0.00022499003170753417,8.644467366660614e-05,0.0,0.0 +98413,50.0,the Greater Atlanta and Macon Area,G1302270050500,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,32693.0,,9692.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.008716630693221154,0.0075168992548334075,0.0,0.016233529948054562,0.005241557680068106,0.0008156427188122394,0.009385591951547085,0.00041530098183995847,0.00037543661578717433,0.005241557680068106,0.0008156427188122394,0.0018686926967136765,0.00041530098183995847,0.00037543661578717433,0.0,0.0075168992548334075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000502235994783366,0.0,0.0,0.0010387408879402663,0.000830769878855767,0.0015409768827236324,0.0006246244071138978,9.719827210758518e-05,0.0002226878227824223,4.9490465504566015e-05,4.473992043179518e-05,0.0,0.000502235994783366,0.0,0.0,0.0,0.0,0.0004975577856629656,7.742533991518825e-05,0.0008909325497467846,3.942267728803478e-05,3.563853011065917e-05 +98414,85.0,Rural Climate Zone 3A,G1300090970300,ComStock 90.1-2004,gen5_led,_1000,Electricity,10776.0,,3479.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.002363237245960792,0.002697920027081428,0.0,0.005061157273042221,0.0013656577652443652,0.00015484839957623063,0.002934356956773803,0.000426864073818758,0.0001795109384121316,0.0013656577652443652,0.00015484839957623063,0.0002364369296923751,0.000426864073818758,0.0001795109384121316,0.0,0.002697920027081428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001802614902069825,0.0,0.0,0.0002816191815162855,0.00027344629522927185,0.000461880671723268,0.00016274092782551653,1.8452772620395768e-05,2.817540842926226e-05,5.086798259168108e-05,2.1391725962025384e-05,0.0,0.0001802614902069825,0.0,0.0,0.0,0.0,0.00012462978167363157,1.4131448392741098e-05,0.00026778910220583895,3.8955569746882643e-05,1.6382149050592815e-05 +98415,50.0,the Greater Atlanta and Macon Area,G1300670030310,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11256.0,,582.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026941829270579394,0.00046183629976029257,0.0,0.003156019226818232,0.0016067503215335254,0.0004930995736337508,0.0009844622987189764,0.0,7.170703293197954e-05,0.0011449140217732327,0.0004930995736337508,0.0009844622987189764,0.0,7.170703293197954e-05,0.00046183629976029257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.085794734980657e-05,0.0,0.0,0.0003210638740807237,0.00011439766549228816,0.00035192182143053025,0.0001364385942870133,5.8762327467974663e-05,0.0001173176759227277,0.0,8.545276403008058e-06,3.085794734980657e-05,0.0,0.0,0.0,0.0,0.0,0.00017916573350797743,5.498461436014626e-05,0.00010977555597598475,0.0,7.995917586421808e-06 +98416,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,FuelOil,88279.0,,25023.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.007865531266857139,0.007365781717905347,0.0,0.015231312984762485,0.00878103291232391,0.00226056571028249,0.004189714362156086,0.0,0.0,0.001415251194418564,0.00226056571028249,0.004189714362156086,0.0,0.0,0.007365781717905347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004921384567547984,0.0,0.0,0.0009373213187072449,0.0007457619393851073,0.0014294597754620434,0.0001686529581852981,0.0002693875798974493,0.0004992807806244977,0.0,0.0,0.0004921384567547984,0.0,0.0,0.0,0.0,0.0,0.0008241005452210583,0.00021215424801987237,0.0003932049822211128,0.0,0.0 +98417,35.0,Eastern Counties in South Carolina and Georgia,G1300510011600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10322.0,,226.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0008652320703511346,6.656575605971733e-05,0.0,0.0009317978264108518,0.0004147393395071554,0.0002672144020340981,0.0002498440848695983,0.0,0.0,0.0003481735834474381,0.0002672144020340981,0.0002498440848695983,0.0,0.0,6.656575605971733e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.447543426487611e-06,0.0,0.0,0.00010310977742059176,3.973781649805328e-05,0.00010755732084707939,4.149187475034986e-05,3.184396240205343e-05,2.9773940268188462e-05,0.0,0.0,4.447543426487611e-06,0.0,0.0,0.0,0.0,0.0,4.787331644580169e-05,3.0844529102678356e-05,2.8839475298599343e-05,0.0,0.0 +98418,50.0,the Greater Atlanta and Macon Area,G1302230120202,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,132016.0,,9506.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00732747965514948,0.001616512511389054,0.0,0.008944009896899956,0.004070607296261403,0.0015211940883948503,0.002153866574946594,0.0,0.0011983242069356888,0.0038492082732092033,0.0015211940883948503,0.0007587530866097398,0.0,0.0011983242069356888,0.00022139902305219934,0.0013951134883368546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010800636915081252,0.0,0.0,0.0008732025209049842,0.0003353288693064377,0.0009812088900557968,0.0004587032002596574,0.00018127795303241208,9.04192354197054e-05,0.0,0.0001428021321932095,1.4792650502195805e-05,9.32137186486167e-05,0.0,0.0,0.0,0.0,0.00044656883356111466,0.00016688366630169957,0.000236291445972588,0.0,0.00013146299909863707 +98420,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,44716.0,,2123.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003943161426207818,0.000618406484552627,0.0,0.004561567910760444,0.00367183406243038,0.0006664575188631504,0.00022324595586747592,0.0,0.0,0.0030534275778777526,0.0006664575188631504,0.00022324595586747592,0.0,0.0,0.000618406484552627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.131818204945103e-05,0.0,0.0,0.00046989816329012584,0.00014338128722583647,0.0005112163453395769,0.00036387047231896787,7.94203255142575e-05,2.6603745899635076e-05,0.0,0.0,4.131818204945103e-05,0.0,0.0,0.0,0.0,0.0,0.0004115035941175115,7.469010300462769e-05,2.5019244238629733e-05,0.0,0.0 +98421,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,5802.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013931179500648943,0.0,0.0,0.001393117950064894,0.0006870476615524268,0.00026408368644960866,0.0003877307616898732,0.0,5.425584037298567e-05,0.0006870476615524268,0.00026408368644960866,0.0003877307616898732,0.0,5.425584037298567e-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.00016601440844419524,5.484862156667324e-05,0.00016601440844419524,8.187376460139692e-05,3.1470197468672255e-05,4.620491253778124e-05,0.0,6.465533836344817e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.187376460139693e-05,3.147019746867226e-05,4.620491253778125e-05,0.0,6.4655338363448175e-06 +98422,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,113649.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009737904147079987,0.0,0.0,0.009737904147079987,0.0028881374694642134,0.0027676500751394324,0.004082085912870043,0.0,0.0,0.0028881374694642134,0.0027676500751394324,0.004082085912870043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011604484541423365,0.00042738899622933813,0.0011604484541423365,0.00034417412732444064,0.0003298158620985751,0.0004864548074943522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034417412732444064,0.0003298158620985751,0.0004864548074943522,0.0,0.0 +98423,50.0,the Greater Atlanta and Macon Area,G1300670030223,ComStock 90.1-2004,gen4_led,_1000,NaturalGas,36696.0,,950.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.008614584384988671,0.0007369651768865618,0.0,0.009351549561875233,0.002340434505135467,0.00017182916402062146,0.006204205302498929,0.00041497753870768444,0.00022018391229560103,0.0018235723797614379,0.00017182916402062146,0.006204205302498929,0.00041497753870768444,0.0,0.0005168621253740293,0.0,0.00022018391229560103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9240162782812406e-05,0.0,0.0,0.0010265871224344968,0.0003149599931865632,0.0010758272852173093,0.0002173123900385107,2.047662419438787e-05,0.0007393458562648462,4.9452251936752256e-05,0.0,3.453402682770867e-05,0.0,1.4711538650164383e-05,0.0,0.0,0.0,0.0002692498481913515,1.976768682305908e-05,0.0007137483797048725,4.774012648279492e-05,2.533054645608935e-05 +98424,50.0,the Greater Atlanta and Macon Area,G1300890020900,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,32679.0,,4548.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0016098636258565346,0.0007734160955041232,0.0,0.0023832974517220776,0.0008848336866677351,0.00023352659026351546,0.000859993450318241,0.0,0.000404961454834006,0.0006596580966330645,0.00023352659026351546,0.0006445695590645996,0.0,7.21271102567748e-05,0.00022517559003467058,0.00021542389125364151,0.0003328343445772312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.167548314011083e-05,0.0,0.0,0.00019184491105082431,0.00010240268706265026,0.00024352039419093518,7.861041571468129e-05,2.782899570966449e-05,7.681233847309566e-05,0.0,8.595274052609153e-06,1.5045015838229465e-05,1.4393460034211653e-05,2.2238191914586104e-05,0.0,0.0,0.0,9.041047227027891e-05,2.386126300514665e-05,8.787234840191579e-05,0.0,4.137812216517724e-05 +98425,50.0,the Greater Atlanta and Macon Area,G1300770170801,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,13532.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006965372483867744,0.0,0.0,0.0006965372483867745,0.00030487356461780796,9.010569673670833e-05,0.00017845608769283144,0.0,0.00012311962970084665,0.00030487356461780796,9.010569673670833e-05,0.00017845608769283144,0.0,0.00012311962970084665,0.0,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.300489401704439e-05,2.1159812142922403e-05,8.300489401704439e-05,3.633114808764358e-05,1.0737708321105244e-05,2.126624050608506e-05,0.0,1.4671909992474383e-05,0.0,0.0,0.0,0.0,0.0,0.0,3.633114808764358e-05,1.0737708321105243e-05,2.1266240506085058e-05,0.0,1.4671909992474382e-05 +98426,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,19021.0,,1948.0,,8.53126424238864,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004406750955668626,0.0015104794277200982,0.0,0.005917230383388723,0.0020712489583003383,0.0003644395492898546,0.0025740413074204437,0.0003137398383058876,0.0005935990085060621,0.0020712489583003383,0.0003644395492898546,0.0016572417489894762,0.0003137398383058876,0.0,0.0,0.0009167995584309675,0.0005935990085060621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010092123112163105,0.0,0.0,0.0005251426709057138,0.0002593931705364319,0.0006260639020273449,0.0002468261131647007,4.342944727828639e-05,0.00019748979852861762,3.738767593515668e-05,0.0,0.0,6.12550812878508e-05,3.966074719828123e-05,0.0,0.0,0.0,0.00021914546517300883,3.8558993227981685e-05,0.00027234267393528753,3.319478449624338e-05,6.280487448116563e-05 +98427,85.0,Rural Climate Zone 3A,G1300170960500,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,48084.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004181351192998667,0.0,0.0,0.004181351192998667,0.002448020993884484,0.0012892074281353762,0.00044418351817768274,0.0,0.0,0.002448020993884484,0.0012892074281353762,0.00044418351817768274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004982850200304184,0.00014185162022731368,0.0004982850200304184,0.00029172679683426043,0.00015363281377259928,5.29326485713392e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029172679683426043,0.00015363281377259928,5.29326485713392e-05,0.0,0.0 +98428,35.0,Eastern Counties in South Carolina and Georgia,G1301270000404,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,15778.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,56663.68529324113,0.0,0.0,0.0014058294852851692,0.0,0.0,0.0014058294852851692,0.00040350694360219625,0.000450707558088063,0.0005515842939886121,0.0,0.0,0.00040350694360219625,0.000450707558088063,0.0005515842939886121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016752942467305497,5.749168546809431e-05,0.00016752942467305497,4.808498243977748e-05,5.37097697072233e-05,6.573101531716767e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.808498243977748e-05,5.37097697072233e-05,6.573101531716767e-05,0.0,0.0 +98429,50.0,the Greater Atlanta and Macon Area,G1300890023208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,17865.0,,1684.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014893390748307231,0.0004906551253174429,0.0,0.001979963826548728,0.0013366813640565821,0.000454783904381458,0.00018852893171012556,0.0,0.0,0.0008460262387391392,0.000454783904381458,0.00018852893171012556,0.0,0.0,0.0004906551253174429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2782014834017206e-05,0.0,0.0,0.0001774805532314699,8.446662435499162e-05,0.0002102625680654871,0.00010081868356057759,5.419538123617894e-05,2.246648843471333e-05,0.0,0.0,3.2782014834017206e-05,0.0,0.0,0.0,0.0,0.0,0.000141949086404129,4.829584781696563e-05,2.002085937353274e-05,0.0,0.0 +98430,50.0,the Greater Atlanta and Macon Area,G1301210008904,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,4576.0,,573.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001098763474626699,0.00045480619849245157,0.0,0.0015535696731191506,0.0009206124377922309,0.00026391827230213,0.0003352944769391523,0.0,3.3827193159376724e-05,0.0004995507253854167,0.00026391827230213,0.0003352944769391523,0.0,0.0,0.00042106171240681407,0.0,3.3827193159376724e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0389322462228404e-05,0.0,0.0,0.00013093698570493926,6.65294782179986e-05,0.00016132630816716767,5.9530251686701775e-05,3.145050217421612e-05,3.995623184402136e-05,0.0,0.0,2.8134577315003595e-05,0.0,2.26027148336996e-06,0.0,0.0,0.0,9.559854856307194e-05,2.7405890617623087e-05,3.481776263360827e-05,0.0,3.5126948488272765e-06 +98431,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,40073.0,,172.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00941363642593423,0.00013671479289107516,0.0,0.009550433925899044,0.005125026531329924,0.003608096091877287,0.0006805965098007607,0.0,0.00013671479289107516,0.005125026531329924,0.003608096091877287,0.0006805965098007607,0.0,0.0,0.0,0.0,0.00013671479289107516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.135541945821934e-06,0.0,0.0,0.0011218097165716073,0.0003823612808057626,0.0011309452585174292,0.0006107421511090084,0.0004299716996761207,8.110572187128473e-05,0.0,0.0,0.0,0.0,9.135541945821934e-06,0.0,0.0,0.0,0.0006068964510257032,0.00042726426872795255,8.059501816303315e-05,0.0,1.6189520600740526e-05 +98432,50.0,the Greater Atlanta and Macon Area,G1300450911000,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,3653.0,,334.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008772739311528338,0.0002653242925556982,0.0,0.0011425155166347929,0.0005736562634558362,0.0002320760489124966,0.0002893920510138367,0.0,4.7308446178883846e-05,0.0003083319709001381,0.0002320760489124966,0.0002893920510138367,0.0,4.7308446178883846e-05,0.0002653242925556982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.772473392563885e-05,0.0,0.0,0.00010453849420147615,5.014294460020244e-05,0.000122263228127115,3.67417277630907e-05,2.7654851959021593e-05,3.448479223257897e-05,0.0,5.637411019444175e-06,1.772473392563885e-05,0.0,0.0,0.0,0.0,0.0,6.138828364627692e-05,2.4834994796922294e-05,3.096851275639028e-05,0.0,5.062586252259285e-06 +98433,50.0,the Greater Atlanta and Macon Area,G1301350050546,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,8701.0,,543.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002089263389728645,0.0004305730258868344,0.0,0.0025198364156154792,0.001032018866119078,0.0004519114509115757,0.0009646953080952817,0.0,7.112808341580438e-05,0.0006725739236480479,0.0004519114509115757,0.0009646953080952817,0.0,0.0,0.00035944494247103003,0.0,7.112808341580438e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8768140943863022e-05,0.0,0.0,0.00024896944201289133,0.00010279572140517015,0.0002777375829567544,8.014803461655643e-05,5.385254072120811e-05,0.00011495901079285714,0.0,0.0,2.4015816469848002e-05,0.0,4.752324474015021e-06,0.0,0.0,0.0,0.00011374961631057804,4.9809897701634745e-05,0.0001063291813308689,0.0,7.839771600184092e-06 +98434,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,69224.0,,4739.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006773963350060447,0.001394965364655782,0.0,0.008168959404322527,0.004633209862764189,0.0013063030920617191,0.002229415759890321,0.0,0.0,0.003238244498108407,0.0013063030920617191,0.002229415759890321,0.0,0.0,0.001394965364655782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.320397776821009e-05,0.0,0.0,0.0008072418723770467,0.00035482661250534856,0.0009004458501452568,0.00038589617581033617,0.0001556699526457311,0.0002656757439209794,0.0,0.0,9.320397776821009e-05,0.0,0.0,0.0,0.0,0.0,0.0005107082049606635,0.00014399082429721564,0.0002457434380417463,0.0,0.0 +98435,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,71203.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006278800102172619,0.0,0.0,0.0062788001021726195,0.003409041680094951,0.002369900096130586,0.0004998886995465194,0.0,0.0,0.003409041680094951,0.002369900096130586,0.0004998886995465194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007482341776050819,0.00018792203100355284,0.0007482341776050819,0.000406249833793031,0.00028241705749174734,5.957090589169083e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040624983379303095,0.0002824170574917473,5.9570905891690824e-05,0.0,0.0 +98436,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,80415.0,,1100.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.004139401098571208,0.00018701985225871696,0.0,0.004326420950829925,0.0025620904162818904,0.0005199251182816285,0.000836412069629571,0.0,0.00040799334663683506,0.0025620904162818904,0.0005199251182816285,0.000649392217370854,0.0,0.00040799334663683506,0.0,0.00018701985225871696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.249573325553654e-05,0.0,0.0,0.0004932833977891403,0.00015631583851842616,0.0005057791310446769,0.00030531872507420484,6.19583420003459e-05,7.738665373430189e-05,0.0,4.861967698028779e-05,0.0,1.249573325553654e-05,0.0,0.0,0.0,0.0,0.00029952052265195536,6.078171253362173e-05,9.778053836656224e-05,0.0,4.769635749253749e-05 +98437,50.0,the Greater Atlanta and Macon Area,G1301350050428,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,79660.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00687772490895298,0.0,0.0,0.00687772490895298,0.00177373648558203,0.0018787256287264716,0.0032252627946444796,0.0,0.0,0.00177373648558203,0.0018787256287264716,0.0032252627946444796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008196047218697063,0.00028605138159665917,0.0008196047218697063,0.00021137262949310392,0.0002238839757021134,0.0003843481166744892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021137262949310392,0.0002238839757021134,0.0003843481166744892,0.0,0.0 +98438,50.0,the Greater Atlanta and Macon Area,G1301210000700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,7371.0,,402.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014797122562699493,0.0003188357692650301,0.0,0.0017984653184612398,0.0010484775737932004,0.0004036932269215595,0.00029303116225836616,0.0,5.334606256185329e-05,0.00072964180452817,0.0004036932269215595,0.00029303116225836616,0.0,5.334606256185329e-05,0.0003188357692650301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1300536093138698e-05,0.0,0.0,0.00017633335732924343,7.651568398808524e-05,0.00019763389342238215,8.694946500243617e-05,4.810704360427237e-05,3.491974093217312e-05,0.0,6.357107790361747e-06,2.1300536093138698e-05,0.0,0.0,0.0,0.0,0.0,0.00011521751514902457,4.436196982270164e-05,3.2201282335962286e-05,0.0,5.862214819840722e-06 +98439,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,63949.0,,3357.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012425126378599537,0.0023093830667026754,0.0,0.014734509445302213,0.004764285954596026,0.001118401228017439,0.005028860927672615,0.00036957301064344375,0.0034534600443437034,0.004764285954596026,0.001118401228017439,0.00271947786096994,0.00036957301064344375,0.0034534600443437034,0.0,0.0023093830667026754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015430134590157838,0.0,0.0,0.0014806786430822292,0.0004864763233396564,0.0016349799889838078,0.0005677508821686594,0.00013327774400545057,0.0003240749966139973,4.40413117134851e-05,0.0004115422553129701,0.0,0.00015430134590157838,0.0,0.0,0.0,0.0,0.0005286577219606481,0.00012410074690653703,0.0005580156580474901,4.100879497302714e-05,0.0003832050253330493 +98440,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,13199.0,,1122.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0011760257133279707,0.00033034292218847274,0.0,0.001506399325122741,0.0005541929105239168,0.0004319868982464644,0.0005201888267460621,0.0,0.0,0.00022384998833544412,0.0004319868982464644,0.0005201888267460621,0.0,0.0,0.00033034292218847274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.207190319337114e-05,0.0,0.0,0.0001401465450401284,6.356428642940521e-05,0.00016221844823349955,2.6676119507377264e-05,5.147971732737076e-05,6.199070820538037e-05,0.0,0.0,2.207190319337114e-05,0.0,0.0,0.0,0.0,0.0,5.967893935419241e-05,4.651903590373311e-05,5.6017168127896854e-05,0.0,0.0 +98441,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300830040101,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,34334.0,,5217.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,22700.572550927158,0.0,0.0,0.007148974990865095,0.0035887239096791456,0.0,0.01073769890054424,0.004818434532712813,0.00031442035293243885,0.003908738420350802,0.00036326165319406994,0.001332843941354116,0.004818434532712813,0.00031442035293243885,0.0003200145106716565,0.00036326165319406994,0.001332843941354116,0.0,0.0035887239096791456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023977624801661034,0.0,0.0,0.000851930392802617,0.0005046090267629179,0.0010917066408192273,0.0005742041102945557,3.746890360102602e-05,3.8135549239912895e-05,4.328923283284598e-05,0.0001588325968342764,0.0,0.00023977624801661034,0.0,0.0,0.0,0.0,0.0004898923900211664,3.1967257648440005e-05,0.000397403180164229,3.693297445012514e-05,0.00013551083853526668 +98442,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960900,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,16776.0,,338.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014308415144177967,9.952639322345011e-05,0.0,0.0015303679076412472,0.0003802749116348352,0.0004980309309991208,0.0006520620650072911,0.0,0.0,0.0002807485184113851,0.0004980309309991208,0.0006520620650072911,0.0,0.0,9.952639322345011e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.650290686819178e-06,0.0,0.0,0.00017050908321637151,6.142778894342699e-05,0.0001771593739031907,3.345595721560961e-05,5.9348849332631476e-05,7.770427666813046e-05,0.0,0.0,6.650290686819178e-06,0.0,0.0,0.0,0.0,0.0,4.402161396611791e-05,5.7653357391829664e-05,7.548440254524311e-05,0.0,0.0 +98443,50.0,the Greater Atlanta and Macon Area,G1301210007705,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,8356.0,,305.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002956943300327719,0.00024216631190869214,0.0,0.0031991923193101504,0.0015552238145939367,0.0006107090324910461,0.0009483193074948989,0.0,8.485745765652942e-05,0.0013130575026852446,0.0006107090324910461,0.0009483193074948989,0.0,8.485745765652942e-05,0.00024216631190869214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6182870180827987e-05,0.0,0.0,0.0003523779392285932,0.00011359245037736395,0.0003685608094094212,0.0001564766212573603,7.277799013380882e-05,0.00011301089313031577,0.0,1.0112434707108318e-05,1.6182870180827987e-05,0.0,0.0,0.0,0.0,0.0,0.00017916851839752735,7.035632524182845e-05,0.00010925049095650121,0.0,9.775946600503249e-06 +98444,81.0,the Columbus-Albany Area,G1303210950500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,193222.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.015591588678582829,0.0,0.0,0.015591588678582832,0.010140438787489511,0.0037902607266381747,0.001660889164455145,0.0,0.0,0.010140438787489511,0.0037902607266381747,0.001660889164455145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018580183034717025,0.00046977265732331706,0.0018580183034717025,0.001208415720860489,0.0004516777571677057,0.00019792482544350802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012084157208604887,0.0004516777571677056,0.00019792482544350796,0.0,0.0 +98445,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,NaturalGas,20099.0,,10342.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.00429932538250182,0.00711390392503846,0.0,0.01141322930754028,0.004293014025052447,0.0006608278129378403,0.004080436030962175,0.0003681386112231316,0.002010812827364687,0.0026439567314905017,0.0006608278129378403,0.0003875747233683622,0.0003681386112231316,0.00023882750348198475,0.0016490572935619447,0.0036928613075938124,0.001771985323882702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004753093654108594,0.0,0.0,0.0005123442142036192,0.0006228625997154597,0.0009876535796144786,0.00031507639303066803,7.874986804244068e-05,4.618670359250591e-05,4.3870531003022353e-05,2.8460718534982346e-05,0.00011018034316858442,0.00024673534857349677,0.0001183936736687781,0.0,0.0,0.0,0.0003714996479021935,5.718530114221676e-05,0.0003531040289977513,3.185719022823949e-05,0.00017400741134407762 +98446,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,38670.0,,18702.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.008506705762161627,0.012865343560693356,0.0,0.021372049322854983,0.011170528925623452,0.0006253981472561284,0.005529251165448534,0.0003700750504405531,0.0036767960340863153,0.005218129931182813,0.0006253981472561284,0.0018906101559425228,0.0003700750504405531,0.0004024924773396092,0.005952398994440639,0.0036386410095060107,0.0032743035567467066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008595866503419682,0.0,0.0,0.0010137265652844785,0.0011523273758833994,0.0018733132156264468,0.0006218337721136734,7.452740619914554e-05,0.00022530010949721045,4.410107981509071e-05,4.796419765935834e-05,0.0003977043200589334,0.0002431126088784858,0.00021876972140454903,0.0,0.0,0.0,0.0009791246101762468,5.481770122205091e-05,0.00048465260042591913,3.243799751213105e-05,0.0003222803062900988 +98447,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2004,gen1_t12_incandescent,_1000,Electricity,2480.0,,242.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.0005954909309230134,0.00019229394644388971,0.0,0.0007877848773669033,0.00038773076168987315,0.00024398586753095693,0.0001294365704020161,0.0,2.654897067031768e-05,0.00019543681524598344,0.00024398586753095693,0.0001294365704020161,0.0,2.654897067031768e-05,0.00019229394644388971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.284819870505294e-05,0.0,0.0,7.096100590593102e-05,3.610173408152169e-05,8.380920461098398e-05,2.3289007910515972e-05,2.90743010309023e-05,1.5424163089275283e-05,0.0,3.163678179972758e-06,1.284819870505294e-05,0.0,0.0,0.0,0.0,0.0,4.124908674186801e-05,2.5956656546184013e-05,1.3770226269416261e-05,0.0,2.8244361868898536e-06 +98448,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8109.0,,434.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0019390673438180626,0.00034397871968177955,0.0,0.0022830460634998416,0.001478058114795163,0.00016963220823931952,0.0005955736379967528,0.0,3.9782102468606875e-05,0.0011340793951133833,0.00016963220823931952,0.0005955736379967528,0.0,3.9782102468606875e-05,0.00034397871968177955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.298275499133177e-05,0.0,0.0,0.0002310788900953746,9.993556493118408e-05,0.00025406164508670636,0.0001351483788009288,2.021509079059984e-05,7.097458253686468e-05,0.0,4.7408379669812405e-06,2.298275499133177e-05,0.0,0.0,0.0,0.0,0.0,0.00016448107735634438,1.8876990076540894e-05,6.627655072704584e-05,0.0,4.427026926775315e-06 +98449,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,92106.0,,6274.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.009051531102231863,0.0018468084381768602,0.0,0.010898308850802427,0.0038754527936676096,0.002562029712944824,0.004460857033796291,0.0,0.0,0.0020286443554907493,0.002562029712944824,0.004460857033796291,0.0,0.0,0.0018468084381768602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012339247759342032,0.0,0.0,0.001078652222690823,0.0003987387555516871,0.0012020447002842431,0.0002417493480809824,0.00030531177689777274,0.000531591097712068,0.0,0.0,0.00012339247759342032,0.0,0.0,0.0,0.0,0.0,0.0004274486579160324,0.0002825827640395174,0.0004920166632831031,0.0,0.0 +98450,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,7165.0,,38.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017205552549988123,3.043620313606513e-05,0.0,0.0017509914581348776,0.0010980191109630454,0.00024109111995008114,0.00038144502408568587,0.0,3.043620313606513e-05,0.0010980191109630454,0.00024109111995008114,0.00038144502408568587,0.0,0.0,0.0,0.0,3.043620313606513e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.03569381749912e-06,0.0,0.0,0.0002050325776822515,7.915663446980073e-05,0.00020706827149975064,0.00013084711346005723,2.8729989133478973e-05,4.545547508871528e-05,0.0,0.0,0.0,0.0,2.03569381749912e-06,0.0,0.0,0.0,0.0001298492453087095,2.8510888074336264e-05,4.5108821886394116e-05,0.0,3.5993162303107186e-06 +98451,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,44674.0,,3426.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.0038228201188670492,0.001008491152548811,0.0,0.004831311271415861,0.0016110815722042053,0.0012061015274997193,0.002014158861318234,0.0,0.0,0.0006025904196553941,0.0012061015274997193,0.002014158861318234,0.0,0.0,0.001008491152548811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.738182558829807e-05,0.0,0.0,0.00045555896791166814,0.00019592478473986566,0.0005229407934999662,7.180967482535566e-05,0.00014372906649536427,0.00024002388381910334,0.0,0.0,6.738182558829807e-05,0.0,0.0,0.0,0.0,0.0,0.00017438335649086375,0.00013054834482800488,0.0002180124140219329,0.0,0.0 +98452,50.0,the Greater Atlanta and Macon Area,G1300150960401,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,7686.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018456083504926452,0.0,0.0,0.0018456083504926452,0.0010399587451980514,0.00016615851114226858,0.0006000398199786754,0.0,3.928586002617103e-05,0.0010399587451980514,0.00016615851114226858,0.0006000398199786754,0.0,3.928586002617103e-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.0002199333001481442,7.635928047394734e-05,0.0002199333001481442,0.00012392746206868764,1.980040331604847e-05,7.150419415526714e-05,0.0,4.681528907477862e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012392746206868764,1.980040331604847e-05,7.150419415526714e-05,0.0,4.681528907477862e-06 +98453,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,78289.0,,,,9.325022323477118,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.02178722526549469,0.0,0.0,0.02178722526549469,0.011944058351230484,0.0042263536698718285,0.005115321531588565,0.0,0.0005014917128038137,0.011944058351230484,0.0042263536698718285,0.005115321531588565,0.0,0.0005014917128038137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002596344331917648,0.0006617378252288974,0.002596344331917648,0.0014233518872834219,0.0005036469427260921,0.0006095836391571231,0.0,5.976186275101108e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0014233518872834219,0.0005036469427260921,0.0006095836391571231,0.0,5.976186275101108e-05 +98454,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,34111.0,,4881.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002993985921584991,0.001436611160401765,0.0,0.004430627771593053,0.0019006993868356265,0.0010519476350663584,0.0014779807496910684,0.0,0.0,0.0004640882264338616,0.0010519476350663584,0.0014779807496910684,0.0,0.0,0.001436611160401765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.598667879812827e-05,0.0,0.0,0.0003567881563131012,0.00020957659378960256,0.0004527748351112295,5.530459628490746e-05,0.0001253587916186862,0.00017612842563714178,0.0,0.0,9.598667879812829e-05,0.0,0.0,0.0,0.0,0.0,0.0001942363240234661,0.00010750066165941175,0.00015103784942835168,0.0,0.0 +98455,35.0,Eastern Counties in South Carolina and Georgia,G1302450010512,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,43586.0,,1121.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003832456655244528,0.00032994395730660256,0.0,0.0041624006125511315,0.0017101783109394876,0.0010684586432545223,0.0013837943479634185,0.0,0.0,0.001380234353632885,0.0010684586432545223,0.0013837943479634185,0.0,0.0,0.00032994395730660256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2044147875667845e-05,0.0,0.0,0.00045670653219431,0.00016773279675404281,0.00047875068006997777,0.00016447988900292207,0.0001273261736922829,0.00016490412672081101,0.0,0.0,2.2044147875667845e-05,0.0,0.0,0.0,0.0,0.0,0.00019670116012725529,0.00012289189573495545,0.00015916115406259203,0.0,0.0 +98456,35.0,Eastern Counties in South Carolina and Georgia,G1302450010513,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,148333.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01183367583534586,0.0,0.0,0.011833675835345864,0.0073701842771699165,0.0028523847231992734,0.0016111068349766698,0.0,0.0,0.0073701842771699165,0.0028523847231992734,0.0016111068349766698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014101969489571013,0.0003326015964640374,0.0014101969489571013,0.0008782910336171845,0.00033991333630188956,0.00019199257903802712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008782910336171842,0.00033991333630188945,0.00019199257903802707,0.0,0.0 +98457,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,32365.0,,3245.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003082617504572756,0.0009551833064097013,0.0,0.0040378008109824585,0.0020811849614724163,0.0008284352324001891,0.0011281499275035544,0.0,0.0,0.001126001655062715,0.0008284352324001891,0.0011281499275035544,0.0,0.0,0.0009551833064097013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.38203621300124e-05,0.0,0.0,0.000367349866220164,0.0001735838130488702,0.00043117022835017637,0.00013418354912258265,9.872310506990999e-05,0.00013443955480365604,0.0,0.0,6.382036213001241e-05,0.0,0.0,0.0,0.0,0.0,0.0002222360728236807,8.846315730973603e-05,0.00012046772107527213,0.0,0.0 +98458,85.0,Rural Climate Zone 3A,G1302850960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,92026.0,,4042.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008366661848092328,0.001189713277736746,0.0,0.009556375125829075,0.0025002515354675477,0.0028663785385991424,0.004189745051762384,0.0,0.0,0.0013105382577308017,0.0028663785385991424,0.004189745051762384,0.0,0.0,0.001189713277736746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.948880092144877e-05,0.0,0.0,0.0009970405784017022,0.0003607268817601176,0.0010765293793231511,0.0001561745707224211,0.00034158135800537224,0.000499284649673909,0.0,0.0,7.948880092144877e-05,0.0,0.0,0.0,0.0,0.0,0.0002816543091065737,0.0003228986585847977,0.00047197641163177964,0.0,0.0 +98459,85.0,Rural Climate Zone 3A,G1302090950100,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,65586.0,,1655.0,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,285525.89887641044,0.0,0.0,0.0161489590109588,0.0011458679869510208,0.0,0.01729482699790982,0.010882787028102652,0.0026688808347035305,0.002287189451469877,0.0007721149762179727,0.0006838547074157874,0.010882787028102652,0.0026688808347035305,0.0014378557609278336,0.0007721149762179727,0.00038732041100681,0.0,0.0008493336905420432,0.00029653429640897743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.655967363599778e-05,0.0,0.0,0.0019244442856083152,0.0005345534108727589,0.0020010039592443132,0.0012968834271925615,0.0003180460404803404,0.0001713468528075902,9.201164315340331e-05,4.615632197441962e-05,0.0,5.67471217421626e-05,1.981255189383517e-05,0.0,0.0,0.0,0.001259133724406603,0.0003087883514323939,0.00026462682445370345,8.9333366826434e-05,7.912169212517886e-05 +98460,50.0,the Greater Atlanta and Macon Area,G1301170130509,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7511.0,,410.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015298327429559694,0.0003256177493116533,0.0,0.0018553677851938831,0.0008651159913131557,0.00032710647663896085,0.0006147616791042721,0.0,4.8383638137494846e-05,0.0005394982420015024,0.00032710647663896085,0.0006147616791042721,0.0,4.8383638137494846e-05,0.0003256177493116533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.175525959495446e-05,0.0,0.0,0.0001823032734695087,7.780629457201142e-05,0.00020405853306446314,6.428957413859575e-05,3.897980464788382e-05,7.325837874784333e-05,0.0,5.765660105944888e-06,2.175525959495446e-05,0.0,0.0,0.0,0.0,0.0,9.514787392922413e-05,3.597608426291409e-05,6.761320716213412e-05,0.0,5.3213677101908335e-06 +98461,81.0,the Columbus-Albany Area,G1302150010302,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,14419.0,,1345.0,,8.72605822017302,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0033163055357250094,0.0010672520795320228,0.0,0.004383557615257033,0.003020545040033246,0.0007958901705933554,0.0004094827220833111,0.0,0.00015772238962085924,0.002110932643048343,0.0007958901705933554,0.0004094827220833111,0.0,0.0,0.0009096123969849031,0.0,0.00015772238962085924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.131019624183462e-05,0.0,0.0,0.00039519508223235936,0.00019693376669765355,0.00046650527847419404,0.0002515540834430633,9.484406006239855e-05,4.879693872689756e-05,0.0,0.0,6.077724258119168e-05,0.0,1.0538479869279189e-05,0.0,0.0,0.0,0.00032145127969578004,8.469991688377897e-05,4.357781237572375e-05,0.0,1.6785071339225444e-05 +98462,50.0,the Greater Atlanta and Macon Area,G1301530020108,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,58669.0,,3611.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0030199947303161737,0.0006140733374221087,0.0,0.0036340680677382827,0.0019514922296981119,0.0007999229858271022,0.0005346413182602724,0.0,0.0003480115339527964,0.0018122911621892774,0.0007999229858271022,0.0003251925588051885,0.0,8.25702931331859e-05,0.00013920106750883455,0.00020944875945508377,0.00026544124081961045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1029221229325965e-05,0.0,0.0,0.0003598866932825567,0.00014260592182834553,0.0004009159145118826,0.00021596708996813964,9.532521211382577e-05,3.875254267620531e-05,0.0,9.839735632903771e-06,9.300699193608541e-06,1.3994288571404623e-05,1.7735418115846825e-05,0.0,0.0,0.0,0.00021529158985158475,8.824872000857763e-05,5.898244310529858e-05,0.0,3.8393161546421697e-05 +98463,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,298109.0,,47711.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.015345202280381621,0.008113661610876042,0.0,0.023458863891257665,0.01090915450489151,0.0036516920469898155,0.0038658393522212125,0.0,0.0050321779871551255,0.009149611167926888,0.0036516920469898155,0.0017943657667936037,0.0,0.0007495332986713122,0.0017595433369646202,0.0020714735854276086,0.004282644688483814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005421070917270688,0.0,0.0,0.0018286586326414715,0.0009842896998723814,0.0023707657243685408,0.0010903417981614396,0.0004351652108238005,0.00021383116296606124,0.0,8.932046069016999e-05,0.00011756232474509649,0.00013840366715322716,0.0002861410998287451,0.0,0.0,0.0,0.001102485171572002,0.0003690420124812156,0.00039068385726798226,0.0,0.0005085546830473406 +98464,85.0,Rural Climate Zone 3A,G1303010970400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,38146.0,,4207.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0018241350436178723,0.0007155087351062309,0.0,0.0025396615090855237,0.0011619592356631604,0.00035790507562518585,0.0006844096811754582,0.0,0.00033538751662171885,0.001078165547591991,0.00035790507562518585,0.0003197847985720724,0.0,6.82973521900434e-05,8.379368807116956e-05,0.00036462488260338585,0.0002670901644316754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.78063789267812e-05,0.0,0.0,0.00021737935011543818,0.00010284279943206573,0.00026518572904221936,0.00012848331973687994,4.265099396814054e-05,3.8108259546684975e-05,0.0,8.138889763463658e-06,5.598635777672356e-06,2.4362239688495978e-05,1.7845503460612856e-05,0.0,0.0,0.0,0.00012132916371899807,3.7371641089977795e-05,7.146451588795367e-05,0.0,3.5020408345289806e-05 +98465,50.0,the Greater Atlanta and Macon Area,G1302970110503,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,47827.0,,1366.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.004193519873337001,0.0004019724632873109,0.0,0.00459552302623061,0.002363805545867961,0.0008479231323992301,0.0013837943479634185,0.0,0.0,0.0019618330825806503,0.0008479231323992301,0.0013837943479634185,0.0,0.0,0.0004019724632873109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6858253947694124e-05,0.0,0.0,0.0004997349798075025,0.00018348272353755626,0.0005265932337551967,0.00023378847496172215,0.00010104562807536051,0.00016490453400115843,0.0,0.0,2.6858253947694124e-05,0.0,0.0,0.0,0.0,0.0,0.0002708644912150666,9.716208181687388e-05,0.00015856666072325612,0.0,0.0 +98466,50.0,the Greater Atlanta and Macon Area,G1301350050308,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,316395.0,,31982.0,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,863994.0691636442,0.0,0.0,0.047588294044668016,0.01674673077271189,0.0,0.0643350248173799,0.04892824651453914,0.0069546066342871665,0.008176636298791545,0.0,0.0002755353697620445,0.0324570511115893,0.0069546066342871665,0.008176636298791545,0.0,0.0,0.016471195402949845,0.0,0.0002755353697620445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001118919029266405,0.0,0.0,0.005671006801494617,0.002611118891455005,0.006789925830761022,0.0038678452612214338,0.0008287672907068852,0.0009743942495662981,0.0,0.0,0.0011005093603795634,0.0,1.8409668886841595e-05,0.0,0.0,0.0,0.005163892697732577,0.0007339899745584886,0.0008629631242312771,0.0,2.9080034238677827e-05 +98467,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,134402.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011751357147453371,0.0,0.0,0.011751357147453375,0.0020471194984819662,0.00508394811045855,0.004620289538512857,0.0,0.0,0.0020471194984819662,0.00508394811045855,0.004620289538512857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014003869617366463,0.00040319257031949353,0.0014003869617366463,0.00024395135122008108,0.0006058444619372898,0.0005505911485792756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024395135122008102,0.0006058444619372897,0.0005505911485792754,0.0,0.0 +98468,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030402,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,10346.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0009217930147578007,0.0,0.0,0.0009217930147578007,0.0004775302739922553,0.00022664274250853503,0.00021755861904441503,0.0,0.0,0.0004775302739922553,0.00022664274250853503,0.00021755861904441503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010984650612994364,4.336889538288423e-05,0.00010984650612994364,5.690543465780807e-05,2.7008138492796434e-05,2.5925618656118342e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.690543465780807e-05,2.7008138492796434e-05,2.5925618656118342e-05,0.0,0.0 +98469,50.0,the Greater Atlanta and Macon Area,G1301130140403,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5921.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012167864688526907,0.0,0.0,0.0012167864688526907,0.0007230252386290255,0.0002492791202502726,0.00020114360333399567,0.0,4.3338506639397086e-05,0.0007230252386290255,0.0002492791202502726,0.00020114360333399567,0.0,4.3338506639397086e-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.0001449987078077497,4.499005384276787e-05,0.0001449987078077497,8.615950949261472e-05,2.9705417708847042e-05,2.3969335059029862e-05,0.0,5.164445547258078e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.615950949261472e-05,2.9705417708847042e-05,2.3969335059029862e-05,0.0,5.164445547258078e-06 +98470,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,102928.0,,9959.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.00917072953309214,0.002931563262375463,0.0,0.012102292795467604,0.00452245107363578,0.0026366361458545393,0.004943205575977285,0.0,0.0,0.0015908878112603168,0.0026366361458545393,0.004943205575977285,0.0,0.0,0.002931563262375463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019587027587462648,0.0,0.0,0.0010928590492430374,0.0005058287285818388,0.001288729325117664,0.00018958318796695215,0.00031420310250790466,0.0005890727587681807,0.0,0.0,0.00019587027587462648,0.0,0.0,0.0,0.0,0.0,0.00048157943445121436,0.00028076583323950825,0.0005263840574269415,0.0,0.0 +98471,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,14801.0,,1834.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001361667141822775,0.0005397074163514011,0.0,0.0019013745581741757,0.0008637589692488447,0.000454635827694169,0.000582979761231162,0.0,0.0,0.0003240515528974437,0.000454635827694169,0.000582979761231162,0.0,0.0,0.0005397074163514011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6059140669157754e-05,0.0,0.0,0.00016226847067216446,8.989603971946025e-05,0.00019832761134132222,3.861688976148627e-05,5.4178483277455965e-05,6.947309763322219e-05,0.0,0.0,3.6059140669157754e-05,0.0,0.0,0.0,0.0,0.0,9.009653169560994e-05,4.7421922918414136e-05,6.080915672729815e-05,0.0,0.0 +98472,81.0,the Columbus-Albany Area,G1302150000300,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,46484.0,,2975.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.003882695540753868,0.000875605157279758,0.0,0.004758331387639924,0.0016167284597629825,0.00118124294639858,0.001960329291872063,0.0,0.0,0.0007411233024832244,0.00118124294639858,0.001960329291872063,0.0,0.0,0.000875605157279758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.850348291632507e-05,0.0,0.0,0.00046269450745335715,0.00019764132877464008,0.0005211979903696822,8.831845757808259e-05,0.00014076679912958712,0.0002336092507456874,0.0,0.0,5.850348291632507e-05,0.0,0.0,0.0,0.0,0.0,0.00017708636821528218,0.00012938599682244136,0.00021472226378358708,0.0,0.0 +98473,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,65340.0,,2444.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006203075293710579,0.0007195485092559394,0.0,0.006922623802966519,0.0028391568578130795,0.0017195386408602872,0.00236395899389945,0.0,0.0,0.0021196083485571404,0.0017195386408602872,0.00236395899389945,0.0,0.0,0.0007195485092559394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.807522926097165e-05,0.0,0.0,0.0007392097088769782,0.00028707863872029694,0.00078728493813795,0.00025259004543420286,0.00020491443323311596,0.00028170888743673844,0.0,0.0,4.807522926097165e-05,0.0,0.0,0.0,0.0,0.0,0.0003228870287894969,0.00019555690313770662,0.000268844496428543,0.0,0.0 +98474,50.0,the Greater Atlanta and Macon Area,G1301210008904,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,52142.0,,3404.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004645823290952545,0.0010018621975885073,0.0,0.005647685488541052,0.0018560766992787663,0.0013738509155229628,0.002417788563345621,0.0,0.0,0.0008542145016902592,0.0013738509155229628,0.002417788563345621,0.0,0.0,0.0010018621975885073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.69387937836092e-05,0.0,0.0,0.0005536339609106892,0.00025239968297409573,0.0006205727546942984,0.0001017951240115214,0.00016371921109074395,0.00028812328303067045,0.0,0.0,6.69387937836092e-05,0.0,0.0,0.0,0.0,0.0,0.00020394737499677474,0.0001509599727030146,0.000265668779196017,0.0,0.0 +98475,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Propane,33088.0,,,19333.0,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.0029177487091893153,0.0,0.00182214260387017,0.004739891313059485,0.0037977630056993,0.0006420675185146357,0.00030006078884555024,0.0,0.0,0.0019756204018291294,0.0006420675185146357,0.00030006078884555024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00182214260387017,0.0,0.0,0.0,0.0,0.00014695360518585175,0.0003477016073992547,0.00025833441707466347,0.0004946552125851065,0.00023543027785885286,7.651375443789267e-05,3.575757510250919e-05,0.0,0.0,0.0,0.0,0.0,0.00014695360518585175,0.0,0.0,0.0003963346715896446,6.700618724943811e-05,3.13143537460239e-05,0.0,0.0 +98476,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,11664.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005487724163120543,0.0,0.0,0.0005487724163120543,0.00023728542688456668,0.00014448471521201028,6.196761316308455e-05,0.0,0.00010503466105239281,0.00023728542688456668,0.00014448471521201028,6.196761316308455e-05,0.0,0.00010503466105239281,0.0,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.539652416827328e-05,1.8463067017938893e-05,6.539652416827328e-05,2.8277008269328985e-05,1.721806324342538e-05,7.384603145879459e-06,0.0,1.251684950963946e-05,0.0,0.0,0.0,0.0,0.0,0.0,2.8277008269328985e-05,1.721806324342538e-05,7.384603145879459e-06,0.0,1.251684950963946e-05 +98477,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,30683.0,,3049.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002626071033788585,0.000888397409954803,0.0,0.0035144684437433873,0.002083355559034835,0.0010645339130943257,0.00036660934521366446,0.0,0.0,0.0011949581490800323,0.0010645339130943257,0.00036660934521366446,0.0,0.0,0.000888397409954803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.935736699422354e-05,0.0,0.0,0.0003129448759024987,0.00013465718695117293,0.00037230224289672224,0.00014240133829625723,0.0001268588812111032,4.368827597061218e-05,0.0,0.0,5.935736699422354e-05,0.0,0.0,0.0,0.0,0.0,0.00022069850954583157,0.00011277049995717082,3.8836450995293654e-05,0.0,0.0 +98478,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,72202.0,,8578.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006939226879973576,0.0025251101165686867,0.0,0.009464336996542264,0.005684328878460509,0.0015236468838620502,0.0022563305446134064,0.0,0.0,0.003159218761891822,0.0015236468838620502,0.0022563305446134064,0.0,0.0,0.0025251101165686867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001687129726756498,0.0,0.0,0.0008269329653061707,0.0004405914245860234,0.0009956459379818203,0.00037647740649056875,0.00018156977103425526,0.0002688821305659855,0.0,0.0,0.0001687129726756498,0.0,0.0,0.0,0.0,0.0,0.0005979900081812022,0.000160287279646756,0.00023736542161478333,0.0,0.0 +98479,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,49113.0,,8578.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002734464990007644,0.0014587832161962644,0.0,0.004193248206203907,0.0017343484933867248,0.0009248333820313742,0.0006465908202664856,0.0,0.0008874755105193229,0.0012362139892903416,0.0009248333820313742,0.00044944693163691854,0.0,0.00012398841741042925,0.0004981345040963835,0.00019714388862956709,0.0007634870931088937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.74673509264785e-05,0.0,0.0,0.00032586062979841847,0.00017910862303189193,0.0004233279807248969,0.0001473171061205066,0.00011021051263358925,5.355967647761459e-05,0.0,1.4775447457807362e-05,3.3282430165290166e-05,1.3172000035873331e-05,5.10117360864054e-05,0.0,0.0,0.0,0.00017509057643962588,9.336624708813641e-05,6.527636162669731e-05,0.0,8.959479557043728e-05 +98480,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,95031.0,,4666.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.008753430376076347,0.0014025958597825776,0.0,0.010156026235858923,0.0032674588850957497,0.0009584107330636679,0.004198636876864178,0.0,0.0017314884028131242,0.0032674588850957497,0.0009584107330636679,0.0027960410170816,0.0,0.0017314884028131242,0.0,0.0014025958597825776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.371337723182114e-05,0.0,0.0,0.001043128163575787,0.0004984235990599824,0.001136841540807608,0.00038937630619472586,0.0001142118215350626,0.0003331984154923113,0.0,0.0002063378858665036,0.0,9.371337723182114e-05,0.0,0.0,0.0,0.0,0.00036575161457758965,0.00010728222921043905,0.000469985475178544,0.0,0.00019381871393699696 +98481,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300490010100,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7397.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006523337951245959,0.0,0.0,0.0006523337951245959,0.0004549965195775222,0.00016061559382683164,3.672168172024195e-05,0.0,0.0,0.0004549965195775222,0.00016061559382683164,3.672168172024195e-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,7.773594396967494e-05,2.2542705822108346e-05,7.773594396967494e-05,5.4220069873154096e-05,1.9139901835062677e-05,4.3759722614581645e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4220069873154096e-05,1.9139901835062677e-05,4.3759722614581645e-06,0.0,0.0 +98482,85.0,Rural Climate Zone 3A,G1300810010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,136058.0,,10958.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,149297.12424180118,0.0,0.0,0.03063467369099322,0.008498953465200677,0.0,0.039133627156193895,0.018205562725529815,0.0034491167017880507,0.0133589291099684,0.00043017936592456765,0.00368967753141692,0.018205562725529815,0.0034491167017880507,0.008549734036967712,0.00043017936592456765,0.0,0.0,0.004809195073000688,0.00368967753141692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005678501294559136,0.0,0.0,0.0036506734877442804,0.0015382447207920307,0.004218523617200194,0.0021695209109114026,0.00041102441718044607,0.0010188548992183162,5.126362441448771e-05,0.0,0.0,0.00032132215524699313,0.0002465225715665455,0.0,0.0,0.0,0.0019625217978270484,0.0003718076069692812,0.0014400647741129524,4.63724409583068e-05,0.00039773956408412374 +98483,85.0,Rural Climate Zone 3A,G1301930000400,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,77375.0,,6081.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,56751.431377317895,0.0,0.0,0.016110887409062805,0.004183282469398562,0.0,0.020294169878461367,0.004852286359032181,0.0006844954033729919,0.00988975368322667,0.00037409136881742723,0.004493543064012095,0.004374129312271102,0.0006844954033729919,0.0061846282605891876,0.00037409136881742723,0.004493543064012095,0.0004781570467610789,0.0037051254226374815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002795027324265048,0.0,0.0,0.001919907154438473,0.0007986368488953506,0.002199409886864978,0.0005212575786697058,8.157015741893903e-05,0.0007370116706524904,4.457983456592476e-05,0.000535487913131413,3.194768751007248e-05,0.0002475550449164322,0.0,0.0,0.0,0.0,0.0005258735220937537,7.41831751043926e-05,0.0010718162979720363,4.054269083660015e-05,0.00048699420085819513 +98484,35.0,Eastern Counties in South Carolina and Georgia,G1300730030105,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,41824.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003474646535419611,0.0,0.0,0.003474646535419612,0.001276350036315161,0.0009625181223148522,0.0012358090663958955,0.0,0.0,0.001276350036315161,0.0009625181223148522,0.0012358090663958955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041406845941047436,0.0001422461201249687,0.00041406845941047436,0.00015210073537500084,0.00011470185297954148,0.00014726952829066659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001521007353750008,0.00011470185297954145,0.00014726952829066656,0.0,0.0 +98485,35.0,Eastern Counties in South Carolina and Georgia,G1301890950200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7123.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001383358515363656,0.0,0.0,0.001383358515363656,0.0007005289145719339,0.00043843019789206863,0.00019775261331068407,0.0,4.664678958896939e-05,0.0007005289145719339,0.00043843019789206863,0.00019775261331068407,0.0,4.664678958896939e-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.0001648519912548822,5.452339955831193e-05,0.0001648519912548822,8.348059105158748e-05,5.224682563925209e-05,2.3565772515271037e-05,0.0,5.5588020487715876e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.348059105158748e-05,5.224682563925209e-05,2.3565772515271037e-05,0.0,5.5588020487715876e-06 +98486,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970200,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,25459.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0030257572287899614,0.0,0.0,0.0030257572287899614,0.0019544500030210165,0.0006487193367915034,0.0004225878889774412,0.0,0.0,0.0019544500030210165,0.0006487193367915034,0.0004225878889774412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003605738001804716,8.648792988990133e-05,0.0003605738001804716,0.0002329081322673895,7.730666369787099e-05,5.035900421521113e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002329081322673895,7.730666369787099e-05,5.035900421521113e-05,0.0,0.0 +98487,50.0,the Greater Atlanta and Macon Area,G1301210010209,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,233453.0,,4957.0,,9.325022323477118,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,1398753.3485215676,0.0,0.0,0.06895130999172801,0.004202578331355046,0.0,0.07315388832308305,0.04310150690123732,0.011218159261125139,0.017706528688097425,0.0,0.0011276934726231684,0.040026622042505434,0.011218159261125139,0.017706528688097425,0.0,0.0,0.0030748848587318772,0.0,0.0011276934726231684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002807904828206175,0.0,0.0,0.00821679768132356,0.0026721136869634742,0.008497588164144178,0.004769897123485104,0.0013368468998861639,0.002110053657952291,0.0,0.0,0.00020544492833349349,0.0,7.5345554487124e-05,0.0,0.0,0.0,0.005006690188266632,0.001303106363120574,0.0020567982380313046,0.0,0.00013099337472566796 +98488,50.0,the Greater Atlanta and Macon Area,G1301210004300,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,4848.0,,819.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007879502915143818,0.0006493332359273025,0.0,0.0014372835274416842,0.001069650584670463,0.00018973002715797125,0.00014457196489630936,0.0,3.324824364320158e-05,0.000453565592386362,0.00018973002715797125,0.00014457196489630936,0.0,0.0,0.000616084992284101,0.0,3.324824364320158e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3382521537158775e-05,0.0,0.0,9.389945997351383e-05,6.424728823575229e-05,0.0001372819815106726,5.4051079930172135e-05,2.260998857764677e-05,1.722853532420512e-05,0.0,0.0,4.1161177293376094e-05,0.0,2.2213442437826808e-06,0.0,0.0,0.0,0.0001021675605292628,1.812204313416291e-05,1.3808775675029101e-05,0.0,3.1757024149666467e-06 +98489,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,65843.0,,6249.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006218204771294303,0.0018205328030999686,0.0,0.008038737574394272,0.0061478291413970335,0.0013026021854874246,0.000588306247509815,0.0,0.0,0.004327296338297064,0.0013026021854874246,0.000588306247509815,0.0,0.0,0.0018205328030999686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012163832795012476,0.0,0.0,0.0007410101886963671,0.00034778141562048315,0.000862648516646492,0.0005156746672270116,0.00015522832180121725,7.010719966813825e-05,0.0,0.0,0.00012163832795012476,0.0,0.0,0.0,0.0,0.0,0.0006597324070280831,0.00013978411817677436,6.313199144163463e-05,0.0,0.0 +98490,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950600,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,9335.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0020334361149546127,0.0,0.0,0.0020334361149546122,0.0013719449391876315,0.00024439940289965343,0.0003704449832783579,0.0,4.656408251523008e-05,0.0013719449391876315,0.00024439940289965343,0.0003704449832783579,0.0,4.656408251523008e-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.00024231940624722147,7.836218102294391e-05,0.00024231940624722147,0.00016349118648128645,2.9124454789739662e-05,4.4144985787899806e-05,0.0,5.54892319682688e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001634911864812865,2.912445478973967e-05,4.414498578789982e-05,0.0,5.5489231968268806e-06 +98491,50.0,the Greater Atlanta and Macon Area,G1300630040522,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,59419.0,,4976.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0049249145706238544,0.0014647228397704603,0.0,0.006389637410394315,0.002374945872954027,0.001623817758817752,0.0023908737786225353,0.0,0.0,0.0009102230331835668,0.001623817758817752,0.0023908737786225353,0.0,0.0,0.0014647228397704603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.786462650354315e-05,0.0,0.0,0.0005868912867013373,0.00027786125905196295,0.0006847559132048804,0.00010846928600887966,0.00019350680710798854,0.00028491519358446915,0.0,0.0,9.786462650354315e-05,0.0,0.0,0.0,0.0,0.0,0.00025451494749941336,0.0001740190782201104,0.0002562218874853566,0.0,0.0 +98492,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,12857.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030195525551483748,0.0,0.0,0.0030195525551483743,0.0019425410409151136,0.00044364074353764506,0.0005478516564491723,0.0,8.543640717270457e-05,0.0019425410409151136,0.00044364074353764506,0.0005478516564491723,0.0,8.543640717270457e-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.0003598369349545631,0.00011850500866773506,0.0003598369349545631,0.0002314905938611801,5.286820562316899e-05,6.528691164203417e-05,0.0,1.0181367712291864e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00023149059386118012,5.2868205623168994e-05,6.528691164203419e-05,0.0,1.0181367712291866e-05 +98493,50.0,the Greater Atlanta and Macon Area,G1301350050606,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,13282.0,,3395.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001183421908445717,0.0009994377186909886,0.0,0.0021828596271367055,0.0011610184958483938,0.00045770478832393935,0.0005641363429643725,0.0,0.0,0.00016158077715740517,0.00045770478832393935,0.0005641363429643725,0.0,0.0,0.0009994377186909886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.677681558047097e-05,0.0,0.0,0.0001410249751951057,0.00011291419504857981,0.00020780179077557664,1.9255115126740272e-05,5.454335935426484e-05,6.722650071410059e-05,0.0,0.0,6.677681558047097e-05,0.0,0.0,0.0,0.0,0.0,0.00011052553245365108,4.3572144300011964e-05,5.370411402191362e-05,0.0,0.0 +98494,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,6665.0,,703.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0004599474162858758,0.00020486992820763602,0.0,0.0006648477180929496,0.0004714893840722216,0.00015678852029767492,3.6569813723053195e-05,0.0,0.0,0.00026661945586458556,0.00015678852029767492,3.6569813723053195e-05,0.0,0.0,0.00020486992820763602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3688513864676813e-05,0.0,0.0,5.4812566662160815e-05,2.7141709466488267e-05,6.850108052683761e-05,3.177340752561895e-05,1.86847037647807e-05,4.358075035411849e-06,0.0,0.0,1.3688513864676811e-05,0.0,0.0,0.0,0.0,0.0,4.8578842021933415e-05,1.6154350481042342e-05,3.7678880238618715e-06,0.0,0.0 +98495,50.0,the Greater Atlanta and Macon Area,G1300570091005,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,26843.0,,1034.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006996479255004363,0.0008015729425583154,0.0,0.007798052197562679,0.003876304218739084,0.0004170799190674661,0.0026680823981291416,0.00041295601913097124,0.0004235487817129484,0.003876304218739084,0.0004170799190674661,0.0018665094555708262,0.00041295601913097124,0.0004235487817129484,0.0,0.0008015729425583154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.355416198831224e-05,0.0,0.0,0.0008337569381170262,0.0003206602239484113,0.0008873111001053384,0.0004619316971910316,4.970260949792107e-05,0.00022242833172557433,4.921117229660391e-05,5.0473491382340175e-05,0.0,5.355416198831224e-05,0.0,0.0,0.0,0.0,0.00044107011257854496,4.7457959044602085e-05,0.00030359108503987795,4.698871594431618e-05,4.8194026652893705e-05 +98496,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,79298.0,,3688.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004081901536485976,0.0006271938048729478,0.0,0.004709095341358925,0.001802964992082329,0.0009995136643326367,0.0010812683608404999,0.0,0.000825348324103458,0.001396549647611879,0.0009995136643326367,0.0008604899004380025,0.0,0.000825348324103458,0.0004064153444704503,0.00022077846040249746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1905486964013695e-05,0.0,0.0,0.0004864324582937386,0.00015116574638696185,0.0005283379452577522,0.00016642417073144767,0.00011911014621339032,0.0001025429481494378,0.0,9.835519319946283e-05,2.7154338559086386e-05,1.4751148404927305e-05,0.0,0.0,0.0,0.0,0.00020228403764141,0.00011214064642788932,0.00012131313184961595,0.0,9.260012933883682e-05 +98497,50.0,the Greater Atlanta and Macon Area,G1301350050725,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,39077.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.003459332421877058,0.0,0.0,0.003459332421877058,0.0012953162130071411,0.0009147957845219246,0.0012492511139542896,0.0,0.0,0.0012953162130071411,0.0009147957845219246,0.0012492511139542896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004122417961454465,0.00014404118135046787,0.0004122417961454465,0.00015436026871815876,0.00010901440258608472,0.0001488707820608281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015436026871815876,0.00010901440258608472,0.0001488707820608281,0.0,0.0 +98498,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock 90.1-2007,gen3_t5_cfl,100001_200000,Electricity,94209.0,,5381.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00839388352887839,0.001583859891418143,0.0,0.009977743420296533,0.0030217293256781133,0.0027125008526224605,0.004243543931602257,0.0,0.0,0.0014378694342599707,0.0027125008526224605,0.004243543931602257,0.0,0.0,0.001583859891418143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010582437568078219,0.0,0.0,0.0010002842548823346,0.00038633163618690254,0.0011061086305631167,0.00017134835749371002,0.00032324392933239914,0.0005056956252823309,0.0,0.0,0.00010582437568078219,0.0,0.0,0.0,0.0,0.0,0.00033498164319993053,0.00030070131863606773,0.00047042907090303775,0.0,0.0 +98499,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,66320.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005645414457675023,0.0,0.0,0.005645414457675023,0.0022074726913874636,0.0014776431640217936,0.001960329291872063,0.0,0.0,0.0022074726913874636,0.0014776431640217936,0.001960329291872063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006727548192780207,0.00021860978753770295,0.0006727548192780207,0.00026306091478129484,0.00017608832216338028,0.00023360923956359725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026306091478129484,0.00017608832216338028,0.00023360923956359725,0.0,0.0 +98500,50.0,the Greater Atlanta and Macon Area,G1301350050525,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,NaturalGas,347959.0,,7100.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,1133273.7058648225,0.0,0.0,0.031002763040364548,0.0020900542576924525,0.0,0.033092817298057,0.007493235652859707,0.013437474807055462,0.012162076148535528,0.0,0.0,0.005403181395167254,0.013437474807055462,0.012162076148535528,0.0,0.0,0.0020900542576924525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013964485662426379,0.0,0.0,0.0036945392142764782,0.001324448785567424,0.0038341840709007423,0.0006438866600471808,0.0016013178422478727,0.001449331054760492,0.0,0.0,0.00013964485662426379,0.0,0.0,0.0,0.0,0.0,0.0008681776628726948,0.001556886238917081,0.0014091166133665715,0.0,0.0 +98501,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,7546.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015462087435563522,0.0,0.0,0.0015462087435563524,0.0010022443195729272,0.00024481293826835,0.0002467152009643541,0.0,5.23535776769816e-05,0.0010022443195729272,0.00024481293826835,0.0002467152009643541,0.0,5.23535776769816e-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.00018425924043616258,6.468757035259995e-05,0.00018425924043616258,0.00011943586389972816,2.9173969066116147e-05,2.9400658690616373e-05,0.0,6.238892709071459e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011943586389972813,2.917396906611614e-05,2.940065869061637e-05,0.0,6.2388927090714585e-06 +98502,35.0,Eastern Counties in South Carolina and Georgia,G1301830970200,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,31155.0,,7759.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006487143098333036,0.00533761540289482,0.0,0.011824758501227857,0.0023421590934568103,0.0002874536438305691,0.00689687929274522,0.0003827694853103162,0.0019154969858849397,0.0023421590934568103,0.0002874536438305691,0.0032200832586589054,0.0003827694853103162,0.00025467761707643485,0.0,0.0036767960340863153,0.0016608193688085048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000356626999686708,0.0,0.0,0.0007730631469313972,0.0005542979938323235,0.001129690146618105,0.0002791115984271997,3.425542108877779e-05,0.0003837325089930003,4.561406745279617e-05,3.0349550969623234e-05,0.0,0.00024566114999313075,0.00011096584969357721,0.0,0.0,0.0,0.00022376051480589698,2.7462171765380625e-05,0.0006589002708697759,3.656826614566776e-05,0.00018299892303138364 +98503,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,28136.0,,7799.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.001617416759821477,0.00132637287711131,0.0,0.002943789636932787,0.0010110915903399312,0.0005302441886280991,0.0011190694913880527,0.0,0.00028338436657670396,0.0007100477837888547,0.0005302441886280991,0.0002968594412559441,0.0,8.026534614857903e-05,0.0003010438065510765,0.0008222100501321085,0.00020311902042812488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.86201510857224e-05,0.0,0.0,0.00019274427938449656,0.00014060364166301365,0.0002813644304702189,8.461495627759373e-05,6.318812601287782e-05,3.537613836131925e-05,0.0,9.56505873270574e-06,2.0113912219073905e-05,5.493506398110102e-05,1.3571174885547478e-05,0.0,0.0,0.0,9.66391096361204e-05,5.0680202237186825e-05,0.00010695952800114639,0.0,2.7085590595765302e-05 +98504,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,23366.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00271503530654176,0.0,0.0,0.0027150353065417605,0.0017510380075863928,0.0007713679313211452,0.00019265974123365982,0.0,0.0,0.0017510380075863928,0.0007713679313211452,0.00019265974123365982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032354714126694734,7.088532235107134e-05,0.00032354714126694734,0.00020866886711907098,9.19228889740837e-05,2.2959004755182432e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020866886711907095,9.192288897408368e-05,2.295900475518243e-05,0.0,0.0 +98505,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,86504.0,,6142.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.007707449104817673,0.0018078326381787777,0.0,0.009515281742996451,0.0029674394121374775,0.002465725728382632,0.00408211660247634,0.0,0.0,0.0011596067739586997,0.002465725728382632,0.00408211660247634,0.0,0.0,0.0018078326381787777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012078961473099992,0.0,0.0,0.0009184800365457101,0.00037986867942426506,0.00103926965127671,0.00013818783071282243,0.0002938352010266245,0.0004864570048062631,0.0,0.0,0.00012078961473099992,0.0,0.0,0.0,0.0,0.0,0.000324107031860279,0.00026930930550389125,0.00044585331391253964,0.0,0.0 +98506,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,169651.0,,14089.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.007825029057319003,0.0023959746601374156,0.0,0.010221003717456422,0.005921018735503793,0.0035332886934267022,0.0006011124432240501,0.0,0.00016556611494045306,0.003690610190306831,0.0035332886934267022,0.0006011124432240501,0.0,0.0,0.0022304085451969624,0.0,0.00016556611494045306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001600847230111053,0.0,0.0,0.000932494333347806,0.00038428481609580507,0.0010925790563589115,0.00043980323444778356,0.000421055520761366,7.163346524406781e-05,0.0,0.0,0.00014902258362739948,0.0,1.1062139383705812e-05,0.0,0.0,0.0,0.0006329301154319585,0.00037769257630878233,6.425620067642173e-05,0.0,1.7698268646327056e-05 +98507,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,18408.0,,113.0,,7.56685751697572,Food Service,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,7566.85751697572,0.0,0.0,0.0037350326505509925,7.774444858092237e-05,0.0,0.0038128488191029306,0.0010410153792915942,0.0002107849948148809,0.0016587394896490526,0.00037523888835367704,0.0005271417869647413,0.000963270930710672,0.0002107849948148809,0.0016587394896490526,0.00037523888835367704,0.0005271417869647413,7.774444858092237e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1965487824802764e-06,0.0,0.0,0.0004450995306116104,0.000125406886467032,0.0004502960793940907,0.00011479188516541607,2.511900457904534e-05,0.000197670070739762,4.471678528668431e-05,6.281887841305996e-05,5.1965487824802764e-06,0.0,0.0,0.0,0.0,0.0,0.00012294354329900917,2.489363236347145e-05,0.00019589653940196245,4.431557826664941e-05,6.225525616587789e-05 +98508,50.0,the Greater Atlanta and Macon Area,G1300890021102,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,6489.0,,41.0,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0015582012692485518,3.2421172905808506e-05,0.0,0.0015906224421543603,0.0005699344451375673,0.0004547234914187123,0.0005335433326922723,0.0,3.2421172905808506e-05,0.0005699344451375673,0.0004547234914187123,0.0005335433326922723,0.0,0.0,0.0,0.0,3.2421172905808506e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.167771525479031e-06,0.0,0.0,0.0001856869813744411,6.380562334932611e-05,0.00018785475289992014,6.791767455686166e-05,5.418827089154339e-05,6.358103592603609e-05,0.0,0.0,0.0,0.0,2.167771525479031e-06,0.0,0.0,0.0,6.731006147219995e-05,5.370348541200921e-05,6.30122197877176e-05,0.0,3.82898622799338e-06 +98509,81.0,the Columbus-Albany Area,G1300950000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,16368.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.0031646441012475597,0.0,0.0,0.0031646441012475597,0.0023822044500825864,0.0004162784217229225,0.0003397923799086517,0.0,2.6314255642026048e-05,0.0023822044500825864,0.0004162784217229225,0.0003397923799086517,0.0,2.6314255642026048e-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.00037712165815828325,0.00011969580381970027,0.00037712165815828325,0.00028388054502970125,4.960671836487847e-05,4.049209378400047e-05,0.0,3.135795180573301e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00028388054502970125,4.960671836487847e-05,4.049209378400047e-05,0.0,3.135795180573301e-06 +98510,85.0,Rural Climate Zone 3A,G1301750950400,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,2544.0,,12.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00045480619849245157,9.511313480020351e-06,0.0,0.0004643175119724719,0.00025647463566559235,9.69326904224683e-05,0.00010148157947813021,0.0,9.511313480020351e-06,0.00025647463566559235,9.69326904224683e-05,0.00010148157947813021,0.0,0.0,0.0,0.0,9.511313480020351e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.371904294056523e-07,0.0,0.0,5.4197858410551845e-05,1.8391879261484385e-05,5.48350488399575e-05,3.0563294950194814e-05,1.1551171132418032e-05,1.2093248276004201e-05,0.0,0.0,0.0,0.0,6.371904294056523e-07,0.0,0.0,0.0,3.0289185331796975e-05,1.144757343078557e-05,1.1984788907486258e-05,0.0,1.1232687240105292e-06 +98511,81.0,the Columbus-Albany Area,G1301770020402,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,7761.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0018634730784203356,0.0,0.0,0.0018634730784203356,0.00103061284586551,0.00039815185298102594,0.00037152017523696895,0.0,6.310549726309156e-05,0.00103061284586551,0.00039815185298102594,0.00037152017523696895,0.0,6.310549726309156e-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.00022206563619116287,6.648980210493636e-05,0.00022206563619116287,0.00012281567141174743,4.744680540696188e-05,4.427317197508782e-05,0.0,7.520131392918967e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012281567141174743,4.744680540696188e-05,4.427317197508782e-05,0.0,7.520131392918967e-06 +98512,50.0,the Greater Atlanta and Macon Area,G1301990970500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,26752.0,,1615.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0012879334535526356,0.00027460783767377774,0.0,0.0015625412912264134,0.0008842840454637135,0.0004033834526676213,0.00010026519383039861,0.0,0.00017460859926467999,0.0007328490285750424,0.0004033834526676213,0.00010026519383039861,0.0,5.141804811815313e-05,0.00015143501688867097,0.0,0.00012319055114652687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.834799141011981e-05,0.0,0.0,0.00015347985885936423,5.915684121180206e-05,0.00017182785026948402,8.733181451313465e-05,4.807021295304785e-05,1.1948356302997036e-05,0.0,6.127362206665148e-06,1.0118168558486139e-05,0.0,8.231007510169969e-06,0.0,0.0,0.0,9.724199124387532e-05,4.435883512029129e-05,1.1025854362676245e-05,0.0,1.920116954264114e-05 +98513,50.0,the Greater Atlanta and Macon Area,G1301530021000,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,108091.0,,8505.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005564017908311031,0.0014463896935636475,0.0,0.0070104076018746775,0.0036479864014530242,0.001660129200482384,0.001032474406212515,0.0,0.0006697998633653346,0.003073788646864614,0.001660129200482384,0.0006895337556258535,0.0,0.00014054857497675858,0.0005741977545884099,0.0003429406505866613,0.000529251288388576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.663961939885426e-05,0.0,0.0,0.0006630523310285642,0.0002993897629859011,0.0007596919504274184,0.0003662969388269605,0.0001978341109478145,8.217028980220978e-05,0.0,1.674887856163839e-05,3.836466251801236e-05,2.2913364286657255e-05,3.536159259418463e-05,0.0,0.0,0.0,0.000395318797684667,0.00017990206303249964,0.0001118854337673928,0.0,7.258373456915091e-05 +98514,35.0,Eastern Counties in South Carolina and Georgia,G1300290920305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,30499.0,,1070.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0037325205141070087,0.0003116331302313337,0.0,0.004044153644338341,0.0029124333292877085,0.0009086262271803457,0.00022309408787028713,0.0,0.0,0.0026008001990563754,0.0009086262271803457,0.00022309408787028713,0.0,0.0,0.0003116331302313337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.082176874904591e-05,0.0,0.0,0.0004447972883046027,0.00015277675376065706,0.0004656190570536486,0.00030993235578749757,0.00010827923929815347,2.658569321895161e-05,0.0,0.0,2.082176874904591e-05,0.0,0.0,0.0,0.0,0.0,0.000335319718234006,0.00010461365326864217,2.5685685551000393e-05,0.0,0.0 +98515,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,6026.0,,272.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001410238314328931,0.00021594816953333167,0.0,0.0016261864838622627,0.0009135823365243899,0.0002745874848145007,0.0003886405395010056,0.0,4.937612302236652e-05,0.0007470102900134247,0.0002745874848145007,0.0003886405395010056,0.0,0.0,0.00016657204651096514,0.0,4.937612302236652e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4426083337528285e-05,0.0,0.0,0.00016805460516982124,7.175038298727114e-05,0.00018248068850734952,8.901936507500003e-05,3.272191010285652e-05,4.631332999196469e-05,0.0,0.0,1.1127587836760616e-05,0.0,3.2984955007676694e-06,0.0,0.0,0.0,0.00010251661505707369,3.081252598130406e-05,4.3610861321128845e-05,0.0,5.5406861478429265e-06 +98516,50.0,the Greater Atlanta and Macon Area,G1300770170306,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5490.0,,224.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013182680483308212,0.00017732396609707512,0.0,0.0014955920144278962,0.0006149270932517506,0.00022165495762134388,0.0006176564266851479,0.0,4.135353686965371e-05,0.0004376031271546756,0.00022165495762134388,0.0006176564266851479,0.0,4.135353686965371e-05,0.00017732396609707512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.184848548436418e-05,0.0,0.0,0.00015709314502724672,5.729503055566614e-05,0.00016894163051161087,5.2147551937961115e-05,2.6413804421420486e-05,7.360384008177919e-05,0.0,4.927948586085912e-06,1.184848548436418e-05,0.0,0.0,0.0,0.0,0.0,6.946198212983612e-05,2.503807829293353e-05,6.97702868252342e-05,0.0,4.671283263607003e-06 +98517,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,Electricity,105553.0,,5614.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010385301391930026,0.0016525739199186992,0.0,0.012037875311848726,0.003321536089600372,0.00452659417048597,0.004189745051762384,0.0,0.0,0.0016689621696816728,0.00452659417048597,0.004189745051762384,0.0,0.0,0.0016525739199186992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011041504150013165,0.0,0.0,0.0012375978499166939,0.00043019360420052164,0.0013480128914168253,0.0001988872460066834,0.0005394261563936923,0.0004992844475163183,0.0,0.0,0.00011041504150013165,0.0,0.0,0.0,0.0,0.0,0.0003719488158911576,0.0005068923824141382,0.0004691716931115295,0.0,0.0 +98518,50.0,the Greater Atlanta and Macon Area,G1300670030414,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,46934.0,,4197.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004576495470326035,0.0012352873430888347,0.0,0.005811782813414867,0.0019692599673046944,0.0015593082063799807,0.0022832453293364914,0.0,0.0,0.0007339726242158597,0.0015593082063799807,0.0022832453293364914,0.0,0.0,0.0012352873430888347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.253453845014042e-05,0.0,0.0,0.0005453730078686884,0.00026462038454277644,0.0006279075463188289,8.746624144115253e-05,0.00018582004772468304,0.000272090375929874,0.0,0.0,8.253453845014042e-05,0.0,0.0,0.0,0.0,0.0,0.00021275970452303285,0.00016846833772984207,0.0002466828197843845,0.0,0.0 +98519,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,NaturalGas,86552.0,,8007.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008240558255815067,0.0023568390052383825,0.0,0.01059739726105345,0.0036396338588760616,0.0028218479198611757,0.0041359154823162134,0.0,0.0,0.0012827948536376784,0.0028218479198611757,0.0041359154823162134,0.0,0.0,0.0023568390052383825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001574699484874703,0.0,0.0,0.000982011489422837,0.00045954177878957845,0.0011394814379103073,0.00015286819724328116,0.0003362741931655116,0.0004928690990140442,0.0,0.0,0.0001574699484874703,0.0,0.0,0.0,0.0,0.0,0.0003913503590377688,0.000303418211668323,0.0004447128672042156,0.0,0.0 +98520,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,8113.0,,1241.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0006346610582364937,0.0003652983837615562,0.0,0.0009999594419980498,0.0004692133906855778,0.0002647285439239842,0.00026598681778219,0.0,0.0,0.00010391500692402163,0.0002647285439239842,0.00026598681778219,0.0,0.0,0.0003652983837615562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4407050562126716e-05,0.0,0.0,7.563007451885332e-05,4.976065655136194e-05,0.00010003712508098004,1.2383144696365441e-05,3.154666454543658e-05,3.169660811677474e-05,0.0,0.0,2.4407050562126712e-05,0.0,0.0,0.0,0.0,0.0,4.694066247316403e-05,2.6483756589280718e-05,2.6609635794029216e-05,0.0,0.0 +98521,81.0,the Columbus-Albany Area,G1302150001000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,56934.0,,22478.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011854880889054413,0.015462610591052691,0.0,0.02731749148010711,0.009368421213914194,0.0014147481482539438,0.01189690879206956,0.0003859251640350031,0.004251559881805424,0.006404521691723053,0.0014147481482539438,0.003142123650164936,0.0003859251640350031,0.0005076339548484951,0.002963899522191142,0.008754785141904625,0.0037439259269569287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010331198408946509,0.0,0.0,0.0014127216292587797,0.0014381998828757621,0.002445841470153431,0.0007632135998353225,0.00016859260988758633,0.00037444037472295663,4.598990336637442e-05,6.049368816710616e-05,0.00019803016992264434,0.0005849427675624854,0.0002501469034095214,0.0,0.0,0.0,0.0008387912605936921,0.00012666791507346352,0.001065176607137084,3.45533839100835e-05,0.00038065872480761017 +98522,50.0,the Greater Atlanta and Macon Area,G1301350050428,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,55366.0,,6541.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004693944593627343,0.0019253124510863837,0.0,0.006619287734320025,0.0031145040055160686,0.0013022520640304223,0.0022025009751672356,0.0,0.0,0.0011891915544296851,0.0013022520640304223,0.0022025009751672356,0.0,0.0,0.0019253124510863837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001286383359036857,0.0,0.0,0.0005593699604002912,0.00028450132413598335,0.000688008296303977,0.00014171407851996996,0.00015518732080409522,0.0002624685610762261,0.0,0.0,0.0001286383359036857,0.0,0.0,0.0,0.0,0.0,0.0003237213248121695,0.00013535598691177716,0.00022892779470453444,0.0,0.0 +98523,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,163865.0,,5292.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,140298.9118897092,0.0,0.0,0.008032456555572201,0.00089988676351336,0.0,0.008932343319085562,0.005101432778861853,0.002521097820678728,0.0011636968110823257,0.0,0.0001461336388240752,0.004347679654172568,0.002521097820678728,0.0011636968110823257,0.0,0.0,0.0007537531246892846,0.0,0.0001461336388240752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.012495100730459e-05,0.0,0.0,0.0009572117811388608,0.00027919032519969363,0.0010173367321461655,0.0005181042881215122,0.00030043418456874264,0.0001386754213403119,0.0,0.0,5.0361191575492226e-05,0.0,9.763759431812357e-06,0.0,0.0,0.0,0.0005810205415438461,0.00028713690536613694,0.0001325376184842618,0.0,1.664368612660225e-05 +98524,50.0,the Greater Atlanta and Macon Area,G1301210000500,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,15786.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0036326600927778603,0.0,0.0,0.0036326600927778603,0.0016423143632414276,0.0004019563783730341,0.0015087424391524462,0.0,7.956420493721375e-05,0.0016423143632414276,0.0004019563783730341,0.0015087424391524462,0.0,7.956420493721375e-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.0004328996483557539,0.00013797957652636735,0.0004328996483557539,0.00019571258862074146,4.7900648672851055e-05,0.00017979498623254097,0.0,9.48156872907052e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019571258862074146,4.7900648672851055e-05,0.00017979498623254097,0.0,9.48156872907052e-06 +98525,35.0,Eastern Counties in South Carolina and Georgia,G1302450010101,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,86132.0,,969.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0069581360271973765,0.00028220111237615216,0.0,0.0072403371395735276,0.00452542332742952,0.0019276908619163572,0.0007872229502276518,0.0,0.0,0.004243222215053368,0.0019276908619163572,0.0007872229502276518,0.0,0.0,0.00028220111237615216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8854795084183346e-05,0.0,0.0,0.0008291863659983196,0.0002170755429423098,0.0008480411610825031,0.0005056558243286608,0.00022971884629918743,9.381169537047145e-05,0.0,0.0,1.8854795084183346e-05,0.0,0.0,0.0,0.0,0.0,0.0005300506287210303,0.00022578523143798937,9.220530092348358e-05,0.0,0.0 +98526,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,71817.0,,5429.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0035464091608775417,0.0009232021887807295,0.0,0.004469611349658271,0.0022517027092624465,0.0005277264773064517,0.0012866391371689717,0.0,0.0004035430259204018,0.001989772080004006,0.0005277264773064517,0.0006253675776466824,0.0,0.0004035430259204018,0.00026193062925844007,0.0006612715595222892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.168297810385668e-05,0.0,0.0,0.000422618067032898,0.00018234390804953626,0.00048430104513675466,0.00023711692366575147,6.288804637143059e-05,7.452372945728828e-05,0.0,4.8089367538427644e-05,1.750067478784449e-05,4.4182303316012184e-05,0.0,0.0,0.0,0.0,0.00024398138677458845,5.718136645715134e-05,0.00013941272072624984,0.0,4.37255711787651e-05 +98527,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,94795.0,,6372.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009420542928355442,0.00187553390967151,0.0,0.011296076838026954,0.0034081114689661915,0.0030523882423695186,0.004835546437084943,0.0,0.0,0.001532577559294682,0.0030523882423695186,0.004835546437084943,0.0,0.0,0.00187553390967151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000125311807575665,0.0,0.0,0.0011226296891553203,0.0005023417755407672,0.0012479414967309851,0.0001826345978233084,0.0003637477892487935,0.0005762436448563006,0.0,0.0,0.000125311807575665,0.0,0.0,0.0,0.0,0.0,0.0003765133495985128,0.00033721459285434695,0.0005342101638237429,0.0,0.0 +98528,35.0,Eastern Counties in South Carolina and Georgia,G1300510010101,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,439359.0,,55085.0,,9.525004485617233,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.0,0.11230008724466531,0.047698697253343435,0.0,0.15999869421838556,0.08292309784715544,0.016170073595505197,0.04323608519769405,0.0006825139515832041,0.01698701390607086,0.06638116248358528,0.016170073595505197,0.020400757299088808,0.0006825139515832041,0.008665579914902837,0.01654193536357017,0.022835327898605245,0.008321433991168024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031869461720914513,0.0,0.0,0.013382582517614495,0.007393582687454863,0.01656952868970595,0.00791051375246332,0.0019269561539724213,0.0024311184850824897,8.133385735120402e-05,0.0010326602687450624,0.0011052347468927758,0.0015257221900292456,0.0005559892351694303,0.0,0.0,0.0,0.008587549139259468,0.0016745792811888583,0.004477546255070875,7.068141747736188e-05,0.0017591819461032295 +98529,50.0,the Greater Atlanta and Macon Area,G1301210011419,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7893.0,,473.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018736460484902707,0.0003750765794077591,0.0,0.0022487226278980295,0.0015008025600734725,0.00031436958728310756,0.0003911217517131848,0.0,4.23460217545254e-05,0.0011257259806657135,0.00031436958728310756,0.0003911217517131848,0.0,4.23460217545254e-05,0.0003750765794077591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.506034695688392e-05,0.0,0.0,0.0002232769766469241,9.565332839539214e-05,0.000248337323603808,0.0001341495068924377,3.746251382691615e-05,4.6608847115886984e-05,0.0,5.046252849087362e-06,2.506034695688392e-05,0.0,0.0,0.0,0.0,0.0,0.00016574089058496818,3.4717355070729864e-05,4.319346806879282e-05,0.0,4.676476136862323e-06 +98530,35.0,Eastern Counties in South Carolina and Georgia,G1300730030105,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,27228.0,,684.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0023902292968902834,0.00020138519652552567,0.0,0.002591614493415809,0.0011922605150594555,0.0007849480602763443,0.0006143752284737121,0.0,0.0,0.00099087531853393,0.0007849480602763443,0.0006143752284737121,0.0,0.0,0.00020138519652552567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3456296553656753e-05,0.0,0.0,0.00028483885615783016,0.00010621241069150833,0.0002982951527114869,0.00011808063464598459,9.354069415988938e-05,7.32138701328078e-05,0.0,0.0,1.3456296553656753e-05,0.0,0.0,0.0,0.0,0.0,0.0001372293345769907,9.034762002820386e-05,7.071466572876462e-05,0.0,0.0 +98531,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,51273.0,,3601.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004568393414263441,0.0010600496911289518,0.0,0.005628412415786095,0.0020714256666697468,0.0013545471531617077,0.0022025009751672356,0.0,0.0,0.0010113759755407952,0.0013545471531617077,0.0022025009751672356,0.0,0.0,0.0010600496911289518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.082578006469571e-05,0.0,0.0,0.0005444050132605566,0.0002177177405503982,0.0006152307933252522,0.00012052336597295168,0.00016141829172957575,0.0002624670127683454,0.0,0.0,7.082578006469571e-05,0.0,0.0,0.0,0.0,0.0,0.00022642350312588588,0.00014806290976453754,0.00024075108967695053,0.0,0.0 +98532,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,15524.0,,8461.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.003245400408427416,0.005820075647916837,0.0,0.009065476056344253,0.0027247134188540796,0.0005379715025880985,0.003806752621566603,0.00036878409096227204,0.001627254422373199,0.0018193922247240213,0.0005379715025880985,0.0003225964296282185,0.00036878409096227204,0.0001966561605248055,0.0009053211941300582,0.003484156191938385,0.0014305982618483936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038886248718707336,0.0,0.0,0.0003867502654379058,0.0004884147605235438,0.0007756127526249792,0.00021681467224213375,6.410938412520676e-05,3.8443408851510466e-05,4.3947534085030424e-05,2.3435266134024386e-05,6.048812292991283e-05,0.0002327903835803823,9.558398067677822e-05,0.0,0.0,0.0,0.00023311765005795514,4.602709834131034e-05,0.0003256934176456566,3.155197169324327e-05,0.0001392226148868138 +98533,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,4981.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011960269933441246,0.0,0.0,0.001196026993344125,0.0005553780001594493,0.0002191737454091647,0.0003824375089705575,0.0,3.90377388049531e-05,0.0005553780001594493,0.0002191737454091647,0.0003824375089705575,0.0,3.90377388049531e-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.00014253208249563948,3.865306710287858e-05,0.00014253208249563948,6.618511402795235e-05,2.6119218492043748e-05,4.5575572191400106e-05,0.0,4.652177784243264e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.618511402795234e-05,2.6119218492043738e-05,4.557557219140009e-05,0.0,4.652177784243262e-06 +98534,85.0,Rural Climate Zone 3A,G1302850960902,ComStock 90.1-2007,gen4_led,200001_500000,Electricity,262326.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.023372989329086356,0.0,0.0,0.023372989329086356,0.007912455674886328,0.0051822162298237944,0.010278348113982533,0.0,0.0,0.007912455674886328,0.0051822162298237944,0.010278348113982533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002785314525579947,0.0007964060269039633,0.002785314525579947,0.0009429122400206844,0.0006175548166473487,0.0012248511261337182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009429122400206844,0.0006175548166473487,0.0012248511261337182,0.0,0.0 +98535,50.0,the Greater Atlanta and Macon Area,G1301210001500,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,34112.0,,3029.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028122611983420033,0.0008825049316638791,0.0,0.0036947661300058827,0.0028070673128381476,0.0006492053143825075,0.00023846312918578952,0.0,0.0,0.0019245623811742691,0.0006492053143825075,0.00023846312918578952,0.0,0.0,0.0008825049316638791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8963760399667085e-05,0.0,0.0,0.00033513068219249173,0.00014391729340862934,0.00039409444259215883,0.00022934566110188962,7.736430030762097e-05,2.8417101231174894e-05,0.0,0.0,5.8963760399667085e-05,0.0,0.0,0.0,0.0,0.0,0.0002994099190710774,6.924611666802146e-05,2.543516711708788e-05,0.0,0.0 +98536,50.0,the Greater Atlanta and Macon Area,G1300210011702,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,189614.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,240343.828889517,0.0,0.0,0.016720423501686878,0.0,0.0,0.016720423501686878,0.010106146993724288,0.005056718328794675,0.001557558179167913,0.0,0.0,0.010106146993724288,0.005056718328794675,0.001557558179167913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019925410792155608,0.0005640071985750214,0.0019925410792155608,0.0012043303230659756,0.0006025995092246997,0.00018561124692488524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012043303230659756,0.0006025995092246997,0.00018561124692488524,0.0,0.0 +98537,35.0,Eastern Counties in South Carolina and Georgia,G1302450010512,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,71720.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005893048890891187,0.0,0.0,0.005893048890891186,0.0019055176550243661,0.0014352301281183681,0.0025523317973547496,0.0,0.0,0.0019055176550243661,0.0014352301281183681,0.0025523317973547496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007022646901712308,0.00021750074751469581,0.0007022646901712308,0.00022707732285912334,0.00017103395201851764,0.000304157072522175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022707732285912337,0.00017103395201851764,0.00030415707252217506,0.0,0.0 +98538,85.0,Rural Climate Zone 3A,G1302930010500,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,85868.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007127691752247769,0.0,0.0,0.00712769175224777,0.002785143150729123,0.0015480758104750214,0.0027945034806499225,0.0,0.0,0.002785143150729123,0.0015480758104750214,0.0027945034806499225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008493946103325108,0.00030259834871338337,0.0008493946103325108,0.00033190065780942183,0.00018448149772876262,0.0003330161120212505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003319006578094217,0.00018448149772876257,0.0003330161120212504,0.0,0.0 +98539,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970400,ComStock 90.1-2004,gen5_led,_1000,NaturalGas,13197.0,,1250.0,,8.53126424238864,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.0029971857852180493,0.0009692782066424419,0.0,0.003966463991860492,0.0013473023674878092,0.00018363483834862653,0.0017456225848833768,0.0004330903541150347,0.0002568138470256441,0.0013473023674878092,0.00018363483834862653,0.001033158225266579,0.0004330903541150347,0.0,0.0,0.0007124643596167978,0.0002568138470256441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.47636383974454e-05,0.0,0.0,0.0003571696512457503,0.00016879576442122257,0.0004219332896431957,0.00016055578506061325,2.1883458640778585e-05,0.0001231197494730198,5.161065807133866e-05,0.0,0.0,4.760427278884553e-05,1.715936560859987e-05,0.0,0.0,0.0,0.0001433195211716903,1.9534187527362186e-05,0.00018569090283606114,4.6070060940797836e-05,2.7318617167284148e-05 +98540,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,23920.0,,1339.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0020845301285588665,0.00039426937210658756,0.0,0.0024787688110591557,0.0007491639793332224,0.0006014855938286769,0.0011281499275035544,0.0,0.0,0.00035489460722663494,0.0006014855938286769,0.0011281499275035544,0.0,0.0,0.00039426937210658756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.634198277158586e-05,0.0,0.0,0.00024840821096127176,9.192377789295983e-05,0.00027475019373285765,4.22918974656029e-05,7.167752494191902e-05,0.00013443878855374982,0.0,0.0,2.634198277158586e-05,0.0,0.0,0.0,0.0,0.0,8.30383808046749e-05,6.666950249440105e-05,0.00012504571211256608,0.0,0.0 +98541,50.0,the Greater Atlanta and Macon Area,G1301130140203,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,6198.0,,684.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012787340670834322,0.0005428065249510744,0.0,0.0018215405920345065,0.0011398688902751347,0.0003928586002617103,0.00025316635271602,0.0,3.581216292912011e-05,0.0006327918211794411,0.0003928586002617103,0.00025316635271602,0.0,0.0,0.0005070770690956938,0.0,3.581216292912011e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6267743949348655e-05,0.0,0.0,0.00015238679586110262,8.762559586075427e-05,0.0001886545398104513,7.540982957980053e-05,4.681697693164979e-05,3.0169845555322102e-05,0.0,0.0,3.38804720636076e-05,0.0,2.3927979780691715e-06,0.0,0.0,0.0,0.00011805470703176714,4.0687843448040494e-05,2.6220102904095143e-05,0.0,3.709018150105585e-06 +98542,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,5757.0,,745.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0017278334774878713,0.0005906112135723943,0.0,0.002318444691060266,0.0013567268376195988,0.00035315920486684264,0.0005436335956884677,0.0,6.492505288535632e-05,0.0007661156240472046,0.00035315920486684264,0.0005436335956884677,0.0,6.492505288535632e-05,0.0005906112135723943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.946111555210967e-05,0.0,0.0,0.00020589790381698214,0.00010104930462799073,0.00024535901936909184,9.129444655864753e-05,4.208434489964643e-05,6.478229485371805e-05,0.0,7.73681750497013e-06,3.946111555210967e-05,0.0,0.0,0.0,0.0,0.0,0.00014358124121470397,3.7374536697560714e-05,5.753227862132707e-05,0.0,6.870962835500037e-06 +98543,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,56471.0,,3047.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005900436173976544,0.0008876988171677347,0.0,0.006788104617544842,0.0035866968632063613,0.002406014305862073,0.0007954238220758448,0.0,0.0,0.0026989980460386267,0.002406014305862073,0.0007954238220758448,0.0,0.0,0.0008876988171677347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.930986301361699e-05,0.0,0.0,0.0007031423882683626,0.0002375168912838083,0.0007624522512819795,0.00032163383791748614,0.000286719590780956,9.478895956992042e-05,0.0,0.0,5.930986301361699e-05,0.0,0.0,0.0,0.0,0.0,0.00040286431221898283,0.00027024790092063843,8.934344976026561e-05,0.0,0.0 +98544,50.0,the Greater Atlanta and Macon Area,G1300670030310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,25333.0,,4849.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023997430748425716,0.001427404278512454,0.0,0.0038271473533550253,0.0019135890214806613,0.0008122924994875972,0.0011012658323867666,0.0,0.0,0.0004861847429682075,0.0008122924994875972,0.0011012658323867666,0.0,0.0,0.001427404278512454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.53705856735121e-05,0.0,0.0,0.00028597443513352376,0.00017857044003517897,0.00038134502080703584,5.793803874191476e-05,9.679989959733618e-05,0.00013123649679427278,0.0,0.0,9.53705856735121e-05,0.0,0.0,0.0,0.0,0.0,0.00019067403939201398,8.09385350284321e-05,0.00010973244638658976,0.0,0.0 +98545,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,132471.0,,15243.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007404642188049552,0.0025922852217802397,0.0,0.00999692740982979,0.006692466760890291,0.0018483015262334046,0.0008285575195204876,0.0,0.0006275838728241889,0.005011823532244906,0.0018483015262334046,0.0004242520880590235,0.0,0.00012024731115079808,0.001680643228645385,0.00040430543146146404,0.0005073365616733909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001732018448253834,0.0,0.0,0.0008823964122155767,0.0004409805452074352,0.0010555982570409602,0.0005972489947789639,0.00022025839926109023,5.0557273514503015e-05,0.0,1.432963176928115e-05,0.00011229108018243621,2.7013403468757902e-05,3.38973611741893e-05,0.0,0.0,0.0,0.000706672756386518,0.0001951663535797693,8.748926921325914e-05,0.0,6.626800567230575e-05 +98546,50.0,the Greater Atlanta and Macon Area,G1301510070108,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,15821.0,,4705.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.003714097487903617,0.003648761975184246,0.0,0.007362859463087863,0.0021873650427867443,0.0002496172373325451,0.004301389355330334,0.00042047607195634423,0.00020401175568189549,0.001539104144926357,0.0002496172373325451,0.00150490003368837,0.00042047607195634423,0.0,0.0006482608978603868,0.002796489321641963,0.00020401175568189549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002437911740130223,0.0,0.0,0.0004425993458428503,0.0003741032969262397,0.0006863905198558727,0.00018341104129523668,2.974623749492464e-05,0.00017933502624491176,5.010704080777717e-05,0.0,4.3313399567024185e-05,0.0001868467769272751,1.3630997518722969e-05,0.0,0.0,0.0,0.00020391352522207447,2.3270158306921878e-05,0.0004009899809318788,3.919819345513241e-05,1.9018661939865212e-05 +98547,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,24526.0,,928.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006128263335787723,0.0007361756633535752,0.0,0.006864438999141298,0.0034507045305513843,0.0014146217892371145,0.001820796228370853,0.0,0.00017831645098194678,0.0027145288671978087,0.0014146217892371145,0.001820796228370853,0.0,0.00017831645098194678,0.0007361756633535752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.918865046817885e-05,0.0,0.0,0.0007302948114726733,0.0002690766867984916,0.0007794834619408522,0.0003234858292936813,0.00016857809403245257,0.00021698121726639632,0.0,2.12496708801431e-05,4.918865046817885e-05,0.0,0.0,0.0,0.0,0.0,0.00039184077736660643,0.00016063574747323805,0.0002067584179503821,0.0,2.024851915062565e-05 +98548,50.0,the Greater Atlanta and Macon Area,G1300670031114,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,11710.0,,912.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028495068115403587,0.0007231079457027648,0.0,0.0035726147572431232,0.0018164954605364087,0.0003950089841789323,0.0012822904712542222,0.0,7.873713419982066e-05,0.001093387514833644,0.0003950089841789323,0.0012822904712542222,0.0,7.873713419982066e-05,0.0007231079457027648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.831353687493794e-05,0.0,0.0,0.00033957124686468515,0.0001484338108200229,0.00038788478373962313,0.00013029727116800095,4.707259962922638e-05,0.0001528085394999007,0.0,9.382980495607936e-06,4.831353687493794e-05,0.0,0.0,0.0,0.0,0.0,0.00019721996261860687,4.288678875683953e-05,0.00013922042983376048,0.0,8.548622884529151e-06 +98549,50.0,the Greater Atlanta and Macon Area,G1300590001800,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,21836.0,,,,8.53126424238864,Food Service,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.0050926929784389455,0.0,0.0,0.005092692978438946,0.0018700673300258413,0.0004191014386441793,0.0019752672087979956,0.000406648878051626,0.0004215272621362352,0.0018700673300258413,0.0004191014386441793,0.0019752672087979956,0.000406648878051626,0.0004215272621362352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006068881280612307,0.00016980750337540035,0.0006068881280612307,0.0002228529514881009,4.9943652335487825e-05,0.00023538945383972537,4.8459700481413906e-05,5.023273386550223e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00022285295148810087,4.994365233548781e-05,0.00023538945383972531,4.84597004814139e-05,5.0232733865502224e-05 +98550,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,52873.0,,8672.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004507198339305822,0.002552608003811429,0.0,0.007059806343117251,0.003409032157155123,0.0014751573059116796,0.0021755861904441502,0.0,0.0,0.000856424153343694,0.0014751573059116796,0.0021755861904441502,0.0,0.0,0.002552608003811429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017055008600080364,0.0,0.0,0.0005371141537904716,0.0003168300040440573,0.0007076642397912752,0.0001020584185074416,0.00017579165779392224,0.0002592604202677751,0.0,0.0,0.00017055008600080364,0.0,0.0,0.0,0.0,0.0,0.00034171619342917783,0.00014786752252464677,0.00021807744755803795,0.0,0.0 +98551,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10046.0,,,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,65445.43665129765,0.0,0.0,0.003317711555978578,0.0,0.0,0.003317711555978578,0.0017619087918684662,0.000965274257611457,0.0005232049484748588,0.0,6.732355802379624e-05,0.0017619087918684662,0.000965274257611457,0.0005232049484748588,0.0,6.732355802379624e-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.0003953681082414237,0.00013727911032630904,0.0003953681082414237,0.0002099647706503228,0.00011503069230906059,6.234976947537633e-05,0.0,8.022875806663981e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002099647706503228,0.00011503069230906059,6.234976947537633e-05,0.0,8.022875806663981e-06 +98552,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,9651.0,,563.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00199075926490513,0.00044670090526599933,0.0,0.0024374601701711287,0.0011979292560401285,0.00044504676379121327,0.0007087996219458646,0.0,8.576723546766179e-05,0.0008369955862417911,0.00044504676379121327,0.0007087996219458646,0.0,0.0,0.0003609336697983376,0.0,8.576723546766179e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.984456188215879e-05,0.0,0.0,0.00023723850910915595,0.00010115263486185324,0.0002670830709913147,9.974464944680756e-05,5.303616192423631e-05,8.446755392876884e-05,0.0,0.0,2.4114361794804842e-05,0.0,5.730200087353946e-06,0.0,0.0,0.0,0.00013126229853884164,4.87657020462239e-05,7.766624540719919e-05,0.0,9.397887571442888e-06 +98553,81.0,the Columbus-Albany Area,G1302150000300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Propane,164794.0,,,6471.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013396184911222127,0.0,0.0006098715031106189,0.014006056414332746,0.007690807992834825,0.005444042468824886,0.0008712059526730355,0.0,0.0,0.007080936489724207,0.005444042468824886,0.0008712059526730355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006098715031106189,0.0,0.0,0.0,0.0,4.918519531989841e-05,0.0015963990424809026,0.00041796366128468075,0.0016455842378008013,0.0008438223499434025,0.0006487566603516338,0.0001038200321858662,0.0,0.0,0.0,0.0,0.0,4.91851953198984e-05,0.0,0.0,0.0009035999880744686,0.0006396254742661754,0.00010235877546015705,0.0,0.0 +98554,81.0,the Columbus-Albany Area,G1302150010203,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,91723.0,,11101.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004135145811830394,0.0018878756929229619,0.0,0.006023021504753357,0.002994445279509878,0.0009217660295057052,0.0009964463118069674,0.0,0.0011103816142922268,0.0023851059485869236,0.0009217660295057052,0.0006492149137566534,0.0,0.00017905891998111327,0.0006093393309229546,0.00034723139805031405,0.0009313226943111134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000126137227780927,0.0,0.0,0.0004927773800917461,0.00022956689525928286,0.000618914607872673,0.00028422849255360427,0.00010984508642425179,7.736569370836353e-05,0.0,2.1338107405526636e-05,4.0712624389747255e-05,2.3200047605226244e-05,6.222574042890721e-05,0.0,0.0,0.0,0.00030770368734387007,9.471898120430769e-05,0.00010239298960687258,0.0,0.00011410077165693954 +98555,50.0,the Greater Atlanta and Macon Area,G1301170130307,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,115436.0,,31274.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006073269349017788,0.005318470133004718,0.0,0.011391739482022505,0.00555719171916431,0.0011017469282806611,0.002173972804796934,0.0,0.0025588280297806003,0.0038065667539939774,0.0011017469282806611,0.0008087349754528685,0.0,0.0003562206912902809,0.0017506249651703333,0.0013652378293440657,0.002202607338490319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003553492927286884,0.0,0.0,0.0007237388483574434,0.0005713098316867561,0.001079088141086132,0.0004536206251377414,0.00013129288480909446,9.637526118536225e-05,0.0,4.2450077225245284e-05,0.00011696659521429164,9.121726453877468e-05,0.00014716543297562206,0.0,0.0,0.0,0.0005264077265246237,0.00010436352118672738,0.00020593064618465383,0.0,0.0002423862471901271 +98556,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock 90.1-2007,gen4_led,200001_500000,Electricity,272398.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.024270353417231185,0.0,0.0,0.024270353417231185,0.005929600211991751,0.0063043509944929995,0.012036402210746434,0.0,0.0,0.005929600211991751,0.0063043509944929995,0.012036402210746434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002892249669332391,0.000940593893730983,0.002892249669332391,0.0007066186452905354,0.0007512769495244482,0.0014343540745174075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007066186452905354,0.0007512769495244482,0.0014343540745174075,0.0,0.0 +98557,35.0,Eastern Counties in South Carolina and Georgia,G1301270000200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,113211.0,,8472.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005789565835935522,0.0014407868993549107,0.0,0.007230352735290432,0.003408910208065032,0.0017982487159445954,0.0010732719678400564,0.0,0.0009499218434407489,0.0031367314299058017,0.0017982487159445954,0.0006813955197340493,0.0,0.0001731901703510758,0.00027217877815923056,0.00039187644810600693,0.0007767316730896731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.626542572979689e-05,0.0,0.0,0.0006899309354155281,0.00031000110962576063,0.000786196361145325,0.00037379798605096965,0.00021429368865635335,8.120053586748749e-05,0.0,2.0638724840717593e-05,1.81854832007742e-05,2.6183020630806542e-05,5.1896921898216145e-05,0.0,0.0,0.0,0.00037066971684116966,0.00019553355813602707,0.00011670281472114657,0.0,0.00010329027144698179 +98558,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,25981.0,,3444.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002237118851071044,0.001013861833650909,0.0,0.0032509806847219533,0.0014544725112670281,0.0007490719105143295,0.001047436262940596,0.0,0.0,0.0004406106776161189,0.0007490719105143295,0.001047436262940596,0.0,0.0,0.001013861833650909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.774000157294261e-05,0.0,0.0,0.0002665920757018152,0.00014971993674478356,0.0003343320772747579,5.2506515273351556e-05,8.926509889196662e-05,0.00012482046153649708,0.0,0.0,6.774000157294261e-05,0.0,0.0,0.0,0.0,0.0,0.00014957850051715367,7.703483722538531e-05,0.00010771873953221898,0.0,0.0 +98559,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,51829.0,,6236.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0024505841733111784,0.0010604706468947782,0.0,0.0035110548202059565,0.001698320398981178,0.0005401199999390685,0.0007028847177751533,0.0,0.0005697297035105568,0.0011086085781502216,0.0005401199999390685,0.0007028847177751533,0.0,9.897087744673476e-05,0.0005897118208309562,0.0,0.000470758826063822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.085459204322573e-05,0.0,0.0,0.00029203055065299757,0.00013835865325987796,0.0003628851426962233,0.00013211036660634468,6.436487377937303e-05,8.376117556497014e-05,0.0,1.1794134702309697e-05,3.9401175893358876e-05,0.0,3.145341614986686e-05,0.0,0.0,0.0,0.00017552993954450424,5.5824113631890165e-05,7.26466643701875e-05,0.0,5.888442514964143e-05 +98560,85.0,Rural Climate Zone 3A,G1302330010200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3019.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0002662549726713325,0.0,0.0,0.0002662549726713325,0.00016137493381277544,8.319328886000226e-05,2.16867499985548e-05,0.0,0.0,0.00016137493381277544,8.319328886000226e-05,2.16867499985548e-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,3.172889245931525e-05,9.637326889865978e-06,3.172889245931525e-05,1.923061894094706e-05,9.913921565829853e-06,2.58435195253834e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.923061894094706e-05,9.913921565829853e-06,2.58435195253834e-06,0.0,0.0 +98561,85.0,Rural Climate Zone 3A,G1300090970400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,42561.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0035465733383490913,0.0,0.0,0.003546573338349092,0.0017438090909202076,0.0013857651007479891,0.0004169991466808947,0.0,0.0,0.0017438090909202076,0.0013857651007479891,0.0004169991466808947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042263908613542815,0.00011687290264038052,0.00042263908613542815,0.00020780675042356188,0.00016513925975971202,4.969307595215426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020780675042356183,0.00016513925975971197,4.9693075952154254e-05,0.0,0.0 +98562,85.0,Rural Climate Zone 3A,G1303010970400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,19335.0,,,,8.72605822017302,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,65445.43665129765,0.0,0.0,0.004509189660267041,0.0,0.0,0.004509189660267042,0.0022655121638671086,0.0006825814795705042,0.0014920356102571058,0.0,6.90604065723217e-05,0.0022655121638671086,0.0006825814795705042,0.0014920356102571058,0.0,6.90604065723217e-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.0005373561671496183,0.0001703238261798596,0.0005373561671496183,0.0002699790926368735,8.13426347667975e-05,0.00017780457181546425,0.0,8.229867930482964e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00026997909263687343,8.134263476679748e-05,0.00017780457181546422,0.0,8.229867930482964e-06 +98563,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,11749.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002659611370234909,0.0,0.0,0.002659611370234909,0.0011358989507356482,0.0005145207057322315,0.0009330184988531272,0.0,7.617321491390214e-05,0.0011358989507356482,0.0005145207057322315,0.0009330184988531272,0.0,7.617321491390214e-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.00031694197349383323,0.00010143771640434558,0.00031694197349383323,0.00013536340653556942,6.131467540831348e-05,0.00011118644161407884,0.0,9.077449935871519e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013536340653556942,6.131467540831348e-05,0.00011118644161407884,0.0,9.077449935871519e-06 +98564,50.0,the Greater Atlanta and Macon Area,G1300130180503,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,25376.0,,4892.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005849388186394229,0.00379406880235839,0.0,0.009643456988752618,0.003312300256836102,0.000686265465902595,0.0046248324876044435,0.00041497753870768444,0.0006050812397017932,0.003312300256836102,0.000686265465902595,0.000830763685246054,0.00041497753870768444,0.0006050812397017932,0.0,0.00379406880235839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002534955203733835,0.0,0.0,0.0006970595053732824,0.00044620912002616504,0.0009505550257466659,0.00039471997841559553,8.178083775146251e-05,9.900039201820736e-05,4.9452015946801666e-05,7.210628124121528e-05,0.0,0.0002534955203733835,0.0,0.0,0.0,0.0,0.0003264932543993014,6.764514928317922e-05,0.000455869484299686,4.090431319916058e-05,5.964282456533878e-05 +98565,50.0,the Greater Atlanta and Macon Area,G1300770170402,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,25332.0,,2074.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0021407841769025553,0.0006106310965053923,0.0,0.0027514152734079483,0.0011039358281346669,0.0006538727517788554,0.0009936066934944253,0.0,0.0,0.0004933047316292745,0.0006538727517788554,0.0009936066934944253,0.0,0.0,0.0006106310965053923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.079788112877609e-05,0.0,0.0,0.0002551145743720599,0.00011856061885629877,0.00029591245550083606,5.8786508235226944e-05,7.792119848573755e-05,0.00011840686765109543,0.0,0.0,4.079788112877609e-05,0.0,0.0,0.0,0.0,0.0,0.00011872739268982154,7.032347804201545e-05,0.00010686158476899899,0.0,0.0 +98566,85.0,Rural Climate Zone 3A,G1301630960100,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,8510.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0006688799692584321,0.0,0.0,0.0006688799692584321,0.0002454861607753246,0.00019509382723449658,0.0002283306708549087,0.0,0.0,0.0002454861607753246,0.00019509382723449658,0.0002283306708549087,0.0,0.0,0.0,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.971032378006725e-05,2.973337029670307e-05,7.971032378006725e-05,2.925454828707309e-05,2.3249301595314864e-05,2.7210131173374644e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.925454828707309e-05,2.3249301595314864e-05,2.7210131173374644e-05,0.0,0.0 +98567,46.0,the Tallahassee-Valdosta Area,G1301850011401,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,70803.0,,4764.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.01397664451158025,0.0032770289156452996,0.0,0.01725367342722555,0.006373825544128369,0.0006700079692278384,0.0057824943831046565,0.00037904004681750444,0.004048233763976165,0.006373825544128369,0.0006700079692278384,0.0025054654674593565,0.00037904004681750444,0.004048233763976165,0.0,0.0032770289156452996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021895028781056703,0.0,0.0,0.001665571728009516,0.0006273914912907671,0.001884522015820083,0.0007595573899564531,7.984365132577766e-05,0.0002985718385158121,4.5169524433390595e-05,0.00048242077703741375,0.0,0.00021895028781056706,0.0,0.0,0.0,0.0,0.0006961772293633727,7.318121408235113e-05,0.0006315894419400175,4.140041922770561e-05,0.0004421658776362995 +98568,50.0,the Greater Atlanta and Macon Area,G1300890022800,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,54771.0,,5214.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004604760597726219,0.0015346951421292229,0.0,0.006139455739855441,0.0023207173386259865,0.0016162067364559219,0.0022025009751672356,0.0,0.0,0.0007860221964967636,0.0016162067364559219,0.0022025009751672356,0.0,0.0,0.0015346951421292229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010253945238607064,0.0,0.0,0.0005487390468757525,0.0002576234651105982,0.0006512784992618232,9.366851148391976e-05,0.00019259975090885786,0.0002624671272710632,0.0,0.0,0.00010253945238607064,0.0,0.0,0.0,0.0,0.0,0.00024618359827882933,0.00017144853589915225,0.00023364310950524004,0.0,0.0 +98569,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,47872.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.004265333552073626,0.0,0.0,0.004265333552073626,0.002058229135961735,0.0009578533021576015,0.0012492511139542896,0.0,0.0,0.002058229135961735,0.0009578533021576015,0.0012492511139542896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005082913548449745,0.00017700443422923815,0.0005082913548449745,0.0002452750912272225,0.0001141454816493132,0.00014887078196843884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002452750912272225,0.0001141454816493132,0.00014887078196843884,0.0,0.0 +98570,81.0,the Columbus-Albany Area,G1302150000400,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,45623.0,,975.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0038721996954000537,0.000286947818883521,0.0,0.004159116824677276,0.0013558361166262113,0.0015271148093736905,0.0012761658986773748,0.0,0.0,0.0010688882977426906,0.0015271148093736905,0.0012761658986773748,0.0,0.0,0.000286947818883521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.917212712578418e-05,0.0,0.0,0.00046144081430048953,0.00014222033201532163,0.0004806129414262737,0.0001273768723995764,0.00018198263431631456,0.0001520776503773173,0.0,0.0,1.917212712578418e-05,0.0,0.0,0.0,0.0,0.0,0.00015667566254387737,0.00017646802707583552,0.00014746925180656085,0.0,0.0 +98571,81.0,the Columbus-Albany Area,G1300950001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,227874.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.02558702959622153,0.0,0.0,0.025587029596221535,0.006648534929121736,0.007278807373657659,0.011659656603835836,0.0,0.0,0.006648534929121736,0.007278807373657659,0.011659656603835836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003049155396319083,0.0008629541331036318,0.003049155396319083,0.0007922926762761516,0.0008674009891883985,0.0013894580736352256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007922926762761515,0.0008674009891883983,0.0013894580736352254,0.0,0.0 +98572,50.0,the Greater Atlanta and Macon Area,G1300670030224,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,298449.0,,14528.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01536270214710321,0.002470654942438678,0.0,0.017833357089541892,0.007735508462509157,0.004288903506065092,0.0029556867094456428,0.0,0.0028532584115219975,0.006335058135384867,0.004288903506065092,0.0018854820941312555,0.0,0.0028532584115219975,0.0014004503271242905,0.001070204615314387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001650745108792085,0.0,0.0,0.0018307446407401814,0.0006073820708762501,0.00199581915161939,0.0007549370949901691,0.0005111006535956953,0.00022468939422178722,0.0,0.00034001749793253003,9.35697853996897e-05,7.150472547951878e-05,0.0,0.0,0.0,0.0,0.0008657189927545061,0.0004799923936852064,0.0003307855111788178,0.0,0.00031932225400085933 +98573,35.0,Eastern Counties in South Carolina and Georgia,G1301270000503,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,5548.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011113349498350737,0.0,0.0,0.0011113349498350737,0.0005666261621879951,0.00017748938024455375,0.00032950498177740075,0.0,3.771442562512419e-05,0.0005666261621879951,0.00017748938024455375,0.00032950498177740075,0.0,3.771442562512419e-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.0001324348549193386,4.038357043886212e-05,0.0001324348549193386,6.752334531907335e-05,2.115094133042351e-05,3.926623963672286e-05,0.0,4.494328633118881e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.752334531907335e-05,2.115094133042351e-05,3.926623963672286e-05,0.0,4.494328633118881e-06 +98574,50.0,the Greater Atlanta and Macon Area,G1301170130509,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,76878.0,,3325.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.0070901648476012396,0.0009995575562174654,0.0,0.008089722403818706,0.002460097419055163,0.000914318135822698,0.0032175687537470475,0.0,0.0014977380951937964,0.002460097419055163,0.000914318135822698,0.0022180111975295823,0.0,0.0014977380951937964,0.0,0.0009995575562174654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.678424584339424e-05,0.0,0.0,0.0008449211460501615,0.00040930055234574307,0.0009117053918935559,0.00029316502160120657,0.00010895751280523813,0.0002643160777288298,0.0,0.00017848253391488706,0.0,6.678424584339424e-05,0.0,0.0,0.0,0.0,0.0002772510562880715,0.0001030429392660158,0.000362617483659845,0.0,0.00016879391267962343 +98575,33.0,Rural Lower Plains-Upper South Appalachia,G1302810960300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Propane,18214.0,,,2963.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016061559382683163,0.0,0.0002792244996312525,0.0018853804378995685,0.0012588642022970619,0.00045779089072579555,0.00016872534487671139,0.0,0.0,0.0009796397026658095,0.00045779089072579555,0.00016872534487671139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002792244996312525,0.0,0.0,0.0,0.0,2.25200351257242e-05,0.00019140142292198138,7.141652421457418e-05,0.0002139214580477056,0.00011674111371979322,5.4553748984116946e-05,2.010656021807123e-05,0.0,0.0,0.0,0.0,0.0,2.25200351257242e-05,0.0,0.0,0.00014283486782087554,5.1942458326406326e-05,1.9144131900423775e-05,0.0,0.0 +98576,50.0,the Greater Atlanta and Macon Area,G1300670030239,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,258693.0,,42456.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.06925912217452322,0.03755197193626989,0.0,0.10681118632804588,0.08789991765009268,0.010935398485601341,0.0026957869503182073,0.0006480106352370965,0.00463207260679655,0.0503479457138228,0.010935398485601341,0.0026957869503182073,0.0006480106352370965,0.00463207260679655,0.03755197193626989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025090055507611788,0.0,0.0,0.008253479048182641,0.004829924493293114,0.010762484598943821,0.005999869793627428,0.001303150826211871,0.00032125184978160125,7.722220601427538e-05,0.0005519953619036646,0.0025090055507611788,0.0,0.0,0.0,0.0,0.0,0.008856951621640697,0.0011018701489105649,0.00027163227497282533,6.529470106503072e-05,0.00046673585235470236 +98577,50.0,the Greater Atlanta and Macon Area,G1301350050208,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,7959.0,,641.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.00040969546133316016,0.00010895307092622446,0.0,0.0005186308018979644,0.0002695014935848026,0.00010333254635606773,2.9130983813146753e-05,0.0,0.0001166835085053675,0.00016054842265857813,0.00010333254635606773,2.9130983813146753e-05,0.0,0.0001166835085053675,0.00010895307092622446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.279179086663407e-06,0.0,0.0,4.882159728788567e-05,1.8668778160657898e-05,5.6100776374549076e-05,1.9131845909975537e-05,1.2313682823118433e-05,3.4714105831131753e-06,0.0,1.390465797167852e-05,7.279179086663407e-06,0.0,0.0,0.0,0.0,0.0,2.9152227304815085e-05,1.1177577679767259e-05,3.1511256224875778e-06,0.0,1.262176367717027e-05 +98578,81.0,the Columbus-Albany Area,G1302150010602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,110004.0,,3232.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005662510065999424,0.0005496057432987967,0.0,0.00621211580929822,0.0029270699061136776,0.0016573100730165955,0.0010189106797261745,0.0,0.0006088251504417731,0.0029270699061136776,0.0016573100730165955,0.0004693049364273776,0.0,0.0006088251504417731,0.0,0.0005496057432987967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.672128494275062e-05,0.0,0.0,0.0006747901327405134,0.00021355706748364377,0.000711511417683264,0.00034881313542329195,0.00019749836576505474,5.59261417033286e-05,0.0,7.255248984883816e-05,0.0,3.672128494275062e-05,0.0,0.0,0.0,0.0,0.00033525512441987725,0.0001898218056121534,0.00011670203912481273,0.0,6.97324485264207e-05 +98579,50.0,the Greater Atlanta and Macon Area,G1300670031208,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,44259.0,,1502.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0039027949125550448,0.0004376228206991282,0.0,0.004340417733254174,0.002313830431568496,0.0017903718188582811,0.0002362458564268337,0.0,0.0,0.001876207610869368,0.0017903718188582811,0.0002362458564268337,0.0,0.0,0.0004376228206991282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9238750687992996e-05,0.0,0.0,0.00046508892867365897,0.0001583886457242445,0.0004943276793616519,0.00022358422803655134,0.00021335533375879486,2.815298644458235e-05,0.0,0.0,2.9238750687992996e-05,0.0,0.0,0.0,0.0,0.0,0.0002635208171117856,0.0002039044167638615,2.6905904717776143e-05,0.0,0.0 +98580,50.0,the Greater Atlanta and Macon Area,G1300890023315,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,46228.0,,6507.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.003999991216023687,0.0019153076394333327,0.0,0.005915298855457021,0.0026642567915224715,0.0012368832026163155,0.002014158861318234,0.0,0.0,0.0007489491520891388,0.0012368832026163155,0.002014158861318234,0.0,0.0,0.0019153076394333327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001279700950685386,0.0,0.0,0.00047667112014986317,0.0002661017945773071,0.0006046412152184017,8.925080380964164e-05,0.00014739694910424468,0.00024002336723597697,0.0,0.0,0.0001279700950685386,0.0,0.0,0.0,0.0,0.0,0.00027233103575044417,0.00012642988646689035,0.00020588029300106728,0.0,0.0 +98581,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,113470.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010228324055717278,0.0,0.0,0.010228324055717277,0.0025710524571963484,0.002983183180168199,0.004674088418352729,0.0,0.0,0.0025710524571963484,0.002983183180168199,0.004674088418352729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012188895437538509,0.0003837180644161727,0.0012188895437538509,0.00030638733574026456,0.00035550015482515776,0.0005570020531884283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003063873357402646,0.0003555001548251578,0.0005570020531884284,0.0,0.0 +98582,35.0,Eastern Counties in South Carolina and Georgia,G1300510010808,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,34941.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0031132150420515653,0.0,0.0,0.003113215042051566,0.0010870258550646325,0.0008980392594833789,0.0011281499275035544,0.0,0.0,0.0010870258550646325,0.0008980392594833789,0.0011281499275035544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003709944577950542,0.00012619272556441827,0.0003709944577950542,0.0001295382947408452,0.0001070172100707683,0.00013443895298344074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012953829474084518,0.00010701721007076827,0.0001344389529834407,0.0,0.0 +98583,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,50334.0,,7168.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004438494085838674,0.002088154587746,0.0,0.006526648673584674,0.004411886812731203,0.0014189938185328896,0.0006957984159200188,0.0,0.0,0.0023237322249852034,0.0014189938185328896,0.0006957984159200188,0.0,0.0,0.002088154587746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013951818331064527,0.0,0.0,0.0005289263228649015,0.00025471905918093835,0.0006684445061755467,0.0002769144483047922,0.00016909861049478178,8.291688362546474e-05,0.0,0.0,0.00013951818331064527,0.0,0.0,0.0,0.0,0.0,0.00045185540839273665,0.00014533011806416258,7.126209051358869e-05,0.0,0.0 +98584,81.0,the Columbus-Albany Area,G1302150000200,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,3838.0,,155.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006054984868454697,0.00012323353987156804,0.0,0.0007287320267170378,0.0005196485443040684,0.00012571475208374727,7.286493196432983e-05,0.0,1.0503798364892041e-05,0.00040683609572365317,0.00012571475208374727,7.286493196432983e-05,0.0,0.0,0.00011281244858041532,0.0,1.0503798364892041e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.236143566828428e-06,0.0,0.0,7.215387461566796e-05,3.243340216948674e-05,8.039001818249638e-05,4.848038645464699e-05,1.4980725230954143e-05,8.682907189783289e-06,0.0,0.0,7.539664312183877e-06,0.0,7.020068677766512e-07,0.0,0.0,0.0,5.7324989699310477e-05,1.3868213328497842e-05,8.038089435793813e-06,0.0,1.1587257188942274e-06 +98585,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,129120.0,,9540.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011504428575182055,0.0028081296658461026,0.0,0.014312558241028159,0.007199382672559202,0.002761972497974357,0.0043512030704945985,0.0,0.0,0.0043912530067131,0.002761972497974357,0.0043512030704945985,0.0,0.0,0.0028081296658461026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018762299141279043,0.0,0.0,0.0013709614300783496,0.0006045844576236778,0.0015585844214911402,0.0005232974817112093,0.0003291391433233419,0.0005185248050437986,0.0,0.0,0.00018762299141279043,0.0,0.0,0.0,0.0,0.0,0.0007839860274341814,0.00030076854433960126,0.00047382984971735734,0.0,0.0 +98586,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6198.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018859694024774272,0.0,0.0,0.0018859694024774272,0.0013058619872699248,0.0002028804518825211,0.0003363696688977633,0.0,4.0774587353478564e-05,0.0013058619872699248,0.0002028804518825211,0.0003363696688977633,0.0,4.0774587353478564e-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.0002247474422773401,7.137684679662092e-05,0.0002247474422773401,0.00015561712783918443,2.4176883563843147e-05,4.008454360136571e-05,0.0,4.859031225835577e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015561712783918443,2.4176883563843147e-05,4.008454360136571e-05,0.0,4.859031225835577e-06 +98587,50.0,the Greater Atlanta and Macon Area,G1300890021705,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,6984.0,,426.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014141255467946783,0.0003376102750038529,0.0,0.0017516531147247919,0.0007663637452684227,0.0005806863647236773,0.0003571291444063294,0.0,4.755656740010177e-05,0.00042875347026456967,0.0005806863647236773,0.0003571291444063294,0.0,4.755656740010177e-05,0.0003376102750038529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2555297899154113e-05,0.0,0.0,0.00016851676308974185,7.768852349828037e-05,0.00019107206098889596,5.109316293468369e-05,6.919851407492557e-05,4.255792391048691e-05,0.0,5.667162169645664e-06,2.255529789915411e-05,0.0,0.0,0.0,0.0,0.0,8.359571826446528e-05,6.334184523362945e-05,3.895600166910868e-05,0.0,5.187517591416742e-06 +98588,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,5518.0,,158.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0010000939356557056,0.0001249703884200935,0.0,0.0011250643240757988,0.00044537759208617046,0.00033248243643201584,0.0003178432843801584,0.0,2.936101117745413e-05,0.000349768214843531,0.00033248243643201584,0.0003178432843801584,0.0,0.0,9.560937724263937e-05,0.0,2.936101117745413e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.350571754314895e-06,0.0,0.0,0.00011917477250350692,4.300168678232359e-05,0.00012752534425782182,4.1679632229352515e-05,3.961979701158599e-05,3.787534326256839e-05,0.0,0.0,6.3886571462528255e-06,0.0,1.96191460806207e-06,0.0,0.0,0.0,5.048327419160263e-05,3.768667822660029e-05,3.6027339409160424e-05,0.0,3.328052430458483e-06 +98589,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,38352.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003939686139648702,0.0,0.0,0.003939686139648702,0.0021191173148563773,0.0007327757295702493,0.0010877930952220751,0.0,0.0,0.0021191173148563773,0.0007327757295702493,0.0010877930952220751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004694847437860799,0.0001683627164883895,0.0004694847437860799,0.0002525310936842054,8.732346015782436e-05,0.00012963018994405012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002525310936842054,8.732346015782436e-05,0.00012963018994405012,0.0,0.0 +98590,50.0,the Greater Atlanta and Macon Area,G1300770170100,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10892.0,,426.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002813611941537499,0.00033818922452002803,0.0,0.003151883873131267,0.0014912085395197127,0.0006509046703283495,0.0009229282358569317,0.0,8.68424274262728e-05,0.001153019314999685,0.0006509046703283495,0.0009229282358569317,0.0,8.68424274262728e-05,0.00033818922452002803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2597380464210864e-05,0.0,0.0,0.00033529762107759086,0.00013087927907392028,0.00035789500154180174,0.00013740510113297553,7.7568190654653e-05,0.0001099851892649648,0.0,1.0348996211866028e-05,2.2597380464210864e-05,0.0,0.0,0.0,0.0,0.0,0.00016932606150249767,7.390993366747959e-05,0.00010479808764871726,0.0,9.860918723107187e-06 +98591,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,NaturalGas,263928.0,,96233.0,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,3405302.3287806446,0.0,0.0,0.12279003858506493,0.08511716983040937,0.0,0.20790730063272705,0.15316584834503194,0.0251265270803596,0.016641064349183186,0.0006528059323813015,0.012320870491265512,0.08847885756300268,0.0251265270803596,0.004969218882935276,0.0006528059323813015,0.0035625369091332733,0.06468699078202922,0.011671845466247908,0.008758333582132238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005687033868082329,0.0,0.0,0.014632656284690775,0.00935428319326321,0.020319690152773105,0.010543857841404769,0.002994280632464893,0.0005921724005894325,7.779364628609642e-05,0.0004245407745902637,0.00432200821684628,0.0007798447786954079,0.0005851808725406408,0.0,0.0,0.0,0.01496956850907127,0.002455725428276765,0.0016264040289046672,6.380158000951007e-05,0.0012041725809197078 +98592,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,103705.0,,2108.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008595394531289952,0.0006140630598330285,0.0,0.009209487964722417,0.006176319577669645,0.00226419997008721,0.0007689987905650007,0.0,0.0,0.005562256517836615,0.00226419997008721,0.0007689987905650007,0.0,0.0,0.0006140630598330285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1028240602282077e-05,0.0,0.0,0.0010242983313843012,0.0003135140707179468,0.0010653265719865832,0.0006628445092556397,0.0002698208026214543,9.164025864605245e-05,0.0,0.0,4.1028240602282077e-05,0.0,0.0,0.0,0.0,0.0,0.0007144585440989548,0.00026191601549020916,8.895552592636819e-05,0.0,0.0 +98593,50.0,the Greater Atlanta and Macon Area,G1300210012102,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,7524.0,,80.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018066533187614316,6.376715385300602e-05,0.0,0.0018704204726144374,0.001138545577095306,0.000488302563356871,0.00018923378471553539,0.0,5.425584037298567e-05,0.0010747784232423001,0.000488302563356871,0.00018923378471553539,0.0,5.425584037298567e-05,6.376715385300602e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.258197976384654e-06,0.0,0.0,0.00021529476827702917,6.39028424661012e-05,0.00021955296625341384,0.00012807890101446595,5.8189906240046684e-05,2.2550559870804007e-05,0.0,6.465545137782967e-06,4.258197976384654e-06,0.0,0.0,0.0,0.0,0.0,0.00013364431277667455,5.731774100199669e-05,2.2212566296166742e-05,0.0,6.3686378891107445e-06 +98594,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,111597.0,,10465.0,,9.325022323477118,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.027049706420244755,0.008871206328133867,0.0,0.03592091274837863,0.021697515345068908,0.006345982548345755,0.007408890433114643,0.0,0.0004684360376912605,0.012826309016935043,0.006345982548345755,0.007408890433114643,0.0,0.0004684360376912605,0.008871206328133867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005927207615853996,0.0,0.0,0.0032234624691313113,0.0014713407030060924,0.003816183230716711,0.0015284870412725362,0.0007562387649074428,0.0008829034917427758,0.0,5.5822638635229066e-05,0.0005927207615853996,0.0,0.0,0.0,0.0,0.0,0.0023051110863492163,0.0006741875506632574,0.0007871092704999753,0.0,4.9765933405505085e-05 +98595,50.0,the Greater Atlanta and Macon Area,G1300890021216,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11417.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0027413259590893446,0.0,0.0,0.0027413259590893446,0.0012586362481647802,0.00043933997570320103,0.0009646126010215425,0.0,7.873713419982066e-05,0.0012586362481647802,0.00043933997570320103,0.0009646126010215425,0.0,7.873713419982066e-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.0003266757684428343,0.00010816831731860783,0.0003266757684428343,0.0001499879874540067,5.235485539201495e-05,0.00011495005241661718,0.0,9.38287318019545e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001499879874540067,5.235485539201495e-05,0.00011495005241661718,0.0,9.38287318019545e-06 +98596,85.0,Rural Climate Zone 3A,G1300170960500,ComStock 90.1-2004,gen4_led,_1000,Electricity,8133.0,,5.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,1870.6521585294563,0.0,0.0,0.0003583837953835273,8.155966253224289e-07,0.0,0.0003592171223702698,0.0002479591044594385,4.909537077212621e-05,1.6631079012009528e-05,0.0,4.5549298488115654e-05,0.00024714350783411603,4.909537077212621e-05,1.6631079012009528e-05,0.0,4.5549298488115654e-05,8.155966253224289e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482037875756773e-08,0.0,0.0,4.2708615640106255e-05,1.3244562623243632e-05,4.276343601886383e-05,2.945210475473414e-05,5.850697902708861e-06,1.981926555702749e-06,0.0,5.428112283156037e-06,5.482037875756773e-08,0.0,0.0,0.0,0.0,0.0,2.951859095379125e-05,5.844617686882227e-06,1.979866879846706e-06,0.0,5.422471230624934e-06 +98597,50.0,the Greater Atlanta and Macon Area,G1302550160300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,70624.0,,4476.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006227742081517758,0.0013038475030643724,0.0,0.007531589584582131,0.004281037346353368,0.0026600590915594295,0.0005904931466693331,0.0,0.0,0.002977189843288996,0.0026600590915594295,0.0005904931466693331,0.0,0.0,0.0013038475030643724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.711559944851388e-05,0.0,0.0,0.0007421470236538898,0.0002634398591373588,0.0008292626231024036,0.0003547854988418275,0.00031699368915791396,7.036783565414835e-05,0.0,0.0,8.711559944851388e-05,0.0,0.0,0.0,0.0,0.0,0.00047136188444252774,0.0002928847297242043,6.501600893567168e-05,0.0,0.0 +98598,35.0,Eastern Counties in South Carolina and Georgia,G1302450010509,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,118559.0,,5034.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.028106896472735825,0.004452710050152724,0.0,0.03255960652288855,0.02403642693532791,0.004590298191290302,0.0010125454354494548,0.0006613821368892067,0.0022589538239316804,0.019583716885175177,0.004590298191290302,0.0010125454354494548,0.0006613821368892067,0.0022589538239316804,0.004452710050152724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000297501708907044,0.0,0.0,0.003349447753353998,0.0010383419170683528,0.0036469494622610415,0.0023337559373372537,0.0005470174901364938,0.00012066319870017682,7.88157068376747e-05,0.00026919542034239816,0.000297501708907044,0.0,0.0,0.0,0.0,0.0,0.00269228174563008,0.0005141519603001285,0.00011341359511612613,7.408035557129842e-05,0.0002530218056434086 +98599,35.0,Eastern Counties in South Carolina and Georgia,G1300510010101,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,22796.0,,438.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005021973517450746,0.0003472042955576125,0.0,0.00536917781300836,0.002849920346909055,0.001187508164748976,0.0012186887315486948,0.0,0.00011306056980163324,0.002502716051351443,0.001187508164748976,0.0012186887315486948,0.0,0.00011306056980163324,0.0003472042955576125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.319817756781701e-05,0.0,0.0,0.0005984609715804781,0.00016501735066360335,0.000621659149148295,0.00029824487812953347,0.00014151354792411898,0.00014522928880497934,0.0,1.3473256721846402e-05,2.3198177567817008e-05,0.0,0.0,0.0,0.0,0.0,0.00032997213348149896,0.00013749317698436828,0.0001411033544271254,0.0,1.3090484255302368e-05 +98600,50.0,the Greater Atlanta and Macon Area,G1301390001502,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,19987.0,,2631.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023222518189408717,0.000774421525316232,0.0,0.003096673344257104,0.0011481902404159542,0.0008337445342896916,0.0011147078799451605,0.0,0.0,0.0003737687150997222,0.0008337445342896916,0.0011147078799451605,0.0,0.0,0.000774421525316232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.174310400535379e-05,0.0,0.0,0.00027673721740384465,0.00013023969450277046,0.00032848032140919844,4.4541127420230535e-05,9.935535008008893e-05,0.00013283708269624874,0.0,0.0,5.174310400535379e-05,0.0,0.0,0.0,0.0,0.0,0.00012179453797094575,8.843963897727219e-05,0.00011824288905409061,0.0,0.0 +98601,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,25968.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.0057421040084988965,0.0,0.0,0.0057421040084988965,0.0027576192526159882,0.0015423215110906049,0.0012756739053550778,0.0,0.00016640663236348652,0.0027576192526159882,0.0015423215110906049,0.0012756739053550778,0.0,0.00016640663236348652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006842740193454822,0.0001785230295907149,0.0006842740193454822,0.0003286194758957908,0.00018379509287099475,0.00015201927887399308,0.0,1.983031568299235e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003286194758957908,0.00018379509287099475,0.00015201927887399308,0.0,1.983031568299235e-05 +98602,50.0,the Greater Atlanta and Macon Area,G1301210010122,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,25052.0,,1301.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006015285473059829,0.0010321842802665567,0.0,0.007047469753326385,0.004903123452487362,0.0009579133280486586,0.0009230936500044102,0.0,0.00026342202985969406,0.0041343612020804995,0.0009579133280486586,0.0009230936500044102,0.0,0.0,0.0007687622504068624,0.0,0.00026342202985969406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.896529616675452e-05,0.0,0.0,0.0007168327060497947,0.0002767990042750661,0.0007857980022165492,0.0004926857322977745,0.00011415311977820326,0.00011000371005392218,0.0,0.0,5.136477787419737e-05,0.0,1.7600518292557134e-05,0.0,0.0,0.0,0.0005467018303650239,0.00010680803264490169,0.00010292561322308304,0.0,2.937174788240475e-05 +98603,50.0,the Greater Atlanta and Macon Area,G1301210011423,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,5368.0,,695.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012460647729564055,0.0005514080606199626,0.0,0.0017974728335763681,0.0012210045296133956,0.0001849330168810914,0.00034852760873744154,0.0,4.300767834443987e-05,0.0006695964689934329,0.0001849330168810914,0.00034852760873744154,0.0,4.300767834443987e-05,0.0005514080606199626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.684389152058802e-05,0.0,0.0,0.00014848860618286208,7.528280619818937e-05,0.00018533249770345012,7.979316047102426e-05,2.2037735525347113e-05,4.1532655413154184e-05,0.0,5.125054773336539e-06,3.684389152058802e-05,0.0,0.0,0.0,0.0,0.0,0.00012589443075489048,1.906793654189088e-05,3.5935726559717434e-05,0.0,4.434403846951368e-06 +98604,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000102,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,21065.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004945122049338883,0.0014962479299000374,0.0,0.006441369979238921,0.0023725362360136728,0.0010334008076157847,0.0021434576375805336,0.0004097215878082301,0.00048225371022069956,0.0023725362360136728,0.0010334008076157847,0.0006472097076804961,0.0004097215878082301,0.00048225371022069956,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99716943603331e-05,0.0,0.0,0.0005892998380321978,0.0002604791381359919,0.000689271532392531,0.00028273017443427814,0.00012314820998841468,7.712662541058459e-05,4.882566353766018e-05,5.746916466126019e-05,0.0,9.99716943603331e-05,0.0,0.0,0.0,0.0,0.0002538779316084516,0.00011058109696179446,0.00022936492318178774,4.384306872499315e-05,5.160451191550408e-05 +98605,35.0,Eastern Counties in South Carolina and Georgia,G1300510010808,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,6568.0,,173.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001577058482061114,0.00013704562118603238,0.0,0.0017141041032471462,0.0007712434626190418,0.0004438888647588629,0.0003619261546832093,0.0,0.00013704562118603238,0.0007712434626190418,0.0004438888647588629,0.0003619261546832093,0.0,0.0,0.0,0.0,0.00013704562118603238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.158953707872788e-06,0.0,0.0,0.0001879346819866623,5.1480341135791736e-05,0.0001970936356945351,9.190743179807143e-05,5.2897285411286786e-05,4.312996477730409e-05,0.0,0.0,0.0,0.0,9.158953707872788e-06,0.0,0.0,0.0,8.868024862974862e-05,5.103988143655343e-05,4.1615524718904015e-05,0.0,1.5757980909329052e-05 +98606,50.0,the Greater Atlanta and Macon Area,G1300890023107,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,184036.0,,8689.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014820919340048753,0.0025313054035427988,0.0,0.01735225511719099,0.012226558344073183,0.004028723855823964,0.0010969121700949694,0.0,0.0,0.009695252940530384,0.004028723855823964,0.0010969121700949694,0.0,0.0,0.0025313054035427988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001691275942796186,0.0,0.0,0.001766181270319946,0.0005952006617537956,0.0019353088645995646,0.0011553651809107558,0.0004800954957105943,0.00013071697413349318,0.0,0.0,0.0001691275942796186,0.0,0.0,0.0,0.0,0.0,0.0013636364027051647,0.0004493263232094537,0.0001223393635083664,0.0,0.0 +98607,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,271522.0,,22707.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013480003719714905,0.0038614599529504592,0.0,0.017341463672665366,0.009348173485470061,0.0031305612641316233,0.0025740229495175857,0.0,0.002288723703907515,0.0077821747737667375,0.0031305612641316233,0.002194983283079697,0.0,0.0003723021290982687,0.0015659987117033235,0.0003790396664378888,0.0019164215748092468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025799979356654496,0.0,0.0,0.0016063864711155925,0.0007265818135420199,0.0018643862646821375,0.000927387004660287,0.0003730630470334859,0.0002615719938643077,0.0,4.436653845104713e-05,0.00010463072238680713,2.5325176717108373e-05,0.00012804389446262945,0.0,0.0,0.0,0.0010050250991009554,0.0003365676353370852,0.00027673402445386504,0.0,0.0002460614119870168 +98608,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,94316.0,,11879.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.009352872346469008,0.003496528224709873,0.0,0.01284940057117888,0.005305803274384643,0.002923338447887679,0.004620289538512857,0.0,0.0,0.00180927504967477,0.002923338447887679,0.004620289538512857,0.0,0.0,0.003496528224709873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023361708138632195,0.0,0.0,0.0011145655604177258,0.0005779980359043779,0.0013481826418040477,0.00021560816666677584,0.0003483691677552623,0.0005505918832227914,0.0,0.0,0.00023361708138632195,0.0,0.0,0.0,0.0,0.0,0.0005566945972092283,0.0003067220240919742,0.0004847692405125466,0.0,0.0 +98609,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,328889.0,,6195.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.028100446972790787,0.001823484337390606,0.0,0.0299239313101814,0.009876437029907818,0.007508795283252642,0.012538698997020937,0.0,0.0,0.008052952692517212,0.007508795283252642,0.012538698997020937,0.0,0.0,0.001823484337390606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012183408670498481,0.0,0.0,0.0033486766544970955,0.0011224473526334456,0.00347051074120208,0.000959655008595179,0.0008948088083002051,0.0014942128376017121,0.0,0.0,0.00012183408670498481,0.0,0.0,0.0,0.0,0.0,0.0011454471152805648,0.0008708533118156606,0.0014542103141058549,0.0,0.0 +98610,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,171249.0,,1269.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.008815074708653331,0.00021588488065056293,0.0,0.009030941858942475,0.004846807058508475,0.0021661714457721117,0.000737086584954435,0.0,0.0012808945000688746,0.004846807058508475,0.0021661714457721117,0.0005212017043038722,0.0,0.0012808945000688746,0.0,0.00021588488065056293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4424065523658732e-05,0.0,0.0,0.0010504744995892305,0.0003191447938684751,0.0010648985651128893,0.0005775841257924013,0.0002581382394057515,6.211054558348792e-05,0.0,0.00015264158880759005,0.0,1.4424065523658732e-05,0.0,0.0,0.0,0.0,0.0005715193345945308,0.00025542771733239305,8.69147934890871e-05,0.0,0.00015103881040200425 +98611,50.0,the Greater Atlanta and Macon Area,G1301350050718,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,31663.0,,2952.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027798338488396203,0.0008688534438942634,0.0,0.0036486872927338847,0.0016569318440129734,0.0008635748316110586,0.0011281499275035544,0.0,0.0,0.0007880784001187099,0.0008635748316110586,0.0011281499275035544,0.0,0.0,0.0008688534438942634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.805144400254447e-05,0.0,0.0,0.0003312680097083914,0.0001583148650219541,0.0003893194537109359,9.391394496850025e-05,0.00010291072461811707,0.00013443968289427426,0.0,0.0,5.805144400254447e-05,0.0,0.0,0.0,0.0,0.0,0.00017679668017371879,9.214450423056627e-05,0.00012037499468764406,0.0,0.0 +98612,50.0,the Greater Atlanta and Macon Area,G1301350050540,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,58150.0,,13212.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002993275075656154,0.0022468623205947713,0.0,0.005240137396250926,0.0024027476581998755,0.0007949762149909075,0.0012998482564269109,0.0,0.0007425652666332314,0.0017866175988530408,0.0007949762149909075,0.0002848737169359884,0.0,0.00012680754487621765,0.0006161300593468348,0.0010149745394909225,0.0006157577217570136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001501220440490087,0.0,0.0,0.00035670364800986375,0.00023374882675820688,0.0005068256920588725,0.0002129082690369853,9.473600280661445e-05,3.394793043900962e-05,0.0,1.511144572725442e-05,4.116616450477457e-05,6.781459243383654e-05,4.114128711039757e-05,0.0,0.0,0.0,0.00023239357150849665,7.689003929961382e-05,0.0001257212249065122,0.0,7.182085634424974e-05 +98613,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7491.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017987134396824582,0.0,0.0,0.0017987134396824577,0.0011137334549735137,0.0003883097112060484,0.00024539188778452517,0.0,5.12783857183706e-05,0.0011137334549735137,0.0003883097112060484,0.00024539188778452517,0.0,5.12783857183706e-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.00021435190059045222,6.461993960963402e-05,0.00021435190059045222,0.00013272313285594213,4.627469989296364e-05,2.9243244852486286e-05,0.0,6.11082298906016e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013272313285594216,4.627469989296365e-05,2.9243244852486293e-05,0.0,6.110822989060162e-06 +98614,50.0,the Greater Atlanta and Macon Area,G1301210001001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6450.0,,593.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012757566124288171,0.0004701897142079627,0.0,0.0017459463266367796,0.0010279662195058518,0.00030130186963229697,0.0003731743167117551,0.0,4.34212137131364e-05,0.0005577765052978893,0.00030130186963229697,0.0003731743167117551,0.0,4.34212137131364e-05,0.0004701897142079627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.141615770960706e-05,0.0,0.0,0.00015202708629076829,8.124183382808453e-05,0.00018344324400037534,6.6468114745215e-05,3.5905003264652765e-05,4.446977071921857e-05,0.0,5.174341672781416e-06,3.141615770960706e-05,0.0,0.0,0.0,0.0,0.0,0.00010800644621888512,3.1657211648193626e-05,3.920871231310723e-05,0.0,4.562183946006492e-06 +98615,85.0,Rural Climate Zone 3A,G1302330010300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,9254.0,,1178.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0008825716979093366,0.00034673117195144595,0.0,0.0012293028698607826,0.000513283665329079,0.00041771623131803254,0.0002983029732136711,0.0,0.0,0.000166552493377633,0.00041771623131803254,0.0002983029732136711,0.0,0.0,0.00034673117195144595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.316718209432208e-05,0.0,0.0,0.00010517411001862585,5.732736775334356e-05,0.00012834129211294792,1.9847690905872537e-05,4.9778315997757715e-05,3.55481031149956e-05,0.0,0.0,2.316718209432208e-05,0.0,0.0,0.0,0.0,0.0,5.358768001270855e-05,4.361027878343654e-05,3.1143333316802825e-05,0.0,0.0 +98616,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,14251.0,,1830.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0012579226207144918,0.0005330566701325445,0.0,0.0017909792908470364,0.0012386050114720816,0.0004045155973119788,0.00014785868206297587,0.0,0.0,0.000705548341339537,0.0004045155973119788,0.00014785868206297587,0.0,0.0,0.0005330566701325445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.561520081113335e-05,0.0,0.0,0.00014990357232449168,7.483885006213274e-05,0.00018551877313562504,8.407847595136102e-05,4.82051376606925e-05,1.7619958712438137e-05,0.0,0.0,3.561520081113335e-05,0.0,0.0,0.0,0.0,0.0,0.00012830102687522518,4.190178954668454e-05,1.5315956713715298e-05,0.0,0.0 +98617,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301610960300,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,34090.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029118605351323382,0.0,0.0,0.002911860535132338,0.0008315348826362569,0.0007907177062603121,0.0012896079462357687,0.0,0.0,0.0008315348826362569,0.0007907177062603121,0.0012896079462357687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003469989870777624,0.00011075453775332501,0.0003469989870777624,9.9091889365331e-05,9.422781064763805e-05,0.00015367928706479329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.909188936533102e-05,9.422781064763806e-05,0.0001536792870647933,0.0,0.0 +98618,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,19216.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004525731075014903,0.0,0.0,0.004525731075014902,0.002746371090587442,0.0007240177235138971,0.0009547704592465649,0.0,0.00010065450874073713,0.002746371090587442,0.0007240177235138971,0.0009547704592465649,0.0,0.00010065450874073713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005393210116703435,0.0001840437083223754,0.0005393210116703435,0.00032727875572963124,8.627953465208671e-05,0.0001137778099181733,0.0,1.199476738309225e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003272787557296313,8.627953465208674e-05,0.00011377780991817333,0.0,1.1994767383092252e-05 +98619,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000201,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,97846.0,,15461.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.026196154995275653,0.013674988630986805,0.0,0.03987114362626245,0.030326934615997232,0.004884932313900595,0.001613340837266686,0.0006437686416095306,0.002402075000235647,0.016651945985010422,0.004884932313900595,0.001613340837266686,0.0006437686416095306,0.002402075000235647,0.013674988630986805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000913682591549489,0.0,0.0,0.003121743074328209,0.0016721443121016915,0.004035425665877698,0.001984378893092082,0.0005821275535372052,0.0001922585809320661,7.671661351739088e-05,0.00028625044390502764,0.000913682591549489,0.0,0.0,0.0,0.0,0.0,0.003069440181198591,0.0004944122350833527,0.00016328894609951022,6.51569095581984e-05,0.0002431180604744237 +98620,50.0,the Greater Atlanta and Macon Area,G1301210007705,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,18179.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0072626735591960635,0.0,0.0,0.0072626735591960635,0.004066127866245571,0.001475825023804202,0.0015495170265059244,0.0,0.00017128634971410567,0.004066127866245571,0.001475825023804202,0.0015495170265059244,0.0,0.00017128634971410567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008654818911824877,0.0002697933695777918,0.0008654818911824877,0.00048455434583205765,0.00017587184970459976,0.00018465361489664175,0.0,2.0411936826845213e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00048455434583205765,0.00017587184970459976,0.00018465361489664175,0.0,2.0411936826845213e-05 +98621,50.0,the Greater Atlanta and Macon Area,G1300970080303,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,48587.0,,3663.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004779783422442018,0.0010783713860886804,0.0,0.005858154808530699,0.0018502456740822032,0.0014555773370937453,0.0025523317973547496,0.0,0.0,0.0007718742879935227,0.0014555773370937453,0.0025523317973547496,0.0,0.0,0.0010783713860886804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.205048264266187e-05,0.0,0.0,0.0005695969821666293,0.000253758483514214,0.0006416474648092912,9.198267498666349e-05,0.0001734581643649343,0.00030415614281503143,0.0,0.0,7.205048264266187e-05,0.0,0.0,0.0,0.0,0.0,0.0002026585989705127,0.00015943032212464042,0.0002795585437141379,0.0,0.0 +98622,50.0,the Greater Atlanta and Macon Area,G1301390001102,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,215632.0,,1418.0,,7.614023970037612,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.04527022902622505,0.0009818323442794203,0.0,0.04625206137050448,0.03683325456555892,0.004821334454731313,0.001681708130741884,0.0007667024495130146,0.00214898960293661,0.03683325456555892,0.004821334454731313,0.001681708130741884,0.0007667024495130146,0.00116715725865719,0.0,0.0,0.0009818323442794203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.559885098999812e-05,0.0,0.0,0.0053947662534170136,0.0013598149641048441,0.005460365104407011,0.0043893482098065935,0.0005745491677931125,0.00020040592828827236,9.136645848751687e-05,0.00013908788903601378,0.0,0.0,6.559885098999812e-05,0.0,0.0,0.0,0.004348411983206803,0.0005691907697346144,0.00019853688940135486,9.051435064154807e-05,0.00025370259162311917 +98623,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950203,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,3409.0,,485.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003037350335283645,0.00014267597967802022,0.0,0.00044641101320638457,0.00018456729227438453,0.00014144839542611212,0.00012039532550588802,0.0,0.0,4.18913125963643e-05,0.00014144839542611212,0.00012039532550588802,0.0,0.0,0.00014267597967802022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.532399936421884e-06,0.0,0.0,3.619577132598465e-05,2.3678129075512634e-05,4.572817126240654e-05,4.992141847021223e-06,1.685625038309217e-05,1.4347379095871248e-05,0.0,0.0,9.532399936421884e-06,0.0,0.0,0.0,0.0,0.0,1.8906175029019176e-05,1.4489285119512703e-05,1.2332711113874665e-05,0.0,0.0 +98624,85.0,Rural Climate Zone 3A,G1301750950400,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,196942.0,,1612.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,729707.6418815667,0.0,0.0,0.06428898111906022,0.001425678727873276,0.0,0.06571465984693349,0.05280286119989748,0.0065864328448184345,0.0033599356047906087,0.0006575090122727334,0.0023078289679014626,0.05280286119989748,0.0065864328448184345,0.001934256876917333,0.0006575090122727334,0.0023078289679014626,0.0,0.001425678727873276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.525789747004622e-05,0.0,0.0,0.007661191344215516,0.0022237998330858033,0.0077564492416855625,0.006292413040817863,0.0007848922384775445,0.0002305015849525573,7.835405486110766e-05,0.00027501943575793553,0.0,9.525789747004622e-05,0.0,0.0,0.0,0.0,0.006232440579723775,0.000777411496363224,0.00039658076347946823,7.760726893395386e-05,0.0002723982485751935 +98625,50.0,the Greater Atlanta and Macon Area,G1300670031116,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,17794.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0016171815548642202,0.0,0.0,0.0016171815548642202,0.0011036247355707125,0.00040011142539350474,0.00011344539390000305,0.0,0.0,0.0011036247355707125,0.00040011142539350474,0.00011344539390000305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019271483429715352,7.051129548247604e-05,0.00019271483429715352,0.00013151575801865174,4.7680117803211756e-05,1.3518958475290055e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013151575801865174,4.7680117803211756e-05,1.3518958475290055e-05,0.0,0.0 +98626,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,32463.0,,,,9.325022323477118,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,69937.66742607838,0.0,0.0,0.008063198355195473,0.0,0.0,0.008063198355195473,0.006149416180831536,0.0005565550432720504,0.0012534641295353691,0.0,0.000103674617398462,0.006149416180831536,0.0005565550432720504,0.0012534641295353691,0.0,0.000103674617398462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009608801943892493,0.0003259727674440892,0.0009608801943892493,0.0007328174199522784,6.632389463952363e-05,0.00014937358643444883,0.0,1.2354760745142327e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0007328174199522784,6.632389463952363e-05,0.00014937358643444883,0.0,1.2354760745142327e-05 +98627,50.0,the Greater Atlanta and Macon Area,G1302470060307,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,39818.0,,1557.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0035749708584068025,0.0004582878908435956,0.0,0.004033289438856696,0.0014684976613450783,0.0011002530753789427,0.0014645080125263769,0.0,0.0,0.0010102097705014827,0.0011002530753789427,0.0014645080125263769,0.0,0.0,0.0004582878908435956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.062114266760279e-05,0.0,0.0,0.00042602391013142686,0.00017503934836537468,0.00045664505279902957,0.00012038518173370799,0.0001311155071949195,0.00017452322120279932,0.0,0.0,3.062114266760279e-05,0.0,0.0,0.0,0.0,0.0,0.00016626185704397714,0.0001245695681689368,0.00016581015293915547,0.0,0.0 +98628,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,17409.0,,3549.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0038635282150142557,0.00275274363800189,0.0,0.006616271853016145,0.0028974844396945547,0.0004169990582843976,0.0021177439085647417,0.00040923642310981893,0.0007747271625795643,0.0016320131846720956,0.0004169990582843976,0.0014052795489479437,0.00040923642310981893,0.0,0.001265471255022459,0.0007124643596167978,0.0007747271625795643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018392358855014615,0.0,0.0,0.00046040495998342774,0.00030618938250597026,0.0006443285485335739,0.00019448207005746176,4.969251524978101e-05,0.000167462909157639,4.8767465518546e-05,0.0,8.455201247862372e-05,4.7603053159690325e-05,5.176312022732868e-05,0.0,0.0,0.0,0.00028217279835258496,4.060963695767256e-05,0.00020623742329289204,3.985366931215451e-05,7.544714595529585e-05 +98629,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,125617.0,,3563.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010921019159462728,0.0010489400536491833,0.0,0.01196995921311191,0.0044311494949001145,0.0030799475088248555,0.004458831519780642,0.0,0.0,0.0033822094412509305,0.0030799475088248555,0.004458831519780642,0.0,0.0,0.0010489400536491833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.008466077041499e-05,0.0,0.0,0.0013014368433507692,0.0005005545737441189,0.0013715215041211841,0.0004030513924113771,0.00036703141941637986,0.0005313503743016702,0.0,0.0,7.008466077041499e-05,0.0,0.0,0.0,0.0,0.0,0.00050772243347112,0.000352901306070496,0.0005108942481553063,0.0,0.0 +98630,50.0,the Greater Atlanta and Macon Area,G1301350050431,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,140484.0,,1715.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.015803777125986594,0.0006373728226269897,0.0,0.01644118869703736,0.009876314496299776,0.001987251661575038,0.004330640086039289,0.0,0.00024690495627571155,0.009876314496299776,0.001987251661575038,0.0036932672634122986,0.0,0.00024690495627571155,0.0,0.0006373728226269897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.258676458714753e-05,0.0,0.0,0.0018833070695022684,0.0006357184764247249,0.0019258938340894157,0.0011769422438212183,0.0002368171275315145,0.00044011987079395484,0.0,2.942320977714796e-05,0.0,4.258676458714753e-05,0.0,0.0,0.0,0.0,0.0011568952551088423,0.00023278339494400214,0.0005072840652249446,0.0,2.892204095821826e-05 +98631,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10980.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0024006555223571374,0.0,0.0,0.0024006555223571374,0.0011416057388236604,0.0006351903263178809,0.0005439644239834249,0.0,7.981232615843167e-05,0.0011416057388236604,0.0006351903263178809,0.0005439644239834249,0.0,7.981232615843167e-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.0002860782640613537,8.333796763150937e-05,0.0002860782640613537,0.00013604142075514591,7.569355295222201e-05,6.482246064671409e-05,0.0,9.510973775897691e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013604142075514591,7.569355295222201e-05,6.482246064671409e-05,0.0,9.510973775897691e-06 +98632,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,17647.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004042473643156129,0.0,0.0,0.004042473643156129,0.0023101739836863346,0.0007018522277517627,0.0009374846808350497,0.0,9.279733673550292e-05,0.0023101739836863346,0.0007018522277517627,0.0009374846808350497,0.0,9.279733673550292e-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.00048173350420172337,0.00014832320715197267,0.00048173350420172337,0.0002752988161990821,8.363832716115605e-05,0.00011171817562711572,0.0,1.1058473141034303e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002752988161990821,8.363832716115605e-05,0.00011171817562711572,0.0,1.1058473141034303e-05 +98633,50.0,the Greater Atlanta and Macon Area,G1301390001301,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,51205.0,,15703.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.010661890891180739,0.010802031714545243,0.0,0.021463922605725983,0.005771951547365362,0.0007663278903018041,0.010149953738071307,0.00036641733191875687,0.004409200378097736,0.004145199164789272,0.0007663278903018041,0.0048974699407720165,0.00036641733191875687,0.00048640484342787416,0.0016267523825760897,0.00525248379729929,0.003922795534669862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007217275987840285,0.0,0.0,0.0012705560521536535,0.0010157049961485325,0.0019922836509376823,0.0004939750312547068,9.132175041882005e-05,0.0005836216236873697,4.366521505753408e-05,5.796388501080371e-05,0.00010868993184975722,0.00035093976937434167,0.00026209789755992946,0.0,0.0,0.0,0.0005357531758315581,7.113063884690663e-05,0.0009421198194564267,3.401089694607824e-05,0.0004092624628011348 +98634,50.0,the Greater Atlanta and Macon Area,G1302250040301,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,111671.0,,35.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.009949785188959327,1.0311707716028134e-05,0.0,0.009960096896675355,0.0029050781321405456,0.002757614573880084,0.004297373501048428,0.0,0.0,0.0028947664244245172,0.002757614573880084,0.004297373501048428,0.0,0.0,1.0311707716028134e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.886104609498957e-07,0.0,0.0,0.001185697520129408,0.00037377975903369785,0.001186386130590358,0.000344963967121889,0.00032861983446140264,0.0005121100613224286,0.0,0.0,6.886104609498957e-07,0.0,0.0,0.0,0.0,0.0,0.00034603522837245996,0.00032847026669562005,0.000511876979963136,0.0,0.0 +98635,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,174075.0,,48559.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.04657977160308918,0.04204728311906341,0.0,0.08862705472215257,0.05303512578219042,0.0031516616467949284,0.021868433133862376,0.000649923007598874,0.009921820872082767,0.028681655739428675,0.0031516616467949284,0.00882889575331739,0.000649923007598874,0.005267545176326087,0.024353470042761744,0.013039537380544986,0.004654275695756679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002809353465348714,0.0,0.0,0.005550817119653594,0.004577589785969932,0.008360170585002309,0.0034179348721382055,0.00037557714051188483,0.0010521216401134282,7.745000958307244e-05,0.0006277226988669993,0.0016271563911552625,0.0008712256014936104,0.0003109714726998413,0.0,0.0,0.0,0.005002791753897032,0.0002972955501682607,0.0020628444891795414,6.130709440450612e-05,0.0009359231812959615 +98636,85.0,Rural Climate Zone 3A,G1302430790100,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,91061.0,,6385.0,,7.614023970037612,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,285525.89887641044,0.0,0.0,0.016464401067323768,0.004419580639177948,0.0,0.020883981706501714,0.01725318662579301,0.0016653983836042768,0.0006344924638665685,0.0007694447963768601,0.0005616759379291974,0.012833605986615062,0.0016653983836042768,0.0006344924638665685,0.0007694447963768601,0.0005616759379291974,0.004419580639177948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002952912316286846,0.0,0.0,0.0019620300087937787,0.0006884298201403302,0.002257321240422463,0.0015293553627497456,0.00019846222111979776,7.561120804633452e-05,9.169320975773644e-05,6.693380712290965e-05,0.0002952912316286846,0.0,0.0,0.0,0.0,0.0,0.0018648735276018005,0.0001800106511252494,6.858142933194058e-05,8.316824380540838e-05,6.071078986470583e-05 +98637,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,229146.0,,8354.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,480687.657779034,0.0,0.0,0.02606710901506962,0.0024337757757481775,0.0,0.02850088479081779,0.018668100192033275,0.007283042420383009,0.0025497118048020766,0.0,0.0,0.016234324416285098,0.007283042420383009,0.0025497118048020766,0.0,0.0,0.0024337757757481775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016261081250079352,0.0,0.0,0.003106366290930788,0.0008606351652066776,0.0032689771034315816,0.001934612622121954,0.0008679058907920223,0.0003038441584544974,0.0,0.0,0.00016261081250079352,0.0,0.0,0.0,0.0,0.0,0.002141182371713045,0.0008353459582147185,0.00029244528973123305,0.0,0.0 +98638,50.0,the Greater Atlanta and Macon Area,G1301170130306,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,19279.0,,1613.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0016945573013339569,0.00047470683021286664,0.0,0.002169233441940526,0.001194777062775867,0.0004102893465939885,0.0005641363429643725,0.0,0.0,0.0007200702325630004,0.0004102893465939885,0.0005641363429643725,0.0,0.0,0.00047470683021286664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.171631066825741e-05,0.0,0.0,0.00020193588169263458,9.301391883100348e-05,0.00023365219236089196,8.580885236442851e-05,4.889308900226079e-05,6.722662592860781e-05,0.0,0.0,3.171631066825741e-05,0.0,0.0,0.0,0.0,0.0,0.00012869167269077266,4.419303311507385e-05,6.07641809201352e-05,0.0,0.0 +98639,50.0,the Greater Atlanta and Macon Area,G1300770170503,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,45000.0,,4212.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0023163830677227987,0.000716253410285873,0.0,0.0030326364780086717,0.0012755399309200186,0.0009655422918518155,0.0004793048602682874,0.0,0.0003122493949685498,0.0010054356050469343,0.0009655422918518155,0.00026434195841156725,0.0,8.106321241248142e-05,0.0002701043258730844,0.00021496290185672016,0.00023118618255606838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7856317453890985e-05,0.0,0.0,0.0002760390908857022,0.00011597064533203605,0.00032389540833959325,0.00011981590360791083,0.00011506189117350594,3.15011428375746e-05,0.0,9.660153266710783e-06,1.8046962400489525e-05,1.4362700022550543e-05,1.544665503085091e-05,0.0,0.0,0.0,0.0001362318002090637,0.00010312304727464149,5.1191313090610626e-05,0.0,3.3349247765277386e-05 +98640,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,53997.0,,17113.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.010713529270311979,0.01177190088258935,0.0,0.02248543015290133,0.009816384152877701,0.0010722135666833854,0.0059568456326436064,0.0003780359672232859,0.005261879113502336,0.006934747437441466,0.0010722135666833854,0.0016853475988958442,0.0003780359672232859,0.0006431129800969843,0.002881636715436236,0.004271498033747763,0.004618766133405351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007865297150551345,0.0,0.0,0.0012767077318812782,0.0011476272787376825,0.0020632374469364122,0.000826398607652059,0.00012777333372355812,0.0002008391685063473,4.504971518775082e-05,7.66383601002773e-05,0.0001925341478228568,0.000285396569751206,0.00030859899748107163,0.0,0.0,0.0,0.000900740223336003,9.838509500824315e-05,0.0005465933669631872,3.468814955106686e-05,0.0004828240311351019 +98641,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,28017.0,,2971.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0024705582046672956,0.0008655260895781759,0.0,0.003336114667844909,0.0023152579907420702,0.0006646958500957609,0.0003561608270070779,0.0,0.0,0.0014497319011638945,0.0006646958500957609,0.0003561608270070779,0.0,0.0,0.0008655260895781759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.782993378975967e-05,0.0,0.0,0.0002944134674007651,0.00012365982097302923,0.0003522434011905248,0.00017276281733287252,7.921100973208846e-05,4.2443259921333825e-05,0.0,0.0,5.782993378975967e-05,0.0,0.0,0.0,0.0,0.0,0.00024445633033931443,7.018185833108858e-05,3.760521252012177e-05,0.0,0.0 +98642,50.0,the Greater Atlanta and Macon Area,G1300670031503,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,148628.0,,3234.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,306613.1346040191,0.0,0.0,0.01852174656305557,0.0012018211117149197,0.0,0.019723567674770494,0.008499156767016184,0.002116167667464757,0.008558596849082556,0.0,0.0005496463912069943,0.008499156767016184,0.002116167667464757,0.007356775737367638,0.0,0.0005496463912069943,0.0,0.0012018211117149197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.029982440328599e-05,0.0,0.0,0.002207198878916067,0.0007473521529926848,0.0022874987033193535,0.0010128272311698916,0.0002521793982724753,0.0008766920065920598,0.0,6.550024288164103e-05,0.0,8.029982440328599e-05,0.0,0.0,0.0,0.0,0.00098571467416245,0.0002454287619335735,0.00099260841229817,0.0,6.374685492515958e-05 +98643,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,54470.0,,4457.0,,8.53126424238864,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.01268511620465836,0.0034564750330472868,0.0,0.016141672098488716,0.007516414090134997,0.002022975070808427,0.004786068889043088,0.00041893971707804224,0.0013972743314241592,0.005849064743261955,0.002022975070808427,0.004394217534293003,0.00041893971707804224,0.0,0.001667349346873042,0.0003918513547500854,0.0013972743314241592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023094368387271822,0.0,0.0,0.0015116642008516275,0.0006171756774384925,0.0017426078847243458,0.0006970233175795053,0.0002410745746762157,0.0005236515953165556,4.992434932438538e-05,0.0,0.00011140361113216324,2.6181469425143697e-05,9.335860331541127e-05,0.0,0.0,0.0,0.0008114501631803527,0.00021839449392120985,0.0005166900511912419,4.5227511112230724e-05,0.00015084566531931032 +98644,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,6309.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011980119631138679,0.0,0.0,0.001198011963113868,0.0007217846325229359,0.0002598656256889039,0.0001707074001979305,0.0,4.56543047040977e-05,0.0007217846325229359,0.0002598656256889039,0.0001707074001979305,0.0,4.56543047040977e-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.00014276329520542026,4.181770780933096e-05,0.00014276329520542026,8.601279097395256e-05,3.0967364413906145e-05,2.034266077348895e-05,0.0,5.440479044072627e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.601279097395254e-05,3.096736441390614e-05,2.0342660773488944e-05,0.0,5.440479044072626e-06 +98645,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,33767.0,,5046.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009536102506148694,0.0034710314372425276,0.0,0.013007205663362234,0.0036613045203469446,0.0006662068107640112,0.005323773448488808,0.0003766732877739892,0.0029792475959884834,0.0036613045203469446,0.0006662068107640112,0.00185274201124628,0.0003766732877739892,0.0029792475959884834,0.0,0.0034710314372425276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002319156020497936,0.0,0.0,0.0011364018972834173,0.0005403578407909063,0.0013683174993332106,0.00043631173225873704,7.939078709013532e-05,0.00022078826600274145,4.48875458927108e-05,0.0003550321127919282,0.0,0.0002319156020497936,0.0,0.0,0.0,0.0,0.0003851578252268151,7.008288028465986e-05,0.0005600443754473356,3.9624855986116216e-05,0.00031340756238828403 +98646,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,50512.0,,5989.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004805685450157278,0.0017628416753463455,0.0,0.006568527125503626,0.0027024653513631116,0.0015559323496872335,0.002310129424453279,0.0,0.0,0.0009396236760167663,0.0015559323496872335,0.002310129424453279,0.0,0.0,0.0017628416753463455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011778259036418934,0.0,0.0,0.0005726860794888418,0.00027053282167916967,0.0006904686698530312,0.00011197349572584378,0.0001854180442174136,0.0002752945395455845,0.0,0.0,0.00011778259036418936,0.0,0.0,0.0,0.0,0.0,0.0002840770268321795,0.00016355607875905275,0.00024283556426179877,0.0,0.0 +98647,35.0,Eastern Counties in South Carolina and Georgia,G1302450010511,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,72921.0,,6219.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003612366105360138,0.0010575451372604695,0.0,0.004669911242620607,0.002069540976032823,0.0006540730327857479,0.0011496366344762238,0.0,0.0007966783296872326,0.001893531678215959,0.0006540730327857479,0.0009213050401087838,0.0,0.00014347408461106727,0.00017600929781686413,0.00022833159436743997,0.0006532042450761652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.065853805471488e-05,0.0,0.0,0.0004304791477716572,0.0002007031970483596,0.0005011376858263722,0.00022564875191014927,7.794470259153345e-05,0.00010979025849989867,0.0,1.7097547665239597e-05,1.1759838166333943e-05,1.5255686099128493e-05,4.364301378925242e-05,0.0,0.0,0.0,0.00022208665680548107,7.018990918288768e-05,0.0001233698485068701,0.0,8.549317401232562e-05 +98648,50.0,the Greater Atlanta and Macon Area,G1300670031310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,139640.0,,14022.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.014096349964660842,0.004127506530190642,0.0,0.018223825805245186,0.009733177947710139,0.0032784171927521,0.005212261354389245,0.0,0.0,0.005605671417519498,0.0032784171927521,0.005212261354389245,0.0,0.0,0.004127506530190642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027577579961606804,0.0,0.0,0.0016798331459671725,0.0007891339625786671,0.001955608945583241,0.000668016378435352,0.0003906822603368963,0.0006211345071949243,0.0,0.0,0.00027577579961606804,0.0,0.0,0.0,0.0,0.0,0.0010444727724524792,0.00035180878362295364,0.0005593306828266341,0.0,0.0 +98649,81.0,the Columbus-Albany Area,G1302150000200,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,8222.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0016739084654098433,0.0,0.0,0.001673908465409843,0.0005835811123045531,0.0006050022444030338,0.0004160165809087163,0.0,6.930852779353962e-05,0.0005835811123045531,0.0006050022444030338,0.0004160165809087163,0.0,6.930852779353962e-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.0001994800214920075,5.642684913869218e-05,0.0001994800214920075,6.954548305981544e-05,7.209824384673326e-05,4.9576782850180224e-05,0.0,8.259511735278535e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.954548305981544e-05,7.209824384673328e-05,4.957678285018023e-05,0.0,8.259511735278537e-06 +98650,35.0,Eastern Counties in South Carolina and Georgia,G1300510011106,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7874.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018906837056805678,0.0,0.0,0.0018906837056805678,0.0010350790278474324,0.0005026108871137711,0.00030510639502430507,0.0,4.788739569505899e-05,0.0010350790278474324,0.0005026108871137711,0.00030510639502430507,0.0,4.788739569505899e-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.00022531210127023772,7.651567554025477e-05,0.00022531210127023772,0.00012334999769890749,5.98959597296253e-05,3.635942001688132e-05,0.0,5.706723824823605e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012334999769890749,5.98959597296253e-05,3.635942001688132e-05,0.0,5.706723824823605e-06 +98651,85.0,Rural Climate Zone 3A,G1300810010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,231330.0,,3384.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.013239207681269167,0.0005755098013334939,0.0,0.013814699752241241,0.009263280514990847,0.0036031995085059705,0.0008101002132822125,0.0,0.00013811951546221132,0.008825890229119565,0.0036031995085059705,0.0008101002132822125,0.0,0.0,0.0004373902858712825,0.0,0.00013811951546221132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.845179778046935e-05,0.0,0.0,0.0015776902188713877,0.0005493747722933164,0.001616142016651857,0.0010517638987576955,0.00042938616555240097,9.65380416691559e-05,0.0,0.0,2.9223555853427347e-05,0.0,9.228241927042e-06,0.0,0.0,0.0,0.001083684562154915,0.00042152795388340406,9.477129549425126e-05,0.0,1.6158205119286875e-05 +98652,35.0,Eastern Counties in South Carolina and Georgia,G1302450010508,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,200122.0,,18238.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009197855481350851,0.0031015543928484164,0.0,0.01229940987419927,0.0058537674746375334,0.002399715766397047,0.001822326546753027,0.0,0.002223600086411662,0.005330136710819115,0.002399715766397047,0.001132650948235813,0.0,0.00033536978626029875,0.0005236307638184194,0.0006896755985172138,0.001888230300151363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020722719968144186,0.0,0.0,0.00109609154608786,0.0004565456579855386,0.0013033187457693017,0.0006351826031695105,0.00028596972086533055,0.00013497593341696434,0.0,3.9965401530664046e-05,3.498585648001202e-05,4.607997309313336e-05,0.00012616018547224596,0.0,0.0,0.0,0.0006203000762722704,0.0002542881792584406,0.00019310457766583556,0.0,0.00023562591257275515 +98653,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10711.0,,188.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0023089333775802453,0.00014928626809944986,0.0,0.0024582196456796952,0.0013845164143960064,0.0005673705258516489,0.00042958054100196284,0.0,7.666945735633798e-05,0.0012352301462965564,0.0005673705258516489,0.00042958054100196284,0.0,7.666945735633798e-05,0.00014928626809944986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.97507022389997e-06,0.0,0.0,0.0002751544056629437,7.405058735698934e-05,0.0002851294758868438,0.00014720174261475318,6.761325439151033e-05,5.119289261071498e-05,0.0,9.136659886432955e-06,9.97507022389997e-06,0.0,0.0,0.0,0.0,0.0,0.000160590385113578,6.580944097246982e-05,4.9827148164870024e-05,0.0,8.8929084229562e-06 +98654,35.0,Eastern Counties in South Carolina and Georgia,G1302450010510,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,10153.0,,466.0,,4.088175128053588,Healthcare,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,12264.525384160763,0.0,0.0,0.0010321417640169694,0.0001730892089898938,0.0,0.001205230973006863,0.0007199844621090703,0.00011636151658756464,0.00033436014872930244,0.0,3.4524845580925765e-05,0.0005952145375629637,0.00011636151658756464,0.00028604086428551516,0.0,3.4524845580925765e-05,0.00012476992454610658,4.831928444378723e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1565531317022138e-05,0.0,0.0,0.00012299687923262854,4.5266786291937224e-05,0.00013456241054965072,7.092972413906998e-05,1.3866412446431039e-05,3.408653236082381e-05,0.0,4.114210286303714e-06,8.336917582451598e-06,3.2286137345705406e-06,0.0,0.0,0.0,0.0,8.038529290197595e-05,1.2991606188290934e-05,3.7330859073846975e-05,0.0,3.854652385536869e-06 +98655,50.0,the Greater Atlanta and Macon Area,G1300130180302,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,53695.0,,674.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005909832096870523,0.0002506635533816035,0.0,0.006160495650252127,0.0035683810935948765,0.00072072068216074,0.0017531336851441136,0.0,0.00011829893777616876,0.0035683810935948765,0.00072072068216074,0.00150247013176251,0.0,0.00011829893777616876,0.0,0.0002506635533816035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6747031103181094e-05,0.0,0.0,0.0007042644302369591,0.00024265076895351682,0.0007210114613401403,0.0004252377794421105,8.588703236606461e-05,0.00017904675698893302,0.0,1.4097479022236301e-05,0.0,1.6747031103181094e-05,0.0,0.0,0.0,0.0,0.0004176358223394042,8.435163366141012e-05,0.00020518308136434615,0.0,1.3845459009047583e-05 +98656,50.0,the Greater Atlanta and Macon Area,G1300210012300,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,19716.0,,1297.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0017421261910953963,0.0003818707711623157,0.0,0.0021239969622577123,0.0006961937188633877,0.0008008145867322566,0.0006269272774494726,0.0,0.0,0.0003143229477010719,0.0008008145867322566,0.0006269272774494726,0.0,0.0,0.0003818707711623157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.551477787711577e-05,0.0,0.0,0.00020760447137109094,9.292724108575811e-05,0.00023311924924820668,3.745701644968314e-05,9.543091068522086e-05,7.470922984125438e-05,0.0,0.0,2.551477787711577e-05,0.0,0.0,0.0,0.0,0.0,7.641072937328335e-05,8.789339088677348e-05,6.880839231375061e-05,0.0,0.0 +98657,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,23578.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.005661547318676811,0.0,0.0,0.005661547318676811,0.0028557098420708064,0.001980090052392759,0.0007020176418992414,0.0,0.00012364707524026462,0.0028557098420708064,0.001980090052392759,0.0007020176418992414,0.0,0.00012364707524026462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006746763639992686,0.00019496164854913297,0.0006746763639992686,0.000340309781838148,0.00023596375367780065,8.365817389487374e-05,0.0,1.4734798535913791e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000340309781838148,0.00023596375367780065,8.365817389487374e-05,0.0,1.4734798535913791e-05 +98658,50.0,the Greater Atlanta and Macon Area,G1301210009900,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,80361.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006540013057337285,0.0,0.0,0.006540013057337284,0.004248416100557224,0.0014918297099846187,0.0007997672467954433,0.0,0.0,0.004248416100557224,0.0014918297099846187,0.0007997672467954433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007793622487930457,0.00021647041802123665,0.0007793622487930457,0.0005062765313937966,0.00017777881288562195,9.530690451362715e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005062765313937968,0.00017777881288562198,9.530690451362716e-05,0.0,0.0 +98659,50.0,the Greater Atlanta and Macon Area,G1301210005501,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,43922.0,,4078.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.0037938540848557988,0.0006935230869453653,0.0,0.004487359441439745,0.002705068050773196,0.0014266912620259687,0.00029315379571915305,0.0,6.246406328284604e-05,0.002011544963827831,0.0014266912620259687,0.00029315379571915305,0.0,6.246406328284604e-05,0.0006935230869453653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.633663045751549e-05,0.0,0.0,0.00045210529720240663,0.0001714738874813844,0.0004984419276599222,0.00023971141571775884,0.00017001567867596144,3.4934496945645944e-05,0.0,7.443705863040443e-06,4.633663045751549e-05,0.0,0.0,0.0,0.0,0.0,0.0003004705442642364,0.00015847242729270447,3.256261169758129e-05,0.0,6.938313838791515e-06 +98660,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,8305.0,,514.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006129696102532696,0.00014983296602642972,0.0,0.0007628025762796993,0.0004623469306414582,0.00025884381440852106,4.1672578428595505e-05,0.0,0.0,0.0003125139646150285,0.00025884381440852106,4.1672578428595505e-05,0.0,0.0,0.00014983296602642972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0010117421456915e-05,0.0,0.0,7.304757406791643e-05,2.8080348952503956e-05,8.305769148937336e-05,3.7242281828689956e-05,3.0846411288181154e-05,4.966120193309616e-06,0.0,0.0,1.0010117421456915e-05,0.0,0.0,0.0,0.0,0.0,5.034260491563435e-05,2.8184185986797794e-05,4.537515040352801e-06,0.0,0.0 +98661,50.0,the Greater Atlanta and Macon Area,G1301210001100,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,24654.0,,11317.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.00503926032346988,0.007784629093976455,0.0,0.012823961137417348,0.004078858191599831,0.00026945193110565073,0.006654537510683471,0.0003730155692521931,0.0014480979347762028,0.0023356325760943895,0.00026945193110565073,0.0018921879953048663,0.0003730155692521931,0.00016897225171277964,0.001743225615505442,0.004762349515378604,0.001279125683063423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005201255787011387,0.0,0.0,0.00060051983779857,0.0006913135170522043,0.0011206454164997086,0.00027833324847712496,3.211011528982861e-05,0.00022548873348191326,4.4451612888580936e-05,2.0136127661122225e-05,0.00011647263101757731,0.00031819368241706446,8.546405719569206e-05,0.0,0.0,0.0,0.000356438520671406,2.354655229572501e-05,0.0005815189924830568,3.2596651181811494e-05,0.00012654469986770925 +98662,81.0,the Columbus-Albany Area,G1302150010106,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,26256.0,,1906.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002281311884139736,0.0005610673823346023,0.0,0.0028423792664743386,0.0009880825643608388,0.0007395581325620417,0.0011147078799451605,0.0,0.0,0.0004270151820262365,0.0007395581325620417,0.0011147078799451605,0.0,0.0,0.0005610673823346023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.748701253457688e-05,0.0,0.0,0.0002718585018587703,0.00011647961331943056,0.0003093455143933472,5.0886381850580886e-05,8.813138061199499e-05,0.00013283708218893195,0.0,0.0,3.748701253457688e-05,0.0,0.0,0.0,0.0,0.0,0.00010753628579427325,8.048855184092425e-05,0.00012131733670703173,0.0,0.0 +98663,50.0,the Greater Atlanta and Macon Area,G1301170130306,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,42187.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00359374353827592,0.0,0.0,0.00359374353827592,0.002424906684712354,0.0009279134628233181,0.00024092339074024743,0.0,0.0,0.002424906684712354,0.0009279134628233181,0.00024092339074024743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004282596063385406,0.00011547939844108359,0.0004282596063385406,0.0002889715337619274,0.00011057768871720631,2.8710383859406885e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002889715337619274,0.00011057768871720631,2.8710383859406885e-05,0.0,0.0 +98664,35.0,Eastern Counties in South Carolina and Georgia,G1302450010510,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,153355.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013219653551289916,0.0,0.0,0.013219653551289916,0.006230840188660408,0.005372360774151791,0.0016164222148782764,0.0,0.0,0.006230840188660408,0.005372360774151791,0.0016164222148782764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001575359964514696,0.000479746323748964,0.001575359964514696,0.0007425169003424464,0.0006402136066343499,0.00019262583797613489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007425169003424464,0.0006402136066343499,0.00019262583797613489,0.0,0.0 +98665,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,45699.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,100799.30806909183,0.0,0.0,0.007028253793750016,0.0,0.0,0.007028253793750014,0.002740722534732348,0.0005884675551149352,0.0036506389222544394,0.0,4.8370187756919244e-05,0.002740722534732348,0.0005884675551149352,0.0036506389222544394,0.0,4.8370187756919244e-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.0008375440219956969,0.00028516656662577175,0.0008375440219956969,0.00032660684179550533,7.0126591524516e-05,0.000435039896897009,0.0,5.7641859254774245e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00032660684179550544,7.012659152451601e-05,0.0004350398968970091,0.0,5.764185925477426e-06 +98666,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,143817.0,,1863.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.01614026843802336,0.0006923568359595752,0.0,0.01683262527398294,0.009513706746640626,0.0019418385089141567,0.005146178161170315,0.0,0.00023090185725784134,0.009513706746640626,0.0019418385089141567,0.00445382132521074,0.0,0.00023090185725784134,0.0,0.0006923568359595752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.625911959310633e-05,0.0,0.0,0.001923406588372375,0.000593236196329971,0.0019696657079654816,0.0011337312205553548,0.00023140538188335627,0.0005307538293577989,0.0,2.751615657586543e-05,0.0,4.6259119593106325e-05,0.0,0.0,0.0,0.0,0.0011132441689568904,0.00022722377877244923,0.0006021788334351476,0.0,2.7018926800994238e-05 +98667,35.0,Eastern Counties in South Carolina and Georgia,G1300510003501,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,95918.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007746118317410972,0.0,0.0,0.007746118317410972,0.005008181316893148,0.0020093958444039094,0.0007285715297133528,0.0,0.0,0.005008181316893148,0.0020093958444039094,0.0007285715297133528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009230892742788703,0.0002285491358206582,0.0009230892742788703,0.0005968148520113315,0.0002394556442006091,8.682239762742624e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005968148520113315,0.0002394556442006091,8.682239762742624e-05,0.0,0.0 +98668,50.0,the Greater Atlanta and Macon Area,G1300210013603,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,74267.0,,2529.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.00643152872299068,0.0007443764007507809,0.0,0.0071758744341351615,0.0024001420397244417,0.0016852276610194554,0.003090504733391266,0.0,0.0,0.0016557656389736607,0.0016852276610194554,0.003090504733391266,0.0,0.0,0.0007443764007507809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.973456054945956e-05,0.0,0.0,0.0007664311723003103,0.00029492003701648553,0.0008161657328497699,0.00019731395977394504,0.00020082488432508286,0.00036828867098820834,0.0,0.0,4.973456054945956e-05,0.0,0.0,0.0,0.0,0.0,0.00027298605971654374,0.00019167351402246408,0.0003515061591107623,0.0,0.0 +98669,35.0,Eastern Counties in South Carolina and Georgia,G1301270000401,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,36271.0,,1106.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.0032853837333816785,0.00032552465399973343,0.0,0.003610908387381411,0.0003277036160468703,0.0011613867711239665,0.0021217873106042775,0.0,0.0,2.1789620471368978e-06,0.0011613867711239665,0.0021217873106042775,0.0,0.0,0.00032552465399973343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1749814260078395e-05,0.0,0.0,0.0003915112458924066,0.0001589951978175877,0.000413261060152485,2.5966164535329434e-07,0.00013839965697330588,0.00025284827006747486,0.0,0.0,2.1749814260078395e-05,0.0,0.0,0.0,0.0,0.0,3.7505006844425296e-05,0.00013291833433354435,0.00024283420661200898,0.0,0.0 +98670,50.0,the Greater Atlanta and Macon Area,G1301210011900,ComStock 90.1-2004,gen5_led,100001_200000,Electricity,359707.0,,12179.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.018515976004213924,0.002071083517476368,0.0,0.020587077252051708,0.010816158759243332,0.00411300059041675,0.0033641233151179787,0.0,0.0022937768569122313,0.008745075241766964,0.00411300059041675,0.0033641233151179787,0.0,0.0022937768569122313,0.002071083517476368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013837814440284158,0.0,0.0,0.0022065134607809527,0.0006159139994701622,0.002344891605183794,0.0010421338973494877,0.0004901384169481079,0.00040089614378661524,0.0,0.0002733450026967419,0.00013837814440284158,0.0,0.0,0.0,0.0,0.0,0.0012319728324892358,0.00046847546344263365,0.0003831774867234763,0.0,0.00026126380302003883 +98671,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,183369.0,,17095.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.018119665281470784,0.005032144055028027,0.0,0.023151809336498814,0.008039111680076944,0.005462197508077737,0.00965050014834413,0.0,0.0,0.003006967625048918,0.005462197508077737,0.00965050014834413,0.0,0.0,0.005032144055028027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003362178216366384,0.0,0.0,0.0021592871310988954,0.0008896113215217758,0.0024955049527355336,0.0003583347923672078,0.0006509200144427475,0.0011500323242889402,0.0,0.0,0.0003362178216366384,0.0,0.0,0.0,0.0,0.0,0.0008665259255396044,0.000588763527554562,0.0010402154996413668,0.0,0.0 +98672,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950600,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,18209.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.002786363027920592,0.0,0.0,0.002786363027920592,0.0013052307549575907,0.0006679562609547483,0.0007841320617975522,0.0,2.9043950210700948e-05,0.0013052307549575907,0.0006679562609547483,0.0007841320617975522,0.0,2.9043950210700948e-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.0003320457134275418,0.00011373631109825691,0.0003320457134275418,0.00015554192790912005,7.959910858156616e-05,9.34435632657977e-05,0.0,3.461113671057883e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015554192790912005,7.959910858156616e-05,9.34435632657977e-05,0.0,3.461113671057883e-06 +98673,50.0,the Greater Atlanta and Macon Area,G1300210012000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,189539.0,,13179.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.04820850628569666,0.011411434655300078,0.0,0.05961994094099674,0.023677997901790118,0.008915835030483344,0.01716648979704274,0.000641888121131823,0.009217730090548718,0.021927476007451714,0.008915835030483344,0.01190129189092051,0.000641888121131823,0.004822015235709272,0.0017505218943384034,0.005265197906122228,0.004395714854839444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007624460223847912,0.0,0.0,0.0057449101755593975,0.0024463317505789214,0.0065073561979441885,0.0026130529598449577,0.00106248202519873,0.0014182528801299438,7.649250895282377e-05,0.0005746298014329428,0.00011695974220173181,0.00035179005285957706,0.00029369622732348217,0.0,0.0,0.0,0.002584389785853878,0.0009731394132523898,0.0018736761897883251,7.006036197801182e-05,0.001006090447071584 +98674,81.0,the Columbus-Albany Area,G1302150002901,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,38123.0,,1156.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0031470656777979316,0.0003402556650226307,0.0,0.0034872906532142653,0.0014268518655990955,0.0007843035785440923,0.0012761658986773748,0.0,0.0,0.0010865962005764647,0.0007843035785440923,0.0012761658986773748,0.0,0.0,0.0003402556650226307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.273288381816612e-05,0.0,0.0,0.0003750291157019344,0.00013417009953984818,0.0003977619995201005,0.00012948735550775454,9.346378741897349e-05,0.00015207797277520642,0.0,0.0,2.273288381816612e-05,0.0,0.0,0.0,0.0,0.0,0.00016274738974125045,8.945803222479505e-05,0.00014556007802487295,0.0,0.0 +98675,50.0,the Greater Atlanta and Macon Area,G1301710970300,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,24256.0,,1516.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005694216343685723,0.0011756349250333247,0.0,0.0068698512687190485,0.0031357811673975067,0.0006502824174371002,0.0020853995953373306,0.0004137646269616565,0.0005846234615854556,0.0031357811673975067,0.0006502824174371002,0.0009097646703040057,0.0004137646269616565,0.0005846234615854556,0.0,0.0011756349250333247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.854962349788923e-05,0.0,0.0,0.0006785711592096933,0.0002731543798073887,0.0007571207827075824,0.0003736863043759147,7.74931732798119e-05,0.0001084152813443377,4.93077055051974e-05,6.966869470443173e-05,0.0,7.854962349788923e-05,0.0,0.0,0.0,0.0,0.0003455919202603615,7.16671021849878e-05,0.00022983021205556266,4.560066673471556e-05,6.443088147195495e-05 +98676,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,60016.0,,6155.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005347357001311733,0.0018116381493596928,0.0,0.007158995150671428,0.002766760076556799,0.0023242773329565205,0.0020679577411581067,0.0,0.0,0.000955121927197106,0.0023242773329565205,0.0020679577411581067,0.0,0.0,0.0018116381493596928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012104306397070647,0.0,0.0,0.0006372358537987644,0.00028990053866272315,0.0007582789177694709,0.00011382032967128755,0.0002769803569068493,0.00024643516722062757,0.0,0.0,0.00012104306397070647,0.0,0.0,0.0,0.0,0.0,0.0002930545128784594,0.00024618685493383604,0.00021903754995717534,0.0,0.0 +98677,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,36341.0,,3527.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003204627355878881,0.001027538868979144,0.0,0.004232166224858025,0.0030935511027350227,0.0009049813952478155,0.00023363372687518704,0.0,0.0,0.002066012233755879,0.0009049813952478155,0.00023363372687518704,0.0,0.0,0.001027538868979144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.865415758892124e-05,0.0,0.0,0.0003818887105666813,0.0001961871670856228,0.0004505428681556025,0.0002462023381647253,0.00010784473192616859,2.7841640475787514e-05,0.0,0.0,6.865415758892124e-05,0.0,0.0,0.0,0.0,0.0,0.0003293295472247006,9.634142228335746e-05,2.487189864754441e-05,0.0,0.0 +98678,35.0,Eastern Counties in South Carolina and Georgia,G1302450010600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Propane,41978.0,,,3946.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034334924276423415,0.0,0.0003719247251152711,0.003805417152757613,0.0024071685026407076,0.0009677939988850862,0.0004304242776323811,0.0,0.0,0.0020352437775254368,0.0009677939988850862,0.0004304242776323811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003719247251152711,0.0,0.0,0.0,0.0,2.9995794169701383e-05,0.00040916143989337775,0.00013040127987679176,0.0004391572340630791,0.00024253534618049548,0.00011532979741443618,5.129267674606833e-05,0.0,0.0,0.0,0.0,0.0,2.9995794169701383e-05,0.0,0.0,0.0002777948958309094,0.00011168650337985493,4.9672329642404195e-05,0.0,0.0 +98679,50.0,the Greater Atlanta and Macon Area,G1301210011414,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,5149.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003480508250222473,0.0,0.0,0.0003480508250222473,0.00016299249904709948,9.58436404677258e-05,8.921468550742199e-05,0.0,0.0,0.00016299249904709948,9.58436404677258e-05,8.921468550742199e-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,4.147474504463555e-05,1.6986047665494093e-05,4.147474504463555e-05,1.942265857790842e-05,1.1421005976051213e-05,1.0631080490675913e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.942265857790842e-05,1.1421005976051213e-05,1.0631080490675913e-05,0.0,0.0 +98680,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,16162.0,,1631.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014400483963071078,0.00048016958013385774,0.0,0.0019202179764409655,0.0006740665127227439,0.0007259626369721595,0.0005201888267460621,0.0,0.0,0.0001938969325888862,0.0007259626369721595,0.0005201888267460621,0.0,0.0,0.00048016958013385774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.208129091754709e-05,0.0,0.0,0.00017160816679549472,8.261002861966391e-05,0.0002036894577130418,2.310637422615638e-05,8.651175725225217e-05,6.199003531708619e-05,0.0,0.0,3.208129091754709e-05,0.0,0.0,0.0,0.0,0.0,7.150242530980596e-05,7.700736981895194e-05,5.5179662584283875e-05,0.0,0.0 +98681,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,76319.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006749104915866769,0.0,0.0,0.006749104915866769,0.004537269031210243,0.0016441229375655064,0.0005677129470910194,0.0,0.0,0.004537269031210243,0.0016441229375655064,0.0005677129470910194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008042763168779952,0.00023035981437841564,0.0008042763168779952,0.000540696591710592,0.00019592659429713317,6.765313087027002e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000540696591710592,0.00019592659429713317,6.765313087027002e-05,0.0,0.0 +98682,50.0,the Greater Atlanta and Macon Area,G1301210010114,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,6862.0,,1000.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.000605072474399454,0.00029128281860803994,0.0,0.0008963552930074941,0.0006017313784613013,0.000257142892840007,3.7481021706185754e-05,0.0,0.0,0.00031044855985326136,0.000257142892840007,3.7481021706185754e-05,0.0,0.0,0.00029128281860803994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9460844677157958e-05,0.0,0.0,7.210608788176475e-05,3.9168065061976194e-05,9.15669325589227e-05,3.699595021532641e-05,3.0643549018975984e-05,4.466588647462362e-06,0.0,0.0,1.9460844677157958e-05,0.0,0.0,0.0,0.0,0.0,6.146970624258132e-05,2.6268362679808874e-05,3.8288636365325005e-06,0.0,0.0 +98683,50.0,the Greater Atlanta and Macon Area,G1300210013606,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,52510.0,,3634.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004678599790478491,0.0010695634690812397,0.0,0.005748163259559732,0.0021241504102892006,0.001366700237255598,0.0022573126120149327,0.0,0.0,0.0010545869412079607,0.001366700237255598,0.0022573126120149327,0.0,0.0,0.0010695634690812397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.14611568476578e-05,0.0,0.0,0.0005575405435687598,0.0002299371587646025,0.0006290017004164177,0.00012567327892379284,0.0001628672738210653,0.0002689999908239017,0.0,0.0,7.14611568476578e-05,0.0,0.0,0.0,0.0,0.0,0.0002324384607187503,0.0001495532980493557,0.0002470099416483116,0.0,0.0 +98684,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,200573.0,,4444.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,306613.1346040191,0.0,0.0,0.022563517149873986,0.0016514965695899404,0.0,0.024214974971040155,0.01354044294503547,0.0020048821943913354,0.008198120262730871,0.0,0.00047156831730624753,0.01354044294503547,0.0020048821943913354,0.007018192010447179,0.0,0.0,0.0,0.0011799282522836926,0.00047156831730624753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011034288206315932,0.0,0.0,0.0026888490968977044,0.0009158619526599649,0.002799191978960864,0.0016135874359710293,0.00023891779113902626,0.0008363438697876484,0.0,0.0,0.0,7.883557639908176e-05,3.150730566407755e-05,0.0,0.0,0.0,0.001565242141635483,0.00023175948618627115,0.0009476826843487359,0.0,5.45121460135467e-05 +98685,50.0,the Greater Atlanta and Macon Area,G1302970110504,ComStock 90.1-2007,gen5_led,5001_10000,Propane,6349.0,,,2281.0,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0012376286514349962,0.0,0.0005854006679268179,0.0018230293193618142,0.0008929055680895628,0.00047763335084450036,0.0003782194482098528,0.0,7.427095221789806e-05,0.00038177585238064306,0.00047763335084450036,0.0003782194482098528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005111297157089198,7.427095221789806e-05,0.0,0.0,0.0,4.721270425063664e-05,0.00014748507068752288,9.624679483713696e-05,0.0001946977749381595,4.5495261046084316e-05,5.691835626974369e-05,4.507145337169488e-05,0.0,0.0,0.0,0.0,0.0,4.122273414367539e-05,5.989970106961246e-06,0.0,9.536145441576853e-05,5.101078170165462e-05,4.039347267907646e-05,0.0,7.932066141659886e-06 +98686,50.0,the Greater Atlanta and Macon Area,G1301350050428,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,62257.0,,4740.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005254459563048587,0.0013952722607187592,0.0,0.006649731823767347,0.0022476760756374543,0.0017690409758184815,0.0026330454619177077,0.0,0.0,0.0008524038149186949,0.0017690409758184815,0.0026330454619177077,0.0,0.0,0.0013952722607187592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.322379916579167e-05,0.0,0.0,0.0006261654690372392,0.00029384904757082087,0.0007193892682030309,0.00010157958742916318,0.00021081375907036019,0.00031377577976858626,0.0,0.0,9.322379916579167e-05,0.0,0.0,0.0,0.0,0.0,0.00024316079054962814,0.00019138051379254516,0.0002848512839606752,0.0,0.0 +98687,35.0,Eastern Counties in South Carolina and Georgia,G1302450000700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,88989.0,,10490.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004222290538209954,0.0017839048535557723,0.0,0.006006195391765727,0.0020399312724613348,0.0007458453834959412,0.002502197255404952,0.0,0.000718203750042079,0.001580218461562206,0.0007458453834959412,0.0011780052127483083,0.0,0.000718203750042079,0.000459712810899129,0.0013241920426566435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011919004102114804,0.0,0.0,0.0005031614207358417,0.0002269570967827739,0.0006223514617569897,0.00018831128720235614,8.888081466989414e-05,0.00014038038621850822,0.0,8.558681975546527e-05,3.071530899184327e-05,8.847473202930479e-05,0.0,0.0,0.0,0.0,0.00021137411064592066,7.728319416643896e-05,0.000259273303302874,0.0,7.44190164527158e-05 +98688,35.0,Eastern Counties in South Carolina and Georgia,G1302450000900,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,45830.0,,1356.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,32736.412774265485,0.0,0.0,0.0023112944539952435,0.00023054788954494655,0.0,0.00254184234354019,0.0014558399762005358,0.0007440191562696758,0.0002758489629731815,0.0,6.613424809679695e-05,0.001291426334752386,0.0007440191562696758,0.0002758489629731815,0.0,0.0,0.00016441364144814961,0.0,6.613424809679695e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5403325504040667e-05,0.0,0.0,0.00027543273941086044,9.914213262886059e-05,0.0002908360649149011,0.00015389691802934104,8.86634041938196e-05,3.2872417187699764e-05,0.0,0.0,1.0984775620931256e-05,0.0,4.418549883109413e-06,0.0,0.0,0.0,0.0001665763303141198,8.513022225029118e-05,3.1562471648119296e-05,0.0,7.567040702370804e-06 +98689,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,102434.0,,12422.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.03262705583362037,0.010756546268423811,0.0,0.04338351182242095,0.013514498478333246,0.005260683924960964,0.01449321987371863,0.0006407144860298941,0.009474485339001446,0.013514498478333246,0.005260683924960964,0.008298683526115251,0.0006407144860298941,0.004912475418181015,0.0,0.00619453634760338,0.004562009920820433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007186887140570366,0.0,0.0,0.00388809881242184,0.0018758098868962769,0.004606787526478876,0.0016104948528619253,0.0006269048309314693,0.0009889369646802447,7.635262111720474e-05,0.0005854095428309961,0.0,0.0004138822304801931,0.0003048064835768435,0.0,0.0,0.0,0.001435071076574942,0.0005586189791517371,0.0015389990742579057,6.803588225772473e-05,0.0010060721008058587 +98690,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock DOE Ref Pre-1980,gen2_t8_halogen,5001_10000,NaturalGas,27834.0,,12490.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56751.431377317895,0.0,0.0,0.014331012888368383,0.008592124247641218,0.0,0.022923137136009603,0.011595398033919933,0.0011264338647711874,0.005841591639221519,0.0003640505728752417,0.003995591305250707,0.011595398033919933,0.0011264338647711874,0.0008027616355777346,0.0003640505728752417,0.00044229706125327337,0.0,0.005038830003643785,0.003553294243997434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005740748198577896,0.0,0.0,0.0017078005174709053,0.0010867713522609672,0.0022818753373286945,0.0013818023134067638,0.00013423505736390458,9.56636315468091e-05,4.3383238964674615e-05,5.270772945136886e-05,0.0,0.00033666475754583626,0.0002374100623119534,0.0,0.0,0.0,0.0011542596741066081,0.00011213044880822379,0.0005814991121501225,3.6239281685377805e-05,0.00039773968123996904 +98691,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,21647.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.005132139339671504,0.0,0.0,0.005132139339671504,0.0034654263896769814,0.0007145064100338769,0.000871153607696125,0.0,8.088751811704266e-05,0.0034654263896769814,0.0007145064100338769,0.000871153607696125,0.0,8.088751811704266e-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.0006115882766136885,0.0002026356116454855,0.0006115882766136885,0.0004129689420182033,8.514650811683195e-05,0.00010381388702333495,0.0,9.639227333980974e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0004129689420182033,8.514650811683195e-05,0.00010381388702333495,0.0,9.639227333980974e-06 +98692,81.0,the Columbus-Albany Area,G1302150011500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,104065.0,,1805.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00917662373013077,0.0005257670062674839,0.0,0.009702390736398253,0.0066533065832401,0.002099332072339093,0.0009497520808190616,0.0,0.0,0.006127539576972615,0.002099332072339093,0.0009497520808190616,0.0,0.0,0.0005257670062674839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5128406513860246e-05,0.0,0.0,0.0010935596620218985,0.0002892231896017698,0.0011286880685357588,0.000730206479624777,0.00025017315071565596,0.0001131800316814654,0.0,0.0,3.5128406513860246e-05,0.0,0.0,0.0,0.0,0.0,0.0007739852950512294,0.0002442172374128885,0.00011048553607164099,0.0,0.0 +98693,35.0,Eastern Counties in South Carolina and Georgia,G1302450010904,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6432.0,,194.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012253880045215789,0.00015358703593389386,0.0,0.001378975040455473,0.0007619802703602392,0.00025622651444437433,0.0003185049409700729,0.0,4.226331468078609e-05,0.0006083932344263453,0.00025622651444437433,0.0003185049409700729,0.0,4.226331468078609e-05,0.00015358703593389386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.026132861055329e-05,0.0,0.0,0.00014603177061213904,5.6654477052682374e-05,0.00015629309922269232,7.250335479366189e-05,3.053499091228447e-05,3.795682698618706e-05,0.0,5.036597920005605e-06,1.026132861055329e-05,0.0,0.0,0.0,0.0,0.0,8.636288149335236e-05,2.9040725807707108e-05,3.609936574741127e-05,0.0,4.790126174221542e-06 +98694,50.0,the Greater Atlanta and Macon Area,G1302230120204,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,43922.0,,3061.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.003873119905904362,0.0008918296266912688,0.0,0.00476494953259563,0.0029674702914689152,0.0013248660338752965,0.00047261320725141843,0.0,0.0,0.0020756406647776462,0.0013248660338752965,0.00047261320725141843,0.0,0.0,0.0008918296266912688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.958587451543553e-05,0.0,0.0,0.00046155323810687056,0.00015623377574003358,0.0005211391126223061,0.00024735063546934665,0.00015788207513554048,5.632052750198333e-05,0.0,0.0,5.958587451543553e-05,0.0,0.0,0.0,0.0,0.0,0.00032455009729909034,0.00014489964783763416,5.168936748558169e-05,0.0,0.0 +98695,85.0,Rural Climate Zone 3A,G1302770960700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,237506.0,,32002.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,283757.1568865895,0.0,0.0,0.04642770807704277,0.022013799623502667,0.0,0.06844143598057442,0.03045732009119955,0.007721372079540686,0.009993747641199306,0.0003893677226437524,0.019879485006049098,0.03045732009119955,0.007721372079540686,0.0055793117052174305,0.0003893677226437524,0.002280193038499322,0.0,0.004414435935981876,0.01759929196754978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014708310848204733,0.0,0.0,0.005532697762236273,0.003078581993825829,0.007003528847056747,0.00362953834448739,0.0009201405754291858,0.0006648754949318469,4.640017819064693e-05,0.0002717260757441956,0.0,0.0002949463385529629,0.001175879954365859,0.0,0.0,0.0,0.003116660496768361,0.0007901186075825506,0.0010226480332062317,3.984352517709146e-05,0.002034243506287818 +98696,35.0,Eastern Counties in South Carolina and Georgia,G1301270000600,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,4853.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0003053761687471568,0.0,0.0,0.00030537616874715687,0.00019991903149928255,9.051332632450044e-05,1.4943810923373899e-05,0.0,0.0,0.00019991903149928255,9.051332632450044e-05,1.4943810923373899e-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,3.639019571981583e-05,1.0807811058614743e-05,3.639019571981583e-05,2.3823380567717116e-05,1.0786033742296717e-05,1.7807814098020085e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3823380567717112e-05,1.0786033742296715e-05,1.7807814098020082e-06,0.0,0.0 +98697,50.0,the Greater Atlanta and Macon Area,G1301210010604,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,58083.0,,4473.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00848500096997627,0.0013166761789903422,0.0,0.009801677148966613,0.0029867124848924347,0.0025176218526320477,0.004297373501048428,0.0,0.0,0.0016700363059020925,0.0025176218526320477,0.004297373501048428,0.0,0.0,0.0013166761789903422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.797311970185272e-05,0.0,0.0,0.0010111410193268697,0.0003588916409038328,0.0010991141390287223,0.00019901496990252485,0.0003000200866632417,0.0005121096199816389,0.0,0.0,8.797311970185272e-05,0.0,0.0,0.0,0.0,0.0,0.0003349159405546205,0.0002823143154890905,0.0004818873243736318,0.0,0.0 +98698,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,162622.0,,9562.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.014489453131728117,0.002814513103956024,0.0,0.017303966235684143,0.0074945859955368056,0.0037898594817033174,0.006019551448050317,0.0,0.0,0.004680072891580782,0.0037898594817033174,0.006019551448050317,0.0,0.0,0.002814513103956024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001880484884421498,0.0,0.0,0.001726681304456111,0.0007453984339491882,0.0019147297928982607,0.0005577156219712062,0.00045163053802516935,0.0007173388016833006,0.0,0.0,0.0001880484884421498,0.0,0.0,0.0,0.0,0.0,0.000829295832853608,0.00041935801085596613,0.000666079345075081,0.0,0.0 +98699,50.0,the Greater Atlanta and Macon Area,G1300890023802,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,75281.0,,5269.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006177656016044905,0.0015349298475867883,0.0,0.007712585863631694,0.004738251138689847,0.002375124355233879,0.0005992407433074057,0.0,0.0,0.003203321291103058,0.002375124355233879,0.0005992407433074057,0.0,0.0,0.0015349298475867883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010255450465841635,0.0,0.0,0.0007361809190328391,0.00027260456468107286,0.0008387354236912554,0.00038173443226958856,0.0002830395907625826,7.141051557163308e-05,0.0,0.0,0.00010255450465841635,0.0,0.0,0.0,0.0,0.0,0.0005152797189726539,0.00025829222100465135,6.51667868102455e-05,0.0,0.0 +98700,50.0,the Greater Atlanta and Macon Area,G1301390000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,24394.0,,3580.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0011810548349125572,0.000608842880803193,0.0,0.0017898977157157505,0.0007203313934124852,0.0004131883425329106,0.0004041103974858435,0.0,0.0002522853126459313,0.0005768395784399978,0.0004131883425329106,0.00013714434558410844,0.0,5.3882568355540464e-05,0.0001434918149724873,0.00026696605190173507,0.00019840274429039085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.06795163030339e-05,0.0,0.0,0.00014074428295387517,7.71607122333689e-05,0.00018142379925690906,6.874098513212896e-05,4.923894748629538e-05,1.6343256900381684e-05,0.0,6.421093435069156e-06,9.587330016612404e-06,1.7837196102821328e-05,1.3256174828356954e-05,0.0,0.0,0.0,7.30126961834003e-05,4.188071656430357e-05,4.09605772371098e-05,0.0,2.557160641921882e-05 +98701,85.0,Rural Climate Zone 3A,G1301750950800,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,119611.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01283190418086757,0.0,0.0,0.01283190418086757,0.008218579656665202,0.0037980363680942394,0.0008152881561081346,0.0,0.0,0.008218579656665202,0.0037980363680942394,0.0008152881561081346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015291540557691083,0.0003593654548665188,0.0015291540557691083,0.0009793927882807325,0.0004526049005952921,9.715636689308429e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009793927882807325,0.0004526049005952921,9.715636689308429e-05,0.0,0.0 +98702,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,13221.0,,469.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011037823801031783,0.0001380111595207694,0.0,0.0012417935396239479,0.00041329692801116337,0.0003459639317940035,0.00048253267981878084,0.0,0.0,0.00027528576849039394,0.0003459639317940035,0.00048253267981878084,0.0,0.0,0.0001380111595207694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.22073342242615e-06,0.0,0.0,0.00013153536756515372,4.7379202276847e-05,0.00014075610098757986,3.280521178500331e-05,4.122777619312623e-05,5.750237958702419e-05,0.0,0.0,9.22073342242615e-06,0.0,0.0,0.0,0.0,0.0,4.684680849170199e-05,3.9214678259965595e-05,5.469461423591226e-05,0.0,0.0 +98703,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,30578.0,,1774.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007342237764133278,0.0014072608596743157,0.0,0.008749498623807594,0.005078379741740954,0.0012928769766928534,0.002206293899069765,0.0,0.00017203071337775947,0.0036711188820666386,0.0012928769766928534,0.002206293899069765,0.0,0.00017203071337775947,0.0014072608596743157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.402365078500075e-05,0.0,0.0,0.0008749645124475373,0.0003852545200217507,0.0009689881632325381,0.0004374822562237686,0.00015407039514474846,0.00026292105046579517,0.0,2.0500666702985984e-05,9.402365078500075e-05,0.0,0.0,0.0,0.0,0.0,0.0005624196390816087,0.00014318334578879686,0.000244342306311537,0.0,1.9052031681211463e-05 +98704,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,180317.0,,21805.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009281879664120484,0.003708092326667002,0.0,0.012989971990787486,0.00696723417181685,0.002452552243428804,0.002030410068378767,0.0,0.0015397932375244858,0.005171414515386801,0.002452552243428804,0.0013603442495921313,0.0,0.00029758638607416625,0.0017958196564300478,0.0006700658187866355,0.0012422068514503194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024775273305115006,0.0,0.0,0.0011061044852509968,0.0005073447209180728,0.0013538572183021465,0.0006162679325258703,0.0002922661287298694,0.00016210971596364,0.0,3.546282092609528e-05,0.00011998601673098976,4.476982321466718e-05,8.299689310549315e-05,0.0,0.0,0.0,0.0007261478532675257,0.00025561298826387363,0.00021161595491795234,0.0,0.00016048226976884952 +98705,81.0,the Columbus-Albany Area,G1302150001000,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Propane,34098.0,,,1004.0,3.20458438519356,Mercantile,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,56080.226740887294,0.0,0.0,0.003006834476340242,0.0,9.461376224859692e-05,0.0031014482385888385,0.001580277631547352,0.001263541736610476,0.0002576592440304487,0.0,0.0,0.0014856638692987549,0.001263541736610476,0.0002576592440304487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.461376224859692e-05,0.0,0.0,0.0,0.0,7.629833169230078e-06,0.00035831947932086925,9.293362913683817e-05,0.0003659493124900993,0.00017704410012648795,0.00015057417384462004,3.070482492124788e-05,0.0,0.0,0.0,0.0,0.0,7.629833169230078e-06,0.0,0.0,0.00018646176505959151,0.00014908913328359744,3.0401998020306655e-05,0.0,0.0 +98706,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,7816.0,,1969.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0015257800963427435,0.0015616749663456026,0.0,0.0030873723556146065,0.0022390459002705307,0.0003895503173121379,0.00039509169125267156,0.0,6.376715385300602e-05,0.0007411380877779337,0.0003895503173121379,0.00039509169125267156,0.0,0.0,0.0014979078124925966,0.0,6.376715385300602e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001043399011162153,0.0,0.0,0.00018182073548375709,0.00014767593741703454,0.0002861606365999724,8.831827898254265e-05,4.642105724894274e-05,4.708139925227166e-05,0.0,0.0,0.00010007943804235649,0.0,4.260463073858807e-06,0.0,0.0,0.0,0.0002075314300954875,3.61064212378009e-05,3.662003699638534e-05,0.0,5.910414177143205e-06 +98707,50.0,the Greater Atlanta and Macon Area,G1301350050435,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,65890.0,,710.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.007245335270599128,0.0002639930111592,0.0,0.0075093282817583285,0.004727811429703137,0.0008220478103247363,0.001829506828398889,0.0,0.00013000096175533774,0.004727811429703137,0.0008220478103247363,0.0015655138172396888,0.0,0.00013000096175533774,0.0,0.0002639930111592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7638843544968973e-05,0.0,0.0,0.0008634133407290622,0.0002906769338421211,0.0008810521842740312,0.0005634046332433528,9.796193269780865e-05,0.0001865594157368308,0.0,1.549197662979722e-05,0.0,1.7638843544968973e-05,0.0,0.0,0.0,0.0,0.0005547032212048037,9.644897541950375e-05,0.00021465182061898986,0.0,1.5252713294010609e-05 +98708,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,79350.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006817174315727612,0.0,0.0,0.006817174315727612,0.0015733026668517333,0.0020724998028901665,0.003171341156379415,0.0,0.0,0.0015733026668517333,0.0020724998028901665,0.003171341156379415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008123878492784098,0.0002717773146573904,0.0008123878492784098,0.00018748705997423921,0.0002469752979054003,0.0003779218341850772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018748705997423921,0.0002469752979054003,0.0003779218341850772,0.0,0.0 +98709,35.0,Eastern Counties in South Carolina and Georgia,G1302450001200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,359356.0,,6924.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.017768729922165796,0.0011774201108214464,0.0,0.018946150032987243,0.011162610021391163,0.00525802733092376,0.0014567796853557982,0.0,0.0010687329953165227,0.010529210590021197,0.00525802733092376,0.0009127590059043181,0.0,0.0010687329953165227,0.0006333994313699663,0.00054402067945148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.86682927231243e-05,0.0,0.0,0.0021174645524801535,0.000742897444824643,0.002196132845203278,0.001254745290610563,0.00062658876227918,0.00010877169321755551,0.0,0.00012735880637285537,4.2320027847077754e-05,3.634826487604654e-05,0.0,0.0,0.0,0.0,0.0012939079688216307,0.0006094814251081662,0.00016886183787547754,0.0,0.00012388161339800348 +98711,50.0,the Greater Atlanta and Macon Area,G1301210011622,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10328.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0024798888989993936,0.0,0.0,0.002479888898999393,0.001317771805888385,0.0005213026857788548,0.0005720021219810502,0.0,6.889499242484309e-05,0.001317771805888385,0.0005213026857788548,0.0005720021219810502,0.0,6.889499242484309e-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.00029552520094228336,7.321496389761279e-05,0.00029552520094228336,0.00015703718738705312,6.212297697235901e-05,6.816476419813341e-05,0.0,8.210128481354124e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015703718738705315,6.212297697235902e-05,6.816476419813342e-05,0.0,8.210128481354126e-06 +98712,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,42741.0,,16709.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56751.431377317895,0.0,0.0,0.012216995022712234,0.011493842554961825,0.0,0.023710837577674063,0.0067481320728588435,0.002174764681106374,0.009815451793254498,0.0003638354129621949,0.004608581897521135,0.004358207478705636,0.002174764681106374,0.004792902223031256,0.0003638354129621949,0.0005272135069357568,0.0023899245941532065,0.005022549570223241,0.004081368390585378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000767951499140912,0.0,0.0,0.0014558762415160188,0.0012035950855119756,0.0022238277406569306,0.000519359360632394,0.00025916260293343566,0.0005711611129781235,4.335757954956038e-05,6.282703868890564e-05,0.000159680817458334,0.00033557745841032114,0.00027269322327225687,0.0,0.0,0.0,0.000632903972796407,0.00020397010486880067,0.0009205863737801115,3.412394360714394e-05,0.00043223661902382326 +98713,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,193449.0,,3973.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.009259415296201275,0.0006757218040796323,0.0,0.009935137100280909,0.005737917293118907,0.001552275411964203,0.001354209544540793,0.0,0.001290717120295584,0.005395792239157569,0.001552275411964203,0.0010206127944224995,0.0,0.001290717120295584,0.00034212505396133885,0.00033359675011829346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5148005371762234e-05,0.0,0.0,0.0011034263953785834,0.00034890349858185984,0.0011485744007503455,0.0006430059987813674,0.00018498162223711475,0.00012162442884367651,0.0,0.00015381223262396192,2.2858909806972375e-05,2.228909556478986e-05,0.0,0.0,0.0,0.0,0.0006633451405831887,0.0001794543732110018,0.00015655651254851445,0.0,0.00014921632464838316 +98714,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,18759.0,,3034.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.003651837484172884,0.0020869077166122503,0.0,0.005738745200785135,0.002175195000932467,0.0002941953211060366,0.0014471655751529997,0.00038033100629578543,0.0014418582972978444,0.001879134960580025,0.0002941953211060366,0.0009152902701012283,0.00038033100629578543,0.00018288592608980817,0.0002960600403524424,0.0005318753050517716,0.0012589723712080362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013943437988875757,0.0,0.0,0.0004351807632497218,0.0002557315183768384,0.0005746151431384794,0.00022393203146050432,3.505855475176478e-05,0.00010907295849391079,4.5323138919699806e-05,2.179407962384207e-05,1.9780916907718443e-05,3.55366472353779e-05,8.411681574566122e-05,0.0,0.0,0.0,0.00021780022340840498,2.9457499964432643e-05,0.00014490332381334026,3.808218486381918e-05,0.00014437191108848213 +98715,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,88635.0,,13279.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.007897295009375261,0.003908628258075426,0.0,0.011805923267450688,0.005267656093756599,0.0025638097101100907,0.003974488153190296,0.0,0.0,0.0013590278356811725,0.0025638097101100907,0.003974488153190296,0.0,0.0,0.003908628258075426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002611516298973167,0.0,0.0,0.0009411072209898826,0.0005401787890403935,0.0012022588508871993,0.00016195303685216913,0.00030552484471761644,0.00047363299664830775,0.0,0.0,0.0002611516298973167,0.0,0.0,0.0,0.0,0.0,0.0005364329429117403,0.00026108613838517615,0.0004047428948732418,0.0,0.0 +98716,81.0,the Columbus-Albany Area,G1302150010402,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,32523.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002759548019076839,0.0,0.0,0.0027595480190768388,0.0008540917432650685,0.0008176631805896953,0.0010877930952220751,0.0,0.0,0.0008540917432650685,0.0008176631805896953,0.0010877930952220751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003288517720887553,0.00010474931828356598,0.0003288517720887553,0.00010178100955570697,9.743986480749912e-05,0.00012963089772554916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010178100955570698,9.743986480749913e-05,0.0001296308977255492,0.0,0.0 +98717,85.0,Rural Climate Zone 3A,G1300090970600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,453159.0,,42331.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.02199862678542495,0.007198792691962739,0.0,0.0291974194773877,0.01991245473038012,0.0032339647319333717,0.0021249128947476484,0.0,0.0039260871203265525,0.016506789178454957,0.0032339647319333717,0.001761475946359406,0.0,0.0004963969286772183,0.0034056655519251623,0.0003634369483882423,0.003429690191649334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00048098150810039467,0.0,0.0,0.0026215343213834524,0.0012538358875540507,0.0031025158294838468,0.0019670825269798636,0.00038538539798875,0.00020991172288681463,0.0,5.91546735280242e-05,0.00022754678782171077,2.4282745595709243e-05,0.00022915197468297463,0.0,0.0,0.0,0.0021158961000896023,0.0003436408748583511,0.0002257931012476847,0.0,0.0004171857532882079 +98718,50.0,the Greater Atlanta and Macon Area,G1300850970202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,20691.0,,1225.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0010650450801411519,0.00020829628596278032,0.0,0.001273341366103932,0.0006500837014662361,0.00034953634503492095,0.00012317282078510685,0.0,0.00015054849881766835,0.0005475490213740707,0.00034953634503492095,0.00012317282078510685,0.0,4.4786892947053384e-05,0.00010253468009216535,0.0,0.00010576160587061498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3917316761785129e-05,0.0,0.0,0.00012691961292187086,4.8731477636789974e-05,0.000140836929683656,6.525048671116909e-05,4.165365245204285e-05,1.4678295809289934e-05,0.0,5.3371779493689894e-06,6.85085485473301e-06,0.0,7.06646190705212e-06,0.0,0.0,0.0,7.190200129288675e-05,3.86601951039948e-05,1.3623433873767471e-05,0.0,1.6651299413006992e-05 +98719,35.0,Eastern Counties in South Carolina and Georgia,G1300510004210,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,153564.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012674660056578335,0.0,0.0,0.012674660056578335,0.0071894309869158565,0.003647504809280742,0.0018377242603817361,0.0,0.0,0.0071894309869158565,0.003647504809280742,0.0018377242603817361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001510416498232825,0.0003550218811246422,0.001510416498232825,0.0008567515915275386,0.00043466660381647274,0.00021899830288881367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008567515915275386,0.00043466660381647274,0.00021899830288881367,0.0,0.0 +98720,35.0,Eastern Counties in South Carolina and Georgia,G1300510004207,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,122243.0,,1651.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.013098904656152589,0.0006135425420071588,0.0,0.013712447198159746,0.0072289059389197665,0.0016265425846807193,0.004674687340711612,0.0,0.00018227258542387743,0.0072289059389197665,0.0016265425846807193,0.0040611447987044524,0.0,0.00018227258542387743,0.0,0.0006135425420071588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.099311851003651e-05,0.0,0.0,0.0015609704587924386,0.00046539070121852345,0.001601963577302475,0.0008614543670827314,0.0001938318501663369,0.00048395856188468525,0.0,2.1721062085962518e-05,0.0,4.099311851003651e-05,0.0,0.0,0.0,0.0,0.0008445205914411213,0.00019002165987845167,0.0005461227122246984,0.0,2.1294086954004255e-05 +98721,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,13268.0,,3118.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011821329449812135,0.0009177112971202061,0.0,0.0020998442421014197,0.0011476071378962978,0.0004320482774590598,0.0005201888267460621,0.0,0.0,0.00022989584077609155,0.0004320482774590598,0.0005201888267460621,0.0,0.0,0.0009177112971202061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.131570955054899e-05,0.0,0.0,0.0001408738247985847,0.00010269365194899494,0.00020218953434913368,2.7396500988244708e-05,5.148684299993446e-05,6.199048081040552e-05,0.0,0.0,6.131570955054899e-05,0.0,0.0,0.0,0.0,0.0,0.00011050064960760435,4.160100939123534e-05,5.0087875350293996e-05,0.0,0.0 +98722,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,4989.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.000325984998094199,0.0,0.0,0.00032598499809419895,0.00010624741700264704,0.00011981222298623168,9.992535810532028e-05,0.0,0.0,0.00010624741700264704,0.00011981222298623168,9.992535810532028e-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,3.88462366574615e-05,1.464106598289598e-05,3.88462366574615e-05,1.2661049831305941e-05,1.4277509688451296e-05,1.1907677137704259e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2661049831305943e-05,1.42775096884513e-05,1.1907677137704262e-05,0.0,0.0 +98723,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302050090500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13617.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0012007898801720807,0.0,0.0,0.0012007898801720807,0.0006549459246762426,0.00047747298316145866,6.837097233437936e-05,0.0,0.0,0.0006549459246762426,0.00047747298316145866,6.837097233437936e-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.00014309729746521881,3.748221297816399e-05,0.00014309729746521881,7.804945174387902e-05,5.690012435253806e-05,8.147721368801729e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.804945174387902e-05,5.690012435253806e-05,8.147721368801729e-06,0.0,0.0 +98724,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,9302.0,,1596.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.002007631507947948,0.001266410713096275,0.0,0.0032740422210442233,0.002014992437510747,0.0005064154125057794,0.0005887089508763903,0.0,0.00016400812722504663,0.0009125898516395182,0.0005064154125057794,0.0005887089508763903,0.0,0.0,0.0011024025858712284,0.0,0.00016400812722504663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.461582045602444e-05,0.0,0.0,0.00023924648273973594,0.00014832970005051495,0.0003238623031957604,0.00010875198527437781,6.0348777037793666e-05,7.01555765074335e-05,0.0,0.0,7.365754120025794e-05,0.0,1.095827925576649e-05,0.0,0.0,0.0,0.00019931938798459838,5.009369177152633e-05,5.823401894981617e-05,0.0,1.6223385723164577e-05 +98725,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,34013.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.003220996939369098,0.0,0.0,0.0032209969393690984,0.0011121299530161535,0.0008596158723986549,0.0012492511139542896,0.0,0.0,0.0011121299530161535,0.0008596158723986549,0.0012492511139542896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003838403948214674,0.00014350731161975227,0.0003838403948214674,0.00013253052029975356,0.00010243887282951866,0.00014887100169219518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013253052029975356,0.00010243887282951865,0.00014887100169219515,0.0,0.0 +98726,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,23300.0,,655.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0011451153923141102,0.0001114175911636118,0.0,0.0012565329834777223,0.0006712360226403591,0.00033861444240016847,0.00011187858056053319,0.0,0.00013478620751524142,0.0005598184314767472,0.00033861444240016847,0.00011187858056053319,0.0,0.00013478620751524142,0.0001114175911636118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.4441069347105645e-06,0.0,0.0,0.00013646159974641688,4.423205618033685e-05,0.00014390570668112743,6.671268174333619e-05,4.035215037480948e-05,1.3332394432141991e-05,0.0,1.606226029685316e-05,7.4441069347105645e-06,0.0,0.0,0.0,0.0,0.0,7.687398218592221e-05,3.87801603831883e-05,1.281300722682575e-05,0.0,1.5436526297675013e-05 +98727,50.0,the Greater Atlanta and Macon Area,G1300890023112,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,NaturalGas,28466.0,,1035.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0066547615857567655,0.0008027049935212748,0.0,0.007457385718494971,0.0038436364623793975,0.00043050280905684174,0.001969040928501719,0.0004115813858188062,0.0008027049935212748,0.0038436364623793975,0.00043050280905684174,0.001969040928501719,0.0004115813858188062,0.0,0.0,0.0,0.0008027049935212748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.362942906876817e-05,0.0,0.0,0.0007930347690950085,0.0002829324441410486,0.0008466641981637766,0.0004580385510657739,5.13021678351113e-05,0.00023464671092276394,4.904733927135922e-05,0.0,0.0,0.0,5.362942906876817e-05,0.0,0.0,0.0,0.00043638206555182387,4.887655398236863e-05,0.00022355239782581864,4.6728335794563546e-05,9.11340254288079e-05 +98728,50.0,the Greater Atlanta and Macon Area,G1301510070310,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,8991.0,,414.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021589027458171414,0.0003282643756713111,0.0,0.0024871671214884523,0.0009217703368245812,0.00045687387533593427,0.000972552480100516,0.0,0.00013597042922742142,0.0007294763903806915,0.00045687387533593427,0.000972552480100516,0.0,0.0,0.00019229394644388971,0.0,0.00013597042922742142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1934855459204566e-05,0.0,0.0,0.0002572731144622137,9.654007559757282e-05,0.00027920796992141826,8.693057769439241e-05,5.444495591653331e-05,0.00011589758085128801,0.0,0.0,1.2849216160909703e-05,0.0,9.085639298294865e-06,0.0,0.0,0.0,0.00010347741502973553,5.1288402029991845e-05,0.00010917818962177301,0.0,1.5263963239917922e-05 +98729,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,58754.0,,5894.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0029133997974588165,0.001002315061437005,0.0,0.0039157148588958215,0.0018304470522834116,0.000541272473431372,0.0010206659855067596,0.0,0.0005233293476742786,0.0016321329598001208,0.000541272473431372,0.00021666501655304526,0.0,0.0005233293476742786,0.00019831409248329058,0.0008040009689537143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.696877724532431e-05,0.0,0.0,0.0003471847564469399,0.00017000231687957669,0.00041415353369226427,0.00019449842916563812,6.450249362398403e-05,2.581959093570115e-05,0.0,6.236424272161662e-05,1.3250177309599198e-05,5.3718599935725105e-05,0.0,0.0,0.0,0.0,0.00019360094957310904,5.724878231434038e-05,0.0001079528106232743,0.0,5.5350991181540575e-05 +98730,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,11452.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,5759.960461090961,0.0,0.0,0.0018151922942774355,0.0,0.0,0.001815192294277436,0.0014355463736661304,9.024370244039224e-05,0.00028563523966614165,0.0,3.7669785047713633e-06,0.0014355463736661304,9.024370244039224e-05,0.00028563523966614165,0.0,3.7669785047713633e-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.00021631225658432917,8.46385355134536e-05,0.00021631225658432917,0.00017107073255992467,1.075413275989943e-05,3.403848917107914e-05,0.0,4.48902093425929e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.00017107073255992464,1.0754132759899429e-05,3.403848917107913e-05,0.0,4.489020934259289e-07 +98731,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,51439.0,,4096.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,166687.57849830156,0.0,0.0,0.013482268652841816,0.0035464544391591276,0.0,0.017028723092000944,0.005819966190841646,0.0015324063246260988,0.006819271340322397,0.0006263600259370729,0.0022308094898969544,0.005819966190841646,0.0015324063246260988,0.0032728169011632694,0.0006263600259370729,0.0022308094898969544,0.0,0.0035464544391591276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002369528941314625,0.0,0.0,0.001606656265822548,0.0007426224800630653,0.0018436091599540103,0.0006935542814168862,0.00018261394181072544,0.00039001535398388237,7.464213080492595e-05,0.00026584131625680607,0.0,0.0002369528941314625,0.0,0.0,0.0,0.0,0.000630096744311879,0.0001659054716897253,0.0007382861908850831,6.781266422665928e-05,0.00024151786293467143 +98732,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,19360.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0017072392771971545,0.0,0.0,0.0017072392771971545,0.0010365294544127186,0.0005635213903686096,0.00010718843241582617,0.0,0.0,0.0010365294544127186,0.0005635213903686096,0.00010718843241582617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020344745576141338,6.886132843724745e-05,0.00020344745576141338,0.00012352063541335738,6.71534416229274e-05,1.2773378725128589e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012352063541335738,6.71534416229274e-05,1.2773378725128589e-05,0.0,0.0 +98733,35.0,Eastern Counties in South Carolina and Georgia,G1302450000600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,92601.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.008435007601317311,0.0,0.0,0.008435007601317311,0.0030219134633158997,0.002887677125369748,0.0025254170126316642,0.0,0.0,0.0030219134633158997,0.002887677125369748,0.0025254170126316642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001005182945329518,0.00030002336295441854,0.001005182945329518,0.00036011536908543115,0.00034411869380965673,0.0003009488824344302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036011536908543115,0.00034411869380965673,0.0003009488824344302,0.0,0.0 +98734,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,100361.0,,6975.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.008942061276567957,0.0020532574197415065,0.0,0.010995318696309465,0.0034776848064430837,0.00273588633262131,0.004781747557245071,0.0,0.0,0.001424427386701577,0.00273588633262131,0.004781747557245071,0.0,0.0,0.0020532574197415065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013718657073977589,0.0,0.0,0.0010656094170331466,0.0004384568650833142,0.001202795987772923,0.00016974645892067663,0.00032603067120699704,0.0005698322869054731,0.0,0.0,0.00013718657073977589,0.0,0.0,0.0,0.0,0.0,0.00038042965806280667,0.0002992831035433473,0.0005230832261667688,0.0,0.0 +98735,50.0,the Greater Atlanta and Macon Area,G1301210001700,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,31081.0,,2302.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027457070066365754,0.0006776878862658728,0.0,0.0034233948929024483,0.001736448613930321,0.0006664248007546159,0.0010205214782175107,0.0,0.0,0.0010587607276644484,0.0006664248007546159,0.0010205214782175107,0.0,0.0,0.0006776878862658728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.527916402975157e-05,0.0,0.0,0.0003272011601195264,0.00014697033693219242,0.00037248032414927796,0.00012617068665500732,7.941669209871254e-05,0.0001216137813658065,0.0,0.0,4.527916402975157e-05,0.0,0.0,0.0,0.0,0.0,0.0001889331972558274,7.25099305139586e-05,0.00011103719637949187,0.0,0.0 +98736,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,20241.0,,2584.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004751783917022033,0.002003891926004254,0.0,0.006755675843026288,0.0025231798748703398,0.0006710636386857118,0.0026756833117375827,0.0004237913640621539,0.000461957653670499,0.0025231798748703398,0.0006710636386857118,0.0006717913857333284,0.0004237913640621539,0.000461957653670499,0.0,0.002003891926004254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013388845047417305,0.0,0.0,0.0005662590695907098,0.0002811178372274129,0.0007001475200648828,0.00030068149421438796,7.996909756714542e-05,8.00558214951011e-05,5.050223404619944e-05,5.5050422267875854e-05,0.0,0.00013388845047417305,0.0,0.0,0.0,0.0,0.00026149835680640363,6.954797023254531e-05,0.0002773035709115464,4.3921064223252186e-05,4.787655789113523e-05 +98737,50.0,the Greater Atlanta and Macon Area,G1300570090100,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,7222.0,,935.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0005576915256418549,0.0002751630100652031,0.0,0.0008328545357070582,0.0004026169450195628,0.00020730829054098232,0.000222929300146513,0.0,0.0,0.00012745393495435967,0.00020730829054098232,0.000222929300146513,0.0,0.0,0.0002751630100652031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8384507304565474e-05,0.0,0.0,6.645800037948237e-05,4.019645546437358e-05,8.484250768404784e-05,1.5188205787804882e-05,2.4704148831356123e-05,2.656564576032137e-05,0.0,0.0,1.8384507304565474e-05,0.0,0.0,0.0,0.0,0.0,4.1014402620201316e-05,2.1118400007581366e-05,2.270970505626514e-05,0.0,0.0 +98738,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030402,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,7344.0,,473.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017633148121220343,0.0003749111652602805,0.0,0.0021382259773823145,0.001098763474626699,0.0003095725770062277,0.000622536144035767,0.0,0.00010735378171362103,0.0008312060910800395,0.0003095725770062277,0.000622536144035767,0.0,0.0,0.0002675573835466595,0.0,0.00010735378171362103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5046905284906856e-05,0.0,0.0,0.00021013344005027716,9.667487972483301e-05,0.000235180345335184,9.905445931075445e-05,3.689162599006508e-05,7.41873547494576e-05,0.0,0.0,1.7874859606590267e-05,0.0,7.17204567831659e-06,0.0,0.0,0.0,0.00012085138621351175,3.404943459519568e-05,6.847183921935288e-05,0.0,1.1807685307123692e-05 +98739,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,32411.0,,2960.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002884485406314787,0.0008712472331854843,0.0,0.0037557326395002712,0.0013028351665500787,0.001069103124986774,0.0013837943479634185,0.0,0.0,0.00043158793336459426,0.001069103124986774,0.0013837943479634185,0.0,0.0,0.0008712472331854843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8211131400981115e-05,0.0,0.0,0.00034373960761962993,0.0001699532976441627,0.000401950739020611,5.1431657980772816e-05,0.00012740334476414714,0.00016490460487470995,0.0,0.0,5.8211131400981115e-05,0.0,0.0,0.0,0.0,0.0,0.00013943366269184804,0.00011441889836835055,0.0001480981779604124,0.0,0.0 +98740,50.0,the Greater Atlanta and Macon Area,G1301530020900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,38765.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034183967487217788,0.0,0.0,0.0034183967487217788,0.0020446899669505775,0.0010074011725519148,0.00036627523561984926,0.0,0.0,0.0020446899669505775,0.0010074011725519148,0.00036627523561984926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040736236126324033,0.00010149727261225573,0.00040736236126324033,0.00024366093061014543,0.00012004964623944106,4.3648164862707504e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024366093061014543,0.00012004964623944106,4.3648164862707504e-05,0.0,0.0 +98741,35.0,Eastern Counties in South Carolina and Georgia,G1301790010501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,262452.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02333125146452148,0.0,0.0,0.02333125146452148,0.004649690181346055,0.0070218433001269925,0.011659687293442135,0.0,0.0,0.004649690181346055,0.0070218433001269925,0.011659687293442135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002780338926204906,0.0008134339108030813,0.002780338926204906,0.0005540943496171918,0.0008367791282324431,0.0013894617911358051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005540943496171918,0.0008367791282324431,0.0013894617911358051,0.0,0.0 +98742,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,19806.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.004755822154157655,0.0,0.0,0.004755822154157655,0.002579137387486563,0.0011491320825339373,0.0008861235880429398,0.0,0.00014151180316795503,0.002579137387486563,0.0011491320825339373,0.0008861235880429398,0.0,0.00014151180316795503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005667378367829174,0.00014851884197090054,0.0005667378367829174,0.0003073484870480765,0.00013693881089808796,0.00010559683460213867,0.0,1.686356020200292e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003073484870480765,0.00013693881089808796,0.00010559683460213867,0.0,1.686356020200292e-05 +98743,50.0,the Greater Atlanta and Macon Area,G1301390000400,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,42643.0,,3596.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.003637884551317092,0.001058361762782578,0.0,0.00469624631409967,0.0016439194509427473,0.0010381986914449874,0.002014158861318234,0.0,0.0,0.0005855576881601692,0.0010381986914449874,0.002014158861318234,0.0,0.0,0.001058361762782578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0712835338062e-05,0.0,0.0,0.0004335208010594271,0.00018449805277222567,0.000504233636397489,6.977995987964933e-05,0.0001237204540235145,0.00024002404438686504,0.0,0.0,7.0712835338062e-05,0.0,0.0,0.0,0.0,0.0,0.0001765068157103977,0.000111470878330789,0.00021625923748410197,0.0,0.0 +98744,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,Electricity,90433.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011339594699757096,0.0,0.0,0.011339594699757096,0.004206747093651312,0.0024049296183068832,0.0047279179877989,0.0,0.0,0.004206747093651312,0.0024049296183068832,0.0047279179877989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013513175700816148,0.0004149222330609497,0.0013513175700816148,0.0005013099154824781,0.0002865908115831844,0.0005634168430159523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005013099154824781,0.0002865908115831844,0.0005634168430159523,0.0,0.0 +98745,50.0,the Greater Atlanta and Macon Area,G1300670031404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,27652.0,,8537.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0060287807635722645,0.005872287786816201,0.0,0.011901068550388466,0.004384385268126335,0.0005012508774281056,0.004814346494364923,0.00036971645058547493,0.0018312977399126125,0.002325520060181188,0.0005012508774281056,0.0026083836258667583,0.00036971645058547493,0.0002238380295397221,0.002058865207945146,0.0022059628684981646,0.0016074597103728904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039234972874211326,0.0,0.0,0.000718439594518667,0.0005918372706124198,0.0011107893232607802,0.00027712828755969277,5.9733218249951984e-05,0.00031083665968414703,4.4058483342180926e-05,2.6674398935198192e-05,0.0001375605616038477,0.00014738871194521018,0.00010740045519305534,0.0,0.0,0.0,0.0004092177374054045,4.6784380794450894e-05,0.0004493482800957369,3.450758091220408e-05,0.00017092465005086695 +98746,35.0,Eastern Counties in South Carolina and Georgia,G1300510011600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,7562.0,,,,8.72605822017302,Office,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,26178.17466051906,0.0,0.0,0.0015187499950749023,0.0,0.0,0.001518749995074902,0.0007619802703602393,0.0003267756483440036,0.0003889713677959628,0.0,4.094000150095717e-05,0.0007619802703602393,0.0003267756483440036,0.0003889713677959628,0.0,4.094000150095717e-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.00018098943567135088,5.7377644994574084e-05,0.00018098943567135088,9.080518819583704e-05,3.8941853745984165e-05,4.635371758222312e-05,0.0,4.87881994539665e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.080518819583706e-05,3.894185374598417e-05,4.635371758222313e-05,0.0,4.878819945396651e-06 +98747,50.0,the Greater Atlanta and Macon Area,G1301210009801,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,111403.0,,595.0,,9.325022323477118,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.028585999855555978,0.0005041432375454622,0.0,0.029090143093101442,0.02073227195495075,0.0025418400015024454,0.005311887899102784,0.0,0.0005041432375454622,0.02073227195495075,0.0025418400015024454,0.005311887899102784,0.0,0.0,0.0,0.0,0.0005041432375454622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.368217418177983e-05,0.0,0.0,0.003406539919316379,0.001067343065645375,0.003440222093498159,0.002470625914417208,0.0003029062994957773,0.0006330077054033942,0.0,0.0,0.0,0.0,3.368217418177983e-05,0.0,0.0,0.0,0.002451813997599339,0.00030059990091213447,0.0006281878384095164,0.0,5.962035657716941e-05 +98748,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,131032.0,,,,9.325022323477118,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.034521968294684804,0.0,0.0,0.034521968294684804,0.01893029574052633,0.0032603148223311726,0.011817669005211898,0.0,0.0005136887266153974,0.01893029574052633,0.0032603148223311726,0.011817669005211898,0.0,0.0005136887266153974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004113919111225697,0.0013786464479781445,0.004113919111225697,0.0022558883306806163,0.000388525687229303,0.0014082897578631438,0.0,6.121533545263255e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0022558883306806163,0.000388525687229303,0.0014082897578631438,0.0,6.121533545263255e-05 +98749,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960101,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,33564.0,,8156.0,,7.56685751697572,Food Service,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,22700.572550927158,0.0,0.0,0.006988680855645204,0.005610796772493283,0.0,0.012599477628138487,0.003240953770224448,0.0002803533667000236,0.006571127184392315,0.0003689275309043032,0.002138259215859428,0.002517586142560995,0.0002803533667000236,0.0035525770442872777,0.0003689275309043032,0.0002693084911636195,0.000723367627663453,0.0030185501401050374,0.0018689507246958078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003748825598899218,0.0,0.0,0.0008328242887177486,0.0006158690674619047,0.0012077068486076703,0.0003000146854281345,3.3409036416789944e-05,0.0004233520618749739,4.396420653056215e-05,3.2092845163736566e-05,4.833144364262388e-05,0.00020168290700285082,0.00012487300117818118,0.0,0.0,0.0,0.0003106574875437283,2.6872914178415852e-05,0.0006298670101956554,3.536307764997982e-05,0.0002049601082924764 +98750,50.0,the Greater Atlanta and Macon Area,G1301170130509,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,238988.0,,21208.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01122174077672704,0.0036065505468143603,0.0,0.014828291323541399,0.006135786603384892,0.004248407360581692,0.0021053563061013297,0.0,0.0023387233231120645,0.0053304203966018345,0.004248407360581692,0.0013080219530415553,0.0,0.0003348733361405373,0.0008053662067830585,0.0007973343530597744,0.0020038499869715273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002409688387767356,0.0,0.0,0.0013372735169676785,0.0005327231347550615,0.001578242355744414,0.0006352160660726846,0.000506274629367572,0.00015587448972644897,0.0,3.990621890750602e-05,5.38099098070196e-05,5.32732678163413e-05,0.0001338856611533747,0.0,0.0,0.0,0.0006530596204228367,0.0004521772802157908,0.00022408262851887067,0.0,0.00024892093946406635 +98751,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,24263.0,,1109.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006123962567953278,0.0008800859716599702,0.0,0.007004131246686988,0.003409681821976687,0.0017983826113875004,0.0016275097970420915,0.0,0.0001684743092069692,0.0026980701595236863,0.0017983826113875004,0.0016275097970420915,0.0,0.0,0.0007116116624530009,0.0,0.0001684743092069692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8804698686027255e-05,0.0,0.0,0.0007297832818816371,0.0002640433122778172,0.0007885879805676644,0.0003215249071031111,0.00021431051376525197,0.00019394786101327395,0.0,0.0,4.754775185551907e-05,0.0,1.1256946830508176e-05,0.0,0.0,0.0,0.00038389259248143174,0.000202478060712081,0.000183239665134857,0.0,1.896835033436852e-05 +98752,50.0,the Greater Atlanta and Macon Area,G1301170130307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7743.0,,514.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015285094297761404,0.000407580459387307,0.0,0.0019360071820897081,0.0013272831193684056,0.00029551237447054545,0.00026863257550527054,0.0,4.4579112745486695e-05,0.0009197026599810986,0.00029551237447054545,0.00026863257550527054,0.0,4.4579112745486695e-05,0.000407580459387307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.722957510704841e-05,0.0,0.0,0.00018214842624707003,6.830801029827249e-05,0.00020937800135411845,0.00010959853362195872,3.5215428114321806e-05,3.201223356152176e-05,0.0,5.312374966028394e-06,2.722957510704841e-05,0.0,0.0,0.0,0.0,0.0,0.00014354486353942641,3.19594838874857e-05,2.905244994865759e-05,0.0,4.82120397854878e-06 +98753,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,FuelOil,117307.0,,14134.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010451897837596041,0.0041604978569606725,0.0,0.014612395694556716,0.007819588926229477,0.002387804817992765,0.004405001950334471,0.0,0.0,0.0036590910692688053,0.002387804817992765,0.004405001950334471,0.0,0.0,0.0041604978569606725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027797953097128916,0.0,0.0,0.0012455322695457843,0.0006251545905206512,0.0015235118005170734,0.00043604674239997395,0.00028455004061453144,0.0005249354865312789,0.0,0.0,0.00027797953097128916,0.0,0.0,0.0,0.0,0.0,0.0008152828771767421,0.0002489563582581219,0.00045927256508220904,0.0,0.0 +98754,50.0,the Greater Atlanta and Macon Area,G1301210005200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,113637.0,,11859.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0057617468988674595,0.002016757690085326,0.0,0.0077785045889527836,0.003264514144660122,0.0020189562549014126,0.0008432737194991316,0.0,0.001651760469892119,0.0026474266457966046,0.0020189562549014126,0.0008432737194991316,0.0,0.00025209027867031074,0.0006170874988635178,0.0,0.0013996701912218083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001347477438577863,0.0,0.0,0.000686616576253516,0.00032049421550129183,0.0008213643201113021,0.00031548887018561996,0.0002405952319110915,0.00010049134824732964,0.0,3.004112590947483e-05,4.123011338619727e-05,0.0,9.351763047158905e-05,0.0,0.0,0.0,0.0003447134870538759,0.00021318990207921387,8.904474341608407e-05,0.0,0.00017441618756212842 +98755,35.0,Eastern Counties in South Carolina and Georgia,G1302450010300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,71180.0,,842.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.007776963644752105,0.0003128160251120243,0.0,0.008089818418287903,0.0051920562949164615,0.0006615130906369973,0.00210896046064315,0.0,0.00012724982366751992,0.0051920562949164615,0.0006615130906369973,0.0017961444355311254,0.0,0.00012724982366751992,0.0,0.0003128160251120243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0900855218979994e-05,0.0,0.0,0.0009267679325353275,0.0002997933736558458,0.0009476687877543075,0.0006187287864324511,7.883142410835414e-05,0.0002140435703560595,0.0,1.5164151638462692e-05,0.0,2.0900855218979994e-05,0.0,0.0,0.0,0.0,0.0006082150971191919,7.749188872650151e-05,0.00024705078653451836,0.0,1.490647625221597e-05 +98756,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,62415.0,,4661.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005360400083988258,0.0013719788495388026,0.0,0.006732378933527058,0.002214040267135171,0.001831463635028009,0.002686875031363879,0.0,0.0,0.000842061417596369,0.001831463635028009,0.002686875031363879,0.0,0.0,0.0013719788495388026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.166713443390987e-05,0.0,0.0,0.0006387880806086571,0.00028077827040413883,0.000730455215042567,0.00010034676297907611,0.00021825183228742348,0.0003201894853421574,0.0,0.0,9.166713443390986e-05,0.0,0.0,0.0,0.0,0.0,0.00024022077120306286,0.0001987116555048333,0.0002915227883346709,0.0,0.0 +98757,50.0,the Greater Atlanta and Macon Area,G1300670030230,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,106499.0,,6103.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009488950060793021,0.0017964774838486275,0.0,0.011285427544641648,0.004921999058025572,0.0022813118841397365,0.00408211660247634,0.0,0.0,0.0031255215741769443,0.0022813118841397365,0.00408211660247634,0.0,0.0,0.0017964774838486275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001200301184601675,0.0,0.0,0.001130778653910974,0.00048287898753568366,0.0012508087723711416,0.00037246197479957476,0.00027185924311662454,0.00048645743599477466,0.0,0.0,0.0001200301184601675,0.0,0.0,0.0,0.0,0.0,0.0005455247109626781,0.00025284685989157427,0.0004524372015168892,0.0,0.0 +98758,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,36170.0,,10936.0,,7.56685751697572,Food Service,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,22700.572550927158,0.0,0.0,0.007515392322783853,0.00752292291974049,0.0,0.015038315242524343,0.004659001037145109,0.00072652330638814,0.007732632114990135,0.00037609952800586436,0.0015440592559950903,0.004301190101748226,0.00072652330638814,0.0019211628635951734,0.00037609952800586436,0.00019041652304644735,0.0003578109353968835,0.005811469251394963,0.001353642732948643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005026394013358121,0.0,0.0,0.0008955934403870047,0.0007772824721652315,0.0013982328417228168,0.0005125637459145077,8.657824895141005e-05,0.0002289409234611472,4.481898692015738e-05,2.26915351397822e-05,2.390691441053613e-05,0.00038828969226012075,9.044279466515513e-05,0.0,0.0,0.0,0.00043318471216350496,6.755070171666548e-05,0.0007189648575504165,3.4968991095971746e-05,0.00014356357919625775 +98759,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,4125.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006887845101009523,0.0,0.0,0.0006887845101009524,0.00034290352772316853,0.0001237297823140039,0.00019667742135207305,0.0,2.5473778711706688e-05,0.00034290352772316853,0.0001237297823140039,0.00019667742135207305,0.0,2.5473778711706688e-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,8.207916848441579e-05,2.951993213530657e-05,8.207916848441579e-05,4.086217969937413e-05,1.4744288671071808e-05,2.343711126992564e-05,0.0,3.035588844044196e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.0862179699374124e-05,1.4744288671071806e-05,2.3437111269925636e-05,0.0,3.0355888440441956e-06 +98760,50.0,the Greater Atlanta and Macon Area,G1302170100100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,70008.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.006237662480008091,0.0,0.0,0.006237662480008091,0.0027594559502579457,0.0014101874093794427,0.0020679577411581067,0.0,0.0,0.0027594559502579457,0.0014101874093794427,0.0020679577411581067,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.3715244050036224e-10,0.0,0.0,0.0007433297278889425,0.0002686507029577603,0.0007433299650413831,0.0003288388314053346,0.0001680492053948187,0.0002464343766511223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003288389363183073,0.00016804925900935571,0.0002464344552737196,0.0,0.0 +98761,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,59547.0,,3886.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005229263396278172,0.0011438323163216804,0.0,0.006373126402206148,0.002776580750572064,0.001367099202137468,0.002229415759890321,0.0,0.0,0.0016327484342503835,0.001367099202137468,0.002229415759890321,0.0,0.0,0.0011438323163216804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.642515051318532e-05,0.0,0.0,0.0006231615191836883,0.0002638577073405477,0.0006995866696968736,0.00019457157110433937,0.00016291464994575204,0.000265675298133597,0.0,0.0,7.642515051318532e-05,0.0,0.0,0.0,0.0,0.0,0.0003047890090120833,0.0001500683208852615,0.0002447259709601072,0.0,0.0 +98762,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11588.0,,107.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002800296102665471,8.460933643531147e-05,0.0,0.002884905439100782,0.0013925390005487192,0.0005477689493754331,0.0008599881527413186,0.0,8.460933643531147e-05,0.0013925390005487192,0.0005477689493754331,0.0008599881527413186,0.0,0.0,0.0,0.0,8.460933643531147e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.65393161689352e-06,0.0,0.0,0.00033370679002563337,9.942685348100201e-05,0.00033936072164252696,0.00016594663664899252,6.527674612616723e-05,0.00010248340725047361,0.0,0.0,0.0,0.0,5.6539316168935195e-06,0.0,0.0,0.0,0.00016380884923870382,6.443582636502556e-05,0.00010116317719213887,0.0,9.952868846658782e-06 +98763,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2726.0,,,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,8726.05822017302,0.0,0.0,0.000654543781572879,0.0,0.0,0.000654543781572879,0.00037085851864705445,0.0001780683297607289,7.228598244815468e-05,0.0,3.33309507169409e-05,0.00037085851864705445,0.0001780683297607289,7.228598244815468e-05,0.0,3.33309507169409e-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,7.799843457448006e-05,2.887148959052575e-05,7.799843457448006e-05,4.419319947333441e-05,2.121943765969871e-05,8.613928710904165e-06,0.0,3.9718687305427684e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.419319947333441e-05,2.121943765969871e-05,8.613928710904165e-06,0.0,3.9718687305427684e-06 +98764,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,27043.0,,278.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006493497773420505,0.00022033164444151498,0.0,0.006713746710788279,0.003072236961120314,0.0012272075601438438,0.0021941359592300867,0.0,0.00022033164444151498,0.003072236961120314,0.0012272075601438438,0.0021941359592300867,0.0,0.0,0.0,0.0,0.00022033164444151498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4719324335961441e-05,0.0,0.0,0.000773814961919624,0.0002567626690601835,0.0007885342862555854,0.00036611130241831,0.0001462434583880602,0.0002614700571220413,0.0,0.0,0.0,0.0,1.4719324335961441e-05,0.0,0.0,0.0,0.00036083639787188156,0.0001441363934642486,0.0002577028158925091,0.0,2.5878107035231042e-05 +98765,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,68546.0,,6727.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0037895101463078862,0.0011439451884603866,0.0,0.0049334376044068515,0.002920013222268496,0.00073536673989669,0.0005243399782752215,0.0,0.0007537176639664445,0.0024107617815617394,0.00073536673989669,0.0005243399782752215,0.0,0.00011902391621281444,0.0005092514407067565,0.0,0.0006346937477536301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.643118134270401e-05,0.0,0.0,0.0004515878578968539,0.00021272256875226587,0.0005280190392395579,0.0002872853500328424,8.763208911370427e-05,6.248447911656604e-05,0.0,1.418382674431095e-05,3.40249599424223e-05,0.0,4.2406221400281714e-05,0.0,0.0,0.0,0.0003125249977443245,7.870529043321306e-05,5.611938647333116e-05,0.0,8.066936458868926e-05 +98766,50.0,the Greater Atlanta and Macon Area,G1300570091102,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,10938.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002482039282916616,0.0,0.0,0.002482039282916616,0.0008695821732950782,0.0007586719874106669,0.0007857172005234205,0.0,6.798521461371071e-05,0.0008695821732950782,0.0007586719874106669,0.0007857172005234205,0.0,6.798521461371071e-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.0002957842244834269,8.200872268116687e-05,0.0002957842244834269,0.00010362796855110796,9.041081943307147e-05,9.363379315536672e-05,0.0,8.101787155127522e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010362796855110796,9.041081943307147e-05,9.363379315536672e-05,0.0,8.101787155127522e-06 +98767,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,6053.0,,1139.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0005385719009183862,0.0003352225695898075,0.0,0.0008737944705081937,0.0004178389897432233,0.00023569617636635742,0.0002202593043986129,0.0,0.0,8.26164201534159e-05,0.00023569617636635742,0.0002202593043986129,0.0,0.0,0.0003352225695898075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.239843869862541e-05,0.0,0.0,6.417983216587142e-05,4.6264135465878616e-05,8.657827086449683e-05,9.845125545075266e-06,2.8087133798728848e-05,2.6247572822067308e-05,0.0,0.0,2.239843869862541e-05,0.0,0.0,0.0,0.0,0.0,4.14007852563966e-05,2.3353509421162393e-05,2.1823976186937824e-05,0.0,0.0 +98768,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,54228.0,,162.0,,5.759960461090961,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,215998.51729091106,0.0,0.0,0.00859498928838666,8.494809497716292e-05,0.0,0.008679937383363824,0.004469110541725921,0.0013603705852448238,0.0027654535675245427,0.0,8.494809497716292e-05,0.004469110541725921,0.0013603705852448238,0.0027654535675245427,0.0,0.0,0.0,0.0,8.494809497716292e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.67500694909622e-06,0.0,0.0,0.0010242479016345514,0.0002827092658625165,0.0010299229085836477,0.000532575078449557,0.00016211267642474516,0.00032955364091401664,0.0,0.0,0.0,0.0,5.67500694909622e-06,0.0,0.0,0.0,0.0005302848539827158,0.00016141554576100116,0.00032813646643083377,0.0,1.0079564539855438e-05 +98769,50.0,the Greater Atlanta and Macon Area,G1300670031207,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,28019.0,,1999.0,,9.325022323477118,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,163187.89066084955,0.0,0.0,0.006860289964067538,0.0016945894623876484,0.0,0.008554879426455187,0.004305545875489069,0.0014886543741196038,0.0025963730270223526,0.0,0.00016421776566610604,0.0026109564131014205,0.0014886543741196038,0.0025963730270223526,0.0,0.00016421776566610604,0.0016945894623876484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011322052747340091,0.0,0.0,0.0008175270431671731,0.0003381530213924252,0.000930747570640574,0.0003111424571587042,0.00017739996634927912,0.00030940458418787765,0.0,1.9569502907852557e-05,0.0001132205274734009,0.0,0.0,0.0,0.0,0.0,0.0004684316591886202,0.00016196153951048833,0.00028247831055394553,0.0,1.786644543195911e-05 +98770,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Electricity,3692.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0003117849982285224,0.0,0.0,0.0003117849982285224,0.00019144479725614978,0.00010776553080514346,1.2544296567791503e-05,0.0,0.0,0.00019144479725614978,0.00010776553080514346,1.2544296567791503e-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,3.7155053787941155e-05,1.2006822766103059e-05,3.7155053787941155e-05,2.2814252705834698e-05,1.284229233703022e-05,1.4948891587354797e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2814252705834698e-05,1.284229233703022e-05,1.4948891587354797e-06,0.0,0.0 +98771,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6107.0,,1151.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005195707919821826,0.0003351726697955914,0.0,0.0008547434617777742,0.0006462590752370456,0.00016161792260827745,4.6836090333013303e-05,0.0,0.0,0.00031108640544145414,0.00016161792260827745,4.6836090333013303e-05,0.0,0.0,0.0003351726697955914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.239335230869974e-05,0.0,0.0,6.19163090940019e-05,3.9515640385842584e-05,8.430966140270162e-05,3.7071602814262094e-05,1.9259714760270322e-05,5.581371952703783e-06,0.0,0.0,2.239335230869974e-05,0.0,0.0,0.0,0.0,0.0,6.374530633827093e-05,1.5941569536397968e-05,4.619789555558291e-06,0.0,0.0 +98772,50.0,the Greater Atlanta and Macon Area,G1302470060308,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,66457.0,,7502.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005607359345865871,0.002208362689970097,0.0,0.007815722035835969,0.003680972758559067,0.0015555333848053631,0.0025792158924715374,0.0,0.0,0.00147261006858897,0.0015555333848053631,0.0025792158924715374,0.0,0.0,0.002208362689970097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001475504840249595,0.0,0.0,0.0006682181995577813,0.0003584140646360901,0.0008157686835827408,0.00017548810197239685,0.00018536991364981884,0.0003073601839355656,0.0,0.0,0.0001475504840249595,0.0,0.0,0.0,0.0,0.0,0.0003842028014539643,0.00016235933363205243,0.000269206548496724,0.0,0.0 +98773,50.0,the Greater Atlanta and Macon Area,G1300670031110,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,20992.0,,1266.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005260087182746213,0.0010044774105638886,0.0,0.006264564593310101,0.0034846971378582397,0.0011833728110620108,0.0014534114068208495,0.0,0.00014316594464274115,0.0024802197272943507,0.0011833728110620108,0.0014534114068208495,0.0,0.00014316594464274115,0.0010044774105638886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.711162189352663e-05,0.0,0.0,0.0006268337189906354,0.00021738537688834167,0.000693945340884162,0.0002955626592413587,0.00014102009231777246,0.00017320003370842996,0.0,1.7060789754128047e-05,6.711162189352663e-05,0.0,0.0,0.0,0.0,0.0,0.00038601076055492714,0.00013108589376545457,0.00016099891047947535,0.0,1.5858937804584978e-05 +98774,35.0,Eastern Counties in South Carolina and Georgia,G1302450010506,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,23834.0,,286.0,,9.325022323477118,Office,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,163187.89066084955,0.010544230055956108,0.0,0.006323444588041741,0.0002420842089125212,0.0,0.017109758852910373,0.013358823569216142,0.0016872535772690875,0.0018216858816706733,0.0,0.0002420842089125212,0.002814593513260036,0.0016872535772690875,0.0018216858816706733,0.0,0.0,0.0,0.0,0.0002420842089125212,0.0,0.0,0.0,0.010544230055956108,0.0,0.0,0.0,1.6177013411178968e-05,0.0,0.0,0.0007535555392473313,0.0002947815106924801,0.0007697325526585101,0.00033541094622029864,0.0002010675133724447,0.00021708761226398412,0.0,0.0,0.0,0.0,1.6177013411178968e-05,0.0,0.0,0.0,0.0006009857564239321,7.590603784533307e-05,8.195386830959453e-05,0.0,1.0890866299547787e-05 +98775,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,107442.0,,1302.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008780430499064735,0.0003793358833780825,0.0,0.00915973600884338,0.0063118465783608925,0.002030141012819894,0.0008177484176625924,0.0,0.0,0.005932510694982811,0.002030141012819894,0.0008177484176625924,0.0,0.0,0.0003793358833780825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534455925980384e-05,0.0,0.0,0.0010463453683032266,0.0002681816410591576,0.0010716899275630303,0.0007069647768142826,0.00024192761915179265,9.74493527794209e-05,0.0,0.0,2.5344559259803842e-05,0.0,0.0,0.0,0.0,0.0,0.0007384866109483752,0.00023752667902995786,9.567663758469691e-05,0.0,0.0 +98776,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,22566.0,,6099.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005204199998290446,0.004730274948725804,0.0,0.00993447494701625,0.0037530723853426468,0.001043104101584008,0.003975196956431892,0.00042645976990341534,0.0007367225945373562,0.002841124473895791,0.001043104101584008,0.0008935925136903003,0.00042645976990341534,0.0,0.0009119479114468558,0.003081604442741592,0.0007367225945373562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000316047347021486,0.0,0.0,0.0006201751993509197,0.0005033672538510837,0.0009362225463724057,0.00033857171852694093,0.00012430484884441988,0.00010648782051005305,5.0820447504300046e-05,0.0,6.093064804027964e-05,0.00020589350920509464,4.922318977611171e-05,0.0,0.0,0.0,0.0003536886452545506,9.830188141043011e-05,0.00037462161178435305,4.018946686500841e-05,6.942856135894795e-05 +98777,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,8899.0,,594.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021369026642024864,0.0004714303203140522,0.0,0.0026083329845165383,0.0010380564825020473,0.0006905213586494776,0.0008064766760319867,0.0,7.327846733302637e-05,0.0006399046295210214,0.0006905213586494776,0.0008064766760319867,0.0,0.0,0.0003981518529810259,0.0,7.327846733302637e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.149813946651364e-05,0.0,0.0,0.00025465132807549423,0.00010219248168376052,0.00028614946754200796,7.625642780973403e-05,8.228834377452105e-05,9.610655649123907e-05,0.0,0.0,2.6602112875753802e-05,0.0,4.89602659075984e-06,0.0,0.0,0.0,0.0001138809007552951,7.575425387665992e-05,8.847523410603798e-05,0.0,8.039078804014936e-06 +98778,35.0,Eastern Counties in South Carolina and Georgia,G1301270000102,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,34627.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003085226121108061,0.0,0.0,0.003085226121108061,0.0011151375344333283,0.0008419079695648805,0.0011281499275035544,0.0,0.0,0.0011151375344333283,0.0008419079695648805,0.0011281499275035544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000367659283018726,0.00011850162430505586,0.000367659283018726,0.00013288836872345,0.00010032823148366368,0.0001344390256019931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013288836872345,0.00010032823148366368,0.0001344390256019931,0.0,0.0 +98779,50.0,the Greater Atlanta and Macon Area,G1301210011412,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,35936.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029979957589038563,0.0,0.0,0.002997995758903856,0.0019133545229817384,0.0006790018154309419,0.00040563942049117563,0.0,0.0,0.0019133545229817384,0.0006790018154309419,0.00040563942049117563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003572655288509546,0.00010391146165899384,0.0003572655288509546,0.00022801086809487995,8.091537219832112e-05,4.833928855775347e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022801086809488,8.091537219832113e-05,4.833928855775348e-05,0.0,0.0 +98780,35.0,Eastern Counties in South Carolina and Georgia,G1300730030202,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,4069.0,,50.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006788596612522353,3.928586002617102e-05,0.0,0.0007181455212784064,0.0003580389222174619,0.00014556444978118104,0.00018973002715797123,0.0,2.4812122121792227e-05,0.00031875306219129076,0.00014556444978118104,0.00018973002715797123,0.0,2.4812122121792227e-05,3.928586002617102e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.626591044541996e-06,0.0,0.0,8.089696805260652e-05,3.222731911642883e-05,8.352355909714851e-05,3.7984516919437804e-05,1.734632843233278e-05,2.2609362172597386e-05,0.0,2.9567605282385424e-06,2.626591044541996e-06,0.0,0.0,0.0,0.0,0.0,4.1641539483076806e-05,1.6929801222040923e-05,2.206645682009198e-05,0.0,2.8857615719387946e-06 +98781,35.0,Eastern Counties in South Carolina and Georgia,G1300730030307,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,2625.0,,246.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00029667027350289575,0.00019527140109850481,0.0,0.0004918589675276614,0.00026590324207187335,0.00011264703443293672,5.731600210134005e-05,0.0,5.6075395995250426e-05,0.00012670723696861898,0.00011264703443293672,5.731600210134005e-05,0.0,0.0,0.00013919600510325437,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3045765405297087e-05,0.0,0.0,3.535064579508936e-05,2.3743526578475122e-05,4.839641120038645e-05,1.509818493394951e-05,1.3422798877310207e-05,6.829661983829642e-06,0.0,0.0,9.299459202505292e-06,0.0,3.7463062027917936e-06,0.0,0.0,0.0,2.616352144093533e-05,1.1083893064557985e-05,5.639601977781706e-06,0.0,5.5175326709033135e-06 +98782,35.0,Eastern Counties in South Carolina and Georgia,G1300510004209,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,25768.0,,5326.0,,3.3063363735822096,Lodging,Zone-by-Zone,Before 1946,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.003282689163886874,0.0016008715262670241,0.0,0.0048835606901539,0.0014292018406337388,0.0004495125904935831,0.0020434584138535328,0.0,0.0009613565071508397,0.0014292018406337388,0.0004495125904935831,0.0014039747327595524,0.0,0.0,0.0,0.0006394836810939804,0.0009613565071508397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010696055565232449,0.0,0.0,0.00039119146297581273,0.000256296776018218,0.0004981520186281373,0.00017031510783166665,5.356751100156617e-05,0.00016730884414257994,0.0,0.0,0.0,4.2726432907394364e-05,6.423202892777305e-05,0.0,0.0,0.0,0.00014578702449099894,4.585293775597267e-05,0.0002084448209881281,0.0,9.80640387297806e-05 +98783,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,24480.0,,1790.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0021602720769015966,0.0005268484713126636,0.0,0.0026871205482142608,0.0010630879621524245,0.0009092409657820403,0.0007148529994923911,0.0,0.0,0.0005362394908397607,0.0009092409657820403,0.0007148529994923911,0.0,0.0,0.0005268484713126636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.520082040038913e-05,0.0,0.0,0.00025743649003405326,0.00011907918126538046,0.00029263731043444236,6.39028823338923e-05,0.0001083529270821397,8.518799508975869e-05,0.0,0.0,3.520082040038913e-05,0.0,0.0,0.0,0.0,0.0,0.00011577418891990547,9.901968519428518e-05,7.785012074224476e-05,0.0,0.0 +98784,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,Electricity,63853.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005410393452647215,0.0,0.0,0.005410393452647214,0.0014466159720548163,0.0015998184866929483,0.00236395899389945,0.0,0.0,0.0014466159720548163,0.0015998184866929483,0.00236395899389945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006447443811809164,0.00019256428380041093,0.0006447443811809164,0.00017238996163071265,0.00019064675965478115,0.00028170765989542256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017238996163071267,0.00019064675965478118,0.0002817076598954226,0.0,0.0 +98785,35.0,Eastern Counties in South Carolina and Georgia,G1302450010300,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,74347.0,,1713.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00606032280141687,0.0004990382387622624,0.0,0.006559391413778571,0.0040974896849510336,0.0019274478731208552,0.0005344234821072434,0.0,0.0,0.0035984514461887716,0.0019274478731208552,0.0005344234821072434,0.0,0.0,0.0004990382387622624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3343380935631084e-05,0.0,0.0,0.0007221978220319587,0.00020606527888285782,0.0007555412029675899,0.0004288210186621906,0.00022969051346944278,6.368628990032534e-05,0.0,0.0,3.3343380935631084e-05,0.0,0.0,0.0,0.0,0.0,0.0004719679144641607,0.0002220124082938609,6.155738163715343e-05,0.0,0.0 +98786,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2004,gen3_t5_cfl,50001_100000,NaturalGas,40890.0,,8201.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.0039362489037433595,0.0024138909833458125,0.0,0.006350170576695469,0.003195125601260134,0.0011947156835632716,0.001960329291872063,0.0,0.0,0.000781234617914322,0.0011947156835632716,0.001960329291872063,0.0,0.0,0.0024138909833458125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000161282943028081,0.0,0.0,0.0004690768981413757,0.00029402461156004603,0.0006303598411694567,9.309856166448509e-05,0.00014237248220603157,0.0002336095115053681,0.0,0.0,0.000161282943028081,0.0,0.0,0.0,0.0,0.0,0.0003171692543060629,0.00011859536361076851,0.00019459522325262536,0.0,0.0 +98787,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,24623.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005875910523240706,0.0014962479299000374,0.0,0.0073722393139238115,0.003738113140474969,0.0006348380078710113,0.002128902696628198,0.0004215272621362352,0.00044877734603032904,0.003738113140474969,0.0006348380078710113,0.0006326547667281611,0.0004215272621362352,0.00044877734603032904,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99716943603331e-05,0.0,0.0,0.0007002252752283124,0.00034021727759313075,0.0008001969695886455,0.00044546650128021866,7.565289107596958e-05,7.539271682312902e-05,5.023290296510373e-05,5.348026308389138e-05,0.0,9.99716943603331e-05,0.0,0.0,0.0,0.0,0.00040574195703849304,6.890653279779379e-05,0.00023107517456378993,4.575337606354593e-05,4.871115234081717e-05 +98788,81.0,the Columbus-Albany Area,G1302150000900,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,6773.0,,141.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0013165311997822954,0.00011223349906424016,0.0,0.0014287646988465359,0.0008021759081975427,0.0004354527432374536,0.0001602036018330385,0.0,3.0849738504761666e-05,0.0007207921476380641,0.0004354527432374536,0.0001602036018330385,0.0,0.0,8.138376055947849e-05,0.0,3.0849738504761666e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.497287852940869e-06,0.0,0.0,0.00015689319378873069,4.731674504447538e-05,0.00016439048164167158,8.589798868380374e-05,5.18936213907317e-05,1.909172737584944e-05,0.0,0.0,5.436500550695516e-06,0.0,2.060787302245353e-06,0.0,0.0,0.0,9.229657200825311e-05,5.010222204592768e-05,1.8432669345291916e-05,0.0,3.54950215064217e-06 +98789,50.0,the Greater Atlanta and Macon Area,G1300570090802,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,7391.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015476147638099204,0.0,0.0,0.0015476147638099204,0.0008541159505058278,0.0002666476057355272,0.0003778059128411563,0.0,4.90452947274093e-05,0.0008541159505058278,0.0002666476057355272,0.0003778059128411563,0.0,4.90452947274093e-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.00018442357336112086,4.6998491137105594e-05,0.00018442357336112086,0.00010178186415670669,3.177541687239493e-05,4.502174450158188e-05,0.0,5.8445478304374025e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010178186415670669,3.177541687239493e-05,4.502174450158188e-05,0.0,5.8445478304374025e-06 +98790,35.0,Eastern Counties in South Carolina and Georgia,G1300730030201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,78576.0,,9124.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003783871891376309,0.0015515839278688207,0.0,0.00533547354960655,0.0021139909921128962,0.0008373872395076738,0.0020028038956477444,0.0,0.00038129142233823553,0.0018127344212247787,0.0008373872395076738,0.0010384318076496527,0.0,9.531842299420387e-05,0.0003012565708881172,0.0009643720879980919,0.00028597299934403163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010366809182864568,0.0,0.0,0.0004509175901524395,0.00022249409288778834,0.0005545856819810852,0.00021602048385093277,9.979001586278917e-05,0.0001237481557740337,0.0,1.1358934664683874e-05,2.0128265892589634e-05,6.443390678381747e-05,1.9107103795043153e-05,0.0,0.0,0.0,0.00021973478551857057,8.704062891266096e-05,0.00020817765358879646,0.0,3.963261396105727e-05 +98791,35.0,Eastern Counties in South Carolina and Georgia,G1300730030202,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,49988.0,,4865.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002402268938441534,0.000827405046028184,0.0,0.003229673984469718,0.0012071539269228753,0.0009217837598671251,0.0007424588844647111,0.0,0.0003582774132150069,0.0012071539269228753,0.0009217837598671251,0.00019565453827028267,0.0,7.769444374267138e-05,0.0,0.0005468043461944284,0.00028058296947233556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5282032006296393e-05,0.0,0.0,0.000286274397016283,0.00012881201706412996,0.0003415564290225794,0.0001438545272786471,0.00010984743873288265,2.3315826163560753e-05,0.0,9.258717738896532e-06,0.0,3.653404763798442e-05,1.8746799736417097e-05,0.0,0.0,0.0,0.00012766340706306883,9.748388563835679e-05,7.851925813357038e-05,0.0,3.788987818758343e-05 +98792,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,4507.0,,431.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010822220598788379,0.0003422418711332541,0.0,0.0014244639310120916,0.0008863717092641577,0.0003461291035990016,0.0001579705108420772,0.0,3.3992607306855354e-05,0.000578122445437759,0.0003461291035990016,0.0001579705108420772,0.0,0.0,0.0003082492638263987,0.0,3.3992607306855354e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2865092988697335e-05,0.0,0.0,0.0001289694654923113,6.620849555952094e-05,0.00015183455848100864,6.889541947201039e-05,4.124854513452982e-05,1.8825500885771075e-05,0.0,0.0,2.0594055478220142e-05,0.0,2.271037510477188e-06,0.0,0.0,0.0,9.447895042913371e-05,3.689413152430014e-05,1.683818189042133e-05,0.0,3.6232946371534904e-06 +98793,50.0,the Greater Atlanta and Macon Area,G1300890021209,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,79769.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.006314823191105794,0.0,0.0,0.006314823191105794,0.004078263196506938,0.0018765113468637454,0.00036004864773511003,0.0,0.0,0.004078263196506938,0.0018765113468637454,0.00036004864773511003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007525248917693637,0.00021918158277445008,0.0007525248917693637,0.000485998495552644,0.00022362011658403141,4.290627963268817e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000485998495552644,0.00022362011658403141,4.290627963268817e-05,0.0,0.0 +98794,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,60202.0,,861.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.005363898699106195,0.00025346545841272724,0.0,0.005617333467912624,0.0023529414252385747,0.0018133260777060667,0.0014510659649679832,0.0,0.0,0.002099475966825847,0.0018133260777060667,0.0014510659649679832,0.0,0.0,0.00025346545841272724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6934848991546052e-05,0.0,0.0,0.0006392038762452458,0.00021644831677358325,0.000656138725236792,0.00025018988078623437,0.00021609003502609918,0.00017292030322079718,0.0,0.0,1.6934848991546052e-05,0.0,0.0,0.0,0.0,0.0,0.00027483787390079385,0.00021180751825773528,0.00016949333307826289,0.0,0.0 +98795,50.0,the Greater Atlanta and Macon Area,G1300630040302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,252380.0,,9135.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.021303405038794472,0.0026890233038047175,0.0,0.02399239765299289,0.006355295740947185,0.006605262584241974,0.011031808638197435,0.0,0.0,0.0036662724371424676,0.006605262584241974,0.011031808638197435,0.0,0.0,0.0026890233038047175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017966382363078994,0.0,0.0,0.002538684378716085,0.0008685477932065776,0.0027183482023468747,0.0004369023894227957,0.0007871359958371168,0.0013146386790175693,0.0,0.0,0.00017966382363078992,0.0,0.0,0.0,0.0,0.0,0.000720057536668557,0.0007483788794932476,0.0012499083090404632,0.0,0.0 +98796,85.0,Rural Climate Zone 3A,G1302850960100,ComStock 90.1-2004,gen4_led,1001_5000,Propane,6423.0,,,3077.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005852385139666022,0.0,0.00028997675383221665,0.0008752152677988189,0.0006448011424640335,0.0001648071505492414,6.557660118610618e-05,0.0,0.0,0.0003548243886318168,0.0001648071505492414,6.557660118610618e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028997675383221665,0.0,0.0,0.0,0.0,2.338744443038224e-05,6.97404046816352e-05,4.6731315917392354e-05,9.312784911201744e-05,4.2282925445861646e-05,1.9639372835922386e-05,7.814486906147518e-06,0.0,0.0,0.0,0.0,0.0,2.338744443038224e-05,0.0,0.0,6.86104844282151e-05,1.7536411913302325e-05,6.97772084792107e-06,0.0,0.0 +98798,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,39097.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.003310691965115511,0.0,0.0,0.003310691965115511,0.002231609097890502,0.0007201884162685335,0.0003588944509564756,0.0,0.0,0.002231609097890502,0.0007201884162685335,0.0003588944509564756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003945300828901699,0.0001306226430309752,0.0003945300828901699,0.0002659374329132062,8.582374879961118e-05,4.276890117735253e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002659374329132062,8.582374879961118e-05,4.276890117735253e-05,0.0,0.0 +98799,50.0,the Greater Atlanta and Macon Area,G1302970110504,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,28001.0,,4342.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024231899340540165,0.0012780072750552369,0.0,0.0037012278987155513,0.0017311086224345209,0.0008419079695648805,0.0011281499275035544,0.0,0.0,0.00045310134737928395,0.0008419079695648805,0.0011281499275035544,0.0,0.0,0.0012780072750552369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.538973417590954e-05,0.0,0.0,0.00028876736712246957,0.00016549897281493959,0.00037415710129837904,5.399530646921327e-05,0.0001003287213742839,0.0001344396820514955,0.0,0.0,8.538973417590954e-05,0.0,0.0,0.0,0.0,0.0,0.00017499775802173816,8.510847050561708e-05,0.00011404466794686998,0.0,0.0 +98800,50.0,the Greater Atlanta and Macon Area,G1300570090702,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,13076.0,,2014.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011403030115974446,0.00059289250406532,0.0,0.0017331955156627648,0.0008311359177543868,0.00041326623840486564,0.0004887933595035122,0.0,0.0,0.00023824341368906672,0.00041326623840486564,0.0004887933595035122,0.0,0.0,0.00059289250406532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.961324321302285e-05,0.0,0.0,0.0001358889319798629,8.005540960309934e-05,0.0001755021751928858,2.839126329421024e-05,4.9248583217806914e-05,5.8249085467845736e-05,0.0,0.0,3.961324321302285e-05,0.0,0.0,0.0,0.0,0.0,8.416024627841935e-05,4.184705252142363e-05,4.94948763930428e-05,0.0,0.0 +98801,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,24282.0,,325.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0027118471861129864,0.00012081758532135412,0.0,0.0028326647714343404,0.001587096689280739,0.00034904580133892174,0.000835919746035142,0.0,6.060253477953748e-05,0.001587096689280739,0.00034904580133892174,0.0007151021607137879,0.0,6.060253477953748e-05,0.0,0.00012081758532135412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.071335086875696e-06,0.0,0.0,0.00032316651523383867,0.00010244078002090436,0.00033123785032071435,0.00018913178774987563,4.159523289267022e-05,8.521758692653519e-05,0.0,7.221907664757574e-06,0.0,8.071335086875696e-06,0.0,0.0,0.0,0.0,0.00018558726076939888,4.081569484144499e-05,9.774833312771901e-05,0.0,7.086561582151417e-06 +98802,50.0,the Greater Atlanta and Macon Area,G1301210001600,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,342564.0,,56834.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,280597.8237794184,0.0,0.0,0.01614058629368519,0.009665085965492082,0.0,0.025805689989538694,0.013207204378905973,0.004114064412101951,0.0030651716912144683,0.0,0.005419231776954879,0.009283244901949827,0.004114064412101951,0.001994967075900081,0.0,0.0007483099037333286,0.003923959476956145,0.001070204615314387,0.0046709218732215495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006457649172572344,0.0,0.0,0.0019234434270013422,0.001161641667266856,0.002569208344258577,0.0011062669015242017,0.0004902653477224414,0.0002377364885887299,0.0,8.917468916596911e-05,0.0002621761850856247,7.15048575174902e-05,0.0003120838746541195,0.0,0.0,0.0,0.001314906119866172,0.00040959527223160825,0.00030516776295638054,0.0,0.0005395374239738591 +98803,50.0,the Greater Atlanta and Macon Area,G1301510070111,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,94124.0,,14012.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0048450694830893095,0.002382836462325156,0.0,0.007227905945414465,0.0031213592065546156,0.0014933574209653674,0.0010134497284087982,0.0,0.0015997395894856842,0.0023047342202698238,0.0014933574209653674,0.0008256142795247588,0.0,0.00022136356232935924,0.0008166249862847919,0.0001878354488840394,0.0013783760271563249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015920705963737096,0.0,0.0,0.0005773774558695503,0.00032124244612116953,0.0007365845155069214,0.0002746506701708644,0.0001779604836278059,9.838683921982264e-05,0.0,2.6379462851057346e-05,5.456205868444064e-05,1.255005535852543e-05,9.209494559440489e-05,0.0,0.0,0.0,0.00031809280256914874,0.00015218570367511405,0.00010327906627841574,0.0,0.0001630269429842429 +98804,50.0,the Greater Atlanta and Macon Area,G1301210011419,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,135839.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,240343.828889517,0.0,0.0,0.013251849566693931,0.0,0.0,0.013251849566693934,0.009181574626839124,0.002988944426271406,0.0010813608871828404,0.0,0.0,0.009181574626839124,0.002988944426271406,0.0010813608871828404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001579198598437128,0.0005059412504768282,0.001579198598437128,0.0010941514019742664,0.00035618702317882176,0.0001288637928501556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010941514019742662,0.00035618702317882165,0.00012886379285015554,0.0,0.0 +98805,50.0,the Greater Atlanta and Macon Area,G1300890020500,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,135110.0,,9569.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010707392394594586,0.002787840824394051,0.0,0.013495233218988639,0.009972898012990871,0.002686180387075896,0.0008361548189218701,0.0,0.0,0.00718505718859682,0.002686180387075896,0.0008361548189218701,0.0,0.0,0.002787840824394051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001862673120540041,0.0,0.0,0.0012759796298679677,0.00046191270878337084,0.0014622469419219718,0.0008562296284867852,0.0003201070185669115,9.96429828142711e-05,0.0,0.0,0.0001862673120540041,0.0,0.0,0.0,0.0,0.0,0.0010805918938160061,0.00029105529283671535,9.059975526925009e-05,0.0,0.0 +98806,50.0,the Greater Atlanta and Macon Area,G1301210001202,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,13119.0,,1447.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031500643175090015,0.0011481395976490655,0.0,0.004298203915158068,0.0023930464715731206,0.0007582584520419704,0.0010526956345539048,0.0,9.428606406281046e-05,0.0012449068739240554,0.0007582584520419704,0.0010526956345539048,0.0,9.428606406281046e-05,0.0011481395976490655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.671121096825224e-05,0.0,0.0,0.00037538703006200625,0.0001945018282636055,0.00045209824103025853,0.00014835312774682486,9.036018304430576e-05,0.00012544768867669325,0.0,1.1235886635090376e-05,7.671121096825224e-05,0.0,0.0,0.0,0.0,0.0,0.00025170795100866856,7.975594438541072e-05,0.00011072574826979795,0.0,9.917296749494789e-06 +98807,50.0,the Greater Atlanta and Macon Area,G1300670030410,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11623.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028567850340294174,0.0,0.0,0.0028567850340294174,0.0017428861649084252,0.00042809181367465523,0.000620633881339763,0.0,6.517317410657426e-05,0.0017428861649084252,0.00042809181367465523,0.000620633881339763,0.0,6.517317410657426e-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.00034043732835000736,0.0001037898252279715,0.00034043732835000736,0.00020769623984018138,5.101484066875997e-05,7.39596917268885e-05,0.0,7.766556114177525e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00020769623984018138,5.101484066875997e-05,7.39596917268885e-05,0.0,7.766556114177525e-06 +98808,50.0,the Greater Atlanta and Macon Area,G1301210008602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,83107.0,,9249.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.008459882378325415,0.0015729490133799843,0.0,0.01003284912206682,0.004712552761835834,0.001964701348956051,0.001902627353624446,0.0,0.001452985388011907,0.0038584989825933107,0.001964701348956051,0.0011837143891255653,0.0,0.001452985388011907,0.0008540537792425233,0.0007189129644988809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010509568195733756,0.0,0.0,0.0010081484458072695,0.0003856030946275208,0.0011132441277646068,0.00045981014610989995,0.00023412980498406868,0.0001410610417863586,0.0,0.00017314956582113028,5.706311113343845e-05,4.803375546778071e-05,0.0,0.0,0.0,0.0,0.000522904473601201,0.0002180031028998423,0.00021111537739445152,0.0,0.00016122314122858202 +98809,50.0,the Greater Atlanta and Macon Area,G1301210011612,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,127141.0,,2750.0,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,215998.51729091106,0.0,0.0,0.021774882762102432,0.0014399684788673837,0.0,0.023214796647078446,0.011925435037735537,0.0015846422910071537,0.009609289196214881,0.0,9.537552822950105e-05,0.010580896680989028,0.0015846422910071537,0.009609289196214881,0.0,0.0,0.0013445383567465094,0.0,9.537552822950105e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.620875607168147e-05,0.0,0.0,0.0025948685399949712,0.0009542091593363991,0.0026910772960666526,0.0012609039608801398,0.00018883860239360476,0.0011451194708781076,0.0,0.0,8.983277390557218e-05,0.0,6.372334579057763e-06,0.0,0.0,0.0,0.0013824057114799945,0.0001836929677457703,0.0011139162828086545,0.0,1.1056005465853395e-05 +98810,50.0,the Greater Atlanta and Macon Area,G1301350050211,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,363514.0,,38127.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.018711949688989767,0.006483851328421949,0.0,0.025195818747773137,0.009600955248235753,0.006746242947077311,0.006295448507972469,0.0,0.0025532075052104434,0.008325521699484252,0.006746242947077311,0.0031409867166466146,0.0,0.0004992337865044268,0.001275433548751498,0.003154461791325854,0.0020539737187060167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043321358199908467,0.0,0.0,0.002229867522069167,0.0009686052672978492,0.002663081104068252,0.0009921366159340245,0.0008039369650789202,0.0003743054242403262,0.0,5.9492742602918745e-05,8.521711992907735e-05,0.00021076295903165273,0.0001372346876789319,0.0,0.0,0.0,0.0010147764102661405,0.000713046569181371,0.00066539968917255,0.0,0.0002698621834820161 +98811,85.0,Rural Climate Zone 3A,G1301050000500,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Electricity,3131.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,3237.924873899493,0.0,0.0,0.00027899921085241603,0.0,0.0,0.00027899921085241603,0.0001580207828268716,8.479538220055279e-05,3.6183045824991583e-05,0.0,0.0,0.0001580207828268716,8.479538220055279e-05,3.6183045824991583e-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,1.0924443260963878e-10,0.0,0.0,3.3249205562024054e-05,1.3295757384148882e-05,3.3249314806456666e-05,1.88318292199826e-05,1.0105329993166038e-05,4.312046348875411e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8831891094318044e-05,1.0105363195494417e-05,4.312060516644198e-06,0.0,0.0 +98812,85.0,Rural Climate Zone 3A,G1301330950500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,27569.0,,3100.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0024848146634998034,0.000912463374443299,0.0,0.003397278037943103,0.0015356772095307494,0.0008410793501948425,0.0010205214782175107,0.0,0.0,0.0006232138350874504,0.0008410793501948425,0.0010205214782175107,0.0,0.0,0.000912463374443299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.096494496101381e-05,0.0,0.0,0.00029611036931951115,0.0001540908814671459,0.00035707531428052494,7.426714015477254e-05,0.00010022973571092216,0.00012161349345381647,0.0,0.0,6.096494496101381e-05,0.0,0.0,0.0,0.0,0.0,0.0001614093448055356,8.840273594077639e-05,0.00010726323353421286,0.0,0.0 +98813,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,32590.0,,11272.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004443977750332554,0.0033181295433013266,0.0,0.007762107293633883,0.003975470220591823,0.001557221313151737,0.002229415759890321,0.0,0.0,0.0006573406772904959,0.001557221313151737,0.002229415759890321,0.0,0.0,0.0033181295433013266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002216985096046065,0.0,0.0,0.0005295798884586648,0.0003749022128270189,0.0007512783980632713,7.833396612590909e-05,0.00018557093119168748,0.00026567499114106823,0.0,0.0,0.00022169850960460647,0.0,0.0,0.0,0.0,0.0,0.00038477758498958183,0.00015072024764900164,0.00021578056542468765,0.0,0.0 +98814,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,13505.0,,2864.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0012033087733266286,0.000843074174604193,0.0,0.0020463829479308217,0.0010815631051436412,0.0004885478426531306,0.0004762413105277518,0.0,0.0,0.00023848893053944834,0.0004885478426531306,0.0004762413105277518,0.0,0.0,0.000843074174604193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.63297291374726e-05,0.0,0.0,0.0001433954767347826,0.00010492999227504742,0.0001997252058722552,2.842016500563635e-05,5.8219097506720505e-05,5.675255701421501e-05,0.0,0.0,5.63297291374726e-05,0.0,0.0,0.0,0.0,0.0,0.00010555962365551911,4.768184691482349e-05,4.6480740022880264e-05,0.0,0.0 +98815,50.0,the Greater Atlanta and Macon Area,G1300770170501,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,97950.0,,10525.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005086432893100489,0.0017899154460771704,0.0,0.006876348339177659,0.0031326889075020295,0.0011065341258640754,0.0016222394181277312,0.0,0.0010148858876838224,0.002739216726868218,0.0011065341258640754,0.0010611798613515803,0.0,0.00017951990937803465,0.00039347218063381174,0.0005610595567761508,0.0008353659783057876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011959110006813894,0.0,0.0,0.0006061413885465838,0.00025599464267099005,0.0007257324886147228,0.0003264277078355092,0.0001318637531687927,0.00012645896410622528,0.0,2.139307633248452e-05,2.628938201038255e-05,3.748653588394671e-05,5.5813997540517924e-05,0.0,0.0,0.0,0.00033062521046876923,0.00011678404369440199,0.00017121178159911727,0.0,0.00010711145285243426 +98816,50.0,the Greater Atlanta and Macon Area,G1300630040408,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,188738.0,,47701.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.044745932042358,0.04219142192328829,0.0,0.08693744618289906,0.06427026101674725,0.009440741252653729,0.0072456939848938575,0.0006585234020532384,0.005322042092045441,0.0279124102866372,0.009440741252653729,0.00510413272374243,0.0006585234020532384,0.0016300321600186305,0.036357850730110046,0.0021415612611514288,0.00369200993202681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00281898520534523,0.0,0.0,0.0053322915096138245,0.004083305874329096,0.008151276714959054,0.0033262712740769126,0.0011250360005537973,0.000608250232914795,7.847503863203583e-05,0.00019424797407364025,0.002429219936997622,0.00014308665686837412,0.000246678611479233,0.0,0.0,0.0,0.006025995760077925,0.0008851662629106179,0.0006793580816548283,6.174331900800706e-05,0.0004989959986822718 +98817,50.0,the Greater Atlanta and Macon Area,G1301210001201,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,64082.0,,2078.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003298627360032304,0.0003534192941859125,0.0,0.0036520466542182164,0.0015279493560958904,0.0009971732566251897,0.0005807225275909894,0.0,0.0005462015139061467,0.001174530061909978,0.0009971732566251897,0.0005807225275909894,0.0,0.0005462015139061467,0.0003534192941859125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.361294887339451e-05,0.0,0.0,0.00039309166771554863,0.00012889229894336293,0.00041670461658894315,0.00013996669839472817,0.00011883139732531104,6.920369048551613e-05,0.0,6.508988150999328e-05,2.361294887339451e-05,0.0,0.0,0.0,0.0,0.0,0.00017434157087337592,0.00011377913233797342,6.626140931821346e-05,0.0,6.232250405938033e-05 +98818,50.0,the Greater Atlanta and Macon Area,G1300890020900,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,308195.0,,41251.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014633753798040583,0.00701517706909667,0.0,0.021648948597498673,0.009200036315805519,0.00324029447096033,0.006045184456528423,0.0,0.003163433354204401,0.008114583589669886,0.00324029447096033,0.002807496348696841,0.0,0.0004713793887135239,0.0010854527261356327,0.003237688107831582,0.002692053965490877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046871369813688917,0.0,0.0,0.0017438764270664138,0.0008774516838146277,0.0022125901252033025,0.0009669993928270155,0.0003861396892858731,0.00033456396555086226,0.0,5.617337940266273e-05,7.252369489873949e-05,0.00021632365818971118,0.00017986752968899558,0.0,0.0,0.0,0.0009402724299606398,0.0003311682097127823,0.0006178367218763083,0.0,0.00032331276365357204 +98819,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,99644.0,,2500.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,70149.4559448546,0.0,0.0,0.004873136645217253,0.00042515633649144603,0.0,0.0052982929817087,0.00274003232349354,0.0020296831235605446,0.0004624610169192372,0.0,6.609878737395686e-05,0.002314875987002094,0.0020296831235605446,0.0004624610169192372,0.0,6.609878737395686e-05,0.00042515633649144603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8406443024710486e-05,0.0,0.0,0.0005807227411779108,0.00018365269072748998,0.0006091291842026214,0.00027585951852553614,0.0002418736089400333,5.5110629761807284e-05,0.0,7.876871055937491e-06,2.8406443024710486e-05,0.0,0.0,0.0,0.0,0.0,0.0003150134693684247,0.00023334670798924814,5.316778497037396e-05,0.0,7.59918346699207e-06 +98820,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,73630.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006420511154329804,0.0,0.0,0.006420511154329804,0.0022049868332773494,0.001447966314731915,0.002767588695926837,0.0,0.0,0.0022049868332773494,0.001447966314731915,0.002767588695926837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007651212270778994,0.0002540104182242426,0.0007651212270778994,0.0002627644732662848,0.0001725516453231347,0.0003298087657158663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002627644732662848,0.0001725516453231347,0.0003298087657158663,0.0,0.0 +98821,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,45608.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003934131320908817,0.0,0.0,0.003934131320908817,0.0020763973828899747,0.0007295840105152882,0.0011281499275035544,0.0,0.0,0.0020763973828899747,0.0007295840105152882,0.0011281499275035544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004688231615829579,0.00014619351169363386,0.0004688231615829579,0.00024744044017426935,8.694317869672331e-05,0.00013443954271196522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024744044017426935,8.694317869672331e-05,0.00013443954271196522,0.0,0.0 +98822,35.0,Eastern Counties in South Carolina and Georgia,G1302450000200,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,44237.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003847970565569903,0.0,0.0,0.003847970565569903,0.0018491143601708933,0.0017982993283115344,0.00020058725068691308,0.0,0.0,0.0018491143601708933,0.0017982993283115344,0.00020058725068691308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004585569612318573,0.0001292951653072479,0.0004585569612318573,0.00022035622350052286,0.0002143006713082008,2.3903686000056722e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022035622350052286,0.0002143006713082008,2.3903686000056722e-05,0.0,0.0 +98823,50.0,the Greater Atlanta and Macon Area,G1300130180501,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,70880.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.00596114912726579,0.0,0.0,0.005961149127265788,0.0018803828674665473,0.0016360629117305354,0.0024446726584624085,0.0,0.0,0.0018803828674665473,0.0016360629117305354,0.0024446726584624085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000710379955825297,0.00023243563632476487,0.000710379955825297,0.00022408201335137853,0.00019496682168990205,0.00029132746355607235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022408201335137858,0.0001949668216899021,0.00029132746355607246,0.0,0.0 +98824,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,40773.0,,4664.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.003498977908030134,0.0013586414764500765,0.0,0.004857619384480211,0.003046958001197511,0.001487030681273454,0.0003236307020092457,0.0,0.0,0.0016883165247474352,0.001487030681273454,0.0003236307020092457,0.0,0.0,0.0013586414764500765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.077648596785779e-05,0.0,0.0,0.00041696693469270567,0.00020538790511064628,0.0005077434206605635,0.00020119365843933098,0.00017720678474179665,3.856649151157815e-05,0.0,0.0,9.077648596785779e-05,0.0,0.0,0.0,0.0,0.0,0.0003184837583364185,0.00015543211292948667,3.3827549394658286e-05,0.0,0.0 +98825,85.0,Rural Climate Zone 3A,G1300810010300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,70642.0,,1487.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006015991453719782,0.00043766447541153934,0.0,0.006453655929131324,0.001861815655656437,0.0024431381781475233,0.0021486714057210653,0.0,0.0,0.0014241511802448976,0.0024431381781475233,0.0021486714057210653,0.0,0.0,0.00043766447541153934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9241802696920515e-05,0.0,0.0,0.0007169132337095587,0.00021782795507931655,0.0007461550364064792,0.0001697131446703366,0.000291143713412696,0.00025605271840974635,0.0,0.0,2.9241802696920515e-05,0.0,0.0,0.0,0.0,0.0,0.00021525831925091045,0.00028246932843646323,0.00024842384046606,0.0,0.0 +98826,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen5_led,_1000,Electricity,13549.0,,1305.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,7566.85751697572,0.002371779441486257,0.0,0.0026825420758969003,0.0008975037172893564,0.0,0.005951825234672515,0.0030386317319894087,0.0001247210295961476,0.0019101897080297844,0.00037545404826672384,0.0005027569968194335,0.0006668522905031516,0.0001247210295961476,0.0010126859907404282,0.00037545404826672384,0.0005027569968194335,0.0,0.0008975037172893564,0.0,0.0,0.0,0.0,0.002371779441486257,0.0,0.0,0.0,5.996465706762194e-05,0.0,0.0,0.00031967613230661875,0.00015665251298036767,0.0003796407893742407,7.946818913421227e-05,1.4862893192557013e-05,0.00012068088089643764,4.474252206040021e-05,5.9913100218415564e-05,0.0,5.996465706762194e-05,0.0,0.0,0.0,0.0,0.000193820971528165,7.95540666275205e-06,0.00012184261130289713,2.3948564623063248e-05,3.2068660555429486e-05 +98827,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970600,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,308579.0,,9198.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.015007722581112333,0.0015641370237542184,0.0,0.016571859604866554,0.007222728679879811,0.0037161419107517076,0.0029187720969690925,0.0,0.002714199186904523,0.007222728679879811,0.0037161419107517076,0.0013546350732148744,0.0,0.002714199186904523,0.0,0.0015641370237542184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010450644391098495,0.0,0.0,0.0017884415469463203,0.0005419109051084843,0.0018929479908573054,0.0008607187388761284,0.00044284551181011017,0.00016142926635232278,0.0,0.00032344591701455815,0.0,0.00010450644391098495,0.0,0.0,0.0,0.0,0.0008250280939545783,0.0004244824377846108,0.00033340155591865447,0.0,0.0003100338779196906 +98828,85.0,Rural Climate Zone 3A,G1302850960100,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,45289.0,,15978.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009430028669016603,0.010991515877968486,0.0,0.020421616266956107,0.005717444369393497,0.0006253264272851127,0.009923533789575023,0.00037294384928117743,0.0037823678314212955,0.003590875508809614,0.0006253264272851127,0.004416300655228282,0.00037294384928117743,0.0004246539483834331,0.002126568860583883,0.005507233134346741,0.003357713883037863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007343902602384904,0.0,0.0,0.0011237617516138972,0.0010095673391470855,0.0018581520118523876,0.0004279190120456072,7.451917124761622e-05,0.0005262836343519285,4.444313458970115e-05,5.060534613569626e-05,0.00014208517517311868,0.00036796183707778614,0.00022434324798758555,0.0,0.0,0.0,0.0005202272248564853,5.689811931313357e-05,0.0009029370660352939,3.393396265951308e-05,0.00034415563898796173 +98829,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,5764.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010663423017208907,0.0,0.0,0.0010663423017208907,0.0004047684188801705,0.0002223993212849977,0.000396828539801197,0.0,4.242872882826471e-05,0.0004047684188801705,0.0002223993212849977,0.000396828539801197,0.0,4.242872882826471e-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.00012707331106731213,3.6419906730926526e-05,0.00012707331106731213,4.8235227205726016e-05,2.6502763783448564e-05,4.72890519274772e-05,0.0,5.056124143142102e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.8235227205726016e-05,2.6502763783448564e-05,4.72890519274772e-05,0.0,5.056124143142102e-06 +98830,35.0,Eastern Counties in South Carolina and Georgia,G1300510010808,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,34136.0,,9692.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00801378876678951,0.0075168992548334075,0.0,0.015530688021622918,0.004223116117319999,0.00047368246721543557,0.009776392116117277,0.00043017936592456765,0.0006272370942625698,0.004223116117319999,0.00047368246721543557,0.0022594928612838707,0.00043017936592456765,0.0006272370942625698,0.0,0.0075168992548334075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000502235994783366,0.0,0.0,0.0009549853134824385,0.0007758981520765309,0.0014572213082658045,0.0005032593179751713,5.6447681940347965e-05,0.0002692587190951081,5.126351449686774e-05,7.474644397597802e-05,0.0,0.000502235994783366,0.0,0.0,0.0,0.0,0.0003962486906485663,4.4444919865573384e-05,0.000917304300346071,4.036308871369929e-05,5.885272164514386e-05 +98831,35.0,Eastern Counties in South Carolina and Georgia,G1300510002700,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,71926.0,,958.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006124448522375865,0.00028209886108848393,0.0,0.00640654738346435,0.002349596258152125,0.0016391625619666037,0.002417788563345621,0.0,0.0,0.002067497397063641,0.0016391625619666037,0.002417788563345621,0.0,0.0,0.00028209886108848393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8847546005437302e-05,0.0,0.0,0.0007298395749253967,0.0002443758674015154,0.0007486871209308342,0.00024637996644421564,0.0001953360703561336,0.00028812353812504755,0.0,0.0,1.8847546005437302e-05,0.0,0.0,0.0,0.0,0.0,0.00027458041790280694,0.00019155714081252385,0.0002825495622155034,0.0,0.0 +98832,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,18248.0,,7081.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0039210742553654875,0.004871220431380302,0.0,0.008792294686745791,0.0027833086351738336,0.000322309549744156,0.0032664860799060057,0.0003686406510202408,0.002051406330959523,0.0014154653479640997,0.000322309549744156,0.0015573991706039941,0.0003686406510202408,0.0002571878160619812,0.0013678432872097337,0.0017090869093020111,0.0017942185148975417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032546513558571083,0.0,0.0,0.0004672681505499346,0.0004495514803380007,0.0007927332861356455,0.00016867874266998664,3.840911377983988e-05,0.000185592769410152,4.393031705126324e-05,3.0648660884402713e-05,9.13909167533963e-05,0.00011419072704663559,0.00011987869989616798,0.0,0.0,0.0,0.00025094943689924404,2.9060162065172195e-05,0.00029451381425417623,3.3237479531594365e-05,0.00018495946051404547 +98833,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,27346.0,,8066.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005989621659397742,0.005548543837651733,0.0,0.011538165497049474,0.0019672788049582115,0.00030509675670040945,0.007495023851015417,0.00037380448893336487,0.0013970333154130878,0.0019672788049582115,0.00030509675670040945,0.0019464800133636836,0.00037380448893336487,0.0013970333154130878,0.0,0.005548543837651733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003707220692315381,0.0,0.0,0.0007137696142370894,0.0005548221100780908,0.0010844916834686273,0.00023443614865200282,3.635768780042363e-05,0.00023195760387952443,4.4545432255714134e-05,0.00016648128835553637,0.0,0.0003707220692315382,0.0,0.0,0.0,0.0,0.00018490786109688368,2.867656001116089e-05,0.000704469964129374,3.513451593280925e-05,0.0001313095233797374 +98834,50.0,the Greater Atlanta and Macon Area,G1301350050544,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,173051.0,,9759.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01525990897272258,0.0028430904017713214,0.0,0.0181029993744939,0.012553439021222265,0.0036365703134831496,0.0019129596661890476,0.0,0.0,0.009710348619450946,0.0036365703134831496,0.0019129596661890476,0.0,0.0,0.0028430904017713214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018995876664329293,0.0,0.0,0.001818494599005126,0.0007392443656749274,0.002008453365648419,0.0011571639483887403,0.0004333632321000418,0.00022796379895173005,0.0,0.0,0.00018995876664329296,0.0,0.0,0.0,0.0,0.0,0.001392752456709452,0.0004034625276418621,0.00021223501147110222,0.0,0.0 +98835,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,32172.0,,2887.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002729250151078628,0.0008411360892296611,0.0,0.003570386240308289,0.002269424229190503,0.0010898654950254108,0.00021109651609237516,0.0,0.0,0.0014282881399608417,0.0010898654950254108,0.00021109651609237516,0.0,0.0,0.0008411360892296611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6200712647087525e-05,0.0,0.0,0.0003252386830356924,0.0001382846287426778,0.0003814393956827799,0.00017020592760717593,0.00012987685212658825,2.515590330192822e-05,0.0,0.0,5.6200712647087525e-05,0.0,0.0,0.0,0.0,0.0,0.00024245214614526935,0.0001164349198707731,2.2552329666737448e-05,0.0,0.0 +98836,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,6160.0,,492.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.00047136166312641706,0.00014488563133145484,0.0,0.0006162472944578718,0.0002556751100661619,0.00014835355684309526,0.00021218793794231704,0.0,0.0,0.00011078947873470704,0.00014835355684309526,0.00021218793794231704,0.0,0.0,0.00014488563133145484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.680321425925251e-06,0.0,0.0,5.617066898101942e-05,2.6243895446625936e-05,6.585099040694466e-05,1.3202429521549585e-05,1.7678821137720413e-05,2.5285761139056465e-05,0.0,0.0,9.680321425925251e-06,0.0,0.0,0.0,0.0,0.0,2.732094626893705e-05,1.5852773288205706e-05,2.267399141800874e-05,0.0,0.0 +98837,50.0,the Greater Atlanta and Macon Area,G1300670031111,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,9666.0,,747.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0008751141235789949,0.00021982964991044499,0.0,0.00109494377348944,0.0005592260059567401,0.0003181591484882848,0.00021755861904441503,0.0,0.0,0.0003393963560462951,0.0003181591484882848,0.00021755861904441503,0.0,0.0,0.00021982964991044499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.468729780941964e-05,0.0,0.0,0.00010428510887009983,4.7690499396597825e-05,0.00011897240667951946,4.044499452899997e-05,3.791421089448799e-05,2.592590344661188e-05,0.0,0.0,1.468729780941964e-05,0.0,0.0,0.0,0.0,0.0,6.0763361021195226e-05,3.4569957398020584e-05,2.3639088260303642e-05,0.0,0.0 +98838,50.0,the Greater Atlanta and Macon Area,G1300890022005,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,12795.0,,2419.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0010324593920880598,0.0007047282541547176,0.0,0.0017372180198422156,0.001363956856351683,0.00029340897056868265,7.985219292184955e-05,0.0,0.0,0.0006592286021969656,0.00029340897056868265,7.985219292184955e-05,0.0,0.0,0.0007047282541547176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.708677633005047e-05,0.0,0.0,0.00012303731552285916,7.42420899026673e-05,0.0001701240918529096,7.855971687773993e-05,3.496529971613379e-05,9.515918525229373e-06,0.0,0.0,4.708677633005047e-05,0.0,0.0,0.0,0.0,0.0,0.00013357098467954817,2.8733258629235193e-05,7.819848544126224e-06,0.0,0.0 +98839,50.0,the Greater Atlanta and Macon Area,G1300670030413,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,3195.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0007060702885124674,0.0,0.0,0.0007060702885124675,0.00036473819519034574,0.00019394808791867591,0.00012066962058564955,0.0,2.67143848177963e-05,0.00036473819519034574,0.00019394808791867591,0.00012066962058564955,0.0,2.67143848177963e-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,8.414013742498032e-05,2.8342575334375072e-05,8.414013742498032e-05,4.346468385195774e-05,2.3112173159374353e-05,1.4379812639457224e-05,0.0,3.1834677741910096e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.346468385195773e-05,2.311217315937435e-05,1.4379812639457222e-05,0.0,3.1834677741910088e-06 +98840,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8583.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017700967921686574,0.0,0.0,0.0017700967921686578,0.0010151466230762594,0.0003448057904191727,0.00036581338714895676,0.0,4.433099152426878e-05,0.0010151466230762594,0.0003448057904191727,0.00036581338714895676,0.0,4.433099152426878e-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.00021093830775273246,6.477628655249391e-05,0.00021093830775273246,0.0001209726562637622,4.108970213162984e-05,4.3593128454832994e-05,0.0,5.282820902507458e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012097265626376217,4.1089702131629834e-05,4.359312845483299e-05,0.0,5.282820902507456e-06 +98841,81.0,the Columbus-Albany Area,G1302150000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,194686.0,,11707.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009021597958474107,0.0019908713624120487,0.0,0.011012469320886157,0.005314197115902486,0.0029688249072579013,0.0015745802066306294,0.0,0.0011548848214565594,0.004642145496636805,0.0029688249072579013,0.0011780052127483083,0.0,0.00023264007219251284,0.0006720516192656814,0.00039657499388232097,0.0009222447492640465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013301819457689048,0.0,0.0,0.001075087430875041,0.0003711675302339196,0.0012081056254519312,0.0005531960411780001,0.0003537894680025814,0.0001403807400374546,0.0,2.772329455194825e-05,4.490249583423096e-05,2.649678462231542e-05,6.161891412034412e-05,0.0,0.0,0.0,0.0005829856359559516,0.0003256902668176029,0.00017273684492795081,0.0,0.0001266948228318376 +98842,50.0,the Greater Atlanta and Macon Area,G1300970080403,ComStock DOE Ref 1980-2004,gen3_t5_cfl,_1000,NaturalGas,9483.0,,4429.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0021082802679749024,0.0030463774888590946,0.0,0.005154657756833997,0.001656946490373662,0.0001406428631616133,0.0023024979494851773,0.0003719397696869589,0.0006827024040976016,0.0009266937454927104,0.0001406428631616133,0.0005748355676901224,0.0003719397696869589,9.41683219434973e-05,0.0007302527448809518,0.0017276623817950548,0.0005885340821541042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020354252480433174,0.0,0.0,0.0002512376959426147,0.00027874760656244267,0.0004547802207469465,0.00011043142840095676,1.6760005502227087e-05,6.850150132603268e-05,4.4322992623431754e-05,1.1221768089966426e-05,4.879155258399346e-05,0.00011543308880336069,3.9322675358893166e-05,0.0,0.0,0.0,0.0001461874922072115,1.2408504186397516e-05,0.00020314258969918704,3.281514671629654e-05,6.023281557894846e-05 +98843,50.0,the Greater Atlanta and Macon Area,G1300970080403,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,43119.0,,2530.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003802288672015524,0.0007369546431581724,0.0,0.004539243315173696,0.003279285663296875,0.0010245926298336821,0.00023536502204313887,0.0,0.0,0.002542331020138703,0.0010245926298336821,0.00023536502204313887,0.0,0.0,0.0007369546431581724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9239397922334305e-05,0.0,0.0,0.00045311210649561314,0.00017141289150448828,0.0005023515044179475,0.0003029651516000113,0.00012209891590312275,2.8048038992479123e-05,0.0,0.0,4.9239397922334305e-05,0.0,0.0,0.0,0.0,0.0,0.00036291381007637287,0.00011339018714681875,2.6047507194755836e-05,0.0,0.0 +98844,46.0,the Tallahassee-Valdosta Area,G1301850010900,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,55229.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004637874682921439,0.0,0.0,0.004637874682921439,0.0012900682903302344,0.0013067634361561846,0.0020410429564350213,0.0,0.0,0.0012900682903302344,0.0013067634361561846,0.0020410429564350213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005526875424523676,0.00016905296199323523,0.0005526875424523676,0.00015373521747017463,0.000155724749259683,0.00024322757572251008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015373521747017463,0.000155724749259683,0.00024322757572251008,0.0,0.0 +98845,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,465599.0,,30486.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.023966803285219336,0.005184410870307699,0.0,0.029151214155527034,0.013343036677744996,0.008389599225656326,0.0029460591231945535,0.0,0.004472536859292579,0.012347228658949152,0.008389599225656326,0.002531080014158218,0.0,0.0006989131168170615,0.0009958080187958455,0.00041497910903633584,0.0037736237424755184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003463915677664505,0.0,0.0,0.00285607829170619,0.0011229081428464351,0.0032024698594726405,0.0014713957183144825,0.0009997725578733897,0.00030162398368191576,0.0,8.328814472979697e-05,6.653398225064356e-05,2.7726441396202417e-05,0.0002521311441196046,0.0,0.0,0.0,0.0014658282350210317,0.0009216576198122216,0.00032364571492354637,0.0,0.0004913402375231516 +98846,50.0,the Greater Atlanta and Macon Area,G1301210006601,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,7121.0,,1274.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0009557357193230601,0.0003749349201390349,0.0,0.0013306706394620952,0.000378433535256973,0.0004320482774590598,0.0005201888267460621,0.0,0.0,3.4986151179381173e-06,0.0004320482774590598,0.0005201888267460621,0.0,0.0,0.0003749349201390349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5049935338523393e-05,0.0,0.0,0.00011389398401645625,6.107674989722241e-05,0.00013894391935497966,4.1692615046805e-07,5.1486722335870244e-05,6.199033553011795e-05,0.0,0.0,2.5049935338523393e-05,0.0,0.0,0.0,0.0,0.0,3.951469059632957e-05,4.5112952251652555e-05,5.43162765069975e-05,0.0,0.0 +98847,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,25285.0,,5630.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006005045193801145,0.004366077981785156,0.0,0.0103711231755863,0.004332439896028648,0.0004684265163159813,0.004438367521848419,0.00041740336219974025,0.0007144858791935111,0.004332439896028648,0.0004684265163159813,0.0007868562800398435,0.00041740336219974025,0.0,0.0,0.0036515112418085763,0.0007144858791935111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029171543262094325,0.0,0.0,0.0007156136596867662,0.0005324087087071146,0.0010073290923077094,0.0005162913965361043,5.5821796975189016e-05,9.376867018221373e-05,4.974143207076224e-05,0.0,0.0,0.0002439723216278647,4.7737708355193153e-05,0.0,0.0,0.0,0.00042080232526960884,4.549744993909637e-05,0.00043109089067962366,4.054166003549377e-05,6.939676638388666e-05 +98848,81.0,the Columbus-Albany Area,G1302150000200,ComStock 90.1-2004,gen2_t8_halogen,_1000,NaturalGas,8138.0,,1469.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,9525.004485617234,0.0,0.0,0.0019433591695476266,0.0012719496116211327,0.0,0.003215308781168758,0.0018145301472051345,0.0004665650928283068,0.0001453501933927194,0.0006008108925643153,0.00018805245517828232,0.0006395408509279654,0.0004665650928283068,0.00010580771842004172,0.0006008108925643153,0.0001306346148069969,0.0011749892962771694,3.95424749726777e-05,5.741784037128542e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.498589655446126e-05,0.0,0.0,0.00023158701835338986,0.0001750234347547071,0.0003165729149078511,7.621306503834495e-05,5.559981932780445e-05,1.2608937355299306e-05,7.159767755931474e-05,1.556751907262636e-05,7.850744862348734e-05,2.6420485975480183e-06,3.836399333425889e-06,0.0,0.0,0.0,0.00017865503346154425,4.5937072139373154e-05,1.431089128180936e-05,5.9154646882261675e-05,1.851527114286267e-05 +98849,50.0,the Greater Atlanta and Macon Area,G1301210004900,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,157447.0,,,,9.325022323477118,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.04085027401141957,0.0,0.0,0.040850274011419566,0.021594371032618784,0.006383103894728836,0.01242115603641113,0.0,0.0004515546635027641,0.021594371032618784,0.006383103894728836,0.01242115603641113,0.0,0.0004515546635027641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004868049398699979,0.0016143197862262646,0.004868049398699979,0.00257336009279295,0.000760662341405293,0.0014802055221785416,0.0,5.381090975131047e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0025733600927929506,0.0007606623414052931,0.0014802055221785418,0.0,5.3810909751310474e-05 +98850,50.0,the Greater Atlanta and Macon Area,G1301170130205,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,23161.0,,3533.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0060486991308505095,0.002802611900730171,0.0,0.008851311031580681,0.005382328237732909,0.0009683344193398115,0.0022651813355721515,0.0,0.00023563245308328681,0.0028152660830122857,0.0009683344193398115,0.0022651813355721515,0.0,0.0,0.0025670621547206236,0.0,0.00023563245308328681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018725652156023284,0.0,0.0,0.0007208083549248097,0.00037187152197001665,0.0009080648764850425,0.0003354882215287773,0.0001153939921166581,0.0002699359972746012,0.0,0.0,0.00017151826465757267,0.0,1.574378297601084e-05,0.0,0.0,0.0,0.0005521784523174837,9.934239930748345e-05,0.0002323872251651312,0.0,2.417376969824225e-05 +98851,50.0,the Greater Atlanta and Macon Area,G1301530020900,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Propane,126788.0,,,18601.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011180339711439821,0.0,0.0017531641595470355,0.012933503870986855,0.008747201781279834,0.0028461277617150963,0.0013401743279919237,0.0,0.0,0.006994037621732798,0.0028461277617150963,0.0013401743279919237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017531641595470355,0.0,0.0,0.0,0.0,0.00014139033181340043,0.0013323403665208152,0.00044764935090578777,0.0014737306983342157,0.0008334665036041024,0.0003391677715596191,0.00015970609135709335,0.0,0.0,0.0,0.0,0.0,0.00014139033181340043,0.0,0.0,0.0009967151916592122,0.00032430700107725284,0.0001527085055977507,0.0,0.0 +98852,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,23216.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0011095837480283243,0.0,0.0,0.0011095837480283248,0.0007802422846508437,0.00018248087973518347,5.3155623537318304e-05,0.0,9.372269046639911e-05,0.0007802422846508437,0.00018248087973518347,5.3155623537318304e-05,0.0,9.372269046639911e-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.00013222786175546422,3.243630946028061e-05,0.00013222786175546422,9.29806056856068e-05,2.1746043578518047e-05,6.3344965651376905e-06,0.0,1.1168828833661718e-05,0.0,0.0,0.0,0.0,0.0,0.0,9.298060568560677e-05,2.174604357851804e-05,6.334496565137688e-06,0.0,1.1168828833661713e-05 +98853,35.0,Eastern Counties in South Carolina and Georgia,G1301910110100,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,31044.0,,880.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027374813965262593,0.0002563835528540631,0.0,0.002993895322979759,0.001798451196308723,0.0010118660916692643,0.0001835476614023343,0.0,0.0,0.00154206764345466,0.0010118660916692643,0.0001835476614023343,0.0,0.0,0.0002563835528540631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.713015571354269e-05,0.0,0.0,0.0003262221209814129,9.064446303275378e-05,0.00034335227669495563,0.00018376620859705004,0.00012058277473315199,2.1873137651210826e-05,0.0,0.0,1.713015571354269e-05,0.0,0.0,0.0,0.0,0.0,0.00020625380855426168,0.00011604498113824585,2.1050003632659532e-05,0.0,0.0 +98854,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,21407.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0019073590314022282,0.0,0.0,0.0019073590314022278,0.0007649691265765396,0.0006473358656374447,0.0004950847287945412,0.0,0.0,0.0007649691265765396,0.0006473358656374447,0.0004950847287945412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002272960635848116,8.023735517159896e-05,0.0002272960635848116,9.115980178463417e-05,7.714168735630619e-05,5.899823166130619e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.115980178463418e-05,7.71416873563062e-05,5.8998231661306207e-05,0.0,0.0 +98855,50.0,the Greater Atlanta and Macon Area,G1300570090602,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,6898.0,,377.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014348023152295053,0.0002990687786413356,0.0,0.001733871093870841,0.0013025537043203526,0.00022314368494865137,0.00017591794584350689,0.0,3.217305168459058e-05,0.0010356579773636075,0.00022314368494865137,0.00017591794584350689,0.0,0.0,0.00026689572695674503,0.0,3.217305168459058e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9981945293988008e-05,0.0,0.0,0.00017098000310953367,7.657606949886756e-05,0.0001909619484035217,0.0001234154714628534,2.6591194857592908e-05,2.0963480897739113e-05,0.0,0.0,1.7832338900359322e-05,0.0,2.1496063936286877e-06,0.0,0.0,0.0,0.00014345829638461472,2.4576194275553398e-05,1.93749315137517e-05,0.0,3.5434171879874986e-06 +98856,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,131543.0,,6546.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012406641621121922,0.0019267241729760782,0.0,0.014333365794097998,0.0038222677059536908,0.0037919156853252626,0.006719213092425344,0.0,0.0,0.001895543532977612,0.0037919156853252626,0.006719213092425344,0.0,0.0,0.0019267241729760782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001287317786403748,0.0,0.0,0.0014784749604650597,0.000641809462552222,0.0016072067391054345,0.00022588817631418338,0.00045187509756094166,0.0008007153438096596,0.0,0.0,0.0001287317786403748,0.0,0.0,0.0,0.0,0.0,0.00042859259324864194,0.0004251892075540158,0.0007534283795421042,0.0,0.0 +98857,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,22196.0,,5096.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004405757819488988,0.003505385303359005,0.0,0.007911143122847993,0.00222826777948402,0.0003661304520346944,0.003195196428716488,0.0003798289664986762,0.0017417912160851297,0.00222826777948402,0.0003661304520346944,0.0012137170694971858,0.0003798289664986762,0.00021788527194542637,0.0,0.001981479359219302,0.0015239059441397034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002342080460917648,0.0,0.0,0.0005250244786325412,0.00037905008397176224,0.000759232524724306,0.0002655377751364873,4.3630961475160705e-05,0.000144635996286806,4.526338334426075e-05,2.5964909101182806e-05,0.0,0.00013239012802650132,0.00010181791806526349,0.0,0.0,0.0,0.00021384689237810691,3.513754499952479e-05,0.0003066430494170086,3.645219163907607e-05,0.00016715972925728873 +98858,50.0,the Greater Atlanta and Macon Area,G1300630040512,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,26333.0,,1011.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006155931415007017,0.0007837835702832394,0.0,0.006939714985290258,0.0032684737124129603,0.0004594509693953746,0.0021535652354640993,0.00042039521117327575,0.0006379107176276153,0.0032684737124129603,0.0004594509693953746,0.00136978166518086,0.00042039521117327575,0.0006379107176276153,0.0,0.0007837835702832394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.236641566525948e-05,0.0,0.0,0.0007335945389295089,0.0002776973269512159,0.0007859609545947685,0.00038949986678142237,5.475218928408603e-05,0.00016323514369454725,5.009796411262994e-05,7.601901113378295e-05,0.0,5.236641566525948e-05,0.0,0.0,0.0,0.0,0.000370172654715812,5.2035353506722835e-05,0.00024390312741016351,4.761207372077649e-05,7.224690317045696e-05 +98859,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,70104.0,,6418.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005851109448489636,0.001869677286990251,0.0,0.007720786735479887,0.005474385694663199,0.0014142555370206004,0.0008321758773955245,0.0,0.0,0.0036047084076729487,0.0014142555370206004,0.0008321758773955245,0.0,0.0,0.001869677286990251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012492056215678764,0.0,0.0,0.0006972671938021455,0.00031504800358361665,0.0008221877559589331,0.00042956723643956444,0.00016853453149334762,9.916904544166353e-05,0.0,0.0,0.00012492056215678764,0.0,0.0,0.0,0.0,0.0,0.0005829681668145522,0.00015060428764235127,8.861853599126198e-05,0.0,0.0 +98860,50.0,the Greater Atlanta and Macon Area,G1301210005502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,16718.0,,2017.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.002607849295147294,0.0005936290546164649,0.0,0.0032014476601574617,0.000599183873356349,0.0010704841572701709,0.001531810319137239,0.0,0.0,5.554818739884203e-06,0.0010704841572701709,0.001531810319137239,0.0,0.0,0.0005936290546164649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.966245214105561e-05,0.0,0.0,0.00031077106765343987,0.00014370236925597424,0.00035043351979449546,6.619542600208604e-07,0.0001275669974794897,0.00018254211591392934,0.0,0.0,3.966245214105561e-05,0.0,0.0,0.0,0.0,0.0,6.558723928475443e-05,0.00011717621867913951,0.00016767342114423008,0.0,0.0 +98861,50.0,the Greater Atlanta and Macon Area,G1301350050721,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12950.0,,484.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002792356223586497,0.0003841743575190829,0.0,0.0031765305811055798,0.001595336745357501,0.0005491749696290014,0.00094939449945351,0.0,8.262436666556811e-05,0.0012111623878384179,0.0005491749696290014,0.00094939449945351,0.0,8.262436666556811e-05,0.0003841743575190829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.56693893987578e-05,0.0,0.0,0.00033275949415415424,0.00010238889777190086,0.0003584288835529121,0.00014433179409968115,6.544408036205155e-05,0.00011313743952951653,0.0,9.846180162905043e-06,2.56693893987578e-05,0.0,0.0,0.0,0.0,0.0,0.00018001236063353352,6.196703170753604e-05,0.00010712643930283226,0.0,9.323051909010316e-06 +98862,50.0,the Greater Atlanta and Macon Area,G1301350050212,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12463.0,,699.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00299259004910936,0.0005546336364957956,0.0,0.0035472236856051564,0.001981661486793806,0.0005122049076675309,0.0009811540157694037,0.0,7.228598244815468e-05,0.0014270278502980102,0.0005122049076675309,0.0009811540157694037,0.0,7.228598244815468e-05,0.0005546336364957956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.705801802357026e-05,0.0,0.0,0.0003566248056968396,0.00014956482059983695,0.0003936828237204099,0.00017005788346718817,6.10390907796625e-05,0.00011692341900841853,0.0,8.614268584115132e-06,3.705801802357026e-05,0.0,0.0,0.0,0.0,0.0,0.00021993146159483829,5.684622461005149e-05,0.00010889177499580828,0.0,8.022541629127239e-06 +98863,81.0,the Columbus-Albany Area,G1302150011500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,23606.0,,550.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0020815938902674458,0.0001601903634347031,0.0,0.002241784253702149,0.0016518985790215707,0.00047920427832941046,0.00011065102275172988,0.0,0.0,0.0014917082155868676,0.00047920427832941046,0.00011065102275172988,0.0,0.0,0.0001601903634347031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0703370408845015e-05,0.0,0.0,0.00024805825026930653,7.517315685297972e-05,0.00025876162067815155,0.00017776307453673678,5.710555519966802e-05,1.3186000988298828e-05,0.0,0.0,1.0703370408845015e-05,0.0,0.0,0.0,0.0,0.0,0.00019067310014228933,5.53129390090262e-05,1.2772075604353326e-05,0.0,0.0 +98864,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,50220.0,,2554.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.006092724657074753,0.0009490263950258516,0.0,0.007041789800524377,0.0040141817090926886,0.0008751718993162619,0.0020220864945461408,0.0,0.00013031094914551443,0.0033627819570602054,0.0008751718993162619,0.0017244598515527725,0.0,0.00013031094914551443,0.0006513997520324836,0.00029762664299336786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.340914205346211e-05,0.0,0.0,0.0007260593221526927,0.00026717733283382794,0.0007894684642061547,0.0004007368337998541,0.00010429270182869737,0.00020550085903587835,0.0,1.5528927488263052e-05,4.3523235630440605e-05,1.9885906423021493e-05,0.0,0.0,0.0,0.0,0.0004500375556063677,9.811718822083305e-05,0.00022669996755973496,0.0,1.4609408659641439e-05 +98865,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,208109.0,,12740.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,306613.1346040191,0.0,0.0,0.02307209021188257,0.004734669900710795,0.0,0.02780676011259337,0.01606556147699079,0.003084064544867613,0.008222493021283512,0.0,0.0004346410694514526,0.012949684476206296,0.003084064544867613,0.007038341190808662,0.0,0.0,0.003115877000784493,0.00118415183047485,0.0004346410694514526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031634294199428737,0.0,0.0,0.0027494573952019596,0.0010745825846794868,0.0030658003371962467,0.001543189430245048,0.00036752214438721796,0.0008387458205696936,0.0,0.0,0.00020818467136906972,7.911809728574697e-05,2.9040173339470676e-05,0.0,0.0,0.0,0.001771288837461467,0.000340029765542804,0.0009065609145104295,0.0,4.792081968154629e-05 +98866,50.0,the Greater Atlanta and Macon Area,G1301210009601,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4864.0,,269.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007976270191418808,0.0002131361290261952,0.0,0.0010106804410943367,0.000587302930622822,0.00021710606856568195,0.00016756453139583685,0.0,3.878961758373519e-05,0.0003741668015966268,0.00021710606856568195,0.00016756453139583685,0.0,3.878961758373519e-05,0.0002131361290261952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4238487973042092e-05,0.0,0.0,9.504989874656692e-05,3.7318850328495175e-05,0.000109288386719609,4.4587903559671174e-05,2.5871628391719007e-05,1.9967969189189607e-05,0.0,4.622397605987131e-06,1.4238487973042092e-05,0.0,0.0,0.0,0.0,0.0,6.350710589983171e-05,2.347643331742828e-05,1.811933481947036e-05,0.0,4.194456086047187e-06 +98867,50.0,the Greater Atlanta and Macon Area,G1301510070113,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,17574.0,,857.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.004053887219332153,0.0006797694390633677,0.0,0.004733656658395521,0.0026359571471454672,0.0009390561152360966,0.0010087781783983327,0.0,0.00014986521761562504,0.001956187708082099,0.0009390561152360966,0.0010087781783983327,0.0,0.00014986521761562504,0.0006797694390633677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5416676286079506e-05,0.0,0.0,0.00048309655420466314,0.0001703685129889596,0.0005285132304907426,0.00023311638682135452,0.00011190611601427616,0.000120214805093018,0.0,1.7859246276014477e-05,4.5416676286079506e-05,0.0,0.0,0.0,0.0,0.0,0.00029430487418266165,0.00010484570742900884,0.00011263018262388768,0.0,1.6732466255184427e-05 +98868,50.0,the Greater Atlanta and Macon Area,G1301350050313,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,16694.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0038740820410228995,0.0,0.0,0.003874082041022899,0.0024138059470816867,0.0005096409883816123,0.0008823190626509315,0.0,6.839874998240724e-05,0.0024138059470816867,0.0005096409883816123,0.0008823190626509315,0.0,6.839874998240724e-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.00046167076321411616,0.00015052018222392225,0.00046167076321411616,0.00028765101565730823,6.073344384034037e-05,0.00010514514425328644,0.0,8.15101558843906e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002876510156573083,6.073344384034038e-05,0.00010514514425328645,0.0,8.151015588439062e-06 +98869,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001200,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,15071.0,,,4942.0,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003321267960149368,0.0,0.0012682302687185402,0.004589415521794169,0.002975221563624106,0.0005497539191451765,0.0009971991880748298,0.0,6.732355802379624e-05,0.0017069912949055658,0.0005497539191451765,0.0009971991880748298,0.0,6.732355802379624e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012682302687185402,0.0,0.0,0.0,0.0,0.00010227859106919412,0.00039578652142505073,0.0001973834760884023,0.0004980651124942448,0.0002034175365612875,6.551268789780891e-05,0.00011883353061289036,0.0,8.022766353064006e-06,0.0,0.0,0.0,0.00010227859106919412,0.0,0.0,0.00032288513771410105,5.9661899490885655e-05,0.00010822077962413248,0.0,7.306271428551365e-06 +98870,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,79354.0,,11413.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007215035931241881,0.003324815688854065,0.0,0.010539851620095946,0.008060242082796201,0.0019696671763393303,0.0005099423609604153,0.0,0.0,0.004735426393942136,0.0019696671763393303,0.0005099423609604153,0.0,0.0,0.003324815688854065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002221444847195266,0.0,0.0,0.0008598008126748369,0.00047263798502790623,0.0010819452973943634,0.0005643109058186649,0.00023472113722710342,6.076876962906857e-05,0.0,0.0,0.0002221444847195266,0.0,0.0,0.0,0.0,0.0,0.0008274064314827719,0.00020219185389755737,5.23470120140342e-05,0.0,0.0 +98871,50.0,the Greater Atlanta and Macon Area,G1301210006200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,19095.0,,2153.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002777058196593649,0.0006271540811906996,0.0,0.003404212277784349,0.001955361211004149,0.0012904223721128861,0.0001584286946673135,0.0,0.0,0.0013282071298134494,0.0012904223721128861,0.0001584286946673135,0.0,0.0,0.0006271540811906996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1903169526827704e-05,0.0,0.0,0.00033093577627673406,0.00013502133555942994,0.00037283894580356173,0.0001582794548923253,0.0001537767303414311,1.8879591042977632e-05,0.0,0.0,4.1903169526827704e-05,0.0,0.0,0.0,0.0,0.0,0.0002141566838629873,0.0001413307037283349,1.735155821223949e-05,0.0,0.0 +98872,33.0,Rural Lower Plains-Upper South Appalachia,G1300110970300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,57339.0,,9943.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,56751.431377317895,0.0,0.0,0.011351550132466855,0.0068395033159327325,0.0,0.018191053448399584,0.003967190196728525,0.0010722852866544008,0.008603671162974731,0.00036878409096227204,0.00417905099110864,0.003605219503012736,0.0010722852866544008,0.005837862200728709,0.00036878409096227204,0.0004673273311377216,0.00036197069371578895,0.0027658089622460244,0.0037117236599709183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045697631353801564,0.0,0.0,0.001352741644795765,0.0008123713873142526,0.0018097179583337806,0.0004296268354052004,0.0001277821042441146,0.0006956864237350305,4.394726640513927e-05,5.569046828002479e-05,2.4184801963281374e-05,0.00018479546322805286,0.00024799604834668137,0.0,0.0,0.0,0.00039467177442529996,0.00010667518212840389,0.0008559272422237698,3.668810022769398e-05,0.0004157485243421821 +98873,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5487.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012401098636471753,0.0,0.0,0.0012401098636471753,0.0006739799439016162,0.0002818657073035597,0.0002447302311946106,0.0,3.961668832112825e-05,0.0006739799439016162,0.0002818657073035597,0.0002447302311946106,0.0,3.961668832112825e-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.00014778326141396542,5.409587938098122e-05,0.00014778326141396542,8.031784695627613e-05,3.3589792910417113e-05,2.9164377119109223e-05,0.0,4.721100588054518e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.031784695627613e-05,3.3589792910417113e-05,2.9164377119109223e-05,0.0,4.721100588054518e-06 +98874,35.0,Eastern Counties in South Carolina and Georgia,G1300510004212,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5052.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013535839688175052,0.0,0.0,0.0013535839688175052,0.0008252511817708094,0.00022984295792153535,0.0002570535851817675,0.0,4.143624394339302e-05,0.0008252511817708094,0.00022984295792153535,0.0002570535851817675,0.0,4.143624394339302e-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.00016130544813752553,4.901838850182822e-05,0.00016130544813752553,9.834448011219782e-05,2.7390189439947667e-05,3.063285670361906e-05,0.0,4.937921881760986e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.834448011219782e-05,2.7390189439947667e-05,3.063285670361906e-05,0.0,4.937921881760986e-06 +98875,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,29503.0,,3061.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0024544905705647245,0.000891708132293518,0.0,0.0033461987028582433,0.0023360639063569307,0.0008357295885297413,0.00017437483437213321,0.0,0.0,0.0014443557740634128,0.0008357295885297413,0.00017437483437213321,0.0,0.0,0.000891708132293518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9579013337334634e-05,0.0,0.0,0.0002924971486178397,0.00012548197458258427,0.0003520761619551743,0.00017212123385996952,9.95923653535436e-05,2.0779929838077193e-05,0.0,0.0,5.9579013337334634e-05,0.0,0.0,0.0,0.0,0.0,0.00024579305871155337,8.793275357814082e-05,1.8347153853974434e-05,0.0,0.0 +98876,50.0,the Greater Atlanta and Macon Area,G1300630040512,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,7805.0,,845.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001595336745357501,0.0006705889538783045,0.0,0.0022658429921620657,0.0016538933535649304,0.0002484520495128795,0.00032024178951859837,0.0,4.3255799565657775e-05,0.001026642906326023,0.0002484520495128795,0.00032024178951859837,0.0,0.0,0.0006272504472389075,0.0,4.3255799565657775e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.480254286930727e-05,0.0,0.0,0.00019011117632357534,0.00010307560362366552,0.0002349137191928826,0.00012234175082713155,2.960723592078492e-05,3.816218957565886e-05,0.0,0.0,4.1907065259105374e-05,0.0,2.889951889571744e-06,0.0,0.0,0.0,0.00017146917954081157,2.5758534547211982e-05,3.320141337110679e-05,0.0,4.484591733752285e-06 +98877,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,6317.0,,334.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0015167650253051588,0.0002645799288920444,0.0,0.0017814276612709427,0.000720213198121889,0.0006242729925842925,0.0003945954488102357,0.0,4.218060760704679e-05,0.0004556332692298445,0.0006242729925842925,0.0003945954488102357,0.0,4.218060760704679e-05,0.0002645799288920444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7679131765598074e-05,0.0,0.0,0.00018075337595325206,7.491067931549294e-05,0.00019843250771885013,5.429796325461942e-05,7.439481333197811e-05,4.702406656158817e-05,0.0,5.026676576485008e-06,1.7679131765598074e-05,0.0,0.0,0.0,0.0,0.0,8.02242572642995e-05,6.953751651710297e-05,4.395382767661609e-05,0.0,4.6984808457502e-06 +98878,81.0,the Columbus-Albany Area,G1302150003000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,26498.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.002360951412482275,0.0,0.0,0.0023609514124822754,0.0011063603070321853,0.0007469236380734903,0.0005076367777703017,0.0,0.0,0.0011063603070321853,0.0007469236380734903,0.0005076367777703017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028134980700466504,9.384044704613746e-05,0.00028134980700466504,0.00013184272120782758,8.90093799932346e-05,6.0494048585261466e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013184272120782755,8.900937999323459e-05,6.049404858526145e-05,0.0,0.0 +98879,81.0,the Columbus-Albany Area,G1302150003200,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,56834.0,,3188.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005063877107939853,0.0009383347125522624,0.0,0.006002242510098413,0.0019645644575411454,0.001619889489211646,0.002417788563345621,0.0,0.0,0.0010262297449888831,0.001619889489211646,0.002417788563345621,0.0,0.0,0.0009383347125522624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.269505969683874e-05,0.0,0.0,0.0006034527081968541,0.0002260043827480808,0.0006661477678936928,0.00012229386804721488,0.0001930391829042778,0.0002881233144680071,0.0,0.0,6.269505969683874e-05,0.0,0.0,0.0,0.0,0.0,0.00021803354764032354,0.00017978043467209052,0.00026833378558127873,0.0,0.0 +98880,50.0,the Greater Atlanta and Macon Area,G1302230120604,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,36484.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.003495177882032775,0.0,0.0,0.003495177882032775,0.0013076534347388178,0.0008844437638934966,0.0013030806834004602,0.0,0.0,0.0013076534347388178,0.0008844437638934966,0.0013030806834004602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041651227589730084,0.0001576099030457468,0.00041651227589730084,0.00015583003972067372,0.00010539712067192605,0.00015528511550470103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015583003972067372,0.00010539712067192605,0.00015528511550470103,0.0,0.0 +98881,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,28222.0,,1084.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002514552892002278,0.00031911052628351346,0.0,0.0028336634182857907,0.000816957319644848,0.0007943390798034411,0.0012223363292312042,0.0,0.0,0.0004978467933613346,0.0007943390798034411,0.0012223363292312042,0.0,0.0,0.00031911052628351346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.132150410255716e-05,0.0,0.0,0.000299652985017702,0.00011437423659020903,0.0003209744891202591,5.9327158393325944e-05,9.465940332230646e-05,0.0001456627660983713,0.0,0.0,2.132150410255716e-05,0.0,0.0,0.0,0.0,0.0,9.25383221641374e-05,8.997631076537824e-05,0.0001384563799201889,0.0,0.0 +98882,50.0,the Greater Atlanta and Macon Area,G1300890023310,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,2771.0,,577.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.00012536704172611587,0.00016992835007038028,0.0,0.0002952647021901985,0.0001987765799902209,6.607472235895408e-05,3.044408944732116e-05,0.0,0.0,2.884822991984062e-05,6.607472235895408e-05,3.044408944732116e-05,0.0,0.0,0.00016992835007038028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1352598005719334e-05,0.0,0.0,1.4937965289130134e-05,1.7110005449616057e-05,2.6290563294849466e-05,3.437377569591757e-06,7.873057348224523e-06,3.627530371313854e-06,0.0,0.0,1.1352598005719332e-05,0.0,0.0,0.0,0.0,0.0,1.769919742861864e-05,5.883336739820277e-06,2.7107617491415307e-06,0.0,0.0 +98883,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,232937.0,,15441.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011758438816912038,0.0026259374477555,0.0,0.014384376264667539,0.004836346145270643,0.0035718344991538973,0.0031152776925875377,0.0,0.00286091792765546,0.0046291491417159054,0.0035718344991538973,0.0031152776925875377,0.0,0.0004421774834546969,0.00020719700355473702,0.0,0.0024187404442007625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017544987205263856,0.0,0.0,0.0014012295585800803,0.0005499725763050523,0.001576679430632719,0.0005516464140731396,0.00042564834979384654,0.00037124139131126477,0.0,5.269340340182941e-05,1.3843699054766477e-05,0.0,0.00016160617299787206,0.0,0.0,0.0,0.0005301145733651528,0.00039151075311296665,0.0003414673092691972,0.0,0.0003135867948854023 +98885,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8193.0,,,2377.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006479296232061218,0.0,0.00022403566945285747,0.0008719652926589792,0.0006091121631246751,0.00019423916840442294,6.858358753044361e-05,0.0,0.0,0.00038507649367181766,0.00019423916840442294,6.858358753044361e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022403566945285747,0.0,0.0,0.0,0.0,1.8068770054875406e-05,7.721167409141149e-05,3.977297156081107e-05,9.52804441462869e-05,4.588831821352499e-05,2.31468524195845e-05,8.172883934858764e-06,0.0,0.0,0.0,0.0,0.0,1.8068770054875406e-05,0.0,0.0,6.655824254248425e-05,2.1224691386216557e-05,7.494191266626579e-06,0.0,0.0 +98886,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,21317.0,,1609.0,,8.53126424238864,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005004231281761977,0.0012477627435304513,0.0,0.006252074886075497,0.0021497647786598785,0.0006310375510667905,0.0024089235883945105,0.00031745943432703996,0.0007448895336272776,0.0016468915687567044,0.0006310375510667905,0.0024089235883945105,0.00031745943432703996,0.0,0.0005028732099031741,0.0,0.0007448895336272776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.337002342733895e-05,0.0,0.0,0.0005963473832989413,0.00024706359965352085,0.0006797174067262804,0.00019625781110167785,7.519988009218313e-05,0.00028706812247901437,3.7831205694760504e-05,0.0,3.35997780892114e-05,0.0,4.977024533812757e-05,0.0,0.0,0.0,0.0002337196158153221,6.860557744011035e-05,0.0002618950227470948,3.451377460659575e-05,8.098341611715742e-05 +98887,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,60555.0,,3409.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00489601161416953,0.0009932167016144845,0.0,0.005889228315784014,0.003734403677272149,0.001569737992542452,0.0005850562723699757,0.0,0.0,0.0027411869756576645,0.001569737992542452,0.0005850562723699757,0.0,0.0,0.0009932167016144845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.636174506019522e-05,0.0,0.0,0.0005834473545856997,0.00019068848138124658,0.0006498090996458949,0.00032666145740822995,0.00018706235836756898,6.971991925226125e-05,0.0,0.0,6.636174506019522e-05,0.0,0.0,0.0,0.0,0.0,0.0004120488052294984,0.0001732026637310243,6.455427930548927e-05,0.0,0.0 +98888,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,135051.0,,5264.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011780972617530656,0.0015493647739395248,0.0,0.01333033739147018,0.0038647421210697107,0.0036611165832844536,0.005804509376722313,0.0,0.0,0.0023153773471301865,0.0036611165832844536,0.005804509376722313,0.0,0.0,0.0015493647739395248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010351850763894876,0.0,0.0,0.0014039160139647266,0.0005336576296714249,0.0015074345216036752,0.00027591909781457194,0.0004362882732293639,0.000691712300142579,0.0,0.0,0.00010351850763894876,0.0,0.0,0.0,0.0,0.0,0.0004370366270042149,0.0004140100406453413,0.0006563913244268181,0.0,0.0 +98889,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,4983.0,,869.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0008453490006894612,0.0006896115808383452,0.0,0.0015349605815278065,0.001082056645731359,0.0002619333025323866,0.00014912085395197126,0.0,4.184977931208955e-05,0.00039244506489301376,0.0002619333025323866,0.00014912085395197126,0.0,4.184977931208955e-05,0.0006896115808383452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.607533696520289e-05,0.0,0.0,0.00010073772955128404,7.366281057905307e-05,0.00014681306651648693,4.676651274051881e-05,3.121381366685418e-05,1.7770289245765103e-05,0.0,4.987113898145946e-06,4.6075336965202894e-05,0.0,0.0,0.0,0.0,0.0,0.00010349454977289718,2.50529113453157e-05,1.4262835224377709e-05,0.0,4.002770173896351e-06 +98890,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,105595.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00483858017080957,0.0,0.0,0.004838580170809571,0.0022410999531332545,0.001211143258242387,0.0008456495879294183,0.0,0.0005407228322273504,0.0022410999531332545,0.001211143258242387,0.0008456495879294183,0.0,0.0005407228322273504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005766045213712142,0.00014581992626834083,0.0005766045213712142,0.0002670676769225136,0.00014432966987792606,0.00010077447488365639,0.0,6.443692547493173e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00026706767692251355,0.00014432966987792603,0.00010077447488365636,0.0,6.443692547493172e-05 +98891,81.0,the Columbus-Albany Area,G1302150003302,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,289783.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014916659444858938,0.0,0.0,0.014916659444858938,0.008319582028408537,0.0033006663515956097,0.0014241380899814814,0.0,0.0018723084355961558,0.008319582028408537,0.0033006663515956097,0.0014241380899814814,0.0,0.0018723084355961558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017775890333042613,0.0004978080706918904,0.0017775890333042613,0.0009914282638175554,0.0003933339318284763,0.0001697117414270966,0.0,0.0002231193220158857,0.0,0.0,0.0,0.0,0.0,0.0,0.0009914282638175554,0.0003933339318284763,0.0001697117414270966,0.0,0.0002231193220158857 +98892,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13113.0,,483.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029920110995931854,0.0003829337514129933,0.0,0.0033749448510061787,0.0016514948484264906,0.0006352730333916203,0.0009771840762299172,0.0,0.00011091018588441126,0.0012685610970134974,0.0006352730333916203,0.0009771840762299172,0.0,0.00011091018588441126,0.0003829337514129933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5586671321870552e-05,0.0,0.0,0.00035654833048999885,0.0001374306359048167,0.0003821350018118694,0.00015117034202387225,7.570344224053741e-05,0.00011644788049367914,0.0,1.3216809796193291e-05,2.5586671321870552e-05,0.0,0.0,0.0,0.0,0.0,0.00018699386649461867,7.193008255935326e-05,0.00011064365648206727,0.0,1.2558031599022619e-05 +98893,50.0,the Greater Atlanta and Macon Area,G1302230120202,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11635.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0027889652335631857,0.0,0.0,0.0027889652335631857,0.0014045315262409186,0.0006866341261837301,0.0005923480621209198,0.0,0.00010536881194387766,0.0014045315262409186,0.0006866341261837301,0.0005923480621209198,0.0,0.00010536881194387766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003323556920816751,9.642984253971297e-05,0.0003323556920816751,0.00016737535550342535,8.182488525435385e-05,7.058899400044356e-05,0.0,1.2556601278492753e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00016737535550342535,8.182488525435385e-05,7.058899400044356e-05,0.0,1.2556601278492753e-05 +98894,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,28173.0,,4001.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006613765168741021,0.0031034368541700942,0.0,0.009717202022911117,0.0039379201354373,0.0012479244650965887,0.0033405206701270186,0.00041166224660187475,0.0007791745056483333,0.002415230729473855,0.0012479244650965887,0.002538947727568703,0.00041166224660187475,0.0,0.0015226894059634458,0.0008015729425583154,0.0007791745056483333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020735343847218723,0.0,0.0,0.0007881529189185316,0.00044529431866697486,0.000995506357390719,0.0002878195854750785,0.0001487133704722919,0.0003025627628756233,4.905720009553801e-05,0.0,0.00010173717039785717,5.355640009314206e-05,5.205986798118803e-05,0.0,0.0,0.0,0.0004034314116843191,0.00012784716584238396,0.0003422291268891704,4.2173907944247825e-05,7.982474503059753e-05 +98895,35.0,Eastern Counties in South Carolina and Georgia,G1300730030505,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,110797.0,,655.0,,9.325022323477118,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.027743345292660045,0.0005555828175334459,0.0,0.02829883972603543,0.011087173938887696,0.004202578331355047,0.012453504638259243,0.0,0.0005555828175334459,0.011087173938887696,0.004202578331355047,0.012453504638259243,0.0,0.0,0.0,0.0,0.0005555828175334459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.712041358364076e-05,0.0,0.0,0.0033061160594736313,0.00101301935460198,0.003343236473057272,0.0013212351800715228,0.00050081241342459,0.001484057933423449,0.0,0.0,0.0,0.0,3.712041358364076e-05,0.0,0.0,0.0,0.0013098432534503197,0.0004964943189999384,0.0014712621198285833,0.0,6.563678077843092e-05 +98896,50.0,the Greater Atlanta and Macon Area,G1300210013407,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11614.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027887171123419673,0.0,0.0,0.002788717112341967,0.0012326662270106378,0.0006054157797717304,0.0008523791019573023,0.0,9.81732965285579e-05,0.0012326662270106378,0.0006054157797717304,0.0008523791019573023,0.0,9.81732965285579e-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.0003323211859992211,8.77127830807304e-05,0.0003323211859992211,0.00014689231141029694,7.214517710167562e-05,0.00010157489005599302,0.0,1.1698951532744391e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00014689231141029694,7.214517710167563e-05,0.00010157489005599305,0.0,1.1698951532744393e-05 +98897,50.0,the Greater Atlanta and Macon Area,G1302230120501,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,20140.0,,3442.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004728091707582954,0.00266978047457358,0.0,0.007397872182156535,0.0036164985227399027,0.0006348380078710113,0.0021102238557393683,0.00041295601913097124,0.0006234366374583488,0.002282619045241469,0.0006348380078710113,0.0013977594961225705,0.00041295601913097124,0.0,0.0013338794774984336,0.0007124643596167978,0.0006234366374583488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000178379444634017,0.0,0.0,0.0005634409290932447,0.00032148067807671215,0.0007418203737272618,0.00027201693096479,7.565287204663881e-05,0.00016656929642060864,4.921146574222194e-05,0.0,8.912218913537707e-05,4.760278906836852e-05,4.1654466430271405e-05,0.0,0.0,0.0,0.0003626437737318342,6.365827317090287e-05,0.00021160233791122813,4.140909452092739e-05,6.251500269362642e-05 +98898,50.0,the Greater Atlanta and Macon Area,G1300630040611,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6600.0,,199.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013054484519012283,0.00015747426839964133,0.0,0.0014629227203008695,0.0008600708598150578,0.00032396360783686713,0.00022620384667700584,0.0,5.260169889819953e-05,0.0007025965914154165,0.00032396360783686713,0.00022620384667700584,0.0,5.260169889819953e-05,0.00015747426839964133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0524227754431896e-05,0.0,0.0,0.00015556575232140857,5.8740798486954904e-05,0.00016608998007584046,8.372599252219753e-05,3.860561656379608e-05,2.695592578554565e-05,0.0,6.2683615355053135e-06,1.0524227754431896e-05,0.0,0.0,0.0,0.0,0.0,9.764641015426646e-05,3.6780554723940926e-05,2.5681597439361363e-05,0.0,5.972027777489516e-06 +98899,50.0,the Greater Atlanta and Macon Area,G1301210006300,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,36635.0,,2074.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006203320810560961,0.0006105390276864993,0.0,0.006813829148641164,0.0031402832748061394,0.0013365016646586588,0.0023370442091763645,0.0,0.0,0.0025297442471196407,0.0013365016646586588,0.0023370442091763645,0.0,0.0,0.0006105390276864993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.079214250370144e-05,0.0,0.0,0.0007392366060757963,0.00026050426726989155,0.0007800287485794978,0.00030146426544581435,0.00015926807346718146,0.00027850060994740025,0.0,0.0,4.079214250370144e-05,0.0,0.0,0.0,0.0,0.0,0.00035949114361352155,0.00015299909906986878,0.00026753850589610723,0.0,0.0 +98900,85.0,Rural Climate Zone 3A,G1301650960100,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,47537.0,,6937.0,,9.525004485617233,Lodging,Zone-by-Zone,Before 1946,E: Lodging with Zone-by-Zone Systems,166687.57849830156,0.0,0.0,0.012459490801322488,0.0060069352905412245,0.0,0.018466426091863712,0.005743409070346598,0.0026252411637682524,0.007085415669590557,0.000673215150390999,0.0023391450377673044,0.004906065564932019,0.0026252411637682524,0.00292767790157298,0.000673215150390999,0.0013272910206582364,0.000837343505414579,0.0041577377680175765,0.0010118540171090678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000401350914045214,0.0,0.0,0.0014847698033012711,0.0008332080831111642,0.0018861207173464852,0.0005846449200840589,0.0003128441497731878,0.0003488848630625094,8.022555193984188e-05,0.00015817031844167297,5.594676236934877e-05,0.00027779754114910923,6.760661052675592e-05,0.0,0.0,0.0,0.0005866193481016524,0.0002681364397410787,0.0007236889920629693,6.876073562189979e-05,0.00023891520181888482 +98901,35.0,Eastern Counties in South Carolina and Georgia,G1302450010504,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,105524.0,,19820.0,,9.525004485617233,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,357187.66821064625,0.0,0.0,0.026281662235607527,0.01716260777324405,0.0,0.04344427000885158,0.022681671979875796,0.0015794420083264757,0.0139498268215256,0.0006575064959497983,0.004575822703173902,0.017175156640872363,0.0015794420083264757,0.004419548675370923,0.0006575064959497983,0.002449918135464737,0.005506515339003433,0.009530278146154677,0.0021259045677091653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011467070162829917,0.0,0.0,0.003131930640892931,0.0020605983776002266,0.004278637657175923,0.0020467274430155695,0.000188218795943932,0.0005266683587676049,7.835367195539622e-05,0.00029195161277682097,0.0003679137726580827,0.0006367585253775426,0.00014204075021399695,0.0,0.0,0.0,0.0022338194620610662,0.0001555523905171923,0.0013738579181443568,6.475496199695407e-05,0.0004506529244563528 +98902,50.0,the Greater Atlanta and Macon Area,G1302230120202,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,261874.0,,15533.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01545289649564702,0.0026415401658051465,0.0,0.018094454391813588,0.011377962991199125,0.002218405090515587,0.0022339191567581325,0.0,0.0022641671533407425,0.009124451785071834,0.002218405090515587,0.001845890197080277,0.0,0.0022641671533407425,0.002253511206127291,0.0003880289596778555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017649277834276626,0.0,0.0,0.0018414925093047036,0.0007190365261407049,0.0020179852876474696,0.0010873436975686014,0.00026436314757810245,0.00021997125081888973,0.0,0.00026981652623281577,0.00015056687721223252,2.5925901130533745e-05,0.0,0.0,0.0,0.0,0.0012689281158997088,0.00024740778239370895,0.0002491379897130968,0.0,0.0002525113996409548 +98903,85.0,Rural Climate Zone 3A,G1302510970400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,32035.0,,4752.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006670387624277922,0.003268996278891551,0.0,0.009939383903169475,0.0033677546789800477,0.000491783841254045,0.003980530111337428,0.0003788966068754732,0.001720346944751462,0.0033677546789800477,0.000491783841254045,0.0007115338324458772,0.0003788966068754732,0.001720346944751462,0.0,0.003268996278891551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021841635239627354,0.0,0.0,0.000794893358463504,0.00047283896399805743,0.0010133097108597775,0.0004013268760442418,5.8604646571019574e-05,8.479170171081888e-05,4.515215806251953e-05,0.00020500942938588977,0.0,0.00021841635239627354,0.0,0.0,0.0,0.0,0.00034333903924525246,5.013684417881672e-05,0.000405810848588086,3.8628109639301256e-05,0.00017538755743288264 +98904,35.0,Eastern Counties in South Carolina and Georgia,G1300510001100,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,16158.0,,6050.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0032065281841369545,0.004161838198064894,0.0,0.007368294662230831,0.0015140085881395495,0.00033091594626602944,0.0038089042206970714,0.0002906810425262716,0.0014238565845729261,0.0013382946591513022,0.00033091594626602944,0.0010655436093789333,0.0002906810425262716,0.0001810929268144179,0.00017571392898824706,0.002743360611318138,0.001242763657758508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002780684376726177,0.0,0.0,0.00038211310793780345,0.00036901187336356423,0.0006601815456104211,0.00015948087843877993,3.9434339395312475e-05,0.00012697788911923653,3.4639657037104775e-05,2.1580343947369738e-05,1.1740124287820112e-05,0.00018329448740139062,8.303382598340689e-05,0.0,0.0,0.0,0.00013565154158517374,2.96492758348646e-05,0.00034126869116558054,2.60443248718479e-05,0.00012757413809049995 +98905,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,20670.0,,1677.0,,8.53126424238864,Food Service,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.004852374731159281,0.0013003222525249946,0.0,0.006152696983684276,0.002067529362279186,0.0004308262521891158,0.0027858965590599866,0.0004133603230463138,0.00045492276554353716,0.002067529362279186,0.0004308262521891158,0.001485574306534992,0.0004133603230463138,0.00045492276554353716,0.0,0.0013003222525249946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.688009044401824e-05,0.0,0.0,0.0005782440801465259,0.00024104350975960608,0.0006651241705905441,0.00024638175749081844,5.134037326102236e-05,0.00017703178257348027,4.925900677746739e-05,5.421188813185281e-05,0.0,8.688009044401824e-05,0.0,0.0,0.0,0.0,0.00022350584725758474,4.657355212125665e-05,0.000301163399255566,4.468543514336787e-05,4.917845424815878e-05 +98906,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen5_led,100001_200000,NaturalGas,116758.0,,5174.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.009752297572433608,0.0015228796437046074,0.0,0.011275207905744513,0.004136805480898846,0.002356654867600597,0.004781747557245071,0.0,0.0,0.0026139258371942393,0.002356654867600597,0.004781747557245071,0.0,0.0,0.0015228796437046074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010175087327857735,0.0,0.0,0.0011621638046626103,0.000401992881368307,0.0012639146779411877,0.00031149685225422165,0.000280838332389392,0.0005698322772443177,0.0,0.0,0.00010175087327857735,0.0,0.0,0.0,0.0,0.0,0.00046372263915699015,0.0002641734594077323,0.0005360185793764653,0.0,0.0 +98907,50.0,the Greater Atlanta and Macon Area,G1300670031112,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,95062.0,,3627.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00913905158762627,0.0010566367772405101,0.0,0.01019568836486678,0.006491658287032384,0.003243596683957517,0.0004604030202774422,0.0,0.0,0.005435021509791874,0.003243596683957517,0.0004604030202774422,0.0,0.0,0.0010566367772405101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.059856593575753e-05,0.0,0.0,0.0010890816536328945,0.0003037981019535975,0.0011596802195686523,0.0006476801401831131,0.0003865326293885327,5.4865264502962634e-05,0.0,0.0,7.059856593575753e-05,0.0,0.0,0.0,0.0,0.0,0.0007383756190128259,0.0003689338846022247,5.236726119300049e-05,0.0,0.0 +98908,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,3508.0,,122.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005227914131061622,9.684998334872898e-05,0.0,0.0006196413964548913,0.0003065951223516126,0.00016963220823931952,0.00011066206466319333,0.0,3.275200120076574e-05,0.00020974513900288364,0.00016963220823931952,0.00011066206466319333,0.0,3.275200120076574e-05,9.684998334872898e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4689924903909945e-06,0.0,0.0,6.230423766272215e-05,2.8443409589612676e-05,6.877323015311315e-05,2.4996606029530672e-05,2.0216103693441404e-05,1.3188272424097806e-05,0.0,3.903255515652265e-06,6.4689924903909945e-06,0.0,0.0,0.0,0.0,0.0,3.4028612410249655e-05,1.8827268425525234e-05,1.228224532099111e-05,0.0,3.6351039963471444e-06 +98909,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8492.0,,358.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027192431704009495,0.0002840160912207817,0.0,0.0030032592616217315,0.001857352754963627,0.0006698445902146509,0.0003967458327274577,0.0,7.939879078973511e-05,0.0015733366637428452,0.0006698445902146509,0.0003967458327274577,0.0,7.939879078973511e-05,0.0002840160912207817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8974655790995677e-05,0.0,0.0,0.0003240504505238552,0.0001174940229966354,0.00034302510631485086,0.0001874935129969979,7.982494673619756e-05,4.7279944375051195e-05,0.0,9.46190256411281e-06,1.8974655790995677e-05,0.0,0.0,0.0,0.0,0.0,0.00021214239955145972,7.650805067316527e-05,4.531536227672228e-05,0.0,9.06874041810577e-06 +98910,50.0,the Greater Atlanta and Macon Area,G1300670030412,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,14502.0,,3020.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0013154485947384346,0.0008888630672003657,0.0,0.0022042809723325026,0.0011013885908119573,0.0004885478426531306,0.0006143752284737121,0.0,0.0,0.0002125255236115918,0.0004885478426531306,0.0006143752284737121,0.0,0.0,0.0008888630672003657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.938766575745174e-05,0.0,0.0,0.00015675891417042207,0.00010757730004773541,0.0002161465799278738,2.5326166638596755e-05,5.8219096999252244e-05,7.321365053257306e-05,0.0,0.0,5.938766575745174e-05,0.0,0.0,0.0,0.0,0.0,0.0001079995608834185,4.790584623559795e-05,6.024418215908258e-05,0.0,0.0 +98911,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,116318.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.010363818667521636,0.0,0.0,0.010363818667521636,0.0024765898490120195,0.003051651691818374,0.004835546437084943,0.0,0.0,0.0024765898490120195,0.003051651691818374,0.004835546437084943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001235036436767962,0.0003612943124477942,0.001235036436767962,0.0002951304727131964,0.00036365949199124387,0.0005762428148418716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002951304727131964,0.00036365949199124387,0.0005762428148418716,0.0,0.0 +98912,85.0,Rural Climate Zone 3A,G1302850960600,ComStock 90.1-2007,gen1_t12_incandescent,200001_500000,Electricity,360904.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02956995739114369,0.0,0.0,0.02956995739114369,0.007313056974285894,0.01147622482699447,0.010780675589863332,0.0,0.0,0.007313056974285894,0.01147622482699447,0.010780675589863332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003523794394586972,0.0009205613215187243,0.003523794394586972,0.0008714827969620922,0.001367599424694972,0.001284712172929908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008714827969620922,0.001367599424694972,0.001284712172929908,0.0,0.0 +98913,50.0,the Greater Atlanta and Macon Area,G1301390000701,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,7050.0,,1505.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0006281241720950828,0.00044297377730104193,0.0,0.0010710979493961245,0.0005290888125723959,0.0002814236897499345,0.000260616136680092,0.0,0.0,8.611503527135402e-05,0.0002814236897499345,0.000260616136680092,0.0,0.0,0.00044297377730104193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.959726815534316e-05,0.0,0.0,7.485214149074351e-05,5.570288771822595e-05,0.00010444940964608668,1.0262134608053273e-05,3.3536626641428545e-05,3.105703745245487e-05,0.0,0.0,2.959726815534316e-05,0.0,0.0,0.0,0.0,0.0,5.159473431416105e-05,2.7443370861998658e-05,2.5414297203935942e-05,0.0,0.0 +98914,85.0,Rural Climate Zone 3A,G1302850960600,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,14403.0,,1979.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001196956024823004,0.0005823966587115057,0.0,0.0017793526835345101,0.0008070445768106901,0.0004395365413956992,0.0005327408757218226,0.0,0.0,0.00022464791809918437,0.0004395365413956992,0.0005327408757218226,0.0,0.0,0.0005823966587115057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8911949423724434e-05,0.0,0.0,0.00014263786010452917,7.963947656088326e-05,0.00018154980952825357,2.6770656273143776e-05,5.237832501966736e-05,6.348522161823809e-05,0.0,0.0,3.8911949423724434e-05,0.0,0.0,0.0,0.0,0.0,8.234387176675146e-05,4.484651980999408e-05,5.4356286648630585e-05,0.0,0.0 +98915,81.0,the Columbus-Albany Area,G1302150000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,34825.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003026670352292044,0.0,0.0,0.003026670352292044,0.0008281283363372119,0.0009627022599526387,0.0012358090663958955,0.0,0.0,0.0008281283363372119,0.0009627022599526387,0.0012358090663958955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036068240124622383,0.00012100477501198548,0.00036068240124622383,9.868643827166458e-05,0.00011472335021286119,0.00014726895554118693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.868643827166458e-05,0.00011472335021286119,0.00014726895554118693,0.0,0.0 +98916,50.0,the Greater Atlanta and Macon Area,G1300590130400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,20187.0,,189.0,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.004185722294872609,0.00014994792468936432,0.0,0.004335670219561974,0.002423317260561707,0.0009719735305843408,0.0007905142108003004,0.0,0.00014994792468936432,0.002423317260561707,0.0009719735305843408,0.0007905142108003004,0.0,0.0,0.0,0.0,0.00014994792468936432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0019590789575903e-05,0.0,0.0,0.000498805330809763,0.00013911350740394312,0.0005088249215993389,0.0002887825523666947,0.0001158284148605255,9.420421964235047e-05,0.0,0.0,0.0,0.0,1.0019590789575903e-05,0.0,0.0,0.0,0.00028439529592271613,0.00011406872074006009,9.277304568018162e-05,0.0,1.7597565580473867e-05 +98917,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,3435.0,,292.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0008965446793340925,0.00023191063476501802,0.0,0.0011284553140991104,0.0006083105273526061,0.0002527528173473235,0.00022479782642343755,0.0,4.251143590200402e-05,0.00037639989258758807,0.0002527528173473235,0.00022479782642343755,0.0,4.251143590200402e-05,0.00023191063476501802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5495044274499082e-05,0.0,0.0,0.00010683555199557658,4.457282581142505e-05,0.00012233059627007566,4.485319161733109e-05,3.0118952665911627e-05,2.6787733424721132e-05,0.0,5.065818609384351e-06,1.5495044274499082e-05,0.0,0.0,0.0,0.0,0.0,6.594411723588439e-05,2.7399758296786226e-05,2.4369287647468897e-05,0.0,4.6084672004411395e-06 +98918,50.0,the Greater Atlanta and Macon Area,G1301350050320,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,34686.0,,3092.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003090504733391266,0.0009102537227898643,0.0,0.004000758456181129,0.0022351240266616935,0.0006912833818557551,0.0010743510476636812,0.0,0.0,0.0013248703038718295,0.0006912833818557551,0.0010743510476636812,0.0,0.0,0.0009102537227898643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.081684542485538e-05,0.0,0.0,0.00036829072530943405,0.00017592375858912915,0.00042910757073428944,0.00015788276907716104,8.237918400424024e-05,0.00012802877222803277,0.0,0.0,6.081684542485538e-05,0.0,0.0,0.0,0.0,0.0,0.00023973170384451224,7.41446742976471e-05,0.00011523119259213017,0.0,0.0 +98919,50.0,the Greater Atlanta and Macon Area,G1300890023310,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,12820.0,,2031.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011068820303392463,0.0005977721514666548,0.0,0.001704684871412199,0.0007467088108294064,0.00042517380564837434,0.0005327408757218226,0.0,0.0,0.00014893665936275158,0.00042517380564837434,0.0005327408757218226,0.0,0.0,0.0005977721514666548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.994029274273455e-05,0.0,0.0,0.0001319061350680274,8.204119090373707e-05,0.00017184642781076193,1.774864761375043e-05,5.066757964988636e-05,6.348625055163689e-05,0.0,0.0,3.994029274273455e-05,0.0,0.0,0.0,0.0,0.0,7.52744650391324e-05,4.2861059498259016e-05,5.3704715737713176e-05,0.0,0.0 +98920,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,31712.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.0027150787795514678,0.0,0.0,0.0027150787795514678,0.0008930982328694488,0.0006803885716200707,0.0011416226646682457,0.0,0.0,0.0008930982328694488,0.0006803885716200707,0.0011416226646682457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003235499321290972,0.0001082001468045308,0.0003235499321290972,0.00010642854078704243,8.108040099133125e-05,0.00013604464756321745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010642854078704243,8.108040099133125e-05,0.00013604464756321745,0.0,0.0 +98921,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,131112.0,,5474.0,,9.325022323477118,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.03654835188641074,0.004640698602833455,0.0,0.04118905048924421,0.0188120377370488,0.009452243783187144,0.012377317494015872,0.0,0.000547539859150445,0.014171339134215345,0.009452243783187144,0.012377317494015872,0.0,0.000547539859150445,0.004640698602833455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003100661258425321,0.0,0.0,0.004355397819240712,0.0018154541577556178,0.004665463945083244,0.0016887716237577112,0.0011264059755190189,0.0014749814653483883,0.0,6.524928718818384e-05,0.0003100661258425321,0.0,0.0,0.0,0.0,0.0,0.002130830469584758,0.0010706511086511345,0.0014019728014914659,0.0,6.201957658697251e-05 +98922,81.0,the Columbus-Albany Area,G1300950011200,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,257067.0,,13738.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.029124436376519944,0.004043877353029403,0.0,0.03316831372954934,0.015540234561755163,0.0069730468261136455,0.010655063031286835,0.0,0.0,0.011496357208725761,0.0069730468261136455,0.010655063031286835,0.0,0.0,0.004043877353029403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027018902350598606,0.0,0.0,0.0034707018447568258,0.0012354396340242717,0.0037408908682628117,0.0013699982947816141,0.0008309642861442444,0.0012697429210510357,0.0,0.0,0.00027018902350598606,0.0,0.0,0.0,0.0,0.0,0.0017527065752197314,0.0007864556337857559,0.0012017321205869808,0.0,0.0 +98923,50.0,the Greater Atlanta and Macon Area,G1301210005501,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,153289.0,,9491.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.014027854157233118,0.0016140479911516668,0.0,0.015641902148384783,0.007515049148612221,0.0028694639618599255,0.002412286592643864,0.0,0.002845120175630193,0.007014999765482472,0.0028694639618599255,0.0012983057149833666,0.0,0.002845120175630193,0.0005000493831297491,0.0011139808776604973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001078408106344652,0.0,0.0,0.0016716733094260304,0.0005678950644919871,0.0017795141200604957,0.0008359644848132586,0.00034194868749243127,0.00015471667917889558,0.0,0.00033904768372988264,3.34102400483761e-05,7.44293859518286e-05,0.0,0.0,0.0,0.0,0.0008549558708424086,0.0003264469748432579,0.00027443580790368586,0.0,0.0003236774835805846 +98924,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,21302.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.005001379456089659,0.0,0.0,0.005001379456089659,0.0019463455663071216,0.0014319902747223687,0.0015435621171966945,0.0,7.948149786347443e-05,0.0019463455663071216,0.0014319902747223687,0.0015435621171966945,0.0,7.948149786347443e-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.0005960003004392963,0.00020161827502388207,0.0005960003004392963,0.00023194051810352003,0.00017064624699121854,0.00018394194915080927,0.0,9.47158619374847e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00023194051810352003,0.00017064624699121854,0.00018394194915080927,0.0,9.47158619374847e-06 +98925,50.0,the Greater Atlanta and Macon Area,G1302470060403,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,21836.0,,1369.0,,8.53126424238864,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005161586365613332,0.0010613786385574948,0.0,0.006222965004170827,0.0024926144988704365,0.0006688803975428616,0.002317065738828663,0.0003128503696921339,0.00043163486001980116,0.0024926144988704365,0.0006688803975428616,0.0012556871002711674,0.0003128503696921339,0.00043163486001980116,0.0,0.0010613786385574948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.091380438207704e-05,0.0,0.0,0.0006151004166406565,0.00026276498084136404,0.0006860142210227334,0.00029704205416265686,7.970972140509627e-05,0.00014963881330992985,3.728202515912929e-05,5.143743869202175e-05,0.0,7.091380438207704e-05,0.0,0.0,0.0,0.0,0.0002747836429429538,7.373679019088153e-05,0.0002554313011266574,3.448835121476313e-05,4.758304956950261e-05 +98926,50.0,the Greater Atlanta and Macon Area,G1301390001102,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5266.0,,382.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003634570073836941,0.00011256947589997382,0.0,0.0004760571728899656,0.00023262721573658708,0.00013270185763126683,0.00011069740991581393,0.0,0.0,0.0001200577398366133,0.00013270185763126683,0.00011069740991581393,0.0,0.0,0.00011256947589997382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.522245535104099e-06,0.0,0.0,4.3312680050536034e-05,2.373581437578033e-05,5.083492558564013e-05,1.4307118496807985e-05,1.5813900915183464e-05,1.3191660638544578e-05,0.0,0.0,7.522245535104098e-06,0.0,0.0,0.0,0.0,0.0,2.48406869481145e-05,1.4170333821061624e-05,1.182062768098272e-05,0.0,0.0 +98927,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,26191.0,,522.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.00598178910819541,0.00041403161113897296,0.0,0.006395820719334382,0.002956695179106501,0.0015790434518308573,0.0017079010727166985,0.0,0.00015218101568032565,0.002542663567967528,0.0015790434518308573,0.0017079010727166985,0.0,0.00015218101568032565,0.00041403161113897296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7663619761090134e-05,0.0,0.0,0.0007128405291914434,0.0001905158878042999,0.0007405041489525336,0.0003030052732655727,0.00018817215877390994,0.00020352792157349891,0.0,1.8135175578461883e-05,2.7663619761090134e-05,0.0,0.0,0.0,0.0,0.0,0.0003423243307458086,0.00018282066974178234,0.00019773972502450273,0.0,1.761942344043995e-05 +98928,50.0,the Greater Atlanta and Macon Area,G1302470060404,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,656795.0,,66255.0,,7.614023970037612,Education,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,2664908.3895131643,0.0,0.0,0.12534986063249104,0.045860699606224624,0.0,0.1712105602387157,0.12639289061204786,0.019169293246370952,0.016658169523361268,0.0008095696610162836,0.008180709362942046,0.08577267152858652,0.019169293246370952,0.011417616833575258,0.0008095696610162836,0.008180709362942046,0.04062021908346134,0.00524055268978601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030641454139088446,0.0,0.0,0.014937700693828332,0.007020056558000692,0.01800184610773718,0.010221363538333075,0.0022843676377594046,0.0013606153372344107,9.647485227383442e-05,0.0009748793282276094,0.0027140069620670794,0.00035014327362280256,0.0,0.0,0.0,0.0,0.01328951533560622,0.0020155454577925167,0.001751514648267216,8.512178472395736e-05,0.0008601564693116739 +98929,50.0,the Greater Atlanta and Macon Area,G1301210000400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,52682.0,,1862.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004518619641155463,0.0005423813651599343,0.0,0.005061001006315398,0.0037911415610218688,0.0010242281466404293,0.0002456009250536613,0.0,0.0,0.003248760195861935,0.0010242281466404293,0.0002456009250536613,0.0,0.0,0.0005423813651599343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.62389735085155e-05,0.0,0.0,0.0005384744056978836,0.00019493394065288233,0.0005747133792063992,0.0003871479245096099,0.00012205511557954895,2.9267746050717145e-05,0.0,0.0,3.62389735085155e-05,0.0,0.0,0.0,0.0,0.0,0.00043051162702118596,0.00011630853629538778,2.7889766747264483e-05,0.0,0.0 +98930,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,602721.0,,49195.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,280597.8237794184,0.0,0.0,0.029253731105257783,0.008366053305690494,0.0,0.0376198021413097,0.020434046502635233,0.005803927428685764,0.004470852474957675,0.0,0.0069109580046696015,0.012485206331520001,0.005803927428685764,0.004053639340382413,0.0,0.0069109580046696015,0.007948840171115234,0.00041721313457526244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000558971275907274,0.0,0.0,0.0034861117220603894,0.001444969291391803,0.0040450829979676636,0.0014878383884793327,0.0006916430376121406,0.00048306452160464496,0.0,0.0008235657743642707,0.0005310955082498794,2.787576765739477e-05,0.0,0.0,0.0,0.0,0.002197178331162077,0.0006240694216048214,0.0004807300491624363,0.0,0.0007431032895747253 +98931,35.0,Eastern Counties in South Carolina and Georgia,G1300510002800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4904.0,,134.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,9713.774621698478,0.0,0.0,0.0003200619040787424,3.931338566735726e-05,0.0,0.00035937528974609956,0.0001189836036161937,0.00013399082109577035,0.00010640086503413556,0.0,0.0,7.967021794883643e-05,0.00013399082109577035,0.00010640086503413556,0.0,0.0,3.931338566735726e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6270043632586117e-06,0.0,0.0,3.8141666821463924e-05,1.665000655820316e-05,4.076867118472253e-05,9.494272420032634e-06,1.5967639979145794e-05,1.2679754422285493e-05,0.0,0.0,2.6270043632586117e-06,0.0,0.0,0.0,0.0,0.0,1.3497876873028974e-05,1.5200343159051973e-05,1.2070451152641593e-05,0.0,0.0 +98932,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2004,gen1_t12_incandescent,_1000,Electricity,3295.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.0001722607601490057,0.0,0.0,0.0001722607601490057,6.248403842212286e-05,8.295400582269063e-05,2.6853405510489935e-05,0.0,0.0,6.248403842212286e-05,8.295400582269063e-05,2.6853405510489935e-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,2.0528319227351927e-05,8.04913910851049e-06,2.0528319227351927e-05,7.446224469426068e-06,9.88563101220956e-06,3.200121026889887e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.446224469426068e-06,9.88563101220956e-06,3.200121026889887e-06,0.0,0.0 +98933,35.0,Eastern Counties in South Carolina and Georgia,G1300510001100,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,48287.0,,8253.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0023250000233729444,0.00140357087073422,0.0,0.003728570894107164,0.0015313713158499609,0.0004706879046181418,0.001253554282759153,0.0,0.00047297512124132854,0.0013141566580928937,0.0004706879046181418,0.00044646823091834965,0.0,9.370496010497906e-05,0.00021721465775706683,0.0008070860518408034,0.00037927016113634945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.377831880885456e-05,0.0,0.0,0.00027706655340079954,0.00015851305806382742,0.00037084487220965406,0.0001566059579467392,5.609112866622709e-05,5.320490868814798e-05,0.0,1.1166670998644297e-05,1.4513000981876111e-05,5.392472489551879e-05,2.5340592931459632e-05,0.0,0.0,0.0,0.00015231068848106132,4.681477187804486e-05,0.00012467891613175306,0.0,4.704225918630069e-05 +98934,50.0,the Greater Atlanta and Macon Area,G1301130140304,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,196684.0,,19849.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010320541966468595,0.0033754884767882324,0.0,0.013696030443256827,0.006197754216547978,0.0020560304406307428,0.002375762048118555,0.0,0.003066466007598132,0.005477015024822831,0.0020560304406307428,0.002375762048118555,0.0,0.00041171672253504613,0.0007207391917251464,0.0,0.0026547492850630856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002255307415675652,0.0,0.0,0.0012298795697682561,0.0005056340385695699,0.0014554103113358214,0.0006526855764192271,0.00024501327953212296,0.0002831150936748328,0.0,4.906350724825958e-05,4.815565080561157e-05,0.0,0.0001773750907619536,0.0,0.0,0.0,0.0006586050922754835,0.00021848432041034145,0.000252460637878798,0.0,0.00032585837665222405 +98935,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,121501.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012162628561448886,0.0,0.0,0.012162628561448889,0.004705084920713408,0.0028910529820624954,0.0045664599690666855,0.0,0.0,0.004705084920713408,0.0028910529820624954,0.0045664599690666855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001449396682245396,0.0004452524265996958,0.001449396682245396,0.0005606957771760212,0.0003445211353143442,0.0005441761125346098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005606957771760211,0.00034452113531434407,0.0005441761125346096,0.0,0.0 +98936,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,4837.0,,473.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.00108197393865762,0.0003751592864814984,0.0,0.0014572159322128575,0.0008173113026918359,0.00023157980647006075,0.0003787156906522887,0.0,2.9526425324932746e-05,0.00047167844153527027,0.00023157980647006075,0.0003787156906522887,0.0,0.0,0.0003456328611565656,0.0,2.9526425324932746e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5066886011936338e-05,0.0,0.0,0.00012894126007866096,6.356168040717733e-05,0.0001540081460905973,5.621097739096494e-05,2.75978847439421e-05,4.513239794375389e-05,0.0,0.0,2.3094029242478382e-05,0.0,1.9728567694579526e-06,0.0,0.0,0.0,8.637882397793759e-05,2.4474874229733378e-05,4.0025160392124696e-05,0.0,3.120546464291006e-06 +98937,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,36981.0,,4145.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034341606468299723,0.0012074113248495102,0.0,0.004641571971679482,0.0034961227896829856,0.0007115015668293363,0.0004339476151671603,0.0,0.0,0.0022887114648334752,0.0007115015668293363,0.0004339476151671603,0.0,0.0,0.0012074113248495102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.067175103683645e-05,0.0,0.0,0.0004092435024379216,0.00020586943285933165,0.0004899152534747581,0.00027274213185189157,8.478851840204053e-05,5.1712852183989474e-05,0.0,0.0,8.067175103683645e-05,0.0,0.0,0.0,0.0,0.0,0.0003690137507588116,7.509858138314186e-05,4.5802921332804604e-05,0.0,0.0 +98938,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,5364.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.00136615544402588,0.0,0.0,0.00136615544402588,0.0006887845101009524,0.0002739258282245862,0.000355392295857804,0.0,4.797010276879831e-05,0.0006887845101009524,0.0002739258282245862,0.000355392295857804,0.0,4.797010276879831e-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.00016280366637018887,5.109200698047338e-05,0.00016280366637018887,8.208190661889655e-05,3.2643524822500636e-05,4.235181949344361e-05,0.0,5.71655929862632e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.208190661889655e-05,3.2643524822500636e-05,4.235181949344361e-05,0.0,5.71655929862632e-06 +98939,85.0,Rural Climate Zone 3A,G1303030950400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,38654.0,,7261.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007876430656876437,0.004994578781527152,0.0,0.01287100943840359,0.0029659794013505952,0.0003469812197735263,0.007385794335158641,0.0003799724064407074,0.0017923537956511361,0.0029659794013505952,0.0003469812197735263,0.002391215553631488,0.0003799724064407074,0.0017923537956511361,0.0,0.004994578781527152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003337094660764428,0.0,0.0,0.0009386204227820426,0.0005821132195916103,0.0012723298888584853,0.00035345056167390297,4.134914320827815e-05,0.0002849569623206286,4.5280645042880865e-05,0.0002135916572794707,0.0,0.0003337094660764428,0.0,0.0,0.0,0.0,0.00029319411660263823,3.4299918658531344e-05,0.0007301033326527936,3.7561175910065955e-05,0.00017717843472413332 +98940,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,98025.0,,6751.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008822648018463598,0.0019870906285636594,0.0,0.010809738647027256,0.003216516256849633,0.003134390870396981,0.004458831519780642,0.0,0.0,0.0012294256282859735,0.003134390870396981,0.004458831519780642,0.0,0.0,0.0019870906285636594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013276540126974128,0.0,0.0,0.001051377376781157,0.0004190438509666206,0.0011841427780508985,0.00014650820131436324,0.0003735191117483412,0.0005313500637184525,0.0,0.0,0.00013276540126974128,0.0,0.0,0.0,0.0,0.0,0.00035235028527532894,0.0003433539361092655,0.000488438556666304,0.0,0.0 +98941,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,95046.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008468520651394402,0.0,0.0,0.008468520651394404,0.002215359920205973,0.002278672577998134,0.003974488153190296,0.0,0.0,0.002215359920205973,0.002278672577998134,0.003974488153190296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010091788165008352,0.0003210566467654832,0.0010091788165008352,0.0002640005727598628,0.0002715454316189712,0.00047363281212200136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002640005727598627,0.0002715454316189711,0.00047363281212200125,0.0,0.0 +98942,50.0,the Greater Atlanta and Macon Area,G1301210011417,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,12713.0,,125.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030829888807064236,9.933119556090821e-05,0.0,0.0031823200762673316,0.001390884859073933,0.0007887773622517749,0.0009213568014558848,0.0,8.14664676332178e-05,0.0012915536635130247,0.0007887773622517749,0.0009213568014558848,0.0,8.14664676332178e-05,9.933119556090821e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.636649367718741e-06,0.0,0.0,0.0003673970919944352,9.882656961478316e-05,0.000374033741362154,0.0001539133219386495,9.399790928079537e-05,0.00010979728524568109,0.0,9.708287788778801e-06,6.636649367718741e-06,0.0,0.0,0.0,0.0,0.0,0.0001634775431683173,9.270888560362976e-05,0.000108291599625085,0.0,9.575154904013349e-06 +98943,50.0,the Greater Atlanta and Macon Area,G1301210001700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,196108.0,,7630.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,306613.1346040191,0.0,0.0,0.01957303004841595,0.0028356096516410183,0.0,0.022408639700056972,0.010118492144875296,0.003463992839952885,0.008333584752238074,0.0,0.0004925699629907165,0.008992966679567607,0.003463992839952885,0.007116070528895459,0.0,0.0,0.0011255254653076887,0.0012175142233426133,0.0004925699629907165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018945804525321867,0.0,0.0,0.002332479623257545,0.0007294689572730731,0.002521937668510764,0.0010716742109340958,0.000412797236519546,0.0008480081758039035,0.0,0.0,7.52007083966964e-05,8.134683301313726e-05,3.2910503843385025e-05,0.0,0.0,0.0,0.0011387664235873454,0.0003898484755639383,0.0009378874211781229,0.0,5.543534818135714e-05 +98944,50.0,the Greater Atlanta and Macon Area,G1301350050435,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,34012.0,,1900.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008111992499425012,0.0015075845401200955,0.0,0.009619494332471367,0.006296406816699735,0.0018156683897990159,0.0013137191592751593,0.0,0.00019369996669745798,0.004788822276579639,0.0018156683897990159,0.0013137191592751593,0.0,0.00019369996669745798,0.0015075845401200955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010072654835440409,0.0,0.0,0.0009666864623965483,0.0004334809934916204,0.0010674130107509526,0.000570672330616761,0.0002163687962907334,0.00015655272446964014,0.0,2.3082755018124976e-05,0.00010072654835440408,0.0,0.0,0.0,0.0,0.0,0.0006986715023511648,0.00020147296682098963,0.00014577491026213272,0.0,2.14936313166655e-05 +98945,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,43292.0,,4323.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0038572231675267745,0.0012724524563153526,0.0,0.005129675623842127,0.0030870061182733275,0.0008607206982253723,0.001181979496949725,0.0,0.0,0.0018145536619579748,0.0008607206982253723,0.001181979496949725,0.0,0.0,0.0012724524563153526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.501825031503616e-05,0.0,0.0,0.0004596572781930914,0.00021719729863451813,0.0005446755285081276,0.00021623659331220687,0.0001025702989553522,0.00014085404314221044,0.0,0.0,8.501825031503616e-05,0.0,0.0,0.0,0.0,0.0,0.00032778226388493684,9.139242626274446e-05,0.0001255040970221543,0.0,0.0 +98946,50.0,the Greater Atlanta and Macon Area,G1301210000200,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,246427.0,,13245.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.012714211679621404,0.002252482845164928,0.0,0.014966694524786333,0.009097749860773234,0.0020888138788964206,0.0021823415353871994,0.0,0.0015977715193680585,0.007849319652464475,0.0020888138788964206,0.001178271168169609,0.0,0.0015977715193680585,0.0012484302083087579,0.00100407036721759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015049808367414495,0.0,0.0,0.0015151270597581442,0.0006519779156891105,0.0016656251434322893,0.0009353876516939077,0.0002489197529868858,0.00014041220766270685,0.0,0.00019040322163155264,8.34130010600034e-05,6.708626725597899e-05,0.0,0.0,0.0,0.0,0.0010124774639895205,0.00023246154392196207,0.00024287012251621,0.0,0.00017781403981434183 +98947,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,25246.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.006086082728180677,0.0,0.0,0.006086082728180675,0.003984247863243657,0.00048466345211234147,0.0015500132689483606,0.0,6.715814387631764e-05,0.003984247863243657,0.00048466345211234147,0.0015500132689483606,0.0,6.715814387631764e-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.0007252687206845154,0.0002288651071497228,0.0007252687206845154,0.00047479642977652214,5.775656651008696e-05,0.00018471259606920478,0.0,8.00312832870147e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0004747964297765223,5.775656651008698e-05,0.00018471259606920483,0.0,8.003128328701474e-06 +98948,50.0,the Greater Atlanta and Macon Area,G1301210009602,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,511099.0,,8275.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.026308930837724055,0.0014072233251867508,0.0,0.027716154162910806,0.012449869721209839,0.00846812699638574,0.0022818265933151156,0.0,0.00451633085200011,0.011042646396023087,0.00846812699638574,0.0022818265933151156,0.0,0.00451633085200011,0.0014072233251867508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.402194595951985e-05,0.0,0.0,0.003135184710607664,0.0010245930658820167,0.0032292066565671835,0.001315930942196106,0.0010091304146987259,0.00027192088845212837,0.0,0.0005382024652607033,9.402194595951985e-05,0.0,0.0,0.0,0.0,0.0,0.001450533213981186,0.000986620723230717,0.00026585541345146486,0.0,0.0005261973059038158 +98949,50.0,the Greater Atlanta and Macon Area,G1302550160500,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6482.0,,,659.0,3.20458438519356,Mercantile,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,9613.75315558068,0.0,0.0,0.0005715703942196139,0.0,6.214438444964025e-05,0.0006336844050698164,0.0003774830938123797,0.00022115017750627103,3.508150735060336e-05,0.0,0.0,0.00031533870936273947,0.00022115017750627103,3.508150735060336e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.214438444964025e-05,0.0,0.0,0.0,0.0,5.011227192022712e-06,6.811167968280037e-05,2.5450076787240326e-05,7.312290687482309e-05,3.757760965388636e-05,2.6353551906178633e-05,4.180518122735383e-06,0.0,0.0,0.0,0.0,0.0,5.011227192022712e-06,0.0,0.0,4.355900333798118e-05,2.5519239081416232e-05,4.048169363965904e-06,0.0,0.0 +98950,50.0,the Greater Atlanta and Macon Area,G1300590130700,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,116421.0,,1967.0,,9.325022323477118,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.031091602352255897,0.0016671903733906123,0.0,0.032758704341488455,0.01594132028342387,0.003777362146952658,0.012415764602769776,0.0,0.0006242573083421458,0.014898475602533457,0.003777362146952658,0.012415764602769776,0.0,0.0,0.001042844680890412,0.0,0.0006242573083421458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011139057219568248,0.0,0.0,0.00370512142457746,0.0013410825231802226,0.003816511996773142,0.0017754202733937297,0.0004501403710396655,0.0014795607801440641,0.0,0.0,6.967594557264793e-05,0.0,4.1708721381440146e-05,0.0,0.0,0.0,0.0018572236396125375,0.00044007686628019235,0.0014464831716671353,0.0,7.272831921327621e-05 +98951,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,190936.0,,178.0,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,699376.6742607838,0.0,0.0,0.04899390195044504,0.00015051822116758803,0.0,0.04914450855577068,0.017304380768947383,0.006862587952176966,0.02452006343255389,0.0,0.00045747640209244615,0.017153862547779796,0.006862587952176966,0.02452006343255389,0.0,0.00045747640209244615,0.00015051822116758803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0059663489315155e-05,0.0,0.0,0.005838509483041389,0.001977101319529238,0.005848569146530705,0.002044192953998658,0.0008178014659358407,0.002922009008805674,0.0,5.451658687209624e-05,1.0059663489315155e-05,0.0,0.0,0.0,0.0,0.0,0.002059352518506385,0.0008167000005078413,0.0029180734669442773,0.0,5.444316057220153e-05 +98952,50.0,the Greater Atlanta and Macon Area,G1301390001002,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,5575.0,,791.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.001001334541761795,0.0006277466896813433,0.0,0.0016291639385168778,0.0011282071928778925,0.0002614370600899508,0.00020205338114512804,0.0,3.746630440390626e-05,0.0005379268076004556,0.0002614370600899508,0.00020205338114512804,0.0,0.0,0.000590280385277437,0.0,3.746630440390626e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.194472942360691e-05,0.0,0.0,0.0001193284248202329,7.014507458345492e-05,0.00016127315424383979,6.410440860913479e-05,3.115529452851708e-05,2.4078577833966218e-05,0.0,0.0,3.9441308813739457e-05,0.0,2.503420609867448e-06,0.0,0.0,0.0,0.00011168276459743214,2.5880010181986882e-05,2.0001539030241676e-05,0.0,3.7088404341790745e-06 +98953,81.0,the Columbus-Albany Area,G1302150000300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,212592.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,431997.0345818221,0.0,0.0,0.033438103339571056,0.0,0.0,0.03343810333957106,0.02407290343168709,0.004813161245161707,0.0044052356888189285,0.0,0.0001467483800119627,0.02407290343168709,0.004813161245161707,0.0044052356888189285,0.0,0.0001467483800119627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003984752979123735,0.0012658018669288926,0.003984752979123735,0.0028687205339202,0.000573574954772152,0.0005249632688942041,0.0,1.7487715690567977e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0028687205339201997,0.0005735749547721519,0.0005249632688942039,0.0,1.7487715690567974e-05 +98954,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,27697.0,,2650.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024533885066509555,0.0007800684128750093,0.0,0.003233456919525965,0.0011907874139571656,0.0008606593190127769,0.001181979496949725,0.0,0.0,0.0004107190010821563,0.0008606593190127769,0.001181979496949725,0.0,0.0,0.0007800684128750093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.21205037519314e-05,0.0,0.0,0.0002923643591729105,0.00013958441888885578,0.00034448486292484187,4.894438741601488e-05,0.00010256268405400295,0.00014085363049692873,0.0,0.0,5.21205037519314e-05,0.0,0.0,0.0,0.0,0.0,0.00012686367849607812,9.169261100858264e-05,0.00012592530382201367,0.0,0.0 +98955,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,28692.0,,2664.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0026077253797281825,0.0007761062128334345,0.0,0.0033838315925616177,0.002322183171413878,0.0006807027369994562,0.0003809760577477211,0.0,0.0,0.0015460769585804435,0.0006807027369994562,0.0003809760577477211,0.0,0.0,0.0007761062128334345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1855084408415943e-05,0.0,0.0,0.00031075640526036615,0.0001305591193714058,0.00036261148966878207,0.00018424229853314497,8.11177193907177e-05,4.540000688580482e-05,0.0,0.0,5.1855084408415943e-05,0.0,0.0,0.0,0.0,0.0,0.0002488452146735579,7.294412465075871e-05,4.082540518024481e-05,0.0,0.0 +98956,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6211.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011739442046557295,0.0,0.0,0.0011739442046557295,0.0005370997368630625,0.00020900077533922984,0.0003878134687636125,0.0,4.0030223689824796e-05,0.0005370997368630625,0.00020900077533922984,0.0003878134687636125,0.0,4.0030223689824796e-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.00013989269437751279,4.310859488989815e-05,0.00013989269437751279,6.400332233954968e-05,2.4905512096095166e-05,4.621367084233884e-05,0.0,4.77018909952911e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.400332233954968e-05,2.4905512096095166e-05,4.621367084233884e-05,0.0,4.77018909952911e-06 +98957,50.0,the Greater Atlanta and Macon Area,G1300890021303,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,70867.0,,5109.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.014064142876219295,0.003514350299735957,0.0,0.017578421455984237,0.005957491112382748,0.0013261739840496642,0.005541515280492203,0.0003723700895130526,0.004380799269575554,0.004807317937205393,0.0013261739840496642,0.0031773381559336007,0.0003723700895130526,0.004380799269575554,0.0011501731751773544,0.0023641771245586024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002348068269646683,0.0,0.0,0.0016759934649514133,0.0006413308600181118,0.0019108002919160814,0.0005728776732155774,0.00015803728319726152,0.00037863651074604286,4.437453757829115e-05,0.0005220503667868221,7.684735176899217e-05,0.0001579594751956761,0.0,0.0,0.0,0.0,0.0006475880547711578,0.00014415706451223703,0.0006023708694285059,4.0477176948111754e-05,0.00047619933018963064 +98958,81.0,the Columbus-Albany Area,G1301770020100,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,10790.0,,,,5.759960461090961,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,17279.881383272885,0.0,0.0,0.0014964731564389544,0.0,0.0,0.0014964731564389544,0.0011770442980126175,0.00018157928270825442,0.0001262210768555274,0.0,1.1628498862555079e-05,0.0011770442980126175,0.00018157928270825442,0.0001262210768555274,0.0,1.1628498862555079e-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.0001783324460001224,5.600241976122853e-05,0.0001783324460001224,0.00014026659135976942,2.163852888973066e-05,1.50415751031441e-05,0.0,1.385750647478241e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014026659135976942,2.163852888973066e-05,1.50415751031441e-05,0.0,1.385750647478241e-06 +98959,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,52969.0,,7751.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004430627771593053,0.0022816187802027128,0.0,0.006712246551795767,0.003257210674800387,0.0014140236101666558,0.0020410429564350213,0.0,0.0,0.0009755918945976739,0.0014140236101666558,0.0020410429564350213,0.0,0.0,0.0022816187802027128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015244382411802474,0.0,0.0,0.0005279905130252222,0.0002923532491313544,0.0006804343371432471,0.00011625965698009123,0.000168506832406106,0.0002432276808681603,0.0,0.0,0.00015244382411802474,0.0,0.0,0.0,0.0,0.0,0.0003301901933043215,0.00014334250246383453,0.0002069047524440538,0.0,0.0 +98960,50.0,the Greater Atlanta and Macon Area,G1301350050525,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,224704.0,,11718.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011566667227792747,0.001992839432529675,0.0,0.013559524390683843,0.00702804931148763,0.004117929630891524,0.001301514910400396,0.0,0.0011120128075428717,0.005595950289228545,0.004117929630891524,0.0007407745001298061,0.0,0.0011120128075428717,0.0014320990222590846,0.00056074041027059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013315020028648644,0.0,0.0,0.0013783783608112595,0.00047161844332963107,0.0015115285610977456,0.0006668590558492329,0.0004907260650609666,8.827672838778049e-05,0.0,0.0001325165115132795,9.568471424806527e-05,3.746548603842113e-05,0.0,0.0,0.0,0.0,0.0007834417312170303,0.0004590403077824564,0.00014508451056855667,0.0,0.00012396003506305665 +98961,85.0,Rural Climate Zone 3A,G1301330950302,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,89511.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.007467548452388529,0.0,0.0,0.00746754845238853,0.002455444710272902,0.002675059532939263,0.0023370442091763645,0.0,0.0,0.002455444710272902,0.002675059532939263,0.0023370442091763645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008898942119444809,0.0002611277830520971,0.0008898942119444809,0.000292610894907905,0.00031878199520863325,0.0002785013218279427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029261089490790495,0.0003187819952086332,0.00027850132182794267,0.0,0.0 +98962,50.0,the Greater Atlanta and Macon Area,G1300590001900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,17153.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0039500071347155835,0.0,0.0,0.0039500071347155835,0.0025763253469794265,0.0006348594980229237,0.0006567768725638403,0.0,8.204541714939297e-05,0.0025763253469794265,0.0006348594980229237,0.0006567768725638403,0.0,8.204541714939297e-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.0004707132305879666,0.00015451149256003987,0.0004707132305879666,0.00030701474345809504,7.565474063513119e-05,7.826658355700586e-05,0.0,9.777162937734519e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00030701474345809504,7.565474063513119e-05,7.826658355700586e-05,0.0,9.777162937734519e-06 +98963,35.0,Eastern Counties in South Carolina and Georgia,G1302450010706,ComStock 90.1-2007,gen1_t12_incandescent,_1000,NaturalGas,4019.0,,90.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006546264886466183,7.112808341580438e-05,0.0,0.0007256718649886833,0.0004686182798069159,0.0001323313179828919,0.00011446659005520149,0.0,1.0172970069934811e-05,0.0004077458735347856,0.0001323313179828919,0.00011446659005520149,0.0,0.0,6.087240627213026e-05,0.0,1.0172970069934811e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.750026326405065e-06,0.0,0.0,7.800862387077214e-05,3.1468749568230006e-05,8.27586501971772e-05,4.858907336486502e-05,1.5769273302998794e-05,1.3640421407093953e-05,0.0,0.0,4.065138809574568e-06,0.0,6.793642304044453e-07,0.0,0.0,0.0,5.344318577811785e-05,1.509161617454793e-05,1.3054247990983958e-05,0.0,1.1601679934183718e-06 +98964,50.0,the Greater Atlanta and Macon Area,G1301390001502,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,15115.0,,1757.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0017210731211751722,0.0005171198661162919,0.0,0.002238192987291464,0.0010242962997921278,0.0006999378508317074,0.0005139281470613308,0.0,0.0,0.0005071764336758362,0.0006999378508317074,0.0005139281470613308,0.0,0.0,0.0005171198661162919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4551680717070895e-05,0.0,0.0,0.00020509526506579673,9.819120684514694e-05,0.00023964694578286765,6.0438736634760277e-05,8.340955260976508e-05,6.124331863038217e-05,0.0,0.0,3.4551680717070895e-05,0.0,0.0,0.0,0.0,0.0,0.00010967306269640737,7.4943478574933e-05,5.502711852570824e-05,0.0,0.0 +98965,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301610960100,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,23418.0,,2136.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006557890367640669,0.0016565140019418592,0.0,0.00821440436958253,0.003253595328328351,0.00042500427580818183,0.0036321046538721293,0.0004334137972473087,0.0004702863143265574,0.003253595328328351,0.00042500427580818183,0.00197559065193027,0.0004334137972473087,0.0004702863143265574,0.0,0.0016565140019418592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011067968428816261,0.0,0.0,0.0007814875537846579,0.0003441366644216766,0.0008921672380728205,0.00038772289739501703,5.064670697885552e-05,0.00023542624522591288,5.164884882166392e-05,5.604285536320847e-05,0.0,0.00011067968428816261,0.0,0.0,0.0,0.0,0.00035337329735434723,4.615975472561198e-05,0.00039448323111968014,4.707311364712332e-05,5.10778412260577e-05 +98966,85.0,Rural Climate Zone 3A,G1302850960501,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,29019.0,,5007.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,22700.572550927158,0.0,0.0,0.006025553364876563,0.0034441364481116736,0.0,0.009469618093017221,0.003935274809626578,0.00032553694843985863,0.003212050621905156,0.0003628313333679763,0.0016337809397356197,0.003935274809626578,0.00032553694843985863,0.0012019549942506257,0.0003628313333679763,0.00019981183924949243,0.0,0.0020100956276545307,0.0014339691004861272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023011500912346858,0.0,0.0,0.0007180493959755064,0.0004400918696828587,0.000948164405098975,0.00046895638108880594,3.879338461385257e-05,0.00014323382523541642,4.3237658682855275e-05,2.3811052992772256e-05,0.0,0.00013430164009627782,9.580857716077278e-05,0.0,0.0,0.0,0.000394027241871768,3.2595036465390104e-05,0.00032161297711807903,3.6329211165104314e-05,0.00016358557626824992 +98967,46.0,the Tallahassee-Valdosta Area,G1300270960300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,53572.0,,1288.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0027576208420222324,0.00021902315462191225,0.0,0.002976643996644145,0.0011508422990527873,0.0010692471757977045,0.0004632056920988795,0.0,0.0002933488296947736,0.0011508422990527873,0.0010692471757977045,0.0004632056920988795,0.0,7.432567507286134e-05,0.0,0.0,0.00021902315462191225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4633625185476034e-05,0.0,0.0,0.00032862058473641826,0.00010531386448755652,0.00034325420992189424,0.00013714375213990418,0.00012742021193919183,5.519936717592588e-05,0.0,8.85725348139641e-06,0.0,0.0,1.4633625185476034e-05,0.0,0.0,0.0,0.00013271034915543058,0.00012330113878362294,5.341495457702632e-05,0.0,3.382776740581437e-05 +98968,50.0,the Greater Atlanta and Macon Area,G1301210006400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,31395.0,,6747.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004688205637249672,0.0019858937339180495,0.0,0.006674068681561424,0.002719651530889825,0.0016711718213351075,0.0022832453293364914,0.0,0.0,0.0007337577969717759,0.0016711718213351075,0.0022832453293364914,0.0,0.0,0.0019858937339180495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001326852378726077,0.0,0.0,0.0005586833254044887,0.00029021071735793147,0.0006913685632770963,8.744032957866434e-05,0.00019914993127594576,0.00027208940733587634,0.0,0.0,0.0001326852378726077,0.0,0.0,0.0,0.0,0.0,0.0002817294309122625,0.00017311713682204908,0.00023652199554278483,0.0,0.0 +98969,46.0,the Tallahassee-Valdosta Area,G1301850011402,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,125037.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.010671850245931678,0.0,0.0,0.010671850245931676,0.0033556015525908218,0.002534501136095784,0.004781747557245071,0.0,0.0,0.0033556015525908218,0.002534501136095784,0.004781747557245071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012717452251669603,0.00036222623211103395,0.0012717452251669603,0.0003998810097337208,0.000302031947950058,0.0005698322674831814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039988100973372087,0.000302031947950058,0.0005698322674831815,0.0,0.0 +98970,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,54645.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.0046702215279592185,0.0,0.0,0.0046702215279592185,0.001956707918328934,0.001477704543234389,0.0012358090663958955,0.0,0.0,0.001956707918328934,0.001477704543234389,0.0012358090663958955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005565412635178341,0.00016958894034628793,0.0005565412635178341,0.00023317709677853318,0.0001760951913467545,0.00014726897539254642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023317709677853318,0.0001760951913467545,0.00014726897539254642,0.0,0.0 +98971,50.0,the Greater Atlanta and Macon Area,G1300890021209,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,250911.0,,18782.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01202730201748572,0.003194124609822512,0.0,0.015221426627308231,0.005714424564237339,0.0037401488201144585,0.0028955807842316636,0.0,0.0028712724587247706,0.005359196773186581,0.0037401488201144585,0.0025275871329584676,0.0,0.00040036929122621234,0.0003552277910507579,0.0003679936512731959,0.0024709031674985584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021341325083357857,0.0,0.0,0.0014332703405962638,0.0005809429700200147,0.0016466835914298425,0.0006386451236744832,0.000445706307656752,0.00030120767447888844,0.0,4.771123478614013e-05,2.373430186206354e-05,2.458724408021606e-05,0.00016509170489129897,0.0,0.0,0.0,0.0006181975838921281,0.00040461658702468803,0.0003132495712655175,0.0,0.00031061984924750884 +98972,50.0,the Greater Atlanta and Macon Area,G1302230120101,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,11583.0,,2854.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005962188634721156,0.0004853863742353655,0.0,0.0010816052377074813,0.0003060083077486913,0.00013741030100540924,0.0004962728161472779,0.0,0.0001419315431675227,0.0002292890338841228,0.00013741030100540924,8.76057157764809e-05,0.0,0.0001419315431675227,7.671927386456847e-05,0.00040866710037079694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.243076330074942e-05,0.0,0.0,7.105106141148081e-05,4.956395438900932e-05,0.00010348182471223024,2.732424320258333e-05,1.637510708475262e-05,1.0439923110420993e-05,0.0,1.691390093076706e-05,5.125946551809715e-06,2.7304816748939702e-05,0.0,0.0,0.0,0.0,2.9277130841243565e-05,1.3146634452728297e-05,4.748055462346644e-05,0.0,1.3579201134721293e-05 +98973,85.0,Rural Climate Zone 3A,G1301470960500,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,16358.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,24034.3828889517,0.0,0.0,0.001351625174979956,0.0,0.0,0.001351625174979956,0.0009371774106518325,0.00033833152413711753,7.608586659156831e-05,0.0,0.0,0.0009371774106518325,0.00033833152413711753,7.608586659156831e-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.00016107187249455042,5.1788374561217945e-05,0.00016107187249455042,0.00011168253091728884,4.031864242060218e-05,9.067079564019074e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011168253091728884,4.031864242060218e-05,9.067079564019074e-06,0.0,0.0 +98974,50.0,the Greater Atlanta and Macon Area,G1301210010122,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,4886.0,,489.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011731171339183365,0.0003880615899848304,0.0,0.0015611787239031669,0.0008346797881770906,0.00018683527957709547,0.0005061672912845614,0.0,3.341365779068019e-05,0.00048003185598294025,0.00018683527957709547,0.0005061672912845614,0.0,0.0,0.00035464793219415025,0.0,3.341365779068019e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5930093963964025e-05,0.0,0.0,0.00013979912529877065,6.900827949810804e-05,0.00016572921926273464,5.720488742484946e-05,2.226496221446157e-05,6.031941954515485e-05,0.0,0.0,2.3697408976444535e-05,0.0,2.2326849875194934e-06,0.0,0.0,0.0,8.860665823265089e-05,1.9833773379662934e-05,5.3732931865222295e-05,0.0,3.547075894370882e-06 +98975,81.0,the Columbus-Albany Area,G1302150001800,ComStock 90.1-2007,gen5_led,_1000,NaturalGas,4035.0,,352.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006490024076323454,0.00027954990923885904,0.0,0.0009285523168712044,0.0006659573577489033,0.00012629370159992242,0.00012670723696861898,0.0,9.511313480020351e-06,0.0003959187619900647,0.00012629370159992242,0.00012670723696861898,0.0,0.0,0.0002700385957588387,0.0,9.511313480020351e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8678630571887474e-05,0.0,0.0,7.733874012124246e-05,4.5271461449948525e-05,9.601737069312993e-05,4.717988389962887e-05,1.5049860604707179e-05,1.5099139781539881e-05,0.0,0.0,1.8043115034678286e-05,0.0,6.355155372091891e-07,0.0,0.0,0.0,6.8863620630719e-05,1.305945711663039e-05,1.31022189277523e-05,0.0,9.835216558038604e-07 +98976,50.0,the Greater Atlanta and Macon Area,G1301210002800,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,118555.0,,18930.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005810682696386805,0.0032193017230389876,0.0,0.009029966689064372,0.003895661820129742,0.0013529329585185493,0.0020024670187807634,0.0,0.0017789226219967378,0.0032351349357870947,0.0013529329585185493,0.0009819783368882045,0.0,0.00024063646519295666,0.0006605268843426471,0.001020488681892559,0.001538286156803781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002150947435351441,0.0,0.0,0.0006924468442516268,0.00044649176675878936,0.000907541587786771,0.0003855242308114565,0.00016122617712247965,0.00011702029452141918,0.0,2.8676141796271506e-05,4.41325085402779e-05,6.818303166221707e-05,0.00010277920333264911,0.0,0.0,0.0,0.000391526927558043,0.00013597424748309887,0.0002012545738309069,0.0,0.0001787876208748234 +98977,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300030960100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,42258.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003607988756412226,0.0,0.0,0.003607988756412226,0.0026797108103956547,0.000708008602893995,0.0002202389695231385,0.0,0.0,0.0026797108103956547,0.000708008602893995,0.0002202389695231385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042995560652730796,0.0001260501985730343,0.00042995560652730796,0.00031933488837896187,8.437173418094192e-05,2.624536441638824e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031933488837896187,8.437173418094192e-05,2.624536441638824e-05,0.0,0.0 +98978,50.0,the Greater Atlanta and Macon Area,G1302470060307,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,7574.0,,1336.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0015221409850982139,0.0010598084428954848,0.0,0.00258186672091996,0.0015495997335796636,0.0006002879411998932,0.0003459636894515229,0.0,8.618077083635833e-05,0.0005759720615205369,0.0006002879411998932,0.0003459636894515229,0.0,0.0,0.0009736276720591267,0.0,8.618077083635833e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.080773734181192e-05,0.0,0.0,0.0001813897315089897,0.00011801403085209337,0.0002521974688508016,6.863714900177159e-05,7.153481152424728e-05,4.122762697794522e-05,0.0,0.0,6.504984267112612e-05,0.0,5.757894670685816e-06,0.0,0.0,0.0,0.00015136533864204177,5.863629525319915e-05,3.379383067568642e-05,0.0,8.418161980412444e-06 +98979,50.0,the Greater Atlanta and Macon Area,G1300890023313,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5622.0,,725.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.0003989035026575408,0.00021350759101311826,0.0,0.000612411093670659,0.00034488979557358387,0.00015249665369328511,0.00011499395479749233,0.0,0.0,0.00013138220456046564,0.00015249665369328511,0.00011499395479749233,0.0,0.0,0.00021350759101311826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4265048501825342e-05,0.0,0.0,4.7535257700026125e-05,3.211047709202281e-05,6.180030620185147e-05,1.5656134652547458e-05,1.8172233844547606e-05,1.3703232082012454e-05,0.0,0.0,1.4265048501825342e-05,0.0,0.0,0.0,0.0,0.0,3.480390083169165e-05,1.5388911125883232e-05,1.160439726075357e-05,0.0,0.0 +98980,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970600,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,291177.0,,11688.0,,9.729435225087556,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.06848486612023964,0.010337738470378395,0.0,0.07882260459061805,0.056490813572802265,0.0087729039080704,0.008613460278025582,0.0006770590698606464,0.0042682755446063776,0.04893997269848197,0.0087729039080704,0.0058265626819674786,0.0006770590698606464,0.0042682755446063776,0.007550840874320292,0.002786897596058103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006907095456651547,0.0,0.0,0.008161206031894927,0.002479616076070039,0.008851915577560081,0.005832079742791305,0.0010454496058453883,0.0006943399498189816,8.068379012663156e-05,0.0005086419539650154,0.0005045047216696271,0.00018620482399552766,0.0,0.0,0.0,0.0,0.006344016608576394,0.0009852123660162495,0.0009673065690704778,7.603491103288348e-05,0.00047933476670621245 +98981,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,156678.0,,3405.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.013114067735890269,0.0010023532312892706,0.0,0.014116420967179539,0.005614111059251365,0.004420193305451834,0.00408211660247634,0.0,0.0,0.004611757827962094,0.004420193305451834,0.00408211660247634,0.0,0.0,0.0010023532312892706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.697126017503009e-05,0.0,0.0,0.0015627772179317254,0.0005000597241210541,0.0016297484781067554,0.0005495739547259696,0.0005267455937953877,0.00048645766941036794,0.0,0.0,6.697126017503009e-05,0.0,0.0,0.0,0.0,0.0,0.000648152175116474,0.0005103137211086668,0.0004712825818816148,0.0,0.0 +98982,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,179646.0,,30632.0,,9.525004485617233,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.04841596885986839,0.02652487554057646,0.0,0.0749407541208216,0.03106016269292221,0.009575417957767325,0.024491507586673216,0.000676555496450335,0.009137200666631758,0.025636162929546694,0.009575417957767325,0.007826882215139877,0.000676555496450335,0.004701040540587381,0.005423999763375516,0.01666462537153334,0.004436160126044376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017722342510149485,0.0,0.0,0.005769636055625363,0.0035979594606543853,0.007541870306640311,0.0030550112586676223,0.0011410837787160439,0.0009327142034956832,8.062379165124861e-05,0.000560213781540408,0.00036239936897898664,0.001113431043949104,0.00029639780613997086,0.0,0.0,0.0,0.0031258254801586325,0.0009636487011183022,0.002464770684519522,6.808703581027075e-05,0.000919547490573459 +98983,50.0,the Greater Atlanta and Macon Area,G1301210011625,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,32998.0,,13636.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.006870773223295539,0.009380183289160753,0.0,0.016250956512456293,0.005850628355569486,0.0006720878483872911,0.005734370282553181,0.00036899925087531885,0.003624870775071014,0.004010795939106016,0.0006720878483872911,0.0014223504651815983,0.00036899925087531885,0.0003965397197453135,0.0018398324164634698,0.004312019817371583,0.0032283310553257003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00062672952989729,0.0,0.0,0.0008187734408332786,0.0008142152491100985,0.0014455029707305686,0.00047795685941252013,8.009108469779387e-05,0.00016949806762636306,4.397274898838432e-05,4.7254680108217084e-05,0.0001229269482177796,0.0002881041947412609,0.00021569838693824952,0.0,0.0,0.0,0.0005204063319063011,5.978140306332681e-05,0.0005100653166074373,3.2822038070730594e-05,0.0003224278810827728 +98984,46.0,the Tallahassee-Valdosta Area,G1301850010800,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,14942.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56663.68529324113,0.0,0.0,0.001286815192062678,0.0,0.0,0.001286815192062678,0.00029244125841080984,0.0004490503193479871,0.0005453236143038808,0.0,0.0,0.00029244125841080984,0.0004490503193479871,0.0005453236143038808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015334641246303853,5.115673793082475e-05,0.00015334641246303853,3.4849462541385494e-05,5.3512156144984e-05,6.4984793776669e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4849462541385494e-05,5.3512156144984e-05,6.4984793776669e-05,0.0,0.0 +98985,50.0,the Greater Atlanta and Macon Area,G1302170100700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,34197.0,,3050.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0017603057425056824,0.0005187371840664848,0.0,0.0022790429265721673,0.0010916583526326509,0.00038701832907691257,0.0005312902799518822,0.0,0.0002690936952721414,0.0009061101203717984,0.00038701832907691257,0.00019810132814624998,0.0,0.0002690936952721414,0.00018554823226085257,0.0003331889518056322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.465902963492455e-05,0.0,0.0,0.00020977317032694633,8.499866537622329e-05,0.00024443219996187084,0.00010797987419228652,4.612043232304531e-05,2.3607457868122837e-05,0.0,3.206751884583373e-05,1.2397263736182294e-05,2.2261765898742247e-05,0.0,0.0,0.0,0.0,0.00011708267958870369,4.150853873740823e-05,5.698201224420183e-05,0.0,2.8860871010520645e-05 +98986,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,106289.0,,19765.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.009692550295331746,0.0033611978054836696,0.0,0.013053765831176836,0.005212336189544283,0.003145100160496066,0.0024722861356893224,0.0,0.0022240256150857433,0.004127273531359892,0.003145100160496066,0.0020934060425042145,0.0,0.00032677056097157317,0.0010850626581843912,0.00037888009318510834,0.0018972550541141702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022457608028108713,0.0,0.0,0.0011550434694057414,0.0005621963077793313,0.001379619549686829,0.0004918396287450216,0.00037479582672452806,0.0002494673645772659,0.0,3.89406493589258e-05,7.249770252642501e-05,2.5314608406927945e-05,0.00012676376934773418,0.0,0.0,0.0,0.0005508786506236224,0.00033239769452432245,0.0002612896791108745,0.0,0.00023505165155088037 +98987,81.0,the Columbus-Albany Area,G1300950000100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,15220.0,,3495.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004414351869277066,0.0027106960308062554,0.0,0.007125128760866391,0.002460997932690642,0.0006983945833628743,0.0028255183427635644,0.0004333329364642402,0.000706804104802001,0.002460997932690642,0.0006983945833628743,0.0008216264167593104,0.0004333329364642402,0.0,0.0,0.002003891926004254,0.000706804104802001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018111500899572157,0.0,0.0,0.0005260528427501616,0.00033255256459727216,0.0007071678517458832,0.000293274074390042,8.322681716795771e-05,9.791220206595093e-05,5.163974912621111e-05,0.0,0.0,0.00013388993088124485,4.7225078114476695e-05,0.0,0.0,0.0,0.0002442536380213123,6.931554695548135e-05,0.00028043222846652586,4.3008222314973314e-05,7.015019056823692e-05 +98988,50.0,the Greater Atlanta and Macon Area,G1300670031001,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,FuelOil,138827.0,,6038.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013692843021058648,0.0017773885487314565,0.0,0.015470262259396404,0.005831117265382422,0.0051264839047871665,0.004512661089226813,0.0,0.0,0.0040537287166509655,0.0051264839047871665,0.004512661089226813,0.0,0.0,0.0017773885487314565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011875512082580606,0.0,0.0,0.0016317509735393908,0.0005943534654590817,0.0017505060943651966,0.00048307541170864837,0.0006109136787448349,0.0005377655403099682,0.0,0.0,0.00011875512082580606,0.0,0.0,0.0,0.0,0.0,0.0006598082268327563,0.0005800768705484865,0.0005106209969839537,0.0,0.0 +98989,35.0,Eastern Counties in South Carolina and Georgia,G1302450001200,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,36770.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0030266380631736554,0.0,0.0,0.003026638063173656,0.0020413488710124246,0.0007002633350373683,0.0002849954835244253,0.0,0.0,0.0020413488710124246,0.0007002633350373683,0.0002849954835244253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036067786717639444,0.00010468259288332827,0.00036067786717639444,0.0002432630997139013,8.344885674181637e-05,3.396229116497345e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024326309971390127,8.344885674181636e-05,3.396229116497344e-05,0.0,0.0 +98990,81.0,the Columbus-Albany Area,G1302150010107,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,26332.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0023461590222467825,0.0,0.0,0.0023461590222467825,0.000685114770989917,0.0006674068681561424,0.0009936066934944253,0.0,0.0,0.000685114770989917,0.0006674068681561424,0.0009936066934944253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002795870700029361,8.820942384548614e-05,0.0002795870700029361,8.164375458802775e-05,7.953353928623183e-05,0.00011840611890978258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.164375458802775e-05,7.953353928623183e-05,0.00011840611890978258,0.0,0.0 +98991,81.0,the Columbus-Albany Area,G1302150011500,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5236.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012573129349849512,0.0,0.0,0.0012573129349849512,0.0007109500058630866,0.0002157000483121138,0.00028740708124409326,0.0,4.325579956565778e-05,0.0007109500058630866,0.0002157000483121138,0.00028740708124409326,0.0,4.325579956565778e-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.0001498331901057043,4.590660048161299e-05,0.0001498331901057043,8.472346415923132e-05,2.5704838823554592e-05,3.425012074840958e-05,0.0,5.1547663745088385e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.472346415923132e-05,2.5704838823554592e-05,3.425012074840958e-05,0.0,5.1547663745088385e-06 +98992,50.0,the Greater Atlanta and Macon Area,G1300890021416,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,204661.0,,9709.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.018119583359786914,0.0028284199532428874,0.0,0.0209480033130298,0.017178973732398614,0.0026991802876352535,0.0010698189193964946,0.0,0.0,0.014350553779155728,0.0026991802876352535,0.0010698189193964946,0.0,0.0,0.0028284199532428874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001889790391232972,0.0,0.0,0.0021592746100758346,0.0008643718570150429,0.0023482536491991318,0.0017101268721569096,0.0003216559314516452,0.00012748818690601409,0.0,0.0,0.00018897903912329722,0.0,0.0,0.0,0.0,0.0,0.0019257485858572953,0.00030257585248439137,0.00011992580600235446,0.0,0.0 +98993,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,26199.0,,3621.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002296134963981527,0.0010657579579003245,0.0,0.0033618929218818517,0.0015175703418151046,0.0007161726525631921,0.0011281499275035544,0.0,0.0,0.00045181238391478034,0.0007161726525631921,0.0011281499275035544,0.0,0.0,0.0010657579579003245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.120715450159778e-05,0.0,0.0,0.00027362645090508715,0.00015030257663163683,0.0003448336054066849,5.384170400471401e-05,8.53450621283797e-05,0.00013443968477199343,0.0,0.0,7.120715450159778e-05,0.0,0.0,0.0,0.0,0.0,0.00015565910770692554,7.345873399763017e-05,0.00011571576370212915,0.0,0.0 +98994,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,28179.0,,4373.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002413185122400965,0.0012872448465508454,0.0,0.0037004606585581087,0.0017008179810186882,0.000844547275706483,0.0011550647122266396,0.0,0.0,0.00041357313446784276,0.000844547275706483,0.0011550647122266396,0.0,0.0,0.0012872448465508454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.600704340440788e-05,0.0,0.0,0.0002875755430280388,0.00016724532653209433,0.00037358258643244667,4.928487152617066e-05,0.00010064339414727593,0.00013764727735459222,0.0,0.0,8.600704340440788e-05,0.0,0.0,0.0,0.0,0.0,0.0001717072653995886,8.526185919399638e-05,0.00011661036354825541,0.0,0.0 +98995,50.0,the Greater Atlanta and Macon Area,G1300890021812,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,67515.0,,4032.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006306622025359028,0.0011867670755321665,0.0,0.007493389100891195,0.0034121931866037862,0.0016364925662187032,0.0024446726584624085,0.0,0.0,0.0022254261110716198,0.0016364925662187032,0.0024446726584624085,0.0,0.0,0.0011867670755321665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.929295474864486e-05,0.0,0.0,0.0007515486425466422,0.0003077812293775088,0.000830841597295287,0.0002651999701486018,0.00019501783391074885,0.0002913271812628916,0.0,0.0,7.929295474864486e-05,0.0,0.0,0.0,0.0,0.0,0.00037833242065340197,0.0001814487516092424,0.00027105702227306713,0.0,0.0 +98996,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,14832.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0035614493022883176,0.0,0.0,0.0035614493022883163,0.0016655550509621728,0.0008317023335224754,0.0009742066215753022,0.0,9.006800330210579e-05,0.0016655550509621728,0.0008317023335224754,0.0009742066215753022,0.0,9.006800330210579e-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.00042441481275833326,0.00012362558073394575,0.00042441481275833326,0.00019848274539205577,9.91132430063816e-05,0.00011609535494949972,0.0,1.0733325540368891e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00019848274539205582,9.911324300638164e-05,0.00011609535494949976,0.0,1.0733325540368895e-05 +98997,35.0,Eastern Counties in South Carolina and Georgia,G1302450010201,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,90701.0,,1559.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007513335051320043,0.0004542675531910162,0.0,0.007967602604511058,0.005006024791333066,0.0023947153268712293,0.0005668624863067622,0.0,0.0,0.00455175723814205,0.0023947153268712293,0.0005668624863067622,0.0,0.0,0.0004542675531910162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0351787457982093e-05,0.0,0.0,0.0008953481068915361,0.00027288047604322077,0.000925699894349518,0.0005424231980023718,0.0002853731159083071,6.75517929808571e-05,0.0,0.0,3.0351787457982093e-05,0.0,0.0,0.0,0.0,0.0,0.0005816149286642871,0.0002782251870627657,6.585977862246514e-05,0.0,0.0 +98998,50.0,the Greater Atlanta and Macon Area,G1300590001700,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,10008.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002041954943549761,0.0,0.0,0.0020419549435497612,0.0013190124119944748,0.0003361215476765453,0.000320159082444859,0.0,6.657919436014248e-05,0.0013190124119944748,0.0003361215476765453,0.000320159082444859,0.0,6.657919436014248e-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.0002433344412067475,5.8929350809450965e-05,0.0002433344412067475,0.00015718326657074852,4.005472757358426e-05,3.815252225328363e-05,0.0,7.934068823015585e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015718326657074847,4.005472757358425e-05,3.8152522253283625e-05,0.0,7.934068823015584e-06 +98999,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050200,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,26419.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0015067261134760874,0.0,0.0,0.0015067261134760874,0.0009300461082888698,0.00033356128939545336,0.00010136447623844188,0.0,0.00014175423955332215,0.0009300461082888698,0.00033356128939545336,0.00010136447623844188,0.0,0.00014175423955332215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017955305961318927,5.452416833772228e-05,0.00017955305961318927,0.00011083143965650555,3.974972594143245e-05,1.2079369755337762e-05,0.0,1.6892524259913487e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00011083143965650555,3.974972594143245e-05,1.2079369755337762e-05,0.0,1.6892524259913487e-05 +99000,85.0,Rural Climate Zone 3A,G1300310110404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,24730.0,,4788.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005149350478978842,0.0032935245089788898,0.0,0.008442946707928748,0.002066108925017723,0.0006158593911110522,0.003935776849423686,0.00037961380658562934,0.0014455160158196407,0.002066108925017723,0.0006158593911110522,0.000642252340444797,0.00037961380658562934,0.0014455160158196407,0.0,0.0032935245089788898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022005587496547153,0.0,0.0,0.0006136395410341932,0.0003648481503144745,0.0008336954159996646,0.0002462147677945491,7.339094040029831e-05,7.653614432102844e-05,4.523794660984965e-05,0.00017225974190846768,0.0,0.00022005587496547153,0.0,0.0,0.0,0.0,0.00020401710437490623,6.0812790727135536e-05,0.00038863672024374223,3.748481440767769e-05,0.00014273690428617868 +99001,50.0,the Greater Atlanta and Macon Area,G1301350050606,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,475377.0,,48443.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.024470150515573216,0.008238128748044813,0.0,0.03270827926361804,0.01522518546392928,0.008755021974523615,0.0056664462062346755,0.0,0.0030616433492918777,0.012494000590784348,0.008755021974523615,0.002658951380719638,0.0,0.0005621765695456142,0.0027311848731449333,0.003007494825515037,0.0024994667797462633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005504234455291371,0.0,0.0,0.002916061289240652,0.0012662629116053212,0.003466484734769789,0.0014888862840197624,0.0010433193146937012,0.00031686217812003066,0.0,6.699351240715771e-05,0.00018248175456231846,0.00020094316499531754,0.00016699971061026096,0.0,0.0,0.0,0.001613593688906021,0.000927873636599955,0.0006005405883933347,0.0,0.000324478699967409 +99002,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6760.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013465538675496642,0.0,0.0,0.0013465538675496642,0.0007039199045952454,0.0004142797323601909,0.00018882024934683886,0.0,3.953398124738895e-05,0.0007039199045952454,0.0004142797323601909,0.00018882024934683886,0.0,3.953398124738895e-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.0001604661050937112,5.3348393548286805e-05,0.0001604661050937112,8.388471349748638e-05,4.9368879086935664e-05,2.2501327801052924e-05,0.0,4.711184708236223e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.388471349748638e-05,4.9368879086935664e-05,2.2501327801052924e-05,0.0,4.711184708236223e-06 +99003,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,30120.0,,2588.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026836833123089175,0.0007616546490963877,0.0,0.0034453379614053053,0.0016068464065351223,0.0007237529853187248,0.0011147078799451605,0.0,0.0,0.0008451917574387346,0.0007237529853187248,0.0011147078799451605,0.0,0.0,0.0007616546490963877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.088914541083096e-05,0.0,0.0,0.0003198082907295486,0.00014941076174689461,0.0003706974361403796,0.00010071953350286769,8.6247957828545e-05,0.0001328371421892215,0.0,0.0,5.088914541083096e-05,0.0,0.0,0.0,0.0,0.0,0.0001728869126473134,7.787142482450805e-05,0.00011993579665334272,0.0,0.0 +99004,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,15094.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.0023924135077694306,0.0,0.0,0.0023924135077694306,0.001633558417677808,0.00014167114811422735,0.0006058284125717076,0.0,1.1300935514314089e-05,0.001633558417677808,0.00014167114811422735,0.0006058284125717076,0.0,1.1300935514314089e-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.00028509671102899456,0.0001024156094222936,0.00028509671102899456,0.00019466623584979176,1.6882523963311597e-05,7.219474698299375e-05,0.0,1.346698443316185e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019466623584979176,1.6882523963311597e-05,7.219474698299375e-05,0.0,1.346698443316185e-06 +99005,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Propane,4009.0,,,1445.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00023560801083864088,0.0,0.00013622559347831694,0.00037180323071752,0.0002649792814949469,8.999697513405865e-05,1.6857347687952263e-05,0.0,0.0,0.00012875368801662997,8.999697513405865e-05,1.6857347687952263e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013622559347831694,0.0,0.0,0.0,0.0,1.0986118423567633e-05,2.807541230179533e-05,1.909356287768622e-05,3.906153072536296e-05,1.5342487140300425e-05,1.0724177729820752e-05,2.0087474316741537e-06,0.0,0.0,0.0,0.0,0.0,1.0986118423567633e-05,0.0,0.0,2.783864014770579e-05,9.455053961216443e-06,1.7710276572646393e-06,0.0,0.0 +99006,50.0,the Greater Atlanta and Macon Area,G1300670031406,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,334720.0,,38966.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.020337380572173106,0.006626580737853374,0.0,0.026963979040387904,0.010974118549134583,0.008140735872764463,0.002928931594062783,0.0,0.004920193024426073,0.009649057718768358,0.008140735872764463,0.0018495071908099683,0.0,0.000698097520191739,0.0013250608303662262,0.0010794244032528147,0.004222095504234334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044274984060386114,0.0,0.0,0.0024235674844652368,0.0010649756367026122,0.002866317325069098,0.0011498601041538426,0.000970116219777438,0.00022040230176273502,0.0,8.31909716651248e-05,8.853290930023642e-05,7.212090237640691e-05,0.0002820960289272179,0.0,0.0,0.0,0.0011665676670951043,0.000865374217802411,0.0003113504634990857,0.0,0.0005230249766724969 +99007,50.0,the Greater Atlanta and Macon Area,G1301210011623,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,105418.0,,25570.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00542643030369142,0.00434845979007505,0.0,0.009774890093766472,0.004113833917403492,0.0010970838432271873,0.002789375919325547,0.0,0.0017746141441716652,0.002819322499764016,0.0010970838432271873,0.0012750257504388373,0.0,0.00023499821026137983,0.001294511417639475,0.0015143501688867098,0.001539615933910285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029053914536329484,0.0,0.0,0.0006466567310297749,0.00043434095121994284,0.0009371958763930697,0.00033597296369509706,0.0001307372640986965,0.00015194224151311435,0.0,2.800426172286707e-05,8.649182908450191e-05,0.00010118019369830996,0.00010286830722155187,0.0,0.0,0.0,0.00039442573231745744,0.0001051860884436605,0.0002674394887538553,0.0,0.00017014626682780942 +99008,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,32858.0,,545.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007889841299361232,0.0004319790461404026,0.0,0.008321820345501633,0.003757134238755519,0.0008346797881770906,0.0035823741919443616,0.0,0.00014771483369840305,0.0034728700263135194,0.0008346797881770906,0.0035823741919443616,0.0,0.0,0.0002842642124419996,0.0,0.00014771483369840305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.88631182297608e-05,0.0,0.0,0.0009402131477769282,0.0003429031646521351,0.000969076266006689,0.0004138534522265656,9.946675493856869e-05,0.0004269027966120852,0.0,0.0,1.899340175295575e-05,0.0,9.869716476805053e-06,0.0,0.0,0.0,0.00043751841157532327,9.71984900965981e-05,0.0004171675981018678,0.0,1.7201397474487138e-05 +99009,50.0,the Greater Atlanta and Macon Area,G1300670030314,ComStock 90.1-2004,gen2_t8_halogen,_1000,NaturalGas,2352.0,,467.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.0004949191292560156,0.00037052769035209726,0.0,0.000865446819608113,0.0005487614342603047,0.00017881269342438265,0.00012670723696861898,0.0,1.1082747881067195e-05,0.00018931649178927467,0.00017881269342438265,0.00012670723696861898,0.0,0.0,0.00035944494247103003,0.0,1.1082747881067195e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4753751571938448e-05,0.0,0.0,5.898188326796818e-05,4.3830271093429835e-05,8.373563483990663e-05,2.256175314177459e-05,2.1309965178032622e-05,1.5100308350021267e-05,0.0,0.0,2.4013349181170644e-05,0.0,7.404023907678018e-07,0.0,0.0,0.0,5.309498634965409e-05,1.730088326871924e-05,1.2259460299573486e-05,0.0,1.0723026632786208e-06 +99010,50.0,the Greater Atlanta and Macon Area,G1300670031205,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,58026.0,,6173.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005170063145729904,0.0018169474512491953,0.0,0.006987010596979098,0.003229098995431691,0.0015823254111032579,0.0021755861904441502,0.0,0.0,0.0014121515441824959,0.0015823254111032579,0.0021755861904441502,0.0,0.0,0.0018169474512491953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012139766112167103,0.0,0.0,0.000616107187688986,0.00031367825916922657,0.000737504848810657,0.000168283576419279,0.00018856289208939904,0.0002592607191803079,0.0,0.0,0.00012139766112167103,0.0,0.0,0.0,0.0,0.0,0.00034084335974102404,0.0001670203081686352,0.0002296411809009979,0.0,0.0 +99011,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,63114.0,,3876.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005607666241928848,0.0011410395621485893,0.0,0.006748705804077436,0.001997924059586749,0.001956278263840766,0.0027945034806499225,0.0,0.0,0.0008568844974381594,0.001956278263840766,0.0027945034806499225,0.0,0.0,0.0011410395621485893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.623734781348602e-05,0.0,0.0,0.0006682556179937685,0.00029309838658179754,0.0007444929658072546,0.00010211340238178222,0.00023312620326722987,0.0003330160123447564,0.0,0.0,7.623734781348602e-05,0.0,0.0,0.0,0.0,0.0,0.00022040380063400103,0.00021580958614481744,0.00030827957902843626,0.0,0.0 +99012,35.0,Eastern Counties in South Carolina and Georgia,G1300730030102,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7235.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001447125669216662,0.0,0.0,0.0014471256692166622,0.0005933405470057915,0.0002512640900200159,0.0005583554548140645,0.0,4.4165577376790165e-05,0.0005933405470057915,0.0002512640900200159,0.0005583554548140645,0.0,4.4165577376790165e-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.00017245319901849665,5.307265520693974e-05,0.00017245319901849665,7.070807851395639e-05,2.9943008436771607e-05,6.653892361969886e-05,0.0,5.263188448069796e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.070807851395639e-05,2.9943008436771604e-05,6.653892361969886e-05,0.0,5.263188448069795e-06 +99013,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,31112.0,,680.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.010183143040004748,0.0005390847066328058,0.0,0.010722227746637553,0.00479122078171808,0.0021053085620340705,0.0035901486568758563,0.0,0.00023563245308328681,0.004487768528168561,0.0021053085620340705,0.0035901486568758563,0.0,0.0,0.00030345225354951895,0.0,0.00023563245308328681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.601586766533798e-05,0.0,0.0,0.0012135084897624713,0.00043731391438732475,0.0012495243574278093,0.0005348000305629449,0.00025088617566907653,0.00042783213959706433,0.0,0.0,2.02734302645175e-05,0.0,1.574243740082048e-05,0.0,0.0,0.0,0.0005583491798566272,0.0002453440078241057,0.00041838117036451693,0.0,2.7459637725039368e-05 +99014,50.0,the Greater Atlanta and Macon Area,G1301210011412,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,23056.0,,2084.0,,7.56685751697572,Food Service,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,7566.85751697572,0.0,0.0,0.004720393332334472,0.0014333236207469868,0.0,0.006153645233110443,0.0011670273683660232,0.00020174827846691388,0.0038637699985240143,0.00037079225015070917,0.0005503073376027836,0.0010240177461608947,0.00020174827846691388,0.0025734559999821558,0.00037079225015070917,0.0005503073376027836,0.00014300962220512844,0.0012903139985418583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.576429781695282e-05,0.0,0.0,0.0005625180235289606,0.00024417440269323894,0.0006582823213459134,0.00012202975431798016,2.404186152797858e-05,0.0003066726183245387,4.418642875920699e-05,6.557881390123699e-05,9.554866642331946e-06,8.620943117462087e-05,0.0,0.0,0.0,0.0,0.00012484201737672875,2.1581894965630405e-05,0.00041332436099658973,3.966526732040853e-05,5.886878068655603e-05 +99015,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,12180.0,,102.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002924687541569389,8.113563933826058e-05,0.0,0.00300582318090765,0.0015613441380506455,0.0007285666125695591,0.0006346113768017058,0.0,8.113563933826058e-05,0.0015613441380506455,0.0007285666125695591,0.0006346113768017058,0.0,0.0,0.0,0.0,8.113563933826058e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421669191081237e-06,0.0,0.0,0.0003485252804936272,0.00010383121467714262,0.0003539469496847085,0.00018606018452459403,8.682085843188626e-05,7.562452568371702e-05,0.0,0.0,0.0,0.0,5.421669191081237e-06,0.0,0.0,0.0,0.00018385412641080612,8.57914503418154e-05,7.472786905128271e-05,0.0,9.554025744729357e-06 +99016,46.0,the Tallahassee-Valdosta Area,G1301850010302,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,30548.0,,4412.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006180827102125361,0.0030353326133226908,0.0,0.009216159715448053,0.0029639712421621585,0.0003707922501507091,0.0038654912778283883,0.00038334324507844107,0.0016324899802573388,0.0029639712421621585,0.0003707922501507091,0.0008301586645056979,0.00038334324507844107,0.0016324899802573388,0.0,0.0030353326133226908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020280551998310418,0.0,0.0,0.0007365548517096819,0.00038857775918192477,0.000939360371692786,0.00035320958872831317,4.418645374030001e-05,9.892808550173552e-05,4.5682126739246336e-05,0.00019454005029723574,0.0,0.00020280551998310418,0.0,0.0,0.0,0.0,0.00030210382780772104,3.7793132571101634e-05,0.0003939915795328172,3.9072397213256917e-05,0.00016639212448421963 +99017,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020302,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,7443.0,,96.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001787134449358955,7.633862906138073e-05,0.0,0.0018634730784203356,0.000814912797553396,0.0004542272489762764,0.000517911695755543,0.0,7.633862906138073e-05,0.000814912797553396,0.0004542272489762764,0.000517911695755543,0.0,0.0,0.0,0.0,7.633862906138073e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.101079732259714e-06,0.0,0.0,0.00021296733597778498,6.911773209803284e-05,0.0002180684157100447,9.711066093063288e-05,5.41288693627358e-05,6.171794973587974e-05,0.0,0.0,0.0,0.0,5.101079732259714e-06,0.0,0.0,0.0,9.536319293378325e-05,5.3154841732704526e-05,6.060735960127379e-05,0.0,8.933342847648626e-06 +99018,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12484.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027672959802434874,0.0,0.0,0.002767295980243487,0.0013668171006157943,0.000579528465691327,0.0007470102900134246,0.0,7.402283099668014e-05,0.0013668171006157943,0.000579528465691327,0.0007470102900134246,0.0,7.402283099668014e-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.00032977722414984025,9.430703443188085e-05,0.00032977722414984025,0.0001628828837173932,6.906210614835859e-05,8.902082813357712e-05,0.0,8.821262309516333e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001628828837173932,6.906210614835859e-05,8.902082813357713e-05,0.0,8.821262309516334e-06 +99019,35.0,Eastern Counties in South Carolina and Georgia,G1302450010706,ComStock 90.1-2007,gen1_t12_incandescent,_1000,NaturalGas,5474.0,,227.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00036457431405133517,6.612332597598571e-05,0.0,0.00043069764002732087,0.00030753269430723726,0.00010709731161751293,1.6098007702008465e-05,0.0,0.0,0.00024140936833125153,0.00010709731161751293,1.6098007702008465e-05,0.0,0.0,6.612332597598571e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4172305241154455e-06,0.0,0.0,4.344641106203173e-05,1.6328268264146503e-05,4.786364158614717e-05,2.8768814056571538e-05,1.2762813080456874e-05,1.9184035543511465e-06,0.0,0.0,4.4172305241154455e-06,0.0,0.0,0.0,0.0,0.0,3.4176260300404806e-05,1.1901777167331095e-05,1.7889795515273623e-06,0.0,0.0 +99020,50.0,the Greater Atlanta and Macon Area,G1300590130600,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,8490.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001767532872882739,0.0,0.0,0.001767532872882739,0.0009044018513393267,0.0001984142699005985,0.0006197241035286305,0.0,4.507535518792255e-05,0.0009044018513393267,0.0001984142699005985,0.0006197241035286305,0.0,4.507535518792255e-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.00021063620010858795,6.144626420823136e-05,0.00021063620010858795,0.00010777721436467218,2.3644950824037363e-05,7.385227866799165e-05,0.0,5.37161242146743e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010777721436467218,2.3644950824037363e-05,7.385227866799165e-05,0.0,5.37161242146743e-06 +99021,50.0,the Greater Atlanta and Macon Area,G1301170130306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,12870.0,,364.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029116198239185786,0.00028881310149766147,0.0,0.00320043292541624,0.0016960739611719773,0.00046944535054430894,0.0009676727627498968,0.0,6.724085095005695e-05,0.0014744190035506336,0.00046944535054430894,0.0009676727627498968,0.0,0.0,0.00022165495762134385,0.0,6.724085095005695e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.929896449453482e-05,0.0,0.0,0.00034696831040937536,0.0001314168969959342,0.00036626727490391027,0.0001757017404177916,5.594228297590087e-05,0.00011531443108140244,0.0,0.0,1.4811347321120653e-05,0.0,4.4931437955489154e-06,0.0,0.0,0.0,0.00019410386103097186,5.3724753265314106e-05,0.00011074341317903014,0.0,7.695247428594147e-06 +99022,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,53595.0,,2886.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00477521067110366,0.0008495496815330083,0.0,0.0056247603526366685,0.0019741089250997312,0.0014750345474864885,0.0021755861904441502,0.0,0.0,0.001124559243566723,0.0014750345474864885,0.0021755861904441502,0.0,0.0,0.0008495496815330083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.676256192556255e-05,0.0,0.0,0.0005690525818257755,0.00020983368439975576,0.000625815143751338,0.00013401154106982714,0.00017577700238624293,0.00025926038114892463,0.0,0.0,5.676256192556255e-05,0.0,0.0,0.0,0.0,0.0,0.0002196408705951299,0.00016411347319725966,0.00024205738540985247,0.0,0.0 +99023,50.0,the Greater Atlanta and Macon Area,G1300890023108,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,20006.0,,7298.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.003983183750265007,0.005020469691063789,0.0,0.009003653441328795,0.0027678888414054774,0.0006359409829954232,0.003384967472023794,0.0003668476517448506,0.0018480802131302654,0.001761514208114423,0.0006359409829954232,0.0010044381940736327,0.0003668476517448506,0.00021458615327870828,0.0010063746332910541,0.0023805292779501617,0.001633494059851557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003354368866838385,0.0,0.0,0.00047466691846575343,0.00045726280329832163,0.0008101038051495918,0.00020991562865852877,7.578363581756338e-05,0.00011969660760403463,4.371639756477239e-05,2.5571742231436753e-05,6.72397593455468e-05,0.00015905231557849126,0.00010914001987273188,0.0,0.0,0.0,0.00024904082517893404,5.721879607342285e-05,0.0003045624809154548,3.300712100096514e-05,0.00016628103498589824 +99024,50.0,the Greater Atlanta and Macon Area,G1300890021214,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,173701.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014049369167130982,0.0,0.0,0.014049369167130982,0.009486647059591903,0.0026790122176085862,0.0018837098899304925,0.0,0.0,0.009486647059591903,0.0026790122176085862,0.0018837098899304925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016742363434248137,0.0004928390652566861,0.0016742363434248137,0.001130505512060393,0.00031925274123288926,0.00022447809013153135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001130505512060393,0.00031925274123288926,0.00022447809013153135,0.0,0.0 +99025,50.0,the Greater Atlanta and Macon Area,G1301350050211,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,113734.0,,9864.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,240343.828889517,0.0,0.0,0.010029210666348463,0.002873706990004575,0.0,0.012902917656353036,0.007107999366823244,0.005057477668780618,0.0007374102471497387,0.0,0.0,0.004234292376818668,0.005057477668780618,0.0007374102471497387,0.0,0.0,0.002873706990004575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019200415987867566,0.0,0.0,0.0011951603765311002,0.00047507009382441353,0.0013871645364097757,0.000504591900577147,0.0006026891961895757,8.787566020509713e-05,0.0,0.0,0.00019200415987867566,0.0,0.0,0.0,0.0,0.0,0.0007641655096222035,0.0005437183939837511,7.927736740438962e-05,0.0,0.0 +99026,50.0,the Greater Atlanta and Macon Area,G1300670031111,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,116876.0,,5107.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006536386389309566,0.0008684685630770264,0.0,0.007404854952386593,0.0033147442585631315,0.0022843088439139228,0.0008970853664089916,0.0,0.0009087164835005462,0.002634501212321386,0.0022843088439139228,0.000708859849573711,0.0,0.0009087164835005462,0.0006802430462417458,0.00018822551683528055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.802560320285092e-05,0.0,0.0,0.0007789286518480652,0.0002702810558195786,0.0008369542550509161,0.00031394846561730744,0.00027221671153109905,8.447347113394811e-05,0.0,0.00010829000356571059,4.5449558868167454e-05,1.2576044334683461e-05,0.0,0.0,0.0,0.0,0.0003746581573101375,0.0002581903385086566,0.00010139555999242441,0.0,0.0001027101992396975 +99027,50.0,the Greater Atlanta and Macon Area,G1300450911000,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Propane,51159.0,,,3795.0,3.20458438519356,Mercantile,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,120171.9144447585,0.0,0.0,0.004511269230091527,0.0,0.0003576795069789655,0.004868948737070493,0.002842938533774133,0.001544254542614178,0.00048172528708274393,0.0,0.0,0.0024852590267951673,0.001544254542614178,0.00048172528708274393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003576795069789655,0.0,0.0,0.0,0.0,2.884549757608611e-05,0.0005375994781291243,0.00016427117285691448,0.0005664449757052104,0.0002961636487817577,0.0001840259124129172,5.7406297369672064e-05,0.0,0.0,0.0,0.0,0.0,2.884549757608611e-05,0.0,0.0,0.0003307424940489326,0.00017965587113575815,5.604307690911303e-05,0.0,0.0 +99028,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,32277.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.003075023207077994,0.0,0.0,0.003075023207077995,0.0019381697537223818,0.0007198543066747183,0.0004169991466808947,0.0,0.0,0.0019381697537223818,0.0007198543066747183,0.0004169991466808947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036644377953645995,0.00011444646582949243,0.00036644377953645995,0.00023096744385619372,8.578346083577739e-05,4.9692874844488916e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023096744385619366,8.578346083577736e-05,4.96928748444889e-05,0.0,0.0 +99029,50.0,the Greater Atlanta and Macon Area,G1301210009403,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,81997.0,,6533.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00723058721415401,0.0019032401143689666,0.0,0.009133827328522979,0.005828238128113008,0.0027460163779682665,0.0005596031960411396,0.0,0.0,0.003924998013744041,0.0027460163779682665,0.0005596031960411396,0.0,0.0,0.0019032401143689666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012716262994935445,0.0,0.0,0.0008616558580875071,0.00037387578112081155,0.0009888184880368614,0.00046773483693054134,0.000327237751015418,6.66868897078584e-05,0.0,0.0,0.00012716262994935445,0.0,0.0,0.0,0.0,0.0,0.0006309588966897442,0.00029728082930883805,6.0582050252035575e-05,0.0,0.0 +99030,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001600,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,93672.0,,5363.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007588600830726791,0.0015624179550779535,0.0,0.009151018785804745,0.007166438172141479,0.0013635923731584304,0.0006209882405048359,0.0,0.0,0.005604020217063525,0.0013635923731584304,0.0006209882405048359,0.0,0.0,0.0015624179550779535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010439157453156495,0.0,0.0,0.0009043206092320834,0.00032064511984676634,0.0010087121837636483,0.000667821524664176,0.00016249697581217391,7.40021087557334e-05,0.0,0.0,0.00010439157453156495,0.0,0.0,0.0,0.0,0.0,0.0007899528640069653,0.00015030809931521045,6.845122044147273e-05,0.0,0.0 +99031,50.0,the Greater Atlanta and Macon Area,G1301390001102,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,70814.0,,4756.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0034806117896477255,0.0008088590879828089,0.0,0.004289470877630534,0.0016156082629566314,0.0014267976441944892,0.0007428312220545321,0.0,0.0005042514787863017,0.0013880745348530939,0.0014267976441944892,0.00016150586217526097,0.0,0.0005042514787863017,0.00022753372810353762,0.0005813253598792712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.404321761381969e-05,0.0,0.0,0.0004147781467892924,0.00016658532500009654,0.00046882136440311214,0.00016541430586547733,0.00017002886804627393,1.9246358472928582e-05,0.0,6.0090727299384e-05,1.5202468470805525e-05,3.8840749143014164e-05,0.0,0.0,0.0,0.0,0.00017657927790820402,0.00015594306089517228,8.118836961010211e-05,0.0,5.511259384455089e-05 +99032,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,40865.0,,4167.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.0036977906628102085,0.0012265101156876915,0.0,0.0049243007784979,0.001237404925923376,0.0014305959975674154,0.0022563305446134064,0.0,0.0,1.0894810235684488e-05,0.0014305959975674154,0.0022563305446134064,0.0,0.0,0.0012265101156876915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.194758124301046e-05,0.0,0.0,0.00044066009531992665,0.00021850796767117024,0.0005226076765629371,1.2983179835552657e-06,0.0001704819515589541,0.0002688834830111738,0.0,0.0,8.194758124301046e-05,0.0,0.0,0.0,0.0,0.0,0.00013132368277098016,0.00015182672302503078,0.00023946052780270919,0.0,0.0 +99033,50.0,the Greater Atlanta and Macon Area,G1300890022100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,76069.0,,5217.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006589334678573469,0.0015356158303181542,0.0,0.008124950508891622,0.004325546559629719,0.0015430734046484962,0.0022563305446134064,0.0,0.0,0.002789930729311564,0.0015430734046484962,0.0022563305446134064,0.0,0.0,0.0015356158303181542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010260057432349088,0.0,0.0,0.0007852385646219503,0.0003381815522535849,0.0008878391389454411,0.00033247077408330453,0.00018388514235170232,0.0002688826481869432,0.0,0.0,0.00010260057432349088,0.0,0.0,0.0,0.0,0.0,0.0004726662062454775,0.00016861653020697868,0.00024655640249298484,0.0,0.0 +99034,50.0,the Greater Atlanta and Macon Area,G1302250040301,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,10965.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026329796924908517,0.0,0.0,0.002632979692490852,0.001655630202113456,0.0003905428021970097,0.0005112951298563985,0.0,7.551155832398767e-05,0.001655630202113456,0.0003905428021970097,0.0005112951298563985,0.0,7.551155832398767e-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.00031376522657473307,0.00010040188695087268,0.00031376522657473307,0.00019729707257964523,4.653995287846363e-05,6.092968841479503e-05,0.0,8.998512701829159e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001972970725796452,4.653995287846362e-05,6.092968841479502e-05,0.0,8.998512701829159e-06 +99035,50.0,the Greater Atlanta and Macon Area,G1302230120502,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,36425.0,,5535.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0018750034505320042,0.0009413403485134431,0.0,0.0028163437990454472,0.0013845107322076635,0.0005930805895007663,0.0005017337674646543,0.0,0.0003370364402337837,0.0009044080056754735,0.0005930805895007663,0.0002978523414954671,0.0,7.968024422171731e-05,0.00048010272653218976,0.00020388142596918716,0.00025735619601206637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.289448299683317e-05,0.0,0.0,0.00022344053109407078,0.00012173659118729317,0.000286335014090904,0.00010777655105462319,7.067626561542366e-05,3.5494486878131605e-05,0.0,9.495340438735843e-06,3.207746573096227e-05,1.3622083552711988e-05,1.7194933713158923e-05,0.0,0.0,0.0,0.0001407618985118414,6.02979433864932e-05,5.101079826460343e-05,0.0,3.426617655706574e-05 +99036,50.0,the Greater Atlanta and Macon Area,G1300630040523,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,31797.0,,2531.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00273435291578417,0.0007374406207491765,0.0,0.0034717631629339087,0.00215868208564046,0.0009390302002175355,0.00037405087707591375,0.0,0.0,0.0014212414648912834,0.0009390302002175355,0.00037405087707591375,0.0,0.0,0.0007374406207491765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.927134991747862e-05,0.0,0.0,0.00032584580897330036,0.00012800883906498666,0.000375117158890779,0.00016936569240956492,0.0001119018154072087,4.4574681612749875e-05,0.0,0.0,4.927134991747863e-05,0.0,0.0,0.0,0.0,0.0,0.0002332413396049637,0.00010146036013601973,4.041545914979567e-05,0.0,0.0 +99037,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11177.0,,1431.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.002302068690459883,0.0011348237587770372,0.0,0.00343689244923692,0.002359136571340005,0.000535611009535755,0.00046043027950672447,0.0,8.163188178069643e-05,0.0012243128125629678,0.000535611009535755,0.00046043027950672447,0.0,8.163188178069643e-05,0.0011348237587770372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.582150269771519e-05,0.0,0.0,0.0002743305411658673,0.00015034596747411186,0.00035015204386358253,0.0001458976432017796,6.38271389160795e-05,5.4868079423380874e-05,0.0,9.72782367359025e-06,7.582150269771519e-05,0.0,0.0,0.0,0.0,0.0,0.00024034982310587968,5.456827424041778e-05,4.690882994076679e-05,0.0,8.316690345165586e-06 +99038,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,235114.0,,47105.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.05429180096317315,0.04166421588918405,0.0,0.0959560168523572,0.07755941266213111,0.009829529190345432,0.002328577849775427,0.00064404529336785,0.005594544073990171,0.039811202411959894,0.009829529190345432,0.002328577849775427,0.00064404529336785,0.0016785384349773205,0.03774821025017121,0.0,0.00391600563901285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002783758695458364,0.0,0.0,0.006469847774653733,0.004153416440557831,0.009253606470112094,0.004744223156384568,0.0011713657758597475,0.000277492069745424,7.674961843499429e-05,0.00020002814357871797,0.002522114151899441,0.0,0.00026164454355892346,0.0,0.0,0.0,0.0074795130766285,0.0009479196604616228,0.0002245585400860902,6.210909841040962e-05,0.0005395149875808019 +99039,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,15385.0,,2129.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0034777497436641377,0.0016888784457566573,0.0,0.005166628189420795,0.0028518226096050595,0.0009965375314849151,0.001142350102487314,0.0,0.00017608335999098548,0.0013390275238393872,0.0009965375314849151,0.001142350102487314,0.0,0.0,0.0015127950857656718,0.0,0.00017608335999098548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011284065249557936,0.0,0.0,0.00041444044389343164,0.00021184136863660333,0.000527281096389011,0.00015957075760742609,0.00011875651997602697,0.00013613287857157312,0.0,0.0,0.00010107582638573175,0.0,1.1764826109847623e-05,0.0,0.0,0.0,0.00029104322919511265,0.00010170180298053744,0.00011658272908682739,0.0,1.7970216494776678e-05 +99040,85.0,Rural Climate Zone 3A,G1302850961000,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,75560.0,,2665.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003766141529956256,0.0004532234986193897,0.0,0.004219365028575646,0.001810553586770112,0.001070133693868707,0.0006365554357027358,0.0,0.0007021045818726709,0.0015810872492717887,0.001070133693868707,0.0004127982745816694,0.0,0.0007021045818726709,0.00022946633749832334,0.00022375716112106638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.028185643599123e-05,0.0,0.0,0.0004488028278178584,0.00016264452912135842,0.00047908468425384966,0.0001884147005245923,0.00012752548573420836,4.919226520749948e-05,0.0,8.366826346326654e-05,1.5331655817017387e-05,1.4950200618973844e-05,0.0,0.0,0.0,0.0,0.0002055779690943805,0.00012150753949097528,7.227721656181647e-05,0.0,7.971994592589186e-05 +99041,50.0,the Greater Atlanta and Macon Area,G1300970080301,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,7693.0,,1134.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005900383706796337,0.0003338108477001131,0.0,0.000923849218379747,0.0004822564733621015,0.00022406481557952801,0.00021755861904441503,0.0,0.0,0.0001484456256619884,0.00022406481557952801,0.00021755861904441503,0.0,0.0,0.0003338108477001131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2303910435899034e-05,0.0,0.0,7.031426650572201e-05,4.644785208381971e-05,9.261817694162104e-05,1.769011271653893e-05,2.670157389775702e-05,2.5926237140282087e-05,0.0,0.0,2.2303910435899034e-05,0.0,0.0,0.0,0.0,0.0,4.8347408313478145e-05,2.24630538434965e-05,2.1810791493842855e-05,0.0,0.0 +99042,35.0,Eastern Counties in South Carolina and Georgia,G1300510002600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14479.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033102679193420404,0.0,0.0,0.0033102679193420404,0.0012841100268764871,0.0009781765611147888,0.0009717254093631229,0.0,7.633862906138076e-05,0.0012841100268764871,0.0009781765611147888,0.0009717254093631229,0.0,7.633862906138076e-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.00039448068001493065,0.00012545850547874364,0.00039448068001493065,0.00015302586043153642,0.00011656813418290487,0.000115799358122512,0.0,9.097183381315737e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015302586043153642,0.00011656813418290487,0.000115799358122512,0.0,9.097183381315737e-06 +99043,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,15250.0,,652.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034285390347892496,0.0005170846250181499,0.0,0.0039456236598074,0.002562347851517483,0.0006566941654901009,0.0006447843468716407,0.0,8.171458885443572e-05,0.0021269778153537684,0.0006566941654901009,0.0006447843468716407,0.0,0.0,0.0004353700361637142,0.0,8.171458885443572e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4549825845053934e-05,0.0,0.0,0.0004085690203558795,0.00014695417737233492,0.0004431188462009334,0.00025346575714025547,7.825633284184114e-05,7.683707441246772e-05,0.0,0.0,2.908993654004541e-05,0.0,5.459889305008523e-06,0.0,0.0,0.0,0.00028776809990674367,7.375096714952859e-05,7.241341812313915e-05,0.0,9.177072486616402e-06 +99044,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,41920.0,,4559.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.004013218436337998,0.001342117862611138,0.0,0.005355336298949135,0.0031268105376414477,0.0009523905522366104,0.0012761658986773748,0.0,0.0,0.0017846926750303101,0.0009523905522366104,0.0012761658986773748,0.0,0.0,0.001342117862611138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.967284169798912e-05,0.0,0.0,0.00047824699691761296,0.0002424782099246474,0.000567919838615602,0.0002126781598842985,0.0001134944256648743,0.00015207806858577862,0.0,0.0,8.967284169798912e-05,0.0,0.0,0.0,0.0,0.0,0.0003315903309876826,0.00010099860373500273,0.0001353341584478658,0.0,0.0 +99045,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,17881.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0015323784652340171,0.0,0.0,0.0015323784652340176,0.0007901995629725513,0.0006565860990458811,8.556242961614689e-05,0.0,0.0,0.0007901995629725513,0.0006565860990458811,8.556242961614689e-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.00018261019624117748,4.3341629940190814e-05,0.00018261019624117748,9.416635677014276e-05,7.824393197648281e-05,1.0196287939017998e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.416635677014273e-05,7.824393197648278e-05,1.0196287939017995e-05,0.0,0.0 +99046,35.0,Eastern Counties in South Carolina and Georgia,G1302450010706,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,55289.0,,1474.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.004654355001503307,0.000433981722655815,0.0,0.005088336724159121,0.0033515198349532284,0.0007297374585467768,0.001007079430659117,0.0,0.0,0.002917538112297413,0.0007297374585467768,0.001007079430659117,0.0,0.0,0.000433981722655815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.89958756608054e-05,0.0,0.0,0.0005546509567742655,0.00019387399020264634,0.0005836468324350708,0.0003476776706736977,8.696147574610463e-05,0.00012001181035446311,0.0,0.0,2.89958756608054e-05,0.0,0.0,0.0,0.0,0.0,0.00038442894830963077,8.370298179518162e-05,0.00011551490233025846,0.0,0.0 +99047,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,21855.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001931941406046688,0.0,0.0,0.0019319414060466875,0.000902765458853225,0.0004964350714716402,0.0005327408757218226,0.0,0.0,0.000902765458853225,0.0004964350714716402,0.0005327408757218226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023022640533576258,8.280136619601813e-05,0.00023022640533576258,0.00010758113356986849,5.915938321410772e-05,6.348588855178634e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010758113356986852,5.915938321410773e-05,6.348588855178635e-05,0.0,0.0 +99048,50.0,the Greater Atlanta and Macon Area,G1300890022301,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,67170.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005639123088383993,0.0,0.0,0.005639123088383994,0.0023131676954767522,0.0013655954114288808,0.001960329291872063,0.0,0.0,0.0023131676954767522,0.0013655954114288808,0.001960329291872063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006720017071516071,0.00023446985626568459,0.0006720017071516071,0.00027565502932367926,0.00016273495601628905,0.00023360806459978158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002756550293236792,0.00016273495601628902,0.00023360806459978153,0.0,0.0 +99049,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,36139.0,,3358.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0018376455790199526,0.0005710240198942205,0.0,0.0024086873292755934,0.0012333062100174528,0.0003630646107984213,0.0006075840251423695,0.0,0.00020473248331734974,0.0011492642968864025,0.0003630646107984213,0.00012058418801777913,0.0,0.00020473248331734974,8.404191313105028e-05,0.00048699983712459035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.815282576799444e-05,0.0,0.0,0.00021898935266170938,0.00010717020340506297,0.0002571421784297038,0.00013695603074157057,4.326584244581282e-05,1.4369829295012599e-05,0.0,2.4397650179313407e-05,5.615239214441211e-06,3.253877120317653e-05,0.0,0.0,0.0,0.0,0.00013166301896483476,3.875937893504682e-05,6.486332945969548e-05,0.0,2.1856451070126758e-05 +99050,50.0,the Greater Atlanta and Macon Area,G1300630040522,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,6385.0,,127.0,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012080195190363244,0.00010065450874073712,0.0,0.001308591320703322,0.0004968213919520196,0.0003246252644267816,0.0003864901555837836,0.0,0.00010065450874073712,0.0004968213919520196,0.0003246252644267816,0.0003864901555837836,0.0,0.0,0.0,0.0,0.00010065450874073712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.722678894110002e-06,0.0,0.0,0.00014395457404298284,5.192584211595113e-05,0.00015067725293709287,5.920410285336147e-05,3.868421902770831e-05,4.6056396309931453e-05,0.0,0.0,0.0,0.0,6.722678894110002e-06,0.0,0.0,0.0,5.720631136348861e-05,3.7378853354701654e-05,4.4502262860260083e-05,0.0,1.1589825358642524e-05 +99051,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,253863.0,,3218.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.021333572921785116,0.0009471119399534054,0.0,0.02228068486173852,0.004750075883545841,0.006749964077935643,0.010780644900257035,0.0,0.0,0.0038029639435924354,0.006749964077935643,0.010780644900257035,0.0,0.0,0.0009471119399534054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.327955228757313e-05,0.0,0.0,0.002542282045006731,0.0007394226736696142,0.0026055615972943036,0.00045319211118781687,0.0008043806137251709,0.0012847093200937427,0.0,0.0,6.327955228757313e-05,0.0,0.0,0.0,0.0,0.0,0.0005554863049858301,0.0007893584642358633,0.00126071682807261,0.0,0.0 +99052,85.0,Rural Climate Zone 3A,G1301470960500,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,6908.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013173582705196885,0.0,0.0,0.0013173582705196885,0.0006484234581161703,0.0002581287771403784,0.00036730211447626426,0.0,4.35039207868757e-05,0.0006484234581161703,0.0002581287771403784,0.00036730211447626426,0.0,4.35039207868757e-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.0001569855049093955,4.626460556677483e-05,0.0001569855049093955,7.72706151738863e-05,3.076040688235957e-05,4.3770255355513904e-05,0.0,5.1842274976357376e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.72706151738863e-05,3.076040688235957e-05,4.3770255355513904e-05,0.0,5.1842274976357376e-06 +99053,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,81878.0,,9500.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010066282934465405,0.0027962834778151886,0.0,0.012862566412280597,0.0058079159230213576,0.002757276988210809,0.004297373501048428,0.0,0.0,0.0030116324452061694,0.002757276988210809,0.004297373501048428,0.0,0.0,0.0027962834778151886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018683084237273734,0.0,0.0,0.0011995798301849506,0.0005291865257021137,0.001386410672557688,0.00035889052202482777,0.0003285794650144563,0.0005121098431456666,0.0,0.0,0.00018683084237273737,0.0,0.0,0.0,0.0,0.0,0.0006260147751934412,0.0002971971627686544,0.00046319873459559204,0.0,0.0 +99054,50.0,the Greater Atlanta and Macon Area,G1302550160400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,33416.0,,1412.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029466947494534933,0.00041122816278772186,0.0,0.0033578925386417774,0.002190938848243352,0.0009453782825000255,0.00022160578149783733,0.0,0.0,0.0017797106854556305,0.0009453782825000255,0.00022160578149783733,0.0,0.0,0.00041122816278772186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.747579137233691e-05,0.0,0.0,0.0003511502411135883,0.00010767454210667778,0.00037862603248592515,0.0002120836698222913,0.0001126583647339116,2.6408206557385354e-05,0.0,0.0,2.747579137233691e-05,0.0,0.0,0.0,0.0,0.0,0.0002470437853455559,0.00010659805940249854,2.4987612575120623e-05,0.0,0.0 +99055,50.0,the Greater Atlanta and Macon Area,G1301350050718,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,14267.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032445985027930303,0.0,0.0,0.0032445985027930303,0.0019867066182919033,0.0004926860382650544,0.000684152913971551,0.0,8.105293226452127e-05,0.0019867066182919033,0.0004926860382650544,0.000684152913971551,0.0,8.105293226452127e-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.0003866479023031796,0.00012942370534027041,0.0003866479023031796,0.00023674915272048626,5.871173984246855e-05,8.15282041257176e-05,0.0,9.658805614507164e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00023674915272048626,5.871173984246855e-05,8.15282041257176e-05,0.0,9.658805614507164e-06 +99056,35.0,Eastern Counties in South Carolina and Georgia,G1302450010400,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,236521.0,,5309.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.019431145757108477,0.0015467451777680737,0.0,0.020977890934876554,0.015646261157570784,0.003896203841477053,0.0014354259358287133,0.0,0.0,0.014099515979802711,0.003896203841477053,0.0014354259358287133,0.0,0.0,0.0015467451777680737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010334440614935563,0.0,0.0,0.0023155709345777536,0.0007307926432489957,0.002418915340727109,0.001680211234198683,0.00046430285086065845,0.0001710568495184123,0.0,0.0,0.00010334440614935562,0.0,0.0,0.0,0.0,0.0,0.0018041366149038653,0.0004492628583114615,0.00016551586751178203,0.0,0.0 +99057,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302530200300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,18406.0,,633.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0015212617278398,0.00018433737498771579,0.0,0.001705599102827516,0.0011778881861960156,0.00042623272090997133,0.00010144782212209109,0.0,0.0,0.0009935508112083,0.00042623272090997133,0.00010144782212209109,0.0,0.0,0.00018433737498771579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2316872997473687e-05,0.0,0.0,0.00018128423673162915,5.102096661550851e-05,0.00019360110972910284,0.00011839849591151685,5.0792885974941636e-05,1.208923531363964e-05,0.0,0.0,1.2316872997473687e-05,0.0,0.0,0.0,0.0,0.0,0.00013370109048856015,4.838131518375361e-05,1.1515256375239581e-05,0.0,0.0 +99058,50.0,the Greater Atlanta and Macon Area,G1300670031308,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,15707.0,,4162.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0037460374972156847,0.0032275581561802846,0.0,0.0069736765141790395,0.00328383726119598,0.0004375376971838037,0.0023008935822149564,0.00041805024846428853,0.0005332768643369404,0.0018809835357400924,0.0004375376971838037,0.0010094660158275002,0.00041805024846428853,0.0,0.0014028537254558878,0.0012914275663874564,0.0005332768643369404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002156473798639112,0.0,0.0,0.00044641237409465145,0.0003341477475639484,0.0006620597539585627,0.0002241553445332049,5.214102696540159e-05,0.00012029727973314975,4.981872286289526e-05,0.0,9.37308378619315e-05,8.62859652713648e-05,3.5630576730614915e-05,0.0,0.0,0.0,0.0003117575764759016,4.1538505486471746e-05,0.00021843987684671098,3.9688426051572525e-05,5.062769241975255e-05 +99059,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302290960400,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,24331.0,,6446.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0011936079307979547,0.0010961795947947645,0.0,0.0022897697952312997,0.0007552247446871492,0.0002765936381528237,0.0009369609492426903,0.0,0.00032099046314863587,0.0006862713691245638,0.0002765936381528237,0.0001688639621645829,0.0,6.186123099456423e-05,6.895337556258535e-05,0.0007680969870781074,0.00025912923215407166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.324018720745953e-05,0.0,0.0,0.00014223908281697846,0.00010789195192176613,0.00021547927002443803,8.178113397970839e-05,3.296092828200927e-05,2.0123069292170272e-05,0.0,7.371838383072457e-06,4.60705358754242e-06,5.131966275801624e-05,1.7313470861900863e-05,0.0,0.0,0.0,7.107058405106653e-05,2.6028902716202318e-05,8.817290795113536e-05,0.0,3.0206875306033765e-05 +99060,50.0,the Greater Atlanta and Macon Area,G1302170100501,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,35101.0,,12182.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007308695366316858,0.008379617973521963,0.0,0.01568824161986781,0.004929672207758026,0.0007072306341849404,0.005109689335007208,0.0003699316104985218,0.0045717895523901255,0.0033096615024574036,0.0007072306341849404,0.002397383471138831,0.0003699316104985218,0.0005244881480371636,0.0016200107053006224,0.0027123058638683782,0.004047301404352962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005598752188948545,0.0,0.0,0.0008709620952426939,0.0007824621028523272,0.0014308373141375488,0.0003944055090884208,8.427921046050482e-05,0.0002856912248314873,4.408398413500496e-05,6.250216672727633e-05,0.00010823928383228894,0.00018121981742383133,0.00027041611763873425,0.0,0.0,0.0,0.0004496080001976951,6.450257496107471e-05,0.0004660263617383397,3.373940590703006e-05,0.0004169675125133057 +99061,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,62285.0,,9864.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.014444545602486097,0.006785641617700007,0.0,0.021230187220186107,0.005869777587830655,0.0008484472571146787,0.010301211156943232,0.0003721549296000057,0.0038385962886975347,0.004382090229053835,0.0008484472571146787,0.005003256898020043,0.0003721549296000057,0.0038385962886975347,0.00148768735877682,0.005297954258923188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004533758131944594,0.0,0.0,0.0017213295069383198,0.0008962511317013214,0.002174705320132779,0.000522205503788102,0.00010110787413769637,0.000596228774955185,4.434900751483571e-05,0.00045743834654250087,9.939833313701789e-05,0.0003539774800574416,0.0,0.0,0.0,0.0,0.000601268204366762,8.691033879084091e-05,0.0010552002426768615,3.812153406472304e-05,0.00039320500023359156 +99062,50.0,the Greater Atlanta and Macon Area,G1301210007807,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,19091.0,,6709.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006494386815405612,0.004615323574796602,0.0,0.011109710390202214,0.0026250226591423803,0.00030739179577290895,0.006037243720152107,0.00037064881020867793,0.0017694751248971553,0.0019412444554795447,0.00030739179577290895,0.0036585791614483516,0.00037064881020867793,0.00021659431246714536,0.0006837782036628356,0.002378664558703756,0.0015528808124300102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030836832806279855,0.0,0.0,0.0007739276591685883,0.0004958650594697529,0.001082295987231387,0.00023133558563826512,3.663148187998685e-05,0.00043598813664533117,4.416973830046011e-05,2.5811263480532027e-05,4.5685971527702654e-05,0.00015892814471237532,0.00010375421182272055,0.0,0.0,0.0,0.00025572687231224496,2.9945776747364334e-05,0.0005881417627250664,3.610820677330352e-05,0.00017238035555552323 +99063,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6470.0,,360.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001523547005351782,0.0002856702326955678,0.0,0.00180921723804735,0.0011999969328836116,0.0002551513224857634,0.0003101515265224028,0.0,4.4000163229311556e-05,0.0009143267001880435,0.0002551513224857634,0.0003101515265224028,0.0,4.4000163229311556e-05,0.0002856702326955678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.908486292179889e-05,0.0,0.0,0.00018156270296809082,7.59599160157579e-05,0.0002006475658898897,0.00010896127687488431,3.0406652117505032e-05,3.696108442160255e-05,0.0,5.243545843278016e-06,1.908486292179889e-05,0.0,0.0,0.0,0.0,0.0,0.0001330832243884073,2.82970395780713e-05,3.4396725581123946e-05,0.0,4.879748802442117e-06 +99064,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000602,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,33501.0,,4586.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007864681482811145,0.003556823264835329,0.0,0.011421504747646475,0.003348283305301597,0.0007584741451827902,0.006161591669821814,0.0004106110564219839,0.0007424637101352217,0.003348283305301597,0.0007584741451827902,0.003347232115121706,0.0004106110564219839,0.0,0.0,0.0028143595547001077,0.0007424637101352217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002376471684202942,0.0,0.0,0.0009372195318575939,0.0004994563552487769,0.001174866700277888,0.0003990087225757156,9.038595966383819e-05,0.0003988834541881218,4.893175940010345e-05,0.0,0.0,0.00018803986852634506,4.960729989394916e-05,0.0,0.0,0.0,0.0003444192902258196,7.802001889292378e-05,0.0006338086822644767,4.223727675248049e-05,7.637311444294521e-05 +99065,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,68720.0,,2738.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0032676878793543116,0.0004656702123362668,0.0,0.0037333580916905783,0.0015341195218700689,0.0007510758401148568,0.0009092661247045678,0.0,0.0005388611442782448,0.0015341195218700689,0.0007510758401148568,0.00044359591236830105,0.0,0.0005388611442782448,0.0,0.0004656702123362668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1113801975433645e-05,0.0,0.0,0.0003894033957282847,0.00011530876732298349,0.00042051719770371833,0.0001828177516719561,8.950410608004314e-05,5.286237883941831e-05,0.0,6.421493335815185e-05,0.0,3.1113801975433645e-05,0.0,0.0,0.0,0.0,0.00017279982965342548,8.459952134006076e-05,0.00010241772509814063,0.0,6.069612739470566e-05 +99066,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,14906.0,,2638.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013281234021393857,0.0007766311769696665,0.0,0.0021047238895027546,0.0012076053182083068,0.00038322111383941467,0.0005139281470613308,0.0,0.0,0.00043097414123864023,0.00038322111383941467,0.0005139281470613308,0.0,0.0,0.0007766311769696665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.18890069059262e-05,0.0,0.0,0.00015826818330721778,0.00010179349881148855,0.00021015719021314394,5.1357798737943885e-05,4.5667224442121005e-05,6.12431601271529e-05,0.0,0.0,5.188900690592621e-05,0.0,0.0,0.0,0.0,0.0,0.0001205796835522521,3.826472104798018e-05,5.131584997753471e-05,0.0,0.0 +99067,50.0,the Greater Atlanta and Macon Area,G1300670030310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,27244.0,,4322.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025596666132599007,0.0012722990082838642,0.0,0.0038319656215437654,0.0019691372088795037,0.0008019194125589739,0.0010608783104989897,0.0,0.0,0.0006968382005956394,0.0008019194125589739,0.0010608783104989897,0.0,0.0,0.0012722990082838642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.500780045008957e-05,0.0,0.0,0.0003050292679619359,0.00016723473420805806,0.0003900370684120255,8.304051985305098e-05,9.55627932599411e-05,0.00012642229764292547,0.0,0.0,8.500780045008957e-05,0.0,0.0,0.0,0.0,0.0,0.0002004288608265188,8.162346108188421e-05,0.00010798162275846049,0.0,0.0 +99068,35.0,Eastern Counties in South Carolina and Georgia,G1301270000501,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,12084.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0025847614685008354,0.0,0.0,0.0025847614685008354,0.0014229752036847845,0.0006655438223802068,0.00043421213713136395,0.0,6.194759823074127e-05,0.0014229752036847845,0.0006655438223802068,0.00043421213713136395,0.0,6.194759823074127e-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.0003080175839992182,8.092346840692196e-05,0.0003080175839992182,0.0001695713084828667,7.931068406635444e-05,5.174364251874745e-05,0.0,7.382092999341304e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001695713084828667,7.931068406635444e-05,5.174364251874745e-05,0.0,7.382092999341304e-06 +99069,50.0,the Greater Atlanta and Macon Area,G1301210007001,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,73404.0,,12842.0,,3.3063363735822096,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.013041505968310623,0.0038600922229948113,0.0,0.016901566853283232,0.007782891828419746,0.001275144123479078,0.005550653168809566,0.0,0.0022929090705970435,0.006217839661531847,0.001275144123479078,0.003255613112702653,0.0,0.0022929090705970435,0.0015650521668878993,0.0022950400561069124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002579081241262251,0.0,0.0,0.0015541292991809255,0.0007265139507475612,0.0018120374233071505,0.000740967095293798,0.0001519562884679588,0.0003879646827247685,0.0,0.00027324123269440007,0.00010456736399126297,0.00015334076013496216,0.0,0.0,0.0,0.0,0.000834413245651744,0.00013670974365346687,0.0005950922392575414,0.0,0.00024582555453165917 +99070,50.0,the Greater Atlanta and Macon Area,G1301350050421,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,74930.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.006103242004424152,0.0,0.0,0.006103242004424152,0.002567615221291006,0.001306211023242826,0.002229415759890321,0.0,0.0,0.002567615221291006,0.001306211023242826,0.002229415759890321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007273107880897681,0.00026002977689884365,0.0007273107880897681,0.0003059774213040799,0.00015565847922098213,0.00026567488756470617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003059774213040799,0.00015565847922098213,0.00026567488756470617,0.0,0.0 +99071,50.0,the Greater Atlanta and Macon Area,G1300890021214,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,3491.0,,162.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005244455545809483,0.00012852679259088375,0.0,0.0006529723471718321,0.00040807670182974276,0.00015937653109564538,7.418824514415875e-05,0.0,1.1330869102285117e-05,0.00029088077834114423,0.00015937653109564538,7.418824514415875e-05,0.0,0.0,0.0001171959234885986,0.0,1.1330869102285117e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.585747743979062e-06,0.0,0.0,6.249697033745281e-05,3.066531965919702e-05,7.108271808143188e-05,3.466359323085027e-05,1.899253459080138e-05,8.840842515801162e-06,0.0,0.0,7.828831758827752e-06,0.0,7.569159851513072e-07,0.0,0.0,0.0,4.4423322484329935e-05,1.7349765388590146e-05,8.076149223438174e-06,0.0,1.2334809850736121e-06 +99072,50.0,the Greater Atlanta and Macon Area,G1302970110507,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,80526.0,,1998.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004145110274948465,0.000339837837338152,0.0,0.004484930381925197,0.0018093479221935485,0.000946553074770939,0.0008500644479230115,0.0,0.0008789472066762776,0.0018093479221935485,0.000946553074770939,0.0005102266105848596,0.0,0.0008789472066762776,0.0,0.000339837837338152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2705480677696163e-05,0.0,0.0,0.0004939643006342736,0.00015997717461289291,0.0005166697813119699,0.00021561628562500045,0.00011279879100400081,6.080266003675367e-05,0.0,0.00010474233818681549,0.0,2.2705480677696163e-05,0.0,0.0,0.0,0.0,0.0002084392210511239,0.00010904413859198908,9.792852396984835e-05,0.0,0.00010125585513843843 +99073,85.0,Rural Climate Zone 3A,G1300610960300,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7467.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001488313791938837,0.0,0.0,0.0014883137919388374,0.001072876160546296,0.00021785043222933572,0.00015292537934397942,0.0,4.466181981922601e-05,0.001072876160546296,0.00021785043222933572,0.00015292537934397942,0.0,4.466181981922601e-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.000177363524859895,5.992534918425678e-05,0.000177363524859895,0.00012785549566449338,2.5961407306527557e-05,1.8224237703025612e-05,0.0,5.322384185848476e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012785549566449335,2.596140730652755e-05,1.822423770302561e-05,0.0,5.322384185848474e-06 +99074,50.0,the Greater Atlanta and Macon Area,G1301210010117,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,177280.0,,22943.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.041529670917388,0.02029323642801198,0.0,0.06182290734539998,0.048814372800204904,0.007430774011209619,0.002079683484540629,0.0006386044754542327,0.002859564791243365,0.03047900086582019,0.007430774011209619,0.002079683484540629,0.0006386044754542327,0.0009017002976160993,0.018335371934384715,0.0,0.0019578644936272655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013558730502525697,0.0,0.0,0.004949014724154827,0.002585270947753273,0.006304887774407397,0.00363212663934971,0.0008855117120118126,0.0002478320670309932,7.610132423685828e-05,0.00010745397088635383,0.0012250602194666792,0.0,0.00013081283078589066,0.0,0.0,0.0,0.0049782379298969805,0.0007578128921681276,0.00021209243530169916,6.51268230961452e-05,0.0002916270985398363 +99075,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,12158.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.001851388044258065,0.0,0.0,0.0018513880442580653,0.0008017112948198186,0.00015362721032502347,0.0008847486035989089,0.0,1.1300935514314089e-05,0.0008017112948198186,0.00015362721032502347,0.0008847486035989089,0.0,1.1300935514314089e-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.00022062769505006778,7.86380239587413e-05,0.00022062769505006778,9.553897445772133e-05,1.830757059067265e-05,0.0001054344310563045,0.0,1.3467189453693095e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.553897445772132e-05,1.8307570590672644e-05,0.00010543443105630448,0.0,1.346718945369309e-06 +99076,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,99159.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.008743951806139993,0.0,0.0,0.008743951806139995,0.005988519612346026,0.0018647567638813355,0.0008907058035120722,0.0,0.0,0.005988519612346026,0.0018647567638813355,0.0008907058035120722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010419987021797336,0.0003537180997131138,0.0010419987021797336,0.0007136395307737971,0.00022221921745735232,0.00010614357350778342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000713639530773797,0.00022221921745735226,0.0001061435735077834,0.0,0.0 +99078,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,28974.0,,22795.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009199664122114462,0.01568049586299812,0.0,0.024880159985112584,0.006069230827225069,0.0010725004465674476,0.013186720750814309,0.0003713660099188341,0.004180341950586921,0.004681879707899089,0.0010725004465674476,0.002606590626591368,0.0003713660099188341,0.0004673273311377216,0.00138735111932598,0.010580130124222941,0.0037130146194492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010476779886063167,0.0,0.0,0.0010963098866886639,0.0012907283606797928,0.0021439878752949806,0.0005579324357851749,0.00012780823597934293,0.00031062341369755516,4.425511875759247e-05,5.5690682468998154e-05,9.269459606925055e-05,0.0007069017169218279,0.0002480816756152384,0.0,0.0,0.0,0.0005230013518290562,9.242014340201017e-05,0.0011363339070795235,3.2001571655450625e-05,0.00036023090132893983 +99079,50.0,the Greater Atlanta and Macon Area,G1301210009101,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,22764.0,,5568.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004739972884421735,0.0038299181722046454,0.0,0.00856989105662638,0.002199866670961838,0.0006011567970528517,0.003581767072490632,0.0003735176090493024,0.0018137263470137878,0.002199866670961838,0.0006011567970528517,0.0013431716171803639,0.0003735176090493024,0.00022240363011940986,0.0,0.0022385954553102673,0.0015913227168943781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025589310112799496,0.0,0.0,0.0005648524655868013,0.00040868414488069027,0.0008207455667147964,0.00026215342225667965,7.163857416475362e-05,0.00016006289870645505,4.451129733357636e-05,2.650336655749237e-05,0.0,0.0001495700710755998,0.00010632303005239515,0.0,0.0,0.0,0.00021068305368473738,5.7573284516854174e-05,0.000343028800054428,3.5772090880908683e-05,0.0001737020749399577 +99080,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,138028.0,,5268.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.008857485733170098,0.0008959506232781081,0.0,0.009753436356448207,0.005350526626452174,0.0022875003089695323,0.001100115735030016,0.0,0.0010153114163579037,0.004997710164554544,0.0022875003089695323,0.0005569815736495388,0.0,0.0010153114163579037,0.0003528164618976307,0.0005431341613804775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.986249182975266e-05,0.0,0.0,0.001055529641383283,0.00037684615128191534,0.0011153921332130356,0.0005955675658584255,0.0002725970386549638,6.637442931347302e-05,0.0,0.00012099272044969497,2.357325506451849e-05,3.628923676523417e-05,0.0,0.0,0.0,0.0,0.0006118802737402503,0.0002615959910027177,0.00012580801182601864,0.0,0.00011610988426845995 +99081,50.0,the Greater Atlanta and Macon Area,G1300670031207,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,10271.0,,2549.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021664290895274186,0.0020221052458523265,0.0,0.004188534335379746,0.0029324620065008834,0.0007107018846418688,0.00047879124987685066,0.0,6.657919436014248e-05,0.0009769359550086992,0.0007107018846418688,0.00047879124987685066,0.0,0.0,0.001955526051492184,0.0,6.657919436014248e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013510581434305938,0.0,0.0,0.00025817209695215,0.00020027264808688302,0.0003932779112952094,0.00011642089063139634,8.469393101892897e-05,5.7057275301824705e-05,0.0,0.0,0.0001306573632593274,0.0,4.4484510837319664e-06,0.0,0.0,0.0,0.00027534035548610746,6.673058649289604e-05,4.495558771178577e-05,0.0,6.25138160442003e-06 +99082,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,17006.0,,2841.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0011641755308406671,0.0004831523486964389,0.0,0.0016473456098985261,0.0006892500698431327,0.0002965402947503831,0.0003655823221200687,0.0,0.00029595519282352145,0.0006249597793340213,0.0002965402947503831,0.000178633391307032,0.0,6.404206544923073e-05,6.429029050911146e-05,0.00018694893081303671,0.00023191312737429068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.228183591336742e-05,0.0,0.0,0.00013873321108755205,6.799237387893187e-05,0.0001710150470009195,7.447560500173675e-05,3.533830270239579e-05,2.1287497741503e-05,0.0,7.63180564191651e-06,4.295557321903496e-06,1.249099735304756e-05,1.549528123841636e-05,0.0,0.0,0.0,7.155276487298321e-05,3.078458590576334e-05,3.795201057045946e-05,0.0,3.07238450187744e-05 +99083,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,31625.0,,1660.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00737656119973509,0.001316448492708556,0.0,0.008693009692443646,0.003823217190673225,0.0024267909576587586,0.002270888123660164,0.0,0.00017211342045149876,0.002506768697964669,0.0024267909576587586,0.002270888123660164,0.0,0.00017211342045149876,0.001316448492708556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.795867918372417e-05,0.0,0.0,0.0008790519440148079,0.00038237928246086315,0.000967010623198532,0.00029872725752216997,0.00028919644957654524,0.0002706177805201828,0.0,2.051045639590998e-05,8.795867918372417e-05,0.0,0.0,0.0,0.0,0.0,0.00042529477925118777,0.0002699562889453631,0.00025261365365594827,0.0,1.914590134603301e-05 +99084,35.0,Eastern Counties in South Carolina and Georgia,G1300510010102,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,36092.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003114022908756068,0.0,0.0,0.003114022908756068,0.0020109448979752347,0.0008511897506435571,0.0002518882601372759,0.0,0.0,0.0020109448979752347,0.0008511897506435571,0.0002518882601372759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037109178852799896,9.801660715801788e-05,0.00037109178852799896,0.00023964022124647131,0.00010143455465753036,3.0017012623997267e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023964022124647131,0.00010143455465753036,3.0017012623997267e-05,0.0,0.0 +99085,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,7790.0,,1027.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005940587091046328,0.0003023846908512655,0.0,0.0008964433999558985,0.00040590073289341696,0.0002622119962075726,0.0002283306708549087,0.0,0.0,0.00010351604204215147,0.0002622119962075726,0.0002283306708549087,0.0,0.0,0.0003023846908512655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.020422783452983e-05,0.0,0.0,7.079150992619341e-05,4.630072494231093e-05,9.099573776072325e-05,1.2335576947928415e-05,3.124671492531882e-05,2.7209218052946166e-05,0.0,0.0,2.020422783452983e-05,0.0,0.0,0.0,0.0,0.0,4.120197287310254e-05,2.661648693692637e-05,2.3177277950694313e-05,0.0,0.0 +99086,50.0,the Greater Atlanta and Macon Area,G1301210001300,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,119537.0,,6907.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009392823010928688,0.0020122205891516206,0.0,0.011405043600080307,0.007561051976036751,0.0028594010246693947,0.0009845602257747253,0.0,0.0,0.0055488313868851296,0.0028594010246693947,0.0009845602257747253,0.0,0.0,0.0020122205891516206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013444569730207206,0.0,0.0,0.0011193243635884836,0.0003843855964208767,0.0012537700608905556,0.0006612433933396251,0.0003407492325212969,0.00011732811816506982,0.0,0.0,0.00013444569730207206,0.0,0.0,0.0,0.0,0.0,0.0008311954718284025,0.0003143373688448697,0.00010823388121123048,0.0,0.0 +99087,35.0,Eastern Counties in South Carolina and Georgia,G1302450010509,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,20317.0,,2609.0,,8.53126424238864,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00464650317746681,0.002023298513940701,0.0,0.006669882552190579,0.0026836885292613674,0.000632331323595887,0.0023614583087332845,0.00031956181468682164,0.0006728425759132193,0.002362671220479312,0.000632331323595887,0.001331938818704789,0.00031956181468682164,0.0,0.0003210173087820551,0.001029519490028495,0.0006728425759132193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013518756854331612,0.0,0.0,0.00055371633004734,0.0002987382045238903,0.0006889038985906562,0.00028155573930447816,7.535390948906599e-05,0.00015872501241737789,3.8081668836418e-05,0.0,2.1448910843136638e-05,6.878779165108708e-05,4.4956268797415615e-05,0.0,0.0,0.0,0.0002771868134025809,6.531082228473841e-05,0.00024390501969354228,3.3006185379704116e-05,6.949505783009057e-05 +99088,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,8285.0,,249.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017949916213641892,0.00019725637086824818,0.0,0.001992247992232437,0.0009699058537408582,0.00037300890256427644,0.0006019420826746794,0.0,4.739115325262316e-05,0.00077264948287261,0.00037300890256427644,0.0006019420826746794,0.0,4.739115325262316e-05,0.00019725637086824818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3181721584004738e-05,0.0,0.0,0.00021390585798007308,8.482184121159323e-05,0.00022708757956407783,9.207522117909242e-05,4.4450786503715125e-05,7.173233351974251e-05,0.0,5.64751677752301e-06,1.3181721584004738e-05,0.0,0.0,0.0,0.0,0.0,0.0001105552991343383,4.2517642968863786e-05,6.86127284983128e-05,0.0,5.401908962562962e-06 +99089,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,7422.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001782089317860857,0.0,0.0,0.0017820893178608571,0.0008565144556442676,0.0004922725028963578,0.00035621936659519703,0.0,7.708299272503453e-05,0.0008565144556442676,0.0004922725028963578,0.00035621936659519703,0.0,7.708299272503453e-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.00021236680159000495,6.797746144506432e-05,0.00021236680159000495,0.00010206852913473296,5.866279310640505e-05,4.2449705965941955e-05,0.0,9.185773382924985e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010206852913473295,5.866279310640504e-05,4.244970596594195e-05,0.0,9.185773382924983e-06 +99090,81.0,the Columbus-Albany Area,G1302150010302,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,3838.0,,71.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006055811939192088,5.6075395995250426e-05,0.0,0.0006616565899144593,0.00029791087960898534,0.00011165454954806503,0.0001960157647621586,0.0,5.6075395995250426e-05,0.00029791087960898534,0.00011165454954806503,0.0001960157647621586,0.0,0.0,0.0,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.748094266154694e-06,0.0,0.0,7.216110852246952e-05,2.972286668577289e-05,7.590920278862423e-05,3.549908671099908e-05,1.3304765979969118e-05,2.335725583150134e-05,0.0,0.0,0.0,0.0,3.748094266154694e-06,0.0,0.0,0.0,3.417811855557806e-05,1.2809677970580339e-05,2.248810132612993e-05,0.0,6.433304936335903e-06 +99091,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,32095.0,,4232.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002727753586952419,0.0012457218092300536,0.0,0.003973475396182473,0.0019015280062056642,0.0008361383235809124,0.0012358090663958955,0.0,0.0,0.0006558061969756108,0.0008361383235809124,0.0012358090663958955,0.0,0.0,0.0012457218092300536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.323245713305285e-05,0.0,0.0,0.0003250607945777175,0.00018557759775405028,0.00040829325171077034,7.815107805102546e-05,9.964088733680514e-05,0.00014726882918988688,0.0,0.0,8.323245713305285e-05,0.0,0.0,0.0,0.0,0.0,0.0001953909299699499,8.591713826712857e-05,0.00012698518347369178,0.0,0.0 +99092,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,86511.0,,16117.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004453175304621882,0.0027409011112031227,0.0,0.007194076415825004,0.0036854329247721757,0.0009508615525960117,0.001040311225960178,0.0,0.0015174884428580592,0.0025856008755248804,0.0009508615525960117,0.0006821756556365316,0.0,0.0002345549512258785,0.0010998320492472953,0.00035813557032364653,0.0012829334916321807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018313131057704895,0.0,0.0,0.0005306768084542965,0.00030113750776831474,0.0007138081190313453,0.0003081213576155598,0.00011331244325590144,8.129363318858843e-05,0.0,2.795148728919652e-05,7.348447697366498e-05,2.3928567174333143e-05,8.571826642905083e-05,0.0,0.0,0.0,0.00036567472901191493,9.434605042903869e-05,0.0001032213944484032,0.0,0.0001505677043776713 +99093,81.0,the Columbus-Albany Area,G1302150001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,271319.0,,3878.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,480687.657779034,0.0,0.0,0.021036086751399282,0.0011298978990843677,0.0,0.02216598465048365,0.012871511354534404,0.007593946584227834,0.0017005267117214114,0.0,0.0,0.011741613455450037,0.007593946584227834,0.0017005267117214114,0.0,0.0,0.0011298978990843677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.549323116769571e-05,0.0,0.0,0.0025068286236519344,0.0005657015869260711,0.00258232185481963,0.001399224724913294,0.0009049555123440381,0.00020264838639460226,0.0,0.0,7.549323116769571e-05,0.0,0.0,0.0,0.0,0.0,0.0014995221552067603,0.0008846895158504287,0.00019811018376244093,0.0,0.0 +99094,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,73542.0,,8457.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0034892819363821314,0.0014381273451419027,0.0,0.004927409281524034,0.0018785495228160144,0.0004899608074817391,0.001969009826781124,0.0,0.0005898891244451568,0.0018785495228160144,0.0004899608074817391,0.001018786567196234,0.0,0.00010198503888814373,0.0,0.0009502232595848896,0.00048790408555701297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.60867954643506e-05,0.0,0.0,0.00041581132981707955,0.00020058244279620675,0.0005118981252814302,0.00022386330180566467,5.8387730952022524e-05,0.00012140692699222747,0.0,1.2153370067164853e-05,0.0,6.34880550026623e-05,3.25987404616883e-05,0.0,0.0,0.0,0.00019515853545667202,5.090099167360077e-05,0.00020455626504770885,0.0,6.128233310344857e-05 +99095,50.0,the Greater Atlanta and Macon Area,G1301210011427,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,4676.0,,790.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011226658189373592,0.0006270850330914288,0.0,0.001749750852028788,0.001150703516934984,0.00017798562268698956,0.00039178340830309927,0.0,2.919559702997552e-05,0.0005528140808735307,0.00017798562268698956,0.00039178340830309927,0.0,0.0,0.0005978894360614534,0.0,2.919559702997552e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.189827987765738e-05,0.0,0.0,0.00013378774985946056,8.000851482239741e-05,0.00017568602973711794,6.587868867398218e-05,2.1210493421066675e-05,4.6688711587171393e-05,0.0,0.0,3.994759499282317e-05,0.0,1.9506848848342203e-06,0.0,0.0,0.0,0.00011553789618701653,1.7870879939226593e-05,3.933752707812098e-05,0.0,2.931422220514399e-06 +99096,50.0,the Greater Atlanta and Macon Area,G1300150960401,ComStock 90.1-2007,gen4_led,1001_5000,Propane,7997.0,,,2528.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007051838581462841,0.0,0.00023831126118860078,0.000943495119334885,0.0007403868598946383,0.00014965072442980326,5.345753501044321e-05,0.0,0.0,0.0005020755987060376,0.00014965072442980326,5.345753501044321e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023831126118860078,0.0,0.0,0.0,0.0,1.9218866461559048e-05,8.403626684968099e-05,4.109167678371527e-05,0.00010325513331124002,5.9831997718276544e-05,1.7833772096669606e-05,6.370497034734829e-06,0.0,0.0,0.0,0.0,0.0,1.9218866461559048e-05,0.0,0.0,8.102717476080179e-05,1.6377621022582482e-05,5.850337527855726e-06,0.0,0.0 +99097,50.0,the Greater Atlanta and Macon Area,G1301210007100,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,35392.0,,6424.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005516825007287648,0.0018909707816392543,0.0,0.007407765099320605,0.003773563300759236,0.001324072374108089,0.002310129424453279,0.0,0.0,0.0018825925191199816,0.001324072374108089,0.002310129424453279,0.0,0.0,0.0018909707816392543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000126342956561955,0.0,0.0,0.0006574280447115644,0.0003326275680636805,0.0007837710012735194,0.00022434445848812032,0.00015778682681009186,0.0002752931021996767,0.0,0.0,0.000126342956561955,0.0,0.0,0.0,0.0,0.0,0.0003992580011583152,0.00014009212178022233,0.00024442087833498175,0.0,0.0 +99098,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,21969.0,,12552.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.00435684479925634,0.008634510750511444,0.0,0.012991355549767785,0.0024358970955742137,0.00036534153235352274,0.008165677299982396,0.0003791834867595357,0.0016451844151271018,0.0024358970955742137,0.00036534153235352274,0.0009662831694933274,0.0003791834867595357,0.0002100677951047248,0.0,0.007199394130489069,0.001435116620022377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005769096261065962,0.0,0.0,0.0005191956061029045,0.0007149816444960723,0.0010961052322095008,0.00029028049591227773,4.3536946360179686e-05,0.00011514983869468014,4.5186461603115436e-05,2.5033316821548155e-05,0.0,0.0004810231750268485,9.588645107974774e-05,0.0,0.0,0.0,0.00020552124382667265,3.082455588426189e-05,0.0006889536337264696,3.199242775031264e-05,0.00013880731987221892 +99099,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,241567.0,,19676.0,,9.729435225087556,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.05665311593768305,0.017403147726100694,0.0,0.07405635588103654,0.049752130043655314,0.011756224252535367,0.007191009153999366,0.0006496705457870137,0.004707229667806687,0.03586181412744315,0.011756224252535367,0.003678177344110834,0.0006496705457870137,0.004707229667806687,0.013890315916212165,0.003512831809888532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011627789839829638,0.0,0.0,0.006751244143544634,0.002734009281766079,0.007914023127527597,0.004273584225642655,0.0014009668986685706,0.00043832140284502045,7.742000408772927e-05,0.0005609516123006586,0.0009280716156900892,0.00023470736829287486,0.0,0.0,0.0,0.0,0.005316755099882964,0.001256327421462957,0.0007684662859516481,6.942696090651792e-05,0.0005030375045384255 +99100,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,Electricity,214160.0,,16209.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.02179895011168348,0.004771221022284958,0.0,0.026570171133968437,0.016772053979332357,0.005123967357070754,0.004674119107959026,0.0,0.0,0.012000832957047401,0.005123967357070754,0.004674119107959026,0.0,0.0,0.004771221022284958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003187857015201901,0.0,0.0,0.0025977378561459195,0.0011254740003642525,0.0029165235576661098,0.0014301155752036371,0.0006106130758097643,0.0005570055479127132,0.0,0.0,0.0003187857015201901,0.0,0.0,0.0,0.0,0.0,0.0018410152608552086,0.0005624416730422841,0.0005130632550677043,0.0,0.0 +99101,35.0,Eastern Counties in South Carolina and Georgia,G1302450010600,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,85415.0,,7170.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00732686729711986,0.002110432156274127,0.0,0.009437299453393989,0.003206695582834368,0.0020926628742277574,0.004137940996331862,0.0,0.0,0.001096263426560241,0.0020926628742277574,0.004137940996331862,0.0,0.0,0.002110432156274127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014100654007245304,0.0,0.0,0.0008731279644324879,0.0003938556192764043,0.001014134504504941,0.00013063949643124935,0.0002493784043742905,0.0004931100636269481,0.0,0.0,0.00014100654007245304,0.0,0.0,0.0,0.0,0.0,0.0003445922906289015,0.00022487806363796358,0.0004446641502380758,0.0,0.0 +99102,50.0,the Greater Atlanta and Macon Area,G1301350050731,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,20628.0,,1827.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0018379391419568244,0.0005377739711546459,0.0,0.002375682423505173,0.0013492378512722052,0.0004749216574569506,0.0005515842939886121,0.0,0.0,0.0008114638801175592,0.0004749216574569506,0.0005515842939886121,0.0,0.0,0.0005377739711546459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.592993803658404e-05,0.0,0.0,0.00021902338906837696,0.00010370835490007924,0.000254953327104961,9.670046470673515e-05,5.659542722804458e-05,6.573115435021938e-05,0.0,0.0,3.592993803658404e-05,0.0,0.0,0.0,0.0,0.0,0.0001447974172954722,5.0967610605209544e-05,5.919488629450282e-05,0.0,0.0 +99103,81.0,the Columbus-Albany Area,G1302150002200,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,3650.0,,13.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005465283432693434,1.0090262996195503e-05,0.0,0.000556618606265539,0.00037350514500671236,9.974473092960475e-05,7.336117440676569e-05,0.0,1.0090262996195503e-05,0.00037350514500671236,9.974473092960475e-05,7.336117440676569e-05,0.0,0.0,0.0,0.0,1.0090262996195503e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.720118350180094e-07,0.0,0.0,6.513250604711506e-05,2.3071132665017213e-05,6.580451788213306e-05,4.4512469326387964e-05,1.1887076618162949e-05,8.742816716675403e-06,0.0,0.0,0.0,0.0,6.720118350180094e-07,0.0,0.0,0.0,4.415649372298854e-05,1.1792013159859207e-05,8.67289856782348e-06,0.0,1.1928902201515945e-06 +99104,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,9991.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0023990840879560904,0.0,0.0,0.002399084087956091,0.001171959234885986,0.0006561152159739258,0.0004814378762365085,0.0,8.957176085966995e-05,0.001171959234885986,0.0006561152159739258,0.0004814378762365085,0.0,8.957176085966995e-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.00028589162951750196,7.211338037119985e-05,0.00028589162951750196,0.00013965885442351853,7.818727538050619e-05,5.737150258287238e-05,0.0,1.0673997130604842e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0001396588544235185,7.818727538050617e-05,5.737150258287236e-05,0.0,1.067399713060484e-05 +99105,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,59594.0,,9830.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0030676184810904355,0.0016716362050439983,0.0,0.004739254686134434,0.002177182000213964,0.0007683984032222484,0.0012331466367646723,0.0,0.0005605276459335493,0.001929807997681387,0.0007683984032222484,0.0002664518714205535,0.0,0.00010296020876624663,0.0002473740025325767,0.000966694765344119,0.00045756743716730266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001116888529099156,0.0,0.0,0.00036556167069749654,0.00021738146318676618,0.00047725052360741207,0.0002299711780022363,9.156842866045203e-05,3.175251155820003e-05,0.0,1.226955247660817e-05,1.6528069025563397e-05,6.458883166655444e-05,3.057195221779777e-05,0.0,0.0,0.0,0.00021924570811328477,7.737894765390438e-05,0.00012417983777121807,0.0,5.6446030069004864e-05 +99106,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock DOE Ref 1980-2004,gen5_led,_1000,NaturalGas,5016.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.000366305609219287,0.0,0.0,0.000366305609219287,0.00028356792435085105,6.499950279678891e-05,1.7738182071647064e-05,0.0,0.0,0.00028356792435085105,6.499950279678891e-05,1.7738182071647064e-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,4.365147770271876e-05,1.5629226979716885e-05,4.365147770271876e-05,3.379189020170666e-05,7.745784600648272e-06,2.113802900363827e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.379189020170666e-05,7.745784600648272e-06,2.113802900363827e-06,0.0,0.0 +99107,50.0,the Greater Atlanta and Macon Area,G1302230120202,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,16179.0,,5650.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.003867086089469271,0.004382250138398862,0.0,0.008249336227868134,0.003810240958972096,0.0004169990582843976,0.002800289778446184,0.0004084278152791337,0.000813297756103252,0.0022452613634638104,0.0004169990582843976,0.0007963978524419298,0.0004084278152791337,0.0,0.001564979595508286,0.002003891926004254,0.000813297756103252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029279418569844737,0.0,0.0,0.0004608327120316045,0.00041547777861388667,0.0007536268977300519,0.00026756318825237464,4.9692921879118946e-05,9.490509745732838e-05,4.867150444278259e-05,0.0,0.00010456201992818063,0.0001338873606417367,5.4339402523387454e-05,0.0,0.0,0.0,0.00034808862121700636,3.809539312867091e-05,0.0002558234553885984,3.731235809441861e-05,7.429968277839285e-05 +99108,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,96527.0,,21344.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.015883394511876613,0.006415613919661029,0.0,0.022299008431537645,0.006650617748168515,0.0036581500079125025,0.00805738156490422,0.0,0.0039328591105524035,0.006650617748168515,0.0036581500079125025,0.0055746267557955954,0.0,0.0,0.0,0.0024827548091086254,0.0039328591105524035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004286537052270992,0.0,0.0,0.001892792128878559,0.0011757250712641372,0.0023214458341056583,0.0007925407202157393,0.00043593436755955405,0.0006643170411032656,0.0,0.0,0.0,0.000165883119124949,0.0002627705861021501,0.0,0.0,0.0,0.0006923648158220075,0.0003808329470108404,0.0008388164399809069,0.0,0.0004094316312919032 +99109,35.0,Eastern Counties in South Carolina and Georgia,G1300510004207,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,30543.0,,1959.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.00261859065735149,0.0005767497711527284,0.0,0.003195340428504219,0.0011435867994712989,0.0008293866101954176,0.0012223363292312042,0.0,0.0,0.0005668370283185703,0.0008293866101954176,0.0012223363292312042,0.0,0.0,0.0005767497711527284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.853583856581459e-05,0.0,0.0,0.0003120519197749633,0.0001381566781009665,0.0003505877583407779,6.754877185166799e-05,9.883625117982283e-05,0.00014566323952788765,0.0,0.0,3.853583856581459e-05,0.0,0.0,0.0,0.0,0.0,0.0001254725565133061,9.099900275801994e-05,0.00013411283185380855,0.0,0.0 +99110,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,35666.0,,505.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00839779662558195,0.0003918513547500854,0.0,0.008789728841115105,0.003590946515290249,0.0006500398350878946,0.0037715086438822715,0.00043034108749070467,0.0003469736201470525,0.003590946515290249,0.0006500398350878946,0.003379657289132186,0.00043034108749070467,0.0003469736201470525,0.0,0.0003918513547500854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.618320783262974e-05,0.0,0.0,0.001000752328230152,0.0003212987087868105,0.0010269355360627817,0.00042792749645537354,7.74642334662962e-05,0.00040274848886146485,5.128307631641104e-05,4.134830523745204e-05,0.0,2.618320783262974e-05,0.0,0.0,0.0,0.0,0.000419543156712959,7.59464846498565e-05,0.0004406388776015185,5.0278292238653594e-05,4.0538172115006116e-05 +99111,50.0,the Greater Atlanta and Macon Area,G1301510070502,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,250320.0,,,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.0670175051941129,0.0,0.0,0.0670175051941129,0.050582454187624984,0.00864213984363804,0.002595270144795447,0.0006552957982061771,0.004542345219848251,0.050582454187624984,0.00864213984363804,0.002595270144795447,0.0006552957982061771,0.004542345219848251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007986348560843794,0.0024059313752217678,0.007986348560843794,0.0060278148080148515,0.001029867359325581,0.00030927340440164145,7.809035325580299e-05,0.0005413026358459173,0.0,0.0,0.0,0.0,0.0,0.0,0.0060278148080148515,0.001029867359325581,0.00030927340440164145,7.809035325580299e-05,0.0005413026358459173 +99112,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950500,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,63246.0,,10200.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.008099343176635321,0.003065736036168868,0.0,0.011165110550826392,0.0033872954820036876,0.001943020052689845,0.003978205228681532,0.0,0.0018566211254735308,0.0033872954820036876,0.001943020052689845,0.0027690589799639915,0.0,0.0,0.0,0.001209146248717541,0.0018566211254735308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020483524075488326,0.0,0.0,0.0009651847352611779,0.0005773473036547377,0.0011700199760160612,0.0004036581512536049,0.00023154634323590756,0.00032998397526963697,0.0,0.0,0.0,8.078835230492717e-05,0.00012404898228036,0.0,0.0,0.0,0.0003549632008184575,0.00020361395125448475,0.0004168861172542913,0.0,0.00019455999067888047 +99113,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,20769.0,,1338.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0075873815306965854,0.0010617934126652287,0.0,0.008649174943361813,0.004348324401844088,0.0016280060394845274,0.002462933948882836,0.0,0.00020999326022410152,0.003496524249402961,0.0016280060394845274,0.002462933948882836,0.0,0.0,0.0008518001524411271,0.0,0.00020999326022410152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.094346545028957e-05,0.0,0.0,0.000904176181018113,0.0003446702269736398,0.0009751196464684026,0.0004166752297708882,0.00019400688860843416,0.00029350391870913234,0.0,0.0,5.691281746942921e-05,0.0,1.4030647980860352e-05,0.0,0.0,0.0,0.0004902359567498878,0.00018354359624659614,0.0002776744946467886,0.0,2.3674923332153398e-05 +99114,50.0,the Greater Atlanta and Macon Area,G1301170130612,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,56475.0,,8876.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0029070700584318578,0.0015094743194961951,0.0,0.004416526647566634,0.001604048067310757,0.0010351694211483628,0.0008615714524846258,0.0,0.0009157554369843071,0.0012623308116620794,0.0010351694211483628,0.00047517368605741515,0.0,0.00013439613956400025,0.00034171725564867764,0.0003863977664272107,0.0007813592974203069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010085391495312834,0.0,0.0,0.0003464294002904806,0.0002023356759665284,0.0004472833152436089,0.00015042929728641778,0.00012335895405318013,5.662544479010052e-05,0.0,1.601570416078216e-05,2.2831473575986876e-05,2.5816754197140143e-05,5.220568718000133e-05,0.0,0.0,0.0,0.0001624498151170805,0.00010483668445318979,8.725556672433974e-05,0.0,9.274304458966154e-05 +99115,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,520898.0,,12912.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.024892895522911532,0.0021957811493435995,0.0,0.027088676672255133,0.012766799931593282,0.006444135318841031,0.004373388678231644,0.0,0.003504352743589176,0.010571018782249681,0.006444135318841031,0.004373388678231644,0.0,0.003504352743589176,0.0021957811493435995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014670926382853673,0.0,0.0,0.0029664374462699573,0.0008483866549825622,0.003113146710098494,0.0012597275367996548,0.0007679349435683872,0.0005211681353122887,0.0,0.0004176068305896267,0.00014670926382853673,0.0,0.0,0.0,0.0,0.0,0.0014672153123756319,0.0007405876230132338,0.0005026085526563818,0.0,0.0004027352220532467 +99116,50.0,the Greater Atlanta and Macon Area,G1300150960102,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,69913.0,,3268.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0035988023788737977,0.0005557936394343951,0.0,0.004154596018308192,0.001985481332540353,0.0008570502103225124,0.0006143747535662498,0.0,0.0006977074522404979,0.0014296876931059578,0.0008570502103225124,0.0006143747535662498,0.0,0.0006977074522404979,0.0005557936394343951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.713516009468023e-05,0.0,0.0,0.0004288625802240933,0.00014637651672142683,0.0004659977403187735,0.0001703732209857901,0.00010213307814238386,7.321389570755398e-05,0.0,8.314449828253024e-05,3.713516009468023e-05,0.0,0.0,0.0,0.0,0.0,0.00022270030836492213,9.613051656287264e-05,6.891097127353429e-05,0.0,7.825793283266999e-05 +99117,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,37696.0,,,,9.325022323477118,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,163187.89066084955,0.0,0.0,0.009654378352658824,0.0,0.0,0.009654378352658824,0.003916036890940883,0.001977065231531284,0.003577790718064571,0.0,0.00018348551212208622,0.003916036890940883,0.001977065231531284,0.003577790718064571,0.0,0.00018348551212208622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011504893743683475,0.00038695300102360453,0.0011504893743683475,0.0004666648299961401,0.00023560217532632893,0.0004263568356748087,0.0,2.186553337106974e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004666648299961401,0.00023560217532632893,0.0004263568356748087,0.0,2.186553337106974e-05 +99118,50.0,the Greater Atlanta and Macon Area,G1300890021705,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,32675.0,,2699.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028409982341909426,0.0007946152862601206,0.0,0.003635613520451062,0.0012526883498596324,0.0012951013857630575,0.0010877930952220751,0.0,0.0,0.0004580730635995117,0.0012951013857630575,0.0010877930952220751,0.0,0.0,0.0007946152862601206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3091117691024654e-05,0.0,0.0,0.00033855738821234315,0.00014395781596759173,0.00039164850590336784,5.4587862166286055e-05,0.00015433523940890204,0.00012963062940399365,0.0,0.0,5.3091117691024654e-05,0.0,0.0,0.0,0.0,0.0,0.00013494655518945568,0.00013951552327392397,0.00011718312138493445,0.0,0.0 +99119,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000300,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,253359.0,,22087.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,306613.1346040191,0.0,0.0,0.02614538269494155,0.00820854358872556,0.0,0.03435396503209088,0.01968055692438348,0.00498870456696057,0.009185507597291085,0.0,0.0004991959434557425,0.013322793048707681,0.00498870456696057,0.007833885079273293,0.0,0.0,0.006357763875675799,0.0013516225180177917,0.0004991959434557425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005484478245620658,0.0,0.0,0.0031156966622808003,0.0014028270539399004,0.0036641444868428666,0.0015876524860409648,0.0005944946513019009,0.0009335495249379339,0.0,0.0,0.0004247893343080912,9.030766805625883e-05,3.335341114525493e-05,0.0,0.0,0.0,0.0020990998880366495,0.0005320880520906751,0.0009797130255569495,0.0,5.324352115859264e-05 +99120,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,27075.0,,,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007064483173564996,0.0,0.0,0.007064483173564995,0.0037738536065912583,0.0007389058356802067,0.0017307442007987678,0.0004081043721468595,0.0004128751583479027,0.0037738536065912583,0.0007389058356802067,0.0017307442007987678,0.0004081043721468595,0.0004128751583479027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00084186420117835,0.00026886442390326796,0.00084186420117835,0.00044972465413541617,8.805433544362525e-05,0.00020625027312709063,4.863320540424344e-05,4.920173306797444e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004497246541354162,8.805433544362526e-05,0.00020625027312709066,4.8633205404243446e-05,4.9201733067974445e-05 +99121,81.0,the Columbus-Albany Area,G1300950011400,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11429.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003323252929919112,0.0,0.0,0.003323252929919112,0.0015908705633755785,0.0011463200420268008,0.0005247763828759056,0.0,6.12859416408268e-05,0.0015908705633755785,0.0011463200420268008,0.0005247763828759056,0.0,6.12859416408268e-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.000396026060429872,0.00012407781954039995,0.000396026060429872,0.00018958117698336497,0.000136604892799035,6.25366554696881e-05,0.0,7.303335177783906e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00018958117698336497,0.000136604892799035,6.25366554696881e-05,0.0,7.303335177783906e-06 +99122,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,DistrictHeating,61292.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,215998.51729091106,0.0,0.002006816852998414,0.009379558101315202,0.0,0.0,0.01138642954820499,0.00787451370393061,0.0014603320003496985,0.0019594293552862175,0.0,9.215448863846464e-05,0.005959851339570659,0.0014603320003496985,0.0019594293552862175,0.0,0.0,0.0,0.0,0.0,0.001914662364359949,0.0,9.215448863846464e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001117746843452622,0.00033660628812882536,0.001117746843452622,0.0007102258923389893,0.00017402541422019126,0.00023350204275961287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007730002455142223,0.00014335323262427326,0.0001923470362300569,0.0,9.046329084069432e-06 +99123,50.0,the Greater Atlanta and Macon Area,G1301390001606,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,76400.0,,2595.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0036346177089423043,0.0004413796171907944,0.0,0.004075997326133098,0.00165885261446014,0.0005607936013548502,0.0012285190124340386,0.0,0.0006278498282454899,0.00165885261446014,0.0005607936013548502,0.0007871393952432442,0.0,0.0006278498282454899,0.0,0.0004413796171907944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9489990841645523e-05,0.0,0.0,0.00043313134131573437,0.00015653737570062333,0.00046262133215737986,0.00019768270434012753,6.682883984153372e-05,9.380209126955925e-05,0.0,7.481981876216606e-05,0.0,2.9489990841645523e-05,0.0,0.0,0.0,0.0,0.0001882779955310606,6.364947328614705e-05,0.00013943559247917548,0.0,7.126028323803323e-05 +99124,35.0,Eastern Counties in South Carolina and Georgia,G1302450010106,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,43531.0,,24902.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009063969936952925,0.017130028197194634,0.0,0.026193998134147564,0.006346285075258375,0.0005953474794005875,0.014095843103408194,0.0003821957255421913,0.004774398470509227,0.006346285075258375,0.0005953474794005875,0.0011674576881921166,0.0003821957255421913,0.0005727556885306699,0.0,0.012928385415216077,0.004201642781978557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011445305238208215,0.0,0.0,0.001080135715390572,0.0014356508397233708,0.0022246662392113935,0.0007562744820997432,7.09464042843578e-05,0.00013912366810514106,4.5545523241939846e-05,6.82541843892159e-05,0.0,0.0008638007807750137,0.0002807297430458078,0.0,0.0,0.0,0.0005389924088347996,5.056308820208249e-05,0.001197165324085928,3.2460028554258226e-05,0.0004054914807387821 +99125,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,10102.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002083143066271936,0.0,0.0,0.002083143066271936,0.001176756245162866,0.000368294599361136,0.00046241524927646783,0.0,7.5594265397727e-05,0.001176756245162866,0.000368294599361136,0.00046241524927646783,0.0,7.5594265397727e-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.00024824877337654587,6.980501804524114e-05,0.00024824877337654587,0.00014023438867675765,4.3889775989429424e-05,5.5106161589243184e-05,0.0,9.008590894753762e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014023438867675765,4.3889775989429424e-05,5.5106161589243184e-05,0.0,9.008590894753762e-06 +99126,50.0,the Greater Atlanta and Macon Area,G1301510070310,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,21414.0,,2482.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0011022611087618428,0.00042210671432719706,0.0,0.0015243678230890398,0.000664498485300739,0.0002718419012922496,0.0003503874023830835,0.0,0.00023765776447438777,0.0005206875238226907,0.0002718419012922496,0.000256877476253725,0.0,5.287193775459746e-05,0.00014381096147804827,9.350992612935848e-05,0.00018478582671979028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8202684151085212e-05,0.0,0.0,0.00013135534145940767,6.095400405809284e-05,0.00015955802561049289,6.204980556939944e-05,3.2395124425036007e-05,3.0611829028823484e-05,0.0,6.300695345385948e-06,9.608601300014792e-06,6.247782425875726e-06,1.2346300425194692e-05,0.0,0.0,0.0,6.955412252201282e-05,2.8454127928584788e-05,3.667561153957034e-05,0.0,2.4876019485699872e-05 +99127,35.0,Eastern Counties in South Carolina and Georgia,G1302450010706,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8647.0,,128.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018634730784203356,0.00010189511484682675,0.0,0.001965368193267162,0.001241267762679526,0.0002629257874172583,0.0004108887423368793,0.0,5.02031937597596e-05,0.0011393726478326992,0.0002629257874172583,0.0004108887423368793,0.0,5.02031937597596e-05,0.00010189511484682675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.806132043336498e-06,0.0,0.0,0.0002220686837866063,7.935583442790907e-05,0.0002288748158299428,0.0001357781806330961,3.1332668135352245e-05,4.896530207500156e-05,0.0,5.9826768034472505e-06,6.806132043336498e-06,0.0,0.0,0.0,0.0,0.0,0.0001445504875636823,3.06187366714383e-05,4.7849601693521696e-05,0.0,5.846358338962895e-06 +99128,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14210.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003158748560251629,0.0,0.0,0.003158748560251629,0.0015672163402861363,0.000620385760118545,0.0008888529214763368,0.0,8.221083129687158e-05,0.0015672163402861363,0.000620385760118545,0.0008888529214763368,0.0,8.221083129687158e-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.0003764218915271164,9.715309442381279e-05,0.0003764218915271164,0.00018676210783795895,7.393015836680196e-05,0.00010592286521370758,0.0,9.796904068337707e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00018676210783795895,7.393015836680196e-05,0.00010592286521370758,0.0,9.796904068337707e-06 +99129,50.0,the Greater Atlanta and Macon Area,G1302230120603,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,6150.0,,635.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014486143965439695,0.0005035206649249036,0.0,0.0019520523543951338,0.0011090191517703731,0.000406505267428696,0.0003934375497778854,0.0,4.317309249191848e-05,0.0006054984868454696,0.000406505267428696,0.0003934375497778854,0.0,4.317309249191848e-05,0.0005035206649249036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3639679570796006e-05,0.0,0.0,0.00017262562846799657,8.947616299299151e-05,0.00020626530803879254,7.215485161371412e-05,4.8441619407376714e-05,4.688439135725148e-05,0.0,5.144766089654252e-06,3.3639679570796006e-05,0.0,0.0,0.0,0.0,0.0,0.00011718547222659813,4.295373226890371e-05,4.1572920529638844e-05,0.0,4.561922328457322e-06 +99130,50.0,the Greater Atlanta and Macon Area,G1301130140203,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,217172.0,,35012.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.05932704739909401,0.0309681211745291,0.0,0.09029516857362313,0.07002941288693754,0.01272256884434546,0.002305062450318267,0.0006511460218313844,0.004586886152937694,0.039061291712408436,0.01272256884434546,0.002305062450318267,0.0006511460218313844,0.004586886152937694,0.0309681211745291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020691111912486625,0.0,0.0,0.007069888889769271,0.003809353616147938,0.009139000081017935,0.004654858187023314,0.0015161237928610657,0.00027468981050249124,7.759580540718878e-05,0.0005466103046244964,0.0020691111912486625,0.0,0.0,0.0,0.0,0.0,0.00708785220911937,0.0012876830459032386,0.0002333011417220367,6.590411912703236e-05,0.0004642502316072213 +99131,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,11377.0,,1509.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0010032703630283805,0.0004395971046625821,0.0,0.001442837094091525,0.0009440114705253267,0.0004167865314848306,8.209983928024318e-05,0.0,0.0,0.0005044143658627446,0.0004167865314848306,8.209983928024318e-05,0.0,0.0,0.0004395971046625821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9370770589415396e-05,0.0,0.0,0.0001195567994667242,5.924845528871354e-05,0.0001489275700561396,6.010958701655684e-05,4.966723387976113e-05,9.783598103555917e-06,0.0,0.0,2.9370770589415396e-05,0.0,0.0,0.0,0.0,0.0,9.743950650158555e-05,4.3020106441916247e-05,8.474227351151408e-06,0.0,0.0 +99132,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,35814.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.00320012800708666,0.0,0.0,0.00320012800708666,0.0011240988994722573,0.0008671348259415921,0.0012088942816728106,0.0,0.0,0.0011240988994722573,0.0008671348259415921,0.0012088942816728106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003813519007714692,0.00012234095228688972,0.0003813519007714692,0.0001339562826923046,0.00010333446454818902,0.00014406115353097557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001339562826923046,0.00010333446454818902,0.00014406115353097557,0.0,0.0 +99133,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,8024.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016954123045820628,0.0,0.0,0.001695412304582063,0.0009646953080952817,0.0003604374273559017,0.0003262794059015678,0.0,4.4000163229311556e-05,0.0009646953080952817,0.0003604374273559017,0.0003262794059015678,0.0,4.4000163229311556e-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.000202035818674645,6.54021481916158e-05,0.000202035818674645,0.0001149590608820459,4.295195364574383e-05,3.888147249482778e-05,0.0,5.243331652027472e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011495906088204589,4.2951953645743824e-05,3.888147249482777e-05,0.0,5.243331652027471e-06 +99134,50.0,the Greater Atlanta and Macon Area,G1301210010114,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,54850.0,,6214.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004836752721666475,0.0018102969000894462,0.0,0.006647049621755921,0.004677048335822776,0.001422152672874416,0.0005479093602576051,0.0,0.0,0.0028667514357333303,0.001422152672874416,0.0005479093602576051,0.0,0.0,0.0018102969000894462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012095247139421915,0.0,0.0,0.0005763881114647539,0.0002535875386807341,0.000697340582858973,0.00034162619864343496,0.00016947566694089947,6.529348502727105e-05,0.0,0.0,0.00012095247139421915,0.0,0.0,0.0,0.0,0.0,0.0004906681607862993,0.00014919773888414452,5.7481056164433016e-05,0.0,0.0 +99135,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,18626.0,,4753.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0009763223515952077,0.000808256255694527,0.0,0.0017845963376511551,0.0007395333748304024,0.00022200185534048116,0.0005188612965964252,0.0,0.00030419981088384597,0.0005250669230934437,0.00022200185534048116,0.00016436045036388947,0.0,6.49108531588133e-05,0.00021446645173695873,0.0003545008462325357,0.00023928895772503265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.400344881412507e-05,0.0,0.0,0.00011634664773329957,8.342233246967088e-05,0.00017035009654742467,6.257131800551955e-05,2.645557752235801e-05,1.9586550885093742e-05,0.0,7.735314216863882e-06,1.4329524785145813e-05,2.3685889430737873e-05,1.5988034598241393e-05,0.0,0.0,0.0,7.059276047165561e-05,2.1191367870189407e-05,4.9528327557960435e-05,0.0,2.9037640647619173e-05 +99136,50.0,the Greater Atlanta and Macon Area,G1300670030414,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,39547.0,,7795.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0038251218393393774,0.0022944777252414507,0.0,0.006119599564580829,0.0028948584932434102,0.0012644424690716524,0.001960329291872063,0.0,0.0,0.0006003807680019595,0.0012644424690716524,0.001960329291872063,0.0,0.0,0.0022944777252414507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015330347602978577,0.0,0.0,0.00045583320207517994,0.00029198471035671227,0.0006091366781049658,7.154634530280846e-05,0.00015068143806272103,0.0002336090759373406,0.0,0.0,0.00015330347602978577,0.0,0.0,0.0,0.0,0.0,0.00028815030584097075,0.00012586089614801527,0.00019512853091795406,0.0,0.0 +99137,50.0,the Greater Atlanta and Macon Area,G1301690030301,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,18725.0,,15.0,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.0,0.0012929471293985537,0.002924703948661036,7.752332575036718e-06,0.0,0.004225348816743253,0.0033495536113295984,0.00011284557346902041,0.0007551972993695982,0.0,7.752332575036718e-06,0.0020566064819310444,0.00011284557346902041,0.0007551972993695982,0.0,0.0,0.0,0.0,7.752332575036718e-06,0.0012929471293985537,0.0,0.0,0.0,0.0,0.0,0.0,5.164815008443801e-07,0.0,0.0,0.00034852913896543707,0.00011416258963266317,0.00034904562046628147,0.000245080288097644,1.3447504857790608e-05,8.999484020213716e-05,0.0,0.0,0.0,0.0,5.164815008443801e-07,0.0,0.0,0.0,0.00027669834355894667,9.321893864073126e-06,6.238498201341247e-05,0.0,6.404010298492424e-07 +99138,46.0,the Tallahassee-Valdosta Area,G1301850010800,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,126403.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.01073181773663739,0.0,0.0,0.01073181773663739,0.0034515065722711437,0.0029291080938716467,0.0043511723808883004,0.0,0.0,0.0034515065722711437,0.0029291080938716467,0.0043511723808883004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012788898713140368,0.00037056320812886204,0.0012788898713140368,0.0004113093330854935,0.000349056121261537,0.0005185207597462434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004113093330854935,0.000349056121261537,0.0005185207597462434,0.0,0.0 +99139,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5373.0,,230.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009746201569439986,0.00018253451174265147,0.0,0.0011570719616129108,0.0006934988133040928,0.00020900077533922984,0.00021545192709089583,0.0,3.912044587869241e-05,0.0005109643015614413,0.00020900077533922984,0.00021545192709089583,0.0,3.912044587869241e-05,0.00018253451174265147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2193554621277808e-05,0.0,0.0,0.00011614091157569856,4.784702001447115e-05,0.0001283344661969764,6.088921857727986e-05,2.490564184926937e-05,2.5674395337295888e-05,0.0,4.661799997904397e-06,1.2193554621277808e-05,0.0,0.0,0.0,0.0,0.0,7.691812001870244e-05,2.318092895495063e-05,2.3896446350473444e-05,0.0,4.338970872849881e-06 +99140,50.0,the Greater Atlanta and Macon Area,G1301990970500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Propane,7239.0,,,946.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005297155741943918,0.0,8.917688794923935e-05,0.0006188924621436312,0.0003473524831701299,0.00020283489704530668,6.870508192819462e-05,0.0,0.0,0.0002581755952208905,0.00020283489704530668,6.870508192819462e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.917688794923935e-05,0.0,0.0,0.0,0.0,7.191152874194355e-06,6.312498499417723e-05,2.3747279980578924e-05,7.03161378683716e-05,3.0766191080877666e-05,2.417136753389424e-05,8.187426379405325e-06,0.0,0.0,0.0,0.0,0.0,7.191152874194355e-06,0.0,0.0,3.946482885074095e-05,2.3045306668874435e-05,7.806002348756209e-06,0.0,0.0 +99141,85.0,Rural Climate Zone 3A,G1301650960100,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6639.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006412474313298167,0.0,0.0,0.0006412474313298165,0.00038313258330780153,0.00020569001539245534,5.2424832629559644e-05,0.0,0.0,0.00038313258330780153,0.00020569001539245534,5.2424832629559644e-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,7.641674962461497e-05,2.4747645363000313e-05,7.641674962461497e-05,4.565748767359289e-05,2.45118524279032e-05,6.24740952311886e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5657487673592894e-05,2.4511852427903207e-05,6.247409523118861e-06,0.0,0.0 +99142,46.0,the Tallahassee-Valdosta Area,G1301850010202,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,39253.0,,6991.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.008132327513460137,0.004808895776567736,0.0,0.012941223290027873,0.004006421020874064,0.00028867288333783443,0.006814688205961331,0.00038384528487555035,0.0014475958949790935,0.004006421020874064,0.00028867288333783443,0.0020057924293935946,0.00038384528487555035,0.0014475958949790935,0.0,0.004808895776567736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003213024444772857,0.0,0.0,0.0009691177337974847,0.000608607967811376,0.0012904201782747706,0.00047743941128313864,3.440073091573221e-05,0.00023902738919758586,4.574228866111772e-05,0.0001725079137399103,0.0,0.0003213024444772857,0.0,0.0,0.0,0.0,0.00039949596820448364,2.8784706455605716e-05,0.0006795193137885078,3.8274720236124674e-05,0.0001443454695900487 +99143,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,52291.0,,9394.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004990835844951321,0.0027652869754545093,0.0,0.00775612282040583,0.0038039460109939617,0.001588187125906119,0.00236395899389945,0.0,0.0,0.001038659035539453,0.001588187125906119,0.00236395899389945,0.0,0.0,0.0027652869754545093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001847593319636189,0.0,0.0,0.0005947483099766796,0.0003409719938408571,0.0007795076419402986,0.00012377499986379996,0.00018926120561847443,0.0002817084472730405,0.0,0.0,0.00018475933196361892,0.0,0.0,0.0,0.0,0.0,0.0003823050580499907,0.000159616348289111,0.00023758315122731678,0.0,0.0 +99144,35.0,Eastern Counties in South Carolina and Georgia,G1301270000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,16445.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003706600216700802,0.0,0.0,0.003706600216700801,0.0017027732341448614,0.0008622212437322798,0.001029620360980638,0.0,0.00011190267076928296,0.0017027732341448614,0.0008622212437322798,0.001029620360980638,0.0,0.00011190267076928296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004417062472605303,0.00012582473818766442,0.0004417062472605303,0.00020291521373169843,0.00010274874213876803,0.00012269727490508614,0.0,1.3335160490527882e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00020291521373169848,0.00010274874213876806,0.00012269727490508617,0.0,1.3335160490527884e-05 +99145,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,70792.0,,1312.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00590609197356771,0.0003862900744691849,0.0,0.006292382048036895,0.001793899556919621,0.00243049406035287,0.0020679577411581067,0.0,0.0,0.001407609482450436,0.00243049406035287,0.0020679577411581067,0.0,0.0,0.0003862900744691849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.58091392918063e-05,0.0,0.0,0.0007038168069425123,0.000210603224974544,0.0007296259462343187,0.00016774192068021816,0.0002896369674746121,0.0002464342615705564,0.0,0.0,2.58091392918063e-05,0.0,0.0,0.0,0.0,0.0,0.0002080095664367913,0.00028182515223389946,0.000239787668985515,0.0,0.0 +99146,50.0,the Greater Atlanta and Macon Area,G1301210010510,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,27979.0,,3646.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0062806187424986875,0.002827863305472552,0.0,0.009108482047971241,0.004807901300471591,0.0008156427188122394,0.0025292444336004792,0.00042176984448544073,0.0005337620290353517,0.0026925832153989054,0.0008156427188122394,0.0018167800739836814,0.00042176984448544073,0.0005337620290353517,0.002115318085072686,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018894033533370196,0.0,0.0,0.000748449019460432,0.00041945775235935855,0.0009373893547941339,0.00032086986171352513,9.71985433527832e-05,0.00021650211877171933,5.026148529078192e-05,6.360737431066938e-05,0.00014133247090042446,4.760246181588836e-05,0.0,0.0,0.0,0.0,0.000494799844170168,8.394096819900242e-05,0.0002602943932087435,4.340597701259012e-05,5.4931528807535934e-05 +99147,50.0,the Greater Atlanta and Macon Area,G1300670030328,ComStock DOE Ref 1980-2004,gen3_t5_cfl,_1000,Electricity,2105.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.00044438510720129883,0.0,0.0,0.00044438510720129883,0.00021834667467177162,9.883495311847237e-05,0.00010007555922456197,0.0,2.7045213112753528e-05,0.00021834667467177162,9.883495311847237e-05,0.00010007555922456197,0.0,2.7045213112753528e-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,5.295188839362376e-05,1.908391155437277e-05,5.295188839362376e-05,2.6017678272690622e-05,1.1776941490858064e-05,1.1924769208316532e-05,0.0,3.2226442405946335e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.6017678272690622e-05,1.1776941490858064e-05,1.1924769208316532e-05,0.0,3.2226442405946335e-06 +99148,50.0,the Greater Atlanta and Macon Area,G1301210010122,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7299.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0017526455996096637,0.0,0.0,0.0017526455996096637,0.0008690859308526425,0.000444715935496256,0.0003956706407688467,0.0,4.317309249191848e-05,0.0008690859308526425,0.000444715935496256,0.0003956706407688467,0.0,4.317309249191848e-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.000208855878690703,6.45684535823639e-05,0.000208855878690703,0.0001035655501525132,5.2995047884475014e-05,4.7150513126153697e-05,0.0,5.144767527561085e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001035655501525132,5.2995047884475014e-05,4.7150513126153697e-05,0.0,5.144767527561085e-06 +99149,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,48081.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.004283931453490034,0.0,0.0,0.004283931453490034,0.0016331167095259558,0.0014822772945727468,0.0011685374493913313,0.0,0.0,0.0016331167095259558,0.0014822772945727468,0.0011685374493913313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000510506477557533,0.00017586377724042312,0.000510506477557533,0.00019461484570235877,0.00017663965183181544,0.00013925198002335876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019461484570235877,0.00017663965183181544,0.00013925198002335876,0.0,0.0 +99150,50.0,the Greater Atlanta and Macon Area,G1300890022005,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,100575.0,,20275.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,240343.828889517,0.0,0.0,0.007985978632170897,0.005906632388261845,0.0,0.013892611020432743,0.010078750007031435,0.0026919513709690686,0.0011218792688328014,0.0,0.0,0.00417211761876959,0.0026919513709690686,0.0011218792688328014,0.0,0.0,0.005906632388261845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039464690597658587,0.0,0.0,0.0009516736964453939,0.0006396553072782711,0.0013463206024219797,0.0004971832231386871,0.00032079466147594325,0.00013369219226740353,0.0,0.0,0.00039464690597658587,0.0,0.0,0.0,0.0,0.0,0.0009767227169298824,0.00026087461789028475,0.00010872032412325176,0.0,0.0 +99151,50.0,the Greater Atlanta and Macon Area,G1300590000600,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,14987.0,,207.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003362207961650325,0.000163842713077568,0.0,0.003526050674727893,0.0024769941514185176,0.0004373550059334576,0.00044785880429834964,0.0,0.000163842713077568,0.0024769941514185176,0.0004373550059334576,0.00044785880429834964,0.0,0.0,0.0,0.0,0.000163842713077568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0948870073404896e-05,0.0,0.0,0.00040066607238569796,0.0001388117147053281,0.00041161494245910287,0.00029517731481548914,5.211852284698343e-05,5.3370234723225285e-05,0.0,0.0,0.0,0.0,1.0948870073404896e-05,0.0,0.0,0.0,0.00028915290764683864,5.1054812368909903e-05,5.228097749199075e-05,0.0,1.9126244951363564e-05 +99152,46.0,the Tallahassee-Valdosta Area,G1301850010301,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,39509.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,100799.30806909183,0.0,0.0,0.006140993871147925,0.0,0.0,0.006140993871147925,0.003378979718779913,0.001519020433576209,0.00119003764415951,0.0,5.290148074091958e-05,0.003378979718779913,0.001519020433576209,0.00119003764415951,0.0,5.290148074091958e-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.00073181278637112,0.0002512188041456378,0.00073181278637112,0.0004026678115914809,0.00018101932673680976,0.00014181495414782125,0.0,6.304188025013249e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0004026678115914809,0.00018101932673680976,0.00014181495414782125,0.0,6.304188025013249e-06 +99153,50.0,the Greater Atlanta and Macon Area,G1301210011617,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,30022.0,,12470.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.00625111267372066,0.008577995413351143,0.0,0.014829108087071802,0.004777912749088993,0.0005394059020084106,0.007537840673711736,0.0003769601676580517,0.0015969168746335957,0.002706209666332052,0.0005394059020084106,0.002437331494994526,0.0003769601676580517,0.00019113372275660347,0.0020717030827569404,0.005100509178717211,0.0014057831518769922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000573131811835799,0.0,0.0,0.0007449320907863075,0.0007756458561452077,0.0013180639026221064,0.00032249337519091027,6.427987901335265e-05,0.0002904517229610128,4.492155884778376e-05,2.2777008053528102e-05,0.00013841916254212977,0.0003407863872640257,9.392626202964364e-05,0.0,0.0,0.0,0.00042467788942360425,4.794431628146516e-05,0.0006699901057702792,3.3505561278471067e-05,0.00014193965514201613 +99154,81.0,the Columbus-Albany Area,G1301970920200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,30185.0,,,1431.0,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007248034407144207,0.0,0.0003672194074025249,0.007615253814546731,0.004074150452398284,0.0014753287813617658,0.0019160747773185353,0.0,0.00014978251054188576,0.0037069310449957585,0.0014753287813617658,0.0019160747773185353,0.0,0.00014978251054188576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003672194074025249,0.0,0.0,0.0,0.0,2.9616744624681192e-05,0.0008637353218819543,0.00025986611881086895,0.0008933520665066354,0.00044174835541449406,0.00017581229727540708,0.00022833521084086536,0.0,1.784931440552541e-05,0.0,0.0,0.0,2.961674462468119e-05,0.0,0.0,0.000477942142776181,0.00017307210602601533,0.00022477640320129488,0.0,1.75711169420963e-05 +99155,81.0,the Columbus-Albany Area,G1302150003200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,173883.0,,5478.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.015333230841765313,0.001595889661658356,0.0,0.016929120503423666,0.010021981749682279,0.005450026067914122,0.0014571126858272684,0.0,0.0,0.008426092088023921,0.005450026067914122,0.0014571126858272684,0.0,0.0,0.001595889661658356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010662830097534962,0.0,0.0,0.0018272325633488938,0.0006427968125753651,0.0019338608643242434,0.0010041217016753133,0.0006494694565784347,0.00017364140509514562,0.0,0.0,0.00010662830097534962,0.0,0.0,0.0,0.0,0.0,0.0011448390532020148,0.0006225717467221399,0.00016645006440008927,0.0,0.0 +99156,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,21468.0,,2.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.0019128217813232193,6.751713385494612e-07,0.0,0.0019134969526617685,0.0007418598530343694,0.0005384184528868976,0.0006332186467405015,0.0,0.0,0.00074118468169582,0.0005384184528868976,0.0006332186467405015,0.0,0.0,6.751713385494612e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.490798540827229e-08,0.0,0.0,0.00022794662964956974,8.664334047999594e-05,0.000227991537634978,8.832529605741816e-05,6.41621048416771e-05,7.545922875047445e-05,0.0,0.0,4.4907985408272295e-08,0.0,0.0,0.0,0.0,0.0,8.839197176022971e-05,6.415210162418691e-05,7.544746425056136e-05,0.0,0.0 +99157,50.0,the Greater Atlanta and Macon Area,G1300670031503,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,198159.0,,21505.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011098780720278974,0.0036570820768615114,0.0,0.014755845066779068,0.006653548617573275,0.0034696366959287134,0.0023066313689417695,0.0,0.002326028384335307,0.005681109215129059,0.0034696366959287134,0.0016137111142846858,0.0,0.00033432369493651564,0.000972439402444216,0.0006929202546570835,0.0019917046893987915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024434460012131025,0.0,0.0,0.00132261933794997,0.0005400017151342154,0.0015669639380712804,0.0006770063395528191,0.00041346961484800006,0.00019230270237865116,0.0,3.9840681170499554e-05,6.497265085621315e-05,4.629683419231422e-05,0.00013307393043487202,0.0,0.0,0.0,0.0007065587024503179,0.000368450302651208,0.00024494755516870595,0.0,0.0002470073778010482 +99158,50.0,the Greater Atlanta and Macon Area,G1300890023414,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,80305.0,,11086.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003842098398279763,0.0018853225208784743,0.0,0.005727438649519657,0.0020332469262059755,0.0007740543885152453,0.0025096794679242145,0.0,0.0004104401365128023,0.001598675767800481,0.0007740543885152453,0.0013744398869210731,0.0,9.49283550429627e-05,0.00043457115840549415,0.0011352395810031407,0.00031551178146983956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012596657731151517,0.0,0.0,0.00045785615915293505,0.0002388562057321621,0.0005838227364644502,0.00019051140051585418,9.224271024910328e-05,0.0001637896020294623,0.0,1.1312446358515219e-05,2.903558453072176e-05,7.585028177613434e-05,2.1080711004659067e-05,0.0,0.0,0.0,0.00020725770401138375,7.890273103373837e-05,0.0002558225455169289,0.0,4.1837948569530865e-05 +99159,50.0,the Greater Atlanta and Macon Area,G1301510070309,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,14311.0,,880.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0012619319358402748,0.00025650504725181414,0.0,0.001518436983092089,0.0007738281928756031,0.0005627013031837903,0.0001819378606321334,0.0,0.0,0.000517323145623789,0.0005627013031837903,0.0001819378606321334,0.0,0.0,0.00025650504725181414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.713908752032062e-05,0.0,0.0,0.00015038183918281498,5.710463170879813e-05,0.00016752092670313558,6.164833766485439e-05,6.705595958073582e-05,2.168116149674012e-05,0.0,0.0,1.713908752032062e-05,0.0,0.0,0.0,0.0,0.0,8.537227255592466e-05,6.207978652789028e-05,2.0072218574007486e-05,0.0,0.0 +99160,85.0,Rural Climate Zone 3A,G1302930010201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6643.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012810498651481326,0.0,0.0,0.0012810498651481329,0.0007622283915814572,0.00030138457670603625,0.00016797806676453338,0.0,4.937612302236653e-05,0.0007622283915814572,0.00030138457670603625,0.00016797806676453338,0.0,4.937612302236653e-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.00015265568280978194,5.281200214438056e-05,0.00015265568280978194,9.083057478048618e-05,3.5914346191416194e-05,2.0017024455204797e-05,0.0,5.883881634543211e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.083057478048617e-05,3.591434619141619e-05,2.0017024455204793e-05,0.0,5.8838816345432105e-06 +99161,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,44035.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0038144988589895006,0.0,0.0,0.0038144988589895006,0.0027382103629127645,0.0007302117040829916,0.00034607679199374425,0.0,0.0,0.0027382103629127645,0.0007302117040829916,0.00034607679199374425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045456551063108227,0.0001421062985261507,0.00045456551063108227,0.0003263065576489632,8.7017736380503e-05,4.124121660161603e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003263065576489632,8.7017736380503e-05,4.124121660161603e-05,0.0,0.0 +99162,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950900,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,28191.0,,1988.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006712496184867693,0.001542176854682961,0.0,0.008254753900333723,0.003782424849596522,0.0008661807082300692,0.0024217804529024062,0.0004259746052050042,0.0007584741451827901,0.003782424849596522,0.0008661807082300692,0.0016379968826191668,0.0004259746052050042,0.0,0.0,0.0007837835702832394,0.0007584741451827901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010304074415547723,0.0,0.0,0.0007999182253736385,0.00036717045797296,0.0009029589695291158,0.00045074596543074805,0.00010322147169964243,0.00019519766170833242,5.0762762594633715e-05,0.0,0.0,5.23685996801091e-05,5.06775471989501e-05,0.0,0.0,0.0,0.00041374636794137734,9.474851087902248e-05,0.00026491018491660973,4.6595888285165276e-05,8.296686258824037e-05 +99163,35.0,Eastern Counties in South Carolina and Georgia,G1300510010806,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10784.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0032948016965527894,0.0,0.0,0.0032948016965527894,0.001598314200012116,0.0006765438631875347,0.0009565073077950904,0.0,6.335361848430949e-05,0.001598314200012116,0.0006765438631875347,0.0009565073077950904,0.0,6.335361848430949e-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.00039263841491615705,0.00012309059478800614,0.00039263841491615705,0.0001904695978174746,8.06230949623256e-05,0.00011398607496812905,0.0,7.549791044149317e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001904695978174746,8.06230949623256e-05,0.00011398607496812905,0.0,7.549791044149317e-06 +99164,50.0,the Greater Atlanta and Macon Area,G1301210011620,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,213078.0,,24071.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010968214338781706,0.00409342627140901,0.0,0.015061640610190715,0.0061777366385047374,0.0039404841737996354,0.0023791308167883654,0.0,0.0025642889810979764,0.00528522570534212,0.0039404841737996354,0.001344138699254203,0.0,0.00039834803002432637,0.000892510933162618,0.001034992117534162,0.00216594095107365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002734992256482543,0.0,0.0,0.00130706091175069,0.000585417969617556,0.0015805601373989442,0.0006298301360511134,0.0004695798858283255,0.00016017841186368806,0.0,4.7470365114648196e-05,5.963245284458346e-05,6.915222699252481e-05,0.00014471573045203053,0.0,0.0,0.0,0.0006482882258897493,0.0004135122041715118,0.0002496646565931748,0.0,0.0002690950507445082 +99165,50.0,the Greater Atlanta and Macon Area,G1301510070309,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,64773.0,,3076.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.00333421219540235,0.0005230456618915577,0.0,0.003857257857293909,0.0015882680456469102,0.000506662807939429,0.000771589868277858,0.0,0.0009907371354297104,0.0014152551789100348,0.000506662807939429,0.00042155707312317546,0.0,0.0009907371354297104,0.00017301286673687523,0.0003500327951546824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.494678377569322e-05,0.0,0.0,0.00039733200208626044,0.0001383683257135025,0.00043227878586195366,0.0001686533851908652,6.037808515571296e-05,5.023618955284964e-05,0.0,0.0001180643421868326,1.1559685290956418e-05,2.3387098484736796e-05,0.0,0.0,0.0,0.0,0.00017799551074795306,5.678116204839869e-05,8.647125594982554e-05,0.0,0.00011103085711577623 +99166,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,32410.0,,602.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007668351755887367,0.00047763335084450036,0.0,0.008145985106731866,0.004883935411379843,0.0013922081722537618,0.0016807731525302055,0.0,0.00018906837056805674,0.0045953704311034,0.0013922081722537618,0.0016807731525302055,0.0,0.0,0.00028856498027644357,0.0,0.00018906837056805674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.191191031621469e-05,0.0,0.0,0.0009138251461868788,0.0003182159720952251,0.0009457370565030935,0.0005476229038087445,0.0001659072088803966,0.00020029503349773775,0.0,0.0,1.9279767115718274e-05,0.0,1.263214320049641e-05,0.0,0.0,0.0,0.0005670178179300266,0.00016163334963364105,0.00019513532532851265,0.0,2.195056361091329e-05 +99167,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,19110.0,,692.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0070129809035770945,0.0005490922625552619,0.0,0.007562155873206096,0.0036732692659838606,0.0020480752670064698,0.001658276828473114,0.0,0.00018261721881639075,0.003306794222244989,0.0020480752670064698,0.001658276828473114,0.0,0.0,0.00036647504373887114,0.0,0.00018261721881639075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.668982191274207e-05,0.0,0.0,0.000835725239909919,0.00030311761280486636,0.000872415061822661,0.0003940651532800865,0.00024406571433832185,0.00019761408441963226,0.0,0.0,2.448751331455944e-05,0.0,1.2202308598182631e-05,0.0,0.0,0.0,0.0004237700845507622,0.0002362780853293073,0.0001913086302488637,0.0,2.1067803271296305e-05 +99168,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970500,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,16059.0,,141.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0008040896207608146,2.40423700855916e-05,0.0,0.0008281319908464062,0.0005617510408715329,0.00011017646586420813,4.14003939158233e-05,0.0,0.00011480409019484192,0.0005377086707859414,0.00011017646586420813,4.14003939158233e-05,0.0,0.00011480409019484192,2.40423700855916e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6062971854071338e-06,0.0,0.0,9.582217514702264e-05,3.3357677057163134e-05,9.742847233242978e-05,6.40779498949032e-05,1.3129567073793273e-05,4.933623932621064e-06,0.0,1.3681034245705093e-05,1.6062971854071338e-06,0.0,0.0,0.0,0.0,0.0,6.608915770459187e-05,1.2962094056002714e-05,4.870693534078908e-06,0.0,1.350652703775629e-05 +99169,50.0,the Greater Atlanta and Macon Area,G1301390001102,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,58625.0,,4951.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0028899247989386664,0.0008420148638383074,0.0,0.003731957393138395,0.0013756278211362169,0.0005095351264894775,0.001260220898653093,0.0,0.0005865380861367668,0.0013756278211362169,0.0005095351264894775,0.00041820603481478556,0.0,0.0005865380861367668,0.0,0.0008420148638383074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.625904992891103e-05,0.0,0.0,0.00034438700397481845,0.00015795357048230155,0.0004006460539037295,0.0001639310282674119,6.072036050768029e-05,4.9836841230936576e-05,0.0,6.989666107434657e-05,0.0,5.625904992891103e-05,0.0,0.0,0.0,0.0,0.00014768117642279107,5.470138488951834e-05,0.00013529161158717704,0.0,6.296807410154346e-05 +99170,50.0,the Greater Atlanta and Macon Area,G1302170100501,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,57237.0,,2788.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0029462718875315945,0.00047410986437221184,0.0,0.0034203817519038063,0.0019211023902241412,0.000521804536592154,0.000465067380047985,0.0,0.000512407445039526,0.001648001633271068,0.000521804536592154,0.00026405827262884643,0.0,0.000512407445039526,0.0002731007569530733,0.0002010091074191386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.167674713629105e-05,0.0,0.0,0.00035110166581078285,0.00012163180257867825,0.0003827784129470739,0.00019638924742452438,6.218246279321505e-05,3.146732648247883e-05,0.0,6.106262911056457e-05,1.824670666194058e-05,1.3430040474350473e-05,0.0,0.0,0.0,0.0,0.0002149925293074444,5.8395678281862546e-05,5.204616518291724e-05,0.0,5.734404017484973e-05 +99171,50.0,the Greater Atlanta and Macon Area,G1300890021907,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,44867.0,,4083.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0038681993827954456,0.001189460527581799,0.0,0.005057659910377245,0.003854014911858015,0.0009555838119111101,0.00024806118660811914,0.0,0.0,0.0026645543842762167,0.0009555838119111101,0.00024806118660811914,0.0,0.0,0.001189460527581799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.947276889566993e-05,0.0,0.0,0.00046096624519943844,0.00021323701245287312,0.0005404390140951084,0.0003175300722895704,0.0001138751750256728,2.9560997884195344e-05,0.0,0.0,7.947276889566993e-05,0.0,0.0,0.0,0.0,0.0,0.00041182286990052553,0.00010210943051644722,2.6506713678135605e-05,0.0,0.0 +99172,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,13450.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002856123377439503,0.0,0.0,0.002856123377439503,0.0013855916063546172,0.0008766949816366588,0.0005033552507774249,0.0,9.031612452332371e-05,0.0013855916063546172,0.0008766949816366588,0.0005033552507774249,0.0,9.031612452332371e-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.00034036234257376843,8.624005920037129e-05,0.00034036234257376843,0.00016512003953141467,0.00010447516379352927,5.998451385353008e-05,0.0,1.076291310023905e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00016512003953141467,0.00010447516379352927,5.998451385353008e-05,0.0,1.076291310023905e-05 +99173,50.0,the Greater Atlanta and Macon Area,G1301210006700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4651.0,,675.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005187810783968012,0.0001967601771577563,0.0,0.0007155412555545575,0.0004806318375029849,0.00019906857071502545,3.5840847336547155e-05,0.0,0.0,0.0002838716603452286,0.00019906857071502545,3.5840847336547155e-05,0.0,0.0,0.0001967601771577563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3146135463118676e-05,0.0,0.0,6.182089294321191e-05,2.851872443807163e-05,7.49670284063306e-05,3.382775558824699e-05,2.372213889635895e-05,4.270998458605976e-06,0.0,0.0,1.3146135463118676e-05,0.0,0.0,0.0,0.0,0.0,5.035564383656403e-05,2.0856350461630472e-05,3.7550341081360937e-06,0.0,0.0 +99174,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,19034.0,,7590.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0014775596689401004,0.0012907525810184237,0.0,0.0027682945195971046,0.0011802215079258149,0.0004247130774559449,0.0008199582942317619,0.0,0.0003434016399835827,0.000851181460692475,0.0004247130774559449,0.00013579683811618443,0.0,6.586829267549616e-05,0.00032904004723333986,0.0006841614561155775,0.00027753334730808653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.624017679943948e-05,0.0,0.0,0.00017607690622411357,0.00012721473147498294,0.00026231708302355307,0.00010143305978401657,5.0611942301462974e-05,1.6182552646192906e-05,0.0,7.849351492441133e-06,2.198443936103515e-05,4.571147546202519e-05,1.8543077342293528e-05,0.0,0.0,0.0,0.00011183501650171846,4.02448131192393e-05,7.769732101161979e-05,0.0,3.2539932390975485e-05 +99175,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,13407.0,,,1280.0,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030811693250841587,0.0,0.00032859520396626835,0.0034097645290504268,0.001936668838679623,0.0004290015914857877,0.0009637028232104101,0.0,8.039127567460682e-05,0.0016080736347133546,0.0004290015914857877,0.0009637028232104101,0.0,8.039127567460682e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032859520396626835,0.0,0.0,0.0,0.0,2.6498410041373698e-05,0.00036718040915455056,0.00013651063395420598,0.00039367881919592416,0.00019163280977054623,5.112376609987261e-05,0.00011484367121567679,0.0,9.580162068455017e-06,0.0,0.0,0.0,2.6498410041373698e-05,0.0,0.0,0.0002236006313894235,4.9530939315721716e-05,0.00011126556871154604,0.0,9.281679779232987e-06 +99176,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,33339.0,,6362.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00792265866427128,0.004934044122058494,0.0,0.012856702786329773,0.005504678668173095,0.00071893322226228,0.005691871380976736,0.0004312305561044585,0.000510069819596273,0.005504678668173095,0.00071893322226228,0.0007578272589182421,0.0004312305561044585,0.000510069819596273,0.0,0.004934044122058494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003296615298827873,0.0,0.0,0.0009441307131827956,0.0006357264157387355,0.001273792243065583,0.0006559838580780781,8.567413599759371e-05,9.030907688330318e-05,5.1389063915776337e-05,6.078421435978195e-05,0.0,0.0003296615298827873,0.0,0.0,0.0,0.0,0.0005453822107129186,7.122911503978729e-05,0.000563928538608218,4.272465082748686e-05,5.05357392499132e-05 +99177,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,42785.0,,2913.0,,9.325022323477118,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.010978726576954267,0.0024693649918973823,0.0,0.01344809156885165,0.007961203036800054,0.0026123705596302993,0.002491372647253066,0.0,0.0003830569410101741,0.005874894985912846,0.0026123705596302993,0.002491372647253066,0.0,0.0,0.002086308050887208,0.0,0.0003830569410101741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016498620857401146,0.0,0.0,0.0013083138522013988,0.00047669513544925355,0.0014733000607754102,0.0007001000012544839,0.0003113112041083012,0.00029689211426751005,0.0,0.0,0.00013939294367692258,0.0,2.559326489708886e-05,0.0,0.0,0.0,0.0008721862769829783,0.0002861971666809424,0.00027294129087533935,0.0,4.196564334659148e-05 +99178,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,109936.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,431997.0345818221,0.0,0.0,0.01627645899242058,0.0,0.0,0.01627645899242058,0.009133503432894846,0.002534193843666405,0.004450439430876186,0.0,0.00015826769109177077,0.009133503432894846,0.002534193843666405,0.004450439430876186,0.0,0.00015826769109177077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019396322140029186,0.0006558313991555913,0.0019396322140029186,0.0010884208594386954,0.000301994679431944,0.0005303497333551486,0.0,1.886043593513875e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0010884208594386954,0.000301994679431944,0.0005303497333551486,0.0,1.886043593513875e-05 +99179,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,19902.0,,910.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0017079379696797554,0.00026776681494745675,0.0,0.001975704784627212,0.0005201888267460621,0.0007783497949223379,0.0006771661629588118,0.0,0.0,0.00025242201179860547,0.0007783497949223379,0.0006771661629588118,0.0,0.0,0.00026776681494745675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7890455218459746e-05,0.0,0.0,0.0002035306288789216,7.680255256308164e-05,0.00022142108409738131,3.0080489875101174e-05,9.275396768538793e-05,8.069617131843246e-05,0.0,0.0,1.7890455218459746e-05,0.0,0.0,0.0,0.0,0.0,5.8298575196896606e-05,8.723117782558654e-05,7.589133107489814e-05,0.0,0.0 +99180,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,76459.0,,15925.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.003935750167300481,0.002708170864021705,0.0,0.006643921031322186,0.0024452296041623223,0.0005934883878134275,0.003282865068729877,0.0,0.00032235570097798,0.0024452296041623223,0.0005934883878134275,0.0005746942047081715,0.0,0.00032235570097798,0.0,0.002708170864021705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018094433292038342,0.0,0.0,0.00046901625309728466,0.00032504019626972526,0.0006499605860176681,0.0002913936043083221,7.072494139025225e-05,6.848527246683134e-05,0.0,3.8414547827089765e-05,0.0,0.00018094433292038345,0.0,0.0,0.0,0.0,0.0002392115828855376,5.805969976454261e-05,0.000321155669043823,0.0,3.15353688471051e-05 +99181,81.0,the Columbus-Albany Area,G1302150001200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,68173.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005905907835929924,0.0,0.0,0.005905907835929924,0.001437838744653673,0.0017812247495186697,0.002686875031363879,0.0,0.0,0.001437838744653673,0.0017812247495186697,0.002686875031363879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007037957566598912,0.00022931018648465388,0.0007037957566598912,0.00017134449696150776,0.0002122651513019127,0.00032018976561823674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017134449696150776,0.0002122651513019127,0.00032018976561823674,0.0,0.0 +99182,35.0,Eastern Counties in South Carolina and Georgia,G1301890950400,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,119335.0,,4059.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.010500755690821983,0.0011949305108073555,0.0,0.011695655512023041,0.004084387633342371,0.0030448079096139866,0.0045664599690666855,0.0,0.0,0.002889457122535015,0.0030448079096139866,0.0045664599690666855,0.0,0.0,0.0011949305108073555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.98373233401936e-05,0.0,0.0,0.001251353603904815,0.0004862615981776582,0.0013311909272450087,0.00034433070248200335,0.0003628435384153859,0.0005441757057897385,0.0,0.0,7.98373233401936e-05,0.0,0.0,0.0,0.0,0.0,0.00046488200300254923,0.0003465578017679557,0.000519751122474504,0.0,0.0 +99183,50.0,the Greater Atlanta and Macon Area,G1301210010212,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,63507.0,,6329.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005116675814084797,0.0018437686066698487,0.0,0.006960444420754647,0.005056779075993548,0.0013283286242112007,0.000575336720549895,0.0,0.0,0.0032130104693237006,0.0013283286242112007,0.000575336720549895,0.0,0.0,0.0018437686066698487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001231907872448603,0.0,0.0,0.0006097438212280216,0.0002706949857861436,0.0007329346084728819,0.0003828879046466407,0.00015829421300125296,6.856170358012788e-05,0.0,0.0,0.0001231907872448603,0.0,0.0,0.0,0.0,0.0,0.0005324786993695094,0.0001398729680545317,6.058294104884044e-05,0.0,0.0 +99184,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,11168.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0026816941589233043,0.0,0.0,0.002681694158923304,0.000974702864017738,0.0008724769208759541,0.0007598298864430174,0.0,7.46844875865946e-05,0.000974702864017738,0.0008724769208759541,0.0007598298864430174,0.0,7.46844875865946e-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.0003195726816553453,8.779794549899938e-05,0.0003195726816553453,0.000116153591577481,0.0001039715093382136,9.054756434639949e-05,0.0,8.900016393251195e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011615359157748101,0.00010397150933821361,9.05475643463995e-05,0.0,8.900016393251197e-06 +99185,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,32988.0,,1753.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008424128995717158,0.001390967566147672,0.0,0.009815179268938571,0.004075473765578113,0.0018864656449198627,0.003572945585538081,0.0,0.0002803769799762521,0.002964800472332953,0.0018864656449198627,0.003572945585538081,0.0,0.0,0.0011106732932451592,0.0,0.0002803769799762521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.293833599868503e-05,0.0,0.0,0.0010038897229855536,0.00038536532146329986,0.0010968280589842385,0.00035331044033050065,0.0002248070363907269,0.0004257821023315097,0.0,0.0,7.421030527567733e-05,0.0,1.8733556845971116e-05,0.0,0.0,0.0,0.00045542662617344425,0.00021080903312748777,0.00039927003512242864,0.0,3.1331606922801684e-05 +99186,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,40598.0,,,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.009327695630870018,0.0,0.0,0.009327695630870018,0.0035960407446235664,0.0008626228337750539,0.003947461707839387,0.0004343032658610625,0.0004872670787709482,0.0035960407446235664,0.0008626228337750539,0.003947461707839387,0.0004343032658610625,0.0004872670787709482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011115649062837143,0.0002853534753591132,0.0011115649062837143,0.0004285337827770738,0.00010279722959763048,0.00047041199423482604,5.175514812231658e-05,5.806675155186739e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004285337827770738,0.00010279722959763048,0.00047041199423482604,5.175514812231658e-05,5.806675155186739e-05 +99187,50.0,the Greater Atlanta and Macon Area,G1301510070404,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,30326.0,,7662.0,,7.56685751697572,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006314513128098459,0.005270915829850303,0.0,0.011585428957948762,0.0017664628861145002,0.000537684622704036,0.007442596552203005,0.0002873102038885379,0.0015513746930386828,0.0017664628861145002,0.000537684622704036,0.0021716807223527024,0.0002873102038885379,0.0015513746930386828,0.0,0.005270915829850303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035217067271074443,0.0,0.0,0.0007524883280122293,0.00053942654670473,0.001104659000722974,0.00021050596882173927,6.407483752564267e-05,0.000258794995368342,3.4238201831095714e-05,0.00018487432446540972,0.0,0.00035217067271074443,0.0,0.0,0.0,0.0,0.00016843045981915504,5.126768807406436e-05,0.0007096440969067469,2.7394739018901144e-05,0.00014792201690410652 +99188,85.0,Rural Climate Zone 3A,G1301750950500,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,8333.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001967105041815688,0.0,0.0,0.001967105041815688,0.001044673048401192,0.0002477076858492258,0.0006240248713630745,0.0,5.0699436202195455e-05,0.001044673048401192,0.0002477076858492258,0.0006240248713630745,0.0,5.0699436202195455e-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.00023442065957826488,7.802389874099296e-05,0.00023442065957826488,0.00012449408640821829,2.9519419586146294e-05,7.436528239648538e-05,0.0,6.041871187414917e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012449408640821829,2.9519419586146294e-05,7.436528239648538e-05,0.0,6.041871187414917e-06 +99189,50.0,the Greater Atlanta and Macon Area,G1300210013603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,26394.0,,5224.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005936475249759033,0.004051206092516308,0.0,0.009987681342275343,0.0035493840727930256,0.0006986371657120797,0.004742484926969152,0.00042120381900396104,0.0005759713577971231,0.0028706386597158037,0.0006986371657120797,0.001945995605327189,0.00042120381900396104,0.0,0.0006787454130772218,0.002796489321641963,0.0005759713577971231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002706776259855426,0.0,0.0,0.0007074406363694325,0.0004528815413223919,0.000978118262354975,0.0003420895994299774,8.32555178466805e-05,0.00023190130700210805,5.019421209066653e-05,0.0,4.5349753348688535e-05,0.00018684487369681252,3.8482998940041514e-05,0.0,0.0,0.0,0.0003475999346330596,6.841926039935378e-05,0.00046444324333589124,4.1249528636601146e-05,5.6406295350069104e-05 +99190,50.0,the Greater Atlanta and Macon Area,G1300770170603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7834.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016447128683798674,0.0,0.0,0.0016447128683798674,0.0009022514674221047,0.00044918211747817867,0.000239436978475295,0.0,5.375959793054982e-05,0.0009022514674221047,0.00044918211747817867,0.000239436978475295,0.0,5.375959793054982e-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.00019599604009056692,6.763278178533022e-05,0.00019599604009056692,0.00010751889778477293,5.352783333661214e-05,2.853306527517808e-05,0.0,6.406387712906994e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010751889778477293,5.352783333661214e-05,2.853306527517808e-05,0.0,6.406387712906994e-06 +99191,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,81981.0,,2639.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006841319163759782,0.0007687254281700608,0.0,0.007610014218330406,0.004222720035432884,0.0027746586822380665,0.0006126355006594542,0.0,0.0,0.003453994607262824,0.0027746586822380665,0.0006126355006594542,0.0,0.0,0.0007687254281700608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.136096473283942e-05,0.0,0.0,0.0008152651620749405,0.00028242252015573836,0.0008666261268077801,0.00041160504368992944,0.0003306500553665568,7.30064434625067e-05,0.0,0.0,5.136096473283942e-05,0.0,0.0,0.0,0.0,0.0,0.0004808820856189793,0.00031597729491878774,6.976674627001289e-05,0.0,0.0 +99192,50.0,the Greater Atlanta and Macon Area,G1300670031307,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,34704.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003314367170647479,0.0,0.0,0.0033143671706474783,0.001978171784181901,0.0009772098147107894,0.0003589855717547888,0.0,0.0,0.001978171784181901,0.0009772098147107894,0.0003589855717547888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039496621347214264,0.00010751235587322291,0.00039496621347214264,0.00023573459999096143,0.00011645205265798427,4.277956082319697e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023573459999096149,0.00011645205265798431,4.2779560823196976e-05,0.0,0.0 +99193,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,78669.0,,882.0,,9.325022323477118,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.021541959226892192,0.0007473764405126978,0.0,0.022289335667404892,0.011280028171763606,0.002378417693258834,0.008279120853323727,0.0,0.00035176894905872015,0.01088442068030963,0.002378417693258834,0.008279120853323727,0.0,0.0,0.0003956074914539777,0.0,0.00035176894905872015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9937401602610975e-05,0.0,0.0,0.002567115182610856,0.0008915923108546611,0.002617052584213467,0.001297076152083011,0.00028343160929080884,0.0009866074212370364,0.0,0.0,2.6433279277824824e-05,0.0,2.3504122324786148e-05,0.0,0.0,0.0,0.001324419323994669,0.00027925660339821,0.0009720744910262775,0.0,4.1302165794309764e-05 +99194,50.0,the Greater Atlanta and Macon Area,G1300890021911,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,44356.0,,3855.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.003843504913511701,0.0011347175032512626,0.0,0.0049782224167629644,0.002843883057182926,0.0009389178150719189,0.0011954215445081188,0.0,0.0,0.0017091655539316632,0.0009389178150719189,0.0011954215445081188,0.0,0.0,0.0011347175032512626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.581493955125357e-05,0.0,0.0,0.0004580229281897437,0.00020481900625820095,0.0005338378677409972,0.00020367790061118197,0.0001118889910812774,0.00014245603649728437,0.0,0.0,7.581493955125357e-05,0.0,0.0,0.0,0.0,0.0,0.00030496276386511015,0.0001006845099355662,0.0001281905939403208,0.0,0.0 +99195,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,306652.0,,29268.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.020376866087055565,0.004977320248921483,0.0,0.025354186335977046,0.011747641026807226,0.0063788343977309765,0.002751539328055155,0.0,0.00447615385302227,0.01052678153050665,0.0063788343977309765,0.002751539328055155,0.0,0.0007197108307627833,0.0012208594963005756,0.0,0.0037564430222594876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003325553096124369,0.0,0.0,0.002428272270325836,0.000959777240980693,0.002760827579938273,0.0012544564790827031,0.0007601535299312043,0.00032789569418978224,0.0,8.576656712214627e-05,8.157066201908488e-05,0.0,0.0002509834629547239,0.0,0.0,0.0,0.001279205371303978,0.0006945938512775379,0.000299616227612881,0.0,0.00048741019907766757 +99196,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,278095.0,,8051.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,1133273.7058648225,0.0,0.0,0.024777928815788892,0.002369943467127502,0.0,0.027147872282916395,0.006254848659534804,0.007852027840086151,0.013040995783295439,0.0,0.0,0.003884905192407303,0.007852027840086151,0.013040995783295439,0.0,0.0,0.002369943467127502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015834532529562735,0.0,0.0,0.0029527371615835755,0.0010253446011504325,0.0031110824868792026,0.00046295652942309135,0.0009357107516766034,0.0015540698804838808,0.0,0.0,0.00015834532529562735,0.0,0.0,0.0,0.0,0.0,0.0007167909853106225,0.0008998239731351688,0.001494467528433411,0.0,0.0 +99197,50.0,the Greater Atlanta and Macon Area,G1300670030337,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,12167.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002966371906734,0.0,0.0,0.0029663719067339997,0.0019134281509588771,0.00041270829795914403,0.0005677013541466061,0.0,7.25341036693726e-05,0.0019134281509588771,0.00041270829795914403,0.0005677013541466061,0.0,7.25341036693726e-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.00035349255551037176,0.00011082814407440713,0.00035349255551037176,0.00022801679227492472,4.9181058718473066e-05,6.765105952777538e-05,0.0,8.643644989198573e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00022801679227492475,4.918105871847307e-05,6.765105952777539e-05,0.0,8.643644989198573e-06 +99198,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,26369.0,,2251.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0022308193843051205,0.0006558875062588128,0.0,0.002886706890563933,0.0019297866402775623,0.0007648983546409042,0.00019202189564546704,0.0,0.0,0.0012738991340187492,0.0007648983546409042,0.00019202189564546704,0.0,0.0,0.0006558875062588128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.382230796308784e-05,0.0,0.0,0.00026584297314337,0.00010496567118544206,0.0003096652811064578,0.00015180840531282957,9.115164328444689e-05,2.2882924546093525e-05,0.0,0.0,4.382230796308784e-05,0.0,0.0,0.0,0.0,0.0,0.0002070137166992719,8.205282801035278e-05,2.059873639683319e-05,0.0,0.0 +99199,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,51727.0,,7902.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004298907981363314,0.002325934571696596,0.0,0.0066248425530599075,0.003275378921728627,0.0013622195547361333,0.001987244076595148,0.0,0.0,0.000949444350032031,0.0013622195547361333,0.001987244076595148,0.0,0.0,0.002325934571696596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015540572629236534,0.0,0.0,0.0005122919571741088,0.0002957548140538292,0.000667697683466474,0.00011314331602686662,0.0001623328819369858,0.0002368157592102562,0.0,0.0,0.00015540572629236534,0.0,0.0,0.0,0.0,0.0,0.0003301154557255099,0.00013729395586162892,0.0002002882718793353,0.0,0.0 +99200,50.0,the Greater Atlanta and Macon Area,G1302190030300,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,Electricity,243966.0,,41625.0,,7.614023970037612,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.04419494038750669,0.0288120343228563,0.0,0.07300704687738573,0.0634007501473804,0.005241130025967873,0.0016749244306050034,0.0007671354516494111,0.001923034654760288,0.034588715824524115,0.005241130025967873,0.0016749244306050034,0.0007671354516494111,0.001923034654760288,0.0288120343228563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019250533269935322,0.0,0.0,0.005266628078377115,0.003098401032607784,0.007191681405370647,0.004121872331067595,0.0006245756259689581,0.00019959760004287163,9.14180916220313e-05,0.0002291644296756603,0.0019250533269935322,0.0,0.0,0.0,0.0,0.0,0.006245397059919993,0.0005162862896534768,0.00016499123575308152,7.556796225840218e-05,0.00018943174885227123 +99201,46.0,the Tallahassee-Valdosta Area,G1301850011200,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,34118.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028674804021198365,0.0,0.0,0.0028674804021198365,0.0014564444666396376,0.0011707200167287062,0.00024031591875149243,0.0,0.0,0.0014564444666396376,0.0011707200167287062,0.00024031591875149243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003417114784798935,7.528366700523028e-05,0.0003417114784798935,0.0001735613577869159,0.0001395121889958267,2.8637931697150817e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001735613577869159,0.0001395121889958267,2.8637931697150817e-05,0.0,0.0 +99202,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,22172.0,,3737.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.001141321094970219,0.0006354738836561125,0.0,0.0017767949786263316,0.0007394092623004621,0.0003188273590553895,0.00040854298784085666,0.0,0.0003100330997910433,0.0005413256645156321,0.0003188273590553895,0.00021717919703422679,0.0,6.400660472639061e-05,0.0001980835977848299,0.0001913637908066299,0.0002460264950646527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.245907450091006e-05,0.0,0.0,0.00013600844842110913,8.337606784027022e-05,0.0001784675229220192,6.450845782642622e-05,3.7993877980897986e-05,2.588071468068176e-05,0.0,7.627510816985971e-06,1.323492035166896e-05,1.278593764371313e-05,1.643821650552797e-05,0.0,0.0,0.0,7.426886109864054e-05,3.202413879758661e-05,4.103549138994497e-05,0.0,3.114081253556886e-05 +99203,50.0,the Greater Atlanta and Macon Area,G1301210010604,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,76527.0,,887.0,,9.325022323477118,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.03456836997766365,0.0007517072642573906,0.0,0.03532007724192104,0.013684077270858378,0.009957801167261483,0.01092649153954379,0.0,0.0007517072642573906,0.013684077270858378,0.009957801167261483,0.01092649153954379,0.0,0.0,0.0,0.0,0.0007517072642573906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.02248019188439e-05,0.0,0.0,0.0041194418370024966,0.0013640962052466452,0.004169666638921341,0.0016307034565636999,0.001186650766567087,0.0013020876138717095,0.0,0.0,0.0,0.0,5.02248019188439e-05,0.0,0.0,0.0,0.0016154562768905378,0.0011755555074172287,0.0012899130129539335,0.0,8.874184165964168e-05 +99204,50.0,the Greater Atlanta and Macon Area,G1302250040200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,131687.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.011733188900525132,0.0,0.0,0.011733188900525132,0.0028687416382840655,0.004620872641032512,0.004243574621208555,0.0,0.0,0.0028687416382840655,0.004620872641032512,0.004243574621208555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013982204293391603,0.0003875269069951561,0.0013982204293391603,0.0003418621484023963,0.0005506600620549874,0.0005056982188817767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003418621484023963,0.0005506600620549874,0.0005056982188817767,0.0,0.0 +99205,50.0,the Greater Atlanta and Macon Area,G1300590000600,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,119536.0,,1573.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.012880247300806724,0.000584636217873185,0.0,0.013464883518679908,0.008101287951724438,0.0010860408214839361,0.004068623244492465,0.0,0.00020885400413152622,0.008101287951724438,0.0010860408214839361,0.0034839870266192797,0.0,0.00020885400413152622,0.0,0.000584636217873185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9062331344670295e-05,0.0,0.0,0.0015349128590618796,0.0005165435404545718,0.0015739751904065501,0.0009654139987891453,0.00012942127456337066,0.00041517964392094863,0.0,2.4888706646802057e-05,0.0,3.9062331344670295e-05,0.0,0.0,0.0,0.0,0.0009469986300783007,0.00012695255078983806,0.0004756009984830808,0.0,2.4413952074968862e-05 +99206,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,70116.0,,3391.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.006247237637172974,0.0009980259968012943,0.0,0.007245294323580566,0.00241284753673169,0.0025761162422354694,0.0022563305446134064,0.0,0.0,0.001414821539930396,0.0025761162422354694,0.0022563305446134064,0.0,0.0,0.0009980259968012943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.668291503087751e-05,0.0,0.0,0.0007444726360944013,0.00025147994769896085,0.0008111555511252787,0.00016860186575386364,0.00030699137140723776,0.0002688830561612505,0.0,0.0,6.668291503087751e-05,0.0,0.0,0.0,0.0,0.0,0.0002701332183385527,0.0002884121606257419,0.00025261017216098415,0.0,0.0 +99207,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,4297.0,,701.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010319361590453388,0.0005562877779705817,0.0,0.0015882239370159203,0.0010092744208407684,0.0003368659113401991,0.0002092488965604478,0.0,3.283470827450504e-05,0.0004857386440709525,0.0003368659113401991,0.0002092488965604478,0.0,0.0,0.000523535776769816,0.0,3.283470827450504e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.717004426020225e-05,0.0,0.0,0.0001229708143780118,7.140463622984364e-05,0.00016014085863821402,5.78831123540966e-05,4.0142672674652724e-05,2.4935173549440563e-05,0.0,0.0,3.4981620601706854e-05,0.0,2.1939499808653427e-06,0.0,0.0,0.0,0.00010176529177535415,3.396624054748975e-05,2.10985977375765e-05,0.0,3.310728577793624e-06 +99208,50.0,the Greater Atlanta and Macon Area,G1302970110507,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,32194.0,,9692.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007557733950283016,0.0075168992548334075,0.0,0.015074714065899492,0.0037239625034379774,0.0008275292539233131,0.009584347756329525,0.0004182119700304255,0.0005206625821782501,0.0037239625034379774,0.0008275292539233131,0.002067448501496117,0.0004182119700304255,0.0005206625821782501,0.0,0.0075168992548334075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000502235994783366,0.0,0.0,0.0009006445561724756,0.0007445281260195403,0.0014028805509558417,0.0004437793891893008,9.86155006940397e-05,0.0002463749386110227,4.983773398373786e-05,6.204662976049653e-05,0.0,0.000502235994783366,0.0,0.0,0.0,0.0,0.00034655878351814285,7.701139077006718e-05,0.0008919369881361434,3.891957329126318e-05,4.845381524022499e-05 +99209,50.0,the Greater Atlanta and Macon Area,G1301210004200,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,14216.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005274225436427791,0.0014962479299000374,0.0,0.006770473366327827,0.003076671934974412,0.00046980114962814624,0.0022571478985748835,0.0004203143503902072,0.0005464571719771105,0.003076671934974412,0.00046980114962814624,0.0007608999686748461,0.0004203143503902072,0.0005464571719771105,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99716943603331e-05,0.0,0.0,0.0006285195509083142,0.0002863404531566402,0.0007284912452686474,0.00036664122271042905,5.5985321662792526e-05,9.067502183250905e-05,5.008807263394071e-05,6.512027604081788e-05,0.0,9.99716943603331e-05,0.0,0.0,0.0,0.0,0.0003310445884536817,5.054979260731926e-05,0.00024286521701217037,4.522509844627289e-05,5.8797848268547946e-05 +99210,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,15126.0,,1921.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013476726813510223,0.0005653946168225784,0.0,0.0019130979877798986,0.0008416624527144988,0.0005010078228099979,0.0005704277122554017,0.0,0.0,0.0002762678358919204,0.0005010078228099979,0.0005704277122554017,0.0,0.0,0.0005653946168225784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7777260092217784e-05,0.0,0.0,0.00016060070166374024,8.699571963640429e-05,0.000198377961755958,3.2922540395258565e-05,5.970456253639148e-05,6.797725597941247e-05,0.0,0.0,3.7777260092217784e-05,0.0,0.0,0.0,0.0,0.0,8.727586507462899e-05,5.195181394141544e-05,5.915028273991356e-05,0.0,0.0 +99211,50.0,the Greater Atlanta and Macon Area,G1300210011800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,13520.0,,121.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002910379217812489,9.635374090629314e-05,0.0,0.003006732958718782,0.00163966773688177,0.0008326948184073471,0.00043801666252337216,0.0,9.635374090629314e-05,0.00163966773688177,0.0008326948184073471,0.00043801666252337216,0.0,0.0,0.0,0.0,9.635374090629314e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.437695472174736e-06,0.0,0.0,0.0003468229261546886,9.671475421523437e-05,0.00035326062162686336,0.000195395280088002,9.923024867218179e-05,5.2197397394504844e-05,0.0,0.0,0.0,0.0,6.437695472174736e-06,0.0,0.0,0.0,0.000192644325899559,9.783319410626783e-05,5.14625145000789e-05,0.0,1.1320587120957688e-05 +99212,50.0,the Greater Atlanta and Macon Area,G1301210000200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,1747695.0,,6047.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,654728.2554853096,0.0,0.0,0.08306892408740206,0.0010283786927244825,0.0,0.08409730278012653,0.040705541051771425,0.014260175082920068,0.01224198123355972,0.0,0.016889587681513902,0.040705541051771425,0.014260175082920068,0.011213602540835237,0.0,0.016889587681513902,0.0,0.0010283786927244825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.871026714741673e-05,0.0,0.0,0.009899164247754638,0.002752833428957339,0.009967874514902057,0.004850801200232646,0.0016993576948105952,0.001336303492314058,0.0,0.002012699747504199,0.0,6.871026714741673e-05,0.0,0.0,0.0,0.0,0.004824741244390257,0.0016902282366738517,0.0014510160102155607,0.0,0.0020018869220803427 +99213,46.0,the Tallahassee-Valdosta Area,G1301730950200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,27166.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0013611953069402939,0.0,0.0,0.0013611953069402939,0.0007851181340413582,0.0003508129310571648,0.00010524742538943343,0.0,0.00012001681645233743,0.0007851181340413582,0.0003508129310571648,0.00010524742538943343,0.0,0.00012001681645233743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016221090872694163,4.860352560952907e-05,0.00016221090872694163,9.356094994708621e-05,4.180567186046042e-05,1.2542124136444608e-05,0.0,1.4302162782950396e-05,0.0,0.0,0.0,0.0,0.0,0.0,9.356094994708621e-05,4.180567186046042e-05,1.2542124136444608e-05,0.0,1.4302162782950396e-05 +99214,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,117914.0,,7508.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.013299466497596888,0.002790545234794086,0.0,0.016090011732390976,0.00907619829383004,0.0019556329477770184,0.004736336082932995,0.0,0.0003218444078509196,0.0072417704156120975,0.0019556329477770184,0.004102063134207772,0.0,0.0,0.0018344278782179437,0.0006342729487252231,0.0003218444078509196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018644832724099662,0.0,0.0,0.0015848704138621376,0.0006692275152446013,0.0017713187411031342,0.0008629870737867255,0.00023304880687250408,0.000488834533202908,0.0,0.0,0.0001225660150831507,4.237850325073071e-05,2.1503808907115235e-05,0.0,0.0,0.0,0.0009991813805495854,0.00021529190585627012,0.0005214142169314339,0.0,3.5431237765844645e-05 +99215,50.0,the Greater Atlanta and Macon Area,G1302470060307,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,13728.0,,1042.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031836433894471606,0.0008265744949506384,0.0,0.004010217884397799,0.0027554688686987658,0.0006634761455367241,0.0004997161395328954,0.0,9.147402355567401e-05,0.0019288943737481275,0.0006634761455367241,0.0004997161395328954,0.0,9.147402355567401e-05,0.0008265744949506384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.522855105841344e-05,0.0,0.0,0.0003793878406475087,0.0001719447781772674,0.0004346163917059221,0.00022986213648146928,7.906500552501273e-05,5.9550082695353634e-05,0.0,1.0900759924041893e-05,5.522855105841344e-05,0.0,0.0,0.0,0.0,0.0,0.0002986301422252253,7.190572100284422e-05,5.41578616678116e-05,0.0,9.913703244720232e-06 +99216,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,Electricity,276699.0,,2563.0,,7.614023970037612,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.046584029675075245,0.0017743705879307687,0.0,0.048358400263006016,0.035091719972971565,0.005910046159677975,0.004737837209429491,0.0008131058451301897,0.0018056189087740607,0.035091719972971565,0.005910046159677975,0.002963466621498723,0.0008131058451301897,0.0018056189087740607,0.0,0.0017743705879307687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011855495156129262,0.0,0.0,0.005551326720380987,0.0012260054944684586,0.0056698816719422795,0.004181810893322413,0.000704288516767359,0.00035315045855050225,9.689621606488676e-05,0.00021517203567440009,0.0,0.00011855495156129262,0.0,0.0,0.0,0.0,0.004114402023838047,0.0006929357095942949,0.0005554976221771442,9.53342935990295e-05,0.00021170356136040804 +99217,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5889.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0004451527393481788,0.0,0.0,0.0004451527393481789,0.0002239727467606349,0.00012447704314348247,9.670294944406145e-05,0.0,0.0,0.0002239727467606349,0.00012447704314348247,9.670294944406145e-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,5.304749139845939e-05,2.2668932175022143e-05,5.304749139845939e-05,2.6690147688793978e-05,1.4833548784015945e-05,1.1523794925649468e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.669014768879397e-05,1.4833548784015941e-05,1.1523794925649465e-05,0.0,0.0 +99218,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,50846.0,,12374.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.01058701524144044,0.008511941320045766,0.0,0.019099028281457223,0.005703745854929516,0.0012122826700768738,0.005518923489622286,0.00036770829139703786,0.0062965114153735405,0.005703745854929516,0.0012122826700768738,0.0025658536830545013,0.00036770829139703786,0.0007375681819245441,0.0,0.002953069806567785,0.0055589432334489965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005687192779259219,0.0,0.0,0.0012616377420490105,0.0009316322066112003,0.0018303570199749324,0.0006797063079183402,0.000144465794723163,0.0003057686962087132,4.381921135571535e-05,8.789482535248228e-05,0.0,0.0001973072492993928,0.000371416820545152,0.0,0.0,0.0,0.0005466189751579663,0.0001161792140767416,0.0005289065078636539,3.523935576947607e-05,0.0006034267136862907 +99219,50.0,the Greater Atlanta and Macon Area,G1300890023206,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,38903.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.008141436217676205,0.0,0.0,0.008141436217676205,0.004251639832642837,0.0014013059503650853,0.0023166251354380008,0.0,0.0001718652992302808,0.004251639832642837,0.0014013059503650853,0.0023166251354380008,0.0,0.0001718652992302808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000970201965674876,0.0003246699066759557,0.000970201965674876,0.0005066611360309911,0.00016699139454096952,0.0002760685215777937,0.0,2.0480913525121567e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005066611360309911,0.00016699139454096952,0.0002760685215777937,0.0,2.0480913525121567e-05 +99220,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,44946.0,,5752.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004322600357425139,0.0016931455794442622,0.0,0.006015745936869402,0.002405604789645432,0.0015421834060658625,0.0020679577411581067,0.0,0.0,0.0007124592102011701,0.0015421834060658625,0.0020679577411581067,0.0,0.0,0.0016931455794442622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001131252239630031,0.0,0.0,0.0005151159657223922,0.0002572090325418442,0.0006282411896853953,8.490239294737864e-05,0.0001837790285590663,0.00024643454421594723,0.0,0.0,0.0001131252239630031,0.0,0.0,0.0,0.0,0.0,0.0002512240428401823,0.00016105453054490024,0.00021596261630031267,0.0,0.0 +99221,50.0,the Greater Atlanta and Macon Area,G1300590001700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,8255.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.00169218672870623,0.0,0.0,0.0016921867287062297,0.0007441982495062882,0.0002912943137098407,0.0006150098003254899,0.0,4.160165809087163e-05,0.0007441982495062882,0.0002912943137098407,0.0006150098003254899,0.0,4.160165809087163e-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.00020165080534942806,5.8839566139646634e-05,0.00020165080534942806,8.868298858915707e-05,3.4712323384197725e-05,7.328814215925448e-05,0.0,4.957495361229829e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.868298858915709e-05,3.471232338419773e-05,7.32881421592545e-05,0.0,4.95749536122983e-06 +99222,35.0,Eastern Counties in South Carolina and Georgia,G1302450010504,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,64214.0,,11577.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012355414566772364,0.007964000741486498,0.0,0.02031941530825886,0.0055899262609277415,0.0006466272586767493,0.009758793016152165,0.0003807613261218791,0.003943379166351342,0.0055899262609277415,0.0006466272586767493,0.005275649347937334,0.0003807613261218791,0.00046252209307967563,0.0,0.004483143668214831,0.003480857073271667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005321066680178417,0.0,0.0,0.0014723732014803978,0.0008779928495340817,0.0020044798694982395,0.0006661417616027102,7.705744245788525e-05,0.0006286899300975578,4.5374663044466814e-05,5.511795102161734e-05,0.0,0.0002995367174079165,0.0002325699506099253,0.0,0.0,0.0,0.0005514378485809566,6.378881003330602e-05,0.0009626903065230571,3.7561534213267706e-05,0.0003890084452153132 +99223,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,169391.0,,1691.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01722954394041221,0.0004976319661172506,0.0,0.01772717590652946,0.004997618247943112,0.0068176653494283765,0.005911892309157976,0.0,0.0,0.004499986281825861,0.0068176653494283765,0.005911892309157976,0.0,0.0,0.0004976319661172506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3249742261777575e-05,0.0,0.0,0.0020532100534721865,0.0006887998417394575,0.002086459795733964,0.000536254302858276,0.0008124474498609631,0.000704508300752948,0.0,0.0,3.3249742261777575e-05,0.0,0.0,0.0,0.0,0.0,0.0005882115461447536,0.000802428132227843,0.000695820117361368,0.0,0.0 +99224,35.0,Eastern Counties in South Carolina and Georgia,G1300250960100,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,36596.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0032271341930622554,0.0,0.0,0.003227134193062256,0.002029047563240135,0.0009439810969258889,0.0002541055328962317,0.0,0.0,0.002029047563240135,0.0009439810969258889,0.0002541055328962317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000384571278410837,0.00011139017576920688,0.000384571278410837,0.00024179763488893104,0.00011249238349644607,3.0281260025459887e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000241797634888931,0.00011249238349644606,3.0281260025459884e-05,0.0,0.0 +99225,50.0,the Greater Atlanta and Macon Area,G1300630040609,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,3725.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005659645055980808,0.0,0.0,0.0005659645055980808,0.00033190348691584075,0.00014002307584064748,6.500775995909564e-05,0.0,2.9112889956236213e-05,0.00033190348691584075,0.00014002307584064748,6.500775995909564e-05,0.0,2.9112889956236213e-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,6.744395004259239e-05,2.2922719512043128e-05,6.744395004259239e-05,3.955174214831554e-05,1.6686045217318265e-05,7.746740425760282e-06,0.0,3.469278155047861e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.955174214831554e-05,1.6686045217318265e-05,7.746740425760282e-06,0.0,3.469278155047861e-06 +99226,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,36321.0,,816.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008365572387509727,0.0006469347307888626,0.0,0.009012507118298591,0.005639464529988415,0.0017590140442875905,0.0014309977898374969,0.0,0.0001831961683325659,0.005175725967532119,0.0017590140442875905,0.0014309977898374969,0.0,0.0,0.00046373856245629665,0.0,0.0001831961683325659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.322288413594896e-05,0.0,0.0,0.000996913929606449,0.000333589162762983,0.001040136813742398,0.0006167842526307451,0.00020961932093754593,0.0001705300682180468,0.0,0.0,3.0983215462831216e-05,0.0,1.2239668673117737e-05,0.0,0.0,0.0,0.0006508527084018312,0.00020300846804754857,0.00016515198956924417,0.0,2.1142738232335903e-05 +99227,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,58541.0,,4118.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005162266586840862,0.0011995445625951327,0.0,0.006361780775836558,0.004497236627151286,0.001369636719446543,0.000494937802838166,0.0,0.0,0.003297692064556153,0.001369636719446543,0.000494937802838166,0.0,0.0,0.0011995445625951327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.014605012683057e-05,0.0,0.0,0.0006151757089864646,0.00020218953518980073,0.0006953217591132951,0.0003929785530649712,0.00016321653013566008,5.89806257858333e-05,0.0,0.0,8.014605012683057e-05,0.0,0.0,0.0,0.0,0.0,0.0004915332031900106,0.00014969679821865643,5.4095077439358816e-05,0.0,0.0 +99228,50.0,the Greater Atlanta and Macon Area,G1301510070205,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,69722.0,,3516.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003588944297924249,0.0005978500567227604,0.0,0.004186794354647009,0.001965304181244333,0.0010094249363664463,0.0007250831302730593,0.0,0.00048699983712459035,0.001965304181244333,0.0010094249363664463,0.0005202442647871894,0.0,9.397091552627985e-05,0.0,0.00020483886548587,0.00039302892159831043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.994524185752972e-05,0.0,0.0,0.00042768749192065823,0.00015821195760013477,0.000467632733778188,0.0002342014660477499,0.00012029120083207478,6.199649432331093e-05,0.0,1.1198330717522593e-05,0.0,1.3686271217415724e-05,2.626015529095944e-05,0.0,0.0,0.0,0.00021950936423732612,0.00011274500311031224,8.09862099029758e-05,0.0,5.4394136872601463e-05 +99229,35.0,Eastern Counties in South Carolina and Georgia,G1300730030105,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,38112.0,,199.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00919653035736855,0.00015747426839964133,0.0,0.009354004625768192,0.005522764848942252,0.0014205766985463442,0.002253188809879952,0.0,0.00015747426839964133,0.005522764848942252,0.0014205766985463442,0.002253188809879952,0.0,0.0,0.0,0.0,0.00015747426839964133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.052127129364628e-05,0.0,0.0,0.0010959293038984264,0.00037489784064477895,0.001106450575192073,0.0006581351445924907,0.00016928684752558028,0.00026850731178035535,0.0,0.0,0.0,0.0,1.052127129364628e-05,0.0,0.0,0.0,0.0006532674066601588,0.0001680347581698973,0.00026652136218109634,0.0,1.8627048180920147e-05 +99230,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,20101.0,,5439.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004568634243371817,0.004218345331118954,0.0,0.00878706043527384,0.0029198020158214687,0.0003923365194484966,0.004270662257764292,0.0004334137972473087,0.0007707649842092065,0.002322240828945048,0.0003923365194484966,0.0014206430977309638,0.0004334137972473087,0.0,0.0005975611868764201,0.0028500191600333287,0.0007707649842092065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002818455093882827,0.0,0.0,0.0005444401455514793,0.0004266092068138224,0.000826285654939762,0.00027673940778925546,4.6754399756031466e-05,0.000169296794994583,5.164954301160937e-05,0.0,3.992559259276587e-05,0.0001904218452672024,5.1498071528314515e-05,0.0,0.0,0.0,0.0002745617307071922,3.6893115771450234e-05,0.0004015890167908376,4.075579153647429e-05,7.24783964413569e-05 +99231,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,33796.0,,1075.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0030112027907180016,0.00031637915132301796,0.0,0.003327581942041019,0.0007643553344505855,0.0013946891581991029,0.0011685374493913313,0.0,0.0,0.00044797618312756747,0.0013946891581991029,0.0011685374493913313,0.0,0.0,0.00031637915132301796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.113888717392384e-05,0.0,0.0,0.000358838749824443,0.00012287055553247196,0.0003799776369983668,5.338438646514802e-05,0.0001662021951708332,0.00013925216818846178,0.0,0.0,2.113888717392384e-05,0.0,0.0,0.0,0.0,0.0,8.728197798593823e-05,0.00015925999717220603,0.00013343566184022263,0.0,0.0 +99232,81.0,the Columbus-Albany Area,G1301770020402,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,3578.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008592437890776648,0.0,0.0,0.000859243789077665,0.00036953520546722553,0.0001550757632612014,0.00029691839472411366,0.0,3.7631718551384876e-05,0.00036953520546722553,0.0001550757632612014,0.00029691839472411366,0.0,3.7631718551384876e-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.00010239122763490722,3.345962126950103e-05,0.00010239122763490722,4.403542256932961e-05,1.8479502533010973e-05,3.5382087516538356e-05,0.0,4.484359281343997e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.403542256932961e-05,1.8479502533010973e-05,3.538208751653835e-05,0.0,4.484359281343997e-06 +99233,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9413.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002062962540279545,0.0,0.0,0.002062962540279545,0.0014574640534340754,0.00025978291861516464,0.00030494098087682645,0.0,4.0774587353478564e-05,0.0014574640534340754,0.00025978291861516464,0.00030494098087682645,0.0,4.0774587353478564e-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.0002458390239239803,8.091001021125133e-05,0.0002458390239239803,0.0001736830084427848,3.095779874695194e-05,3.633919260745361e-05,0.0,4.8590241267899735e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001736830084427848,3.095779874695194e-05,3.633919260745361e-05,0.0,4.8590241267899735e-06 +99234,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,182334.0,,10075.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.018165730380523635,0.0029656594149722105,0.0,0.021131420485102144,0.005360062498318982,0.005739478100977482,0.010031879885805681,0.0,0.0,0.002394403083346771,0.005739478100977482,0.010031879885805681,0.0,0.0,0.0029656594149722105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001981485734261586,0.0,0.0,0.0021647761736882914,0.0007723103275873734,0.00236292474711445,0.0002853365450470513,0.0006839628895804203,0.0011954803962839044,0.0,0.0,0.0001981485734261586,0.0,0.0,0.0,0.0,0.0,0.0005993645496897511,0.0006417909695130268,0.0011217692279116723,0.0,0.0 +99235,50.0,the Greater Atlanta and Macon Area,G1301350050423,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,8967.0,,1197.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001897465685727191,0.000949477206527249,0.0,0.0028469428922544403,0.0016143593723175413,0.0006271677401651683,0.0005064981195795187,0.0,9.883495311847235e-05,0.0007637171189087648,0.0006271677401651683,0.0005064981195795187,0.0,0.0,0.0008506422534087768,0.0,9.883495311847235e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.343937676723301e-05,0.0,0.0,0.00022611944461929293,0.00012436480862128117,0.00028955882138652594,9.101154875837115e-05,7.473907020085861e-05,6.035896952526153e-05,0.0,0.0,5.683571341907593e-05,0.0,6.603663348157096e-06,0.0,0.0,0.0,0.00016419437088616577,6.378840690761799e-05,5.1515258328135634e-05,0.0,1.0052373236793283e-05 +99236,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,28741.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024879450033421695,0.0,0.0,0.002487945003342169,0.0007087764574454458,0.0007048174982330422,0.0010743510476636812,0.0,0.0,0.0007087764574454458,0.0007048174982330422,0.0010743510476636812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002964835387861694,9.474563023532243e-05,0.0002964835387861694,8.446350382723863e-05,8.399172240296006e-05,0.00012802831255597066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.446350382723864e-05,8.399172240296007e-05,0.0001280283125559707,0.0,0.0 +99237,35.0,Eastern Counties in South Carolina and Georgia,G1300510004001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,34380.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029710300960743086,0.0,0.0,0.0029710300960743086,0.0008587258738160216,0.0009303247253085623,0.001181979496949725,0.0,0.0,0.0008587258738160216,0.0009303247253085623,0.001181979496949725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035405030951171965,0.00010778052075181716,0.00035405030951171965,0.00010233223884605179,0.00011086449692216913,0.00014085357374349876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010233223884605179,0.00011086449692216913,0.00014085357374349876,0.0,0.0 +99238,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,37252.0,,952.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0033164109253486563,0.00028013472628543096,0.0,0.0035965763412403847,0.0014109546495368857,0.0009229285301908158,0.0012626931615126835,0.0,0.0,0.0011308199232514546,0.0009229285301908158,0.0012626931615126835,0.0,0.0,0.00028013472628543096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.871725250353728e-05,0.0,0.0,0.00039521189189371505,0.00014504879340805873,0.00041392914439725235,0.0001347581742188142,0.00010998405767857352,0.00015047331723230906,0.0,0.0,1.871725250353728e-05,0.0,0.0,0.0,0.0,0.0,0.0001623864462903925,0.0001062196323934959,0.000145323065713364,0.0,0.0 +99239,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,43889.0,,7131.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.009836178864878009,0.0049050722576996705,0.0,0.014741179402606665,0.004363801636444854,0.0008599941724481921,0.007545586430581422,0.00037122256997680283,0.0016005745931553918,0.004363801636444854,0.0008599941724481921,0.0026405141728817524,0.00037122256997680283,0.0016005745931553918,0.0,0.0049050722576996705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003277264261880094,0.0,0.0,0.0011721564675508953,0.0006852205271320865,0.0014998828937389046,0.0005200249387017887,0.0001024836722815868,0.0003146644451998317,4.423780232920468e-05,0.00019073706232242287,0.0,0.0003277264261880094,0.0,0.0,0.0,0.0,0.00044400731090865744,8.750253373499404e-05,0.0007677469828809095,3.777108786692762e-05,0.0001628549783474157 +99240,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,25967.0,,622.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006012473432552693,0.0004935958160761867,0.0,0.0065060692486288785,0.004198293770080984,0.0012576437632799088,0.0009326049634844305,0.0,0.00011760945885729516,0.0037046979540047978,0.0012576437632799088,0.0009326049634844305,0.0,0.00011760945885729516,0.0004935958160761867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2978650675028e-05,0.0,0.0,0.0007164973966348538,0.0002282151137676688,0.0007494760473098818,0.0004414832712592853,0.00014987151168193005,0.00011113712782621618,0.0,1.4015341944739214e-05,3.2978650675028e-05,0.0,0.0,0.0,0.0,0.0,0.00048362851669756066,0.00014487609040214158,0.0001074327762313921,0.0,1.3548191539645225e-05 +99241,81.0,the Columbus-Albany Area,G1302150002700,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,17183.0,,608.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015310123893734987,0.00017910454235339342,0.0,0.001710116931726892,0.000709482318390293,0.00044278963966325576,0.0005578756632796413,0.0,0.0,0.0005303777760368996,0.00044278963966325576,0.0005578756632796413,0.0,0.0,0.00017910454235339342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1966040727647043e-05,0.0,0.0,0.00018244905254742987,7.561383329219456e-05,0.00019441509327507693,6.320453276654608e-05,5.27667514613891e-05,6.64814255659226e-05,0.0,0.0,1.1966040727647043e-05,0.0,0.0,0.0,0.0,0.0,8.065768401437879e-05,5.0338656672699065e-05,6.342224154396478e-05,0.0,0.0 +99242,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,56628.0,,5320.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0028958822003758043,0.0009047094218196142,0.0,0.003800591622195419,0.0013688902837965967,0.0008738585929487225,0.0009832549229104482,0.0,0.0005745878225396512,0.0011643882951777077,0.0008738585929487225,0.0007552070143257291,0.0,0.00010242829792364505,0.000204501988618889,0.00022804790858471915,0.0004721595246160061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0447364540327137e-05,0.0,0.0,0.00034509620161289866,0.00014873475838023107,0.00040554356615322577,0.00013875770838199145,0.00010413589376469166,8.999643426152002e-05,0.0,1.2206165204695526e-05,1.366362055830622e-05,1.5236820497740125e-05,3.154692348428079e-05,0.0,0.0,0.0,0.00014606795534709218,9.324541159024927e-05,0.00010491858834453725,0.0,6.131161087134699e-05 +99243,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,54959.0,,4081.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0028074076968897413,0.000694054997787967,0.0,0.0035014626946777076,0.0016895793308010917,0.0009748152708745031,0.00046175180246243514,0.0,0.0003753162905396777,0.00119873200524835,0.0009748152708745031,0.00025854413022720997,0.0,0.0003753162905396777,0.0004908473255527419,0.00020320767223522515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.637264282292787e-05,0.0,0.0,0.000334553407365585,0.00012458893977371322,0.00038092605018851287,0.00014285060104320374,0.00011616687194538213,3.0810209652738487e-05,0.0,4.472572472426062e-05,3.279551012670674e-05,1.3577132696221133e-05,0.0,0.0,0.0,0.0,0.00018381026361940185,0.00010605068886271515,5.023423226721882e-05,0.0,4.083086543917705e-05 +99244,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,4275.0,,361.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009688306617822471,0.00028600106099052505,0.0,0.001254831722772772,0.0007353485926161823,0.00033562530523410957,0.00014126368194673707,0.0,4.259414297574332e-05,0.0004493475316256573,0.00033562530523410957,0.00014126368194673707,0.0,4.259414297574332e-05,0.00028600106099052505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9110404955008737e-05,0.0,0.0,0.00011545102691760473,4.963658150055544e-05,0.00013456143187261346,5.354664753656707e-05,3.999490073686529e-05,1.6833733479193177e-05,0.0,5.075745164979208e-06,1.9110404955008737e-05,0.0,0.0,0.0,0.0,0.0,7.885484384256568e-05,3.5990659803523964e-05,1.5148360508728172e-05,0.0,4.567567717795672e-06 +99245,50.0,the Greater Atlanta and Macon Area,G1302190030400,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,35218.0,,1.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.0029939245423723955,4.2965448816783896e-07,0.0,0.002994354196860563,0.0011983370571064006,0.0007485501872072686,0.001047436262940596,0.0,0.0,0.0011979074026182328,0.0007485501872072686,0.001047436262940596,0.0,0.0,4.2965448816783896e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8628775325739476e-08,0.0,0.0,0.00035678061527542014,0.00013321228727282785,0.0003568092440507459,0.0001427524755885959,8.920338257580618e-05,0.0001248210998857064,0.0,0.0,2.8628775325739476e-08,0.0,0.0,0.0,0.0,0.0,0.00014279464330319542,8.919773977023177e-05,0.00012481320398335496,0.0,0.0 +99246,50.0,the Greater Atlanta and Macon Area,G1300890023306,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,13662.0,,1494.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0011858156977369377,0.0004398434374586762,0.0,0.0016256284455893166,0.0009592650240472959,0.0004272913884829158,0.00023907203305910464,0.0,0.0,0.0005194215865886196,0.0004272913884829158,0.00023907203305910464,0.0,0.0,0.0004398434374586762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9386965381048084e-05,0.0,0.0,0.00014131042947032504,7.530685788608455e-05,0.00017069739485137312,6.189805685409177e-05,5.091915188062154e-05,2.848956353875183e-05,0.0,0.0,2.9386965381048084e-05,0.0,0.0,0.0,0.0,0.0,0.00010072660885160222,4.48672801305582e-05,2.510350586921269e-05,0.0,0.0 +99247,50.0,the Greater Atlanta and Macon Area,G1300890021417,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,39245.0,,2869.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0032418046415906895,0.00083588145652693,0.0,0.0040776860981176204,0.00258628161852513,0.0012316494572008362,0.00025972464879221583,0.0,0.0,0.0017504001619981998,0.0012316494572008362,0.00025972464879221583,0.0,0.0,0.00083588145652693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.584949278684995e-05,0.0,0.0,0.00038631994866598695,0.0001492427835217593,0.00044216944145283687,0.00020859199596810827,0.00014677342026595618,3.0950912865454784e-05,0.0,0.0,5.584949278684994e-05,0.0,0.0,0.0,0.0,0.0,0.00028044696702644753,0.00013355558506761612,2.816359575618213e-05,0.0,0.0 +99248,35.0,Eastern Counties in South Carolina and Georgia,G1300510001500,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,259087.0,,21162.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012080156224878898,0.003598749187789537,0.0,0.015678905412668434,0.008594118944636634,0.0023273227007189713,0.0018784963317317546,0.0,0.0028789497052196535,0.007867883340871271,0.0023273227007189713,0.0014437833304348998,0.0,0.0004411491224923338,0.0007262356037653628,0.0004347130012968546,0.00243780058272732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002404475069691889,0.0,0.0,0.0014395679397330482,0.0005737353789190014,0.001680015446702237,0.0009375998455840808,0.0002773423690057907,0.0001720527579051175,0.0,5.2570854346521297e-05,4.852284260046006e-05,2.9044996456984368e-05,0.0001628796679117445,0.0,0.0,0.0,0.0009208712086571986,0.0002493757047293263,0.00020128336582303074,0.0,0.00030848326766101094 +99249,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,48894.0,,3476.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0024318609116516024,0.0005911302497445605,0.0,0.003023008891757583,0.0013102737089419022,0.0006015379718981315,0.000598027360336961,0.0,0.0005131521202191682,0.0011289630330604422,0.0006015379718981315,0.000598027360336961,0.0,0.00010333254635606775,0.00018131067588145997,0.0,0.00040981957386310045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.949636583188709e-05,0.0,0.0,0.00028980088344647596,0.00012724710506021144,0.000329297249278363,0.00013453667633365104,7.16842952849166e-05,7.126594145267639e-05,0.0,1.2313970375231937e-05,1.211427225545523e-05,0.0,2.7382093576431858e-05,0.0,0.0,0.0,0.0001427285011740305,6.552570851598557e-05,6.514329656426083e-05,0.0,5.5897811650592565e-05 +99250,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,4967.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001192636003320813,0.0,0.0,0.001192636003320813,0.0006381677809724961,0.0002304219074377105,0.00028079051534494874,0.0,4.325579956565778e-05,0.0006381677809724961,0.0002304219074377105,0.00028079051534494874,0.0,4.325579956565778e-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.0001421254412208388,4.0326973843965714e-05,0.0001421254412208388,7.604992402635176e-05,2.7459187187327114e-05,3.346157232626546e-05,0.0,5.154757680894501e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.604992402635176e-05,2.7459187187327114e-05,3.346157232626546e-05,0.0,5.154757680894501e-06 +99251,81.0,the Columbus-Albany Area,G1300950011400,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,5054.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013878246973455786,0.0,0.0,0.0013878246973455786,0.0007830705741637626,0.00036018930613468386,0.0001994067547854702,0.0,4.507535518792255e-05,0.0007830705741637626,0.00036018930613468386,0.0001994067547854702,0.0,4.507535518792255e-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.00016538449591878808,4.4524581116830616e-05,0.00016538449591878808,9.331706837658434e-05,4.2923091759613954e-05,2.3762933233623243e-05,0.0,5.371546500342045e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.331706837658434e-05,4.2923091759613954e-05,2.3762933233623243e-05,0.0,5.371546500342045e-06 +99252,35.0,Eastern Counties in South Carolina and Georgia,G1301030030305,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,35837.0,,1541.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0031930693976381886,0.0004535923810800471,0.0,0.0036466617787182347,0.0012592866152136384,0.0009358181648358511,0.0014515569986687466,0.0,0.0,0.0008056942341335913,0.0009358181648358511,0.0014515569986687466,0.0,0.0,0.0004535923810800471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.030631059111417e-05,0.0,0.0,0.000380513456321963,0.00014650238223853606,0.00041081976691307714,9.601341517839084e-05,0.00011152009557135075,0.00017297994557222143,0.0,0.0,3.030631059111417e-05,0.0,0.0,0.0,0.0,0.0,0.0001418666893535338,0.00010542590009156792,0.0001635271774679756,0.0,0.0 +99253,50.0,the Greater Atlanta and Macon Area,G1301210009101,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,17221.0,,1525.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001518588851089278,0.0004443353861748713,0.0,0.001962924237264149,0.0015087174312720083,0.0003489319103408929,0.00010524452205181006,0.0,0.0,0.0010643820450971372,0.0003489319103408929,0.00010524452205181006,0.0,0.0,0.0004443353861748713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9687330695724323e-05,0.0,0.0,0.0001809677305010929,6.997422976826163e-05,0.00021065506119681722,0.00012684065403823825,4.15816406583706e-05,1.2541816232699698e-05,0.0,0.0,2.968733069572432e-05,0.0,0.0,0.0,0.0,0.0,0.00016191096771838432,3.744631174804315e-05,1.1294522128044004e-05,0.0,0.0 +99254,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970900,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,24510.0,,6762.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,22700.572550927158,0.0,0.0,0.005596883098116255,0.004651685600101516,0.0,0.010248568698217771,0.0025155779833725576,0.0004830340047901404,0.005070888830687763,0.0003643374527593042,0.0018146587066369907,0.00241079510571875,0.0004830340047901404,0.0021324498982071634,0.0003643374527593042,0.0002062666366408974,0.00010478287765380774,0.0029384389324806,0.0016083920699960933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003107965693920512,0.0,0.0,0.0006669724687401791,0.000518472568341027,0.0009777690381322303,0.0002872909680441885,5.756246414522548e-05,0.0002541209720014832,4.3417567610652634e-05,2.4580496938629324e-05,7.000937231252208e-06,0.0001963281309388324,0.0001074627093415893,0.0,0.0,0.0,0.0002399997831479176,4.608406384893015e-05,0.0004837902970118422,3.4759769020425414e-05,0.00017312828262889838 +99255,81.0,the Columbus-Albany Area,G1302150002100,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,57543.0,,,9734.0,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005074183148471382,0.0,0.0009174649446167316,0.005991648093088112,0.004160241541389429,0.0014084238059285522,0.0004229827457701319,0.0,0.0,0.003242776596772698,0.0014084238059285522,0.0004229827457701319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009174649446167316,0.0,0.0,0.0,0.0,7.399270499468099e-05,0.0006046816377540552,0.00019820757901126886,0.0006786743427487362,0.00038643608360840295,0.00016783943123480652,5.0406122910845704e-05,0.0,0.0,0.0,0.0,0.0,7.3992704994681e-05,0.0,0.0,0.0004712308116085046,0.0001595322498834507,4.7911281256781e-05,0.0,0.0 +99256,50.0,the Greater Atlanta and Macon Area,G1300130180108,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,126395.0,,7810.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010820081044349582,0.0022989584077609156,0.0,0.013119008762504198,0.0037340043982414975,0.005033862672980699,0.0043511723808883004,0.0,0.0,0.0014350459904805821,0.005033862672980699,0.0043511723808883004,0.0,0.0,0.0022989584077609156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015360219902049027,0.0,0.0,0.001289407344337432,0.0004837323629025623,0.0014430095433579223,0.00017101155083805347,0.0005998753127932361,0.0005185204807061425,0.0,0.0,0.00015360219902049027,0.0,0.0,0.0,0.0,0.0,0.0004107173094512378,0.0005536936523608061,0.0004786019572121024,0.0,0.0 +99257,50.0,the Greater Atlanta and Macon Area,G1302170100502,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,29535.0,,3675.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006933569565777048,0.0028500191600333287,0.0,0.009783588725810378,0.004363328715160827,0.0005437887661358491,0.004007056104960893,0.0004199100464748646,0.0004495859538610142,0.004363328715160827,0.0005437887661358491,0.0011570369449275637,0.0004199100464748646,0.0004495859538610142,0.0,0.0028500191600333287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001904211147802945,0.0,0.0,0.0008262645726430409,0.000466092153192142,0.0010166856874233355,0.0005199722742998723,6.480260826646356e-05,0.00013788260545499287,5.004014047996212e-05,5.357658021732897e-05,0.0,0.0001904211147802945,0.0,0.0,0.0,0.0,0.00045342603604382585,5.650914720621797e-05,0.0004164030914206887,4.363598534451895e-05,4.671983025525232e-05 +99258,50.0,the Greater Atlanta and Macon Area,G1301350050537,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,104956.0,,,,9.325022323477118,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.02752211974504849,0.0,0.0,0.027522119745048493,0.010077296548951785,0.005336105158409842,0.011269510456955066,0.0,0.0008391191965737409,0.010077296548951785,0.005336105158409842,0.011269510456955066,0.0,0.0008391191965737409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003279753127562615,0.0009628556671708488,0.003279753127562615,0.001200890235925479,0.0006358924292321746,0.0013429638599674967,0.0,9.999606988323227e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0012008902359254788,0.0006358924292321745,0.0013429638599674965,0.0,9.999606988323225e-05 +99259,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock 90.1-2004,gen4_led,100001_200000,NaturalGas,416204.0,,72441.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.021424216266499506,0.012319196957544047,0.0,0.03374341322404356,0.017459051429603155,0.004098443963690886,0.003910147525409925,0.0,0.008275752574978167,0.013104084596886945,0.004098443963690886,0.003176039641174058,0.0,0.001045648064747614,0.004354966832716209,0.0007341078842358662,0.007230104510230551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008230961732591467,0.0,0.0,0.0025530825541759993,0.0013654062489183178,0.0033761787274351456,0.0015615885013760095,0.0004884036668043207,0.00037848252175890515,0.0,0.00012460786423676345,0.0002909732304007123,4.904876448978956e-05,0.0004830729937303371,0.0,0.0,0.0,0.0017468558277270452,0.00041006756589575426,0.0003912276689014868,0.0,0.0008280258909092583 +99260,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,23757.0,,2748.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004946598120917709,0.0018903232760584601,0.0,0.006836993116947185,0.0022802647584703375,0.00047069816977545533,0.002212059066034492,0.00036763657142602224,0.0015062628312698635,0.0014581387307183882,0.00047069816977545533,0.0011438618177279805,0.00036763657142602224,0.0015062628312698635,0.0008221260277519495,0.0010681972483065109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012630155210942482,0.0,0.0,0.0005894800958853337,0.0002707518383806007,0.0007157816479947586,0.00017376462323940092,5.609252974866895e-05,0.00013631262486081379,4.3810804127941035e-05,0.0001794995139085091,5.493017763138206e-05,7.137137447804278e-05,0.0,0.0,0.0,0.0,0.0002387265335453572,4.9278550659186616e-05,0.00023158591162293055,3.848877810132418e-05,0.00015769436552555806 +99261,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,29308.0,,2329.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.00280174622773618,0.0006856671839032755,0.0,0.003487413411639456,0.0016892479994444543,0.000777643933977491,0.0010205214782175107,0.0,0.0,0.0010035808155411789,0.000777643933977491,0.0010205214782175107,0.0,0.0,0.0006856671839032755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.581200165400369e-05,0.0,0.0,0.0003338797837384469,0.00015214968625884754,0.0003796917853924506,0.00011959518044133674,9.267063017042388e-05,0.00012161397312668633,0.0,0.0,4.581200165400369e-05,0.0,0.0,0.0,0.0,0.0,0.0001839167065020166,8.466590531138565e-05,0.00011110917357904835,0.0,0.0 +99262,33.0,Rural Lower Plains-Upper South Appalachia,G1302810960300,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5921.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005221525479343916,0.0,0.0,0.0005221525479343916,0.0003358105153837841,0.0001426040493602448,4.3737983190362626e-05,0.0,0.0,0.0003358105153837841,0.0001426040493602448,4.3737983190362626e-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,6.22252969535197e-05,2.053930433115396e-05,6.22252969535197e-05,4.001878210215309e-05,1.6994227746889358e-05,5.212287104477248e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.001878210215309e-05,1.6994227746889358e-05,5.212287104477248e-06,0.0,0.0 +99263,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,21608.0,,1687.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0019054573871279225,0.0004913537181045112,0.0,0.002396841478831872,0.0016894099743271942,0.0005612129968113405,0.00014615776049446176,0.0,0.0,0.001198056256222683,0.0005612129968113405,0.00014615776049446176,0.0,0.0,0.0004913537181045112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.283029221993689e-05,0.0,0.0,0.00022706998696975724,8.993587621381274e-05,0.0002599002791896941,0.00014277024525831457,6.687876030924547e-05,1.7417361834068797e-05,0.0,0.0,3.283029221993689e-05,0.0,0.0,0.0,0.0,0.0,0.00018319030602202425,6.0854844112276696e-05,1.5848541963970092e-05,0.0,0.0 +99264,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,71852.0,,965.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00616873362426345,0.00028412437510413234,0.0,0.006452857999367583,0.002524527014049031,0.0014297980678036751,0.0024985022279085793,0.0,0.0,0.0022404026389448986,0.0014297980678036751,0.0024985022279085793,0.0,0.0,0.00028412437510413234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.898426232033957e-05,0.0,0.0,0.0007351150638226513,0.00024594079255717754,0.0007540993261429909,0.00026698408931753194,0.00017038604061826384,0.00029774127667076125,0.0,0.0,1.898426232033957e-05,0.0,0.0,0.0,0.0,0.0,0.0002950234020817952,0.00016709026598089912,0.0002919820716056785,0.0,0.0 +99265,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,NaturalGas,104749.0,,8186.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010514903599325226,0.002409563748857836,0.0,0.012924467348183066,0.00563277033988037,0.0024023210017715783,0.004889376006531114,0.0,0.0,0.003223206591022533,0.0024023210017715783,0.004889376006531114,0.0,0.0,0.002409563748857836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016099268253242906,0.0,0.0,0.001253041854054993,0.0005545952039059704,0.0014140345365874223,0.00038410364152804326,0.00028628020539230443,0.0005826580071346453,0.0,0.0,0.00016099268253242906,0.0,0.0,0.0,0.0,0.0,0.0006162677023882021,0.00026283209767649374,0.0005349347365227261,0.0,0.0 +99266,50.0,the Greater Atlanta and Macon Area,G1300890021907,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,33291.0,,5497.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.003025027945325926,0.0016522972207037208,0.0,0.004677325166029646,0.0016282609576732843,0.00041729710366791357,0.0016398873639109528,0.0,0.0009919110787996997,0.0014719155648977343,0.00041729710366791357,0.0011358152767602778,0.0,0.0,0.00015634539277554978,0.0005040720871506751,0.0009919110787996997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011039786865193414,0.0,0.0,0.000360486306515603,0.0002354243961252305,0.00047088417516753713,0.00017540512520311364,4.972843039461477e-05,0.00013535275091787458,0.0,0.0,1.0446182393636782e-05,3.3679463580205975e-05,6.627431652102454e-05,0.0,0.0,0.0,0.00016392324475963724,4.201089201315157e-05,0.00016509371944699674,0.0,9.985947386604639e-05 +99267,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,15544.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0033508770925480403,0.0,0.0,0.00335087709254804,0.0014262834866343565,0.0008812438706923205,0.0009619659746618845,0.0,8.13010534857392e-05,0.0014262834866343565,0.0008812438706923205,0.0009619659746618845,0.0,8.13010534857392e-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.00039932223987388266,0.00011421919975497685,0.00039932223987388266,0.00016996944407318538,0.00010501736309653757,0.0001146369732684963,0.0,9.688603277700274e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001699694440731854,0.00010501736309653758,0.00011463697326849632,0.0,9.688603277700274e-06 +99268,50.0,the Greater Atlanta and Macon Area,G1301210000400,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,11372.0,,511.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002536212416215862,0.0004050992471751277,0.0,0.00294131166339099,0.001822698491066857,0.0004024526208154699,0.0006423031346594614,0.0,7.394012392294084e-05,0.0014175992438917292,0.0004024526208154699,0.0006423031346594614,0.0,7.394012392294084e-05,0.0004050992471751277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7066628676407636e-05,0.0,0.0,0.00030223962815842875,0.0001177505153400824,0.0003293062568348364,0.00016893485167570417,4.7960151006649745e-05,7.654306056671637e-05,0.0,8.811421085068819e-06,2.7066628676407636e-05,0.0,0.0,0.0,0.0,0.0,0.0002040674658528843,4.5058185354394005e-05,7.191160449285323e-05,0.0,8.278260934407776e-06 +99269,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,68778.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.00580134834727365,0.0,0.0,0.00580134834727365,0.0018066357435331676,0.0016038081355116496,0.0023908737786225353,0.0,0.0,0.0018066357435331676,0.0016038081355116496,0.0023908737786225353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000691334258722448,0.00021416238112754554,0.000691334258722448,0.00021529291257332356,0.0001911223808889263,0.0002849153080455387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021529291257332356,0.0001911223808889263,0.0002849153080455387,0.0,0.0 +99270,50.0,the Greater Atlanta and Macon Area,G1301350050421,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,271148.0,,9255.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012614017407236687,0.0015739419136195072,0.0,0.014187959320856192,0.006622573676172443,0.004428122303935347,0.001438747907791605,0.0,0.0016984622418725382,0.005834139964545535,0.004428122303935347,0.0006532574361604256,0.0,0.0016984622418725382,0.000788433711626908,0.0007854904716311791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010516145446109753,0.0,0.0,0.0015031874045467067,0.0004200343997508235,0.0016083488590078042,0.0006952428736966989,0.0005276905412584278,7.784739137901213e-05,0.0,0.00020240237242864746,5.267845982332164e-05,5.248181000028773e-05,0.0,0.0,0.0,0.0,0.0007507357876413966,0.0005019725031641576,0.00016309664438457462,0.0,0.0001925378940696515 +99271,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6181.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0015124642574707151,0.0,0.0,0.0015124642574707151,0.0006026037392645939,0.0002460535443744396,0.0006176564266851479,0.0,4.615054714653354e-05,0.0006026037392645939,0.0002460535443744396,0.0006176564266851479,0.0,4.615054714653354e-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.00018023597853345524,5.8954786198248524e-05,0.00018023597853345524,7.181053970551511e-05,2.9321487184176152e-05,7.360432480384118e-05,0.0,5.499626839922787e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.181053970551511e-05,2.9321487184176152e-05,7.360432480384118e-05,0.0,5.499626839922787e-06 +99272,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,28793.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006660400648226427,0.0,0.0,0.006660400648226427,0.004615137421727093,0.0009629584595467562,0.0009641990656528459,0.0,0.00011818840837347031,0.004615137421727093,0.0009629584595467562,0.0009641990656528459,0.0,0.00011818840837347031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007937063910341918,0.00024069223133998946,0.0007937063910341918,0.0005499765345349428,0.00011475379996040103,0.00011490164046537449,0.0,1.408427210713846e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005499765345349428,0.00011475379996040103,0.00011490164046537449,0.0,1.408427210713846e-05 +99273,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,44740.0,,8387.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002302996644850659,0.0014263189244361476,0.0,0.003729315569286806,0.00131291553279349,0.0005197123539445877,0.0011335020055839755,0.0,0.0007631679466033328,0.0010148858876838226,0.0005197123539445877,0.0006495517906236344,0.0,0.00011882888223719388,0.00029802964510966756,0.00048395021496034117,0.0006443390643661388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.529827114759696e-05,0.0,0.0,0.00027444439106575973,0.0001602023666806384,0.0003697426622133567,0.00012094231229966963,6.193328193794401e-05,7.740603792974138e-05,0.0,1.4160645999866977e-05,1.9912594191310306e-05,3.233471702372626e-05,4.30509599325604e-05,0.0,0.0,0.0,0.00013016889435537047,5.1526835356920675e-05,0.00011238095607150447,0.0,7.566421855444654e-05 +99274,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,10440.0,,813.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0021779253727771818,0.00064486705394538,0.0,0.002822709719648823,0.001490216054634841,0.0007192207132370173,0.0005412350905500277,0.0,7.203786122693676e-05,0.0009174695689901372,0.0007192207132370173,0.0005412350905500277,0.0,0.0,0.0005727464856447039,0.0,7.203786122693676e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3083493214526174e-05,0.0,0.0,0.00025953612288044745,0.00011096261258179319,0.00030261961609497366,0.00010933179702703088,8.570714026386556e-05,6.449718558955107e-05,0.0,0.0,3.8265126396125907e-05,0.0,4.8128411683791575e-06,0.0,0.0,0.0,0.00015976443033195335,7.710686458911457e-05,5.80252210063438e-05,0.0,7.723100167561957e-06 +99275,50.0,the Greater Atlanta and Macon Area,G1301170130105,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,30505.0,,2351.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002693074331836015,0.0006920199324069,0.0,0.0033850942642429153,0.0016007391748818797,0.0007638336111435246,0.0010205214782175107,0.0,0.0,0.0009087192424749794,0.0007638336111435246,0.0010205214782175107,0.0,0.0,0.0006920199324069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.623669442524313e-05,0.0,0.0,0.000320930071298002,0.00014678520836889416,0.0003671667657232451,0.00010829085845489377,9.102503127605036e-05,0.00012161418156705783,0.0,0.0,4.623669442524313e-05,0.0,0.0,0.0,0.0,0.0,0.00017362536453303907,8.284978043794568e-05,0.00011069162075226033,0.0,0.0 +99276,50.0,the Greater Atlanta and Macon Area,G1301210000600,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,53857.0,,4249.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004584750974420116,0.0012506014566313881,0.0,0.0058353524310515055,0.002077502208716692,0.0015822333422843649,0.0021755861904441502,0.0,0.0,0.0008269007520853037,0.0015822333422843649,0.0021755861904441502,0.0,0.0,0.0012506014566313881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.355750312246014e-05,0.0,0.0,0.0005463561325669527,0.0002357545703232905,0.0006299136356894129,9.854020413467995e-05,0.00018855176530461551,0.0002592605059051166,0.0,0.0,8.355750312246014e-05,0.0,0.0,0.0,0.0,0.0,0.0002242618564873389,0.00017079865679471218,0.00023484980953094003,0.0,0.0 +99277,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,178969.0,,4593.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,140298.9118897092,0.0,0.0,0.008248040020078623,0.000781040150914746,0.0,0.009029062440631952,0.004840956039239857,0.0035313560840319167,0.0005491979449861356,0.0,0.00010758783309688041,0.004059915888325111,0.0035313560840319167,0.0005491979449861356,0.0,0.00010758783309688041,0.000781040150914746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.218430559631213e-05,0.0,0.0,0.0009829021108541324,0.0002795748017880404,0.0010350864164504444,0.0004838118979552361,0.00042082450384854793,6.544679925043318e-05,0.0,1.2821022690932315e-05,5.2184305596312125e-05,0.0,0.0,0.0,0.0,0.0,0.0005549643577944078,0.00040483258790878805,6.295972993158965e-05,0.0,1.2333806012102856e-05 +99278,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,116040.0,,11983.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,240343.828889517,0.0,0.0,0.009488347981160414,0.0034908985305796923,0.0,0.01297924651174011,0.008946148857597109,0.0028346161675281887,0.0011984814866148113,0.0,0.0,0.005455250327017416,0.0028346161675281887,0.0011984814866148113,0.0,0.0,0.0034908985305796923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002332404641398896,0.0,0.0,0.0011307093226929985,0.0005289220594622048,0.0013639497868328883,0.0006500923463842274,0.00033779609825065015,0.0001428208780581211,0.0,0.0,0.0002332404641398896,0.0,0.0,0.0,0.0,0.0,0.0009401237441832781,0.000297881245568144,0.0001259447970814661,0.0,0.0 +99279,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9047.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002172301291762909,0.0,0.0,0.002172301291762909,0.0014215691834312157,0.00030510639502430507,0.0003940992063677999,0.0,5.152650693958852e-05,0.0014215691834312157,0.00030510639502430507,0.0003940992063677999,0.0,5.152650693958852e-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.0002588725559148234,9.441696756764571e-05,0.0002588725559148234,0.00016940801412769786,3.6359446364735716e-05,4.6964695561931606e-05,0.0,6.140399860458214e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016940801412769786,3.6359446364735716e-05,4.6964695561931606e-05,0.0,6.140399860458214e-06 +99280,50.0,the Greater Atlanta and Macon Area,G1301350050526,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,48716.0,,5095.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.004162400612551131,0.00149986243898133,0.0,0.0056622630515324604,0.00364887143037167,0.0008583269089341514,0.0011550647122266396,0.0,0.0,0.0021490089913903396,0.0008583269089341514,0.0011550647122266396,0.0,0.0,0.00149986243898133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001002123216115691,0.0,0.0,0.0004960242754647613,0.00023855433817450831,0.0005962365970763304,0.00025609275203049823,0.00010228496071045607,0.000137646562723807,0.0,0.0,0.00010021232161156909,0.0,0.0,0.0,0.0,0.0,0.0003842263534939506,9.038186864586539e-05,0.00012162837493651443,0.0,0.0 +99281,50.0,the Greater Atlanta and Macon Area,G1301350050536,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,459435.0,,42053.0,,9.729435225087556,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,3405302.3287806446,0.0,0.0,0.1047973459619853,0.03719592112331266,0.0,0.14199326708529797,0.10510996244888636,0.020722599956923885,0.004988123419753776,0.0006563101879866822,0.010516363289000035,0.06791404132557369,0.020722599956923885,0.004988123419753776,0.0006563101879866822,0.010516363289000035,0.03719592112331266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002485214387439636,0.0,0.0,0.012488495799204363,0.0049593491201394505,0.014973710186643998,0.008093184154769326,0.0024694719139596597,0.0005944249618316176,7.821120802639297e-05,0.0012532145499679398,0.002485214387439636,0.0,0.0,0.0,0.0,0.0,0.011084230595899983,0.0021852740798078843,0.0005260158879064069,6.92103136238912e-05,0.0011089890340529617 +99282,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,123379.0,,1138.0,,9.325022323477118,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.03165902864696871,0.0009645363168537216,0.0,0.032623564963822425,0.015265269858461519,0.006429770730181853,0.010306918591578555,0.0,0.0006216941677585521,0.014300733541607798,0.006429770730181853,0.010306918591578555,0.0,0.0006216941677585521,0.0009645363168537216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.444228339865923e-05,0.0,0.0,0.003772747313842742,0.0011383724211818096,0.003837189597241401,0.001704191706470676,0.0007662237689418472,0.0012282562381804793,0.0,7.408613282477804e-05,6.444228339865923e-05,0.0,0.0,0.0,0.0,0.0,0.0017955037950306235,0.0007562707933930916,0.0012123016243956587,0.0,7.312378018264428e-05 +99283,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,77822.0,,8221.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.006933886888477776,0.0024198754565738644,0.0,0.00935376234505164,0.0035363326440779933,0.0019506006866756914,0.003866829014297955,0.0,0.0,0.0011164571875041296,0.0019506006866756914,0.003866829014297955,0.0,0.0,0.0024198754565738644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016168204634622654,0.0,0.0,0.000826296323957948,0.00038395638464033577,0.0009879783703041747,0.0001330457915926023,0.00023244887071756262,0.00046080166164778316,0.0,0.0,0.00016168204634622654,0.0,0.0,0.0,0.0,0.0,0.00037352030484267564,0.00020602953297777144,0.00040842853248372764,0.0,0.0 +99284,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,8319.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017557884684117576,0.0,0.0,0.0017557884684117574,0.0009489809640848132,0.0005083176752017835,0.0002382790794429447,0.0,6.0210749682215816e-05,0.0009489809640848132,0.0005083176752017835,0.0002382790794429447,0.0,6.0210749682215816e-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.0002092300449149342,7.226761713318646e-05,0.0002092300449149342,0.00011308613384304274,6.057411352617577e-05,2.8394731706624208e-05,0.0,7.175065839091437e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011308613384304275,6.0574113526175785e-05,2.839473170662421e-05,0.0,7.175065839091438e-06 +99285,50.0,the Greater Atlanta and Macon Area,G1300130180301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10045.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021488124828209464,0.0,0.0,0.0021488124828209464,0.0011037258990510574,0.00048334013893251254,0.0004875581996932172,0.0,7.410553807041946e-05,0.0011037258990510574,0.00048334013893251254,0.0004875581996932172,0.0,7.410553807041946e-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.0002560668701023154,6.738388999270063e-05,0.0002560668701023154,0.00013152736159175544,5.7598044296906624e-05,5.8100696634199954e-05,0.0,8.830911651271104e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013152736159175544,5.7598044296906624e-05,5.8100696634199954e-05,0.0,8.830911651271104e-06 +99286,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,8437.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001794164550626796,0.0,0.0,0.001794164550626796,0.0009885976524059417,0.00037549011477645567,0.00038053524627455347,0.0,4.9541537169845144e-05,0.0009885976524059417,0.00037549011477645567,0.00038053524627455347,0.0,4.9541537169845144e-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.000213804274481903,7.173772656921077e-05,0.000213804274481903,0.000117807702617535,4.4745835345403566e-05,4.53470459084145e-05,0.0,5.903690610549942e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.000117807702617535,4.4745835345403566e-05,4.53470459084145e-05,0.0,5.903690610549942e-06 +99287,50.0,the Greater Atlanta and Macon Area,G1301130140405,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,66361.0,,8370.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005844791739806583,0.0024384836836610297,0.0,0.00828330579706705,0.006127569950572052,0.001562266087080765,0.0005934393858147952,0.0,0.0,0.0036890862669110226,0.001562266087080765,0.0005934393858147952,0.0,0.0,0.0024384836836610297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016292609274293836,0.0,0.0,0.0006965129330773725,0.00034428736689719484,0.0008594390258203109,0.00043962153153239314,0.00018617233650072574,7.071906504425352e-05,0.0,0.0,0.00016292609274293836,0.0,0.0,0.0,0.0,0.0,0.0006357694473660666,0.00016209379163910798,6.157263538533862e-05,0.0,0.0 +99288,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,20557.0,,1497.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.0049361235749093456,0.001187838993043933,0.0,0.006123879860879539,0.002849093276171662,0.0008305444344901251,0.0022990912358052677,0.0,0.00014539903563370245,0.0016612542831277288,0.0008305444344901251,0.0022990912358052677,0.0,0.00014539903563370245,0.001187838993043933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.93632399231435e-05,0.0,0.0,0.0005882244460938405,0.00024225675036814242,0.0006675876860169841,0.0001979671630347656,9.89737255399341e-05,0.00027397646111920813,0.0,1.7326808354830125e-05,7.93632399231435e-05,0.0,0.0,0.0,0.0,0.0,0.0003105906109681275,9.054084171336324e-05,0.00025063277414340485,0.0,1.585050784028008e-05 +99289,50.0,the Greater Atlanta and Macon Area,G1300890023507,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,35429.0,,900.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.008189985269961179,0.0007143409958863981,0.0,0.008904326265847575,0.003586840373926284,0.0015710208656781446,0.003597178758143698,0.0,0.0001493689751731892,0.002872499378039886,0.0015710208656781446,0.003597178758143698,0.0,0.0001493689751731892,0.0007143409958863981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.772700037018261e-05,0.0,0.0,0.0009759830277679602,0.0003059572323819451,0.0010237100281381428,0.0003423096071397744,0.00018721519644179598,0.000428668098912505,0.0,1.779998129896728e-05,4.772700037018261e-05,0.0,0.0,0.0,0.0,0.0,0.00041237083530986133,0.00018061667627538317,0.00041355941570124977,0.0,1.717260949477978e-05 +99290,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8231.0,,125.0,726.0,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0011671025240151337,4.645936010272726e-05,8.730019875850252e-05,0.0013008620828763632,0.000790971574459526,0.00015243629911937368,0.0003237430806157517,0.0,3.367238025793994e-05,0.0007036713757010235,0.00015243629911937368,0.00027728372051302443,0.0,3.367238025793994e-05,0.0,4.645936010272726e-05,0.0,0.0,0.0,0.0,0.0,8.730019875850252e-05,0.0,0.0,3.104760394567662e-06,0.0,7.041733840721323e-06,0.0001390802262240694,5.5849979890621545e-05,0.00014922672045935837,8.385447902487052e-05,1.8165392097127786e-05,3.304309757169457e-05,0.0,4.0126399929852684e-06,0.0,3.104760394567662e-06,0.0,7.041733840721323e-06,0.0,0.0,9.073528668941032e-05,1.748653396542106e-05,3.713777104247406e-05,0.0,3.862683786464388e-06 +99291,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,78258.0,,12074.0,,9.525004485617233,Lodging,Zone-by-Zone,Before 1946,E: Lodging with Zone-by-Zone Systems,357187.66821064625,0.0,0.0,0.020511620676409468,0.010454741487981662,0.0,0.030966362164391133,0.00991008452106348,0.0030014363537480427,0.012486574688290075,0.0006451381875679334,0.004923038134098374,0.008072352510689444,0.0030014363537480427,0.00623805112599797,0.0006451381875679334,0.0025546424984060753,0.0018377320103740349,0.006248523562292103,0.002368395635692298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006985221762759635,0.0,0.0,0.0024443336384794116,0.0013984597239262721,0.003142855814755375,0.0009619680031541963,0.00035767587354319086,0.0007433775441921994,7.687997931599717e-05,0.00030443223827382763,0.0001227860645597174,0.00041748830253348984,0.00015824177724796745,0.0,0.0,0.0,0.0010057999902086333,0.0003046235023319111,0.001267294610104272,6.547673547686449e-05,0.00049965181392232 +99292,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,166139.0,,7749.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.014570044037865883,0.0022808822296515683,0.0,0.01685092626751745,0.0077576879903270115,0.003504231315890597,0.005589006961299845,0.0,0.0,0.005476805760675444,0.003504231315890597,0.005589006961299845,0.0,0.0,0.0022808822296515683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001523952149691516,0.0,0.0,0.0017362832479362468,0.0006627762166360659,0.0018886784629053982,0.0006526600791149262,0.00041759229518194545,0.0006660308736393754,0.0,0.0,0.0001523952149691516,0.0,0.0,0.0,0.0,0.0,0.0008694939374053204,0.00039275978722422234,0.0006264247382758557,0.0,0.0 +99293,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,63400.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005648882383186663,0.0,0.0,0.005648882383186663,0.0020411043356476167,0.001459045262605386,0.0021486714057210653,0.0,0.0,0.0020411043356476167,0.001459045262605386,0.0021486714057210653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006731647326415716,0.00021738641035268772,0.0006731647326415716,0.00024323385781395508,0.0001738711744179806,0.0002560523859855723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024323385781395508,0.0001738711744179806,0.0002560523859855723,0.0,0.0 +99294,50.0,the Greater Atlanta and Macon Area,G1301350050319,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7684.0,,1402.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,9613.75315558068,0.0,0.0,0.0006776046298568054,0.0004084641652388864,0.0,0.001086068795095692,0.0008378557404903839,0.00021073203289912216,3.7541768905061256e-05,0.0,0.0,0.00042939157525149753,0.00021073203289912216,3.7541768905061256e-05,0.0,0.0,0.0004084641652388864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7290991576531802e-05,0.0,0.0,8.075040285848077e-05,5.159500567548945e-05,0.00010804139443501257,5.117075822360225e-05,2.5113016945274985e-05,4.473866956523476e-06,0.0,0.0,2.7290991576531802e-05,0.0,0.0,0.0,0.0,0.0,8.334932643929361e-05,2.0963481125097667e-05,3.734629961173352e-06,0.0,0.0 +99296,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13462.0,,,827.0,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030460188187449535,0.0,0.00021230905828880216,0.0032583278770337556,0.0013209146746904787,0.0009158154275153511,0.0009317778927470375,0.0,8.973717500714856e-05,0.0011086056164016766,0.0009158154275153511,0.0009317778927470375,0.0,8.973717500714856e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021230905828880216,0.0,0.0,0.0,0.0,1.7119387059366207e-05,0.0003629916998297785,0.00012383669878948106,0.0003801110868891447,0.0001321116713600247,0.00010913701409799714,0.00011103924869755584,0.0,1.0693909536379203e-05,0.0,0.0,0.0,1.7119387059366207e-05,0.0,0.0,0.00015409569927674201,0.00010683749784555536,0.00010869965237316234,0.0,1.046858892462996e-05 +99297,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,14088.0,,1979.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011990429180512476,0.0005825501067429943,0.0,0.0017815623351879444,0.0008071673352358808,0.0003723876828163256,0.0006020686963483333,0.0,0.0,0.00022461722849288665,0.0003723876828163256,0.0006020686963483333,0.0,0.0,0.0005825501067429943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8921965723319735e-05,0.0,0.0,0.00014288668912680914,8.381541885214979e-05,0.0001818086548501289,2.6767025280755465e-05,4.437642912374462e-05,7.174689191936889e-05,0.0,0.0,3.8921965723319735e-05,0.0,0.0,0.0,0.0,0.0,8.237152557601487e-05,3.80022087121921e-05,6.144118431809664e-05,0.0,0.0 +99298,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,292010.0,,32904.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.015031286231439584,0.005595560221277304,0.0,0.02062682872235547,0.006376866327613351,0.00555045418182469,0.0063118668226474365,0.0,0.00238764139026999,0.006117790286543539,0.00555045418182469,0.0030050834963619094,0.0,0.00035794053634802595,0.0002590760410698115,0.0033067833262855274,0.0020297008539219646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037386226190525387,0.0,0.0,0.0017912484132503383,0.0008159961469900744,0.0021651106751555925,0.0007290448717853952,0.0006614365592491273,0.00035810980921141837,0.0,4.2655060112575003e-05,1.7309929817484502e-05,0.00022093971740214409,0.00013561261468562525,0.0,0.0,0.0,0.0006693525963587517,0.0005826076205309335,0.0006625298741664155,0.0,0.0002506205840994915 +99299,50.0,the Greater Atlanta and Macon Area,G1300630040613,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6262.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001163026870922141,0.0,0.0,0.001163026870922141,0.0006339497202117914,0.00021776772515559644,0.00026234683790108315,0.0,4.896258765367e-05,0.0006339497202117914,0.00021776772515559644,0.00026234683790108315,0.0,4.896258765367e-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.0001385968545512147,4.014499579131121e-05,0.0001385968545512147,7.55472116437961e-05,2.5951181768834328e-05,3.126363409447113e-05,0.0,5.83482704411315e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.55472116437961e-05,2.5951181768834328e-05,3.126363409447113e-05,0.0,5.83482704411315e-06 +99300,50.0,the Greater Atlanta and Macon Area,G1300590030200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,162235.0,,4551.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.008081055476224567,0.0007740011974309849,0.0,0.008855056673655552,0.003921672260332959,0.0014953077607215734,0.0018784786013703344,0.0,0.0015596157815921047,0.0037053086599240542,0.0014953077607215734,0.0013208232739868337,0.0,0.0015596157815921047,0.00021636360040890436,0.0005576553273835006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.171473715747925e-05,0.0,0.0,0.0009630028971828419,0.00032737418318020946,0.0010147176343403212,0.0004415540748311501,0.00017819277568276488,0.0001573998153159691,0.0,0.00018585623135295776,1.4456291234084378e-05,3.725963057399178e-05,0.0,0.0,0.0,0.0,0.0004493918159216417,0.00017135013467324753,0.00021525840350771383,0.0,0.00017871931199325164 +99301,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,69970.0,,2977.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0038764598387118253,0.0005063082007110279,0.0,0.004382750309061433,0.0015292791332023946,0.001594030413108427,0.0006551013937481111,0.0,0.0006043393690024997,0.001212827642577292,0.001594030413108427,0.00046526241402360563,0.0,0.0006043393690024997,0.00031645149062510243,0.00018983897972450533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.382810794267502e-05,0.0,0.0,0.00046194941319179205,0.00015948697748127097,0.000495777521134467,0.0001445300715349458,0.00018995718892576111,5.54443249977854e-05,0.0,7.201782773329961e-05,2.1143159775909223e-05,1.2683763543291126e-05,0.0,0.0,0.0,0.0,0.00017299233684706864,0.0001803170135405423,7.410519016168312e-05,0.0,6.836298058517291e-05 +99303,50.0,the Greater Atlanta and Macon Area,G1300670030226,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,170938.0,,29744.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008799046461929605,0.005058170696996924,0.0,0.01385723488928795,0.006125822140266823,0.0021852138539372483,0.0032704538157358395,0.0,0.0022757628097094572,0.0050308836707714626,0.0021852138539372483,0.0012486607030072188,0.0,0.00033432369493651564,0.0010949384694953607,0.0020217931127286207,0.0019414391147729417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003379579549049168,0.0,0.0,0.0010485661423445918,0.0005840577603023384,0.0013865240972495087,0.0005995211306212823,0.0002604079056673664,0.0001488005935773226,0.0,3.9840738267575353e-05,7.315750852715771e-05,0.0001350846198259541,0.00012971582655180497,0.0,0.0,0.0,0.0006129361363074182,0.000218647637160977,0.00032723433359455403,0.0,0.00022770776424708132 +99304,50.0,the Greater Atlanta and Macon Area,G1301210011000,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,17441.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0023272542247673974,0.0,0.0,0.0023272542247673974,0.001176209850965757,0.0005052736780853786,0.000645770695716262,0.0,0.0,0.001176209850965757,0.0005052736780853786,0.000645770695716262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002773348270189922,0.0001069084987141675,0.0002773348270189922,0.00014016687652086053,6.021258297342399e-05,7.69553675247077e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014016687652086053,6.021258297342399e-05,7.69553675247077e-05,0.0,0.0 +99305,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,46818.0,,3433.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002287234353548232,0.0005838785319237589,0.0,0.0028711128854719903,0.0014813007751997315,0.0005978855174456006,0.0005122478717867456,0.0,0.0002796432603170728,0.0011123851451326928,0.0005978855174456006,0.00029728496993002533,0.0,0.0002796432603170728,0.0003689156300670387,0.00021496290185672016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9011395657543576e-05,0.0,0.0,0.0002725654752765206,0.00011261757080358216,0.00031157687093406417,0.0001325608743604594,7.124890808442998e-05,3.542689842684491e-05,0.0,3.3324568616222224e-05,2.4648814474097634e-05,1.4362581183445939e-05,0.0,0.0,0.0,0.0,0.0001607526693862691,6.488330697309722e-05,5.558979928708378e-05,0.0,3.0347247044265866e-05 +99306,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7149.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017168334366805438,0.0,0.0,0.0017168334366805436,0.0010383873107970049,0.00024241443312991004,0.0003933548427041461,0.0,4.259414297574332e-05,0.0010383873107970049,0.00024241443312991004,0.0003933548427041461,0.0,4.259414297574332e-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.00020459215526733214,6.860497261256668e-05,0.00020459215526733214,0.00012374287067065012,2.8888120584283185e-05,4.687543551649636e-05,0.0,5.0758724329259086e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012374287067065012,2.8888120584283188e-05,4.687543551649637e-05,0.0,5.075872432925909e-06 +99307,50.0,the Greater Atlanta and Macon Area,G1302190030300,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,15944.0,,745.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0007600474029934035,0.00012675435379195748,0.0,0.0008868194871467811,0.0005682580835126923,0.00012281821355670578,6.10456343692418e-05,0.0,0.0001346798253467211,0.00044150372972073495,0.00012281821355670578,6.10456343692418e-05,0.0,0.0001346798253467211,0.00012675435379195748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469549329423134e-06,0.0,0.0,9.057397390795801e-05,3.2776419518813466e-05,9.904352323738114e-05,5.261349113028817e-05,1.4636105098570583e-05,7.2747379607880045e-06,0.0,1.6049639718311268e-05,8.469549329423134e-06,0.0,0.0,0.0,0.0,0.0,6.346532018629796e-05,1.3716825988470704e-05,6.8178189516824926e-06,0.0,1.5041577913732274e-05 +99308,50.0,the Greater Atlanta and Macon Area,G1300630040416,ComStock 90.1-2007,gen4_led,1001_5000,Propane,23604.0,,2923.0,8636.0,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004861107915467102,0.002010812827364687,0.001921951783276345,0.008793944246079146,0.0027379816134919673,0.0003263975880920459,0.003436175531328941,0.0003713660099188341,0.001921951783276345,0.0027379816134919673,0.0003263975880920459,0.001425362703964254,0.0003713660099188341,0.0,0.0,0.002010812827364687,0.0,0.0,0.0,0.0,0.0,0.0,0.001921951783276345,0.0,0.0001343519110475858,0.0,0.00015500469563473266,0.0005792917117178032,0.0004746788799465052,0.0008686483184001217,0.0003262815973463587,3.889636288566845e-05,0.00016985856207202258,4.42551894137533e-05,0.0,0.0,0.0001343519110475858,0.0,0.0,0.00015500469563473266,0.0,0.000270452376978698,3.2240904432891206e-05,0.0003394185832309933,3.668279568303904e-05,0.00018984657371843956 +99309,50.0,the Greater Atlanta and Macon Area,G1300670030230,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,30358.0,,14288.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006321039645460881,0.009828576547950354,0.0,0.01614954447344022,0.004858454276539523,0.00049823863864545,0.008944484465240914,0.0003705053702666467,0.0014779334427186968,0.003079225235584245,0.00049823863864545,0.0008951369582458416,0.0003705053702666467,0.0014779334427186968,0.0017792290409552785,0.008049347506995073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006566861982385067,0.0,0.0,0.0007532637199834292,0.0008643135040491645,0.001409949918221936,0.00036694417148429737,5.93739497671173e-05,0.00010667140737633379,4.415227069194298e-05,0.00017612192066373774,0.00011887735207639226,0.0005378088461621143,0.0,0.0,0.0,0.0,0.0004241715437334978,4.349915435500295e-05,0.00078090593583271,3.2347291118172626e-05,0.0001290322547565202 +99310,50.0,the Greater Atlanta and Macon Area,G1301210010001,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,332265.0,,32292.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.017103433570601158,0.005491553921187274,0.0,0.02259498749178843,0.01235017189894488,0.0038197936036133357,0.002832992608418877,0.0,0.0035920293808113374,0.010252865176928253,0.0038197936036133357,0.0023896626514718767,0.0,0.0006411121385876893,0.002097306722016626,0.0004433299569470002,0.0029509172422236478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003669134124816259,0.0,0.0,0.002038183136211657,0.001064395046754732,0.002405096548693283,0.0012218141354603108,0.00045519742422224106,0.0002847714815484047,0.0,7.640009498069986e-05,0.00014012972966118134,2.9620706578364666e-05,0.00019716297624207993,0.0,0.0,0.0,0.0013145993473426805,0.0004065933834267393,0.00030155452608495836,0.0,0.00038234929183890475 +99311,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,18517.0,,146.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.004353948482858361,0.00011578990323503037,0.0,0.004469821093167131,0.001762983983827077,0.001070229534186638,0.001523298884130564,0.0,0.00011330869102285118,0.0016471940805920465,0.001070229534186638,0.001523298884130564,0.0,0.00011330869102285118,0.00011578990323503037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.736806175586689e-06,0.0,0.0,0.0005188563604215991,0.00018284320938963887,0.0005265931665971858,0.0001962947262533778,0.00012753834895153188,0.00018153024041648482,0.0,1.3502900932271923e-05,7.736806175586689e-06,0.0,0.0,0.0,0.0,0.0,0.00020769854080352325,0.000126084589885419,0.0001794610491893081,0.0,1.3348986718935398e-05 +99312,50.0,the Greater Atlanta and Macon Area,G1301210006900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,77651.0,,2185.0,,9.325022323477118,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.019293643014290245,0.0018520016478835227,0.0,0.021145644662173772,0.013402131806663073,0.002652496967387249,0.004766115723113438,0.0,0.0003249001650100139,0.01155013015877955,0.002652496967387249,0.004766115723113438,0.0,0.0003249001650100139,0.0018520016478835227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001237401748948326,0.0,0.0,0.0022991878517988683,0.0007881481388823352,0.002422928026693701,0.0013764077073517155,0.0003160931711980497,0.0005679692198478833,0.0,3.871775340122057e-05,0.0001237401748948326,0.0,0.0,0.0,0.0,0.0,0.0015356543293236673,0.00030393063657686273,0.0005461150770519915,0.0,3.7227983741179806e-05 +99313,50.0,the Greater Atlanta and Macon Area,G1301350050211,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,3476.0,,329.0,,8.72605822017302,Office,Residential Style Central Systems,2013 to 2018,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0008345970811033512,0.00026077540350003626,0.0,0.0010953724846033874,0.0005150996552484066,0.0002563092215181137,0.0002745047777407613,0.0,4.945883009610584e-05,0.00025432425174837036,0.0002563092215181137,0.0002745047777407613,0.0,4.945883009610584e-05,0.00026077540350003626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.742275556353409e-05,0.0,0.0,9.945576226138722e-05,4.408632276905743e-05,0.00011687851782492132,3.0306854519251387e-05,3.054339582281627e-05,3.271169110549441e-05,0.0,5.893820813825147e-06,1.742275556353409e-05,0.0,0.0,0.0,0.0,0.0,5.496220243231728e-05,2.734872596945267e-05,2.929022958780684e-05,0.0,5.2773598353445296e-06 +99314,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,36229.0,,4711.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0037027930686367337,0.0013865871021365094,0.0,0.005089380170773244,0.0018761170121911663,0.001137571636636949,0.0020757222115514256,0.0,0.0,0.0004895299100546571,0.001137571636636949,0.0020757222115514256,0.0,0.0,0.0013865871021365094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.26436523037337e-05,0.0,0.0,0.0004412541307056656,0.00020973090443447372,0.0005338977830093994,5.833625884881497e-05,0.00013556204042060213,0.00024735948865265187,0.0,0.0,9.26436523037337e-05,0.0,0.0,0.0,0.0,0.0,0.00019681271193440787,0.00011933613808271769,0.00021775215246344984,0.0,0.0 +99315,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,1976.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0004029488632579058,0.0,0.0,0.0004029488632579058,0.00018658715835587756,0.00011314327687537255,7.68348715038166e-05,0.0,2.6383556522839068e-05,0.00018658715835587756,0.00011314327687537255,7.68348715038166e-05,0.0,2.6383556522839068e-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,4.8013712004931335e-05,1.3717274202220977e-05,4.8013712004931335e-05,2.223295038651993e-05,1.3481682681187614e-05,9.155323984519952e-06,0.0,3.1437549527038373e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.223295038651993e-05,1.3481682681187614e-05,9.155323984519952e-06,0.0,3.1437549527038373e-06 +99316,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300830040101,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,27356.0,,2283.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024373992217698527,0.000672071688313393,0.0,0.003109470910083246,0.0013831805558374645,0.0006788540913051855,0.001047436262940596,0.0,0.0,0.0007111088675240711,0.0006788540913051855,0.001047436262940596,0.0,0.0,0.000672071688313393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.490387389752808e-05,0.0,0.0,0.0002904589496773881,0.0001358197876766686,0.0003353628235749162,8.474111787782525e-05,8.089739447833476e-05,0.0001248204373212281,0.0,0.0,4.490387389752808e-05,0.0,0.0,0.0,0.0,0.0,0.0001491788635858811,7.321580791035477e-05,0.00011296815207868032,0.0,0.0 +99317,50.0,the Greater Atlanta and Macon Area,G1302230120501,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,17394.0,,2566.0,,8.72605822017302,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.004176624516761286,0.0020358346200930522,0.0,0.006212376429780599,0.0042459330445548255,0.0007348523501737465,0.0010679137361219375,0.0,0.00016376000600382866,0.002373941137539341,0.0007348523501737465,0.0010679137361219375,0.0,0.0,0.0018719919070154841,0.0,0.00016376000600382866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013602083417959607,0.0,0.0,0.0004977165114688332,0.0002604981455533536,0.0006337373456484291,0.0002828958400897031,8.757027276580887e-05,0.00012726025458099317,0.0,0.0,0.0001250739614389997,0.0,1.094134680786513e-05,0.0,0.0,0.0,0.0004331363960107226,7.496380541432632e-05,0.00010894008503205193,0.0,1.6705496310677106e-05 +99318,50.0,the Greater Atlanta and Macon Area,G1300450910600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8532.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002192150989460343,0.0,0.0,0.002192150989460343,0.001376659242390772,0.00020991055315036224,0.0005656336773031235,0.0,3.9947516616085484e-05,0.001376659242390772,0.00020991055315036224,0.0005656336773031235,0.0,3.9947516616085484e-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.0002612340367749054,8.586734401401214e-05,0.0002612340367749054,0.00016405359525064331,2.5014600465372948e-05,6.740537926819763e-05,0.0,4.760461790691542e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016405359525064331,2.5014600465372948e-05,6.740537926819763e-05,0.0,4.760461790691542e-06 +99319,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,72009.0,,4779.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006093267882377399,0.0014067808630803976,0.0,0.0075000487454577975,0.002366843816891434,0.002769276624273211,0.00236395899389945,0.0,0.0,0.0009600629538110361,0.002769276624273211,0.00236395899389945,0.0,0.0,0.0014067808630803976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.39923156888787e-05,0.0,0.0,0.0007261233854059857,0.00028553941993073365,0.0008201157010948643,0.00011440891417892897,0.0003300095377980263,0.0002817085906522565,0.0,0.0,9.39923156888787e-05,0.0,0.0,0.0,0.0,0.0,0.00025880975472959814,0.00030281499725143664,0.0002584943049624165,0.0,0.0 +99320,35.0,Eastern Counties in South Carolina and Georgia,G1300290920305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2551.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0005315583629225287,0.0,0.0,0.0005315583629225287,0.00022802340229927058,0.00015515847033494075,0.0001203387922906923,0.0,2.8037697997625213e-05,0.00022802340229927058,0.00015515847033494075,0.0001203387922906923,0.0,2.8037697997625213e-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,6.33407211831866e-05,2.0513863436649993e-05,6.33407211831866e-05,2.717136584752536e-05,1.8488749484932023e-05,1.433962180201284e-05,0.0,3.340984048716393e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.717136584752536e-05,1.8488749484932023e-05,1.433962180201284e-05,0.0,3.340984048716393e-06 +99321,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,48791.0,,4302.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002949144206081643,0.0007315724425527987,0.0,0.003680698918273021,0.0015828602854137937,0.00047866656725716554,0.000924780190947114,0.0,0.0006943741442935279,0.001049335979922985,0.00047866656725716554,0.0007267320538851242,0.0,0.0006943741442935279,0.0005335243054908088,0.00019804813706198978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8878885463830935e-05,0.0,0.0,0.00035144323904284954,0.0001371682370389847,0.0004003221245066805,0.00012504713566323557,5.7041676182355935e-05,8.660311232219893e-05,0.0,8.274708909618125e-05,3.564660435985886e-05,1.3232281103972068e-05,0.0,0.0,0.0,0.0,0.00017215588841246765,5.206098661952405e-05,0.00010058143275553339,0.0,7.552188832019928e-05 +99322,81.0,the Columbus-Albany Area,G1302150010401,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,2693.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.00030370037477073686,0.0,0.0,0.00030370037477073686,0.0001260455803787045,8.700784157375142e-05,6.533858825405287e-05,0.0,2.530836456422807e-05,0.0001260455803787045,8.700784157375142e-05,6.533858825405287e-05,0.0,2.530836456422807e-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,3.6191833408972117e-05,9.733297039692681e-06,3.6191833408972117e-05,1.5020793604377313e-05,1.0368684299084605e-05,7.786369388095854e-06,0.0,3.015986117414343e-06,0.0,0.0,0.0,0.0,0.0,0.0,1.5020793604377313e-05,1.0368684299084605e-05,7.786369388095854e-06,0.0,3.015986117414343e-06 +99323,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Electricity,3109.0,,305.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00041287371210662265,0.00024224901898243142,0.0,0.000655122731089054,0.0003711893469420117,0.00012860949966462306,0.0001281132572221872,0.0,2.7127920186492836e-05,0.00012894032795958028,0.00012860949966462306,0.0001281132572221872,0.0,2.7127920186492836e-05,0.00024224901898243142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6186289939675788e-05,0.0,0.0,4.919736290501818e-05,3.0019470757936486e-05,6.538365284469396e-05,1.536432066685163e-05,1.5324899702985433e-05,1.526576825718613e-05,0.0,3.232519037028438e-06,1.6186289939675788e-05,0.0,0.0,0.0,0.0,0.0,3.704605907928122e-05,1.2835700059777697e-05,1.2786173242826784e-05,0.0,2.707465993316453e-06 +99324,50.0,the Greater Atlanta and Macon Area,G1300770170501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,27234.0,,909.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006239835178262048,0.0007213710971542391,0.0,0.006961206275416288,0.003922217557939176,0.001581690078190515,0.0011899066698874158,0.0,0.0002673919693991809,0.003468155723110378,0.001581690078190515,0.0011899066698874158,0.0,0.0,0.0004540618348287977,0.0,0.0002673919693991809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.820051162793765e-05,0.0,0.0,0.0007435870122626086,0.0002666748713359491,0.0007917875238905462,0.00041329225508924335,0.0001884864208696418,0.0001417984802892458,0.0,0.0,3.0339464439048125e-05,0.0,1.7866573502995007e-05,0.0,0.0,0.0,0.00044612424994904627,0.00017990595609779133,0.00013534339000098955,0.0,3.041392784271907e-05 +99325,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,11639.0,,154.0,,4.088175128053588,Healthcare,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,12264.525384160763,0.0,0.0,0.001210423261792322,5.719267348759419e-05,0.0,0.0012676159352799164,0.0006380702942548872,0.0002100552052684608,0.00038190446469764795,0.0,3.7585971058920306e-05,0.0006380702942548872,0.0002100552052684608,0.0003247117912100538,0.0,3.7585971058920306e-05,0.0,5.719267348759419e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.820726086432065e-06,0.0,0.0,0.00014424287966992395,4.033744131570547e-05,0.00014806360575635597,7.603711823819187e-05,2.503171299989301e-05,3.86950295036162e-05,0.0,4.479018928222878e-06,0.0,3.820726086432065e-06,0.0,0.0,0.0,0.0,7.452966301858267e-05,2.4535452919398595e-05,4.460826858026057e-05,0.0,4.390221238114119e-06 +99326,50.0,the Greater Atlanta and Macon Area,G1301510070404,ComStock DOE Ref 1980-2004,gen5_led,200001_500000,Electricity,176264.0,,,32563.0,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,1133273.7058648225,0.0,0.0,0.015704945678754936,0.0,0.0031010619579576754,0.018806007636712606,0.003181315278426168,0.004969629326999607,0.010655063031286835,0.0,0.0,8.025332046849279e-05,0.004969629326999607,0.010655063031286835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031010619579576754,0.0,0.0,0.0,0.0,0.0002500967804068783,0.0018715280935434598,0.0007837306267441445,0.0021216248739503382,9.563633452111243e-06,0.0005922211442322285,0.00126974331585912,0.0,0.0,0.0,0.0,0.0,0.0002500967804068783,0.0,0.0,0.00035890433296490267,0.0005606553713129588,0.0012020651696724772,0.0,0.0 +99327,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,5280.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012678167333498435,0.0,0.0,0.0012678167333498435,0.0007442809565800275,0.00018898566349431748,0.00029485071788063096,0.0,3.961668832112825e-05,0.0007442809565800275,0.00018898566349431748,0.00029485071788063096,0.0,3.961668832112825e-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.00015108193142944503,4.376015383348981e-05,0.00015108193142944503,8.869373742146101e-05,2.2520856762755686e-05,3.51364789318267e-05,0.0,4.721002358582045e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.869373742146101e-05,2.2520856762755686e-05,3.51364789318267e-05,0.0,4.721002358582045e-06 +99328,35.0,Eastern Counties in South Carolina and Georgia,G1300510980000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,93989.0,,1756.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.008388482158169995,0.0005168129700533148,0.0,0.008905325817829608,0.001965485145730077,0.0026962660508909756,0.004243574621208555,0.0,0.0,0.0014486721756767622,0.0026962660508909756,0.004243574621208555,0.0,0.0,0.0005168129700533148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.453106782656418e-05,0.0,0.0,0.0009996401884406363,0.0003000199139685943,0.0010341712562672006,0.00017263563292815648,0.0003213091298732335,0.000505699082863908,0.0,0.0,3.453106782656418e-05,0.0,0.0,0.0,0.0,0.0,0.00022825085616346257,0.0003131160954827488,0.0004928043046209891,0.0,0.0 +99329,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,5785.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00041329692801116337,0.0,0.0,0.00041329692801116337,0.00021556379463506437,0.00011072809952211165,8.703572346028511e-05,0.0,0.0,0.00021556379463506437,0.00011072809952211165,8.703572346028511e-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,4.9252406373745664e-05,1.8656430156856514e-05,4.9252406373745664e-05,2.5688639071002418e-05,1.3195417108225615e-05,1.037200746090018e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5688639071002418e-05,1.3195417108225615e-05,1.037200746090018e-05,0.0,0.0 +99331,50.0,the Greater Atlanta and Macon Area,G1301530021113,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,244021.0,,1518.0,,7.614023970037612,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.051126655088012576,0.0010508961850346874,0.0,0.052177479106024535,0.03933506874263607,0.005123786447004379,0.0046046168854647854,0.0007805585178777075,0.0023335206800643186,0.03933506874263607,0.005123786447004379,0.0046046168854647854,0.0007805585178777075,0.0012826244950296317,0.0,0.0,0.0010508961850346874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.021311453940106e-05,0.0,0.0,0.006092660692970099,0.0013762633549980812,0.006162873807509499,0.004687481056035805,0.0006105913291432186,0.0005487229363228081,9.301758920566559e-05,0.0001528477822626012,0.0,0.0,7.021311453940106e-05,0.0,0.0,0.0,0.004646009524108791,0.0006051892469804939,0.0005438682221382048,9.21946350700858e-05,0.00027562070312418856 +99332,46.0,the Tallahassee-Valdosta Area,G1301850010301,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,21020.0,,302.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0023717910190891875,0.00011229293209149591,0.0,0.0024840839511806835,0.0012934223855121235,0.00034811583916839175,0.000779269550480357,0.0,6.32374275960391e-05,0.0012934223855121235,0.00034811583916839175,0.0006669766183888611,0.0,6.32374275960391e-05,0.0,0.00011229293209149591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.50334233318708e-06,0.0,0.0,0.0002826411354674616,9.649314765767192e-05,0.00029014447780064876,0.00015413430978441218,4.148420129128696e-05,7.948214123184802e-05,0.0,7.535865595211523e-06,0.0,7.50334233318708e-06,0.0,0.0,0.0,0.0,0.00015107354259976375,4.066041661822282e-05,9.101977277483072e-05,0.0,7.3862199377715525e-06 +99333,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,38017.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.003454207222458888,0.0,0.0,0.0034542072224588876,0.00233809893751926,0.0009191658661852457,0.00019694241875438284,0.0,0.0,0.00233809893751926,0.0009191658661852457,0.00019694241875438284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004116318244573876,0.00014192428741769468,0.0004116318244573876,0.0002786271550691216,0.00010953538630130373,2.3469283086962307e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027862715506912165,0.00010953538630130374,2.346928308696231e-05,0.0,0.0 +99334,50.0,the Greater Atlanta and Macon Area,G1300210011100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,9410.0,,669.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0004843934739958426,0.00011368707742537855,0.0,0.000598080551421221,0.0002391471148336722,0.00015808390242119078,4.682588451035946e-05,0.0,0.00015400591929457864,0.00021794160257528907,0.00015808390242119078,4.682588451035946e-05,0.0,6.152435412758323e-05,2.1205512258383154e-05,0.0,9.248156516699541e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.596011864990859e-06,0.0,0.0,5.772340731160489e-05,2.3929091605051768e-05,6.531941917659575e-05,2.597130756494317e-05,1.8838283293933717e-05,5.580070230964441e-06,0.0,7.331633359124048e-06,1.416848127031982e-06,0.0,6.179163737958877e-06,0.0,0.0,0.0,2.6118472840445976e-05,1.7265147082252097e-05,5.114093028737977e-06,0.0,1.6819769802202976e-05 +99335,50.0,the Greater Atlanta and Macon Area,G1301510070310,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5238.0,,339.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012578091774273874,0.0002691288179477063,0.0,0.0015269379953750935,0.0010485602808669398,0.00024911370610279394,0.0001826999258901301,0.0,4.656408251523008e-05,0.0007794314629192332,0.00024911370610279394,0.0001826999258901301,0.0,4.656408251523008e-05,0.0002691288179477063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7979570805316047e-05,0.0,0.0,0.00014989178341649948,6.836046755932615e-05,0.00016787135422181553,9.288401939223376e-05,2.9686615705582347e-05,2.1772156073582807e-05,0.0,5.548992245100552e-06,1.7979570805316047e-05,0.0,0.0,0.0,0.0,0.0,0.00011527857376363223,2.7387526753120378e-05,2.008600484649499e-05,0.0,5.119248858567986e-06 +99336,50.0,the Greater Atlanta and Macon Area,G1301350050430,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12694.0,,238.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002792604344807715,0.00018906837056805674,0.0,0.0029816727153757715,0.0013300951598755422,0.0005644757782707733,0.0010071240369235466,0.0,7.989503323217097e-05,0.0011410267893074853,0.0005644757782707733,0.0010071240369235466,0.0,7.989503323217097e-05,0.00018906837056805674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2632314092738269e-05,0.0,0.0,0.0003327887666146135,9.612163269813116e-05,0.00034542108070735177,0.00013597375460433017,6.726738729882239e-05,0.00012001684617403078,0.0,9.520922509987166e-06,1.2632314092738267e-05,0.0,0.0,0.0,0.0,0.0,0.0001540889800542463,6.539343917859912e-05,0.0001166733932421687,0.0,9.255686776047873e-06 +99337,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,52427.0,,2755.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004548475859776233,0.0008108807775979028,0.0,0.0053593873269804325,0.0016267332714160335,0.0013686643720586512,0.00236395899389945,0.0,0.0,0.0008158524938181307,0.0013686643720586512,0.00236395899389945,0.0,0.0,0.0008108807775979028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.417922102405078e-05,0.0,0.0,0.0005420340488343914,0.00021675170498623058,0.0005962132698584423,9.722373914008906e-05,0.00016310138032013812,0.0002817089293741642,0.0,0.0,5.417922102405078e-05,0.0,0.0,0.0,0.0,0.0,0.00018096843981696702,0.00015225916897176322,0.0002629822469573508,0.0,0.0 +99338,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,91002.0,,2786.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.008119948103065096,0.0008199955906683206,0.0,0.008939943693733415,0.004939062479127095,0.0015292937714208273,0.002471587443185494,0.0,0.0,0.004119066888458775,0.0015292937714208273,0.002471587443185494,0.0,0.0,0.0008199955906683206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4786998144911525e-05,0.0,0.0,0.0009676375539125782,0.00037446320316891714,0.0010224245520574899,0.0004908607490786804,0.00018224280074312287,0.00029453400409077486,0.0,0.0,5.4786998144911525e-05,0.0,0.0,0.0,0.0,0.0,0.0005648602402658554,0.00017489903211641796,0.00028266527967521667,0.0,0.0 +99339,85.0,Rural Climate Zone 3A,G1302090950300,ComStock 90.1-2004,gen5_led,1001_5000,Electricity,12005.0,,169.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0014266394664405441,6.27724465107741e-05,0.0,0.0014894119129513182,0.0008729632391612532,0.00016495203999775644,0.00041387191430961625,0.0,3.762471948269239e-05,0.0008729632391612532,0.00016495203999775644,0.00035109946779884215,0.0,3.762471948269239e-05,0.0,6.27724465107741e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.193810871889702e-06,0.0,0.0,0.00017000978156757625,5.8614943109815685e-05,0.00017420359243946595,0.00010402928917746552,1.965700581599142e-05,4.1839823748813306e-05,0.0,4.483662825306006e-06,0.0,4.193810871889702e-06,0.0,0.0,0.0,0.0,0.0001021029380838943,1.9293009340101114e-05,4.840700793084801e-05,0.0,4.4006370846225465e-06 +99340,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,5655.0,,517.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00039123110108311505,0.00015212837841771268,0.0,0.0005433594795008277,0.0002620585481760841,0.00018785108014823874,9.348054078280269e-05,0.0,0.0,0.00010993016975837137,0.00018785108014823874,9.348054078280269e-05,0.0,0.0,0.00015212837841771268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0163831219520856e-05,0.0,0.0,4.6623125108486814e-05,2.5271467992963158e-05,5.678695632800767e-05,1.3100410585079995e-05,2.2386268339272656e-05,1.1140103473521404e-05,0.0,0.0,1.0163831219520856e-05,0.0,0.0,0.0,0.0,0.0,2.7387959338314463e-05,1.9632474424384917e-05,9.769729961881469e-06,0.0,0.0 +99341,50.0,the Greater Atlanta and Macon Area,G1301130140203,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,88570.0,,18842.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004589220367797948,0.0032043372980004622,0.0,0.0077935753961598285,0.0038950412574800396,0.001086888885410657,0.0010242652488750303,0.0,0.001787344543671263,0.0024221978646776737,0.001086888885410657,0.0008344262691505251,0.0,0.00024568961819767165,0.001472843392802366,0.00018983897972450533,0.0015416549254735914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021409562942700848,0.0,0.0,0.0005468888365137484,0.0003464762420122543,0.0007609844659407569,0.0002886488043404371,0.00012952252241641083,9.943702304956081e-05,0.0,2.927837381322009e-05,9.840703518515414e-05,1.268396303949061e-05,0.00010300463120236377,0.0,0.0,0.0,0.0003803217060812888,0.00010612658708719462,0.00010001185640430246,0.0,0.0001745208538930658 +99342,50.0,the Greater Atlanta and Macon Area,G1300450910104,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,5052.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001213064650534422,0.0,0.0,0.001213064650534422,0.000541317797623767,0.0002764070404367654,0.0003542343968254537,0.0,4.118812272217509e-05,0.000541317797623767,0.0002764070404367654,0.0003542343968254537,0.0,4.118812272217509e-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.00014456005246640704,4.234548050482288e-05,0.00014456005246640704,6.450845731183159e-05,3.2939230609036096e-05,4.221386136998851e-05,0.0,4.908359318761213e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.450845731183159e-05,3.2939230609036096e-05,4.221386136998851e-05,0.0,4.908359318761213e-06 +99343,50.0,the Greater Atlanta and Macon Area,G1300890021410,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,32087.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0026021062638321986,0.0,0.0,0.0026021062638321986,0.0014689583896079915,0.0009506632888021942,0.00018248458542201293,0.0,0.0,0.0014689583896079915,0.0009506632888021942,0.00018248458542201293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003100875586374879,6.617446771424648e-05,0.0003100875586374879,0.00017505269754155282,0.00011328855489430061,2.1746306201634494e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017505269754155282,0.00011328855489430061,2.1746306201634494e-05,0.0,0.0 +99344,81.0,the Columbus-Albany Area,G1302150010402,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12129.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002720070241138342,0.0,0.0,0.002720070241138342,0.0011289515565415466,0.0007236041881452006,0.0007967172413307484,0.0,7.079725512084716e-05,0.0011289515565415466,0.0007236041881452006,0.0007967172413307484,0.0,7.079725512084716e-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.0003241488333609671,0.00010193223075662212,0.0003241488333609671,0.00013453635293654836,8.62313957393305e-05,9.494422621522127e-05,0.0,8.43685846986706e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013453635293654836,8.62313957393305e-05,9.494422621522127e-05,0.0,8.43685846986706e-06 +99345,50.0,the Greater Atlanta and Macon Area,G1301210007002,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,22788.0,,2330.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.004180761182888872,0.0008659110260347341,0.0,0.005046672208923607,0.002223694543432287,0.0005167489794244961,0.0020725369422973923,0.0,0.00023369174376943123,0.0018801897666927735,0.0005167489794244961,0.0017837836883478311,0.0,0.0,0.00034350477673951386,0.00028875325394956097,0.00023369174376943123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7856057071267854e-05,0.0,0.0,0.0004982116785863242,0.00020661350577995356,0.000556067735657592,0.0002240578829421587,6.15797853990196e-05,0.00021256939268475309,0.0,0.0,2.2951355704872665e-05,1.929311931333459e-05,1.5614171038475693e-05,0.0,0.0,0.0,0.00024501785302681074,5.6938002508635046e-05,0.00022836254800385146,0.0,2.5749332118294682e-05 +99346,50.0,the Greater Atlanta and Macon Area,G1301350050714,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,176568.0,,5808.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014185898496603675,0.0016921435982765916,0.0,0.015878042094880265,0.01073721926924246,0.004161426111767501,0.0009793663402708698,0.0,0.0,0.009045075670965866,0.004161426111767501,0.0009793663402708698,0.0,0.0,0.0016921435982765916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011305941925204193,0.0,0.0,0.0016905053298405023,0.0005270275958015943,0.0018035647490925444,0.0010778836909230173,0.0004959088790438381,0.00011670914031216806,0.0,0.0,0.00011305941925204193,0.0,0.0,0.0,0.0,0.0,0.0012196258242398205,0.0004726906123745046,0.00011124486238324428,0.0,0.0 +99347,50.0,the Greater Atlanta and Macon Area,G1301350050524,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,41329.0,,4.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.003682384480448762,1.0741362204195974e-06,0.0,0.0036834586166691807,0.0015002307142569027,0.0009743029311331702,0.0012088942816728106,0.0,0.0,0.0014991565780364832,0.0009743029311331702,0.0012088942816728106,0.0,0.0,1.0741362204195974e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.243922421998832e-08,0.0,0.0,0.00043882161017682594,0.00015660710267200923,0.00043889404940104587,0.0001786511720799394,0.0001161055243714679,0.0001440612565129459,0.0,0.0,7.243922421998832e-08,0.0,0.0,0.0,0.0,0.0,0.0001787565442533575,0.00011609082747752516,0.0001440430209206286,0.0,0.0 +99348,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,68585.0,,38974.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.017091873172614337,0.026810144405142674,0.0,0.04390201757775701,0.022062999523619377,0.0014003324340798057,0.007830386435484414,0.0003733024491362556,0.012235068455408166,0.011465728326323707,0.0014003324340798057,0.0024972893907635766,0.0003733024491362556,0.0013552205723109867,0.010597271197295673,0.0053330970447208375,0.01087984788309718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017912994160417636,0.0,0.0,0.002036803295586797,0.002392168080493702,0.0038281027116285602,0.001366347211069723,0.0001668747297528983,0.0002975968291931328,4.448568339891604e-05,0.00016149884217212633,0.0007080486184815431,0.0003563268245608561,0.0007269287649147029,0.0,0.0,0.0,0.0019238165570280852,0.00012210410099234908,0.0006827823685707899,3.2550670712685124e-05,0.0010668552680558152 +99349,50.0,the Greater Atlanta and Macon Area,G1300670030320,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,NaturalGas,242347.0,,29619.0,,9.525004485617233,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.0,0.06039002612710849,0.0256472673232034,0.0,0.08603738372993512,0.026487228937691516,0.004220030708043028,0.035716334260766626,0.0006633746714594424,0.0189504151519745,0.023585461287984198,0.004220030708043028,0.022289948694701262,0.0006633746714594424,0.009631301044543777,0.0029017676497073205,0.01342638556606536,0.00931911410743072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001713603244950088,0.0,0.0,0.007196567470719267,0.0037817908245068362,0.008910170715669354,0.002810635702156511,0.0005028932369563287,0.0026562518678607014,7.905312992373574e-05,0.0011477442922773406,0.00019387946473856853,0.0008970740462920764,0.0006226497339194431,0.0,0.0,0.0,0.0027430602999348875,0.00043703321049437906,0.0036988413850456915,6.870015468750424e-05,0.0019625356655068914 +99350,50.0,the Greater Atlanta and Macon Area,G1301170130406,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,33384.0,,8354.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007763605503975486,0.0064789702433657856,0.0,0.01424257574734127,0.003815739492220756,0.0007346202141775745,0.008709919248226465,0.00041255171521562857,0.0005697450775008465,0.003116940604942539,0.0007346202141775745,0.002929747892138898,0.00041255171521562857,0.0005697450775008465,0.0006987988872782167,0.005780171356087568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004328854624281149,0.0,0.0,0.0009251770374862804,0.0006796593065758309,0.0013580624999143952,0.00037144106220038793,8.75435714865106e-05,0.0003491335918656305,4.9163159243167545e-05,6.78956526905838e-05,4.6689499735460444e-05,0.0003861959626926544,0.0,0.0,0.0,0.0,0.0003638395754921476,7.004773450054378e-05,0.0008305109214888358,3.933775909981006e-05,5.4326509333057956e-05 +99351,50.0,the Greater Atlanta and Macon Area,G1300670030312,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,6642.0,,463.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0015930209472928,0.00036738482155000354,0.0,0.0019604057688428042,0.0009572516714587441,0.00046638518881595456,0.0004645656331936898,0.0,7.212056830067607e-05,0.0006619874182094167,0.00046638518881595456,0.0004645656331936898,0.0,0.0,0.00029526425324932743,0.0,7.212056830067607e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4547182627733815e-05,0.0,0.0,0.000189836916495993,7.276231423712247e-05,0.00021438409912372686,7.888763198348623e-05,5.5578130529095306e-05,5.5361297957426555e-05,0.0,0.0,1.9728375052005787e-05,0.0,4.818807575728025e-06,0.0,0.0,0.0,0.00010468217370197926,5.100248639238474e-05,5.0803505243132665e-05,0.0,7.886889188536883e-06 +99352,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000500,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Propane,19984.0,,,2594.0,3.20458438519356,Mercantile,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,24034.3828889517,0.0,0.0,0.001762215492179485,0.0,0.0002445074754739022,0.002006753341252825,0.0014901287884161048,0.0004143870171292481,0.00010220716210803489,0.0,0.0,0.0012456213129422025,0.0004143870171292481,0.00010220716210803489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002445074754739022,0.0,0.0,0.0,0.0,1.9720299215604507e-05,0.00021000123381446583,7.448779048548205e-05,0.0002297215330300703,0.00014843928778536397,4.938203372971764e-05,1.217991229938429e-05,0.0,0.0,0.0,0.0,0.0,1.9720299215604507e-05,0.0,0.0,0.00017058133785065996,4.743663253763867e-05,1.1700085647522841e-05,0.0,0.0 +99353,50.0,the Greater Atlanta and Macon Area,G1300890021209,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,11103.0,,1187.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0008910113396412048,0.0003494318573056438,0.0,0.0012404738865531464,0.0007046333605952558,0.0003209825922676735,0.0002148579336902172,0.0,0.0,0.00035520150328961206,0.0003209825922676735,0.0002148579336902172,0.0,0.0,0.0003494318573056438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3347767255409944e-05,0.0,0.0,0.00010618099953285949,5.525199850501678e-05,0.00012952876678826942,4.2329035531750625e-05,3.8251199466613084e-05,2.5604421786572158e-05,0.0,0.0,2.3347767255409944e-05,0.0,0.0,0.0,0.0,0.0,7.357695411822527e-05,3.351660989209575e-05,2.2435202777948402e-05,0.0,0.0 +99354,50.0,the Greater Atlanta and Macon Area,G1300890021705,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Propane,13070.0,,,2390.0,3.20458438519356,Mercantile,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,24034.3828889517,0.0,0.0,0.0010965476869017163,0.0,0.00022528098702980534,0.0013218286739315214,0.0007970032492466078,0.0004106814379978424,0.00011414398668707136,0.0,0.0,0.0005717222622168025,0.0004106814379978424,0.00011414398668707136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022528098702980534,0.0,0.0,0.0,0.0,1.816763126143242e-05,0.00013067417796393618,5.323775289983121e-05,0.00014884180922536858,6.813140689754502e-05,4.894037893331065e-05,1.36023921330805e-05,0.0,0.0,0.0,0.0,0.0,1.816763126143242e-05,0.0,0.0,8.974491771579476e-05,4.624394178488037e-05,1.285294972469347e-05,0.0,0.0 +99355,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,8904.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0028686121455741387,0.0,0.0,0.0028686121455741387,0.0011760118814992122,0.0010583197155681777,0.0005538892728321419,0.0,8.030856860086751e-05,0.0011760118814992122,0.0010583197155681777,0.0005538892728321419,0.0,8.030856860086751e-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.0003418430074734653,0.00011183763189960208,0.0003418430074734653,0.00014014144052777082,0.00012611645495417084,6.600514995530497e-05,0.0,9.570106108197868e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014014144052777082,0.00012611645495417084,6.600514995530497e-05,0.0,9.570106108197868e-06 +99356,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7520.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015717652293417983,0.0,0.0,0.0015717652293417983,0.0009660186212751107,0.00020163984577643151,0.000361595326388252,0.0,4.242872882826471e-05,0.0009660186212751107,0.00020163984577643151,0.000361595326388252,0.0,4.242872882826471e-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.0001873003249463923,6.486104413299233e-05,0.0001873003249463923,0.00011511617529856147,2.402853042618946e-05,4.308971904155057e-05,0.0,5.056044343164557e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011511617529856147,2.402853042618946e-05,4.308971904155057e-05,0.0,5.056044343164557e-06 +99357,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,104351.0,,12072.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005795948766046741,0.0020529808184664936,0.0,0.007848929584513236,0.0036758230688825077,0.001576122748074174,0.0015627008644791937,0.0,0.0010342829030773602,0.003472136676888941,0.001576122748074174,0.0005668219242376681,0.0,0.00018086741684595866,0.00020368639199356655,0.0009958789402415257,0.0008534154862314014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013716800016716195,0.0,0.0,0.0006906915260698071,0.00033161539054348156,0.000827859526236969,0.0004137675257124644,0.00018782336940552418,6.754702563193471e-05,0.0,2.1553605319883822e-05,1.3609116461152238e-05,6.653872331041077e-05,5.702016039559894e-05,0.0,0.0,0.0,0.0003877044776067659,0.00016624027741139622,0.00016482461504947722,0.0,0.00010909015616932961 +99358,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,33950.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008537685807961225,0.0,0.0,0.008537685807961225,0.005052161599365594,0.0016261037767885233,0.0017108785273713136,0.0,0.0001485419044357961,0.005052161599365594,0.0016261037767885233,0.0017108785273713136,0.0,0.0001485419044357961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001017418875530866,0.0003521265147454094,0.001017418875530866,0.0006020559539253202,0.00019377952214333672,0.00020388195895717733,0.0,1.7701440505031925e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0006020559539253202,0.00019377952214333672,0.00020388195895717733,0.0,1.7701440505031925e-05 +99359,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,22445.0,,4708.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025659579825509297,0.0013859733100105554,0.0,0.003951931292561485,0.0017141986493644868,0.000988481529242709,0.0012492511139542896,0.0,0.0,0.00032822533935393126,0.000988481529242709,0.0012492511139542896,0.0,0.0,0.0013859733100105554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.2602844667705e-05,0.0,0.0,0.0003057816695098499,0.00019938336891091462,0.00039838451417755486,3.911416045219285e-05,0.00011779597886906776,0.00014887153018858928,0.0,0.0,9.2602844667705e-05,0.0,0.0,0.0,0.0,0.0,0.00017280416727292252,9.964640188508954e-05,0.00012593394501954285,0.0,0.0 +99360,46.0,the Tallahassee-Valdosta Area,G1301850011200,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,77914.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.006583565032589498,0.0,0.0,0.006583565032589498,0.0023180473428780868,0.0017131858923566628,0.0025523317973547496,0.0,0.0,0.0023180473428780868,0.0017131858923566628,0.0025523317973547496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007845518357821425,0.0002284550183212674,0.0007845518357821425,0.0002762376143142014,0.00020415734184003686,0.00030415687962790435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002762376143142014,0.00020415734184003686,0.00030415687962790435,0.0,0.0 +99361,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,34421.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029733011269403387,0.0,0.0,0.0029733011269403387,0.0011489881701796946,0.0007768766938200483,0.001047436262940596,0.0,0.0,0.0011489881701796946,0.0007768766938200483,0.001047436262940596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003543235817974578,0.00011851042143220413,0.0003543235817974578,0.00013692309877806245,9.25791640393139e-05,0.0001248213189800815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013692309877806245,9.25791640393139e-05,0.0001248213189800815,0.0,0.0 +99362,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,105392.0,,9970.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004866735984744614,0.001695501271515389,0.0,0.006562237256260004,0.0029429208492232043,0.0015644207095369391,0.0006693388739684134,0.0,0.0013855568235314462,0.0024218432574492723,0.0015644207095369391,0.0006693388739684134,0.0,0.00021113314378998874,0.0005210775917739317,0.0,0.0011744236797414573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011328340575975984,0.0,0.0,0.0005799600281236795,0.00024702714881699256,0.0006932434338834393,0.0002886066324748721,0.00018642915529923108,7.976388967632967e-05,0.0,2.516035067324663e-05,3.4815334705403094e-05,0.0,7.846807105435674e-05,0.0,0.0,0.0,0.000310894055714987,0.00016526747546093056,7.070984502715039e-05,0.0,0.00014637205768037125 +99363,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,26243.0,,5926.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0083131353857092,0.004595641744916705,0.0,0.012908777130625906,0.0037888937122420047,0.0008069906150239067,0.007218361243744402,0.0004135220446124509,0.0006811712365692778,0.0037888937122420047,0.0008069906150239067,0.0026227194988276974,0.0004135220446124509,0.0006811712365692778,0.0,0.004595641744916705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030705374303288566,0.0,0.0,0.000990663843264372,0.0005977823916095955,0.0012977175862972576,0.000451516766242303,9.616785810227251e-05,0.0003125455388323857,4.927880023397011e-05,8.117415196929296e-05,0.0,0.00030705374303288566,0.0,0.0,0.0,0.0,0.0003808969628364128,8.112665533660709e-05,0.0007256608612468514,4.1571314167475826e-05,6.847805055667117e-05 +99364,50.0,the Greater Atlanta and Macon Area,G1302170100201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Propane,34916.0,,,7900.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003078911027806027,0.0,0.0007446391638159238,0.0038235501916219507,0.0025128990022835213,0.0009084136119842815,0.00040220720375470963,0.0,0.0,0.0017682598384675978,0.0009084136119842815,0.00040220720375470963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007446391638159238,0.0,0.0,0.0,0.0,6.00550748275397e-05,0.00036690684432100885,0.00014941132141561465,0.00042696191914854857,0.00021071951459865213,0.00010825358988983436,4.7930120279563555e-05,0.0,0.0,0.0,0.0,0.0,6.005507482753969e-05,0.0,0.0,0.00028060627607096104,0.00010143923832969073,4.4913013038710873e-05,0.0,0.0 +99365,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,110816.0,,14997.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005704265067143648,0.002550423838467495,0.0,0.008254706635972562,0.003153344778556391,0.0015115133110595014,0.0029570874079978262,0.0,0.0006327256776360044,0.0027658831904439772,0.0015115133110595014,0.0007941251576427451,0.0,0.0006327256776360044,0.0003874615881124139,0.0021629622503550813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017040498328747074,0.0,0.0,0.0006797666347279047,0.00035081009107735417,0.0008501716180153754,0.0003296051439208541,0.00018012422366617828,9.463441470714909e-05,0.0,7.540073953960397e-05,2.58880051429045e-05,0.00014451697814456624,0.0,0.0,0.0,0.0,0.00032477038261575526,0.00015567430485236507,0.0003045573752209067,0.0,6.516590314324342e-05 +99366,50.0,the Greater Atlanta and Macon Area,G1301350050107,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,193013.0,,28535.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.009935403055702207,0.004852675808138511,0.0,0.014788078863840723,0.00822722457577148,0.003494281898302586,0.0016921325028455792,0.0,0.0013744398869210731,0.004946824027278992,0.003494281898302586,0.0012112851011337473,0.0,0.00028301202898688285,0.003280400548492489,0.00048084740171183183,0.0010914278579341903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032422750237517766,0.0,0.0,0.0011839828605485143,0.000687594718166546,0.0015082103629236918,0.000589503498711754,0.00041640684875293005,0.00014434651427221534,0.0,3.372599881161499e-05,0.00021917723719439616,3.212741964323098e-05,7.292284553755052e-05,0.0,0.0,0.0,0.0008390802806454838,0.00035637571441973564,0.00017257764174303866,0.0,0.00014017672611543335 +99367,50.0,the Greater Atlanta and Macon Area,G1301390001606,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,129504.0,,5812.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006277150774986974,0.0009884499188065237,0.0,0.007265600693793496,0.0027133126688335205,0.001676565245518773,0.001452949927289067,0.0,0.0014227728521521374,0.0021915435929642066,0.001676565245518773,0.0009862690843518572,0.0,0.0014227728521521374,0.0005217690758693138,0.00046668084293720975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.604213886663527e-05,0.0,0.0,0.0007480359106940852,0.00024254868998824716,0.0008140780495607205,0.0002611620090314255,0.00019979303592118836,0.00011753177821415227,0.0,0.00016954908752731906,3.4861397739283976e-05,3.1180741127351285e-05,0.0,0.0,0.0,0.0,0.0003040145444793371,0.0001878516343733444,0.000162796538478542,0.0,0.00015941533222949719 +99368,50.0,the Greater Atlanta and Macon Area,G1302970110700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8513.0,,253.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034026517207088464,0.00020039923967034187,0.0,0.0036030509603791885,0.0014295917695839285,0.0011244026674858845,0.000967424641528679,0.0,8.163188178069643e-05,0.0012291925299135866,0.0011244026674858845,0.000967424641528679,0.0,8.163188178069643e-05,0.00020039923967034187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3390487141982754e-05,0.0,0.0,0.0004054883053409026,0.00013784352541663052,0.0004188787924828854,0.00014648081461258826,0.0001339931822539455,0.00011528637387454215,0.0,9.727934599826715e-06,1.3390487141982754e-05,0.0,0.0,0.0,0.0,0.0,0.0001661996127092708,0.00013071933669554743,0.00011246959038821757,0.0,9.490252689849599e-06 +99370,50.0,the Greater Atlanta and Macon Area,G1302970110700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,61003.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012252272901444476,0.0,0.0,0.012252272901444476,0.002454922986965841,0.005123230806519609,0.004674088418352729,0.0,0.0,0.002454922986965841,0.005123230806519609,0.004674088418352729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014600796434273606,0.00043124294152215476,0.0014600796434273606,0.0002925484200591171,0.0006105254975423646,0.0005570020686049062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002925484200591171,0.0006105254975423646,0.0005570020686049062,0.0,0.0 +99371,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,13473.0,,3376.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012366376857659337,0.0009936987623133183,0.0,0.0022303364480792524,0.0012329856226165068,0.0004771313091103852,0.0005201888267460621,0.0,0.0,0.0002392868603031886,0.0004771313091103852,0.0005201888267460621,0.0,0.0,0.0009936987623133183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.639313670708226e-05,0.0,0.0,0.00014736874418385477,0.00011298600334297736,0.00021376188089093702,2.8515550276746882e-05,5.6859209972115404e-05,6.199032668858017e-05,0.0,0.0,6.639313670708226e-05,0.0,0.0,0.0,0.0,0.0,0.0001181728998909415,4.572964144276354e-05,4.9856398176808506e-05,0.0,0.0 +99372,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300050970201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,36362.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0031743752508388806,0.0,0.0,0.0031743752508388806,0.0017784349942792446,0.0010197328539236418,0.0003762074026359941,0.0,0.0,0.0017784349942792446,0.0010197328539236418,0.0003762074026359941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003782847749029914,0.0001099205990037745,0.0003782847749029914,0.00021193300360842352,0.0001215197897620167,4.483198153255114e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021193300360842352,0.0001215197897620167,4.483198153255114e-05,0.0,0.0 +99373,35.0,Eastern Counties in South Carolina and Georgia,G1302450010504,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,42323.0,,12403.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,56751.431377317895,0.0,0.0,0.008878215212022493,0.008532238071843183,0.0,0.017410453283865677,0.0066274990816105874,0.0012350179008888222,0.005835782321569256,0.00037165288980289644,0.003340501089994116,0.005767433189191379,0.0012350179008888222,0.0011176840283072826,0.00037165288980289644,0.0003864272038321123,0.0008600658924192078,0.004718098293261972,0.0029540738861620034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005700754439357952,0.0,0.0,0.0010580019542486075,0.000923217516803573,0.0016280773981844025,0.0006872952997241782,0.0001471750032487359,0.00013319252326529039,4.428924894511901e-05,4.6049879065283916e-05,5.74646934727406e-05,0.0003152363959393128,0.0001973743545237418,0.0,0.0,0.0,0.0006197473026883961,0.00011548836196318695,0.0005457126901615887,3.47538148486199e-05,0.0003123752285226108 +99374,50.0,the Greater Atlanta and Macon Area,G1300670031508,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4648.0,,545.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0004140948577749036,0.00016041457211809246,0.0,0.000574509429892996,0.000318957078252025,0.00013730529857592223,0.00011824705306504881,0.0,0.0,0.00015854250613393258,0.00013730529857592223,0.00011824705306504881,0.0,0.0,0.00016041457211809246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0718749051770656e-05,0.0,0.0,4.934724768511405e-05,2.886454431029749e-05,6.006599673688471e-05,1.889334332922991e-05,1.6362527691632717e-05,1.4091376664251421e-05,0.0,0.0,1.0718749051770656e-05,0.0,0.0,0.0,0.0,0.0,3.334753761145528e-05,1.4355516527821695e-05,1.2362942597607734e-05,0.0,0.0 +99375,50.0,the Greater Atlanta and Macon Area,G1300890020900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,30822.0,,1315.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0070678156934662565,0.0010435151493688416,0.0,0.008111413549908837,0.0031008536086341134,0.0012702979455620227,0.003611900617269294,0.0,0.00012836137844340513,0.002057338459265272,0.0012702979455620227,0.003611900617269294,0.0,0.00012836137844340513,0.0010435151493688416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.972262272806088e-05,0.0,0.0,0.000842262277272591,0.0003071608571932521,0.000911984900000652,0.00024517031158907156,0.00015137973128428342,0.0004304254342675917,0.0,1.5296656224572424e-05,6.972262272806088e-05,0.0,0.0,0.0,0.0,0.0,0.00034863611019051366,0.0001428225225759122,0.000406094301934544,0.0,1.4431965299681994e-05 +99376,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,59788.0,,2622.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005073482954711034,0.0007716901503557362,0.0,0.005845173105066769,0.0015493033947269297,0.0017166538178683029,0.0025792158924715374,0.0,0.0,0.0007776132443711932,0.0017166538178683029,0.0025792158924715374,0.0,0.0,0.0007716901503557362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.156009461800765e-05,0.0,0.0,0.0006045985255911176,0.0002221241195011592,0.0006561586202091252,9.266687701993599e-05,0.00020457078036889806,0.0003073608682022835,0.0,0.0,5.156009461800765e-05,0.0,0.0,0.0,0.0,0.0,0.0001739193620952178,0.00019270553331137414,0.00028953372480253333,0.0,0.0 +99377,85.0,Rural Climate Zone 3A,G1302930010201,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,20323.0,,1256.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016771390401543425,0.00036594112602603385,0.0,0.002043110539779814,0.0014113396714745762,0.0005218184383405764,0.0001099524299646616,0.0,0.0,0.0010453985454485424,0.0005218184383405764,0.0001099524299646616,0.0,0.0,0.00036594112602603385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4450937920375082e-05,0.0,0.0,0.00019986252574991548,7.412752558568579e-05,0.00022431346367029052,0.0001245788146994692,6.218443943683192e-05,1.31028911968179e-05,0.0,0.0,2.4450937920375082e-05,0.0,0.0,0.0,0.0,0.0,0.0001549512294904368,5.7290537654321525e-05,1.2071696525532242e-05,0.0,0.0 +99378,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,295464.0,,1043.0,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,1398753.3485215676,0.0,0.0,0.07377779209479299,0.0008839299647076031,0.0,0.07466172205950058,0.02887280644844431,0.010802046645002414,0.03404955496988107,0.0,0.0009373139961727958,0.02798887648373671,0.010802046645002414,0.03404955496988107,0.0,0.0009373139961727958,0.0008839299647076031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.906019895154178e-05,0.0,0.0,0.008791955517282167,0.003005473016633914,0.008851015716233708,0.0033353797943363153,0.001287258820058551,0.004057619022995625,0.0,0.0001116978798916757,5.906019895154178e-05,0.0,0.0,0.0,0.0,0.0,0.0034228203769971276,0.0012805636139253751,0.004036514801105256,0.0,0.00011111692420595006 +99379,85.0,Rural Climate Zone 3A,G1301330950303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,90174.0,,4209.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.004641719967962724,0.0007157037690818513,0.0,0.0053574237370445765,0.002477037872549897,0.001055701179672784,0.001245061439638948,0.0,0.0005796409755443662,0.0022176249546131043,0.001055701179672784,0.0007887705884938891,0.0,0.0005796409755443662,0.00025941291793679254,0.0004562908511450589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.781863562400559e-05,0.0,0.0,0.0005531454086391492,0.00021116258743489357,0.0006009640442631547,0.0002642703718006134,0.00012580600821708674,9.399637042009905e-05,0.0,6.907477109658727e-05,1.7332271164218053e-05,3.048636445978755e-05,0.0,0.0,0.0,0.0,0.0002778594284763033,0.0001184223017646776,0.00013966361349163937,0.0,6.502068941740015e-05 +99380,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7391.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0014976596912713788,0.0,0.0,0.0014976596912713788,0.0005325508478074006,0.0006421377205119828,0.00027797847483781226,0.0,4.4909941040443926e-05,0.0005325508478074006,0.0006421377205119828,0.00027797847483781226,0.0,4.4909941040443926e-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.0001784759783198628,5.94100438393847e-05,0.0001784759783198628,6.34640393418156e-05,7.65234976626582e-05,3.312667125762419e-05,0.0,5.351913862805693e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.34640393418156e-05,7.65234976626582e-05,3.312667125762419e-05,0.0,5.351913862805693e-06 +99381,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000102,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,14133.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0012462895321298329,0.0,0.0,0.0012462895321298329,0.0006441632968758406,0.0004991597331600135,0.00010296650209397867,0.0,0.0,0.0006441632968758406,0.0004991597331600135,0.00010296650209397867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014851656835211907,4.393703004201786e-05,0.00014851656835211907,7.67629991619161e-05,5.948336138376693e-05,1.2270207806436041e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.67629991619161e-05,5.948336138376693e-05,1.2270207806436041e-05,0.0,0.0 +99382,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,335898.0,,48091.0,,9.525004485617233,Lodging,Zone-by-Zone,2013 to 2018,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.0,0.08582071263419441,0.04164228872927476,0.0,0.12746309164309239,0.0414072005903961,0.016833719105834314,0.05062357648659643,0.0004333421914813995,0.018165253268784137,0.03847455730954573,0.016833719105834314,0.020801959944702002,0.0004333421914813995,0.00927713408263096,0.0029326432808503707,0.02982161654189443,0.008888119186153178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00278229624708241,0.0,0.0,0.010227092560379233,0.006235234153684837,0.013009388807461641,0.00458494047353739,0.002006042575812828,0.00247893035680763,5.164057214822095e-05,0.0011055385820731634,0.00019594221747483518,0.0019925074802171817,0.0005938525813512806,0.0,0.0,0.0,0.004226183163808509,0.0017181161550404163,0.005166843051182938,4.4228623227220554e-05,0.0018540178142025568 +99383,50.0,the Greater Atlanta and Macon Area,G1300570091102,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,40545.0,,7805.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.00241748158853994,0.001327330316627993,0.0,0.003744811905167933,0.0018531064541782384,0.000461680881016755,0.0007320688926725602,0.0,0.0006979556773003785,0.0011022965694846827,0.000461680881016755,0.0007320688926725602,0.0,0.00012143524536594161,0.0007508098846935559,0.0,0.0005765204319344369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.868421105971337e-05,0.0,0.0,0.0002880862272610949,0.00017144832491485464,0.00037677043832080826,0.00013135837788013133,5.501754546599228e-05,8.723911958006664e-05,0.0,1.4471184334904604e-05,5.0164590867658115e-05,0.0,3.851962019205524e-05,0.0,0.0,0.0,0.0001864434713082188,4.6450319084108756e-05,7.365441163884044e-05,0.0,7.022223628964019e-05 +99384,50.0,the Greater Atlanta and Macon Area,G1301210001002,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,32746.0,,6339.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028889660888342518,0.0018660201317192225,0.0,0.004754986220553474,0.0023128607994137747,0.0009502115901894736,0.0014919445205565235,0.0,0.0,0.0004468406676945526,0.0009502115901894736,0.0014919445205565235,0.0,0.0,0.0018660201317192225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012467619206631055,0.0,0.0,0.00034427389298502775,0.00023125448285058397,0.00046895008505133836,5.3249353395251543e-05,0.00011323533515273202,0.0001777928616728543,0.0,0.0,0.00012467619206631055,0.0,0.0,0.0,0.0,0.0,0.00022810082264986,9.371253361576591e-05,0.00014713975548081017,0.0,0.0 +99385,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,16764.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0038625030506993963,0.0,0.0,0.0038625030506993963,0.002675656542540334,0.0006080624061313882,0.0004994680183116776,0.0,7.92333766422565e-05,0.002675656542540334,0.0006080624061313882,0.0004994680183116776,0.0,7.92333766422565e-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.000460282593729311,0.00014761490904321162,0.000460282593729311,0.00031884975032091256,7.246092437202403e-05,5.952006559883748e-05,0.0,9.44199749026102e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00031884975032091256,7.246092437202403e-05,5.952006559883748e-05,0.0,9.44199749026102e-06 +99386,85.0,Rural Climate Zone 3A,G1302330010500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,53150.0,,2746.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002735901149282668,0.00046703545016561093,0.0,0.0032029365994482783,0.0010758960613302241,0.0011177219839201287,0.0007396929480831829,0.0,0.000269625606114743,0.0008005080877539639,0.0011177219839201287,0.0005480454714938322,0.0,0.000269625606114743,0.00027538797357626007,0.00019164747658935075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.120468188461562e-05,0.0,0.0,0.000326031549412528,0.00012366481787235158,0.00035723623129714364,9.539485453855472e-05,0.00013319656315999225,6.530941889713453e-05,0.0,3.213071281684648e-05,1.839987544253634e-05,1.2804806442079276e-05,0.0,0.0,0.0,0.0,0.0001199989579198214,0.00012466396907212374,8.250089031916134e-05,0.0,3.0072413986037213e-05 +99387,81.0,the Columbus-Albany Area,G1302150000400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,22512.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.002005749909192663,0.0,0.0,0.002005749909192663,0.0007195178196496418,0.0005023274758807992,0.0007839046136622223,0.0,0.0,0.0007195178196496418,0.0005023274758807992,0.0007839046136622223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023902059583368122,9.039633457872676e-05,0.00023902059583368122,8.574328094315223e-05,5.986120803913482e-05,9.341610685139422e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.574328094315223e-05,5.986120803913482e-05,9.341610685139422e-05,0.0,0.0 +99388,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,50588.0,,10656.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0024355133661041334,0.0018121670496593367,0.0,0.00424766268540205,0.0014330032706915078,0.0007667317492487634,0.0012630045653960413,0.0,0.0007849231000657376,0.001109743321281105,0.0007667317492487634,0.00044368456417540135,0.0,0.00011535373139886353,0.0003232599494104027,0.0008193200012206398,0.000669569368666874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012107792812122814,0.0,0.0,0.00029023504188555326,0.00019434478793769423,0.0004113129700067814,0.0001322457941790919,9.136982143282711e-05,5.2872962989896075e-05,0.0,1.3746463283738165e-05,2.1598254380876375e-05,5.474195562419356e-05,4.473653348175819e-05,0.0,0.0,0.0,0.0001387616849433906,7.424476384761553e-05,0.00012230023836650274,0.0,7.600628284927249e-05 +99389,50.0,the Greater Atlanta and Macon Area,G1301210010001,ComStock DOE Ref 1980-2004,gen5_led,500001_1mil,Electricity,1115878.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,4319970.345818221,0.0,0.0,0.17686488181258736,0.0,0.0,0.17686488181258742,0.09950501017299244,0.02235101209776696,0.05398462354576978,0.0,0.0010242359960581963,0.09950501017299244,0.02235101209776696,0.05398462354576978,0.0,0.0010242359960581963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.021076646999273602,0.007113154441793734,0.021076646999273602,0.011857820233061282,0.0026635270226245743,0.006433243514495629,0.0,0.00012205622909212058,0.0,0.0,0.0,0.0,0.0,0.0,0.011857820233061278,0.0026635270226245734,0.0064332435144956275,0.0,0.00012205622909212054 +99390,35.0,Eastern Counties in South Carolina and Georgia,G1300510001500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,10210.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0021333462600316958,0.0,0.0,0.0021333462600316958,0.0013457267968122711,0.0002446475241208714,0.000505505634694647,0.0,3.746630440390626e-05,0.0013457267968122711,0.0002446475241208714,0.000505505634694647,0.0,3.746630440390626e-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.00025422333312294956,7.128838850502311e-05,0.00025422333312294956,0.0001603655056696717,2.9153780700073074e-05,6.023931968858912e-05,0.0,4.464727064615653e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001603655056696717,2.9153780700073074e-05,6.023931968858912e-05,0.0,4.464727064615653e-06 +99391,50.0,the Greater Atlanta and Macon Area,G1301170130201,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,123001.0,159834.0,,,7.614023970037612,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.031478389311764186,0.0,0.038030577639718406,0.0695089669514826,0.05413688594024214,0.010838187808053798,0.0015116826251834635,0.0007750738241500166,0.002247064586830453,0.016106308300523727,0.010838187808053798,0.0015116826251834635,0.0007750738241500166,0.002247064586830453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.038030577639718406,0.0,0.0,0.0,0.003379350964331893,0.0,0.0037512206369374667,0.004403135231544389,0.007130571601269359,0.0019193585632166425,0.0012915665210793115,0.00018014438426075253,9.236409447464947e-05,0.00026777847389731476,0.0,0.0,0.0,0.0033793509643318936,0.0,0.0,0.005553627947543755,0.0011118345960640667,0.00015507583654335408,7.951088387242197e-05,0.00023051493399772838 +99392,81.0,the Columbus-Albany Area,G1302150003302,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,39986.0,,4355.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0020582999268925098,0.0007406681179612857,0.0,0.0027989680448537954,0.0012039624618672656,0.00047538645039445584,0.0004958118267503566,0.0,0.0006237895754802977,0.0009812159313471421,0.00047538645039445584,0.0004958118267503566,0.0,0.0001058679880391353,0.00022274653052012334,0.0,0.0005179215874411624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.94866748491098e-05,0.0,0.0,0.0002452833981074675,0.00010457038989194257,0.00029477007295657733,0.00011692949835613504,5.665083229295989e-05,5.908488267344212e-05,0.0,1.2616071893975215e-05,1.4882489015401122e-05,0.0,3.460418583370868e-05,0.0,0.0,0.0,0.00012679391012487682,5.0064772594665964e-05,5.221584741299564e-05,0.0,6.569367557159248e-05 +99393,85.0,Rural Climate Zone 3A,G1302830960200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,29808.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.0031788907995286496,0.0,0.0,0.0031788907995286488,0.000941403673182033,0.0009882360123923274,0.0012492511139542896,0.0,0.0,0.000941403673182033,0.0009882360123923274,0.0012492511139542896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003788228000012704,0.00011699703439226637,0.0003788228000012704,0.00011218541242724575,0.0001177663395458758,0.00014887104802814886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001121854124272458,0.00011776633954587584,0.00014887104802814889,0.0,0.0 +99394,50.0,the Greater Atlanta and Macon Area,G1300890020500,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,49529.0,,3297.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004287658791030798,0.0009606258294177768,0.0,0.005248284620448575,0.003617009715445238,0.001255067502367343,0.0003762074026359941,0.0,0.0,0.0026563838860274615,0.001255067502367343,0.0003762074026359941,0.0,0.0,0.0009606258294177768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4183093939297e-05,0.0,0.0,0.0005109531744506617,0.00022112178314426427,0.0005751362683899587,0.00031655685428247664,0.00014956430904108548,4.4832011127099656e-05,0.0,0.0,6.4183093939297e-05,0.0,0.0,0.0,0.0,0.0,0.00039637207600482573,0.00013753728924620774,4.1226903138925226e-05,0.0,0.0 +99395,50.0,the Greater Atlanta and Macon Area,G1301210000700,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,56431.0,,2598.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004696277003705968,0.0007648770577576464,0.0,0.005461154061463615,0.0018534067035308665,0.001459045262605386,0.0021487020953273625,0.0,0.0,0.00108852964577322,0.001459045262605386,0.0021487020953273625,0.0,0.0,0.0007648770577576464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.110553565278344e-05,0.0,0.0,0.0005596456657363802,0.00020543909340242032,0.0006107512013891637,0.00012971783772588576,0.00017387142127390292,0.0002560564067365915,0.0,0.0,5.110553565278344e-05,0.0,0.0,0.0,0.0,0.0,0.00020727676936124246,0.0001631731383125611,0.00024030129371536011,0.0,0.0 +99396,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Propane,36588.0,,5501.0,8000.0,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007618382201162269,0.003783945670783638,0.0017804482804625443,0.013182776152408452,0.0031348082131213433,0.0007903540805920338,0.007097336611733855,0.0003797572465276606,0.0017804482804625443,0.0031348082131213433,0.0007903540805920338,0.003313390940950215,0.0003797572465276606,0.0,0.0,0.003783945670783638,0.0,0.0,0.0,0.0,0.0,0.0,0.0017804482804625443,0.0,0.00025282043706443966,0.0,0.0001435917386613968,0.0009078656976585129,0.0006619853094496203,0.0013042778733843494,0.0003735681369460379,9.418474156684751e-05,0.00039484944425106976,4.525482818479652e-05,0.0,0.0,0.00025282043706443966,0.0,0.0,0.00014359173866139677,0.0,0.0003101517421222928,7.819607399363214e-05,0.0007021964869633252,3.7572433012366806e-05,0.00017615404146024662 +99397,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,34092.0,,15180.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.006496466694565065,0.010441997460046875,0.0,0.016938464154611945,0.005544025479477749,0.0010677669284804175,0.0059138136500342395,0.00036957301064344375,0.004043285085976089,0.0037825112713633265,0.0010677669284804175,0.0008369003417811654,0.00036957301064344375,0.0004397151422967114,0.0017615142081144227,0.005076913308253075,0.0036035699436793773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006976734690000117,0.0,0.0,0.0007741713823331962,0.0008733413108103754,0.0014718448513332079,0.000450754558950031,0.0001272437215329553,9.973179651854215e-05,4.40413015219854e-05,5.240000380968222e-05,0.00011769412250579888,0.00033920978559262625,0.00024076956090158651,0.0,0.0,0.0,0.00048174056887015246,9.278215791954609e-05,0.0005138728100196137,3.211354512086384e-05,0.00035133576940303123 +99398,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,16600.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003886736223305014,0.0,0.0,0.003886736223305013,0.0023600463491511374,0.00047159573446153093,0.0009721389447318194,0.0,8.295519496052534e-05,0.0023600463491511374,0.00047159573446153093,0.0009721389447318194,0.0,8.295519496052534e-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.00046317353348453687,0.00016355343924210217,0.00046317353348453687,0.0002812413665144754,5.619899323166423e-05,0.00011584759144948812,0.0,9.885582288909018e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00028124136651447545,5.619899323166424e-05,0.00011584759144948814,0.0,9.88558228890902e-06 +99399,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,37299.0,,5039.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004520394870013834,0.0014832593619742733,0.0,0.006003654231988107,0.0021235366181632464,0.0014354142657561544,0.0024446726584624085,0.0,0.0,0.0006402772561889732,0.0014354142657561544,0.0024446726584624085,0.0,0.0,0.0014832593619742733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.91019226134736e-05,0.0,0.0,0.0005386877048672311,0.00025420446583622144,0.0006377896274807047,7.630074264155392e-05,0.00017105585653217462,0.00029132744846574807,0.0,0.0,9.91019226134736e-05,0.0,0.0,0.0,0.0,0.0,0.00022559087787297062,0.0001524891831643579,0.0002597063061769098,0.0,0.0 +99400,50.0,the Greater Atlanta and Macon Area,G1301210009700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,14162.0,,1430.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031873652077654296,0.0011342448092608618,0.0,0.004321527309952552,0.0027963261631259837,0.0006960627325900112,0.0007476719466033392,0.0,8.154917470695711e-05,0.001743630528572079,0.0006960627325900112,0.0007476719466033392,0.0,0.0,0.0010526956345539048,0.0,8.154917470695711e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.57813678450786e-05,0.0,0.0,0.00037982804754917133,0.00018277358330646377,0.0004556094153942499,0.0002077828350830772,8.294755431454216e-05,8.909765815155195e-05,0.0,0.0,7.033288974275635e-05,0.0,5.448478102322263e-06,0.0,0.0,0.0,0.00029481070858891867,7.338441063248564e-05,7.882546009002737e-05,0.0,8.597555713359179e-06 +99401,81.0,the Columbus-Albany Area,G1301770020403,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5357.0,,132.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009665975707912859,0.00010445903413274527,0.0,0.0010710566049240314,0.0005528140808735309,0.0002734295857821503,0.00021164740169888767,0.0,3.308282949572297e-05,0.0004815205833102478,0.0002734295857821503,0.00021164740169888767,0.0,0.0,7.1293497563283e-05,0.0,3.308282949572297e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.977174934373554e-06,0.0,0.0,0.00011519080784250563,3.890778831783765e-05,0.0001221679827768792,5.73834930486068e-05,3.258499278919514e-05,2.5222322004703677e-05,0.0,0.0,4.7619357034283485e-06,0.0,2.2097149435862407e-06,0.0,0.0,0.0,6.305565999078458e-05,3.118821243709363e-05,2.414114810239643e-05,0.0,3.7735284255406692e-06 +99402,50.0,the Greater Atlanta and Macon Area,G1300670031312,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,48406.0,,4203.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00431296382104766,0.001237128719466697,0.0,0.005550092540514358,0.0020338922781676563,0.00128678450245638,0.002229415759890321,0.0,0.0,0.0007967635587009595,0.00128678450245638,0.002229415759890321,0.0,0.0,0.001237128719466697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.265800264327146e-05,0.0,0.0,0.0005139662674016242,0.00022416108518887176,0.0005966242700448957,9.494853406113046e-05,0.00015334323567711035,0.00026567449766338346,0.0,0.0,8.265800264327146e-05,0.0,0.0,0.0,0.0,0.0,0.00021863950681068626,0.00013832685831432505,0.00023965790491988433,0.0,0.0 +99403,35.0,Eastern Counties in South Carolina and Georgia,G1300510011104,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,47013.0,,23282.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.00915311786092533,0.016015499847612042,0.0,0.02516861770853737,0.006674188782741749,0.0006779688860105713,0.012623432098457699,0.00038492108444078453,0.004808106856886565,0.005575295386840557,0.0006779688860105713,0.0019350048180011863,0.00038492108444078453,0.000579927685632231,0.0010988933959011923,0.010688427280456513,0.004228179171254334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010700619019351231,0.0,0.0,0.001090761523929469,0.0013241224494109243,0.0021608234258645924,0.0006643984907556251,8.07924017277863e-05,0.0002305912407294694,4.587039247572507e-05,6.910899824086322e-05,7.342162083172845e-05,0.0007141381120318816,0.0002825021690715128,0.0,0.0,0.0,0.0005730049872980948,5.82062578034246e-05,0.0010837705951529423,3.304696769607319e-05,0.00041279461791405745 +99404,50.0,the Greater Atlanta and Macon Area,G1300890022009,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,31153.0,,3239.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027756907519894307,0.0009533419300318391,0.0,0.0037290019924149727,0.0018335198386499553,0.0008749606755475064,0.0010205214782175107,0.0,0.0,0.0008801779086181159,0.0008749606755475064,0.0010205214782175107,0.0,0.0,0.0009533419300318391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.369625532671434e-05,0.0,0.0,0.00033077199376987075,0.00017449766223675238,0.00039446824909658513,0.00010488855845959813,0.00010426683408937039,0.00012161294401872441,0.0,0.0,6.369625532671434e-05,0.0,0.0,0.0,0.0,0.0,0.00019395681791194234,9.255672333070229e-05,0.00010795470785394046,0.0,0.0 +99405,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,112870.0,,7715.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.01015000418044554,0.002271092245242601,0.0,0.012421096425688139,0.0039012013733513828,0.003415262147233556,0.005104632905103202,0.0,0.0,0.0016301091281087812,0.003415262147233556,0.005104632905103202,0.0,0.0,0.002271092245242601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015174096600001195,0.0,0.0,0.0012095570319578532,0.0004965865436172131,0.001361297997957865,0.00019425705878636516,0.0004069904083511909,0.0006083095648202971,0.0,0.0,0.00015174096600001195,0.0,0.0,0.0,0.0,0.0,0.00042755465678461586,0.0003742978368572443,0.0005594455043160051,0.0,0.0 +99406,50.0,the Greater Atlanta and Macon Area,G1300450910104,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,89738.0,,8277.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.007995532439134208,0.0024363557751557303,0.0,0.01043188821428994,0.0038754834832739073,0.002312830109807477,0.004243574621208555,0.0,0.0,0.0014391277081181768,0.002312830109807477,0.004243574621208555,0.0,0.0,0.0024363557751557303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016278386203543552,0.0,0.0,0.0009528123169925184,0.0004403533739195049,0.0011155961790279539,0.0001714980980264392,0.00027561554311877055,0.0005056986758473088,0.0,0.0,0.00016278386203543552,0.0,0.0,0.0,0.0,0.0,0.0004144479385720296,0.00024733628085734315,0.00045381195959858113,0.0,0.0 +99407,50.0,the Greater Atlanta and Macon Area,G1300970080508,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,208666.0,,24897.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012058667026837793,0.00423395711602435,0.0,0.01629262414286214,0.00703505280424855,0.004593759340321481,0.001868655981143625,0.0,0.002795156017148484,0.0060047769628521225,0.004593759340321481,0.0010481480457078414,0.0,0.000411982677956347,0.001030275841396428,0.0008205079354357835,0.002383173339192137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028288863773601506,0.0,0.0,0.001437007400151083,0.0006434790402117898,0.0017198960378870978,0.0007155773447156911,0.0005474291770278867,0.00012490572090462983,0.0,4.909515750287535e-05,6.883709997011837e-05,5.4821616220093076e-05,0.00015922992154580355,0.0,0.0,0.0,0.0007426403100113532,0.00048493038439649565,0.00019726067390752195,0.0,0.00029506466957172694 +99408,85.0,Rural Climate Zone 3A,G1302370960102,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,6382.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.0003285081363907383,0.0,0.0,0.0003285081363907383,0.00014769391062903988,7.154200832991305e-05,3.273024718141748e-05,0.0,7.654197025036795e-05,0.00014769391062903988,7.154200832991305e-05,3.273024718141748e-05,0.0,7.654197025036795e-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,3.9148029818891116e-05,1.1763150597061606e-05,3.9148029818891116e-05,1.7600555288825725e-05,8.525599110493612e-06,3.900435181653336e-06,0.0,9.121440237918446e-06,0.0,0.0,0.0,0.0,0.0,0.0,1.7600555288825725e-05,8.525599110493612e-06,3.900435181653336e-06,0.0,9.121440237918446e-06 +99409,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,13782.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.00301409388828158,0.0,0.0,0.0030140938882815805,0.0014908777112247556,0.00046828745151195864,0.0009737930862066058,0.0,8.105293226452127e-05,0.0014908777112247556,0.00046828745151195864,0.0009737930862066058,0.0,8.105293226452127e-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.00035918165084696815,0.00010003227459723324,0.00035918165084696815,0.0001776639804123549,5.580458543741003e-05,0.00011604436399506639,0.0,9.658865017425261e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017766398041235487,5.5804585437410026e-05,0.00011604436399506638,0.0,9.658865017425261e-06 +99410,50.0,the Greater Atlanta and Macon Area,G1301170130509,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,80153.0,,2558.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006466144463504672,0.0007451251414069276,0.0,0.007211299978511037,0.004245226872616259,0.0025603425646052898,0.00040573054128948896,0.0,0.0,0.0035001017312093316,0.0025603425646052898,0.00040573054128948896,0.0,0.0,0.0007451251414069276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.978526591248314e-05,0.0,0.0,0.0007705591502030326,0.00021539665614769138,0.0008203444161155157,0.0004171010144989899,0.0003051115547983889,4.835020047448699e-05,0.0,0.0,4.978526591248314e-05,0.0,0.0,0.0,0.0,0.0,0.0004829293151681295,0.0002912599298983127,4.6155171049073635e-05,0.0,0.0 +99411,50.0,the Greater Atlanta and Macon Area,G1301210009403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5466.0,,730.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013124785531690695,0.0005794457586175877,0.0,0.0018919243117866576,0.0012453204092927519,0.00021545192709089583,0.0003901292668283131,0.0,4.110541564843579e-05,0.0006658746506751641,0.00021545192709089583,0.0003901292668283131,0.0,4.110541564843579e-05,0.0005794457586175877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8715287185173555e-05,0.0,0.0,0.00015640128628917395,7.701804711758486e-05,0.00019511657347434752,7.934884087933326e-05,2.5674292695399715e-05,4.648968853904049e-05,0.0,4.898319949947663e-06,3.8715287185173555e-05,0.0,0.0,0.0,0.0,0.0,0.00012843148619904918,2.221983273882733e-05,4.0234530145508074e-05,0.0,4.239254077235003e-06 +99412,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,29938.0,,5943.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.00258185519861314,0.0017493996277879514,0.0,0.004331254826401091,0.0024608153913749996,0.0007961190769687079,0.0010743510476636812,0.0,0.0,0.0007114157635870482,0.0007961190769687079,0.0010743510476636812,0.0,0.0,0.0017493996277879514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011688458033422257,0.0,0.0,0.0003076750486663903,0.0002030414740744142,0.0004245596290006129,8.477813930125038e-05,9.487208108423866e-05,0.0001280284855061849,0.0,0.0,0.00011688458033422257,0.0,0.0,0.0,0.0,0.0,0.00024121482375796346,7.803743568673713e-05,0.00010531037782219678,0.0,0.0 +99413,50.0,the Greater Atlanta and Macon Area,G1301350050220,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,31455.0,,2615.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027737474742549344,0.0007619521154954422,0.0,0.003535699589750377,0.0022736765331117883,0.0008494584554756052,0.0004125342275635452,0.0,0.0,0.0015117244176163461,0.0008494584554756052,0.0004125342275635452,0.0,0.0,0.0007619521154954422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.090991267310621e-05,0.0,0.0,0.0003305407282098186,0.00014438686848627265,0.0003814506408829249,0.00018014851549732133,0.000101227894414691,4.9160698749967206e-05,0.0,0.0,5.090991267310621e-05,0.0,0.0,0.0,0.0,0.0,0.0002452966799640323,9.164423164906543e-05,4.450645239952824e-05,0.0,0.0 +99414,50.0,the Greater Atlanta and Macon Area,G1300670030904,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,22633.0,,5009.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005531524448151846,0.0038847946009612777,0.0,0.009416238188330057,0.004532651194906322,0.0011879257640597413,0.002754684296795534,0.0004183736915965626,0.0005226032409718948,0.0026517485199492987,0.0011879257640597413,0.0007507923707912802,0.0004183736915965626,0.0005226032409718948,0.001880902674957024,0.002003891926004254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025955863228678864,0.0,0.0,0.0006591763949506526,0.0004644900768316145,0.0009187350272374413,0.0003160015012280976,0.00014156181175038065,8.946984018121871e-05,4.985643005897962e-05,6.22771757771908e-05,0.00012567061477474327,0.00013388801751204536,0.0,0.0,0.0,0.0,0.00044224724733185714,0.00011590499171442894,0.00026877240165648695,4.082039528489928e-05,5.098999124976885e-05 +99415,35.0,Eastern Counties in South Carolina and Georgia,G1300290920303,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,17074.0,,391.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.002594051977845854,0.00014519034387399418,0.0,0.002739242321719849,0.001289431297863599,0.000317775823354851,0.001020284746342712,0.0,0.00011171170573491467,0.001289431297863599,0.000317775823354851,0.0008750944024687177,0.0,0.00011171170573491467,0.0,0.00014519034387399418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.701521642435538e-06,0.0,0.0,0.00030912862170933596,0.00010333648172986589,0.00031883014335177146,0.00015365926484960376,3.786878718128439e-05,0.00010428346417535991,0.0,1.3312487921429443e-05,0.0,9.701521642435538e-06,0.0,0.0,0.0,0.0,0.00015008148869501787,3.6987056789609694e-05,0.00011875456558068683,0.0,1.3002522219783526e-05 +99416,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000400,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,68053.0,,,14266.0,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005518245172251314,0.0,0.0013445784999103977,0.0068628236721617105,0.004522325220286869,0.001960069118917001,0.0003804597065572793,0.0,0.0,0.003177746720376471,0.001960069118917001,0.0003804597065572793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013445784999103977,0.0,0.0,0.0,0.0,0.00010843945374588143,0.0006575984306981525,0.000239047762873221,0.000766037884444034,0.00037868583059408133,0.00023357758425471948,4.533863541149532e-05,0.0,0.0,0.0,0.0,0.0,0.00010843945374588143,0.0,0.0,0.000504788205264386,0.00021878563007671009,4.246743944617972e-05,0.0,0.0 +99417,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030401,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,5816.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001396591647161945,0.0,0.0,0.001396591647161945,0.0007592509369268422,0.00028848227320270434,0.000303204132328301,0.0,4.5737011777837006e-05,0.0007592509369268422,0.00028848227320270434,0.000303204132328301,0.0,4.5737011777837006e-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.000166431414939742,5.8871631469632795e-05,0.000166431414939742,9.047971036046615e-05,3.4378347465937474e-05,3.6132747078591385e-05,0.0,5.450466212346165e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.047971036046615e-05,3.4378347465937474e-05,3.6132747078591385e-05,0.0,5.450466212346165e-06 +99418,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,23151.0,,2870.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0027347201275819974,0.0008447007237379713,0.0,0.003579420851319969,0.0013159396284391975,0.0009873153242033962,0.0012761658986773748,0.0,0.0,0.0004712389047012263,0.0009873153242033962,0.0012761658986773748,0.0,0.0,0.0008447007237379713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643798923198789e-05,0.0,0.0,0.00032588969674880996,0.00015404600837816808,0.00038232768598079784,5.6156351138246154e-05,0.00011765587577131338,0.0001520774698392504,0.0,0.0,5.643798923198789e-05,0.0,0.0,0.0,0.0,0.0,0.00014055909431439324,0.00010545783771049572,0.00013631075395590883,0.0,0.0 +99419,50.0,the Greater Atlanta and Macon Area,G1301210002900,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,21072.0,,2519.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00490097306857014,0.0019986164369103637,0.0,0.006899589505480505,0.0034746068748620442,0.0011411922034549639,0.002133428967105435,0.0,0.0001503614600580609,0.0014759904379516805,0.0011411922034549639,0.002133428967105435,0.0,0.0001503614600580609,0.0019986164369103637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000133535780503666,0.0,0.0,0.0005840376488221856,0.0003062331006328584,0.0007175734293258516,0.00017589037381036374,0.0001359932409411296,0.0002542358059194403,0.0,1.7918228151251892e-05,0.000133535780503666,0.0,0.0,0.0,0.0,0.0,0.00036136723333663,0.00011868665553257052,0.00022188159729400324,0.0,1.563794316264772e-05 +99420,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,8016.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005203683773171297,0.0,0.0,0.0005203683773171297,0.0002796432603170728,0.00010225099430944452,3.872310934139532e-05,0.0,9.975101334921708e-05,0.0002796432603170728,0.00010225099430944452,3.872310934139532e-05,0.0,9.975101334921708e-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,6.201216168023302e-05,1.696795790699846e-05,6.201216168023302e-05,3.332501325498774e-05,1.2185223905751605e-05,4.614622682531906e-06,0.0,1.1887301836961771e-05,0.0,0.0,0.0,0.0,0.0,0.0,3.332501325498774e-05,1.2185223905751605e-05,4.614622682531906e-06,0.0,1.1887301836961771e-05 +99421,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,125507.0,,4878.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005970699208202781,0.0008294972286757502,0.0,0.006800196436878532,0.0032220499290590955,0.001543906681373938,0.0009359148579189073,0.0,0.001098324968526591,0.0028028155332819474,0.001543906681373938,0.0005256520250203054,0.0,0.001098324968526591,0.0004192343957771485,0.00041026283289860176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.542163495651483e-05,0.0,0.0,0.0007115169551581464,0.00021504049652175262,0.0007669385901146612,0.0003340062368861167,0.00018398444515012896,6.264095967208186e-05,0.0,0.000130885313449819,2.801052835471087e-05,2.741110660180397e-05,0.0,0.0,0.0,0.0,0.0003633886833724958,0.00017412461896836878,0.00010555418924474103,0.0,0.00012387109852905558 +99422,46.0,the Tallahassee-Valdosta Area,G1301850011403,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,58044.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004722790976576031,0.0,0.0,0.004722790976576031,0.003597570611805077,0.0009259088052604265,0.00019931155951052748,0.0,0.0,0.003597570611805077,0.0009259088052604265,0.00019931155951052748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005628046302001057,0.00012150001315713131,0.0005628046302001057,0.00042871459013069216,0.00011033851917821096,2.375152089120261e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042871459013069216,0.00011033851917821096,2.375152089120261e-05,0.0,0.0 +99423,50.0,the Greater Atlanta and Macon Area,G1302550160400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,13799.0,,1143.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033133280810703943,0.0009063868211090701,0.0,0.004219714902179465,0.0027635741619252184,0.0005600923033625899,0.0007477546536770784,0.0,0.0001482110761408389,0.0020054811240307266,0.0005600923033625899,0.0007477546536770784,0.0,0.0,0.0007580930378944917,0.0,0.0001482110761408389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.055745347229406e-05,0.0,0.0,0.00039484270674760565,0.00017994514879440685,0.00045540016021989975,0.00023898919031516797,6.674508399927077e-05,8.9108432433167e-05,0.0,0.0,5.064965950607238e-05,0.0,9.902268146943238e-06,0.0,0.0,0.0,0.0002982505086943891,6.0446293316526094e-05,8.069919342509042e-05,0.0,1.5995238869346536e-05 +99424,33.0,Rural Lower Plains-Upper South Appalachia,G1302810960100,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,17206.0,,661.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0008857024743773176,0.00011248141284881497,0.0,0.0009981838872261325,0.0004637553333029011,0.0003246429176011668,8.115186421958168e-05,0.0,0.00012861604174106304,0.00035127392045408614,0.0003246429176011668,8.115186421958168e-05,0.0,0.00012861604174106304,0.00011248141284881497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.515406702663325e-06,0.0,0.0,0.00010554662133502246,3.385285874488343e-05,0.0001130620280376858,4.186030471812998e-05,3.868676455627701e-05,9.670634700932815e-06,0.0,1.53268044834098e-05,7.515406702663325e-06,0.0,0.0,0.0,0.0,0.0,5.252851620579257e-05,3.6771567966358085e-05,9.191887852649969e-06,0.0,1.4568047735006093e-05 +99425,46.0,the Tallahassee-Valdosta Area,G1301850010601,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,67935.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.005588134824557581,0.0,0.0,0.00558813482455758,0.003075843294262814,0.0017301105975737817,0.0007821809327209849,0.0,0.0,0.003075843294262814,0.0017301105975737817,0.0007821809327209849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006659271081998156,0.00019287759937846317,0.0006659271081998156,0.0003665422353846653,0.00020617389939216055,9.321097342298971e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003665422353846654,0.00020617389939216058,9.321097342298973e-05,0.0,0.0 +99426,50.0,the Greater Atlanta and Macon Area,G1300670030234,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,173145.0,,21576.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.04635567640676653,0.019083530506133477,0.0,0.06543920691290002,0.04918969701899173,0.007343997576350062,0.0028319918326641857,0.0006464429419399526,0.005427169760206859,0.03387803658578662,0.007343997576350062,0.0028319918326641857,0.0006464429419399526,0.0016552996872784805,0.015311660433205103,0.0,0.0037718700729283787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012750487192964787,0.0,0.0,0.005524114895298281,0.002499716814045414,0.00679916361459476,0.004037179069178382,0.0008751697644655228,0.00033748290347241527,7.703533550444908e-05,0.000197258812026371,0.001023034653854326,0.0,0.000252014065442153,0.0,0.0,0.0,0.005110832083121397,0.0007630447168049061,0.00029424525042164127,6.71657181848162e-05,0.0005638854274768619 +99427,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,37514.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0030173741153451416,0.0,0.0,0.0030173741153451416,0.0018256355678055113,0.0009071075472084581,0.00028463100033117235,0.0,0.0,0.0018256355678055113,0.0009071075472084581,0.00028463100033117235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035957543350151837,8.6477176970121e-05,0.00035957543350151837,0.00021755794131427057,0.00010809849128790285,3.391900089934498e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021755794131427057,0.00010809849128790285,3.391900089934498e-05,0.0,0.0 +99428,35.0,Eastern Counties in South Carolina and Georgia,G1300330950400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,160951.0,,5981.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.008391762329749572,0.0010172085650298492,0.0,0.009408970894779422,0.004817764726502428,0.0023170390910953404,0.0010678642076069403,0.0,0.0012063028695747124,0.004817764726502428,0.0023170390910953404,0.0010678642076069403,0.0,0.00018909430454486315,0.0,0.0,0.0010172085650298492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.796432961660827e-05,0.0,0.0,0.0010000293163942302,0.000399604210338548,0.0010679936460108383,0.000574123262394186,0.00027611685451486433,0.0001272552142890471,0.0,2.2533985196132817e-05,0.0,0.0,6.796432961660827e-05,0.0,0.0,0.0,0.0005468549295581981,0.00026300251690879146,0.0001212111506434145,0.0,0.00013692504890043414 +99429,50.0,the Greater Atlanta and Macon Area,G1301210011423,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,3246.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007271605923159909,0.0,0.0,0.0007271605923159909,0.0005064154125057793,0.00012844408551714444,6.418068922170256e-05,0.0,2.8203112145103836e-05,0.0005064154125057793,0.00012844408551714444,6.418068922170256e-05,0.0,2.8203112145103836e-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,8.665554642025678e-05,3.052609225240037e-05,8.665554642025678e-05,6.034939839982168e-05,1.530664963497029e-05,7.648396726810653e-06,0.0,3.3609578400031353e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.034939839982168e-05,1.530664963497029e-05,7.648396726810653e-06,0.0,3.3609578400031353e-06 +99430,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010100,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,78219.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0064624388843732665,0.0,0.0,0.0064624388843732665,0.004312595516169192,0.0013200973787635697,0.0008297459894405043,0.0,0.0,0.004312595516169192,0.0013200973787635697,0.0008297459894405043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007701155391968606,0.00019724759289593748,0.0007701155391968606,0.000513923130368558,0.0001573132872632903,9.887912156501227e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000513923130368558,0.0001573132872632903,9.887912156501227e-05,0.0,0.0 +99431,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,391367.0,,11527.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.020145733095583755,0.0019602864889624576,0.0,0.022106019584546215,0.008996598148871833,0.00656124435602048,0.0036740323023790817,0.0,0.0028741270469133996,0.007643523347461923,0.00656124435602048,0.003066820614826533,0.0,0.0028741270469133996,0.0013530748014099095,0.0006072116875525483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013097481761490553,0.0,0.0,0.002400727590954632,0.0007077917718226042,0.002531702408569538,0.0009108637201383525,0.0007818906505788438,0.0003654670113810104,0.0,0.0003425040959639507,9.040450277642117e-05,4.0570314838484364e-05,0.0,0.0,0.0,0.0,0.0010303396826063483,0.0007514296310025333,0.00042077029713652746,0.0,0.00032916076724605304 +99432,50.0,the Greater Atlanta and Macon Area,G1300890020400,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,27599.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.0059270370253799885,0.0,0.0,0.0059270370253799885,0.0034470654193068545,0.0010094398349882472,0.0012953581889050328,0.0,0.00017525628925359242,0.0034470654193068545,0.0010094398349882472,0.0012953581889050328,0.0,0.00017525628925359242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007063157657359387,0.00019161212518088264,0.0007063157657359387,0.0004107814141794573,0.00012029337204425063,0.00015436581671094248,0.0,2.0885018874376655e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004107814141794573,0.00012029337204425063,0.00015436581671094248,0.0,2.0885018874376655e-05 +99433,46.0,the Tallahassee-Valdosta Area,G1301850011200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,10547.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0008163816056878935,0.0,0.0,0.0008163816056878933,0.0004959401316196119,0.0002443859810761512,7.602511939269281e-05,0.0,0.0,0.0004959401316196119,0.0002443859810761512,7.602511939269281e-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,9.728577296431566e-05,2.628792129552571e-05,9.728577296431566e-05,5.909971355611825e-05,2.9122752037758906e-05,9.059687838741056e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.909971355611826e-05,2.9122752037758913e-05,9.059687838741057e-06,0.0,0.0 +99434,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,66102.0,,3694.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005273008730390905,0.0010760758808806715,0.0,0.006349114984871016,0.004649195745138358,0.0012878102425612394,0.0004120786235719789,0.0,0.0,0.0035731198642576867,0.0012878102425612394,0.0004120786235719789,0.0,0.0,0.0010760758808806715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.189749103473768e-05,0.0,0.0,0.0006283756714566088,0.00020654298413947446,0.0007002731624913464,0.00042580274539606586,0.00015346620255228107,4.910672350826192e-05,0.0,0.0,7.189749103473768e-05,0.0,0.0,0.0,0.0,0.0,0.0005127812325414185,0.00014203852873920315,4.545005116641356e-05,0.0,0.0 +99435,50.0,the Greater Atlanta and Macon Area,G1302170100700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,4528.0,,356.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00040341487478330314,0.00010474362629405959,0.0,0.0005081891906836604,0.00026340889085318297,0.00014697252455969862,9.777708566448107e-05,0.0,0.0,0.00015866526455912336,0.00014697252455969862,9.777708566448107e-05,0.0,0.0,0.00010474362629405959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.999325702308987e-06,0.0,0.0,4.807574275056469e-05,2.4812110219417607e-05,5.5075068452873676e-05,1.890845112365305e-05,1.7515004338718465e-05,1.165228728819316e-05,0.0,0.0,6.999325702308987e-06,0.0,0.0,0.0,0.0,0.0,2.854697219222264e-05,1.592816612239942e-05,1.059660414824902e-05,0.0,0.0 +99436,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,222144.0,,16431.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011434930642441755,0.002794251768716061,0.0,0.014229182411157816,0.00591318191575613,0.003899243353136592,0.001730696038934194,0.0,0.002686061103330899,0.005402370203244409,0.003899243353136592,0.001730696038934194,0.0,0.00040262104712655904,0.0005108117125117212,0.0,0.00228344005620434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018669557612732018,0.0,0.0,0.0013626789351984226,0.0005286932670093255,0.0015493745113257429,0.0006437901817070225,0.00046466541395629303,0.00020624375514212813,0.0,4.7979584392978795e-05,3.412945391237203e-05,0.0,0.00015256612221494815,0.0,0.0,0.0,0.0006438692734672301,0.0004245773291983946,0.00018845048521370914,0.0,0.0002924774234464088 +99437,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,58341.0,,4842.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004719877310948902,0.001425409454103103,0.0,0.006145286765052004,0.0026041665423915694,0.0014462783863855415,0.002094872525881192,0.0,0.0,0.001178757088288466,0.0014462783863855415,0.002094872525881192,0.0,0.0,0.001425409454103103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.523758029038092e-05,0.0,0.0,0.0005624584578166799,0.00025309368163789676,0.0006576960381070608,0.00014047015427312416,0.00017235013903708115,0.0002496418217262479,0.0,0.0,9.523758029038092e-05,0.0,0.0,0.0,0.0,0.0,0.0002787095351257224,0.0001547871728517447,0.0002242026146683379,0.0,0.0 +99438,50.0,the Greater Atlanta and Macon Area,G1301130140306,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,85894.0,,1756.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007697966016471682,0.0005168743492659102,0.0,0.008214840365737592,0.00346197172801866,0.002523422188222314,0.002229415759890321,0.0,0.0,0.00294509737875275,0.002523422188222314,0.002229415759890321,0.0,0.0,0.0005168743492659102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.453507056938087e-05,0.0,0.0,0.0009173512223402302,0.0003058347160966135,0.000951886292909611,0.0003509613675260346,0.0003007111779777904,0.0002656750196173696,0.0,0.0,3.453507056938087e-05,0.0,0.0,0.0,0.0,0.0,0.00040115246159694247,0.0002923989858903516,0.00025833128929532374,0.0,0.0 +99439,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,8830.0,,725.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002120030421159667,0.0005753104049306223,0.0,0.0026953408260902896,0.001278403238788475,0.0004945883009610585,0.0007550328761661375,0.0,0.00016731641017461892,0.0008704092440324714,0.0004945883009610585,0.0007550328761661375,0.0,0.0,0.00040799399475600353,0.0,0.00016731641017461892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8440873818688446e-05,0.0,0.0,0.0002526411911379364,0.00011333485014015815,0.00029108206495662484,0.00010372550600927096,5.8939426637727147e-05,8.99762584909383e-05,0.0,0.0,2.7261188980389614e-05,0.0,1.1179684838298842e-05,0.0,0.0,0.0,0.00013806055656922738,5.341283096875071e-05,8.153942038691055e-05,0.0,1.8069257031736233e-05 +99440,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,7030.0,,771.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0006223852157174125,0.00022685756975261896,0.0,0.0008492427854700315,0.0003676614834464794,0.00023980858361024956,0.0002417727184133025,0.0,0.0,0.0001408039136938604,0.00023980858361024956,0.0002417727184133025,0.0,0.0,0.00022685756975261896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5156860058048861e-05,0.0,0.0,7.416815313694959e-05,4.0321697251037075e-05,8.932501319499845e-05,1.6779264624868083e-05,2.8577413639651083e-05,2.881147487243041e-05,0.0,0.0,1.5156860058048861e-05,0.0,0.0,0.0,0.0,0.0,3.8671352199916214e-05,2.522353473206555e-05,2.5430126263016683e-05,0.0,0.0 +99441,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,23649.0,,980.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005678667682940848,0.000777529200223229,0.0,0.0064561968831640774,0.0028059201836797437,0.002241775233703928,0.001181635962513485,0.0,0.00022686550326692025,0.002255256486723435,0.002241775233703928,0.001181635962513485,0.0,0.0,0.0005506636969563087,0.0,0.00022686550326692025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.195110856422346e-05,0.0,0.0,0.0006767117661290342,0.00023638327393056633,0.0007286628746932577,0.0002687529338596928,0.0002671464086939626,0.00014081242357537883,0.0,0.0,3.679294551862565e-05,0.0,1.5158163045597805e-05,0.0,0.0,0.0,0.00031668332056780543,0.0002530124802213749,0.0001333624536034969,0.0,2.5604620300580385e-05 +99442,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,14293.0,,590.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,24034.3828889517,0.0,0.0,0.001260352508669512,0.00017185382561879978,0.0,0.0014322063342883118,0.001013840375632718,0.0002870912618856302,0.0001312443231705256,0.0,0.0,0.0008419865500139183,0.0002870912618856302,0.0001312443231705256,0.0,0.0,0.00017185382561879978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1482408279406171e-05,0.0,0.0,0.00015019258382180674,5.112096907140665e-05,0.00016167499210121292,0.00010033711570368246,3.4211840035756526e-05,1.5640008547873885e-05,0.0,0.0,1.1482408279406171e-05,0.0,0.0,0.0,0.0,0.0,0.00011444763983938213,3.2408373281459595e-05,1.4815550248538605e-05,0.0,0.0 +99443,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,32276.0,,2668.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002762801117344395,0.0007853163355519164,0.0,0.003548117452896313,0.0014576949199282868,0.0008142566342906502,0.0012761658986773748,0.0,0.0,0.0006723785843763703,0.0008142566342906502,0.0012761658986773748,0.0,0.0,0.0007853163355519164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.24711483000008e-05,0.0,0.0,0.00032923640783343846,0.00015329223694032066,0.0003817075561334393,8.012574934709415e-05,9.703301755794889e-05,0.00015207764092839545,0.0,0.0,5.24711483000008e-05,0.0,0.0,0.0,0.0,0.0,0.0001568192634152396,8.759797669234782e-05,0.00013729031602585176,0.0,0.0 +99444,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,27034.0,,4250.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006200000541779364,0.003295966378656259,0.0,0.009495966920435625,0.0033452914563280615,0.00042395308562829094,0.004730032366376599,0.000424114807194428,0.0005724134833421079,0.0027592933614304406,0.00042395308562829094,0.0025925584267431365,0.000424114807194428,0.0,0.0005859980948976205,0.002137473939633462,0.0005724134833421079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022021837329483788,0.0,0.0,0.0007388390554432425,0.0004068241883313172,0.0009590574287380803,0.0003288183101134034,5.0521462897801375e-05,0.0003089489115829311,5.0540734865338205e-05,0.0,3.915317463427517e-05,0.00014281427049571267,3.824552549138043e-05,0.0,0.0,0.0,0.00033786202599137504,4.2817688774087624e-05,0.00047771572048999235,4.2834022052277244e-05,5.7811638152158374e-05 +99445,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7839.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001640577514692902,0.0,0.0,0.0016405775146929018,0.0009895901372908133,0.0004692799363968303,0.0001389478838820365,0.0,4.275955712322194e-05,0.0009895901372908133,0.0004692799363968303,0.0001389478838820365,0.0,4.275955712322194e-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.00019550203437861908,6.688749367614507e-05,0.00019550203437861908,0.0001179260859719791,5.592249158420471e-05,1.655794604537609e-05,0.0,5.095510777059189e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011792608597197911,5.5922491584204716e-05,1.655794604537609e-05,0.0,5.09551077705919e-06 +99446,50.0,the Greater Atlanta and Macon Area,G1300130180501,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6887.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,9613.75315558068,0.0,0.0,0.0005012251379217805,0.0,0.0,0.0005012251379217805,0.0003025210504000081,0.00016128381301446217,3.7450648106748e-05,0.0,0.0,0.0003025210504000081,0.00016128381301446217,3.7450648106748e-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,5.973052890594179e-05,2.1412045863856994e-05,5.973052890594179e-05,3.605114943056479e-05,1.922004050966858e-05,4.462958559024738e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.605114943056479e-05,1.922004050966858e-05,4.462958559024738e-06,0.0,0.0 +99447,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,4046.0,,679.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.000971477288141905,0.0005384230500428912,0.0,0.0015099003381847964,0.0010288759973169843,0.00021809855345055368,0.00015309079349145807,0.0,0.00010975228685206095,0.000600205234126154,0.00021809855345055368,0.00015309079349145807,0.0,0.0,0.00042867076319083033,0.0,0.00010975228685206095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5974053152788694e-05,0.0,0.0,0.00011576749993700269,6.500411076990122e-05,0.00015174155308979136,7.152432717885481e-05,2.599003042175005e-05,1.8243286428008856e-05,0.0,0.0,2.8641093316575088e-05,0.0,7.332959836213611e-06,0.0,0.0,0.0,0.00010339969984865273,2.191840904348049e-05,1.53852768826251e-05,0.0,1.1029855442054838e-05 +99448,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890101,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,158323.0,,5164.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012867016405193762,0.0015199641311063254,0.0,0.014386980536300088,0.00483023713519544,0.004990314121644259,0.0045664599690666855,0.0,0.0,0.0033102730040891156,0.004990314121644259,0.0045664599690666855,0.0,0.0,0.0015199641311063254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010155448388287895,0.0,0.0,0.0015333374156344568,0.0004761521942311865,0.0016348918995173357,0.0003944788203647339,0.0005946860653257179,0.0005441761871649275,0.0,0.0,0.00010155448388287895,0.0,0.0,0.0,0.0,0.0,0.0005488931847203084,0.0005670838375667483,0.0005189183647020669,0.0,0.0 +99449,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,143847.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012684622597193915,0.0,0.0,0.012684622597193915,0.007782171779943584,0.003725838322230702,0.00117661249501963,0.0,0.0,0.007782171779943584,0.003725838322230702,0.00117661249501963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015116026466722452,0.0003502387282595499,0.0015116026466722452,0.0009273867921007838,0.0004440011538224805,0.00014021470074898095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009273867921007838,0.0004440011538224805,0.00014021470074898095,0.0,0.0 +99450,50.0,the Greater Atlanta and Macon Area,G1300630040615,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,64216.0,,3275.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005136084544125521,0.0009540955055386603,0.0,0.006090210423263618,0.003746401249050061,0.001884135120322621,0.00045964368029149835,0.0,0.0,0.0027923057435114006,0.001884135120322621,0.00045964368029149835,0.0,0.0,0.0009540955055386603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.374760263403337e-05,0.0,0.0,0.0006120582485032053,0.0001842879241309878,0.0006758058511372387,0.0003327542114963403,0.00022452910028652678,5.477493672033806e-05,0.0,0.0,6.374760263403337e-05,0.0,0.0,0.0,0.0,0.0,0.00041572289114094846,0.00020907480204351497,5.100478751812794e-05,0.0,0.0 +99451,81.0,the Columbus-Albany Area,G1300950000100,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,52816.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.005741946732110356,0.0,0.0,0.005741946732110356,0.003654308495554797,0.0012917588104881471,0.0007959097996668488,0.0,0.0,0.003654308495554797,0.0012917588104881471,0.0007959097996668488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006842566594465077,0.00018876314159354404,0.0006842566594465077,0.00043547685835746287,0.00015393639295402403,9.484702769797658e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043547685835746287,0.00015393639295402403,9.484702769797658e-05,0.0,0.0 +99452,46.0,the Tallahassee-Valdosta Area,G1301850011301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,20133.0,,7269.0,,8.53126424238864,Food Service,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.00459653121353046,0.00563785637788696,0.0,0.01023438759141742,0.0025282741042036575,0.0008311679891613967,0.005750818891833693,0.00042039521117327575,0.0007038122558284653,0.0025282741042036575,0.0008311679891613967,0.0008167747697751987,0.00042039521117327575,0.0,0.0,0.004934044122058494,0.0007038122558284653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037668607034317946,0.0,0.0,0.0005477602378290265,0.0005279974226786631,0.000924446308172206,0.0003012898118779167,9.904877270902566e-05,9.73335590168176e-05,5.00977302572453e-05,0.0,0.0,0.00032966176622162654,4.702430412155291e-05,0.0,0.0,0.0,0.00022837259589801823,7.507729917279332e-05,0.0005194569040927193,3.797323459474195e-05,6.357357836365337e-05 +99453,50.0,the Greater Atlanta and Macon Area,G1301350050208,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,26260.0,,3365.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023397142049242647,0.0009906298016835481,0.0,0.003330344006607814,0.001359979213476401,0.0008421841760215598,0.0011281499275035544,0.0,0.0,0.000369349411792853,0.0008421841760215598,0.0011281499275035544,0.0,0.0,0.0009906298016835481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.618790977121753e-05,0.0,0.0,0.0002788202167355325,0.000144048618348389,0.00034500812650675,4.4014812933342085e-05,0.00010036181940313864,0.00013443992716490695,0.0,0.0,6.618790977121753e-05,0.0,0.0,0.0,0.0,0.0,0.00014088751180017981,8.724635778355678e-05,0.00011687107762275153,0.0,0.0 +99454,50.0,the Greater Atlanta and Macon Area,G1301210003100,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,120496.0,,19490.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.005880788545441694,0.00331438965133473,0.0,0.009195178196776425,0.004691825969335792,0.0009404361000810208,0.002707514840649163,0.0,0.0008553835563490273,0.00286425123560243,0.0009404361000810208,0.0012207176534092155,0.0,0.0008553835563490273,0.0018275747337333627,0.0014867971872399475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022144758727978947,0.0,0.0,0.0007008027653224446,0.0004078885906273582,0.000922250352602234,0.0003413275568366231,0.00011207004204507306,0.00014547067975266743,0.0,0.00010193448668808097,0.00012210755461289114,9.933884803075982e-05,0.0,0.0,0.0,0.0,0.0004705768677854653,9.432307959008874e-05,0.00027155607678596734,0.0,8.579255013563543e-05 +99455,50.0,the Greater Atlanta and Macon Area,G1301350050606,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,420367.0,,18994.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.021638505414622262,0.003230081782782379,0.0,0.024868569467043224,0.012019677962075096,0.0049527991590775505,0.0036709472194919918,0.0,0.0042251628567600025,0.008789596179292716,0.0049527991590775505,0.0036709472194919918,0.0,0.0042251628567600025,0.003230081782782379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021581470686155824,0.0,0.0,0.0025786185180071914,0.0008470970353014895,0.0027944332248687493,0.0010474390462482464,0.0005902154230549367,0.0004374596256732413,0.0,0.0005035044230307669,0.00021581470686155824,0.0,0.0,0.0,0.0,0.0,0.0013506280485476936,0.0005565364965833664,0.0004124972644881144,0.0,0.0004747734075761178 +99456,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,97321.0,,7119.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.013521288121854486,0.0020956090764323366,0.0,0.015616897198286827,0.005532722223349858,0.00535622629753177,0.0047279179877989,0.0,0.0,0.003437113146917521,0.00535622629753177,0.0047279179877989,0.0,0.0,0.0020956090764323366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014001726775466781,0.0,0.0,0.0016113052759155813,0.0005689903733109094,0.001751322543670249,0.0004095940044791695,0.00063829093903126,0.0005634166751852114,0.0,0.0,0.00014001726775466781,0.0,0.0,0.0,0.0,0.0,0.0006204549491867652,0.0006006622022776622,0.0005302019505875099,0.0,0.0 +99457,50.0,the Greater Atlanta and Macon Area,G1301390001606,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,44509.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0037400531667675704,0.0,0.0,0.0037400531667675704,0.00210990208494343,0.0013066418742126455,0.0003235092076114947,0.0,0.0,0.00210990208494343,0.0013066418742126455,0.0003235092076114947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044569573858633973,0.00013587586246547944,0.00044569573858633973,0.0002514334225110658,0.00015571027716121128,3.855203891406266e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002514334225110658,0.00015571027716121128,3.855203891406266e-05,0.0,0.0 +99458,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,84218.0,,6200.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.007757411783870332,0.001824957438492896,0.0,0.009582369222363229,0.0032798902938543898,0.0023279907753185423,0.003974488153190296,0.0,0.0,0.0014549328553614938,0.0023279907753185423,0.003974488153190296,0.0,0.0,0.001824957438492896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012193299220291838,0.0,0.0,0.0009244340303358851,0.00046288627138498244,0.0010463670225388034,0.0001733812102312919,0.000277421639455469,0.0004736311806491242,0.0,0.0,0.00012193299220291839,0.0,0.0,0.0,0.0,0.0,0.0003581545400092544,0.000254209863922057,0.00043400261860749196,0.0,0.0 +99459,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,295082.0,,22947.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.017649245016556063,0.0039022929753008413,0.0,0.021551520261495483,0.011534610734345292,0.0055150998411531045,0.0019328930805684766,0.0,0.0025689166054286105,0.010885360359865797,0.0055150998411531045,0.0008549402973135263,0.0,0.00039382678786221287,0.0006492503744794934,0.0010779527832549501,0.0021750898175663972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002607280588853087,0.0,0.0,0.0021032258419059467,0.0009348267700034858,0.0023639539007912556,0.001297187000682015,0.0006572236090395683,0.00010188155498491886,0.0,4.6931564307119955e-05,4.337905711847478e-05,7.202240798601538e-05,0.0001453265937808185,0.0,0.0,0.0,0.001265214133792719,0.000604943021399755,0.00021201614003007742,0.0,0.0002817806055687042 +99460,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,57099.0,,3918.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002755812345157387,0.0006663424428884243,0.0,0.0034221547880458115,0.001337472083360263,0.0010517827697989523,0.0006717147423987005,0.0,0.00036120292284931566,0.0011459664496622727,0.0010517827697989523,0.00047873748870284574,0.0,7.93433673547363e-05,0.00019150563369799029,0.00019297725369585468,0.0002818595554945794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.452053484117207e-05,0.0,0.0,0.0003284055485662047,0.00011888835561874077,0.0003729260834073768,0.00013656290538110333,0.0001253391937572514,5.705034592538133e-05,0.0,9.455216399988202e-06,1.2795122580477343e-05,1.2893446362921527e-05,1.8831965897773202e-05,0.0,0.0,0.0,0.0001457497561058803,0.00011461703319400965,7.319947914827896e-05,0.0,3.9361747108584896e-05 +99461,50.0,the Greater Atlanta and Macon Area,G1301210011416,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,6815.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001361854676191436,0.0,0.0,0.001361854676191436,0.0009414546203745366,0.00024853475658661884,0.00013398545945767802,0.0,3.78798397726028e-05,0.0009414546203745366,0.00024853475658661884,0.00013398545945767802,0.0,3.78798397726028e-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.00016229388509707006,5.962353271437471e-05,0.00016229388509707006,0.00011219429697922683,2.9618190496580566e-05,1.5967210850070054e-05,0.0,4.514186771192645e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011219429697922683,2.9618190496580566e-05,1.5967210850070054e-05,0.0,4.514186771192645e-06 +99462,35.0,Eastern Counties in South Carolina and Georgia,G1300510004211,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,25787.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.003059046693773737,0.0,0.0,0.003059046693773737,0.0017562318930902478,0.0010433027670873375,0.0002594816599967138,0.0,0.0,0.0017562318930902478,0.0010433027670873375,0.0002594816599967138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036454076342362234,9.111430838854163e-05,0.00036454076342362234,0.00020928680701707075,0.00012432840203782997,3.0921934804773964e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020928680701707075,0.00012432840203782997,3.0921934804773964e-05,0.0,0.0 +99463,50.0,the Greater Atlanta and Macon Area,G1302270050500,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,22861.0,,5515.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.002188205224293955,0.0016067026630581958,0.0,0.003794877513752713,0.0026737879585052924,0.0009017617937074138,0.0002193277615400059,0.0,0.0,0.001067085295447097,0.0009017617937074138,0.0002193277615400059,0.0,0.0,0.0016067026630581958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010734997752911238,0.0,0.0,0.00026076241193434546,0.0001715969306292265,0.0003681123894634579,0.00012716162647415327,0.00010746047843536194,2.613668748633328e-05,0.0,0.0,0.00010734997752911236,0.0,0.0,0.0,0.0,0.0,0.00025936396385839753,8.747309693277253e-05,2.1275328672287732e-05,0.0,0.0 +99465,50.0,the Greater Atlanta and Macon Area,G1301350050419,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,50940.0,,9283.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004233170844673634,0.002732633234353753,0.0,0.006965804079027389,0.0035792980928947777,0.0013723471248143755,0.002014158861318234,0.0,0.0,0.0008466648585410243,0.0013723471248143755,0.002014158861318234,0.0,0.0,0.002732633234353753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018257821563018135,0.0,0.0,0.0005044576550449937,0.0003183149377472606,0.0006870358706751749,0.00010089518822185293,0.00016353958720155857,0.00024002287962158217,0.0,0.0,0.00018257821563018138,0.0,0.0,0.0,0.0,0.0,0.00035302545890743926,0.0001353543239328466,0.0001986560878348888,0.0,0.0 +99466,81.0,the Columbus-Albany Area,G1302150010106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,4240.0,,315.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000697882288212276,0.00024952724147149047,0.0,0.0009474095296837667,0.0006345286697279665,0.0001961811789096372,6.0541577977173034e-05,0.0,5.6075395995250426e-05,0.00044115953132546577,0.0001961811789096372,6.0541577977173034e-05,0.0,0.0,0.00019336913840250073,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6669818586488022e-05,0.0,0.0,8.316643507032231e-05,4.4523938221593814e-05,9.983625365681032e-05,5.257285667991221e-05,2.3378855651434525e-05,7.2147227389755785e-06,0.0,0.0,1.2918142477696054e-05,0.0,3.7461508126081795e-06,0.0,0.0,0.0,6.686545072501516e-05,2.0673207653771633e-05,6.379758854367974e-06,0.0,5.909120906094926e-06 +99467,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,3645.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0003214438028497276,0.0,0.0,0.0003214438028497275,0.00023375522127293806,7.30788802472309e-05,1.4609701329558625e-05,0.0,0.0,0.00023375522127293806,7.30788802472309e-05,1.4609701329558625e-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,3.830679161983365e-05,1.1428728898183505e-05,3.830679161983365e-05,2.7856852339245938e-05,8.70888600938484e-06,1.741053271202871e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7856852339245948e-05,8.708886009384843e-06,1.7410532712028715e-06,0.0,0.0 +99468,50.0,the Greater Atlanta and Macon Area,G1300670031310,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,104735.0,,5828.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010518126007986482,0.0017154262336163946,0.0,0.012233552241602877,0.005204558263208522,0.002462534009327671,0.0045664599690666855,0.0,0.0,0.0034891320295921276,0.002462534009327671,0.0045664599690666855,0.0,0.0,0.0017154262336163946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011461489521030561,0.0,0.0,0.001253425044099749,0.0004829464165822606,0.0013680399393100548,0.0004157932187483431,0.00029345548787825806,0.0005441763374731482,0.0,0.0,0.00011461489521030561,0.0,0.0,0.0,0.0,0.0,0.0005820094956820604,0.00027537748726923954,0.000510652956358755,0.0,0.0 +99469,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010400,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,NaturalGas,14110.0,,2419.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012448931898600157,0.0007119681765004067,0.0,0.0019568613663604223,0.0008708482683036142,0.0005093247061166753,0.0005767190815464307,0.0,0.0,0.00015888009180320734,0.0005093247061166753,0.0005767190815464307,0.0,0.0,0.0007119681765004067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.757005702620785e-05,0.0,0.0,0.00014835130073380712,9.45116893668498e-05,0.000195921357760015,1.893340607185977e-05,6.0695153016918026e-05,6.872639886080523e-05,0.0,0.0,4.757005702620786e-05,0.0,0.0,0.0,0.0,0.0,8.71895056349009e-05,5.099369310391934e-05,5.774123167081539e-05,0.0,0.0 +99470,50.0,the Greater Atlanta and Macon Area,G1301350050220,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4893.0,,947.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,9613.75315558068,0.0,0.0,0.00043145698001326464,0.0002757922828947865,0.0,0.0007072492629080513,0.00048725328218041477,0.00018716211973542675,3.283386099220972e-05,0.0,0.0,0.00021146099928562816,0.00018716211973542675,3.283386099220972e-05,0.0,0.0,0.0002757922828947865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8426355829110422e-05,0.0,0.0,5.141599534048622e-05,3.333264770842838e-05,6.984235116959663e-05,2.5199448050719116e-05,2.2303791854141228e-05,3.912755435625878e-06,0.0,0.0,1.8426355829110422e-05,0.0,0.0,0.0,0.0,0.0,4.81172856973446e-05,1.848265269087629e-05,3.242412781375733e-06,0.0,0.0 +99471,35.0,Eastern Counties in South Carolina and Georgia,G1302450010300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,149958.0,,7669.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.029073554970424346,0.005275290748082255,0.0,0.034348845718506604,0.011403045071656064,0.00246537400366163,0.011579045880528372,0.00038255432539726936,0.008518826437263266,0.011403045071656064,0.00246537400366163,0.006303755132446118,0.00038255432539726936,0.008518826437263266,0.0,0.005275290748082255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003524657263555398,0.0,0.0,0.0034646404432149168,0.0011775809537807054,0.0038171061695704564,0.0013588792691933227,0.0002937939474352521,0.0007512065517345177,4.558827390893483e-05,0.001015172400942889,0.0,0.0003524657263555398,0.0,0.0,0.0,0.0,0.0012671934903319589,0.00027397119532913874,0.001286752044901783,4.251235944394549e-05,0.0009466770795636298 +99472,50.0,the Greater Atlanta and Macon Area,G1300670030332,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,188603.0,,9445.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01053273893194379,0.0016061579803197431,0.0,0.012138896912263534,0.0056891587992137635,0.0032471915815527304,0.002168777808900859,0.0,0.0010337687225961789,0.004856718330542284,0.0032471915815527304,0.0013950425668911746,0.0,0.0010337687225961789,0.0008324404686714791,0.0007737352420096842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010731424946238736,0.0,0.0,0.0012551661969314263,0.00040414175329013053,0.0013624804463938135,0.0005787657622487853,0.0003869615618938646,0.00016624453378710167,0.0,0.0001231922261086789,5.561889005452253e-05,5.169654404876057e-05,0.0,0.0,0.0,0.0,0.0006385561782411304,0.00036446763388282307,0.00024342552528104774,0.0,0.00011603110898881206 +99473,50.0,the Greater Atlanta and Macon Area,G1301350050721,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,10974.0,,1318.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0024669865954960618,0.0010454174120648459,0.0,0.0035124040075609074,0.0021522861799179974,0.0003705276903520973,0.0009182966397275303,0.0,7.1293497563283e-05,0.0011781622654164342,0.0003705276903520973,0.0009182966397275303,0.0,0.0,0.0009741239145015626,0.0,7.1293497563283e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.984864534722654e-05,0.0,0.0,0.0002939871568611636,0.00016417453690714372,0.0003638358022083901,0.0001403998608517928,4.415523879368423e-05,0.00010943205721568658,0.0,0.0,6.508523298256598e-05,0.0,4.763412364660544e-06,0.0,0.0,0.0,0.00022294666762901332,3.838147296537601e-05,9.512265498539502e-05,0.0,7.385006628605828e-06 +99474,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12038.0,,1708.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002890529520115055,0.001355155403218552,0.0,0.004245602216259867,0.0025397688203866527,0.0011401170114963529,0.00048565593699721326,0.0,7.997774030591027e-05,0.0011846134171681001,0.0011401170114963529,0.00048565593699721326,0.0,7.997774030591027e-05,0.001355155403218552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.054258351583883e-05,0.0,0.0,0.00034445534670018356,0.00018815464941164195,0.00043499793021602233,0.00014116666945511257,0.0001358641722012656,5.787409642117023e-05,0.0,9.530696736933173e-06,9.054258351583883e-05,0.0,0.0,0.0,0.0,0.0,0.00026022084119520813,0.00011681465077100246,4.975956687176833e-05,0.0,8.194397337363756e-06 +99475,81.0,the Columbus-Albany Area,G1302150010501,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,12228.0,,636.0,,8.72605822017302,Office,Residential Style Central Systems,2013 to 2018,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.002936183824819153,0.0005043477356622966,0.0,0.0034406142675551888,0.0013709524543027598,0.000987853288742288,0.0009134996294506505,0.0,0.00016830889505949057,0.0010349136136999539,0.000987853288742288,0.0009134996294506505,0.0,0.0,0.00033603884060280604,0.0,0.00016830889505949057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3699044406354066e-05,0.0,0.0,0.00034990341544445064,0.00011360856169607255,0.0003836024598508047,0.00012333008753151773,0.00011772193442631246,0.00010886124964322012,0.0,0.0,2.2453135031652438e-05,0.0,1.1245909374701626e-05,0.0,0.0,0.0,0.00015285082630978218,0.00011013816779947146,0.00010184829733298408,0.0,1.8765168408567003e-05 +99476,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,173545.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.015233798842872601,0.0,0.0,0.015233798842872601,0.004527207962611924,0.005763385304283391,0.004943205575977285,0.0,0.0,0.004527207962611924,0.005763385304283391,0.004943205575977285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001815383959155848,0.0005378854886141914,0.001815383959155848,0.0005394990967032193,0.0006868120906510327,0.0005890727718015959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005394990967032193,0.0006868120906510327,0.0005890727718015959,0.0,0.0 +99477,50.0,the Greater Atlanta and Macon Area,G1300630040613,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8131.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001593765310956454,0.0,0.0,0.0015937653109564542,0.0008611460517736689,0.0002704521311275353,0.0004172571870148059,0.0,4.482723396670462e-05,0.0008611460517736689,0.0002704521311275353,0.0004172571870148059,0.0,4.482723396670462e-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.00018992658759030227,5.852145005333944e-05,0.00018992658759030227,0.00010262146497095108,3.222936904101134e-05,4.972390422382329e-05,0.0,5.3419932783572305e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010262146497095107,3.222936904101133e-05,4.9723904223823284e-05,0.0,5.34199327835723e-06 +99478,50.0,the Greater Atlanta and Macon Area,G1300890023507,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,27503.0,,213.0,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006255218693977559,0.00016913596579688366,0.0,0.006424437366848183,0.003010454777037051,0.0009582441563436158,0.0022866024676706322,0.0,0.00016913596579688366,0.003010454777037051,0.0009582441563436158,0.0022866024676706322,0.0,0.0,0.0,0.0,0.00016913596579688366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1301943334136585e-05,0.0,0.0,0.0007454259243442138,0.00024740448093464866,0.0007567278676783504,0.0003587518110325797,0.00011419265591426877,0.0002724913134871214,0.0,0.0,0.0,0.0,1.1301943334136587e-05,0.0,0.0,0.0,0.0003545983708900225,0.00011287059328915081,0.00026933655210298227,0.0,1.9922351396194837e-05 +99479,35.0,Eastern Counties in South Carolina and Georgia,G1301030030202,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6353.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001192636003320813,0.0,0.0,0.001192636003320813,0.0005705961017274819,0.00019419620913989382,0.00038467059996151877,0.0,4.317309249191848e-05,0.0005705961017274819,0.00019419620913989382,0.00038467059996151877,0.0,4.317309249191848e-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.0001421264156213998,4.225776973047956e-05,0.0001421264156213998,6.799792936005807e-05,2.31423594923056e-05,4.584118994834469e-05,0.0,5.14493682069145e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.799792936005807e-05,2.31423594923056e-05,4.584118994834469e-05,0.0,5.14493682069145e-06 +99480,50.0,the Greater Atlanta and Macon Area,G1300670030601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,116648.0,,3571.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.010286140943992406,0.001040265407143562,0.0,0.011326406351135968,0.008497378925904325,0.0022674195716276117,0.0005616078536040312,0.0,0.0,0.007457113518760763,0.0022674195716276117,0.0005616078536040312,0.0,0.0,0.001040265407143562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.950481623816117e-05,0.0,0.0,0.001225780389029643,0.00037518155453582935,0.0012952852052678042,0.0008886504238893819,0.0002702041960864242,6.692576905383696e-05,0.0,0.0,6.950481623816117e-05,0.0,0.0,0.0,0.0,0.0,0.0009717582845837427,0.0002593015767061323,6.422534397792911e-05,0.0,0.0 +99481,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,30560.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007338019703372574,0.0,0.0,0.007338019703372572,0.003433087923844912,0.0014881483777913586,0.002258730183820486,0.0,0.00015805321791581648,0.003433087923844912,0.0014881483777913586,0.002258730183820486,0.0,0.00015805321791581648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008744588248484335,0.0002555124181372524,0.0008744588248484335,0.0004091150137014486,0.0001773400091915046,0.0002691688796209632,0.0,1.883492233451705e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004091150137014487,0.00017734000919150466,0.0002691688796209633,0.0,1.8834922334517053e-05 +99482,50.0,the Greater Atlanta and Macon Area,G1300670030410,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,10992.0,,1244.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005666268902620475,0.00021154094210264993,0.0,0.0007781678323646975,0.0004897303127832784,0.00013299544101181608,6.405979581065078e-05,0.0,9.138228275895213e-05,0.0003282599113308576,0.00013299544101181608,6.405979581065078e-05,0.0,4.1329472470143084e-05,0.00016147040145242088,0.0,5.005281028880905e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4133613537512595e-05,0.0,0.0,6.75246286531349e-05,3.587795979395605e-05,8.16582421906475e-05,3.9118561076542324e-05,1.5848996793515392e-05,7.6339721923705e-06,0.0,4.9252115085567765e-06,1.078826741145983e-05,0.0,3.3441615134018995e-06,0.0,0.0,0.0,5.1390606018543915e-05,1.3956081812573693e-05,6.722213516708273e-06,0.0,9.589340842821599e-06 +99483,50.0,the Greater Atlanta and Macon Area,G1301390001102,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,15435.0,,1112.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001316614799777747,0.00032730465116500017,0.0,0.0016439194509427473,0.0005014988565107611,0.0006473358656374447,0.0004950847287945412,0.0,0.0,0.000174194205345761,0.0006473358656374447,0.0004950847287945412,0.0,0.0,0.00032730465116500017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1867840396375648e-05,0.0,0.0,0.00015689877219092163,6.635882742834008e-05,0.00017876661258729728,2.075843059499012e-05,7.714192680410968e-05,5.899841479182181e-05,0.0,0.0,2.1867840396375648e-05,0.0,0.0,0.0,0.0,0.0,5.453506359050563e-05,7.039398423074079e-05,5.383756476605084e-05,0.0,0.0 +99484,50.0,the Greater Atlanta and Macon Area,G1300890023101,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,23348.0,,2936.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0020223957449632675,0.0008553509337665289,0.0,0.002877746678729797,0.0019166956189198908,0.0006940367471526291,0.00026698393905783853,0.0,0.0,0.001061344685153362,0.0006940367471526291,0.00026698393905783853,0.0,0.0,0.0008553509337665289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7149363789688584e-05,0.0,0.0,0.00024100591224343487,0.00011818120646344179,0.0002981552760331235,0.00012647887768115984,8.270733351499589e-05,3.181608147032009e-05,0.0,0.0,5.7149363789688584e-05,0.0,0.0,0.0,0.0,0.0,0.00019858346655543004,7.19072041517428e-05,2.7661458402355325e-05,0.0,0.0 +99485,50.0,the Greater Atlanta and Macon Area,G1301210011623,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,33704.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029720870785834535,0.0,0.0,0.002972087078583454,0.001953569168637322,0.0007275995745313449,0.0002908879618153492,0.0,0.0,0.001953569168637322,0.0007275995745313449,0.0002908879618153492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035417613660134557,8.513430650806429e-05,0.00035417613660134557,0.00023280192081762423,8.670620997521981e-05,3.466438626310499e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023280192081762417,8.67062099752198e-05,3.466438626310499e-05,0.0,0.0 +99486,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,126932.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,140298.9118897092,0.0,0.0,0.006533868677987918,0.0,0.0,0.006533868677987918,0.0032267130141125696,0.0024892895522911533,0.0006862004476788835,0.0,0.000131630203182472,0.0032267130141125696,0.0024892895522911533,0.0006862004476788835,0.0,0.000131630203182472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007786281014684138,0.00023863793887319508,0.0007786281014684138,0.00038452095565158815,0.00029664367216858265,8.177313902909952e-05,0.0,1.5686108835513276e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00038452095565158815,0.00029664367216858265,8.177313902909952e-05,0.0,1.5686108835513276e-05 +99487,50.0,the Greater Atlanta and Macon Area,G1301210003000,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,90490.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0071204829161921595,0.0,0.0,0.00712048291619216,0.005243121108544157,0.0012890555601381875,0.0005883366211092527,0.0,0.0,0.005243121108544157,0.0012890555601381875,0.0005883366211092527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008485352642512945,0.0002047599120970057,0.0008485352642512945,0.0006248134020830215,0.000153614454697884,7.011102703812472e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006248134020830214,0.000153614454697884,7.01110270381247e-05,0.0,0.0 +99488,50.0,the Greater Atlanta and Macon Area,G1301350050540,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,78088.0,,4167.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006885907607734402,0.0012138809015297515,0.0,0.008099758135664716,0.005078405078793229,0.002374668751242313,0.0006467450528280496,0.0,0.0,0.0038645241772634776,0.002374668751242313,0.0006467450528280496,0.0,0.0,0.0012138809015297515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.110383764407094e-05,0.0,0.0,0.0008205795345809474,0.000285898999497245,0.0009016833722250183,0.0004605274469837177,0.0002829844211806765,7.707128597631355e-05,0.0,0.0,8.110383764407094e-05,0.0,0.0,0.0,0.0,0.0,0.0005653395249925138,0.0002643534895331566,7.199712021474894e-05,0.0,0.0 +99489,50.0,the Greater Atlanta and Macon Area,G1301350050718,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,89956.0,,5322.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008049186092600859,0.0015503292625017283,0.0,0.009599515355102589,0.006412474313298166,0.002778546502966099,0.0004084945388383243,0.0,0.0,0.0048621450507964365,0.002778546502966099,0.0004084945388383243,0.0,0.0,0.0015503292625017283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010358302609535354,0.0,0.0,0.0009592059327361584,0.00037167871043608286,0.001062788958831512,0.0005794124182114321,0.000331114010704554,4.8679503820172355e-05,0.0,0.0,0.00010358302609535354,0.0,0.0,0.0,0.0,0.0,0.0007099428092837444,0.00030762058663540945,4.522556291235827e-05,0.0,0.0 +99490,50.0,the Greater Atlanta and Macon Area,G1301210011423,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,56729.0,,5360.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012690992311154406,0.003687267149854595,0.0,0.016378259461009,0.005372399588837393,0.0011035551940172072,0.005722895087190683,0.00037165288980289644,0.003807828421131838,0.005372399588837393,0.0011035551940172072,0.002035627937336089,0.00037165288980289644,0.003807828421131838,0.0,0.003687267149854595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002463639161116446,0.0,0.0,0.0015123597287667197,0.000658944967904219,0.0017587236448783643,0.000640217926683267,0.00013150842684193182,0.00024258163898450326,4.428911859978492e-05,0.0004537711643802357,0.0,0.0002463639161116446,0.0,0.0,0.0,0.0,0.0005768968435942115,0.00011850151829422936,0.0006145336096892202,3.990868056155823e-05,0.00040889069414411645 +99491,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,101179.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009858115334948089,0.0,0.0,0.009858115334948089,0.003486462033844228,0.00223570712918135,0.0041359154823162134,0.0,0.0,0.003486462033844228,0.00223570712918135,0.0041359154823162134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011747728565910493,0.0003599809704928705,0.0011747728565910493,0.00041547505012194,0.0002664249667822718,0.0004928691824648196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041547505012194,0.0002664249667822718,0.0004928691824648196,0.0,0.0 +99492,50.0,the Greater Atlanta and Macon Area,G1300970080301,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,15289.0,,2016.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013568181840277376,0.0005934142273723809,0.0,0.001950232411400119,0.0010127263182178941,0.0003921824788783438,0.0005453236143038808,0.0,0.0,0.00041931209084551316,0.0003921824788783438,0.0005453236143038808,0.0,0.0,0.0005934142273723809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.964833988521149e-05,0.0,0.0,0.00016168782207259816,8.2997090896219e-05,0.00020133616195780964,4.9968123611271155e-05,4.673517175059899e-05,6.498452671072804e-05,0.0,0.0,3.964833988521149e-05,0.0,0.0,0.0,0.0,0.0,0.0001045508365217203,4.048774629264716e-05,5.629757914344217e-05,0.0,0.0 +99493,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,13048.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0028470255993281795,0.0,0.0,0.0028470255993281795,0.0009988533295496157,0.0008468377280167687,0.0009221838721932778,0.0,7.89852554210386e-05,0.0009988533295496157,0.0008468377280167687,0.0009221838721932778,0.0,7.89852554210386e-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.0003392702969637097,9.132522662101697e-05,0.0003392702969637097,0.00011902993279001605,0.00010091475381609458,0.00010989349595169983,0.0,9.41240256806039e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011902993279001605,0.00010091475381609458,0.00010989349595169983,0.0,9.41240256806039e-06 +99494,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,27282.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002587861045695893,0.0,0.0,0.002587861045695893,0.0016870408335710498,0.0007003544558356815,0.0002004961298885998,0.0,0.0,0.0016870408335710498,0.0007003544558356815,0.0002004961298885998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030838907882879376,7.031639011771829e-05,0.00030838907882879376,0.0002010405347987429,8.345952957869423e-05,2.3892633999000808e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002010405347987429,8.345952957869423e-05,2.3892633999000808e-05,0.0,0.0 +99495,50.0,the Greater Atlanta and Macon Area,G1300770170603,ComStock 90.1-2004,gen4_led,500001_1mil,Electricity,857650.0,,131801.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,5710517.97752821,0.0,0.0,0.18462576026153418,0.09123030262275271,0.0,0.2758559907172642,0.21461628206561675,0.0258208555646282,0.022214452937603178,0.000805889142856912,0.012398583173581884,0.12338597944286403,0.0258208555646282,0.022214452937603178,0.000805889142856912,0.012398583173581884,0.09123030262275271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0060954735091478624,0.0,0.0,0.022001493631412704,0.01083424637238246,0.028096967140560567,0.0147036677713461,0.0030770212588863456,0.0026472532551234797,9.603624553298648e-05,0.0014775151005237937,0.0060954735091478624,0.0,0.0,0.0,0.0,0.0,0.021859473159701534,0.002629950969903352,0.0022626253379905417,8.208283136034168e-05,0.0012628421920866967 +99496,35.0,Eastern Counties in South Carolina and Georgia,G1301810970100,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,9012.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006954946799256412,0.0,0.0,0.0006954946799256412,0.0004692417377138279,0.00016015998983526537,6.609295237654796e-05,0.0,0.0,0.0004692417377138279,0.00016015998983526537,6.609295237654796e-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,8.288239206064732e-05,2.7164227461521098e-05,8.288239206064732e-05,5.591973425386236e-05,1.9086333013179898e-05,7.876324793605055e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.591973425386236e-05,1.9086333013179898e-05,7.876324793605055e-06,0.0,0.0 +99497,35.0,Eastern Counties in South Carolina and Georgia,G1301030030304,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4379.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010515377355215546,0.0,0.0,0.0010515377355215546,0.0006347767909491845,0.00023050461451144976,0.00014721859125596719,0.0,3.90377388049531e-05,0.0006347767909491845,0.00023050461451144976,0.00014721859125596719,0.0,3.90377388049531e-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.0001253058898899118,3.420809500369689e-05,0.0001253058898899118,7.564281146020709e-05,2.7467949907439365e-05,1.754321881422392e-05,0.0,4.6519097080414e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.564281146020709e-05,2.7467949907439365e-05,1.754321881422392e-05,0.0,4.6519097080414e-06 +99498,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,60114.0,,846.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005195197933287723,0.00024904615510585806,0.0,0.005444274777999879,0.0015159437926813267,0.0014297980678036751,0.0024985022279085793,0.0,0.0,0.0012668976375754687,0.0014297980678036751,0.0024985022279085793,0.0,0.0,0.00024904615510585806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6640348763508094e-05,0.0,0.0,0.0006191030061700162,0.00020059441656956003,0.0006357433549335243,0.0001509740622021505,0.00017038663268661102,0.0002977423112812547,0.0,0.0,1.6640348763508094e-05,0.0,0.0,0.0,0.0,0.0,0.0001770210417270565,0.0001669615619285334,0.00029175716756585807,0.0,0.0 +99499,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,14164.0,,2707.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012619566109615386,0.000796824937913555,0.0,0.0020587815488750934,0.0010462700579012831,0.000454635827694169,0.0005578756632796413,0.0,0.0,0.0002494451199877283,0.000454635827694169,0.0005578756632796413,0.0,0.0,0.000796824937913555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3238219676396723e-05,0.0,0.0,0.0001503857299236101,9.827494474842619e-05,0.00020362394960000683,2.972605089540621e-05,5.417836097004766e-05,6.648131805815624e-05,0.0,0.0,5.3238219676396723e-05,0.0,0.0,0.0,0.0,0.0,0.00010348142164694164,4.496579198280516e-05,5.517673597026005e-05,0.0,0.0 +99500,50.0,the Greater Atlanta and Macon Area,G1300890023603,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7844.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015711035727518838,0.0,0.0,0.0015711035727518838,0.000820536878567669,0.00021495568464846,0.000490452947274093,0.0,4.499264811418324e-05,0.000820536878567669,0.00021495568464846,0.000490452947274093,0.0,4.499264811418324e-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.0001872261002673696,5.78098776338543e-05,0.0001872261002673696,9.778217207583564e-05,2.5615952547636005e-05,5.844655583204368e-05,0.0,5.361707651371292e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.778217207583564e-05,2.5615952547636005e-05,5.844655583204368e-05,0.0,5.361707651371292e-06 +99501,50.0,the Greater Atlanta and Macon Area,G1301690030103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12994.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031201243568153725,0.0,0.0,0.0031201243568153725,0.0012646738645477498,0.0008266572020243778,0.0009583268634173552,0.0,7.046642682588993e-05,0.0012646738645477498,0.0008266572020243778,0.0009583268634173552,0.0,7.046642682588993e-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.0003718198291746026,0.00011267963353312856,0.0003718198291746026,0.00015070899954695423,9.85113106057032e-05,0.00011420215667716689,0.0,8.397362344778301e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015070899954695423,9.85113106057032e-05,0.00011420215667716689,0.0,8.397362344778301e-06 +99502,50.0,the Greater Atlanta and Macon Area,G1301210001202,ComStock 90.1-2007,gen2_t8_halogen,500001_1mil,NaturalGas,512424.0,,1798.0,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,4319970.345818221,0.21940078418009498,0.06391285025538863,0.08121840410019966,0.0009416900323014674,0.0,0.3654737831618761,0.29559736918230345,0.023453208170706508,0.04548157037045608,0.0,0.0009416900323014674,0.012283734746819805,0.023453208170706508,0.04548157037045608,0.0,0.0,0.0,0.0,0.0009416900323014674,0.06391285025538863,0.0,0.0,0.21940078418009498,0.0,0.0,0.0,6.291741035955133e-05,0.0,0.0,0.009678642250775577,0.0026033365417587927,0.009741559661135128,0.001463829232241685,0.002794874068655542,0.005419951961578086,0.0,0.0,0.0,0.0,6.291741035955133e-05,0.0,0.0,0.0,0.007879031384006464,0.0006251360211486489,0.001212293334456968,0.0,2.5100376701706832e-05 +99503,85.0,Rural Climate Zone 3A,G1300810010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,127236.0,,2178.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0062496155237016324,0.00037035178934206295,0.0,0.006619967313043695,0.0032329541013324282,0.0017111749110107163,0.001033875104764699,0.0,0.0006419631959358518,0.0032329541013324282,0.0017111749110107163,0.000663523315422636,0.0,0.0006419631959358518,0.0,0.00037035178934206295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.474456992600885e-05,0.0,0.0,0.0007447549681261553,0.00020169159134114775,0.0007694995380521643,0.00038526508063731993,0.00020391750684100246,7.907082983816178e-05,0.0,7.650155080967117e-05,0.0,2.474456992600885e-05,0.0,0.0,0.0,0.0,0.0003757959170912198,0.00019890555969283053,0.00012017678908361366,0.0,7.462127218450036e-05 +99504,46.0,the Tallahassee-Valdosta Area,G1301850010900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,36195.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0029648885355167062,0.0,0.0,0.0029648885355167062,0.0017526174347571558,0.000997438631936332,0.0002148628424226564,0.0,0.0,0.0017526174347571558,0.000997438631936332,0.0002148628424226564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003533214307930225,9.901901062627496e-05,0.0003533214307930225,0.00020885685659453548,0.00011886330306935548,2.560489070655686e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020885685659453548,0.00011886330306935548,2.560489070655686e-05,0.0,0.0 +99505,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,35170.0,,14698.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007323039360519984,0.010110579473983734,0.0,0.017433547114532703,0.00852004567677053,0.0007151198309966578,0.003324866136312713,0.0003714377298898497,0.004502149460533968,0.0038199490962334756,0.0007151198309966578,0.0019238882224937666,0.0003714377298898497,0.0004926444809062324,0.004700096580537054,0.0014009779138189462,0.004009504979627735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006755290928781723,0.0,0.0,0.0008726688380316308,0.0009159225304185726,0.0015481979309098033,0.0004552140682353702,8.521909568500765e-05,0.00022926509294457224,4.4263333321898965e-05,5.870724784478161e-05,0.0003140326415177243,9.360505416130905e-05,0.00026789139719913906,0.0,0.0,0.0,0.0007566284131034525,6.350669977991282e-05,0.00029526698376260944,3.298577857388111e-05,0.000399816424830433 +99506,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,23732.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0020876604684012317,0.0,0.0,0.0020876604684012317,0.0011042427241976438,0.0004130207215544841,0.0005704277122554017,0.0,0.0,0.0011042427241976438,0.0004130207215544841,0.0005704277122554017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002487828060235198,8.192261917116718e-05,0.0002487828060235198,0.00013159065260613401,4.921894896677001e-05,6.79768616767242e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013159065260613401,4.921894896677001e-05,6.79768616767242e-05,0.0,0.0 +99507,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970600,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,Electricity,49007.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009249509752458343,0.0,0.0,0.009249509752458343,0.002718454636244215,0.002179852045719531,0.0043512030704945985,0.0,0.0,0.002718454636244215,0.002179852045719531,0.0043512030704945985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011022455529927867,0.0003454555759043803,0.0011022455529927867,0.0003239527946890831,0.00025976860264815453,0.0005185241556555492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003239527946890831,0.00025976860264815453,0.0005185241556555492,0.0,0.0 +99508,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,15198.0,,2228.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012611279915915004,0.0006558061969756107,0.0,0.0019169341885671115,0.0008803927358621998,0.0004786657894252703,0.0005578756632796413,0.0,0.0,0.00022458653888658898,0.0004786657894252703,0.0005578756632796413,0.0,0.0,0.0006558061969756107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.381705848376762e-05,0.0,0.0,0.0001502876601518439,8.909653574067832e-05,0.0001941047186356115,2.6763806414503534e-05,5.704223676510134e-05,6.648161697223905e-05,0.0,0.0,4.381705848376762e-05,0.0,0.0,0.0,0.0,0.0,8.914671421824127e-05,4.846868970829676e-05,5.648931470907345e-05,0.0,0.0 +99509,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,10376.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0022600534970003143,0.0,0.0,0.0022600534970003143,0.0011639366487332737,0.0004377685413021542,0.0006188970327912375,0.0,3.953398124738895e-05,0.0011639366487332737,0.0004377685413021542,0.0006188970327912375,0.0,3.953398124738895e-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.00026932489417191765,9.345173121750045e-05,0.00026932489417191765,0.00013870340465788622,5.2167776654174055e-05,7.375240368471274e-05,0.0,4.711165169222596e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013870340465788622,5.2167776654174055e-05,7.375240368471274e-05,0.0,4.711165169222596e-06 +99510,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010601,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,76829.0,,20572.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,56751.431377317895,0.0,0.0,0.015997282974974075,0.01415164124085834,0.0,0.030148924215832422,0.011737547016472873,0.0010871313206546323,0.012945956808114901,0.0003796855265566449,0.0039985318240623475,0.011737547016472873,0.0010871313206546323,0.002321432021833298,0.0003796855265566449,0.0004714153694856115,0.0,0.010624524786281604,0.0035271164545767355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009455294833179927,0.0,0.0,0.0019063625309740206,0.0015474407222802755,0.0028518920142920133,0.0013987387653737527,0.0001295511506039139,0.0002766401664301019,4.5246324798596134e-05,5.617757704971146e-05,0.0,0.0007098682944751321,0.00023566118884286056,0.0,0.0,0.0,0.001110295556949835,0.00010283554761909349,0.0012246032586145734,3.591577972657877e-05,0.0003782350871394445 +99511,50.0,the Greater Atlanta and Macon Area,G1301350050419,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,309022.0,,48105.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.015302667143334912,0.008180771028850942,0.0,0.023483438172185855,0.012956958057823348,0.0034385021812751,0.004073656918425651,0.0,0.0030143032843003366,0.009444201122921067,0.0034385021812751,0.001974045249424419,0.0,0.00044590085935290795,0.0035127569349022807,0.002099611669001233,0.002568402424947429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005465916529493354,0.0,0.0,0.0018235884705318525,0.0010997548638183904,0.0023701801234811883,0.0011254467028412125,0.0004097594801572209,0.00023524305426237158,0.0,5.3137120379068804e-05,0.00023470203635893286,0.0001402838691687831,0.0001716057474216194,0.0,0.0,0.0,0.0013077439608398613,0.00034704754324508505,0.00041115362184784306,0.0,0.00030423320802550584 +99512,85.0,Rural Climate Zone 3A,G1302870970200,ComStock 90.1-2007,gen3_t5_cfl,100001_200000,NaturalGas,213760.0,,11829.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,1459415.2837631335,0.0,0.0,0.05517173798913477,0.010462508413380499,0.0,0.06563433861976806,0.04990032316886181,0.007297888949963475,0.0026558568798674227,0.000668851734363834,0.005111233452205963,0.0429827381693349,0.007297888949963475,0.0026558568798674227,0.000668851734363834,0.0015663100383523673,0.006917584999526903,0.0,0.0035449234138535965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000699046011943959,0.0,0.0,0.006574711785115293,0.00255065361204298,0.0072737577970592516,0.005122171704181308,0.0008696756389156483,0.00031649344689998067,7.970579758213751e-05,0.00018665420818042265,0.00046219415221862537,0.0,0.00023685185972533368,0.0,0.0,0.0,0.0055300757554364414,0.0008087698873510332,0.0002943285495679668,7.41237836811272e-05,0.0005664393815400739 +99513,81.0,the Columbus-Albany Area,G1300950000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,240760.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01562028883781374,0.0,0.0,0.015620288837813736,0.007277214080523632,0.0038255382407134325,0.0028224962344582057,0.0,0.001695022551757048,0.007277214080523632,0.0038255382407134325,0.0028224962344582057,0.0,0.001695022551757048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018614392640421275,0.00044420720063424686,0.0018614392640421275,0.0008672113661262403,0.00045588190854192317,0.00033635135482980674,0.0,0.00020199252165167112,0.0,0.0,0.0,0.0,0.0,0.0,0.0008672113661262405,0.0004558819085419233,0.00033635135482980685,0.0,0.00020199252165167117 +99514,50.0,the Greater Atlanta and Macon Area,G1300570090905,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,13496.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0032556812506740977,0.0,0.0,0.0032556812506740972,0.0016476076159607433,0.0006087240627213026,0.0009257402763640679,0.0,7.360929562798359e-05,0.0016476076159607433,0.0006087240627213026,0.0009257402763640679,0.0,7.360929562798359e-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.0003879759044830089,0.00010480636833048391,0.0003879759044830089,0.00019634356247347882,7.254096781310194e-05,0.00011031943651250679,0.0,8.771937683921294e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019634356247347885,7.254096781310195e-05,0.0001103194365125068,0.0,8.771937683921296e-06 +99515,50.0,the Greater Atlanta and Macon Area,G1301210006601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,59014.0,,13510.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.009795078883612605,0.003976697804843731,0.0,0.01377174599885004,0.005539443247129055,0.003181468726457657,0.0050508340252633285,0.0,0.0,0.0015627454422853233,0.003181468726457657,0.0050508340252633285,0.0,0.0,0.003976697804843731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002656991764661115,0.0,0.0,0.0011672597970518613,0.0005812695560045429,0.0014329589735179726,0.00018622922280467791,0.00037912921213781623,0.0006018977048908757,0.0,0.0,0.0002656991764661115,0.0,0.0,0.0,0.0,0.0,0.0005763826104496795,0.000331033854452803,0.0005255425086154902,0.0,0.0 +99516,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,68164.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006585026731704034,0.0,0.0,0.006585026731704034,0.004503493588635462,0.0012897541529252557,0.0007917486165438769,0.0,0.0,0.004503493588635462,0.0012897541529252557,0.0007917486165438769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007847233090558133,0.00022370519303645063,0.0007847233090558133,0.0005366715330358504,0.00015369719638026115,9.435096008393819e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005366715330358504,0.00015369719638026115,9.435096008393819e-05,0.0,0.0 +99517,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,69844.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006618862921477688,0.0,0.0,0.006618862921477689,0.003324025975268684,0.002785441310038469,0.0005094260097699736,0.0,0.0,0.003324025975268684,0.002785441310038469,0.0005094260097699736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007887586110778225,0.000248400372600327,0.0007887586110778225,0.000396118508955945,0.00033193629253379896,6.0707429158145334e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003961185089559449,0.0003319362925337989,6.070742915814533e-05,0.0,0.0 +99518,85.0,Rural Climate Zone 3A,G1300090970500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,82817.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003681514514898343,0.0,0.0,0.003681514514898343,0.0022574473463625433,0.0006799770908204449,0.00047643254171823884,0.0,0.00026767526635853716,0.0022574473463625433,0.0006799770908204449,0.00047643254171823884,0.0,0.00026767526635853716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004387187968445857,9.949538099138904e-05,0.0004387187968445857,0.000269015531441827,8.103152383601689e-05,5.6775522854622036e-05,0.0,3.1898331604191465e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000269015531441827,8.103152383601689e-05,5.6775522854622036e-05,0.0,3.1898331604191465e-05 +99519,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,107874.0,,7381.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009611462969133452,0.002172701367452166,0.0,0.01178413364697932,0.00415960785837804,0.0030580658195345943,0.0045664599690666855,0.0,0.0,0.001986906490925874,0.0030580658195345943,0.0045664599690666855,0.0,0.0,0.002172701367452166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014516690675097437,0.0,0.0,0.0011453780915110913,0.0004480158369800925,0.0012905449982620657,0.00023677552230041567,0.00036442335608453426,0.0005441755559094612,0.0,0.0,0.00014516690675097437,0.0,0.0,0.0,0.0,0.0,0.00045554143199465555,0.00033490553196230914,0.0005000980343051009,0.0,0.0 +99520,50.0,the Greater Atlanta and Macon Area,G1301350050313,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,6484.0,,328.0,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001137222263915477,0.0002600310398363825,0.0,0.0013972533037518596,0.0008483264553440762,0.00035158777046579587,0.00015185018738536843,0.0,4.557159763035838e-05,0.0005882954155076936,0.00035158777046579587,0.00015185018738536843,0.0,4.557159763035838e-05,0.0002600310398363825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7373076131289818e-05,0.0,0.0,0.0001355229476519021,5.540071210969726e-05,0.00015289602378319194,7.010725284712579e-05,4.1898767306780794e-05,1.809600959191944e-05,0.0,5.430774120450768e-06,1.7373076131289818e-05,0.0,0.0,0.0,0.0,0.0,9.282908227442877e-05,3.84728896118355e-05,1.6616378576177363e-05,0.0,4.986723635878936e-06 +99521,81.0,the Columbus-Albany Area,G1302150001800,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,8044.0,,484.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,24284.436554246196,0.0,0.0,0.0006218941820166493,0.0001423383940087455,0.0,0.0007642325760253946,0.0003262612045508783,0.00020964070061960772,0.0002283306708549087,0.0,0.0,0.00018392281054213278,0.00020964070061960772,0.0002283306708549087,0.0,0.0,0.0001423383940087455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.511105863943535e-06,0.0,0.0,7.410847615067698e-05,3.3582047983160933e-05,8.36195820146205e-05,2.1917296563906787e-05,2.4981987790430045e-05,2.7209191796340145e-05,0.0,0.0,9.511105863943535e-06,0.0,0.0,0.0,0.0,0.0,3.569832850363146e-05,2.2938132067379036e-05,2.4983121443610015e-05,0.0,0.0 +99522,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,12141.0,,1697.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010817779323877255,0.0004995347217077081,0.0,0.0015813126540954335,0.0007196405780748326,0.00039798281446860965,0.0004636892615519913,0.0,0.0,0.00022010585636712436,0.00039798281446860965,0.0004636892615519913,0.0,0.0,0.0004995347217077081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.337504315199999e-05,0.0,0.0,0.00012891489894269496,8.367377135131295e-05,0.00016228994209469496,2.622989745005555e-05,4.7427399628042435e-05,5.525760186459695e-05,0.0,0.0,3.337504315199999e-05,0.0,0.0,0.0,0.0,0.0,7.385663261612589e-05,4.084493205535078e-05,4.7588377423218295e-05,0.0,0.0 +99523,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,143153.0,,7387.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011209832476493877,0.002152151761761343,0.0,0.013361984238255221,0.00856808866539541,0.0036686448344894164,0.0011252811119698294,0.0,0.0,0.006415936903634069,0.0036686448344894164,0.0011252811119698294,0.0,0.0,0.002152151761761343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014379445291782622,0.0,0.0,0.0013358542192064848,0.00042112591472673837,0.0014796486721243111,0.0007645748855617916,0.0004371853630461736,0.00013409759016206317,0.0,0.0,0.00014379445291782622,0.0,0.0,0.0,0.0,0.0,0.0009487932922491693,0.00040624995218201175,0.00012460879113491163,0.0,0.0 +99524,50.0,the Greater Atlanta and Macon Area,G1301430010302,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,124003.0,,8963.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.033198856519112196,0.007927917220909802,0.0,0.041126773740021993,0.02933393923813568,0.0067292773693640815,0.001984976365942579,0.0006378667374320472,0.0024408062464003795,0.021406022017225884,0.0067292773693640815,0.001984976365942579,0.0006378667374320472,0.0024408062464003795,0.007927917220909802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005296953432490803,0.0,0.0,0.003956248688206967,0.0014840281968280236,0.004485944031456047,0.002550917573821427,0.0008019160162881242,0.00023654610330814394,7.601344467281911e-05,0.00029086653948246004,0.0005296953432490803,0.0,0.0,0.0,0.0,0.0,0.0031996287984134672,0.000734002667992768,0.00021651328493866597,6.957595316705005e-05,0.00026623338563329195 +99525,50.0,the Greater Atlanta and Macon Area,G1301210007500,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,20122.0,,1992.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002838450996868233,0.0005864476867428024,0.0,0.0034248679940047377,0.0014114763728439463,0.0008583575985404492,0.0011550647122266396,0.0,0.0,0.0008250286861011439,0.0008583575985404492,0.0011550647122266396,0.0,0.0,0.0005864476867428024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.918246502294686e-05,0.0,0.0,0.00033825179095375006,0.00012930258723316062,0.0003774342559766969,9.831680411951324e-05,0.00010228853529809422,0.00013764645153614255,0.0,0.0,3.918246502294686e-05,0.0,0.0,0.0,0.0,0.0,0.00015555038487486436,9.459446674563147e-05,0.00012729278647450145,0.0,0.0 +99526,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Propane,165037.0,,,24121.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013552639321925988,0.0,0.002273433544316286,0.015826072866242276,0.010266215862761241,0.0038471201047856453,0.0017127065250959498,0.0,0.0,0.007992782318444957,0.0038471201047856453,0.0017127065250959498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002273433544316286,0.0,0.0,0.0,0.0,0.0001833489774502283,0.0016150419139721048,0.0006076373860356128,0.001798390891422333,0.0009524844679264486,0.00045845389003022595,0.00020409993645211107,0.0,0.0,0.0,0.0,0.0,0.0001833489774502283,0.0,0.0,0.0011665982618054912,0.00043716630228665096,0.00019462287583562043,0.0,0.0 +99527,50.0,the Greater Atlanta and Macon Area,G1302470060307,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,9202.0,,709.0,,8.72605822017302,Office,Residential Style Central Systems,2013 to 2018,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.001894984473515012,0.0005628216367959871,0.0,0.0024578061103109985,0.0012383730150986503,0.0006068218000252985,0.0005211372716313761,0.0,9.147402355567401e-05,0.0006755513783026631,0.0006068218000252985,0.0005211372716313761,0.0,9.147402355567401e-05,0.0005628216367959871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.760227353330378e-05,0.0,0.0,0.00022582147379293465,9.175060128736459e-05,0.0002634237473262384,8.05040938347019e-05,7.231372875431045e-05,6.210287650005591e-05,0.0,1.0900774703866344e-05,3.760227353330378e-05,0.0,0.0,0.0,0.0,0.0,0.00013272684889846785,6.503819477513246e-05,5.58546633880482e-05,0.0,9.804040264589956e-06 +99528,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,30138.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007046146440146557,0.0,0.0,0.007046146440146557,0.004469655679019652,0.0011633576992170981,0.001271207723373155,0.0,0.00014209075268413015,0.004469655679019652,0.0011633576992170981,0.001271207723373155,0.0,0.00014209075268413015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008396803064973767,0.0002468654418631887,0.0008396803064973767,0.0005326431805494663,0.00013863585688184731,0.0001514882070435087,0.0,1.6932774216053867e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005326431805494663,0.00013863585688184731,0.0001514882070435087,0.0,1.6932774216053867e-05 +99529,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,331885.0,,60784.0,,9.525004485617233,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.0,0.08698766704400453,0.05263302034034497,0.0,0.1396206873843495,0.06096294061609618,0.01274802447715052,0.04671320488621616,0.0006636455103291182,0.0185327816149343,0.04730327250361666,0.01274802447715052,0.016886622965044337,0.0006636455103291182,0.009386101587863887,0.013659668112479512,0.029826581921171824,0.009146680027070413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035166312852511535,0.0,0.0,0.010366153404120594,0.006606548763187138,0.013882784689371748,0.005637040237455209,0.0015191576210772124,0.0020123464633744342,7.908536232552855e-05,0.0011185237198882093,0.0009126593138655927,0.001992838154410422,0.0006111277850175312,0.0,0.0,0.0,0.0060616760629061866,0.001267563441683496,0.004644794247435718,6.598769783022944e-05,0.001842754262819366 +99530,50.0,the Greater Atlanta and Macon Area,G1301350050718,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,8316.0,,657.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0007955826368884039,0.0002442700634592099,0.0,0.0010398139519238417,0.0005104717347734187,0.0001694856055790901,0.0003234330932255751,0.0,3.634602149821365e-05,0.00034954953084795885,0.0001694856055790901,0.0002764700036138107,0.0,0.0,0.0001609222039254598,4.6963089611764336e-05,3.634602149821365e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6319649096224054e-05,0.0,0.0,9.480627387668559e-05,3.957782985400411e-05,0.00011112592297290964,4.165436375616504e-05,2.019689469786785e-05,3.294578044565321e-05,0.0,0.0,1.0751190148575268e-05,3.137597510251198e-06,2.428272660573947e-06,0.0,0.0,0.0,5.455460813285305e-05,1.8113090631023168e-05,3.45656075667925e-05,0.0,3.884334479172321e-06 +99531,50.0,the Greater Atlanta and Macon Area,G1300570091005,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,71559.0,,3344.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004417111749493495,0.0005686126907410934,0.0,0.004985724440234589,0.001867663080904102,0.0009310567388898128,0.0018605000148904005,0.0,0.00032650460555027234,0.0015521690297956826,0.0009310567388898128,0.0018605000148904005,0.0,7.338596591759855e-05,0.00031549405110841956,0.0,0.0002531186396326738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.799087298221758e-05,0.0,0.0,0.0005263787629767708,0.0001662074813569706,0.0005643696359589884,0.00018496901599294918,0.0001109522516685714,0.00022171223004909736,0.0,8.745265266152824e-06,2.1079189081558454e-05,0.0,1.6911683900659128e-05,0.0,0.0,0.0,0.00021141407747241953,0.00010539293919735415,0.00021060323904623633,0.0,3.69593802429783e-05 +99532,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,24831.0,,5943.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0012781640244101866,0.00101070152238869,0.0,0.0022888655467988767,0.0009441240152563917,0.0003428697291409811,0.0006505624212245774,0.0,0.00035132711153834623,0.0007475652285536863,0.0003428697291409811,0.0001200700075365976,0.0,6.767678954034155e-05,0.00019655878670270536,0.0005304924136879798,0.0002836503219980047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.752955490446421e-05,0.0,0.0,0.0001523158946723768,0.000108789951253955,0.000219845449576841,8.908564506473141e-05,4.0859004441376936e-05,1.4308469235546836e-05,0.0,8.064888817495902e-06,1.3132984451457623e-05,3.544460533895111e-05,1.8951965114055475e-05,0.0,0.0,0.0,9.068307611192865e-05,3.293262457233894e-05,6.248649605999898e-05,0.0,3.374495583312111e-05 +99533,85.0,Rural Climate Zone 3A,G1302850960501,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,8135.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001728743255299004,0.0,0.0,0.0017287432552990038,0.0008630483144696731,0.0002339783116085007,0.0005816788496085492,0.0,5.0037779612280984e-05,0.0008630483144696731,0.0002339783116085007,0.0005816788496085492,0.0,5.0037779612280984e-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.0002060097697094618,7.151187672483776e-05,0.0002060097697094618,0.00010284718911674643,2.7882577672379073e-05,6.931713282779854e-05,0.0,5.962870092537765e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010284718911674645,2.7882577672379077e-05,6.931713282779854e-05,0.0,5.962870092537765e-06 +99534,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970800,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,116695.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009943831405337574,0.0,0.0,0.009943831405337573,0.002406678925865852,0.0030245220798512046,0.004512630399620515,0.0,0.0,0.002406678925865852,0.0030245220798512046,0.004512630399620515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011849870880660364,0.00032188347034706557,0.0011849870880660364,0.00028679925634508043,0.00036042642580107583,0.0005377614059198797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002867992563450805,0.0003604264258010759,0.0005377614059198798,0.0,0.0 +99535,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13665.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0036836076502012745,0.0,0.0,0.0036836076502012737,0.001381208131446434,0.0007125214402641334,0.0014987348832299898,0.0,9.106048818697747e-05,0.001381208131446434,0.0007125214402641334,0.0014987348832299898,0.0,9.106048818697747e-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.0004389650764175684,0.00014366833217776057,0.0004389650764175684,0.0001645946557136241,8.490915921993244e-05,0.00017859998540039416,0.0,1.085142011620959e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00016459465571362413,8.490915921993246e-05,0.00017859998540039422,0.0,1.0851420116209592e-05 +99536,35.0,Eastern Counties in South Carolina and Georgia,G1301890950400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,48574.0,,,3097.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003947747839722918,0.0,0.0002919206641962328,0.00423966850391915,0.0030483855603710866,0.0009269718812407479,0.0002643110623073164,0.0,0.0,0.002756464896174853,0.0009269718812407479,0.0002643110623073164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002919206641962328,0.0,0.0,0.0,0.0,2.354367021773867e-05,0.00047044622968007933,0.00011599519537102581,0.000493989899897818,0.0003284831175392317,0.00011046562350339179,3.149748863745587e-05,0.0,0.0,0.0,0.0,0.0,2.354367021773867e-05,0.0,0.0,0.00035518618411454545,0.00010800720537440902,3.079651040886358e-05,0.0,0.0 +99537,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,45499.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004012139870530952,0.0,0.0,0.004012139870530952,0.0022286324851456024,0.0014101247274970663,0.0003733522842888454,0.0,0.0,0.0022286324851456024,0.0014101247274970663,0.0003733522842888454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00047811737385180923,0.00012819267438982435,0.00047811737385180923,0.0002655809481880391,0.00016804128302365831,4.4491523088933095e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002655809481880391,0.00016804128302365831,4.4491523088933095e-05,0.0,0.0 +99538,81.0,the Columbus-Albany Area,G1302150000900,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,233968.0,,3698.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,306613.1346040191,0.0,0.0,0.024376943382407465,0.00137429034592446,0.0,0.025751233728331917,0.012123141848723998,0.003989576459997416,0.009230959498375739,0.0,0.00040759466965853885,0.012123141848723998,0.003989576459997416,0.00785666915245128,0.0,0.00040759466965853885,0.0,0.00137429034592446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.182320922448644e-05,0.0,0.0,0.0029049529122445973,0.0008973996377890582,0.002996776121469084,0.0014446912259073838,0.0004754300641505368,0.000936263976041676,0.0,4.8572263719267454e-05,0.0,9.182320922448644e-05,0.0,0.0,0.0,0.0,0.0014108194734556514,0.000464283288180534,0.0010742444146489667,0.0,4.743345449608139e-05 +99539,50.0,the Greater Atlanta and Macon Area,G1301510070502,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,95332.0,,7660.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008493993024621498,0.0022546426162670325,0.0,0.010748666330494826,0.0037984218818603757,0.0024375833594076387,0.004512630399620515,0.0,0.0,0.0015437792655933432,0.0024375833594076387,0.004512630399620515,0.0,0.0,0.0022546426162670325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015064279559595707,0.0,0.0,0.0010122141437219805,0.000432835655579133,0.0011628569393179375,0.00018396944792498774,0.00029048250283955233,0.0005377621929574403,0.0,0.0,0.00015064279559595707,0.0,0.0,0.0,0.0,0.0,0.0004109366788367962,0.00026371278421874787,0.00048820415607172515,0.0,0.0 +99540,50.0,the Greater Atlanta and Macon Area,G1300150960500,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,20771.0,,1.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.0018275660550282008,1.534480314885139e-07,0.0,0.0018277195030596896,0.0008719224045240339,0.00039792143525601426,0.0005578756632796413,0.0,0.0,0.0008717689564925453,0.00039792143525601426,0.0005578756632796413,0.0,0.0,1.534480314885139e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0092389847717284e-08,0.0,0.0,0.0002177891365158498,7.921662088031424e-05,0.0002177992289056975,0.0001038877953294581,4.741988151241828e-05,6.648145967397343e-05,0.0,0.0,1.0092389847717284e-08,0.0,0.0,0.0,0.0,0.0,0.0001039021726545172,4.741809759031606e-05,6.647895866086422e-05,0.0,0.0 +99541,50.0,the Greater Atlanta and Macon Area,G1302550161100,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Propane,3749.0,,52.0,1189.0,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,4088.1751280535877,0.0,0.0,0.00042177659275912115,1.933546346226931e-05,0.00014302043214275758,0.0005841324883641481,0.0003310665327086754,0.00010996802666517094,0.0001289547543134915,0.0,1.4104426253038138e-05,0.00020215052681895593,0.00010996802666517094,0.00010961929085122221,0.0,0.0,0.0,1.933546346226931e-05,0.0,0.0,0.0,0.0,0.0,0.00012891600588971945,1.4104426253038138e-05,0.0,1.2930455665579894e-06,0.0,1.1534058012933875e-05,5.026190719008535e-05,2.6762886342749513e-05,6.308901076957721e-05,2.4089698650498415e-05,1.3104574424020413e-05,1.306301657700978e-05,0.0,0.0,0.0,1.2930455665579894e-06,0.0,1.039658927364698e-05,1.1374687392868955e-06,0.0,3.575671694960316e-05,1.1877055559804982e-05,1.3927709972879131e-05,0.0,1.5233432782836556e-06 +99542,50.0,the Greater Atlanta and Macon Area,G1301210007400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,4714.0,,425.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015120507221020184,0.0003372794467088956,0.0,0.0018493301688109142,0.0012167864688526907,0.00023323394794484695,0.00036614421544391395,0.0,3.324824364320158e-05,0.0009127552657869966,0.00023323394794484695,0.00036614421544391395,0.0,0.0,0.00030403120306569405,0.0,3.324824364320158e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2536076863157402e-05,0.0,0.0,0.00018018746964001395,7.746856377107468e-05,0.00020272354650317133,0.00010877086286769464,2.779393197597852e-05,4.363253080058755e-05,0.0,0.0,2.031452146860388e-05,0.0,2.2215553945535252e-06,0.0,0.0,0.0,0.00013338411521264117,2.5567102018736274e-05,4.013672363012251e-05,0.0,3.6446719899049577e-06 +99543,50.0,the Greater Atlanta and Macon Area,G1300670030414,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,28605.0,,2338.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0026800145463900323,0.0006812494617893356,0.0,0.003361264008179368,0.0020380077750742722,0.0009097196767601049,0.0004135061827455533,0.0,0.0,0.0013567583132849362,0.0009097196767601049,0.0004135061827455533,0.0,0.0,0.0006812494617893356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.551737318859223e-05,0.0,0.0,0.0003193710905663875,0.0001118801150389403,0.00036488846375497974,0.00016168172771020527,0.00010840917474419303,4.927656856089759e-05,0.0,0.0,4.5517373188592236e-05,0.0,0.0,0.0,0.0,0.0,0.00022123984440316303,9.875636501414551e-05,4.4888957073305625e-05,0.0,0.0 +99544,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,4325.0,,470.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010386354320182226,0.00037300890256427644,0.0,0.0014115616275087598,0.0009602291261133592,0.00025258740319984485,0.00015085770250049675,0.0,4.788739569505899e-05,0.0005872202235490827,0.00025258740319984485,0.00015085770250049675,0.0,4.788739569505899e-05,0.00037300890256427644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4920461030666665e-05,0.0,0.0,0.00012376780139674356,6.50272532640492e-05,0.00014868826242741024,6.997542522032802e-05,3.0099288538434052e-05,1.7976785296039197e-05,0.0,5.706446648249284e-06,2.4920461030666665e-05,0.0,0.0,0.0,0.0,0.0,0.00010114669987591452,2.6606547926015753e-05,1.589074768076383e-05,0.0,5.04426694471615e-06 +99545,50.0,the Greater Atlanta and Macon Area,G1302190030100,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,10936.0,,546.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0023104221049075526,0.00043305423809901364,0.0,0.0027435590500803054,0.0017648862465230813,0.0004668814312583904,0.0004237083387664719,0.0,8.800032645862311e-05,0.0013318320084240677,0.0004668814312583904,0.0004237083387664719,0.0,8.800032645862311e-05,0.00043305423809901364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.893663152038365e-05,0.0,0.0,0.00027532942445802205,8.892704243289697e-05,0.00030426605597840575,0.00015871235804716414,5.563753717793216e-05,5.049266660098254e-05,0.0,1.0486862631943281e-05,2.893663152038365e-05,0.0,0.0,0.0,0.0,0.0,0.00019572933101782232,5.177806240196855e-05,4.699008214088306e-05,0.0,9.759408041752799e-06 +99546,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,2220.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0005267613526456491,0.0,0.0,0.0005267613526456488,0.00026689572695674503,0.00011909818618460269,0.00011388764053902634,0.0,2.687979896527491e-05,0.00026689572695674503,0.00011909818618460269,0.00011388764053902634,0.0,2.687979896527491e-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,6.277017945484019e-05,2.1726277637414718e-05,6.277017945484019e-05,3.180395181359228e-05,1.419203303736377e-05,1.3571131591979107e-05,0.0,3.203063011905017e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.180395181359229e-05,1.4192033037363775e-05,1.3571131591979112e-05,0.0,3.2030630119050183e-06 +99547,46.0,the Tallahassee-Valdosta Area,G1300270960500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,29403.0,,246.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.001468038464857532,4.182592258990456e-05,0.0,0.0015098643874474366,0.0008896031538897293,0.000340493860710694,0.0001354599612492034,0.0,0.00014432514195922985,0.0008477772312998248,0.000340493860710694,0.0001354599612492034,0.0,0.00014432514195922985,4.182592258990456e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.794381202815269e-06,0.0,0.0,0.00017494311087317367,5.1032930279281406e-05,0.00017773749207598895,0.00010102786113675208,4.0575949916766425e-05,1.6142483720271584e-05,0.0,1.7198928989922874e-05,2.794381202815269e-06,0.0,0.0,0.0,0.0,0.0,0.00010472187756051373,4.008209304962941e-05,1.5946010773753837e-05,0.0,1.6989597866276996e-05 +99548,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,116615.0,,7084.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011692586551393273,0.0020853280583226063,0.0,0.013777945299322176,0.006153388821114598,0.0030580658195345943,0.0045664599690666855,0.0,0.0,0.004068060762791993,0.0030580658195345943,0.0045664599690666855,0.0,0.0,0.0020853280583226063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013932951857311473,0.0,0.0,0.0013933847458321362,0.000589079440378704,0.0015327142644052509,0.0004847835666708981,0.00036442426540622116,0.0005441769137550169,0.0,0.0,0.00013932951857311473,0.0,0.0,0.0,0.0,0.0,0.0006845278171497853,0.0003401915888954354,0.0005079914443243144,0.0,0.0 +99549,50.0,the Greater Atlanta and Macon Area,G1301430010302,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,62203.0,,11591.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003201925968847336,0.0019711729308743704,0.0,0.005173098899721706,0.0026603343489104026,0.0005319994944086844,0.0014177196991474218,0.0,0.0005630630876166168,0.0017141890724521249,0.0005319994944086844,0.0008491601994905888,0.0,0.00010659493285735744,0.0009461452764582778,0.0005685594996568332,0.0004564681547592593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013170206275029062,0.0,0.0,0.00038156720348328396,0.0002376523442297697,0.0005132692662335746,0.0002042765313692196,6.339733064131975e-05,0.00010119274642242048,0.0,1.2702707942530056e-05,6.321580548274125e-05,3.7987767449638575e-05,3.049848981791078e-05,0.0,0.0,0.0,0.0002639554908325209,5.278441325497714e-05,0.0001406646120269279,0.0,5.586650930639256e-05 +99550,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,8313.0,,824.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001996217931771924,0.0006536340037617466,0.0,0.0026498519355336704,0.0015960811090211546,0.0004803626842778975,0.0004996334324591561,0.0,7.377470977546223e-05,0.000942447105259408,0.0004803626842778975,0.0004996334324591561,0.0,7.377470977546223e-05,0.0006536340037617466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3671301952594204e-05,0.0,0.0,0.00023788419154026035,0.0001011458127129586,0.00028155549349285456,0.00011230901402888905,5.72435939868177e-05,5.9540039819966554e-05,0.0,8.791543704587016e-06,4.3671301952594204e-05,0.0,0.0,0.0,0.0,0.0,0.00016958887335513304,5.1040116926449e-05,5.3087697374772447e-05,0.0,7.838805836500088e-06 +99551,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock 90.1-2004,gen3_t5_cfl,200001_500000,Electricity,1033643.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,2015986.1613818365,0.0,0.0,0.1638306994349475,0.0,0.0,0.16383069943494746,0.06591797469775447,0.01001082726726696,0.08739040730164772,0.0,0.000511490168278303,0.06591797469775447,0.01001082726726696,0.08739040730164772,0.0,0.000511490168278303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01952338768046809,0.006345485165140933,0.01952338768046809,0.007855317590501744,0.0011929709292284353,0.010414145866364589,0.0,6.095329437331944e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.007855317590501745,0.0011929709292284355,0.01041414586636459,0.0,6.0953294373319446e-05 +99552,35.0,Eastern Counties in South Carolina and Georgia,G1302450010504,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,21355.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,56663.68529324113,0.0,0.0,0.001849110158649188,0.0,0.0,0.001849110158649188,0.0008199035218494274,0.0004273834573018089,0.0006018231794979517,0.0,0.0,0.0008199035218494274,0.0004273834573018089,0.0006018231794979517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022035393548766862,7.498456001361107e-05,0.00022035393548766862,9.770589757167486e-05,5.093024141275432e-05,7.171779650323944e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.770589757167486e-05,5.093024141275432e-05,7.171779650323944e-05,0.0,0.0 +99553,50.0,the Greater Atlanta and Macon Area,G1302470060307,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,459734.0,,,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,2664908.3895131643,0.0,0.0,0.09904194983143935,0.0,0.0,0.09904194983143934,0.077885104611985,0.011173764463761207,0.0045185216273445844,0.0007848885392416742,0.004679670589106874,0.077885104611985,0.011173764463761207,0.0045185216273445844,0.0007848885392416742,0.004679670589106874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011802636907242684,0.0028781635633799625,0.011802636907242684,0.009281416730813086,0.0013315558213188724,0.0005384634512530823,9.35336436438466e-05,0.0005576672602137948,0.0,0.0,0.0,0.0,0.0,0.0,0.009281416730813088,0.0013315558213188726,0.0005384634512530824,9.353364364384661e-05,0.0005576672602137949 +99554,50.0,the Greater Atlanta and Macon Area,G1302170100903,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,2566.0,,79.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006161676993578402,6.285737604187364e-05,0.0,0.0006790250753997138,0.00046712955247960833,0.0001137222263915477,7.096266926832577e-05,0.0,2.729333433397145e-05,0.00040427217643773466,0.0001137222263915477,7.096266926832577e-05,0.0,2.729333433397145e-05,6.285737604187364e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.198192370773322e-06,0.0,0.0,7.342623448316757e-05,2.9790942763495622e-05,7.762442685394088e-05,4.817549451727827e-05,1.3551821800584619e-05,8.456336803564803e-06,0.0,3.252437232140309e-06,4.198192370773322e-06,0.0,0.0,0.0,0.0,0.0,5.340106734117639e-05,1.3000436896975484e-05,8.112272623712703e-06,0.0,3.1201048552741163e-06 +99555,50.0,the Greater Atlanta and Macon Area,G1300890021415,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,104868.0,,4763.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.009529534581998008,0.001387617890313692,0.0,0.0109171524723117,0.007481564266308153,0.0026230640474442474,0.000812524158559299,0.0,0.0,0.0060939463759944615,0.0026230640474442474,0.000812524158559299,0.0,0.0,0.001387617890313692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.271256591055347e-05,0.0,0.0,0.0011356148458068855,0.0004341592559308432,0.0012283274117174392,0.0007262029341079762,0.0003125850951217637,9.682681657714567e-05,0.0,0.0,9.271256591055347e-05,0.0,0.0,0.0,0.0,0.0,0.0008417772394531776,0.0002951302072896679,9.141996497459364e-05,0.0,0.0 +99556,50.0,the Greater Atlanta and Macon Area,G1300890023310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,53876.0,,2363.0,,4.088175128053588,Healthcare,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.005771306481885326,0.0008782717732180285,0.0,0.006649578255103356,0.0034805384169035642,0.0008819916219001484,0.002139881702813272,0.0,0.00014720526191014247,0.003063256641302005,0.0008819916219001484,0.0018260582186831738,0.0,0.0,0.0004172817756015595,0.0003138234841300985,0.00014720526191014247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.868085753606662e-05,0.0,0.0,0.0006877559221522388,0.00022546816307383212,0.0007464367796883054,0.0003650426299036896,0.00010510531075666033,0.00021760798149188893,0.0,0.0,2.7880268014025474e-05,2.0967804870052217e-05,9.83537358949603e-06,0.0,0.0,0.0,0.00039070175397981654,9.900642728100044e-05,0.00024020867878891353,0.0,1.6524269275130507e-05 +99557,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000201,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,40837.0,,1310.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003601033202140981,0.00038149240893816283,0.0,0.003982555984678581,0.0020575076259133082,0.0017425333997438221,0.00018248458542201293,0.0,0.0,0.0016760152169751456,0.0017425333997438221,0.00018248458542201293,0.0,0.0,0.00038149240893816283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5489525837000966e-05,0.0,0.0,0.00042912944160787325,0.00013310021276960877,0.0004546189674448742,0.00019972808741647503,0.0002076549542421742,2.1746399949224026e-05,0.0,0.0,2.5489525837000966e-05,0.0,0.0,0.0,0.0,0.0,0.00023486976605004443,0.000198914651288619,2.0831082882029332e-05,0.0,0.0 +99558,50.0,the Greater Atlanta and Macon Area,G1301350050431,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,14625.0,,2025.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0013030499937941625,0.000596084223120281,0.0,0.0018991035273081462,0.0009468971127093215,0.0004320482774590598,0.0005201888267460621,0.0,0.0,0.00035081288958904044,0.0004320482774590598,0.0005201888267460621,0.0,0.0,0.000596084223120281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.982616322765205e-05,0.0,0.0,0.00015528095994277432,8.572881373388239e-05,0.00019510712317042636,4.180542766211764e-05,5.148603014848152e-05,6.198950213217513e-05,0.0,0.0,3.982616322765205e-05,0.0,0.0,0.0,0.0,0.0,9.72808322150633e-05,4.43870991094724e-05,5.344234478658597e-05,0.0,0.0 +99559,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,4232.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0006677769133711681,0.0,0.0,0.0006677769133711681,0.0003763998925875881,0.00012116586302808537,0.0001438276012326556,0.0,2.6466263596578376e-05,0.0003763998925875881,0.00012116586302808537,0.0001438276012326556,0.0,2.6466263596578376e-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,7.95750096636304e-05,2.4695330910549077e-05,7.95750096636304e-05,4.48533402253136e-05,1.443861644255865e-05,1.713908122430682e-05,0.0,3.1538274823336303e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.48533402253136e-05,1.443861644255865e-05,1.713908122430682e-05,0.0,3.1538274823336303e-06 +99560,81.0,the Columbus-Albany Area,G1302150010302,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,31694.0,,1608.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002620208929097099,0.0004685431449267595,0.0,0.003088752074023859,0.002035911996713067,0.0006770882786663636,0.0003757821722438655,0.0,0.0,0.0015673688517863073,0.0006770882786663636,0.0003757821722438655,0.0,0.0,0.0004685431449267595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.130597686307256e-05,0.0,0.0,0.00031224578773310564,0.00011033961568404391,0.00034355176459617814,0.00018678064804664003,8.068744464964632e-05,4.478131460638006e-05,0.0,0.0,3.130597686307256e-05,0.0,0.0,0.0,0.0,0.0,0.00022644781525702338,7.531030893657319e-05,4.179701875844623e-05,0.0,0.0 +99561,50.0,the Greater Atlanta and Macon Area,G1301210005501,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,81605.0,,17507.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.007709852629534342,0.0029773000200166862,0.0,0.010687152649551028,0.00524478275094298,0.00209528546081474,0.0019213506152840221,0.0,0.001425716092147866,0.003983870368194505,0.00209528546081474,0.0013759292372803578,0.0,0.00025476756324473875,0.001260912382748475,0.0005454213780036642,0.0011709485289031272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019892535137342124,0.0,0.0,0.000918768700761059,0.0004255466052298728,0.0011176940521344801,0.00047475037177300997,0.00024969124483415275,0.0001639669107075503,0.0,3.0360173446346018e-05,8.424661172975522e-05,3.644178904931e-05,7.823576595782235e-05,0.0,0.0,0.0,0.000548514901741649,0.00021913115437486265,0.00020094053347858673,0.0,0.00014910560824571255 +99562,50.0,the Greater Atlanta and Macon Area,G1300890021216,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,112053.0,,1582.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,120171.9144447585,0.0,0.0,0.009880987501092234,0.00046101049226619713,0.0,0.01034202836695787,0.007094483115073444,0.0024451355019378973,0.00080237937634709,0.0,0.0,0.006633472622807246,0.0024451355019378973,0.00080237937634709,0.0,0.0,0.00046101049226619713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0802814231238396e-05,0.0,0.0,0.0011774995279837843,0.0004019835970416199,0.0012083023422150227,0.0007904990145352859,0.00029138240475155033,9.561810869694799e-05,0.0,0.0,3.0802814231238396e-05,0.0,0.0,0.0,0.0,0.0,0.0008288780750337207,0.000285675386799749,9.374533170714976e-05,0.0,0.0 +99564,85.0,Rural Climate Zone 3A,G1300930970300,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,13404.0,,629.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0007139661936626862,0.00010696727044717856,0.0,0.0008209334641098649,0.0005407937536730306,0.0001552293142325623,2.6967879719900314e-05,0.0,9.796024684579174e-05,0.000433826483225852,0.0001552293142325623,2.6967879719900314e-05,0.0,9.796024684579174e-05,0.00010696727044717856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.1467853269776686e-06,0.0,0.0,8.508208322512038e-05,3.13740000344158e-05,9.222886855209805e-05,5.169833148783764e-05,1.8498401674677885e-05,3.2137143286333597e-06,0.0,1.167374862965109e-05,7.1467853269776686e-06,0.0,0.0,0.0,0.0,0.0,6.075619791597465e-05,1.7439445026535463e-05,3.0297425340217517e-06,0.0,1.1005475016745679e-05 +99565,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,19708.0,,353.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.002347263266841459,0.00013127965973981648,0.0,0.0024785429265812755,0.0011435434823617073,0.0002842971852157714,0.0009826987752837918,0.0,6.804223214377738e-05,0.0011435434823617073,0.0002842971852157714,0.0008514191155439752,0.0,6.804223214377738e-05,0.0,0.00013127965973981648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.770314809954083e-06,0.0,0.0,0.0002797211300496447,7.912655852653442e-05,0.00028849144485959885,0.00013627498869249244,3.3879425048685856e-05,0.00010146280585999378,0.0,8.108528061263781e-06,0.0,8.770314809954083e-06,0.0,0.0,0.0,0.0,0.0001331034084373717,3.3090936151565335e-05,0.00011438179524871864,0.0,7.919815167254837e-06 +99566,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,88121.0,,14940.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00785150611677909,0.004397575065610427,0.0,0.012249081182389517,0.005618039328857471,0.002441296801769661,0.004189745051762384,0.0,0.0,0.001220464263247044,0.002441296801769661,0.004189745051762384,0.0,0.0,0.004397575065610427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002938195863497247,0.0,0.0,0.0009356482627113561,0.0005563932644425358,0.0012294678490610807,0.00014544028249153834,0.00029092445161026185,0.0004992835286095559,0.0,0.0,0.0002938195863497247,0.0,0.0,0.0,0.0,0.0,0.0005638952527738505,0.0002450384549746218,0.00042053414131260834,0.0,0.0 +99567,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,59479.0,,3326.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005299481215487317,0.000978967751290421,0.0,0.006278448966777738,0.002439332666966608,0.0014472604537870677,0.0023918558460240616,0.0,0.0,0.001460364915676187,0.0014472604537870677,0.0023918558460240616,0.0,0.0,0.000978967751290421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.540935394574651e-05,0.0,0.0,0.0006315297302430572,0.00025491495650370043,0.0006969390841888039,0.00017402908393337893,0.00017246744856846242,0.0002850331977412158,0.0,0.0,6.540935394574651e-05,0.0,0.0,0.0,0.0,0.0,0.0002707780669944759,0.00016065311362444635,0.00026550790356988157,0.0,0.0 +99568,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,57681.0,,4777.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005505609754885209,0.0013915664582405994,0.0,0.006897176213125809,0.0041675008316550514,0.0019685433531601336,0.0007611320283106228,0.0,0.0,0.0027759343734144524,0.0019685433531601336,0.0007611320283106228,0.0,0.0,0.0013915664582405994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.297585562909124e-05,0.0,0.0,0.0006560933594106635,0.00024397039979887883,0.0007490692150397547,0.000330802979078018,0.00023458768042438068,9.070269990826485e-05,0.0,0.0,9.297585562909124e-05,0.0,0.0,0.0,0.0,0.0,0.0004526122691637879,0.00021379404828271139,8.266289759325522e-05,0.0,0.0 +99569,50.0,the Greater Atlanta and Macon Area,G1300670031205,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,50768.0,,4018.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004523402451431009,0.001182685357894572,0.0,0.005706087809325581,0.001984482012028355,0.0013038172339516051,0.002417788563345621,0.0,0.0,0.000801796654133783,0.0013038172339516051,0.002417788563345621,0.0,0.0,0.001182685357894572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.902030336213718e-05,0.0,0.0,0.00053904605173405,0.00023963054461314265,0.0006180663550961874,9.55487214204556e-05,0.00015537364620786325,0.00028812368410573126,0.0,0.0,7.902030336213718e-05,0.0,0.0,0.0,0.0,0.0,0.00021495315265281244,0.00014122558089327874,0.00026188762155009626,0.0,0.0 +99570,50.0,the Greater Atlanta and Macon Area,G1300670031406,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,98956.0,,6094.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.012260388765724715,0.0022647678726306943,0.0,0.014525195386779183,0.007910606958342017,0.001686331402561043,0.004673447391150905,0.0,0.00025480963472521644,0.006515973689937214,0.001686331402561043,0.004058083673226459,0.0,0.0,0.0013946332684048035,0.0006153637179244467,0.00025480963472521644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015131945193064912,0.0,0.0,0.0014610487673928035,0.0006201814940339211,0.0016123682193234525,0.0007764970189739301,0.0002009571200560501,0.0004835946283628233,0.0,0.0,9.318179773282103e-05,4.111525143906788e-05,1.7024991717354723e-05,0.0,0.0,0.0,0.0008781163292852533,0.00018719109026315667,0.0005187756754742492,0.0,2.8285124300793163e-05 +99571,50.0,the Greater Atlanta and Macon Area,G1300210010800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,56507.0,,2976.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,71543.06474093779,0.0,0.0,0.006305840987821209,0.0011058800144552426,0.0,0.007411721002276452,0.004647718437766242,0.0008107720190070604,0.0018134262325334746,0.0,0.00013980431296967472,0.003942845860928284,0.0008107720190070604,0.0015522231078858644,0.0,0.0,0.000704872576837958,0.00026120312464761,0.00013980431296967472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.388782997878152e-05,0.0,0.0,0.0007514559042099275,0.0003073091405674587,0.0008253437341887088,0.0004698619593019526,9.661826579955834e-05,0.00018497567910841648,0.0,0.0,4.709507761541748e-05,1.7451922280552425e-05,9.340830082811625e-06,0.0,0.0,0.0,0.0005175539243457107,9.028478075975567e-05,0.00020193690210077255,0.0,1.5568126982469814e-05 +99572,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,69914.0,,10817.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0035988201092352176,0.0018395781884147386,0.0,0.0054383982976499564,0.0018196669925400195,0.0005705807608587193,0.002456860721253877,0.0,0.0005913075533587608,0.0018196669925400195,0.0005705807608587193,0.0011068887330924766,0.0,0.00010168362274400283,0.0,0.0013499719881614003,0.000489623930614758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012291035042843575,0.0,0.0,0.00042886434713365303,0.00023923138670909762,0.0005517746975620887,0.00021684615320274327,6.79949922655898e-05,0.00013190576340537912,0.0,1.211743825994088e-05,0.0,9.019759593718417e-05,3.271393913507322e-05,0.0,0.0,0.0,0.0001846216752653725,5.789057908715728e-05,0.00024927074245515086,0.0,5.999349965994513e-05 +99573,50.0,the Greater Atlanta and Macon Area,G1300670030506,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,56549.0,,6078.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00525672848109227,0.0017706593528231801,0.0,0.007027387833915452,0.004982576372567123,0.0013841856735772263,0.0006606257877711021,0.0,0.0,0.0032119170197439425,0.0013841856735772263,0.0006606257877711021,0.0,0.0,0.0017706593528231801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011830410146239075,0.0,0.0,0.0006264349471165187,0.00027344972886240304,0.0007447390485789096,0.0003827584163121675,0.00016495093523388935,7.872559557046197e-05,0.0,0.0,0.00011830410146239075,0.0,0.0,0.0,0.0,0.0,0.0005280367719665034,0.0001466913661177709,7.001091049463521e-05,0.0,0.0 +99574,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300030960200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,82315.0,,1026.0,,9.729435225087556,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,364853.82094078336,0.0,0.0,0.019313704769055324,0.000907417767288036,0.0,0.02022112253634336,0.014062485527139684,0.003421813381401409,0.0006770590698606464,0.0006667307375500509,0.0013930338203915725,0.014062485527139684,0.003421813381401409,0.0006770590698606464,0.0006667307375500509,0.0004856160531035364,0.0,0.0,0.000907417767288036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0630536637998145e-05,0.0,0.0,0.002301578500908339,0.0005808536128254074,0.0023622090375463372,0.00167580040937855,0.0004077711763189161,8.068387798559484e-05,7.945306971340924e-05,5.786996751186903e-05,0.0,0.0,6.0630536637998145e-05,0.0,0.0,0.0,0.0016427639139652299,0.0003997324322532431,7.90932872743845e-05,7.788674298471805e-05,0.00016273266106876222 +99575,50.0,the Greater Atlanta and Macon Area,G1301130140206,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6538.0,,277.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013547418678498556,0.0002198354019990791,0.0,0.0015744945627751954,0.0010317707448978602,0.00033157265862088345,0.00016557956162609349,0.0,4.56543047040977e-05,0.000811935342898781,0.00033157265862088345,0.00016557956162609349,0.0,4.56543047040977e-05,0.0002198354019990791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4686618203316546e-05,0.0,0.0,0.00016143967943853,5.552344725842545e-05,0.00017612629764184655,9.675539273797614e-05,3.9512312263068786e-05,1.9731516375820336e-05,0.0,5.440458061664747e-06,1.4686618203316546e-05,0.0,0.0,0.0,0.0,0.0,0.0001154160615161021,3.7090420089623514e-05,1.8522080573566048e-05,0.0,5.106987251053176e-06 +99576,81.0,the Columbus-Albany Area,G1302150000900,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,12381.0,,484.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005982046639511616,8.233979843472521e-05,0.0,0.0006805444623858867,0.0002958842713778412,0.0002481009473507989,3.897133440127606e-05,0.0,9.757017889455057e-05,0.000252834953849953,0.0002481009473507989,3.897133440127606e-05,0.0,5.8279697987713555e-05,4.30493175278882e-05,0.0,3.929048090683701e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.501223558335632e-06,0.0,0.0,7.128756279083326e-05,2.5032056929038273e-05,7.678878634916888e-05,3.013013561152619e-05,2.956598791108598e-05,4.6441821931370665e-06,0.0,6.945144162348287e-06,2.8761780360979573e-06,0.0,2.6250455222376745e-06,0.0,0.0,0.0,3.3385906953467175e-05,2.7994307046971846e-05,4.3973048588039815e-06,0.0,1.1009266896268567e-05 +99577,50.0,the Greater Atlanta and Macon Area,G1300210012300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,71281.0,,7777.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003509317244786791,0.0013224721975988983,0.0,0.00483180717274711,0.0022310113774852446,0.0007977598817338558,0.0011283956614950006,0.0,0.0006746225216715891,0.0017001466262074436,0.0007977598817338558,0.0008929010011138593,0.0,0.00011850973573163294,0.000530864751277801,0.00023549466038114134,0.0005561127859399562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.83602696714714e-05,0.0,0.0,0.0004181990336946872,0.00020722388783987286,0.0005065593033661587,0.00020260342015970467,9.506761241295405e-05,0.00010640540874597426,0.0,1.4122592376054249e-05,3.546944326478154e-05,1.573444926498208e-05,3.71563771417078e-05,0.0,0.0,0.0,0.0002338958341622648,8.363593071840531e-05,0.00011829928218830849,0.0,7.072639747309872e-05 +99578,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,9533.0,,1380.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0022891663869565506,0.0010944627067922554,0.0,0.003383546386675067,0.0023283695399089824,0.00035828704343867973,0.0006292354170086508,0.0,6.765438631875345e-05,0.001301561219435481,0.00035828704343867973,0.0006292354170086508,0.0,0.0,0.0010268083204735016,0.0,6.765438631875345e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.312466624210505e-05,0.0,0.0,0.00027279201700423304,0.00015774959475872572,0.0003459166832463381,0.00015510253528418295,4.2695824035780675e-05,7.498380176921039e-05,0.0,0.0,6.860445336626117e-05,0.0,4.520212875843867e-06,0.0,0.0,0.0,0.00023804073494869,3.662945665663985e-05,6.432984908673037e-05,0.0,6.916642554277791e-06 +99579,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,58377.0,,3357.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011542253535397366,0.0023093830667026754,0.0,0.013851708322071056,0.004202359981688714,0.0006779688860105713,0.005244092560690465,0.0003829129252523474,0.003344302248457944,0.004202359981688714,0.0006779688860105713,0.0029347094939877892,0.0003829129252523474,0.003344302248457944,0.0,0.0023093830667026754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015430134590157838,0.0,0.0,0.0013754704907946876,0.00048664526773019057,0.001529771836696266,0.0005007880071931148,8.079238543189599e-05,0.0003497242800685235,4.563107434897839e-05,0.000398534743752175,0.0,0.00015430134590157838,0.0,0.0,0.0,0.0,0.0004641053506305453,7.48743536797376e-05,0.0005791534821441589,4.2288604072370574e-05,0.0003693421254719311 +99580,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,9881.0,,916.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0024233172605617075,0.0007265816427998157,0.0,0.003149816196287784,0.002005398416956987,0.000706731945102382,0.000364820902264085,0.0,7.294763903806914e-05,0.0012788167741571714,0.000706731945102382,0.000364820902264085,0.0,7.294763903806914e-05,0.0007265816427998157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.85439140188756e-05,0.0,0.0,0.0002887792638510836,0.00013929769813900825,0.00033732317786995915,0.0001523926613537698,8.421907200025629e-05,4.347458473880988e-05,0.0,8.692945758247634e-06,4.85439140188756e-05,0.0,0.0,0.0,0.0,0.0,0.0002147640766151901,7.568602444330431e-05,3.906975468922355e-05,0.0,7.812179468577458e-06 +99581,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,24984.0,,505.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006449941222244184,0.0003918513547500854,0.0,0.006841792576994269,0.003981180654378964,0.0007148093223257853,0.0011838827249063145,0.0004067297388346946,0.0005551901365485114,0.003981180654378964,0.0007148093223257853,0.0007920313701562292,0.0004067297388346946,0.0005551901365485114,0.0,0.0003918513547500854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.618320783262974e-05,0.0,0.0,0.0007686239988012605,0.00029161236821749557,0.0007948072066338903,0.0004744277333823944,8.518210953793776e-05,9.438447544390275e-05,4.846900576649626e-05,6.616067467052948e-05,0.0,2.618320783262974e-05,0.0,0.0,0.0,0.0,0.00046249152388100497,8.303899809298433e-05,0.00013753099220355013,4.7249565656980905e-05,6.449612679936994e-05 +99582,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13951.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003084973850476167,0.0,0.0,0.0030849738504761673,0.0014218173046524338,0.0006468520237151234,0.0009450110245453266,0.0,7.121079048954369e-05,0.0014218173046524338,0.0006468520237151234,0.0009450110245453266,0.0,7.121079048954369e-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.0003676315020993935,0.0001206486739656068,0.0003676315020993935,0.00016943574135631833,7.708434257156452e-05,0.000112615483726211,0.0,8.486078372857313e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016943574135631833,7.708434257156451e-05,0.00011261548372621099,0.0,8.486078372857313e-06 +99583,50.0,the Greater Atlanta and Macon Area,G1300890021907,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13836.0,,713.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003216064562352969,0.0005653028490081662,0.0,0.0037813674113611356,0.002217045818655875,0.0006423031346594614,0.0008363339296518766,0.0,8.568452839392249e-05,0.0016517429696477086,0.0006423031346594614,0.0008363339296518766,0.0,8.568452839392249e-05,0.0005653028490081662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7770939784178753e-05,0.0,0.0,0.00038324752479279513,0.00015264952325132357,0.0004210184645769739,0.0001968326171438064,7.654108981717492e-05,9.966308269782034e-05,0.0,1.0210735133993463e-05,3.7770939784178753e-05,0.0,0.0,0.0,0.0,0.0,0.0002468464777220114,7.151420375994705e-05,9.311764465884426e-05,0.0,9.540138436171149e-06 +99584,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000800,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,61038.0,,4237.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.008271263566446238,0.001273608560391084,0.0,0.009544903464859526,0.0026279752040017693,0.0009386364410529699,0.004285067142102695,0.0,0.0016932246777020905,0.0026279752040017693,0.0009386364410529699,0.003011458581711612,0.0,0.0016932246777020905,0.0,0.001273608560391084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.509605518752458e-05,0.0,0.0,0.0009856714921826716,0.0004640972564426487,0.001070767547370196,0.00031317104332831945,0.00011185560392766221,0.00035887006260124955,0.0,0.00020177851682076376,0.0,8.509605518752458e-05,0.0,0.0,0.0,0.0,0.0002948118411148413,0.00010529822994635912,0.00048070793496845967,0.0,0.00018994954134053584 +99586,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,34257.0,,193.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.007834344852882154,0.00015333891471267595,0.0,0.007987601060521094,0.002893424267695931,0.0014563061544017252,0.0034846144307845,0.0,0.00015333891471267595,0.002893424267695931,0.0014563061544017252,0.0034846144307845,0.0,0.0,0.0,0.0,0.00015333891471267595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0243091620587302e-05,0.0,0.0,0.0009336021671854298,0.00028658470486404717,0.0009438452588060173,0.0003448031989444606,0.00017354489843968854,0.000415254069801281,0.0,0.0,0.0,0.0,1.0243091620587302e-05,0.0,0.0,0.0,0.00034189799366380924,0.00017208266271530854,0.00041175526723769755,0.0,1.811910817095536e-05 +99587,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,9950.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0032274781385289936,0.0,0.0,0.0032274781385289936,0.0017819239037133786,0.0005655509702293842,0.0008099503731290376,0.0,7.005289145719338e-05,0.0017819239037133786,0.0005655509702293842,0.0008099503731290376,0.0,7.005289145719338e-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.00038461112057244665,0.00011105486270052602,0.00038461112057244665,0.00021234775882770067,6.739540379966661e-05,9.651991655603028e-05,0.0,8.348041389049081e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00021234775882770067,6.739540379966661e-05,9.651991655603028e-05,0.0,8.348041389049081e-06 +99588,35.0,Eastern Counties in South Carolina and Georgia,G1302450010600,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,9127.0,,319.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007480284639002075,9.400226408986362e-05,0.0,0.0008420307279900712,0.0003684287236039219,0.00023723065668124248,0.00023640203731120456,0.0,0.0,0.0002744264595140583,0.00023723065668124248,0.00023640203731120456,0.0,0.0,9.400226408986362e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.281318619967335e-06,0.0,0.0,8.913990869560546e-05,3.6204521025912215e-05,9.54212273155728e-05,3.2702431425129406e-05,2.8269939042300414e-05,2.8171195400108683e-05,0.0,0.0,6.281318619967335e-06,0.0,0.0,0.0,0.0,0.0,4.1751351602706254e-05,2.688362747929357e-05,2.6789726063777285e-05,0.0,0.0 +99589,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,15801.0,,360.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0035315093415946874,0.0002857529397693071,0.0,0.0038171795742902555,0.0016327203426876678,0.0011400343044226135,0.0009727178942479947,0.0,7.170703293197954e-05,0.0013469674029183607,0.0011400343044226135,0.0009727178942479947,0.0,7.170703293197954e-05,0.0002857529397693071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.908991151328939e-05,0.0,0.0,0.0004208402491471057,0.00014404811730849354,0.0004399301606603951,0.00016051439840768553,0.00013585475056192663,0.00011591611443404086,0.0,8.545129769093907e-06,1.908991151328939e-05,0.0,0.0,0.0,0.0,0.0,0.0001881711113383065,0.00013138901771375395,0.00011210579202927018,0.0,8.264239579064472e-06 +99590,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,9881.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0020827295309032395,0.0,0.0,0.0020827295309032395,0.0010336730075938645,0.0004533174711651439,0.000512535735962488,0.0,8.303790203426466e-05,0.0010336730075938645,0.0004533174711651439,0.000512535735962488,0.0,8.303790203426466e-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.00024819202940123,7.310680595368034e-05,0.00024819202940123,0.00012317941321009346,5.402035236073947e-05,6.107719824475507e-05,0.0,9.895353725630805e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012317941321009346,5.402035236073947e-05,6.107719824475507e-05,0.0,9.895353725630805e-06 +99591,50.0,the Greater Atlanta and Macon Area,G1300670031507,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,42017.0,,4651.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.003978539181221593,0.0013690940265468185,0.0,0.005347633207768412,0.002185621691703499,0.0011747981290760627,0.001987244076595148,0.0,0.0,0.0008165276651566803,0.0011747981290760627,0.001987244076595148,0.0,0.0,0.0013690940265468185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.147446090549766e-05,0.0,0.0,0.0004741150539904928,0.0002328550460192742,0.0005655895148959905,9.730407076992127e-05,0.00013999849015532536,0.00023681615028808205,0.0,0.0,9.147446090549766e-05,0.0,0.0,0.0,0.0,0.0,0.00023116108834109666,0.00012425188454578517,0.00021017978787861089,0.0,0.0 +99592,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,86976.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007406445446249805,0.0,0.0,0.007406445446249805,0.002117674903360385,0.0021713817143813653,0.003117419518114351,0.0,0.0,0.002117674903360385,0.0021713817143813653,0.003117419518114351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008826115613013096,0.00031397369226830393,0.0008826115613013096,0.00025235916018660553,0.0002587592954028506,0.00037149676293197695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025235916018660553,0.0002587592954028506,0.00037149676293197695,0.0,0.0 +99593,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,39130.0,,1582.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,56080.226740887294,0.0,0.0,0.0033718340207837057,0.0004609801186667593,0.0,0.0038328141394504646,0.0025102564991324365,0.000984104621783159,0.0003384530185348686,0.0,0.0,0.0020492763804656772,0.000984104621783159,0.0003384530185348686,0.0,0.0,0.0004609801186667593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.080084273771432e-05,0.0,0.0,0.0004018148895551899,0.00016409422041879746,0.00043261573229290423,0.0002442082728299562,0.00011727383005069857,4.033278667453501e-05,0.0,0.0,3.080084273771432e-05,0.0,0.0,0.0,0.0,0.0,0.0002833365809308209,0.00011107742930279261,3.8201722059290684e-05,0.0,0.0 +99594,81.0,the Columbus-Albany Area,G1302150010502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,29062.0,,2615.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025894048417623747,0.0007697260155526835,0.0,0.003359130857315058,0.0013155406635573276,0.0009154095766478787,0.0011281499275035544,0.0,0.0,0.0005458146480046439,0.0009154095766478787,0.0011281499275035544,0.0,0.0,0.0007697260155526835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.142858782255358e-05,0.0,0.0,0.0003085729722460784,0.00014717862975715203,0.00036000156006863197,6.504338198255983e-05,0.0001090870957422432,0.00013443883731677818,0.0,0.0,5.142858782255358e-05,0.0,0.0,0.0,0.0,0.0,0.00014098786600796656,9.810539978737523e-05,0.00012090500523615104,0.0,0.0 +99595,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,44170.0,,2772.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003935512353192214,0.0008160059418496193,0.0,0.0047515182950418336,0.002014619205412699,0.0011647319382104158,0.001572167151418718,0.0,0.0,0.0011986132635630798,0.0011647319382104158,0.001572167151418718,0.0,0.0,0.0008160059418496193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.452076340005192e-05,0.0,0.0,0.0004689862467305398,0.0002120647419154456,0.0005235070101305918,0.0001428360745212574,0.00013879851239837054,0.00018735165981091187,0.0,0.0,5.452076340005192e-05,0.0,0.0,0.0,0.0,0.0,0.00022196426726964438,0.00012832642046488755,0.00017321632239605976,0.0,0.0 +99596,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,52891.0,,8010.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.010675661125615736,0.005510245373129397,0.0,0.016185906498745135,0.00689135685497702,0.0013167069478756033,0.002395303591979378,0.0003692144107883657,0.005213324693124766,0.00689135685497702,0.0013167069478756033,0.0015124307487772058,0.0003692144107883657,0.0005859521631975423,0.0,0.000882872843202172,0.004627372529927225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003681605230128456,0.0,0.0,0.0012722005414780733,0.0007790279164471591,0.0016403610644909188,0.0008212313803576953,0.00015690974754115463,0.00018023382298316186,4.399865898697446e-05,6.982693160908728e-05,0.0,5.898810410371117e-05,0.00030917241890913446,0.0,0.0,0.0,0.0006984047181597953,0.00013344169576212889,0.00024275209733991946,3.7418042909931894e-05,0.0005283445103191431 +99597,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5811.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013652456662147476,0.0,0.0,0.0013652456662147478,0.0006700927114358687,0.0002577979488454212,0.00039186611537683855,0.0,4.5406183482879774e-05,0.0006700927114358687,0.0002577979488454212,0.00039186611537683855,0.0,4.5406183482879774e-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.00016269108623374225,5.266237993272323e-05,0.00016269108623374225,7.985237660784997e-05,3.0720792136098297e-05,4.66971809883971e-05,0.0,5.410880616848882e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.985237660784997e-05,3.072079213609829e-05,4.669718098839709e-05,0.0,5.410880616848881e-06 +99598,50.0,the Greater Atlanta and Macon Area,G1300890021209,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,28470.0,,3673.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006798289475703402,0.0028483210835888893,0.0,0.009646529698509224,0.0045528663906734546,0.0006502824174371002,0.0032755894613229895,0.00041255171521562857,0.000755401435426186,0.0045528663906734546,0.0006502824174371002,0.0011826698131602866,0.00041255171521562857,0.0,0.0,0.002092919648162703,0.000755401435426186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019030652752184595,0.0,0.0,0.0008101349196360019,0.00046639319217857915,0.0010004414471578478,0.0005425535439030507,7.749250688337331e-05,0.00014093576295401864,4.916274187005354e-05,0.0,0.0,0.00013983545356559087,5.047107395625507e-05,0.0,0.0,0.0,0.00047217770358449107,6.744077954402767e-05,0.000339711332821315,4.2785732060884e-05,7.834267128827483e-05 +99600,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,148099.0,,15382.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.029194618281498698,0.010581349363730208,0.0,0.0397759676452289,0.012693072190313858,0.0030543384056418276,0.014086878107031246,0.0003857817240929718,0.009555897218149,0.012693072190313858,0.0030543384056418276,0.003505528743301037,0.0003857817240929718,0.009555897218149,0.0,0.010581349363730208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007069843845538508,0.0,0.0,0.0034790643824251315,0.0015828874865037163,0.0041860487669789824,0.001512608075059406,0.0003639794107421414,0.00041774686261662926,4.5972837964213934e-05,0.0011387571960427402,0.0,0.0007069843845538508,0.0,0.0,0.0,0.0,0.0013358271925739537,0.0003214405650897383,0.0014825122359429157,4.0599920154453285e-05,0.0010056688532179218 +99601,50.0,the Greater Atlanta and Macon Area,G1301430010200,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,55866.0,,2906.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0028757050490797846,0.0004941629031382916,0.0,0.0033698679522180756,0.0014710171655761008,0.0007838592783805345,0.0005833998121654175,0.0,0.0005315739657346031,0.001189281722611462,0.0007838592783805345,0.00037097235199176485,0.0,0.0005315739657346031,0.000281735442964639,0.00021242746017365263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3017339853298016e-05,0.0,0.0,0.00034269132607849814,0.00012097420077262364,0.0003757086659317961,0.00014172403763489553,9.341075353090123e-05,4.420794381649054e-05,0.0,6.334647820877515e-05,1.8824065525776094e-05,1.4193274327521925e-05,0.0,0.0,0.0,0.0,0.0001640046152187044,8.739295661860187e-05,6.5043606527448e-05,0.0,5.926551079806158e-05 +99602,35.0,Eastern Counties in South Carolina and Georgia,G1302450010504,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,29458.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025885148431797414,0.0,0.0,0.0025885148431797414,0.0007534912138211987,0.0007337577969717759,0.0011012658323867666,0.0,0.0,0.0007534912138211987,0.0007337577969717759,0.0011012658323867666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003084689228820059,0.00010035702814789962,0.0003084689228820059,8.97922697800582e-05,8.744067196853256e-05,0.00013123598113341513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.97922697800582e-05,8.744067196853256e-05,0.00013123598113341513,0.0,0.0 +99603,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,14242.0,,1893.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001268923151591117,0.000557169802334794,0.0,0.0018261236435322087,0.0008635134523984633,0.00043612999509665427,0.0005264801960370913,0.0,0.0,0.0003063436500636692,0.00043612999509665427,0.0005264801960370913,0.0,0.0,0.000557169802334794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.722766867106019e-05,0.0,0.0,0.00015121682958913052,8.326415756119663e-05,0.0001884444982601907,3.6506793551133115e-05,5.1973356356957796e-05,6.27403369434671e-05,0.0,0.0,3.722766867106019e-05,0.0,0.0,0.0,0.0,0.0,8.910916840406343e-05,4.5005878103214456e-05,5.4329451752912816e-05,0.0,0.0 +99604,50.0,the Greater Atlanta and Macon Area,G1301210004200,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,9002.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033689899416969485,0.0,0.0,0.0033689899416969485,0.0018210443495920707,0.0008154090399958319,0.0006575212362274939,0.0,7.509802295529114e-05,0.0018210443495920707,0.0008154090399958319,0.0006575212362274939,0.0,7.509802295529114e-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.00040147321971506256,0.00014908598927843478,0.00040147321971506256,0.00021700882191010576,9.717004156652433e-05,7.835498838156693e-05,0.0,8.94922383024689e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00021700882191010576,9.717004156652433e-05,7.835498838156693e-05,0.0,8.94922383024689e-06 +99606,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,60334.0,,4433.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004986539300069642,0.0013050141285972153,0.0,0.00629152273906056,0.002319950098468544,0.001607613646692565,0.00236395899389945,0.0,0.0,0.0010149359698713287,0.001607613646692565,0.00236395899389945,0.0,0.0,0.0013050141285972153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.719325708151229e-05,0.0,0.0,0.0005942345122302629,0.00025112305878241824,0.0006814277693117752,0.00012094760408145481,0.00019157565070904566,0.00028170760022939436,0.0,0.0,8.719325708151229e-05,0.0,0.0,0.0,0.0,0.0,0.0002512711923775241,0.00017411883046686042,0.0002560377464673906,0.0,0.0 +99607,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Propane,61246.0,,,11149.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005400729716026652,0.0,0.0010507746725490243,0.006451474014976237,0.0041483047168103925,0.0018191963647247074,0.0004840033070405753,0.0,0.0,0.0030975300442613687,0.0018191963647247074,0.0004840033070405753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010507746725490243,0.0,0.0,0.0,0.0,8.474303338689779e-05,0.0006435932397642975,0.00026285849762715176,0.0007283362731511955,0.00036912593321187126,0.00021678968282122957,5.767762373119667e-05,0.0,0.0,0.0,0.0,0.0,8.474303338689779e-05,0.0,0.0,0.00046832100545139303,0.00020537735986195035,5.4641336851774455e-05,0.0,0.0 +99608,50.0,the Greater Atlanta and Macon Area,G1301210005501,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,46916.0,,2037.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003922860194548103,0.00034634487997931143,0.0,0.0042692050745274145,0.0023559926951351963,0.0007538417764963851,0.000677636683112998,0.0,0.0004817516501442546,0.0023559926951351963,0.0007538417764963851,0.0003312918031336866,0.0,0.0004817516501442546,0.0,0.00034634487997931143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.314022230050091e-05,0.0,0.0,0.0004674806362173551,0.00016799327747987804,0.000490620858517856,0.0002807596777412347,8.98340536768344e-05,3.9479485686940535e-05,0.0,5.7409532009625954e-05,0.0,2.3140222300500906e-05,0.0,0.0,0.0,0.0,0.0002707527838486375,8.663216995080127e-05,7.787461258672232e-05,0.0,5.53633297206581e-05 +99609,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,NaturalGas,80348.0,,1362.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0064142359820655555,0.00039677032945535206,0.0,0.006811006311520906,0.004578182269652895,0.0014254026480142554,0.0008074213938537566,0.0,0.0,0.0041814119401975425,0.0014254026480142554,0.0008074213938537566,0.0,0.0,0.00039677032945535206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6509322662598778e-05,0.0,0.0,0.0007643733386643191,0.00018070210002177285,0.0007908826613269178,0.0004982915835956498,0.00016986275279706135,9.621900227160778e-05,0.0,0.0,2.6509322662598778e-05,0.0,0.0,0.0,0.0,0.0,0.0005316108680354842,0.0001655153714682459,9.37564218231878e-05,0.0,0.0 +99610,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,18751.0,,4030.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004401818447901445,0.0031256735695139393,0.0,0.0075274920174153844,0.002877107522361286,0.0008793610158702393,0.0027600211084780574,0.0004154627034060956,0.0005955396672997068,0.0016472958726720473,0.0008793610158702393,0.001459698855953063,0.0004154627034060956,0.0,0.0012298116496892383,0.0013003222525249946,0.0005955396672997068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002088395203193806,0.0,0.0,0.0005245556982470005,0.0003576181081105968,0.0007333952185663811,0.000196304878753199,0.00010479165307485957,0.00017394932609722896,4.950984032171297e-05,0.0,8.216893712423902e-05,8.6880049832e-05,3.9790533363141586e-05,0.0,0.0,0.0,0.0002803134025674646,8.567517081929055e-05,0.0002689058028114799,4.047807150984044e-05,5.802277085830572e-05 +99611,50.0,the Greater Atlanta and Macon Area,G1300570090905,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,52163.0,,2689.0,,1.8706521585294562,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,32736.412774265485,0.0,0.0,0.0029042509309660696,0.00045723056030032164,0.0,0.0033614814912663908,0.0011099560856181457,0.0004907941344684816,0.0011489983414651019,0.0,0.0006117151993532418,0.0011099560856181457,0.0004907941344684816,0.0006917677811647802,0.0,0.0006117151993532418,0.0,0.00045723056030032164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054942149471348e-05,0.0,0.0,0.0003460931885795337,0.0001190272780040297,0.0003766426100742472,0.00013227102271326776,5.848685632609124e-05,8.24364432794616e-05,0.0,7.289675337258315e-05,0.0,3.054942149471348e-05,0.0,0.0,0.0,0.0,0.00012436681809529048,5.4991819617515976e-05,0.00012874137056080004,0.0,6.854061517372635e-05 +99612,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,292505.0,,11446.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02471133237012288,0.0033693504962121934,0.0,0.028080682866335072,0.010414303069881356,0.00625785624095198,0.011408523555501735,0.0,0.0,0.007044952573669162,0.00625785624095198,0.011408523555501735,0.0,0.0,0.0033693504962121934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022512013542293885,0.0,0.0,0.0029448014740945084,0.0011094104686393766,0.003169921609517447,0.0008395333126169144,0.0007457365716673121,0.0013595315898102815,0.0,0.0,0.00022512013542293885,0.0,0.0,0.0,0.0,0.0,0.0011756311093437948,0.000706425617278313,0.001287864882895339,0.0,0.0 +99613,50.0,the Greater Atlanta and Macon Area,G1301210011503,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,30149.0,,3083.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0015519030743743817,0.0005242867871909613,0.0,0.0020762075919267633,0.0008430786855235107,0.0002304415073764263,0.0006689842667400123,0.0,0.0003336854019253937,0.0005857224895114443,0.0002304415073764263,0.0006689842667400123,0.0,6.67548107464988e-05,0.00025735619601206637,0.0,0.0002669305911788949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5030223604978515e-05,0.0,0.0,0.0001849376359611777,8.344442766400993e-05,0.0002199678595661562,6.97995476187906e-05,2.7461320429890172e-05,7.972171125184165e-05,0.0,7.955056660655264e-06,1.7195255178432977e-05,0.0,1.7834968426545538e-05,0.0,0.0,0.0,8.932161438074386e-05,2.4414574597403333e-05,7.087684189694736e-05,0.0,3.535295021336697e-05 +99614,50.0,the Greater Atlanta and Macon Area,G1301530021108,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,113201.0,,6129.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005827030089616094,0.0010422970264392238,0.0,0.006869327116055317,0.0032962514916020165,0.0010419956102950833,0.0014486591798254143,0.0,0.0010824208343328035,0.003030030114879924,0.0010419956102950833,0.0006726012604697031,0.0,0.0010824208343328035,0.00026622137672209284,0.000776057919355711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.963992574410908e-05,0.0,0.0,0.0006943957298311124,0.0002611632185778611,0.0007640356555752215,0.00036108273694720463,0.00012417257010240366,8.015257102953396e-05,0.0,0.00012898996464431314,1.7787287535260065e-05,5.185145357431454e-05,0.0,0.0,0.0,0.0,0.0003666230515417877,0.00011589516495110176,0.00016112600950041292,0.0,0.00012039142958191921 +99615,50.0,the Greater Atlanta and Macon Area,G1300670031306,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,NaturalGas,58483.0,,4090.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005537016056703845,0.0011915259323435662,0.0,0.00672854198904741,0.0040982793985364155,0.0017338769239040627,0.0008964464138058073,0.0,0.0,0.0029067534661928493,0.0017338769239040627,0.0008964464138058073,0.0,0.0,0.0011915259323435662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.961152261848959e-05,0.0,0.0,0.0006598352140311678,0.00029939591709368185,0.0007394467366496574,0.0003463920414641094,0.00020662267175526312,0.00010682773993491874,0.0,0.0,7.961152261848959e-05,0.0,0.0,0.0,0.0,0.0,0.0004503887071016568,0.00019054791293864238,9.851679254569662e-05,0.0,0.0 +99616,50.0,the Greater Atlanta and Macon Area,G1301210011625,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,36209.0,,719.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008694415712697214,0.0005700171522113066,0.0,0.009264432864908523,0.004598265178684275,0.0009452591457665446,0.0035625244942469277,0.0,0.00015838404621077367,0.004186632072683742,0.0009452591457665446,0.0035625244942469277,0.0,0.0,0.00041163310600053307,0.0,0.00015838404621077367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.808578957133299e-05,0.0,0.0,0.0010360943261881039,0.00038603178873429294,0.0010741801157594369,0.0004989117014510794,0.00011264444559234269,0.0004245381791446818,0.0,0.0,2.7503333531126577e-05,0.0,1.0582456040206425e-05,0.0,0.0,0.0,0.0005331535231520546,0.0001095996477526635,0.0004130628425319999,0.0,1.8364102322718572e-05 +99617,50.0,the Greater Atlanta and Macon Area,G1301210011618,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5511.0,,681.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.000962875752473017,0.0005398290702964594,0.0,0.0015027048227694764,0.000997033773927351,0.00023339936209232557,0.00022893318011040298,0.0,4.34212137131364e-05,0.00045720470363089146,0.00023339936209232557,0.00022893318011040298,0.0,4.34212137131364e-05,0.0005398290702964594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.606655125792174e-05,0.0,0.0,0.00011474853378452115,6.085416998219531e-05,0.0001508150850424429,5.448633351321362e-05,2.78148395756673e-05,2.7282592468266153e-05,0.0,5.174624655288919e-06,3.606655125792174e-05,0.0,0.0,0.0,0.0,0.0,0.00010006471738602287,2.3424523638602783e-05,2.2976286829076012e-05,0.0,4.357857870399171e-06 +99618,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen3_t5_cfl,100001_200000,Electricity,123513.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010666755771286259,0.0,0.0,0.010666755771286257,0.0024504116148400786,0.003165540820789149,0.0050508340252633285,0.0,0.0,0.0024504116148400786,0.003165540820789149,0.0050508340252633285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012711369019510694,0.00039071532436716136,0.0012711369019510694,0.0002920108696008077,0.00037723145051931256,0.0006018982390526862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002920108696008077,0.0003772314505193126,0.0006018982390526863,0.0,0.0 +99619,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,120311.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010530371160899266,0.0,0.0,0.010530371160899266,0.004081195914287409,0.0022594301948494744,0.004189745051762384,0.0,0.0,0.004081195914287409,0.0022594301948494744,0.004189745051762384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012548827016887211,0.00038964026739616984,0.0012548827016887211,0.00048634773426206547,0.00026925165541341216,0.0004992833120132437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00048634773426206547,0.00026925165541341216,0.0004992833120132437,0.0,0.0 +99620,50.0,the Greater Atlanta and Macon Area,G1301350050719,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,14699.0,,485.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033057190302863784,0.0003849187211827367,0.0,0.0036906377514691153,0.001709720628338963,0.001185109659610536,0.0006997018438345408,0.0,9.602291261133592e-05,0.0013248019071562262,0.001185109659610536,0.0006997018438345408,0.0,9.602291261133592e-05,0.0003849187211827367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5716029783383092e-05,0.0,0.0,0.0003939370545852571,0.00013986246663371234,0.00041965308436864025,0.00015787444620447467,0.00014122755273217116,8.338230833374053e-05,0.0,1.1442891250055882e-05,2.5716029783383092e-05,0.0,0.0,0.0,0.0,0.0,0.0001944080084276837,0.00013475582201820241,7.956132697843481e-05,0.0,1.0918522532146905e-05 +99621,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock 90.1-2004,gen5_led,10001_25000,Electricity,13062.0,,1303.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011399654259281698,0.00038349732029609396,0.0,0.0015234934358305616,0.0006551310256370613,0.00032279327903923793,0.0005455384415479647,0.0,0.0,0.00027163370534096735,0.00032279327903923793,0.0005455384415479647,0.0,0.0,0.00038349732029609396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5623246719309982e-05,0.0,0.0,0.00013584897968054406,6.852259562476394e-05,0.00016147222639985404,3.237042183746118e-05,3.84670768146443e-05,6.501148102843859e-05,0.0,0.0,2.5623246719309982e-05,0.0,0.0,0.0,0.0,0.0,6.943611492199516e-05,3.421225730779713e-05,5.782060143595756e-05,0.0,0.0 +99622,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,31052.0,,1272.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002766668007737906,0.00037441319683197393,0.0,0.00314108120456988,0.0012463356013560076,0.0007800377232687117,0.0011147078799451605,0.0,0.0,0.0008719224045240338,0.0007800377232687117,0.0011147078799451605,0.0,0.0,0.00037441319683197393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5015913777527942e-05,0.0,0.0,0.00032969981169207903,0.00011472199035784093,0.00035471572546960694,0.00010390572767591412,9.295596354717218e-05,0.00013283812046899272,0.0,0.0,2.5015913777527945e-05,0.0,0.0,0.0,0.0,0.0,0.00014074607061110116,8.808802730103566e-05,0.00012588162755747007,0.0,0.0 +99623,50.0,the Greater Atlanta and Macon Area,G1302070050200,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,54866.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.004838149907240612,0.0,0.0,0.004838149907240612,0.0028085859928100353,0.001325959483455056,0.000703604430975521,0.0,0.0,0.0028085859928100353,0.001325959483455056,0.000703604430975521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005765529625994587,0.00015392132057007502,0.0005765529625994587,0.00033469375813398837,0.0001580120259045212,8.384717856094912e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033469375813398837,0.0001580120259045212,8.384717856094912e-05,0.0,0.0 +99624,50.0,the Greater Atlanta and Macon Area,G1300210013504,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,2640.0,,16.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0006337843060643129,1.2406061060896114e-05,0.0,0.0006461903671252089,0.00040700150987113185,0.0001280305501484479,9.875224604473306e-05,0.0,1.2406061060896114e-05,0.00040700150987113185,0.0001280305501484479,9.875224604473306e-05,0.0,0.0,0.0,0.0,1.2406061060896114e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.26949834064716e-07,0.0,0.0,7.553164116331125e-05,2.38813709762498e-05,7.635859099737597e-05,4.850465955430701e-05,1.5258120908365629e-05,1.1768860700638602e-05,0.0,0.0,0.0,0.0,8.26949834064716e-07,0.0,0.0,0.0,4.809428213209871e-05,1.5129028396766674e-05,1.16692893447929e-05,0.0,1.465991123717701e-06 +99625,81.0,the Columbus-Albany Area,G1300950000400,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,4127.0,,841.0,,8.72605822017302,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.001131267354606247,0.0006672806709287323,0.0,0.0017985480255349794,0.001360531363011607,0.0002629257874172583,0.0001450682073387452,0.0,3.0022667767368593e-05,0.0007232733598502434,0.0002629257874172583,0.0001450682073387452,0.0,0.0,0.0006372580031613637,0.0,3.0022667767368593e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4585100857027246e-05,0.0,0.0,0.00013480976938404378,8.946648131183826e-05,0.00017939487024107103,8.61903372761707e-05,3.133208487146331e-05,1.7287347236409764e-05,0.0,0.0,4.257910288837319e-05,0.0,2.005997968654052e-06,0.0,0.0,0.0,0.000135705215463332,2.6225342246682828e-05,1.4469723277974732e-05,0.0,2.99458925308143e-06 +99626,35.0,Eastern Counties in South Carolina and Georgia,G1300510000900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,38246.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.009037236533346643,0.0,0.0,0.009037236533346643,0.004107729524336442,0.0013291026749906703,0.003475930188041873,0.0,0.00012439143890391837,0.004107729524336442,0.0013291026749906703,0.003475930188041873,0.0,0.00012439143890391837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010769499706248821,0.00031806057514730473,0.0010769499706248821,0.0004895101698672566,0.0001583865910233724,0.00041421986689105613,0.0,1.4823486801440704e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004895101698672566,0.0001583865910233724,0.00041421986689105613,0.0,1.4823486801440704e-05 +99627,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301610960200,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,7368.0,,352.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0006444510426454607,0.0001037001796799377,0.0,0.0007481819119316963,0.00027663611116749293,0.00024588512565719466,0.00022562998550071085,0.0,0.0,0.00017293593148755518,0.00024588512565719466,0.00022562998550071085,0.0,0.0,0.0001037001796799377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.929094987348598e-06,0.0,0.0,7.679901943870993e-05,3.3704193708901256e-05,8.372811442605852e-05,2.0608718250256224e-05,2.9302049799654453e-05,2.6888251388799247e-05,0.0,0.0,6.929094987348598e-06,0.0,0.0,0.0,0.0,0.0,3.0958005801570674e-05,2.7516700963188836e-05,2.5249973225332546e-05,0.0,0.0 +99628,50.0,the Greater Atlanta and Macon Area,G1300570090502,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,44615.0,,23603.0,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,100799.30806909183,0.0,0.0,0.00825175749332148,0.012359238098589348,0.0,0.02061099559191083,0.018832981737658742,0.0008579430029345216,0.0008342492540784234,0.0,8.58761911305124e-05,0.006559565236308535,0.0008579430029345216,0.0008342492540784234,0.0,0.0,0.012273416501350212,0.0,8.58761911305124e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008257726353511888,0.0,0.0,0.0009833478296304965,0.001134193816123877,0.0018091204649816853,0.0007816921720814263,0.00010223960054147758,9.941605700759268e-05,0.0,0.0,0.0008200385337862792,0.0,5.737749212215563e-06,0.0,0.0,0.0,0.001653056133377498,7.530554443502207e-05,7.322583674906601e-05,0.0,7.537742373292378e-06 +99629,50.0,the Greater Atlanta and Macon Area,G1300890021502,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,202484.0,,11908.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.00944242808677906,0.00202503776886849,0.0,0.01146746585564755,0.00568486805175011,0.0032526170721472666,0.0012989440079944885,0.0,0.0012310367237556863,0.004996008049858219,0.0032526170721472666,0.000957581359574212,0.0,0.00023622160519936347,0.0006888600018918915,0.0003413626484202766,0.0009948151185563226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013530111744805857,0.0,0.0,0.0011252355576731466,0.0003824761912409174,0.001260536675121205,0.0005953644393641738,0.0003876079702634292,0.00011411308460655162,0.0,2.815006343899213e-05,4.602557515424666e-05,2.2807845115945405e-05,6.646769717786654e-05,0.0,0.0,0.0,0.0006248969704955964,0.0003575369799377058,0.00014278364388585528,0.0,0.00013531908080204773 +99630,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,19060.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0044255728087166015,0.0,0.0,0.0044255728087166015,0.0021535267860240868,0.0006691002265509971,0.001524870318531611,0.0,7.80754776099062e-05,0.0021535267860240868,0.0006691002265509971,0.001524870318531611,0.0,7.80754776099062e-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.0005273914155271049,0.0001639289580386668,0.0005273914155271049,0.00025663379389438706,7.973605471255822e-05,0.00018171738451612312,0.0,9.30418240403646e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00025663379389438706,7.973605471255822e-05,0.00018171738451612312,0.0,9.30418240403646e-06 +99631,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,56575.0,,4021.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005040829213610278,0.0011836367356898008,0.0,0.006224465949300078,0.0023590486568918173,0.001555257178348684,0.002310129424453279,0.0,0.0,0.0011754119212020167,0.001555257178348684,0.002310129424453279,0.0,0.0,0.0011836367356898008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.908436421574113e-05,0.0,0.0,0.0006007041366698279,0.00024810265255119737,0.0006797885008855691,0.00014007116159592826,0.00018533645577537483,0.0002752928620880392,0.0,0.0,7.908436421574113e-05,0.0,0.0,0.0,0.0,0.0,0.0002576372275222953,0.0001698532780760181,0.0002522946436034924,0.0,0.0 +99632,50.0,the Greater Atlanta and Macon Area,G1301350050605,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,224724.0,,33355.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01156773104947795,0.005672385877310392,0.0,0.017240116926788344,0.0065955880660911225,0.0028513258021272115,0.004918739134789628,0.0,0.00287446392378038,0.0065955880660911225,0.0028513258021272115,0.0016817425110534285,0.0,0.00043907467020618766,0.0,0.0032369966237361996,0.0024353892535741925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037899564698733304,0.0,0.0,0.001378504161013493,0.0007288593816673857,0.0017574998080008262,0.000785983487561104,0.0003397869872514785,0.00020041000601799566,0.0,5.232368018291472e-05,0.0,0.0002162771814618533,0.00016271846552547975,0.0,0.0,0.0,0.0006723704258522747,0.00029067114631918636,0.000501428332633086,0.0,0.000293029903196279 +99633,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,14542.0,,551.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032197036735974985,0.000437189591785979,0.0,0.003656893265383477,0.002502137101835267,0.0005419794542136815,0.0005396636561489809,0.0,7.303034611180845e-05,0.0021379778561610966,0.0005419794542136815,0.0005396636561489809,0.0,0.0,0.0003641592456741705,0.0,7.303034611180845e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.920868422530071e-05,0.0,0.0,0.0003836846241913911,0.00014809020842081755,0.00041289330841669177,0.00025477786573884403,6.458643536505397e-05,6.431046707721305e-05,0.0,0.0,2.4329518850548433e-05,0.0,4.879165374752276e-06,0.0,0.0,0.0,0.0002825118457430776,6.119393531730366e-05,6.093246268051372e-05,0.0,8.245726367340018e-06 +99634,50.0,the Greater Atlanta and Macon Area,G1302970110700,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,5227.0,,56.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015356222381177208,4.416557737679016e-05,0.0,0.0015797051084207718,0.0007378298048283615,0.00040749775231356766,0.0003902119739020525,0.0,4.416557737679016e-05,0.0007378298048283615,0.00040749775231356766,0.0003902119739020525,0.0,0.0,0.0,0.0,4.416557737679016e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9490556650383073e-06,0.0,0.0,0.00018299518774926026,5.7177623121051175e-05,0.00018594424341429854,8.79248166053294e-05,4.8560203050606205e-05,4.650031215603006e-05,0.0,0.0,0.0,0.0,2.9490556650383073e-06,0.0,0.0,0.0,8.684861756539043e-05,4.796582656032717e-05,4.593114871354244e-05,0.0,5.198650575038503e-06 +99635,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,11150.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002427948856691109,0.0,0.0,0.002427948856691109,0.0009882668241109843,0.0003976556105385901,0.0009758607630500883,0.0,6.608295191770663e-05,0.0009882668241109843,0.0003976556105385901,0.0009758607630500883,0.0,6.608295191770663e-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.0002893313731665949,8.071317804850744e-05,0.0002893313731665949,0.0001177687892753659,4.7387424791694644e-05,0.00011629039623901938,0.0,7.874906906939272e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001177687892753659,4.7387424791694644e-05,0.00011629039623901938,0.0,7.874906906939272e-06 +99636,50.0,the Greater Atlanta and Macon Area,G1301350050313,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,43335.0,,6181.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003734495431942261,0.0018193719301467137,0.0,0.0055538366724826775,0.002349534878939529,0.00178015061329825,0.0014241511802448978,0.0,0.0,0.0005301629487928156,0.00178015061329825,0.0014241511802448978,0.0,0.0,0.0018193719301467137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001215592456274301,0.0,0.0,0.0004450308063464304,0.0002552467171429999,0.0005665900519738605,6.31782389069785e-05,0.00021213625168157958,0.00016971265855156802,0.0,0.0,0.0001215592456274301,0.0,0.0,0.0,0.0,0.0,0.00023969431722191105,0.00018160700214813545,0.0001452887326038139,0.0,0.0 +99637,81.0,the Columbus-Albany Area,G1302150000200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,16976.0,,3412.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0037771688986970686,0.0026462499867006386,0.0,0.006423418885397708,0.002719267273811519,0.0007102811184739478,0.002142325586617574,0.0004213655405700981,0.00043017936592456755,0.0019994445829354854,0.0007102811184739478,0.0006460776567175367,0.0004213655405700981,0.0,0.000719822690876034,0.0014962479299000374,0.00043017936592456755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017680928809857803,0.0,0.0,0.00045011766199442514,0.00029892774920387997,0.0006269269500930032,0.00023826981135759864,8.464278007704724e-05,7.69917819689899e-05,5.021328859078928e-05,0.0,4.809497899693033e-05,9.99718592854638e-05,2.8742449816183924e-05,0.0,0.0,0.0,0.00026540102223970386,6.932357725039577e-05,0.00020909139978050835,4.112535986473274e-05,4.198559095766228e-05 +99638,50.0,the Greater Atlanta and Macon Area,G1302170100700,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,179843.0,,19797.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.00925744722608365,0.0033667296782467263,0.0,0.012624176904330377,0.0061553609223926305,0.0023843967341301213,0.0026726924108201795,0.0,0.001411726836987444,0.005424870031886456,0.0023843967341301213,0.0011902391621281447,0.0,0.00025794129793892817,0.0007304908905061754,0.0014824532486920347,0.001153785539048516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022494474574816622,0.0,0.0,0.0011031925632904226,0.00044410549322604066,0.0013281373090385888,0.000646471552020505,0.0002841440713391059,0.0001418385609044711,0.0,3.073837902634062e-05,4.8807033335041984e-05,9.90486617518494e-05,7.708905066127481e-05,0.0,0.0,0.0,0.0006475800009443442,0.0002508524940791738,0.0002811828868761292,0.0,0.00014852192713894137 +99639,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,9478.0,,392.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0020383158323052314,0.0003113094255547531,0.0,0.0023496252578599844,0.0018593377247333703,0.00022148954347386526,0.0002338956045347614,0.0,3.498509219172704e-05,0.0015830133913703442,0.00022148954347386526,0.0002338956045347614,0.0,0.0,0.00027632433336302603,0.0,3.498509219172704e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0798107638024575e-05,0.0,0.0,0.0002429064812356089,9.341559559441438e-05,0.00026370458887363347,0.00018864800368632804,2.639495056802437e-05,2.787338319879497e-05,0.0,0.0,1.8460807018767296e-05,0.0,2.3373006192572785e-06,0.0,0.0,0.0,0.00020867833652955594,2.4858350839649072e-05,2.625071552446885e-05,0.0,3.926468411191769e-06 +99640,50.0,the Greater Atlanta and Macon Area,G1301210001700,ComStock 90.1-2004,gen3_t5_cfl,10001_25000,NaturalGas,15604.0,,1734.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0013579230098544552,0.0005105522903685834,0.0,0.001868444610616741,0.0008709096475162095,0.00048360681603920044,0.0005139281470613308,0.0,0.0,0.0003603573571476261,0.00048360681603920044,0.0005139281470613308,0.0,0.0,0.0005105522903685834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.411148433632039e-05,0.0,0.0,0.00016182010443581448,8.757648101312007e-05,0.00019593158877213488,4.2942836040530056e-05,5.763014906546352e-05,6.124346213036248e-05,0.0,0.0,3.411148433632039e-05,0.0,0.0,0.0,0.0,0.0,9.132660927984697e-05,5.071268972555601e-05,5.3892289766731875e-05,0.0,0.0 +99641,50.0,the Greater Atlanta and Macon Area,G1301530021300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,22686.0,,2659.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005325814616025512,0.0020625968545120053,0.0,0.007388411470537517,0.0035446941473750507,0.0007106045616062218,0.0021459643218556578,0.00042071865430554995,0.0005663489246119683,0.0035446941473750507,0.0007106045616062218,0.0006497163919556205,0.00042071865430554995,0.0,0.0,0.0014962479299000374,0.0005663489246119683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013781318441676542,0.0,0.0,0.0006346625987148285,0.00034418788361631985,0.000772475783131594,0.0004224113983338688,8.468078035810021e-05,7.742490557320611e-05,5.013587849376371e-05,0.0,0.0,9.997236805895515e-05,3.78408163578103e-05,0.0,0.0,0.0,0.00037060610367661525,7.429537694436422e-05,0.0002243656131914522,4.3987124060255705e-05,5.921311107400171e-05 +99642,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,18626.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.004472467719526788,0.0,0.0,0.004472467719526789,0.0022414444054089707,0.001128041778730414,0.0009929811273141247,0.0,0.00011000040807327888,0.0022414444054089707,0.001128041778730414,0.0009929811273141247,0.0,0.00011000040807327888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005329782939085263,0.00017116441753361236,0.0005329782939085263,0.00026711008105656807,0.0001344273051005694,0.00011833229892495314,0.0,1.310860882643576e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000267110081056568,0.00013442730510056938,0.00011833229892495311,0.0,1.3108608826435758e-05 +99643,50.0,the Greater Atlanta and Macon Area,G1301210011416,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,71415.0,,2317.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006119906460643805,0.0006819844311475512,0.0,0.006801921581397654,0.0018403022416417475,0.001978743055650685,0.002982876284105222,0.0,0.0,0.001158317810494196,0.001978743055650685,0.002982876284105222,0.0,0.0,0.0006819844311475512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.556649685933137e-05,0.0,0.0,0.0007292989887208523,0.00026424326782186787,0.0007748654855801836,0.00013803479076735783,0.0002358034912305902,0.00035546436395181486,0.0,0.0,4.556649685933137e-05,0.0,0.0,0.0,0.0,0.0,0.00020964468246501342,0.00022541566825004929,0.00033980513486512096,0.0,0.0 +99644,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,29675.0,,2712.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0024584087648921948,0.0007900476949753625,0.0,0.003248456459867557,0.0021109651609237516,0.0007991597748066881,0.0003383618977365553,0.0,0.0,0.001320917465948389,0.0007991597748066881,0.0003383618977365553,0.0,0.0,0.0007900476949753625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2786147596531127e-05,0.0,0.0,0.0002929653061183495,0.00011964545514587349,0.00034575145371488065,0.00015741197936447078,9.523480855063557e-05,4.032213778473188e-05,0.0,0.0,5.278614759653112e-05,0.0,0.0,0.0,0.0,0.0,0.00022468187034300335,8.505906029632749e-05,3.601375590821665e-05,0.0,0.0 +99645,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,49078.0,,2883.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.01125921715602794,0.0022362049557601345,0.0,0.013495422111788074,0.004691057468937569,0.0006469671253312904,0.00689119851544914,0.00042176984448544073,0.0008445100183677038,0.003299362531545138,0.0006469671253312904,0.00689119851544914,0.00042176984448544073,0.0,0.0013916949373924308,0.0,0.0008445100183677038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014940974219536767,0.0,0.0,0.001341737913651958,0.0005163370296990861,0.001491147655847326,0.00039317829455725174,7.709775101714508e-05,0.0008212100531101307,5.0261450981805874e-05,0.0,9.298467087052876e-05,0.0,5.6425071324838914e-05,0.0,0.0,0.0,0.0005183283109122799,7.148524176249098e-05,0.0007614281663198062,4.660255231010536e-05,9.331231908104685e-05 +99646,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000102,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,21507.0,,3.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,24034.3828889517,0.0,0.0,0.0018965579224926616,7.897135853815473e-07,0.0,0.0018973476360780435,0.0014982385394659845,0.0003051939271505303,9.391516946152863e-05,0.0,0.0,0.0014974488258806028,0.0003051939271505303,9.391516946152863e-05,0.0,0.0,7.897135853815473e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.239106076715574e-08,0.0,0.0,0.0002260080816068929,6.137764414993126e-05,0.00022606047266766007,0.00017844724510019744,3.6369199788377184e-05,1.1191636718318298e-05,0.0,0.0,5.239106076715574e-08,0.0,0.0,0.0,0.0,0.0,0.0001785084114056649,3.63624894642715e-05,1.1189571797723674e-05,0.0,0.0 +99647,35.0,Eastern Counties in South Carolina and Georgia,G1301030030203,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,33587.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029925741996952963,0.0,0.0,0.0029925741996952963,0.0011225337295510747,0.0007956894224805401,0.0010743510476636812,0.0,0.0,0.0011225337295510747,0.0007956894224805401,0.0010743510476636812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035661800700593534,0.00010089987029388649,0.00035661800700593534,0.00013376969615998293,9.482043120922649e-05,0.00012802787963672586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013376969615998293,9.482043120922649e-05,0.00012802787963672586,0.0,0.0 +99648,35.0,Eastern Counties in South Carolina and Georgia,G1300330950400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,15427.0,,1215.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.000748451746624689,0.00020654098018219508,0.0,0.0009549927268068842,0.00034494418142712736,0.00012835008631976224,0.00029737362173712557,0.0,0.00018432483732286892,0.00034494418142712736,0.00012835008631976224,9.08326415549305e-05,0.0,0.00018432483732286892,0.0,0.00020654098018219508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3799591707986624e-05,0.0,0.0,8.91910397621724e-05,3.798199304291738e-05,0.00010299063147015903,4.110609714005317e-05,1.529514454879696e-05,1.0824288648084931e-05,0.0,2.196550942523735e-05,0.0,1.3799591707986624e-05,0.0,0.0,0.0,0.0,3.720030327971379e-05,1.3841839909629816e-05,3.207008412271187e-05,0.0,1.987840415810354e-05 +99649,50.0,the Greater Atlanta and Macon Area,G1300210012000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,176246.0,,1405.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013708486260641094,0.00040922350522483024,0.0,0.01411770976586592,0.008900284722446104,0.0036106008859638724,0.0016068545310553848,0.0,0.0,0.008491061217221275,0.0036106008859638724,0.0016068545310553848,0.0,0.0,0.00040922350522483024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7341090488003536e-05,0.0,0.0,0.0016336140612219368,0.000393557400906852,0.0016609551517099404,0.001011863508152229,0.0004302683946735868,0.0001914857779598123,0.0,0.0,2.7341090488003536e-05,0.0,0.0,0.0,0.0,0.0,0.0010471226570455997,0.0004247888816081165,0.00018904718652439317,0.0,0.0 +99650,50.0,the Greater Atlanta and Macon Area,G1301170130503,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,59226.0,,17395.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.01151205942759979,0.011965759964244546,0.0,0.023477747671873325,0.00596939662757134,0.0015419076568646223,0.011118460226666118,0.00036763657142602224,0.0044803465893452216,0.0043199807341543165,0.0015419076568646223,0.004778629948799149,0.00036763657142602224,0.0005038327963846676,0.0016494158934170229,0.006339830277866969,0.003976513792960554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007994814655288948,0.0,0.0,0.0013718658559232916,0.0011409542605642113,0.0021713473214521866,0.000514802247565219,0.00018374561743209227,0.0005694584280144598,4.381041141247987e-05,6.004060479373216e-05,0.00011020423605989885,0.0004235900450033428,0.00026568718446565317,0.0,0.0,0.0,0.0005520816374345383,0.00014260384375246467,0.0010282945012125952,3.400099088679165e-05,0.00041436634816579675 +99651,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock 90.1-2004,gen5_led,50001_100000,Electricity,72154.0,,10716.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006197428406151802,0.003154339114490487,0.0,0.009351767520642288,0.005839925182389862,0.001228566319309638,0.002283214639730194,0.0,0.0,0.002685586067899375,0.001228566319309638,0.002283214639730194,0.0,0.0,0.003154339114490487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021075371040788429,0.0,0.0,0.0007385355991406802,0.0004204776533507563,0.0009492893095485644,0.00032003611590432086,0.00014640588051243055,0.00027208628828145724,0.0,0.0,0.00021075371040788429,0.0,0.0,0.0,0.0,0.0,0.0005928054276337906,0.0001247106357613953,0.00023176701560602834,0.0,0.0 +99652,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,58725.0,,3713.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0052049265384840945,0.001093041017898982,0.0,0.0062979675563830766,0.0026926753669541444,0.001348930955209228,0.0022563305446134064,0.0,0.0,0.0015996343490551623,0.001348930955209228,0.0022563305446134064,0.0,0.0,0.001093041017898982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.303011818677185e-05,0.0,0.0,0.0006202603148813427,0.000267793991810731,0.0006932904330681145,0.00019062511213250213,0.00016074930795756187,0.0002688822375744621,0.0,0.0,7.303011818677185e-05,0.0,0.0,0.0,0.0,0.0,0.0002964140501764652,0.00014849249662586021,0.0002483805079043971,0.0,0.0 +99653,85.0,Rural Climate Zone 3A,G1300810010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,16858.0,,123.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003614299122407735,9.775976115986136e-05,0.0,0.0037120588835675952,0.0018838190185602054,0.0007547020478711804,0.0009756953489026098,0.0,9.775976115986136e-05,0.0018838190185602054,0.0007547020478711804,0.0009756953489026098,0.0,0.0,0.0,0.0,9.775976115986136e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.532478514251023e-06,0.0,0.0,0.0004307095774411305,0.00012878295731681732,0.0004372420559553815,0.00022449135115278323,8.993649643364567e-05,0.00011627187380029785,0.0,0.0,0.0,0.0,6.532478514251023e-06,0.0,0.0,0.0,0.0002218943520452682,8.889607772810611e-05,0.00011492679769407863,0.0,1.15150864520133e-05 +99654,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,97011.0,,14086.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0054189658215335786,0.0023955136707404937,0.0,0.007814479492274073,0.0035071364103321243,0.0017560681861262897,0.000982793933513527,0.0,0.001568480962302131,0.002646983386761103,0.0017560681861262897,0.0007980612978779968,0.0,0.00021783522040676873,0.0008601530235710215,0.00018473263563553014,0.0013506457418953621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016005475069909357,0.0,0.0,0.000645766877691271,0.0003064368392065753,0.0008058216283903645,0.00031543550065898706,0.00020926699058729632,9.510330375013675e-05,0.0,2.5958969804585103e-05,5.747058738686922e-05,1.2342795745136159e-05,9.024255221011968e-05,0.0,0.0,0.0,0.0003616525420477552,0.00018108406666212927,0.00010134476757652561,0.0,0.00016174025210395426 +99655,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,259896.0,,20498.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,140298.9118897092,0.0,0.0,0.013080396834029754,0.0034859131677123212,0.0,0.016566310001742076,0.00829683397470661,0.002646380554472821,0.0038051660554417922,0.0,0.0018179294171208537,0.00829683397470661,0.002646380554472821,0.001822078321693147,0.0,0.0003151039831571784,0.0,0.0019830877337486457,0.0015028254339636753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023290806244393846,0.0,0.0,0.001558765269783613,0.0007844959317243259,0.0017916733322275512,0.0009887174535322648,0.00031536398713922614,0.00021713350464199152,0.0,3.7550324470130897e-05,0.0,0.00013249817178517137,0.00010040989065876708,0.0,0.0,0.0,0.0008973160693502753,0.00028621035498405583,0.0004115348889110271,0.0,0.00019661201898219316 +99656,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000600,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,27340.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0061677146099613726,0.0,0.0,0.006167714609961372,0.002778544142272033,0.0017911870959721808,0.0014505166592399734,0.0,0.00014754941955092446,0.002778544142272033,0.0017911870959721808,0.0014505166592399734,0.0,0.00014754941955092446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000734995463191714,0.00017960883099867484,0.000734995463191714,0.0003311141108165909,0.00021345254644902244,0.00017285546288142194,0.0,1.7583199097984766e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00033111411081659096,0.0002134525464490225,0.00017285546288142196,0.0,1.7583199097984766e-05 +99657,50.0,the Greater Atlanta and Macon Area,G1301990970500,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,203714.0,,1075.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.010092618170413816,0.00018272910479506417,0.0,0.01027534727520888,0.007230388196013273,0.0010621373008682634,0.0009190355538470168,0.0,0.001063768494118908,0.007230388196013273,0.0010621373008682634,0.0007363064490519528,0.0,0.001063768494118908,0.0,0.00018272910479506417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2209256755320555e-05,0.0,0.0,0.0012027170618915737,0.00040630976325590514,0.0012149263186468943,0.0008616308573861408,0.00012657277153023877,8.774416252579507e-05,0.0,0.00012676715755779538,0.0,1.2209256755320553e-05,0.0,0.0,0.0,0.0,0.0008548994674432348,0.00012558393660862388,0.00010866401419199409,0.0,0.0001257768040181555 +99658,81.0,the Columbus-Albany Area,G1302150011200,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,13985.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0031201243568153725,0.0,0.0,0.0031201243568153725,0.0012143052566405113,0.0005003777961228098,0.0013242229576400511,0.0,8.113563933826058e-05,0.0012143052566405113,0.0005003777961228098,0.0013242229576400511,0.0,8.113563933826058e-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.00037181704446011466,0.0001135227668978011,0.00037181704446011466,0.00014470557579227043,5.962871090745377e-05,0.00015780418022136238,0.0,9.668721553754076e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014470557579227043,5.962871090745377e-05,0.00015780418022136238,0.0,9.668721553754076e-06 +99659,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,14262.0,,608.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034244863881760243,0.00048193411867894433,0.0,0.003906503213928708,0.00211374468355548,0.0009844622987189764,0.0007140928746651803,0.0,9.420335698907115e-05,0.0017260139218656066,0.0009844622987189764,0.0007140928746651803,0.0,0.0,0.00038773076168987315,0.0,9.420335698907115e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.220138763814106e-05,0.0,0.0,0.000408094021875752,0.0001700600045003167,0.00044029540951389306,0.00020568806044016585,0.00011731779114568472,8.509802644306827e-05,0.0,0.0,2.5907002788331094e-05,0.0,6.294384849809965e-06,0.0,0.0,0.0,0.00023823660959385525,0.00011095709058166683,8.048420734958509e-05,0.0,1.0617501988785894e-05 +99660,85.0,Rural Climate Zone 3A,G1302390960300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,18301.0,,1526.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015987750400788267,0.00044929583619836874,0.0,0.0020480708762771953,0.0009506412446776412,0.0005144498703683918,0.000582979761231162,0.0,0.0,0.0005013454084792727,0.0005144498703683918,0.000582979761231162,0.0,0.0,0.00044929583619836874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0019699223476244e-05,0.0,0.0,0.00019052347170971987,9.144578166639774e-05,0.00022054317093319614,5.974453275458266e-05,6.130617057817513e-05,6.947276837696205e-05,0.0,0.0,3.0019699223476244e-05,0.0,0.0,0.0,0.0,0.0,0.00010236825148462848,5.539769497794511e-05,6.277722447062251e-05,0.0,0.0 +99661,85.0,Rural Climate Zone 3A,G1302870970200,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,33407.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028137458637985824,0.0,0.0,0.0028137458637985824,0.000813151808463933,0.000818614558384924,0.001181979496949725,0.0,0.0,0.000813151808463933,0.000818614558384924,0.001181979496949725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003353094036258986,0.00010699515176908252,0.0003353094036258986,9.690194536093329e-05,9.75529321617427e-05,0.00014085452610322255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.690194536093329e-05,9.75529321617427e-05,0.00014085452610322255,0.0,0.0 +99662,50.0,the Greater Atlanta and Macon Area,G1300630040414,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,17932.0,,8379.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.003977056754442468,0.006498781135217574,0.0,0.010475757028876976,0.0032805219690901703,0.0006624115348973792,0.005593463807982337,0.0004184545523796311,0.0005210668860935927,0.002236851842024683,0.0006624115348973792,0.0006594196859238438,0.0004184545523796311,0.0,0.0010436701270654875,0.004934044122058494,0.0005210668860935927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004342084212165187,0.0,0.0,0.0004739345340364464,0.0005673028910863562,0.0009081429552529651,0.0002665592675473775,7.893769727607694e-05,7.858116714921969e-05,4.986603801314676e-05,0.0,6.973159254251098e-05,0.00032966235727523646,3.4814471398771264e-05,0.0,0.0,0.0,0.00028438831748097527,5.742442930254251e-05,0.00048489715241382747,3.627580830574432e-05,4.5171267385935535e-05 +99663,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,78982.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.006595900480302748,0.0,0.0,0.00659590048030275,0.004845409197506235,0.0013818165328210814,0.00036870512357486935,0.0,0.0,0.004845409197506235,0.0013818165328210814,0.00036870512357486935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007860192617463867,0.0002562068201006607,0.0007860192617463867,0.0005774169837244407,0.00016466810168535553,4.39377958930525e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005774169837244405,0.00016466810168535548,4.393779589305249e-05,0.0,0.0 +99664,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,40253.0,,14793.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.008916872276399906,0.010176274967434035,0.0,0.019093218963804955,0.006815261965729456,0.001143790097756965,0.005663008911392649,0.00036806689125211596,0.0051030193777027565,0.0044491484019534315,0.001143790097756965,0.002358439526877354,0.00036806689125211596,0.00059742735856004,0.0023661135637760237,0.0033045693845152944,0.004505592019142717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006799214031309013,0.0,0.0,0.0010626069375059518,0.000936354647183218,0.0017425283406368533,0.0005301966666520419,0.00013630331973509737,0.0002810508130278996,4.3861840787592156e-05,7.119429730332086e-05,0.0001580903876318218,0.00022079272227346313,0.00030103829322561637,0.0,0.0,0.0,0.0006219897832136612,0.0001043871473353763,0.0005168302704791392,3.3591349393350336e-05,0.00046572324474584227 +99665,35.0,Eastern Counties in South Carolina and Georgia,G1302450010706,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,45230.0,,843.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003735071896459779,0.0002456009250536612,0.0,0.003980672821513441,0.0026351527400204724,0.0009173738238184183,0.0004281462576745497,0.0,0.0,0.0023895518149668112,0.0009173738238184183,0.0004281462576745497,0.0,0.0,0.0002456009250536612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6409413334256438e-05,0.0,0.0,0.000445100171666129,0.00011580462911165737,0.0004615095850003855,0.0002847575501973449,0.00010932138865937574,5.102123280940835e-05,0.0,0.0,1.6409413334256438e-05,0.0,0.0,0.0,0.0,0.0,0.0003055132390903457,0.0001063581036935581,4.9638242216481635e-05,0.0,0.0 +99666,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,54450.0,,6874.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0025215233493528096,0.0011689095373398212,0.0,0.0036904151563312104,0.0018258016975913575,0.0006810231821442282,0.0005781161644622417,0.0,0.0006054918424948033,0.0015434102312541764,0.0006810231821442282,0.00019159428550509058,0.0,0.00010549565044931417,0.000282391466337181,0.00038652187895715106,0.000499996192045489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.809935816642666e-05,0.0,0.0,0.00030048418450589733,0.00014057389983682908,0.00037858354267232395,0.0001839246758573558,8.115597881286444e-05,2.283185386752963e-05,0.0,1.2571675968147444e-05,1.8867663893650213e-05,2.5825018702930532e-05,3.340667556984592e-05,0.0,0.0,0.0,0.0001873010069627091,6.986318829084114e-05,5.930640763892648e-05,0.0,6.211475866004231e-05 +99667,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,57088.0,,4846.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.00508649534778126,0.0014263915215046298,0.0,0.0065128561796795915,0.002786493493406222,0.0014431480465431756,0.0022832453293364914,0.0,0.0,0.001360101971901592,0.0014431480465431756,0.0022832453293364914,0.0,0.0,0.0014263915215046298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.53024446133111e-05,0.0,0.0,0.000606146186922822,0.00027303723173931026,0.000701448631536133,0.00016208028666613744,0.00017197670021635556,0.0002720892000403288,0.0,0.0,9.53024446133111e-05,0.0,0.0,0.0,0.0,0.0,0.00030011134804918896,0.00015543015144571412,0.00024591043737789726,0.0,0.0 +99668,50.0,the Greater Atlanta and Macon Area,G1301350050429,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,222351.0,,22576.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010554050826370691,0.0038393147315368133,0.0,0.014393383288268924,0.006732501916976769,0.0021082463550127985,0.0029888956763854013,0.0,0.002563757070255375,0.0046179435532984325,0.0021082463550127985,0.0012641215781655048,0.0,0.002563757070255375,0.0021145583636783373,0.0017247740982198963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025652112581971625,0.0,0.0,0.0012577062268328016,0.0005162039327159772,0.001514227352652518,0.0005503115777719902,0.00025123572095861945,0.00015064297173554483,0.0,0.0003055180692602013,0.0001412827366317892,0.00011523957382961203,0.0,0.0,0.0,0.0,0.0007082795163789335,0.00022179387798921686,0.00031444084387694676,0.0,0.00026971497969494214 +99669,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,2311.0,,357.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005549644647907527,0.0002835198487783458,0.0,0.0008384843135690987,0.0005328816761023576,0.0001246395601251363,0.00012488768134635419,0.0,5.6075395995250426e-05,0.0003054372233192623,0.0001246395601251363,0.00012488768134635419,0.0,0.0,0.00022744445278309535,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8944385746602707e-05,0.0,0.0,6.613568095857943e-05,4.2076657998625145e-05,8.508006670518213e-05,3.639926524292606e-05,1.485342342840227e-05,1.4882992287251108e-05,0.0,0.0,1.5197508985751877e-05,0.0,3.746876760850827e-06,0.0,0.0,0.0,5.407090844165401e-05,1.2647036942662211e-05,1.2672213525826098e-05,0.0,5.689907795039799e-06 +99670,50.0,the Greater Atlanta and Macon Area,G1300670031004,ComStock 90.1-2004,gen5_led,_1000,NaturalGas,1973.0,,74.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0004068360957236532,5.8639315281168955e-05,0.0,0.0004654754110048221,0.00024009863506520944,8.419580106661497e-05,0.00012951927747575543,0.0,1.157899032350304e-05,0.00019312101718128283,8.419580106661497e-05,0.00012951927747575543,0.0,0.0,4.6977617883926615e-05,0.0,1.157899032350304e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.916198814668945e-06,0.0,0.0,4.848645746683749e-05,2.0670851214361174e-05,5.2402656281506445e-05,2.3016035410665897e-05,1.0034400020581535e-05,1.543602203559006e-05,0.0,0.0,3.1373778938391555e-06,0.0,7.732973681997918e-07,0.0,0.0,0.0,2.7030012648403203e-05,9.478660997614353e-06,1.4581122909886124e-05,0.0,1.303548663719066e-06 +99671,50.0,the Greater Atlanta and Macon Area,G1301170130205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,32894.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0032963556261808922,0.0,0.0,0.0032963556261808922,0.0019851880856520216,0.0009734131147810704,0.000337784799347238,0.0,0.0,0.0019851880856520216,0.0009734131147810704,0.000337784799347238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003928217688169927,9.685960139837134e-05,0.0003928217688169927,0.0002365718944420267,0.00011600018471944292,4.0253309231931005e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002365718944420267,0.00011600018471944292,4.0253309231931005e-05,0.0,0.0 +99672,50.0,the Greater Atlanta and Macon Area,G1301130140403,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,17669.0,,4073.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.003819135645109634,0.0031589882121381735,0.0,0.0069781238572478085,0.0032939448590795463,0.0005482361092046182,0.002141516978786889,0.0004133603230463138,0.0005810655871304404,0.0022122701639718505,0.0005482361092046182,0.0006452690488868515,0.0004133603230463138,0.0,0.0010816746951076957,0.0014962479299000374,0.0005810655871304404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002110676807471089,0.0,0.0,0.00045511895513986034,0.0003349282163181624,0.0006661866358869692,0.00026363192593151615,6.533222916830585e-05,7.68954555697759e-05,4.925934447026245e-05,0.0,7.227205481234995e-05,9.997175018671775e-05,3.882387574804117e-05,0.0,0.0,0.0,0.00031446590650410875,5.233893475299139e-05,0.00020444606902628675,3.946263045092802e-05,5.5473095152654286e-05 +99673,50.0,the Greater Atlanta and Macon Area,G1300570090601,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,3629.0,,607.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0002568413151054746,0.000178736267077821,0.0,0.00043560827178959336,0.00022449447006769584,0.00012619566109615385,8.48567614131482e-05,0.0,0.0,4.5758202989874846e-05,0.00012619566109615385,8.48567614131482e-05,0.0,0.0,0.000178736267077821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1943022749982591e-05,0.0,0.0,3.060801794128813e-05,2.30812163077793e-05,4.2551040691270726e-05,5.453047526641248e-06,1.5038854077497526e-05,1.0112459028278372e-05,0.0,0.0,1.194302274998259e-05,0.0,0.0,0.0,0.0,0.0,2.1929044853927385e-05,1.2327031092187207e-05,8.288969107465376e-06,0.0,0.0 +99674,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,103754.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008716919302640395,0.0,0.0,0.008716919302640395,0.005486656628836052,0.002495008952214686,0.0007352840951890963,0.0,0.0,0.005486656628836052,0.002495008952214686,0.0007352840951890963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001038779041738272,0.0003066684992103489,0.001038779041738272,0.0006538346538923298,0.00029732557094166567,8.762243646956373e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006538346538923298,0.00029732557094166567,8.762243646956373e-05,0.0,0.0 +99675,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,59756.0,,13546.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0036561600980676684,0.0023036172075003598,0.0,0.005959777305568029,0.002631877118831218,0.0010030597366166472,0.0011219418099381012,0.0,0.0012028986401820623,0.0018761204633014673,0.0010030597366166472,0.0005874423345691894,0.0,0.00018955529394178454,0.0007557566555297506,0.0005344994753689118,0.0010133433462402777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015391375451535174,0.0,0.0,0.00043569820095772733,0.0002468712381758436,0.0005896119554730791,0.00022357399258102683,0.00011953287355441086,7.000447504294876e-05,0.0,2.258897267548489e-05,5.049508398088796e-05,3.571201880792607e-05,6.770546709113642e-05,0.0,0.0,0.0,0.0002603765434572771,9.923458250869744e-05,0.00011099580916665823,0.0,0.0001190050203404463 +99676,50.0,the Greater Atlanta and Macon Area,G1301130140206,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,52224.0,,3387.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026624619922808093,0.0005760239818146753,0.0,0.003238503704456905,0.0012499550193908826,0.0010508962517279498,0.0006351192764277114,0.0,0.00030249769618752087,0.0010773144902438284,0.0010508962517279498,0.00023173582376009012,0.0,0.00030249769618752087,0.0001726405291470541,0.0004033834526676213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.848711235843292e-05,0.0,0.0,0.00031728063479800916,0.00012056977128095594,0.0003557677471564421,0.00012838156050026526,0.00012523334824000962,2.7615526336605172e-05,0.0,3.604808682699471e-05,1.1534997938748503e-05,2.6952114419684426e-05,0.0,0.0,0.0,0.0,0.00013731455075490057,0.00011544683165187256,6.977140518300226e-05,0.0,3.323106400790601e-05 +99677,50.0,the Greater Atlanta and Macon Area,G1302970110800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,40561.0,,6402.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.008150902985953182,0.004403893100242581,0.0,0.012554796086195762,0.003060147723294092,0.000482747124906078,0.0071054409684586164,0.00036971645058547493,0.0015367438189514983,0.003060147723294092,0.000482747124906078,0.002701547868216037,0.00036971645058547493,0.0015367438189514983,0.0,0.004403893100242581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029424312905073106,0.0,0.0,0.0009713296073871494,0.0005311393177011057,0.0012655727364378805,0.0003646727352461956,5.752817523535537e-05,0.0003219389845142424,4.4058497004643716e-05,0.00018313121538671216,0.0,0.00029424312905073106,0.0,0.0,0.0,0.0,0.00030847490484785456,4.86628054872717e-05,0.0007162563460459041,3.726886974994586e-05,0.00015490981030690402 +99678,50.0,the Greater Atlanta and Macon Area,G1301170130305,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,NaturalGas,3003.0,,301.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.00015010286440206432,8.863158298776563e-05,0.0,0.00023873444738982993,0.00011723429605722462,9.071847621600944e-05,3.08123647228936e-05,0.0,0.0,2.8602713069458994e-05,9.071847621600944e-05,3.08123647228936e-05,0.0,0.0,8.863158298776563e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.922172721519042e-06,0.0,0.0,1.788652110643402e-05,1.3129275263502651e-05,2.380869382795306e-05,3.408349554528012e-06,1.0810173050627472e-05,3.6716555286975583e-06,0.0,0.0,5.922172721519043e-06,0.0,0.0,0.0,0.0,0.0,1.1691632654940313e-05,9.04724244188575e-06,3.072879367947664e-06,0.0,0.0 +99679,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,11774.0,,1391.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0010382607495806706,0.000405092695701296,0.0,0.0014433534452819665,0.0009309811963665311,0.00042920933365487104,8.319328886000224e-05,0.0,0.0,0.000525888500665235,0.00042920933365487104,8.319328886000224e-05,0.0,0.0,0.000405092695701296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7066696927169662e-05,0.0,0.0,0.00012372638186517132,5.983376038702539e-05,0.00015079307879234098,6.266853627866414e-05,5.114757341768528e-05,9.913891698467197e-06,0.0,0.0,2.7066696927169662e-05,0.0,0.0,0.0,0.0,0.0,9.726343977407498e-05,4.4841266759565886e-05,8.69154551372521e-06,0.0,0.0 +99680,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,49419.0,,5919.0,,9.525004485617233,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,357187.66821064625,0.0,0.0,0.018076147280660777,0.0051253547697462515,0.0,0.023201502050407028,0.008669732777571198,0.0015906366816064118,0.007620051598330733,0.0006458604245537359,0.004675220568344949,0.008669732777571198,0.0015906366816064118,0.004735437077036218,0.0006458604245537359,0.0024344803198932123,0.0,0.0028846145212945156,0.0022407402484517364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034244461775764594,0.0,0.0,0.0021540983691755115,0.0009423585524381622,0.0024965429869331576,0.0010331547396349224,0.00018955299647646303,0.0005643125787036674,7.696589686092382e-05,0.0002901121574995347,0.0,0.00019273216421109533,0.00014971245354655066,0.0,0.0,0.0,0.0009328861776882325,0.00017115671406082314,0.0008199377064705022,6.949628993649633e-05,0.0005030660987771036 +99681,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,6662.0,,648.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013140499875701165,0.0005143552915847528,0.0,0.0018284052791548693,0.0013007341486980877,0.00019560222939346209,0.0003003093847474253,0.0,3.175951631589404e-05,0.0008180556663554897,0.00019560222939346209,0.0003003093847474253,0.0,0.0,0.0004826784823425981,0.0,3.175951631589404e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.436682645025547e-05,0.0,0.0,0.00015659033983059928,8.489087108090986e-05,0.00019095716628085473,9.748458278351317e-05,2.330917382297126e-05,3.578672733666327e-05,0.0,0.0,3.2250329500513095e-05,0.0,2.122023051438832e-06,0.0,0.0,0.0,0.00013584762084855483,2.0428538393007712e-05,3.136406888161142e-05,0.0,3.3169381576807436e-06 +99682,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7458.0,,618.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001544223773786609,0.0004903702402003536,0.0,0.0020345940139869624,0.0014772310440577699,0.00035663290196389356,0.00015987277353808125,0.0,4.094000150095717e-05,0.0009868608038574164,0.00035663290196389356,0.00015987277353808125,0.0,4.094000150095717e-05,0.0004903702402003536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.276430526681463e-05,0.0,0.0,0.00018402012803206598,9.341733457756635e-05,0.00021678443329888058,0.00011760099446621025,4.249878378631398e-05,1.905151879845662e-05,0.0,4.878686914245227e-06,3.276430526681463e-05,0.0,0.0,0.0,0.0,0.0,0.0001573978359004596,3.7998962454665564e-05,1.70343215271031e-05,0.0,4.36212579198967e-06 +99683,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,18448.0,,5125.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0036504748047235867,0.0035255386152143915,0.0,0.007175941699966964,0.0011997316751491418,0.00018389000568402674,0.00473186852769697,0.00036957301064344375,0.0006909502007643968,0.0008863154018109214,0.00018389000568402674,0.002115810864931542,0.00036957301064344375,9.488552165365343e-05,0.00031341627333822023,0.0026160576627654282,0.0005960646791107433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023555536151266014,0.0,0.0,0.0004350158238340232,0.00034299138353434904,0.0006705711853466834,0.0001056194728961445,2.19136048313412e-05,0.0002521346552766758,4.404087585643572e-05,1.1307214973426056e-05,2.094059706268334e-05,0.0001747892948417477,3.982546960822911e-05,0.0,0.0,0.0,0.00011211148656718128,1.7183993995591387e-05,0.0004421795522024699,3.453553863466553e-05,6.45673159725146e-05 +99684,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,48083.0,,4475.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.010011892793866255,0.00307865147581612,0.0,0.013090472549711359,0.0032733711971235043,0.0018269945416516757,0.0049942919016430914,0.00036390713293321046,0.002631907776359879,0.0032733711971235043,0.0018269945416516757,0.0019156404258269715,0.00036390713293321046,0.002631907776359879,0.0,0.00307865147581612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020569595100960797,0.0,0.0,0.0011930945187293843,0.0004657384425132238,0.0013987904697389923,0.00039008020895383026,0.0002177187888716257,0.0002282825174986702,4.3365986289339285e-05,0.0003136384704099101,0.0,0.000205695951009608,0.0,0.0,0.0,0.0,0.0003497780860902103,0.00019522462183260697,0.0005336681230248654,3.888551979189165e-05,0.00028123411899941823 +99685,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300490010100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,61832.0,,3810.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003182812639236519,0.0006479915188186697,0.0,0.0038307864276937685,0.0017676638424950044,0.0005919458463698829,0.0011041759877952083,0.0,0.00036701848139509305,0.0016783028209379383,0.0005919458463698829,0.0005455454905336048,0.0,0.00036701848139509305,8.936102155706611e-05,0.0005586304972616036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3294427941723076e-05,0.0,0.0,0.0003792889946307244,0.00014358038901277594,0.0004225834225724475,0.00019999976806431033,7.054092414290612e-05,6.501149269014194e-05,0.0,4.373680973336599e-05,5.97050145911523e-06,3.732392648260785e-05,0.0,0.0,0.0,0.0,0.00019499532292349876,6.529899446446664e-05,0.00012180435449796693,0.0,4.04867065660594e-05 +99686,50.0,the Greater Atlanta and Macon Area,G1300770170304,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,57696.0,,674.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006490554723942728,0.00025031481756765476,0.0,0.006740869541510383,0.004079589048419965,0.0005813038534287859,0.001959236551187822,0.0,0.00012070134005003787,0.004079589048419965,0.0005813038534287859,0.0017089217336201672,0.0,0.00012070134005003787,0.0,0.00025031481756765476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.672585325599736e-05,0.0,0.0,0.0007734669028234064,0.0002548922496095073,0.0007901927560794038,0.0004861567678389274,6.927286036928295e-05,0.0002036489108696498,0.0,1.438374617053169e-05,0.0,1.672585325599736e-05,0.0,0.0,0.0,0.0,0.00047822639111927087,6.81428547506867e-05,0.00022966985500326442,0.0,1.4149112954831965e-05 +99687,50.0,the Greater Atlanta and Macon Area,G1300890021218,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,2178.0,,361.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005230395343273802,0.0002863318892854823,0.0,0.0008093714236128624,0.0005547163435695349,0.00011306056980163324,0.00012960198454949477,0.0,1.2075232765938882e-05,0.0002804596870499915,0.00011306056980163324,0.00012960198454949477,0.0,0.0,0.0002742566565195434,0.0,1.2075232765938882e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9133649817938785e-05,0.0,0.0,6.232542491162124e-05,3.846242628560123e-05,8.145907472956002e-05,3.341959454068748e-05,1.3472304847278023e-05,1.5443380903939044e-05,0.0,0.0,1.832674257547227e-05,0.0,8.069072424665114e-07,0.0,0.0,0.0,5.5829349500425004e-05,1.1378965374546141e-05,1.3043773768773818e-05,0.0,1.215310127786201e-06 +99688,50.0,the Greater Atlanta and Macon Area,G1300210011800,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,6083.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011145605257109066,0.0,0.0,0.0011145605257109066,0.0007003635004244552,0.00019915863356425226,0.0001749254609586352,0.0,4.019563783730341e-05,0.0007003635004244552,0.00019915863356425226,0.0001749254609586352,0.0,4.019563783730341e-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.0001328246287300402,4.090172823576724e-05,0.0001328246287300402,8.34638584213402e-05,2.373417230498196e-05,2.0846251837639884e-05,0.0,4.790202549925761e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.34638584213402e-05,2.373417230498196e-05,2.0846251837639884e-05,0.0,4.790202549925761e-06 +99689,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,305413.0,,3050.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.0263209101516185,0.0008977630530266994,0.0,0.02721870389425149,0.005190226217067494,0.00722933572830576,0.01479911125927194,0.0,0.0,0.0042924631640407955,0.00722933572830576,0.01479911125927194,0.0,0.0,0.0008977630530266994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9984234363983285e-05,0.0,0.0,0.00313661361081902,0.0010677440336902574,0.003196597845183003,0.0005115248031588958,0.0008615064111371442,0.0017635823965229792,0.0,0.0,5.9984234363983285e-05,0.0,0.0,0.0,0.0,0.0,0.000609546509119204,0.000849022021804914,0.00173802571003402,0.0,0.0 +99690,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,65325.0,,4671.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00600721422631864,0.001374925051743382,0.0,0.007382139278062023,0.004023438075235132,0.0012369138922226131,0.0021217873106042775,0.0,0.0,0.00264851302349175,0.0012369138922226131,0.0021217873106042775,0.0,0.0,0.001374925051743382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.186487572680981e-05,0.0,0.0,0.0007158687508497137,0.00030745424696908567,0.0008077336265765236,0.000315618461121228,0.00014740077006987224,0.0002528495196586135,0.0,0.0,9.186487572680981e-05,0.0,0.0,0.0,0.0,0.0,0.0004402336647147226,0.00013533975806944402,0.0002321602037923569,0.0,0.0 +99691,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,26851.0,,3007.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005404601855823402,0.002068762563945301,0.0,0.007473364419768704,0.0020405048953651504,0.0002884577234247876,0.003341792049472397,0.0003778925272812547,0.0014247172242251136,0.0020405048953651504,0.0002884577234247876,0.0012730294855270961,0.0003778925272812547,0.0014247172242251136,0.0,0.002068762563945301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001382249812020701,0.0,0.0,0.0006440531939929847,0.00029343177884894506,0.0007822781751950548,0.0002431619812664306,3.43748018928538e-05,0.00015170381243116734,4.5032528884496946e-05,0.000169780069518036,0.0,0.0001382249812020701,0.0,0.0,0.0,0.0,0.00021359087505493663,3.019445711823679e-05,0.00034980376166689295,3.955609014320977e-05,0.00014913299121177868 +99692,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,15259.0,,363.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012663759142684076,0.0001069532779474942,0.0,0.001373329192215902,0.0003912004114768173,0.0004430965357262329,0.0005390322450128517,0.0,0.0,0.0002842471335293232,0.0004430965357262329,0.0005390322450128517,0.0,0.0,0.0001069532779474942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.145933089553846e-06,0.0,0.0,0.00015091298614111826,5.3141761461158055e-05,0.00015805891923067211,3.387349936116318e-05,5.280345322570439e-05,6.423603355425071e-05,0.0,0.0,7.145933089553845e-06,0.0,0.0,0.0,0.0,0.0,4.50239568131886e-05,5.099677480731289e-05,6.203818761017062e-05,0.0,0.0 +99693,50.0,the Greater Atlanta and Macon Area,G1301210005000,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,40054.0,,1667.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034155720039740684,0.0004855523606119006,0.0,0.0039011243645859692,0.002270882161963515,0.0013423308535520041,0.00028788097547101176,0.0,0.0,0.0017853298013516144,0.0013423308535520041,0.00028788097547101176,0.0,0.0,0.0004855523606119006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2442347604808726e-05,0.0,0.0,0.0004070254430050389,0.00014655017619853903,0.0004394677906098477,0.00021275342825732916,0.00015996231661655362,3.430607858287765e-05,0.0,0.0,3.2442347604808726e-05,0.0,0.0,0.0,0.0,0.0,0.00025581844442412104,0.000151215680236469,3.2430244315546295e-05,0.0,0.0 +99694,50.0,the Greater Atlanta and Macon Area,G1300210010800,ComStock 90.1-2007,gen5_led,_1000,Electricity,4164.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006888672171746917,0.0,0.0,0.0006888672171746917,0.0004504227235842682,0.0001214966913230426,8.642889205757625e-05,0.0,3.0436203136065136e-05,0.0004504227235842682,0.0001214966913230426,8.642889205757625e-05,0.0,3.0436203136065136e-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,8.208801488498836e-05,2.993188583249044e-05,8.208801488498836e-05,5.367407000403968e-05,1.4478003825915219e-05,1.0299192646753851e-05,0.0,3.6268927215362846e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.367407000403968e-05,1.4478003825915219e-05,1.0299192646753851e-05,0.0,3.6268927215362846e-06 +99695,85.0,Rural Climate Zone 3A,G1300930970300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,233763.0,,2342.0,,7.614023970037612,Education,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,571051.7977528209,0.0,0.0,0.048581252029204824,0.0016209434976008864,0.0,0.05020219552680572,0.0409596205913736,0.004478035927591497,0.002613456561244758,0.000780414183832242,0.0013706682627636186,0.0409596205913736,0.004478035927591497,0.0016181289837143083,0.000780414183832242,0.0007450523426931816,0.0,0.0009953275775304495,0.000625615920070437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010830197035969222,0.0,0.0,0.005789332937893392,0.0015683669916880803,0.005897634908253084,0.004881078002491672,0.0005336387970629207,0.0001928292712082772,9.300043434333734e-05,8.878643278718464e-05,0.0,6.650197120345822e-05,4.1799999156234004e-05,0.0,0.0,0.0,0.004811839117663728,0.0005260690439897879,0.00030702268068276385,9.168120806603546e-05,0.00016102285785076856 +99696,50.0,the Greater Atlanta and Macon Area,G1300630040615,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,43698.0,,1790.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0036153391674761622,0.0005213932079484477,0.0,0.004136762749024048,0.0028546323695576668,0.0010236510482511119,0.0002584489576158303,0.0,0.0,0.0023332391616092195,0.0010236510482511119,0.0002584489576158303,0.0,0.0,0.0005213932079484477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4837419525599934e-05,0.0,0.0,0.0004308333953449158,0.00013645635838317982,0.00046567081487051574,0.000278047868700953,0.00012198663426487957,3.079889237908316e-05,0.0,0.0,3.4837419525599934e-05,0.0,0.0,0.0,0.0,0.0,0.00032134281377419697,0.0001152312681926497,2.9093313781118528e-05,0.0,0.0 +99697,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,31506.0,,2345.0,,8.72605822017302,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.00740526055432263,0.00186049562376572,0.0,0.009265756178088348,0.006090879738457556,0.001389065303451668,0.001617915776488332,0.0,0.00016789535969079407,0.004230384114691836,0.001389065303451668,0.001617915776488332,0.0,0.00016789535969079407,0.00186049562376572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012430752631960472,0.0,0.0,0.0008824718074198261,0.0004019141356094924,0.0010067793337394308,0.000504127395435542,0.00016553245628145077,0.00019280416253514382,0.0,2.0007793167689497e-05,0.00012430752631960472,0.0,0.0,0.0,0.0,0.0,0.0006618101887326423,0.0001509301792374766,0.00017579613969892933,0.0,1.8242826070382707e-05 +99698,50.0,the Greater Atlanta and Macon Area,G1301390001603,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,8037.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007614705114586015,0.0,0.0,0.0007614705114586015,0.0002835105829781783,0.00023888789542131844,0.00023907203305910464,0.0,0.0,0.0002835105829781783,0.00023888789542131844,0.00023907203305910464,0.0,0.0,0.0,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.074424074687453e-05,3.315511811487751e-05,9.074424074687453e-05,3.3785881670950626e-05,2.8468207721008836e-05,2.8490151354915058e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3785881670950626e-05,2.8468207721008836e-05,2.8490151354915058e-05,0.0,0.0 +99699,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,132813.0,,1448.0,,9.325022323477118,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.037072911864466915,0.0012272140345930475,0.0,0.038300125899059956,0.02090294176415487,0.008958883412924385,0.007750141667364822,0.0,0.0006881590546158782,0.01967572772956182,0.008958883412924385,0.007750141667364822,0.0,0.0006881590546158782,0.0012272140345930475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.199381622635198e-05,0.0,0.0,0.004417906174385908,0.0014513592715814482,0.00449989999061226,0.002344717872169147,0.0010676125600885887,0.0009235691776731949,0.0,8.200656445497618e-05,8.199381622635198e-05,0.0,0.0,0.0,0.0,0.0,0.0024558965601363144,0.0010525834690977933,0.0009105678270648875,0.0,8.085213431326439e-05 +99700,35.0,Eastern Counties in South Carolina and Georgia,G1302450000700,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,57690.0,,2148.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004825357487794107,0.0006322672689452728,0.0,0.005457655446345676,0.0016422622122026713,0.0015321785944128116,0.0022832453293364914,0.0,0.0,0.0010099949432573986,0.0015321785944128116,0.0022832453293364914,0.0,0.0,0.0006322672689452728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.224465210443861e-05,0.0,0.0,0.0005750301535175658,0.00019406804391255703,0.0006172748056220043,0.00012035948605722209,0.00018258727868145894,0.00027209070324172614,0.0,0.0,4.224465210443861e-05,0.0,0.0,0.0,0.0,0.0,0.00018574406130686313,0.00017329332225940244,0.00025824089312879355,0.0,0.0 +99701,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6362.0,,62.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012374632372875176,4.90452947274093e-05,0.0,0.001286425824941188,0.0008391459701590131,0.00024324150386730316,0.00016218857160278183,0.0,4.184977931208955e-05,0.0007901006754316038,0.00024324150386730316,0.00016218857160278183,0.0,4.184977931208955e-05,4.90452947274093e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2746833477753126e-06,0.0,0.0,0.0001474634834011179,4.7215504782073624e-05,0.00015073816674889324,9.415309831111345e-05,2.8986105111795736e-05,1.9327355363560498e-05,0.0,4.987068747558191e-06,3.2746833477753126e-06,0.0,0.0,0.0,0.0,0.0,9.832772533330786e-05,2.850205403166356e-05,1.9004599781058217e-05,0.0,4.903787602863569e-06 +99702,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,10815.0,,222.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0036730211447626422,0.00017600065291724617,0.0,0.003849021797679889,0.001752480185462185,0.00099835708710718,0.0009221011651195384,0.0,0.00017600065291724617,0.001752480185462185,0.00099835708710718,0.0009221011651195384,0.0,0.0,0.0,0.0,0.00017600065291724617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1759590501108279e-05,0.0,0.0,0.0004377022550340411,0.00015297379641862412,0.0004494618455351493,0.00020883749340050206,0.00011897104076820337,0.00010988386492624463,0.0,0.0,0.0,0.0,1.1759590501108279e-05,0.0,0.0,0.0,0.00020464237923942323,0.00011658115813861334,0.00010767652490161544,0.0,2.055212530187798e-05 +99703,81.0,the Columbus-Albany Area,G1301450120300,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,7577.0,,127.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001819472915191024,0.00010081992288821574,0.0,0.00192029283807924,0.001322072573722829,0.00037300890256427644,0.00012439143890391837,0.0,0.00010081992288821574,0.001322072573722829,0.00037300890256427644,0.00012439143890391837,0.0,0.0,0.0,0.0,0.00010081992288821574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.736969679909728e-06,0.0,0.0,0.0002168227380298859,7.9353184368699e-05,0.00022355970770979562,0.00015754859163633465,4.4450681781662135e-05,1.4823464611889104e-05,0.0,0.0,0.0,0.0,6.736969679909728e-06,0.0,0.0,0.0,0.00015391514892501863,4.3425544050787235e-05,1.4481600499419959e-05,0.0,1.1737414234569766e-05 +99704,85.0,Rural Climate Zone 3A,G1302770960400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,100798.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008888499765864255,0.0,0.0,0.008888499765864255,0.005141855528018693,0.002864473415775499,0.0008822011956695016,0.0,0.0,0.005141855528018693,0.002864473415775499,0.0008822011956695016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001059225599482548,0.0003363586973449792,0.001059225599482548,0.0006127451367029074,0.00034135384496256527,0.00010513023738110986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006127451367029074,0.00034135384496256527,0.00010513023738110986,0.0,0.0 +99705,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,8054.0,,185.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0023490463083438097,0.00014697047003474928,0.0,0.002496016778378559,0.0012829521278441367,0.0006145135578830542,0.0004515806226166185,0.0,0.00014697047003474928,0.0012829521278441367,0.0006145135578830542,0.0004515806226166185,0.0,0.0,0.0,0.0,0.00014697047003474928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.819648895103635e-06,0.0,0.0,0.00027992976005226147,7.665189734044032e-05,0.00028974940894736513,0.00015288607978067317,7.322998793001559e-05,5.381369234157269e-05,0.0,0.0,0.0,0.0,9.819648895103635e-06,0.0,0.0,0.0,0.00014893113859278066,7.133563433112174e-05,5.242161015449861e-05,0.0,1.7061025868964104e-05 +99706,50.0,the Greater Atlanta and Macon Area,G1301530020109,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,139596.0,,13952.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,132420.00654707509,0.03897313428968015,0.0,0.029066526413264814,0.0095977099612511,0.0,0.07763744238416709,0.05108749803386905,0.0036714170362601457,0.013874730432767067,0.0003719397696869589,0.008631785391612853,0.012114363744188894,0.0036714170362601457,0.004277020471515965,0.0003719397696869589,0.008631785391612853,0.0,0.0095977099612511,0.0,0.0,0.0,0.0,0.03897313428968015,0.0,0.0,0.0,0.0006412646773799406,0.0,0.0,0.0034638029985209224,0.0017491389882195439,0.004105067675900863,0.0014436458235733648,0.0004375158269071713,0.0005096844433124799,4.4323359151815556e-05,0.0010286335455760914,0.0,0.0006412646773799406,0.0,0.0,0.0,0.0,0.002701243502893306,0.00019412560405746753,0.0007336242109774276,1.9666257401535946e-05,0.0004564043083888271 +99707,35.0,Eastern Counties in South Carolina and Georgia,G1301270000503,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,119390.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,215998.51729091106,0.0,0.0,0.01878308292094337,0.0,0.0,0.018783082920943366,0.009241653931705745,0.001686077741179113,0.00776434323113889,0.0,9.095342302824772e-05,0.009241653931705745,0.001686077741179113,0.00776434323113889,0.0,9.095342302824772e-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.0022383417339882513,0.0007411558578814305,0.0022383417339882513,0.001101309075484539,0.00020092645018469107,0.0009252609683093761,0.0,1.0838734166807906e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0011013090754845392,0.0002009264501846911,0.0009252609683093762,0.0,1.0838734166807907e-05 +99708,50.0,the Greater Atlanta and Macon Area,G1301490970100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,50694.0,,592.0,,3.20458438519356,Mercantile,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,56080.226740887294,0.0,0.0,0.00447029524445,0.00017258279200530583,0.0,0.004642878036455305,0.003448891842557281,0.0008091830626211463,0.0003848335048763156,0.0,0.0,0.0032763090505519756,0.0008091830626211463,0.0003848335048763156,0.0,0.0,0.00017258279200530583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1530130467101435e-05,0.0,0.0,0.0005327179503673611,0.0001699505253429925,0.0005442480808344626,0.00039043252106155265,9.642905423902422e-05,4.585999464015754e-05,0.0,0.0,1.1530130467101435e-05,0.0,0.0,0.0,0.0,0.0,0.00040428646877627345,9.485416705271472e-05,4.511100546367988e-05,0.0,0.0 +99709,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,17901.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0015477475065495195,0.0,0.0,0.0015477475065495195,0.001096699554898905,0.0003780905658011347,7.295738584947988e-05,0.0,0.0,0.001096699554898905,0.0003780905658011347,7.295738584947988e-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.00018444149041683781,5.6670968982363475e-05,0.00018444149041683781,0.00013069114929216327,4.5056178203363575e-05,8.694162921310996e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013069114929216327,4.5056178203363575e-05,8.694162921310996e-06,0.0,0.0 +99710,50.0,the Greater Atlanta and Macon Area,G1301350050308,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,6908.0,,,,9.325022323477118,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,27975.06697043135,0.0,0.0,0.0014413688495602032,0.0,0.0,0.0014413688495602034,0.0008796875251209651,0.00020531639916166,0.000299180375016022,0.0,5.709616610350081e-05,0.0008796875251209651,0.00020531639916166,0.000299180375016022,0.0,5.709616610350081e-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.00017176003201953155,5.115621539111459e-05,0.00017176003201953155,0.00010482754468300205,2.4466430854879307e-05,3.565168680317109e-05,0.0,6.803837422407246e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010482754468300203,2.4466430854879304e-05,3.5651686803171085e-05,0.0,6.803837422407245e-06 +99711,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,15499.0,,2814.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.00138097090418403,0.0008281897155498072,0.0,0.002209160619733837,0.0010519169454600605,0.0006621589454792352,0.0004950847287945412,0.0,0.0,0.0002237272299102533,0.0006621589454792352,0.0004950847287945412,0.0,0.0,0.0008281897155498072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5335616417497366e-05,0.0,0.0,0.00016456737914044328,0.00010251256448608549,0.00021990299555794067,2.6661100358545524e-05,7.890807974430427e-05,5.8998199037593454e-05,0.0,0.0,5.5335616417497366e-05,0.0,0.0,0.0,0.0,0.0,0.00010470931145454509,6.591224483438164e-05,4.928143926901393e-05,0.0,0.0 +99712,50.0,the Greater Atlanta and Macon Area,G1301350050430,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,39998.0,,1599.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0032671362235217752,0.0004657487737784865,0.0,0.0037328546237008235,0.002257548151810342,0.0012390606154636479,0.0002362458564268337,0.0,0.0,0.0017917993780318558,0.0012390606154636479,0.0002362458564268337,0.0,0.0,0.0004657487737784865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1117621541885593e-05,0.0,0.0,0.0003893381563333397,0.00012076021537599394,0.00042045577787522525,0.00021352518494320994,0.00014765640077592392,2.815295105248655e-05,0.0,0.0,3.1117621541885593e-05,0.0,0.0,0.0,0.0,0.0,0.00025428238170152476,0.0001395634835606921,2.6609912613008366e-05,0.0,0.0 +99713,50.0,the Greater Atlanta and Macon Area,G1301530020400,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,81672.0,,10151.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004204099187392981,0.001726263448579181,0.0,0.005930362635972161,0.0024474104386169888,0.0005572297987094195,0.002490495216867717,0.0,0.0004352094514166161,0.0024474104386169888,0.0005572297987094195,0.0007642317682885359,0.0,0.0004352094514166161,0.0,0.001726263448579181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001153386677993761,0.0,0.0,0.0005009945861223676,0.00023125463442573012,0.0006163332539217436,0.0002916532948231476,6.640402615062763e-05,9.10720611929013e-05,0.0,5.186309106189721e-05,0.0,0.0001153386677993761,0.0,0.0,0.0,0.0,0.0002543555144781759,5.7912015858442506e-05,0.000258833247663107,0.0,4.523063323346474e-05 +99714,50.0,the Greater Atlanta and Macon Area,G1300670031208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,DistrictHeating,30464.0,,3357.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56751.431377317895,0.010186315763376221,0.006361991748910793,0.00634327283647572,0.0023093830667026754,0.0,0.02520096341546541,0.013245459407076094,0.0011414233387134498,0.005456168514983626,0.0003649112125274291,0.004993072662135826,0.0016902245569249057,0.0011414233387134498,0.0031467854482809506,0.0003649112125274291,0.0,0.0,0.0023093830667026754,0.0,0.001368919086774968,0.0,0.004993072662135826,0.010186315763376221,0.0,0.0,0.0,0.00015430134590157838,0.0,0.0,0.0007559175175682282,0.00036793387231650996,0.0009102188634698066,0.00020142131422387283,0.00013602156472495167,0.00037499730907144076,4.348587630038041e-05,0.0,0.0,0.00015430134590157838,0.0,0.0,0.0,0.0,0.00047840500416129056,4.1226402220166124e-05,0.0001970681605593062,1.3180014734288738e-05,0.00018034187220645586 +99715,50.0,the Greater Atlanta and Macon Area,G1300670031309,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,17625.0,,1692.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016343749833841617,0.0004981536894243115,0.0,0.0021324979832021756,0.0007514656998055502,0.0007792397935049714,0.0006018231794979517,0.0,0.0,0.00025331201038123884,0.0007792397935049714,0.0006018231794979517,0.0,0.0,0.0004981536894243115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3282830843191105e-05,0.0,0.0,0.0001947648918106839,8.984580785311285e-05,0.00022804772265387502,3.0186638193697967e-05,9.286030171749272e-05,7.171795189949322e-05,0.0,0.0,3.3282830843191105e-05,0.0,0.0,0.0,0.0,0.0,8.036117400487554e-05,8.333131459437211e-05,6.435851597793067e-05,0.0,0.0 +99716,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,13820.0,,2857.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011611412542735847,0.0008409565917696514,0.0,0.0020020978460432368,0.0010513645325467018,0.0004305137971441747,0.0005201888267460621,0.0,0.0,0.00021040794077705028,0.0004305137971441747,0.0005201888267460621,0.0,0.0,0.0008409565917696514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.618742126403978e-05,0.0,0.0,0.00013837079930758233,9.63854605159868e-05,0.0001945582205716221,2.507387868515355e-05,5.130343789313507e-05,6.198982551244934e-05,0.0,0.0,5.618742126403978e-05,0.0,0.0,0.0,0.0,0.0,0.00010216863927437846,4.18361162864435e-05,5.0550482681438346e-05,0.0,0.0 +99717,50.0,the Greater Atlanta and Macon Area,G1301210006900,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,7292.0,,449.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001505516863276613,0.0003558885383002398,0.0,0.0018614881086505921,0.001084785979164756,0.000435039207868757,0.00028790332368652913,0.0,5.367689085681052e-05,0.0007288974408645164,0.000435039207868757,0.00028790332368652913,0.0,5.367689085681052e-05,0.0003558885383002398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3780054292408737e-05,0.0,0.0,0.00017941312392268465,8.500314835195714e-05,0.00020319317821509338,8.686303692416743e-05,5.184381870204478e-05,3.430956899274104e-05,0.0,6.396699303731381e-06,2.3780054292408737e-05,0.0,0.0,0.0,0.0,0.0,0.0001184112376358095,4.748727584357716e-05,3.14264652493331e-05,0.0,5.8591714871637986e-06 +99718,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,93326.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0076529928615348235,0.0,0.0,0.0076529928615348235,0.0043776557661648575,0.0028668729301310814,0.0004084945388383243,0.0,0.0,0.0043776557661648575,0.0028668729301310814,0.0004084945388383243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009119931936767164,0.00022039858515857243,0.0009119931936767164,0.0005216772490496351,0.0003416400154450443,4.867954874845478e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005216772490496351,0.0003416400154450443,4.867954874845478e-05,0.0,0.0 +99719,50.0,the Greater Atlanta and Macon Area,G1301350050421,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,13864.0,,1379.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0012380800972619256,0.0004058086640745238,0.0,0.0016438887613364494,0.00040952210643654583,0.0007141778281538415,0.0005201888267460621,0.0,0.0,3.713442362022037e-06,0.0007141778281538415,0.0005201888267460621,0.0,0.0,0.0004058086640745238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7113013122704904e-05,0.0,0.0,0.00014753974879460938,7.39658099734643e-05,0.00017465276191731428,4.425241585481071e-07,8.510727019481819e-05,6.198995444124309e-05,0.0,0.0,2.7113013122704904e-05,0.0,0.0,0.0,0.0,0.0,4.350912825585067e-05,7.587686777891947e-05,5.526676588254414e-05,0.0,0.0 +99720,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,349704.0,,31171.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01684265541483502,0.0053009879966445465,0.0,0.02214364341147957,0.013992765771982834,0.003160436923124412,0.0018881239179828432,0.0,0.0031022813376666387,0.012093542647751037,0.003160436923124412,0.0011187326145210717,0.0,0.0004699077687156594,0.0018992231242317963,0.0007693913034617712,0.0026323735689509796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003541813948111086,0.0,0.0,0.002007106019571805,0.0009231082598607215,0.002361287414382914,0.0014411636198927256,0.0003766230334020128,0.00013331715870163705,0.0,5.5997981791043734e-05,0.0001268951175938749,5.140628222288345e-05,0.00017587999499435033,0.0,0.0,0.0,0.00149211857758973,0.0003370131911831622,0.0002013400939258689,0.0,0.00033081177032997415 +99721,46.0,the Tallahassee-Valdosta Area,G1301850010402,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,23108.0,,374.0,,4.088175128053588,Healthcare,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,30661.31346040191,0.0,0.0,0.0026111400327293427,0.0001391068413417772,0.0,0.0027502081256473476,0.001357706020550009,0.00030731374893638863,0.0010145112312006715,0.0,7.071587338405109e-05,0.001357706020550009,0.00030731374893638863,0.0008754043898588944,0.0,7.071587338405109e-05,0.0,0.0001391068413417772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.293176565168716e-06,0.0,0.0,0.00031116383073889043,9.519424391543551e-05,0.0003204570073040591,0.00016179484863935154,3.6621905435620225e-05,0.00010432002113245897,0.0,8.427055531459704e-06,0.0,9.293176565168716e-06,0.0,0.0,0.0,0.0,0.00015820126632843398,3.580850604328919e-05,0.00011821186549305224,0.0,8.239884444458803e-06 +99722,50.0,the Greater Atlanta and Macon Area,G1300630040204,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6431.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001965120072045944,0.0,0.0,0.001965120072045944,0.0009431087618493227,0.000368294599361136,0.0006078142849101701,0.0,4.5737011777837006e-05,0.0009431087618493227,0.000368294599361136,0.0006078142849101701,0.0,4.5737011777837006e-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.000234176524668524,8.012289934129413e-05,0.000234176524668524,0.00011238699119508332,4.3888386546672455e-05,7.243111446923328e-05,0.0,5.450320628859166e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011238699119508332,4.3888386546672455e-05,7.243111446923328e-05,0.0,5.450320628859166e-06 +99723,85.0,Rural Climate Zone 3A,G1300090970300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,41988.0,,24536.0,,7.56685751697572,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.008476081334537961,0.01687850625884289,0.0,0.02535458759338085,0.004626655330217069,0.0014645935281097932,0.014682512466315894,0.00028393936525080414,0.004296886903487288,0.004460264997460852,0.0014645935281097932,0.001765028486694188,0.00028393936525080414,0.0005021832370513086,0.0001663903327562176,0.012917483979621707,0.00379470366643598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011277236151085981,0.0,0.0,0.0010100771809228935,0.0013709737353667937,0.0021378007960314916,0.0005315206068689639,0.00017453259869546725,0.00021033481484234118,3.3836470213767926e-05,5.9844143580905044e-05,1.1117234232540917e-05,0.0008630711455271316,0.00025354002726023277,0.0,0.0,0.0,0.00039010168915086345,0.0001234888636513685,0.001237972683350872,2.3940669467497566e-05,0.0003622968904108901 +99724,35.0,Eastern Counties in South Carolina and Georgia,G1301030030202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,21008.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004953409353320862,0.0,0.0,0.00495340935332086,0.0035192686946812703,0.0007395666533768871,0.0006294835382298689,0.0,6.509046703283493e-05,0.0035192686946812703,0.0007395666533768871,0.0006294835382298689,0.0,6.509046703283493e-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.0005902898674233018,0.00019099233435298333,0.0005902898674233018,0.00041938561968791495,8.813297481256223e-05,7.50145461080755e-05,0.0,7.7567268147491e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0004193856196879151,8.813297481256227e-05,7.501454610807553e-05,0.0,7.756726814749104e-06 +99725,50.0,the Greater Atlanta and Macon Area,G1300670031409,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,14819.0,,2498.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00364233682040536,0.001981992315088763,0.0,0.005624329135494124,0.003276771554477621,0.0011550869918431673,0.0009734622579116483,0.0,0.00021900833126168602,0.001513787570650544,0.0011550869918431673,0.0009734622579116483,0.0,0.0,0.0017629839838270767,0.0,0.00021900833126168602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013242370232299967,0.0,0.0,0.0004340537517773127,0.00022916308247731385,0.0005664774541003124,0.00018039659889598205,0.00013765059827248457,0.00011600655460884602,0.0,0.0,0.00011779100478705812,0.0,1.4632697535941542e-05,0.0,0.0,0.0,0.0003300335316677246,0.00011633933979331736,9.804625729395286e-05,0.0,2.205832534531751e-05 +99726,50.0,the Greater Atlanta and Macon Area,G1300570090902,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,32771.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008395677762350836,0.0,0.0,0.008395677762350836,0.004912552058893643,0.001099259717069135,0.0022585647696730065,0.0,0.00012530121671505074,0.004912552058893643,0.001099259717069135,0.0022585647696730065,0.0,0.00012530121671505074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010004918683922256,0.00035164869062497835,0.0010004918683922256,0.000585416511578972,0.00013099602430082522,0.0002691475006851956,0.0,1.493183182723273e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000585416511578972,0.00013099602430082522,0.0002691475006851956,0.0,1.493183182723273e-05 +99727,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,178044.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.015842680631819026,0.0,0.0,0.015842680631819026,0.006960740293988267,0.0046921952860683735,0.004189745051762384,0.0,0.0,0.006960740293988267,0.0046921952860683735,0.004189745051762384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018879430485811597,0.0005928638433593325,0.0018879430485811597,0.0008294985903218986,0.000559160263265431,0.00049928419499383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008294985903218986,0.000559160263265431,0.00049928419499383,0.0,0.0 +99728,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,11810.0,,525.0,,4.088175128053588,Healthcare,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.001259904998949272,0.00019498206842112056,0.0,0.0014548870673703927,0.0009428266472223182,0.0001357744768973781,0.000342148581907491,0.0,3.417610976697702e-05,0.000832277394200566,0.0001357744768973781,0.00029189187627509964,0.0,0.0,0.00011054925302175219,5.025670563239137e-05,3.417610976697702e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.302785712813188e-05,0.0,0.0,0.00015014114754337786,5.787823820381267e-05,0.00016316900467150974,9.918135347022027e-05,1.618005784997681e-05,3.478435381959911e-05,0.0,0.0,7.386422175389559e-06,3.35793535277962e-06,2.283499599962703e-06,0.0,0.0,0.0,0.00010574022482933852,1.522742675497297e-05,3.837276776438679e-05,0.0,3.8329310496250456e-06 +99729,50.0,the Greater Atlanta and Macon Area,G1301210008602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,76507.0,,8584.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.012659677425046482,0.0025267366657024653,0.0,0.015186414090748949,0.007701280493951835,0.0029186429381241304,0.0045664599690666855,0.0,0.0,0.005174543828249369,0.0029186429381241304,0.0045664599690666855,0.0,0.0,0.0025267366657024653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016882123505638702,0.0,0.0,0.0015086299751879463,0.0005769886586475913,0.0016774512102443332,0.0006166406666710248,0.00034780919572352493,0.0005441764555706702,0.0,0.0,0.00016882123505638702,0.0,0.0,0.0,0.0,0.0,0.0008506631129517342,0.0003223855940955676,0.0005043991133041364,0.0,0.0 +99730,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,87390.0,,3164.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.007950863627432966,0.0009511716499345532,0.0,0.008902035277367519,0.0023819403916784903,0.0021455576901940297,0.002882690648475545,0.0,0.0014918152089972484,0.0023819403916784903,0.0021455576901940297,0.0019315189985409922,0.0,0.0014918152089972484,0.0,0.0009511716499345532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.355275007678301e-05,0.0,0.0,0.0009474874664210624,0.0004550618107301846,0.0010110402164978454,0.0002838507579340913,0.00025568153539045306,0.00023017500085869536,0.0,0.0001777764377525324,0.0,6.355275007678301e-05,0.0,0.0,0.0,0.0,0.00027052662163789355,0.0002436796804341435,0.00032739885728613977,0.0,0.00016943149795350864 +99731,35.0,Eastern Counties in South Carolina and Georgia,G1302450010709,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,65788.0,,3743.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0032273690374851117,0.0006364490535342153,0.0,0.003863800360657907,0.0019021486338661048,0.0007604197405832245,0.0008424226621509689,0.0,0.00035882705441902857,0.0017219372403926884,0.0007604197405832245,0.0006570694638657369,0.0,8.79425926434619e-05,0.0001802113934734167,0.000185353198285232,0.00027088446177556667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.252373794434333e-05,0.0,0.0,0.00038459833698542117,0.00015861349330810223,0.0004271220749297645,0.0002051994027817615,9.061751669622711e-05,7.830149578542905e-05,0.0,1.047992172200351e-05,1.204065278767288e-05,1.2384197583857958e-05,1.8098887572812497e-05,0.0,0.0,0.0,0.00021027216612800565,8.406025857923889e-05,9.312523470144045e-05,0.0,3.966637551591672e-05 +99732,35.0,Eastern Counties in South Carolina and Georgia,G1300730030201,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,99405.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008156617513812189,0.0,0.0,0.008156617513812189,0.004577058446473698,0.002676065978463125,0.0009034930888753658,0.0,0.0,0.004577058446473698,0.002676065978463125,0.0009034930888753658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009720075334215538,0.00025961747857210227,0.0009720075334215538,0.0005454387536683539,0.0003189013444107871,0.00010766743534241271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005454387536683539,0.0003189013444107871,0.00010766743534241271,0.0,0.0 +99733,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,60182.0,,16812.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.01253112849576061,0.011564917046238297,0.0,0.02409604554199891,0.00800516800484946,0.0010798876035820555,0.00968370220649882,0.00037179632974492774,0.004955563117294661,0.005352963476692162,0.0010798876035820555,0.005141533002138141,0.00037179632974492774,0.0005850198035743393,0.0026522045281572966,0.00454216920436068,0.004370543313720322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007727009671766937,0.0,0.0,0.0014933087826099571,0.0011213989141836509,0.002266009749786651,0.0006379016363481588,0.0001286879823478198,0.0006127059020078938,4.430620312752195e-05,6.9715605499845e-05,0.00017720498952685028,0.0003034815142432256,0.0002920144634066179,0.0,0.0,0.0,0.0007528118552088453,0.00010155342021268787,0.0009106624394326447,3.496399882995112e-05,0.00046602478070106136 +99734,35.0,Eastern Counties in South Carolina and Georgia,G1302450010201,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,233012.0,,2012.0,,1.8706521585294562,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,140298.9118897092,0.0,0.0,0.01073865934947628,0.0003421073235999188,0.0,0.01108074894271478,0.0058139273525266745,0.002838630863350454,0.0012113205618565874,0.0,0.0012169056257039042,0.0058139273525266745,0.002838630863350454,0.0008692132382566686,0.0,0.0012169056257039042,0.0,0.0003421073235999188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2857173268082795e-05,0.0,0.0,0.0012797048452731288,0.0003567695442200279,0.0013025620185412115,0.0006928342506233993,0.00033827403883042266,0.00010358242648109081,0.0,0.0001450162422304012,0.0,2.2857173268082795e-05,0.0,0.0,0.0,0.0,0.000683437643710726,0.00033368617648269405,0.00014239291624685305,0.0,0.0001430494505728496 +99735,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,60088.0,,2413.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005298644048316368,0.000702996958986766,0.0,0.006001641007303134,0.0033428272333206528,0.0021220818983179687,0.0005367318756645124,0.0,0.0,0.002639830274333887,0.0021220818983179687,0.0005367318756645124,0.0,0.0,0.000702996958986766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.696958705292747e-05,0.0,0.0,0.0006314300117338684,0.00019460467392529051,0.0006783995987867959,0.0003145838908782164,0.000252884735365628,6.396138549002394e-05,0.0,0.0,4.696958705292747e-05,0.0,0.0,0.0,0.0,0.0,0.00037785876415113,0.00023987097973034746,6.0669854905318315e-05,0.0,0.0 +99736,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970301,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,88490.0,,6733.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004555053961341506,0.0011449380886999095,0.0,0.005700009780402836,0.0024598748826952857,0.0015014424657729115,0.0010560912476240251,0.0,0.0006826011843106128,0.0020403745314968367,0.0015014424657729115,0.0008707380493387931,0.0,0.00014251664509438443,0.0004195003511984492,0.000185353198285232,0.0005400845392162283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.649829003575604e-05,0.0,0.0,0.000542817697839545,0.0002291427480789317,0.000619315987875301,0.00024314781236781853,0.0001789242344056345,0.00010376430825512751,0.0,1.698345570667308e-05,2.8028641769198416e-05,1.2384252791851242e-05,3.6085395474706386e-05,0.0,0.0,0.0,0.00026726968930190244,0.00016313433831728657,0.00011474615299037406,0.0,7.416580726573788e-05 +99737,35.0,Eastern Counties in South Carolina and Georgia,G1300730030201,ComStock 90.1-2007,gen4_led,_1000,Electricity,3614.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0005184906452717181,0.0,0.0,0.0005184906452717181,0.0002922040915209731,0.00011992525692199576,7.600780076642353e-05,0.0,3.0436203136065136e-05,0.0002922040915209731,0.00011992525692199576,7.600780076642353e-05,0.0,3.0436203136065136e-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,6.178975447872518e-05,2.0916985027701524e-05,6.178975447872518e-05,3.482265155101868e-05,1.429177603990294e-05,9.058029090117795e-06,0.0,3.627154194954678e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.482265155101868e-05,1.429177603990294e-05,9.058029090117795e-06,0.0,3.627154194954678e-06 +99738,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301610960200,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,49459.0,,12084.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0030547107779766375,0.00205507300111406,0.0,0.0051097660487292775,0.0014818681467651733,0.0007368383598945544,0.002538845912460201,0.0,0.00035219589924792886,0.0014818681467651733,0.0007368383598945544,0.00048377291134614074,0.0,0.00035219589924792886,0.0,0.00205507300111406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013730743438222895,0.0,0.0,0.0003640231178787314,0.00021701174534937337,0.0005013305522609604,0.00017659094502817167,8.780739540884872e-05,5.7650146391319055e-05,0.0,4.197040527458903e-05,0.0,0.00013730743438222895,0.0,0.0,0.0,0.0,0.00014538939147330627,7.229285614453159e-05,0.0002490918392860043,0.0,3.455472579178438e-05 +99739,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,500001_1mil,NaturalGas,489360.0,,25436.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,2428443.6554246196,0.0,0.0,0.04360139883848489,0.007487189800419059,0.0,0.05108861932851026,0.015401333403651761,0.013393097636348984,0.02229415759890321,0.0,0.0,0.0079141436032327,0.013393097636348984,0.02229415759890321,0.0,0.0,0.007487189800419059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005002512883167568,0.0,0.0,0.005195896081293611,0.0019041984472356072,0.005696147369610368,0.0009431134970499172,0.0015960300673579619,0.002656752516885732,0.0,0.0,0.0005002512883167568,0.0,0.0,0.0,0.0,0.0,0.001717178226947035,0.0014932691248058568,0.0024856965961067507,0.0,0.0 +99740,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6398.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0015163514899364623,0.0,0.0,0.0015163514899364623,0.0009646953080952817,0.0003073394860152664,0.0001960984718358979,0.0,4.821822399001623e-05,0.0009646953080952817,0.0003073394860152664,0.0001960984718358979,0.0,4.821822399001623e-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.00018070252447320015,6.308801145526338e-05,0.00018070252447320015,0.00011496205113207191,3.662542712678148e-05,2.336891488632909e-05,0.0,5.746131328017656e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011496205113207191,3.662542712678148e-05,2.336891488632909e-05,0.0,5.746131328017656e-06 +99741,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,7483.0,,361.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005545915521339105,0.0001052141484523723,0.0,0.0006598057005862827,0.0004368634807131844,0.00019305459802635057,2.9887621846747798e-05,0.0,0.0,0.0003316493322608121,0.00019305459802635057,2.9887621846747798e-05,0.0,0.0,0.0001052141484523723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.030454077426703e-06,0.0,0.0,6.609014666400382e-05,2.2546376570490326e-05,7.312060074143051e-05,3.952233481703585e-05,2.3006132438600593e-05,3.561679408367368e-06,0.0,0.0,7.030454077426703e-06,0.0,0.0,0.0,0.0,0.0,4.841382868222598e-05,2.1394583543365666e-05,3.312188515838864e-06,0.0,0.0 +99742,50.0,the Greater Atlanta and Macon Area,G1301350050103,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,100486.0,,12570.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.014180286037885062,0.0037001230728888335,0.0,0.017880409110773893,0.00969856007180633,0.0028081296658461026,0.00537371937312146,0.0,0.0,0.005998436998917497,0.0028081296658461026,0.00537371937312146,0.0,0.0,0.0037001230728888335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024722006499153476,0.0,0.0,0.001689839068248335,0.0007677506181321258,0.0019370591332398697,0.000714822900054059,0.00033463973895703084,0.0006403764292372448,0.0,0.0,0.00024722006499153476,0.0,0.0,0.0,0.0,0.0,0.0010506853758199528,0.00030421637350967664,0.00058215738391024,0.0,0.0 +99743,50.0,the Greater Atlanta and Macon Area,G1301210011305,ComStock 90.1-2004,gen1_t12_incandescent,_1000,NaturalGas,10586.0,,7071.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.0024852561676112005,0.005484059168490619,0.0,0.007969315336101821,0.0017069711305766207,0.0003544936729724256,0.005220857319602561,0.0004223358699669204,0.00026465734298329125,0.0014215325663447177,0.0003544936729724256,0.00028681319754406793,0.0004223358699669204,0.0,0.00028543856423190285,0.004934044122058494,0.00026465734298329125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003664137138540259,0.0,0.0,0.000296158757302973,0.0004488775993026002,0.0006625724711569989,0.00016939876210789867,4.2243695852163124e-05,3.417846468695771e-05,5.032819877642519e-05,0.0,1.9071385115299264e-05,0.00032966482956103284,1.768290183636671e-05,0.0,0.0,0.0,0.00014191834962989819,2.9472763845451143e-05,0.0004340644321271437,3.511319469999802e-05,2.2003730854507657e-05 +99744,50.0,the Greater Atlanta and Macon Area,G1301210007806,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,62053.0,,8871.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005034961653898075,0.0015086409925094528,0.0,0.006543602646407528,0.0034585197593183397,0.0015061410115492252,0.0008957201285796476,0.0,0.0006832217469603147,0.0029143395066140794,0.0015061410115492252,0.0004822126395411761,0.0,0.00013226849619359392,0.0005441802527042606,0.00041350748903847147,0.0005509532507667208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010079861508635294,0.0,0.0,0.0006000061900621533,0.00021375229561938945,0.0007008048051485063,0.00034729594068652814,0.00017948377607530878,5.746430430645195e-05,0.0,1.5762168993864454e-05,3.6358958892327296e-05,2.7628164970899816e-05,3.681149122312584e-05,0.0,0.0,0.0,0.0003703995179722592,0.00016130424097563593,9.592956725779785e-05,0.0,7.317147894281323e-05 +99745,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,4616.0,,43.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011083574951804586,3.374448608563743e-05,0.0,0.0011421019812660963,0.0005096409883816122,0.0002100759672978409,0.0003886405395010056,0.0,3.374448608563743e-05,0.0005096409883816122,0.0002100759672978409,0.0003886405395010056,0.0,0.0,0.0,0.0,3.374448608563743e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.254275768608266e-06,0.0,0.0,0.00013208153386338903,4.365334953807062e-05,0.0001343358096319973,6.073325958258363e-05,2.5034482203791377e-05,4.631379207701404e-05,0.0,0.0,0.0,0.0,2.254275768608266e-06,0.0,0.0,0.0,5.994476493246194e-05,2.4709461689135575e-05,4.5712504124900806e-05,0.0,3.9690788854989416e-06 +99746,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010702,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,145302.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.01294625696865443,0.0,0.0,0.01294625696865443,0.0034958530533713244,0.0033230091907026625,0.006127394724580445,0.0,0.0,0.0034958530533713244,0.0033230091907026625,0.006127394724580445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015427806974272044,0.0005363362986906065,0.0015427806974272044,0.00041659412638275404,0.00039599665364297993,0.0007301899174014706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041659412638275404,0.00039599665364297993,0.0007301899174014706,0.0,0.0 +99747,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12864.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002730077797060799,0.0,0.0,0.002730077797060799,0.0013059446943436642,0.0007657847957522474,0.0005582727477403251,0.0,0.00010007555922456197,0.0013059446943436642,0.0007657847957522474,0.0005582727477403251,0.0,0.00010007555922456197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000325338859162803,9.564751825008536e-05,0.000325338859162803,0.00015562727093158409,9.125730852156664e-05,6.652844070856193e-05,0.0,1.1925839001090357e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00015562727093158409,9.125730852156664e-05,6.652844070856193e-05,0.0,1.1925839001090357e-05 +99748,81.0,the Columbus-Albany Area,G1302150000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,49722.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0041746690011223615,0.0,0.0,0.0041746690011223615,0.002764939130417986,0.0010003241238829186,0.00040943612042089456,0.0,0.0,0.002764939130417986,0.0010003241238829186,0.00040943612042089456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004974887830503536,0.00014760745634802397,0.0004974887830503536,0.00032949347668764545,0.00011920706310192042,4.879186283518209e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032949347668764545,0.00011920706310192042,4.879186283518209e-05,0.0,0.0 +99749,50.0,the Greater Atlanta and Macon Area,G1302070050200,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13689.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0032870272316212947,0.0,0.0,0.003287027231621295,0.0012006585894735258,0.0004897912906841785,0.0015352914098227637,0.0,6.13686487145661e-05,0.0012006585894735258,0.0004897912906841785,0.0015352914098227637,0.0,6.13686487145661e-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.00039170750158375287,0.00011437384059756009,0.00039170750158375287,0.00014307973229226128,5.8367305547618055e-05,0.00018295715854110673,0.0,7.313161215186186e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014307973229226126,5.836730554761805e-05,0.0001829571585411067,0.0,7.313161215186185e-06 +99750,50.0,the Greater Atlanta and Macon Area,G1300970080506,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,73548.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007044883027191596,0.0,0.0,0.007044883027191596,0.004908282548342381,0.0016127773829457462,0.000523823095903468,0.0,0.0,0.004908282548342381,0.0016127773829457462,0.000523823095903468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000839525868644588,0.00025224542765345796,0.000839525868644588,0.0005849110842643581,0.00019219174088794274,6.24230434922871e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005849110842643581,0.00019219174088794274,6.24230434922871e-05,0.0,0.0 +99751,50.0,the Greater Atlanta and Macon Area,G1301130140304,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,15539.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033858621847397672,0.0,0.0,0.0033858621847397672,0.0021321056539256064,0.0008114391004563451,0.0003609336697983376,0.0,8.13010534857392e-05,0.0021321056539256064,0.0008114391004563451,0.0003609336697983376,0.0,8.13010534857392e-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.0004034902431521728,0.00013349663305389342,0.0004034902431521728,0.00025408117099564865,9.669848980326269e-05,4.3012150596416096e-05,0.0,9.688575627011234e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00025408117099564865,9.669848980326269e-05,4.3012150596416096e-05,0.0,9.688575627011234e-06 +99752,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8447.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018254278245002542,0.0,0.0,0.0018254278245002542,0.0010250714719249763,0.00039533981247388947,0.0003556404170790219,0.0,4.937612302236653e-05,0.0010250714719249763,0.00039533981247388947,0.0003556404170790219,0.0,4.937612302236653e-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.00021752821014931793,7.78725905907192e-05,0.00021752821014931793,0.00012215326159171068,4.7110907730222444e-05,4.2380105280325626e-05,0.0,5.883935547059163e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012215326159171068,4.7110907730222444e-05,4.2380105280325626e-05,0.0,5.883935547059163e-06 +99753,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,30346.0,,11740.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006146114636153805,0.00807624249612593,0.0,0.014222357132279735,0.0026654010028241697,0.000542131260907004,0.009028038231474104,0.0003710074100637559,0.0016157792270107014,0.0026654010028241697,0.000542131260907004,0.0009517957353481746,0.0003710074100637559,0.0016157792270107014,0.0,0.00807624249612593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005396081885610703,0.0,0.0,0.0007324170489119512,0.000725521732809785,0.0012720252374730215,0.0003176291449515002,6.460442112497011e-05,0.000113423107917645,4.421202149483666e-05,0.0001925483534229993,0.0,0.0005396081885610703,0.0,0.0,0.0,0.0,0.00023838927064228344,4.8487366720079113e-05,0.0008074535302760733,3.318231883092594e-05,0.0001445127510036595 +99754,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,28962.0,,2505.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0014513896554841023,0.00042600739383960866,0.0,0.001877414779685131,0.0007589835813082004,0.0004749786520817945,0.0003321783212046892,0.0,0.0003112387643676069,0.0006794983710621036,0.0004749786520817945,0.000234058501106117,0.0,6.283640087266713e-05,7.94852102460967e-05,9.811982009857221e-05,0.00024840236349493977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8463624402827506e-05,0.0,0.0,0.00017296003329632335,7.914851676195678e-05,0.0002014236576991509,8.097485085388652e-05,5.660252790744092e-05,2.7892417443955633e-05,0.0,7.4881241891810295e-06,5.310793199229021e-06,6.555862048747135e-06,1.659696915485135e-05,0.0,0.0,0.0,8.142966100774935e-05,5.0959403572700646e-05,3.56386735576e-05,0.0,3.339211505898642e-05 +99755,85.0,Rural Climate Zone 3A,G1301750951000,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,22965.0,,2136.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006406357260170248,0.0016565140019418592,0.0,0.008062871262112107,0.0029343569567738034,0.0005256759507284989,0.0036739096787185583,0.0004207995150886184,0.0005082100215856968,0.0029343569567738034,0.0005256759507284989,0.0020173956767766984,0.0004207995150886184,0.0005082100215856968,0.0,0.0016565140019418592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011067968428816261,0.0,0.0,0.0007634309640164051,0.0003321248850935645,0.0008741106483045677,0.00034968061712788975,6.264360252275928e-05,0.00024040843552381494,5.0145717201728855e-05,6.05622276350626e-05,0.0,0.00011067968428816261,0.0,0.0,0.0,0.0,0.00031811901473553555,5.698949309145242e-05,0.0003982952805122505,4.5619646523291546e-05,5.509597970770318e-05 +99756,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,16337.0,,11.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.0014946758955170186,3.191719054961089e-06,0.0,0.0014978676145719798,0.0005486687813903305,0.0004162431302157428,0.0005329863925722043,0.0,0.0,0.0005454770623353693,0.0004162431302157428,0.0005329863925722043,0.0,0.0,3.191719054961089e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.139086442271763e-07,0.0,0.0,0.000178117452130537,6.297747478778534e-05,0.0001783313607747642,6.500337954886074e-05,4.960283767419816e-05,6.351489212473639e-05,0.0,0.0,2.139086442271763e-07,0.0,0.0,0.0,0.0,0.0,6.532276247118722e-05,4.9556585042885784e-05,6.345566706774294e-05,0.0,0.0 +99757,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,254593.0,,12639.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012113950293745518,0.00214930987206164,0.0,0.014263242435445737,0.006427468779106182,0.0030808807914326354,0.002273847930676092,0.0,0.0024810626645922493,0.0046931734768037164,0.0030808807914326354,0.0018588333609169162,0.0,0.0024810626645922493,0.0017342953023024648,0.00041501456975917594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014360406788327406,0.0,0.0,0.001443595371935736,0.0005064388576765551,0.00158719943981901,0.000559276152412758,0.0003671424386060215,0.00022151347594721947,0.0,0.00029566330496973706,0.00011587526934056901,2.7728798542705094e-05,0.0,0.0,0.0,0.0,0.0007152423365040208,0.0003428373519164832,0.00025303153740371254,0.0,0.0002760901870117876 +99758,35.0,Eastern Counties in South Carolina and Georgia,G1300730030307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,114841.0,,9158.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005269871212352354,0.0015573285649689175,0.0,0.006827199777321272,0.0032002238541510106,0.001593906300578487,0.0007811819938061064,0.0,0.0012519230895085083,0.0029013254213317605,0.001593906300578487,0.0005703679965216787,0.0,0.00020428922428184843,0.00029889843281925014,0.00021081399728442783,0.00104763386522666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010405208713186754,0.0,0.0,0.000628000247275098,0.0002329405024435815,0.0007320523344069656,0.0003457452769910402,0.00018994269699615943,6.796963880518208e-05,0.0,2.4344747375215514e-05,1.9970741226279384e-05,1.4085426099208797e-05,6.999710445113122e-05,0.0,0.0,0.0,0.0003431467394345535,0.000170907966109389,8.376290731407686e-05,0.0,0.0001342385238552771 +99759,50.0,the Greater Atlanta and Macon Area,G1301950020600,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,68577.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006336114737011121,0.0,0.0,0.006336114737011122,0.002599869997509891,0.0015068596692172068,0.002229415759890321,0.0,0.0,0.002599869997509891,0.0015068596692172068,0.002229415759890321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007550621968913925,0.0002388139800133039,0.0007550621968913925,0.0003098213390115874,0.00017956947111454814,0.000265675043984628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030982133901158736,0.00017956947111454812,0.00026567504398462794,0.0,0.0 +99760,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,173147.0,,17566.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.015269276027752745,0.00517064624824956,0.0,0.020439891586396006,0.011351993300701368,0.0036065811528934355,0.005481347822407503,0.0,0.0,0.006181347052451807,0.0036065811528934355,0.005481347822407503,0.0,0.0,0.00517064624824956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003454714149636688,0.0,0.0,0.0018196089368808894,0.0008727103409886818,0.002165080351844558,0.0007366187053112708,0.00042978902768299243,0.0006532012038866262,0.0,0.0,0.0003454714149636688,0.0,0.0,0.0,0.0,0.0,0.001202451468283605,0.0003820244328819987,0.0005806077014527328,0.0,0.0 +99761,50.0,the Greater Atlanta and Macon Area,G1300450910702,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,87508.0,,8730.0,,9.729435225087556,Education,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,729707.6418815667,0.0,0.0,0.023428438587794368,0.007721996095467303,0.0,0.0311503424660089,0.0215829869252976,0.0054908918818731235,0.00106178944843033,0.0006551113637006309,0.0023594706294544398,0.013860990829830298,0.0054908918818731235,0.00106178944843033,0.0006551113637006309,0.0023594706294544398,0.007721996095467303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005159375976141315,0.0,0.0,0.0027919174459107962,0.001121181461600647,0.0033078550435249278,0.001651784943772303,0.0006543379654245565,0.00012653120155011241,7.8068234828209e-05,0.00028117312166590024,0.0005159375976141315,0.0,0.0,0.0,0.0,0.0,0.002291897504275671,0.0005830778401464945,0.00011275142756405852,6.956627943504183e-05,0.0002505521995530659 +99763,50.0,the Greater Atlanta and Macon Area,G1300890021812,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,13971.0,,826.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003275530948371531,0.0006555362664577505,0.0,0.003931067214829282,0.002483776131465141,0.0005193177160091113,0.0008532061726946953,0.0,7.484990173407321e-05,0.0019030070596677245,0.0005193177160091113,0.0008532061726946953,0.0,0.0,0.0005807690717974167,0.0,7.484990173407321e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.380161332952351e-05,0.0,0.0,0.0003903348930753993,0.0001716695828355342,0.0004341365064049228,0.0002267754659825236,6.188548615342976e-05,0.00010167394093944599,0.0,0.0,3.880581993438231e-05,0.0,5.001319715268582e-06,0.0,0.0,0.0,0.0002743015658288709,5.7352053938912475e-05,9.42257984446283e-05,0.0,8.266222139626657e-06 +99764,85.0,Rural Climate Zone 3A,G1302850960901,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,88783.0,,9938.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00457014249890997,0.0016899693987523325,0.0,0.006260094167300884,0.0030145515093602175,0.001187029966711115,0.0007530084495096426,0.0,0.001305539702442748,0.002426488612141326,0.001187029966711115,0.0007530084495096426,0.0,0.00020363320090930644,0.0005880628972188913,0.0,0.0011019065015334417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011291362026635653,0.0,0.0,0.0005446142875942708,0.0002321499658557841,0.0006575279078606275,0.00028915955403407045,0.00014145586922675082,8.973443615379031e-05,0.0,2.4266541069608704e-05,3.929083610527459e-05,0.0,7.362278416108197e-05,0.0,0.0,0.0,0.0003166328962655764,0.00012467948719626916,7.909211222311837e-05,0.0,0.00013712713678655224 +99765,35.0,Eastern Counties in South Carolina and Georgia,G1300510010808,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,26127.0,,919.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006133532978097035,0.0007124643596167978,0.0,0.006845997337713832,0.00277910425328223,0.0004133603230463138,0.0026951707604570985,0.00043074539140604734,0.0005274548879560067,0.00277910425328223,0.0004133603230463138,0.0019827064008403005,0.00043074539140604734,0.0005274548879560067,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.0007309181520561062,0.000267173861707892,0.0007785234307511799,0.00033117906962171976,4.925914061818009e-05,0.00023627428168188108,5.1330876774852385e-05,6.285551139522474e-05,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.00031603836095019496,4.700713146083379e-05,0.00030649348566530736,4.898415283487121e-05,5.998190894347006e-05 +99766,85.0,Rural Climate Zone 3A,G1302930010500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,16732.0,,4659.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,24034.3828889517,0.0,0.0,0.001390169272666463,0.0013571531700776267,0.0,0.00274732244274409,0.0021831328331878503,0.00042881447686218024,0.0001353751326940599,0.0,0.0,0.0008259796631102231,0.00042881447686218024,0.0001353751326940599,0.0,0.0,0.0013571531700776267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.067707282703923e-05,0.0,0.0,0.0001656635200250296,0.00014226764395424278,0.00025634059285206884,9.843024238153893e-05,5.110091056639577e-05,1.6132367077094914e-05,0.0,0.0,9.067707282703923e-05,0.0,0.0,0.0,0.0,0.0,0.00020369853790267993,4.0010795788719946e-05,1.2631259160668992e-05,0.0,0.0 +99767,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,46744.0,,9745.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,56751.431377317895,0.0,0.0,0.009495365562611824,0.006703378810945103,0.0,0.016198816093527944,0.006279226902358779,0.0007866246420992221,0.004903853018192406,0.00036648905188977243,0.003862622478987765,0.005268262190922725,0.0007866246420992221,0.002648690249577532,0.00036648905188977243,0.00042537114809358917,0.0010109647114360533,0.002255162768614874,0.0034372513308941754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004478819707804463,0.0,0.0,0.0011315472673669815,0.0008005009549365767,0.0015794292381474276,0.0006278102350671022,9.374077894543644e-05,0.000315640108245251,4.367390412209884e-05,5.069078773936757e-05,6.754696103525529e-05,0.0001506772589949324,0.0002296577507502586,0.0,0.0,0.0,0.0006122419382555878,7.669807176063696e-05,0.00047813919188854415,3.573369317075627e-05,0.0003766163430719024 +99768,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,7465.0,,414.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015639080573365642,0.00032859520396626835,0.0,0.0018925032613028323,0.0011303575767951147,0.0003768134279562846,0.00034124938624838247,0.0,4.4082870303050854e-05,0.0008017623728288461,0.0003768134279562846,0.00034124938624838247,0.0,4.4082870303050854e-05,0.00032859520396626835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.195575358176847e-05,0.0,0.0,0.00018636369495622556,8.640396298415515e-05,0.00020831944853799404,9.554231629941563e-05,4.4903114613176975e-05,4.06651121365163e-05,0.0,5.253151907116622e-06,2.195575358176847e-05,0.0,0.0,0.0,0.0,0.0,0.0001244253956458686,4.1478166573686774e-05,3.756341424122732e-05,0.0,4.852472077211381e-06 +99769,85.0,Rural Climate Zone 3A,G1300310110401,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,16160.0,,688.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003640434557709356,0.0005454531513107324,0.0,0.004185887709020088,0.0026642429663643104,0.0007092958643883006,0.0007106191775681295,0.0,0.0001016469936256088,0.0022204368086791862,0.0007092958643883006,0.0007106191775681295,0.0,0.0,0.0004438061576851236,0.0,0.0001016469936256088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.644468952375778e-05,0.0,0.0,0.0004338200363191459,0.00017161682357635176,0.00047026472584290365,0.00026460301969874836,8.452473263070238e-05,8.468242802740145e-05,0.0,0.0,2.9653101438132564e-05,0.0,6.791588085625217e-06,0.0,0.0,0.0,0.0002993151214869783,7.968604233918994e-05,7.983471032862872e-05,0.0,1.1419559938766837e-05 +99770,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,5059.0,,371.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0012148014990829474,0.00029394094006949856,0.0,0.0015087424391524457,0.0007820780892788909,0.0003518358916870138,0.0002643318076708265,0.0,0.00011049665051571471,0.0005986337997251071,0.0003518358916870138,0.0002643318076708265,0.0,0.0,0.00018344428955378384,0.0,0.00011049665051571471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9638408544755623e-05,0.0,0.0,0.00014476329520677435,5.7223177694949356e-05,0.00016440170375152998,7.133692338688949e-05,4.1926951103596005e-05,3.149942071628886e-05,0.0,0.0,1.2256046750778832e-05,0.0,7.3823617939767895e-06,0.0,0.0,0.0,8.52199600194314e-05,3.833816729300563e-05,2.8803192916889042e-05,0.0,1.2040383522203928e-05 +99771,50.0,the Greater Atlanta and Macon Area,G1301210011800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,37454.0,,182.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00899331907719107,0.00014407572245387352,0.0,0.009137394799644946,0.005468839836864224,0.0023657531372391497,0.0011588088101614363,0.0,0.00014407572245387352,0.005468839836864224,0.0023657531372391497,0.0011588088101614363,0.0,0.0,0.0,0.0,0.00014407572245387352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.625558819535208e-06,0.0,0.0,0.0010717180732876172,0.000365880192744855,0.0010813436321071524,0.000651712059004728,0.00028192265529046234,0.000138093215049457,0.0,0.0,0.0,0.0,9.625558819535208e-06,0.0,0.0,0.0,0.0006471970689979203,0.00027996952590802766,0.0001371365203292328,0.0,1.7050304647314504e-05 +99772,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,28886.0,,2557.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002693348556543205,0.0007450036470091766,0.0,0.003438352203552381,0.0022321861962798194,0.0009726841483945645,0.000233512232477436,0.0,0.0,0.0014871825492706425,0.0009726841483945645,0.000233512232477436,0.0,0.0,0.0007450036470091766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.977696293590226e-05,0.0,0.0,0.0003209614501151053,0.00011807287634985517,0.00037073841305100764,0.0001772248402235819,0.00011591300131364474,2.782722814449477e-05,0.0,0.0,4.977696293590226e-05,0.0,0.0,0.0,0.0,0.0,0.00024068423449701958,0.00010487912704321012,2.51783265272358e-05,0.0,0.0 +99773,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,18923.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0017041411700545038,0.0,0.0,0.0017041411700545038,0.0010267795289932004,0.0005391617636195325,0.00013823025104120856,0.0,0.0,0.0010267795289932004,0.0005391617636195325,0.00013823025104120856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020307934800661463,5.7776491353568364e-05,0.00020307934800661463,0.00012235941538095047,6.425090910892624e-05,1.6472643082345975e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012235941538095047,6.425090910892624e-05,1.6472643082345975e-05,0.0,0.0 +99774,85.0,Rural Climate Zone 3A,G1302850960902,ComStock DOE Ref 1980-2004,gen5_led,200001_500000,NaturalGas,224321.0,,7525.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,1133273.7058648225,0.0,0.0,0.019986728859804126,0.002215053024142996,0.0,0.022201781883947124,0.005269835055803735,0.005397810714065156,0.011534105424471934,0.0,0.0,0.0030547820316607394,0.005397810714065156,0.011534105424471934,0.0,0.0,0.002215053024142996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014799722829026622,0.0,0.0,0.0023817795334481473,0.0007928292496709656,0.0025297767617384137,0.000364032422373393,0.0006432465849898719,0.0013744968688643,0.0,0.0,0.00014799722829026622,0.0,0.0,0.0,0.0,0.0,0.000600470103348147,0.0006150522593223936,0.0013142509021479753,0.0,0.0 +99775,50.0,the Greater Atlanta and Macon Area,G1302070050200,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,76738.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.006766903845137291,0.0,0.0,0.006766903845137291,0.004808140790996114,0.0014961427611047795,0.00046258991943696023,0.0,0.0,0.004808140790996114,0.0014961427611047795,0.00046258991943696023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008063985072447907,0.00020859174091783985,0.0008063985072447907,0.000572976599817991,0.00017829236483786858,5.512592302734049e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000572976599817991,0.00017829236483786858,5.512592302734049e-05,0.0,0.0 +99776,50.0,the Greater Atlanta and Macon Area,G1301350050511,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,100981.0,,7316.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.00856678877075965,0.0021535510531224,0.0,0.010720339823882048,0.0041126527607425545,0.0023103442516973637,0.004297373501048428,0.0,0.0,0.0019591017076201547,0.0023103442516973637,0.004297373501048428,0.0,0.0,0.0021535510531224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001438876230490914,0.0,0.0,0.0010208891612850765,0.0004061859031955976,0.0011647767843341679,0.00023346270728549215,0.0002753196639382032,0.0005121104472878252,0.0,0.0,0.0001438876230490914,0.0,0.0,0.0,0.0,0.0,0.00044684427326353914,0.0002510214594319182,0.0004669143860983941,0.0,0.0 +99777,50.0,the Greater Atlanta and Macon Area,G1302230120501,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,18731.0,,1.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.0016689007904690774,3.375856692747306e-07,0.0,0.001669238376138352,0.0006920813116194955,0.0004695202867485549,0.0005076367777703017,0.0,0.0,0.0006917437259502208,0.0004695202867485549,0.0005076367777703017,0.0,0.0,3.375856692747306e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3178108045987218e-08,0.0,0.0,0.0001988799010494004,7.25519939309413e-05,0.0001989030791574464,8.243385380017443e-05,5.5951886836240837e-05,6.049416041298514e-05,0.0,0.0,2.317810804598722e-08,0.0,0.0,0.0,0.0,0.0,8.246701362504042e-05,5.594709065892836e-05,6.048897487347761e-05,0.0,0.0 +99778,50.0,the Greater Atlanta and Macon Area,G1301390001301,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,7165.0,,493.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017203898408513336,0.0003911217517131847,0.0,0.0021115115925645182,0.0012516061468969392,0.00035357274023553923,0.0003950089841789322,0.0,0.00011132372125310778,0.0009718081164368622,0.00035357274023553923,0.0003950089841789322,0.0,0.0,0.00027979803046007695,0.0,0.00011132372125310778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6130489590083964e-05,0.0,0.0,0.0002050174408708275,9.556674729260568e-05,0.00023114793046091146,0.00011580957310861128,4.2134972343771336e-05,4.707289541844489e-05,0.0,0.0,1.869305271373526e-05,0.0,7.437436876348703e-06,0.0,0.0,0.0,0.00013701377327320695,3.870573453663912e-05,4.3241775005143484e-05,0.0,1.2186647645921928e-05 +99779,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,22173.0,,8262.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0046169014141589455,0.005683449103132098,0.0,0.010300278797320029,0.004314458296386114,0.0004909232016018577,0.0032514966059637423,0.0003665607718607881,0.0018768399215075252,0.0021499495711349726,0.0004909232016018577,0.0013809680419055908,0.0003665607718607881,0.0002284998276557368,0.002164508725251141,0.001870528564058152,0.0016483400938517888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003797325028399662,0.0,0.0,0.0005501838732553872,0.0005360512751998431,0.0009299163760953532,0.000256203777434628,5.850201342829598e-05,0.0001645662919739721,4.368207313835219e-05,2.7229717280138926e-05,0.00014461892782775164,0.00012497701314365776,0.0001101317699889071,0.0,0.0,0.0,0.000389512313475805,4.432089009993659e-05,0.00029354738839601534,3.309336293656332e-05,0.0001694424211870329 +99780,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890400,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,202911.0,,15848.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,277604.9900394644,0.0,0.0,0.04133406309341475,0.010665641816308644,0.0,0.0519997049097234,0.030871759456568126,0.0019206266343732997,0.016186855758229535,0.0010011142665852571,0.002019278628963913,0.030721887009594048,0.0019206266343732997,0.006807759441788236,0.0010011142665852571,0.0008826757410739089,0.00014987244697407543,0.009379096316441298,0.001136602887890004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007126151908426863,0.0,0.0,0.00492569811476271,0.002475970690416734,0.005638313305605397,0.0036610661909310194,0.0002288772572566868,0.0008112671568819651,0.00011930079664408021,0.00010518671304895771,1.0013591703331255e-05,0.0006266558193668988,7.59410917613591e-05,0.0,0.0,0.0,0.0033474161519495282,0.00020825300309852644,0.001755136194637809,0.000108550536960135,0.00021894981098792573 +99781,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,32572.0,,2729.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027968010362281882,0.0007951504596809051,0.0,0.0035919514959090923,0.002354865164408899,0.0010097095661091837,0.00022734639179157243,0.0,0.0,0.0015597147047279936,0.0010097095661091837,0.00022734639179157243,0.0,0.0,0.0007951504596809051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.312738337898468e-05,0.0,0.0,0.00033328823020835,0.0001437030317286933,0.00038641561358733473,0.00018586754897294717,0.00012032472455273867,2.7092337131945046e-05,0.0,0.0,5.312738337898468e-05,0.0,0.0,0.0,0.0,0.0,0.0002533321144388678,0.00010862271998311984,2.4457511628723406e-05,0.0,0.0 +99782,50.0,the Greater Atlanta and Macon Area,G1301170130602,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,49734.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.004787609272047932,0.0,0.0,0.004787609272047931,0.0019993050918701454,0.001148834722148206,0.001639500147635878,0.0,0.0,0.0019993050918701454,0.001148834722148206,0.001639500147635878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005705316941142859,0.0002040508520020171,0.0005705316941142859,0.0002382539710948601,0.0001369047854659533,0.00019537659478447816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023825397109486013,0.00013690478546595332,0.00019537659478447821,0.0,0.0 +99783,35.0,Eastern Counties in South Carolina and Georgia,G1301830970200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4481.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010760190293483897,0.0,0.0,0.0010760190293483897,0.00047391153252623154,0.0003003093847474253,0.00025672275688681025,0.0,4.507535518792255e-05,0.00047391153252623154,0.0003003093847474253,0.00025672275688681025,0.0,4.507535518792255e-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.00012823140044686485,3.752180672128866e-05,0.00012823140044686485,5.6477011880133394e-05,3.57884869348629e-05,3.059417886141956e-05,0.0,5.371722770448988e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.6477011880133394e-05,3.57884869348629e-05,3.059417886141956e-05,0.0,5.371722770448988e-06 +99784,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9696.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0020593234290350155,0.0,0.0,0.0020593234290350155,0.0012557415005839045,0.0002917078490785373,0.00046820474443821935,0.0,4.358662786061501e-05,0.0012557415005839045,0.0002917078490785373,0.00046820474443821935,0.0,4.358662786061501e-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.0002454087743169107,8.109156995883986e-05,0.0002454087743169107,0.00014964622757755955,3.476271123401518e-05,5.5795777798627714e-05,0.0,5.1942015368091865e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014964622757755955,3.476271123401518e-05,5.5795777798627714e-05,0.0,5.1942015368091865e-06 +99785,35.0,Eastern Counties in South Carolina and Georgia,G1302450001100,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,13115.0,,412.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0030744700521112747,0.00032644482004904636,0.0,0.003400914872160321,0.002006473608915598,0.0003753247006289771,0.0009551839946152615,0.0,6.384986092674533e-05,0.0016800287888665516,0.0003753247006289771,0.0009551839946152615,0.0,6.384986092674533e-05,0.00032644482004904636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1811105966793444e-05,0.0,0.0,0.0003663772225920475,0.00014878513862468125,0.0003881883285588409,0.00020020500154715144,4.472654443070808e-05,0.00011382698581539174,0.0,7.6088347951755484e-06,2.1811105966793444e-05,0.0,0.0,0.0,0.0,0.0,0.00022902356154760412,4.2840433730545244e-05,0.00010902692136493322,0.0,7.287971538118318e-06 +99786,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,111695.0,,7154.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.00981429057715497,0.0021057059569042805,0.0,0.011919996534059249,0.007259687748934188,0.0018657746148688407,0.0027945034806499225,0.0,0.0,0.005153981792029907,0.0018657746148688407,0.0027945034806499225,0.0,0.0,0.0021057059569042805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001406912143308895,0.0,0.0,0.001169548410858788,0.0005220132091036623,0.0013102396251896777,0.0006141891935108256,0.0002223404451586031,0.00033301511497338474,0.0,0.0,0.0001406912143308895,0.0,0.0,0.0,0.0,0.0,0.0007979809832980231,0.00020508494487302294,0.0003071703236335693,0.0,0.0 +99787,50.0,the Greater Atlanta and Macon Area,G1302550160900,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Propane,77724.0,,,12776.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006853833086728137,0.0,0.001204161349709671,0.008057994436437808,0.00471632139989579,0.0027856235516350953,0.0005560494849069225,0.0,0.0,0.003512160050186119,0.0027856235516350953,0.0005560494849069225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001204161349709671,0.0,0.0,0.0,0.0,9.711392432687611e-05,0.0008167575304337458,0.00032227588522243367,0.000913871454760622,0.0004185370628054602,0.0003319571667359759,6.626330089230972e-05,0.0,0.0,0.0,0.0,0.0,9.711392432687611e-05,0.0,0.0,0.0005348863830621837,0.00031592251243519,6.306255926324822e-05,0.0,0.0 +99788,50.0,the Greater Atlanta and Macon Area,G1301210010512,ComStock 90.1-2004,gen3_t5_cfl,50001_100000,FuelOil,145088.0,36507.0,7402.0,,3.3063363735822096,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.013406875969186573,0.002224811548347841,0.00377196970455728,0.0194036572220917,0.005519847892983075,0.001989431663573908,0.008122345284933026,0.0,0.00377196970455728,0.005519847892983075,0.001989431663573908,0.005897533736585185,0.0,0.0,0.0,0.002224811548347841,0.0,0.0,0.0,0.0,0.0,0.0,0.00377196970455728,0.0,0.0001486488052643076,0.00033517239281964206,0.0,0.001597670204276313,0.0011250922872849763,0.0020814914023602623,0.0006577890726389339,0.00023707653443211013,0.000702797128228238,0.0,0.0,0.0,0.0001486488052643076,0.0,0.0,0.00033517239281964206,0.0,0.0005921314626450672,0.00021341259824965962,0.0008713095518065945,0.0,0.00040463106620232235 +99789,50.0,the Greater Atlanta and Macon Area,G1301390001502,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,42044.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004975681565494753,0.0,0.0,0.004975681565494753,0.0028204013229913213,0.0016576999365141812,0.0004975803059892504,0.0,0.0,0.0028204013229913213,0.0016576999365141812,0.0004975803059892504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005929423281069639,0.0001503943242437565,0.0005929423281069639,0.0003361017590530128,0.00019754488841806518,5.929568063588588e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003361017590530128,0.00019754488841806518,5.929568063588588e-05,0.0,0.0 +99790,50.0,the Greater Atlanta and Macon Area,G1300670030233,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,7226.0,,733.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017137732749521893,0.0005812653142398524,0.0,0.002295038589192041,0.0013425839280101774,0.00021354966439489178,0.0006254308916166427,0.0,0.00011347410517032977,0.0008747927189406546,0.00021354966439489178,0.0006254308916166427,0.0,0.0,0.0004677912090695228,0.0,0.00011347410517032977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8839255647817875e-05,0.0,0.0,0.00020422307438844222,0.00010732048533696973,0.0002430623300362601,0.00010424532878753694,2.544780551474146e-05,7.452994008616379e-05,0.0,0.0,3.125709020262635e-05,0.0,7.582165445191539e-06,0.0,0.0,0.0,0.00014219001778365385,2.2616560458165112e-05,6.623796676399867e-05,0.0,1.2017785030442497e-05 +99791,50.0,the Greater Atlanta and Macon Area,G1301350050719,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,33214.0,,1232.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007870322429958755,0.0009775976115986137,0.0,0.008847920041557369,0.005077883499298518,0.0013917119298113261,0.002224572162366152,0.0,0.0001539178642288511,0.004254203751928756,0.0013917119298113261,0.002224572162366152,0.0,0.0,0.0008236797473697626,0.0,0.0001539178642288511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.531485764853831e-05,0.0,0.0,0.0009378955354519569,0.00036980269560258705,0.0010032103931004951,0.0005069676295152566,0.00016584840293666474,0.0002650992151772432,0.0,0.0,5.503135933348502e-05,0.0,1.028349831505328e-05,0.0,0.0,0.0,0.0005757494956467905,0.00015779752367008507,0.0002522303437424543,0.0,1.7451785318240226e-05 +99792,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,12823.0,,149.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0014425263201870982,5.529400072276213e-05,0.0,0.0014978203209098603,0.0008918724699620295,0.0001963382632531435,0.0003710936544652368,0.0,3.851593322945029e-05,0.0008918724699620295,0.0001963382632531435,0.0003157996537424747,0.0,3.851593322945029e-05,0.0,5.529400072276213e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.694658571150535e-06,0.0,0.0,0.00017190117847786087,6.12018955453442e-05,0.00017559583704901142,0.00010628154682026764,2.339699342826155e-05,3.7632819506676856e-05,0.0,4.589818722654821e-06,0.0,3.694658571150535e-06,0.0,0.0,0.0,0.0,0.00010455799718942168,2.301756839548159e-05,4.350488504510108e-05,0.0,4.515386419007045e-06 +99793,35.0,Eastern Counties in South Carolina and Georgia,G1300510004207,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,49072.0,,737.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004005214689859145,0.00021474134802490535,0.0,0.00421995603788405,0.002720502554440555,0.0010892580230366558,0.00041016508680740056,0.0,0.0,0.0025057612064156498,0.0010892580230366558,0.00041016508680740056,0.0,0.0,0.00021474134802490535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4348680917248217e-05,0.0,0.0,0.00047729211164750633,0.00012231195739578643,0.0004916407925647545,0.0002986057303052058,0.00012980434313807963,4.8878418653076435e-05,0.0,0.0,1.4348680917248217e-05,0.0,0.0,0.0,0.0,0.0,0.00031694880705682464,0.0001269026674556967,4.778577941335476e-05,0.0,0.0 +99794,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14306.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003419193135456708,0.0,0.0,0.0034191931354567084,0.0013185161695520391,0.000496655977804541,0.0015338026824954561,0.0,7.0218305604672e-05,0.0013185161695520391,0.000496655977804541,0.0015338026824954561,0.0,7.0218305604672e-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.00040745789573863893,0.00012576790567119943,0.00040745789573863893,0.00015712473752123516,5.918542521735146e-05,0.00018277996846890638,0.0,8.367764531145945e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015712473752123513,5.918542521735145e-05,0.00018277996846890635,0.0,8.367764531145943e-06 +99795,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,5995.0,,131.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011072823032218478,0.00010429361998526664,0.0,0.0012114932161333752,0.00046704684540586905,0.0002525874031998449,0.00038764805461613387,0.0,0.00010429361998526664,0.00046704684540586905,0.0002525874031998449,0.00038764805461613387,0.0,0.0,0.0,0.0,0.00010429361998526664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.9668820840738375e-06,0.0,0.0,0.00013194982396578798,4.5479403591850216e-05,0.00013891670604986183,5.565586016841983e-05,3.009969841585872e-05,4.619426538150943e-05,0.0,0.0,0.0,0.0,6.966882084073838e-06,0.0,0.0,0.0,5.355424898030924e-05,2.896310897571532e-05,4.444993181701954e-05,0.0,1.1958899940529475e-05 +99796,50.0,the Greater Atlanta and Macon Area,G1300670031108,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,24919.0,,1457.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0062877225739571075,0.0011554178201381245,0.0,0.007443140394095232,0.0050907858028018515,0.0009923194707242107,0.0011979292560401287,0.0,0.00016210586452904252,0.004097473847192769,0.0009923194707242107,0.0011979292560401287,0.0,0.0,0.000993311955609082,0.0,0.00016210586452904252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.719730491161537e-05,0.0,0.0,0.0007492969303278481,0.00031003277131754414,0.0008264942352394634,0.0004882888104059542,0.00011825298024404824,0.00014275513967784584,0.0,0.0,6.636647329910527e-05,0.0,1.0830831612510101e-05,0.0,0.0,0.0,0.0005652862765013163,0.00011018821070741477,0.00013301934021388523,0.0,1.8000407816847214e-05 +99797,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,9387.0,,784.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031102822150403946,0.0006216263662246345,0.0,0.00373190858126503,0.002090917531203431,0.0007486644314882108,0.0007805893619515834,0.0,0.00011157184247432569,0.0015808630074531217,0.0007486644314882108,0.0007805893619515834,0.0,0.0,0.0005100545237503089,0.0,0.00011157184247432569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.153578622437239e-05,0.0,0.0,0.0003706425380527264,0.0001580866234511983,0.0004121783242770988,0.00018838646684943392,8.921598294030953e-05,9.30203763798764e-05,0.0,0.0,3.408078680757113e-05,0.0,7.4549994168012705e-06,0.0,0.0,0.0,0.0002309356902630498,8.268778403785954e-05,8.621379869082173e-05,0.0,1.232278177939378e-05 +99798,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,39582.0,,3014.0,,8.72605822017302,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.009300162320763904,0.0023912269159508557,0.0,0.011691389236714757,0.00862932524566438,0.001009687956209465,0.0018953980088837084,0.0,0.00015706073303094475,0.006395076355670729,0.001009687956209465,0.0018953980088837084,0.0,0.0,0.002234248889993651,0.0,0.00015706073303094475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001597686057651892,0.0,0.0,0.0011082820086729952,0.0005328107507138292,0.0012680506144381843,0.0007620886415343524,0.00012032252316095511,0.0002258708439776875,0.0,0.0,0.00014928019909175505,0.0,1.0493932704347478e-05,0.0,0.0,0.0,0.0009359384892933765,0.00010951097490121855,0.00020557527947339662,0.0,1.703484119736353e-05 +99799,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,42600.0,,1268.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.002086278437213353,0.00021567211631352227,0.0,0.002301950553526875,0.001089282484202364,0.0005141804811815313,0.00045246109307832747,0.0,0.0002460442254260728,0.0010740521037425387,0.0005141804811815313,0.0002520016268632105,0.0,0.0002460442254260728,1.5230380459825357e-05,0.00020045946621511697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.441033293436546e-05,0.0,0.0,0.0002486178417331727,8.099235317977674e-05,0.00026302817466753814,0.00012799275071745183,6.127391205913306e-05,3.0030555589533034e-05,0.0,2.9320623367054807e-05,1.0176320281667157e-06,1.3393885576778682e-05,0.0,0.0,0.0,0.0,0.00012446487309560023,5.875189334872725e-05,5.169964021952313e-05,0.0,2.8113793931044422e-05 +99800,50.0,the Greater Atlanta and Macon Area,G1300570090602,ComStock 90.1-2007,gen3_t5_cfl,_1000,NaturalGas,2428.0,,431.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,3237.924873899493,0.0,0.0,0.00016336077432267193,0.000126901522041001,0.0,0.00029026229636367287,0.0001955234817226644,6.395713952441258e-05,3.08123647228936e-05,0.0,0.0,6.862195968166342e-05,6.395713952441258e-05,3.08123647228936e-05,0.0,0.0,0.000126901522041001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.479432201128535e-06,0.0,0.0,1.9466879999964777e-05,1.626947672505924e-05,2.794631220109331e-05,8.177333022716745e-06,7.621449919204693e-06,3.6717541837243352e-06,0.0,0.0,8.479432201128535e-06,0.0,0.0,0.0,0.0,0.0,1.882490537462101e-05,6.157762172454901e-06,2.9665994343304813e-06,0.0,0.0 +99801,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Propane,11117.0,,,4008.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0009293106483974548,0.0,0.00037775645620731935,0.0013070671046047741,0.0008013163003667685,0.0004116533931798504,9.406703745871738e-05,0.0,0.0,0.00042355984415944916,0.0004116533931798504,9.406703745871738e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037775645620731935,0.0,0.0,0.0,0.0,3.046564555910537e-05,0.0001107431499470077,5.456178731024806e-05,0.00014120879550611308,5.0474350438326e-05,4.905549454934616e-05,1.1209685429006497e-05,0.0,0.0,0.0,0.0,0.0,3.046564555910537e-05,0.0,0.0,8.657008442456428e-05,4.447291161421119e-05,1.0162518060149936e-05,0.0,0.0 +99802,50.0,the Greater Atlanta and Macon Area,G1300670031002,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,6665.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016025322607728207,0.0,0.0,0.0016025322607728205,0.0009804923591794894,0.0003400087801422928,0.00024042946336016668,0.0,4.168436516461094e-05,0.0009804923591794894,0.0003400087801422928,0.00024042946336016668,0.0,4.168436516461094e-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.00019097211155425756,6.303361010868737e-05,0.00019097211155425756,0.00011684426003693865,4.0518494560257677e-05,2.865173040298445e-05,0.0,4.9674826704864674e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011684426003693866,4.051849456025768e-05,2.8651730402984453e-05,0.0,4.967482670486468e-06 +99803,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970500,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,3858.0,,645.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008450181723945038,0.000511956786446313,0.0,0.0013569749588408168,0.000736341077501054,0.00020114360333399565,0.0003099861123749242,0.0,0.0001094214585571037,0.00033380574961184477,0.00020114360333399565,0.0003099861123749242,0.0,0.0,0.0004025353278892092,0.0,0.0001094214585571037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.420451574725601e-05,0.0,0.0,0.00010070113064143403,6.315982651881953e-05,0.00013490564638869005,3.97797556297179e-05,2.397035819907679e-05,3.6941160579827224e-05,0.0,0.0,2.6893922155394994e-05,0.0,7.3105935918610175e-06,0.0,0.0,0.0,7.320442309980543e-05,1.9996984946504185e-05,3.0817721866569775e-05,0.0,1.087829403134253e-05 +99804,50.0,the Greater Atlanta and Macon Area,G1300770170306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,32338.0,,10404.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007591614618388728,0.008069016681625314,0.0,0.015660631300014043,0.0035831838801156698,0.000638153299976821,0.010360611273787393,0.00041788852689815146,0.0006607943192360088,0.0035831838801156698,0.000638153299976821,0.0022915945921620764,0.00041788852689815146,0.0006607943192360088,0.0,0.008069016681625314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005391251622082302,0.0,0.0,0.000904676920867009,0.0007887261961569307,0.0014438020830752395,0.00042700056872109243,7.604740117678473e-05,0.00027308456023189044,4.979890639655646e-05,7.874548434068485e-05,0.0,0.0005391251622082302,0.0,0.0,0.0,0.0,0.0003303448150361591,5.883332837463878e-05,0.0009551768286003665,3.8526437029920584e-05,6.09206740341546e-05 +99805,50.0,the Greater Atlanta and Macon Area,G1301130140403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,80026.0,,3928.0,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,100799.30806909183,0.0,0.0,0.012736099730740608,0.002057043233062032,0.0,0.01479314296380264,0.009510365065046104,0.000777307825375865,0.004458901484039077,0.0,4.66231832329673e-05,0.007499945015217039,0.000777307825375865,0.004458901484039077,0.0,0.0,0.0020104200498290647,0.0,4.66231832329673e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001374398464536507,0.0,0.0,0.0015177356960303207,0.0006531129635527594,0.0016551755424839714,0.0008937535437466024,9.263022890195685e-05,0.0005313584292273088,0.0,0.0,0.00013432475239936537,0.0,3.1150940542853496e-06,0.0,0.0,0.0,0.0010640959594776958,8.697143701589783e-05,0.0004988976785248236,0.0,5.216575868210192e-06 +99806,50.0,the Greater Atlanta and Macon Area,G1300670030336,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,18738.0,,4239.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.004550460490062956,0.0033626214970190215,0.0,0.007913164694155716,0.005192184675206241,0.0008303790203426466,0.0017477658822590443,0.0,0.00014275240927404462,0.0018295631781872197,0.0008303790203426466,0.0017477658822590443,0.0,0.00014275240927404462,0.0033626214970190215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022467273305251182,0.0,0.0,0.0005422729989612494,0.0003750483499650533,0.0007669457320137612,0.00021802688180486374,9.895528652957969e-05,0.00020827919471544596,0.0,1.701163591136001e-05,0.00022467273305251182,0.0,0.0,0.0,0.0,0.0,0.0005032277262493588,8.048052457140341e-05,0.00016939386904809726,0.0,1.3835596156398633e-05 +99807,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,54739.0,,11219.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011176840283072826,0.007717355761163812,0.0,0.018894124324265623,0.007451776708493004,0.0014803719217332276,0.005709985492407873,0.00038599688400601866,0.003865921597654482,0.007451776708493004,0.0014803719217332276,0.0014014082336450398,0.00038599688400601866,0.00045714309525350487,0.0,0.004308577258762833,0.003408778502400977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005156267676478799,0.0,0.0,0.001331920034718457,0.000960103062175992,0.0018475468023663368,0.0008880122146257854,0.00017641274022474118,0.0001670028072279174,4.5998419063492914e-05,5.4476760146916364e-05,0.0,0.0002878729235571761,0.00022775384409070366,0.0,0.0,0.0,0.0007286660124302592,0.00014475698176699914,0.0005583463545070314,3.774439590475216e-05,0.0003780260446774165 +99808,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,18825.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016298636112583996,0.0,0.0,0.0016298636112583996,0.0005179177958800322,0.00044733170139531583,0.0006646141139830514,0.0,0.0,0.0005179177958800322,0.00044733170139531583,0.0006646141139830514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019422922113899102,6.922395346239337e-05,0.00019422922113899102,6.171974723095602e-05,5.330807274463232e-05,7.920140116340266e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.171974723095602e-05,5.330807274463232e-05,7.920140116340266e-05,0.0,0.0 +99809,50.0,the Greater Atlanta and Macon Area,G1301210006200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,11588.0,,3185.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0016785373268465562,0.0009374754035759268,0.0,0.002616012730422483,0.001766800634558749,0.0003478359977781634,0.0005013760980855704,0.0,0.0,0.0008293252309828223,0.0003478359977781634,0.0005013760980855704,0.0,0.0,0.0009374754035759268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.263724385881638e-05,0.0,0.0,0.00020002877065244964,0.00012868281418113915,0.000262666014511266,9.882944142577149e-05,4.1451093110302116e-05,5.974823611637601e-05,0.0,0.0,6.263724385881638e-05,0.0,0.0,0.0,0.0,0.0,0.00017739916771757232,3.492517225831101e-05,5.034167453538265e-05,0.0,0.0 +99810,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,50251.0,,4144.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004719263518822948,0.0012198197815147924,0.0,0.0059390833003377394,0.0023130449370515607,0.0012620486797804318,0.00236395899389945,0.0,0.0,0.0010932251555367685,0.0012620486797804318,0.00236395899389945,0.0,0.0,0.0012198197815147924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.150212980609532e-05,0.0,0.0,0.0005623848616376312,0.000268645410155701,0.0006438869914437266,0.00013027737810849494,0.00015039572791970238,0.0002817080983925986,0.0,0.0,8.150212980609532e-05,0.0,0.0,0.0,0.0,0.0,0.00025076926358442867,0.00013682527864748725,0.00025628912199155324,0.0,0.0 +99811,50.0,the Greater Atlanta and Macon Area,G1301530021105,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8496.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0020401353879274968,0.0,0.0,0.0020401353879274963,0.0010681618573431554,0.0004794529064667651,0.00042916700563326625,0.0,6.335361848430949e-05,0.0010681618573431554,0.0004794529064667651,0.00042916700563326625,0.0,6.335361848430949e-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.0002431185613196448,6.108445681293242e-05,0.0002431185613196448,0.00012729055902392717,5.7135375196415475e-05,5.1142912177712595e-05,0.0,7.549714921589487e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001272905590239272,5.713537519641549e-05,5.114291217771261e-05,0.0,7.5497149215894885e-06 +99812,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2004,gen5_led,100001_200000,NaturalGas,107280.0,,16068.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009458444592133105,0.004729851432995655,0.0,0.01418829602512876,0.006364165037167221,0.0025580707537324206,0.0052660909238354155,0.0,0.0,0.0016343136041715662,0.0025580707537324206,0.0052660909238354155,0.0,0.0,0.004729851432995655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031602068088516577,0.0,0.0,0.0011271458868530634,0.0006424181701731909,0.0014431665677382291,0.00019475822254138157,0.00030484070612907786,0.0006275506154079722,0.0,0.0,0.00031602068088516577,0.0,0.0,0.0,0.0,0.0,0.000647332857796425,0.0002601948946622757,0.0005356419368815663,0.0,0.0 +99813,35.0,Eastern Counties in South Carolina and Georgia,G1300730030505,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,14764.0,,679.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011816848861257348,0.00019788400033695313,0.0,0.0013795992600621253,0.0009549459663229173,0.00032885496111253895,9.57679590272315e-05,0.0,0.0,0.0007570619659859641,0.00032885496111253895,9.57679590272315e-05,0.0,0.0,0.00019788400033695313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3221835608441464e-05,0.0,0.0,0.00014082080673327764,5.127427309636788e-05,0.0001540426423417191,9.021870216750918e-05,3.918948398666487e-05,1.141262057910357e-05,0.0,0.0,1.3221835608441462e-05,0.0,0.0,0.0,0.0,0.0,0.00010662690551118755,3.671913186926296e-05,1.0693213520253637e-05,0.0,0.0 +99814,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001600,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10275.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002086616763368987,0.0,0.0,0.002086616763368987,0.001086605534787021,0.0005908593347936122,0.00033082829495722967,0.0,7.815818468364551e-05,0.001086605534787021,0.0005908593347936122,0.00033082829495722967,0.0,7.815818468364551e-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.00024865459958259127,7.615630150640308e-05,0.00024865459958259127,0.0001294868654848026,7.04105774869409e-05,3.942361561418863e-05,0.0,9.313829188852065e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001294868654848026,7.04105774869409e-05,3.942361561418863e-05,0.0,9.313829188852065e-06 +99815,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,41486.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.0036963789409205144,0.0,0.0,0.0036963789409205135,0.0010157645892413668,0.0014986041651231245,0.001181979496949725,0.0,0.0,0.0010157645892413668,0.0014986041651231245,0.001181979496949725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044048878424319144,0.00013009813132816832,0.00044048878424319144,0.00012104627694929717,0.00017858513353408452,0.00014085371655161131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012104627694929721,0.00017858513353408457,0.00014085371655161134,0.0,0.0 +99816,85.0,Rural Climate Zone 3A,G1300090970400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,24868.0,,14269.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004944661681700289,0.009815308353312466,0.0,0.014759970035012754,0.00271130178427416,0.0006751718071409625,0.00915799481895439,0.00037846628704937954,0.0018371070575648773,0.00271130178427416,0.0006751718071409625,0.0009454843778988005,0.00037846628704937954,0.0002343091453080013,0.0,0.008212510441055589,0.0016027979122568757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006558019650666733,0.0,0.0,0.0005892481414425644,0.0007999525814867101,0.0012450501065092376,0.0003231018905067113,8.045924233494287e-05,0.00011267199826870105,4.510127701311807e-05,2.7922280083732558e-05,0.0,0.000548712306481664,0.00010708965858500915,0.0,0.0,0.0,0.00022870687184876198,5.6952875134489614e-05,0.0007725057976203645,3.192482707506923e-05,0.00015496578463670613 +99817,50.0,the Greater Atlanta and Macon Area,G1301170130105,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,FuelOil,55890.0,,4100.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004706189746540126,0.0012067766988382686,0.0,0.005912966445378396,0.001950600686675691,0.0015176931002402957,0.0024446726584624085,0.0,0.0,0.0007438239878374223,0.0015176931002402957,0.0024446726584624085,0.0,0.0,0.0012067766988382686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.062897636808744e-05,0.0,0.0,0.0005608284971018821,0.0002546414527790709,0.0006414574734699695,8.864021887640084e-05,0.00018086086331207043,0.0002913274149134109,0.0,0.0,8.062897636808744e-05,0.0,0.0,0.0,0.0,0.0,0.00021160738857257374,0.00016464419180728913,0.00026520589309010655,0.0,0.0 +99818,50.0,the Greater Atlanta and Macon Area,G1301350050542,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,4603.0,,969.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00028860505762359697,0.0002851985113245519,0.0,0.0005738035689481488,0.00034789737699075866,0.00012595014424577223,9.992535810532028e-05,0.0,0.0,6.269886566620678e-05,0.00012595014424577223,9.992535810532028e-05,0.0,0.0,0.0002851985113245519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.905590672468789e-05,0.0,0.0,3.439276148866675e-05,3.176665137577791e-05,5.3448668213354644e-05,7.471757945698232e-06,1.500934635787839e-05,1.190799993695225e-05,0.0,0.0,1.905590672468789e-05,0.0,0.0,0.0,0.0,0.0,3.2405952979974765e-05,1.173200697157873e-05,9.307849585638486e-06,0.0,0.0 +99819,50.0,the Greater Atlanta and Macon Area,G1300890023414,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,32664.0,,1409.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007615998178210385,0.001117372566218043,0.0,0.00873328803735469,0.0060608570706901874,0.0013600351205691713,0.0011450794359207112,0.0,0.0001674818243220975,0.004943484504472144,0.0013600351205691713,0.0011450794359207112,0.0,0.0001674818243220975,0.001117372566218043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.465454722867192e-05,0.0,0.0,0.0009075812483125676,0.0003354808488695439,0.0009822357955412396,0.0005891038485827122,0.00016207230406207226,0.00013645652211988508,0.0,1.9958429562496733e-05,7.465454722867192e-05,0.0,0.0,0.0,0.0,0.0,0.000681666600371782,0.00015296360006705124,0.0001287874630824814,0.0,1.883673620382989e-05 +99820,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,70342.0,,4282.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005976432551202044,0.0012602993722214625,0.0,0.007236731923423508,0.0022322698932760072,0.0027212167008110084,0.002283214639730194,0.0,0.0,0.0009719705210545448,0.0027212167008110084,0.002283214639730194,0.0,0.0,0.0012602993722214625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.420606900473591e-05,0.0,0.0,0.0007121981764864959,0.0002732251408572939,0.0007964042454912318,0.00011582756548544103,0.0003242813426803249,0.0002720856111085964,0.0,0.0,8.420606900473591e-05,0.0,0.0,0.0,0.0,0.0,0.0002456618870091081,0.00029947061136987517,0.0002512683697130293,0.0,0.0 +99821,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,27574.0,,13820.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0055017824165495555,0.009506625598061277,0.0,0.015008408014610829,0.0032187205792096082,0.0004613745735434259,0.009126509751678535,0.00038104820600594157,0.0018208266241443328,0.002768534321144618,0.0004613745735434259,0.0016524281321996786,0.00038104820600594157,0.00023854062359792235,0.0004501862580649906,0.007474081619478858,0.0015822860005464108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006351748726130607,0.0,0.0,0.0006556402927450582,0.0007930152988004468,0.001290815165358119,0.00032992265330775806,5.498141103385336e-05,0.00019691772271412735,4.540902173524996e-05,2.8426577506388355e-05,3.0078706284267168e-05,0.0004993726524288751,0.00010571872200788626,0.0,0.0,0.0,0.00027682971655949916,3.968104384293897e-05,0.0007849358294888339,3.277248343502794e-05,0.00015660226038932603 +99822,35.0,Eastern Counties in South Carolina and Georgia,G1302450010506,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,14773.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.00118174563332461,0.0,0.0,0.00118174563332461,0.0005976613161366427,0.0004903513893230655,9.376330146433988e-05,0.0,0.0,0.0005976613161366427,0.0004903513893230655,9.376330146433988e-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.00014082793493716588,3.6507061591684316e-05,0.00014082793493716588,7.122294897469898e-05,5.8434887851173484e-05,1.1173717715347653e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.122294897469898e-05,5.8434887851173484e-05,1.1173717715347653e-05,0.0,0.0 +99823,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2004,gen5_led,10001_25000,Electricity,21345.0,,620.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005012958446413163,0.0004921070887488791,0.0,0.005504982828088301,0.003390824609164126,0.0006255963057641213,0.001375584050432161,0.0,0.00011306056980163324,0.002898717520415247,0.0006255963057641213,0.001375584050432161,0.0,0.00011306056980163324,0.0004921070887488791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2878129868440654e-05,0.0,0.0,0.0005973800041976709,0.00020296351944403066,0.0006302581340661116,0.00034543192468561757,7.455053293546026e-05,0.00016392443995010247,0.0,1.3473106626490502e-05,3.2878129868440654e-05,0.0,0.0,0.0,0.0,0.0,0.000388210982278282,7.162368578840247e-05,0.00015748878133695266,0.0,1.2944153684921494e-05 +99824,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,15977.0,,3865.0,,8.53126424238864,Food Service,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.0037506465618505915,0.002997751810699529,0.0,0.006748398372550121,0.0018420894990841305,0.00039573267233737483,0.003598466568115621,0.00040802351136379097,0.0005040052608661334,0.0018420894990841305,0.00039573267233737483,0.001104720018282226,0.00040802351136379097,0.0,0.0,0.002493746549833395,0.0005040052608661334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020029302782348566,0.0,0.0,0.0004469529462591208,0.0003151337209399542,0.0006472459740826064,0.00021951610617301288,4.7158238163852556e-05,0.00013164606657019894,4.8622899422721695e-05,0.0,0.0,0.00016661821212408752,3.3674815699398106e-05,0.0,0.0,0.0,0.00017667673814749936,3.795513614388579e-05,0.00034513270712611455,3.913396342093331e-05,4.83396738015611e-05 +99825,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,620233.0,,1548.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,1142103.5955056418,0.0,0.0,0.12717467596931203,0.0010713194524680628,0.0,0.12824592325475737,0.1176764132723377,0.0052084383646699255,0.002180526591870833,0.0008009817853110833,0.002379635407590563,0.1176764132723377,0.0052084383646699255,0.002180526591870833,0.0008009817853110833,0.0013083159551225002,0.0,0.0,0.0010713194524680628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.157755858514522e-05,0.0,0.0,0.01515515781546981,0.005460046377959436,0.015226735374054952,0.014023268396068645,0.0006206794299815445,0.00025984909628238597,9.545143536780416e-05,0.00015590945776943163,0.0,0.0,7.157755858514522e-05,0.0,0.0,0.0,0.013971809467240474,0.0006184018226712912,0.00025889556991649196,9.510117261304468e-05,0.00028253591005879226 +99826,50.0,the Greater Atlanta and Macon Area,G1300770170306,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,99356.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.008852539694997559,0.0,0.0,0.008852539694997559,0.002532260794836052,0.002238162297685166,0.00408211660247634,0.0,0.0,0.002532260794836052,0.002238162297685166,0.00408211660247634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010549386834871142,0.0003373309453881457,0.0010549386834871142,0.0003017642350318899,0.00026671713080086165,0.00048645731765436254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003017642350318899,0.00026671713080086165,0.00048645731765436254,0.0,0.0 +99827,85.0,Rural Climate Zone 3A,G1302370960102,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,39994.0,,2742.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0035634622560451632,0.0008072287144484762,0.0,0.00437069097049364,0.0016117567435427545,0.0012002091230905604,0.0015586944142540267,0.0,0.0,0.0008045280290942785,0.0012002091230905604,0.0015586944142540267,0.0,0.0,0.0008072287144484762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.393333525054033e-05,0.0,0.0,0.0004246510640505272,0.0001957499776609295,0.00047858439930106747,9.587408510747783e-05,0.00014302665345730466,0.00018574666826334888,0.0,0.0,5.393333525054033e-05,0.0,0.0,0.0,0.0,0.0,0.00017648505422490068,0.000131421179417103,0.00017067480519114366,0.0,0.0 +99828,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,26763.0,,3998.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002384521030118911,0.0011769464015169014,0.0,0.0035614367420295154,0.0015780902454341746,0.0008821113538148709,0.0011012658323867666,0.0,0.0,0.0004011438439172731,0.0008821113538148709,0.0011012658323867666,0.0,0.0,0.0011769464015169014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.863571811698276e-05,0.0,0.0,0.0002841582130673348,0.00016781642197664267,0.00036279393118431757,4.78034441427467e-05,0.00010511930188929448,0.00013123546703529358,0.0,0.0,7.863571811698276e-05,0.0,0.0,0.0,0.0,0.0,0.0001607557863230311,8.985829848277712e-05,0.00011218297264572155,0.0,0.0 +99829,50.0,the Greater Atlanta and Macon Area,G1301350050545,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,136438.0,,2322.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012156490640189347,0.0006834882218561386,0.0,0.012839978862045484,0.002440959216100386,0.005455814069967814,0.004943205575977285,0.0,0.0,0.0017574709942442476,0.005455814069967814,0.004943205575977285,0.0,0.0,0.0006834882218561386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.566677254493139e-05,0.0,0.0,0.0014486646874298616,0.0004673426659672977,0.001494331459974793,0.00020943430500632007,0.0006501584559458238,0.0005890719264777177,0.0,0.0,4.5666772544931394e-05,0.0,0.0,0.0,0.0,0.0,0.00028408163193448845,0.0006349538961178035,0.0005752959319225013,0.0,0.0 +99830,50.0,the Greater Atlanta and Macon Area,G1300890021214,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,31410.0,,2655.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0025574874462581413,0.0007733725888840368,0.0,0.003330860035142178,0.0024179815040405468,0.0006850461617190546,0.00022783236938257644,0.0,0.0,0.0016446089151565101,0.0006850461617190546,0.00022783236938257644,0.0,0.0,0.0007733725888840368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.167130322078171e-05,0.0,0.0,0.0003047714115225957,0.00012495660317497155,0.00035644271474337744,0.00019598523590340334,8.163578123158423e-05,2.715039438760811e-05,0.0,0.0,5.167130322078171e-05,0.0,0.0,0.0,0.0,0.0,0.00025875355986331567,7.330830807402804e-05,2.4380846806033708e-05,0.0,0.0 +99831,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950400,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,21064.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.0068216794420180756,0.0,0.0,0.0068216794420180756,0.0033818095381265415,0.001149628324976373,0.002128631956828555,0.0,0.00016169232916034602,0.0033818095381265415,0.001149628324976373,0.002128631956828555,0.0,0.00016169232916034602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000812925928971273,0.00022145007687705752,0.000812925928971273,0.0004030034955105042,0.0001369989138300278,0.0002536648233988076,0.0,1.92685522688996e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004030034955105042,0.0001369989138300278,0.0002536648233988076,0.0,1.92685522688996e-05 +99832,50.0,the Greater Atlanta and Macon Area,G1301210011800,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,13903.0,,1839.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012387245789941775,0.0005411805174536908,0.0,0.001779905096447868,0.0007725494593320722,0.0004808754410787049,0.0005264801960370913,0.0,0.0,0.00023136894187838128,0.0004808754410787049,0.0005264801960370913,0.0,0.0,0.0005411805174536908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.615786950457138e-05,0.0,0.0,0.00014761666579311494,8.226258881255074e-05,0.0001837745352976863,2.7571836667598878e-05,5.730509467364462e-05,6.273973445187143e-05,0.0,0.0,3.615786950457138e-05,0.0,0.0,0.0,0.0,0.0,7.976544264442401e-05,4.965020938288958e-05,5.435888327037277e-05,0.0,0.0 +99833,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,16205.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003716607772623258,0.0,0.0,0.003716607772623258,0.0016172541198984174,0.0011066206466319335,0.0009203643165710131,0.0,7.245139659563332e-05,0.0016172541198984174,0.0011066206466319335,0.0009203643165710131,0.0,7.245139659563332e-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.0004429056874098597,0.00014042609941489317,0.0004429056874098597,0.0001927271026462024,0.0001318752497395003,0.00010967920621084894,0.0,8.633984960523336e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001927271026462024,0.0001318752497395003,0.00010967920621084894,0.0,8.633984960523336e-06 +99834,50.0,the Greater Atlanta and Macon Area,G1301350050525,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5434.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013048695023850532,0.0,0.0,0.0013048695023850532,0.0008633791427646303,0.0001602863089067778,0.00024307608971982456,0.0,3.804525392008141e-05,0.0008633791427646303,0.0001602863089067778,0.00024307608971982456,0.0,3.804525392008141e-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.0001554947227826818,4.215652413984219e-05,0.0001554947227826818,0.00010288454149257878,1.9100511678572437e-05,2.896615264361424e-05,0.0,4.533661182736491e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010288454149257878,1.9100511678572437e-05,2.896615264361424e-05,0.0,4.533661182736491e-06 +99835,50.0,the Greater Atlanta and Macon Area,G1301530020200,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,413354.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,280597.8237794184,0.0,0.0,0.021277497525748566,0.0,0.0,0.02127749752574857,0.012021876526891184,0.007218544314584678,0.0018060323446079983,0.0,0.00023102660930328803,0.012021876526891184,0.007218544314584678,0.0018060323446079983,0.0,0.00023102660930328803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002535598209664535,0.0005807294219435346,0.002535598209664535,0.001432623764214066,0.0008602199585874979,0.000215221379959868,0.0,2.7530994010240233e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0014326237642140658,0.0008602199585874976,0.00021522137995986794,0.0,2.7530994010240227e-05 +99836,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970300,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,35773.0,,262.0,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.008139368540832722,0.00020767746215940092,0.0,0.008347046002992123,0.0034138171756636533,0.0021301206841558627,0.0025954306810132065,0.0,0.00020767746215940092,0.0034138171756636533,0.0021301206841558627,0.0025954306810132065,0.0,0.0,0.0,0.0,0.00020767746215940092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.387656892956825e-05,0.0,0.0,0.0009699496832589038,0.00028114438171221136,0.0009838262521884719,0.00040681668014260977,0.000253841544652411,0.0003092914584638831,0.0,0.0,0.0,0.0,1.387656892956825e-05,0.0,0.0,0.0,0.0004023702464783188,0.0002510671019005984,0.00030591095805640375,0.0,2.4477945753150944e-05 +99837,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen4_led,_1000,Electricity,3164.0,,175.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0004027007420366879,0.00013861705558707924,0.0,0.0005414005046975064,0.0003640765386004313,0.00010247406436300192,4.871446643245207e-05,0.0,2.6052728227881836e-05,0.00022545948301335206,0.00010247406436300192,4.871446643245207e-05,0.0,2.6052728227881836e-05,0.00013861705558707924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.26374411013213e-06,0.0,0.0,4.799218803731968e-05,2.300148113391982e-05,5.72559321474518e-05,2.686931702397483e-05,1.2212429857925465e-05,5.805586106794268e-06,0.0,3.104855048625117e-06,9.26374411013213e-06,0.0,0.0,0.0,0.0,0.0,3.8502996228701934e-05,1.0837167725434281e-05,5.151809354544624e-06,0.0,2.7552121335849857e-06 +99838,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock 90.1-2004,gen4_led,_1000,Electricity,5183.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0012446587527028372,0.0,0.0,0.0012446587527028374,0.0010354098561423896,0.00010834626659849274,7.286493196432983e-05,0.0,2.8120405071364528e-05,0.0010354098561423896,0.00010834626659849274,7.286493196432983e-05,0.0,2.8120405071364528e-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.00014832210233126802,5.1038036551784496e-05,0.00014832210233126802,0.00012338656383049668,1.291128673360098e-05,8.683086726948444e-06,0.0,3.3510209842933848e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012338656383049666,1.2911286733600978e-05,8.683086726948443e-06,0.0,3.351020984293384e-06 +99839,50.0,the Greater Atlanta and Macon Area,G1300630040521,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,36858.0,,1702.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003170730418906351,0.0004958186372218606,0.0,0.003666549056128212,0.0021293108149841537,0.001206591237664691,0.00033064700347936637,0.0,0.0,0.0016334921777622928,0.001206591237664691,0.00033064700347936637,0.0,0.0,0.0004958186372218606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.312812064707756e-05,0.0,0.0,0.0003778496009534937,0.00014469431144079718,0.00041097772160057127,0.00019465999501181984,0.00014378706399859693,3.940254194307682e-05,0.0,0.0,3.312812064707756e-05,0.0,0.0,0.0,0.0,0.0,0.00023867110297052098,0.00013524491563254517,3.706170299750502e-05,0.0,0.0 +99840,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14368.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035304341496360772,0.0,0.0,0.0035304341496360772,0.002176188524228657,0.0005028590083349892,0.0007749652809373106,0.0,7.642133613512006e-05,0.002176188524228657,0.0005028590083349892,0.0007749652809373106,0.0,7.642133613512006e-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.0004207192501467937,0.000126102307102868,0.0004207192501467937,0.0002593347914975035,5.9925339476467824e-05,9.235204455501702e-05,0.0,9.107074617805307e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002593347914975035,5.9925339476467824e-05,9.235204455501702e-05,0.0,9.107074617805307e-06 +99841,50.0,the Greater Atlanta and Macon Area,G1300210011000,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,61496.0,,3977.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.0054227809492184585,0.0011586616977519186,0.0,0.006581442646970378,0.0038798324713801044,0.001973069019476358,0.0007285411561139153,0.0,0.0,0.0027211707736281856,0.001973069019476358,0.0007285411561139153,0.0,0.0,0.0011586616977519186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.74148271392685e-05,0.0,0.0,0.0006462213197786871,0.0002343466760002118,0.0007236361469179556,0.0003242761574078762,0.00023512645591266477,8.681870645814622e-05,0.0,0.0,7.74148271392685e-05,0.0,0.0,0.0,0.0,0.0,0.0004265914284870474,0.00021694089570381797,8.010382272709019e-05,0.0,0.0 +99842,35.0,Eastern Counties in South Carolina and Georgia,G1300510003900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,120352.0,,2072.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005639371944346255,0.00035239093322354944,0.0,0.005991762877569804,0.0027275501490538236,0.0015319386874154022,0.0012470472401179939,0.0,0.0004852622617054252,0.0027275501490538236,0.0015319386874154022,0.0008946563068944445,0.0,0.0004852622617054252,0.0,0.00035239093322354944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3544531827171257e-05,0.0,0.0,0.000672033377967403,0.00017783658475547452,0.0006955779097945742,0.00032503703574328184,0.0001825582602287583,0.00010661451416498363,0.0,5.782779361821354e-05,0.0,2.3544531827171257e-05,0.0,0.0,0.0,0.0,0.0003166386371264799,0.000177841268404473,0.0001447684980898614,0.0,5.6333622774496216e-05 +99844,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,66389.0,,11433.0,,1.8706521585294562,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,32736.412774265485,0.0,0.0,0.003254124152867971,0.00194424051187731,0.0,0.005198382395106701,0.0015598462762905654,0.0008155788949610089,0.0025548741591839286,0.0,0.0002680653343097783,0.0015598462762905654,0.0008155788949610089,0.0006106336473066185,0.0,0.0002680653343097783,0.0,0.00194424051187731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012990296673922496,0.0,0.0,0.0003877886705321917,0.00022335526298003004,0.0005176916372714167,0.00018588433793596882,9.71912073828843e-05,7.276821631484457e-05,0.0,3.194490889849404e-05,0.0,0.00012990296673922496,0.0,0.0,0.0,0.0,0.00015534051004495415,8.12211071378313e-05,0.0002544324149249535,0.0,2.669583944905044e-05 +99845,50.0,the Greater Atlanta and Macon Area,G1300570090602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2369.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.00042784369245343727,0.0,0.0,0.00042784369245343727,0.00022066247273647222,0.0001093387514833644,7.2368689521894e-05,0.0,2.5556485785445995e-05,0.00022066247273647222,0.0001093387514833644,7.2368689521894e-05,0.0,2.5556485785445995e-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,5.098198045471572e-05,1.590845393108455e-05,5.098198045471572e-05,2.6294205268351358e-05,1.302883784286375e-05,8.623474366494541e-06,0.0,3.045318376282072e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.6294205268351358e-05,1.302883784286375e-05,8.623474366494541e-06,0.0,3.045318376282072e-06 +99846,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,4324.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0006808446310219787,0.0,0.0,0.0006808446310219787,0.0005013702810076816,0.00010272218558421982,4.945883009610584e-05,0.0,2.721062726023214e-05,0.0005013702810076816,0.00010272218558421982,4.945883009610584e-05,0.0,2.721062726023214e-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,8.113832992521747e-05,2.5221235276431958e-05,8.113832992521747e-05,5.97498245877877e-05,1.224171595810497e-05,5.894159535383873e-06,0.0,3.242773389868385e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.97498245877877e-05,1.224171595810497e-05,5.894159535383873e-06,0.0,3.242773389868385e-06 +99847,50.0,the Greater Atlanta and Macon Area,G1301210009700,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11408.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002478565585819565,0.0,0.0,0.002478565585819565,0.0009788382177047033,0.00042478353072508294,0.0009887630665534203,0.0,8.609806376261903e-05,0.0009788382177047033,0.00042478353072508294,0.0009887630665534203,0.0,8.609806376261903e-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.00029536473848382265,9.815686381532426e-05,0.00029536473848382265,0.00011664581153083425,5.062043836268396e-05,0.00011782853205332686,0.0,1.0260100532623443e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00011664581153083425,5.062043836268396e-05,0.00011782853205332686,0.0,1.0260100532623443e-05 +99848,50.0,the Greater Atlanta and Macon Area,G1300890021216,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Propane,31026.0,,,6928.0,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007450005081215596,0.0,0.001778036671247631,0.009227959045389485,0.005905450479134028,0.0011053800405258437,0.0020570903380440543,0.0,0.00016012089475929918,0.004287534702645697,0.0011053800405258437,0.0020570903380440543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001617915776488332,0.00016012089475929918,0.0,0.0,0.0,0.0001433950667037594,0.000887799408170208,0.00042860451515358864,0.0010311944748739674,0.000510935325549736,0.00013172551361829133,0.0002451385690021805,0.0,0.0,0.0,0.0,0.0,0.00013048163991343108,1.291342679032832e-05,0.0,0.0006599149254750303,0.00012352263212478336,0.00022987316918874758,0.0,1.7892990332478906e-05 +99849,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,112852.0,,1347.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,149297.12424180118,0.0,0.0,0.024361898444452176,0.0010447213172453784,0.0,0.02540661976169755,0.010371527479501643,0.0026478672023620095,0.009678146264689018,0.0004191822994272478,0.002289896515717637,0.010371527479501643,0.0026478672023620095,0.008633424947443638,0.0004191822994272478,0.002289896515717637,0.0,0.0010447213172453784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979947475814973e-05,0.0,0.0,0.0029031609408283654,0.0006610894561542429,0.0029729604155865155,0.0012359551347721055,0.00031554128082117634,0.001028828773346246,4.995315457695529e-05,0.00027288259731188215,0.0,6.979947475814973e-05,0.0,0.0,0.0,0.0,0.0012136262491797916,0.0003098406813731168,0.0011324901152161173,4.905069603121717e-05,0.000267952673786273 +99850,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2007,gen5_led,_1000,NaturalGas,1713.0,,349.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.00012849738156848155,0.0001026874226721135,0.0,0.00023121549384689277,0.00012963289700149654,7.18136787366245e-05,2.9738228502473994e-05,0.0,0.0,2.694547432938304e-05,7.18136787366245e-05,2.9738228502473994e-05,0.0,0.0,0.0001026874226721135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.861983802496652e-06,0.0,0.0,1.531421207868796e-05,1.3490172349049257e-05,2.217619588118461e-05,3.2113394327891158e-06,8.558695071442519e-06,3.544177574456325e-06,0.0,0.0,6.861983802496652e-06,0.0,0.0,0.0,0.0,0.0,1.2433269365824765e-05,6.887748654363151e-06,2.8522343786657666e-06,0.0,0.0 +99851,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,51251.0,,4478.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0031078132104296954,0.000761589944436948,0.0,0.0038694031548666447,0.0014084644504861546,0.0009356843632204464,0.001257525883717245,0.0,0.0002677107270813773,0.0014084644504861546,0.0009356843632204464,0.000495935939280297,0.0,0.0002677107270813773,0.0,0.000761589944436948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.08855264871271e-05,0.0,0.0,0.0003703518465185145,0.000147923418151682,0.00042123737300564165,0.00016784387434954962,0.00011150362271266624,5.9099687925567766e-05,0.0,3.190254863923878e-05,0.0,5.08855264871271e-05,0.0,0.0,0.0,0.0,0.00015333058907248184,0.00010186202040738795,0.00013689886490049822,0.0,2.9143968433311563e-05 +99852,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,12259.0,,145.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.001276256833781091,5.386030904319508e-05,0.0,0.0013301171428242858,0.0007344763725998293,0.0001902935091446986,0.00037012494387093475,0.0,3.518356878505117e-05,0.0007344763725998293,0.0001902935091446986,0.0003162646348277397,0.0,3.518356878505117e-05,0.0,5.386030904319508e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5986919121067302e-06,0.0,0.0,0.00015208924176446248,4.978246572114053e-05,0.00015568793367656917,8.752623425464936e-05,2.2676936767321714e-05,3.768869026570552e-05,0.0,4.1927628965033815e-06,0.0,3.5986919121067302e-06,0.0,0.0,0.0,0.0,8.596920158590524e-05,2.227352935839518e-05,4.3322490822926224e-05,0.0,4.118176472698599e-06 +99853,50.0,the Greater Atlanta and Macon Area,G1300130180501,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,64863.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005473644731226781,0.0,0.0,0.00547364473122678,0.0016302625761402698,0.0016139970848024873,0.002229415759890321,0.0,0.0,0.0016302625761402698,0.0016139970848024873,0.002229415759890321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006522832145050291,0.0002153138215521834,0.0006522832145050291,0.00019427510660044095,0.0001923367807688822,0.00026567498435425596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019427510660044098,0.00019233678076888223,0.000265674984354256,0.0,0.0 +99854,50.0,the Greater Atlanta and Macon Area,G1300890022500,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,119627.0,,4958.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005706729587381036,0.0008430964158849308,0.0,0.006549808272904546,0.002447144483195688,0.0012011078736786371,0.002347818998520552,0.0,0.000553736917509669,0.0019380171550188716,0.0012011078736786371,0.0020138499108124375,0.0,0.000553736917509669,0.0005091273281768162,0.0003339690877081146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6330188467127224e-05,0.0,0.0,0.0006800593771481134,0.00022022454561622547,0.0007363895656152407,0.00023094956912954784,0.00014313358640083218,0.0002399864046555263,0.0,6.598770407103891e-05,3.401655826025863e-05,2.231363020686859e-05,0.0,0.0,0.0,0.0,0.00027513044472354857,0.00013503957192368752,0.0002639633620446519,0.0,6.225618692335274e-05 +99855,50.0,the Greater Atlanta and Macon Area,G1300630040414,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7403.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001526276338785179,0.0,0.0,0.001526276338785179,0.00103061284586551,0.00020081277503903837,0.00025556485785445995,0.0,3.912044587869241e-05,0.00103061284586551,0.00020081277503903837,0.00025556485785445995,0.0,3.912044587869241e-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.00018188272107194983,6.544313710203638e-05,0.00018188272107194983,0.00012281568154750013,2.3930380771794415e-05,3.045505625405468e-05,0.0,4.661890488080215e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012281568154750013,2.3930380771794415e-05,3.045505625405468e-05,0.0,4.661890488080215e-06 +99856,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,62190.0,,6778.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0032012522151133736,0.0011525798744719525,0.0,0.004353832089585326,0.0014830028898960566,0.0010925626010650736,0.001363961243321822,0.0,0.0004143053553023738,0.0012395295668758913,0.0010925626010650736,0.0007747458726106273,0.0,9.441417456178118e-05,0.00024347332302016508,0.0005892153707111946,0.0003198911807405926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.700827615174706e-05,0.0,0.0,0.0003814870167209267,0.00017201304992938964,0.0004584952928726738,0.00014771233405866445,0.00013019856582790676,9.232496279541413e-05,0.0,1.1251154038941327e-05,1.6267385289293154e-05,3.936773579477061e-05,2.1373155067683297e-05,0.0,0.0,0.0,0.0001561727302163081,0.00011505607002055331,0.00014363663936873996,0.0,4.3629853267072414e-05 +99857,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,126278.0,,5317.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01062906893475268,0.0015652006107891396,0.0,0.012194269545541819,0.003123741577011678,0.004773093088269119,0.004297373501048428,0.0,0.0,0.001558540966222538,0.004773093088269119,0.004297373501048428,0.0,0.0,0.0015652006107891396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010457782257342521,0.0,0.0,0.0012666447972160928,0.00042180011653483393,0.0013712226197895177,0.000185728196724679,0.0005687999169068187,0.000512109369147106,0.0,0.0,0.00010457782257342521,0.0,0.0,0.0,0.0,0.0,0.0003512588509527714,0.0005367253187697856,0.00048323154809022656,0.0,0.0 +99858,50.0,the Greater Atlanta and Macon Area,G1300670030336,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,108976.0,,4571.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00602059244523881,0.0007773876964622151,0.0,0.006797980141701025,0.003635912025325969,0.0010463750095658366,0.0009884676491679436,0.0,0.001127225457641277,0.00301859403176399,0.0010463750095658366,0.000828397946267707,0.0,0.001127225457641277,0.0006173179935619784,0.0001600697029002367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.194052158839405e-05,0.0,0.0,0.0007174614798710188,0.00020585374851312603,0.0007694020014594128,0.0003597195725932106,0.00012469433360446944,9.871846032716582e-05,0.0,0.000134329113346173,4.124559562420152e-05,1.0694925964192532e-05,0.0,0.0,0.0,0.0,0.00041151605787364783,0.00011842974087235491,0.00011187572952476924,0.0,0.0001275804731886409 +99859,85.0,Rural Climate Zone 3A,G1300090970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,67962.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005628013450904226,0.0,0.0,0.005628013450904226,0.0015872971273234856,0.0017036721144043747,0.0023370442091763645,0.0,0.0,0.0015872971273234856,0.0017036721144043747,0.0023370442091763645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006706789363672191,0.0002114046731889944,0.0006706789363672191,0.00018915497596776692,0.00020302314690161916,0.00027850081349783295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018915497596776692,0.00020302314690161916,0.00027850081349783295,0.0,0.0 +99860,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,51027.0,,783.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005695127080749412,0.00029092316568079754,0.0,0.005986011498006437,0.00303469905298198,0.0008454518582830745,0.001983531812892918,0.0,0.00012240627069600953,0.00303469905298198,0.0008454518582830745,0.0016926086472121204,0.0,0.00012240627069600953,0.0,0.00029092316568079754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.943660538817031e-05,0.0,0.0,0.0006786760348295941,0.00022977226547007536,0.0006981126402177644,0.00036163855362256783,0.00010075067802409163,0.0002017045289632142,0.0,1.4586891785971192e-05,0.0,1.943660538817031e-05,0.0,0.0,0.0,0.0,0.00035391876023779085,9.85999825024689e-05,0.00023132742583534453,0.0,1.4275509634964903e-05 +99861,50.0,the Greater Atlanta and Macon Area,G1301530021202,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,10298.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002472693383584074,0.0,0.0,0.002472693383584074,0.000977845732819832,0.00047151302738779153,0.0009549358733940437,0.0,6.831604290866793e-05,0.000977845732819832,0.00047151302738779153,0.0009549358733940437,0.0,6.831604290866793e-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.00029466357348637874,9.167197605448792e-05,0.00029466357348637874,0.00011652699031104984,5.618881601651822e-05,0.00011379688997135931,0.0,8.141021229546403e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011652699031104984,5.618881601651822e-05,0.00011379688997135931,0.0,8.141021229546403e-06 +99862,50.0,the Greater Atlanta and Macon Area,G1301210006400,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8488.0,,1547.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033748621439324395,0.0012269594389226256,0.0,0.004601821582855065,0.002697077674638815,0.0010894175752941574,0.0007143409958863982,0.0,0.00010081992288821574,0.0014701182357161893,0.0010894175752941574,0.0007143409958863982,0.0,0.00010081992288821574,0.0012269594389226256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.197776966061766e-05,0.0,0.0,0.00040217496609908267,0.00021913266580522367,0.0004841527357597004,0.0001751907859921871,0.00012982351803595435,8.512645955637243e-05,0.0,1.2014490471137893e-05,8.197776966061766e-05,0.0,0.0,0.0,0.0,0.0,0.0002837566627089114,0.00011461646001845389,7.515505353624249e-05,0.0,1.0607156450234988e-05 +99863,85.0,Rural Climate Zone 3A,G1300550010200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,21518.0,,3675.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005051534839857066,0.0028500191600333287,0.0,0.007901553999890393,0.0025752542191664713,0.0007191758046114858,0.00385447180731058,0.0004128751583479027,0.0003397770104539536,0.0025752542191664713,0.0007191758046114858,0.0010044526472772516,0.0004128751583479027,0.0003397770104539536,0.0,0.0028500191600333287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001904211147802945,0.0,0.0,0.0006019793177907129,0.0003445184776620071,0.0007924004325710072,0.00030688688233126234,8.570245954076387e-05,0.0001196982181712805,4.920134454858785e-05,4.049041319881828e-05,0.0,0.0001904211147802945,0.0,0.0,0.0,0.0,0.00025825711717924473,7.212191660990339e-05,0.0003865423342658954,4.1404824174743276e-05,3.4074240341220375e-05 +99864,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970200,ComStock 90.1-2007,gen4_led,1001_5000,DistrictHeating,3353.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.0023097037623385805,0.0008048777405194813,0.0003245606842154457,0.0,0.0,0.0034391967809648816,0.003175399097848139,0.0001268216096606359,0.00012540216848492495,0.0,1.1628498862555079e-05,7.239149996125837e-05,0.0001268216096606359,0.00012540216848492495,0.0,0.0,0.0,0.0,0.0,0.0007933038355482997,0.0,1.1628498862555079e-05,0.0023097037623385805,0.0,0.0,0.0,0.0,0.0,0.0,3.8677737836209986e-05,1.4331598453424593e-05,3.8677737836209986e-05,8.626859608211008e-06,1.5113269132635124e-05,1.49441150226702e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5711028374901865e-05,1.4262553970651437e-06,1.4102921425134027e-06,0.0,1.3077589305849142e-07 +99865,50.0,the Greater Atlanta and Macon Area,G1300590000600,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,82683.0,,10800.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.007583425317091549,0.003246305720108078,0.0,0.010829699699177424,0.0032589662810784776,0.0018764580935286368,0.0036732549346148104,0.0,0.0020210517279777014,0.0032589662810784776,0.0018764580935286368,0.002448000942484435,0.0,0.0,0.0,0.0012252539921303756,0.0020210517279777014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021689897913600145,0.0,0.0,0.0009037004103486596,0.0005412955213896067,0.001120599389484661,0.00038836397041918817,0.00022361345674519825,0.0002917229831842732,0.0,0.0,0.0,8.186423676280898e-05,0.0001350347423731924,0.0,0.0,0.0,0.0003372203963518053,0.0001941658450752293,0.000380088769909615,0.0,0.00020912762083890053 +99866,50.0,the Greater Atlanta and Macon Area,G1300630040609,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,38242.0,,2152.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0032035339062991223,0.0006267895979974465,0.0,0.003830353877896007,0.002545034270488663,0.0009941886567964926,0.0002911309506108512,0.0,0.0,0.0019182446724912163,0.0009941886567964926,0.0002911309506108512,0.0,0.0,0.0006267895979974465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.187875294076209e-05,0.0,0.0,0.00038176018543739827,0.00014762681120428857,0.0004236389383781604,0.0002285942535037962,0.00011847592598664013,3.4693625521872955e-05,0.0,0.0,4.187875294076209e-05,0.0,0.0,0.0,0.0,0.0,0.0002814819859615919,0.00010995773250700943,3.2199219909559e-05,0.0,0.0 +99867,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,39249.0,,2784.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.002020356953453597,0.0004734715713610901,0.0,0.0024938285248146874,0.0012008241878959163,0.00033482014505627715,0.0006251725436710618,0.0,0.00033301164819143176,0.001071428010252371,0.00033482014505627715,0.00028109714995351717,0.0,0.00033301164819143176,0.00012939617764354532,0.0003440753937175447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.163485915764182e-05,0.0,0.0,0.00024076154487116423,0.00010115328641731848,0.000272396404028806,0.00012767974615854097,3.9899788619005567e-05,3.349773611341423e-05,0.0,3.968427398020348e-05,8.64556628716559e-06,2.2989292870476226e-05,0.0,0.0,0.0,0.0,0.0001311638660793509,3.657180219177673e-05,6.828647242544203e-05,0.0,3.6374263332236314e-05 +99868,85.0,Rural Climate Zone 3A,G1301930000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,72140.0,,10691.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003713446895815859,0.0018181599118193145,0.0,0.005531589077273753,0.001975694173036484,0.0007643736111798963,0.0020726260589199125,0.0,0.0007188775037760409,0.001726529404000482,0.0007643736111798963,0.0011120482682657118,0.0,0.000110477882008349,0.000249164769036002,0.0009605777906542006,0.0006083996217676918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012147823783464542,0.0,0.0,0.0004425237158361934,0.0002336325765630193,0.0005640019536708388,0.0002057469054477703,9.108880783715686e-05,0.0001325204710525499,0.0,1.3165418608552907e-05,1.664765396938195e-05,6.417988679279912e-05,4.064951243900749e-05,0.0,0.0,0.0,0.00020144218196299033,7.793568972993337e-05,0.00021132537687272438,0.0,7.329689731391405e-05 +99869,50.0,the Greater Atlanta and Macon Area,G1301350050723,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,106690.0,,23418.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005491908528415676,0.00398250513036516,0.0,0.009474413658780836,0.004614539323905782,0.0011747960173312789,0.001930127144186948,0.0,0.0017549334429954062,0.0035238738715126544,0.0011747960173312789,0.0005432050828261578,0.0,0.0002500158263841646,0.001090665452393128,0.0013869220613607904,0.0015049176166112416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002660879768737116,0.0,0.0,0.0006544593881294083,0.0004023124584559752,0.0009205473650031199,0.000419932765788561,0.00013999801320458205,6.473262697216649e-05,0.0,2.979386927357508e-05,7.287196228840235e-05,9.266611675530282e-05,0.00010054989783000642,0.0,0.0,0.0,0.0004483551350312653,0.00011414483440547071,0.00018753386971399414,0.0,0.0001705118031455211 +99870,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,66566.0,,3810.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,32736.412774265485,0.0,0.0,0.003208113864982934,0.0006479915188186697,0.0,0.003856105383801605,0.0018668652146401996,0.0007834692104292933,0.0005832225085512169,0.0,0.0006225307198194739,0.0012188736958215298,0.0007834692104292933,0.0005832225085512169,0.0,0.0006225307198194739,0.0006479915188186697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.329530968135145e-05,0.0,0.0,0.00038230388018724824,0.00014628088676595978,0.00042559918986859966,0.00014525050013248873,9.336430431092316e-05,6.950134484483358e-05,0.0,7.418561801079079e-05,4.329530968135145e-05,0.0,0.0,0.0,0.0,0.0,0.00020604631976147697,8.647166715059211e-05,6.437039511296228e-05,0.0,6.87088509397221e-05 +99872,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,86302.0,,1428.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0077353459569422835,0.00042023277903444414,0.0,0.00815557873597673,0.002902438825998943,0.002808467251515377,0.0024446726584624085,0.0,0.0,0.002482206046964499,0.002808467251515377,0.0024446726584624085,0.0,0.0,0.00042023277903444414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8076530571016613e-05,0.0,0.0,0.0009218068847876858,0.00030503002206676706,0.0009498834153587024,0.0002957999081476083,0.0003346798530483541,0.0002913271235917234,0.0,0.0,2.8076530571016613e-05,0.0,0.0,0.0,0.0,0.0,0.0003380481746497905,0.0003271032689592448,0.00028473197174966704,0.0,0.0 +99873,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,68679.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006119231289305256,0.0,0.0,0.006119231289305256,0.0016667832076345357,0.0023575448661832302,0.002094872525881192,0.0,0.0,0.0016667832076345357,0.0023575448661832302,0.002094872525881192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007292166785653276,0.00021525160186094998,0.0007292166785653276,0.0001986272551397079,0.00028094395449498676,0.00024964181171100634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001986272551397079,0.00028094395449498676,0.00024964181171100634,0.0,0.0 +99874,50.0,the Greater Atlanta and Macon Area,G1300890021910,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,69355.0,,4013.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006454239031650979,0.0011812122567922824,0.0,0.007635451288443261,0.003942417514609197,0.0013559895646576999,0.0023370442091763645,0.0,0.0,0.002761205257816915,0.0013559895646576999,0.0023370442091763645,0.0,0.0,0.0011812122567922824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.892080567600692e-05,0.0,0.0,0.0007691406944089001,0.0003110006038245689,0.0008480615000849071,0.00032904813704421427,0.00016159097149292628,0.00027850158587175964,0.0,0.0,7.892080567600692e-05,0.0,0.0,0.0,0.0,0.0,0.00043788014422421284,0.00015060832698175026,0.0002595730288789441,0.0,0.0 +99875,50.0,the Greater Atlanta and Macon Area,G1300210013603,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,161451.0,,1584.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.013723747454600432,0.0004663592572998914,0.0,0.014190106711900324,0.0036429483363562133,0.005550123230120655,0.0049970044558171585,0.0,0.0,0.003176589079056322,0.005550123230120655,0.0049970044558171585,0.0,0.0,0.0004663592572998914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.115999953617979e-05,0.0,0.0,0.001635432069214955,0.00045682605899032426,0.0016665920687511347,0.0003785478906393913,0.0006613973004575729,0.0005954832208977967,0.0,0.0,3.115999953617979e-05,0.0,0.0,0.0,0.0,0.0,0.0004278550491202291,0.0006518479066935635,0.0005868855085208646,0.0,0.0 +99876,50.0,the Greater Atlanta and Macon Area,G1300890023214,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,32314.0,,3389.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0028248555012783507,0.0009975349631005312,0.0,0.0038223904643788814,0.001885538721324561,0.0007548722461045953,0.001181979496949725,0.0,0.0,0.0008880037582240301,0.0007548722461045953,0.001181979496949725,0.0,0.0,0.0009975349631005312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.665031135848299e-05,0.0,0.0,0.00033663179660005415,0.00017450639828370563,0.00040328210795853716,0.0001058214483478105,8.99564598241263e-05,0.0001408538884281173,0.0,0.0,6.665031135848299e-05,0.0,0.0,0.0,0.0,0.0,0.0001989341584172185,7.964295471261453e-05,0.00012470499482870415,0.0,0.0 +99877,81.0,the Columbus-Albany Area,G1302730120200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,24066.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001183998074908286,0.0,0.0,0.001183998074908286,0.0005874955256534496,0.00035597246623040007,9.249929552841547e-05,0.0,0.0001480130571346008,0.0005874955256534496,0.00035597246623040007,9.249929552841547e-05,0.0,0.0001480130571346008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014109461558238119,3.544943673606168e-05,0.00014109461558238119,7.00106335518015e-05,4.242050670950712e-05,1.102295081453896e-05,0.0,1.763841161582734e-05,0.0,0.0,0.0,0.0,0.0,0.0,7.00106335518015e-05,4.242050670950712e-05,1.102295081453896e-05,0.0,1.763841161582734e-05 +99878,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,87766.0,,12395.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.013782119085778663,0.003648564534308693,0.0,0.017430714309693656,0.007309098015073491,0.003994190880433422,0.006127394724580445,0.0,0.0,0.0036605334807647974,0.003994190880433422,0.006127394724580445,0.0,0.0,0.003648564534308693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002437767753945598,0.0,0.0,0.001642390202027314,0.0007317427092286058,0.0018861669774218736,0.00043621915364268343,0.00047598050243375,0.0007301905459508807,0.0,0.0,0.0002437767753945598,0.0,0.0,0.0,0.0,0.0,0.0007909130438277301,0.00043220896208501534,0.0006630416506055252,0.0,0.0 +99879,50.0,the Greater Atlanta and Macon Area,G1300890023306,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,75659.0,,3213.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007051090494928703,0.0009457615972763066,0.0,0.00799685209220501,0.003743487486587488,0.0017010328082627724,0.0025523317973547496,0.0,0.0,0.0027977258893111816,0.0017010328082627724,0.0025523317973547496,0.0,0.0,0.0009457615972763066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.318931473945375e-05,0.0,0.0,0.0008402662412789632,0.0003171263423323321,0.0009034555560184169,0.0003334001483644441,0.00020270913344810383,0.0003041569594664153,0.0,0.0,6.318931473945375e-05,0.0,0.0,0.0,0.0,0.0,0.0004229257374835765,0.00019217656196150317,0.0002883532565733373,0.0,0.0 +99880,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,18671.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0009170674837293912,0.0,0.0,0.0009170674837293912,0.0005257584071888258,0.0001884028204494811,6.335058135384867e-05,0.0,0.0001395556747372356,0.0005257584071888258,0.0001884028204494811,6.335058135384867e-05,0.0,0.0001395556747372356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010928535117651585,2.9420817739849552e-05,0.00010928535117651585,6.265372307169392e-05,2.2451639340364198e-05,7.5493795749220105e-06,0.0,1.6630609189535722e-05,0.0,0.0,0.0,0.0,0.0,0.0,6.265372307169392e-05,2.2451639340364198e-05,7.5493795749220105e-06,0.0,1.6630609189535722e-05 +99881,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,5072.0,,650.0,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0012178616608113017,0.0005152650693958853,0.0,0.0017330440231334478,0.0010196955121319212,0.0003280989615238326,0.00032611399175408917,0.0,5.9300971871083426e-05,0.000504430442736036,0.0003280989615238326,0.00032611399175408917,0.0,5.9300971871083426e-05,0.0005152650693958853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.442507122826095e-05,0.0,0.0,0.0001451264248233262,8.74195288328039e-05,0.00017955149605158717,6.0110428862306736e-05,3.909789658907539e-05,3.886135776423601e-05,0.0,7.066597392076394e-06,3.442507122826095e-05,0.0,0.0,0.0,0.0,0.0,0.00010564524171136861,3.399259257595907e-05,3.378694038996889e-05,0.0,6.143859056456428e-06 +99882,85.0,Rural Climate Zone 3A,G1300310110300,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,NaturalGas,129276.0,,12590.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006654523787451378,0.0021411007147241565,0.0,0.008795624502175534,0.004464345432316516,0.0015417790380035318,0.0013886419064185356,0.0,0.001400858125436952,0.003867896074145939,0.0015417790380035318,0.0010159319790076058,0.0,0.00022891669629430183,0.0005964493581705762,0.00037270992741093,0.0011719414291426501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014305540168637262,0.0,0.0,0.0007930068695694647,0.0003847850860688809,0.0009360622712558372,0.0004609297758259617,0.0001837308585177155,0.00012106667044868822,0.0,2.727956477709932e-05,3.985113915095002e-05,2.4902223427233074e-05,7.83020391081895e-05,0.0,0.0,0.0,0.00047511183816580603,0.00016408171901054444,0.0001477843098647129,0.0,0.00014908440421477402 +99883,50.0,the Greater Atlanta and Macon Area,G1300570090501,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,20991.0,,2951.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0020023433628936177,0.0008687613750753704,0.0,0.002871104737968988,0.001304308267652368,0.0006135159194973763,0.0009532498612129461,0.0,0.0,0.00043554689257699786,0.0006135159194973763,0.0009532498612129461,0.0,0.0,0.0008687613750753704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8046516401093144e-05,0.0,0.0,0.00023861393822225316,0.00012062766978973868,0.0002966604546233463,5.1902965916931826e-05,7.311106198177736e-05,0.00011359625312470544,0.0,0.0,5.8046516401093144e-05,0.0,0.0,0.0,0.0,0.0,0.00013476926791756777,6.339229258682583e-05,9.849572307735465e-05,0.0,0.0 +99884,50.0,the Greater Atlanta and Macon Area,G1301990970500,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,41489.0,,3679.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0020626084047175824,0.0006256335330679832,0.0,0.002688241937785566,0.001187650529360817,0.00021749834353978773,0.0009777230501473919,0.0,0.00030535228437614936,0.0009160568531284483,0.00021749834353978773,0.0008685926756069668,0.0,6.044280208096001e-05,0.00027159367623236886,0.00010913037454042498,0.0002449094822951894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.180131745867365e-05,0.0,0.0,0.00024579715004430025,0.00010765686144665506,0.0002875984675029739,0.00010916476596455678,2.591886703223044e-05,0.00010350854952652948,0.0,7.20285462728243e-06,1.8146363453833333e-05,7.291478460526448e-06,1.6363475544313867e-05,0.0,0.0,0.0,0.0001270594239946392,2.3268809777592246e-05,0.00010460057441718,0.0,3.266776245126711e-05 +99885,81.0,the Columbus-Albany Area,G1300950001100,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,Electricity,439306.0,,2497.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02877311419824441,0.0004245535042031644,0.0,0.029197667702447572,0.02009215194337236,0.00519777956281842,0.0020027507045634846,0.0,0.0019049677613318932,0.02009215194337236,0.00519777956281842,0.0015781972003603203,0.0,0.0019049677613318932,0.0,0.0004245535042031644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8366032093953803e-05,0.0,0.0,0.0034288368759315315,0.0010944862717789019,0.003457202908025485,0.0023943432409015363,0.0006194094290649465,0.00018807073578492055,0.0,0.00022701135728693804,0.0,2.8366032093953803e-05,0.0,0.0,0.0,0.0,0.0023790477662465463,0.0006154525355579998,0.00023713933696445735,0.0,0.00022556116986081537 +99886,35.0,Eastern Counties in South Carolina and Georgia,G1301270000200,ComStock DOE Ref Pre-1980,gen5_led,5001_10000,NaturalGas,23472.0,,635.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0011783775503381294,0.00010797790104812156,0.0,0.001286337721024831,0.0007519091671015993,0.0002343953779730981,0.000151435016888671,0.0,0.0001486158894228826,0.0007519091671015993,0.0002343953779730981,0.000151435016888671,0.0,4.063798837476103e-05,0.0,0.0,0.00010797790104812156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.213930260800692e-06,0.0,0.0,0.00014042429018155562,5.174504020985066e-05,0.00014763822044235633,8.96031251112594e-05,2.7932307912913817e-05,1.8046130248426393e-05,0.0,4.842726908956011e-06,0.0,0.0,7.213930260800692e-06,0.0,0.0,0.0,8.629967818772498e-05,2.6902512394871823e-05,1.7380813794599108e-05,0.0,1.7057251050969407e-05 +99887,85.0,Rural Climate Zone 3A,G1302770960300,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,10772.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0025865810241231003,0.0,0.0,0.0025865810241231003,0.0013204184322480428,0.0005686938390314779,0.000628987295787433,0.0,6.856416412988585e-05,0.0013204184322480428,0.0005686938390314779,0.000628987295787433,0.0,6.856416412988585e-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.00030823869293627624,8.427747648625695e-05,0.00030823869293627624,0.0001573521370060641,6.777032847188833e-05,7.495540256380319e-05,0.0,8.170680963233772e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001573521370060641,6.777032847188833e-05,7.495540256380319e-05,0.0,8.170680963233772e-06 +99888,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5487.0,,287.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016709310107552282,0.0002276925740043133,0.0,0.0018986235847595412,0.0011819667908084424,0.0004376031271546756,0.00023472267527215447,0.0,4.441369859800809e-05,0.0009542742168041291,0.0004376031271546756,0.00023472267527215447,0.0,4.441369859800809e-05,0.0002276925740043133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5214747578760205e-05,0.0,0.0,0.00019912269462450641,8.15594096869206e-05,0.0002143374422032666,0.00011371962830161633,5.214860056715653e-05,2.7971598641011193e-05,0.0,5.292723210085628e-06,1.5214747578760205e-05,0.0,0.0,0.0,0.0,0.0,0.00013343336759569972,4.940143782442427e-05,2.6498068521208858e-05,0.0,5.013905143019436e-06 +99889,50.0,the Greater Atlanta and Macon Area,G1300450910600,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,12551.0,,464.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0007006329618748067,7.882918687355477e-05,0.0,0.0007794621487483614,0.00043809950032808474,0.00015735695760296862,6.588602303691622e-05,0.0,0.00011810193741897172,0.00035927031345452993,0.00015735695760296862,6.588602303691622e-05,0.0,0.00011810193741897172,7.882918687355477e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.26693512305629e-06,0.0,0.0,8.349321464674852e-05,3.251053660079608e-05,8.876014976980479e-05,4.281362001181964e-05,1.8751955663272927e-05,7.851523069827853e-06,0.0,1.407400300541532e-05,5.26693512305629e-06,0.0,0.0,0.0,0.0,0.0,4.988796098134995e-05,1.791880099192524e-05,7.502677688562726e-06,0.0,1.3448691088136794e-05 +99890,50.0,the Greater Atlanta and Macon Area,G1301510070311,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,32377.0,,1868.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0028847309231651687,0.0005499577448548339,0.0,0.003434688668020003,0.0010216569936505255,0.0013117658419827102,0.0011012658323867666,0.0,0.0,0.0004716992487956918,0.0013117658419827102,0.0011012658323867666,0.0,0.0,0.0005499577448548339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6744945785707956e-05,0.0,0.0,0.0003437672875025398,0.00013872327823388606,0.0003805122332882477,5.621140258640208e-05,0.00015632036309372704,0.0001312355218224107,0.0,0.0,3.6744945785707956e-05,0.0,0.0,0.0,0.0,0.0,0.00011318434416724682,0.00014532407397839088,0.00012200381514260995,0.0,0.0 +99891,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,16397.0,,10746.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0034963485870110386,0.007392177412579031,0.0,0.010888525999590072,0.004292942305081431,0.0003226681495992341,0.0038005847040592606,0.0003659870120926632,0.002106415548728496,0.0017432973354764576,0.0003226681495992341,0.000807279993751718,0.0003659870120926632,0.0002571878160619812,0.0025496449696049725,0.002993304710307543,0.001849227732666515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004939030579507815,0.0,0.0,0.0004166525905908206,0.000614734551113227,0.0009105556485416021,0.0002077451183485349,3.845169241165337e-05,9.620187814749287e-05,4.3613911175076055e-05,3.0648537227870414e-05,0.00017035270893713282,0.00019999551786779683,0.00012355483114585185,0.0,0.0,0.0,0.00035899834972174063,2.6983202890190138e-05,0.0003178248249737621,3.0605753355999175e-05,0.00017614951520001873 +99892,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300830040102,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,101161.0,,9679.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004840548240927196,0.001646069023876282,0.0,0.006486617264803477,0.0031260754826923495,0.0011818704315378799,0.0012632527904559222,0.0,0.0009154185601173263,0.002105835025859671,0.0011818704315378799,0.0006374242234123184,0.0,0.0009154185601173263,0.0010202404568326784,0.0006258285670436037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010998054093099973,0.0,0.0,0.000576838873244629,0.00023767636531652237,0.0006868194141756289,0.000250948331283088,0.00014084123824760535,7.596062522487414e-05,0.0,0.00010908867848906153,6.816639867137288e-05,4.181414225962686e-05,0.0,0.0,0.0,0.0,0.0003309967651924665,0.0001251394254174386,0.00013375639506348324,0.0,9.692682850224064e-05 +99893,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970800,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,16662.0,,4032.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,22700.572550927158,0.006162466789545363,0.0,0.007191002893880242,0.0027736981590577416,0.0,0.016127167842483345,0.010330544625088617,0.000329696706758764,0.0031207510988022834,0.0003607514542085236,0.0019853522376541448,0.004168077835543252,0.000329696706758764,0.0021044073895400595,0.0003607514542085236,0.00022806950782964315,0.0,0.0010163437092622239,0.0017572827298245016,0.0,0.0,0.0,0.006162466789545363,0.0,0.0,0.0,0.0001853200020687148,0.0,0.0,0.0008569376562208349,0.00047780876864735315,0.00104225765828955,0.0004967016289725233,3.92893073918833e-05,0.00025077808516263644,4.299004050058145e-05,2.7178594193210544e-05,0.0,6.790530457971134e-05,0.00011740990563912835,0.0,0.0,0.0,0.0006676367081290689,2.1307455896065885e-05,0.0002016861710692875,2.3314444889539133e-05,0.00012830824322708194 +99894,50.0,the Greater Atlanta and Macon Area,G1300770170405,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,45435.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0039443459965858895,0.0,0.0,0.0039443459965858895,0.0027434042484166202,0.0009664575605098252,0.00023445381406000633,0.0,0.0,0.0027434042484166202,0.0009664575605098252,0.00023445381406000633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00047004022458305633,0.00011996372950727794,0.00047004022458305633,0.0003269262762861122,0.0001151709127914329,2.7939415941326586e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003269262762861122,0.0001151709127914329,2.7939415941326586e-05,0.0,0.0 +99895,50.0,the Greater Atlanta and Macon Area,G1301350050714,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,21163.0,,5156.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004358350918647668,0.0035464808467509505,0.0,0.007904760045427605,0.002145216053047942,0.0006562377347928411,0.0033138929807473233,0.00036534153235352274,0.001424071744485973,0.002145216053047942,0.0006562377347928411,0.0010235874263348009,0.00036534153235352274,0.00016796817211856108,0.0,0.0022903055544125227,0.0012561035723674119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023695297171868676,0.0,0.0,0.0005193721912865046,0.00040000923614980587,0.0007563251630051913,0.0002556392504989491,7.820197058157147e-05,0.0001219779807803484,4.3536703622133896e-05,2.001628580350168e-05,0.0,0.00015302344231156426,8.392473754132702e-05,0.0,0.0,0.0,0.00020525365370721642,6.278863733813748e-05,0.00031707232533835847,3.495577252464179e-05,0.0001362547740968369 +99896,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,27059.0,,5045.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005634249203015388,0.003470457677474403,0.0,0.009104635160518777,0.002928326416567399,0.00047069816977545533,0.0037381166093046632,0.0003691426908173501,0.0015983512740539078,0.0021414148945841146,0.00047069816977545533,0.0010545704538135448,0.0003691426908173501,0.0015983512740539078,0.0007869115219832843,0.002683546155491119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002318747291200056,0.0,0.0,0.000671418487816204,0.000390858640754257,0.0009032932169362097,0.0002551867158341656,5.609184861744354e-05,0.00012567035533610996,4.398975237452109e-05,0.0001904712689758261,5.2576608896747224e-05,0.0001792981202232584,0.0,0.0,0.0,0.0,0.00029052645629676506,4.669912154483637e-05,0.0003708677303121159,3.6623553038438644e-05,0.00015857635574405355 +99897,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,47405.0,,9900.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.0044100340231655,0.0028841858818105994,0.0,0.0072942199049761,0.005416007636543841,0.0013382000440284698,0.0005400122244037897,0.0,0.0,0.0025318217547332413,0.0013382000440284698,0.0005400122244037897,0.0,0.0,0.0028841858818105994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019270520154973685,0.0,0.0,0.0005255342642958461,0.0003551788503043155,0.0007182394658455831,0.0003017117501163593,0.00015947041948541864,6.435209469406824e-05,0.0,0.0,0.00019270520154973685,0.0,0.0,0.0,0.0,0.0,0.0005332976634325358,0.00013176845465844136,5.317334775460597e-05,0.0,0.0 +99898,50.0,the Greater Atlanta and Macon Area,G1301530021108,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,27017.0,,2338.0,,8.53126424238864,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00634255810232918,0.0018131413387455974,0.0,0.008155699441074776,0.002557383986108327,0.00038578679601994586,0.004214383152748598,0.0003227153852264942,0.0006753492601883436,0.002557383986108327,0.00038578679601994586,0.003076591074191344,0.0003227153852264942,0.0,0.0,0.0011377920785572537,0.0006753492601883436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012114437978383272,0.0,0.0,0.000755826599599565,0.0003405921018256177,0.0008769709793833977,0.0003047569783209087,4.597323627182646e-05,0.00036662957318600993,3.845717584591478e-05,0.0,0.0,7.602116433743523e-05,4.5123215446397486e-05,0.0,0.0,0.0,0.0002749919311226214,4.148311579934951e-05,0.0004531667391210013,3.4701135014714705e-05,7.261936347855104e-05 +99899,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000201,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,17046.0,,1628.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004093007665210845,0.0012916363705867638,0.0,0.00538464403579761,0.0025972502366354714,0.0012915536635130244,0.0012633505513679208,0.0,0.00023240687720745384,0.001538020743256161,0.0012915536635130244,0.0012633505513679208,0.0,0.0,0.00105922949337931,0.0,0.00023240687720745384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.630006834698238e-05,0.0,0.0,0.00048775179956128244,0.00022099302361689927,0.0005740518679082649,0.0001832814513547044,0.00015391068747876225,0.0001505498047667837,0.0,0.0,7.077191364025123e-05,0.0,1.5528154706731158e-05,0.0,0.0,0.0,0.0002768904202123223,0.00013769132891875376,0.00013468462149295363,0.0,2.4776679960405873e-05 +99900,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,13801.0,,285.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.000647051809663407,4.8439347399584246e-05,0.0,0.0006954911570629912,0.00036698302067225295,0.000200796343082098,4.7322334630120934e-05,0.0,8.037172831709935e-05,0.00031854367327266864,0.000200796343082098,4.7322334630120934e-05,0.0,8.037172831709935e-05,4.8439347399584246e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2362267279814424e-06,0.0,0.0,7.710765838054068e-05,2.0386131634829333e-05,8.034388510852213e-05,3.796010824970663e-05,2.3928432924854035e-05,5.6392924924004795e-06,0.0,9.577711827670052e-06,3.2362267279814424e-06,0.0,0.0,0.0,0.0,0.0,4.2394272522719405e-05,2.319620911777936e-05,5.4667268993689285e-06,0.0,9.284628338268771e-06 +99901,81.0,the Columbus-Albany Area,G1302150010501,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,69524.0,,1919.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006194543583159819,0.0005649342727281128,0.0,0.0067594471662816335,0.0015226034372479282,0.00289979951985734,0.0023370442091763645,0.0,0.0,0.0009576691645198153,0.00289979951985734,0.0023370442091763645,0.0,0.0,0.0005649342727281128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.774486612904097e-05,0.0,0.0,0.0007381900040063465,0.00024219625795553594,0.0007759348701353876,0.00011412330786008094,0.0003455626698632695,0.00027850036907075865,0.0,0.0,3.774486612904097e-05,0.0,0.0,0.0,0.0,0.0,0.0001747836873764006,0.00033287567881041944,0.00026827550394856756,0.0,0.0 +99902,50.0,the Greater Atlanta and Macon Area,G1301350050320,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,864906.0,,10579.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,2664908.3895131643,0.32880341978882466,0.0,0.181212765255433,0.007322354794558406,0.0,0.5173384676717934,0.4735587041660683,0.01893511125760309,0.016680757801476626,0.0007887133914465112,0.007375181055198799,0.14475528437724364,0.01893511125760309,0.00935840300691822,0.0007887133914465112,0.007375181055198799,0.0,0.007322354794558406,0.0,0.0,0.0,0.0,0.32880341978882466,0.0,0.0,0.0,0.0004892359319087149,0.0,0.0,0.021594774299988174,0.007781718671520028,0.022084010231896888,0.017250206907062582,0.0022564605389511576,0.0011152227629100241,9.398944744128607e-05,0.0008788860436187826,0.0,0.0004892359319087149,0.0,0.0,0.0,0.0,0.020215151050476363,0.0008082971147243221,0.0007120638595104583,3.3668392542170356e-05,0.00031482981464357604 +99903,50.0,the Greater Atlanta and Macon Area,G1302170100502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,83426.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0073566072782212414,0.0,0.0,0.0073566072782212414,0.00437613708619297,0.002331598987239581,0.00064890157838813,0.0,0.0,0.00437613708619297,0.002331598987239581,0.00064890157838813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008766742412975169,0.00026114015632576926,0.0008766742412975169,0.0005214967327683373,0.0002778526426440629,7.732848545474128e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005214967327683373,0.0002778526426440629,7.732848545474128e-05,0.0,0.0 +99904,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,14545.0,,156.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003227560845602733,0.00012397790353522182,0.0,0.003351538749137955,0.0017667058021453462,0.0009134169223769111,0.0005472727069329972,0.0,0.00012397790353522182,0.0017667058021453462,0.0009134169223769111,0.0005472727069329972,0.0,0.0,0.0,0.0,0.00012397790353522182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.285581038697644e-06,0.0,0.0,0.0003846188960456872,0.00012909507843853802,0.00039290447708438477,0.00021053311394095747,0.00010884919762014575,6.521687256904243e-05,0.0,0.0,0.0,0.0,8.285581038697644e-06,0.0,0.0,0.0,0.00020711281334056075,0.00010708084408656675,6.415736556689716e-05,0.0,1.4534062412691375e-05 +99905,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950600,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,42919.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0035049311335199336,0.0,0.0,0.0035049311335199345,0.002432135601378539,0.0008860282691986584,0.00018676726294273595,0.0,0.0,0.002432135601378539,0.0008860282691986584,0.00018676726294273595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041767701073099707,0.00011466087785188124,0.00041767701073099707,0.0002898336911561594,0.00010558656498634172,2.2256754588495945e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028983369115615935,0.0001055865649863417,2.2256754588495938e-05,0.0,0.0 +99906,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,9887.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0023739411375393407,0.0,0.0,0.002373941137539341,0.0011495456179026337,0.0007197996627531924,0.00042354292461899335,0.0,8.097022519078196e-05,0.0011495456179026337,0.0007197996627531924,0.00042354292461899335,0.0,8.097022519078196e-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.0002829003392292982,9.902302678225848e-05,0.0002829003392292982,0.00013699027331456694,8.577785082787799e-05,5.047321315518365e-05,0.0,9.64914580724952e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013699027331456692,8.577785082787798e-05,5.0473213155183645e-05,0.0,9.649145807249516e-06 +99907,50.0,the Greater Atlanta and Macon Area,G1301350050526,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,126464.0,,5961.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010111006769634329,0.0017364586798562715,0.0,0.011847495823090038,0.007490554851741728,0.00254980292560039,0.0018071076721484823,0.0,0.0,0.005754096171885457,0.00254980292560039,0.0018071076721484823,0.0,0.0,0.0017364586798562715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011602059656392167,0.0,0.0,0.0012049100445435698,0.0003949549475557827,0.0013209306411074912,0.0006857050373654564,0.00030385531596015356,0.00021534969121795986,0.0,0.0,0.00011602059656392167,0.0,0.0,0.0,0.0,0.0,0.0008351556793359026,0.0002842890061751983,0.00020148256910706148,0.0,0.0 +99908,85.0,Rural Climate Zone 3A,G1301750950400,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,90462.0,,5878.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.029138254227751008,0.005198839842340479,0.0,0.03433718628734426,0.025995674687746773,0.0043011971038464,0.0010748842983241207,0.0006575090122727334,0.0023078289679014626,0.020796834845406294,0.0043011971038464,0.0010748842983241207,0.0006575090122727334,0.0023078289679014626,0.005198839842340479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003473591549839043,0.0,0.0,0.0034723534222395936,0.0010928920542242744,0.0038197125772234976,0.002478321456143459,0.0005125659336530826,0.00012809203127353737,7.835416806625956e-05,0.00027501983310325553,0.0003473591549839043,0.0,0.0,0.0,0.0,0.0,0.002891792144156979,0.0004784706742478424,0.00011957150591811782,7.314214457757207e-05,0.0002567258499576885 +99909,35.0,Eastern Counties in South Carolina and Georgia,G1302450001601,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,61211.0,,6884.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.014369850619891135,0.005338833202099544,0.0,0.019708602961207612,0.00844615137385693,0.0009856120848222847,0.00820817808928625,0.00043495015212561075,0.0016337921218996028,0.00844615137385693,0.0009856120848222847,0.00450313700908631,0.00043495015212561075,0.0,0.0,0.003705041080199941,0.0016337921218996028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035670743353409876,0.0,0.0,0.0017124257778708403,0.0008894022179781587,0.002069133211404939,0.0010065106255433985,0.0001174533810876517,0.0005366296490910922,5.183212214869788e-05,0.0,0.0,0.0002475476653469505,0.00010915976818714827,0.0,0.0,0.0,0.0008867301426995717,0.0001034757614368671,0.0008617462091604213,4.566380513322734e-05,0.00017152578224890466 +99910,50.0,the Greater Atlanta and Macon Area,G1300630040302,ComStock DOE Ref 1980-2004,gen3_t5_cfl,_1000,NaturalGas,10129.0,,4122.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0019307016197402497,0.002835233894189136,0.0,0.004765935513929386,0.0013037256331217776,0.0001297414275672404,0.002284926556586352,0.00037380448893336487,0.0006736656877496346,0.0007093822333154089,0.0001297414275672404,0.000613492632067537,0.00037380448893336487,0.00010420911788568286,0.0005943433998063688,0.0016714339245188156,0.0005694565698639517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018943527756618602,0.0,0.0,0.0002300773990881642,0.00025872963133301193,0.0004195126766543502,8.453549607656137e-05,1.5460996097715044e-05,7.310854650074875e-05,4.4545445915583654e-05,1.241836778882253e-05,3.971087081834928e-05,0.00011167634179095331,3.8048064956883465e-05,0.0,0.0,0.0,0.00011475804243999844,1.1420249685001498e-05,0.00020112644262822702,3.2903450170385743e-05,5.929817871266947e-05 +99911,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,3157.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0004207308841118569,0.0,0.0,0.0004207308841118568,0.0002128880078049773,0.00011223349906424016,6.988747730971477e-05,0.0,2.5721899932924608e-05,0.0002128880078049773,0.00011223349906424016,6.988747730971477e-05,0.0,2.5721899932924608e-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,5.013796506743611e-05,1.6539613668410953e-05,5.013796506743611e-05,2.5369593489990277e-05,1.337472352988221e-05,8.328401903279637e-06,0.0,3.0652461442839847e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.536959348999028e-05,1.3374723529882211e-05,8.328401903279637e-06,0.0,3.065246144283985e-06 +99912,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,12153.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026853332701678337,0.0,0.0,0.002685333270167834,0.0016153518572024135,0.0004183323789734168,0.0005674532329253882,0.0,8.427850814035427e-05,0.0016153518572024135,0.0004183323789734168,0.0005674532329253882,0.0,8.427850814035427e-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.00032000985009922735,9.618750099652865e-05,0.00032000985009922735,0.00019250068936454385,4.9852464636007495e-05,6.762312373816675e-05,0.0,1.0043428521963553e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00019250068936454382,4.985246463600749e-05,6.762312373816675e-05,0.0,1.0043428521963552e-05 +99913,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,8276.0,,432.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017313898816586615,0.0003426554065019506,0.0,0.0020741279952343514,0.0015973217151272442,0.00027806118191155154,0.0001535870359338939,0.0,4.5158062261661854e-05,0.0012546663086252937,0.00027806118191155154,0.0001535870359338939,0.0,4.5158062261661854e-05,0.0003426554065019506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.289596173225974e-05,0.0,0.0,0.00020632895512059113,8.494106578435875e-05,0.0002292249168528509,0.00014951802088369962,3.313642624990099e-05,1.8302898139817416e-05,0.0,5.381466012030322e-06,2.289596173225974e-05,0.0,0.0,0.0,0.0,0.0,0.000176530058983137,3.073028831881668e-05,1.697386835456353e-05,0.0,4.990701196333703e-06 +99914,50.0,the Greater Atlanta and Macon Area,G1301210005502,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,8966.0,,1804.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011434141508341676,0.0005254632702731065,0.0,0.0016688774211072739,0.0011974791578333655,0.0003478688343605716,0.00012352942891333667,0.0,0.0,0.000672015887560259,0.0003478688343605716,0.00012352942891333667,0.0,0.0,0.0005254632702731065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5108387136676324e-05,0.0,0.0,0.00013625896309103644,7.013189369339362e-05,0.00017136735022771276,8.008313344107267e-05,4.145501140341719e-05,1.4720818246546558e-05,0.0,0.0,3.5108387136676324e-05,0.0,0.0,0.0,0.0,0.0,0.00012296219460783647,3.5720634491909984e-05,1.268452112796629e-05,0.0,0.0 +99915,50.0,the Greater Atlanta and Macon Area,G1301210003800,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,12081.0,,1881.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005709176377257003,0.0003198557200177525,0.0,0.0008907733577434527,0.0005216095026165334,0.0001231905511465269,6.556687653135526e-05,0.0,0.00018042415781045732,0.00032350817447028346,0.0001231905511465269,6.556687653135526e-05,0.0,5.866976593895473e-05,0.00019810132814624995,0.0,0.00012175439187150261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1371220947854457e-05,0.0,0.0,6.803483751416488e-05,4.059215055210989e-05,8.940605846201933e-05,3.855166600259169e-05,1.4680312144360798e-05,7.813441898365891e-06,0.0,6.991530351999117e-06,1.3236178029400104e-05,0.0,8.135042918454356e-06,0.0,0.0,0.0,5.23534401650905e-05,1.2364516206092964e-05,6.580883841412172e-06,0.0,1.8108997828612834e-05 +99916,81.0,the Columbus-Albany Area,G1302150010107,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,8551.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.000761930855553067,0.0,0.0,0.000761930855553067,0.0002987326277018389,0.0002294968758942214,0.0002337013519570067,0.0,0.0,0.0002987326277018389,0.0002294968758942214,0.0002337013519570067,0.0,0.0,0.0,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.079679879124704e-05,3.251936728411436e-05,9.079679879124704e-05,3.55989865643855e-05,2.7348389308452303e-05,2.784942291840924e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.55989865643855e-05,2.7348389308452303e-05,2.784942291840924e-05,0.0,0.0 +99917,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,25861.0,,740.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005886345145100249,0.0005868893952541254,0.0,0.0064732345403543745,0.003583945626345408,0.00139841120278421,0.0013363808974797295,0.0,0.0001545795208187656,0.002997056231091283,0.00139841120278421,0.0013363808974797295,0.0,0.0001545795208187656,0.0005868893952541254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.921285937605779e-05,0.0,0.0,0.0007014601612262826,0.00020514499530803392,0.0007406730206023404,0.0003571512534930913,0.0001666449594078204,0.0001592529722091059,0.0,1.8420832099196617e-05,3.921285937605779e-05,0.0,0.0,0.0,0.0,0.0,0.00041007811723665417,0.0001600074032778102,0.00015290984280594142,0.0,1.768712069589705e-05 +99918,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,14906.0,,481.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,5611.956475588368,0.0,0.0,0.000702760605245213,8.179015723070358e-05,0.0,0.0007845330321144964,0.0005649070452043024,0.00011639982272264665,2.1436006956843843e-05,0.0,8.179015723070358e-05,0.0005649070452043024,0.00011639982272264665,2.1436006956843843e-05,0.0,0.0,0.0,0.0,8.179015723070358e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.464148302310344e-06,0.0,0.0,8.37457333969925e-05,2.5380106167111192e-05,8.920988169930285e-05,6.731816560100864e-05,1.3870994544133001e-05,2.5544603813947915e-06,0.0,0.0,0.0,0.0,5.464148302310344e-06,0.0,0.0,0.0,6.423603418960153e-05,1.323591740544032e-05,2.4375055815959404e-06,0.0,9.300424522665072e-06 +99919,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,136344.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012148081688063776,0.0,0.0,0.012148081688063776,0.004690568736934596,0.0028910529820624954,0.0045664599690666855,0.0,0.0,0.004690568736934596,0.0028910529820624954,0.0045664599690666855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014476651717133752,0.000466059650791755,0.0014476651717133752,0.0005589666887620425,0.0003445216141263073,0.0005441768688250255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005589666887620425,0.0003445216141263073,0.0005441768688250255,0.0,0.0 +99920,50.0,the Greater Atlanta and Macon Area,G1302170100700,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,4766.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011443350722570576,0.0,0.0,0.0011443350722570576,0.0005764683039629727,0.00021751960393437853,0.000301053748411079,0.0,4.921070887488792e-05,0.0005764683039629727,0.00021751960393437853,0.000301053748411079,0.0,4.921070887488792e-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.00013636336803996243,4.402159616215295e-05,0.00013636336803996243,6.869418005482351e-05,2.5920472531447035e-05,3.587472243896091e-05,0.0,5.864137321753227e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.869418005482351e-05,2.5920472531447035e-05,3.587472243896091e-05,0.0,5.864137321753227e-06 +99921,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock 90.1-2004,gen1_t12_incandescent,_1000,Electricity,4048.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006391602658573677,0.0,0.0,0.0006391602658573676,0.00026284308034351896,0.00022306097787491212,0.0001247222671988756,0.0,2.845123336632175e-05,0.00026284308034351896,0.00022306097787491212,0.0001247222671988756,0.0,2.845123336632175e-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,7.616607286496363e-05,2.651857506231726e-05,7.616607286496363e-05,3.1321917645555694e-05,2.6581249808075428e-05,1.4862634301289488e-05,0.0,3.390415251753039e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.13219176455557e-05,2.658124980807543e-05,1.486263430128949e-05,0.0,3.3904152517530395e-06 +99922,50.0,the Greater Atlanta and Macon Area,G1300890021504,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,6123.0,,227.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014701182357161893,0.00017980517830925433,0.0,0.0016499234140254439,0.0011360643648831267,0.00031048235481736006,0.0001581359249895558,0.0,4.5158062261661854e-05,0.0009562591865738724,0.00031048235481736006,0.0001581359249895558,0.0,4.5158062261661854e-05,0.00017980517830925433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2016086472029739e-05,0.0,0.0,0.00017519077219232764,6.476421950929084e-05,0.00018720685866435737,0.00011395531409776047,3.699950260534448e-05,1.8844712035540393e-05,0.0,5.381387432743229e-06,1.2016086472029737e-05,0.0,0.0,0.0,0.0,0.0,0.00012890237157820505,3.5228560199809394e-05,1.7942729648917304e-05,0.0,5.123812964596678e-06 +99923,85.0,Rural Climate Zone 3A,G1302850960501,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,24027.0,,4715.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005547615743982483,0.003656848053491098,0.0,0.009204382936690514,0.004443785194314011,0.0004115813858188062,0.0033967997751427133,0.0004205569327394128,0.0005316596486755698,0.0029244919412394427,0.0004115813858188062,0.001259325835509251,0.0004205569327394128,0.0005316596486755698,0.0015192932530745675,0.002137473939633462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000244327706485001,0.0,0.0,0.0006610945736390886,0.0004362032022800614,0.0009054222801240896,0.0003485039055024256,4.904705612871807e-05,0.00015007050140445092,5.011664811895142e-05,6.335646248454249e-05,0.00010150966913910055,0.0001428126347343118,0.0,0.0,0.0,0.0,0.00043712893636562827,4.048668545929558e-05,0.00033413844455286614,4.136959746047079e-05,5.229861628582876e-05 +99924,50.0,the Greater Atlanta and Macon Area,G1300590000402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6134.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001472930276223326,0.0,0.0,0.001472930276223326,0.0009552667016890007,0.00024167006946625627,0.00023315124087110764,0.0,4.275955712322194e-05,0.0009552667016890007,0.00024167006946625627,0.00023315124087110764,0.0,4.275955712322194e-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.00017552463135234024,6.377743004593069e-05,0.00017552463135234024,0.00011383623404568081,2.87990888209073e-05,2.778392586794582e-05,0.0,5.095526666806665e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011383623404568081,2.87990888209073e-05,2.778392586794582e-05,0.0,5.095526666806665e-06 +99925,50.0,the Greater Atlanta and Macon Area,G1300670030904,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,41162.0,,3171.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002282535807771918,0.000539251212229486,0.0,0.0028217692896399835,0.0011310552157080085,0.0005563078199155768,0.0008812166929380443,0.0,0.00025318956107835404,0.0008187880903780385,0.0005563078199155768,0.0006542326060385284,0.0,0.00025318956107835404,0.0003122671253299699,0.000226984086899516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.602916429821143e-05,0.0,0.0,0.00027200448165620456,9.950941986396972e-05,0.000308033645954416,9.7573071735051e-05,6.629390859157558e-05,7.796337752169006e-05,0.0,3.0172010921969e-05,2.086360365687182e-05,1.5165560641339603e-05,0.0,0.0,0.0,0.0,0.00012346971921107963,6.072839713391701e-05,9.619652173485496e-05,0.0,2.7639007874564476e-05 +99926,50.0,the Greater Atlanta and Macon Area,G1302170100903,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,21916.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005262485687884652,0.0,0.0,0.005262485687884654,0.0016261864838622627,0.0011908164476985483,0.002315798064700608,0.0,0.00012976739869697334,0.0016261864838622627,0.0011908164476985483,0.002315798064700608,0.0,0.00012976739869697334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006271200592904267,0.00017133453450129713,0.0006271200592904267,0.00019378944184585988,0.00014190725173922748,0.00027596909631187453,0.0,1.546412543261897e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00019378944184585982,0.00014190725173922743,0.0002759690963118744,0.0,1.5464125432618962e-05 +99927,50.0,the Greater Atlanta and Macon Area,G1301130140203,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,73966.0,,1835.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,120171.9144447585,0.0,0.0,0.006535365896623308,0.0005347272181016208,0.0,0.007070093114724929,0.004744568847372898,0.0014345451014450184,0.0008910095395064497,0.0,0.0,0.004209841629271277,0.0014345451014450184,0.0008910095395064497,0.0,0.0,0.0005347272181016208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.572705001358611e-05,0.0,0.0,0.0007788084769787401,0.00029636550177152986,0.0008145355269923262,0.0005016796916158098,0.00017095230830013058,0.00010618009663316389,0.0,0.0,3.572705001358611e-05,0.0,0.0,0.0,0.0,0.0,0.000546615132748024,0.00016527193224176364,0.00010265196130239545,0.0,0.0 +99928,33.0,Rural Lower Plains-Upper South Appalachia,G1300110970300,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,86653.0,,14227.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004595656488993426,0.0024194496586575657,0.0,0.0070151061476509905,0.002659642864815021,0.0013503265953898015,0.0024708854371371385,0.0,0.0005342689806704511,0.0021670047727588536,0.0013503265953898015,0.0009760563961739068,0.0,0.00010228645503228463,0.000492638092056167,0.0014948290409632315,0.00043198252563816643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016165327519612768,0.0,0.0,0.0005476565114037467,0.0003226659391731395,0.0007093097865998743,0.00025823824667633473,0.0001609161072543199,0.00011631496874105898,0.0,1.2189301628831412e-05,3.291515522229848e-05,9.987560992034417e-05,2.886251005348498e-05,0.0,0.0,0.0,0.0002689211928041202,0.00013653390968813698,0.00024983559553341144,0.0,5.40208813223996e-05 +99929,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,40842.0,,20942.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.008328983673984942,0.014405888538108683,0.0,0.022734872212093624,0.005149422198949859,0.0012355916606569474,0.012184505875842161,0.00037265696939711506,0.003792695507247544,0.004109912939049591,0.0012355916606569474,0.002192622953889261,0.00037265696939711506,0.0004181991509920281,0.0010395092599002665,0.0099918829219529,0.003374496356255516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009625161510834056,0.0,0.0,0.0009925472100545507,0.0011884902388091762,0.0019550633611379563,0.0004897695542329076,0.00014724282139995696,0.00026129019827254954,4.440873577862644e-05,4.9835900370510156e-05,6.945385209721492e-05,0.0006675984384214011,0.00022546386056478953,0.0,0.0,0.0,0.0004428195847453246,0.00010625351057803662,0.0010477948056711538,3.2046275885969246e-05,0.00032614918425747226 +99930,85.0,Rural Climate Zone 3A,G1302710950100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,73731.0,,7683.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0035578629743548956,0.0013065326026822708,0.0,0.004864395577037167,0.002129593710162542,0.0007882209472898675,0.0012786427441685278,0.0,0.0006679381754162292,0.002117129266084245,0.0007882209472898675,0.0005347831611516327,0.0,0.00011771186946773057,1.2464444078297118e-05,0.0007438595830168952,0.0005502263059484985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.729495832122735e-05,0.0,0.0,0.00042398358567646415,0.00019490770731771663,0.0005112785439976915,0.0002522941619857452,9.393075167484561e-05,6.372906541336812e-05,0.0,1.4027493709944664e-05,8.328021237881206e-07,4.970039872177356e-05,3.6762942115955546e-05,0.0,0.0,0.0,0.00022383368173805638,8.284697490089948e-05,0.00013439338766315606,0.0,7.020449969557955e-05 +99931,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,94826.0,,8035.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004920831317437194,0.001366408033197789,0.0,0.006287239350634984,0.0025353530312604506,0.001630856373777877,0.001476690881230518,0.0,0.0006443213340047188,0.002164167914931645,0.001630856373777877,0.0009975987852992709,0.0,0.00012819051306698175,0.00037118511632880537,0.0004790920959312468,0.0005161308209377371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.129510406458284e-05,0.0,0.0,0.0005864055151927287,0.0002287495172770941,0.0006777006192573114,0.00025789951316193684,0.0001943458554821245,0.00011888182949415349,0.0,1.527620416320501e-05,2.4800340014948766e-05,3.201003045349562e-05,3.4484733596138463e-05,0.0,0.0,0.0,0.00027328533613844,0.00017578977239308965,0.0001591722962734789,0.0,6.945130329921263e-05 +99932,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9145.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001996631467140621,0.0,0.0,0.0019966314671406205,0.0009049808008555019,0.00041733989408854525,0.000625513598690382,0.0,4.871446643245207e-05,0.0009049808008555019,0.00041733989408854525,0.000625513598690382,0.0,4.871446643245207e-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.00023793246573114644,8.863459068556928e-05,0.00023793246573114644,0.00010784379437596636,4.9733118846748875e-05,7.454054257589411e-05,0.0,5.805153983498828e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010784379437596639,4.973311884674889e-05,7.454054257589414e-05,0.0,5.805153983498829e-06 +99933,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,4700.0,,586.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00030324399982760127,0.0001723835185741965,0.0,0.00047562751840179784,0.0002582837266014666,0.0001292646217259241,8.81098596807047e-05,0.0,0.0,8.59002080272701e-05,0.0001292646217259241,8.81098596807047e-05,0.0,0.0,0.0001723835185741965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.151777031435561e-05,0.0,0.0,3.6136065829315124e-05,2.4434342585077115e-05,4.765383614367073e-05,1.0236296757034006e-05,1.5403816341774643e-05,1.0499609856893402e-05,0.0,0.0,1.151777031435561e-05,0.0,0.0,0.0,0.0,0.0,2.5877834880960948e-05,1.2951216791659638e-05,8.827859308844925e-06,0.0,0.0 +99934,50.0,the Greater Atlanta and Macon Area,G1301390001102,ComStock 90.1-2007,gen4_led,10001_25000,Propane,51888.0,,,7419.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004170143334806136,0.0,0.0006992913798553603,0.004869434714661496,0.003985076993431915,0.0006153691246088519,0.00026898859662073015,0.0,0.0,0.0032857856135765544,0.0006153691246088519,0.00026898859662073015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006992913798553603,0.0,0.0,0.0,0.0,5.6396627052597116e-05,0.0004969489498839613,0.00014816142648452346,0.0005533455769365585,0.0003915615313703853,7.3332500998937e-05,3.2054917514639e-05,0.0,0.0,0.0,0.0,0.0,5.6396627052597116e-05,0.0,0.0,0.0004528502500357437,6.992840098263875e-05,3.056692591817614e-05,0.0,0.0 +99935,81.0,the Columbus-Albany Area,G1302150010501,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,18940.0,,2760.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004446291878589135,0.002140789231739272,0.0,0.006587161971111475,0.002880261092900958,0.00044513861079224527,0.0022108955306596855,0.00042176984448544073,0.0006290968922731457,0.0020810331130516305,0.00044513861079224527,0.0014984311710428877,0.00042176984448544073,0.0,0.0007992279798493282,0.0007124643596167978,0.0006290968922731457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014303656300920415,0.0,0.0,0.0005298593522566605,0.00028717487038345206,0.0006728959152658646,0.00024799425845522426,5.304664255502057e-05,0.00017856627305850792,5.0261814271932296e-05,0.0,5.340031685676955e-05,4.760321649382805e-05,4.203302965860653e-05,0.0,0.0,0.0,0.0002942262438379399,4.547207951509992e-05,0.00022584879166246354,4.308489859232719e-05,6.426390165803402e-05 +99936,50.0,the Greater Atlanta and Macon Area,G1301210010512,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,171227.0,,9333.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.015856067756514762,0.002805191719565155,0.0,0.01866129081410212,0.005282901107098944,0.001638414476867367,0.008412159314275237,0.0,0.0033277845778383708,0.005282901107098944,0.001638414476867367,0.005606967594710081,0.0,0.0033277845778383708,0.0,0.002805191719565155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018742675446364242,0.0,0.0,0.0018895385583051066,0.0009318516584414146,0.002076965312768749,0.000629553650682074,0.00019524685288092273,0.0006681720605677253,0.0,0.0003965659941743848,0.0,0.00018742675446364242,0.0,0.0,0.0,0.0,0.0005879766013796008,0.0001823523394115975,0.0009362569435995823,0.0,0.0003703759405171482 +99937,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,7862.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006932470335672476,0.0,0.0,0.0006932470335672475,0.0004097094828158344,0.00025286021531928393,3.067733543212934e-05,0.0,0.0,0.0004097094828158344,0.00025286021531928393,3.067733543212934e-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,8.261468807955524e-05,2.1371276851054054e-05,8.261468807955524e-05,4.8825338569274485e-05,3.0133512016399288e-05,3.6558374938814756e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.882533856927449e-05,3.0133512016399295e-05,3.655837493881476e-06,0.0,0.0 +99938,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,52604.0,,6595.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004686978052997765,0.0019412096671485941,0.0,0.006628187720146358,0.0028482716708834975,0.0015235855046494549,0.0022563305446134064,0.0,0.0,0.0009070620037349035,0.0015235855046494549,0.0022563305446134064,0.0,0.0,0.0019412096671485941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012970025820589943,0.0,0.0,0.0005585391370231077,0.0002812469013272325,0.0006882393952290073,0.0001080930234927186,0.00018156307183976237,0.0002688830416906268,0.0,0.0,0.00012970025820589943,0.0,0.0,0.0,0.0,0.0,0.00029575094354350706,0.0001582018510297214,0.0002342866006557789,0.0,0.0 +99939,35.0,Eastern Counties in South Carolina and Georgia,G1301890950200,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7735.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005667106183095735,0.0,0.0,0.0005667106183095736,0.0003804597065572794,0.00014567178290345774,4.0609502448274186e-05,0.0,0.0,0.0003804597065572794,0.00014567178290345774,4.0609502448274186e-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,6.753541389563795e-05,1.942867061972379e-05,6.753541389563795e-05,4.5339725289782464e-05,1.7359837337521685e-05,4.839470917486759e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.533972528978246e-05,1.735983733752168e-05,4.839470917486758e-06,0.0,0.0 +99940,50.0,the Greater Atlanta and Macon Area,G1301350050731,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,NaturalGas,8080.0,,1076.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001940225242850413,0.0008532061726946953,0.0,0.002793431415545108,0.0015694494312770977,0.0007827397458688056,0.00037747508454619904,0.0,6.376715385300602e-05,0.0007800104124354085,0.0007827397458688056,0.00037747508454619904,0.0,0.0,0.0007894390188416893,0.0,6.376715385300602e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.700653104907975e-05,0.0,0.0,0.000231216300628955,0.00012388776618933085,0.00028822283167803474,9.295370353517519e-05,9.327895771995525e-05,4.498363937382456e-05,0.0,0.0,5.274596150285636e-05,0.0,4.2605695462233895e-06,0.0,0.0,0.0,0.00016193386984226165,8.076212817175192e-05,3.894741684022355e-05,0.0,6.579416823797625e-06 +99941,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,4831.0,,949.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.00040770482525294264,0.0002763693812841038,0.0,0.0006840438329376088,0.0005233067447130261,0.000116877610636469,4.388985118755139e-05,0.0,0.0,0.00024693736342892234,0.000116877610636469,4.388985118755139e-05,0.0,0.0,0.0002763693812841038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8464657580399863e-05,0.0,0.0,4.8584682393280386e-05,3.420810665358866e-05,6.704933997368024e-05,2.9426616096056742e-05,1.3927874383471871e-05,5.2301919137517825e-06,0.0,0.0,1.8464657580399863e-05,0.0,0.0,0.0,0.0,0.0,5.129404015836494e-05,1.1456234635172575e-05,4.302042372095731e-06,0.0,0.0 +99942,50.0,the Greater Atlanta and Macon Area,G1301210010510,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,26393.0,,8893.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005897257769970797,0.006897505656528484,0.0,0.012794682565716213,0.0045875556666098525,0.0007948614975636278,0.00648301328251921,0.0004169181975013291,0.0005123339215221918,0.003011821586953453,0.0007948614975636278,0.0016735756271693187,0.0004169181975013291,0.0,0.0015757340796564,0.004809437655349892,0.0005123339215221918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046084887265093,0.0,0.0,0.000702760538983844,0.0006784834135437522,0.0011636094116347737,0.00035891077587762733,9.472153265704826e-05,0.0001994355606717119,4.968303381279155e-05,0.0,0.00010528085229186849,0.0003213370212252144,3.423099913384712e-05,0.0,0.0,0.0,0.00041721417648682776,7.228849287667919e-05,0.000589596125776984,3.7916527901542014e-05,4.6594088592740526e-05 +99943,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,286806.0,,54616.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.013823086213192927,0.00928797890844898,0.0,0.02311104739128049,0.011303442282150643,0.0025945724384034267,0.005662084537325342,0.0,0.003550965863762495,0.008157437873222154,0.0025945724384034267,0.002543455806429415,0.0,0.0005276200951379314,0.0031460044089284887,0.003118628730895927,0.0030233457686245635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000620568009344122,0.0,0.0,0.0016472701210092436,0.0010995265110439977,0.002267838130353365,0.0009721059006145185,0.00030919011779706175,0.0003030986488415219,0.0,6.287545375614149e-05,0.0002101974727419578,0.00020836839128208728,0.00020200214532007686,0.0,0.0,0.0,0.0011091828499897943,0.00025459989796893347,0.0005556083631188102,0.0,0.00034844875911863954 +99944,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,134527.0,,1258.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.012550391737020364,0.0003702087207691886,0.0,0.012920600457789548,0.0024236195885421847,0.004100714503892748,0.006396266365354619,0.0,0.0,0.0020534108677729957,0.004100714503892748,0.006396266365354619,0.0,0.0,0.0003702087207691886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.473544640585891e-05,0.0,0.0,0.001495605676457351,0.0005116440158826251,0.0015203411228632098,0.0002447009634672668,0.0004886741400638587,0.0007622305729262254,0.0,0.0,2.4735446405858906e-05,0.0,0.0,0.0,0.0,0.0,0.0002851824525241823,0.00048252284510749,0.0007526358252315379,0.0,0.0 +99945,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,133825.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.010240823533631281,0.0,0.0,0.01024082353363128,0.006783396709631991,0.0025804802610325194,0.0008769769365662085,0.0,0.0,0.006783396709631991,0.0025804802610325194,0.0008769769365662085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001220380397116757,0.00026250688032632445,0.001220380397116757,0.0008083651029738807,0.0003075111601492619,0.00010450775356046092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000808365102973881,0.00030751116014926197,0.00010450775356046093,0.0,0.0 +99946,85.0,Rural Climate Zone 3A,G1300090970500,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,458964.0,,24690.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.021329677979407782,0.004198726887882703,0.0,0.025528404867290484,0.016018760980368005,0.0019571659453525288,0.004036795497033362,0.0,0.00351566471417517,0.016018760980368005,0.0019571659453525288,0.0028163437990454477,0.0,0.0005374072546418005,0.0,0.0012204516979879146,0.002978257459533369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028053392186589657,0.0,0.0,0.002541816748708451,0.0009411739653404285,0.0028223506705743473,0.001908924972649179,0.00023323170582798412,0.0003356182800999636,0.0,6.4041790131324e-05,0.0,8.154331311058289e-05,0.00019898942411817063,0.0,0.0,0.0,0.0017709904331954587,0.00021637891779790108,0.0004462970772068009,0.0,0.000388682282153887 +99947,81.0,the Columbus-Albany Area,G1302150001600,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,107601.0,,18883.0,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.024964778018995454,0.016701835518760706,0.0,0.041666613537756164,0.0323349652951331,0.004926245643142976,0.0010788496401933675,0.000658338967547692,0.0026681217744862545,0.017434870461054672,0.004926245643142976,0.0010788496401933675,0.000658338967547692,0.0008663810898039734,0.014900094834078427,0.0,0.0018017406846822812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001115921218404207,0.0,0.0,0.0029750037698500036,0.0018415377734882024,0.004090924988254211,0.0020776794133325624,0.0005870510584314512,0.0001285644015834809,7.845296716851609e-05,0.00010324493998434077,0.0009955392006409122,0.0,0.00012038201776329492,0.0,0.0,0.0,0.0031747220685532165,0.0004836702503204515,0.0001059239659022644,6.463725041253657e-05,0.00026196239896146805 +99948,50.0,the Greater Atlanta and Macon Area,G1300890021308,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Electricity,3826.0,,217.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005958217592179707,0.00017211342045149873,0.0,0.0007679351796694694,0.00047407694667371016,0.00019212853229641112,7.178974000571884e-05,0.0,3.0022667767368593e-05,0.00030196352622221146,0.00019212853229641112,7.178974000571884e-05,0.0,3.0022667767368593e-05,0.00017211342045149873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1498568766756378e-05,0.0,0.0,7.10043491438371e-05,3.370171681790336e-05,8.25029179105935e-05,3.598513030596187e-05,2.2896044289441085e-05,8.555215860195809e-06,0.0,3.577814927708616e-06,1.1498568766756378e-05,0.0,0.0,0.0,0.0,0.0,5.093233446026085e-05,2.0641279300625597e-05,7.71271219670384e-06,0.0,3.225477566133058e-06 +99949,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,9297.0,,687.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0022385496578280948,0.000544791494720818,0.0,0.0027833411525489122,0.0017875479847276512,0.000495828907067148,0.00042453540950386504,0.0,7.534614417650906e-05,0.0012427564900068335,0.000495828907067148,0.00042453540950386504,0.0,7.534614417650906e-05,0.000544791494720818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6401422375482604e-05,0.0,0.0,0.0002667647496018363,9.295715022289295e-05,0.0003031661719773189,0.00014809750711287936,5.9087219162898406e-05,5.059127539001794e-05,0.0,8.978891852777391e-06,3.6401422375482604e-05,0.0,0.0,0.0,0.0,0.0,0.00019470271520951454,5.4006513565032146e-05,4.6241106610393677e-05,0.0,8.206827999623735e-06 +99950,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,42109.0,,4030.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.003746556447217258,0.0011861225937999148,0.0,0.004932709730623471,0.0011958511989962866,0.0015074427717368633,0.002229415759890321,0.0,0.0,9.728605196371782e-06,0.0015074427717368633,0.002229415759890321,0.0,0.0,0.0011861225937999148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.925074887405565e-05,0.0,0.0,0.00044647141153344766,0.00020544843474573323,0.0005257221604075034,1.1593430275158128e-06,0.00017963965352854646,0.00026567607221091076,0.0,0.0,7.925074887405565e-05,0.0,0.0,0.0,0.0,0.0,0.00012745235584392845,0.00016066140395980914,0.0002376084006037658,0.0,0.0 +99951,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9949.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0021668426248961153,0.0,0.0,0.0021668426248961153,0.0016223819584702545,0.00027309875748719313,0.00022463241227595895,0.0,4.664678958896939e-05,0.0016223819584702545,0.00027309875748719313,0.00022463241227595895,0.0,4.664678958896939e-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.00025822009025260154,8.008827084841699e-05,0.00025822009025260154,0.00019333735220409298,3.2544858124893706e-05,2.6769180698731468e-05,0.0,5.558843120060585e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019333735220409298,3.2544858124893706e-05,2.6769180698731468e-05,0.0,5.558843120060585e-06 +99952,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,15133.0,,,,9.325022323477118,Office,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,163187.89066084955,0.012469060250076913,0.0002627661018973806,0.0038768827089225378,0.0,0.0,0.016608620676738777,0.013505364503271257,0.0013328331034687185,0.0015240964214996407,0.0,0.00024632664849915905,0.0007735381512969646,0.0013328331034687185,0.0015240964214996407,0.0,0.00024632664849915905,0.0,0.0,0.0,0.0002627661018973806,0.0,0.0,0.012469060250076913,0.0,0.0,0.0,0.0,0.0,0.0,0.00046199710172116276,0.00014408274689279543,0.00046199710172116276,9.218034457102902e-05,0.00015882993557256826,0.00018162224197701375,0.0,2.935404711145542e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003756747402231809,3.707502524535231e-05,4.239534053918139e-05,0.0,6.85199571344807e-06 +99953,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,73485.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.00591926780562795,0.0,0.0,0.00591926780562795,0.00355483495739616,0.0014103373426931304,0.0009540651319392225,0.0,0.0,0.00355483495739616,0.0014103373426931304,0.0009540651319392225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007053876919414192,0.0002115394758740977,0.0007053876919414192,0.0004236228040647566,0.00016806717244238013,0.0001136940958712037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004236228040647566,0.00016806717244238013,0.0001136940958712037,0.0,0.0 +99954,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,79034.0,,484.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007255084307989533,0.00014252253164653172,0.0,0.007397606839636065,0.0030060469368599872,0.002323602161617971,0.0020679577411581067,0.0,0.0,0.0028635244052134558,0.002323602161617971,0.0020679577411581067,0.0,0.0,0.00014252253164653172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.522059407111537e-06,0.0,0.0,0.0008645759711709934,0.0002565600468880001,0.000874098030578105,0.00034124129899950386,0.00027689968995723137,0.00024643498221425813,0.0,0.0,9.522059407111537e-06,0.0,0.0,0.0,0.0,0.0,0.0003551932083300506,0.0002745558283031457,0.00024434899394490866,0.0,0.0 +99955,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,223626.0,,13291.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,1133273.7058648225,0.0,0.0,0.01906453688016446,0.00391231101083115,0.0,0.022976817201389308,0.006781267476359299,0.005414904824772976,0.010780675589863332,0.0,0.0,0.0028689564655281496,0.005414904824772976,0.010780675589863332,0.0,0.0,0.00391231101083115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002613968045111345,0.0,0.0,0.0022718826586397567,0.0009144895000901359,0.002533279463150891,0.00034188779320453057,0.0006452833576243869,0.0012847115078108392,0.0,0.0,0.0002613968045111345,0.0,0.0,0.0,0.0,0.0,0.0007476599339857808,0.0005970133751459981,0.0011886095376622292,0.0,0.0 +99956,50.0,the Greater Atlanta and Macon Area,G1301210000400,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,7037.0,,506.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014176819509654685,0.00040104660056190165,0.0,0.0018187285515273701,0.001340847079461652,0.0002496099485452298,0.00018402323906995902,0.0,4.416557737679016e-05,0.0009839660562765402,0.0002496099485452298,0.00018402323906995902,0.0,0.0,0.0003568810231851115,0.0,4.416557737679016e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6795594876739573e-05,0.0,0.0,0.00016893905448452125,8.029361586712051e-05,0.00019573464936126084,0.00011725499861165329,2.9744942910815306e-05,2.192925711615774e-05,0.0,0.0,2.3844708577671948e-05,0.0,2.9508862990676287e-06,0.0,0.0,0.0,0.00014430423535446844,2.6863445737711928e-05,1.9804892898081193e-05,0.0,4.7531742955394856e-06 +99957,50.0,the Greater Atlanta and Macon Area,G1300150960401,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,8987.0,,134.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0010109463762136396,4.9675479275810135e-05,0.0,0.0010606218554894502,0.00046327615461902184,0.0002183861163794586,0.0003422260787550352,0.0,3.6772254159706566e-05,0.00046327615461902184,0.0002183861163794586,0.0002925505994792251,0.0,3.6772254159706566e-05,0.0,4.9675479275810135e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3191239135854467e-06,0.0,0.0,0.00012047222585683515,3.5925183919224433e-05,0.00012379134977042063,5.520758652143816e-05,2.6024586620510662e-05,3.486260272974725e-05,0.0,4.382067548414588e-06,0.0,3.3191239135854462e-06,0.0,0.0,0.0,0.0,5.407165635887582e-05,2.548911469041687e-05,3.994319747085909e-05,0.0,4.291903804330307e-06 +99958,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,75317.0,,4319.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0066393280472324245,0.00127128625127604,0.0,0.007910614298508464,0.0022826929164231334,0.002322129060515681,0.0033057616319633536,0.0,0.0,0.001011406665147093,0.002322129060515681,0.0033057616319633536,0.0,0.0,0.00127128625127604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.494011498051301e-05,0.0,0.0,0.0007911942875911827,0.0003584602441496003,0.0008761344025716957,0.00012052713319830553,0.0002767230711691281,0.0003939404260100946,0.0,0.0,8.494011498051301e-05,0.0,0.0,0.0,0.0,0.0,0.00025281801376185296,0.0002571857355645415,0.0003661272542400074,0.0,0.0 +99959,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950202,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,79083.0,,9030.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004902214437946139,0.0015356975240364533,0.0,0.0064379119619825936,0.00280375524243721,0.0016136047321161655,0.0009747798101516629,0.0,0.0010457544469161342,0.0021320936911227695,0.0016136047321161655,0.0009747798101516629,0.0,0.00018171847419412118,0.0006716615513144402,0.0,0.0008640359727220132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010260637499955687,0.0,0.0,0.0005841878597458837,0.0002374685841770973,0.0006867942347454405,0.00025407767570374834,0.00019229030203862527,0.00011616271344804347,0.0,2.1655055660973435e-05,4.487651762686417e-05,0.0,5.7729857372692694e-05,0.0,0.0,0.0,0.0002991036453300892,0.0001721387980636601,0.00010398917501696449,0.0,0.00011156072486586602 +99960,50.0,the Greater Atlanta and Macon Area,G1300670030505,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,57545.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0055848024852370596,0.0,0.0,0.0055848024852370596,0.0022352467850868846,0.0013623116235550266,0.001987244076595148,0.0,0.0,0.0022352467850868846,0.0013623116235550266,0.001987244076595148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006655307139953727,0.00022319770556182686,0.0006655307139953727,0.0002663702776897024,0.0001623441885197283,0.00023681624778594198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002663702776897024,0.0001623441885197283,0.00023681624778594198,0.0,0.0 +99961,81.0,the Columbus-Albany Area,G1302150010402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,21562.0,,5525.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004846876197910622,0.004284651173235147,0.0,0.00913152737114577,0.003623695132433002,0.0006663737132677371,0.0038847137401782097,0.00042225500918385194,0.0005345706368660368,0.002812661478255669,0.0006663737132677371,0.0009456668579864322,0.00042225500918385194,0.0,0.0008110336541773332,0.002939046882191778,0.0005345706368660368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028627587187489146,0.0,0.0,0.0005775966009011466,0.00042634241633503184,0.0008638724727760383,0.00033518159800045855,7.941098059802722e-05,0.00011269401991189523,5.0319638476264796e-05,0.0,5.418862751764856e-05,0.00019637029355772405,3.5716950799518905e-05,0.0,0.0,0.0,0.0003428134579690369,6.30411413201864e-05,0.00036750667531906263,3.9946710347532274e-05,5.057213751580539e-05 +99962,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,71778.0,,3949.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011146158111262676,0.0011625222865569815,0.0,0.012308680397819655,0.002669688851837165,0.005126361146361976,0.004512630399620515,0.0,0.0,0.0015071665652801837,0.005126361146361976,0.004512630399620515,0.0,0.0,0.0011625222865569815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.767305713583919e-05,0.0,0.0,0.0013282675499496702,0.0004242718688892242,0.0014059406070855093,0.00017960632004743602,0.0006108992077866762,0.0005377620221155577,0.0,0.0,7.767305713583919e-05,0.0,0.0,0.0,0.0,0.0,0.0003049412157737264,0.0005855509339191573,0.0005154484573926257,0.0,0.0 +99963,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,64241.0,,,5421.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007882040174894911,0.0,0.0005109750633412989,0.00839301523823621,0.00539359192015878,0.0025106209823256903,0.0004887719621523024,0.0,0.0,0.004882616856817482,0.0025106209823256903,0.0004887719621523024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005109750633412989,0.0,0.0,0.0,0.0,4.1210161016724375e-05,0.0009392866495569392,0.0003052942806261763,0.0009804968105736637,0.0005818514910793984,0.00029918558120359875,5.824595771405443e-05,0.0,0.0,0.0,0.0,0.0,4.1210161016724375e-05,0.0,0.0,0.0006300953263088466,0.00029329815279198446,5.70997831393043e-05,0.0,0.0 +99964,81.0,the Columbus-Albany Area,G1300950010700,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,121745.0,,2101.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013793965273809577,0.0006184876357176041,0.0,0.014412452909527182,0.007332821080741613,0.002459311600666412,0.004620289538512857,0.0,0.0,0.00671433344502401,0.002459311600666412,0.004620289538512857,0.0,0.0,0.0006184876357176041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.132456775379217e-05,0.0,0.0,0.001643798838410562,0.0005182504911490594,0.0016851234061643543,0.0008001334858068324,0.0002930711707778999,0.0005505905246077504,0.0,0.0,4.132456775379217e-05,0.0,0.0,0.0,0.0,0.0,0.0008573633172605082,0.00028754602477104997,0.000540210475862692,0.0,0.0 +99965,50.0,the Greater Atlanta and Macon Area,G1300890021602,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,31691.0,,5844.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0015884985403453707,0.0009938044879553795,0.0,0.0025823030283007504,0.0007534339781837238,0.0004332413812989903,0.0010424565996920044,0.0,0.00035317106912603183,0.0005556163358201947,0.0004332413812989903,0.00024646975410015404,0.0,0.00035317106912603183,0.0001978176423635291,0.0007959868455918505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.640045785885806e-05,0.0,0.0,0.00018929869754550523,0.00011231501019463272,0.00025569915540436333,6.621186361487072e-05,5.1628646246589216e-05,2.9371385777525543e-05,0.0,4.2086801906519774e-05,1.321706853278763e-05,5.3183389326070435e-05,0.0,0.0,0.0,0.0,7.460488941969758e-05,4.2899479290495385e-05,0.00010322385450725088,0.0,3.497093218691948e-05 +99966,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,18102.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0015218668866967832,0.0,0.0,0.0015218668866967832,0.0004444468784033317,0.0005132529757227814,0.0005641363429643725,0.0,0.0,0.0004444468784033317,0.0005132529757227814,0.0005641363429643725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001813597524259069,5.7150899085530716e-05,0.0001813597524259069,5.2964406110871036e-05,6.116397788967044e-05,6.722771116765856e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2964406110871036e-05,6.116397788967044e-05,6.722771116765856e-05,0.0,0.0 +99967,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,89929.0,,2736.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.012241750773890345,0.0010167973882032244,0.0,0.013258548162093566,0.0064693593361393985,0.0019168070271573915,0.004527249588258837,0.0,0.00034505471369039717,0.0064693593361393985,0.0019168070271573915,0.0038555069137460093,0.0,0.0,0.0,0.0006717426745128271,0.00034505471369039717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.793562578921357e-05,0.0,0.0,0.0014588267181459785,0.0005140356283901016,0.001526762343935192,0.0007709415444869457,0.0002284223356932895,0.0004594536028102611,0.0,0.0,0.0,4.488136918112139e-05,2.3054256608092176e-05,0.0,0.0,0.0,0.000744966500332384,0.00022072618765463394,0.0005213266270519218,0.0,3.973410489739862e-05 +99968,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,51751.0,,1901.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003139976086045671,0.00032333087085608287,0.0,0.003463306956901755,0.0015227366298383948,0.000827316394221084,0.0008072988161778443,0.0,0.00030595511666443116,0.0011994057589823119,0.000827316394221084,0.0008072988161778443,0.0,0.00030595511666443116,0.00032333087085608287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.160281238615401e-05,0.0,0.0,0.000374185797791527,0.00012350532980001436,0.000395788610177681,0.00014293121619462566,9.858993715696823e-05,9.620447522837223e-05,0.0,3.646016921156091e-05,2.160281238615401e-05,0.0,0.0,0.0,0.0,0.0,0.00017401917355010837,9.454616928870217e-05,9.225854953929806e-05,0.0,3.496471779957233e-05 +99969,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6821.0,,195.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013478771807294931,0.00015482764203998347,0.0,0.0015027048227694764,0.000656446044268883,0.00018294804711134805,0.0006204684671922842,0.0,4.275955712322194e-05,0.0005016184022288996,0.00018294804711134805,0.0006204684671922842,0.0,4.275955712322194e-05,0.00015482764203998347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0345802411943346e-05,0.0,0.0,0.00016061965625779846,5.5926754772842675e-05,0.00017096545866974178,5.977530927186278e-05,2.1800986662714013e-05,7.393806597815571e-05,0.0,5.095438564477008e-06,1.0345802411943346e-05,0.0,0.0,0.0,0.0,0.0,7.468505946732021e-05,2.08143318056838e-05,7.059182513844476e-05,0.0,4.864832524203673e-06 +99970,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,4824.0,,486.0,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0011583952747927398,0.00038541496362517254,0.0,0.0015438102384179126,0.0008651159913131557,0.0003498509219172704,0.0002910461924886228,0.0,3.771442562512418e-05,0.0005174154533131072,0.0003498509219172704,0.0002910461924886228,0.0,0.0,0.0003477005380000484,0.0,3.771442562512418e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.575248200134004e-05,0.0,0.0,0.00013804273919773186,6.821572577109704e-05,0.00016379522119907194,6.165895876203131e-05,4.169076016038882e-05,3.468316430364261e-05,0.0,0.0,2.3232496638118787e-05,0.0,2.519985363221257e-06,0.0,0.0,0.0,9.178710027548978e-05,3.7118492750030767e-05,3.087942694736601e-05,0.0,4.001426168797642e-06 +99971,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,17141.0,,2181.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014751879955179773,0.0006418731157164536,0.0,0.0021170611112344313,0.001189621208917853,0.00041980312454627635,0.0005076367777703017,0.0,0.0,0.0005477480932013993,0.00041980312454627635,0.0005076367777703017,0.0,0.0,0.0006418731157164536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.288605764469707e-05,0.0,0.0,0.00017579458363731727,0.00010054976577431782,0.00021868064128201435,6.527381477820669e-05,5.002692247596869e-05,6.049384638314191e-05,0.0,0.0,4.288605764469707e-05,0.0,0.0,0.0,0.0,0.0,0.00012288125622276098,4.3363328531619e-05,5.243605652763433e-05,0.0,0.0 +99972,50.0,the Greater Atlanta and Macon Area,G1301170130103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,27789.0,,3147.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024021368641337923,0.0009262736972772653,0.0,0.003328410561411058,0.0013795898719006331,0.0008341128095652639,0.0011147078799451605,0.0,0.0,0.00045331617462336784,0.0008341128095652639,0.0011147078799451605,0.0,0.0,0.0009262736972772653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.18878329801165e-05,0.0,0.0,0.00028625822106462695,0.0001435706403582593,0.0003481460540447434,5.402085271036392e-05,9.939968558763664e-05,0.00013283768276662637,0.0,0.0,6.18878329801165e-05,0.0,0.0,0.0,0.0,0.0,0.00014430274187649463,8.724677377396944e-05,0.00011659653839427933,0.0,0.0 +99973,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,108079.0,,7735.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010727367743724223,0.0022767084431950806,0.0,0.013004076186919303,0.0056326168918488795,0.0028587982058436096,0.004512661089226813,0.0,0.0,0.0033559084486537993,0.0028587982058436096,0.004512661089226813,0.0,0.0,0.0022767084431950806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015211646757175133,0.0,0.0,0.0012783601191154789,0.0004981506108764826,0.0014304765866872305,0.000399917260846353,0.0003406775736841287,0.0005377652845849971,0.0,0.0,0.00015211646757175133,0.0,0.0,0.0,0.0,0.0,0.0006196000753727991,0.0003144740034387283,0.0004964025078757029,0.0,0.0 +99974,50.0,the Greater Atlanta and Macon Area,G1301350050536,ComStock 90.1-2004,gen3_t5_cfl,1001_5000,Electricity,25122.0,,5588.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005047579840107691,0.0038437601266106585,0.0,0.00889133996671835,0.002919504860132479,0.0003714377298898497,0.003660443880694757,0.0003660587320636788,0.0015739664839086003,0.001974665961972819,0.0003714377298898497,0.0007615226522437582,0.0003660587320636788,0.0015739664839086003,0.00094483889815966,0.0028989212284509986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002568185439455722,0.0,0.0,0.0006015086423680178,0.0004064552583325652,0.00085832718631359,0.00023531646443283698,4.426339190417545e-05,9.07489274451699e-05,4.362238893201612e-05,0.00018756601636011477,6.312884834009344e-05,0.00019368969560547874,0.0,0.0,0.0,0.0,0.00028183495416959583,3.5856811547014937e-05,0.00035336164273731385,3.5337548973926285e-05,0.0001519431523867136 +99975,50.0,the Greater Atlanta and Macon Area,G1301210008102,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,25325.0,,1568.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.009809302454826169,0.0012164696204829313,0.0,0.011025772075309099,0.003095027332730968,0.00044538119314145087,0.006548187073672445,0.00041465409557541025,0.0005225223801888263,0.0024011609532199316,0.00044538119314145087,0.006548187073672445,0.00041465409557541025,0.0,0.0006938663795110365,0.0,0.0005225223801888263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.127534164557641e-05,0.0,0.0,0.0011689596710990477,0.0003758943418019668,0.0012502350127446243,0.00028614270291470867,5.307540015673398e-05,0.0007803375054634121,4.941369862086634e-05,0.0,4.6358927589782714e-05,0.0,3.4911011547043e-05,0.0,0.0,0.0,0.0003509515261472865,5.050269113855299e-05,0.000742512423945381,4.701848223647416e-05,5.92498892769298e-05 +99976,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14529.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003306546101023772,0.0,0.0,0.003306546101023772,0.001948826778519301,0.0005966488299553636,0.000682002530054329,0.0,7.90679624947779e-05,0.001948826778519301,0.0005966488299553636,0.000682002530054329,0.0,7.90679624947779e-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.0003940300403119064,0.00012835982916986987,0.0003940300403119064,0.00023223516946070313,7.110064560919712e-05,8.127196058960904e-05,0.0,9.422264652397071e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00023223516946070313,7.110064560919712e-05,8.127196058960904e-05,0.0,9.422264652397071e-06 +99977,50.0,the Greater Atlanta and Macon Area,G1300670030226,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,10552.0,,1151.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0009305255923749647,0.0003351726697955914,0.0,0.0012656982621705563,0.0008256759271158455,0.0003045257079628998,0.00013549662709181088,0.0,0.0,0.0004905032573202542,0.0003045257079628998,0.00013549662709181088,0.0,0.0,0.0003351726697955914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2393951156514116e-05,0.0,0.0,0.00011088797660061948,5.371628949702731e-05,0.00013328192775713358,5.845181923630383e-05,3.6289425949791454e-05,1.6146731414524206e-05,0.0,0.0,2.2393951156514113e-05,0.0,0.0,0.0,0.0,0.0,8.694621977274169e-05,3.206749556509374e-05,1.4268212419298142e-05,0.0,0.0 +99978,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010401,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,138853.0,,9540.0,,9.729435225087556,Education,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.03717471115517483,0.008437786411492685,0.0,0.04561249756666751,0.032523457359801465,0.008825098873140017,0.0010104244386356718,0.0006632264819446703,0.002590290413145696,0.025823873945830342,0.008825098873140017,0.0010104244386356718,0.0006632264819446703,0.0008520874156241314,0.006699583413971119,0.0,0.0017382029975215642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00056376290997707,0.0,0.0,0.004430037676129941,0.001608713758354894,0.004993800586107011,0.003077380589350829,0.0010516697854191651,0.00012041030563368261,7.903540367960621e-05,0.0001015415920466576,0.0004476264812712066,0.0,0.00011613642870586336,0.0,0.0,0.0,0.0035607710406169966,0.0009661997539320183,0.00011062446529047456,7.261213419449603e-05,0.00028359319207302546 +99979,81.0,the Columbus-Albany Area,G1302150010402,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,NaturalGas,26156.0,,4818.0,,8.53126424238864,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00606350753995969,0.003736576785596667,0.0,0.00980000346477329,0.003701402344961858,0.0005398265877654912,0.004386535759901493,0.0004281578463478544,0.0007440809257965921,0.003701402344961858,0.0005398265877654912,0.0013940399001014184,0.0004281578463478544,0.0,0.0,0.002992495859800075,0.0007440809257965921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024965409650730137,0.0,0.0,0.000722572030591724,0.000455198134337974,0.0009722261270990254,0.0004410862509546477,6.432969549695746e-05,0.00016612401892863193,5.102242924751195e-05,0.0,0.0,0.00019993938116299957,4.971471534430181e-05,0.0,0.0,0.0,0.000367203958612148,5.3554421140244676e-05,0.0004351737923930486,4.247613240527195e-05,7.381782254831206e-05 +99980,85.0,Rural Climate Zone 3A,G1300310110100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,35899.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0031655972806013703,0.0,0.0,0.0031655972806013703,0.002047028734107284,0.0009658804621205079,0.0001526880843735784,0.0,0.0,0.002047028734107284,0.0009658804621205079,0.0001526880843735784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037723909614522733,9.75369831932486e-05,0.00037723909614522733,0.0002439410957831129,0.00011510240887162239,1.8195591490492007e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002439410957831129,0.00011510240887162239,1.8195591490492007e-05,0.0,0.0 +99981,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock DOE Ref 1980-2004,gen4_led,_1000,Propane,13395.0,,1348.0,2897.0,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0026895706330564303,0.0009270523453477884,0.0006446908194593276,0.004261313797863546,0.0011248560254088437,0.0001279484282918501,0.001982770318697583,0.0003811199259769572,0.0006446908194593276,0.0011248560254088437,0.0001279484282918501,0.0010557179733497947,0.0003811199259769572,0.0,0.0,0.0009270523453477884,0.0,0.0,0.0,0.0,0.0,0.0,0.0006446908194593276,0.0,6.193919900281286e-05,0.0,5.1991706222657717e-05,0.0003205129055441906,0.0002069534700457037,0.00043444381076966117,0.00013404774300832204,1.5247460694137115e-05,0.0001258086442924318,4.541760433219991e-05,0.0,0.0,6.193919900281286e-05,0.0,0.0,5.1991706222657717e-05,0.0,0.00011467982913880714,1.3044428410075997e-05,0.00020214476896017995,3.885543305557392e-05,6.572666310435714e-05 +99982,50.0,the Greater Atlanta and Macon Area,G1301210011303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,32970.0,,7841.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004490319055842085,0.002308103910437631,0.0,0.006798422966279714,0.0030261793185912805,0.0016504870266904556,0.0021217873106042775,0.0,0.0,0.0007180754081536496,0.0016504870266904556,0.0021217873106042775,0.0,0.0,0.002308103910437631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015421465549237377,0.0,0.0,0.0005351032731584788,0.00032404522207623985,0.0006893179286508526,8.557175926679665e-05,0.00019668558053544423,0.00025284959058161045,0.0,0.0,0.00015421465549237377,0.0,0.0,0.0,0.0,0.0,0.0003068358161832503,0.00016734914908154882,0.00021513607512181187,0.0,0.0 +99983,85.0,Rural Climate Zone 3A,G1301050000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,22119.0,,2043.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.00236849740306856,0.0007591203701188739,0.0,0.003127579024763662,0.0016556039025097814,0.00041976167472297285,0.0009717717197800643,0.0,8.044172775084385e-05,0.0011082824167291119,0.00041976167472297285,0.0008404533116164757,0.0,0.0,0.0005473214857806694,0.00013131840816358857,8.044172775084385e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.071872190125811e-05,0.0,0.0,0.00028224865337791186,0.0001165275416238619,0.00033296737527917,0.0001320715907388963,5.002208036062036e-05,0.00010015498227839525,0.0,0.0,3.6567911125275424e-05,8.773709791402366e-06,5.374512105916585e-06,0.0,0.0,0.0,0.00017625840356257322,4.468854087095644e-05,0.0001034564678761854,0.0,8.563962969454955e-06 +99984,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,24264.0,,586.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.002729555215776828,0.00021761114790401693,0.0,0.0029472051121046173,0.0016333623072646059,0.0002894894740012306,0.0009467014895995268,0.0,7.76518412392539e-05,0.0016333623072646059,0.0002894894740012306,0.0008067421829347636,0.0,0.0,0.0,0.00013995930666476302,7.76518412392539e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4539883603057278e-05,0.0,0.0,0.00032527747588890056,0.00011626493043427646,0.00033981735949195787,0.00019464562044695463,3.449807677648562e-05,9.613839626374387e-05,0.0,0.0,0.0,9.351506334444959e-06,5.188377268612319e-06,0.0,0.0,0.0,0.00018832922895956481,3.3378589176497735e-05,0.00010915616259673303,0.0,8.953378759162284e-06 +99985,50.0,the Greater Atlanta and Macon Area,G1302250040200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,103596.0,,5383.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009230298058915983,0.0015846271315755854,0.0,0.010814925190491568,0.0033294233184188817,0.002972871472452171,0.004512661089226813,0.0,0.0,0.0017447961868432963,0.002972871472452171,0.004512661089226813,0.0,0.0,0.0015846271315755854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001058749543513122,0.0,0.0,0.001099958331002115,0.00040620866702472443,0.0012058332853534272,0.00020792428254959303,0.00035427184715488235,0.0005377658585238644,0.0,0.0,0.0001058749543513122,0.0,0.0,0.0,0.0,0.0,0.00037122119549297313,0.00033146668251688046,0.000503148829147066,0.0,0.0 +99986,50.0,the Greater Atlanta and Macon Area,G1300890023410,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,NaturalGas,33806.0,,2704.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029907021337111364,0.0007959042497246236,0.0,0.0037866063834357607,0.0012303156268686068,0.0011052247915991702,0.0014510659649679832,0.0,0.0,0.0004344113771439829,0.0011052247915991702,0.0014510659649679832,0.0,0.0,0.0007959042497246236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.317789652093548e-05,0.0,0.0,0.000356395636990595,0.00016880062520166096,0.00040957353351153046,5.176788344383656e-05,0.00013170729681828933,0.0001729204567284691,0.0,0.0,5.317789652093548e-05,0.0,0.0,0.0,0.0,0.0,0.00013307554776100417,0.00011954525434700401,0.00015695273140352222,0.0,0.0 +99987,85.0,Rural Climate Zone 3A,G1302770960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,179459.0,,4087.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.009098512266314297,0.00069510108911175,0.0,0.009793613355426048,0.005306023419287842,0.001614172103681607,0.0017568837827516119,0.0,0.0011165517800664053,0.005306023419287842,0.001614172103681607,0.001061782693639862,0.0,0.0011165517800664053,0.0,0.00069510108911175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.644230747708002e-05,0.0,0.0,0.0010842524182025938,0.0003750236569409913,0.0011306947256796737,0.0006323087286151389,0.00019235782242022785,0.0001265306260504761,0.0,0.00013305735401023102,0.0,4.644230747708002e-05,0.0,0.0,0.0,0.0,0.0006125923575691943,0.00018635980589951095,0.00020283619075984886,0.0,0.0001289084184612896 +99988,85.0,Rural Climate Zone 3A,G1301750950300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,186722.0,,2485.0,,1.8706521585294562,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,140298.9118897092,0.0,0.0,0.011759484908235822,0.00042260316444695857,0.0,0.012182088072682779,0.00469101037271047,0.0030817141184193773,0.0027268586649584407,0.0,0.0016824871862330707,0.00469101037271047,0.0030817141184193773,0.0023042555005114824,0.0,0.0016824871862330707,0.0,0.00042260316444695857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.823601094540766e-05,0.0,0.0,0.0014013549352239162,0.00034002068091343606,0.0014295909461693238,0.0005590185784736559,0.0003672418751753043,0.00027459364443736106,0.0,0.00020049872424492352,0.0,2.823601094540766e-05,0.0,0.0,0.0,0.0,0.0005504988896157608,0.00036164494757295803,0.00032000199273304566,0.0,0.00019744303555630123 +99989,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12618.0,,275.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0030297255252183094,0.00021776772515559644,0.0,0.0032474105433001666,0.001378726919234255,0.0011365606073255629,0.0006439572761342476,0.0,8.824844767984103e-05,0.0011609591940786586,0.0011365606073255629,0.0006439572761342476,0.0,8.824844767984103e-05,0.00021776772515559644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4547222681700839e-05,0.0,0.0,0.000361045137652937,0.00012910053418592544,0.0003755923603346378,0.00013834872781268504,0.00013544120663973197,7.673884695800851e-05,0.0,1.0516356242511572e-05,1.4547222681700839e-05,0.0,0.0,0.0,0.0,0.0,0.00015946222103653253,0.000131453499789084,7.447947528436966e-05,0.0,1.0206730044749862e-05 +99990,81.0,the Columbus-Albany Area,G1300950001000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,40848.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004513060054108683,0.0,0.0,0.004513060054108683,0.001187350178051823,0.001365380584184797,0.001960329291872063,0.0,0.0,0.001187350178051823,0.001365380584184797,0.001960329291872063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005378125106206545,0.00015471704904320284,0.0005378125106206545,0.00014149419076809697,0.00016270972491593566,0.0002336085949366219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014149419076809697,0.00016270972491593566,0.0002336085949366219,0.0,0.0 +99991,50.0,the Greater Atlanta and Macon Area,G1301210000500,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9773.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0021398801188571015,0.0,0.0,0.0021398801188571015,0.0014061029606419655,0.00043661064226980384,0.0002517603324624518,0.0,4.532347640914047e-05,0.0014061029606419655,0.00043661064226980384,0.0002517603324624518,0.0,4.532347640914047e-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.0002550076134733227,8.352967782912335e-05,0.0002550076134733227,0.00016756404114945923,5.203050251326364e-05,3.0002055247276858e-05,0.0,5.4011584347922865e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016756404114945923,5.203050251326364e-05,3.0002055247276858e-05,0.0,5.4011584347922865e-06 +99992,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,153915.0,,10402.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.015451870121169171,0.003030313268705624,0.0,0.018482183389874795,0.01338157520989257,0.0036861704013649993,0.001414437778617227,0.0,0.0,0.010351261941186947,0.0036861704013649993,0.001414437778617227,0.0,0.0,0.003030313268705624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020246772145328954,0.0,0.0,0.001841368391629328,0.0007643887384212232,0.0020438361130826178,0.0012335391381438213,0.0004392735384135831,0.00016855571507192377,0.0,0.0,0.00020246772145328954,0.0,0.0,0.0,0.0,0.0,0.0014797898109209717,0.00040763193538125963,0.00015641436678038662,0.0,0.0 +99993,50.0,the Greater Atlanta and Macon Area,G1300670031306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,35723.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003325605402439447,0.0,0.0,0.003325605402439448,0.0019733120082718603,0.001162944375272642,0.0001893490188949449,0.0,0.0,0.0019733120082718603,0.001162944375272642,0.0001893490188949449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003963058678394478,0.0001071816300876444,0.0003963058678394478,0.00023515571852948436,0.00013858579840932305,2.2564350900640402e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002351557185294843,0.000138585798409323,2.25643509006404e-05,0.0,0.0 +99994,85.0,Rural Climate Zone 3A,G1300690010700,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,12249.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0010801155696058924,0.0,0.0,0.0010801155696058924,0.0006146097846229081,0.00034464923282017,0.00012079580496393901,0.0,0.0,0.0006146097846229081,0.00034464923282017,0.00012079580496393901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012871442791465219,3.283025699780121e-05,0.00012871442791465219,7.324137253882025e-05,4.107090952300438e-05,1.43949067747412e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.324137253882025e-05,4.107090952300438e-05,1.43949067747412e-05,0.0,0.0 +99995,35.0,Eastern Counties in South Carolina and Georgia,G1302450010107,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Propane,78622.0,,2896.0,15406.0,3.3063363735822096,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.006999597963431799,0.0008705702568259715,0.0014981141514602441,0.009368282371718014,0.0034291004036237686,0.0016511063758599702,0.002789930102751828,0.0,0.0014981141514602441,0.0034291004036237686,0.0016511063758599702,0.0019193598459258563,0.0,0.0,0.0,0.0008705702568259715,0.0,0.0,0.0,0.0,0.0,0.0,0.0014981141514602441,0.0,5.8166923799097615e-05,0.0,0.00012081974280377927,0.0008341287939005675,0.00048405157192886255,0.0010131154605034444,0.00040863938168761264,0.00019675921061363012,0.0002287264671067437,0.0,0.0,0.0,5.816692379909761e-05,0.0,0.0,0.00012081974280377927,0.0,0.0003708336807841909,0.00017855582591846933,0.0003017117982432776,0.0,0.0001620107665654227 +99996,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,3725.0,,495.0,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0008944770024906098,0.00039285860026171013,0.0,0.0012873356027523198,0.000666453600191339,0.00028955746516131525,0.00022066247273647222,0.0,0.00011066206466319332,0.00038425706459282224,0.00028955746516131525,0.00022066247273647222,0.0,0.0,0.0002821965355985169,0.0,0.00011066206466319332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6247931093905886e-05,0.0,0.0,0.00010659337422212,5.5132433434301694e-05,0.0001328413053160259,4.579129141340448e-05,3.4506093680225806e-05,2.6295989128489704e-05,0.0,0.0,1.8854303345769872e-05,0.0,7.393627748136017e-06,0.0,0.0,0.0,6.877193949479837e-05,2.987969225257994e-05,2.277035673518517e-05,0.0,1.1419316833462427e-05 +99997,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,20249.0,,5286.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004623781297424554,0.004099641701574356,0.0,0.00872342299899891,0.0028528492874407277,0.0008626228337750539,0.00413247117950018,0.00042734923851716917,0.0004480495989827121,0.0028528492874407277,0.0008626228337750539,0.00048095993769160306,0.00042734923851716917,0.0,0.0,0.0036515112418085763,0.0004480495989827121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002739139576542785,0.0,0.0,0.0005510042186762809,0.00041867971978057323,0.0008249181763305593,0.0003399667699471488,0.00010279656193974613,5.731476850558775e-05,5.092611828379812e-05,0.0,0.0,0.00024397251478800613,2.9936040224109602e-05,0.0,0.0,0.0,0.00026977566395801404,8.157271004518276e-05,0.00039078130104697336,4.0411677220546585e-05,4.236917757408677e-05 +99998,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,3527.0,,14.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000846920435090508,1.1413576176024422e-05,0.0,0.0008583340112665325,0.0006025210321908544,0.00011504553957137661,0.0001294365704020161,0.0,1.1413576176024422e-05,0.0006025210321908544,0.00011504553957137661,0.0001294365704020161,0.0,0.0,0.0,0.0,1.1413576176024422e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.635834051832499e-07,0.0,0.0,0.00010092754206800443,4.17978384531885e-05,0.00010169112547318769,7.180245546537227e-05,1.3709981544589271e-05,1.5424961263322942e-05,0.0,0.0,0.0,0.0,7.635834051832499e-07,0.0,0.0,0.0,7.138368173753827e-05,1.3630020768279444e-05,1.5334998204426546e-05,0.0,1.3522234838408072e-06 +99999,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,171837.0,,4663.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.015310522858616858,0.0013725312624521615,0.0,0.01668305412106902,0.009541613425199878,0.0026287796066423274,0.004512661089226813,0.0,0.0,0.008169082162747717,0.0026287796066423274,0.004512661089226813,0.0,0.0,0.0013725312624521615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.170525782390002e-05,0.0,0.0,0.0018245239769445708,0.000628668993179102,0.0019162292347684707,0.000973492963839244,0.00031326633758444584,0.0005377646755208808,0.0,0.0,9.170525782390002e-05,0.0,0.0,0.0,0.0,0.0,0.0010959575183021543,0.00030194377465032196,0.0005183279418159944,0.0,0.0 +100000,50.0,the Greater Atlanta and Macon Area,G1301950020200,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,NaturalGas,37568.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0027834062788761396,0.0,0.0,0.002783406278876139,0.0017888227652869558,0.0006861092376993759,0.00030847427588980757,0.0,0.0,0.0017888227652869558,0.0006861092376993759,0.00030847427588980757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003316947114096522,8.901022686996937e-05,0.0003316947114096522,0.00021317155723829434,8.176269749814634e-05,3.6760456673211494e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021317155723829436,8.176269749814635e-05,3.67604566732115e-05,0.0,0.0 +100001,85.0,Rural Climate Zone 3A,G1302330010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,17140.0,,1350.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016652794169259484,0.00039749178076784646,0.0,0.0020627405080874974,0.001110534093488673,0.0004319868982464644,0.0005201888267460621,0.0,0.0,0.0007130423127208264,0.0004319868982464644,0.0005201888267460621,0.0,0.0,0.00039749178076784646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.655716832587612e-05,0.0,0.0,0.00019844632918873453,8.976211057121664e-05,0.00022500349751461069,8.497110339410744e-05,5.147857671410245e-05,6.198933470474826e-05,0.0,0.0,2.655716832587612e-05,0.0,0.0,0.0,0.0,0.0,0.00012113693126424504,4.712108120476187e-05,5.67421374268765e-05,0.0,0.0 +100002,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,93139.0,,7574.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008246235832980144,0.0022295385183155117,0.0,0.010475805040901953,0.0037797626012313727,0.0024524371288557273,0.004243574621208555,0.0,0.0,0.0015502240829158604,0.0024524371288557273,0.004243574621208555,0.0,0.0,0.0022295385183155117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014896543009487644,0.0,0.0,0.0009826889630766594,0.0004184809106900226,0.0011316543931715359,0.00018473739139067383,0.00029225248319086455,0.0005056990884951208,0.0,0.0,0.00014896543009487644,0.0,0.0,0.0,0.0,0.0,0.00040831085879588667,0.00026492582097610524,0.00045841439813855384,0.0,0.0 +100003,50.0,the Greater Atlanta and Macon Area,G1302970110603,ComStock 90.1-2007,gen4_led,_1000,Electricity,17784.0,,5271.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0035235304560259553,0.003625946574636248,0.0,0.007149477030662204,0.0010705640073500262,0.00012493618950919444,0.005125826328485721,0.00037186804971594336,0.00045628245560131754,0.0010705640073500262,0.00012493618950919444,0.001499879753849474,0.00037186804971594336,0.00045628245560131754,0.0,0.003625946574636248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024226237775002107,0.0,0.0,0.0004198928427874824,0.0003497392730422946,0.0006621552205375034,0.0001275772041826365,1.4888422970868413e-05,0.0001787379963201901,4.431485252810146e-05,5.4374366785685915e-05,0.0,0.00024226237775002107,0.0,0.0,0.0,0.0,9.915124467792179e-05,1.1571077123932456e-05,0.00047473299773102904,3.44408925875946e-05,4.225900841702542e-05 +100004,50.0,the Greater Atlanta and Macon Area,G1301530021300,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,105230.0,,2669.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009375858861585986,0.0007857459900400841,0.0,0.010161635541232367,0.0023318576657120533,0.003048030318275245,0.004781747557245071,0.0,0.0,0.0015461116756719686,0.003048030318275245,0.004781747557245071,0.0,0.0,0.0007857459900400841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.249937621570514e-05,0.0,0.0,0.0011173044368141258,0.00037415351506407294,0.001169803813029831,0.000184247380484373,0.0003632283557622611,0.0005698323577933296,0.0,0.0,5.2499376215705134e-05,0.0,0.0,0.0,0.0,0.0,0.00026844261218819323,0.00035088814926307504,0.000550473051578563,0.0,0.0 +100005,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,33859.0,,3902.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003016788299064184,0.001148589205297824,0.0,0.004165408193968306,0.001574867836772916,0.0014489176925271438,0.0011416226646682457,0.0,0.0,0.00042627863147509166,0.0014489176925271438,0.0011416226646682457,0.0,0.0,0.001148589205297824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.674244264439318e-05,0.0,0.0,0.000359506577466417,0.0001736614104397183,0.00043624902011081014,5.079904741616004e-05,0.00017266555987125614,0.00013604562741783565,0.0,0.0,7.674244264439318e-05,0.0,0.0,0.0,0.0,0.0,0.00016493810896878536,0.00015174717438292727,0.00011956373675909749,0.0,0.0 +100006,50.0,the Greater Atlanta and Macon Area,G1300770170200,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,57243.0,,7983.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0029465910340371556,0.001357631504294863,0.0,0.004304222538332019,0.0018898083023177483,0.0004951912641006547,0.0009612870051110029,0.0,0.0009579182364411927,0.0015327010929564646,0.0004951912641006547,0.0007780969109190172,0.0,0.00014060176606101873,0.0003571072093612835,0.00018319009419198555,0.0008173164703801739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.070843819228951e-05,0.0,0.0,0.0003511405305831585,0.00018119053422101318,0.000441848968775448,0.00018264953255787769,5.9011149225622834e-05,9.272456170168849e-05,0.0,1.675528709796946e-05,2.3859668198546495e-05,1.2239615303479584e-05,5.46079700585074e-05,0.0,0.0,0.0,0.00019399783401672393,5.083374464050703e-05,9.868069509020624e-05,0.0,9.833487492186161e-05 +100007,50.0,the Greater Atlanta and Macon Area,G1301130140407,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,14572.0,,659.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003161560600758765,0.0005229568272536407,0.0,0.0036845174280124063,0.0019154131207286208,0.0012377113585087356,0.00043388130883640675,0.0,9.751163993864344e-05,0.0014899679334136233,0.0012377113585087356,0.00043388130883640675,0.0,0.0,0.0004254451873149973,0.0,9.751163993864344e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4942577825912896e-05,0.0,0.0,0.0003767558717111104,0.00016294812427296917,0.00041169844953702333,0.00017755603591470873,0.00014749520274569058,5.1704633050711175e-05,0.0,0.0,2.8427110602007903e-05,0.0,6.5154672239049996e-06,0.0,0.0,0.0,0.00021402330900419594,0.00013829866657661348,4.848077546681686e-05,0.0,1.0895698489397078e-05 +100008,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,21283.0,,927.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0010316410792257725,0.00015760518266284932,0.0,0.0011892462618886218,0.0006382752807604809,0.0003481711072055769,6.39356832807104e-05,0.0,0.00013886419064185356,0.0005759885210918354,0.0003481711072055769,6.39356832807104e-05,0.0,4.354576764764968e-05,6.228675966864549e-05,0.0,9.531842299420387e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.05298858204541e-05,0.0,0.0,0.00012293906583975606,3.6953482110243366e-05,0.0001334689516602102,6.863965786491907e-05,4.1491010327323015e-05,7.619116119586839e-06,0.0,5.189281527927144e-06,4.1614904811852025e-06,0.0,6.368395339268901e-06,0.0,0.0,0.0,7.163355086644463e-05,3.9075197598943665e-05,7.175493331048065e-06,0.0,1.5584709863773833e-05 +100009,50.0,the Greater Atlanta and Macon Area,G1301210007705,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,7281.0,,756.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002240865455892795,0.0005997916987574573,0.0,0.002840739861723992,0.0015436448242704339,0.0004925206241175756,0.0006576866503749726,0.0,0.00014688776296100994,0.001090658181400247,0.0004925206241175756,0.0006576866503749726,0.0,0.0,0.0004529866428701867,0.0,0.00014688776296100994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.007609248142947e-05,0.0,0.0,0.00026704371725036583,0.00010475835656327596,0.00030711980973179535,0.00012997362882485327,5.869363461378638e-05,7.837645381172618e-05,0.0,0.0,3.0267065433092836e-05,0.0,9.814553260758236e-06,0.0,0.0,0.0,0.0001668874757281343,5.324769170387053e-05,7.110422240624323e-05,0.0,1.588041989354728e-05 +100010,50.0,the Greater Atlanta and Macon Area,G1300130180108,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,110033.0,,6545.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010300475320123176,0.0019265093457319941,0.0,0.012226984665855168,0.005522625342877914,0.0025146142712148736,0.004189745051762384,0.0,0.0,0.003596115997145919,0.0025146142712148736,0.004189745051762384,0.0,0.0,0.0019265093457319941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012871905267754146,0.0,0.0,0.0012274862474999785,0.0005071261373573951,0.00135620530017752,0.0004285416734398332,0.0002996613592824498,0.0004992832147776955,0.0,0.0,0.00012871905267754146,0.0,0.0,0.0,0.0,0.0,0.0006125642556681718,0.0002789185801506132,0.0004647224643587355,0.0,0.0 +100011,50.0,the Greater Atlanta and Macon Area,G1301350050436,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,17657.0,,17365.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.003676509154202254,0.011945032892621036,0.0,0.015621542046823289,0.0029205806596977134,0.0005195394700370865,0.009710238595774594,0.00037229836954203696,0.0020988132318008417,0.0021263537006708366,0.0005195394700370865,0.00040873211481796745,0.00037229836954203696,0.00024951377916331084,0.0007942269590268767,0.009301506480956628,0.0018492994526375308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007980989603864547,0.0,0.0,0.00043812034269818386,0.0009083298490953131,0.0012362193030846388,0.0002533922188037095,6.191221104337802e-05,4.8707577406986664e-05,4.436585968058742e-05,2.97339290750845e-05,5.3065714930079074e-05,0.0006214736049044442,0.00012355964055193143,0.0,0.0,0.0,0.00023112175333984963,4.111404108820467e-05,0.0007684250603220758,2.9462035793604422e-05,0.0001660907369416374 +100012,50.0,the Greater Atlanta and Macon Area,G1300450910502,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,22270.0,,1541.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.001984236495177973,0.00045353100186745163,0.0,0.002437767497045425,0.0008117707761805364,0.0006323900273704636,0.0009936066934944253,0.0,0.0,0.0003582397743130846,0.0006323900273704636,0.0009936066934944253,0.0,0.0,0.00045353100186745163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0302659585797546e-05,0.0,0.0,0.00023645728238254126,0.00010321783684201647,0.0002667599419683388,4.269067910063266e-05,7.536058712821353e-05,0.0001184060161536951,0.0,0.0,3.0302659585797546e-05,0.0,0.0,0.0,0.0,0.0,8.88304259565235e-05,6.920115524026023e-05,0.00010872836077155512,0.0,0.0 +100013,81.0,the Columbus-Albany Area,G1300530020100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,9300.0,,3069.0,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.0,0.0,0.0014740350670844466,0.0016072441620357816,0.0,0.0030812792291202286,0.0026686040042279567,0.0002850893007524067,0.00011988818545620167,0.0,7.69773868366322e-06,0.0010690575808758383,0.0002850893007524067,0.00011988818545620167,0.0,0.0,0.0015995464233521186,0.0,7.69773868366322e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010738743875152107,0.0,0.0,0.00017565609095276317,0.00016859522012498178,0.00028304352970428425,0.0001273962064087781,3.3973189146493676e-05,1.4286695397491406e-05,0.0,0.0,0.00010687311711891361,0.0,5.143216326074889e-07,0.0,0.0,0.0,0.00024513555590848895,2.618804592692722e-05,1.1012820539167403e-05,0.0,7.071073297006392e-07 +100014,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,46239.0,,9375.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0023801769081121483,0.0015942431774454678,0.0,0.003974420085557617,0.0011882888223719388,0.0007523524261371005,0.0015249529250159013,0.0,0.0005087904513098353,0.0008835216399226512,0.0007523524261371005,0.00023549466038114134,0.0,0.0005087904513098353,0.00030476718244928756,0.0012894582646347601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010651778960645793,0.0,0.0,0.0002836415682940354,0.00016985366869999235,0.0003901593579004933,0.0001052877467701115,8.965653827328654e-05,2.8063491653802274e-05,0.0,6.063167870030945e-05,2.0362719488693947e-05,8.615388548110746e-05,0.0,0.0,0.0,0.0,0.00011665148473401049,7.385664654906395e-05,0.00014970099819461017,0.0,4.994674732806872e-05 +100015,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,36841.0,,5358.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.0033795185414414565,0.0015610511431032553,0.0,0.004940569684544711,0.003189562050557757,0.0012940368304459786,0.0004569404299415384,0.0,0.0,0.0016285109074545014,0.0012940368304459786,0.0004569404299415384,0.0,0.0,0.0015610511431032553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001043006517158108,0.0,0.0,0.00040272984716544934,0.0002033406617070048,0.0005070304988812601,0.00019406608983618142,0.0001542075442289741,5.44525935447537e-05,0.0,0.0,0.0001043006517158108,0.0,0.0,0.0,0.0,0.0,0.00032733173317361377,0.00013280171753557855,4.689393105354528e-05,0.0,0.0 +100016,50.0,the Greater Atlanta and Macon Area,G1300670031111,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,231928.0,,19964.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.0131422403346629,0.003395098256518811,0.0,0.016537338591181713,0.008284103575207013,0.0031124231043989092,0.0034860904713265215,0.0,0.001654703709887848,0.007473506911805038,0.0031124231043989092,0.0009015888782096849,0.0,0.001654703709887848,0.0008105966634019739,0.0025845015931168364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022684047286354754,0.0,0.0,0.001566134947491226,0.0006770264801192745,0.0017929754203547734,0.0008906031282980126,0.00037090134338220465,0.00010744057439806487,0.0,0.00019718778852062543,5.415929570658623e-05,0.00017268117715696124,0.0,0.0,0.0,0.0,0.0008981610921324134,0.0003374483804127503,0.00037796133239688346,0.0,0.00017940269308997468 +100017,50.0,the Greater Atlanta and Macon Area,G1300670030312,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,18448.0,,1373.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0044723023053793096,0.0010895002823678964,0.0,0.005561802587747206,0.0030190563127059384,0.000940544842563404,0.0014389376689164703,0.0,0.00016326376356139285,0.0019295560303380422,0.000940544842563404,0.0014389376689164703,0.0,0.00016326376356139285,0.0010895002823678964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.279357835998587e-05,0.0,0.0,0.000532957550886292,0.0002372515474541662,0.000605751129246278,0.00022994229504340707,0.00011208331672668773,0.00017147604154158573,0.0,1.9455897574611467e-05,7.279357835998587e-05,0.0,0.0,0.0,0.0,0.0,0.0003288136789875665,0.00010243731083600271,0.00015671863646893905,0.0,1.778150295376973e-05 +100018,81.0,the Columbus-Albany Area,G1300950000502,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,64071.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0070432124792225185,0.0,0.0,0.00704321247922252,0.004099949946505493,0.00205614081393861,0.0008871217187784175,0.0,0.0,0.004099949946505493,0.00205614081393861,0.0008871217187784175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008393248088136945,0.00019779067519056016,0.0008393248088136945,0.0004885824068417575,0.00024502597367949365,0.0001057164282924436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004885824068417574,0.00024502597367949354,0.00010571642829244359,0.0,0.0 +100019,50.0,the Greater Atlanta and Macon Area,G1301210007706,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,46129.0,,8619.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0023745031924577316,0.001465751248234345,0.0,0.003840272171053496,0.0015829843979437343,0.0008050115995546574,0.0010921548027524124,0.0,0.00036012137080269246,0.0011638386539736861,0.0008050115995546574,0.0003289513954262397,0.0,7.670154350314842e-05,0.0004191457439700482,0.0007632034073261728,0.00028341982729954406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.793342064211069e-05,0.0,0.0,0.00028296529514709636,0.00016251858724316266,0.00038089871578920705,0.00013869256915354758,9.593179136939597e-05,3.9200548978622636e-05,0.0,9.140385645530183e-06,2.8005008697087142e-05,5.0993045658465145e-05,1.8936550931596364e-05,0.0,0.0,0.0,0.00015700885182982,7.984535231045034e-05,0.00010832574965573022,0.0,3.571876199320655e-05 +100020,50.0,the Greater Atlanta and Macon Area,G1300970080403,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,44217.0,,2838.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.003939686139648702,0.000835340393817172,0.0,0.004775026533465874,0.002387804817992765,0.0008957989182236464,0.0014914534868557597,0.0,0.0,0.0015524644241755928,0.0008957989182236464,0.0014914534868557597,0.0,0.0,0.000835340393817172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.581214197777013e-05,0.0,0.0,0.0004694854444675691,0.000206609626179903,0.0005252975864453393,0.00018500444562549812,0.00010675077617053463,0.00017773387989775745,0.0,0.0,5.581214197777013e-05,0.0,0.0,0.0,0.0,0.0,0.00026268086658855347,9.854626071400663e-05,0.0001640738352865564,0.0,0.0 +100021,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,50779.0,,13262.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,166687.57849830156,0.0,0.0,0.013230659342912928,0.011483929192749986,0.0,0.024714588535662916,0.013603965584949508,0.0010537437622856031,0.006965614609570595,0.000631686523707365,0.0024596683347730686,0.0078047637074496815,0.0010537437622856031,0.002357200962412363,0.000631686523707365,0.0013833546666811426,0.0057992018774998275,0.004608413647158232,0.001076313668091926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007672900610866725,0.0,0.0,0.0015766747925790665,0.0012683614586713014,0.002343964853665739,0.0009300801933324206,0.0001255728217901009,0.00028090356210928164,7.527699058133446e-05,0.00016485198323249795,0.0003874692962797042,0.00030790767946157577,7.191308534539252e-05,0.0,0.0,0.0,0.0012902184131282205,9.993847722784707e-05,0.0006606282684194455,5.9910000442361724e-05,0.0002332782566888874 +100022,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,43798.0,,7614.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002627231764139164,0.001294759642699356,0.0,0.00392199140683852,0.0017446675637331959,0.000639995125818226,0.0007396042962760827,0.0,0.0007977066906495957,0.0011254346911378516,0.000639995125818226,0.0007396042962760827,0.0,0.00012217992054558386,0.0006192328725953441,0.0,0.0006755267701040118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.650815166362897e-05,0.0,0.0,0.0003130820198287313,0.00016848478465276496,0.00039959017149236026,0.00013411582910052651,7.626695497774881e-05,8.813718306576391e-05,0.0,1.4559939792543966e-05,4.1373463839126896e-05,0.0,4.513468782450207e-05,0.0,0.0,0.0,0.0001777545993022136,6.520558959769007e-05,7.535422109037132e-05,0.0,8.12739550529054e-05 +100023,35.0,Eastern Counties in South Carolina and Georgia,G1301270000403,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,141470.0,,3443.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007141718658551588,0.0005854919948129836,0.0,0.007727210653364574,0.0046599290491411175,0.001128572965109201,0.0008683799112699261,0.0,0.0010702932671214876,0.004288353864861072,0.001128572965109201,0.000654463100736989,0.0,0.0010702932671214876,0.0003715751842800466,0.00021391681053293705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.91192811304345e-05,0.0,0.0,0.0008510648055316888,0.0002706320605481051,0.0008901840866621233,0.0005110348394470699,0.000134489858394083,7.799110244835028e-05,0.0,0.0001275447794564008,2.4826563341121556e-05,1.4292717789312952e-05,0.0,0.0,0.0,0.0,0.0005368295068691804,0.00013001298130003227,0.0001000384243249494,0.0,0.00012329908904946347 +100024,50.0,the Greater Atlanta and Macon Area,G1301210011618,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,24745.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.005426162986814742,0.0,0.0,0.005426162986814742,0.0031197935285204154,0.0012301850147984589,0.0009400486001209682,0.0,0.00013621855044863932,0.0031197935285204154,0.0012301850147984589,0.0009400486001209682,0.0,0.00013621855044863932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006466272831895603,0.00018747322190912236,0.0006466272831895603,0.0003717808732176964,0.00014659920755653397,0.00011202410871907789,0.0,1.6232949767756578e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003717808732176964,0.00014659920755653397,0.00011202410871907789,0.0,1.6232949767756578e-05 +100025,85.0,Rural Climate Zone 3A,G1302850960902,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,278233.0,,124.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,1133273.7058648225,0.0,0.0,0.024790235347914275,3.6643389919457116e-05,0.0,0.02482687873783373,0.005352021821468984,0.007564067264194805,0.011910820341776237,0.0,0.0,0.005315378431549527,0.007564067264194805,0.011910820341776237,0.0,0.0,3.6643389919457116e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4478358144659403e-06,0.0,0.0,0.0029542040081068743,0.0009014086817859982,0.00295665184392134,0.000633423283269055,0.0009013951467529877,0.0014193892353053723,0.0,0.0,2.4478358144659403e-06,0.0,0.0,0.0,0.0,0.0,0.0006373763433676904,0.0009008105151029556,0.0014184686402992158,0.0,0.0 +100026,81.0,the Columbus-Albany Area,G1302150000300,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,4471.0,,285.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00027005167260105145,8.316291526056448e-05,0.0,0.00035324496146105374,0.0002695656950100474,6.97985315079537e-05,1.3880734943052586e-05,0.0,0.0,0.00018640277974948293,6.97985315079537e-05,1.3880734943052586e-05,0.0,0.0,8.316291526056448e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.556816659762886e-06,0.0,0.0,3.218322914974842e-05,1.456782575992887e-05,3.77400458095113e-05,2.22144277687556e-05,8.318193744924291e-06,1.6542273896563975e-06,0.0,0.0,5.556816659762886e-06,0.0,0.0,0.0,0.0,0.0,2.8799905981032908e-05,7.457147486694496e-06,1.4829923417838922e-06,0.0,0.0 +100027,85.0,Rural Climate Zone 3A,G1302850960901,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6555.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006105700958976872,0.0,0.0,0.0006105700958976871,0.0004158145763028225,0.0001445783333236987,5.0207559870603765e-05,0.0,0.0,0.0004158145763028225,0.0001445783333236987,5.0207559870603765e-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,7.276160580668288e-05,2.2237576192467203e-05,7.276160580668288e-05,4.955260091003326e-05,1.7229392281355613e-05,5.983232235521182e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.955260091003327e-05,1.7229392281355617e-05,5.9832322355211835e-06,0.0,0.0 +100028,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,24275.0,,519.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0012270828531590144,8.820854806476269e-05,0.0,0.001315291401223777,0.0008120150923155782,0.0002582427140830691,0.00011359842561827828,0.0,0.00013139970848401132,0.0007238065442508157,0.0002582427140830691,0.00011359842561827828,0.0,0.00013139970848401132,8.820854806476269e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.893280683200716e-06,0.0,0.0,0.0001462292742812231,5.1085688807164446e-05,0.00015212255496442387,8.625473448130811e-05,3.0774323487256025e-05,1.3537321701534451e-05,0.0,1.5658668820051792e-05,5.893280683200716e-06,0.0,0.0,0.0,0.0,0.0,9.391516617366088e-05,2.986755743306194e-05,1.3138444248103523e-05,0.0,1.5197285831542878e-05 +100029,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,30239.0,,1275.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026942405368753277,0.0003752418162020119,0.0,0.003069451663471042,0.0010479272966413592,0.0007723346320879882,0.0012492511139542896,0.0,0.0,0.0006726854804393473,0.0007723346320879882,0.0012492511139542896,0.0,0.0,0.0003752418162020119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5070491785749008e-05,0.0,0.0,0.000321066804453196,0.00012993204227855883,0.00034613729623894505,8.016247051839163e-05,9.203744391011652e-05,0.0001488705472385442,0.0,0.0,2.5070491785749004e-05,0.0,0.0,0.0,0.0,0.0,0.00011817313347239458,8.709497677520887e-05,0.0001408761076298042,0.0,0.0 +100030,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,29537.0,,5030.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002631725808846907,0.0014806814350452658,0.0,0.004112407243892173,0.0022089764820960502,0.0007348933124047909,0.0011685374493913313,0.0,0.0,0.0007282950470507846,0.0007348933124047909,0.0011685374493913313,0.0,0.0,0.0014806814350452658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.893019699537789e-05,0.0,0.0,0.00031361683225823375,0.00018933855203100077,0.0004125470292536116,8.678927904936437e-05,8.757557945792759e-05,0.00013925197375094176,0.0,0.0,9.893019699537789e-05,0.0,0.0,0.0,0.0,0.0,0.00022159932889266004,7.37227698694551e-05,0.0001172249304914964,0.0,0.0 +100031,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,50771.0,,2231.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004477068557124618,0.0006498431599707002,0.0,0.0051269117170953185,0.0041897343064434866,0.0006960110311160831,0.0002411663795357495,0.0,0.0,0.003539891146472786,0.0006960110311160831,0.0002411663795357495,0.0,0.0,0.0006498431599707002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3419206939919586e-05,0.0,0.0,0.000533522913910333,0.0001990932124010287,0.0005769421208502526,0.00042184143827462525,8.294218162995442e-05,2.8739294005753354e-05,0.0,0.0,4.3419206939919586e-05,0.0,0.0,0.0,0.0,0.0,0.000471479582630314,7.832358007810387e-05,2.713895814183481e-05,0.0,0.0 +100032,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5226.0,,610.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008849656890105896,0.00048350555307999116,0.0,0.0013683885350168415,0.000953199024845518,0.0002292640084053602,0.0001451509144124845,0.0,4.094000150095717e-05,0.00046969347176552685,0.0002292640084053602,0.0001451509144124845,0.0,4.094000150095717e-05,0.00048350555307999116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.230382698168044e-05,0.0,0.0,0.00010545594219315234,5.737432516748466e-05,0.00013775976917483276,5.597049492662729e-05,2.7319988014898903e-05,1.7296745658783395e-05,0.0,4.878569288374803e-06,3.230382698168044e-05,0.0,0.0,0.0,0.0,0.0,9.5961398594134e-05,2.3080693874441607e-05,1.4612776965961406e-05,0.0,4.121552477578858e-06 +100033,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock 90.1-2004,gen5_led,5001_10000,NaturalGas,13726.0,,227.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030885302546469567,0.00017980517830925433,0.0,0.003268335432956211,0.0018327060469893132,0.0004963251495095839,0.00075949905814806,0.0,0.00017980517830925433,0.0018327060469893132,0.0004963251495095839,0.00075949905814806,0.0,0.0,0.0,0.0,0.00017980517830925433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2014255388370578e-05,0.0,0.0,0.00036805421929114084,0.0001410352238526292,0.00038006847467951136,0.00021840006012565648,5.914611493361906e-05,9.050804423186532e-05,0.0,0.0,0.0,0.0,1.2014255388370578e-05,0.0,0.0,0.0,0.00021312187996111277,5.771670209154916e-05,8.832069243571002e-05,0.0,2.0909200191139452e-05 +100034,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,67680.0,,3120.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005680531314047222,0.0009089907103735985,0.0,0.006589522024420819,0.0037068851961815446,0.0020320545495844727,0.0008506126522542398,0.0,0.0,0.002797894485807947,0.0020320545495844727,0.0008506126522542398,0.0,0.0,0.0009089907103735985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.073339955088556e-05,0.0,0.0,0.0006769376535972301,0.00025357998290630174,0.0007376710531481156,0.0003334195383364654,0.0002421559116091256,0.00010136582321326061,0.0,0.0,6.073339955088556e-05,0.0,0.0,0.0,0.0,0.0,0.0004149712067783464,0.00022748050831170112,9.522273826296956e-05,0.0,0.0 +100035,85.0,Rural Climate Zone 3A,G1300310110500,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6243.0,,,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,26178.17466051906,0.0,0.0,0.0016161789279398064,0.0,0.0,0.0016161789279398064,0.0008532888797684348,0.00020519624994722168,0.0005200620796727651,0.0,3.746630440390626e-05,0.0008532888797684348,0.00020519624994722168,0.0005200620796727651,0.0,3.746630440390626e-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.00019259456565271662,6.473512763668393e-05,0.00019259456565271662,0.0001016835440273823,2.4452541701263492e-05,6.197403555725306e-05,0.0,4.464732523447143e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001016835440273823,2.4452541701263492e-05,6.197403555725306e-05,0.0,4.464732523447143e-06 +100036,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970500,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,37704.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0028895316353116443,0.0,0.0,0.002889531635311644,0.0020565052971318627,0.0006586515038076483,0.00017437483437213321,0.0,0.0,0.0020565052971318627,0.0006586515038076483,0.00017437483437213321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003443408192447732,8.834916593154906e-05,0.0003443408192447732,0.00024507041561399153,7.84904361822176e-05,2.077996744856404e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002450704156139916,7.849043618221761e-05,2.0779967448564045e-05,0.0,0.0 +100037,50.0,the Greater Atlanta and Macon Area,G1302070050200,ComStock 90.1-2007,gen1_t12_incandescent,_1000,NaturalGas,3082.0,,14.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0007400628958193228,1.1248162028545808e-05,0.0,0.0007512283507741294,0.0004447986425699953,0.00021090303803523395,8.427850814035427e-05,0.0,1.1248162028545808e-05,0.0004447986425699953,0.00021090303803523395,8.427850814035427e-05,0.0,0.0,0.0,0.0,1.1248162028545808e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.494204547423807e-07,0.0,0.0,8.818767351291765e-05,2.7887879331587717e-05,8.893709396766005e-05,5.300327538583719e-05,2.5131712947914624e-05,1.0042829605460785e-05,0.0,0.0,0.0,0.0,7.494204547423806e-07,0.0,0.0,0.0,5.265921957041458e-05,2.4968577520371368e-05,9.97763940912095e-06,0.0,1.3316574677531392e-06 +100038,81.0,the Columbus-Albany Area,G1300950011400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7476.0,,83.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002174286261532653,6.583483069648871e-05,0.0,0.002240121092229142,0.0011390418195377418,0.0004542272489762763,0.0005999571129049361,0.0,4.689491081018731e-05,0.0010732069888412532,0.0004542272489762763,0.0005999571129049361,0.0,4.689491081018731e-05,6.583483069648871e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.398158133620127e-06,0.0,0.0,0.00025910325831065146,9.012787093469613e-05,0.00026350141644427156,0.00012789090037045964,5.4128916833736454e-05,7.149511338527391e-05,0.0,5.5883277211814594e-06,4.398158133620127e-06,0.0,0.0,0.0,0.0,0.0,0.00013398344128744718,5.3429934617387436e-05,7.057187649572626e-05,0.0,5.516164043710612e-06 +100039,50.0,the Greater Atlanta and Macon Area,G1300890022005,ComStock 90.1-2004,gen4_led,_1000,NaturalGas,13296.0,,1427.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.0030218483240539505,0.0011065798162928021,0.0,0.004128428140346753,0.0017127122461744863,0.00017943007762906304,0.001464469642154106,0.00041756508376587727,0.00035417022984015153,0.0009603026597218355,0.00017943007762906304,0.001464469642154106,0.00041756508376587727,0.0,0.0007524095864526505,0.0,0.00035417022984015153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.393757736334852e-05,0.0,0.0,0.0003601033750904636,0.00017865388873925696,0.00043404095245381207,0.00011443599803522372,2.1382071374213654e-05,0.00017451586059413413,4.975980918271263e-05,0.0,5.027323035191508e-05,0.0,2.3664347011433432e-05,0.0,0.0,0.0,0.0001800654460577443,1.8864322968799136e-05,0.00015396654046323624,4.3900569540729496e-05,3.723557215112223e-05 +100040,50.0,the Greater Atlanta and Macon Area,G1301510070205,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,9523.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0008397692772549625,0.0,0.0,0.0008397692772549626,0.00040937537322201906,0.0003545206526374393,7.590362499494181e-05,0.0,0.0,0.00040937537322201906,0.0003545206526374393,7.590362499494181e-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.00010007349141684876,3.089636829153172e-05,0.00010007349141684876,4.8784379243210626e-05,4.224746064154582e-05,9.045271088350153e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.878437924321062e-05,4.224746064154581e-05,9.045271088350151e-06,0.0,0.0 +100041,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,133706.0,,12944.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.01191306068303597,0.0038102066906786935,0.0,0.015723267373714662,0.008170892849519284,0.0026091689482180954,0.004943205575977285,0.0,0.0,0.004360686158840589,0.0026091689482180954,0.004943205575977285,0.0,0.0,0.0038102066906786935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002545755716826757,0.0,0.0,0.001419656886667901,0.0006502889845385341,0.0016742324583505766,0.0005196547134869277,0.00031092972363453873,0.0005890724495464346,0.0,0.0,0.0002545755716826757,0.0,0.0,0.0,0.0,0.0,0.0008700465175094131,0.00027782745396354186,0.0005263584868776218,0.0,0.0 +100042,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,300263.0,,46874.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.05427790030266198,0.03244542741638339,0.0,0.08672332771904537,0.07412188304456166,0.006589210010616133,0.0026625301367030458,0.0007610012547171252,0.0025887032724474157,0.042845128394312836,0.006589210010616133,0.0026625301367030458,0.0007610012547171252,0.0014200305063128379,0.03127675465024881,0.0,0.001168672766134578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678142784175482,0.0,0.0,0.006468191088856401,0.0038389950227068334,0.00863600536727395,0.005105770048872196,0.0007852232535822763,0.00031728850246606977,9.068702928673242e-05,0.00016922225464912605,0.002089730378436468,0.0,7.808389998107995e-05,0.0,0.0,0.0,0.007381139500078362,0.0006561608567665622,0.0002651377104161387,7.578135079791247e-05,0.0002577859492149756 +100043,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,16671.0,,9136.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0035171473786055657,0.006284821060097996,0.0,0.009801968438703564,0.0028862267935812354,0.00046460197223912843,0.004112781737890215,0.0003689275309043032,0.001969502124059695,0.001790273916491683,0.00046460197223912843,0.0006609712528798714,0.0003689275309043032,0.00023244442606159537,0.0010959528770895525,0.003451810485010344,0.0017370576979980994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041991736268318824,0.0,0.0,0.00041913126738913194,0.000525643284389061,0.0008390486300723203,0.00021334328500341584,5.536566782517938e-05,7.87665938062447e-05,4.396434011928415e-05,2.769992735742611e-05,7.322557593474609e-05,0.0002306310937872779,0.00011606069296116418,0.0,0.0,0.0,0.00024706105231579994,3.9769935067011706e-05,0.00035205417203114944,3.1580201603073204e-05,0.0001685894082857685 +100044,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,33790.0,,2.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.003029094831189562,6.137921259540556e-07,0.0,0.003029677933709219,0.0009950491049904176,0.0008661220689337679,0.0011685374493913313,0.0,0.0,0.0009944353128644634,0.0008661220689337679,0.0011685374493913313,0.0,0.0,6.137921259540556e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.011211893929829e-08,0.0,0.0,0.00036096979295807495,0.00013697676347022692,0.0003610099050770143,0.00011850441435467225,0.00010321364015423138,0.0001392517384491714,0.0,0.0,4.011211893929829e-08,0.0,0.0,0.0,0.0,0.0,0.00011856791078111869,0.0001032052425150273,0.00013924040868833464,0.0,0.0 +100045,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,69915.0,,2420.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006165202840275428,0.0007051231109474085,0.0,0.006870325951222836,0.004149064056796337,0.002280875076178535,0.0004404171918474014,0.0,0.0,0.003443940945848928,0.002280875076178535,0.0004404171918474014,0.0,0.0,0.0007051231109474085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.711213421087429e-05,0.0,0.0,0.0007346952484534512,0.00023581410033857695,0.0007818073826643255,0.00041040775371414286,0.0002718074529254921,5.2483661376669704e-05,0.0,0.0,4.711213421087429e-05,0.0,0.0,0.0,0.0,0.0,0.00047214192365548833,0.00025955172813511786,5.011718723145936e-05,0.0,0.0 +100047,50.0,the Greater Atlanta and Macon Area,G1301530020900,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,19622.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004711573869707125,0.0,0.0,0.004711573869707126,0.0026467090667315766,0.0004848288662598201,0.001501712337884605,0.0,7.824089175738482e-05,0.0026467090667315766,0.0004848288662598201,0.001501712337884605,0.0,7.824089175738482e-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.0005614662732111872,0.00019259509918034717,0.0005614662732111872,0.00031540158704216833,5.777582273182685e-05,0.00017895523939641422,0.0,9.323768049182566e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0003154015870421683,5.777582273182684e-05,0.0001789552393964142,0.0,9.323768049182564e-06 +100048,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,162397.0,,5225.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.014469351439603121,0.0015379789300030771,0.0,0.016007330369606203,0.00786632919662088,0.0032516251664542056,0.004889376006531114,0.0,0.0,0.006328350266617803,0.0032516251664542056,0.004889376006531114,0.0,0.0,0.0015379789300030771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010275969913658055,0.0,0.0,0.0017242844585632637,0.0006357197879267335,0.001827044157699844,0.0007541371884304073,0.0003874898445167601,0.0005826574256160966,0.0,0.0,0.00010275969913658055,0.0,0.0,0.0,0.0,0.0,0.0008978468282580622,0.0003711338884265241,0.0005580634410152572,0.0,0.0 +100049,50.0,the Greater Atlanta and Macon Area,G1301350050608,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,14944.0,,1031.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003588246394179853,0.000817642130986793,0.0,0.004405888525166646,0.002656882036801512,0.000630889558483437,0.0010318534519715994,0.0,8.618077083635833e-05,0.0019254206766510767,0.000630889558483437,0.0010318534519715994,0.0,0.0,0.0007314613601504347,0.0,8.618077083635833e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.462972576692797e-05,0.0,0.0,0.00042760052213801315,0.0001926007391311548,0.00048223024790494115,0.0002294465865016237,7.518120970078977e-05,0.0001229628699825712,0.0,0.0,4.887166646598331e-05,0.0,5.7580593009446655e-06,0.0,0.0,0.0,0.0002907992056409366,6.905168536387324e-05,0.00011293770668585243,0.0,9.432597817141572e-06 +100050,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,42900.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034630155662958365,0.0,0.0,0.0034630155662958356,0.002091222321289213,0.0009592590174430781,0.00041250385396410753,0.0,0.0,0.002091222321289213,0.0009592590174430781,0.00041250385396410753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004126813461519315,0.00010948487774251722,0.0004126813461519315,0.00024920720861087655,0.00011431317447129563,4.915734350245918e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002492072086108766,0.00011431317447129566,4.9157343502459194e-05,0.0,0.0 +100051,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,15819.0,,634.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0038601872526346954,0.0005026935941875104,0.0,0.0043628808468222065,0.0031764478740318406,0.0006001225270524148,0.0004931822807074901,0.0,9.304545795672083e-05,0.0027668824448747907,0.0006001225270524148,0.0004931822807074901,0.0,0.0,0.00040956542915705026,0.0,9.304545795672083e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.358475742522753e-05,0.0,0.0,0.0004600157125940958,0.00018214320788721412,0.0004936004700193233,0.00032972737233781594,7.151616588997406e-05,5.877217436630585e-05,0.0,0.0,2.7362902068069547e-05,0.0,6.216329730730663e-06,0.0,0.0,0.0,0.0003593717588588297,6.789567990104852e-05,5.579684940048955e-05,0.0,1.0526824681460798e-05 +100052,35.0,Eastern Counties in South Carolina and Georgia,G1300510011200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,9124.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007216767226409833,0.0,0.0,0.0007216767226409833,0.00044928628288322495,0.00022476463583936347,4.759543031895711e-05,0.0,0.0,0.00044928628288322495,0.00022476463583936347,4.759543031895711e-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,8.600001871389703e-05,2.3780726893171562e-05,8.600001871389703e-05,5.354007899057091e-05,2.6784517612914054e-05,5.67180258100491e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.354007899057091e-05,2.6784517612914054e-05,5.67180258100491e-06,0.0,0.0 +100053,85.0,Rural Climate Zone 3A,G1301750950800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,30420.0,,,,5.759960461090961,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,43199.70345818221,0.0,0.0,0.0057176182435464485,0.0,0.0,0.0057176182435464485,0.0035527520750217576,0.0004499082588089972,0.0016866782739842214,0.0,2.8279635731471976e-05,0.0035527520750217576,0.0004499082588089972,0.0016866782739842214,0.0,2.8279635731471976e-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.0006813600373267332,0.00022942630030719545,0.0006813600373267332,0.000423376165273317,5.3614896090992145e-05,0.0002009989339559765,0.0,3.3700420064475104e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.000423376165273317,5.3614896090992145e-05,0.0002009989339559765,0.0,3.3700420064475104e-06 +100054,35.0,Eastern Counties in South Carolina and Georgia,G1302450010106,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,286692.0,,31508.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014757547181475391,0.005358292524754157,0.0,0.02011585743659097,0.008080966824417469,0.0028058828858076165,0.006211690280624139,0.0,0.003017317445741746,0.007607264758357916,0.0028058828858076165,0.003913604945886835,0.0,0.00043081232178444304,0.0004737020660595508,0.002298085334737304,0.0025865051239573025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035801009892433375,0.0,0.0,0.0017586292403021918,0.0007816670238805158,0.002116639339226526,0.0009065434843780803,0.00033437180495949064,0.00046637696686257704,0.0,5.133909699598556e-05,3.165003081619214e-05,0.0001535447634157694,0.0001728153046923722,0.0,0.0,0.0,0.0008502989411941846,0.0002952418069219196,0.0006536091266556662,0.0,0.0003174894644547555 +100055,50.0,the Greater Atlanta and Macon Area,G1301350050536,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,69770.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005891718950937909,0.0,0.0,0.005891718950937909,0.003051119184320484,0.0019192166276732247,0.0009214135125436393,0.0,0.0,0.003051119184320484,0.0019192166276732247,0.0009214135125436393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007021054688548426,0.00019620202161835964,0.0007021054688548426,0.0003635963431518264,0.0002287095670087947,0.00010980317826101564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003635963431518264,0.0002287095670087947,0.00010980317826101564,0.0,0.0 +100056,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970201,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,18088.0,,2868.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004246323162060666,0.002224156699082924,0.0,0.00647047986114359,0.0029438176683928207,0.00044513861079224527,0.0019326535761208818,0.00040883211919447626,0.0007401187474262344,0.0014597797167361314,0.00044513861079224527,0.0019326535761208818,0.00040883211919447626,0.0,0.0014840379516566893,0.0,0.0007401187474262344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014860468214079355,0.0,0.0,0.0005060297079221154,0.0002856507039769007,0.0006546343900629089,0.0001739603594682932,5.304668359125653e-05,0.00023031222243680697,4.872007851723761e-05,0.0,9.915442926379639e-05,0.0,4.945025287699714e-05,0.0,0.0,0.0,0.0002978332867361942,4.5035770023697994e-05,0.0001955313241301373,4.1362552813772394e-05,7.487963724376162e-05 +100057,85.0,Rural Climate Zone 3A,G1302330010700,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,27447.0,,3299.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0014128615801183278,0.0005609709049690507,0.0,0.0019738147547259583,0.0008826528522130687,0.0002388811594123714,0.0006135414265795072,0.0,0.00023875704688243105,0.0007071222741545459,0.0002388811594123714,0.00022810109966897932,0.0,0.00023875704688243105,0.00017553057805852273,0.0003854403269105278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.748054934175248e-05,0.0,0.0,0.00016836704961250402,8.636432278657219e-05,0.0002058475989542565,8.426592717222454e-05,2.8466848121743674e-05,2.7182216365043596e-05,0.0,2.8452057953492192e-05,1.1727849757683538e-05,2.575269958406893e-05,0.0,0.0,0.0,0.0,9.205117648611978e-05,2.4912729516642392e-05,6.398575611919345e-05,0.0,2.4899785917843574e-05 +100058,50.0,the Greater Atlanta and Macon Area,G1301210008903,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,23794.0,,1185.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0021269124748559934,0.0003488180651796898,0.0,0.0024757305400356835,0.0007399264078376141,0.0006748951320927819,0.0010608783104989897,0.0,0.0,0.00039110834265792426,0.0006748951320927819,0.0010608783104989897,0.0,0.0,0.0003488180651796898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3306314257729584e-05,0.0,0.0,0.0002534586714888431,0.00010468572112528888,0.00027676498574657273,4.660737200527844e-05,8.042551143817313e-05,0.00012642213084419846,0.0,0.0,2.3306314257729587e-05,0.0,0.0,0.0,0.0,0.0,8.271729027333418e-05,7.544736335134352e-05,0.00011859690129276713,0.0,0.0 +100059,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,33701.0,,2621.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029718137161885137,0.0007635011690667675,0.0,0.0037353148852552814,0.0025110462127178185,0.0009677028780867732,0.0002565354208512519,0.0,0.0,0.0017475450436510512,0.0009677028780867732,0.0002565354208512519,0.0,0.0,0.0007635011690667675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.101237449027548e-05,0.0,0.0,0.0003541442666400412,0.00015180109867352158,0.0004051566411303167,0.00020825095951774054,0.00011531894621074502,3.0570741358943893e-05,0.0,0.0,5.101237449027548e-05,0.0,0.0,0.0,0.0,0.0,0.0002723644673930146,0.00010496337249784022,2.782550672055111e-05,0.0,0.0 +100060,50.0,the Greater Atlanta and Macon Area,G1301210011419,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4546.0,,626.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010397106239768336,0.000496655977804541,0.0,0.001536366601781375,0.0009403794284159252,0.0002561438073706351,0.00023323394794484695,0.0,0.00010669212512370656,0.0005503328686613516,0.0002561438073706351,0.00023323394794484695,0.0,0.0,0.00039004655975457376,0.0,0.00010669212512370656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.318538947730978e-05,0.0,0.0,0.00012389678038624797,7.520489229074207e-05,0.00015708216986355772,6.558023838120228e-05,3.0523293998584835e-05,2.7793248006460844e-05,0.0,0.0,2.606199779766743e-05,0.0,7.128917972644399e-06,0.0,0.0,0.0,9.614687076596957e-05,2.618881783308776e-05,2.3846453435359215e-05,0.0,1.0908484018302617e-05 +100061,50.0,the Greater Atlanta and Macon Area,G1301350050522,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,4297.0,,436.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0007101229351256934,0.00034612910359900154,0.0,0.0010562520387246953,0.0006572731150062761,0.00020163984577643151,0.0001545795208187656,0.0,4.2842264196961245e-05,0.0003111440114072745,0.00020163984577643151,0.0001545795208187656,0.0,4.2842264196961245e-05,0.00034612910359900154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3126105103388973e-05,0.0,0.0,8.462736601279138e-05,4.837371957148172e-05,0.00010775347111618037,3.707991508736562e-05,2.402999281844694e-05,1.8421680302574787e-05,0.0,5.105634241163049e-06,2.3126105103388973e-05,0.0,0.0,0.0,0.0,0.0,6.705166666355691e-05,2.0570273477507453e-05,1.576941801864702e-05,0.0,4.3705503122841926e-06 +100062,50.0,the Greater Atlanta and Macon Area,G1300670031406,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,18636.0,,937.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004619355482487798,0.0007431230575476771,0.0,0.005362395832961737,0.003256839149706448,0.0005102199378977874,0.0014500204167975379,0.0,0.00014523362148622382,0.0026590324207187337,0.0005102199378977874,0.0014500204167975379,0.0,0.0,0.0005978067289877139,0.0,0.00014523362148622382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.964931094415279e-05,0.0,0.0,0.0005504752156400628,0.00022722365110271255,0.0006001245265842156,0.0003168691932755858,6.080143245154242e-05,0.00017279473395046877,0.0,0.0,3.994048074616988e-05,0.0,9.70330439821172e-06,0.0,0.0,0.0,0.0003644842927977241,5.7100502876457915e-05,0.00016227687087535424,0.0,1.625360399595722e-05 +100063,85.0,Rural Climate Zone 3A,G1302770960600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Propane,80465.0,,,2661.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007095485443854891,0.0,0.00025076443695807904,0.0073462498808129694,0.004355847521768551,0.0024882963867389426,0.0005021059723054754,0.0,0.0,0.004105083084810473,0.0024882963867389426,0.0005021059723054754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025076443695807904,0.0,0.0,0.0,0.0,2.022368857129271e-05,0.000845556600424629,0.00020827082403382467,0.0008657802889959215,0.0004891955772609121,0.0002965259319137991,5.983509124991777e-05,0.0,0.0,0.0,0.0,0.0,2.022368857129271e-05,0.0,0.0,0.0005133512999698841,0.00029325410920815864,5.9174879817878626e-05,0.0,0.0 +100064,81.0,the Columbus-Albany Area,G1302150000200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,27666.0,,3083.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023633452017734957,0.0009074609686167735,0.0,0.003270806170390269,0.0013868939981994863,0.0008095918141333995,0.0010743510476636812,0.0,0.0,0.0004794330295827129,0.0008095918141333995,0.0010743510476636812,0.0,0.0,0.0009074609686167735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.063117349351671e-05,0.0,0.0,0.00028163654676337794,0.0001397488374794573,0.00034226772025689465,5.713336450157763e-05,9.647792571704124e-05,0.00012802891378227682,0.0,0.0,6.063117349351671e-05,0.0,0.0,0.0,0.0,0.0,0.00014512906674169217,8.471830188855835e-05,0.00011242356308615472,0.0,0.0 +100065,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,35268.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029046576878316447,0.0,0.0,0.0029046576878316447,0.001926354423541096,0.0007491648301321486,0.00022913843415839973,0.0,0.0,0.001926354423541096,0.0007491648301321486,0.00022913843415839973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003461427209786588,8.253614598102341e-05,0.0003461427209786588,0.00022956011805699508,8.927659663643189e-05,2.7306006285231795e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022956011805699508,8.927659663643189e-05,2.7306006285231795e-05,0.0,0.0 +100066,50.0,the Greater Atlanta and Macon Area,G1301350050535,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,172467.0,,9855.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.015208395348076153,0.002870912618856302,0.0,0.018079307966932454,0.012874518340878742,0.0036685840872905406,0.0015361751651637363,0.0,0.0,0.010003605722022439,0.0036685840872905406,0.0015361751651637363,0.0,0.0,0.002870912618856302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019181858801661813,0.0,0.0,0.0018123548088884818,0.000743960891408558,0.0020041733969050997,0.0011921101813561902,0.000437178009924225,0.00018306299804546708,0.0,0.0,0.00019181858801661813,0.0,0.0,0.0,0.0,0.0,0.0014271988288462102,0.0004066792072741369,0.00017029199373331082,0.0,0.0 +100067,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,246124.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.020911682904010593,0.0,0.0,0.020911682904010593,0.0052668581639928585,0.005240864067458705,0.010403960672559031,0.0,0.0,0.0052668581639928585,0.005240864067458705,0.010403960672559031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002492003948705235,0.0007853996887341287,0.002492003948705235,0.0006276410847557083,0.0006245434196130471,0.0012398194443364798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006276410847557083,0.0006245434196130471,0.0012398194443364798,0.0,0.0 +100068,50.0,the Greater Atlanta and Macon Area,G1301210001900,ComStock 90.1-2004,gen5_led,1001_5000,NaturalGas,7051.0,,293.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014456369418893544,0.00023207604891249664,0.0,0.001677712990801851,0.0009895074302170741,0.0002484520495128795,0.0004080767018297428,0.0,3.175951631589404e-05,0.0007891081905467322,0.0002484520495128795,0.0004080767018297428,0.0,0.0,0.00020039923967034187,0.0,3.175951631589404e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5506589082355724e-05,0.0,0.0,0.00017227213906787297,7.23753496192746e-05,0.00018777872815022866,9.403561295535079e-05,2.960727191257454e-05,4.862925419994766e-05,0.0,0.0,1.3390044670900895e-05,0.0,2.1220706370722007e-06,0.0,0.0,0.0,0.0001107510329597898,2.7808099549582792e-05,4.567415551852247e-05,0.0,3.554697146151728e-06 +100069,50.0,the Greater Atlanta and Macon Area,G1301350050212,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,5852.0,,45.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001405193182830833,3.5977577076598724e-05,0.0,0.0014411707599074318,0.0010249060577774975,0.00018567738054474516,0.00019444433036111175,0.0,3.5977577076598724e-05,0.0010249060577774975,0.00018567738054474516,0.00019444433036111175,0.0,0.0,0.0,0.0,3.5977577076598724e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.404835036845713e-06,0.0,0.0,0.000167453107746331,6.452921916749424e-05,0.00016985794278317673,0.0001221353096640691,2.2126676097146155e-05,2.3171410024227443e-05,0.0,0.0,0.0,0.0,2.404835036845713e-06,0.0,0.0,0.0,0.00012079653526365142,2.188413667421703e-05,2.2917418851262472e-05,0.0,4.240356103912876e-06 +100070,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock 90.1-2004,gen5_led,1001_5000,NaturalGas,3278.0,,736.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007870405137032495,0.000583829233525771,0.0,0.0013707870401552813,0.0009896728443645527,0.00016632392528974723,0.0001793089358668185,0.0,3.556404170790219e-05,0.0004414076525466837,0.00016632392528974723,0.0001793089358668185,0.0,0.0,0.0005482651918178689,0.0,3.556404170790219e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.900749753141159e-05,0.0,0.0,9.37853669167183e-05,6.382410557063048e-05,0.00013279286444812987,5.25990440557509e-05,1.9819501142236288e-05,2.1366821718731113e-05,0.0,0.0,3.66313502104728e-05,0.0,2.3761473209387994e-06,0.0,0.0,0.0,9.58730189445108e-05,1.6112371811583757e-05,1.7370274533820774e-05,0.0,3.4452112774644525e-06 +100071,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,12545.0,,1713.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010722027752228423,0.000504199541864959,0.0,0.0015764023170878013,0.0006749872009116749,0.0004188824363573453,0.00048253267981878084,0.0,0.0,0.00017078765904671598,0.0004188824363573453,0.00048253267981878084,0.0,0.0,0.000504199541864959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.368697557764674e-05,0.0,0.0,0.0001277739610194925,7.21264928804342e-05,0.00016146093659713924,2.0352694652473754e-05,4.991804659687589e-05,5.7503219770142834e-05,0.0,0.0,3.368697557764674e-05,0.0,0.0,0.0,0.0,0.0,6.913467740368103e-05,4.29034833083042e-05,4.942277588515399e-05,0.0,0.0 +100072,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3958.0,,,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,8726.05822017302,0.0,0.0,0.0006111225678597425,0.0,0.0,0.0006111225678597425,0.0002406775845813846,0.00014357948001143768,0.00019965487600668812,0.0,2.7127920186492836e-05,0.0002406775845813846,0.00014357948001143768,0.00019965487600668812,0.0,2.7127920186492836e-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,7.282235637993828e-05,2.502072622640362e-05,7.282235637993828e-05,2.8679531339236757e-05,1.7109163713029215e-05,2.3791198849799843e-05,0.0,3.2326069688211888e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.8679531339236757e-05,1.7109163713029215e-05,2.3791198849799843e-05,0.0,3.2326069688211888e-06 +100073,35.0,Eastern Counties in South Carolina and Georgia,G1300510010808,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,270095.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.02381739725191422,0.0,0.0,0.02381739725191422,0.017763179543984334,0.004990230519625436,0.0010639871883044464,0.0,0.0,0.017763179543984334,0.004990230519625436,0.0010639871883044464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002838273171877179,0.0008111984622971277,0.002838273171877179,0.0021168037554093453,0.0005946761208006155,0.00012679329566721789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021168037554093453,0.0005946761208006155,0.00012679329566721789,0.0,0.0 +100075,46.0,the Tallahassee-Valdosta Area,G1301850010402,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,69141.0,,4839.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0033489638561038336,0.0008228660735046506,0.0,0.004171829929608485,0.0016054487658629412,0.0009183972608358951,0.0011612854819291983,0.0,0.00048669842098044943,0.0016054487658629412,0.0009183972608358951,0.00033841940842454783,0.0,0.00048669842098044943,0.0,0.0008228660735046506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4979480344370355e-05,0.0,0.0,0.0003990893370536235,0.00015144992370325506,0.0004540688173979938,0.0001913181244025746,0.00010944356813849627,4.0328765300966795e-05,0.0,5.799887921158582e-05,0.0,5.497948034437036e-05,0.0,0.0,0.0,0.0,0.0001747396789439275,9.995986537458096e-05,0.00012639621804778038,0.0,5.297305503170484e-05 +100076,35.0,Eastern Counties in South Carolina and Georgia,G1301270000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,324529.0,,2527.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.015606051357593437,0.0004298016911834999,0.0,0.016035853048776937,0.006985478713718084,0.0032647446393585825,0.0024099461849364174,0.0,0.0033756835107638535,0.006985478713718084,0.0032647446393585825,0.001980144493752917,0.0,0.0033756835107638535,0.0,0.0004298016911834999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.871680380375535e-05,0.0,0.0,0.0018597434839097162,0.0004960311332049594,0.0018884602877134718,0.000832446223721166,0.00038905341463726814,0.00023597005642717354,0.0,0.0004022737891241086,0.0,2.871680380375535e-05,0.0,0.0,0.0,0.0,0.0008226440527609181,0.0003844722561500623,0.0002838070199281431,0.0,0.0003975369588743483 +100077,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,135394.0,,10854.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.04344733951604123,0.009399011573985101,0.0,0.05284635109002634,0.0258232223088695,0.0023850973659889775,0.014197824946525477,0.0006361102252454043,0.009804096243396988,0.0258232223088695,0.0023850973659889775,0.009483874419816877,0.0006361102252454043,0.005118944916497257,0.0,0.004713950526708598,0.004685151326899731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006279890556904877,0.0,0.0,0.0051775318242010746,0.00238203945122073,0.005805520879891561,0.003077301321482004,0.0002842272427674595,0.0011301741872410621,7.580397261590218e-05,0.0006100143416540264,0.0,0.00031495964405800427,0.0003130354436088134,0.0,0.0,0.0,0.00283685161241941,0.000262018706556197,0.0015597248906680922,6.988091170729264e-05,0.0010770447585405705 +100078,50.0,the Greater Atlanta and Macon Area,G1300890023102,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,71017.0,,6096.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005952283908216787,0.0017760658535230997,0.0,0.007728380135339326,0.004937107094208807,0.0019874053584109774,0.0008038980563189776,0.0,0.0,0.0031610412406857078,0.0019874053584109774,0.0008038980563189776,0.0,0.0,0.0017760658535230997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001186667696928236,0.0,0.0,0.000709323657672324,0.00030133386844740853,0.0008279904273651475,0.0003766959656949523,0.00023683575243439272,9.579917868445214e-05,0.0,0.0,0.0001186667696928236,0.0,0.0,0.0,0.0,0.0,0.0005289436261279308,0.00021292335304961535,8.612670230413514e-05,0.0,0.0 +100079,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,85964.0,,4992.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010693946762466024,0.001469418349534009,0.0,0.012163365112000031,0.00502263027707574,0.0027895317644296945,0.0043512030704945985,0.0,0.0,0.003553211927541731,0.0027895317644296945,0.0043512030704945985,0.0,0.0,0.001469418349534009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.817785041170828e-05,0.0,0.0,0.001274376206258766,0.0005135383168831298,0.0013725540566704743,0.00042342914518211445,0.00033242291047019134,0.0005185241506064602,0.0,0.0,9.817785041170828e-05,0.0,0.0,0.0,0.0,0.0,0.0005667700918683265,0.0003147799235017416,0.0004910040413004064,0.0,0.0 +100080,50.0,the Greater Atlanta and Macon Area,G1301210002900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,441897.0,,35587.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.020865071588756716,0.0060519219938680435,0.0,0.026916993582624765,0.012032177866876234,0.006129315021466573,0.004414647229256107,0.0,0.004340853465025847,0.01003994126663484,0.006129315021466573,0.003999668120219771,0.0,0.0006961471804355333,0.0019922366002413927,0.00041497910903633584,0.0036447062845903137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004043536740058835,0.0,0.0,0.002486450867820926,0.0009933294825823545,0.00289080454182681,0.001196440691281752,0.0007304188049124981,0.0004766328371418127,0.0,8.295853448486364e-05,0.00013310947986653154,2.7726452446767807e-05,0.00024351774169258404,0.0,0.0,0.0,0.0012922198877398574,0.0006582700868116437,0.00047411989833569826,0.0,0.0004661946689396102 +100081,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000400,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,18422.0,,6400.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0036105985008389073,0.0044026021407643,0.0,0.008013200641603208,0.0021400522151348174,0.000333210985338529,0.0033084422629501378,0.00037473684855656776,0.0018567583296231547,0.001411879349413319,0.000333210985338529,0.0012634190094110043,0.00037473684855656776,0.00022735230811948707,0.000728172865721499,0.0020450232535391337,0.0016294060215036675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000294156392069345,0.0,0.0,0.0004302700260782273,0.0004005316457525769,0.0007244264181475723,0.00016825170795097596,3.970829194047721e-05,0.0001505598947101693,4.465687158609415e-05,2.7093259890510713e-05,4.865229610465024e-05,0.00013663661687461805,0.00010886747909007672,0.0,0.0,0.0,0.00019346955482556363,3.0123648638344753e-05,0.0002990968385034101,3.387775810059219e-05,0.00016785861807966149 +100082,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,143185.0,,21408.0,,3.3063363735822096,Lodging,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,247975.22801866572,0.0,0.0,0.013027153154141206,0.00643469877518324,0.0,0.01946185192932445,0.005191958166663056,0.00234283053996795,0.007910625606923082,0.0,0.004016437615770362,0.005191958166663056,0.00234283053996795,0.005492364447510204,0.0,0.0,0.0,0.002418261159412878,0.004016437615770362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042992926867093024,0.0,0.0,0.0015524215293847335,0.0010296288662281349,0.001982350798055664,0.0006187159652015289,0.00027919074312795036,0.0006545148210552546,0.0,0.0,0.0,0.00016157419143401748,0.0002683550772369128,0.0,0.0,0.0,0.0005288439380040741,0.0002386366933362985,0.0008057627322390114,0.0,0.00040910743447628 +100083,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,5624.0,,584.0,,9.325022323477118,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,27975.06697043135,0.0,0.0,0.0014431365327213022,0.0004951280534238568,0.0,0.0019382645861451592,0.00124206257314628,0.0002747863473928545,0.00031729912741728777,0.0,0.0001040281540306818,0.000850962673753105,0.0002747863473928545,0.00031729912741728777,0.0,0.0,0.00039109989939317496,0.0,0.0001040281540306818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3081399196876805e-05,0.0,0.0,0.00017197458058548952,8.90083779378957e-05,0.00020505597978236632,0.00010140686317228645,3.274552737875348e-05,3.781165753931329e-05,0.0,0.0,2.6130880300996047e-05,0.0,6.950518895880758e-06,0.0,0.0,0.0,0.00013140226556687613,2.9070635711052295e-05,3.356821556856794e-05,0.0,1.1005512457995674e-05 +100084,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,20254.0,,1081.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0022225708391428968,0.00040182115451649846,0.0,0.002624391993659395,0.0012906712474243056,0.0003815944773074713,0.0008847040115641942,0.0,6.742225736342405e-05,0.0010176498535262105,0.0003815944773074713,0.000755904250945791,0.0,6.742225736342405e-05,0.00027302139389809527,0.00012879976061840317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6847121174940032e-05,0.0,0.0,0.00026485778814611366,9.571973722154203e-05,0.00029170490932105373,0.00012127059554876102,4.5473587364893515e-05,9.007907618951489e-05,0.0,8.034529042944223e-06,1.824154443574035e-05,8.605576739199679e-06,0.0,0.0,0.0,0.0,0.00014345994809571942,4.241476984738793e-05,9.833611140897252e-05,0.0,7.494079968973903e-06 +100085,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,30862.0,,1643.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006389460497809774,0.0011302350232350142,0.0,0.007519623801073773,0.002803103347174142,0.00046453025226811287,0.0019856391175382074,0.00036648905188977243,0.0018999337521745526,0.0016728683239391278,0.00046453025226811287,0.0019856391175382074,0.00036648905188977243,0.0018999337521745526,0.0011302350232350142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.551358265398037e-05,0.0,0.0,0.0007614175025183566,0.00028324360681160457,0.0008369310851723369,0.00019935192050916125,5.535701561148285e-05,0.00023662410594712274,4.3673668330195656e-05,0.00022641079212039404,7.551358265398037e-05,0.0,0.0,0.0,0.0,0.0,0.00031198426786532385,5.1702029039087684e-05,0.0002210008300102179,4.079008312331913e-05,0.0002114618575381306 +100086,81.0,the Columbus-Albany Area,G1302150010302,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12235.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002703032583948045,0.0,0.0,0.002703032583948045,0.0013683885350168415,0.0004812724620890299,0.0007824916246475875,0.0,7.079725512084716e-05,0.0013683885350168415,0.0004812724620890299,0.0007824916246475875,0.0,7.079725512084716e-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.00032211824855640043,8.040176572677375e-05,0.00032211824855640043,0.00016306977609588293,5.735285748576262e-05,9.324890611321537e-05,0.0,8.43685272517835e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016306977609588293,5.735285748576262e-05,9.324890611321537e-05,0.0,8.43685272517835e-06 +100087,50.0,the Greater Atlanta and Macon Area,G1301350050544,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4473.0,,56.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010739513525049068,4.4413698598008086e-05,0.0,0.001118365051102915,0.0005893706074663048,0.0002882341519814864,0.00019626388598337655,0.0,4.4413698598008086e-05,0.0005893706074663048,0.0002882341519814864,0.00019626388598337655,0.0,0.0,0.0,0.0,4.4413698598008086e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.970032616623068e-06,0.0,0.0,0.00012797835277066863,4.354108168794399e-05,0.00013094838538729172,7.02328642159249e-05,3.434767496386448e-05,2.3387957730057507e-05,0.0,0.0,0.0,0.0,2.970032616623068e-06,0.0,0.0,0.0,6.900888879380573e-05,3.374908468234815e-05,2.2980366700491295e-05,0.0,5.200361111742025e-06 +100088,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2999.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.00020807553069842485,0.0,0.0,0.00020807553069842485,8.936813353891051e-05,8.071366456295832e-05,3.796304299025834e-05,0.0,0.0,8.936813353891051e-05,8.071366456295832e-05,3.796304299025834e-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,2.4794739804465894e-05,1.1047410262373549e-05,2.4794739804465894e-05,1.0649304175605413e-05,9.618018537720546e-06,4.523760049870843e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0649304175605413e-05,9.618018537720546e-06,4.523760049870843e-06,0.0,0.0 +100089,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,155005.0,,13195.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007488932326240482,0.0022440077324061424,0.0,0.009732940058646626,0.0035836606502210717,0.002168068594444057,0.0027036318914981715,0.0,0.0012775611921219047,0.002914055820831358,0.002168068594444057,0.0011292467188431631,0.0,0.0012775611921219047,0.0006696048293897141,0.0015743851726550085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014993099499569843,0.0,0.0,0.0008924423681954756,0.00038526743571868196,0.0010423733631911738,0.0003472627024127601,0.0002583647690414125,0.0001345702661125905,0.0,0.00015224463062871264,4.473893600031247e-05,0.00010519087436010556,0.0,0.0,0.0,0.0,0.00038380102846603104,0.00023219468514163016,0.0002895521651824224,0.0,0.00013682358552404448 +100090,35.0,Eastern Counties in South Carolina and Georgia,G1302450010106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,27470.0,,7292.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005719739408465997,0.005016023052860821,0.0,0.010735762461326818,0.0037997957843780893,0.0006294861856040182,0.004125045852933885,0.0003808330460928947,0.0018005298723469153,0.0024176085029652336,0.0006294861856040182,0.0004912100814859201,0.0003808330460928947,0.0018005298723469153,0.0013821872814128561,0.0036338357714479647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033514218361686864,0.0,0.0,0.0006816092228708342,0.0005415963061525557,0.0010167514064877029,0.00028810128141030155,7.501453460316876e-05,5.85364643382822e-05,4.538306696397701e-05,0.00021456532883816243,9.234990724294446e-05,0.00024279227637392413,0.0,0.0,0.0,0.0,0.00035986710045510717,5.961672185678782e-05,0.0003906705450968449,3.606753937103148e-05,0.00017052270732763564 +100091,85.0,Rural Climate Zone 3A,G1302770960400,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,6534.0,,53.0,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0015689531888346618,4.218060760704678e-05,0.0,0.0016112165035154476,0.0010029059761628419,0.00027806118191155154,0.00028806873783400775,0.0,4.218060760704678e-05,0.0010029059761628419,0.00027806118191155154,0.00028806873783400775,0.0,0.0,0.0,0.0,4.218060760704678e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8198309027746287e-06,0.0,0.0,0.000186971922858232,6.762551412799416e-05,0.00018979175376100663,0.00011951615901839333,3.313651052447949e-05,3.432910950528319e-05,0.0,0.0,0.0,0.0,2.8198309027746287e-06,0.0,0.0,0.0,0.00011813637934941567,3.2753959044428125e-05,3.393278981313004e-05,0.0,4.968625554032821e-06 +100092,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890101,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,37178.0,,2974.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0018519717110473553,0.0005058117505912663,0.0,0.002357801192000042,0.0009928115877158568,0.00031494440990439797,0.0006327965990816846,0.0,0.00041726632565952264,0.0008313589166248559,0.00031494440990439797,0.0006327965990816846,0.0,7.288951579783707e-05,0.0001614526710910008,0.0,0.00034437680986168555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.37959560165022e-05,0.0,0.0,0.0002206959455835308,9.734639183277434e-05,0.00025449190160003305,9.90714605030653e-05,3.753132617278997e-05,7.540916686972212e-05,0.0,8.686104931393321e-06,1.0787506151369498e-05,0.0,2.3009634524275173e-05,0.0,0.0,0.0,0.00010716022612323453,3.399387617871266e-05,6.830160675664327e-05,0.0,4.503810628777929e-05 +100093,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,20583.0,,2975.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0046706805516043,0.0023072007232943018,0.0,0.006977800414115533,0.0030115790046042474,0.0009931321376476577,0.001894891590427879,0.00041999090725793314,0.0006583684957439528,0.0021465303473371376,0.0009931321376476577,0.0011111080201446398,0.00041999090725793314,0.0,0.0008650486572671098,0.0007837835702832394,0.0006583684957439528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015415279896687566,0.0,0.0,0.0005565914691087595,0.00030309539303654913,0.0007107442680756351,0.0002557958024126783,0.00011834867947082482,0.00013240752357992214,5.004909959057679e-05,0.0,5.779716971042779e-05,5.236754215770952e-05,4.3988087098738364e-05,0.0,0.0,0.0,0.0003067531870142647,0.0001011583783403823,0.00019300972464000315,4.277940214134064e-05,6.706004856272535e-05 +100094,50.0,the Greater Atlanta and Macon Area,G1301210011301,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,123144.0,,18847.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,140298.9118897092,0.0,0.0,0.011052983196730978,0.0032050997035415244,0.0,0.0142580829002725,0.007191576434864778,0.0017637099718983327,0.0023876236599085707,0.0,0.0029151551032394014,0.007191576434864778,0.0017637099718983327,0.0016729482517890823,0.0,0.00042474853817878503,0.0,0.0007146754081194883,0.0024904065650606165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002141457777763165,0.0,0.0,0.0013171630856265227,0.0005769229193694299,0.0015313088634028391,0.0008570065509795629,0.00021017797886664226,0.00019936207648191517,0.0,5.0616479298402424e-05,0.0,4.7750377612354805e-05,0.00016639421552623192,0.0,0.0,0.0,0.000772370648534871,0.00018942130799283485,0.0002564292337519263,0.0,0.0003130857688938811 +100095,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,11426.0,,129.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0011984499988467487,4.8125542324926826e-05,0.0,0.0012465755411716754,0.0007134747269153603,0.00016758693281425808,0.0003301365705381454,0.0,3.541605932768368e-05,0.0007134747269153603,0.00016758693281425808,0.0002820110282132185,0.0,3.541605932768368e-05,0.0,4.8125542324926826e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2165343828500433e-06,0.0,0.0,0.00014281489485908118,4.7385506559505315e-05,0.00014603142924193122,8.502216880727671e-05,1.99707206914393e-05,3.3606220853709876e-05,0.0,4.220402014329601e-06,0.0,3.2165343828500433e-06,0.0,0.0,0.0,0.0,8.358076238325446e-05,1.963215105129939e-05,3.8674202764640645e-05,0.0,4.148852268413328e-06 +100096,50.0,the Greater Atlanta and Macon Area,G1301210006900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,8473.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017867209139902584,0.0,0.0,0.001786720913990258,0.0009834698138341045,0.000596979658250321,0.00016599309699479,0.0,4.019563783730341e-05,0.0009834698138341045,0.000596979658250321,0.00016599309699479,0.0,4.019563783730341e-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.0002129154709855375,6.963037256347773e-05,0.0002129154709855375,0.00011719566104193985,7.113937275256259e-05,1.9780648533443213e-05,0.0,4.789932828726159e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011719566104193987,7.11393727525626e-05,1.978064853344322e-05,0.0,4.789932828726161e-06 +100097,50.0,the Greater Atlanta and Macon Area,G1300970080508,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,12171.0,,1292.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0010312444481105497,0.00037645039143149606,0.0,0.001407694839542046,0.0009722589180024358,0.0002898248858350279,0.00014561103570458225,0.0,0.0,0.0005958085265709398,0.0002898248858350279,0.00014561103570458225,0.0,0.0,0.00037645039143149606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5153201090075013e-05,0.0,0.0,0.0001228909913241266,5.391821174811066e-05,0.00014804419241420163,7.100110997331728e-05,3.453775445378229e-05,1.7352126897027072e-05,0.0,0.0,2.5153201090075013e-05,0.0,0.0,0.0,0.0,0.0,0.00010225034736932192,3.0480250377946572e-05,1.5313594666933125e-05,0.0,0.0 +100098,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,121626.0,,1897.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.013254440829173727,0.0007049888221092742,0.0,0.013959429651283002,0.006909657675461574,0.0020842002178527892,0.004717504348979763,0.0,0.0002481061574126461,0.006909657675461574,0.0020842002178527892,0.0040125155268704886,0.0,0.0002481061574126461,0.0,0.0007049888221092742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7102383592133105e-05,0.0,0.0,0.0015795067834154471,0.000567887602128032,0.00162660916700758,0.0008234109088516358,0.00024837021980199636,0.0004781639282210925,0.0,2.9566344117501724e-05,0.0,4.7102383592133105e-05,0.0,0.0,0.0,0.0,0.0008051412411936963,0.000242859433725285,0.0005497026749042958,0.0,2.891033230726184e-05 +100099,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300050970202,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5995.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011191094147665686,0.0,0.0,0.0011191094147665686,0.0006179045479063657,0.000273594999929629,0.00018509843102857,0.0,4.259414297574332e-05,0.0006179045479063657,0.000273594999929629,0.00018509843102857,0.0,4.259414297574332e-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.00013336640040523937,3.921707575820028e-05,0.00013336640040523937,7.363686183042964e-05,3.260483722862553e-05,2.2058532562776273e-05,0.0,5.076025142908749e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.363686183042964e-05,3.260483722862553e-05,2.2058532562776273e-05,0.0,5.076025142908749e-06 +100100,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,20184.0,,,5262.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001779862553452819,0.0,0.0004959401316196119,0.0022758026850724306,0.0016781717425352258,0.0004768351375732659,0.00012079580496393901,0.0,0.0,0.001182231610915614,0.0004768351375732659,0.00012079580496393901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004959401316196119,0.0,0.0,0.0,0.0,3.9997823756715384e-05,0.00021210249136327058,9.555429381653417e-05,0.00025210031511998593,0.00014088406408526731,5.6823444289356215e-05,1.4394982988647028e-05,0.0,0.0,0.0,0.0,0.0,3.9997823756715384e-05,0.0,0.0,0.00018589820105828795,5.2821050450020146e-05,1.3381063611677821e-05,0.0,0.0 +100101,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,5442.0,,42.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012551625510677294,3.333095071694089e-05,0.0,0.0012884935017846704,0.0008262436666556811,0.0002113992804776698,0.00021743689686063924,0.0,3.333095071694089e-05,0.0008262436666556811,0.0002113992804776698,0.00021743689686063924,0.0,0.0,0.0,0.0,3.333095071694089e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2296181205959977e-06,0.0,0.0,0.00014957135514932635,4.980924938371273e-05,0.00015180097326992234,9.845926712847722e-05,2.5191380058096875e-05,2.591085218025692e-05,0.0,0.0,0.0,0.0,2.2296181205959977e-06,0.0,0.0,0.0,9.734204525107671e-05,2.490553229847368e-05,2.5616840537045117e-05,0.0,3.926811234853244e-06 +100102,50.0,the Greater Atlanta and Macon Area,G1300210013603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,20022.0,,3577.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004515346987329658,0.0027740908847319807,0.0,0.007289437872061638,0.003308742382381087,0.0006624923956804479,0.0020659930074008836,0.0004258128836388671,0.0008265589245264905,0.002144993992458835,0.0006624923956804479,0.0012822094371176447,0.0004258128836388671,0.0,0.0011637483899222512,0.0007837835702832394,0.0008265589245264905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018534873891766612,0.0,0.0,0.0005380886816734293,0.0003297546323678807,0.0007234374205910954,0.00025561645491218026,7.894845308913536e-05,0.0001527994166525594,5.07436291916742e-05,0.0,7.775494944189381e-05,5.236789361730662e-05,5.522589585846572e-05,0.0,0.0,0.0,0.000328374848173748,6.574879960623471e-05,0.00020503867080914152,4.225963367831465e-05,8.203151831745771e-05 +100103,50.0,the Greater Atlanta and Macon Area,G1300630040417,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,39992.0,,1277.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.0036651070488417812,0.00038370274386526976,0.0,0.0040488097927070515,0.0013276039726485048,0.0007658072485981379,0.0013648022050046038,0.0,0.000590596366455805,0.0013276039726485048,0.0007658072485981379,0.000981099461139334,0.0,0.000590596366455805,0.0,0.00038370274386526976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5636533081829225e-05,0.0,0.0,0.00043676479934004334,0.00019474628426518394,0.0004624013324218726,0.00015820838927477126,9.125999454035468e-05,0.00011691601461205892,0.0,7.038040091285855e-05,0.0,2.563653308182922e-05,0.0,0.0,0.0,0.0,0.00015162131028901538,8.74603427328078e-05,0.00015586959881967968,0.0,6.745008058036976e-05 +100104,35.0,Eastern Counties in South Carolina and Georgia,G1300730030603,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,2878.0,,210.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.00013423633794615197,6.171679826468029e-05,0.0,0.00019595313621083226,9.836018818413742e-05,6.641230802822883e-05,3.114995039216832e-05,0.0,0.0,3.664338991945713e-05,6.641230802822883e-05,3.114995039216832e-05,0.0,0.0,6.171679826468029e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.124333991702281e-06,0.0,0.0,1.5995910973330033e-05,1.0012313214731729e-05,2.0120244965032316e-05,4.366510677219036e-06,7.913843471944718e-06,3.711899780048007e-06,0.0,0.0,4.124333991702281e-06,0.0,0.0,0.0,0.0,0.0,1.0099512155509565e-05,6.819140188618628e-06,3.1984414470646513e-06,0.0,0.0 +100105,35.0,Eastern Counties in South Carolina and Georgia,G1300510004211,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,55439.0,,2117.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006708373919020743,0.0006167055629841129,0.0,0.007325079482004855,0.004245530608610637,0.0027312851822409575,0.0003482636911532624,0.0,0.0,0.003628825045626524,0.0027312851822409575,0.0003482636911532624,0.0,0.0,0.0006167055629841129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1204687436061296e-05,0.0,0.0,0.0007994255440404186,0.00024589003897409616,0.00084063023147648,0.00043244092701841394,0.0003254826235239497,4.150199349805508e-05,0.0,0.0,4.1204687436061296e-05,0.0,0.0,0.0,0.0,0.0,0.00048721947482268627,0.000313443820045361,3.996693660843287e-05,0.0,0.0 +100106,50.0,the Greater Atlanta and Macon Area,G1300630040414,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,40422.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033230843936861132,0.0,0.0,0.003323084393686113,0.0023456012165803844,0.0006147009054212214,0.0003627822716845077,0.0,0.0,0.0023456012165803844,0.0006147009054212214,0.0003627822716845077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003960061799785268,0.00011356700789640599,0.0003960061799785268,0.00027952121206907906,7.325283638529003e-05,4.323213152415772e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002795212120690791,7.325283638529003e-05,4.3232131524157724e-05,0.0,0.0 +100107,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,15321.0,,2167.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0012352566534825369,0.0006379448461103477,0.0,0.0018732014995928848,0.0008907965123971211,0.00044334205257661445,0.0005390322450128517,0.0,0.0,0.0002528516662867732,0.00044334205257661445,0.0005390322450128517,0.0,0.0,0.0006379448461103477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.262416942685371e-05,0.0,0.0,0.0001472034212857387,8.583277411868105e-05,0.00018982759071259242,3.013190032231556e-05,5.28323136371126e-05,6.423555009845255e-05,0.0,0.0,4.262416942685371e-05,0.0,0.0,0.0,0.0,0.0,9.027205871887066e-05,4.4927656592462114e-05,5.462476535996156e-05,0.0,0.0 +100108,35.0,Eastern Counties in South Carolina and Georgia,G1300510010102,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,44810.0,,1017.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003840346792111027,0.00029614259451808027,0.0,0.004136489386629107,0.0029215150355195968,0.0009720463028063717,0.0002429280483031391,0.0,0.0,0.0026253724410015165,0.0009720463028063717,0.0002429280483031391,0.0,0.0,0.00029614259451808027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9785648547590636e-05,0.0,0.0,0.000457647863910212,0.00014989986461191103,0.0004774335124578027,0.00031286135201676003,0.00011583717257383929,2.8949339319612742e-05,0.0,0.0,1.9785648547590636e-05,0.0,0.0,0.0,0.0,0.0,0.0003372012000357318,0.00011219356252202531,2.8038749900045572e-05,0.0,0.0 +100109,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,3746.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0008995221339887076,0.0,0.0,0.0008995221339887076,0.00041485868187636607,0.00021040679559279808,0.00023232417013371455,0.0,4.184977931208955e-05,0.00041485868187636607,0.00021040679559279808,0.00023232417013371455,0.0,4.184977931208955e-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.00010718962565029362,3.124574698823692e-05,0.00010718962565029362,4.943574496707179e-05,2.507267448090722e-05,2.768441140600172e-05,0.0,4.986939185274785e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.943574496707179e-05,2.507267448090722e-05,2.768441140600172e-05,0.0,4.986939185274785e-06 +100110,50.0,the Greater Atlanta and Macon Area,G1300210010500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,27519.0,,2950.0,,9.729435225087556,Education,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,170265.11643903222,0.0,0.0,0.006708436270237345,0.0026094716017225164,0.0,0.00931790787195986,0.006162233482061833,0.0012870761969551948,0.0005024918103610274,0.0006481950697426428,0.0007180035300919359,0.0039906093965063495,0.0012870761969551948,0.0005024918103610274,0.0006481950697426428,0.0002801560139249038,0.0021716240855554837,0.0,0.000437847516167032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017434672328706395,0.0,0.0,0.0007994352458094013,0.00036273692385485997,0.0009737819690964654,0.00047555550583064414,0.00015337912360489665,5.988126707194112e-05,7.724452674778383e-05,3.3385811958993774e-05,0.0001450928008865628,0.0,2.9253922400501092e-05,0.0,0.0,0.0,0.0006439934732829894,0.0001345078327314051,5.2513662001391886e-05,6.774060014824436e-05,7.503603823505913e-05 +100111,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2004,gen5_led,5001_10000,Electricity,12608.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003239387957147454,0.0,0.0,0.003239387957147454,0.0016845776779222136,0.000495828907067148,0.0009719735305843408,0.0,8.68424274262728e-05,0.0016845776779222136,0.000495828907067148,0.0009719735305843408,0.0,8.68424274262728e-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.0003860302283062717,0.00011966503372812481,0.0003860302283062717,0.00020074715168744457,5.90867622921362e-05,0.00011582779490528519,0.0,1.0348807407296585e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00020074715168744457,5.90867622921362e-05,0.00011582779490528519,0.0,1.0348807407296585e-05 +100112,50.0,the Greater Atlanta and Macon Area,G1302170100903,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,49067.0,,11431.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002525743175370782,0.0019440277475402694,0.0,0.004469770922911051,0.0013870461738907307,0.0007008102654890071,0.0013621350160955565,0.0,0.001019797197797177,0.0011478990590570585,0.0007008102654890071,0.000517779744549802,0.0,0.00015925410627491427,0.00023914711483367216,0.0008443552715457545,0.0008605430915222627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001298883550854128,0.0,0.0,0.00030098886828432294,0.0002098441727485175,0.0004308772233697357,0.00013679333752510394,8.35144644746418e-05,6.170300323971473e-05,0.0,1.8978063044862435e-05,1.5978385806720364e-05,5.641479010139659e-05,5.749636381444046e-05,0.0,0.0,0.0,0.00013370855339101385,6.755674653372384e-05,0.0001313071662311727,0.0,9.830646638618109e-05 +100113,46.0,the Tallahassee-Valdosta Area,G1301850011301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,DistrictHeating,318666.0,,38185.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.015709376678186532,0.07865458698144043,0.033064912006263034,0.0,0.12742878538626679,0.04517068724378883,0.011041378479699607,0.05482365539790667,0.0006837778663083583,0.015709376678186532,0.04517068724378883,0.011041378479699607,0.021758743391643645,0.0006837778663083583,0.0,0.0,0.033064912006263034,0.0,0.0,0.0,0.015709376678186532,0.0,0.0,0.0,0.0,0.00220920219008599,0.0,0.0,0.009373111439341915,0.004977286626187852,0.011582313629427904,0.005382901386636197,0.0013157792177917905,0.0025929463800762735,8.148445483765615e-05,0.0,0.0,0.00220920219008599,0.0,0.0,0.0,0.0,0.004105674121655284,0.001003577865593303,0.004983055980683204,6.215024083010645e-05,0.0014278636264015263 +100114,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,208331.0,,31389.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011900157595742523,0.0053379735305667765,0.0,0.017238113395947878,0.00764552687830239,0.0029865198079551143,0.0030540902153269353,0.0,0.003551994224724858,0.006031673921126343,0.0029865198079551143,0.002391683912673763,0.0,0.0004902799539873001,0.0016138529571760461,0.0006624063026531726,0.003061714270737558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035665168352526095,0.0,0.0,0.0014181183232180798,0.0007148662360406039,0.0017747700067433409,0.0007187826916078919,0.00035589767851730927,0.0002850122574109444,0.0,5.8425695681933946e-05,0.000107828068244082,4.425805442199582e-05,0.00020456556085918316,0.0,0.0,0.0,0.0007871541089032847,0.0003074806191348972,0.00031443740898726743,0.0,0.00036569969516786585 +100115,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,4557.0,,232.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.000748995259783168,0.000184023239069959,0.0,0.000933018498853127,0.00047382882545249214,0.00020453459335730725,0.00022421887690726245,0.0,3.043620313606513e-05,0.0003202417895185983,0.00020453459335730725,0.00022421887690726245,0.0,0.0,0.00015358703593389386,0.0,3.043620313606513e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2296356893410464e-05,0.0,0.0,8.925455489661578e-05,3.6810700587355e-05,0.00010155091179002624,3.8161841492899324e-05,2.4373510850191127e-05,2.6719202553525333e-05,0.0,0.0,1.0262622360028418e-05,0.0,2.0337345333820457e-06,0.0,0.0,0.0,5.157212779408388e-05,2.226180346216957e-05,2.440426574441638e-05,0.0,3.3127147893564097e-06 +100116,50.0,the Greater Atlanta and Macon Area,G1300890023803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,144019.0,,1947.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.016287628693628597,0.0007237430592149623,0.0,0.01701137175284356,0.009402072537753256,0.002088268802348858,0.005279317745251192,0.0,0.0002417126674902524,0.009402072537753256,0.002088268802348858,0.00455557468603623,0.0,0.0002417126674902524,0.0,0.0007237430592149623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8356474134902925e-05,0.0,0.0,0.001940967009607634,0.0006286372240320956,0.001989323483742537,0.0011204278388821382,0.0002488551850483634,0.0005428795278749743,0.0,2.8804457802157803e-05,0.0,4.835647413490293e-05,0.0,0.0,0.0,0.0,0.0010994859184167139,0.00024420383195641334,0.0006173676597838957,0.0,2.8266073585514005e-05 +100117,50.0,the Greater Atlanta and Macon Area,G1301510070204,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,191838.0,,31708.0,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.044224720129684016,0.028045940868652752,0.0,0.07227066099833676,0.05299310539236853,0.01108497486959943,0.0022146895426005562,0.0006560335362283628,0.005321949874792667,0.02863908223848981,0.01108497486959943,0.0022146895426005562,0.0006560335362283628,0.0016299399427658575,0.024354023153878718,0.0,0.00369200993202681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018738671401785348,0.0,0.0,0.005270169490334189,0.003143893639711287,0.007144036630512724,0.003412860884181229,0.0013209737944655147,0.0002639200253557156,7.81781753989241e-05,0.0001942366109328062,0.0016271946066251822,0.0,0.0002466786949754474,0.0,0.0,0.0,0.005238428441887572,0.0010957623110511448,0.000218924567715189,6.484965750857157e-05,0.0005260807681300496 +100118,50.0,the Greater Atlanta and Macon Area,G1301210004400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,40205.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.009056093746159207,0.0,0.0,0.009056093746159207,0.005597449336528847,0.0018249315820578185,0.0014615167000473013,0.0,0.00017219612752523807,0.005597449336528847,0.0018249315820578185,0.0014615167000473013,0.0,0.00017219612752523807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010791930390412806,0.0003079520670727389,0.0010791930390412806,0.0006670346541995669,0.00021747273330939812,0.00017416545072786646,0.0,2.0520200804448986e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0006670346541995669,0.00021747273330939812,0.00017416545072786646,0.0,2.0520200804448986e-05 +100119,50.0,the Greater Atlanta and Macon Area,G1301390001604,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,15152.0,,850.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013500357810359456,0.0002501509809325754,0.0,0.0016001560723622231,0.0004437410174584846,0.0006551003360307635,0.0005013760980855704,0.0,0.0,0.00019359003652590916,0.0006551003360307635,0.0005013760980855704,0.0,0.0,0.0002501509809325754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6713029799996462e-05,0.0,0.0,0.00016088013011407575,6.157125254758024e-05,0.0001775931599140722,2.3069603563527843e-05,7.806654370118345e-05,5.974764004713925e-05,0.0,0.0,1.6713029799996462e-05,0.0,0.0,0.0,0.0,0.0,4.9248551960060794e-05,7.270624456321028e-05,5.564517555650551e-05,0.0,0.0 +100120,35.0,Eastern Counties in South Carolina and Georgia,G1301270000600,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,116916.0,,4345.0,,3.3063363735822096,Lodging,Zone-by-Zone,Before 1946,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.0107052250749833,0.0013058553852389574,0.0,0.012011080460222257,0.004366702689944008,0.001988992931263052,0.004109072809405263,0.0,0.0015463120296099326,0.004366702689944008,0.001988992931263052,0.0028032174241663065,0.0,0.0015463120296099326,0.0,0.0013058553852389574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.725038569859873e-05,0.0,0.0,0.0012757204382455045,0.0005535812998973292,0.0013629708239441033,0.000520371298154316,0.0002370243424276691,0.00033405386022306065,0.0,0.00018427093744045883,0.0,8.725038569859873e-05,0.0,0.0,0.0,0.0,0.0004955164843781077,0.0002257032032480811,0.0004662816447886628,0.0,0.00017546949152925158 +100121,46.0,the Tallahassee-Valdosta Area,G1301850010301,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,18047.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0015239042309908844,0.0,0.0,0.0015239042309908844,0.0009412474729764911,0.0004367723599148712,0.000145884398099522,0.0,0.0,0.0009412474729764911,0.0004367723599148712,0.000145884398099522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018160149086569833,4.769603035356473e-05,0.00018160149086569833,0.00011216711712582964,5.204953836101296e-05,1.738483537885572e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011216711712582964,5.204953836101296e-05,1.738483537885572e-05,0.0,0.0 +100122,50.0,the Greater Atlanta and Macon Area,G1301210004200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,587250.0,,112318.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,654728.2554853096,0.0,0.0,0.05552963027965628,0.019100758784570102,0.0,0.07463038906422638,0.042768699097693035,0.01413647035129236,0.005129180794484235,0.0,0.012596021090395332,0.035029892787959746,0.01413647035129236,0.0045771814523937315,0.0,0.001786067957649019,0.007738806309733288,0.0005519993420905039,0.010809953132746313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012762007773633858,0.0,0.0,0.006617359218503818,0.003338285617338941,0.007893559995867204,0.004174444936805739,0.001684615977544186,0.0005454539085929934,0.0,0.00021284228266783592,0.0005170616905713979,3.688136149067828e-05,0.0007222577253013097,0.0,0.0,0.0,0.004523590142110847,0.0014951962363708587,0.0005425068372090071,0.0,0.0013322649048590333 +100123,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,28052.0,,7522.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005684309742784285,0.0051740221490082115,0.0,0.010858403611763514,0.0022159319444693347,0.00036548497229555387,0.006511169288623264,0.00036878409096227204,0.0013970333154130876,0.0014635177285445594,0.00036548497229555387,0.0033196305784285733,0.00036878409096227204,0.00016696409252434254,0.0007524142159247754,0.0031915387101946915,0.001230069222888745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003457000973704115,0.0,0.0,0.0006773912948808291,0.0005123539990961792,0.0010230913922512404,0.00017440537445699689,4.3554336383066547e-05,0.0003955957640947053,4.3947487771139754e-05,1.9896878944226633e-05,5.0272236998045344e-05,0.0002132413064925191,8.218655387984707e-05,0.0,0.0,0.0,0.0002087876799629232,3.443641832835086e-05,0.0006134899282491486,3.4747265118598934e-05,0.0001316301005922187 +100124,50.0,the Greater Atlanta and Macon Area,G1301530021202,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,25155.0,,1136.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0012948660248678764,0.00019326093947857553,0.0,0.0014881269643464519,0.0006165733183823362,0.0003948374184631558,0.00030609695955579155,0.0,0.00017063699830658816,0.0006165733183823362,0.0003948374184631558,0.00011283602007721604,0.0,0.00017063699830658816,0.0,0.00019326093947857553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.291238561824109e-05,0.0,0.0,0.00015430721134276253,5.722342929676102e-05,0.00016721959696100363,7.347610294867338e-05,4.7052173589187854e-05,1.344649659713465e-05,0.0,2.0334551107923296e-05,0.0,1.291238561824109e-05,0.0,0.0,0.0,0.0,6.928383415327948e-05,4.436755435684776e-05,3.439586233852529e-05,0.0,1.917433845840868e-05 +100125,81.0,the Columbus-Albany Area,G1300950000502,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,11620.0,,539.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006791083031108626,9.170142926451309e-05,0.0,0.0007708097323753756,0.0004851381491754849,0.0001451939296688124,5.705630304972992e-05,0.0,8.342135048134842e-05,0.00043276266154064887,0.0001451939296688124,5.705630304972992e-05,0.0,4.409540885167132e-05,5.237548763483597e-05,0.0,3.932594162967711e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.1275038489135206e-06,0.0,0.0,8.0927741249098e-05,2.4616234270890033e-05,8.705524509801152e-05,5.157130981170654e-05,1.7302419536548048e-05,6.7992656085738945e-06,0.0,5.254746292269508e-06,3.499738277202347e-06,0.0,2.6277655717111733e-06,0.0,0.0,0.0,5.479149874342806e-05,1.639820127219985e-05,6.443938416649056e-06,0.0,9.421606665734557e-06 +100126,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,17994.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004070345927006275,0.0,0.0,0.004070345927006275,0.0026054382369356628,0.0008055668982208542,0.0005812653142398526,0.0,7.80754776099062e-05,0.0026054382369356628,0.0008055668982208542,0.0005812653142398526,0.0,7.80754776099062e-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.0004850597037019623,0.00015620389489993003,0.0004850597037019623,0.0003104878852769379,9.599873032180096e-05,6.926889904534059e-05,0.0,9.304189057882969e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0003104878852769379,9.599873032180096e-05,6.926889904534059e-05,0.0,9.304189057882969e-06 +100127,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,110636.0,,11933.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,306613.1346040191,0.0,0.0,0.02194857966461103,0.004434834597562419,0.0,0.02638341426217345,0.014877108571477237,0.0030002904526723697,0.00820532746955248,0.0,0.0003007265168951345,0.011617436170074547,0.0030002904526723697,0.0070301652733927526,0.0,0.0003007265168951345,0.0032596724014026923,0.0011751621961597267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002963098087880398,0.0,0.0,0.0026155678377134824,0.0010279796952273003,0.0029118776465015222,0.0013844263668746507,0.00035753854380206644,0.0008377705739448886,0.0,3.5836970663151724e-05,0.0002177923177793753,7.851749100866452e-05,0.0,0.0,0.0,0.0,0.0016419527610560308,0.0003311352585125539,0.0009056033992943294,0.0,3.3190504214334644e-05 +100128,50.0,the Greater Atlanta and Macon Area,G1301390001403,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,29724.0,,1081.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006977962135681671,0.0008380411557222214,0.0,0.007816003291403893,0.003082008746656935,0.0007310623397225594,0.002749670928245286,0.00041522012105689,0.0008380411557222214,0.003082008746656935,0.0007310623397225594,0.002749670928245286,0.00041522012105689,0.0,0.0,0.0,0.0008380411557222214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.599263414845834e-05,0.0,0.0,0.0008315466524181134,0.00029941518848262304,0.0008875392865665717,0.0003672754317339899,8.711890799703536e-05,0.0003276715481074203,4.94807645796678e-05,0.0,0.0,0.0,5.599263414845834e-05,0.0,0.0,0.0,0.0003499747559226658,8.301513231790168e-05,0.00031223643119900963,4.7149950719215246e-05,9.516301640777929e-05 +100129,35.0,Eastern Counties in South Carolina and Georgia,G1302450001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,81330.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003856459991030005,0.0,0.0,0.003856459991030004,0.0016673986486646058,0.0009343013950296825,0.000616839273803637,0.0,0.0006379206735320799,0.0016673986486646058,0.0009343013950296825,0.000616839273803637,0.0,0.0006379206735320799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004595667180649859,0.00011616737427446567,0.0004595667180649859,0.00019870060274322274,0.00011133885138080987,7.350751759253013e-05,0.0,7.601974634842316e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0001987006027432228,0.0001113388513808099,7.350751759253014e-05,0.0,7.601974634842317e-05 +100131,50.0,the Greater Atlanta and Macon Area,G1300590000600,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,141676.0,,19853.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.0337979920103795,0.017560285924826186,0.0,0.0513582779352057,0.039483738947362346,0.007197279927187941,0.0012168988675948097,0.000646166290181633,0.002814286120131736,0.02383142798241314,0.007197279927187941,0.0012168988675948097,0.000646166290181633,0.0009063111602547581,0.015652310964949206,0.0,0.0019079749598769778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001173273059696678,0.0,0.0,0.004027646825799786,0.0021446717151595933,0.005200919885496464,0.002839949048989811,0.000857687097039039,0.00014501568199324974,7.700249194655204e-05,0.00010800349519776131,0.0010457936081329263,0.0,0.00012747945156375156,0.0,0.0,0.0,0.00399841605484052,0.0007288499108560771,0.000123232198850139,6.54355878556323e-05,0.0002849954716966157 +100132,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,18748.0,,1246.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006827799765474785,0.0009885976524059415,0.0,0.007816397417880726,0.0060448946054585005,0.0007145064100338768,0.0009169733265477016,0.0,0.00014002307584064745,0.005196320028893206,0.0007145064100338768,0.0009169733265477016,0.0,0.0,0.0008485745765652941,0.0,0.00014002307584064745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.605239060132507e-05,0.0,0.0,0.0008136527459139657,0.00031383315156545167,0.0008797051365152909,0.000619233165204383,8.514603861655098e-05,0.0001092735420930317,0.0,0.0,5.669685665268931e-05,0.0,9.35553394863577e-06,0.0,0.0,0.0,0.0006803293831952087,8.041491820029838e-05,0.00010320178239225701,0.0,1.575905272752693e-05 +100133,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,234028.0,,11017.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.023619457557263208,0.00324287862865936,0.0,0.02686233618592257,0.010725372919314871,0.005607420725078466,0.010529511851922933,0.0,0.0,0.007482494290655509,0.005607420725078466,0.010529511851922933,0.0,0.0,0.00324287862865936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021667117253608507,0.0,0.0,0.002814684016735811,0.0010404680954887687,0.003031355189271896,0.0008916740375669046,0.0006682252313257734,0.001254781090623482,0.0,0.0,0.00021667117253608507,0.0,0.0,0.0,0.0,0.0,0.0012103345975127732,0.0006327850189852576,0.0011882321095197136,0.0,0.0 +100134,50.0,the Greater Atlanta and Macon Area,G1300850970100,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,41371.0,,1802.0,,3.3063363735822096,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.004367016070166047,0.0005416777137954255,0.0,0.004908725121983678,0.0017035975630516008,0.0006522695941531957,0.0017644246641494847,0.0,0.0007884019626071921,0.0017035975630516008,0.0006522695941531957,0.0012227469503540592,0.0,0.0007884019626071921,0.0,0.0005416777137954255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.619275258608533e-05,0.0,0.0,0.0005204095672428804,0.0002272046919816706,0.0005566023198289656,0.00020301470301436266,7.772981179023849e-05,0.0001457125875099224,0.0,9.395246492835688e-05,0.0,3.619275258608533e-05,0.0,0.0,0.0,0.0,0.00019317161423500188,7.396111214979822e-05,0.00020006882374219695,0.0,8.939721627100139e-05 +100135,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300830040101,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,25849.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.004097053172015533,0.0,0.0,0.004097053172015533,0.002728438909173311,0.0005773849951661151,0.0007621853174654059,0.0,2.9043950210700948e-05,0.002728438909173311,0.0005773849951661151,0.0007621853174654059,0.0,2.9043950210700948e-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.00048824102767847474,0.00018507953344008607,0.00048824102767847474,0.00032514486901749775,6.880629358963235e-05,9.082873154357575e-05,0.0,3.461133527768949e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00032514486901749775,6.880629358963235e-05,9.082873154357575e-05,0.0,3.461133527768949e-06 +100136,50.0,the Greater Atlanta and Macon Area,G1301350050546,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,188458.0,,22633.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009700919025922012,0.003848942317787903,0.0,0.013549861343709915,0.007926127578136145,0.0021702848896215632,0.001703089866203172,0.0,0.0017503590097490327,0.006172222496103102,0.0021702848896215632,0.0010361091303036256,0.0,0.00032230250989371986,0.001753905082033043,0.0006669807358995463,0.0014280564998553128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002571634512744984,0.0,0.0,0.001156039765788631,0.0005547467903199205,0.0014132032170631294,0.0007355318222658992,0.00025862865454175446,0.00012347112197587113,0.0,3.84081670051061e-05,0.00011718551406162024,4.456368888274513e-05,9.541424833013294e-05,0.0,0.0,0.0,0.0008266674254548441,0.00022635313455664788,0.00017762632523049562,0.0,0.0001825563318211416 +100137,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,43615.0,,4488.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004198421155882683,0.0013075834557952158,0.0,0.005506004611677899,0.0036375118950657207,0.0014261923615996367,0.00044230035501254206,0.0,0.0,0.0023299284392705043,0.0014261923615996367,0.00044230035501254206,0.0,0.0,0.0013075834557952158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.73651775847307e-05,0.0,0.0,0.0005003184956609998,0.00021021033598776718,0.0005876836732457306,0.0002776534912654611,0.00016995684577259158,5.270815862294706e-05,0.0,0.0,8.73651775847307e-05,0.0,0.0,0.0,0.0,0.0,0.0003882500111665938,0.00015222471191582603,4.720895016331081e-05,0.0,0.0 +100138,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,20546.0,,4204.0,,9.325022323477118,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.011191555629550596,0.0035638260210918878,0.0,0.014755381650642484,0.008742342225689745,0.0024891630433016925,0.0031323345614675986,0.0,0.0003916302043415047,0.005570146408939362,0.0024891630433016925,0.0031323345614675986,0.0,0.0,0.0031721958167503827,0.0,0.0003916302043415047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023811411918764908,0.0,0.0,0.0013336788327332411,0.0006432672152330375,0.0015717929519208904,0.0006637849649080296,0.00029662936699414235,0.000373275033422306,0.0,0.0,0.00021194766757015804,0.0,2.6166451617491024e-05,0.0,0.0,0.0,0.0009312637394927165,0.00026515403127327426,0.00033366682769324433,0.0,4.171776843986359e-05 +100139,50.0,the Greater Atlanta and Macon Area,G1301210010002,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,990738.0,,944.0,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,2015986.1613818365,0.0,0.0,0.1570304297315732,0.0004945114680611451,0.0,0.15752494119963434,0.0684543522970758,0.011494743828690009,0.07708138819969873,0.0,0.0004945114680611451,0.0684543522970758,0.011494743828690009,0.07708138819969873,0.0,0.0,0.0,0.0,0.0004945114680611451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.304015588286222e-05,0.0,0.0,0.018713014870000294,0.006517090506695758,0.018746055025883154,0.008157573755870947,0.00136980655635225,0.00918564106362633,0.0,0.0,0.0,0.0,3.304015588286222e-05,0.0,0.0,0.0,0.008146323021291518,0.0013679173512464319,0.009172972442705265,0.0,5.8848707516457743e-05 +100140,50.0,the Greater Atlanta and Macon Area,G1301210001001,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,68278.0,,11988.0,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.01693254861601019,0.010162322109000648,0.0,0.027094870725010836,0.021082184836690315,0.0032841785450060104,0.002459996271143557,0.0,0.00026859945632900763,0.010919862727689666,0.0032841785450060104,0.002459996271143557,0.0,0.00026859945632900763,0.010162322109000648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006789874397179343,0.0,0.0,0.002017821699796789,0.0012597362985391496,0.0026968091395147237,0.001301300617551471,0.0003913697154753343,0.0002931533799134771,0.0,3.2008519439408494e-05,0.0006789874397179343,0.0,0.0,0.0,0.0,0.0,0.0020983539403287713,0.0003268811579084157,0.0002448485727989917,0.0,2.6734265538610128e-05 +100141,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,9949.0,,50.0,,9.325022323477118,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,27975.06697043135,0.0,0.0,0.0022486697492341604,4.268954834054317e-05,0.0,0.0022913592975747034,0.0014990837047700887,0.00025551860093687436,0.0004940674435271974,0.0,4.268954834054317e-05,0.0014990837047700887,0.00025551860093687436,0.0004940674435271974,0.0,0.0,0.0,0.0,4.268954834054317e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8545820205511374e-06,0.0,0.0,0.0002679652073265021,9.048868655027468e-05,0.0002708197893470532,0.00017863996075248809,3.044915550589252e-05,5.8876091068121485e-05,0.0,0.0,0.0,0.0,2.8545820205511374e-06,0.0,0.0,0.0,0.00017717934222238652,3.0200193288421634e-05,5.8394700962392585e-05,0.0,5.045552873852524e-06 +100142,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,67369.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005555923565710922,0.0,0.0,0.005555923565710922,0.0018923825035289492,0.0012726365939531388,0.0023908737786225353,0.0,0.0,0.0018923825035289492,0.0012726365939531388,0.0023908737786225353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006620888535490667,0.00021458158229896714,0.0006620888535490667,0.0002255116269004096,0.00015165768454325487,0.0002849158848833383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002255116269004096,0.00015165768454325487,0.0002849158848833383,0.0,0.0 +100143,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,150139.0,,6478.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013239517885322205,0.0018871724802663962,0.0,0.015126690365588601,0.00811254542102801,0.005296457149156849,0.0017176877954037414,0.0,0.0,0.006225372940761614,0.005296457149156849,0.0017176877954037414,0.0,0.0,0.0018871724802663962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012609024076777,0.0,0.0,0.0015777271107540885,0.000550431296509387,0.0017038173515218583,0.0007418653570522725,0.0006311683029210777,0.00020469345078073827,0.0,0.0,0.00012609024076777,0.0,0.0,0.0,0.0,0.0,0.0009137686644793616,0.0005965743579213066,0.00019347432912118995,0.0,0.0 +100144,50.0,the Greater Atlanta and Macon Area,G1301210000500,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,81137.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0038753250955809414,0.0,0.0,0.0038753250955809414,0.002063140315560184,0.0006547290561582899,0.0006028854793660555,0.0,0.0005545702444964115,0.002063140315560184,0.0006547290561582899,0.0006028854793660555,0.0,0.0005545702444964115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000461814110438269,0.00011543042729524439,0.000461814110438269,0.0002458599694323002,7.802264563368239e-05,7.1844558709944e-05,0.0,6.608693666234239e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002458599694323002,7.802264563368239e-05,7.1844558709944e-05,0.0,6.608693666234239e-05 +100145,46.0,the Tallahassee-Valdosta Area,G1301850011402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,145123.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012940487322670464,0.0,0.0,0.01294048732267046,0.003968472990355946,0.0036521245286392267,0.005319920493281587,0.0,0.0,0.003968472990355946,0.0036521245286392267,0.005319920493281587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015420932971588143,0.0004825857268959312,0.0015420932971588143,0.00047291538918032005,0.0004352167438190121,0.0006339648213815774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004729153891803202,0.00043521674381901223,0.0006339648213815777,0.0,0.0 +100146,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,8521.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006363876554197762,0.0,0.0,0.0006363876554197762,0.0004116837667792882,0.00019235600523928231,3.234788340120569e-05,0.0,0.0,0.0004116837667792882,0.00019235600523928231,3.234788340120569e-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,7.583808978204276e-05,1.9144751076743133e-05,7.583808978204276e-05,4.906020756518746e-05,2.2922996496261784e-05,3.854885720593525e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.906020756518746e-05,2.2922996496261784e-05,3.854885720593525e-06,0.0,0.0 +100147,85.0,Rural Climate Zone 3A,G1300230790200,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,64327.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003311233647001962,0.0,0.0,0.0033112336470019614,0.0015914949714253596,0.0005866267379438671,0.0005392866729523262,0.0,0.0005938252646804085,0.0015914949714253596,0.0005866267379438671,0.0005392866729523262,0.0,0.0005938252646804085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003945940635619055,8.900596386893701e-05,0.0003945940635619055,0.00018965574008396126,6.990730736531393e-05,6.426587259938913e-05,0.0,7.076514351324108e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0001896557400839613,6.990730736531394e-05,6.426587259938914e-05,0.0,7.076514351324109e-05 +100148,35.0,Eastern Counties in South Carolina and Georgia,G1302450010107,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7855.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0015479455921048777,0.0,0.0,0.0015479455921048777,0.0008495670614501659,0.0002773168182478978,0.0003824375089705575,0.0,3.870691050999587e-05,0.0008495670614501659,0.0002773168182478978,0.0003824375089705575,0.0,3.870691050999587e-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.00018446808025201884,5.115758405288483e-05,0.00018446808025201884,0.00010124257962966113,3.304773846361505e-05,4.5574930705563956e-05,0.0,4.612687623313999e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010124257962966113,3.304773846361505e-05,4.5574930705563956e-05,0.0,4.612687623313999e-06 +100149,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,161855.0,,3734.0,,9.729435225087556,Education,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,729707.6418815667,0.0,0.0,0.043333163729872975,0.0033027609080712407,0.0,0.04663592463794421,0.0343425348880051,0.005369626194476399,0.003501120218786339,0.0006515148908424771,0.002771220663086664,0.0343425348880051,0.005369626194476399,0.002075441490913063,0.0006515148908424771,0.0008942307001414722,0.0,0.001425678727873276,0.0018769899629451914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002206690233075696,0.0,0.0,0.0051639298898053425,0.0016196723850318137,0.005384598913112912,0.00409253391941,0.0006398880399222509,0.00024732637608178504,7.76397781488408e-05,0.0001065637549482391,0.0,9.525458886877081e-05,0.00012540827308117467,0.0,0.0,0.0,0.003965200164189264,0.0006199787737686589,0.00040424047064815727,7.522411961042067e-05,0.0003199660323301843 +100150,50.0,the Greater Atlanta and Macon Area,G1301530021113,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,Electricity,125210.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011156070854096832,0.0,0.0,0.011156070854096832,0.0023090859778391575,0.0034194666232963415,0.00542754894256763,0.0,0.0,0.0023090859778391575,0.0034194666232963415,0.00542754894256763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013294490423011206,0.000410819571292448,0.0013294490423011206,0.00027516965264718545,0.00040749173136100535,0.0006467913155185098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027516965264718545,0.00040749173136100535,0.0006467913155185098,0.0,0.0 +100151,50.0,the Greater Atlanta and Macon Area,G1300890020400,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,3782.0,,342.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0002129796792575158,9.971652695413922e-05,0.0,0.000312696206211655,0.00022285109907478512,7.569100979887755e-05,1.415409733799235e-05,0.0,0.0,0.0001231345721206459,7.569100979887755e-05,1.415409733799235e-05,0.0,0.0,9.971652695413922e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.662284881154399e-06,0.0,0.0,2.5379435167568205e-05,1.4227087274836686e-05,3.2041720048722606e-05,1.4673164599161652e-05,9.0196167195636e-06,1.6866538488429525e-06,0.0,0.0,6.662284881154399e-06,0.0,0.0,0.0,0.0,0.0,2.283536668261076e-05,7.755994789841354e-06,1.450358576270494e-06,0.0,0.0 +100152,50.0,the Greater Atlanta and Macon Area,G1301210002800,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,16169.0,,1520.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013602247303267827,0.0004474544598205065,0.0,0.0018076791901472892,0.000714945068311284,0.00047206752407126425,0.000620666597764741,0.0,0.0,0.00026749060849077746,0.00047206752407126425,0.000620666597764741,0.0,0.0,0.0004474544598205065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.98954338186757e-05,0.0,0.0,0.00016209572851503054,8.345795147590781e-05,0.00019199116233370624,3.187641283644705e-05,5.6255505076896345e-05,7.396381060168714e-05,0.0,0.0,2.9895433818675702e-05,0.0,0.0,0.0,0.0,0.0,7.593334891389121e-05,5.0137653373689683e-05,6.592016004612534e-05,0.0,0.0 +100153,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,82212.0,,2472.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007249601087402042,0.000720127669069658,0.0,0.00796969838287226,0.004530860201728877,0.0029144683604500382,0.0005244001942927852,0.0,0.0,0.003810732532659219,0.0029144683604500382,0.0005244001942927852,0.0,0.0,0.000720127669069658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.811374919922252e-05,0.0,0.0,0.0008639193785707692,0.00024296670520193459,0.0009120331277699918,0.00045411680474878965,0.00034731092986613763,6.249164395584203e-05,0.0,0.0,4.811374919922253e-05,0.0,0.0,0.0,0.0,0.0,0.0005185007515657191,0.0003335247542467169,6.001109783927265e-05,0.0,0.0 +100154,81.0,the Columbus-Albany Area,G1302150001800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,42385.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0037167875291084862,0.0,0.0,0.0037167875291084862,0.001394689158199103,0.0009652188076690503,0.0013568795632403334,0.0,0.0,0.001394689158199103,0.0009652188076690503,0.0013568795632403334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004429220808280064,0.0001484487391725342,0.0004429220808280064,0.00016620229680064036,0.00011502318047479239,0.00016169660355257371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016620229680064036,0.00011502318047479239,0.00016169660355257371,0.0,0.0 +100155,50.0,the Greater Atlanta and Macon Area,G1300670030332,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,7283.0,,992.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001701863456333729,0.0007866269783345528,0.0,0.0024884904346682826,0.0016606753336115539,0.00039823456005476523,0.0003893849031646593,0.0,4.019563783730341e-05,0.0009142439931143041,0.00039823456005476523,0.0003893849031646593,0.0,0.0,0.0007464313404972494,0.0,4.019563783730341e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.255720123915413e-05,0.0,0.0,0.0002028101897082784,0.00011351071038697452,0.0002553673909474325,0.00010894998479055786,4.745740698086992e-05,4.640279793685059e-05,0.0,0.0,4.987159511968941e-05,0.0,2.6856061194647158e-06,0.0,0.0,0.0,0.00017041750341775778,4.086659091371601e-05,3.995844444896676e-05,0.0,4.124852166991896e-06 +100156,35.0,Eastern Counties in South Carolina and Georgia,G1300510004208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,16603.0,,2188.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005271071865888119,0.00169710611504226,0.0,0.006968258841713447,0.0035268239143169066,0.0006485034802095926,0.001897802578618346,0.00043131141688752697,0.0004638983124641437,0.002613420508774817,0.0006485034802095926,0.0011140190083351069,0.00043131141688752697,0.0004638983124641437,0.0009134034055420893,0.0007837835702832394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011339205121244864,0.0,0.0,0.000628147737258448,0.0002917367200654729,0.0007415397884708966,0.00031143839827255495,7.728143422481098e-05,0.0001327563989171098,5.139889902183812e-05,5.52822429111896e-05,6.102899802248046e-05,5.2368455898716636e-05,0.0,0.0,0.0,0.0,0.0003753133054904687,6.901166338118028e-05,0.0002019580722638779,4.5898779610376e-05,4.936657267055252e-05 +100157,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302530200200,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,100581.0,,12869.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.004875601165454641,0.002188511701161377,0.0,0.007064112866616018,0.0032669786648975093,0.0005396944712649873,0.0027761845304290276,0.0,0.0004812729303859133,0.0032104720030518012,0.0005396944712649873,0.0006441794911133585,0.0,0.0004812729303859133,5.650666184570829e-05,0.0021320050393156694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001462235800224588,0.0,0.0,0.0005810165054870274,0.00030150462497808563,0.0007272400855094861,0.00038258609777060295,6.43144065898614e-05,7.67656959894492e-05,0.0,5.735241803197207e-05,3.7754453795304043e-06,0.00014244813464292844,0.0,0.0,0.0,0.0,0.00033633067427982195,5.5560756296319316e-05,0.00028580413612027615,0.0,4.954634412783901e-05 +100158,50.0,the Greater Atlanta and Macon Area,G1300890021102,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,39019.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0034765492910100687,0.0,0.0,0.0034765492910100687,0.000932411618536806,0.0009854739478255342,0.0015586944142540267,0.0,0.0,0.000932411618536806,0.0009854739478255342,0.0015586944142540267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041429528446839905,0.00014995376322856616,0.00041429528446839905,0.00011111412622345231,0.00011743748624716205,0.00018574732923319466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011111412622345231,0.00011743748624716205,0.00018574732923319466,0.0,0.0 +100159,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,11052.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002653739167999418,0.0,0.0,0.002653739167999418,0.0013016439265092202,0.0005925961833421378,0.0006592580847760196,0.0,0.0001001582662983013,0.0013016439265092202,0.0005925961833421378,0.0006592580847760196,0.0,0.0001001582662983013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031623779617588935,9.316184914465235e-05,0.00031623779617588935,0.00015511283538665295,7.061783362214822e-05,7.85617239081847e-05,0.0,1.1935547315620583e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00015511283538665295,7.061783362214822e-05,7.85617239081847e-05,0.0,1.1935547315620583e-05 +100160,50.0,the Greater Atlanta and Macon Area,G1300670030239,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,248263.0,,40556.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01277940621856294,0.006896862367340659,0.0,0.0196762685859036,0.011205021045907928,0.0028922297459232733,0.002855971156819265,0.0,0.0027230289068917095,0.008315362202390564,0.0028922297459232733,0.0011738208474531759,0.0,0.0003979934227959253,0.0028896588435173656,0.0016821503093660893,0.0023250354840957843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004608074997785862,0.0,0.0,0.0015228971935446322,0.0009459873586777525,0.0019837046933232185,0.0009909256771987738,0.0003446614410577956,0.00013988196663738592,0.0,4.742810865067672e-05,0.00019306989120151992,0.00011239132188303328,0.00015534510205628317,0.0,0.0,0.0,0.0011296579298311217,0.0002915862677981197,0.00028793078133914604,0.0,0.0002745279268308897 +100161,50.0,the Greater Atlanta and Macon Area,G1301210010604,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,57475.0,,7572.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008433933465096894,0.002228924726189557,0.0,0.010662858191286453,0.003555268131163676,0.0024873005216099176,0.004620258848906558,0.0,0.0,0.001326343404974119,0.0024873005216099176,0.004620258848906558,0.0,0.0,0.002228924726189557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001489241560935772,0.0,0.0,0.0010050552881808027,0.00042238160897795004,0.0011539794442743797,0.00015805773885099712,0.00029640671851211914,0.000550587173597573,0.0,0.0,0.0001489241560935772,0.0,0.0,0.0,0.0,0.0,0.00038476609823052407,0.0002691861433566052,0.0005000238813287377,0.0,0.0 +100162,81.0,the Columbus-Albany Area,G1302150003400,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,44653.0,,2974.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.003978539181221593,0.0008754823988545672,0.0,0.004854021580076162,0.0016937286819639187,0.001199932916633881,0.001960329291872063,0.0,0.0,0.0008182462831093516,0.001199932916633881,0.001960329291872063,0.0,0.0,0.0008754823988545672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8494303691475585e-05,0.0,0.0,0.0004741148990663642,0.0001803063039988572,0.0005326092027578397,9.750884338625561e-05,0.00014299370893253345,0.00023360868952593443,0.0,0.0,5.8494303691475585e-05,0.0,0.0,0.0,0.0,0.0,0.0001858449675402422,0.0001316630557874926,0.00021509781200240106,0.0,0.0 +100163,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,36017.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0030576975442590214,0.0,0.0,0.003057697544259022,0.001364429206389568,0.0006592741224872513,0.0010339942153822022,0.0,0.0,0.001364429206389568,0.0006592741224872513,0.0010339942153822022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003643817404170909,0.00013056584525559045,0.0003643817404170909,0.00016259720973174998,7.856481835977989e-05,0.00012321971232556107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016259720973174995,7.856481835977987e-05,0.00012321971232556107,0.0,0.0 +100164,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,28173.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006449414903117454,0.0,0.0,0.006449414903117454,0.004057030088134247,0.0015559681782575906,0.0007235214810714614,0.0,0.00011306056980163324,0.004057030088134247,0.0015559681782575906,0.0007235214810714614,0.0,0.00011306056980163324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007685640473917563,0.00022006397042748503,0.0007685640473917563,0.0004834682698766055,0.00018542165741521578,8.622062717633062e-05,0.0,1.3473205001148138e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004834682698766055,0.00018542165741521578,8.622062717633062e-05,0.0,1.3473205001148138e-05 +100165,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,5773.0,,568.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013465538675496642,0.0004502573094367896,0.0,0.0017968111769864536,0.001217613539590084,0.000336286961824024,0.00019568493646720134,0.0,4.7308446178883846e-05,0.0007673562301532944,0.000336286961824024,0.00019568493646720134,0.0,4.7308446178883846e-05,0.0004502573094367896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0084098706613238e-05,0.0,0.0,0.0001604675876289304,7.588231484893396e-05,0.00019055168633554367,9.144513715504064e-05,4.0075008371674405e-05,2.3319594148396862e-05,0.0,5.6377040798322085e-06,3.0084098706613238e-05,0.0,0.0,0.0,0.0,0.0,0.00012912782169076522,3.566320628954296e-05,2.075237237605967e-05,0.0,5.017057057948492e-06 +100166,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,131119.0,,2282.0,,9.325022323477118,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.0361613176582881,0.0019346408356649054,0.0,0.038095870109794955,0.020220704448128672,0.004646885493897304,0.012542419101262527,0.0,0.0006860378348225591,0.018972101447286324,0.004646885493897304,0.012542419101262527,0.0,0.0,0.0012486030008423464,0.0,0.0006860378348225591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012925870744275825,0.0,0.0,0.004309272807040185,0.0015976825956399768,0.004438531514482944,0.0022608678597324395,0.0005537601667480037,0.0014946553131252988,0.0,0.0,8.342262141001626e-05,0.0,4.583608603274199e-05,0.0,0.0,0.0,0.0023559045555173862,0.0005414063952185141,0.0014613112205696306,0.0,7.992993836895361e-05 +100167,85.0,Rural Climate Zone 3A,G1302930010500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,12782.0,,1707.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0010883455081354338,0.0005024195446996922,0.0,0.001590765052835126,0.0007094516287839952,0.00041136348281440807,0.00046998063084302045,0.0,0.0,0.00020703208408430298,0.00041136348281440807,0.00046998063084302045,0.0,0.0,0.0005024195446996922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.356859628577027e-05,0.0,0.0,0.00012969745718335003,7.428936451520817e-05,0.0001632660534691203,2.4671884673007903e-05,4.902193035235665e-05,5.6007299419277066e-05,0.0,0.0,3.356859628577027e-05,0.0,0.0,0.0,0.0,0.0,7.281362345266917e-05,4.221974342516665e-05,4.823583637817086e-05,0.0,0.0 +100168,50.0,the Greater Atlanta and Macon Area,G1301350050542,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,20131.0,,208.0,,9.325022323477118,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,163187.89066084955,0.0,0.0,0.004901608637411684,0.0001763263953196348,0.0,0.005077935032731319,0.003196678228531606,0.0007100783258135069,0.0009949404672246263,0.0,0.0001763263953196348,0.003196678228531606,0.0007100783258135069,0.0009949404672246263,0.0,0.0,0.0,0.0,0.0001763263953196348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1781871020822213e-05,0.0,0.0,0.0005841168587972952,0.00017886675256231915,0.0005958987298181174,0.00038094302984205294,8.46188979692284e-05,0.00011856546358471548,0.0,0.0,0.0,0.0,1.1781871020822213e-05,0.0,0.0,0.0,0.0003751321125104289,8.33281185553192e-05,0.00011675686215798214,0.0,2.0692008528486654e-05 +100169,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,12136.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0010838211487372983,0.0,0.0,0.001083821148737298,0.0006704668339889338,0.00030728970551173517,0.00010606460923662937,0.0,0.0,0.0006704668339889338,0.00030728970551173517,0.00010606460923662937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001291557123933153,3.729427851284521e-05,0.0001291557123933153,7.989751969761629e-05,3.661879164541017e-05,1.2639401050288852e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.98975196976163e-05,3.6618791645410176e-05,1.2639401050288855e-05,0.0,0.0 +100170,50.0,the Greater Atlanta and Macon Area,G1301210010113,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8175.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001962886981054983,0.0,0.0,0.001962886981054983,0.0013482080090244505,0.00026118893886873285,0.0003148658297255434,0.0,3.8624203436256564e-05,0.0013482080090244505,0.00026118893886873285,0.0003148658297255434,0.0,3.8624203436256564e-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.00023391270964438814,6.964217648970975e-05,0.00023391270964438814,0.0001606628357103262,3.1125282815361636e-05,3.752183397026022e-05,0.0,4.602757148440116e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001606628357103262,3.1125282815361636e-05,3.752183397026022e-05,0.0,4.602757148440116e-06 +100171,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,41873.0,,1659.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.00398433951681186,0.0004883637050153443,0.0,0.004472703221827203,0.0015951536665356977,0.0015744995614973437,0.0013030806834004602,0.0,0.0,0.0011067899615203533,0.0015744995614973437,0.0013030806834004602,0.0,0.0,0.0004883637050153443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.262921653478971e-05,0.0,0.0,0.000474806875160998,0.00017387346411004912,0.0005074360916957878,0.00013189425270403098,0.00018763039986489588,0.00015528587981957507,0.0,0.0,3.262921653478971e-05,0.0,0.0,0.0,0.0,0.0,0.0001809730049270754,0.00017862976017813024,0.00014783680838069955,0.0,0.0 +100172,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,7569.0,,953.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0005805859719399412,0.00028065644959249193,0.0,0.0008612424215324331,0.0004059314224997147,0.00020804484109212716,0.0002472661579405913,0.0,0.0,0.00012527497290722276,0.00020804484109212716,0.0002472661579405913,0.0,0.0,0.00028065644959249193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.875184378402218e-05,0.0,0.0,6.918689240066116e-05,3.969821038387101e-05,8.793873618468335e-05,1.4928686688841259e-05,2.4792152636858125e-05,2.9466053074961786e-05,0.0,0.0,1.875184378402218e-05,0.0,0.0,0.0,0.0,0.0,4.144837200280821e-05,2.1242799864446725e-05,2.5247564317428423e-05,0.0,0.0 +100173,85.0,Rural Climate Zone 3A,G1301670960200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9396.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.000828531045462994,0.0,0.0,0.0008285310454629942,0.00056959611025616,0.00019272048843253531,6.621444677429898e-05,0.0,0.0,0.00056959611025616,0.00019272048843253531,6.621444677429898e-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,9.873290316947979e-05,2.7373626823948477e-05,9.873290316947979e-05,6.787660873734346e-05,2.296576987353726e-05,7.890524558599092e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.787660873734345e-05,2.2965769873537253e-05,7.89052455859909e-06,0.0,0.0 +100174,50.0,the Greater Atlanta and Macon Area,G1300890023428,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,51444.0,,4159.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004536388196826548,0.0012116636287707956,0.0,0.0057480821991967804,0.003627549354450138,0.0013903515142630898,0.0007301813304835538,0.0,0.0,0.002415885725679342,0.0013903515142630898,0.0007301813304835538,0.0,0.0,0.0012116636287707956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.095707828116057e-05,0.0,0.0,0.000540593934469645,0.00019983738242402028,0.0006215510127508056,0.00028789713600517626,0.00016568590755021998,8.701451048623239e-05,0.0,0.0,8.095707828116057e-05,0.0,0.0,0.0,0.0,0.0,0.0003922537808135521,0.000150341342002833,7.895588993442065e-05,0.0,0.0 +100175,81.0,the Columbus-Albany Area,G1302150001000,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,136780.0,,6903.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.007040797441348649,0.0011739272296216962,0.0,0.008214724670970345,0.003957310286787265,0.0010618536150855422,0.001905269177476034,0.0,0.0012903093219829229,0.003783570475232168,0.0010618536150855422,0.0009050817594094355,0.0,0.0012903093219829229,0.00017373981155509741,0.0010001874180665987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.84352815244144e-05,0.0,0.0,0.0008390384099059363,0.0003165716438726252,0.0009174736914303507,0.00045088088128519794,0.00012653907120264868,0.00010785686800049439,0.0,0.0001537637023109679,1.1608326894090569e-05,6.682695463032383e-05,0.0,0.0,0.0,0.0,0.0004419780604192959,0.00011859469367658276,0.00021279280991664965,0.0,0.00014411010765949734 +100176,85.0,Rural Climate Zone 3A,G1302330010200,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,65627.0,,14276.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.0033781480310012407,0.00242780065888641,0.0,0.0058059486898876505,0.0021957102278979193,0.0005792331772317051,0.0027555641200975064,0.0,0.00027544116466052027,0.0021957102278979193,0.0005792331772317051,0.00032776346121109613,0.0,0.00027544116466052027,0.0,0.00242780065888641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016221127355856927,0.0,0.0,0.0004025682641520214,0.00028115353442959327,0.0005647795377105906,0.0002616591241455221,6.902625123515258e-05,3.9059024773731386e-05,0.0,3.2823863997615335e-05,0.0,0.00016221127355856927,0.0,0.0,0.0,0.0,0.00021358993571860162,5.6345493826589325e-05,0.00026805028997090144,0.0,2.6793818194498304e-05 +100177,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,14312.0,,3302.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0012751838312758485,0.0009719705210545448,0.0,0.0022471543523303926,0.0012948865585189736,0.0004320482774590598,0.0005201888267460621,0.0,0.0,0.00032291603746442866,0.0004320482774590598,0.0005201888267460621,0.0,0.0,0.0009719705210545448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.494142760059362e-05,0.0,0.0,0.00015196000855714355,0.00010655930775283454,0.00021690143615773715,3.8480980242070326e-05,5.1485957027928726e-05,6.198941409457252e-05,0.0,0.0,6.494142760059362e-05,0.0,0.0,0.0,0.0,0.0,0.00012498596454348974,4.170247218361455e-05,5.021003718655111e-05,0.0,0.0 +100178,50.0,the Greater Atlanta and Macon Area,G1301350050429,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,15505.0,,1974.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013611761081220117,0.0005810463160344069,0.0,0.0019422224241564187,0.0007709535998045915,0.0006699234158725541,0.0005013760980855704,0.0,0.0,0.0001899072837701848,0.0006699234158725541,0.0005013760980855704,0.0,0.0,0.0005810463160344069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.882116990103858e-05,0.0,0.0,0.00016221028280299978,8.859110233610238e-05,0.00020103145270403838,2.2631101165309278e-05,7.983424488324763e-05,5.9748594010610486e-05,0.0,0.0,3.882116990103858e-05,0.0,0.0,0.0,0.0,0.0,7.979823536608644e-05,6.934101667156169e-05,5.189537722127919e-05,0.0,0.0 +100179,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,142413.0,,,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,729707.6418815667,0.0,0.0,0.04874733085743881,0.0,0.0,0.04874733085743882,0.03965102104389289,0.004710641706159294,0.0013461874559828,0.0006478262007315501,0.002391654450672278,0.03965102104389289,0.004710641706159294,0.0013461874559828,0.0006478262007315501,0.002391654450672278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00580912350157654,0.0018020225238297276,0.00580912350157654,0.004725134159267199,0.0005613579033236592,0.00016042251033081668,7.72001736589935e-05,0.0002850087549958714,0.0,0.0,0.0,0.0,0.0,0.0,0.004725134159267198,0.0005613579033236591,0.00016042251033081666,7.720017365899348e-05,0.0002850087549958714 +100180,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,19539.0,,12594.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.003913256778524787,0.00866319873891769,0.0,0.012576455517442478,0.001982626878755552,0.0005642927319508277,0.008322098556767443,0.0003697881705564906,0.0013376491794121616,0.0014205574659062084,0.0005642927319508277,0.0014014799536160557,0.0003697881705564906,0.00015713845649520383,0.0005620694128493438,0.006920618603151387,0.0011805107229169577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005788255232607102,0.0,0.0,0.0004663324079831646,0.000694188054637992,0.0010451579312438749,0.00016928405705189488,6.724526485001811e-05,0.0001670106406245811,4.406667330537536e-05,1.8725772151295083e-05,3.7554272019622044e-05,0.00046239625858535523,7.88749926557329e-05,0.0,0.0,0.0,0.00016476488181862894,4.6895170385941695e-05,0.0006916024391081762,3.073099879383775e-05,0.00011116444113729009 +100181,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,42239.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.010096714147947172,0.0,0.0,0.010096714147947172,0.006887762393935782,0.0010968612119306952,0.0019684283549955164,0.0,0.000143662187085177,0.006887762393935782,0.0010968612119306952,0.0019684283549955164,0.0,0.000143662187085177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012032070979202363,0.00037450530930578587,0.0012032070979202363,0.0008208021421361698,0.00013071095965381293,0.00023457403406430003,0.0,1.7119962065953327e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0008208021421361698,0.00013071095965381293,0.00023457403406430003,0.0,1.7119962065953327e-05 +100183,50.0,the Greater Atlanta and Macon Area,G1301170130306,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,59447.0,,5931.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0052942639824167075,0.0017459623918826088,0.0,0.0070402263742993165,0.0029395118704065677,0.001656011155824042,0.0024446726584624085,0.0,0.0,0.0011935494785239589,0.001656011155824042,0.0024446726584624085,0.0,0.0,0.0017459623918826088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001166553902855898,0.0,0.0,0.000630907366752009,0.0003219213061597674,0.0007475627570375986,0.00014223302069649515,0.00019734369897361545,0.0002913269898599011,0.0,0.0,0.0001166553902855898,0.0,0.0,0.0,0.0,0.0,0.00031213053122948573,0.0001758426788451176,0.00025958628820319456,0.0,0.0 +100184,33.0,Rural Lower Plains-Upper South Appalachia,G1300110970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5768.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010345000783312573,0.0,0.0,0.0010345000783312573,0.0005446260805733393,0.00030254247573838656,0.00014300053049526255,0.0,4.433099152426878e-05,0.0005446260805733393,0.00030254247573838656,0.00014300053049526255,0.0,4.433099152426878e-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.00012328162833109626,3.625161294951168e-05,0.00012328162833109626,6.490322374162685e-05,3.6054061115697956e-05,1.7041408329426405e-05,0.0,5.2829351443450264e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.490322374162685e-05,3.6054061115697956e-05,1.7041408329426405e-05,0.0,5.2829351443450264e-06 +100185,50.0,the Greater Atlanta and Macon Area,G1300450910300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,125197.0,,2450.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01115490464905752,0.0007212978168149084,0.0,0.011876202465872428,0.004305260729866938,0.002950682887098932,0.004620289538512857,0.0,0.0,0.003583962913052029,0.002950682887098932,0.004620289538512857,0.0,0.0,0.0007212978168149084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.819224586310372e-05,0.0,0.0,0.0013293096791734383,0.00046629309013095966,0.0013775019250365419,0.00042709433563120787,0.0003516275078445819,0.0005505914929221597,0.0,0.0,4.819224586310372e-05,0.0,0.0,0.0,0.0,0.0,0.000499360377209625,0.00034224503740409883,0.0005359000700616738,0.0,0.0 +100186,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock 90.1-2007,gen5_led,200001_500000,NaturalGas,198804.0,,25444.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.03213517882314348,0.007489552900103982,0.0,0.03962473172324745,0.021734747455308682,0.005602387629645644,0.012287565948686836,0.0,0.0,0.014245194555204701,0.005602387629645644,0.012287565948686836,0.0,0.0,0.007489552900103982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005004089962071044,0.0,0.0,0.0038294866319943284,0.0017127437881316713,0.004329895628201433,0.0016975720726354593,0.0006676256153125001,0.0014642852868257976,0.0,0.0,0.0005004089962071044,0.0,0.0,0.0,0.0,0.0,0.002375011360180145,0.0006121872035504702,0.0013426937109391637,0.0,0.0 +100187,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300050970201,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,152948.0,,741.0,,7.614023970037612,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,571051.7977528209,0.0,0.0,0.02840515664868892,0.0005132518656755044,0.0,0.02891833634734169,0.020560889945727075,0.005009834718109325,0.0013972257271292804,0.0008049509715613859,0.0011454349848146238,0.020560889945727075,0.005009834718109325,0.0013972257271292804,0.0008049509715613859,0.0006321831191391196,0.0,0.0,0.0005132518656755044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4290611052816906e-05,0.0,0.0,0.0033849855400836437,0.0009721880955240498,0.0034192761511364603,0.0024502000118612173,0.0005970119541583944,0.00016650458721493338,9.592439263443867e-05,7.533599421532028e-05,0.0,0.0,3.4290611052816906e-05,0.0,0.0,0.0,0.0024310997629028073,0.0005923580169694422,0.0001652066200885245,9.517662519846095e-05,0.00013543512597722536 +100188,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6534.0,,,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,26178.17466051906,0.0,0.0,0.0015688704817609224,0.0,0.0,0.0015688704817609226,0.000856349041496789,0.00028682813172791816,0.0003878134687636125,0.0,3.78798397726028e-05,0.000856349041496789,0.00028682813172791816,0.0003878134687636125,0.0,3.78798397726028e-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.00018695774569504433,7.257965746486911e-05,0.00018695774569504433,0.00010204863192189832,3.418047667617765e-05,4.62146064401952e-05,0.0,4.514030656773173e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010204863192189831,3.4180476676177644e-05,4.62146064401952e-05,0.0,4.514030656773173e-06 +100189,50.0,the Greater Atlanta and Macon Area,G1301210002100,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,138079.0,,784.0,,9.325022323477118,Office,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,699376.6742607838,0.0,0.0,0.03605233999140634,0.000664737252731315,0.0,0.03671707724413766,0.01999567838172076,0.004093954201105506,0.012011230311352247,0.0,0.0006163027341171999,0.01994724386310664,0.004093954201105506,0.012011230311352247,0.0,0.0,4.843451861411523e-05,0.0,0.0006163027341171999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.441323007360133e-05,0.0,0.0,0.004296287674315378,0.001515290487468714,0.004340700904388979,0.002377074496858065,0.0004878686092945374,0.0014313551007320605,0.0,0.0,3.2360656934361828e-06,0.0,4.117716438016515e-05,0.0,0.0,0.0,0.0023638934727372505,0.0004839881612881654,0.0014199702751023125,0.0,7.285944405575083e-05 +100190,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,59985.0,,8610.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0053445642471386424,0.002534470446489486,0.0,0.00787903469362813,0.003905988951933824,0.0016628856276347278,0.002310129424453279,0.0,0.0,0.0013715185054443376,0.0016628856276347278,0.002310129424453279,0.0,0.0,0.002534470446489486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016933924609076605,0.0,0.0,0.0006369011622009355,0.0003352024991877757,0.0008062404082917015,0.00016344115061676958,0.00019816279492099,0.00027529355944342607,0.0,0.0,0.00016933924609076605,0.0,0.0,0.0,0.0,0.0,0.00039968933376277295,0.00017015860946149327,0.00023638932468264507,0.0,0.0 +100191,50.0,the Greater Atlanta and Macon Area,G1300450910300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,38515.0,,1782.0,,3.3063363735822096,Lodging,Zone-by-Zone,2013 to 2018,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.003504092290757842,0.0005355041234212455,0.0,0.004039627752201292,0.001474610634807275,0.0006800350818259031,0.001294072288890269,0.0,0.0005908784086556406,0.001474610634807275,0.0006800350818259031,0.0007585681654690234,0.0,0.0005908784086556406,0.0,0.0005355041234212455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5779593309991934e-05,0.0,0.0,0.0004175772723548605,0.00016936567252581638,0.0004533568656648524,0.0001757270743959537,8.103873157777485e-05,9.039739799869208e-05,0.0,7.041406838243984e-05,0.0,3.5779593309991934e-05,0.0,0.0,0.0,0.0,0.00016549169786943586,7.631856006304872e-05,0.00014523035111721353,0.0,6.631273963081952e-05 +100192,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,61439.0,,8869.0,,3.3063363735822096,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.005611919002218305,0.0026658942108685594,0.0,0.008277813213086864,0.0027062889214894627,0.0012993370766205342,0.002753797363150664,0.0,0.001518358513804001,0.0027062889214894627,0.0012993370766205342,0.0016062930041083096,0.0,0.0,0.0,0.0011475043590423544,0.001518358513804001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017811902632912133,0.0,0.0,0.0006687615974686222,0.00040170137342440253,0.0008468806237977435,0.00032250324739746197,0.00015483950118800303,0.0001914188488831574,0.0,0.0,0.0,7.66693435575055e-05,0.00010144758895334676,0.0,0.0,0.0,0.00027687308121238086,0.0001329316530399932,0.0002817335410553366,0.0,0.00015533914238195722 +100193,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,187313.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.015031742493746189,0.0,0.0,0.015031742493746189,0.009680066140811504,0.004163916746921397,0.0011877899796127228,0.0,0.0,0.009680066140811504,0.004163916746921397,0.0011877899796127228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017913031221491063,0.0004575377919725852,0.0017913031221491063,0.0011535544004868106,0.0004962057507459581,0.00014154659047830944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011535544004868106,0.0004962057507459581,0.00014154659047830944,0.0,0.0 +100194,35.0,Eastern Counties in South Carolina and Georgia,G1300290920305,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,7214.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0020624662978371094,0.0,0.0,0.002062466297837109,0.0006804310956532823,0.0009256575692903287,0.0003911217517131848,0.0,6.509046703283493e-05,0.0006804310956532823,0.0009256575692903287,0.0003911217517131848,0.0,6.509046703283493e-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.0002457782296762745,7.397108891599928e-05,0.0002457782296762745,8.108503410782014e-05,0.00011030797395584329,4.6608864263508116e-05,0.0,7.756645416659101e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.108503410782015e-05,0.00011030797395584332,4.660886426350813e-05,0.0,7.756645416659103e-06 +100195,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010601,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,FuelOil,204013.0,33602.0,9011.0,,3.3063363735822096,Lodging,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,247975.22801866572,0.0,0.0,0.018561416537338105,0.002708451245021535,0.003471845465909969,0.024741713248269608,0.009530550650690112,0.0036147468471600204,0.00812460162253171,0.0,0.003471845465909969,0.009530550650690112,0.0036147468471600204,0.005416150377510176,0.0,0.0,0.0,0.002708451245021535,0.0,0.0,0.0,0.0,0.0,0.0,0.003471845465909969,0.0,0.00018096376293041993,0.00030850264106316246,0.0,0.0022119270472402384,0.0013042235018543105,0.0027013934512338206,0.0011357367427722045,0.0004307621836984145,0.0006454318552593215,0.0,0.0,0.0,0.00018096376293041993,0.0,0.0,0.00030850264106316246,0.0,0.001040581420376259,0.000394671677050057,0.0008870746094563934,0.0,0.0003790691659544216 +100196,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,35903.0,,5124.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.003413052495580122,0.0015083634599257938,0.0,0.004921385265899619,0.0015216520594526991,0.0013048913701720246,0.002094872525881192,0.0,0.0,1.3288599526905306e-05,0.0013048913701720246,0.002094872525881192,0.0,0.0,0.0015083634599257938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010077977536488495,0.0,0.0,0.0004067252334946635,0.00023530051953571968,0.0005075050088595484,1.5835703530481361e-06,0.00015550075713915404,0.0002496409060024614,0.0,0.0,0.00010077977536488495,0.0,0.0,0.0,0.0,0.0,0.00015691639654074658,0.00013456351628647503,0.00021602826081786467,0.0,0.0 +100197,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,54028.0,,5003.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005185285190453565,0.0014727942062267565,0.0,0.00665807939668032,0.0023420773046091874,0.001736786199599596,0.0025792158924715374,0.0,0.0,0.0008692830983824312,0.001736786199599596,0.0025792158924715374,0.0,0.0,0.0014727942062267565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.840414171056149e-05,0.0,0.0,0.0006179202883391366,0.0002776900336658319,0.0007163244300496982,0.00010359076561299511,0.00020696941244732994,0.00030736011027881154,0.0,0.0,9.840414171056149e-05,0.0,0.0,0.0,0.0,0.0,0.00025197764856829354,0.00018685604517823328,0.0002774907363031715,0.0,0.0 +100198,35.0,Eastern Counties in South Carolina and Georgia,G1300510004210,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,NaturalGas,8369.0,,126.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017973901265026287,0.00010032368044577989,0.0,0.0018977965140221484,0.0008668528398616812,0.00035282837657188545,0.0005777089100690623,0.0,0.00010032368044577989,0.0008668528398616812,0.00035282837657188545,0.0005777089100690623,0.0,0.0,0.0,0.0,0.00010032368044577989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.705763437571156e-06,0.0,0.0,0.00021419355142209616,8.133636512618015e-05,0.00022089931485966735,0.00010330216328248621,4.204627693570137e-05,6.88451112039086e-05,0.0,0.0,0.0,0.0,6.705763437571156e-06,0.0,0.0,0.0,0.00010089975242064732,4.106844230765017e-05,6.724403879956315e-05,0.0,1.1677454411434516e-05 +100199,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,Electricity,111970.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.010810024787094748,0.0,0.0,0.010810024787094748,0.006647414104949175,0.002711937199399109,0.0014506734827464647,0.0,0.0,0.006647414104949175,0.002711937199399109,0.0014506734827464647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012882091270613623,0.00037200791997055345,0.0012882091270613623,0.0007921591013903109,0.0003231761555675461,0.00017287387010350526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007921591013903109,0.0003231761555675461,0.00017287387010350526,0.0,0.0 +100200,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,489338.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.024073806016389355,0.0,0.0,0.02407380601638936,0.013514347429785549,0.004511862800922257,0.002596593699605313,0.0,0.0034510020860762376,0.013514347429785549,0.004511862800922257,0.002596593699605313,0.0,0.0034510020860762376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028688290205887983,0.0008207404370557475,0.0028688290205887983,0.0016104787117788401,0.000537669985850545,0.00030943106191992984,0.0,0.00041124926103948346,0.0,0.0,0.0,0.0,0.0,0.0,0.00161047871177884,0.0005376699858505449,0.0003094310619199298,0.0,0.00041124926103948336 +100201,50.0,the Greater Atlanta and Macon Area,G1301390000500,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,23842.0,,359.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.002687396930712802,0.0001332945777759648,0.0,0.002820691508488767,0.0012615711811714714,0.0005859536642814359,0.0008993509157500416,0.0,7.385449570958979e-05,0.0012615711811714714,0.0005859536642814359,0.0007660563379740768,0.0,7.385449570958979e-05,0.0,0.0001332945777759648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.905030022836622e-06,0.0,0.0,0.0003202523374543844,0.00011421119255173028,0.00032915736747722097,0.00015033920557767786,6.982706145173673e-05,9.128957842222162e-05,0.0,8.801109583852017e-06,0.0,8.905030022836622e-06,0.0,0.0,0.0,0.0,0.00014721760519710637,6.837719226582231e-05,0.00010494872586230234,0.0,8.618365854956838e-06 +100202,85.0,Rural Climate Zone 3A,G1301470960400,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,28565.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,14029.891188970922,0.0,0.0,0.001359174045738408,0.0,0.0,0.0013591740457384077,0.0008627948474226097,0.00026375685648470545,8.827946951044291e-05,0.0,0.00014432514195922985,0.0008627948474226097,0.00026375685648470545,8.827946951044291e-05,0.0,0.00014432514195922985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001619691518557377,5.0394291927204326e-05,0.0001619691518557377,0.00010281696453865102,3.143120226207249e-05,1.052002931317955e-05,0.0,1.719884286187619e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00010281696453865103,3.14312022620725e-05,1.0520029313179552e-05,0.0,1.7198842861876194e-05 +100203,50.0,the Greater Atlanta and Macon Area,G1300890023310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,214131.0,,50150.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.049684073711108716,0.04435732853917184,0.0,0.09404140225028057,0.07122039870650308,0.008636145722207781,0.008077216953149571,0.0006500394147981063,0.005457509236369234,0.035137908693173736,0.008636145722207781,0.003596472858153801,0.0006500394147981063,0.001663507022775293,0.03608249001332935,0.00448074409499577,0.0037940022135939406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00296369784700572,0.0,0.0,0.005920750595656743,0.004285470072819027,0.008884448442662464,0.004187313524952061,0.0010291520221601233,0.00042858439790971497,7.746388258629695e-05,0.00019823676804854744,0.002410821424303614,0.00029937717316757254,0.00025349308811583427,0.0,0.0,0.0,0.006728461563022931,0.0008158894867185596,0.0007630853630773297,6.141169238525496e-05,0.0005155916253442722 +100204,50.0,the Greater Atlanta and Macon Area,G1301510070404,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,166285.0,,21446.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008559580200590371,0.0036471176137434407,0.0,0.012206697814333813,0.005710718918700547,0.002182199692495839,0.0014357337463501959,0.0,0.002878063187148651,0.004525745673914158,0.002182199692495839,0.0014357337463501959,0.0,0.0004159188181915987,0.001184973244786389,0.0,0.0024621443689570523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024367879710792065,0.0,0.0,0.0010200294917848992,0.00046766992355910564,0.00126370828889282,0.0005393248210224099,0.00026004873967489303,0.00017109376036070212,0.0,4.9564283621583564e-05,7.917289363153766e-05,0.0,0.00016450590347638302,0.0,0.0,0.0,0.0005912068065308109,0.00022591399257775887,0.00014863550023949725,0.0,0.00029795382509479533 +100205,50.0,the Greater Atlanta and Macon Area,G1300890021209,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,264832.0,,10304.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.012733537773569264,0.0017522916191438185,0.0,0.01448581166235166,0.005941373190414014,0.003177777216593224,0.003098096972371506,0.0,0.0022685997436957565,0.005482280942164588,0.003177777216593224,0.0018048976014771153,0.0,0.0022685997436957565,0.00045909224824942723,0.0012931993708943912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011707776937648595,0.0,0.0,0.0015174301122995294,0.000564299464315432,0.0016345078816760153,0.0006533124048992817,0.00037868932612325376,0.00021508602077448204,0.0,0.0002703444733940586,3.067383064317869e-05,8.640393873330724e-05,0.0,0.0,0.0,0.0,0.0006703953864697518,0.00035856478240922206,0.00034957405477655835,0.0,0.00025597765923438285 +100207,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,128365.0,,200.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.011279719277870276,5.8801285666398524e-05,0.0,0.011338520563536673,0.004056122505942186,0.0027159073989215057,0.0045664599690666855,0.0,0.0,0.003997321220275788,0.0027159073989215057,0.0045664599690666855,0.0,0.0,5.8801285666398524e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.929774163427294e-06,0.0,0.0,0.0013441806322606444,0.00042089153063009575,0.0013481104064240717,0.00047635243686966103,0.0003236490230573322,0.0005441755151172453,0.0,0.0,3.929774163427294e-06,0.0,0.0,0.0,0.0,0.0,0.00048225876818324114,0.00032291188315560816,0.0005429361061984577,0.0,0.0 +100208,50.0,the Greater Atlanta and Macon Area,G1301170130305,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,14208.0,,1596.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001210889106082161,0.00046988856202412734,0.0,0.0016807776681062884,0.0006698620366599587,0.0004154145108457049,0.0005955318102069224,0.0,0.0,0.00019997347463583133,0.0004154145108457049,0.0005955318102069224,0.0,0.0,0.00046988856202412734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1394917561107347e-05,0.0,0.0,0.0001443003349547028,7.768854436595572e-05,0.00017569525251581017,2.3830621009855112e-05,4.9504494473511174e-05,7.096887671826864e-05,0.0,0.0,3.1394917561107347e-05,0.0,0.0,0.0,0.0,0.0,7.002209864813827e-05,4.342415940354605e-05,6.225220251372717e-05,0.0,0.0 +100209,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,102218.0,,7588.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010037833669427435,0.002233712304771999,0.0,0.012271515284593137,0.0037955984380809867,0.004393830933642107,0.00408211660247634,0.0,0.0,0.0015618861333089877,0.004393830933642107,0.00408211660247634,0.0,0.0,0.002233712304771999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001492433154452589,0.0,0.0,0.0011961876737048805,0.0004550639273021485,0.0013454309891501393,0.0001861267084037425,0.0005236036555550629,0.0004864573097460751,0.0,0.0,0.0001492433154452589,0.0,0.0,0.0,0.0,0.0,0.00041614386182409733,0.0004817331977437682,0.00044755729434582556,0.0,0.0 +100210,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,4474.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007531306134701335,0.0,0.0,0.0007531306134701335,0.0004290842985595269,9.767705408612206e-05,0.00019874509819555573,0.0,2.7624162628928677e-05,0.0004290842985595269,9.767705408612206e-05,0.00019874509819555573,0.0,2.7624162628928677e-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,8.975047839726847e-05,2.8193852374658397e-05,8.975047839726847e-05,5.113392070338554e-05,1.1640161979702838e-05,2.3684427804594344e-05,0.0,3.2919679095857304e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.113392070338554e-05,1.1640161979702838e-05,2.3684427804594344e-05,0.0,3.2919679095857304e-06 +100211,35.0,Eastern Counties in South Carolina and Georgia,G1300510002800,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,12650.0,,741.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027540628484451976,0.0005880472942864758,0.0,0.003342110142731674,0.0024285278062072834,0.0004577836531470666,0.0003199936682973804,0.0,0.00013572230800620345,0.0019762028199270115,0.0004577836531470666,0.0003199936682973804,0.0,0.0,0.00045232498628027223,0.0,0.00013572230800620345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.929033512086437e-05,0.0,0.0,0.0003281917266097691,0.00013397257637780044,0.00036748206173063344,0.00023549695533240706,5.455242520150972e-05,3.813249017247355e-05,0.0,0.0,3.0222059462166978e-05,0.0,9.068275658697386e-06,0.0,0.0,0.0,0.0002670290227077282,5.0335648288229257e-05,3.518493644573785e-05,0.0,1.492336022420672e-05 +100212,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,7785.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0018558640276363193,0.0,0.0,0.0018558640276363193,0.0010023270266466665,0.0004516633296903579,0.0003371967396351564,0.0,6.459422459039909e-05,0.0010023270266466665,0.0004516633296903579,0.0003371967396351564,0.0,6.459422459039909e-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.00022115845989317335,5.885373507857417e-05,0.00022115845989317335,0.00011944468895429241,5.38235371218245e-05,4.0182853112191624e-05,0.0,7.69752471930872e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011944468895429241,5.38235371218245e-05,4.0182853112191624e-05,0.0,7.69752471930872e-06 +100213,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8405.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002487994192225846,0.0,0.0,0.002487994192225846,0.0010364023410272612,0.000997612723443526,0.00038533225655143326,0.0,6.872957827736447e-05,0.0010364023410272612,0.000997612723443526,0.00038533225655143326,0.0,6.872957827736447e-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.0002964849163489636,8.808361682947991e-05,0.0002964849163489636,0.00012350417149022212,0.000118881758559976,4.591859667807397e-05,0.0,8.190245511800703e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012350417149022212,0.000118881758559976,4.591859667807397e-05,0.0,8.190245511800703e-06 +100214,50.0,the Greater Atlanta and Macon Area,G1300450910103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6574.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,9613.75315558068,0.0,0.0,0.0006022781032511809,0.0,0.0,0.0006022781032511809,0.00036099022931768046,0.00019387468521116986,4.7443562321768345e-05,0.0,0.0,0.00036099022931768046,0.00019387468521116986,4.7443562321768345e-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,7.177283750378036e-05,2.1189836263617118e-05,7.177283750378036e-05,4.3018819594151485e-05,2.310383891202935e-05,5.653798586963787e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3018819594151485e-05,2.310383891202935e-05,5.653798586963787e-06,0.0,0.0 +100215,50.0,the Greater Atlanta and Macon Area,G1300670031309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,11155.0,,2931.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0009665998399524468,0.0008627769018473183,0.0,0.0018293767417997648,0.0008704799930280416,0.00047010338926821123,0.0004887933595035122,0.0,0.0,7.7030911807234e-06,0.00047010338926821123,0.0004887933595035122,0.0,0.0,0.0008627769018473183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.764514778803378e-05,0.0,0.0,0.00011518924836028699,9.60875202389925e-05,0.0001728343961483208,9.179737534427241e-07,5.602199982165596e-05,5.824927478518831e-05,0.0,0.0,5.764514778803378e-05,0.0,0.0,0.0,0.0,0.0,8.224051422353959e-05,4.4414052914827934e-05,4.617982900995329e-05,0.0,0.0 +100216,50.0,the Greater Atlanta and Macon Area,G1300630040514,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,77141.0,,4098.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.006466691188294552,0.0011937735787019596,0.0,0.007660434393397074,0.004356758729751684,0.0024759647053672154,0.0008277109582781749,0.0,0.0,0.003162985151049724,0.0024759647053672154,0.0008277109582781749,0.0,0.0,0.0011937735787019596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.976065459472818e-05,0.0,0.0,0.000770621790846007,0.0003148076908678353,0.0008503824454407352,0.0003769261915480604,0.0002950554309405319,9.863654880037828e-05,0.0,0.0,7.976065459472818e-05,0.0,0.0,0.0,0.0,0.0,0.000483642434950551,0.0002748560738004592,9.1883936689725e-05,0.0,0.0 +100217,85.0,Rural Climate Zone 3A,G1302650010200,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,13153.0,,228.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0006405979581065078,3.870537897997527e-05,0.0,0.0006793033370864831,0.0004077983126612145,0.00012760541114012,4.0620258013340965e-05,0.0,0.00010327935527180759,0.0003690929336812392,0.00012760541114012,4.0620258013340965e-05,0.0,0.00010327935527180759,3.870537897997527e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.585503318303517e-06,0.0,0.0,7.633923617529662e-05,2.3971124185281492e-05,7.892473949360014e-05,4.3984331011933295e-05,1.5206573007296144e-05,4.84066399329102e-06,0.0,1.2307668162776166e-05,2.585503318303517e-06,0.0,0.0,0.0,0.0,0.0,4.7379975683261636e-05,1.4825812390975386e-05,4.719457577841408e-06,0.0,1.1999493841521697e-05 +100218,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,51368.0,,4117.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0042468277194761105,0.0012119325526962828,0.0,0.005458760272172394,0.0018348701813270538,0.0013665467892241094,0.0022573126120149327,0.0,0.0,0.0006229376286307711,0.0013665467892241094,0.0022573126120149327,0.0,0.0,0.0012119325526962828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.097481200087356e-05,0.0,0.0,0.0005060865450247975,0.00023494913726660767,0.0005870613570256711,7.42343163095342e-05,0.00016284883420193805,0.00026899973729013543,0.0,0.0,8.097481200087356e-05,0.0,0.0,0.0,0.0,0.0,0.00019733077198994106,0.00014696501999009998,0.00024276226453763528,0.0,0.0 +100219,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,135484.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.012071480430744708,0.0,0.0,0.012071480430744708,0.00549862607075311,0.002436908188069089,0.0041359154823162134,0.0,0.0,0.00549862607075311,0.002436908188069089,0.0041359154823162134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014385337516859475,0.00044384076378945934,0.0014385337516859475,0.0006552600765133043,0.00029040138849655304,0.0004928686294581762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006552600765133043,0.00029040138849655304,0.0004928686294581762,0.0,0.0 +100220,35.0,Eastern Counties in South Carolina and Georgia,G1300510004209,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,145814.0,,2432.0,,5.759960461090961,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,431997.0345818221,0.0,0.0,0.032837024595548846,0.0012732387346127208,0.0,0.034110263330161573,0.01669421144921059,0.0019201217534972992,0.01537030958340326,0.0,0.00012562054405041895,0.015420972714597869,0.0019201217534972992,0.01537030958340326,0.0,0.00012562054405041895,0.0012732387346127208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.507092169531112e-05,0.0,0.0,0.003913121939601006,0.0012651329655247907,0.003998192861296317,0.001837686191204462,0.0002288170336034019,0.0018316487681234019,0.0,1.4969946669740064e-05,8.507092169531112e-05,0.0,0.0,0.0,0.0,0.0,0.0019567916082953575,0.0002250647265119282,0.0018016120678241094,0.0,1.4724458664921292e-05 +100221,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,5670.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010466580181709352,0.0,0.0,0.0010466580181709355,0.0004928514524125329,0.0002922040915209731,0.00020900077533922984,0.0,5.268440597193883e-05,0.0004928514524125329,0.0002922040915209731,0.00020900077533922984,0.0,5.268440597193883e-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.00012473107170576345,4.118021775892411e-05,0.00012473107170576345,5.8733501090054875e-05,3.482219489027754e-05,2.4906789269100297e-05,0.0,6.278442724343843e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.873350109005486e-05,3.4822194890277534e-05,2.490678926910029e-05,0.0,6.2784427243438415e-06 +100222,85.0,Rural Climate Zone 3A,G1300690010700,ComStock 90.1-2007,gen3_t5_cfl,100001_200000,NaturalGas,98143.0,,4128.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008744389522404455,0.0012151856509638394,0.0,0.009959575173368292,0.002773051445847828,0.002781521777185994,0.004405001950334471,0.0,0.0,0.0015578657948839888,0.002781521777185994,0.004405001950334471,0.0,0.0,0.0012151856509638394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.119128356656837e-05,0.0,0.0,0.001042052036959249,0.0004072334711701004,0.0011232433205258172,0.00018564786263336745,0.000331468586381794,0.0005249355879440874,0.0,0.0,8.119128356656837e-05,0.0,0.0,0.0,0.0,0.0,0.0003127454193379631,0.0003137007053750298,0.0004967971958128245,0.0,0.0 +100223,50.0,the Greater Atlanta and Macon Area,G1301390000303,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,3078.0,,495.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0004163474092036736,0.0003926104790404923,0.0,0.000808957888244166,0.0006337843060643128,0.00010603046853379213,5.6571638437686274e-05,0.0,1.2406061060896114e-05,0.0002536625951584558,0.00010603046853379213,5.6571638437686274e-05,0.0,0.0,0.00038012171090585683,0.0,1.2406061060896114e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.623034630201906e-05,0.0,0.0,4.961637365955301e-05,4.3143985018431496e-05,7.584671996157207e-05,3.0229125549036358e-05,1.26357153419839e-05,6.741676516315902e-06,0.0,0.0,2.539597042428473e-05,0.0,8.288502096698672e-07,0.0,0.0,0.0,5.942269860602461e-05,9.941263162328533e-06,5.3040748853609335e-06,0.0,1.1631743169651171e-06 +100224,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,104390.0,,15184.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005373505174852563,0.0025822498372164897,0.0,0.007955755012069052,0.0032085216632955953,0.001966031126062555,0.0013907695497889418,0.0,0.0013904504032833808,0.002567976896273348,0.001966031126062555,0.0006102258489939574,0.0,0.00022928903388412286,0.0006405447670222475,0.0007805437007949845,0.001161161369399258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017253101168908448,0.0,0.0,0.0006403496554312074,0.00034632235923039145,0.0008128806671202919,0.0003060205707774458,0.0002342879206728834,7.271937021056618e-05,0.0,2.7323906661331366e-05,4.279749972048583e-05,5.2151419442382366e-05,7.758209252621632e-05,0.0,0.0,0.0,0.0003278312650619607,0.00020087957596841058,0.00014210212327151665,0.0,0.0001420695144211994 +100225,85.0,Rural Climate Zone 3A,G1302370960102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,93469.0,,3024.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.004811346335668369,0.0005142868633500516,0.0,0.005325650929379841,0.002681007950326184,0.0007939301236671245,0.0010292474804340652,0.0,0.0008214299142296263,0.0023337942826372905,0.0007939301236671245,0.0008621742847729077,0.0,0.0008214299142296263,0.00034721366768889394,0.00016707319566115756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4362163154486267e-05,0.0,0.0,0.000573359407357001,0.00019918383406622016,0.0006077215705114872,0.0002781140274326544,9.461121138048727e-05,0.00010274374415558878,0.0,9.788831149329123e-05,2.3199139524729517e-05,1.1163023629756744e-05,0.0,0.0,0.0,0.0,0.0003059356281009091,9.059708719729192e-05,0.00011744966081117502,0.0,9.37351479021693e-05 +100226,85.0,Rural Climate Zone 3A,G1302370960102,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,10199.0,,,1853.0,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0008993926529512693,0.0,0.00017464819676707297,0.0010740408497183422,0.0006168574309813017,0.0003633897436732628,9.376330146433988e-05,0.0,0.0,0.00044220923421422884,0.0003633897436732628,9.376330146433988e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017464819676707297,0.0,0.0,0.0,0.0,1.408493794147722e-05,0.00010717933734029876,4.458092192006559e-05,0.00012126427528177598,5.26974425834119e-05,4.330463651816333e-05,1.1173638660278352e-05,0.0,0.0,0.0,0.0,0.0,1.4084937941477222e-05,0.0,0.0,6.964611200751076e-05,4.102841518823472e-05,1.0586318763463774e-05,0.0,0.0 +100227,81.0,the Columbus-Albany Area,G1302150001800,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,72987.0,,1427.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.00633359818929471,0.0004200486413966579,0.0,0.006753646830691367,0.0015343575564599483,0.0020749856610002807,0.0031443036132311384,0.0,0.0,0.0011143089150632904,0.0020749856610002807,0.0031443036132311384,0.0,0.0,0.0004200486413966579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.806573950109693e-05,0.0,0.0,0.0007547609690838568,0.00027279422571145466,0.0007828267085849538,0.0001327897431216118,0.00024727147847471474,0.0003746997474875302,0.0,0.0,2.806573950109693e-05,0.0,0.0,0.0,0.0,0.0,0.00017784999805698073,0.00024051512258237823,0.00036446158794559483,0.0,0.0 +100228,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010302,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,92740.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.007443354278215462,0.0,0.0,0.007443354278215464,0.004899048974113305,0.00197048726352415,0.0005737876669785697,0.0,0.0,0.004899048974113305,0.00197048726352415,0.0005737876669785697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008870101921614006,0.00022898643766294745,0.0008870101921614006,0.0005838102298387693,0.0002348191716986488,6.837717106064236e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005838102298387691,0.00023481917169864875,6.837717106064235e-05,0.0,0.0 +100229,35.0,Eastern Counties in South Carolina and Georgia,G1300510001500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,110083.0,,4613.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.011165298578959617,0.001386488116369743,0.0,0.012551755357307156,0.0037776418865761974,0.0030162846371310217,0.004175916810766307,0.0,0.0015819120228336293,0.0037776418865761974,0.0030162846371310217,0.002789428694396565,0.0,0.0015819120228336293,0.0,0.001386488116369743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.263621197628414e-05,0.0,0.0,0.0013305465193158893,0.0006098867946676836,0.0014231827312921734,0.0004501741021845761,0.0003594446665997383,0.00033241069318139536,0.0,0.00018851332286013697,0.0,9.263621197628414e-05,0.0,0.0,0.0,0.0,0.0004283285122229034,0.000342001902206267,0.00047348697638019627,0.0,0.00017936534048280673 +100230,50.0,the Greater Atlanta and Macon Area,G1300630040302,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,341091.0,,8880.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.016384325572126657,0.001510077151784477,0.0,0.017894402723911133,0.009968771595894748,0.002142873750866162,0.0027173729215987127,0.0,0.003065402185912929,0.00845869444411027,0.002142873750866162,0.0027173729215987127,0.0,0.003065402185912929,0.001510077151784477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010089421794105984,0.0,0.0,0.0019524890933991885,0.0006212797917150233,0.0020533833113402485,0.0010080066203407316,0.00025536221241937416,0.000323824192137993,0.0,0.0003652981813947293,0.00010089421794105985,0.0,0.0,0.0,0.0,0.0,0.0011439168741977973,0.00024589483461540936,0.0003118186336805058,0.0,0.00035175500340610226 +100231,85.0,Rural Climate Zone 3A,G1301930000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,44006.0,,7679.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0022652132446645263,0.0013058233882254687,0.0,0.003571036632889995,0.001324972178559126,0.0007112179876425782,0.0007650473649138585,0.0,0.0007697813714130125,0.0010687152649551028,0.0007112179876425782,0.00036292276790706086,0.0,0.0001223572241597844,0.00025625691360402317,0.0004021245970067976,0.000647424147253228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.724706501184741e-05,0.0,0.0,0.00026994163488455963,0.0001512772048210167,0.0003571886998964071,0.00012735699233949635,8.475464585762523e-05,4.324889302868722e-05,0.0,1.4581103658750818e-05,1.7121506478244524e-05,2.68674854304702e-05,4.325688846973629e-05,0.0,0.0,0.0,0.00013252876923736202,7.113873490101973e-05,7.652295445975369e-05,0.0,7.699646783991903e-05 +100232,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,18136.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016159305299992422,0.0,0.0,0.0016159305299992422,0.0004653158106857696,0.00051113539288824,0.0006395100160315306,0.0,0.0,0.0004653158106857696,0.00051113539288824,0.0006395100160315306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001925658514838851,7.190271453401077e-05,0.0001925658514838851,5.545036350891986e-05,6.091055297724973e-05,7.620859219092942e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.545036350891986e-05,6.091055297724973e-05,7.620859219092942e-05,0.0,0.0 +100233,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,106126.0,,11409.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009455713217172609,0.0033582408587324243,0.0,0.012813954075905033,0.005673249930587039,0.0027895317644296945,0.0043512030704945985,0.0,0.0,0.0023150090718546145,0.0027895317644296945,0.0043512030704945985,0.0,0.0,0.0033582408587324243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022437801270075282,0.0,0.0,0.0011268207604893303,0.0005089726031177841,0.001351198773190083,0.00027587557098806805,0.00033242360803574614,0.0005185252386920747,0.0,0.0,0.0002243780127007528,0.0,0.0,0.0,0.0,0.0,0.0005982297346159728,0.00029414900939591173,0.0004588232653189038,0.0,0.0 +100234,50.0,the Greater Atlanta and Macon Area,G1301350050549,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,42828.0,,641.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.010065202752852494,0.0005084003822755228,0.0,0.010573603135128019,0.006670077375853925,0.0014443136287095252,0.002295948367003174,0.0,0.00016318105648765354,0.0063249407571397956,0.0014443136287095252,0.002295948367003174,0.0,0.0,0.00034513661871412985,0.0,0.00016318105648765354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.396665161464466e-05,0.0,0.0,0.001199450356105843,0.0004277172817183756,0.001233417007720488,0.0007537307126127863,0.0001721160058890222,0.00027360363760403465,0.0,0.0,2.3058864029268287e-05,0.0,1.0902261857116303e-05,0.0,0.0,0.0,0.0007780684382656533,0.00016848003195944178,0.0002678237237126556,0.0,1.903516595407311e-05 +100235,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,38513.0,,17258.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012384102555178607,0.011871519922330034,0.0,0.02425562247750864,0.006742609635090642,0.0018273531415067539,0.010812072510487429,0.0003724418094840682,0.004501288820881781,0.004916475733091153,0.0018273531415067539,0.004757257397436497,0.0003724418094840682,0.0005107179136021663,0.0018261339019994883,0.006054815113050931,0.003990570907279614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007931861285973199,0.0,0.0,0.0014757910374250617,0.0011622576618816128,0.0022689771660223813,0.0005858874948980176,0.00021776235915605302,0.0005669137346512876,4.43832148474188e-05,6.0861327349984446e-05,0.00012201167917031136,0.00040454763925045937,0.00026662681017654917,0.0,0.0,0.0,0.0006307332378548196,0.00017093861665198374,0.0010114086194416248,3.4839838151958546e-05,0.0004210702719224383 +100236,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960900,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,32094.0,,330.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002925118445052946,9.722467275112242e-05,0.0,0.0030223431178040675,0.0009782925799518716,0.0008755130884608651,0.0011685374493913313,0.0,0.0,0.0008810679072007492,0.0008755130884608651,0.0011685374493913313,0.0,0.0,9.722467275112242e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.496092974129257e-06,0.0,0.0,0.000348581768371252,0.00012217716907270574,0.0003550778613453812,0.00010499547793239403,0.00010433351891237371,0.00013925277152648422,0.0,0.0,6.496092974129256e-06,0.0,0.0,0.0,0.0,0.0,0.00011493401758823243,0.0001028590411192112,0.00013728480263793764,0.0,0.0 +100237,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,53879.0,,5027.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004497531113322045,0.0014797914364626324,0.0,0.005977353239390974,0.0022209454285521545,0.0015269613613422021,0.002229415759890321,0.0,0.0,0.0007411539920895222,0.0015269613613422021,0.002229415759890321,0.0,0.0,0.0014797914364626324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.88719854717687e-05,0.0,0.0,0.0005359634380451748,0.00025675761782978596,0.0006348354235169433,8.83221108898114e-05,0.00018196549181459903,0.0002656758353407644,0.0,0.0,9.88719854717687e-05,0.0,0.0,0.0,0.0,0.0,0.0002358794562200883,0.00016217364503966526,0.00023677906281301264,0.0,0.0 +100238,50.0,the Greater Atlanta and Macon Area,G1302190030100,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,13328.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002979770452679768,0.0,0.0,0.0029797704526797674,0.0012492903488322388,0.0007166567939510989,0.0009439358325867155,0.0,6.988747730971477e-05,0.0012492903488322388,0.0007166567939510989,0.0009439358325867155,0.0,6.988747730971477e-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.00035508978749519856,9.999414137241234e-05,0.00035508978749519856,0.00014887396580756565,8.540171557249627e-05,0.00011248583725665319,0.0,8.328268858483478e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014887396580756567,8.540171557249628e-05,0.0001124858372566532,0.0,8.32826885848348e-06 +100239,50.0,the Greater Atlanta and Macon Area,G1301350050426,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,264271.0,,12626.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012614336553742247,0.0021471999590526544,0.0,0.014761518782433479,0.00813651604674649,0.0019802508759214376,0.0027508301135983518,0.0,0.0018939217461672003,0.0063690117775042675,0.0019802508759214376,0.0023711521541493414,0.0,0.0018939217461672003,0.0017675042692422238,0.00037967795944901067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014346314111676484,0.0,0.0,0.0015032251753786382,0.00048376308944044784,0.0016466883164954031,0.0007589823535655679,0.00023598252334306081,0.00028256544429307697,0.0,0.00022569485417693255,0.00011809413153801354,2.5367824941367285e-05,0.0,0.0,0.0,0.0,0.0009076509069716512,0.00022090247143065708,0.0003068627202586118,0.0,0.0002112722178344832 +100240,50.0,the Greater Atlanta and Macon Area,G1301130140204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,53043.0,,3585.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0046835715066987195,0.0010552007333339145,0.0,0.005738802929638932,0.0020019137084054503,0.0015074734613431608,0.002229415759890321,0.0,0.0,0.0009467129750715357,0.0015074734613431608,0.002229415759890321,0.0,0.0,0.0010552007333339145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.050282573793144e-05,0.0,0.0,0.0005581338114559276,0.00022877348408183027,0.0006286366371938591,0.00011281828843132184,0.0001796432289855591,0.0002656759512709071,0.0,0.0,7.050282573793144e-05,0.0,0.0,0.0,0.0,0.0,0.0002192924756319293,0.0001651307875556157,0.00024421337400631405,0.0,0.0 +100241,50.0,the Greater Atlanta and Macon Area,G1300890021907,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,15970.0,,189.0,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003339959758814452,0.00015027875298432157,0.0,0.003490238511798773,0.0019135108580326165,0.00046134005731785687,0.0009651088434639784,0.0,0.00015027875298432157,0.0019135108580326165,0.00046134005731785687,0.0009651088434639784,0.0,0.0,0.0,0.0,0.00015027875298432157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0039084394140368e-05,0.0,0.0,0.0003980146596858567,0.00013320427553049742,0.000408053744079997,0.0002280283081121259,5.4976741988651385e-05,0.00011500960958507942,0.0,0.0,0.0,0.0,1.0039084394140368e-05,0.0,0.0,0.0,0.00022371401476385807,5.393658257057402e-05,0.00011283362890212051,0.0,1.756951784344442e-05 +100242,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,3899.0,,279.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.00093624407472896,0.00022132412932638663,0.0,0.0011575682040553467,0.000707310894618557,0.00025721899932924607,0.00015987277353808125,0.0,3.3165536569462275e-05,0.0005191523018616327,0.00025721899932924607,0.00015987277353808125,0.0,0.0,0.00018815859275692437,0.0,3.3165536569462275e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.478622978769862e-05,0.0,0.0,0.00011157466384580907,4.297198280243943e-05,0.0001263608936335077,6.186874248764519e-05,3.065346330039454e-05,1.905245805776934e-05,0.0,0.0,1.2570505518316277e-05,0.0,2.215724269382342e-06,0.0,0.0,0.0,7.721051460086866e-05,2.8078192283524496e-05,1.7451815332492882e-05,0.0,3.620371416621648e-06 +100243,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301090970200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,119643.0,,13339.0,,7.614023970037612,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,571051.7977528209,0.0,0.0,0.03403721543680024,0.009232760220340457,0.0,0.04326997565714069,0.032905131351191184,0.006104464118920075,0.0024468950727775107,0.0007923217425831502,0.0010210912046460506,0.024586149972693132,0.006104464118920075,0.0015331162309350983,0.0007923217425831502,0.0010210912046460506,0.008318981378498045,0.0009137788418424123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000616881236887865,0.0,0.0,0.004056149491976844,0.001482578462284374,0.004673030728864709,0.0029298842000331587,0.0007274572469279591,0.00018269851224449765,9.441945800848897e-05,0.00012168147475745606,0.0005558276614949018,6.105357539296324e-05,0.0,0.0,0.0,0.0,0.0035536578795387036,0.0006592642583624365,0.00026425750631338694,8.556842924009542e-05,0.00011027486158284997 +100244,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Propane,1807.0,,,1138.0,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00043388130883640675,0.0,0.00029195597029975525,0.000725837279136162,0.00048118975501529055,0.00012521850964131146,0.00010669212512370658,0.0,1.2736889355853344e-05,0.00020197067407138873,0.00012521850964131146,0.00010669212512370658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002792190809439018,1.2736889355853344e-05,0.0,0.0,0.0,2.3545942386715537e-05,5.170487773754385e-05,3.844537263695481e-05,7.525082012425938e-05,2.4068492458078935e-05,1.4922071081708235e-05,1.2714314197756683e-05,0.0,0.0,0.0,0.0,0.0,2.2518725636700176e-05,1.027216750015352e-06,0.0,4.988710933032601e-05,1.2981966917516945e-05,1.1061253185995283e-05,0.0,1.3204906904211425e-06 +100245,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,NaturalGas,23073.0,,4537.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0011339984557037371,0.0007715544075550178,0.0,0.0019055705936201748,0.0010206127944224995,0.00021758699534688803,0.00037528082981683756,0.0,0.0002920899740339499,0.0007539836193877455,0.00021758699534688803,0.0001018077352739432,0.0,6.062010569516054e-05,0.000266629175034754,0.0002734730945428944,0.00023146986833878937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.155089737448539e-05,0.0,0.0,0.0001351374118171626,8.22121877660601e-05,0.000186688309191648,8.985144059421559e-05,2.5929615025801617e-05,1.2132321502457047e-05,0.0,7.224034694688374e-06,1.7814651960600953e-05,1.8271923915434842e-05,1.5465506140819627e-05,0.0,0.0,0.0,9.998919880901452e-05,2.1316947479878155e-05,3.676617587671943e-05,0.0,2.861598702603591e-05 +100246,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,82472.0,,19627.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,32736.412774265485,0.0,0.0,0.004245286816971763,0.0033377228069635194,0.0,0.007582991893573864,0.0033036095915913387,0.0011193354468093534,0.0028429748018983666,0.0,0.0003171075139976443,0.0024255134422632237,0.0011193354468093534,0.000630296618121457,0.0,7.015904013914894e-05,0.0008780961493281151,0.0022126781837769095,0.0002469484738584954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022300666295674138,0.0,0.0,0.0005059018684754194,0.00038562698477905916,0.0007289085314321609,0.0002890433168255291,0.00013338884235754734,7.51111174695229e-05,0.0,8.360704712563001e-06,5.866912962582866e-05,0.00014783791420060397,1.649961913030876e-05,0.0,0.0,0.0,0.0003175566121694928,0.00010759515085400374,0.00027327849176609324,0.0,3.048168527385685e-05 +100247,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,53560.0,,3141.0,,7.56685751697572,Food Service,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,56751.431377317895,0.0,0.0,0.010566359889787946,0.002160851006729345,0.0,0.012727210896517292,0.005189441942776569,0.0006535840958652636,0.0027900503124493005,0.00037315900919422434,0.003721118976173965,0.004674564270855497,0.0006535840958652636,0.0011440769776410275,0.00037315900919422434,0.003721118976173965,0.0005148776719210717,0.0016459733348082736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001443745551898189,0.0,0.0,0.001259172311709544,0.00045936897919811683,0.0014035468668993631,0.0005570586238366411,7.788633034188393e-05,0.00013633740169140046,4.446862468658203e-05,0.0004434384246086148,3.4400907156152215e-05,0.00010997364803366671,0.0,0.0,0.0,0.0,0.0005722876000847372,7.207674308736142e-05,0.00030768456705635176,4.115168377960513e-05,0.0004103620913359663 +100248,50.0,the Greater Atlanta and Macon Area,G1300670030327,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,29451.0,,6264.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006473803183724132,0.00430929445847299,0.0,0.010783097642197124,0.0023171288235723617,0.00030509675670040945,0.006003607053745785,0.00037093569009274036,0.0017862575981148086,0.0015278505425455622,0.00030509675670040945,0.004052967282063196,0.00037093569009274036,0.00021695291232222343,0.0007892782810267996,0.0019506397716825895,0.0015693046857925854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028792002565677016,0.0,0.0,0.000771470028271492,0.0004757747145461336,0.0010593900539282621,0.00018207085816504288,3.6357763255602144e-05,0.0004829839114568247,4.420365574940627e-05,2.5853839644616003e-05,5.2734623988562135e-05,0.00013032951415183219,0.00010485109563777629,0.0,0.0,0.0,0.0002276473153462872,2.9974361751984215e-05,0.0005898269506104481,3.6442736008759365e-05,0.00017549164405146185 +100249,35.0,Eastern Counties in South Carolina and Georgia,G1301790010502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,437176.0,,3972.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,1459415.2837631335,0.0,0.0,0.11704407378202118,0.003512831809888532,0.0,0.12055690559190972,0.09876163455072827,0.009460383527494415,0.007347778483713764,0.0006682062135944216,0.004318810599126076,0.09876163455072827,0.009460383527494415,0.003834946673825231,0.0006682062135944216,0.004318810599126076,0.0,0.003512831809888532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023470722863811334,0.0,0.0,0.013947912368723421,0.003865106170444687,0.014182619597361534,0.011769229996820582,0.001127375322408468,0.00045700306232384453,7.962882194966038e-05,0.0005146641758719907,0.0,0.00023470722863811334,0.0,0.0,0.0,0.0,0.011618568731251626,0.0011129434697816477,0.0008644112637806753,7.860947071819139e-05,0.0005080758131583022 +100250,50.0,the Greater Atlanta and Macon Area,G1300890021102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,72513.0,,18840.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.015098703458119485,0.012959655322578884,0.0,0.028058358780698373,0.01105520321223035,0.0010954508372924435,0.009991380882155792,0.0003682820511651627,0.005547970077883608,0.0068200672037875025,0.0010954508372924435,0.006178532063052861,0.0003682820511651627,0.0006362995828505013,0.004235136008442848,0.0038128488191029298,0.004911670495033107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008658887439354887,0.0,0.0,0.0017992801869097484,0.0013604279299817147,0.002665168930845237,0.0008127328169074577,0.0001305425325254699,0.0007362824467725665,4.388738408526174e-05,7.58264599034941e-05,0.0002829671397477257,0.00025475236745200493,0.0003281692367357581,0.0,0.0,0.0,0.001050096491947539,0.00010405318285503632,0.000949047594390334,3.498187075819113e-05,0.0005269829784558195 +100251,50.0,the Greater Atlanta and Macon Area,G1300570090702,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,23401.0,,3421.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.00227124569327409,0.0010071101202654145,0.0,0.0032783251239332065,0.0015972405597639414,0.0006740358231164461,0.001007079430659117,0.0,0.0,0.0005901304394985269,0.0006740358231164461,0.001007079430659117,0.0,0.0,0.0010071101202654145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.72885891037614e-05,0.0,0.0,0.00027065822071609125,0.00014934590953098972,0.00033794680981985266,7.032425211330982e-05,8.032303027534573e-05,0.00012001093832743573,0.0,0.0,6.72885891037614e-05,0.0,0.0,0.0,0.0,0.0,0.0001646518668165194,6.948311943301401e-05,0.00010381498721460437,0.0,0.0 +100252,50.0,the Greater Atlanta and Macon Area,G1301210008000,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,78982.0,,7864.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011093197854652908,0.0022909894847913067,0.0,0.013384187339444215,0.008459108190612758,0.0038643419356668516,0.0010607372131646068,0.0,0.0,0.006168118705821452,0.0038643419356668516,0.0010607372131646068,0.0,0.0,0.0022909894847913067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001530707098662132,0.0,0.0,0.0013219560813456132,0.00041953136474242984,0.0014750267912118262,0.0007350434149339734,0.00046050655448383424,0.00012640611192780575,0.0,0.0,0.0001530707098662132,0.0,0.0,0.0,0.0,0.0,0.0009322501915481515,0.0004258762778008657,0.00011690032186280923,0.0,0.0 +100253,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,2625.0,,743.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0006347767909491845,0.000589205193318826,0.0,0.0012239819842680105,0.000824589525180895,0.00017624877413846413,0.0001224891762079143,0.0,0.00010073721581447643,0.0003361215476765453,0.00017624877413846413,0.0001224891762079143,0.0,0.0,0.0004884679775043496,0.0,0.00010073721581447643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.936723384459711e-05,0.0,0.0,7.564545285093107e-05,6.0376659306166674e-05,0.00011501268669552817,4.005512969201092e-05,2.1003317267144507e-05,1.4596861976837644e-05,0.0,0.0,3.2636564161452916e-05,0.0,6.730669683144201e-06,0.0,0.0,0.0,7.748337633315873e-05,1.6561391671610956e-05,1.1509817487403016e-05,0.0,9.465872855946572e-06 +100254,50.0,the Greater Atlanta and Macon Area,G1300670030506,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,106101.0,,7439.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01026195986421956,0.0021896113405222,0.0,0.01245154051513546,0.00525734438604057,0.0028968533176527613,0.004297373501048428,0.0,0.0,0.0030677330455183703,0.0028968533176527613,0.004297373501048428,0.0,0.0,0.0021896113405222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001462966268777837,0.0,0.0,0.0012228963750624277,0.000450516221215524,0.0013691930019402113,0.00036557535506488226,0.00034521197394242063,0.0005121090460551247,0.0,0.0,0.0001462966268777837,0.0,0.0,0.0,0.0,0.0,0.0005781067116479679,0.00031854301765762635,0.00047254664731698074,0.0,0.0 +100255,50.0,the Greater Atlanta and Macon Area,G1301210010001,ComStock 90.1-2007,gen2_t8_halogen,500001_1mil,NaturalGas,1710810.0,,2420.0,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,4319970.345818221,0.36072062060333393,0.028287879409069374,0.2711607066523948,0.0012670696248875152,0.0,0.6614362762896857,0.4169633566840943,0.03422398240589256,0.20898181298091978,0.0,0.0012670696248875152,0.027954856671691033,0.03422398240589256,0.20898181298091978,0.0,0.0,0.0,0.0,0.0012670696248875152,0.028287879409069374,0.0,0.0,0.36072062060333393,0.0,0.0,0.0,8.465728412683843e-05,0.0,0.0,0.0323136982261433,0.011129082968423814,0.03239835551027014,0.0033313263326242145,0.004078405950529275,0.024903959437141108,0.0,0.0,0.0,0.0,8.465728412683843e-05,0.0,0.0,0.0,0.02042362590147751,0.001676353095090482,0.010236310457776152,0.0,6.206338181758793e-05 +100256,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,87172.0,,15876.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.0077668948722163225,0.004673075661344905,0.0,0.012439970533561228,0.0060155004200190204,0.0025038115297980816,0.003920658583744126,0.0,0.0,0.0013424247586741153,0.0025038115297980816,0.003920658583744126,0.0,0.0,0.004673075661344905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003122277665113917,0.0,0.0,0.0009255655082857729,0.0005704101246028412,0.0012377932747971647,0.00015997410477928349,0.000298374270459006,0.00046721713304748354,0.0,0.0,0.0003122277665113917,0.0,0.0,0.0,0.0,0.0,0.0005985501287443556,0.00024913250916330337,0.0003901106368895058,0.0,0.0 +100257,85.0,Rural Climate Zone 3A,G1302850960700,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4263.0,,310.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00026218130660127486,9.127088912936807e-05,0.0,0.00035345219573064293,0.00016511008188164098,0.00010996085936466908,7.84119440906306e-05,0.0,0.0,7.38391927522729e-05,0.00010996085936466908,7.84119440906306e-05,0.0,0.0,9.127088912936807e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0981382734970935e-06,0.0,0.0,3.124476504711284e-05,1.757713453977073e-05,3.734290332060993e-05,8.799590858404953e-06,1.3104295114573958e-05,9.344536426942912e-06,0.0,0.0,6.0981382734970935e-06,0.0,0.0,0.0,0.0,0.0,1.7444197261863458e-05,1.161757598313323e-05,8.284372491461177e-06,0.0,0.0 +100258,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,17559.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001620626039762791,0.0,0.0,0.001620626039762791,0.000451843073521078,0.0005292729502101821,0.0006394793264252329,0.0,0.0,0.000451843073521078,0.0005292729502101821,0.0006394793264252329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019312544431093393,7.235728443904705e-05,0.00019312544431093393,5.384486747192379e-05,6.307196796989729e-05,7.620495167509857e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.384486747192379e-05,6.307196796989729e-05,7.620495167509857e-05,0.0,0.0 +100259,50.0,the Greater Atlanta and Macon Area,G1300670031308,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,38313.0,,,,9.325022323477118,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,349688.3371303919,0.0,0.0,0.010586831220138598,0.0,0.0,0.010586831220138596,0.004171732260193867,0.0017375441632023567,0.004402414912717299,0.0,0.0002751398840250743,0.004171732260193867,0.0017375441632023567,0.004402414912717299,0.0,0.0002751398840250743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00126160975479636,0.00037862679173829354,0.00126160975479636,0.0004971363011670218,0.00020705937594581525,0.0005246262534137574,0.0,3.2787824269765645e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004971363011670218,0.00020705937594581527,0.0005246262534137575,0.0,3.278782426976565e-05 +100260,50.0,the Greater Atlanta and Macon Area,G1301210007604,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,33229.0,,5314.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004892670518231377,0.0015479601217455838,0.0,0.00644063063997696,0.004557588969234098,0.0012748103420018818,0.0006082313287409803,0.0,0.0,0.0030096288474885146,0.0012748103420018818,0.0006082313287409803,0.0,0.0,0.0015479601217455838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010342523670005653,0.0,0.0,0.0005830502794024442,0.0002475316173899553,0.0006864755161025008,0.00035865176980283447,0.00015191673408615426,7.248177551345545e-05,0.0,0.0,0.00010342523670005653,0.0,0.0,0.0,0.0,0.0,0.0004857712566869437,0.0001358758383110257,6.482842110453145e-05,0.0,0.0 +100261,50.0,the Greater Atlanta and Macon Area,G1300210013407,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,15077.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003620336738790704,0.0,0.0,0.003620336738790703,0.002083225773345675,0.000844770051173286,0.0006040924665919014,0.0,8.816574060610171e-05,0.002083225773345675,0.000844770051173286,0.0006040924665919014,0.0,8.816574060610171e-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.000431428728544402,0.00014148793040386355,0.000431428728544402,0.00024825410217660187,0.00010066966014101207,7.198856448697397e-05,0.0,1.0506545693197461e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002482541021766019,0.0001006696601410121,7.198856448697399e-05,0.0,1.0506545693197464e-05 +100262,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6823.0,,,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,26178.17466051906,0.0,0.0,0.0016383444237019406,0.0,0.0,0.0016383444237019406,0.0006844837422665083,0.0002971665159453315,0.0006133556588507038,0.0,4.34212137131364e-05,0.0006844837422665083,0.0002971665159453315,0.0006133556588507038,0.0,4.34212137131364e-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.0001952336974092231,6.633113827420587e-05,0.0001952336974092231,8.15666656448448e-05,3.5411917552190345e-05,7.309067090649698e-05,0.0,5.174299113526283e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.15666656448448e-05,3.5411917552190345e-05,7.309067090649698e-05,0.0,5.174299113526283e-06 +100263,50.0,the Greater Atlanta and Macon Area,G1301170130613,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5569.0,,738.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.000983304399686626,0.0005853179608530785,0.0,0.0015686223605397044,0.0010991770099953958,0.0002758280909205903,0.00014978251054188576,0.0,4.375204200809363e-05,0.0005138590491423171,0.0002758280909205903,0.00014978251054188576,0.0,4.375204200809363e-05,0.0005853179608530785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9106365844654756e-05,0.0,0.0,0.00011718107719397149,6.536595074971607e-05,0.00015628744303862623,6.123694445337245e-05,3.287062767616241e-05,1.7849687172872605e-05,0.0,5.213961631391279e-06,3.9106365844654756e-05,0.0,0.0,0.0,0.0,0.0,0.00010951492765914494,2.7481736925752323e-05,1.4923365988766854e-05,0.0,4.3591720640848515e-06 +100264,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,40259.0,,6485.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002839694685035657,0.0011027752892430241,0.0,0.0039424522439172605,0.0016515831662779186,0.0006183995456086016,0.0011879519455049578,0.0,0.0004844998561643628,0.0015364953903003558,0.0006183995456086016,0.00020028216260091646,0.0,0.0004844998561643628,0.00011508777597756274,0.0009876697829040413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.368067274086776e-05,0.0,0.0,0.0003384003596543893,0.00015777493272198318,0.00041208103239525717,0.00018310087891664411,7.369335504511607e-05,2.3867198193406477e-05,0.0,5.7736814609864146e-05,7.6894584427058e-06,6.599002966429311e-05,0.0,0.0,0.0,0.0,0.00017263014340795037,6.463761826926991e-05,0.00012416953557140183,0.0,5.064188189764521e-05 +100265,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010200,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,155378.0,,12205.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.013302072264069997,0.00359261738202798,0.0,0.016894689646097975,0.011057618597093801,0.00191641246526005,0.003920658583744126,0.0,0.0,0.00746500121506582,0.00191641246526005,0.003920658583744126,0.0,0.0,0.00359261738202798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002400384980053529,0.0,0.0,0.0015851809532143794,0.0006765206403447078,0.0018252194512197325,0.0008895890434911765,0.00022837498384656644,0.00046721692587663643,0.0,0.0,0.0002400384980053529,0.0,0.0,0.0,0.0,0.0,0.0011946109085375274,0.00020703980845013497,0.0004235687342320706,0.0,0.0 +100266,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,15495.0,,269.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.000805508049674419,4.570887174089612e-05,0.0,0.0008512169214153152,0.0005682758138741123,0.0001448925135246715,3.469831729904334e-05,0.0,0.0001033502767174878,0.0005225669421332162,0.0001448925135246715,3.469831729904334e-05,0.0,0.0001033502767174878,4.570887174089612e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.053936439812449e-06,0.0,0.0,9.59911089004461e-05,2.892470765311572e-05,9.904504534025855e-05,6.227346861444492e-05,1.7266609626344245e-05,4.134943103127226e-06,0.0,1.2316087556529688e-05,3.053936439812449e-06,0.0,0.0,0.0,0.0,0.0,6.612286754984745e-05,1.6859257858330577e-05,4.037392025055427e-06,0.0,1.202552790702508e-05 +100267,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970400,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,33750.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006221090092607331,0.0,0.0,0.006221090092607331,0.0023980858361024953,0.0015397589271683438,0.0022832453293364914,0.0,0.0,0.0023980858361024953,0.0015397589271683438,0.0022832453293364914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007413550242341943,0.0002438238155528343,0.0007413550242341943,0.00028577515462315596,0.00018349003145319912,0.0002720898381578392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028577515462315596,0.00018349003145319912,0.0002720898381578392,0.0,0.0 +100268,50.0,the Greater Atlanta and Macon Area,G1301350050426,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,202067.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01613712889808429,0.0,0.0,0.016137128898084288,0.010961346059493627,0.004094816808200512,0.0010809660303901496,0.0,0.0,0.010961346059493627,0.004094816808200512,0.0010809660303901496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019230287977284994,0.0004208358259085468,0.0019230287977284994,0.0013062412940616985,0.0004879709825288123,0.00012881652113798836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013062412940616987,0.0004879709825288124,0.0001288165211379884,0.0,0.0 +100269,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,70209.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006392890508661872,0.0,0.0,0.006392890508661872,0.0028089889748224386,0.001462144912841454,0.0021217873106042775,0.0,0.0,0.0028089889748224386,0.001462144912841454,0.0021217873106042775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007618299758280112,0.0002268065818105447,0.0007618299758280112,0.00033474247680147684,0.0001742413423314224,0.0002528498139237149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033474247680147684,0.0001742413423314224,0.0002528498139237149,0.0,0.0 +100270,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen3_t5_cfl,200001_500000,NaturalGas,344670.0,,2972.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02915208771179417,0.0008749299859412085,0.0,0.030027017697735376,0.010522882896962628,0.007467763279632614,0.012036402210746434,0.0,0.0,0.00964795291102142,0.007467763279632614,0.012036402210746434,0.0,0.0,0.0008749299859412085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.845671059201898e-05,0.0,0.0,0.003473999330327536,0.0011551488835644611,0.0035324560409195553,0.0011497283585065478,0.0008899192705842609,0.0014343553584592488,0.0,0.0,5.845671059201898e-05,0.0,0.0,0.0,0.0,0.0,0.0012379391663684327,0.0008785269910865969,0.001415993493869204,0.0,0.0 +100271,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,62283.0,,1255.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0030014665026322188,0.00021342036041317557,0.0,0.0032148868630453944,0.001336160036615179,0.0007939833147513846,0.0005771232642227187,0.0,0.0005076025170946917,0.001336160036615179,0.0007939833147513846,0.00036370290380954314,0.0,0.0005076025170946917,0.0,0.00021342036041317557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.425946386961225e-05,0.0,0.0,0.00035768000899823524,9.523805233168488e-05,0.0003719394728678475,0.00015922807517607693,9.461773400291801e-05,4.334189896612083e-05,0.0,6.0490187954032734e-05,0.0,1.4259463869612252e-05,0.0,0.0,0.0,0.0,0.00015458418316312495,9.185820470047638e-05,6.676904408120644e-05,0.0,5.8725989646723794e-05 +100272,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,71177.0,,5633.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006734588585180495,0.0016582514970837744,0.0,0.008392840082264269,0.0040006050081496415,0.0023242773329565205,0.0020679577411581067,0.0,0.0,0.0023423535110658673,0.0023242773329565205,0.0020679577411581067,0.0,0.0,0.0016582514970837744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011079465985068917,0.0,0.0,0.0008025489525599815,0.00035537032396007684,0.0009133436124106705,0.00027913410493519026,0.00027697999891602423,0.0002464348487087669,0.0,0.0,0.00011079465985068917,0.0,0.0,0.0,0.0,0.0,0.00043536240344827783,0.0002529374841792564,0.00022504372478313633,0.0,0.0 +100273,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,176978.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,240343.828889517,0.0,0.0,0.015606198379912388,0.0,0.0,0.015606198379912388,0.010086647142885253,0.004799453941556916,0.0007200972954702201,0.0,0.0,0.010086647142885253,0.004799453941556916,0.0007200972954702201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018597594180923673,0.0006236130511779174,0.0018597594180923673,0.001202005547046021,0.0005719413179445383,8.581255310180814e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001202005547046021,0.0005719413179445383,8.581255310180814e-05,0.0,0.0 +100274,50.0,the Greater Atlanta and Macon Area,G1301170130103,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,84898.0,,1104.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007264393030328229,0.0003216867916452295,0.0,0.00758604944837402,0.004246472190193207,0.0027889039003743724,0.0005507037314058783,0.0,0.0,0.003924785398547978,0.0027889039003743724,0.0005507037314058783,0.0,0.0,0.0003216867916452295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1492270623710314e-05,0.0,0.0,0.0008656832770418762,0.00027140657780950946,0.0008871755476655865,0.0004677088741366743,0.00033234813393926056,6.562626896594133e-05,0.0,0.0,2.1492270623710314e-05,0.0,0.0,0.0,0.0,0.0,0.0004966176817880921,0.00032615755566049596,6.44038623576612e-05,0.0,0.0 +100275,50.0,the Greater Atlanta and Macon Area,G1302970110800,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,51832.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0041854516289227634,0.0,0.0,0.0041854516289227634,0.0033153998730283624,0.0007052142317457219,0.00016483752414867917,0.0,0.0,0.0033153998730283624,0.0007052142317457219,0.00016483752414867917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000498771538395385,0.00015907973585473247,0.000498771538395385,0.0003950892858584594,8.40389086892071e-05,1.9643343847718447e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003950892858584594,8.40389086892071e-05,1.9643343847718447e-05,0.0,0.0 +100276,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4203.0,,869.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,9713.774621698478,0.0,0.0,0.0003745052656508671,0.0002558899373102458,0.0,0.0006304258925674105,0.0003941773032876946,0.00014384218471733294,9.240640456238307e-05,0.0,0.0,0.00013828736597744877,0.00014384218471733294,9.240640456238307e-05,0.0,0.0,0.0002558899373102458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7097595216148063e-05,0.0,0.0,4.463053413627229e-05,3.0755535192240825e-05,6.172812935242037e-05,1.647997925248242e-05,1.714195800186087e-05,1.1012254223085785e-05,0.0,0.0,1.7097595216148063e-05,0.0,0.0,0.0,0.0,0.0,3.8595856946864346e-05,1.4084302515567827e-05,9.047969889988206e-06,0.0,0.0 +100277,81.0,the Columbus-Albany Area,G1303210950200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,299875.0,,21341.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,555209.9800789288,0.0,0.0,0.06015849148937954,0.014362004353312982,0.0,0.07452049584269252,0.04374521326561378,0.007503305119154346,0.018588042499964937,0.0010341619831230797,0.0036496326448298396,0.036635112824756594,0.007503305119154346,0.013410777404049156,0.0010341619831230797,0.001574993828289828,0.007110100440857193,0.00517726509591578,0.0020746388165400107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009595869342309408,0.0,0.0,0.007168967527977464,0.0032992140956953856,0.008128554462208405,0.004365733377321087,0.00089415391609713,0.0015981356140144444,0.00012323902232467035,0.0001876888753729477,0.000475056218914344,0.0003459152231731966,0.00013861549214340025,0.0,0.0,0.0,0.004771644961153757,0.0008184463028313842,0.002027548449566922,0.00011280442927146356,0.0003980950124537064 +100278,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,316595.0,,11889.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,140298.9118897092,0.0,0.0,0.015168324194855174,0.0020217931127286207,0.0,0.017190117307583797,0.01007985231019138,0.002045321302333031,0.003171004218530763,0.0,0.0018939394765286202,0.01007985231019138,0.002045321302333031,0.0011492111058021425,0.0,0.0018939394765286202,0.0,0.0020217931127286207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013508496382671256,0.0,0.0,0.0018075793605724438,0.0006676150711840554,0.0019426643243991562,0.0012011961743077953,0.00024373691677095894,0.00013694922715939625,0.0,0.0002256970423342932,0.0,0.00013508496382671256,0.0,0.0,0.0,0.0,0.001139129485147974,0.00023114285114407334,0.0003583568778289392,0.0,0.00021403511027816925 +100279,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,282397.0,,9697.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013202168956262679,0.0016490299942334306,0.0,0.01485119895049611,0.007339447649108018,0.003182883560682199,0.0020249491170613904,0.0,0.002303883162921661,0.006786774553283552,0.003182883560682199,0.0009286099490138455,0.0,0.002303883162921661,0.0005526730958244658,0.001096339168047545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011017810930305077,0.0,0.0,0.0015732770563224962,0.0005111546563408456,0.0016834551656255468,0.0008087668569071996,0.00037929810590644906,0.00011066065976706456,0.0,0.0002745493208487488,3.6926239652123475e-05,7.325068501650263e-05,0.0,0.0,0.0,0.0,0.0008319618570133305,0.00036079523206684184,0.0002295377674630109,0.0,0.0002611562894380747 +100280,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,27039.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0023843275558635183,0.0,0.0,0.0023843275558635183,0.001294370940039794,0.0009220209845323945,0.00016793563129132984,0.0,0.0,0.001294370940039794,0.0009220209845323945,0.00016793563129132984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002841374174815173,6.565320025603535e-05,0.0002841374174815173,0.00015424861205063514,0.00010987612031934955,2.00126851115326e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015424861205063514,0.00010987612031934955,2.00126851115326e-05,0.0,0.0 +100281,85.0,Rural Climate Zone 3A,G1301050000500,ComStock 90.1-2004,gen5_led,10001_25000,Electricity,33368.0,,,7844.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00294241207193277,0.0,0.0007393541575137549,0.0036817358558470874,0.002787780077195176,0.0006238737324514224,0.00027011241979992695,0.0,0.0,0.002048425919681421,0.0006238737324514224,0.00027011241979992695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007393541575137549,0.0,0.0,0.0,0.0,5.9627118465550924e-05,0.0003506401175105593,0.00013927710979564766,0.0004102672359761103,0.00024410595376498994,7.43455211271021e-05,3.218864261846733e-05,0.0,0.0,0.0,0.0,0.0,5.9627118465550924e-05,0.0,0.0,0.00031065097322604743,6.952018336797677e-05,3.0099464006398125e-05,0.0,0.0 +100282,50.0,the Greater Atlanta and Macon Area,G1300890023214,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7555.0,,715.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015586148046172485,0.0005675359399991277,0.0,0.002126150744616376,0.0014954266002804176,0.00020097818918651705,0.0003875653475423946,0.0,4.2097900533307484e-05,0.0009278906602812899,0.00020097818918651705,0.0003875653475423946,0.0,4.2097900533307484e-05,0.0005675359399991277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.791986489216455e-05,0.0,0.0,0.00018573930904379506,9.766286238407923e-05,0.0002236591739359596,0.00011057624346841797,2.3950465427244467e-05,4.618595925599489e-05,0.0,5.016784733525694e-06,3.791986489216455e-05,0.0,0.0,0.0,0.0,0.0,0.00015731051946691894,2.11417821085456e-05,4.076970821425707e-05,0.0,4.428463824382598e-06 +100283,50.0,the Greater Atlanta and Macon Area,G1300570090902,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,45861.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.011879299708250465,0.0,0.0,0.011879299708250465,0.005894119610031744,0.0023014070338699686,0.0035483815846375066,0.0,0.00013539147971124626,0.005894119610031744,0.0023014070338699686,0.0035483815846375066,0.0,0.00013539147971124626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001415634797312635,0.000494368007418844,0.001415634797312635,0.000702391641292513,0.00027425454024563906,0.000422854256456503,0.0,1.6134359317979987e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000702391641292513,0.00027425454024563906,0.000422854256456503,0.0,1.6134359317979987e-05 +100284,50.0,the Greater Atlanta and Macon Area,G1300890021704,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,4864.0,,113.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,3306.3363735822095,0.0,0.0,0.00034440486402150574,3.397041606909118e-05,0.0,0.0003783439420683929,8.7934490304308e-05,0.00010980842980267114,0.00010858624693671677,0.0,7.2014775024697e-05,8.7934490304308e-05,0.00010980842980267114,7.461583086762557e-05,0.0,7.2014775024697e-05,0.0,3.397041606909118e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.269228138333673e-06,0.0,0.0,4.104042636324089e-05,1.949108193133618e-05,4.330965450157456e-05,1.0478565639240575e-05,1.3085136849571979e-05,8.891469988250822e-06,0.0,8.581519543469295e-06,0.0,2.269228138333673e-06,0.0,0.0,0.0,0.0,1.006600600773778e-05,1.2569951907025368e-05,1.2430046620388957e-05,0.0,8.243649966422457e-06 +100285,50.0,the Greater Atlanta and Macon Area,G1300570090804,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,25301.0,,2373.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006075330808594566,0.0018825784124541153,0.0,0.00795790922104868,0.00415694023321133,0.0018135180058817936,0.0018338639460216634,0.0,0.00015350432886015458,0.0022743618207572147,0.0018135180058817936,0.0018338639460216634,0.0,0.00015350432886015458,0.0018825784124541153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012578413228910026,0.0,0.0,0.0007239855241840987,0.00033789672142955603,0.0008497696564731989,0.0002710313375291131,0.00021611346368962008,0.00021853805036666876,0.0,1.8292816555294152e-05,0.00012578413228910026,0.0,0.0,0.0,0.0,0.0,0.00044389067226505906,0.00019365294703161396,0.00019582554816126134,0.0,1.639165730335548e-05 +100286,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,43800.0,,2169.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.010517196910837811,0.0017207206691462907,0.0,0.012237917579984103,0.006319482090273001,0.003446900005159376,0.0022037299797838467,0.0,0.00026772279769413803,0.0048665669258945886,0.003446900005159376,0.0022037299797838467,0.0,0.0,0.0014529151643784132,0.0,0.00026772279769413803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011496777930793359,0.0,0.0,0.0012533114375020045,0.0005411400336094114,0.001368279216809938,0.0005799381756661224,0.0004107595623640202,0.00026261369947186197,0.0,0.0,9.707469257882572e-05,0.0,1.7887560760383606e-05,0.0,0.0,0.0,0.0007065594247231729,0.0003853859620034938,0.00024639142330317435,0.0,2.993315958837962e-05 +100287,35.0,Eastern Counties in South Carolina and Georgia,G1301790010205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,24982.0,,505.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00803570203900108,0.0003918513547500854,0.0,0.008427553393751168,0.00285325359135607,0.0007223293751511584,0.003942124896156865,0.0004267832130356895,0.0004830623180513848,0.00285325359135607,0.0007223293751511584,0.003550273541406779,0.0004267832130356895,0.0004830623180513848,0.0,0.0003918513547500854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.618320783262974e-05,0.0,0.0,0.000957595705652647,0.00027501147777859704,0.0009837789134852766,0.000340015517369807,8.607829214602067e-05,0.0004230777448744188,5.085875136535287e-05,5.756539989704775e-05,0.0,2.618320783262974e-05,0.0,0.0,0.0,0.0,0.0003330706537063937,8.432013120102066e-05,0.0004601785555034321,4.981995438027393e-05,5.638961869415621e-05 +100288,50.0,the Greater Atlanta and Macon Area,G1300890023108,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,7921.0,,1134.0,,8.72605822017302,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0016874724255030893,0.0008996048410624467,0.0,0.002587077266565536,0.0016601790911691177,0.0002854221114743499,0.0006026864463383332,0.0,3.862420343625656e-05,0.0007991984535429277,0.0002854221114743499,0.0006026864463383332,0.0,0.0,0.0008609806376261901,0.0,3.862420343625656e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0106444162270396e-05,0.0,0.0,0.00020108939996172807,0.00012934749051815708,0.0002611958441239985,9.523731175955392e-05,3.4012621637402516e-05,7.18197548165031e-05,0.0,0.0,5.752579605858553e-05,0.0,2.5806481036848643e-06,0.0,0.0,0.0,0.00016761458373085108,2.881671541150636e-05,6.084827736993533e-05,0.0,3.899567110163277e-06 +100289,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,5101.0,,1.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,3204.5843851935597,0.0,0.0,0.000332530166644507,3.9485679269077367e-07,0.0,0.00033292502343719774,0.00022600995341631134,9.209275349526354e-05,1.4791942926185138e-05,0.0,0.0,0.00022561509662362054,9.209275349526354e-05,1.4791942926185138e-05,0.0,0.0,3.9485679269077367e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.583246989706453e-08,0.0,0.0,3.962674204538361e-05,1.229542492408584e-05,3.965257451528068e-05,2.6885955417711862e-05,1.0974450299744531e-05,1.7627167862716312e-06,0.0,0.0,2.583246989706453e-08,0.0,0.0,0.0,0.0,0.0,2.6918602953033807e-05,1.0968580050208104e-05,1.7617739064813148e-06,0.0,0.0 +100290,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,7681.0,,1294.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.000602928005324669,0.0003808887037607892,0.0,0.000983816709085458,0.0004907574943065652,0.0002782012810886757,0.0002148579336902172,0.0,0.0,0.00010986879054577598,0.0002782012810886757,0.0002148579336902172,0.0,0.0,0.0003808887037607892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.544831257942139e-05,0.0,0.0,7.185063031394093e-05,5.112878419808376e-05,9.729894289336232e-05,1.3093009087035964e-05,3.3153108205022625e-05,2.5604513021882338e-05,0.0,0.0,2.544831257942139e-05,0.0,0.0,0.0,0.0,0.0,4.85356519888872e-05,2.7513956930727437e-05,2.1249333973747687e-05,0.0,0.0 +100291,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,372856.0,,27055.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,280597.8237794184,0.0,0.0,0.01828610186840294,0.004600940136696602,0.0,0.02288705973546096,0.01610400855807562,0.005162123806002693,0.001242703301570081,0.0,0.00037822406981256635,0.011881292491191586,0.005162123806002693,0.001242703301570081,0.0,0.0,0.004222716066884034,0.0,0.00037822406981256635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003074080994846088,0.0,0.0,0.0021791204541299135,0.000997947223587689,0.0024865285536145223,0.0014158713363504286,0.0006151606095910848,0.00014809062108230765,0.0,0.0,0.00028213736371626757,0.0,2.5270735768341104e-05,0.0,0.0,0.0,0.0017495946430054253,0.0005608308096051049,0.0001350115427119459,0.0,4.109155829204625e-05 +100292,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,234150.0,,27277.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.019686799337456682,0.008029260316455383,0.0,0.027716090343518362,0.01128419996038974,0.00615351157953979,0.010278378803588829,0.0,0.0,0.0032549396439343573,0.00615351157953979,0.010278378803588829,0.0,0.0,0.008029260316455383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005364690391036426,0.0,0.0,0.0023460394031645055,0.0011616573834632572,0.002882508442268148,0.00038788512691666227,0.000733302574276882,0.0012248553591944844,0.0,0.0,0.0005364690391036426,0.0,0.0,0.0,0.0,0.0,0.001173571064566543,0.0006399729852867334,0.0010689643924148712,0.0,0.0 +100293,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5387.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009767705408612207,0.0,0.0,0.0009767705408612207,0.0004563776328934983,0.00027880554557520537,0.0001894819059367533,0.0,5.202274938202437e-05,0.0004563776328934983,0.00027880554557520537,0.0001894819059367533,0.0,5.202274938202437e-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.0001164012562431693,3.546362715046961e-05,0.0001164012562431693,5.438629398389569e-05,3.322511725620015e-05,2.2580463848696094e-05,0.0,6.199524993814859e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.438629398389569e-05,3.322511725620015e-05,2.2580463848696094e-05,0.0,6.199524993814859e-06 +100294,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,5806.0,,303.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0010957033128983446,0.000240512170433906,0.0,0.0013362154833322507,0.0006343632555804879,0.0002152038058696779,0.000385249549477694,0.0,0.00010131616533065158,0.0004951672504772335,0.0002152038058696779,0.000385249549477694,0.0,0.0,0.00013919600510325437,0.0,0.00010131616533065158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.606792145506299e-05,0.0,0.0,0.00013057106245500667,5.70486038164605e-05,0.00014663898391006967,5.90073181550517e-05,2.5645071294378576e-05,4.5908817098084325e-05,0.0,0.0,9.29928191501754e-06,0.0,6.7686395400454464e-06,0.0,0.0,0.0,6.96163039483928e-05,2.3616899983535605e-05,4.227806307582969e-05,0.0,1.11186404611188e-05 +100295,85.0,Rural Climate Zone 3A,G1300310110401,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,8159.0,,40.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016769686271381975,3.2090344610851275e-05,0.0,0.001709058971749049,0.0011793201644487844,0.00030932445578500976,0.000188324006904403,0.0,3.2090344610851275e-05,0.0011793201644487844,0.00030932445578500976,0.000188324006904403,0.0,0.0,0.0,0.0,3.2090344610851275e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.143980102178559e-06,0.0,0.0,0.00019983882206699998,6.427782540580165e-05,0.00020198280216917854,0.00014053569559347763,3.6861175504565984e-05,2.2441950968956346e-05,0.0,0.0,0.0,0.0,2.143980102178559e-06,0.0,0.0,0.0,0.00013937634417974815,3.655708866205611e-05,2.2256815744251812e-05,0.0,3.7925535831223986e-06 +100296,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7598.0,,139.0,886.0,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0008547514799883742,5.1845391007046764e-05,0.00010651941694945561,0.0010131162879448764,0.000441809527849288,0.00018126512640580328,0.00035137070676524674,0.0,3.8670926924538624e-05,0.0003352901108998324,0.00018126512640580328,0.00029952531575819994,0.0,3.8670926924538624e-05,0.0,5.1845391007046764e-05,0.0,0.0,0.0,0.0,0.0,0.00010651941694945561,0.0,0.0,3.4646318010986055e-06,0.0,8.591004106291204e-06,0.00010185790256781814,3.68744464765941e-05,0.00011391353847520794,3.9955411891714515e-05,2.1600764686171324e-05,3.569343972298084e-05,0.0,4.608286266951472e-06,0.0,3.4646318010986055e-06,0.0,8.591004106291204e-06,0.0,0.0,4.967651517227573e-05,2.0381225923163116e-05,3.950768633416912e-05,0.0,4.348111045599998e-06 +100297,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,321705.0,,19682.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,280597.8237794184,0.0,0.0,0.016559820689462337,0.003347173089600408,0.0,0.019907011509424165,0.011586188355716225,0.007073953217204146,0.000919053284208437,0.0,0.0003278166522953562,0.008566814188049754,0.007073953217204146,0.000919053284208437,0.0,0.0,0.0030193741676664714,0.0,0.0003278166522953562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022363905974295343,0.0,0.0,0.001973402891459832,0.0006576142272347922,0.0021970419512027856,0.0010208912406916523,0.0008429897880334772,0.00010952186273470274,0.0,0.0,0.0002017374010226955,0.0,2.190284336211856e-05,0.0,0.0,0.0,0.0012787123702618533,0.0007807184906526929,0.00010143152928005922,0.0,3.617956100818008e-05 +100298,50.0,the Greater Atlanta and Macon Area,G1301210011000,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,9893.0,,1452.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001186951213169953,0.0004274448365144043,0.0,0.001614426739290655,0.0005852201024908943,0.0004964350714716402,0.0005327408757218226,0.0,0.0,0.00015777526597649002,0.0004964350714716402,0.0005327408757218226,0.0,0.0,0.0004274448365144043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.856011250672835e-05,0.0,0.0,0.00014144799178918567,7.278696980492187e-05,0.00017000810429591398,1.8801947610616493e-05,5.915975579640777e-05,6.348628838216138e-05,0.0,0.0,2.856011250672835e-05,0.0,0.0,0.0,0.0,0.0,6.162692787413332e-05,5.227737087901728e-05,5.610057375672979e-05,0.0,0.0 +100299,50.0,the Greater Atlanta and Macon Area,G1300770170602,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,16029.0,,1992.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0008250823686821573,0.00033877401565294885,0.0,0.001163874114696526,0.00040948269699611953,0.00010386445719866933,0.0004609716665599529,0.0,0.0001895552939417845,0.0003865928004028313,0.00010386445719866933,0.00023274645436103318,0.0,0.00010187865671962341,2.288989659328817e-05,0.00022822521219891968,8.767663722216111e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2635484474958875e-05,0.0,0.0,9.832378403972335e-05,4.9722294129854176e-05,0.00012095926851468223,4.606966341897771e-05,1.2377366002035013e-05,2.773603337465238e-05,0.0,1.2140721244058242e-05,1.5294086176360452e-06,1.5249068726732124e-05,5.858191800317771e-06,0.0,0.0,0.0,4.255677385778509e-05,1.0794439543576751e-05,4.7907926543778076e-05,0.0,1.970012856954234e-05 +100300,50.0,the Greater Atlanta and Macon Area,G1301350050435,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,144966.0,,9190.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0068488662789765765,0.0015627895162862939,0.0,0.00841165579526287,0.0029808106315778573,0.001556300204006555,0.002700192201382681,0.0,0.0011743527582957776,0.0024159213167349747,0.001556300204006555,0.0017022919999392697,0.0,0.0011743527582957776,0.0005648893148428823,0.0009979002014434118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010441676139451642,0.0,0.0,0.0008161655051638353,0.00030468523593371176,0.0009205822665583518,0.0002879004438970771,0.0001854611391798695,0.0002028586854340511,0.0,0.00013994523665283764,3.774271083058353e-05,6.66740505639329e-05,0.0,0.0,0.0,0.0,0.0003262236917664344,0.00017032346592883938,0.00029551245526379416,0.0,0.00012852265359928393 +100301,35.0,Eastern Counties in South Carolina and Georgia,G1301270000101,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,33938.0,,226.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0017311924890539556,3.851034500435469e-05,0.0,0.0017697028340583104,0.0008616069132074659,0.0006902075093598156,7.836819747663339e-05,0.0,0.0001395202140143955,0.0008230965682031112,0.0006902075093598156,7.836819747663339e-05,0.0,0.0001395202140143955,3.851034500435469e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5734123283767014e-06,0.0,0.0,0.00020630303070417037,6.771672834914541e-05,0.00020887644303254705,9.808690694776425e-05,8.22507617702985e-05,9.338994220733644e-06,0.0,1.662636776537399e-05,2.5734123283767014e-06,0.0,0.0,0.0,0.0,0.0,0.00010169469351547533,8.146457514498248e-05,9.249728271188413e-06,0.0,1.6467446100900818e-05 +100302,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301090970300,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,20403.0,,828.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0024134254641248842,0.00024107525873743617,0.0,0.002654470349262883,0.0018402452691350696,0.0006088084271302976,0.00020541665299751556,0.0,0.0,0.0015991700103976335,0.0006088084271302976,0.00020541665299751556,0.0,0.0,0.00024107525873743617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6107028836768e-05,0.0,0.0,0.00028760173738532843,8.955369704251315e-05,0.00030370876622209643,0.00019056899838074885,7.255014251744977e-05,2.4478976943001033e-05,0.0,0.0,1.6107028836768e-05,0.0,0.0,0.0,0.0,0.0,0.00021054995788152682,6.965625226166215e-05,2.3502556078907452e-05,0.0,0.0 +100303,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,61898.0,,1254.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005064585091049052,0.00036527290683840334,0.0,0.005429857997887456,0.0035977528534017035,0.0014328138062770668,0.00039926096460924775,0.0,0.0,0.0032324799465633003,0.0014328138062770668,0.00039926096460924775,0.0,0.0,0.00036527290683840334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4406035356240444e-05,0.0,0.0,0.0006035370563816727,0.0001563047530047192,0.0006279430917379131,0.00038520854061857557,0.0001707457198244763,4.757917637404322e-05,0.0,0.0,2.440603535624044e-05,0.0,0.0,0.0,0.0,0.0,0.0004160668752208481,0.00016569964292775913,4.6173060994327136e-05,0.0,0.0 +100304,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,26685.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006407399709657886,0.0,0.0,0.0064073997096578865,0.004006578773153269,0.0012919671988817214,0.0009617178534406667,0.0,0.00014721859125596719,0.004006578773153269,0.0012919671988817214,0.0009617178534406667,0.0,0.00014721859125596719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00076355879351875,0.00023098768200296765,0.00076355879351875,0.000477457095357344,0.00015396150706143452,0.00011460626106589593,0.0,1.75437860936786e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00047745709535734396,0.00015396150706143452,0.00011460626106589592,0.0,1.7543786093678596e-05 +100305,50.0,the Greater Atlanta and Macon Area,G1301210011423,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,51829.0,,3154.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,71543.06474093779,0.0,0.0,0.006347844279190147,0.0011720623222579599,0.0,0.007519906601448106,0.004708475966240868,0.0005871548654183706,0.0021064030646741924,0.0,0.00011783395669090377,0.0038434174055291194,0.0005871548654183706,0.0017993993031279805,0.0,0.00011783395669090377,0.0008650585607117482,0.0003070037615462119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.831045012582415e-05,0.0,0.0,0.0007564615615002149,0.00031951766142075737,0.0008347720116260391,0.0004580133670913846,6.997022403225916e-05,0.0002144312851323203,0.0,1.4042067661987728e-05,5.7798227950906656e-05,2.051222217491751e-05,0.0,0.0,0.0,0.0,0.0005226798898373087,6.517906060787022e-05,0.00023382821313960484,0.0,1.3080546644792009e-05 +100306,81.0,the Columbus-Albany Area,G1302150010502,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,13402.0,,582.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011941325810436152,0.0001711866239285861,0.0,0.0013653192049722014,0.00038567628234323093,0.0004217672593493293,0.0005578756632796413,0.0,0.0,0.00021448965841464477,0.0004217672593493293,0.0005578756632796413,0.0,0.0,0.0001711866239285861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1437600148308629e-05,0.0,0.0,0.00014230372015591576,5.732275485225193e-05,0.00015374132030422438,2.556054228141083e-05,5.026163007203162e-05,6.648154780247333e-05,0.0,0.0,1.1437600148308629e-05,0.0,0.0,0.0,0.0,0.0,4.342895100393787e-05,4.74929636068368e-05,6.281940569344972e-05,0.0,0.0 +100307,50.0,the Greater Atlanta and Macon Area,G1300670031001,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,20483.0,,4378.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0019079421339218841,0.0012885644996216464,0.0,0.0031965066335435314,0.0016856266259013253,0.0006114290262691326,0.0008994509813730731,0.0,0.0,0.00039706212627967866,0.0006114290262691326,0.0008994509813730731,0.0,0.0,0.0012885644996216464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.609400087536317e-05,0.0,0.0,0.00022736481679717262,0.00014881204653604307,0.0003134588176725358,4.731692643796458e-05,7.286250776190821e-05,0.00010718538259729985,0.0,0.0,8.609400087536317e-05,0.0,0.0,0.0,0.0,0.0,0.00016529749184553965,5.995852398795971e-05,8.820280183903642e-05,0.0,0.0 +100308,50.0,the Greater Atlanta and Macon Area,G1301210005000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,8960.0,,208.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.001936172596237187,0.0001652487333311362,0.0,0.0021015040366420623,0.0009576652068274407,0.0003899638526808345,0.000622536144035767,0.0,0.00013117341895054155,0.000923589892446846,0.0003899638526808345,0.000622536144035767,0.0,0.0,3.407531438059465e-05,0.0,0.00013117341895054155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1042532210959204e-05,0.0,0.0,0.00023073415545932764,8.555391472541745e-05,0.00024177668767028681,0.0001100644303295306,4.6472086415665515e-05,7.418778249219815e-05,0.0,0.0,2.277038674131728e-06,0.0,8.765493536827478e-06,0.0,0.0,0.0,0.00011017876604881149,4.486509041541982e-05,7.162238293888972e-05,0.0,1.5091417475897312e-05 +100309,85.0,Rural Climate Zone 3A,G1300170960500,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,143402.0,,3529.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011975391273426603,0.0010386897251457505,0.0,0.013014080998572356,0.005010354434556658,0.00262994581168164,0.005373750062727758,0.0,0.0,0.003971664709410908,0.00262994581168164,0.005373750062727758,0.0,0.0,0.0010386897251457505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.939967313643527e-05,0.0,0.0,0.0014270831775141345,0.0004903158683527918,0.0014964828506505697,0.00047329525725843573,0.00031340532763658995,0.0006403789354007456,0.0,0.0,6.939967313643527e-05,0.0,0.0,0.0,0.0,0.0,0.0005761382219626258,0.0003024161910282877,0.0006179249086767394,0.0,0.0 +100310,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030402,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,FuelOil,111012.0,9333.0,,,9.729435225087556,Education,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,729707.6418815667,0.04011837808094733,0.0,0.029720882830771927,0.0,0.0028376170850833494,0.07267687799680261,0.06392776613994768,0.004273439710761675,0.0009912432500588516,0.0006468118109510452,0.0028376170850833494,0.02380938805900035,0.004273439710761675,0.0009912432500588516,0.0006468118109510452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04011837808094733,0.0,0.0028376170850833494,0.0,0.0,0.0002521456319038975,0.0,0.0035417840978425397,0.0013990878862968528,0.0037939297297464375,0.002837321908870743,0.000509258116484806,0.00011812467348773613,7.7079398999254e-05,0.0,0.0,0.0,0.0,0.0,0.0002521456319038975,0.0,0.0033372024115468396,0.0002230851188689066,5.1745580430329024e-05,3.376532711306426e-05,0.0001481312917872969 +100311,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,11944.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028678677819104848,0.0,0.0,0.0028678677819104848,0.0013232304727551793,0.0005026935941875105,0.0009770186620824386,0.0,6.492505288535632e-05,0.0013232304727551793,0.0005026935941875105,0.0009770186620824386,0.0,6.492505288535632e-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.00034175749501170696,9.722350541696058e-05,0.00034175749501170696,0.0001576864646774996,5.990488982497924e-05,0.0001164291647750049,0.0,7.736975734223214e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001576864646774996,5.990488982497924e-05,0.0001164291647750049,0.0,7.736975734223214e-06 +100312,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,17506.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004120797241987253,0.0,0.0,0.004120797241987253,0.002859431660389076,0.0004711821990928344,0.0007114462483055225,0.0,7.873713419982066e-05,0.002859431660389076,0.0004711821990928344,0.0007114462483055225,0.0,7.873713419982066e-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.0004910721210234524,0.0001651517417537579,0.0004910721210234524,0.00034075619059376647,5.615040690170617e-05,8.478248203764728e-05,0.0,9.383041490332503e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00034075619059376647,5.615040690170617e-05,8.478248203764728e-05,0.0,9.383041490332503e-06 +100313,50.0,the Greater Atlanta and Macon Area,G1300890023421,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,186560.0,,5852.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.016622319390205868,0.0017225462222774618,0.0,0.01834486561248333,0.003943798546892594,0.007735683542611559,0.006665383522979174,0.0,0.0,0.002221252324615132,0.007735683542611559,0.006665383522979174,0.0,0.0,0.0017225462222774618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011508966664377584,0.0,0.0,0.0019808499042001703,0.0007745959960757932,0.0020959395708439457,0.0002647023770347488,0.0009218465633221815,0.0007943009638432395,0.0,0.0,0.00011508966664377584,0.0,0.0,0.0,0.0,0.0,0.00045058729829256476,0.0008838181530996253,0.0007615341194517553,0.0,0.0 +100314,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock 90.1-2004,gen3_t5_cfl,10001_25000,Electricity,32128.0,,2028.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007790096568431627,0.0016084044630083113,0.0,0.009398418324366201,0.005522599434794775,0.0017863073786215618,0.0019099544538618263,0.0,0.00017955705708803642,0.003914194971786463,0.0017863073786215618,0.0019099544538618263,0.0,0.00017955705708803642,0.0016084044630083113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010746235182693894,0.0,0.0,0.0009283282293238974,0.00042299159943219957,0.0010357905811508364,0.00046644578221430067,0.00021287021941986364,0.00022760496236053852,0.0,2.139740931384961e-05,0.00010746235182693894,0.0,0.0,0.0,0.0,0.0,0.0006086403350656469,0.00019686720615739658,0.0002104942305673099,0.0,1.978880936048282e-05 +100315,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Propane,92432.0,,,3902.0,3.20458438519356,Mercantile,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,240343.828889517,0.0,0.0,0.009872270278053602,0.0,0.0003677939155917368,0.010240064193645338,0.005482556192911956,0.004078506185302439,0.0006790321890303797,0.0,0.0,0.005114762277320218,0.004078506185302439,0.0006790321890303797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003677939155917368,0.0,0.0,0.0,0.0,2.9661814053378667e-05,0.0011764602924654339,0.00029344629569903416,0.0012061221065188122,0.0006095168137813256,0.0004860280811243139,8.091901712577756e-05,0.0,0.0,0.0,0.0,0.0,2.9661814053378667e-05,0.0,0.0,0.0006457608174572109,0.0004803853158185931,7.99795507859848e-05,0.0,0.0 +100316,50.0,the Greater Atlanta and Macon Area,G1300670030235,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,24721.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006221226086670704,0.0,0.0,0.006221226086670705,0.0025314981130127212,0.001247801621504931,0.0022991739428790074,0.0,0.00014275240927404462,0.0025314981130127212,0.001247801621504931,0.0022991739428790074,0.0,0.00014275240927404462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007413756542611828,0.00021868760017040295,0.0007413756542611828,0.00030167543240662434,0.00014869894304491443,0.00027398965451750365,0.0,1.701162429214041e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003016754324066243,0.00014869894304491443,0.0002739896545175036,0.0,1.7011624292140407e-05 +100317,81.0,the Columbus-Albany Area,G1302150000300,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,72846.0,,0.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.006170452242216122,9.206881889310834e-08,0.0,0.0061705443110350155,0.002262038811384779,0.0015714919800801684,0.0023370442091763645,0.0,0.0,0.002261946742565886,0.0015714919800801684,0.0023370442091763645,0.0,0.0,9.206881889310834e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7315848838440704e-09,0.0,0.0,0.0007353207556535036,0.00023866253141781215,0.0007353264872383873,0.0002695517804371124,0.00018727163341287822,0.0002785009990240224,0.0,0.0,5.7315848838440704e-09,0.0,0.0,0.0,0.0,0.0,0.0002695608311568006,0.00018727029888904897,0.0002784990143869853,0.0,0.0 +100318,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock 90.1-2004,gen5_led,50001_100000,Electricity,238192.0,,37896.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.01252100393122709,0.006444649499322213,0.0,0.0189656534305493,0.010649883429846076,0.0021668806602289136,0.003619475980289579,0.0,0.002529413360184733,0.0057895835662969426,0.0021668806602289136,0.0020351263445165008,0.0,0.002529413360184733,0.004860299863549134,0.0015843496357730782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043059350536003887,0.0,0.0,0.0014921036675780068,0.0008957967887062902,0.0019226971729380455,0.0006899334047389292,0.0002582229506587618,0.00024252204530216906,0.0,0.0003014252668781468,0.00032473659825358117,0.0001058569071064577,0.0,0.0,0.0,0.0,0.0010796622872851751,0.00021967370303231312,0.0003669346938297595,0.0,0.00025642648879079796 +100319,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,84081.0,,2643.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.017109372845542144,0.0018181729852167557,0.0,0.018927545830758896,0.008934658829211779,0.0012411140984251493,0.004824459010278124,0.00037072053017969355,0.0035566650826351675,0.008934658829211779,0.0012411140984251493,0.0030062860250613683,0.00037072053017969355,0.0035566650826351675,0.0,0.0018181729852167557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012148028904119242,0.0,0.0,0.0020388936852431083,0.0007500099738614387,0.0021603739742843005,0.0010647274818976126,0.0001479013708328037,0.00035825378568036013,4.417810955416136e-05,0.0004238414840202004,0.0,0.00012148028904119242,0.0,0.0,0.0,0.0,0.0010197943556089991,0.00014165970703913027,0.000550659645946733,4.23137258413906e-05,0.0004059547259045078 +100320,50.0,the Greater Atlanta and Macon Area,G1301210012000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,51820.0,,2365.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0025185801093570805,0.00040223097917531787,0.0,0.002920811088532398,0.00134312806865326,0.0006737714643234266,0.000467106371611291,0.0,0.00043680518394442086,0.0009408970894779422,0.0006737714643234266,0.000467106371611291,0.0,0.00043680518394442086,0.00040223097917531787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.687512640116868e-05,0.0,0.0,0.000300134611595209,9.051653056213387e-05,0.0003270097379963777,0.00011212499513212313,8.0292120150297e-05,5.566421687217636e-05,0.0,5.2053279440612534e-05,2.687512640116868e-05,0.0,0.0,0.0,0.0,0.0,0.00015037465433841992,7.543446780344404e-05,5.229654625619674e-05,0.0,4.890406959831707e-05 +100321,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6437.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011940420235743811,0.0,0.0,0.0011940420235743811,0.0005862277386642111,0.0002146248563535028,0.0003539035685304964,0.0,3.936856709991033e-05,0.0005862277386642111,0.0002146248563535028,0.0003539035685304964,0.0,3.936856709991033e-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.00014229025494525842,3.951122365166285e-05,0.00014229025494525842,6.985892685821098e-05,2.557617313728238e-05,4.2173581832150775e-05,0.0,4.691429061019811e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.985892685821098e-05,2.557617313728238e-05,4.2173581832150775e-05,0.0,4.691429061019811e-06 +100322,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,135155.0,,4974.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007589392554046502,0.0008458978129892991,0.0,0.008435290367035799,0.003656372862404708,0.002447109022472848,0.0012440153483151647,0.0,0.0010878108642044997,0.003003594146002625,0.002447109022472848,0.0010508962517279496,0.0,0.0010878108642044997,0.0006527787164020839,0.00019311909658721512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6517477328960206e-05,0.0,0.0,0.0009044134252227352,0.00026800549053332986,0.0009609309025516954,0.0003579325815893942,0.000291617311549934,0.0001252333005323663,0.0,0.00012963234444437026,4.361449543734574e-05,1.2902981891614466e-05,0.0,0.0,0.0,0.0,0.0004165264646332205,0.00027876961898035525,0.00014171566590240884,0.0,0.00012392117284196075 +100323,50.0,the Greater Atlanta and Macon Area,G1301950020300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,88717.0,,1460.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.004231652169039743,0.0002482427902421593,0.0,0.004479877228920481,0.002441399846095591,0.0008164299523091714,0.0009331311911759589,0.0,0.00028893396970118047,0.0024241836651567195,0.0008164299523091714,0.0007021045818726709,0.0,0.00028893396970118047,1.7216180938871273e-05,0.00023102660930328803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.658575431575782e-05,0.0,0.0,0.0005042768953860424,0.0001524279426076842,0.0005208626497018003,0.000288884757933257,9.729220295156471e-05,8.366829423586793e-05,0.0,3.4431640265352756e-05,1.1502583701593347e-06,1.5435495945598486e-05,0.0,0.0,0.0,0.0,0.0002838546522234368,9.49240004860896e-05,0.00010849252332578472,0.0,3.359353512544392e-05 +100324,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5140.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00151544171212533,0.0,0.0,0.00151544171212533,0.0011400343044226135,0.00020577519946339686,0.00012985010577071265,0.0,3.969939539486756e-05,0.0011400343044226135,0.00020577519946339686,0.00012985010577071265,0.0,3.969939539486756e-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.00018058923137059178,6.086772030138916e-05,0.00018058923137059178,0.0001358534063860851,2.4521421582166256e-05,1.547372664147951e-05,0.0,4.730820884019213e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001358534063860851,2.4521421582166256e-05,1.547372664147951e-05,0.0,4.730820884019213e-06 +100325,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,30673.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025765152071173395,0.0,0.0,0.0025765152071173395,0.0007571125873643277,0.0007854390939771072,0.0010339942153822022,0.0,0.0,0.0007571125873643277,0.0007854390939771072,0.0010339942153822022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003070394247046952,9.820036774621164e-05,0.0003070394247046952,9.022396321157813e-05,9.359959020972512e-05,0.00012321952851740943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.022396321157813e-05,9.359959020972512e-05,0.00012321952851740943,0.0,0.0 +100326,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,102138.0,,18150.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,153306.56730200956,0.0,0.0,0.012475520014507318,0.006745519352363032,0.0,0.01922103936687035,0.01244893859579967,0.0017268235054028697,0.004607768812857224,0.0,0.0004375084528105867,0.006787948876393464,0.0017268235054028697,0.003960708884287214,0.0,0.0,0.005660989719406206,0.0006470599285700104,0.0004375084528105867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045069683618548045,0.0,0.0,0.0014866832673027968,0.0009056107311983873,0.001937380103488277,0.0008089065627810238,0.00020578217245311296,0.0004719899144949487,0.0,0.0,0.00037823479897379985,4.323282573146071e-05,2.923180042720659e-05,0.0,0.0,0.0,0.0012547878127038361,0.0001740547656007497,0.00046443896446568257,0.0,4.4098560718008845e-05 +100327,50.0,the Greater Atlanta and Macon Area,G1301510070205,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,275617.0,,28993.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01418744514037501,0.0049304589036882835,0.0,0.019117886313701874,0.006978386569150062,0.0054412528858385845,0.004270286626574038,0.0,0.0024279602321391905,0.0067083886254454975,0.0054412528858385845,0.0016795616765987622,0.0,0.0003582419524921669,0.00026999794370456405,0.0025907249499752755,0.0020697182796470238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032942387341810544,0.0,0.0,0.0016906894885821457,0.000778910866642611,0.0020201133620002514,0.0007994252680553405,0.0006484232339073133,0.000200150008966017,0.0,4.269097765347492e-05,1.803965313726593e-05,0.00017309679781396265,0.00013828623782981769,0.0,0.0,0.0,0.0007373792124414745,0.0005749562205957348,0.0004512247291548422,0.0,0.0002565531998082001 +100328,50.0,the Greater Atlanta and Macon Area,G1300890022100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,63606.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.005133229425778371,0.0,0.0,0.005133229425778371,0.002746745344354773,0.0018409438619221379,0.0005455402195014605,0.0,0.0,0.002746745344354773,0.0018409438619221379,0.0005455402195014605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006117187488898169,0.0001676022993892925,0.0006117187488898169,0.0003273252539872306,0.00021938233859879295,6.501115630379343e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003273252539872306,0.00021938233859879295,6.501115630379343e-05,0.0,0.0 +100329,85.0,Rural Climate Zone 3A,G1302610950300,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,16396.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0014014715611908955,0.0,0.0,0.0014014715611908952,0.00037201940754075306,0.0004276289741521906,0.0006018231794979517,0.0,0.0,0.00037201940754075306,0.0004276289741521906,0.0006018231794979517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016700945415673986,5.497243405471643e-05,0.00016700945415673986,4.433251441527613e-05,5.095935125082146e-05,7.171758849064225e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.433251441527614e-05,5.095935125082147e-05,7.171758849064226e-05,0.0,0.0 +100330,85.0,Rural Climate Zone 3A,G1302850960600,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,45632.0,,8474.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002172749409858951,0.0014410705851376315,0.0,0.003613819994996583,0.001164512407707648,0.0007727423417701613,0.0010945484015441197,0.0,0.0005820168439746534,0.0009979533925276718,0.0007727423417701613,0.00030166436920077834,0.0,0.00010038930636033898,0.000166559015179976,0.0007928840323433413,0.0004816275376143143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.628350760930442e-05,0.0,0.0,0.00025892331090828836,0.0001597104445556177,0.0003552068185175928,0.00011892461935690859,9.208655388526514e-05,3.594889355491593e-05,0.0,1.1963244111198661e-05,1.1128452950795497e-05,5.29756533432642e-05,3.217940131524472e-05,0.0,0.0,0.0,0.000114461358905201,7.59537965737203e-05,0.00010758451056341866,0.0,5.72071524752528e-05 +100331,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5617.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013487869585406256,0.0,0.0,0.0013487869585406258,0.0008131759490048705,0.00027185815138110355,0.00021479027050098142,0.0,4.896258765367e-05,0.0008131759490048705,0.00027185815138110355,0.00021479027050098142,0.0,4.896258765367e-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.00016073553150179493,5.440158567321192e-05,0.00016073553150179493,9.690653334103798e-05,3.239745474898209e-05,2.559665043599224e-05,0.0,5.834892975782597e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.690653334103797e-05,3.2397454748982084e-05,2.5596650435992237e-05,0.0,5.834892975782596e-06 +100332,50.0,the Greater Atlanta and Macon Area,G1301350050529,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,117511.0,,7392.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009777524428810322,0.0021757396384756386,0.0,0.011953264067285961,0.004242684622625921,0.0030902899061471816,0.004620289538512857,0.0,0.0,0.0020669449841502823,0.0030902899061471816,0.004620289538512857,0.0,0.0,0.0021757396384756386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001453701502255967,0.0,0.0,0.001165168961269679,0.0005134606549605782,0.0013105391114952756,0.0002463138964999745,0.00036826396151544064,0.0005505911032542638,0.0,0.0,0.0001453701502255967,0.0,0.0,0.0,0.0,0.0,0.0004651619929411725,0.0003388150521119127,0.0005065620664421903,0.0,0.0 +100333,85.0,Rural Climate Zone 3A,G1300910960400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,24618.0,,13051.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0049359835652074,0.008977619091850127,0.0,0.013913602657057529,0.002405057508037501,0.00030050667855541035,0.00896270133787888,0.0003831998051364099,0.0018621373274493249,0.002405057508037501,0.00030050667855541035,0.0016079617501699999,0.0003831998051364099,0.00023918610333706285,0.0,0.007354739587708881,0.0016229512241122622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005998333145538555,0.0,0.0,0.0005882074781980504,0.0007523462226565788,0.0011880407927519058,0.0002866040360619767,3.5810547835023633e-05,0.00019161634426282333,4.566485849225089e-05,2.850314487584816e-05,0.0,0.0004914017602485203,0.00010843634622482902,0.0,0.0,0.0,0.00020536064590097067,2.5659363819558274e-05,0.0007652981808597988,3.272028183482097e-05,0.00015900232033675676 +100334,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,39359.0,,2714.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034707304605530254,0.0007906855405635552,0.0,0.004261416001116581,0.0030155213257794383,0.0009359624666743225,0.0003099625822622574,0.0,0.0,0.0022248357852158833,0.0009359624666743225,0.0003099625822622574,0.0,0.0,0.0007906855405635552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.282968431054609e-05,0.0,0.0,0.0004136004282359028,0.0001340418306086753,0.00046643011254644893,0.0002651295005412858,0.00011153688868352772,3.693765857586891e-05,0.0,0.0,5.282968431054609e-05,0.0,0.0,0.0,0.0,0.0,0.0003300616393708053,0.00010244507425601442,3.3926723439319396e-05,0.0,0.0 +100335,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,381766.0,,27193.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.018091652994709218,0.004624486056662432,0.0,0.02271613905137165,0.011058373226602672,0.004094064564420133,0.004474824075915766,0.0,0.003088894914794499,0.009514555197035835,0.004094064564420133,0.0040635328820548015,0.0,0.0004195003511984493,0.0015438180295668374,0.0004112911938609648,0.00266939456359605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003089815321487228,0.0,0.0,0.00215594685966922,0.0008969220883497379,0.002464928391817943,0.00113383091109462,0.0004878816570009327,0.00048424325620166885,0.0,4.999103537199853e-05,0.00010314903197667993,2.7480109504353225e-05,0.00017835357530835458,0.0,0.0,0.0,0.00119994414860418,0.0004442469717214376,0.0004855631887166688,0.0,0.0003351760066972861 +100336,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,66556.0,,3310.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005890256136718095,0.0009743336207394679,0.0,0.0068645897574575645,0.0030847043978009994,0.001523554815043157,0.0022563305446134064,0.0,0.0,0.0021103707770615317,0.001523554815043157,0.0022563305446134064,0.0,0.0,0.0009743336207394679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.509942918556364e-05,0.0,0.0,0.0007019317355501036,0.00028445641663653185,0.0007670311647356672,0.00025148927106290246,0.0001815594179109537,0.00026888304657624745,0.0,0.0,6.509942918556364e-05,0.0,0.0,0.0,0.0,0.0,0.00034467673826248487,0.0001702379990081164,0.00025211642746506577,0.0,0.0 +100337,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,55207.0,,7143.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.004471601309225823,0.0020809864182786903,0.0,0.0065525877275045144,0.004710216306408801,0.001405842049976343,0.00043652937111936924,0.0,0.0,0.002629229888130111,0.001405842049976343,0.00043652937111936924,0.0,0.0,0.0020809864182786903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001390386481087519,0.0,0.0,0.0005328728888506441,0.00027155835052878377,0.000671911536959396,0.0003133207164622898,0.0001675317325122406,5.20204398761137e-05,0.0,0.0,0.0001390386481087519,0.0,0.0,0.0,0.0,0.0,0.000482992187127214,0.00014415701579343742,4.4762334038744374e-05,0.0,0.0 +100338,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,6385.0,,411.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001260621217934524,0.00032603128468034983,0.0,0.0015866525026148738,0.0007224462891128504,0.0004467009052659994,0.00038706910509995877,0.0,3.043620313606513e-05,0.0004268512075685657,0.0004467009052659994,0.00038706910509995877,0.0,0.0,0.0002955950815442846,0.0,3.043620313606513e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.178471059018515e-05,0.0,0.0,0.00015022131604347044,7.177460915951555e-05,0.0001720060266336556,5.0865517130320894e-05,5.3230896729483254e-05,4.6124902183666296e-05,0.0,0.0,1.9751028830370804e-05,0.0,2.033681759814342e-06,0.0,0.0,0.0,7.83190493455474e-05,4.842600864514041e-05,4.1961436856000214e-05,0.0,3.2995317869675376e-06 +100339,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,8600.0,,492.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,9613.75315558068,0.0,0.0,0.000663450532518813,0.00014321152134899983,0.0,0.0008066620538678129,0.0005656475423292521,0.000204626939412134,3.638757212642668e-05,0.0,0.0,0.00042243602098025236,0.000204626939412134,3.638757212642668e-05,0.0,0.0,0.00014321152134899983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.568732332779104e-06,0.0,0.0,7.906266424071016e-05,3.1578295656124544e-05,8.863139657348927e-05,5.034123216864886e-05,2.4385165452990173e-05,4.336266619071134e-06,0.0,0.0,9.568732332779104e-06,0.0,0.0,0.0,0.0,0.0,6.21501053689318e-05,2.2483233628872553e-05,3.998057575684922e-06,0.0,0.0 +100340,50.0,the Greater Atlanta and Macon Area,G1301350050211,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,60284.0,,2681.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00531589625279701,0.0007809963623429125,0.0,0.006096892615139924,0.004672340427909925,0.0009811583826376973,0.00044339380459230114,0.0,0.0,0.003891344065567013,0.0009811583826376973,0.00044339380459230114,0.0,0.0,0.0007809963623429125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.21809947260129e-05,0.0,0.0,0.0006334844693018228,0.0002493742000766148,0.0006856654640278357,0.0004637235026830099,0.0001169226350117805,5.283833160703252e-05,0.0,0.0,5.21809947260129e-05,0.0,0.0,0.0,0.0,0.0,0.0005254582407509486,0.00011034250727091704,4.9864716005969937e-05,0.0,0.0 +100341,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,97324.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.008582121268335654,0.0,0.0,0.008582121268335654,0.006119429825922736,0.0019282679603056746,0.0005344234821072434,0.0,0.0,0.006119429825922736,0.0019282679603056746,0.0005344234821072434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010227163992785398,0.00034193779338326463,0.0010227163992785398,0.0007292417622081811,0.00022978832430206865,6.368631276829011e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007292417622081811,0.00022978832430206865,6.368631276829011e-05,0.0,0.0 +100342,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,191148.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.016123214322986325,0.0,0.0,0.016123214322986325,0.006323010275122003,0.0034577672519558746,0.0063424367959084476,0.0,0.0,0.006323010275122003,0.0034577672519558746,0.0063424367959084476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019213709360058236,0.0006911862234442466,0.0019213709360058236,0.0007535003831937779,0.00041205515031262155,0.0007558154024994243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007535003831937779,0.00041205515031262155,0.0007558154024994243,0.0,0.0 +100343,50.0,the Greater Atlanta and Macon Area,G1301530020900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,48643.0,,4182.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002503917100462697,0.0007111470661968979,0.0,0.003215081897021015,0.0010729173606116554,0.0007758096942958304,0.0007345334129099474,0.0,0.0006318036988421616,0.0010729173606116554,0.0007758096942958304,0.0005494639004074364,0.0,0.00010572614514777485,0.0,0.00018506951250251113,0.0005260775536943867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7514976316473325e-05,0.0,0.0,0.000298387656198176,0.0001266930399372378,0.0003459026325146493,0.00012785778589398413,9.24519570931398e-05,6.547870349932357e-05,0.0,1.2599209711728507e-05,0.0,1.2365337525028012e-05,3.514963879144531e-05,0.0,0.0,0.0,0.00011543249951116723,8.346742763721238e-05,7.90266155991049e-05,0.0,6.797418220185633e-05 +100344,50.0,the Greater Atlanta and Macon Area,G1300670031111,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,8336.0,,415.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.00198116524435137,0.00032909144640870416,0.0,0.0023103393978338134,0.0013512681707528048,0.000273346878708411,0.0006298143665248259,0.0,5.582727477403251e-05,0.0010221767243441006,0.000273346878708411,0.0006298143665248259,0.0,5.582727477403251e-05,0.00032909144640870416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1989893045093075e-05,0.0,0.0,0.00023609579993280386,9.446685700014865e-05,0.00025808569297789693,0.0001218129745082042,3.2574794137844064e-05,7.505508543409456e-05,0.0,6.652945852661043e-06,2.1989893045093075e-05,0.0,0.0,0.0,0.0,0.0,0.000150948809761326,3.053530519409856e-05,7.035593012195478e-05,0.0,6.236408776404398e-06 +100345,50.0,the Greater Atlanta and Macon Area,G1300570091006,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,19232.0,,2399.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004758333640450583,0.0018604448968406863,0.0,0.00661877853729127,0.00294608177031874,0.000638315021542958,0.0021508159688397696,0.00041166224660187475,0.0004719035299879279,0.0017981820938779204,0.000638315021542958,0.0014383516092229716,0.00041166224660187475,0.0004719035299879279,0.0011478996764408198,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012430319203928997,0.0,0.0,0.0005670450286822539,0.00027425186871640387,0.000691348220721544,0.00021428724718478684,7.606725106919269e-05,0.00017140667114502148,4.9057306206392193e-05,5.623618916136414e-05,7.669541525511824e-05,4.760237417672912e-05,0.0,0.0,0.0,0.0,0.0003077257198642551,6.667362443345308e-05,0.00022465818802956908,4.2999166707715936e-05,4.929152168655082e-05 +100346,50.0,the Greater Atlanta and Macon Area,G1301350050536,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,3628.0,,276.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005452877371632539,0.00021917374540916465,0.0,0.0007644614825724187,0.0005748141624881865,8.816574060610172e-05,9.097778111323817e-05,0.0,1.0503798364892041e-05,0.00036614421544391395,8.816574060610172e-05,9.097778111323817e-05,0.0,0.0,0.00020866994704427262,0.0,1.0503798364892041e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4645387086140826e-05,0.0,0.0,6.498081048469392e-05,3.5332983608329565e-05,7.962619757083475e-05,4.36326479623449e-05,1.0506528739069272e-05,1.0841633783279735e-05,0.0,0.0,1.3943513818238984e-05,0.0,7.018732679018433e-07,0.0,0.0,0.0,5.98725601122256e-05,9.183330802824822e-06,9.47623253574794e-06,0.0,1.0940741200363527e-06 +100347,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock DOE Ref 1980-2004,gen5_led,_1000,Electricity,1788.0,,254.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00036134720516703417,0.00020155713870269215,0.0,0.0005629043438697263,0.00034158021454333966,9.569208431637869e-05,9.891766019221168e-05,0.0,2.67143848177963e-05,0.00014002307584064748,9.569208431637869e-05,9.891766019221168e-05,0.0,2.67143848177963e-05,0.00020155713870269215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3467116802979134e-05,0.0,0.0,4.305865275333086e-05,2.6719477170767776e-05,5.652576955631e-05,1.6685351135589182e-05,1.1402806416938384e-05,1.1787170678183496e-05,0.0,3.1833245226197913e-06,1.3467116802979134e-05,0.0,0.0,0.0,0.0,0.0,3.4300826956738215e-05,9.60921471887315e-06,9.933120832992471e-06,0.0,2.6826070477061606e-06 +100348,50.0,the Greater Atlanta and Macon Area,G1301210010601,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,61306.0,,10020.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.009475078358746461,0.002949578061272214,0.0,0.012424687109624973,0.007991542790315507,0.0016924397184994156,0.0027406739112037517,0.0,0.0,0.005041964729043292,0.0016924397184994156,0.0027406739112037517,0.0,0.0,0.002949578061272214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001970743026550433,0.0,0.0,0.0011291274834163221,0.0005702567580051978,0.0013262017860713655,0.000600841568842887,0.0002016848967184577,0.00032660101785497714,0.0,0.0,0.0001970743026550433,0.0,0.0,0.0,0.0,0.0,0.0008530112853926082,0.00018064974656410425,0.0002925374783290877,0.0,0.0 +100349,50.0,the Greater Atlanta and Macon Area,G1300970080301,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,115990.0,,44438.0,,9.729435225087556,Education,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.03375981406773141,0.039305021911487936,0.0,0.07306474376196657,0.05080396002878614,0.008565691741089078,0.0076350352261022,0.0006563101879866822,0.005403931012508019,0.020443550550032257,0.008565691741089078,0.0024444027192585334,0.0006563101879866822,0.0016499510866176364,0.030360409478753885,0.005190632506843667,0.0037539799258903828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002626130239145145,0.0,0.0,0.004023086715740642,0.003520879473709844,0.006649216954885787,0.002436215332092729,0.0010207556411764465,0.0002912943799998284,7.821111791069451e-05,0.00019662123389885432,0.0020285038788308406,0.0003468075152637892,0.00025081884505051484,0.0,0.0,0.0,0.004623386533719535,0.0007795160815279874,0.000694822195530308,5.972714889471704e-05,0.0004917817795743175 +100350,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,36542.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,100799.30806909183,0.0,0.0,0.007964484436914132,0.0,0.0,0.007964484436914132,0.005146402358105539,0.0008775968038289807,0.0018846357241045254,0.0,5.579495698371499e-05,0.005146402358105539,0.0008775968038289807,0.0018846357241045254,0.0,5.579495698371499e-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.0009491092987516388,0.0003577025628918537,0.0009491092987516388,0.0006132849366314846,0.0001045811933799857,0.00022458770616923712,0.0,6.648956742416511e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0006132849366314846,0.0001045811933799857,0.00022458770616923712,0.0,6.648956742416511e-06 +100351,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,263116.0,,21019.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02190927924632372,0.00618714738804207,0.0,0.028096395944759493,0.009922655576992156,0.0060117562880507005,0.012161984079716635,0.0,0.0,0.003735508188950085,0.0060117562880507005,0.012161984079716635,0.0,0.0,0.00618714738804207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004133880584629975,0.0,0.0,0.0026108848239166024,0.0011252140681526027,0.0030242728823796,0.00044515301167574815,0.0007164089279746846,0.001449319227047398,0.0,0.0,0.0004133880584629975,0.0,0.0,0.0,0.0,0.0,0.001068066460968539,0.0006471004876630062,0.0013091059337480549,0.0,0.0 +100352,50.0,the Greater Atlanta and Macon Area,G1300890021303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,172341.0,,10114.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.015346675214835553,0.002977198706940147,0.0,0.0183238739217757,0.010785463168445773,0.003025749664103113,0.004512661089226813,0.0,0.0,0.007808264461505627,0.003025749664103113,0.004512661089226813,0.0,0.0,0.002977198706940147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001989186298411419,0.0,0.0,0.0018288325918882366,0.0007480588563584606,0.0020277512217293787,0.0009304952592910633,0.0003605725359495042,0.0005377647966476691,0.0,0.0,0.0001989186298411419,0.0,0.0,0.0,0.0,0.0,0.0011935377971981685,0.0003348346318155511,0.0004993787927156591,0.0,0.0 +100353,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,55581.0,,8940.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002861059770546821,0.0015202898399624273,0.0,0.004381349610509249,0.0021867209346579522,0.0007399766338659037,0.0007060584524693427,0.0,0.0007486113198774693,0.0018182662939878352,0.0007399766338659037,0.0001865234021389555,0.0,0.00011631117091554636,0.0003684546406701173,0.0005195350503303871,0.0006323001489619229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010157703925913074,0.0,0.0,0.0003409475195416455,0.00021424268263794415,0.00044252455880077623,0.00021667963360403613,8.818172917343026e-05,2.222766960355784e-05,0.0,1.3860600056971425e-05,2.4618023824642793e-05,3.471234945910606e-05,4.224666597538189e-05,0.0,0.0,0.0,0.00022086293102673837,7.473903306847312e-05,7.131323289451867e-05,0.0,7.561115261092779e-05 +100354,50.0,the Greater Atlanta and Macon Area,G1300150960401,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,16193.0,,1468.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014427797712676035,0.00043201758785276205,0.0,0.001874797359120365,0.0008930675432631511,0.000448958250529094,0.0005327408757218226,0.0,0.0,0.00046104995541038904,0.000448958250529094,0.0005327408757218226,0.0,0.0,0.00043201758785276205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8864441548240886e-05,0.0,0.0,0.00017193298119089074,8.640579281724016e-05,0.00020079742273913163,5.494233762509044e-05,5.3501395002159875e-05,6.348559134886139e-05,0.0,0.0,2.8864441548240886e-05,0.0,0.0,0.0,0.0,0.0,9.565069000489012e-05,4.808501526053392e-05,5.705843050841537e-05,0.0,0.0 +100355,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,8175.0,,2227.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0016643144448560832,0.0017665403879978672,0.0,0.003430854832853951,0.0021063837539926815,0.0007126041473378727,0.00047267092642014195,0.0,0.00013919600510325437,0.0004790393710980687,0.0007126041473378727,0.00047267092642014195,0.0,0.0,0.0016273443828946127,0.0,0.00013919600510325437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011803041455142348,0.0,0.0,0.00019833346734096592,0.00017992252996715857,0.00031636388189238936,5.708629144952914e-05,8.491980095461722e-05,5.632737493681958e-05,0.0,0.0,0.00010873011080639582,0.0,9.300303745027656e-06,0.0,0.0,0.0,0.0001942325669937653,6.571021663335486e-05,4.358564160394883e-05,0.0,1.283545666132036e-05 +100356,50.0,the Greater Atlanta and Macon Area,G1300570090803,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,40249.0,,3077.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,32736.412774265485,0.0,0.0,0.0020717927319331697,0.0005231875047829181,0.0,0.0025949979670775083,0.0015133040775629268,0.0008212348802540059,0.000162179615909223,0.0,9.826166298993263e-05,0.0010883782357699414,0.0008212348802540059,0.000162179615909223,0.0,0.0,0.0004249258417929854,0.0,9.826166298993263e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.495655426184437e-05,0.0,0.0,0.00024689254116564395,0.00010166496797294489,0.0002818490954274883,0.00012970045904538347,9.786537203004109e-05,1.932671009021947e-05,0.0,0.0,2.839124235594964e-05,0.0,6.565311905894723e-06,0.0,0.0,0.0,0.00016436366840325196,8.91963350529206e-05,1.7614725953820645e-05,0.0,1.0672440279443971e-05 +100357,81.0,the Columbus-Albany Area,G1302150002800,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,22527.0,,2034.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0019293941687239784,0.0005988155980807766,0.0,0.0025281790771984575,0.0016092708854326405,0.00038613662643769645,0.0005327408757218226,0.0,0.0,0.001010455287351864,0.00038613662643769645,0.0005327408757218226,0.0,0.0,0.0005988155980807766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.000851293241556e-05,0.0,0.0,0.0002299206849061405,0.00010334071818498704,0.00026992919783855605,0.0001204132237471317,4.6014857439222824e-05,6.348528932502534e-05,0.0,0.0,4.000851293241556e-05,0.0,0.0,0.0,0.0,0.0,0.00017181899934522586,4.122712301927327e-05,5.6879798799202404e-05,0.0,0.0 +100358,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,17119.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004048924794907795,0.0,0.0,0.004048924794907795,0.0018954807159574478,0.0005363553731994086,0.001548524541621053,0.0,6.848145705614653e-05,0.0018954807159574478,0.0005363553731994086,0.001548524541621053,0.0,6.848145705614653e-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.00048250088354962595,0.00015629566622331857,0.00048250088354962595,0.0002258799969194225,6.39162134576514e-05,0.00018453404233887547,0.0,8.160774825433362e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002258799969194225,6.39162134576514e-05,0.00018453404233887547,0.0,8.160774825433362e-06 +100359,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,31039.0,,1785.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0026888391661669315,0.0005255288182418623,0.0,0.003214367984408795,0.0009995604771161795,0.0009252302506631435,0.0012896079462357687,0.0,0.0,0.00047403165887431717,0.0009252302506631435,0.0012896079462357687,0.0,0.0,0.0005255288182418623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5112889288381295e-05,0.0,0.0,0.00032042402108132097,0.00012560201682231692,0.0003555369103697023,5.6489481471249846e-05,0.00011025798830734433,0.0001536802085266988,0.0,0.0,3.5112889288381295e-05,0.0,0.0,0.0,0.0,0.0,0.00011056003714736961,0.00010233847098307952,0.00014264179677524162,0.0,0.0 +100360,50.0,the Greater Atlanta and Macon Area,G1301170130608,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,51125.0,,722.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005633943319613293,0.0002683328346216733,0.0,0.0059022761542349665,0.003212011840163031,0.0007052988094994509,0.0018780198549615365,0.0,0.00010698439803472057,0.003212011840163031,0.0007052988094994509,0.0016096870203398633,0.0,0.00010698439803472057,0.0,0.0002683328346216733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.792751993493322e-05,0.0,0.0,0.0006713874335212141,0.0002341308601710782,0.0006893149534561473,0.00038276998249155787,8.404925834573475e-05,0.00019182366169643518,0.0,1.274914857117754e-05,0.0,1.792751993493322e-05,0.0,0.0,0.0,0.0,0.0003751243984939496,8.23704285157776e-05,0.00021933015926130057,0.0,1.249449253554895e-05 +100361,35.0,Eastern Counties in South Carolina and Georgia,G1302450010712,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,219516.0,,2472.0,,7.614023970037612,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1142103.5955056418,0.0,0.0,0.04599233225568921,0.0017113687770850552,0.0,0.04770370103277426,0.03465597548971106,0.0048227777951859695,0.005636388809475288,0.0008213328857217261,0.0017671538856574914,0.03465597548971106,0.0048227777951859695,0.003925020032390233,0.0008213328857217261,0.0017671538856574914,0.0,0.0017113687770850552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011434372033626785,0.0,0.0,0.005480815696520877,0.0012080321299854841,0.005595159416857145,0.004129884376949712,0.0005747209359537949,0.00046773691064606144,9.787662315332104e-05,0.000210588249815954,0.0,0.00011434372033626785,0.0,0.0,0.0,0.0,0.004064793787769353,0.0005656628314353458,0.0006610911363614559,9.633400198368454e-05,0.00020726919484882555 +100362,85.0,Rural Climate Zone 3A,G1302350950200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,55532.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.013334282549472361,0.0,0.0,0.013334282549472361,0.008720137612630137,0.0011296132131314608,0.0033411176578468024,0.0,0.00014341406586395908,0.008720137612630137,0.0011296132131314608,0.0033411176578468024,0.0,0.00014341406586395908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015890228267911395,0.0005240226025495247,0.0015890228267911395,0.0010391633496455032,0.00013461400524933406,0.0003981550717570177,0.0,1.709040013928432e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0010391633496455032,0.00013461400524933406,0.0003981550717570177,0.0,1.709040013928432e-05 +100363,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,NaturalGas,7381.0,,213.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001536697430076332,0.00016872243042818713,0.0,0.0017054198605045189,0.0008963792651866138,0.00039021197390205244,0.00038715181217369805,0.0,3.159410216841543e-05,0.0007592509369268422,0.00039021197390205244,0.00038715181217369805,0.0,0.0,0.0001371283282597717,0.0,3.159410216841543e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1275096037081609e-05,0.0,0.0,0.00018312196199844007,7.109407699067204e-05,0.00019439705803552166,9.04768359066566e-05,4.649996860649301e-05,4.613530162081259e-05,0.0,0.0,9.163779034059464e-06,0.0,2.111317003022144e-06,0.0,0.0,0.0,0.0001021763004359352,4.44794044525505e-05,4.413058334938298e-05,0.0,3.6013422002700903e-06 +100364,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,19477.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,56663.68529324113,0.0,0.0,0.0017353744777099016,0.0,0.0,0.0017353744777099016,0.0005227360640687715,0.0005354722506823182,0.0006771661629588118,0.0,0.0,0.0005227360640687715,0.0005354722506823182,0.0006771661629588118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020680014143242077,6.710096372382559e-05,0.00020680014143242077,6.229312080462673e-05,6.381085961363983e-05,8.06961610141542e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.229312080462673e-05,6.381085961363983e-05,8.06961610141542e-05,0.0,0.0 +100365,35.0,Eastern Counties in South Carolina and Georgia,G1300510000601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,53001.0,,1427.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.004634836411897967,0.0004201100206092533,0.0,0.005054915742900923,0.0031578377296084255,0.0008496417503519015,0.001047436262940596,0.0,0.0,0.002737727708999172,0.0008496417503519015,0.001047436262940596,0.0,0.0,0.0004201100206092533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.806909725432914e-05,0.0,0.0,0.0005523229026052096,0.00018958884653971084,0.0005803919998595388,0.0003262487778199541,0.00010124987292415877,0.00012482059465058836,0.0,0.0,2.806909725432914e-05,0.0,0.0,0.0,0.0,0.0,0.000362574540969013,9.755360914639175e-05,0.00012026384974413404,0.0,0.0 +100366,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,12945.0,,473.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003149485367992827,0.00037540740770271633,0.0,0.0035248927756955438,0.0014763212662466372,0.000963123873694235,0.0009818983794330576,0.0,0.00010354925632161288,0.001204463114865534,0.000963123873694235,0.0009818983794330576,0.0,0.0,0.00027185815138110344,0.0,0.00010354925632161288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5083447627553646e-05,0.0,0.0,0.00037532055743003215,0.00013389264468218704,0.0004004040050575858,0.00014353448733859134,0.00011477436689266609,0.0001170117031987747,0.0,0.0,1.8164638103496106e-05,0.0,6.918809524057539e-06,0.0,0.0,0.0,0.00016770012178319302,0.0001094043651633212,0.00011153702217423348,0.0,1.1762495936837966e-05 +100367,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,177512.0,,23101.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.008828390210079792,0.003928551640563939,0.0,0.012756924120282311,0.004295995650633115,0.002199043535844889,0.003959367008711991,0.0,0.0023025179250923166,0.0038906441278478677,0.002199043535844889,0.0024563110800498553,0.0,0.00028237373597576095,0.00040535152278524714,0.0015030559286621362,0.002020144189116556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002624822893797905,0.0,0.0,0.0010520616323693973,0.0005141737174737658,0.0013145439217491877,0.00046364029168518623,0.000262055627007841,0.0002927136865262021,0.0,3.364991425840241e-05,2.7083160777538545e-05,0.00010042519414724325,0.00013497393445500872,0.0,0.0,0.0,0.0004426831199397095,0.00022660159192377236,0.0004079950453731655,0.0,0.00023726416451254033 +100368,50.0,the Greater Atlanta and Macon Area,G1300630040611,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,5512.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00037162098912089356,0.0,0.0,0.00037162098912089356,0.00024590466104803876,0.00010949682597309532,1.6249875699197224e-05,0.0,0.0,0.00024590466104803876,0.00010949682597309532,1.6249875699197224e-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,4.428696107729567e-05,1.4966623944611662e-05,4.428696107729567e-05,2.9305045924134512e-05,1.3048998339489243e-05,1.936536508079541e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9305045924134512e-05,1.3048998339489243e-05,1.936536508079541e-06,0.0,0.0 +100369,50.0,the Greater Atlanta and Macon Area,G1301210010510,ComStock 90.1-2007,gen5_led,100001_200000,NaturalGas,88672.0,,6901.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.007952843196774103,0.0020312222824197565,0.0,0.009984065479193862,0.0033769922081803207,0.00220204063107277,0.004405001950334471,0.0,0.0,0.0013457699257605647,0.00220204063107277,0.004405001950334471,0.0,0.0,0.0020312222824197565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013571425744510253,0.0,0.0,0.0009477247526177991,0.00041018801177204647,0.0010834390100629013,0.00016037276712424695,0.0002624128705548099,0.000524935457718448,0.0,0.0,0.00013571425744510253,0.0,0.0,0.0,0.0,0.0,0.0003664604466633001,0.0002389584409697203,0.00047801679209147943,0.0,0.0 +100370,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970701,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,15378.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0036925400141651194,0.0,0.0,0.0036925400141651194,0.0019312101718128285,0.000698130409433494,0.0009800788238107931,0.0,8.303790203426466e-05,0.0019312101718128285,0.000698130409433494,0.0009800788238107931,0.0,8.303790203426466e-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.0004400334081400976,0.00011687723896553292,0.0004400334081400976,0.00023013887201700668,8.3194955832786e-05,0.00011679424554182138,0.0,9.89547869400748e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00023013887201700668,8.3194955832786e-05,0.00011679424554182138,0.0,9.89547869400748e-06 +100371,50.0,the Greater Atlanta and Macon Area,G1300630040204,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,9353.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003053793283676448,0.0,0.0,0.003053793283676448,0.0016466151310758717,0.0007832359883112412,0.0005198139584515471,0.0,0.00010404549876404874,0.0016466151310758717,0.0007832359883112412,0.0005198139584515471,0.0,0.00010404549876404874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003639120199261772,0.0001128631448840849,0.0003639120199261772,0.0001962225280911698,9.333604606074527e-05,6.19447781934302e-05,0.0,1.2398811609758984e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0001962225280911698,9.333604606074527e-05,6.19447781934302e-05,0.0,1.2398811609758984e-05 +100372,50.0,the Greater Atlanta and Macon Area,G1300890023314,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,34176.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008206195856414083,0.0,0.0,0.008206195856414083,0.004446993940815082,0.0013606967771590858,0.002262203880917537,0.0,0.00013630125752237863,0.004446993940815082,0.0013606967771590858,0.002262203880917537,0.0,0.00013630125752237863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000977912568729925,0.0003325549505870911,0.000977912568729925,0.0005299375427884561,0.00016215095324274064,0.00026958138056743506,0.0,1.624269213129325e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005299375427884561,0.00016215095324274064,0.00026958138056743506,0.0,1.624269213129325e-05 +100373,85.0,Rural Climate Zone 3A,G1302330010500,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,1947.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0004158511667612377,0.0,0.0,0.0004158511667612377,0.00019717366379450892,0.0001358050150799428,5.4834789889160824e-05,0.0,2.7954990923885905e-05,0.00019717366379450892,0.0001358050150799428,5.4834789889160824e-05,0.0,2.7954990923885905e-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,4.955594359285662e-05,1.6761958679647492e-05,4.955594359285662e-05,2.349669242748015e-05,1.6183544029329866e-05,6.534524781635629e-06,0.0,3.331326359265222e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.349669242748015e-05,1.6183544029329866e-05,6.534524781635629e-06,0.0,3.331326359265222e-06 +100374,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,46305.0,,2133.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004083274840414166,0.0006214438444964022,0.0,0.004704718684910569,0.003424471468609329,0.000913243014294884,0.00036700420200635526,0.0,0.0,0.0028030276241129267,0.000913243014294884,0.00036700420200635526,0.0,0.0,0.0006214438444964022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1520496404946326e-05,0.0,0.0,0.0004865970908444823,0.00014941935879394364,0.0005281175872494285,0.0003340321532977502,0.00010882965545000223,4.373528209672987e-05,0.0,0.0,4.1520496404946326e-05,0.0,0.0,0.0,0.0,0.0,0.0003844063228279596,0.00010251403528731439,4.1197229134154385e-05,0.0,0.0 +100375,50.0,the Greater Atlanta and Macon Area,G1300670031111,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,146217.0,,17090.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013943760161885917,0.004978901167035154,0.0,0.01892266132892107,0.01534285927278708,0.002486413223573802,0.00109338883256019,0.0,0.0,0.010363958105751926,0.002486413223573802,0.00109338883256019,0.0,0.0,0.004978901167035154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033266171517715284,0.0,0.0,0.001661649298418635,0.0008327533856573723,0.0019943110135957876,0.0012350516299280358,0.00029630076396634076,0.00013029690452425862,0.0,0.0,0.00033266171517715284,0.0,0.0,0.0,0.0,0.0,0.0016170258874212058,0.00026204988769442674,0.00011523523848015506,0.0,0.0 +100376,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,53855.0,,5290.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012486662113730932,0.0036386410095060107,0.0,0.016125374843207956,0.005667957589392726,0.0006561660148218255,0.005538072721883453,0.00037366104899133357,0.003889445748147603,0.005667957589392726,0.0006561660148218255,0.0018994317123774429,0.00037366104899133357,0.003889445748147603,0.0,0.0036386410095060107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002431145317867632,0.0,0.0,0.001488015128902439,0.0006826619210542694,0.0017311296606892022,0.0006754412481234147,7.819423223223272e-05,0.0002263521747118211,4.452857688599109e-05,0.0004634988969489794,0.0,0.0002431145317867632,0.0,0.0,0.0,0.0,0.0006084800876836077,7.044229741256155e-05,0.0005945363779214315,4.011415122083787e-05,0.00041754904699755436 +100377,50.0,the Greater Atlanta and Macon Area,G1301130140203,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,251776.0,,18297.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013241122560302533,0.003111501125605066,0.0,0.016352623685907598,0.0077039129584586235,0.0023538473214033706,0.0038141376183203385,0.0,0.002480725787725268,0.006143481580241197,0.0023538473214033706,0.0022630501405712794,0.0,0.002480725787725268,0.0015604313782174271,0.001551087477749059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020789286256487214,0.0,0.0,0.0015779181659970334,0.0006067485481872271,0.0017858110285619054,0.0007321064466991279,0.0002805032905262207,0.0002696831715820908,0.0,0.00029562314429778716,0.00010425917682757898,0.00010363487037950963,0.0,0.0,0.0,0.0,0.0008413165366333574,0.0002570551727265371,0.0004165282069763021,0.0,0.0002709111122257092 +100378,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,107989.0,,19655.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.030530550310120395,0.01738516536180993,0.0,0.047915715671930335,0.038379990648920226,0.0050742543338439215,0.0009962229817086028,0.0006444141623789427,0.0028209257623314048,0.022911192016989632,0.0050742543338439215,0.0009962229817086028,0.0006444141623789427,0.0009045590324520677,0.015468798631930592,0.0,0.0019163667298793372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011615744751309852,0.0,0.0,0.003638266379030289,0.0019103931556820508,0.004799840854161274,0.0027302822508013884,0.0006046890329177389,0.0001187179577030501,7.679358404414647e-05,0.00010779454291485873,0.001033534123941232,0.0,0.00012804035118975306,0.0,0.0,0.0,0.0038446226778771093,0.0005083011474303576,9.979422618246527e-05,6.455262913663496e-05,0.000282579411174823 +100379,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,10917.0,,128.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0011506731923357704,4.766056123966183e-05,0.0,0.0011983337535754323,0.000665620423556838,0.00016623073798223515,0.00033056280319963827,0.0,3.588104041294866e-05,0.000665620423556838,0.00016623073798223515,0.00028290224195997644,0.0,3.588104041294866e-05,0.0,4.766056123966183e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.18421090424246e-06,0.0,0.0,0.00013712228250663757,5.051674365113696e-05,0.00014030649341088003,7.931999491173963e-05,1.9809219826019505e-05,3.371261397430499e-05,0.0,4.275836260814467e-06,0.0,3.1842109042424603e-06,0.0,0.0,0.0,0.0,7.793393726353545e-05,1.9463068509754747e-05,3.8703831574992485e-05,0.0,4.201119216790885e-06 +100380,50.0,the Greater Atlanta and Macon Area,G1301210007500,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,7888.0,,2754.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010377690369568196,0.0008105738815349258,0.0,0.0018483429184917453,0.0009521757249925265,0.0003631808009270147,0.0005329863925722043,0.0,0.0,0.00014160184345760065,0.0003631808009270147,0.0005329863925722043,0.0,0.0,0.0008105738815349258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.415767996262169e-05,0.0,0.0,0.00012366929105507422,9.1303015023768e-05,0.00017782697101769593,1.6874467216564026e-05,4.3279680329609594e-05,6.351514350890062e-05,0.0,0.0,5.415767996262169e-05,0.0,0.0,0.0,0.0,0.0,9.160774408147565e-05,3.494121199832988e-05,5.127801493789041e-05,0.0,0.0 +100381,50.0,the Greater Atlanta and Macon Area,G1301210008904,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,29611.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002638354763807211,0.0,0.0,0.002638354763807211,0.0008971185712944478,0.0006669158344553793,0.0010743510476636812,0.0,0.0,0.0008971185712944478,0.0006669158344553793,0.0010743510476636812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003144066881332228,0.00010731068592874788,0.0003144066881332228,0.0001069075632787443,7.947483092536919e-05,0.00012802795113912838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001069075632787443,7.947483092536919e-05,0.00012802795113912838,0.0,0.0 +100382,50.0,the Greater Atlanta and Macon Area,G1301350050430,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,437556.0,,2463.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02054702436560381,0.0004188797885487475,0.0,0.020965904154152556,0.009138175084810954,0.006348923278015348,0.0027186317772595362,0.0,0.0027601740140667202,0.009138175084810954,0.006348923278015348,0.002299751988710789,0.0,0.0027601740140667202,0.0,0.0004188797885487475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.798736510333895e-05,0.0,0.0,0.0024485487642146027,0.0006599981573690702,0.002476536129317942,0.001088978477513622,0.0007565887872553253,0.00027405695295638,0.0,0.00032892454648927546,0.0,2.798736510333895e-05,0.0,0.0,0.0,0.0,0.001079420214228396,0.0007499479996028938,0.0003211304301112899,0.0,0.0003260374853753623 +100383,50.0,the Greater Atlanta and Macon Area,G1300210013502,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,6237.0,,247.0,,8.72605822017302,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.001497742398345118,0.0001962638859833765,0.0,0.0016939235772547555,0.0007513110578478686,0.0004834228460062519,0.0004104752069681828,0.0,4.8714466432452064e-05,0.0006037616382969442,0.0004834228460062519,0.0004104752069681828,0.0,0.0,0.00014754941955092446,0.0,4.8714466432452064e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3111691851690596e-05,0.0,0.0,0.00017848036231640817,7.468151355690445e-05,0.0001915920541680988,7.194801727924125e-05,5.760769328728289e-05,4.8914795857106074e-05,0.0,0.0,9.857251691283618e-06,0.0,3.2544401604069787e-06,0.0,0.0,0.0,8.497740442668861e-05,5.467777728687747e-05,4.642699891783968e-05,0.0,5.509873536693042e-06 +100384,50.0,the Greater Atlanta and Macon Area,G1301210007704,ComStock 90.1-2004,gen5_led,5001_10000,Electricity,44316.0,,9402.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009227491470868519,0.006467635266216789,0.0,0.01569519845705632,0.005359489994054583,0.0007435209395188398,0.005876160665251044,0.0003704336502956311,0.0033455932079362247,0.0035594621615047768,0.0007435209395188398,0.0012085532315840618,0.0003704336502956311,0.0033455932079362247,0.001800027832549806,0.004667607433666982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004321317162585473,0.0,0.0,0.0010996266336817664,0.0006804610771919356,0.0015317583499403135,0.00042417588861826566,8.860430057033167e-05,0.00014402151720947803,4.414403515440947e-05,0.0003986894388931062,0.00012026793172087758,0.00031186378453766964,0.0,0.0,0.0,0.0,0.0005230544597621083,7.256323713138015e-05,0.0005734784551604359,3.615212884957833e-05,0.0003265100690368112 +100385,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,64648.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.005575749051379238,0.0,0.0,0.005575749051379238,0.001966589971556794,0.001541201338664336,0.0020679577411581067,0.0,0.0,0.001966589971556794,0.001541201338664336,0.0020679577411581067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006644503461627087,0.00021085301900671834,0.0006644503461627087,0.00023435441145576533,0.00018366173827866856,0.0002464341964282746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023435441145576533,0.00018366173827866856,0.0002464341964282746,0.0,0.0 +100386,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,697111.0,,50465.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.03399117729452737,0.008582044568509577,0.0,0.04257322186303695,0.027616190385224542,0.005937933500298523,0.0038526479633246933,0.0,0.005166432283827766,0.01903414581671497,0.005937933500298523,0.0038526479633246933,0.0,0.005166432283827766,0.008582044568509577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005734020140101392,0.0,0.0,0.004050662473762607,0.0017491640831745923,0.0046240644877727465,0.002268262129076247,0.0007076119839258869,0.0004591125630758846,0.0,0.0006156736847919101,0.0005734020140101392,0.0,0.0,0.0,0.0,0.0,0.0029995156499714954,0.0006449450200837549,0.0004184530052344244,0.0,0.0005611488867106953 +100387,35.0,Eastern Counties in South Carolina and Georgia,G1300510010603,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,121723.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.010369465555080414,0.0,0.0,0.010369465555080412,0.0026609730036486175,0.0026576585261684654,0.0050508340252633285,0.0,0.0,0.0026609730036486175,0.0026576585261684654,0.0050508340252633285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001235710319724432,0.0003723863898971065,0.001235710319724432,0.00031710330524273734,0.0003167083249995452,0.0006018986894821491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003171033052427374,0.00031670832499954525,0.0006018986894821492,0.0,0.0 +100388,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300050970202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,5607.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,3204.5843851935597,0.0,0.0,0.00035761875978009,0.0,0.0,0.00035761875978008995,0.00024338365229470532,9.865345097381792e-05,1.5551282912128932e-05,0.0,0.0,0.00024338365229470532,9.865345097381792e-05,1.5551282912128932e-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,4.26166883525968e-05,1.1552756682499188e-05,4.26166883525968e-05,2.9003526734275358e-05,1.1756327821406013e-05,1.8532142378571054e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.900352673427536e-05,1.1756327821406015e-05,1.8532142378571056e-06,0.0,0.0 +100389,50.0,the Greater Atlanta and Macon Area,G1300970080404,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12198.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0029290710164775724,0.0,0.0,0.0029290710164775724,0.001606667614459786,0.0006523106905819177,0.0005600095962888505,0.0,0.00011000040807327888,0.001606667614459786,0.0006523106905819177,0.0005600095962888505,0.0,0.00011000040807327888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034904941264803823,0.00010391647981748419,0.00034904941264803823,0.00019146220217706596,7.773408774686087e-05,6.673481781843475e-05,0.0,1.3108448929038286e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00019146220217706596,7.773408774686087e-05,6.673481781843475e-05,0.0,1.3108448929038286e-05 +100390,35.0,Eastern Counties in South Carolina and Georgia,G1300730030302,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,11969.0,,238.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005658822150824052,4.04961454834006e-05,0.0,0.0006063783605658059,0.00026918234707924173,0.00015629313591776546,7.157746905275316e-05,0.0,0.00010932540851604558,0.00022868620159584107,0.00015629313591776546,7.157746905275316e-05,0.0,0.00010932540851604558,4.04961454834006e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7061676907802087e-06,0.0,0.0,6.743463735948475e-05,1.9909486937176526e-05,7.014080505026497e-05,2.7251909783890036e-05,1.8625025953247844e-05,8.529691409331995e-06,0.0,1.3028010213014882e-05,2.7061676907802087e-06,0.0,0.0,0.0,0.0,0.0,3.113677492026675e-05,1.807868995666917e-05,8.279486256956714e-06,0.0,1.264585391637233e-05 +100391,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,112375.0,,6949.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005197407225228598,0.001181675397562259,0.0,0.006379064892429439,0.002843861319969369,0.0016471328455614856,0.0008996739991763193,0.0,0.0009884144580836836,0.0024682968043698104,0.0016471328455614856,0.0008996739991763193,0.0,0.00018230357612098293,0.0003755645155995584,0.0,0.0008061108819627005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.895238080317892e-05,0.0,0.0,0.0006193641105212023,0.00022089577193786194,0.0006983164913243812,0.000294141749624707,0.00019628536414261361,0.00010721226221298936,0.0,2.172473454089229e-05,2.509294237059336e-05,0.0,5.3859438432585546e-05,0.0,0.0,0.0,0.0003113176135158904,0.00018031169910541294,9.848734901351857e-05,0.0,0.00010820177063293959 +100392,50.0,the Greater Atlanta and Macon Area,G1301210007001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,24615.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0035866968632063618,0.0,0.0,0.0035866968632063618,0.001985977799237403,0.0012365092331108765,0.00036420983085808215,0.0,0.0,0.001985977799237403,0.0012365092331108765,0.00036420983085808215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004274210685591515,0.0001253207674288217,0.0004274210685591515,0.0002366658754445076,0.00014735287587896154,4.340231723568235e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002366658754445076,0.00014735287587896154,4.340231723568235e-05,0.0,0.0 +100393,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,9403.0,,883.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.00048402113640602147,0.0001502293523121074,0.0,0.000634250488718129,0.0002862921458495926,0.00017467952071036026,5.015919245732938e-05,0.0,0.0001231018993394266,0.00020625729439947425,0.00017467952071036026,5.015919245732938e-05,0.0,5.290739847743756e-05,8.003485145011835e-05,0.0,7.019450086198905e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0037455748653706e-05,0.0,0.0,5.767892102943274e-05,2.5732247080643113e-05,6.771637677808645e-05,2.4578881583039345e-05,2.081588080083415e-05,5.977276368814434e-06,0.0,6.304769418360646e-06,5.347465508016385e-06,0.0,4.689990240637321e-06,0.0,0.0,0.0,3.0566262323486574e-05,1.86498307060748e-05,5.355295479850345e-06,0.0,1.3143095269212067e-05 +100394,50.0,the Greater Atlanta and Macon Area,G1300890023601,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,29107.0,,1983.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002457679798505689,0.0005776147405077264,0.0,0.003035294539013415,0.001901387324803264,0.0006933381543655607,0.00044059943344402797,0.0,0.0,0.0013237725842955377,0.0006933381543655607,0.00044059943344402797,0.0,0.0,0.0005776147405077264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.859205027213816e-05,0.0,0.0,0.0002928777513095562,0.00011445679259189635,0.0003314698015816944,0.00015775185114409425,8.262399343932815e-05,5.2505526299158646e-05,0.0,0.0,3.859205027213816e-05,0.0,0.0,0.0,0.0,0.0,0.00020764129186861136,7.571609855407014e-05,4.811572811255713e-05,0.0,0.0 +100395,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,73809.0,,4770.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,364853.82094078336,0.0,0.0,0.019760681793246904,0.004218939314372728,0.0,0.023979713324872403,0.017966687357797568,0.00357987375265463,0.0005323702002595358,0.0006419242965540671,0.001258581065848284,0.013747748043424839,0.00357987375265463,0.0005323702002595358,0.0006419242965540671,0.001258581065848284,0.004218939314372728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028188639302841506,0.0,0.0,0.0023548451579876234,0.000840487184401605,0.0026367315510160386,0.001638294581736363,0.0004266071616783312,6.344160598580646e-05,7.649697198461783e-05,0.00014998285787186664,0.00028188639302841506,0.0,0.0,0.0,0.0,0.0,0.00197555870588365,0.0003936313142863177,5.8537701632532515e-05,7.058391495999634e-05,0.00013838949452291764 +100396,35.0,Eastern Counties in South Carolina and Georgia,G1301270000101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,86682.0,,771.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0041907659556051,0.0001311869441469707,0.0,0.004321952899752072,0.0022054087355946874,0.0009809322455644213,0.0006835586238272957,0.0,0.0004520532947656663,0.002074221791447717,0.0009809322455644213,0.0006835586238272957,0.0,0.0004520532947656663,0.0001311869441469707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.765711231593128e-06,0.0,0.0,0.0004994049930488018,0.00013678566080917314,0.0005081707042803948,0.00024718076130072293,0.00011689568600752647,8.14582807527911e-05,0.0,5.387026498776132e-05,8.765711231593128e-06,0.0,0.0,0.0,0.0,0.0,0.0002593096538505955,0.0001153369880797212,8.037210847605046e-05,0.0,5.315195387402751e-05 +100397,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,62305.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.006784551264233155,0.0,0.0,0.006784551264233155,0.0026396437272717148,0.0017271496632221173,0.002417788563345621,0.0,0.0,0.0026396437272717148,0.0017271496632221173,0.002417788563345621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008085026026585327,0.00023166071510087604,0.0008085026026585327,0.0003145615296388613,0.0002058212759416334,0.0002881234543024586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003145615296388613,0.0002058212759416334,0.0002881234543024586,0.0,0.0 +100398,81.0,the Columbus-Albany Area,G1302150010203,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,37969.0,,921.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0033644401592045604,0.0002712040508527995,0.0,0.0036356748996636576,0.0017224541534585688,0.0008119242242120248,0.001101235142780469,0.0,0.0,0.0014512501026057692,0.0008119242242120248,0.001101235142780469,0.0,0.0,0.0002712040508527995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.812105235096081e-05,0.0,0.0,0.00040093561847901463,0.00013909806320816634,0.0004190566708299754,0.00017294344078735036,9.675587188018401e-05,0.00013123264857410957,0.0,0.0,1.812105235096081e-05,0.0,0.0,0.0,0.0,0.0,0.00019853422627869914,9.358434726822742e-05,0.00012693102256674496,0.0,0.0 +100399,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7491.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006605346669727889,0.0,0.0,0.0006605346669727889,0.0004173636298741478,0.00019964566910434276,4.349499439486062e-05,0.0,0.0,0.0004173636298741478,0.00019964566910434276,4.349499439486062e-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,7.871516948168443e-05,2.6064349606734905e-05,7.871516948168443e-05,4.973675191280755e-05,2.3791548673523332e-05,5.1832493078480765e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.973675191280755e-05,2.3791548673523332e-05,5.1832493078480765e-06,0.0,0.0 +100400,50.0,the Greater Atlanta and Macon Area,G1300670030412,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,78101.0,,12074.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.004333619477566466,0.0020532999649720547,0.0,0.006386919442538521,0.0021711182166083056,0.0015485165753431516,0.0012072071180071352,0.0,0.001460042071857088,0.0015401301143914666,0.0015485165753431516,0.0010021200274613845,0.0,0.00024283503000904319,0.0006309881022168391,0.00020508709054575073,0.0012172070418480447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013718902751715182,0.0,0.0,0.0005164290332569288,0.000301186675138147,0.0006536180607740807,0.00018353432048715668,0.0001845337187832336,0.0001194207012563789,0.0,2.8938179837356073e-05,4.2158791016781365e-05,1.3702673251970045e-05,8.132637861338252e-05,0.0,0.0,0.0,0.00022218568610703787,0.00015847051307884207,0.00012354193324706734,0.0,0.00014941629939777419 +100401,50.0,the Greater Atlanta and Macon Area,G1301350050313,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,87701.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007358937935700961,0.0,0.0,0.007358937935700961,0.002354322457521971,0.0019948550989569787,0.0030097603792220095,0.0,0.0,0.002354322457521971,0.0019948550989569787,0.0030097603792220095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008769520737351664,0.0003016590470776385,0.0008769520737351664,0.00028056058896065467,0.0002377234773709038,0.00035866800740360776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028056058896065467,0.0002377234773709038,0.00035866800740360776,0.0,0.0 +100402,50.0,the Greater Atlanta and Macon Area,G1301350050532,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,31632.0,,3425.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002818379994349535,0.0010080614980606433,0.0,0.0038264414924101793,0.0015040055358315203,0.0009655257037320273,0.0013568795632403334,0.0,0.0,0.000495944037770877,0.0009655257037320273,0.0013568795632403334,0.0,0.0,0.0010080614980606433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.735346602164834e-05,0.0,0.0,0.0003358611337238182,0.0001705964922182147,0.0004032145997454665,5.910073415339362e-05,0.00011505991319306413,0.0001616968291537124,0.0,0.0,6.735346602164834e-05,0.0,0.0,0.0,0.0,0.0,0.0001584858912250852,0.00010174311065424134,0.00014298236392218852,0.0,0.0 +100403,46.0,the Tallahassee-Valdosta Area,G1301850011301,ComStock 90.1-2007,gen4_led,_1000,Electricity,3246.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.00044752797600339255,0.0,0.0,0.00044752797600339244,0.00022372263446482655,0.00014912085395197132,4.8052809842537614e-05,0.0,2.654897067031768e-05,0.00022372263446482655,0.00014912085395197132,4.8052809842537614e-05,0.0,2.654897067031768e-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,5.3328983321005955e-05,1.8710352230012354e-05,5.3328983321005955e-05,2.66595638298505e-05,1.7769757332798696e-05,5.726139218167521e-06,0.0,3.1636672788842926e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.6659563829850508e-05,1.77697573327987e-05,5.726139218167523e-06,0.0,3.1636672788842935e-06 +100404,50.0,the Greater Atlanta and Macon Area,G1301170130406,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,17280.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004017330692739379,0.0,0.0,0.004017330692739379,0.0024297684123133737,0.0005211372716313761,0.0009871916321523733,0.0,7.915066956851721e-05,0.0024297684123133737,0.0005211372716313761,0.0009871916321523733,0.0,7.915066956851721e-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.00047873384899407433,0.00016125518806589002,0.00047873384899407433,0.00028954857669379936,6.210244338442473e-05,0.00011764081324178598,0.0,9.432159707807408e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00028954857669379936,6.210244338442473e-05,0.00011764081324178598,0.0,9.432159707807408e-06 +100405,50.0,the Greater Atlanta and Macon Area,G1300590000600,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,96440.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00777545921446784,0.0,0.0,0.007775459214467841,0.004860444129227921,0.001973372755470736,0.000941642329769182,0.0,0.0,0.004860444129227921,0.001973372755470736,0.000941642329769182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009265867003723276,0.0002354189920471704,0.0009265867003723276,0.0005792098915091001,0.00023516308164718753,0.00011221372721603982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005792098915091001,0.0002351630816471875,0.0001122137272160398,0.0,0.0 +100406,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,17381.0,,7682.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0039954121521990245,0.005958226800404466,0.0,0.009953638952603492,0.0030121450300857272,0.0006434901116593437,0.005421553783178649,0.0004190205778611107,0.0004575103106017299,0.0020535404468083303,0.0006434901116593437,0.0008794418766533079,0.0004190205778611107,0.0,0.0009586045832773964,0.00454211190652534,0.0004575103106017299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039809554759306085,0.0,0.0,0.00047612557493407944,0.0005369103933024826,0.0008742211225271403,0.00024471646194219665,7.668347787588601e-05,0.0001048013954986349,4.993387564122158e-05,0.0,6.404862206304861e-05,0.0003034786333636074,3.05682921664048e-05,0.0,0.0,0.0,0.0002645545837010017,5.651728482705353e-05,0.0004761712632676911,3.6802283233700854e-05,4.018280944351205e-05 +100407,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,Electricity,58753.0,,8538.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008632188321780051,0.002513233238931476,0.0,0.011145390871105231,0.004017545670825974,0.0027766728193909574,0.0043512030704945985,0.0,0.0,0.0015043124318944976,0.0027766728193909574,0.0043512030704945985,0.0,0.0,0.002513233238931476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016791867027794003,0.0,0.0,0.0010286805854006808,0.0004495636434533802,0.0011965992556786209,0.00017926589821521075,0.0003308905360776752,0.000518524151107795,0.0,0.0,0.00016791867027794003,0.0,0.0,0.0,0.0,0.0,0.00043133455030532286,0.0002981110907074716,0.00046715690958481836,0.0,0.0 +100408,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,250022.0,,30839.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011545390794088683,0.005244481334798838,0.0,0.016789872128887523,0.007776749283172199,0.003043859796787565,0.002254007656247053,0.0,0.003715255392680704,0.006555925247594465,0.003043859796787565,0.0014583576875221835,0.0,0.0004872480621844711,0.0012208240355777355,0.0007956499687248694,0.003228007330496233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035040601973940195,0.0,0.0,0.0013758418373537164,0.0006844061232922327,0.0017262478570931182,0.0007812569014833386,0.0003627308707127982,0.00017378965823718705,0.0,5.806440692039265e-05,8.156842665651261e-05,5.316074571506795e-05,0.0002156768473678214,0.0,0.0,0.0,0.0007995651594111306,0.0003129539290806131,0.00023174541512876722,0.0,0.0003819833534726071 +100409,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,10341.0,,1204.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002223166142112584,0.0009548531663203043,0.0,0.003178019308432888,0.0017482621247014805,0.0003935202568516247,0.0009669283990862431,0.0,6.930852779353962e-05,0.0008626347791009765,0.0003935202568516247,0.0009669283990862431,0.0,0.0,0.0008856273456005039,0.0,6.930852779353962e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.380024421255123e-05,0.0,0.0,0.00026492874065927875,0.00014262804819628724,0.00032872898487183,0.00010279787072456389,4.6894752531876795e-05,0.00011522626142290283,0.0,0.0,5.917479558492841e-05,0.0,4.6309748505948825e-06,0.0,0.0,0.0,0.0001808373007734741,4.07050750818521e-05,0.00010001745119418515,0.0,7.169157822318635e-06 +100410,50.0,the Greater Atlanta and Macon Area,G1300210012500,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,264977.0,,7159.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.012575631174762273,0.0012173843454622456,0.0,0.013793015520224515,0.007410262712619709,0.0020751792309644,0.0019618467607674223,0.0,0.0023457268158729857,0.007019024557524823,0.0020751792309644,0.0011357005704000624,0.0,0.0023457268158729857,0.0003912381550948851,0.0008261461903673603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.133808886294001e-05,0.0,0.0,0.0014986143372722675,0.0004867018872418064,0.0015799524261352073,0.0008364439676541069,0.00024729520965707525,0.0001353393029739519,0.0,0.0002795358569871332,2.6140112565352002e-05,5.519797629758799e-05,0.0,0.0,0.0,0.0,0.0008488254460335877,0.0002377061387207247,0.00022472421239830032,0.0,0.0002686966289825948 +100411,50.0,the Greater Atlanta and Macon Area,G1300670030414,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,42030.0,,11047.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009379322649508566,0.007599161248930084,0.0,0.016978483898438652,0.005560090752985247,0.0011791480434676614,0.00570023157634975,0.00036878409096227204,0.004170229434673719,0.005560090752985247,0.0011791480434676614,0.0018092797088108202,0.00036878409096227204,0.0004620200532825664,0.0,0.00389095186753893,0.0037082093813911535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005077331001390547,0.0,0.0,0.0011177135801904382,0.0007784701287768206,0.0016254466803294928,0.0006625839811607832,0.00014051652027429135,0.00021560794702022673,4.39472019494195e-05,5.50579297857177e-05,0.0,0.000259971461255087,0.00024776163888396774,0.0,0.0,0.0,0.0005322990622031738,0.00011288653829967597,0.0005457155390499328,3.530579526409183e-05,0.00039923974551261824 +100412,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,49806.0,,1209.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.010370492648944312,0.0008314496239839788,0.0,0.011201942272928292,0.0031734652774987574,0.0010283209444218314,0.002576253078851765,0.0002772694079463523,0.004146633564209585,0.0031734652774987574,0.0010283209444218314,0.0017448034548677856,0.0002772694079463523,0.004146633564209585,0.0,0.0008314496239839788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5553459054867505e-05,0.0,0.0,0.0012358327654980554,0.0003704712778758818,0.0012913862245529232,0.00037817609084391755,0.00012254313845868947,0.00020792505735967338,3.304169153865904e-05,0.000494146787297116,0.0,5.5553459054867505e-05,0.0,0.0,0.0,0.0,0.00036584453335052004,0.0001185472545466407,0.0002969965079209012,3.196426880159805e-05,0.00047803365993326303 +100413,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,45260.0,,,1377.0,3.20458438519356,Mercantile,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,56080.226740887294,0.0,0.0,0.0039093859836330375,0.0,0.00012978639039751356,0.00403917237403055,0.0024694040078886608,0.0013149034932597142,0.0002548344992827378,0.0,0.0,0.0023396176174911476,0.0013149034932597142,0.0002548344992827378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012978639039751356,0.0,0.0,0.0,0.0,1.046798128278288e-05,0.0004658734555930064,0.0001318843934435576,0.00047634143687578926,0.0002788074006481089,0.00015669433428697725,3.0368101098790484e-05,0.0,0.0,0.0,0.0,0.0,1.046798128278288e-05,0.0,0.0,0.0002912179388300651,0.0001550671675611905,3.005274851212465e-05,0.0,0.0 +100414,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,3739.0,,852.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1870.6521585294563,0.0,0.0,0.00019246307321467318,0.00014487478316325142,0.0,0.0003373378563779246,0.0001927822197202341,6.127612906770249e-05,1.0975093719012686e-05,0.0,7.230441387097534e-05,8.625820830855687e-05,6.127612906770249e-05,1.0975093719012686e-05,0.0,3.395364211940112e-05,0.00010652401141167723,0.0,3.835077175157421e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.679345605407702e-06,0.0,0.0,2.2935074092725563e-05,1.6786593379800683e-05,3.2614419698133265e-05,1.0279054395311824e-05,7.302037408057075e-06,1.30785913066763e-06,0.0,4.046123158689033e-06,7.117061363026494e-06,0.0,2.5622842423812095e-06,0.0,0.0,0.0,1.8638525458730316e-05,5.92428437279242e-06,1.0610914429278092e-06,0.0,6.990518423682723e-06 +100415,35.0,Eastern Counties in South Carolina and Georgia,G1302450010504,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,41399.0,,3633.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.003448345117767402,0.0010583984460078998,0.0,0.004506743563775302,0.003128662983685064,0.0010252001018224374,0.00035285010466836294,0.0,0.0,0.002070264537677164,0.0010252001018224374,0.00035285010466836294,0.0,0.0,0.0010583984460078998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.071655588396519e-05,0.0,0.0,0.0004109321367612274,0.00018768538711478794,0.0004816486926451926,0.0002467091317934772,0.00012217097015001816,4.204841525887361e-05,0.0,0.0,7.071655588396519e-05,0.0,0.0,0.0,0.0,0.0,0.00033436924344481086,0.00010956609395562106,3.771010913052025e-05,0.0,0.0 +100416,50.0,the Greater Atlanta and Macon Area,G1302170100100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,81194.0,,7616.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.004179453985019108,0.0012952383624576973,0.0,0.005474692347476805,0.0030315903866848883,0.0007804195882650443,0.0012585187839567681,0.0,0.0004041635885701037,0.002692727719224839,0.0007804195882650443,0.0003021430889591198,0.0,0.0004041635885701037,0.00033886266746004914,0.0009563756949976482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.653999663985858e-05,0.0,0.0,0.0004980584065543555,0.00023989353887345975,0.000584598403194214,0.00032088777192644123,9.300127192890176e-05,3.600587683888619e-05,0.0,4.816348586012622e-05,2.264075474704289e-05,6.389924189281569e-05,0.0,0.0,0.0,0.0,0.0003237191766605337,8.333473666908436e-05,0.00013438710794957007,0.0,4.3157381915025857e-05 +100417,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5262.0,,262.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012634332584416602,0.00020792558338061885,0.0,0.001471358841822279,0.0007800931195091475,0.00027094837356997115,0.00038367811507664714,0.0,3.663923366651319e-05,0.0006088067697950419,0.00027094837356997115,0.00038367811507664714,0.0,0.0,0.00017128634971410564,0.0,3.663923366651319e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3892838507087762e-05,0.0,0.0,0.00015056188324148048,6.362722101266185e-05,0.0001644547217485682,7.255080011393937e-05,3.22886049685186e-05,4.5722478159022516e-05,0.0,0.0,1.1444736892672535e-05,0.0,2.448101614415226e-06,0.0,0.0,0.0,8.719150846163547e-05,3.0284073549652022e-05,4.288394908328319e-05,0.0,4.095190653997511e-06 +100418,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,31065.0,,6626.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026544361175072067,0.001950263101006416,0.0,0.004604699218513622,0.0023975948024017317,0.0009309385174345163,0.0012761658986773748,0.0,0.0,0.00044733170139531583,0.0009309385174345163,0.0012761658986773748,0.0,0.0,0.001950263101006416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013030536118559767,0.0,0.0,0.00031632297389750416,0.00023389946148898866,0.0004466283350831018,5.3307477686402616e-05,0.00011093777635423552,0.00015207771985686604,0.0,0.0,0.00013030536118559767,0.0,0.0,0.0,0.0,0.0,0.0002325523826822818,9.029547867856661e-05,0.0001237804737222534,0.0,0.0 +100419,50.0,the Greater Atlanta and Macon Area,G1300670030412,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,37537.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.003663448993363079,0.0,0.0,0.003663448993363079,0.0017360803386547489,0.0008261028223215635,0.0011012658323867666,0.0,0.0,0.0017360803386547489,0.0008261028223215635,0.0011012658323867666,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.401520745908727e-12,0.0,0.0,0.000436564750749337,0.00015490580242956702,0.0004365647551508577,0.00020688468208475465,9.844476431185675e-05,0.0001312353043527256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002068846841706015,9.844476530439376e-05,0.00013123530567586244,0.0,0.0 +100420,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301090970200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,254656.0,,,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,1459415.2837631335,0.0,0.0,0.09357081760937905,0.0,0.0,0.09357081760937905,0.07042105955946522,0.014180339176183799,0.003980834367712393,0.0006680217790888753,0.004320562726928767,0.07042105955946522,0.014180339176183799,0.003980834367712393,0.0006680217790888753,0.004320562726928767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011150652864258963,0.003020523654563698,0.011150652864258963,0.008391941093845839,0.0016898435184265006,0.000474388311212356,7.960685985967167e-05,0.0005148730809145966,0.0,0.0,0.0,0.0,0.0,0.0,0.008391941093845839,0.0016898435184265006,0.000474388311212356,7.960685985967167e-05,0.0005148730809145966 +100421,81.0,the Columbus-Albany Area,G1302150002300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,199548.0,,210.0,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,215998.51729091106,0.0,0.0,0.03210159028485645,0.00011017047279171901,0.0,0.03221176075764817,0.019318648995317385,0.00479541823046532,0.007987468465182375,0.0,0.00011017047279171901,0.019318648995317385,0.00479541823046532,0.007987468465182375,0.0,0.0,0.0,0.0,0.00011017047279171901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.361045869999143e-06,0.0,0.0,0.0038254873664484044,0.0013258983471617447,0.003832848412318403,0.0023021678057893852,0.0005714611548741681,0.0009518518999314068,0.0,0.0,0.0,0.0,7.361045869999143e-06,0.0,0.0,0.0,0.002298708651381556,0.0005706024979301283,0.0009504216815576774,0.0,1.3109085371058068e-05 +100422,50.0,the Greater Atlanta and Macon Area,G1302230120204,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,179344.0,,11527.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009231773662747413,0.001960197837155358,0.0,0.011191971499902772,0.004997639243108864,0.0023318439428810845,0.002878790131966873,0.0,0.0009836804515845296,0.004001246122386157,0.0023318439428810845,0.0019149854155342233,0.0,0.0009836804515845296,0.0009963931207227074,0.0009638047164326504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013096864043903074,0.0,0.0,0.0011001330930336406,0.00040445557064544124,0.001231101733472671,0.0004768209699911035,0.0002778814541029456,0.00022820520793390017,0.0,0.00011722334811188989,6.657300089323248e-05,6.439563954579826e-05,0.0,0.0,0.0,0.0,0.0005497335599465937,0.00025649968106991605,0.0003166630223995143,0.0,0.00010820351974086196 +100423,50.0,the Greater Atlanta and Macon Area,G1301210010121,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,20345.0,,6024.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004937521135730441,0.004672136045699533,0.0,0.009609657181429976,0.003624261157914482,0.0006985563049290112,0.0041475921459339935,0.0004185354131626997,0.0007207121594897878,0.002522856431738066,0.0006985563049290112,0.0012975729859006648,0.0004185354131626997,0.0,0.0011014047261764164,0.0028500191600333287,0.0007207121594897878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031216624763093497,0.0,0.0,0.0005883927197216449,0.00047927577505775385,0.0009005589673525799,0.00030064283605704564,8.32453032274621e-05,0.0001546287048143401,4.987587562279707e-05,0.0,7.358976218381732e-05,0.00019042249158878388,4.815399385833374e-05,0.0,0.0,0.0,0.00033964384203993516,6.546447315729234e-05,0.00038868725797626993,3.922260829518986e-05,6.754078588389242e-05 +100424,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,27440.0,,2823.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0024468209309032474,0.0008310131593291958,0.0,0.0032778340902324433,0.0012643810898590568,0.0008852723832635345,0.0011281499275035544,0.0,0.0,0.000433367930529861,0.0008852723832635345,0.0011281499275035544,0.0,0.0,0.0008310131593291958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.552343835746185e-05,0.0,0.0,0.0002915829659530033,0.0001479462522835697,0.0003471064043104652,5.164362660824754e-05,0.00010549621507977541,0.00013443946704335243,0.0,0.0,5.5523438357461844e-05,0.0,0.0,0.0,0.0,0.0,0.0001338916985111965,9.374596313633766e-05,0.00011946549278554294,0.0,0.0 +100425,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,122386.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010497072938066261,0.0,0.0,0.01049707293806626,0.0022676550093372588,0.003340041922197887,0.004889376006531114,0.0,0.0,0.0022676550093372588,0.003340041922197887,0.004889376006531114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012509149239285993,0.00036361180253011117,0.0012509149239285993,0.000270231855131225,0.00039802603179722024,0.0005826570370001538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000270231855131225,0.00039802603179722035,0.0005826570370001539,0.0,0.0 +100426,50.0,the Greater Atlanta and Macon Area,G1300570090602,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,71797.0,,2667.0,,9.325022323477118,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.02209542082463232,0.0022612202996779634,0.0,0.024356729508468334,0.012515815469687988,0.006287295467397266,0.00498698773409277,0.0,0.0005666308372903152,0.010821226007300339,0.006287295467397266,0.00498698773409277,0.0,0.0,0.0016945894623876484,0.0,0.0005666308372903152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015108306787235996,0.0,0.0,0.002633072485347864,0.0007988775620377088,0.002784155553220224,0.0012895464939861533,0.0007492459561575951,0.0005942905677889696,0.0,0.0,0.0001132237203063148,0.0,3.785934756604518e-05,0.0,0.0,0.0,0.0014306509061857492,0.0007186846897570702,0.0005700498332047476,0.0,6.477012407265767e-05 +100427,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,31134.0,,4954.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0016026296383971528,0.0008424226621509689,0.0,0.002445070030909542,0.0009530601174120982,0.00034919946816794003,0.000693718120920986,0.0,0.00044909232440851747,0.0006653850033717415,0.00034919946816794003,0.0005071060669749302,0.0,8.093909988254106e-05,0.0002876751140403567,0.00018661205394605575,0.0003681532245259764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.628602022886335e-05,0.0,0.0,0.0001909830008276835,0.00010797815333874998,0.00024726902105654685,7.92929455471496e-05,4.161358352566383e-05,6.043107907679668e-05,0.0,9.645392678073387e-06,1.922085909568555e-05,1.2468384713842248e-05,2.4597961063963938e-05,0.0,0.0,0.0,9.638261451058033e-05,3.5314412084644214e-05,7.015545505071283e-05,0.0,4.541653941060945e-05 +100428,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,30802.0,,2164.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027222908370314277,0.0006369627787088213,0.0,0.0033592536157402487,0.0014561911292196993,0.0007344943475229207,0.0011685374493913313,0.0,0.0,0.0008192283505108781,0.0007344943475229207,0.0011685374493913313,0.0,0.0,0.0006369627787088213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.255749822838926e-05,0.0,0.0,0.0003244100459995985,0.00014093098227861627,0.0003669675442279878,9.762583161879152e-05,8.752824710169092e-05,0.00013925231005908092,0.0,0.0,4.255749822838926e-05,0.0,0.0,0.0,0.0,0.0,0.0001590754803723202,8.023674833507007e-05,0.0001276519629635285,0.0,0.0 +100429,50.0,the Greater Atlanta and Macon Area,G1302970110504,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,14081.0,,763.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006737360036005865,0.00012976851523336644,0.0,0.000803504518833953,0.00036774542621331523,9.888222563963447e-05,0.0001853177375623919,0.0,0.00015157685978003143,0.00036774542621331523,9.888222563963447e-05,5.5549222329025436e-05,0.0,0.00015157685978003143,0.0,0.00012976851523336644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.670306166022607e-06,0.0,0.0,8.028847389252836e-05,2.8561220405199066e-05,8.895878005855095e-05,4.38238700230251e-05,1.1783700068386813e-05,6.619747590865321e-06,0.0,1.806326912043014e-05,0.0,8.670306166022607e-06,0.0,0.0,0.0,0.0,4.071437524150239e-05,1.0947595136293273e-05,2.0517171304381803e-05,0.0,1.6781601366356683e-05 +100430,35.0,Eastern Counties in South Carolina and Georgia,G1300730030603,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,75594.0,,3653.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003611497317650556,0.0006211654819901299,0.0,0.004232662799640685,0.0015939594916627468,0.0005172832944300406,0.0014619569508904538,0.0,0.000659463062657444,0.0015939594916627468,0.0005172832944300406,0.000840791468900324,0.0,0.000659463062657444,0.0,0.0006211654819901299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.150246700205268e-05,0.0,0.0,0.0004303744858328322,0.00015596442849666605,0.0004718769528348849,0.0001899487764562404,6.164355453960862e-05,0.00010019533846864712,0.0,7.858681636833599e-05,0.0,4.150246700205268e-05,0.0,0.0,0.0,0.0,0.00017770202434550422,5.7669149725028775e-05,0.00016298576660076254,0.0,7.352001216358939e-05 +100431,50.0,the Greater Atlanta and Macon Area,G1301210008202,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5942.0,,115.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011119966064249882,9.147402355567401e-05,0.0,0.0012034706299806626,0.0005601750104363292,0.00022967754377405672,0.0003711066398682724,0.0,4.251143590200402e-05,0.00046870098688065517,0.00022967754377405672,0.0003711066398682724,0.0,4.251143590200402e-05,9.147402355567401e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.111990544931607e-06,0.0,0.0,0.00013251618588136467,4.859349337960313e-05,0.00013862817642629628,5.585490705761946e-05,2.7370580006883583e-05,4.422462819261311e-05,0.0,5.066070624248527e-06,6.111990544931607e-06,0.0,0.0,0.0,0.0,0.0,6.452674310599303e-05,2.6456631567302913e-05,4.2747895514039675e-05,0.0,4.89690623896064e-06 +100432,50.0,the Greater Atlanta and Macon Area,G1301210011416,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,40403.0,,3802.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034531137728791295,0.0011074821826993068,0.0,0.004560626329177874,0.0036088088435970445,0.0006145794110234703,0.00033720770095792073,0.0,0.0,0.0025013266608977383,0.0006145794110234703,0.00033720770095792073,0.0,0.0,0.0011074821826993068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.399633265083674e-05,0.0,0.0,0.00041150132286638986,0.00019409955641808846,0.00048549765551722654,0.00029807857417399314,7.32383168573511e-05,4.018443183504557e-05,0.0,0.0,7.399633265083674e-05,0.0,0.0,0.0,0.0,0.0,0.0003841727224102653,6.542453637828292e-05,3.5897163332593515e-05,0.0,0.0 +100433,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,14465.0,,2025.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012693221164729873,0.0005959921543013879,0.0,0.0018652835811680771,0.000790318741378442,0.0005233805458010232,0.0005515842939886121,0.0,0.0,0.00019432658707705405,0.0005233805458010232,0.0005515842939886121,0.0,0.0,0.0005959921543013879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.982001361793214e-05,0.0,0.0,0.00015126134260504584,9.027781490760361e-05,0.00019108135622297796,2.3157321599979454e-05,6.236970350063954e-05,6.573066031529228e-05,0.0,0.0,3.982001361793214e-05,0.0,0.0,0.0,0.0,0.0,8.096097476849122e-05,5.3615581846142035e-05,5.650479960834472e-05,0.0,0.0 +100434,50.0,the Greater Atlanta and Macon Area,G1301390001606,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,140084.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011408506190416211,0.0,0.0,0.011408506190416211,0.006365121871774709,0.004364382503210559,0.0006790321890303797,0.0,0.0,0.006365121871774709,0.004364382503210559,0.0006790321890303797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013595284150364046,0.00034690996556163863,0.0013595284150364046,0.0007585185917782037,0.0005200945617391122,8.091888107898664e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007585185917782037,0.0005200945617391122,8.091888107898664e-05,0.0,0.0 +100435,81.0,the Columbus-Albany Area,G1300950001000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,40719.0,,10477.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.010617567949093092,0.0072073550472718005,0.0,0.017824922996364893,0.005947522036411577,0.0013017891939043561,0.005288415502778113,0.00038126336591898837,0.004905789457409827,0.005947522036411577,0.0013017891939043561,0.0023669742034282118,0.00038126336591898837,0.000619947429458942,0.0,0.0029214412993499002,0.004285842027950885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004815520812435786,0.0,0.0,0.0012652779797984182,0.0008074415433827316,0.0017468300610419968,0.0007087563463796991,0.00015513206124830172,0.00028206839388340605,4.543452358525547e-05,7.387810795164566e-05,0.0,0.00019519312267895207,0.00028635416666786517,0.0,0.0,0.0,0.0005828530246123469,0.00012757443594653984,0.0005182610425535788,3.736354479046917e-05,0.00048076395612446795 +100436,50.0,the Greater Atlanta and Macon Area,G1300570090602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13911.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0033180423842735355,0.0,0.0,0.0033180423842735355,0.0016449609896010853,0.0007989503323217097,0.0007750479880110499,0.0,9.908307433969029e-05,0.0016449609896010853,0.0007989503323217097,0.0007750479880110499,0.0,9.908307433969029e-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.00039540888354598516,0.00012737955682443495,0.00039540888354598516,0.00019602889687537011,9.521037477078159e-05,9.236194844482343e-05,0.0,1.1807663455009974e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00019602889687537011,9.521037477078159e-05,9.236194844482343e-05,0.0,1.1807663455009974e-05 +100437,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,14836.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0035623590800994494,0.0,0.0,0.0035623590800994494,0.001751404993503574,0.00048193411867894444,0.001241350469753265,0.0,8.775220523740518e-05,0.001751404993503574,0.00048193411867894444,0.001241350469753265,0.0,8.775220523740518e-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.00042452175280545835,0.00012877694943031666,0.00042452175280545835,0.00020871268196063301,5.743146948359505e-05,0.0001479301399483916,0.0,1.0457317508511128e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00020871268196063301,5.743146948359505e-05,0.0001479301399483916,0.0,1.0457317508511128e-05 +100438,50.0,the Greater Atlanta and Macon Area,G1300970080202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,199170.0,,34283.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.06834275933371618,0.03032352257764461,0.0,0.09866637412861357,0.07647678211457402,0.008233340762094556,0.008691383856618913,0.0006527137151285284,0.004612153680197544,0.04829482079808084,0.008233340762094556,0.006549822595467485,0.0006527137151285284,0.004612153680197544,0.028181961316493188,0.0021415612611514288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020260432524155944,0.0,0.0,0.008144277967329555,0.004047327517918764,0.01017032121974515,0.0057552028744015825,0.0009811517184844236,0.0007805300279683999,7.77826646292954e-05,0.0005496216712022576,0.0018829564546439781,0.00014308679777161654,0.0,0.0,0.0,0.0,0.007883064993792207,0.0008486753567428332,0.0008958894704157085,6.728034962283298e-05,0.00047541104917156945 +100439,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,43840.0,,,6348.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005225261432074759,0.0,0.0005982687881253976,0.005823530220200157,0.0035880029279821844,0.0014896731844245383,0.0007458541077934338,0.0,0.0,0.002989734139856787,0.0014896731844245383,0.0007458541077934338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005982687881253976,0.0,0.0,0.0,0.0,4.8249851207231686e-05,0.0006226834262922671,0.00017635476485362427,0.0006709332774994988,0.0003562803358471946,0.00017752122350074836,8.888186694432413e-05,0.0,0.0,0.0,0.0,0.0,4.8249851207231686e-05,0.0,0.0,0.00041337650413465955,0.00017162636308852512,8.593041027631405e-05,0.0,0.0 +100440,50.0,the Greater Atlanta and Macon Area,G1301170130607,ComStock 90.1-2007,gen4_led,_1000,Electricity,2600.0,,99.0,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.00029427176836445586,7.848901297860274e-05,0.0,0.00037276078134305853,0.0001707074001979305,0.00010371467046909153,6.922582071980031e-05,0.0,2.9112889956236213e-05,9.221838721932777e-05,0.00010371467046909153,6.922582071980031e-05,0.0,2.9112889956236213e-05,7.848901297860274e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2420621728401506e-06,0.0,0.0,3.5070238535734894e-05,1.7023492468708987e-05,4.031230070857505e-05,1.099025181769095e-05,1.2360337021869466e-05,8.250081409333924e-06,0.0,3.469568286840551e-06,5.2420621728401506e-06,0.0,0.0,0.0,0.0,0.0,1.8461191183159285e-05,1.1216246968838059e-05,7.486442354798606e-06,0.0,3.148420201779103e-06 +100441,50.0,the Greater Atlanta and Macon Area,G1300890023208,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,23689.0,,4760.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0047489378807986865,0.0032743035567467066,0.0,0.008023241437545391,0.0020942231536558433,0.0003573088955997742,0.0038669256772487005,0.00036620217200571006,0.001338509819064349,0.0020942231536558433,0.0003573088955997742,0.0005926221205019941,0.00036620217200571006,0.001338509819064349,0.0,0.0032743035567467066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002187687458385162,0.0,0.0,0.0005659204695301759,0.0003769452264773199,0.0007846892153686922,0.00024956396149333445,4.2579714252047664e-05,7.06214730760076e-05,4.363950641729334e-05,0.00015950726758048284,0.0,0.0002187687458385162,0.0,0.0,0.0,0.0,0.00020481925366961197,3.494553156787693e-05,0.0003781931404145365,3.5815311960172553e-05,0.000130908963398492 +100442,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,77244.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006514758935270049,0.0,0.0,0.006514758935270049,0.0018120984934541587,0.0018812421764428829,0.002821418265373008,0.0,0.0,0.0018120984934541587,0.0018812421764428829,0.002821418265373008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007763501299903598,0.00022849329813784725,0.0007763501299903598,0.00021594396890606604,0.00022418367628582699,0.0003362224847984669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021594396890606604,0.00022418367628582699,0.0003362224847984669,0.0,0.0 +100443,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,45978.0,,5674.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002540743061132147,0.0009649217292021134,0.0,0.0035056470599728407,0.0017698624073110905,0.0007735933991183239,0.0005955451097381536,0.0,0.0003666461438052719,0.0012980220292006456,0.0007735933991183239,0.0003872842844982134,0.0,8.182561795354368e-05,0.0004718403781104451,0.0002082608252399402,0.00028482052585172824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.447013411966329e-05,0.0,0.0,0.0003027748815171022,0.00014022492892500304,0.00036724501563676547,0.00015468249116173548,9.218746017399065e-05,4.615183453463083e-05,0.0,9.750982757740294e-06,3.1525471485658e-05,1.3914707202410147e-05,1.9029955431595155e-05,0.0,0.0,0.0,0.00018540746867225143,8.104019460473253e-05,6.238818951154822e-05,0.0,3.8409162848233214e-05 +100444,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,11029.0,,4045.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0021235566218012272,0.0027828783153477396,0.0,0.004906434937148968,0.001230069222888745,0.0002004573189886329,0.0024417064132264783,0.00038119164594797275,0.0006528668961551073,0.000846367377955226,0.0002004573189886329,0.0005906856812845726,0.00038119164594797275,0.00010471115768279214,0.0003837018449335191,0.0018510207319419052,0.0005481557384723152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018593799226746771,0.0,0.0,0.00025305745159328523,0.0002606828586494299,0.000438995443860753,0.00010085889379081899,2.3887857651498947e-05,7.039012365572282e-05,4.542538941599889e-05,1.247809380006743e-05,2.5637035684525344e-05,0.00012367593532372232,3.6625021259220034e-05,0.0,0.0,0.0,0.00011005848266588375,1.7935599035108457e-05,0.00021846778860474682,3.4106514802004094e-05,5.841422469287736e-05 +100445,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,4967.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,9713.774621698478,0.0,0.0,0.00044254412281287414,0.0,0.0,0.00044254412281287414,0.00021455103762724016,0.00012699359085989413,0.00010103018393203756,0.0,0.0,0.00021455103762724016,0.00012699359085989413,0.00010103018393203756,0.0,0.0,0.0,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.2736050786374256e-05,2.123657434790482e-05,5.2736050786374256e-05,2.5567110336167992e-05,1.5133271716644709e-05,1.203932587994064e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5567110336167992e-05,1.5133271716644709e-05,1.203932587994064e-05,0.0,0.0 +100446,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,50794.0,,5047.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004525704171903336,0.0014855610824466008,0.0,0.006011265254349937,0.0021079462981640133,0.00162010431645573,0.002283214639730194,0.0,0.0,0.0006223852157174125,0.00162010431645573,0.002283214639730194,0.0,0.0,0.0014855610824466008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.925560367499484e-05,0.0,0.0,0.0005393211444254505,0.00024756688378489467,0.0006385767481004453,7.416868051122038e-05,0.00019306531776071617,0.00027208714615351395,0.0,0.0,9.925560367499484e-05,0.0,0.0,0.0,0.0,0.0,0.000223927149326488,0.0001721036923528128,0.00024254590642114448,0.0,0.0 +100447,50.0,the Greater Atlanta and Macon Area,G1301530020105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,207686.0,,26684.0,,7.614023970037612,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.043513755859932016,0.018469922629067614,0.0,0.06198367848899964,0.05158116299718359,0.005928665251543032,0.001696358036356638,0.0007807750189459059,0.0019966450179477197,0.03311124036811599,0.005928665251543032,0.001696358036356638,0.0007807750189459059,0.0019966450179477197,0.018469922629067614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00123405452276786,0.0,0.0,0.005185446237647938,0.0023001696017735367,0.006419500760415798,0.003945799515522948,0.000706507041631775,0.00020215155468639233,9.304337914371132e-05,0.00023793614666503941,0.00123405452276786,0.0,0.0,0.0,0.0,0.0,0.005342137207011951,0.0006140176255800246,0.00017568772892789051,8.086299409813866e-05,0.00020678773063251708 +100448,85.0,Rural Climate Zone 3A,G1302850960400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7072.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017967284699127147,0.0,0.0,0.0017967284699127142,0.0009344245191066953,0.00042618955097865105,0.00038930219609092004,0.0,4.6812203736448e-05,0.0009344245191066953,0.00042618955097865105,0.00038930219609092004,0.0,4.6812203736448e-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.00021411062583484,7.675959487494901e-05,0.00021411062583484,0.00011135250647588024,5.078770276776515e-05,4.639194972401913e-05,0.0,5.578466867175447e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011135250647588027,5.0787702767765165e-05,4.6391949724019145e-05,0.0,5.578466867175449e-06 +100449,50.0,the Greater Atlanta and Macon Area,G1300890022500,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,106096.0,,26862.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004799006004120012,0.004568174428792344,0.0,0.009367162702550938,0.0033293008852889948,0.0015826829817995934,0.0030444448987144265,0.0,0.0014107339367479212,0.002504679506003759,0.0015826829817995934,0.000496272816147278,0.0,0.00021535296980796135,0.0008246213792852357,0.0025481720825671485,0.00119538096693996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003052185983850061,0.0,0.0,0.0005718872628368221,0.0004340918432621736,0.0008771058612218282,0.00029847729003511215,0.000188604939777682,5.91397681526407e-05,0.0,2.5663151982207e-05,5.509635971809587e-05,0.00017025389980359295,7.98683388633173e-05,0.0,0.0,0.0,0.0003117432047446727,0.00014819647783148078,0.00028507036224556255,0.0,0.000132095816400112 +100450,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,44378.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0037244411366565665,0.0,0.0,0.0037244411366565665,0.0023609398842964497,0.0011862409260413973,0.00017726032631871965,0.0,0.0,0.0023609398842964497,0.0011862409260413973,0.00017726032631871965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044383568642024075,0.0001395775154175284,0.00044383568642024075,0.00028134942550986635,0.0001413624316645803,2.1123829245794154e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028134942550986635,0.0001413624316645803,2.1123829245794154e-05,0.0,0.0 +100451,35.0,Eastern Counties in South Carolina and Georgia,G1300510010801,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,215812.0,,24634.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.07981062023682985,0.02178835474722346,0.0,0.10159897498405328,0.07304381044558708,0.014745630935683358,0.00800685518928364,0.0006735548142552658,0.005129215816496732,0.05927817225512424,0.014745630935683358,0.003542156896270402,0.0006735548142552658,0.0015711975527493453,0.013765638190462833,0.004464698293013238,0.0035580182637473872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014557704934461842,0.0,0.0,0.00951087802711847,0.0037161764271182243,0.010966648520564653,0.007064065713510598,0.0017572084623077705,0.0004221120208485487,8.026623103480252e-05,0.00018723658876929972,0.000919739472466842,0.00029830504012408164,0.00023772598085526053,0.0,0.0,0.0,0.007884388556924247,0.0015916514089929145,0.000864264296265932,7.270387234153788e-05,0.0005536503400203557 +100452,50.0,the Greater Atlanta and Macon Area,G1300890021218,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5215.0,,658.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012522678034868537,0.0005217989282212904,0.0,0.0017741494387818835,0.0013882382327142751,0.00022703091741439884,0.0001293538633282768,0.0,2.9526425324932746e-05,0.0008959657298179173,0.00022703091741439884,0.0001293538633282768,0.0,0.0,0.0004922725028963578,0.0,2.9526425324932746e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4864432010251896e-05,0.0,0.0,0.00014923501598565264,8.231655448720472e-05,0.00018409944799590452,0.00010677385431428406,2.705568449115755e-05,1.5415333531573922e-05,0.0,0.0,3.2891599195596664e-05,0.0,1.972832814655243e-06,0.0,0.0,0.0,0.0001440543207594638,2.355848141106512e-05,1.3422755893226175e-05,0.0,3.0638899321494525e-06 +100453,85.0,Rural Climate Zone 3A,G1300090970400,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,16924.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014542269944166463,0.0,0.0,0.0014542269944166463,0.0005718087445387983,0.0003748121617138441,0.0005076367777703017,0.0,0.0,0.0005718087445387983,0.0003748121617138441,0.0005076367777703017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001732981162074233,6.026939219567415e-05,0.0001732981162074233,6.814161657015323e-05,4.466582026466732e-05,6.0494336608356836e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.814161657015323e-05,4.466582026466732e-05,6.0494336608356836e-05,0.0,0.0 +100454,85.0,Rural Climate Zone 3A,G1301750950800,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,94043.0,,16468.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005894653688072175,0.0028005815077430203,0.0,0.008695235195815196,0.0037233581678496686,0.001518694107434623,0.001810535856408692,0.0,0.001642629333760792,0.0034949911127593884,0.001518694107434623,0.0006378674824478196,0.0,0.00024308325506892397,0.0002283670550902801,0.0011726683739608722,0.001399546078691868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018711885719002448,0.0,0.0,0.0007024542207077074,0.00035507796373897364,0.0008895730778977319,0.00041649117800789435,0.00018097977288980866,7.60134062166103e-05,0.0,2.896775070129329e-05,1.5258182006201269e-05,7.835100153013554e-05,9.350967365368767e-05,0.0,0.0,0.0,0.0003809211724466947,0.00015537123046262906,0.00018522833691776738,0.0,0.00016805052415165802 +100455,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,26239.0,,2690.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023683782972063194,0.0007919452905122202,0.0,0.0031602928981122416,0.0012252825314357837,0.0008203024867312976,0.0011147078799451605,0.0,0.0,0.00043333724092356333,0.0008203024867312976,0.0011147078799451605,0.0,0.0,0.0007919452905122202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.291225954780975e-05,0.0,0.0,0.00028223385540272197,0.00015157078542320384,0.00033514611495053177,5.1639740298118933e-05,9.775344323147455e-05,0.0001328370146677249,0.0,0.0,5.291225954780975e-05,0.0,0.0,0.0,0.0,0.0,0.0001299400699133777,8.699231380625352e-05,0.00011821373123090057,0.0,0.0 +100456,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,22739.0,,2304.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005135078204746736,0.0015852265193580508,0.0,0.0067203047241047855,0.0018687355647827616,0.00028867288333783443,0.0031306484548024377,0.0003670628116578974,0.0010651850095238554,0.0018687355647827616,0.00028867288333783443,0.0015454219354443868,0.0003670628116578974,0.0010651850095238554,0.0,0.0015852265193580508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010591527673413174,0.0,0.0,0.0006119399284814025,0.00025672561480061804,0.0007178552052155342,0.00022269454568515516,3.440073481665449e-05,0.0001841657226905021,4.374235050723918e-05,0.00012693657478185158,0.0,0.00010591527673413172,0.0,0.0,0.0,0.0,0.00019961617923946087,3.0835704691388927e-05,0.0003344122597475325,3.920922648708784e-05,0.00011378183505006421 +100457,50.0,the Greater Atlanta and Macon Area,G1301170130307,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,101980.0,,13286.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004766772207058356,0.002259486337925849,0.0,0.0070262408146227855,0.003257563842983461,0.001127189996918437,0.0012399373651885526,0.0,0.0014015673398937538,0.002735493350970007,0.001127189996918437,0.0006942677621250077,0.0,0.0002098210970449049,0.0005220704920134547,0.000545669603063545,0.001191746242848849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015096516335329948,0.0,0.0,0.0005680466087180403,0.00029786077336897286,0.0007190117720713398,0.0003259832133132677,0.00013432495351514868,8.273448587146754e-05,0.0,2.5003956018156313e-05,3.488158161695206e-05,3.64583309846601e-05,7.962525075168729e-05,0.0,0.0,0.0,0.00033335418087357546,0.00011534800735248132,0.00012688571111116299,0.0,0.0001434256871237659 +100458,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,198407.0,,29225.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010213042785178815,0.004970050800739261,0.0,0.01518309358591808,0.0056915523980054705,0.003189284221154838,0.0033789281669037224,0.0,0.002923328799854046,0.004817374658551187,0.003189284221154838,0.0017680007193619854,0.0,0.0004383831861108055,0.0008741777394542834,0.0016109274475417375,0.0024849456137432404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033206928439953495,0.0,0.0,0.0012170687332725754,0.0006919840029542214,0.0015491380176721101,0.0005740773045512748,0.00038006088770332815,0.0002106892569824106,0.0,5.224128403556201e-05,5.8407366044509785e-05,0.00010763260702389312,0.00016602931133113206,0.0,0.0,0.0,0.0005807117073625019,0.0003254041350792345,0.00034475359403623,0.0,0.00029826858119414346 +100459,50.0,the Greater Atlanta and Macon Area,G1300890023101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,79105.0,,5864.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007098067199807098,0.001708271979578038,0.0,0.008806339179385137,0.00611192754686161,0.0019161488941300112,0.0007782323647940771,0.0,0.0,0.004403655567283572,0.0019161488941300112,0.0007782323647940771,0.0,0.0,0.001708271979578038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011413697047425047,0.0,0.0,0.0008458619903852281,0.0003528144900491156,0.0009599989608594787,0.000524774527805922,0.00022834350138405463,9.274034163621482e-05,0.0,0.0,0.00011413697047425047,0.0,0.0,0.0,0.0,0.0,0.000666275051904739,0.0002088837267956882,8.48368710642476e-05,0.0,0.0 +100460,50.0,the Greater Atlanta and Macon Area,G1302270050500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,38203.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0038827179633266914,0.0,0.0,0.0038827179633266914,0.0021217781623235916,0.0013177889852063005,0.00044312044219736133,0.0,0.0,0.0021217781623235916,0.0013177889852063005,0.00044312044219736133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004626956025471077,0.0001225027480442678,0.0004626956025471077,0.00025284798807443174,0.00015703823308802815,5.2805761824580335e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025284798807443174,0.00015703823308802815,5.2805761824580335e-05,0.0,0.0 +100461,50.0,the Greater Atlanta and Macon Area,G1300130180105,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,258881.0,,,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,1459415.2837631335,0.11996763734668911,0.0,0.059954032500698834,0.0,0.0,0.179921669847388,0.16347333955650067,0.007652187635118011,0.0035481510177006585,0.0006497627630397869,0.004598136657776022,0.043505702209811585,0.007652187635118011,0.0035481510177006585,0.0006497627630397869,0.004598136657776022,0.0,0.0,0.0,0.0,0.0,0.0,0.11996763734668911,0.0,0.0,0.0,0.0,0.0,0.0,0.007144610746410225,0.0024329367984001937,0.007144610746410225,0.005184493762529148,0.0009118969939307139,0.0004228265695164878,7.743102216480852e-05,0.0005479514089102586,0.0,0.0,0.0,0.0,0.0,0.0,0.0064914547510459214,0.0003038650211382822,0.00014089552366011748,2.580179487756492e-05,0.00018258999378159834 +100462,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Propane,7466.0,,,1630.0,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015194116516648168,0.0,0.00041824967189967765,0.0019376613235644942,0.0009304545795672085,0.00046249795635020706,0.00043843019789206863,0.0,0.00010627858975501003,0.0006184834974225408,0.00046249795635020706,0.00043843019789206863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003119710821446676,0.00010627858975501003,0.0,0.0,0.0,3.373323203935908e-05,0.00018106396034631893,8.550691659273763e-05,0.00021479719238567805,7.3702917395339e-05,5.5114564599456497e-05,5.2246478351523405e-05,0.0,0.0,0.0,0.0,0.0,2.5161509047352666e-05,8.571722992006409e-06,0.0,0.00010314446023300659,5.126967303315313e-05,4.86016696617927e-05,0.0,1.178138945772564e-05 +100463,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,3246.0,,351.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007795141699929724,0.0002780611819115515,0.0,0.001057575351904524,0.0005098891096028303,0.0002549859083382848,0.0002618505954586473,0.0,3.076703143102236e-05,0.0002625949591223011,0.0002549859083382848,0.0002618505954586473,0.0,0.0,0.0002472941504805292,0.0,3.076703143102236e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8579957290687752e-05,0.0,0.0,9.288947231841868e-05,4.648709991178977e-05,0.00011146942960910644,3.129167900381744e-05,3.0384959486226506e-05,3.120297818144441e-05,0.0,0.0,1.652411430670922e-05,0.0,2.0558429839785382e-06,0.0,0.0,0.0,5.374278826465483e-05,2.6875752833727628e-05,2.7599297266163367e-05,0.0,3.2428738417601936e-06 +100464,50.0,the Greater Atlanta and Macon Area,G1301170130613,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,12889.0,,337.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0029649658864804316,0.0002673092623254415,0.0,0.0032322751488058736,0.0019805862948351948,0.0006074007495414737,0.0006146789720305328,0.0,2.9526425324932746e-05,0.0017428861649084252,0.0006074007495414737,0.0006146789720305328,0.0,0.0,0.0002377001299267695,0.0,2.9526425324932746e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7858234032820278e-05,0.0,0.0,0.00035332914510554823,0.00013293322811749065,0.0003711873791383685,0.00020769631160727546,7.238275102946096e-05,7.325008246881181e-05,0.0,0.0,1.588012518883833e-05,0.0,1.972583400283676e-06,0.0,0.0,0.0,0.000227446180195658,6.975256806100606e-05,7.058838314670441e-05,0.0,3.390749836298906e-06 +100465,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,36253.0,,2411.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0031968820880222547,0.0007023287397991353,0.0,0.0038992108278213897,0.00266829033700706,0.0009293106483974548,0.0003016098424168756,0.0,0.0,0.001965961597207924,0.0009293106483974548,0.0003016098424168756,0.0,0.0,0.0007023287397991353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6926228348284466e-05,0.0,0.0,0.0003809658544982695,0.00015680996295197995,0.000427892082846554,0.00023427959467045746,0.00011074403606799922,3.59422237598128e-05,0.0,0.0,4.6926228348284466e-05,0.0,0.0,0.0,0.0,0.0,0.0002928131769112906,0.00010198080753085234,3.309809840441115e-05,0.0,0.0 +100466,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,68587.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006048112614442895,0.0,0.0,0.006048112614442895,0.004359796089695459,0.0012408222842310375,0.00044743349331752204,0.0,0.0,0.004359796089695459,0.0012408222842310375,0.00044743349331752204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007207404904876907,0.0001802564884241141,0.0007207404904876907,0.0005195474642138197,0.0001478661061318733,5.331968102978129e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005195474642138197,0.0001478661061318733,5.331968102978129e-05,0.0,0.0 +100467,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,32928.0,,,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007730129139785116,0.0,0.0,0.007730129139785116,0.003129797469450435,0.0008814633962300209,0.0026723680196317733,0.00042015262882407015,0.0006264284864318845,0.003129797469450435,0.0008814633962300209,0.0026723680196317733,0.00042015262882407015,0.0006264284864318845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009211835146138058,0.0002576973963074249,0.0009211835146138058,0.000372971496439695,0.0001050421713090765,0.0003184605742219676,5.006872049554734e-05,7.465018815993173e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000372971496439695,0.0001050421713090765,0.0003184605742219676,5.006872049554734e-05,7.465018815993173e-05 +100468,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9230.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007219197114364854,0.0,0.0,0.0007219197114364854,0.00044600593414394777,0.00020441432421606977,7.149945307646778e-05,0.0,0.0,0.00044600593414394777,0.00020441432421606977,7.149945307646778e-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,8.603066712652399e-05,2.509183124416938e-05,8.603066712652399e-05,5.3150215251004633e-05,2.4359912056609997e-05,8.52053981890935e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3150215251004633e-05,2.4359912056609997e-05,8.52053981890935e-06,0.0,0.0 +100469,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,8539.0,,104.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001824600753762861,8.287248788678603e-05,0.0,0.001907473241649647,0.0005212199787051154,0.00038715181217369805,0.0009191237104649233,0.0,7.989503323217097e-05,0.0004383474908183294,0.00038715181217369805,0.0009191237104649233,0.0,7.989503323217097e-05,8.287248788678603e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.536896915009928e-06,0.0,0.0,0.00021743840217111518,7.033951164092078e-05,0.00022297529908612507,5.223804594111376e-05,4.613703642459499e-05,0.00010953234047992398,0.0,9.521123090399224e-06,5.536896915009928e-06,0.0,0.0,0.0,0.0,0.0,6.092834127566927e-05,4.525635758670388e-05,0.00010744155134822477,0.0,9.33938077948215e-06 +100470,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,25363.0,,7154.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005281028345763505,0.004921065811236152,0.0,0.010202094156999655,0.003494412147793617,0.0005002467978338872,0.0039458176453658735,0.00037602780803484874,0.001885518038000414,0.003494412147793617,0.0005002467978338872,0.0006678563700973702,0.00037602780803484874,0.00024241350203276537,0.0,0.0032779612752685027,0.001643104535967649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032879729107710445,0.0,0.0,0.0006293259335453171,0.0005229721185310375,0.0009581232246224218,0.00041641969009056256,5.961306443325891e-05,7.958664602186481e-05,4.4810221766821e-05,2.8887764556905392e-05,0.0,0.00021901450395218336,0.00010978278712492112,0.0,0.0,0.0,0.0003281755082515748,4.698036184255351e-05,0.0003705689702497156,3.531441392695455e-05,0.00017707723481587544 +100471,46.0,the Tallahassee-Valdosta Area,G1301850010302,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,9178.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00196090201128524,0.0,0.0,0.0019609020112852397,0.0009571689643850049,0.0003601065990609445,0.0005919345267522231,0.0,5.160921401332783e-05,0.0009571689643850049,0.0003601065990609445,0.0005919345267522231,0.0,5.160921401332783e-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.00023367453976169702,7.179266225670315e-05,0.00023367453976169702,0.00011406282207862496,4.291277346671849e-05,7.053898017944514e-05,0.0,6.150108094449319e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011406282207862499,4.2912773466718494e-05,7.053898017944516e-05,0.0,6.150108094449321e-06 +100472,81.0,the Columbus-Albany Area,G1302150010203,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,208538.0,,16941.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.009872478003022442,0.00288104188786722,0.0,0.012753519890889662,0.004702393264742144,0.003993923483119675,0.0021375369120787257,0.0,0.001919683961310537,0.0037859995347467156,0.003993923483119675,0.0017634972075612917,0.0,0.00032907550795618,0.000916393729995429,0.0003740397045174339,0.001590608453354357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019249425212848788,0.0,0.0,0.0011764847306396367,0.00047231022612066623,0.0013689789827681246,0.0004511704803469446,0.0004759483882156885,0.00021015266244060743,0.0,3.921531253039025e-05,6.122803228011776e-05,2.4991130288891643e-05,0.00010627508955947847,0.0,0.0,0.0,0.0005047608505900338,0.0004287128066566639,0.00022944592022922097,0.0,0.00020606130849166362 +100473,50.0,the Greater Atlanta and Macon Area,G1301210011414,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,77512.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006459188909233427,0.0,0.0,0.006459188909233428,0.004619672606484864,0.0012741117492148135,0.0005654045535337502,0.0,0.0,0.004619672606484864,0.0012741117492148135,0.0005654045535337502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007697274390998425,0.0002365483380697141,0.0007697274390998425,0.0005505162977639712,0.00015183311521485294,6.737802612101859e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005505162977639711,0.0001518331152148529,6.737802612101857e-05,0.0,0.0 +100474,50.0,the Greater Atlanta and Macon Area,G1302230120501,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,48636.0,,5885.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0025035624932342963,0.0010007902503548804,0.0,0.003504352743589177,0.002076792693853625,0.0005753679584421337,0.00037512125656405723,0.0,0.0004770708347293607,0.0014505740588587803,0.0005753679584421337,0.00037512125656405723,0.0,0.00010249921936932526,0.0006262186349948449,0.0,0.0003745716153600355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.686706100999753e-05,0.0,0.0,0.0002983443314424011,0.00014614204568569095,0.0003652113924523987,0.0001728618913917449,6.85654020455614e-05,4.470241937314543e-05,0.0,1.221461863194941e-05,4.184033533195328e-05,0.0,2.5026725678044254e-05,0.0,0.0,0.0,0.00021643607452040436,5.996283726276034e-05,3.909382601362732e-05,0.0,4.9718654655606655e-05 +100475,35.0,Eastern Counties in South Carolina and Georgia,G1301270000501,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6180.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011288688494678074,0.0,0.0,0.0011288688494678072,0.00045091896602670413,0.0003258658705328713,0.0003123846175133641,0.0,3.969939539486756e-05,0.00045091896602670413,0.0003258658705328713,0.0003123846175133641,0.0,3.969939539486756e-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.0001345209605384954,3.853086309784517e-05,0.0001345209605384954,5.373348061073169e-05,3.883160557708783e-05,3.722512037174129e-05,0.0,4.730753978934556e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.37334806107317e-05,3.883160557708784e-05,3.72251203717413e-05,0.0,4.730753978934557e-06 +100476,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,126952.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009734313463143155,0.0,0.0,0.009734313463143155,0.0024497057538952318,0.0028257761894672807,0.004458831519780642,0.0,0.0,0.0024497057538952318,0.0028257761894672807,0.004458831519780642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001160020814373234,0.0003498008037914041,0.001160020814373234,0.00029192707573758074,0.0003367427203729984,0.0005313510182626548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029192707573758074,0.0003367427203729984,0.0005313510182626548,0.0,0.0 +100477,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030401,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,NaturalGas,194944.0,,28070.0,,7.614023970037612,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.04084400902095569,0.019429888365459003,0.0,0.06027396955343742,0.038694297747791755,0.016994034847159608,0.0019171169588961998,0.0007527020471028561,0.0019158179524870098,0.020136980854194745,0.016994034847159608,0.0019171169588961998,0.0007527020471028561,0.00104317431360228,0.018557316893597003,0.0,0.0008726436388847299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012981939976474957,0.0,0.0,0.004867304444525226,0.0025991250086325585,0.006165498442172721,0.0023996864842688284,0.002025147465312677,0.0002284592555525741,8.969810033552978e-05,0.00012431313905561674,0.0012398937631848295,0.0,5.830505625031485e-05,0.0,0.0,0.0,0.0039580872846522504,0.0017383407157794556,0.00019610425049337626,7.699481771676698e-05,0.00019597137353087368 +100478,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,58494.0,,5642.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004975429662589873,0.0016608601136190789,0.0,0.006636289776208952,0.0028767516255277657,0.001314865492218778,0.0024446726584624085,0.0,0.0,0.0012158915119086869,0.001314865492218778,0.0024446726584624085,0.0,0.0,0.0016608601136190789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011096904105390225,0.0,0.0,0.0005929130806778799,0.00028246671107912764,0.0007038821217317821,0.00014489562328986948,0.0001566901760324886,0.00029132728135552186,0.0,0.0,0.00011096904105390225,0.0,0.0,0.0,0.0,0.0,0.00030512441532180623,0.00013946201019925393,0.00025929569621072193,0.0,0.0 +100479,85.0,Rural Climate Zone 3A,G1302330010500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,109213.0,,5050.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.009630587547327409,0.0014712667831652602,0.0,0.011101854330492667,0.00843408034467605,0.0019196418580653526,0.0007481321277512653,0.0,0.0,0.00696281356151079,0.0019196418580653526,0.0007481321277512653,0.0,0.0,0.0014712667831652602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.830244728812818e-05,0.0,0.0,0.0011476572588250634,0.0004487484204582546,0.0012459597061131918,0.0008297441341396682,0.00022875976174107002,8.915336294432522e-05,0.0,0.0,9.830244728812816e-05,0.0,0.0,0.0,0.0,0.0,0.0009465557694019285,0.0002154411627207459,8.396277399051746e-05,0.0,0.0 +100480,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,34439.0,,4294.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0017727347258611396,0.0007301894743620346,0.0,0.002502924200223174,0.0013245998409693045,0.00037352552403625237,0.0004727268961814478,0.0,0.00033207193903616895,0.001048644495827603,0.00037352552403625237,0.0002848914472974085,0.0,6.567325869987557e-05,0.0002759553451417018,0.0001878354488840394,0.00026639868033629337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.878687254792485e-05,0.0,0.0,0.00021125286189121128,9.554443802024729e-05,0.00026003973443913613,0.00012496463662516427,4.451220748989475e-05,3.3949881328505675e-05,0.0,7.826136447646563e-06,1.8437677787822703e-05,1.2550035883075926e-05,1.7799158877026224e-05,0.0,0.0,0.0,0.00013761846677301176,3.880719922239973e-05,4.9113663343979764e-05,0.0,3.450040509974484e-05 +100481,50.0,the Greater Atlanta and Macon Area,G1301210011306,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,160304.0,,33004.0,,9.525004485617233,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.04031057400707848,0.02857819529121249,0.0,0.06888876929829098,0.0421896540848897,0.0022534696753265028,0.014432371407664785,0.0006365616233615308,0.009376712507048456,0.024439325964449,0.0022534696753265028,0.008137353839411655,0.0006365616233615308,0.004843862904529792,0.0177503281204407,0.006295017568253129,0.004532849602518664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019094277123859942,0.0,0.0,0.004803735956808644,0.003314518868644966,0.006713163669194639,0.0029123889150021896,0.00026854178025455445,0.0009697132872578929,7.585786196766409e-05,0.0005772341123263435,0.0011859730144518825,0.00042059622282990033,0.00030285847510421165,0.0,0.0,0.0,0.0041113530681930344,0.0002195990857164147,0.001406424768233773,6.20324968305132e-05,0.0009137542502209036 +100482,50.0,the Greater Atlanta and Macon Area,G1301210011626,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,30295.0,,13978.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.00630798661073604,0.009615281354149924,0.0,0.015923196244914953,0.005472879268230264,0.0006914522405615061,0.005444262999795035,0.00037122256997680283,0.003943522606293374,0.00347655387501073,0.0006914522405615061,0.0013291145028613038,0.00037122256997680283,0.0004397151422967114,0.0019963253932195335,0.00411514849693373,0.0035038074639966625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006424348823495103,0.0,0.0,0.00075170639581432,0.0008211803053725371,0.0013941412781638303,0.0004142919039794361,8.239856925910267e-05,0.00015838712638830936,4.4237630379122034e-05,5.2399712491189566e-05,0.00013338237560472465,0.00027494930653665855,0.00023410320020812717,0.0,0.0,0.0,0.00047917307435581507,6.05394856421184e-05,0.00047666760243680195,3.250206178649568e-05,0.0003452716126990852 +100483,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,19362.0,,2063.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0017015238419635355,0.0006072859294189426,0.0,0.002308809771382478,0.0012159835807275794,0.0004847730210785132,0.0006080838591826829,0.0,0.0,0.0006086976513086369,0.0004847730210785132,0.0006080838591826829,0.0,0.0,0.0006072859294189426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0575197117787645e-05,0.0,0.0,0.0002027686691245896,0.0001066650470712343,0.00024334386624237726,7.25378097039682e-05,5.776985187475457e-05,7.246466479149069e-05,0.0,0.0,4.0575197117787645e-05,0.0,0.0,0.0,0.0,0.0,0.00012816220265921588,5.109409300905998e-05,6.409080519634809e-05,0.0,0.0 +100484,50.0,the Greater Atlanta and Macon Area,G1300670031306,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,75678.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.007393237839143171,0.0,0.0,0.007393237839143173,0.004894128451004389,0.0018998686448313767,0.0005992407433074057,0.0,0.0,0.004894128451004389,0.0018998686448313767,0.0005992407433074057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008810364408298785,0.0003241636745693445,0.0008810364408298785,0.0005832228862715549,0.00022640330871331874,7.141024584500502e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005832228862715547,0.00022640330871331868,7.141024584500501e-05,0.0,0.0 +100485,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,6366.0,,949.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0015285094297761404,0.0007531306134701334,0.0,0.0022815573361725347,0.0014418324164973463,0.00037499387233401986,0.00039302401440918886,0.0,7.162432585824022e-05,0.0007604088359591925,0.00037499387233401986,0.00039302401440918886,0.0,0.0,0.0006814235805381538,0.0,7.162432585824022e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.031865441925528e-05,0.0,0.0,0.0001821462357177765,9.057287795492435e-05,0.00023246489013703178,9.061482014984239e-05,4.468649059814937e-05,4.6835069105074075e-05,0.0,0.0,4.552771730290404e-05,0.0,4.785411237324299e-06,0.0,0.0,0.0,0.00014690641737688954,3.820763473795773e-05,4.0044702310272416e-05,0.0,7.297708796442742e-06 +100486,50.0,the Greater Atlanta and Macon Area,G1300570090100,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,67253.0,,11047.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004139454289655468,0.0018786559049845347,0.0,0.006018110194640002,0.0031093025607889795,0.0007350653237525491,0.001210895033182506,0.0,0.0009628472769159673,0.002094913123224919,0.0007350653237525491,0.0003466285657620323,0.0,0.0009628472769159673,0.0010143894375640608,0.0008642664674204737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012552085035324968,0.0,0.0,0.0004932910952113628,0.00025916212934910907,0.0006188119455646124,0.0002496469139690121,8.759637218653033e-05,4.130708370511524e-05,0.0,0.00011474072535070501,6.777559661381617e-05,5.7745253739433494e-05,0.0,0.0,0.0,0.0,0.0003197139142956415,7.558306318709844e-05,0.00012451023446289952,0.0,9.900473361897295e-05 +100487,50.0,the Greater Atlanta and Macon Area,G1300890021704,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,197777.0,,13778.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.05179585739417685,0.011930813327715182,0.0,0.06372667072189203,0.02558849528848374,0.005735554743125998,0.022256816072977578,0.0006529022351653085,0.00949290238213941,0.02558849528848374,0.005735554743125998,0.014908235301685297,0.0006529022351653085,0.004910760105339735,0.0,0.007348580771292281,0.004582142276799673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007971451660039055,0.0,0.0,0.006172415734237632,0.002826623544062433,0.006969560900241537,0.0030493332648618204,0.000683495362797726,0.0017765865993017535,7.780514180090278e-05,0.0005852061239297716,0.0,0.0004909879551310281,0.0003061511789316117,0.0,0.0,0.0,0.0027985233535409797,0.0006272773648153797,0.00243414936491894,7.14056114706966e-05,0.0010382052054955409 +100488,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,107174.0,,1429.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00924502906993888,0.0004207545023415051,0.0,0.009665783572280385,0.0024019834161023036,0.0025358514787728833,0.0047279179877989,0.0,0.0,0.0019812289137607986,0.0025358514787728833,0.0047279179877989,0.0,0.0,0.0004207545023415051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.811299889689963e-05,0.0,0.0,0.0011017110422411026,0.0003186392374940551,0.0011298240411380023,0.0002360989624786596,0.0003021921893930816,0.0005634162331522901,0.0,0.0,2.811299889689963e-05,0.0,0.0,0.0,0.0,0.0,0.0002807655054174687,0.00029641321306732115,0.00055264173537498,0.0,0.0 +100489,85.0,Rural Climate Zone 3A,G1300090970300,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,33529.0,,8219.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006855783749353276,0.005654115634986713,0.0,0.012509899384339987,0.003298688346892015,0.0002922588818886151,0.006770723863728761,0.00038054616620883223,0.00176761040565075,0.003298688346892015,0.0002922588818886151,0.0026570097662153426,0.00038054616620883223,0.0002272088681774558,0.0,0.0041137140975134176,0.001540401537473294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003777772193613772,0.0,0.0,0.0008169894645998515,0.0006244559861018507,0.0011947666839612287,0.00039309781710417894,3.482788199981583e-05,0.0003166303176557489,4.5348893715588406e-05,2.707600740501019e-05,0.0,0.0002748559763068886,0.00010292124305448855,0.0,0.0,0.0,0.00031504353604724477,2.7912388776634397e-05,0.0006466427147136613,3.634432757026309e-05,0.00016881686718746782 +100490,50.0,the Greater Atlanta and Macon Area,G1301210002800,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,22024.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.005265959384981703,0.0,0.0,0.005265959384981704,0.0032893430296859955,0.0008298000708264713,0.001083958908427363,0.0,6.285737604187364e-05,0.0032893430296859955,0.0008298000708264713,0.001083958908427363,0.0,6.285737604187364e-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.0006275386985557083,0.00021670431175327206,0.0006275386985557083,0.00039198746003233975,9.88863791834368e-05,0.00012917421365275816,0.0,7.490645687173523e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0003919874600323397,9.888637918343677e-05,0.00012917421365275813,0.0,7.4906456871735225e-06 +100491,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970202,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,5602.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0004940265948550333,0.0,0.0,0.0004940265948550333,0.0002709021333853085,0.00017896124788723374,4.4163213582491154e-05,0.0,0.0,0.0002709021333853085,0.00017896124788723374,4.4163213582491154e-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,5.88709540839949e-05,1.8322490054985542e-05,5.88709540839949e-05,3.2282203472188785e-05,2.132601669000295e-05,5.262733921803173e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2282203472188785e-05,2.132601669000295e-05,5.262733921803173e-06,0.0,0.0 +100492,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,111721.0,,2507.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.013828459978933363,0.0009318220948710469,0.0,0.014760320822228178,0.008140578853429331,0.001979463228396849,0.004349006838907255,0.0,0.0002912331530709742,0.008140578853429331,0.001979463228396849,0.0037084178971071827,0.0,0.0,0.0,0.0006405889418000726,0.0002912331530709742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.225928524666369e-05,0.0,0.0,0.0016479127993114962,0.0005602992205652092,0.0017101720845581602,0.0009700981965314581,0.0002358890863343433,0.00044192551644569493,0.0,0.0,0.0,4.280066964811395e-05,1.9458615598549745e-05,0.0,0.0,0.0,0.0009431902514147198,0.00022934615015384474,0.0005038881052132146,0.0,3.374308827554658e-05 +100493,50.0,the Greater Atlanta and Macon Area,G1301210010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,37752.0,,1865.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003246694791100168,0.0005433229467425045,0.0,0.0037900177378426725,0.002610884234069709,0.0009428572737466922,0.0002362458564268337,0.0,0.0,0.0020675612873272044,0.0009428572737466922,0.0002362458564268337,0.0,0.0,0.0005433229467425045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.630183423849015e-05,0.0,0.0,0.0003869033756617147,0.00012005030768553881,0.00042320520990020487,0.0002463879400204747,0.00011235877883556251,2.8153037232878205e-05,0.0,0.0,3.630183423849015e-05,0.0,0.0,0.0,0.0,0.0,0.00029153948259185537,0.00010528238600514634,2.6379949692288775e-05,0.0,0.0 +100494,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,139935.0,,20454.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.007921606335974033,0.0034784664159158984,0.0,0.01140007275188993,0.005824831524800007,0.00232693263276773,0.0016905722310406146,0.0,0.001557736363281579,0.004278974503669863,0.00232693263276773,0.0010375098288558098,0.0,0.0002781893706806285,0.0015458570211301437,0.0006530624021848048,0.0012795469926009505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023241021404041729,0.0,0.0,0.0009440032965876484,0.00046190117205268847,0.0011764135106280657,0.0005099175427507748,0.00027729629359321317,0.0001236381432177725,0.0,3.3151317025887796e-05,0.00010328487275681808,4.363370362842946e-05,8.54916376551698e-05,0.0,0.0,0.0,0.000601084804636093,0.00024012434368504137,0.00017445608081396684,0.0,0.00016074828149296463 +100495,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,154999.0,,5059.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01381023076514736,0.0014892438352023252,0.0,0.015299474600349685,0.004419610202932178,0.005721371233261837,0.005158462474549373,0.0,0.0,0.0029303663677298524,0.005721371233261837,0.005158462474549373,0.0,0.0,0.0014892438352023252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.950265474218096e-05,0.0,0.0,0.0016457372115204127,0.0005418447012031426,0.0017452398662625936,0.00034920582116061905,0.0006818042145439102,0.0006147235185976986,0.0,0.0,9.950265474218097e-05,0.0,0.0,0.0,0.0,0.0,0.0005041532549962109,0.0006526475860647083,0.0005884355243805161,0.0,0.0 +100496,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,36638.0,,6718.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0018361739590220885,0.001142384916655422,0.0,0.002978576606038931,0.0010028115115567663,0.000530190997543839,0.000772671420324481,0.0,0.0006729026766138438,0.0008353482479443678,0.000530190997543839,0.0003482597590126771,0.0,0.00012237495452120445,0.00016746326361239872,0.00042441166131180385,0.0005505277220926395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.632801518629256e-05,0.0,0.0,0.0002188140531922434,0.00013852283677552121,0.000295142068378536,9.95471780119867e-05,6.318205340434772e-05,4.150158489008453e-05,0.0,1.458323688582443e-05,1.1188994481453547e-05,2.83569042776658e-05,3.6783301074550826e-05,0.0,0.0,0.0,9.936687984274113e-05,5.2535720361701744e-05,7.656269128992408e-05,0.0,6.667677688416894e-05 +100497,85.0,Rural Climate Zone 3A,G1301750950100,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,155425.0,,,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,1459415.2837631335,0.10586927930822065,0.0,0.049120257427653524,0.0,0.0,0.1549895367358742,0.1397634539132426,0.008142414550860207,0.001977045682204086,0.0006604599643614751,0.004446347059711377,0.033894174605021934,0.008142414550860207,0.001977045682204086,0.0006604599643614751,0.004446347059711377,0.0,0.0,0.0,0.0,0.0,0.0,0.10586927930822065,0.0,0.0,0.0,0.0,0.0,0.0,0.005853563601343842,0.00182483177378208,0.005853563601343842,0.004039101526651483,0.000970315383875312,0.0002356006106154618,7.870570330836035e-05,0.0005298623555872524,0.0,0.0,0.0,0.0,0.0,0.0,0.005278512884510687,0.0003075184457334777,7.466802525686359e-05,2.4943905820684595e-05,0.00016792730564788166 +100498,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,11963.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002872499378039886,0.0,0.0,0.002872499378039886,0.0010693197563755056,0.000720709440564325,0.0010055526025224998,0.0,7.691757857755591e-05,0.0010693197563755056,0.000720709440564325,0.0010055526025224998,0.0,7.691757857755591e-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.00034231059837173115,9.89652867043381e-05,0.00034231059837173115,0.00012742891728853507,8.588565126864375e-05,0.00011982989994539485,0.0,9.166129869157525e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012742891728853507,8.588565126864375e-05,0.00011982989994539485,0.0,9.166129869157525e-06 +100499,50.0,the Greater Atlanta and Macon Area,G1300630040613,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,103819.0,,6504.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.008860703130272747,0.001914479020063295,0.0,0.010775182150336043,0.004092366930979773,0.0026006986168799293,0.00408211660247634,0.0,0.0,0.0021778879109164784,0.0026006986168799293,0.00408211660247634,0.0,0.0,0.001914479020063295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001279135528374339,0.0,0.0,0.00105591278672156,0.00041914162419578327,0.001183826339558994,0.0002595346734195606,0.00030992020425449725,0.0004864579090475023,0.0,0.0,0.0001279135528374339,0.0,0.0,0.0,0.0,0.0,0.0004496120526262259,0.0002857283970666879,0.00044848588986608,0.0,0.0 +100500,50.0,the Greater Atlanta and Macon Area,G1301210008904,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,67442.0,,4152.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006009024913090205,0.001222244260412311,0.0,0.007231269173502515,0.003431834534634316,0.0015431040942547936,0.0022563305446134064,0.0,0.0,0.002209590274222005,0.0015431040942547936,0.0022563305446134064,0.0,0.0,0.001222244260412311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.166352545250374e-05,0.0,0.0,0.0007160850145071798,0.000304052086308981,0.0007977485399596837,0.0002633130177450865,0.00018388902254563592,0.00026888297421645747,0.0,0.0,8.166352545250374e-05,0.0,0.0,0.0,0.0,0.0,0.00037859757723023637,0.00017023416065168045,0.00024891680207776696,0.0,0.0 +100501,50.0,the Greater Atlanta and Macon Area,G1300130180402,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,192153.0,,2380.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01732176620733681,0.0007004288845324705,0.0,0.018022195091869277,0.005325843587297045,0.0068382887648604325,0.005858093429318102,0.0,0.0,0.0046254147027645735,0.0068382887648604325,0.005858093429318102,0.0,0.0,0.0007004288845324705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.679826792733401e-05,0.0,0.0,0.00206420200569867,0.0006994132401731094,0.002111000273626004,0.0005512018920213048,0.0008149058944112048,0.0006980978764883003,0.0,0.0,4.679826792733401e-05,0.0,0.0,0.0,0.0,0.0,0.0006238339565609064,0.0008009917426910245,0.0006861781691507897,0.0,0.0 +100502,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,47861.0,,6449.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.014345428602542523,0.004435951927286558,0.0,0.018781308809858066,0.00816840265888099,0.0010725004465674476,0.005842595718815739,0.00036634561194774125,0.0033313926536751334,0.00816840265888099,0.0010725004465674476,0.0014066437915291796,0.00036634561194774125,0.0033313926536751334,0.0,0.004435951927286558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029638292973411005,0.0,0.0,0.0017095140791948714,0.0008375848667083178,0.0020058970089289817,0.0009734110939993075,0.00012780758694270626,0.00016762673550269478,4.3656623920244994e-05,0.000396994945398469,0.0,0.00029638292973411005,0.0,0.0,0.0,0.0,0.0008724085540075172,0.00011454608726285559,0.0006240057812479114,3.9126749614729594e-05,0.0003558021768998022 +100503,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Electricity,2591.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0006222053157408098,0.0,0.0,0.0006222053157408096,0.00023009107914275328,0.0001572261471784234,0.00020610602775835408,0.0,2.8782061661278978e-05,0.00023009107914275328,0.0001572261471784234,0.00020610602775835408,0.0,2.8782061661278978e-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,7.414418909910493e-05,2.619426008983986e-05,7.414418909910493e-05,2.7418467908242714e-05,1.8735624548371454e-05,2.4560324237002453e-05,0.0,3.429772405488304e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.741846790824272e-05,1.8735624548371457e-05,2.4560324237002463e-05,0.0,3.4297724054883047e-06 +100504,85.0,Rural Climate Zone 3A,G1302770960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,73646.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006298949623784603,0.0,0.0,0.006298949623784603,0.0024524985080683227,0.0016170660454322577,0.002229415759890321,0.0,0.0,0.0024524985080683227,0.0016170660454322577,0.002229415759890321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000750634562771553,0.00023019950151596157,0.000750634562771553,0.00029225986160461844,0.00019270286896761417,0.00026567548942482325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029225986160461844,0.00019270286896761417,0.00026567548942482325,0.0,0.0 +100505,50.0,the Greater Atlanta and Macon Area,G1301210011201,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,79213.0,,4804.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01257917858772761,0.0014140542997729533,0.0,0.013993232887500562,0.0033206154014114413,0.004222306724044248,0.006450310762044874,0.0,0.0,0.001906561101638488,0.004222306724044248,0.006450310762044874,0.0,0.0,0.0014140542997729533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.447891163896217e-05,0.0,0.0,0.0014990357461635503,0.0005840671700558906,0.0015935146578025124,0.00022720110249403342,0.0005031639122115707,0.0007686707314579462,0.0,0.0,9.447891163896217e-05,0.0,0.0,0.0,0.0,0.0,0.00037814344673706433,0.0004808258183505735,0.0007345453927148747,0.0,0.0 +100506,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8942.0,,638.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0018022698438532481,0.0005062499983583007,0.0,0.002308602549285288,0.0014399301538013422,0.0004908664826427895,0.0003063470011303947,0.0,7.137620463702231e-05,0.0009336801554430417,0.0004908664826427895,0.0003063470011303947,0.0,7.137620463702231e-05,0.0005062499983583007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3826393767111925e-05,0.0,0.0,0.00021477595753427767,8.21926762887958e-05,0.00024860235130138957,0.00011126638449839204,5.8496411728050014e-05,3.650728037753955e-05,0.0,8.505880930296069e-06,3.3826393767111925e-05,0.0,0.0,0.0,0.0,0.0,0.00015505918160560285,5.2859060472673916e-05,3.2989041278986386e-05,0.0,7.68616161548738e-06 +100507,35.0,Eastern Counties in South Carolina and Georgia,G1300510003501,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8510.0,,413.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006436469456853989,0.00012043132177068596,0.0,0.0007640478938566471,0.0005281665206230664,0.00019919006511277647,3.672168172024195e-05,0.0,0.0,0.00040773519885238047,0.00019919006511277647,3.672168172024195e-05,0.0,0.0,0.00012043132177068596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.045632594675012e-06,0.0,0.0,7.670171092900766e-05,2.6470028173136562e-05,8.474734352368268e-05,4.8588729531923874e-05,2.373695532407306e-05,4.3760260730107244e-06,0.0,0.0,8.045632594675012e-06,0.0,0.0,0.0,0.0,0.0,5.858364367057515e-05,2.209394072066432e-05,4.0731281383475395e-06,0.0,0.0 +100508,50.0,the Greater Atlanta and Macon Area,G1300670031005,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5234.0,,571.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012191849739911307,0.000453069349943926,0.0,0.001672254323935057,0.0011389591124640025,0.00029633944520793845,0.0002026323306613032,0.0,3.4323435601812586e-05,0.0007202959051956283,0.00029633944520793845,0.0002026323306613032,0.0,0.0,0.0004186632072683741,0.0,3.4323435601812586e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.026883616571215e-05,0.0,0.0,0.0001452915595190596,7.556176406132054e-05,0.00017556039568477177,8.583842289203515e-05,3.531508430613869e-05,2.414790861011438e-05,0.0,0.0,2.79702169899297e-05,0.0,2.2930936489175878e-06,0.0,0.0,0.0,0.00011957278841559878,3.111097965965365e-05,2.127320685630797e-05,0.0,3.6034207532113503e-06 +100509,50.0,the Greater Atlanta and Macon Area,G1300770170404,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,97786.0,,19648.0,,9.729435225087556,Education,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.026409730152698322,0.017378433502357488,0.0,0.04378816365505581,0.030366495817436917,0.005907529429902325,0.004093431633348439,0.0006494861112814671,0.0027711284458338905,0.017105470434148895,0.005907529429902325,0.0018530134772241661,0.0006494861112814671,0.0008941384828886989,0.013261025383288022,0.0022404181561242716,0.0018769899629451914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011611235688344498,0.0,0.0,0.0031472012001283623,0.0018696617870912274,0.004308324768962812,0.0020384288960110138,0.0007039899159924822,0.000220820364526825,7.739812020316653e-05,0.00010655291402667938,0.0008860228464987267,0.00014969141636198775,0.0001254093059737353,0.0,0.0,0.0,0.0029877646184818607,0.0005812428117954723,0.00040275342521642224,6.390304746219246e-05,0.00027265179273589147 +100510,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,18191.0,,1510.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016207487981879816,0.000444416188797034,0.0,0.002065164986985016,0.0009365240257806981,0.0006398476017008053,0.0004887933595035122,0.0,0.0,0.0004921078369836641,0.0006398476017008053,0.0004887933595035122,0.0,0.0,0.000444416188797034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.969339801292114e-05,0.0,0.0,0.00019314284788531693,8.383950466920937e-05,0.00022283624589823807,5.8643948530439815e-05,7.624993345251885e-05,5.824896590235827e-05,0.0,0.0,2.969339801292114e-05,0.0,0.0,0.0,0.0,0.0,0.00010105318432845855,6.904108795595859e-05,5.274197361382092e-05,0.0,0.0 +100511,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8054.0,,1005.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,24284.436554246196,0.0,0.0,0.0006051376569781035,0.0002959398735287479,0.0,0.0009010775305068514,0.0004406413672224165,0.00025091822109001797,0.00020948725258811924,0.0,0.0,0.00014470149369366864,0.00025091822109001797,0.00020948725258811924,0.0,0.0,0.0002959398735287479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.977335608258815e-05,0.0,0.0,7.211228638211689e-05,4.484835960856863e-05,9.188564246470503e-05,1.7243606364320985e-05,2.990110830003995e-05,2.4963914537190892e-05,0.0,0.0,1.977335608258815e-05,0.0,0.0,0.0,0.0,0.0,4.493355316604458e-05,2.5586901426771174e-05,2.136205835850539e-05,0.0,0.0 +100512,50.0,the Greater Atlanta and Macon Area,G1300210011800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6805.0,,43.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013214936242066542,3.424072852807327e-05,0.0,0.0013558170598084666,0.0008042435850410253,0.0002940236471432379,0.0002232263920223907,0.0,3.424072852807327e-05,0.0008042435850410253,0.0002940236471432379,0.0002232263920223907,0.0,0.0,0.0,0.0,3.424072852807327e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.290220780500794e-06,0.0,0.0,0.00015748160204158806,5.175258737231001e-05,0.00015977182282208885,9.584122532559783e-05,3.5038621558257946e-05,2.660175515773226e-05,0.0,0.0,0.0,0.0,2.290220780500794e-06,0.0,0.0,0.0,9.47734523956562e-05,3.464825414094588e-05,2.6305383382957223e-05,0.0,4.0349865581861025e-06 +100513,50.0,the Greater Atlanta and Macon Area,G1301510070113,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12888.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0027131228469442405,0.0,0.0,0.0027131228469442405,0.0016409083429878592,0.00046820474443821935,0.0005256861606870379,0.0,7.832359883112413e-05,0.0016409083429878592,0.00046820474443821935,0.0005256861606870379,0.0,7.832359883112413e-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.000323320167564139,9.28514968942106e-05,0.000323320167564139,0.00019554542508451767,5.579549654251283e-05,6.264550009260052e-05,0.0,9.333745844507977e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019554542508451767,5.579549654251283e-05,6.264550009260052e-05,0.0,9.333745844507977e-06 +100515,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,31026.0,,3259.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0027145570562444065,0.0009592957136535936,0.0,0.0036738220802917027,0.0015008751959891546,0.0008295400582269063,0.0013434375156819395,0.0,0.0,0.000541579482335561,0.0008295400582269063,0.0013434375156819395,0.0,0.0,0.0009592957136535936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.409434771718794e-05,0.0,0.0,0.00032348674928382796,0.00016841772018866489,0.0003875810970010159,6.453862733020974e-05,9.885414499549891e-05,0.00016009397695811934,0.0,0.0,6.409434771718794e-05,0.0,0.0,0.0,0.0,0.0,0.0001583394193321695,8.751486564867687e-05,0.00014173004971405217,0.0,0.0 +100516,35.0,Eastern Counties in South Carolina and Georgia,G1302450010510,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,59424.0,,1005.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.005548193541296937,0.0002929229929776786,0.0,0.005841116534274615,0.004151919175143485,0.0012447404785585075,0.00044445688057262244,0.0,0.0,0.003858996182165807,0.0012447404785585075,0.00044445688057262244,0.0,0.0,0.0002929229929776786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9570877459140795e-05,0.0,0.0,0.0006611685041178776,0.00022068309756304537,0.0006807393815770184,0.00045986981423195726,0.0001483335420975816,5.296514778833878e-05,0.0,0.0,1.9570877459140795e-05,0.0,0.0,0.0,0.0,0.0,0.00048387579242089825,0.00014506539265665046,5.179819649946966e-05,0.0,0.0 +100517,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,8587.0,,543.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.001800615702378462,0.0004305730258868344,0.0,0.0022311887282652964,0.0010590640792318316,0.00045505431971366937,0.0006310549726309157,0.0,8.601535668887971e-05,0.0007145064100338769,0.00045505431971366937,0.0006310549726309157,0.0,0.0,0.0003445576691979547,0.0,8.601535668887971e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.87678510734714e-05,0.0,0.0,0.00021458061309317082,8.570051388622872e-05,0.00024334846416664224,8.51482208677554e-05,5.422913661469962e-05,7.52032556107158e-05,0.0,0.0,2.3020911942389906e-05,0.0,5.746939131081494e-06,0.0,0.0,0.0,0.00011550865862230247,4.963128775789989e-05,6.88271038881818e-05,0.0,9.381413898258066e-06 +100518,81.0,the Columbus-Albany Area,G1302150002500,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,70307.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006355295740947186,0.0,0.0,0.006355295740947185,0.003014670716229642,0.0011919229293901807,0.0021486714057210653,0.0,0.0,0.003014670716229642,0.0011919229293901807,0.0021486714057210653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000757347922243734,0.00025528795442478013,0.000757347922243734,0.0003592522985948833,0.00014203907903643533,0.0002560528873932218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035925229859488337,0.00014203907903643536,0.00025605288739322183,0.0,0.0 +100519,50.0,the Greater Atlanta and Macon Area,G1301170130307,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,12458.0,,526.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028729129134085827,0.00041733989408854525,0.0,0.0032902528074971278,0.0015385169856985965,0.0007585892803369277,0.0008717325572123002,0.0,0.00012141398424930329,0.0012425910758593547,0.0007585892803369277,0.0008717325572123002,0.0,0.0,0.00029592590983924187,0.0,0.00012141398424930329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.788377146847963e-05,0.0,0.0,0.00034235555373122057,0.0001382670259815234,0.0003702393251997002,0.00014807547902055093,9.039858184082091e-05,0.0001038814928698487,0.0,0.0,1.977172697467699e-05,0.0,8.112044493802634e-06,0.0,0.0,0.0,0.00017312332027964462,8.536109523733473e-05,9.809266722650546e-05,0.0,1.366224245621537e-05 +100520,50.0,the Greater Atlanta and Macon Area,G1302170100700,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,63278.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00563798757295098,0.0,0.0,0.005637987572950979,0.001709871414876511,0.0015910719488981032,0.0023370442091763645,0.0,0.0,0.001709871414876511,0.0015910719488981032,0.0023370442091763645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006718681395509542,0.00021790851116151633,0.0006718681395509542,0.00020376208913549298,0.00018960498517707074,0.0002785010652383904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000203762089135493,0.00018960498517707076,0.00027850106523839044,0.0,0.0 +100521,35.0,Eastern Counties in South Carolina and Georgia,G1302450001602,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,11293.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.00145410829673312,0.0,0.0,0.00145410829673312,0.0010460735526075958,8.838751013369331e-05,0.0003080187351292759,0.0,1.1628498862555079e-05,0.0010460735526075958,8.838751013369331e-05,0.0003080187351292759,0.0,1.1628498862555079e-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.00017328185320377736,5.244287370121023e-05,0.00017328185320377736,0.00012465754042566466,1.0532882310377906e-05,3.670569610571473e-05,0.0,1.3857343620200703e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012465754042566466,1.0532882310377906e-05,3.670569610571473e-05,0.0,1.3857343620200703e-06 +100522,35.0,Eastern Counties in South Carolina and Georgia,G1301910110300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,149634.0,,5703.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,729707.6418815667,0.0,0.0,0.0398410808018584,0.005044099292187092,0.0,0.04488508787679272,0.033462321210285154,0.005159278640900788,0.0033464718858857256,0.0006612899196364336,0.0022556340028318457,0.030206959970139325,0.005159278640900788,0.0015578260510972352,0.0006612899196364336,0.0022556340028318457,0.003255361240145829,0.0017886458347884905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003370142018344264,0.0,0.0,0.004747784228329534,0.0015098652810458248,0.005084798430163961,0.0035997047581429907,0.0006148212163883769,0.00018564310523261037,7.880463550719522e-05,0.00026879952370743203,0.00021750225490798725,0.00011950578556401578,0.0,0.0,0.0,0.0,0.0037907725351179204,0.0005844678750778316,0.000379104415226901,7.491409963328026e-05,0.0002555290582945245 +100523,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950400,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,47843.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005808950892470036,0.0,0.0,0.005808950892470036,0.0036974693803558433,0.0016399010072436586,0.00047158050487053474,0.0,0.0,0.0036974693803558433,0.0016399010072436586,0.00047158050487053474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006922427808522766,0.0001717408370349723,0.0006922427808522766,0.00044062112649145206,0.00019542420905095564,5.6197445309869e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044062112649145206,0.00019542420905095564,5.6197445309869e-05,0.0,0.0 +100524,50.0,the Greater Atlanta and Macon Area,G1301530021500,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,154860.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013655757692017156,0.0,0.0,0.013655757692017156,0.00907055912089414,0.003779265483641708,0.0008059330874813067,0.0,0.0,0.00907055912089414,0.003779265483641708,0.0008059330874813067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016273292305959916,0.0002949419615259019,0.0016273292305959916,0.0010809203215365291,0.0004503674809130409,9.604142814642138e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010809203215365291,0.0004503674809130409,9.604142814642138e-05,0.0,0.0 +100525,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4964.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013176063917409065,0.0,0.0,0.0013176063917409065,0.0006913484293868707,0.00029683568765037437,0.00028823415198148643,0.0,4.118812272217509e-05,0.0006913484293868707,0.00029683568765037437,0.00028823415198148643,0.0,4.118812272217509e-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.00015702127322601112,4.698738041281399e-05,0.00015702127322601112,8.238910444392864e-05,3.537438639182437e-05,3.43493275495982e-05,0.0,4.908454840659942e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.238910444392864e-05,3.537438639182437e-05,3.43493275495982e-05,0.0,4.908454840659942e-06 +100526,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen5_led,100001_200000,NaturalGas,376963.0,,26550.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.017872257502497487,0.004515018805255026,0.0,0.02238729403811393,0.01168792516954449,0.004913881015760534,0.0031216783530601767,0.0,0.0026638094997487333,0.010948214491099886,0.004913881015760534,0.0015398996196930063,0.0,0.00047028010630548054,0.0007397106784446029,0.0015817787333671704,0.002193529393443253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030166767406776085,0.0,0.0,0.00212980329360241,0.0007768515553635433,0.0024314709676701712,0.0013046781179686872,0.0005855779534440273,0.0001835069398133368,0.0,5.604239527016321e-05,4.9423227116960924e-05,0.00010568538736302576,0.00014655905958777419,0.0,0.0,0.0,0.0012694187459040985,0.0005336937553983157,0.00033904366793717755,0.0,0.00028931479843057956 +100527,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,3103.0,,159.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0002666498294640233,4.6441233540322536e-05,0.0,0.00031309106300434576,0.0002318113109089219,6.888732352482113e-05,1.2392428570602744e-05,0.0,0.0,0.00018537007736859937,6.888732352482113e-05,1.2392428570602744e-05,0.0,0.0,4.6441233540322536e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.103320193636098e-06,0.0,0.0,3.177531253368284e-05,1.2710680885741838e-05,3.487863272731893e-05,2.208961526290766e-05,8.208954189132323e-06,1.476743081642852e-06,0.0,0.0,3.1033201936360983e-06,0.0,0.0,0.0,0.0,0.0,2.5823993497758837e-05,7.67411127527739e-06,1.3805279542827052e-06,0.0,0.0 +100528,35.0,Eastern Counties in South Carolina and Georgia,G1300510000601,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,61235.0,,959.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0054205824019380525,0.00028228299872627016,0.0,0.005702865400664322,0.002434729226021953,0.0012809227876535189,0.001987244076595148,0.0,0.0,0.002152446227295683,0.0012809227876535189,0.001987244076595148,0.0,0.0,0.00028228299872627016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8859973522576935e-05,0.0,0.0,0.0006459608552857863,0.0002229468678559527,0.0006648208288083633,0.0002565030660623233,0.0001526452174533656,0.00023681622899414872,0.0,0.0,1.8859973522576935e-05,0.0,0.0,0.0,0.0,0.0,0.0002838325277288332,0.0001493256616626672,0.0002316662171077361,0.0,0.0 +100529,50.0,the Greater Atlanta and Macon Area,G1301990970600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,7530.0,,7.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,1870.6521585294563,0.0,0.0,0.00032806487735523705,1.2588556608237489e-06,0.0,0.00032932373301606074,0.00017662986046656603,7.925471554763603e-05,1.4787121424324035e-05,0.0,5.8652035577534666e-05,0.0001753710048057423,7.925471554763603e-05,1.4787121424324035e-05,0.0,5.8652035577534666e-05,1.2588556608237489e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.374017797385669e-08,0.0,0.0,3.9095142621096774e-05,1.268446012528446e-05,3.917888279907063e-05,2.0898776180363626e-05,9.444700184635062e-06,1.7621655378043938e-06,0.0,6.9895007182936875e-06,8.374017797385669e-08,0.0,0.0,0.0,0.0,0.0,2.1013245959100983e-05,9.428750194457076e-06,1.759189633596689e-06,0.0,6.977697011915885e-06 +100530,81.0,the Columbus-Albany Area,G1302150010106,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,15050.0,,1122.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003340786829551845,0.0008896799922137299,0.0,0.004230466821765574,0.0028445443871160003,0.0007333636228464389,0.0005571975557817141,0.0,9.527854894768216e-05,0.0019548643949022703,0.0007333636228464389,0.0005571975557817141,0.0,9.527854894768216e-05,0.0008896799922137299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.944500923322447e-05,0.0,0.0,0.00039811547233434817,0.00017711346345530038,0.0004575604815675726,0.0002329576239470862,8.739360515902917e-05,6.640021630273819e-05,0.0,1.1354170874388361e-05,5.944500923322447e-05,0.0,0.0,0.0,0.0,0.0,0.0003076613419854062,7.931942893567285e-05,6.026559070030766e-05,0.0,1.0305174482225682e-05 +100531,50.0,the Greater Atlanta and Macon Area,G1300570090701,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,21407.0,,285.0,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.005521358828688686,0.00022587301838204854,0.0,0.005747149139996995,0.0022807302654351412,0.0011129890913098598,0.0021276394719436835,0.0,0.00022587301838204854,0.0022807302654351412,0.0011129890913098598,0.0021276394719436835,0.0,0.0,0.0,0.0,0.00022587301838204854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5090455817418601e-05,0.0,0.0,0.0006579653295687055,0.0001951313124587828,0.0006730557853861241,0.000271788428775377,0.00013263188591638555,0.00025354501487694276,0.0,0.0,0.0,0.0,1.5090455817418601e-05,0.0,0.0,0.0,0.00026709915867211253,0.0001303435370703009,0.0002491705053974505,0.0,2.645227017455538e-05 +100532,50.0,the Greater Atlanta and Macon Area,G1300890021303,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,39447.0,,2212.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003471178609907971,0.0006510186183931691,0.0,0.00412219722830114,0.0016116953643301594,0.001409236031584214,0.001101235142780469,0.0,0.0,0.0009606767459369903,0.001409236031584214,0.001101235142780469,0.0,0.0,0.0006510186183931691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.349690300161224e-05,0.0,0.0,0.0004136538905469097,0.00016529767323138325,0.0004571507935485219,0.00011448205873950025,0.00016793603345555095,0.00013123214112862943,0.0,0.0,4.349690300161224e-05,0.0,0.0,0.0,0.0,0.0,0.00017873667220567584,0.00015628397537916883,0.00012212674249288344,0.0,0.0 +100533,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,134103.0,,2140.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.015085923827184993,0.0007954276431933154,0.0,0.01588135147037831,0.007859885271624362,0.0024853626491651627,0.005235183290574789,0.0,0.0003009202590139949,0.007859885271624362,0.0024853626491651627,0.004439755647381474,0.0,0.0003009202590139949,0.0,0.0007954276431933154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.314524290830712e-05,0.0,0.0,0.001797762221537116,0.0006082838476284492,0.001850907464445423,0.0009366482933898614,0.0002961761658531636,0.0005290776400007737,0.0,3.586012229331734e-05,0.0,5.314524290830712e-05,0.0,0.0,0.0,0.0,0.0009160379295218524,0.0002896589933025435,0.0006101394990431508,0.0,3.507104257787612e-05 +100534,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,12216.0,,683.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029768757050988915,0.0005419794542136815,0.0,0.003518855159312574,0.0022440910317686282,0.00038210668067560025,0.0008183864946504471,0.0,7.418824514415875e-05,0.0017021115775549469,0.00038210668067560025,0.0008183864946504471,0.0,7.418824514415875e-05,0.0005419794542136815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.621449574896741e-05,0.0,0.0,0.00035474516590662167,0.00014680078735145074,0.00039095966165558917,0.00020283542673181664,4.5534483552040465e-05,9.752461358169707e-05,0.0,8.840786092246816e-06,3.621449574896741e-05,0.0,0.0,0.0,0.0,0.0,0.000249327986172639,4.245366513535518e-05,9.092619405072287e-05,0.0,8.242627191864415e-06 +100535,50.0,the Greater Atlanta and Macon Area,G1300890021503,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,136612.0,,10753.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,153306.56730200956,0.0,0.0,0.015758712709139665,0.00399635743415753,0.0,0.0197550701432972,0.01325099221945801,0.001434621641737593,0.004717504348979763,0.0,0.0003519519331218279,0.010311536792107813,0.001434621641737593,0.0040125155268704886,0.0,0.0,0.0029394554273502,0.0007049888221092742,0.0003519519331218279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026701382951369073,0.0,0.0,0.0018779338405191185,0.0008582771203031062,0.0021449476700328095,0.001228804931409553,0.0001709609521466557,0.0004781633393918171,0.0,0.0,0.00019639766043775772,4.710333553921123e-05,2.3515422485580714e-05,0.0,0.0,0.0,0.0014387539340827411,0.0001557670170494317,0.0005122128085759821,0.0,3.821391032465395e-05 +100536,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,15875.0,,177.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0038118036144972004,0.00014035390413560467,0.0,0.0039521575186328055,0.0026166863989642085,0.0007786043921818401,0.0004165128233511522,0.0,0.00014035390413560467,0.0026166863989642085,0.0007786043921818401,0.0004165128233511522,0.0,0.0,0.0,0.0,0.00014035390413560467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.377346230379695e-06,0.0,0.0,0.00045424551594786856,0.00015798917765807706,0.0004636228621782482,0.00031182562995917955,9.278483091332309e-05,4.9635055075365955e-05,0.0,0.0,0.0,0.0,9.377346230379695e-06,0.0,0.0,0.0,0.0003069603455811534,9.133714815414937e-05,4.886062015129555e-05,0.0,1.6464748291649825e-05 +100538,50.0,the Greater Atlanta and Macon Area,G1300570090803,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,46090.0,,806.0,3821.0,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.0051848490880948535,0.0002995253157581999,0.0004594013122418136,0.005943814464518639,0.0025463139197586487,0.0012346797750736464,0.002032936053202324,0.0,0.0001298459680602494,0.0020869126075168352,0.0012346797750736464,0.001733410737444124,0.0,0.0001298459680602494,0.0,0.0002995253157581999,0.0,0.0,0.0,0.0,0.0,0.0004594013122418136,0.0,0.0,2.0013604034451034e-05,0.0,3.704946584778207e-05,0.0006178707546740475,0.0002101340585013003,0.0006749338245562806,0.00024869427168207326,0.00014713495252102906,0.0002065679795703061,0.0,1.5473550900639223e-05,0.0,2.0013604034451034e-05,0.0,3.704946584778207e-05,0.0,0.0,0.00028913981125128875,0.00014020073265531036,0.000230844571891817,0.0,1.4744308785084885e-05 +100539,50.0,the Greater Atlanta and Macon Area,G1301350050535,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,152999.0,,3042.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007875649239173256,0.0005173542158757207,0.0,0.008393003455048977,0.0030285230341592193,0.0025194488970666632,0.0016567958925354143,0.0,0.0011882356312876788,0.0030285230341592193,0.0025194488970666632,0.0011394416766596935,0.0,0.0011882356312876788,0.0,0.0005173542158757207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.456702536379457e-05,0.0,0.0,0.0009385250296829579,0.0002847578461838405,0.0009730920550467524,0.00036090290263208536,0.0003002375777660211,0.0001357849366995549,0.0,0.00014159961258529633,0.0,3.456702536379457e-05,0.0,0.0,0.0,0.0,0.00035112957105880554,0.00029210707680062147,0.00019209034387927538,0.0,0.00013776506330804973 +100540,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,17887.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015936805654334077,0.0,0.0,0.0015936805654334077,0.0007123978309885747,0.0004113021036018127,0.00046998063084302045,0.0,0.0,0.0007123978309885747,0.0004113021036018127,0.00046998063084302045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018991545064488564,6.692558505983489e-05,0.00018991545064488564,8.489490180476672e-05,4.901397811517182e-05,5.600657072494712e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.489490180476672e-05,4.901397811517182e-05,5.600657072494712e-05,0.0,0.0 +100541,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,19905.0,,119.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0046901527376086456,9.445147821028907e-05,0.0,0.004784604215818934,0.0027277619989960985,0.0014190052641452975,0.0005548817577170135,0.0,8.287248788678604e-05,0.0026333105207858093,0.0014190052641452975,0.0005548817577170135,0.0,8.287248788678604e-05,9.445147821028907e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.309983064495483e-06,0.0,0.0,0.0005589138686741666,0.000187021417840123,0.0005652238517386621,0.000313805083316583,0.0001690993377449862,6.612388278435113e-05,0.0,9.87570883140853e-06,6.309983064495483e-06,0.0,0.0,0.0,0.0,0.0,0.0003222411037889856,0.0001676325950610238,6.555033398988219e-05,0.0,9.79004839139394e-06 +100542,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4762.0,,689.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008030029789349359,0.000546693757416822,0.0,0.001349696736351758,0.0008271534444668136,0.0002738431211508469,0.00014085014657804054,0.0,0.00010785002415605687,0.00038830971120604836,0.0002738431211508469,0.00014085014657804054,0.0,0.0,0.00043884373326076516,0.0,0.00010785002415605687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.652509715838325e-05,0.0,0.0,9.569659755589165e-05,6.073748228717307e-05,0.00013222169471427487,4.627618967194472e-05,3.263481661422981e-05,1.6785591269717116e-05,0.0,0.0,2.9319540926230188e-05,0.0,7.205556232153064e-06,0.0,0.0,0.0,8.10312622610125e-05,2.682676825779546e-05,1.3798244138636562e-05,0.0,1.0565420056830344e-05 +100543,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,5035.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,9713.774621698478,0.0,0.0,0.0003390894599833181,0.0,0.0,0.00033908945998331803,0.0001387477100719143,0.00011652843511237748,8.378262519272859e-05,0.0,0.0,0.0001387477100719143,0.00011652843511237748,8.378262519272859e-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,4.0407368986974006e-05,1.4990659689347925e-05,4.0407368986974006e-05,1.653377818717617e-05,1.3886033129110355e-05,9.983900564253689e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6533778187176172e-05,1.3886033129110356e-05,9.98390056425369e-06,0.0,0.0 +100544,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001600,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,221949.0,,,,7.614023970037612,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.048051546082346255,0.0,0.0,0.048051546082346255,0.03834313301517406,0.00544276468748325,0.0016526248205805756,0.0007783935071957244,0.001834630051912637,0.03834313301517406,0.00544276468748325,0.0016526248205805756,0.0007783935071957244,0.001834630051912637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005726210556644128,0.0015713360967728764,0.005726210556644128,0.0045692775976455945,0.0006486038255124272,0.00019694012920132308,9.275966085438735e-05,0.0002186293434303945,0.0,0.0,0.0,0.0,0.0,0.0,0.0045692775976455945,0.0006486038255124272,0.00019694012920132308,9.275966085438735e-05,0.0002186293434303945 +100545,50.0,the Greater Atlanta and Macon Area,G1301510070113,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,87296.0,,18368.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56751.431377317895,0.0,0.0,0.017720068398740067,0.012635481053588322,0.0,0.030355549452328393,0.013133719692233774,0.0017070070301425588,0.011562908887049859,0.00036842549110719394,0.0035834166318239897,0.013133719692233774,0.0017070070301425588,0.002128935619627398,0.00036842549110719394,0.00038190884565812884,0.0,0.009433973267422461,0.0032015077861658613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008442285452384373,0.0,0.0,0.002111668218999616,0.0015277971257131825,0.002955896764238053,0.0015651214119078358,0.00020342091317306977,0.00025370137333008706,4.390459354523168e-05,4.551138030530635e-05,0.0,0.0006303226203732521,0.00021390592486518522,0.0,0.0,0.0,0.0012789068305830193,0.0001662212230700693,0.0011259478276973984,3.587573727620461e-05,0.000348938161819795 +100546,35.0,Eastern Counties in South Carolina and Georgia,G1301790010205,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,14777.0,,488.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0017243699872800465,0.00014223956616699177,0.0,0.0018666095534470382,0.001311805386117063,0.00040199458855864537,0.00015280957877132943,0.0,0.0,0.0011695658199500714,0.00040199458855864537,0.00015280957877132943,0.0,0.0,0.00014223956616699177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.503257608395506e-06,0.0,0.0,0.00020549014245129253,6.880939603356267e-05,0.00021499340005968806,0.00013937510436886965,4.790498899709111e-05,1.8210049085331726e-05,0.0,0.0,9.503257608395506e-06,0.0,0.0,0.0,0.0,0.0,0.00015109185510011984,4.6301157754291295e-05,1.760038720527688e-05,0.0,0.0 +100547,85.0,Rural Climate Zone 3A,G1302090950300,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,10083.0,,163.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0011523006261341979,6.0486289508221226e-05,0.0,0.0012127869156424193,0.0005859924127052079,0.00015673737415807486,0.000432471157720216,0.0,3.7585971058920306e-05,0.0005859924127052079,0.00015673737415807486,0.0003719848682119948,0.0,3.7585971058920306e-05,0.0,6.0486289508221226e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.041674015345683e-06,0.0,0.0,0.00013731672606619283,4.537130435355992e-05,0.0001413584000815385,6.983122093950615e-05,1.8677993037115812e-05,4.4328487801313184e-05,0.0,4.479024288257686e-06,0.0,4.041674015345683e-06,0.0,0.0,0.0,0.0,6.830132222860495e-05,1.8268785850341003e-05,5.040739650819678e-05,0.0,4.380895494395742e-06 +100548,50.0,the Greater Atlanta and Macon Area,G1300630040522,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,37834.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003226367620471196,0.0,0.0,0.003226367620471196,0.0010191711355404117,0.0009309998966471118,0.0012761658986773748,0.0,0.0,0.0010191711355404117,0.0009309998966471118,0.0012761658986773748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003844818325414334,0.00013954583969267025,0.0003844818325414334,0.00012145323532867677,0.00011094598894669335,0.00015207895102750356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012145323532867677,0.00011094598894669335,0.00015207895102750356,0.0,0.0 +100549,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,292075.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.024950005438300112,0.0,0.0,0.024950005438300112,0.009349312352138473,0.005950254317030105,0.009650469458737833,0.0,0.0,0.009349312352138473,0.005950254317030105,0.009650469458737833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002973245369851473,0.0009304355894705045,0.002973245369851473,0.001114140024178881,0.0007090806509561168,0.0011500283519393184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001114140024178881,0.0007090806509561168,0.0011500283519393184,0.0,0.0 +100550,35.0,Eastern Counties in South Carolina and Georgia,G1302450000700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,16032.0,,88.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035940358893416036,7.013559853093268e-05,0.0,0.003664171487872536,0.0017132770325097536,0.0009111838313859499,0.0009501388631171637,0.0,8.965446793340924e-05,0.0016431414339788209,0.0009111838313859499,0.0009501388631171637,0.0,8.965446793340924e-05,7.013559853093268e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6862462994224285e-06,0.0,0.0,0.00042829007236783444,0.000131581993270956,0.0004329763186672568,0.00019580805126525762,0.00010858294160111456,0.00011322509150527402,0.0,1.0683843940783167e-05,4.6862462994224285e-06,0.0,0.0,0.0,0.0,0.0,0.00020244914432865108,0.00010766991180636005,0.00011227302775995864,0.0,1.0594007842252364e-05 +100551,85.0,Rural Climate Zone 3A,G1301750950500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5024.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010860265852708458,0.0,0.0,0.0010860265852708458,0.0004692799363968303,0.0002384444935904233,0.0003376102750038529,0.0,4.060917320599995e-05,0.0004692799363968303,0.0002384444935904233,0.0003376102750038529,0.0,4.060917320599995e-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.00012942161929646354,3.7061638742608145e-05,0.00012942161929646354,5.592401705034911e-05,2.841539322456053e-05,4.023296397594731e-05,0.0,4.839388856489499e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.592401705034911e-05,2.841539322456053e-05,4.023296397594731e-05,0.0,4.839388856489499e-06 +100552,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,69149.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.006381219879476717,0.0,0.0,0.006381219879476717,0.003937299321516331,0.001974739567445435,0.0004691809905149525,0.0,0.0,0.003937299321516331,0.001974739567445435,0.0004691809905149525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007604368871078969,0.00022659668802434645,0.0007604368871078969,0.00046919988594899153,0.00023532566466588254,5.591133649302297e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046919988594899153,0.00023532566466588254,5.591133649302297e-05,0.0,0.0 +100553,85.0,Rural Climate Zone 3A,G1302770960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,24786.0,,3022.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0012419940871132788,0.0005138790650373903,0.0,0.001755873152150669,0.0005588078008758042,0.0001388464602804335,0.0008498339532245508,0.0,0.00020836720740846057,0.0005457227941478052,0.0001388464602804335,0.0003490398949151595,0.0,0.00020836720740846057,1.3085006727998966e-05,0.0005007940583093914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.433481559208449e-05,0.0,0.0,0.00014800505769858798,7.49280875685257e-05,0.00018233987329067247,6.50323012591877e-05,1.654595507198736e-05,4.159413504624481e-05,0.0,2.483055344221625e-05,8.742743645225945e-07,3.34605412275619e-05,0.0,0.0,0.0,0.0,5.8029786195392645e-05,1.4418607598950404e-05,8.825160015646682e-05,0.0,2.163803811810307e-05 +100554,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,173013.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.01976625472816143,0.0,0.0,0.019766254728161427,0.004633056414732701,0.005733861903025002,0.009399367100010029,0.0,0.0,0.004633056414732701,0.005733861903025002,0.009399367100010029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002355505296697685,0.0007101806670614576,0.002355505296697685,0.0005521121261911999,0.0006832929287239202,0.0011201038990019617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005521121261912,0.0006832929287239203,0.001120103899001962,0.0,0.0 +100555,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4407.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010581543014206991,0.0,0.0,0.0010581543014206991,0.000383099165560472,0.00025316635271602,0.00037805403406237424,0.0,4.391745615557224e-05,0.000383099165560472,0.00025316635271602,0.00037805403406237424,0.0,4.391745615557224e-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.00012610234403808842,4.061543948948021e-05,0.00012610234403808842,4.565468638302529e-05,3.0170335712098533e-05,4.50534480692592e-05,0.0,5.233730239504842e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.565468638302529e-05,3.0170335712098533e-05,4.50534480692592e-05,0.0,5.233730239504842e-06 +100556,50.0,the Greater Atlanta and Macon Area,G1301350050730,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,13426.0,,1549.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001196219474271859,0.0004558941015523748,0.0,0.001652113575824234,0.0007099119728784608,0.0004283041454907401,0.0005139281470613308,0.0,0.0,0.0002540178713260859,0.0004283041454907401,0.0005139281470613308,0.0,0.0,0.0004558941015523748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0460108936010528e-05,0.0,0.0,0.00014255069188329344,8.046926027651278e-05,0.00017301080081930396,3.027071878285237e-05,5.1040008618278094e-05,6.124362169114966e-05,0.0,0.0,3.0460108936010528e-05,0.0,0.0,0.0,0.0,0.0,7.434261223695761e-05,4.485239047116465e-05,5.381901195400709e-05,0.0,0.0 +100557,50.0,the Greater Atlanta and Macon Area,G1300670031004,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,12958.0,,2550.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011757188172649936,0.0007507291492544054,0.0,0.001926447966519399,0.0009338233404265001,0.00044730101178901805,0.0005453236143038808,0.0,0.0,0.0001830941911720948,0.00044730101178901805,0.0005453236143038808,0.0,0.0,0.0007507291492544054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.01583407408194e-05,0.0,0.0,0.0001401085216161061,9.602647434634317e-05,0.0001902668623569255,2.1819040458410052e-05,5.3304142588221e-05,6.498533856947506e-05,0.0,0.0,5.01583407408194e-05,0.0,0.0,0.0,0.0,0.0,9.222965793341822e-05,4.41779697771648e-05,5.385923464634247e-05,0.0,0.0 +100558,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,51206.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00420671314852919,0.0,0.0,0.004206713148529189,0.002787385220402485,0.0009889036504943237,0.0004304242776323811,0.0,0.0,0.002787385220402485,0.0009889036504943237,0.0004304242776323811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005013041396558988,0.00013223929027020577,0.0005013041396558988,0.00033216615929517065,0.00011784532869491297,5.129265166581522e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003321661592951707,0.000117845328694913,5.1292651665815226e-05,0.0,0.0 +100559,50.0,the Greater Atlanta and Macon Area,G1300210012200,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,32009.0,,2546.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026901895088440307,0.0007492867377584134,0.0,0.0034394455569961464,0.0015914402241736755,0.0008140724966528639,0.0010339635257759043,0.0,0.0,0.000842153486415262,0.0008140724966528639,0.0010339635257759043,0.0,0.0,0.0007492867377584134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.006237460027591e-05,0.0,0.0,0.0003205831632415383,0.00013881142565102587,0.0003706455378418142,0.000100357327140832,9.701098574168978e-05,0.00012321485035901645,0.0,0.0,5.006237460027591e-05,0.0,0.0,0.0,0.0,0.0,0.0001714986348983253,8.772702848875687e-05,0.00011142318166382825,0.0,0.0 +100560,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Electricity,12609.0,,1270.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.002881708435407252,0.0008734775269991268,0.0,0.0037551859624063797,0.0007319023042143108,0.00029677724006259857,0.0018519530915651087,0.00036634561194774125,0.0005082077146166199,0.0007319023042143108,0.00029677724006259857,0.0009784755645659818,0.00036634561194774125,0.0005082077146166199,0.0,0.0008734775269991268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.835841068212686e-05,0.0,0.0,0.00034341030696477987,0.00014885791764336292,0.00040176871764690674,8.722006427515128e-05,3.5366646346945224e-05,0.00011660395266103764,4.3657039521555386e-05,6.056260416009034e-05,0.0,5.835841068212686e-05,0.0,0.0,0.0,0.0,7.830649484494897e-05,3.175230530802536e-05,0.0001981411376664647,3.919545082488969e-05,5.437332900257798e-05 +100561,35.0,Eastern Counties in South Carolina and Georgia,G1302450000700,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,NaturalGas,101717.0,,5176.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004700265621371738,0.0008802060623371012,0.0,0.00558047168370884,0.0028901730239985477,0.000986162702183337,0.0011161971728380043,0.0,0.0005879210543275308,0.0026772845744279733,0.000986162702183337,0.0009104540589197116,0.0,0.0001263465554792963,0.00021288844957057396,0.0002057431139182927,0.0004615744988482346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.881002864114627e-05,0.0,0.0,0.0005601209584452201,0.00018638926682793363,0.0006189309870863663,0.000319046480062876,0.0001175189749741534,0.00010849693212734227,0.0,1.5056458390252017e-05,1.4223914549477142e-05,1.3746506573842988e-05,3.0839607517826146e-05,0.0,0.0,0.0,0.00032054954204246446,0.00010937545951033926,0.00012379760298478781,0.0,6.520641607161703e-05 +100562,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,NaturalGas,304008.0,,2921.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.025544064147404743,0.0008596772516112502,0.0,0.026403741399015992,0.006153941234027957,0.010348136278703509,0.009901663886284526,0.0,0.0,0.0052942639824167075,0.010348136278703509,0.009901663886284526,0.0,0.0,0.0008596772516112502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.743816153758851e-05,0.0,0.0,0.0030440360070987642,0.0008819106355132246,0.003101474168636353,0.0006309070514607176,0.0012331670973328211,0.0011799618583052253,0.0,0.0,5.743816153758851e-05,0.0,0.0,0.0,0.0,0.0,0.0007228630777816637,0.001215527635910104,0.0011630834549445856,0.0,0.0 +100563,50.0,the Greater Atlanta and Macon Area,G1301170130602,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,56502.0,,6037.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005373627304302567,0.0017769895838495864,0.0,0.00715064757775845,0.0033573201705434934,0.0014293377237092095,0.00236395899389945,0.0,0.0,0.001580330586693907,0.0014293377237092095,0.00236395899389945,0.0,0.0,0.0017769895838495864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011872836059770058,0.0,0.0,0.000640366152430295,0.00032844665588170234,0.0007590945130279956,0.00018832534525771923,0.00017033177904285967,0.000281709028129716,0.0,0.0,0.00011872836059770058,0.0,0.0,0.0,0.0,0.0,0.00035640454829081076,0.00015173484800263466,0.0002509518588042028,0.0,0.0 +100564,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010200,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,17112.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013956061469658208,0.0,0.0,0.0013956061469658208,0.0008299586046365687,0.0004657184001790487,9.99291421502035e-05,0.0,0.0,0.0008299586046365687,0.0004657184001790487,9.99291421502035e-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.00016631141252389315,4.2985607811256827e-05,0.00016631141252389315,9.890439947800516e-05,5.549866997973478e-05,1.1908343066153228e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.890439947800516e-05,5.549866997973478e-05,1.1908343066153228e-05,0.0,0.0 +100565,50.0,the Greater Atlanta and Macon Area,G1300890023501,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,134270.0,,10857.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006214686711704128,0.0018462979953929384,0.0,0.008061002437458486,0.0034817642631400285,0.0009481488072987436,0.002133848996903355,0.0,0.0014972049093935188,0.002909073589272323,0.0009481488072987436,0.002133848996903355,0.0,0.0002235975878682859,0.0005726906738677054,0.0,0.0012736073215252328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012335942706247124,0.0,0.0,0.0007405931411650692,0.0002994093353264352,0.0008639525682275404,0.00034666911580628397,0.00011298920381084542,0.0002542869825461001,0.0,2.6645726106263962e-05,3.8264025411187916e-05,0.0,8.509540165128332e-05,0.0,0.0,0.0,0.00037316440485423054,0.0001016195694621197,0.0002286991395161588,0.0,0.0001604656538276942 +100566,50.0,the Greater Atlanta and Macon Area,G1301510070106,ComStock 90.1-2004,gen3_t5_cfl,10001_25000,Electricity,24861.0,,4607.0,,5.759960461090961,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,100799.30806909183,0.0,0.0,0.0037435031314807595,0.0024122310903380096,0.0,0.00615573422181877,0.004295556561049571,0.000819399715624832,0.0009915342551254712,0.0,4.918909612752172e-05,0.0018833254707115612,0.000819399715624832,0.0009915342551254712,0.0,4.918909612752172e-05,0.0024122310903380096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016117258658025383,0.0,0.0,0.0004461035701653622,0.00028448004380357095,0.0006072761567456161,0.000224431017354448,9.76457413535354e-05,0.00011815856848976678,0.0,5.861737155009353e-06,0.00016117258658025383,0.0,0.0,0.0,0.0,0.0,0.000423765709414736,8.083550917116716e-05,9.781694433784647e-05,0.0,4.852608019403131e-06 +100567,50.0,the Greater Atlanta and Macon Area,G1300670030904,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,114259.0,,20521.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00631938449588954,0.0034897783865018924,0.0,0.009809162882391432,0.004906859792638193,0.0018078231111114242,0.0011791399558791914,0.0,0.001915340022762624,0.0033928642309798843,0.0018078231111114242,0.0008433446409448117,0.0,0.0002753702432148401,0.0015139955616583088,0.00033579531493438,0.0016399697795477838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023316669939096765,0.0,0.0,0.0007530692235774187,0.0004552346465033199,0.0009862359229683864,0.0004043212806230676,0.00021543489679026973,0.00010049980253260213,0.0,3.281535652546712e-05,0.00010115637983485193,2.2435890358265144e-05,0.00010957324455819917,0.0,0.0,0.0,0.0004933470322076238,0.0001817627167503902,0.00011855345829591364,0.0,0.00019257271571445882 +100568,50.0,the Greater Atlanta and Macon Area,G1300670030507,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,120223.0,,13841.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0066753215013971,0.0023537763999576895,0.0,0.00902911563171621,0.0041100396200596,0.002195462002838038,0.0012233594772608032,0.0,0.0015002368011963478,0.003378431716783962,0.002195462002838038,0.0008724933551193784,0.0,0.00022891669629430183,0.0007316079032756388,0.0003508661221414249,0.0012713201049020459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015726600887651948,0.0,0.0,0.0007954861995206411,0.0003625406897214189,0.0009527522083971605,0.00040260170332799615,0.00026162930496517414,0.00010397348247955788,0.0,2.7279595852254108e-05,4.888189677351962e-05,2.3442887217390393e-05,8.4942409527947e-05,0.0,0.0,0.0,0.0004336913474511906,0.00023166513277429453,0.0001290888821414155,0.0,0.00015830497512266632 +100569,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,196192.0,,3826.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.009359042197020554,0.0006505624212245773,0.0,0.010009604618245129,0.0038495451500761843,0.0018563333799566884,0.002503225616367315,0.0,0.001800518202206362,0.00340144572590719,0.0018563333799566884,0.0023007626193117317,0.0,0.001800518202206362,0.00044809942416899445,0.00020246299705558294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3466328163708034e-05,0.0,0.0,0.001115299832138103,0.00031613395488105277,0.0011587661603018112,0.0004053440263725766,0.00022121583207704228,0.00027417764650370887,0.0,0.0002145644400793104,2.993907423093299e-05,1.352725393277505e-05,0.0,0.0,0.0,0.0,0.00044564424096546257,0.00021489922778884102,0.0002897869842490968,0.0,0.00020843775986128488 +100570,81.0,the Columbus-Albany Area,G1302150001600,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,4609.0,,450.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,9713.774621698478,0.0,0.0,0.00028796057589134516,0.0001323642719619921,0.0,0.0004203248478533374,0.00022734860345338223,0.00011137258125436341,8.163435275188941e-05,0.0,0.0,9.498433149139012e-05,0.00011137258125436341,8.163435275188941e-05,0.0,0.0,0.0001323642719619921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.84311262326899e-06,0.0,0.0,3.431736720419351e-05,1.9903490584622946e-05,4.31604798274625e-05,1.1319647393901623e-05,1.3272698026645878e-05,9.728679181834675e-06,0.0,0.0,8.84311262326899e-06,0.0,0.0,0.0,0.0,0.0,2.3344979159013007e-05,1.1436140573441983e-05,8.382511415088364e-06,0.0,0.0 +100571,50.0,the Greater Atlanta and Macon Area,G1301210003200,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,4913.0,,803.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.0003292380963617554,0.00023637134770490678,0.0,0.0005656094440666624,0.0003364808434480133,0.00010977672172688286,0.00011935187889176613,0.0,0.0,0.00010010949574310648,0.00010977672172688286,0.00011935187889176613,0.0,0.0,0.00023637134770490678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5792776695660353e-05,0.0,0.0,3.9235484291779794e-05,3.021044316381118e-05,5.502826098744015e-05,1.193010344517018e-05,1.3082152061120092e-05,1.4223228785489527e-05,0.0,0.0,1.5792776695660353e-05,0.0,0.0,0.0,0.0,0.0,3.2736291560840676e-05,1.068020019273323e-05,1.1611769233866237e-05,0.0,0.0 +100572,50.0,the Greater Atlanta and Macon Area,G1301210010601,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,5416.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0015979833717171587,0.0,0.0,0.0015979833717171584,0.0010513723213740759,0.00027516643433067584,0.00021346695732115246,0.0,5.78949516175152e-05,0.0010513723213740759,0.00027516643433067584,0.00021346695732115246,0.0,5.78949516175152e-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.00019043143980840648,7.033101595954198e-05,0.00019043143980840648,0.0001252918825549642,3.2791542893357925e-05,2.5438825430645265e-05,0.0,6.899332739810805e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001252918825549642,3.279154289335793e-05,2.543882543064527e-05,0.0,6.899332739810806e-06 +100573,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5680.0,,316.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0011440869510358396,0.00025068514050384077,0.0,0.0013948547986134198,0.0007791833416980153,0.000327685426155136,0.00023257229135493248,0.0,5.5331032331596665e-05,0.0005284982011941745,0.000327685426155136,0.00023257229135493248,0.0,5.5331032331596665e-05,0.00025068514050384077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6750002151753443e-05,0.0,0.0,0.00013634333776808808,5.585963334332368e-05,0.00015309333991984152,6.298228354934453e-05,3.905098707707403e-05,2.7716147314672427e-05,0.0,6.593919826997102e-06,1.6750002151753443e-05,0.0,0.0,0.0,0.0,0.0,8.551985504801821e-05,3.596536097019935e-05,2.552614716007082e-05,0.0,6.072899164326947e-06 +100574,50.0,the Greater Atlanta and Macon Area,G1302310010100,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,47990.0,,6251.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002470300335210277,0.0010630770100235258,0.0,0.003533359614872383,0.0014431982285080381,0.0008447630698584158,0.0007344624914642672,0.0,0.0005109358250416616,0.0011677925245703578,0.0008447630698584158,0.0003604227869468334,0.0,9.732195383466984e-05,0.00027540570393768017,0.0003740397045174339,0.00041361387120699176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.102821587204906e-05,0.0,0.0,0.0002943804798630477,0.0001407459894319378,0.0003654086957350967,0.000139163371701619,0.00010066863301232294,4.295082321071468e-05,0.0,1.1597651938391031e-05,1.840090191701755e-05,2.4991014410699944e-05,2.7635114911490722e-05,0.0,0.0,0.0,0.00014925092259123794,8.73626817555872e-05,7.595575042593018e-05,0.0,5.28393409623414e-05 +100575,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,27786.0,,2606.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0024501775194445646,0.0007592488651454822,0.0,0.003209426384590047,0.0022902301448053624,0.0007138099603866057,0.00020541665299751556,0.0,0.0,0.0015309812796598804,0.0007138099603866057,0.00020541665299751556,0.0,0.0,0.0007592488651454822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.072800306443589e-05,0.0,0.0,0.0002919844878355592,0.00012308642917271221,0.0003427124908999951,0.00018244506011493226,8.506381029185643e-05,2.447923701135377e-05,0.0,0.0,5.072800306443589e-05,0.0,0.0,0.0,0.0,0.0,0.0002445578691036901,7.622283867544394e-05,2.1935026507894444e-05,0.0,0.0 +100576,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,65871.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.005208312963588493,0.0,0.0,0.005208312963588493,0.0028128382967313207,0.0019550878486092097,0.0004404171918474014,0.0,0.0,0.0028128382967313207,0.0019550878486092097,0.0004404171918474014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006206659192762038,0.00016312431460938794,0.0006206659192762038,0.00033520122147444634,0.00023298453939041083,5.248377798224204e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033520122147444634,0.00023298453939041083,5.248377798224204e-05,0.0,0.0 +100577,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,21110.0,,348.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0010196730852672367,5.916621605871619e-05,0.0,0.0010788393013259527,0.0005312725495904622,0.00035003279515468245,6.998173652494842e-05,0.0,0.00012756995041727994,0.000472106333531746,0.00035003279515468245,6.998173652494842e-05,0.0,0.00012756995041727994,5.916621605871619e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.953070932621968e-06,0.0,0.0,0.0001215131317621656,3.59291530828109e-05,0.00012546620269478757,5.626030532831131e-05,4.171295856805205e-05,8.339633647457273e-06,0.0,1.5202347122740075e-05,3.953070932621968e-06,0.0,0.0,0.0,0.0,0.0,6.178561469828612e-05,4.070790299604741e-05,8.138693806372157e-06,0.0,1.4836053188965715e-05 +100578,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6161.0,,34.0,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011591396384563937,2.67970918915356e-05,0.0,0.0011859367303479291,0.0005543855152745777,0.0002519257466099304,0.00035274566949814617,0.0,2.67970918915356e-05,0.0005543855152745777,0.0002519257466099304,0.00035274566949814617,0.0,0.0,0.0,0.0,2.67970918915356e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7926026448963189e-06,0.0,0.0,0.00013812864878374665,4.490820376112458e-05,0.00013992125142864295,6.606324172653968e-05,3.0020682425636265e-05,4.203486885927074e-05,0.0,0.0,0.0,0.0,1.7926026448963187e-06,0.0,0.0,0.0,6.540847676450198e-05,2.972314191028987e-05,4.161825352836057e-05,0.0,3.1616211355659604e-06 +100579,85.0,Rural Climate Zone 3A,G1300690010700,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,166650.0,,1950.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.008578374383695627,0.00033169960144634783,0.0,0.008910073985141974,0.0038389069332241525,0.0014614073096864324,0.002378386141608723,0.0,0.001231373600622667,0.0038389069332241525,0.0014614073096864324,0.0020466865401623756,0.0,0.001231373600622667,0.0,0.00033169960144634783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.216256959754586e-05,0.0,0.0,0.0010222682049419922,0.0003190966848778907,0.001044430774539538,0.0004574750790808649,0.00017415306914113143,0.00024389965766327,0.0,0.0001467403990567259,0.0,2.216256959754586e-05,0.0,0.0,0.0,0.0,0.0004499931816883355,0.00017130483662860653,0.00027879226190229226,0.0,0.00014434049432030384 +100580,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,78826.0,,11986.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,357187.66821064625,0.0,0.0,0.020660401495484745,0.010378364926733066,0.0,0.031038766422217815,0.009620828608249647,0.002987804130641024,0.012938695041402335,0.0006696039654619874,0.004821924956086047,0.009620828608249647,0.002987804130641024,0.004830320961046,0.0006696039654619874,0.0025519341097093168,0.0,0.008108374080356334,0.002269990846376731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006934245799704511,0.0,0.0,0.0024620571958279165,0.0014808324440352203,0.0031554817757983677,0.0011464941913130213,0.00035605042143913636,0.0005756193306747107,7.979531578226541e-05,0.00030410869505423984,0.0,0.0005417564260466091,0.00015166815392384195,0.0,0.0,0.0,0.0009780784754280882,0.00030374794396288316,0.0013153814120825651,6.807368183631076e-05,0.000490209440549979 +100581,50.0,the Greater Atlanta and Macon Area,G1300890021805,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,DistrictHeating,113891.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,215998.51729091106,0.0,0.000686026838999376,0.01990618845427897,0.0,0.0,0.020592215293278347,0.009395827080944504,0.0014389857888226607,0.009671089481249681,0.0,8.631294226150036e-05,0.008796113184206629,0.0014389857888226607,0.009671089481249681,0.0,0.0,0.0,0.0,0.0,0.0005997138967378758,0.0,8.631294226150036e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023721819614415007,0.0008270089630774731,0.0023721819614415007,0.001048215788486994,0.00017148115214804077,0.0011524850208064661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010823804625583672,0.00016576828099354717,0.0011140901398013095,0.0,9.943078088276731e-06 +100582,85.0,Rural Climate Zone 3A,G1300170960500,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,18735.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0014555028850570671,0.0,0.0,0.0014555028850570676,0.0010212515338955295,0.0003301610258883623,0.00010412069887261326,0.0,0.0,0.0010212515338955295,0.0003301610258883623,0.00010412069887261326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017344859069187804,4.09442816840768e-05,0.00017344859069187804,0.00012169995752990434,3.9344452855190204e-05,1.2407799851664402e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001216999575299043,3.934445285519019e-05,1.2407799851664399e-05,0.0,0.0 +100583,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,24455.0,,2584.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005623624880066899,0.002003891926004254,0.0,0.0076275168060711525,0.0034133762356717617,0.0006707401955534377,0.002671397690234951,0.00042872387182933414,0.0004431979519986006,0.0034133762356717617,0.0006707401955534377,0.0006675057642306965,0.00042872387182933414,0.0004431979519986006,0.0,0.002003891926004254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013388845047417305,0.0,0.0,0.0006701549999560526,0.0003051680150507319,0.0008040434504302255,0.00040676453352617435,7.993063287611912e-05,7.954519281402812e-05,5.1090080230160765e-05,5.2814924508017945e-05,0.0,0.00013388845047417305,0.0,0.0,0.0,0.0,0.00035981602871875155,7.070508985909659e-05,0.00028160145312537357,4.519329553139604e-05,4.671905937525117e-05 +100584,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,93811.0,,7410.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.008358467723210842,0.0021812023883966297,0.0,0.010539670111607473,0.004079630744366226,0.002377953454371202,0.00408211660247634,0.0,0.0,0.0018984283559695966,0.002377953454371202,0.00408211660247634,0.0,0.0,0.0021812023883966297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014573516324441075,0.0,0.0,0.000996063512497742,0.00042795795128857734,0.0011417986757421526,0.00022623228073506208,0.00028337642122367877,0.00048645846776399247,0.0,0.0,0.00014573516324441075,0.0,0.0,0.0,0.0,0.0,0.0004419604154691982,0.0002576118679641873,0.00044222971701926144,0.0,0.0 +100585,50.0,the Greater Atlanta and Macon Area,G1301210009402,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,476952.0,,18209.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02227463532165092,0.0030965544309279613,0.0,0.025371172022217458,0.010948781862665326,0.006201158445940628,0.004166032101424127,0.0,0.004055217342548797,0.009895988462265432,0.006201158445940628,0.0021222710708960605,0.0,0.004055217342548797,0.0010527934003998953,0.0020437610305280665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020689353476747668,0.0,0.0,0.0026544243252904446,0.0007432560675647045,0.0028613178600579215,0.001179285412205978,0.0007389798120683711,0.000252906854549984,0.0,0.00048325224646611145,7.034145623699939e-05,0.00013655207853047733,0.0,0.0,0.0,0.0,0.0012347850963325125,0.0006993561589855223,0.0004698380526899144,0.0,0.00045734055165013864 +100586,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,115173.0,,1777.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.012956504198790181,0.0006603506379238348,0.0,0.013616854836714017,0.0069134937694150115,0.001984926756148713,0.004462113487897965,0.0,0.0002562820748285556,0.0069134937694150115,0.001984926756148713,0.0038017628499741303,0.0,0.0002562820748285556,0.0,0.0006603506379238348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.412156919503078e-05,0.0,0.0,0.00154399960571381,0.00047787587883477216,0.001588121174908841,0.0008238666456866034,0.0002365395852031271,0.000453048156456089,0.0,3.054060079907631e-05,0.0,4.412156919503078e-05,0.0,0.0,0.0,0.0,0.0008063143787216766,0.00023150017018493777,0.0005204121656544859,0.0,2.988994115494434e-05 +100587,35.0,Eastern Counties in South Carolina and Georgia,G1301270000600,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,152050.0,,22982.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.0314558772476499,0.015809448370884188,0.0,0.04726532561853409,0.019092214884210736,0.005101082938485336,0.011692363434733039,0.00038054616620883223,0.010999046474925125,0.019092214884210736,0.005101082938485336,0.005593297099565475,0.00038054616620883223,0.0012886644392084993,0.0,0.006099066335167563,0.009710382035716628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010562949284710155,0.0,0.0,0.0037485373227101877,0.0021388374613509637,0.004804832251181204,0.002275183092279323,0.0006078863937129915,0.0006665426231689109,4.5348965975973744e-05,0.00015356770083985982,0.0,0.0004075039613722772,0.0006487909670987385,0.0,0.0,0.0,0.0019408496317682338,0.0005185587425462168,0.0011886059005950741,3.868502900457261e-05,0.0011181256564587747 +100588,50.0,the Greater Atlanta and Macon Area,G1301210006000,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8842.0,,443.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.003298440807797319,0.00035175318461327443,0.0,0.003650193992410594,0.0014991484185986864,0.0005880472942864758,0.0014878175494964013,0.0,7.509802295529114e-05,0.0011473952339854118,0.0005880472942864758,0.0014878175494964013,0.0,7.509802295529114e-05,0.00035175318461327443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3503469156849876e-05,0.0,0.0,0.0003930652391441613,0.0001463158441362285,0.0004165687083010112,0.00013673162815994958,7.007582182781242e-05,0.00017729872839107139,0.0,8.949204812890813e-06,2.3503469156849876e-05,0.0,0.0,0.0,0.0,0.0,0.0001710863372153924,6.710933783523336e-05,0.00016979323183094418,0.0,8.570362694007299e-06 +100589,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,23650.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.004119601665341718,0.0,0.0,0.004119601665341718,0.002587891419295331,0.0013172726340158589,0.0002144376120305279,0.0,0.0,0.002587891419295331,0.0013172726340158589,0.0002144376120305279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004909235784152365,0.00012751159163055988,0.0004909235784152365,0.00030839314557980826,0.00015697638941164182,2.5554043423786373e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030839314557980826,0.00015697638941164182,2.5554043423786373e-05,0.0,0.0 +100590,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300050970201,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,55671.0,,1503.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0048027392479526995,0.00044229860596249246,0.0,0.005245037853915192,0.0015975474558269187,0.0015795326569301668,0.0020679577411581067,0.0,0.0,0.001155248849864426,0.0015795326569301668,0.0020679577411581067,0.0,0.0,0.00044229860596249246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.955138266680278e-05,0.0,0.0,0.0005723336833395155,0.0001955204155025779,0.0006018850660063183,0.00013766890003418265,0.00018823002807850895,0.0002464347552268238,0.0,0.0,2.955138266680278e-05,0.0,0.0,0.0,0.0,0.0,0.0001833237400147385,0.00018125648354775834,0.0002373048424438214,0.0,0.0 +100591,50.0,the Greater Atlanta and Macon Area,G1301430010400,ComStock 90.1-2004,gen5_led,10001_25000,Propane,49941.0,,683.0,10145.0,4.088175128053588,Healthcare,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.005618095214290512,0.00025372467885959813,0.0012198391287689381,0.00709169777034282,0.004670580007791772,0.0005051244522928713,0.0017707254695366393,0.0,0.00014530658914531044,0.0035960087197443712,0.0005051244522928713,0.0015170007906770413,0.0,0.0,0.0,0.00025372467885959813,0.0,0.0,0.0,0.0,0.0,0.0010745712880474,0.00014530658914531044,0.0,1.695264667687586e-05,0.0,9.83792595817591e-05,0.0006694985716995792,0.0003104552322219047,0.0007848304779582141,0.0004285300639911148,6.019479671337629e-05,0.00018077832857691636,0.0,0.0,0.0,1.695264667687586e-05,0.0,8.666349946702277e-05,1.1718885150776552e-05,0.0,0.0005168880088470122,5.590157366537506e-05,0.0001959642615342367,0.0,1.608092215749896e-05 +100592,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,113759.0,,4517.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005855788735839419,0.0007680969870781074,0.0,0.006623885722917527,0.003092334604909989,0.0014957332893956545,0.0008828478861886891,0.0,0.0011529522120617736,0.0026451039684505773,0.0014957332893956545,0.0005619815355699938,0.0,0.0011529522120617736,0.0004472306364594118,0.00032086635061869554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1320241288524944e-05,0.0,0.0,0.0006978230963753369,0.0002473126281855517,0.0007491433376638619,0.00031521195944140884,0.00017824366322671348,6.697026019006533e-05,0.0,0.00013739510062403385,2.9881622452430762e-05,2.1438618836094175e-05,0.0,0.0,0.0,0.0,0.00034973457635005344,0.00016916333939699508,9.984767850396602e-05,0.0,0.0001303957381575201 +100593,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,45411.0,,9101.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,56751.431377317895,0.0,0.0,0.013011508861623174,0.006260221110039641,0.0,0.019271729971662814,0.00509434126120987,0.0006403876211983911,0.010241396701116212,0.0003650546524694602,0.002930549735668883,0.004030303771222264,0.0006403876211983911,0.005045213081064176,0.0003650546524694602,0.002930549735668883,0.0010640374899876055,0.005196183620052036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041827032309872913,0.0,0.0,0.0015505593385736073,0.0008221183723817248,0.0019688296616723363,0.00048028443251411836,7.631390155562883e-05,0.0006012294454958301,4.350294085767171e-05,0.00034922861815035836,7.10925855338452e-05,0.00034717773756488395,0.0,0.0,0.0,0.0,0.0005204457615636594,6.54229872168759e-05,0.0010462768849376447,3.729454641436873e-05,0.0002993894815397879 +100594,50.0,the Greater Atlanta and Macon Area,G1300210012101,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,36467.0,,2520.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0032156833460742235,0.0007340691512115859,0.0,0.003949752497285811,0.0029483349238231316,0.0006846816785258015,0.0003167055213374382,0.0,0.0,0.002214265772611546,0.0006846816785258015,0.0003167055213374382,0.0,0.0,0.0007340691512115859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.904565588665397e-05,0.0,0.0,0.00038320740848777366,0.00013468480495082386,0.0004322530643744277,0.0002638702126754937,8.159232841978816e-05,3.7741247823313415e-05,0.0,0.0,4.9045655886653964e-05,0.0,0.0,0.0,0.0,0.0,0.00032265991514669686,7.493020230183517e-05,3.4659622899531334e-05,0.0,0.0 +100595,46.0,the Tallahassee-Valdosta Area,G1301850011600,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,20916.0,,4759.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.004258301559080891,0.0032733711971235035,0.0,0.007531672756204396,0.0012074057120478121,0.00019414596153925914,0.005242012681531011,0.00038248260542625374,0.0005055540756890423,0.0012074057120478121,0.00019414596153925914,0.0019686414844075077,0.00038248260542625374,0.0005055540756890423,0.0,0.0032733711971235035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021870792219945886,0.0,0.0,0.0005074534482872684,0.0003462491742680984,0.0007261613704867271,0.00014388417155516156,2.313599360854306e-05,0.00023459914612519332,4.5579702221780614e-05,6.024588804825269e-05,0.0,0.00021870792219945886,0.0,0.0,0.0,0.0,0.0001164112428904828,1.8718457648027143e-05,0.0005054052713314752,3.68768136819094e-05,4.874267010008989e-05 +100596,50.0,the Greater Atlanta and Macon Area,G1301130140306,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,45087.0,,2038.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.00395346577287637,0.0005999511135137917,0.0,0.004553447575996459,0.0011787263986821684,0.0018428801685707542,0.001531810319137239,0.0,0.0,0.0005787752851683768,0.0018428801685707542,0.001531810319137239,0.0,0.0,0.0005999511135137917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0086198895699636e-05,0.0,0.0,0.0004711278208475076,0.00018693056690777216,0.0005112140197432072,6.897167056119068e-05,0.0002196129087188578,0.00018254324156745906,0.0,0.0,4.0086198895699636e-05,0.0,0.0,0.0,0.0,0.0,0.0001323352142285022,0.00020689953340989717,0.0001719758265930856,0.0,0.0 +100597,50.0,the Greater Atlanta and Macon Area,G1301690030301,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,16032.0,,945.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014069036215055887,0.00027804783305718716,0.0,0.0016849514545627757,0.0005065319519435845,0.0004949619703693504,0.000683457532249841,0.0,0.0,0.00022848411888639724,0.0004949619703693504,0.000683457532249841,0.0,0.0,0.00027804783305718716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8578404531343923e-05,0.0,0.0,0.0001676574735954608,7.491079644410733e-05,0.00018623587812680473,2.722792772982147e-05,5.8983481319887254e-05,8.144606454575208e-05,0.0,0.0,1.8578404531343923e-05,0.0,0.0,0.0,0.0,0.0,5.5986433682729765e-05,5.4707616021512606e-05,7.554182842256237e-05,0.0,0.0 +100598,50.0,the Greater Atlanta and Macon Area,G1300210011702,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,397710.0,,11719.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.020472237701134027,0.001992910353975355,0.0,0.022465148055109383,0.013022028484234942,0.004487767239752406,0.002721805511953726,0.0,0.0022335468191683116,0.011444363194717224,0.004487767239752406,0.002306560447496089,0.0,0.0022335468191683116,0.0015776652895177182,0.0004152450644576366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001331545732367103,0.0,0.0,0.002439636692260896,0.0007065782329382815,0.0025727912654976066,0.0013638024712777578,0.0005347984809603835,0.0002748683159495292,0.0,0.000266167424073226,0.0001054103351498271,2.7744238086883166e-05,0.0,0.0,0.0,0.0,0.0014913305294545307,0.0005139555870140502,0.00031171116390417625,0.0,0.0002557939851248497 +100599,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,26137.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0023047790989360463,0.0,0.0,0.002304779098936046,0.0014647668328855818,0.0006751747419017852,0.00016483752414867917,0.0,0.0,0.0014647668328855818,0.0006751747419017852,0.00016483752414867917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027465778977149623,7.334748224188125e-05,0.00027465778977149623,0.00017455452500270694,8.045977265495431e-05,1.9643492113834954e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017455452500270697,8.045977265495432e-05,1.9643492113834957e-05,0.0,0.0 +100600,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,15903.0,,827.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0038912024052869362,0.0006561152159739257,0.0,0.004547400328334601,0.0030644624961888183,0.0006125285881133109,0.0007664464523421619,0.0,0.00010388008461657013,0.002512227364831463,0.0006125285881133109,0.0007664464523421619,0.0,0.0,0.0005522351313573555,0.0,0.00010388008461657013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3838534054053614e-05,0.0,0.0,0.0004637107602276703,0.0001895644993426018,0.0005075492942817239,0.0002993796620879842,7.299442888637405e-05,9.133666925331194e-05,0.0,0.0,3.689775518453498e-05,0.0,6.9407788695186374e-06,0.0,0.0,0.0,0.00034203405572235334,6.836619390801439e-05,8.554543869100317e-05,0.0,1.1594374770249267e-05 +100601,50.0,the Greater Atlanta and Macon Area,G1300450910502,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,29330.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0026132813554619874,0.0,0.0,0.0026132813554619874,0.0009153175078289855,0.0007178298913032681,0.0009801646459360316,0.0,0.0,0.0009153175078289855,0.0007178298913032681,0.0009801646459360316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031142089828898613,0.00010795974260188171,0.00031142089828898613,0.0001090770421301791,8.554273312405329e-05,0.00011680478027003054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001090770421301791,8.554273312405329e-05,0.00011680478027003054,0.0,0.0 +100602,50.0,the Greater Atlanta and Macon Area,G1301170130105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,17972.0,,2254.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0015863764391345545,0.0006634785985500365,0.0,0.0022498550376845914,0.0011375409470306512,0.0004979388621802277,0.0006143752284737121,0.0,0.0,0.00047406234848061484,0.0004979388621802277,0.0006143752284737121,0.0,0.0,0.0006634785985500365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.43301483552544e-05,0.0,0.0,0.00018904425657039321,0.00010839149596293789,0.00023337440492564762,5.649274789117765e-05,5.933804845823509e-05,7.321346022098048e-05,0.0,0.0,4.43301483552544e-05,0.0,0.0,0.0,0.0,0.0,0.00011799557622389923,5.165052134659163e-05,6.372830735515672e-05,0.0,0.0 +100603,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,25090.0,,5305.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005644576878841637,0.003649255565216321,0.0,0.009293832444057957,0.0029437462103357563,0.00046460197223912843,0.004018900295830781,0.0003698598905275062,0.0014967240751247873,0.0029437462103357563,0.00046460197223912843,0.00036964473061445937,0.0003698598905275062,0.0014967240751247873,0.0,0.003649255565216321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024382130094656644,0.0,0.0,0.0006726559483320333,0.00043923614380623517,0.0009164772492785997,0.0003508019185963472,5.536593564787762e-05,4.405002042747164e-05,4.407566071875654e-05,0.00017836241294158045,0.0,0.00024382130094656644,0.0,0.0,0.0,0.0,0.00029028675152710683,4.581502196108168e-05,0.0003963091340863187,3.647237855098769e-05,0.00014759396315310491 +100604,50.0,the Greater Atlanta and Macon Area,G1301210010001,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,8775.0,,1110.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021070454105825962,0.0008808303353236239,0.0,0.00298787574590622,0.0018358489157914066,0.0007017695206780235,0.0003797908826108997,0.0,7.054913389962922e-05,0.001025567714367412,0.0007017695206780235,0.0003797908826108997,0.0,0.0,0.0008102812014239947,0.0,7.054913389962922e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.884944107203636e-05,0.0,0.0,0.0002510943744558192,0.00011600963425413032,0.0003099438155278556,0.0001222158205076212,8.362913201670693e-05,4.525927804604811e-05,0.0,0.0,5.413596001715871e-05,0.0,4.713481054877655e-06,0.0,0.0,0.0,0.0001904396521417209,7.279724505214677e-05,3.939716550140931e-05,0.0,7.318332354682522e-06 +100605,81.0,the Columbus-Albany Area,G1302150010106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,18448.0,,1515.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0016076750259051606,0.0004459506691119191,0.0,0.0020536256950170794,0.0011531619566361821,0.0004367437872226083,0.0004636892615519913,0.0,0.0,0.000707211287524263,0.0004367437872226083,0.0004636892615519913,0.0,0.0,0.0004459506691119191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9796664848621988e-05,0.0,0.0,0.00019158194728865807,8.667900129295412e-05,0.00022137861213728007,8.427630797594419e-05,5.2045484239093106e-05,5.5256497882682714e-05,0.0,0.0,2.9796664848621988e-05,0.0,0.0,0.0,0.0,0.0,0.000124309602353074,4.7080504353602024e-05,4.998519712448688e-05,0.0,0.0 +100606,50.0,the Greater Atlanta and Macon Area,G1301510070204,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,117923.0,,22685.0,,9.729435225087556,Education,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.02769293322503704,0.020064814292892832,0.0,0.04775774751792988,0.03428628236381347,0.00625684838340711,0.0037963076449132704,0.0006508693700730648,0.002767531972975737,0.01820940316709656,0.00625684838340711,0.0016849936426714424,0.0006508693700730648,0.000890910879041638,0.016076879196716902,0.002111314002241828,0.001876621093934099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013406148302909308,0.0,0.0,0.003300116390970209,0.0022097752818224575,0.004640731221261139,0.0021699813946465694,0.0007456172207582983,0.00020079762203858016,7.756291683167133e-05,0.00010616822605706673,0.001074164074548584,0.00014106578917148874,0.00012538496657085808,0.0,0.0,0.0,0.003331677671083372,0.0006079924860081273,0.0003688960289981662,6.324648802849507e-05,0.00026892750810756104 +100607,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,100128.0,,13454.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00515410968264083,0.002287908107282193,0.0,0.007442017789923023,0.0031969082765654607,0.001523800451523598,0.001041623272705262,0.0,0.0016796857891287023,0.002737425960364792,0.001523800451523598,0.0006529737503777047,0.0,0.00023990952037473447,0.00045948231620066823,0.0003886495223275574,0.001439776268753968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001528652305681655,0.0,0.0,0.0006142045066602887,0.0002854595609485229,0.0007670697372284543,0.00032621334527818007,0.00018158812330459244,7.781352064812178e-05,0.0,2.858951742939437e-05,3.070003991176317e-05,2.5967388572867026e-05,9.619780208353532e-05,0.0,0.0,0.0,0.00032951434152294647,0.00015706240497322118,0.00010736304489448586,0.0,0.00017312994583780072 +100608,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,25249.0,,328.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0033753364463623603,0.00012186379276320036,0.0,0.0034972002391255603,0.0022180372735615627,0.00029200812154641585,0.0009198488319254732,0.0,6.73060120921078e-05,0.0022180372735615627,0.00029200812154641585,0.0007979850391622729,0.0,6.73060120921078e-05,0.0,0.00012186379276320036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.142686863162944e-06,0.0,0.0,0.0004022309997131817,0.00012757808840712523,0.00041037368657634467,0.00026431834696279306,3.479792919030796e-05,9.509402252457568e-05,0.0,8.020701035504901e-06,0.0,8.142686863162944e-06,0.0,0.0,0.0,0.0,0.0002602722379839466,3.4265252532179546e-05,0.00010793827360156717,0.0,7.897922458651258e-06 +100609,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,13146.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0027825967888852584,0.0,0.0,0.0027825967888852584,0.0016215548877328615,0.0004688664010281338,0.0006173255983901905,0.0,7.484990173407322e-05,0.0016215548877328615,0.0004688664010281338,0.0006173255983901905,0.0,7.484990173407322e-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.0003315927195399451,7.997195378027219e-05,0.0003315927195399451,0.00019323525321900386,5.587323525953957e-05,7.356461950559239e-05,0.0,8.91961155580937e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019323525321900386,5.587323525953957e-05,7.356461950559239e-05,0.0,8.91961155580937e-06 +100610,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970400,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,11064.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0008725727646477344,0.0,0.0,0.0008725727646477344,0.0005657690367270033,0.00023746080040434376,6.934292751638743e-05,0.0,0.0,0.0005657690367270033,0.00023746080040434376,6.934292751638743e-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.00010398457892865237,3.303874807210702e-05,0.00010398457892865237,6.742274964160429e-05,2.829822605347411e-05,8.263603233573984e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.742274964160429e-05,2.829822605347411e-05,8.263603233573984e-06,0.0,0.0 +100611,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,4312.0,,239.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00022198412497906108,4.063798837476102e-05,0.0,0.0002626221133538221,0.00011836789284027253,6.691438399927928e-05,2.0407645994480777e-05,0.0,5.6949920881209605e-05,7.77299044655115e-05,6.691438399927928e-05,2.0407645994480777e-05,0.0,5.6949920881209605e-05,4.063798837476102e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7151905110024905e-06,0.0,0.0,2.6453175425699455e-05,1.02669607266474e-05,2.9168365936701943e-05,9.262837145867925e-06,7.973984349567871e-06,2.431917325477642e-06,0.0,6.786549478222576e-06,2.7151905110024905e-06,0.0,0.0,0.0,0.0,0.0,1.3146638603390643e-05,7.4319074429593e-06,2.2665939233826587e-06,0.0,6.325195205825456e-06 +100612,85.0,Rural Climate Zone 3A,G1300310110403,ComStock 90.1-2004,gen1_t12_incandescent,_1000,Electricity,3690.0,,194.0,,4.088175128053588,Healthcare,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,4088.1751280535877,0.0,0.0,0.000415150612294095,7.218831348739024e-05,0.0,0.0004873389257814852,0.0002696890294536962,7.986050139426263e-05,0.00011171170573491467,0.0,2.6038940774839633e-05,0.00021338756971285992,7.986050139426263e-05,9.582485198836074e-05,0.0,2.6038940774839633e-05,5.6301459740836284e-05,1.588685374655394e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8231962928458085e-06,0.0,0.0,4.947331090775146e-05,1.875832954849229e-05,5.429650720059727e-05,2.5429300277112867e-05,9.516939871278305e-06,1.1419404319102984e-05,0.0,3.1030488081023874e-06,3.761730656739108e-06,1.0614656361066992e-06,0.0,0.0,0.0,0.0,3.0047204430003737e-05,8.897598898022657e-06,1.2446277352255856e-05,0.0,2.90110939324174e-06 +100613,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970400,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,17630.0,,656.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001488353836619692,0.00019312969243144356,0.0,0.0016814835290511355,0.0005658242713107463,0.0005954397413880294,0.0005201888267460621,0.0,0.0,0.00037269457887930264,0.0005954397413880294,0.0005201888267460621,0.0,0.0,0.00019312969243144356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2904159393554335e-05,0.0,0.0,0.0001773625625041346,5.857144443743069e-05,0.00019026672189768898,4.4412870054853096e-05,7.095672799771573e-05,6.198930726529644e-05,0.0,0.0,1.2904159393554335e-05,0.0,0.0,0.0,0.0,0.0,6.402532490651017e-05,6.737643617921085e-05,5.886148815779938e-05,0.0,0.0 +100614,85.0,Rural Climate Zone 3A,G1300310110200,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,40192.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0035442041975929472,0.0,0.0,0.0035442041975929472,0.0019087377358672,0.0012075631928466992,0.0004279032688790477,0.0,0.0,0.0019087377358672,0.0012075631928466992,0.0004279032688790477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042235679367799283,0.00010982472681442719,0.00042235679367799283,0.0002274610336053924,0.00014390325440071268,5.099250567188772e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002274610336053924,0.00014390325440071268,5.099250567188772e-05,0.0,0.0 +100615,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,13967.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0030390714245508515,0.0,0.0,0.0030390714245508515,0.0018209616425183314,0.0004558813904510625,0.0006799348532108464,0.0,8.221083129687158e-05,0.0018209616425183314,0.0004558813904510625,0.0006799348532108464,0.0,8.221083129687158e-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.0003621626332625737,0.00010527904584630475,0.0003621626332625737,0.00021700189676260943,5.4326859016010506e-05,8.102705151861801e-05,0.0,9.79696985883789e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00021700189676260943,5.4326859016010506e-05,8.102705151861801e-05,0.0,9.79696985883789e-06 +100616,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,25027.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.005693885784508881,0.0,0.0,0.005693885784508881,0.0025324078908238535,0.0007910931603164756,0.0022531061028062127,0.0,0.00011727863056233792,0.0025324078908238535,0.0007910931603164756,0.0022531061028062127,0.0,0.00011727863056233792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006785339085559319,0.0002146409519506477,0.0006785339085559319,0.0003017841750344848,9.427367432655698e-05,0.00026850009785719443,0.0,1.3975961337695534e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003017841750344848,9.427367432655698e-05,0.00026850009785719443,0.0,1.3975961337695534e-05 +100617,50.0,the Greater Atlanta and Macon Area,G1301210003200,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,71171.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006111865783793808,0.0,0.0,0.006111865783793808,0.0016509166811786236,0.001908617305260434,0.0025523317973547496,0.0,0.0,0.0016509166811786236,0.001908617305260434,0.0025523317973547496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007283401946054072,0.0002415541836468202,0.0007283401946054072,0.00019673680990104627,0.0002274465357578163,0.0003041568489465445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019673680990104627,0.0002274465357578163,0.0003041568489465445,0.0,0.0 +100618,35.0,Eastern Counties in South Carolina and Georgia,G1301270000401,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,132075.0,,1220.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006634612591576659,0.00020744522861461777,0.0,0.006842057820191276,0.0029734525315885355,0.0014254678670879853,0.001711777743298998,0.0,0.000731377408577178,0.0027660073029739172,0.0014254678670879853,0.001711777743298998,0.0,0.000731377408577178,0.00020744522861461777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3860336415736798e-05,0.0,0.0,0.0007906344278834835,0.0002332310438590916,0.0008044947642992204,0.0003296199395703709,0.00016987035128355116,0.00020398936607921248,0.0,8.71568838445027e-05,1.3860336415736798e-05,0.0,0.0,0.0,0.0,0.0,0.00034962098485867,0.00016760767971952067,0.00020127222954240983,0.0,8.599595492904245e-05 +100619,50.0,the Greater Atlanta and Macon Area,G1300890021415,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,128941.0,,5720.0,,9.325022323477118,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.03296075052680208,0.004849020063368984,0.0,0.03780977059017107,0.021816215269336713,0.005148465590859173,0.010059619717340791,0.0,0.0007855583967924383,0.017752753602760168,0.005148465590859173,0.010059619717340791,0.0,0.0,0.004063461666576547,0.0,0.0007855583967924383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003239808731901597,0.0,0.0,0.003927874121912518,0.0015297453863578575,0.004251854995102677,0.002115564128682973,0.0006135335039003075,0.0011987870219124358,0.0,0.0,0.00027149482611081414,0.0,5.248604707934564e-05,0.0,0.0,0.0,0.0024533178175716853,0.0005789648759545617,0.0011312431595426747,0.0,8.83390811742999e-05 +100620,50.0,the Greater Atlanta and Macon Area,G1301350050220,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,26799.0,,1677.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006291292365863732,0.0013003222525249946,0.0,0.007591614618388728,0.003094542168032557,0.0006382341607598895,0.0029764854247525062,0.00041190482895108035,0.00047052889667576294,0.003094542168032557,0.0006382341607598895,0.0016761631722275116,0.00041190482895108035,0.00047052889667576294,0.0,0.0013003222525249946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.688009044401824e-05,0.0,0.0,0.0007497252478268978,0.00029466068526486105,0.0008366053382709161,0.00036877262395680665,7.605754692686372e-05,0.0001997462169323398,4.9086170536607606e-05,5.60723255501609e-05,0.0,8.688009044401824e-05,0.0,0.0,0.0,0.0,0.00034102238159054114,7.033419539833135e-05,0.0003280123821883412,4.539242257178512e-05,5.185286748041178e-05 +100621,50.0,the Greater Atlanta and Macon Area,G1301210011622,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,162094.0,,12873.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.014442375275667439,0.0037891843103647666,0.0,0.01823155958603221,0.009746190340780368,0.0033807670297549383,0.005104632905103202,0.0,0.0,0.0059570060304156,0.0033807670297549383,0.005104632905103202,0.0,0.0,0.0037891843103647666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025317181350588565,0.0,0.0,0.0017210704585498336,0.0007900689129132119,0.0019742422720557193,0.0007098851057848374,0.00040287959224779207,0.0006083094177393565,0.0,0.0,0.00025317181350588565,0.0,0.0,0.0,0.0,0.0,0.001055386450702284,0.000366093375096005,0.0005527657695451489,0.0,0.0 +100622,35.0,Eastern Counties in South Carolina and Georgia,G1300730030105,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,17049.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,56663.68529324113,0.0,0.0,0.0014249491100086378,0.0,0.0,0.0014249491100086378,0.0005699059889483406,0.00035366702297472694,0.0005013760980855704,0.0,0.0,0.0005699059889483406,0.00035366702297472694,0.0005013760980855704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016980798540424812,5.873422191037133e-05,0.00016980798540424812,6.791441685418981e-05,4.214570489109767e-05,5.974786365896064e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.791441685418981e-05,4.214570489109767e-05,5.974786365896064e-05,0.0,0.0 +100623,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301610960100,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,74847.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00815200072669765,0.0,0.0,0.00815200072669765,0.00486345111557226,0.002686210760675333,0.0006023084768506186,0.0,0.0,0.00486345111557226,0.002686210760675333,0.0006023084768506186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009714574534826898,0.0002747463818575363,0.0009714574534826898,0.000579567641646336,0.0003201103082016744,7.177588407421163e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000579567641646336,0.0003201103082016744,7.177588407421163e-05,0.0,0.0 +100624,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6007.0,,515.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0010781694132656115,0.0004081594089034821,0.0,0.0014863288221690937,0.0008001909384277993,0.00026118893886873285,0.0003769788421037633,0.0,4.797010276879831e-05,0.00039203152952431723,0.00026118893886873285,0.0003769788421037633,0.0,4.797010276879831e-05,0.0004081594089034821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.727192609473332e-05,0.0,0.0,0.0001284850154252159,6.607988198062962e-05,0.00015575694151994922,4.671823972963512e-05,3.112578081565141e-05,4.492441702271664e-05,0.0,5.716577857212736e-06,2.727192609473332e-05,0.0,0.0,0.0,0.0,0.0,8.385445491099597e-05,2.7370787453118893e-05,3.950476542473589e-05,0.0,5.026933731098467e-06 +100625,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock 90.1-2004,gen4_led,200001_500000,Electricity,236422.0,,8427.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.019996702981850883,0.0024806715666496133,0.0,0.022477374548500496,0.006100387871038466,0.005470729218628498,0.010906257458833531,0.0,0.0,0.0036197163043888525,0.005470729218628498,0.010906257458833531,0.0,0.0,0.0024806715666496133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016574319262642313,0.0,0.0,0.002382968405310911,0.0008353315170368336,0.0025487115979373346,0.0004313545886727484,0.000651936216377021,0.0012996776002611415,0.0,0.0,0.00016574319262642313,0.0,0.0,0.0,0.0,0.0,0.0006917235500651131,0.0006203264967003581,0.0012366615511718632,0.0,0.0 +100626,50.0,the Greater Atlanta and Macon Area,G1300570090100,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,12949.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.001127658893802791,0.0,0.0,0.001127658893802791,0.0005496815383981545,0.0003442453138413322,0.0002337013519570067,0.0,0.0,0.0005496815383981545,0.0003442453138413322,0.0002337013519570067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013437925947979728,4.690402625081487e-05,0.00013437925947979728,6.550367179791664e-05,4.102253847117587e-05,2.7849392035125636e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.550367179791664e-05,4.102253847117587e-05,2.7849392035125636e-05,0.0,0.0 +100627,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,102264.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008402613295658539,0.0,0.0,0.008402613295658539,0.005795100531126421,0.0017070874091999655,0.0009004253553321526,0.0,0.0,0.005795100531126421,0.0017070874091999655,0.0009004253553321526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010013225155794739,0.00026017257262478524,0.0010013225155794739,0.0006905904672373324,0.00020343017091805716,0.0001073018774240842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006905904672373324,0.00020343017091805716,0.0001073018774240842,0.0,0.0 +100628,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5401.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0009587403987860516,0.0,0.0,0.0009587403987860516,0.00043991892521937624,0.0001815420268577798,0.00029931689986255355,0.0,3.796254684634211e-05,0.00043991892521937624,0.0001815420268577798,0.00029931689986255355,0.0,3.796254684634211e-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.00011425270087430509,3.568118722525276e-05,0.00011425270087430509,5.242495824279062e-05,2.1634289028562775e-05,3.5669472434792106e-05,0.0,4.523981168159596e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.242495824279062e-05,2.1634289028562775e-05,3.5669472434792106e-05,0.0,4.523981168159596e-06 +100629,50.0,the Greater Atlanta and Macon Area,G1301210011420,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,2565.0,,363.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006160022852103617,0.0002877379095390505,0.0,0.0009038229018231516,0.0006025210321908544,0.0001814593197840405,6.368444677926672e-05,0.0,5.6075395995250426e-05,0.00037085851864705445,0.0001814593197840405,6.368444677926672e-05,0.0,0.0,0.00023166251354380006,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9227216710497855e-05,0.0,0.0,7.340958880839499e-05,4.471942617094769e-05,9.263680551889285e-05,4.419556877240106e-05,2.1624682847156096e-05,7.589337188837828e-06,0.0,0.0,1.548014774535915e-05,0.0,3.7470689651387026e-06,0.0,0.0,0.0,6.175504467470115e-05,1.8598568018708906e-05,6.527300535280701e-06,0.0,5.747415276519889e-06 +100630,35.0,Eastern Counties in South Carolina and Georgia,G1300510010809,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,NaturalGas,32403.0,,1122.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0016679305595072075,0.00019088507104828847,0.0,0.0018588156305554963,0.0012541393846860148,0.0003388449370986291,0.0001045914020168915,0.0,0.00016125763711538022,0.0011771009643158855,0.0003388449370986291,0.0001045914020168915,0.0,4.7410986437221195e-05,7.703842037012943e-05,0.0,0.00011384665067815904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2753391910388353e-05,0.0,0.0,0.000198764669696512,6.272611951015413e-05,0.0002115180616069003,0.00014027327638916714,4.037961989295476e-05,1.2463993393780552e-05,0.0,5.649892919981217e-06,5.14708228224386e-06,0.0,7.606309628144494e-06,0.0,0.0,0.0,0.0001427108354766638,3.85577908331852e-05,1.1901648690542597e-05,0.0,1.8349804177061347e-05 +100631,46.0,the Tallahassee-Valdosta Area,G1301850010202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,43135.0,,3191.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0021456928783319504,0.0005426731719835561,0.0,0.0026883660503155063,0.001163466316383865,0.0003303343636170038,0.0008557913546616887,0.0,0.0003387740156529489,0.0010913392061270902,0.0003303343636170038,0.00038524529293490733,0.0,0.0003387740156529489,7.21271102567748e-05,0.0004705460617267813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.625862890169861e-05,0.0,0.0,0.0002556981575068912,0.00010685461162715816,0.00029195678640858984,0.00013005282677671227,3.9365320634210534e-05,4.5908952108857624e-05,0.0,4.0371057987110756e-05,4.819162360640048e-06,3.143946654105857e-05,0.0,0.0,0.0,0.0,0.00012635254294563343,3.587434056111088e-05,9.29390153970876e-05,0.0,3.679088750475796e-05 +100632,50.0,the Greater Atlanta and Macon Area,G1302170100700,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,52437.0,,3646.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004672062904337081,0.0010733689802621548,0.0,0.0057454318845992355,0.0019207090101417284,0.0016222218992902715,0.0022025009751672356,0.0,0.0,0.0008473400298795738,0.0016222218992902715,0.0022025009751672356,0.0,0.0,0.0010733689802621548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.171726658679363e-05,0.0,0.0,0.000556760658095214,0.00022743028237669,0.0006284779246820077,0.00010097586490717606,0.00019331703162362985,0.000262467761564408,0.0,0.0,7.171726658679363e-05,0.0,0.0,0.0,0.0,0.0,0.00021010138782562695,0.00017745065525405157,0.0002409258816023292,0.0,0.0 +100633,50.0,the Greater Atlanta and Macon Area,G1301210012000,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,58614.0,,6608.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.005045708861011612,0.0019450765575421045,0.0,0.006990785418553717,0.0028709512899375,0.0015675023312614674,0.0025523317973547496,0.0,0.0,0.0009258747323953952,0.0015675023312614674,0.0025523317973547496,0.0,0.0,0.0019450765575421045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012995866709209714,0.0,0.0,0.000601286138949337,0.00030755526462146774,0.0007312448060414342,0.00011033447595332762,0.0001867958398949969,0.00030415582310101244,0.0,0.0,0.00012995866709209714,0.0,0.0,0.0,0.0,0.0,0.00030030505779693613,0.00016396268367080332,0.0002669770645736947,0.0,0.0 +100634,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,61523.0,,2536.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005272167465882361,0.0007466167420105132,0.0,0.006018814897499172,0.002260903295951764,0.0015822947214969604,0.0021755861904441502,0.0,0.0,0.001514286553941251,0.0015822947214969604,0.0021755861904441502,0.0,0.0,0.0007466167420105132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9885400605522185e-05,0.0,0.0,0.0006282747622465725,0.0002373252175597974,0.0006781601628520946,0.00018045481878322596,0.00018855923040868964,0.000259260713054657,0.0,0.0,4.988540060552219e-05,0.0,0.0,0.0,0.0,0.0,0.0002547435954564004,0.00017828247990418213,0.00024513062959012123,0.0,0.0 +100635,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,14641.0,,2639.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001236300100096659,0.0007767846250011551,0.0,0.0020130540354915166,0.0011112706440398177,0.0004130207215544841,0.0004887933595035122,0.0,0.0,0.0003344860190386626,0.0004130207215544841,0.0004887933595035122,0.0,0.0,0.0007767846250011551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1899622853212216e-05,0.0,0.0,0.0001473265773117745,9.525553261589787e-05,0.00019922620016498674,3.985980454078618e-05,4.9218575053665516e-05,5.824819771732282e-05,0.0,0.0,5.1899622853212216e-05,0.0,0.0,0.0,0.0,0.0,0.00010997927718959308,4.087547949233758e-05,4.8374480745613065e-05,0.0,0.0 +100636,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010101,ComStock 90.1-2007,gen5_led,200001_500000,Electricity,208555.0,,18822.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.01858197351073938,0.005540517383349474,0.0,0.024122490894088855,0.008546011907296104,0.005172549003840018,0.010403960672559031,0.0,0.0,0.0030054945239466296,0.005172549003840018,0.010403960672559031,0.0,0.0,0.005540517383349474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037018498091509326,0.0,0.0,0.0022143777710729334,0.0010350837516839813,0.0025845627519880264,0.00035815895771579054,0.0006164026402937771,0.0012398198302842715,0.0,0.0,0.00037018498091509326,0.0,0.0,0.0,0.0,0.0,0.000915647731016708,0.00055420385675982,0.001114714452396523,0.0,0.0 +100637,46.0,the Tallahassee-Valdosta Area,G1301850011401,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,102952.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.009266256222071577,0.0,0.0,0.009266256222071575,0.007390200479199395,0.001343910280722767,0.0005321758357488496,0.0,0.0,0.007390200479199395,0.001343910280722767,0.0005321758357488496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011042405231116395,0.00033386561467892167,0.0011042405231116395,0.0008806748537357673,0.00016015099904809817,6.341828988658245e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008806748537357674,0.0001601509990480982,6.341828988658247e-05,0.0,0.0 +100638,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,Electricity,62519.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.005570347680670841,0.0,0.0,0.005570347680670841,0.0019260183120312312,0.0014687124885891622,0.0021755861904441502,0.0,0.0,0.0019260183120312312,0.0014687124885891622,0.0021755861904441502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000663808152444764,0.00021345185857375587,0.000663808152444764,0.00022952008215226216,0.00017502378296887749,0.0002592606300993318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022952008215226216,0.00017502378296887749,0.0002592606300993318,0.0,0.0 +100639,50.0,the Greater Atlanta and Macon Area,G1300670030901,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,10652.0,,1540.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0025236409410074874,0.0012218316003507884,0.0,0.003745472541358276,0.002365008773575496,0.0006864687120362517,0.0005871375164753434,0.0,0.00010677483219744587,0.001249869298348414,0.0006864687120362517,0.0005871375164753434,0.0,0.0,0.001115139475227082,0.0,0.00010677483219744587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.163768646164337e-05,0.0,0.0,0.00030073793048843503,0.0001573341815114928,0.00038237561695007844,0.0001489447647081975,8.180529030426411e-05,6.996816335782783e-05,0.0,0.0,7.450896409411343e-05,0.0,7.134248508900127e-06,0.0,0.0,0.0,0.00024144395103757217,7.008165041482249e-05,5.994092003552107e-05,0.0,1.0900651889823593e-05 +100640,50.0,the Greater Atlanta and Macon Area,G1300670031309,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,135353.0,,8001.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,140298.9118897092,0.0,0.0,0.007807422808428891,0.001360681126459112,0.0,0.009168103934888002,0.005577085184677609,0.0028412549568406216,0.0006112187492334803,0.0,0.0001385450441362926,0.004216404058218497,0.0028412549568406216,0.0006112187492334803,0.0,0.0001385450441362926,0.001360681126459112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.091300138527963e-05,0.0,0.0,0.0009303955610564884,0.00033206460265367867,0.0010213085624417681,0.000502460762743868,0.00033858688898215513,7.28377628668179e-05,0.0,1.651014646364735e-05,9.091300138527963e-05,0.0,0.0,0.0,0.0,0.0,0.0006212762085847746,0.0003165101569648481,6.808855424747398e-05,0.0,1.543364264467153e-05 +100641,50.0,the Greater Atlanta and Macon Area,G1301210000200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,117368.0,,24878.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0055153126054901455,0.00423078338133016,0.0,0.009746095986820304,0.003268148868751233,0.0020810125198715973,0.003190773571514122,0.0,0.001206161026683352,0.0024485451817478723,0.0020810125198715973,0.0008022102024502891,0.0,0.00018354470142038662,0.0008196036870033608,0.002388563369063833,0.0010226163252629655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002826761337940894,0.0,0.0,0.0006572492490963008,0.00046976014917368133,0.0009399253828903903,0.0002917884437738295,0.0002479902797683862,9.559785471688364e-05,0.0,2.187267083720145e-05,5.476111173828284e-05,0.0001595897964118572,6.832522564394932e-05,0.0,0.0,0.0,0.00031518426259682144,0.000200695385330199,0.0003077220945676744,0.0,0.00011632364039569547 +100642,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,21311.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,56663.68529324113,0.0,0.0,0.0018988273208514666,0.0,0.0,0.0018988273208514666,0.0007410619232706291,0.0005370681102097987,0.000620666597764741,0.0,0.0,0.0007410619232706291,0.0005370681102097987,0.000620666597764741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022627784955459515,8.405880840332003e-05,0.00022627784955459515,8.83102410330167e-05,6.400087870450956e-05,7.396307262400006e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.83102410330167e-05,6.400087870450956e-05,7.396307262400006e-05,0.0,0.0 +100644,50.0,the Greater Atlanta and Macon Area,G1300670030506,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,15820.0,,2075.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0018409376134116532,0.0007710548846406752,0.0,0.0026119924980523286,0.0015436209578084622,0.0002085052683175775,0.0007581129111007999,0.0,0.0001017533608254894,0.0009815750709944013,0.0002085052683175775,0.0006508572740996746,0.0,0.0,0.0005620458868140607,0.00010725563700112515,0.0001017533608254894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.15164939338486e-05,0.0,0.0,0.00021938211184992888,0.00010475497330255703,0.00027089860578377746,0.00011697300899563036,2.4847298334339452e-05,7.756180451995907e-05,0.0,0.0,3.755197469774732e-05,7.166071421121311e-06,6.798447814979972e-06,0.0,0.0,0.0,0.00016009416782044453,2.1624788940979788e-05,7.862646267055745e-05,0.0,1.0553186351795749e-05 +100645,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,32845.0,,2142.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0031916576757484937,0.0006304872717800058,0.0,0.0038221449475285,0.0019593779140768337,0.0008018887229526761,0.0010608783104989897,0.0,0.0,0.001328890642296828,0.0008018887229526761,0.0010608783104989897,0.0,0.0,0.0006304872717800058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2125373651127265e-05,0.0,0.0,0.00038034404764888843,0.0001572291291279764,0.00042246942130001573,0.00015836148394435004,9.555962250252705e-05,0.00012642294120201135,0.0,0.0,4.2125373651127265e-05,0.0,0.0,0.0,0.0,0.0,0.0002165740087914077,8.863438445783841e-05,0.00011726102805076955,0.0,0.0 +100646,50.0,the Greater Atlanta and Macon Area,G1300890021102,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,NaturalGas,112498.0,,13143.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,153306.56730200956,0.0,0.0,0.012655467694504872,0.004884587552284984,0.0,0.017540055246789858,0.011482514158500153,0.001973224732169544,0.003809086302067054,0.0,0.00027526880247687603,0.007412689712870754,0.001973224732169544,0.0032695919978883463,0.0,0.0,0.0040698244456293985,0.0005394943041787087,0.00027526880247687603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032635882633488215,0.0,0.0,0.001508128703495343,0.0007422680840417423,0.0018344875298302251,0.0008833565377389563,0.00023514554569357835,0.00038963123764087934,0.0,0.0,0.0002719212451915796,3.604577173435109e-05,1.839180940895138e-05,0.0,0.0,0.0,0.0012009385796388934,0.00020637655433725687,0.0003983865057932479,0.0,2.878994269915702e-05 +100647,50.0,the Greater Atlanta and Macon Area,G1301210011621,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,64534.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005749943256724999,0.0,0.0,0.0057499432567249984,0.0018816104517184553,0.001638917045116222,0.002229415759890321,0.0,0.0,0.0018816104517184553,0.001638917045116222,0.002229415759890321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006852095238358692,0.0002319375869336073,0.0006852095238358692,0.0002242278478415705,0.00019530654789977968,0.00026567512809451887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022422784784157052,0.0001953065478997797,0.0002656751280945189,0.0,0.0 +100648,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,1817.0,,420.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.000436362521048586,0.0003328959718007124,0.0,0.0007692584928492983,0.00043024219759187716,0.0001527599651965008,0.00013018093406566987,0.0,5.6075395995250426e-05,0.00015342162178641526,0.0001527599651965008,0.00013018093406566987,0.0,0.0,0.0002768205758054619,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.224426327480966e-05,0.0,0.0,5.200060394603656e-05,4.0989198960098224e-05,7.424486722084623e-05,1.828300233508298e-05,1.820415380749233e-05,1.5513447803461245e-05,0.0,0.0,1.849727929957464e-05,0.0,3.746983975235018e-06,0.0,0.0,0.0,4.152476070130546e-05,1.474360496257424e-05,1.2564393184132024e-05,0.0,5.412108372834507e-06 +100649,50.0,the Greater Atlanta and Macon Area,G1301210006700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,35590.0,,3478.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00535475319642948,0.0010238052660913647,0.0,0.006378527772914548,0.0022112475129620808,0.0016688087216501842,0.0024985022279085793,0.0,0.0,0.0011874422468707163,0.0016688087216501842,0.0024985022279085793,0.0,0.0,0.0010238052660913647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.840374193366831e-05,0.0,0.0,0.0006381151358981619,0.0002492436576760128,0.0007065188778318302,0.00014150509704880006,0.00019886856875381474,0.00029774147009554715,0.0,0.0,6.840374193366831e-05,0.0,0.0,0.0,0.0,0.0,0.00024492926378723545,0.00018484592484536866,0.0002767470885394772,0.0,0.0 +100650,50.0,the Greater Atlanta and Macon Area,G1301210011622,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,124269.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011072257539297806,0.0,0.0,0.011072257539297806,0.0026729419501047218,0.0033484815639297557,0.0050508340252633285,0.0,0.0,0.0026729419501047218,0.0033484815639297557,0.0050508340252633285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001319459550776878,0.0004290233194141041,0.001319459550776878,0.0003185293308271005,0.00039903208216087165,0.0006018981377889057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003185293308271005,0.00039903208216087165,0.0006018981377889057,0.0,0.0 +100651,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890200,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,43451.0,,10901.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.003871463144848908,0.0032087210968500166,0.0,0.007080184241698925,0.0037204089026516155,0.0012918175978892032,0.0020679577411581067,0.0,0.0,0.0005116878058015986,0.0012918175978892032,0.0020679577411581067,0.0,0.0,0.0032087210968500166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002143886887209767,0.0,0.0,0.0004613544905403418,0.0003469253989150745,0.0006757431792613185,6.097680854211385e-05,0.00015394330966012103,0.000246434372338107,0.0,0.0,0.00021438868872097671,0.0,0.0,0.0,0.0,0.0,0.00035508128802968255,0.00012329296820867816,0.00019736892302295777,0.0,0.0 +100652,50.0,the Greater Atlanta and Macon Area,G1301350050526,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,363229.0,,9087.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,280597.8237794184,0.0,0.0,0.017458466327676295,0.001545342840648962,0.0,0.01900380916832526,0.00915331681346368,0.008333606744291799,0.00132970618505828,0.0,0.00018717942551149745,0.0076079739728147164,0.008333606744291799,0.00132970618505828,0.0,0.00018717942551149745,0.001545342840648962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010325102882444003,0.0,0.0,0.0020804915008340347,0.0006224620372464779,0.0021837425296584744,0.0009066274718481699,0.0009930997189201527,0.00015845850172043207,0.0,2.2305808345279768e-05,0.00010325102882444002,0.0,0.0,0.0,0.0,0.0,0.0010518147722886305,0.000957621249075217,0.00015279757455686891,0.0,2.150893373775755e-05 +100653,50.0,the Greater Atlanta and Macon Area,G1302190030400,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,17657.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004055375946659461,0.0,0.0,0.004055375946659461,0.002235241374878522,0.0006371752960876244,0.0010891694540729395,0.0,9.378982162037462e-05,0.002235241374878522,0.0006371752960876244,0.0010891694540729395,0.0,9.378982162037462e-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.00048326720457212905,0.00015063783530953821,0.00048326720457212905,0.0002663671297037986,7.59303029393201e-05,0.00012979311518794215,0.0,1.1176656741068145e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002663671297037986,7.59303029393201e-05,0.00012979311518794215,0.0,1.1176656741068145e-05 +100654,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,70803.0,,11596.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0032796381429514273,0.0019719530667768525,0.0,0.00525159120972828,0.001693621853204864,0.001018804297557654,0.001979222514959074,0.0,0.0005599248136452675,0.001693621853204864,0.001018804297557654,0.0004699786901613396,0.0,9.721557166614953e-05,0.0,0.0015092438247977344,0.00046270924197911795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001317545242000537,0.0,0.0,0.0003908280251480512,0.00023324749043522798,0.0005225825493481049,0.0002018255842213026,0.00012140890374828849,5.600643587225915e-05,0.0,1.1584988413913192e-05,0.0,0.00010083896284768763,3.0915561352366064e-05,0.0,0.0,0.0,0.00016853124897458517,0.00010138057701791895,0.00019695119179849422,0.0,5.571776721995582e-05 +100655,50.0,the Greater Atlanta and Macon Area,G1301210010515,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,59066.0,,5362.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005208525578784558,0.001561962351086387,0.0,0.006770518303470383,0.004378050622957547,0.002065283267369373,0.0003271844131434627,0.0,0.0,0.00281608827187116,0.002065283267369373,0.0003271844131434627,0.0,0.0,0.001561962351086387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010436210194108748,0.0,0.0,0.000620691276554276,0.0002487785090444526,0.0007250533784953635,0.0003355885265259893,0.0002461163506407935,3.89900189585068e-05,0.0,0.0,0.00010436210194108748,0.0,0.0,0.0,0.0,0.0,0.00046884451870871254,0.00022117074992450135,3.5038109862149664e-05,0.0,0.0 +100656,81.0,the Columbus-Albany Area,G1302150010605,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,589830.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,863994.0691636442,0.0,0.0,0.093487016339109,0.0,0.0,0.09348701633910902,0.049329839179482596,0.004700588641149553,0.03919803184893197,0.0,0.0002586112634362601,0.049329839179482596,0.004700588641149553,0.03919803184893197,0.0,0.0002586112634362601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011140670581235294,0.003962861959747771,0.011140670581235294,0.005878543456028835,0.0005601602408508604,0.004671155176005294,0.0,3.081821420088646e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.005878543456028834,0.0005601602408508602,0.0046711551760052926,0.0,3.0818214200886455e-05 +100657,50.0,the Greater Atlanta and Macon Area,G1300890021414,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,12523.0,,2227.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011157820161655802,0.0006556527489441223,0.0,0.0017714347651097025,0.0008199955906683206,0.00043100483084493785,0.0005204343435964438,0.0,0.0,0.00016434284172419842,0.00043100483084493785,0.0005204343435964438,0.0,0.0,0.0006556527489441223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.380591257367763e-05,0.0,0.0,0.00013296568605088954,8.569547324539183e-05,0.00017677159862456723,1.9584433501183085e-05,5.136205118405513e-05,6.201920136565132e-05,0.0,0.0,4.380591257367763e-05,0.0,0.0,0.0,0.0,0.0,8.182741712114847e-05,4.301000209773603e-05,5.193417940568269e-05,0.0,0.0 +100658,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,86914.0,,,,9.325022323477118,Office,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,349688.3371303919,0.0,0.0,0.02168036881840625,0.0,0.0,0.021680368818406247,0.012102973067413291,0.003143382581224468,0.006187067832162947,0.0,0.0002470337217635987,0.012102973067413291,0.003143382581224468,0.006187067832162947,0.0,0.0002470337217635987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025836122810312615,0.0008378142799498856,0.0025836122810312615,0.001442290494034973,0.00037459149836678324,0.0007373022372746115,0.0,2.9438583943066473e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0014422904940349732,0.0003745914983667833,0.0007373022372746116,0.0,2.9438583943066476e-05 +100659,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,47673.0,,13250.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.004203888403781479,0.00386002888454669,0.0,0.008063886914728731,0.006237279391741211,0.0012836490594382674,0.0005429584635492516,0.0,0.0,0.0023772505071945216,0.0012836490594382674,0.0005429584635492516,0.0,0.0,0.00386002888454669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025790419649835973,0.0,0.0,0.0005009674984079121,0.0003819478520415592,0.0007588716949062718,0.0002832913544058209,0.0001529694407591808,6.47030836924688e-05,0.0,0.0,0.00025790419649835973,0.0,0.0,0.0,0.0,0.0,0.0005869743504176906,0.00012080091743617032,5.1096427052410694e-05,0.0,0.0 +100660,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4082.0,,778.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00029228781037932133,0.0002289751525871604,0.0,0.0005212629629664817,0.0003156426007718731,0.00011855394912802585,8.703572346028511e-05,0.0,0.0,8.666744818471267e-05,0.00011855394912802585,8.703572346028511e-05,0.0,0.0,0.0002289751525871604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5297811199191688e-05,0.0,0.0,3.48321501161109e-05,2.727379747815869e-05,5.012996131530258e-05,1.0328222587977445e-05,1.41281600061462e-05,1.0372110219371117e-05,0.0,0.0,1.5297811199191688e-05,0.0,0.0,0.0,0.0,0.0,3.0355410781741955e-05,1.1401356524051451e-05,8.370242584056413e-06,0.0,0.0 +100661,50.0,the Greater Atlanta and Macon Area,G1301510070205,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,42960.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003827638387055789,0.0,0.0,0.003827638387055789,0.0013226299626120969,0.0009731674157001553,0.0015319023879561322,0.0,0.0,0.0013226299626120969,0.0009731674157001553,0.0015319023879561322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004561334233507477,0.0001624982489091605,0.0004561334233507477,0.00015761565531183342,0.000115970773602298,0.00018255430889726608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015761565531183342,0.000115970773602298,0.00018255430889726608,0.0,0.0 +100662,50.0,the Greater Atlanta and Macon Area,G1300670030336,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,8984.0,,817.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002143519230101631,0.0006479272156737343,0.0,0.002791446445775365,0.0015638253502628248,0.0004456257133073884,0.0006991228943183656,0.0,8.278978081304672e-05,0.0009986879154021374,0.0004456257133073884,0.0006991228943183656,0.0,0.0,0.0005651374348606877,0.0,8.278978081304672e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3290741242172345e-05,0.0,0.0,0.0002554354998778709,0.00010744019867681105,0.00029872624112004323,0.00011901005753078255,5.310361821746222e-05,8.331196822424056e-05,0.0,0.0,3.775920792797596e-05,0.0,5.5315333141963895e-06,0.0,0.0,0.0,0.00016735254561636034,4.768857180986617e-05,7.481653628596856e-05,0.0,8.859736522211585e-06 +100663,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,4341.0,,487.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010423572503364916,0.0003859939131413477,0.0,0.0014283511634778391,0.0008192962724615792,0.00019039168374788572,0.0003912871658606634,0.0,2.7293334333971445e-05,0.0004605956936542031,0.00019039168374788572,0.0003912871658606634,0.0,0.0,0.00035870057880737626,0.0,2.7293334333971445e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5789948723211838e-05,0.0,0.0,0.00012421205948999568,6.574526882125875e-05,0.0001500020082132075,5.488669041496357e-05,2.2687944215343175e-05,4.662756910633734e-05,0.0,0.0,2.396636117689517e-05,0.0,1.8235875463166717e-06,0.0,0.0,0.0,8.604052654082416e-05,1.9994477296282787e-05,4.1092038266165876e-05,0.0,2.86628041171734e-06 +100664,35.0,Eastern Counties in South Carolina and Georgia,G1302450010504,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,33854.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028489775318283448,0.0,0.0,0.0028489775318283448,0.0008145635303536274,0.0008658765520833863,0.0011685374493913313,0.0,0.0,0.0008145635303536274,0.0008658765520833863,0.0011685374493913313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003395062317459882,0.0001063447949640113,0.0003395062317459882,9.706970013575081e-05,0.00010318455729146534,0.00013925197431877205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.706970013575081e-05,0.00010318455729146534,0.00013925197431877205,0.0,0.0 +100665,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,12618.0,,1145.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030298082322920486,0.0009079582555101168,0.0,0.0039378491948759056,0.002621896944609785,0.0007628073410976323,0.0004730844617888385,0.0,7.997774030591027e-05,0.0017939164294055782,0.0007628073410976323,0.0004730844617888385,0.0,0.0,0.0008279805152042066,0.0,7.997774030591027e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0666595604227e-05,0.0,0.0,0.0003610602111808505,0.00017606569069779335,0.0004217268067850775,0.0002137798154809229,9.090323827480644e-05,5.63771574251212e-05,0.0,0.0,5.532276267024199e-05,0.0,5.343832933985016e-06,0.0,0.0,0.0,0.0002807939490442271,8.1693403742308e-05,5.066532249875331e-05,0.0,8.565273925925603e-06 +100666,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970100,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Propane,7163.0,,,2658.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005235497335085281,0.0,0.000250521448162577,0.000774071181671105,0.0005617293480017822,0.00016817862008683185,4.4163213582491154e-05,0.0,0.0,0.00031120789983920513,0.00016817862008683185,4.4163213582491154e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000250521448162577,0.0,0.0,0.0,0.0,2.0203612841433308e-05,6.239063941466945e-05,3.738196151187146e-05,8.259425225610277e-05,3.7086180393496734e-05,2.004159485055548e-05,5.262864170617242e-06,0.0,0.0,0.0,0.0,0.0,2.0203612841433308e-05,0.0,0.0,5.993714346573926e-05,1.7944844996744796e-05,4.712263793618735e-06,0.0,0.0 +100667,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10569.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0008628689706662115,0.0,0.0,0.0008628689706662115,0.0003267522382516416,0.0002728305999865778,0.0002633168220342899,0.0,0.0,0.0003267522382516416,0.0002728305999865778,0.0002633168220342899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010282782383070354,4.174920850112912e-05,0.00010282782383070354,3.893896145701738e-05,3.251313678528079e-05,3.1379382859134884e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.893896145701738e-05,3.251313678528079e-05,3.1379382859134884e-05,0.0,0.0 +100668,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,Electricity,70681.0,,3011.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006016666625058334,0.0008864078986965494,0.0,0.006903074523754883,0.0021415821066662955,0.001886244582269409,0.0028752171452128806,0.0,0.0,0.0012551742079697462,0.001886244582269409,0.0028752171452128806,0.0,0.0,0.0008864078986965494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.922513904269217e-05,0.0,0.0,0.0007169929220399703,0.0002732924477988864,0.0007762180610826623,0.00014957634835430296,0.00022477961618993549,0.00034263330028288174,0.0,0.0,5.9225139042692165e-05,0.0,0.0,0.0,0.0,0.0,0.00024081077276008012,0.00021209927653807642,0.0003233045608835176,0.0,0.0 +100669,50.0,the Greater Atlanta and Macon Area,G1300670031111,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,44111.0,,6376.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.00427570663900225,0.0018769149419549066,0.0,0.006152652270563454,0.0026114092894778274,0.0014463704552044347,0.002094872525881192,0.0,0.0,0.0007344943475229206,0.0014463704552044347,0.002094872525881192,0.0,0.0,0.0018769149419549066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012540455293205197,0.0,0.0,0.0005095294724838497,0.000269163868051316,0.0006349340254159016,8.752857691917206e-05,0.00017236177251592617,0.0002496427802825674,0.0,0.0,0.00012540455293205197,0.0,0.0,0.0,0.0,0.0,0.0002694890819865546,0.0001492608024931466,0.0002161841409362003,0.0,0.0 +100670,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,25678.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0059393862379495,0.0014962479299000374,0.0,0.007435715028632606,0.0035772810429516677,0.0004855690023265091,0.002360083675421119,0.0004106110564219839,0.0006021702515113262,0.0035772810429516677,0.0004855690023265091,0.0008638357455210819,0.0004106110564219839,0.0006021702515113262,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99716943603331e-05,0.0,0.0,0.0007077894189984532,0.0003061630173898958,0.0008077611133587863,0.0004263002218658658,5.7864666191331904e-05,0.00010294225294288074,4.893201913731615e-05,7.17598949420231e-05,0.0,9.99716943603331e-05,0.0,0.0,0.0,0.0,0.00038860936801975605,5.274862692040314e-05,0.00025638204395100856,4.460574979214108e-05,6.541532467547747e-05 +100671,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,71081.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0058200676298642545,0.0,0.0,0.005820067629864254,0.00312061397983406,0.0018984107120583644,0.0008010125643723911,0.0,0.0,0.00312061397983406,0.0018984107120583644,0.0008010125643723911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006935659699624247,0.00017767563545858112,0.0006935659699624247,0.00037187740752290757,0.00022622985687307664,9.545508600455629e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003718774075229076,0.0002262298568730767,9.545508600455631e-05,0.0,0.0 +100672,35.0,Eastern Counties in South Carolina and Georgia,G1300510001100,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,18486.0,,470.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0015801257635501631,0.0001368634390665097,0.0,0.0017169892026166727,0.0010169384827753687,0.000533360406126922,0.00016672068731381974,0.0,0.0,0.000880075043708859,0.000533360406126922,0.00016672068731381974,0.0,0.0,0.0001368634390665097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.144712566611855e-06,0.0,0.0,0.00018830007673956072,5.605668574621092e-05,0.00019744478930617255,0.00010487658773097998,6.355937465249382e-05,1.9867733910452083e-05,0.0,0.0,9.144712566611855e-06,0.0,0.0,0.0,0.0,0.0,0.00011694261336234433,6.133366060281254e-05,1.917200814628918e-05,0.0,0.0 +100673,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,17108.0,,498.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001383365586392407,0.00014506431091470268,0.0,0.0015284298973071097,0.0011006481228258127,0.0003153690829621772,0.00011241269151911951,0.0,0.0,0.0009555838119111101,0.0003153690829621772,0.00011241269151911951,0.0,0.0,0.00014506431091470268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.691621693722304e-06,0.0,0.0,0.00016485338605911647,4.850382034466789e-05,0.00017454500775283878,0.0001138753404063204,3.7582011361330686e-05,1.3396034291465365e-05,0.0,0.0,9.691621693722304e-06,0.0,0.0,0.0,0.0,0.0,0.00012569280113550242,3.60148012857003e-05,1.2837405331636024e-05,0.0,0.0 +100674,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,43005.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.01032622627757375,0.0,0.0,0.01032622627757375,0.004921980665299925,0.0016897882235677897,0.0035143062702569115,0.0,0.00020015111844912394,0.004921980665299925,0.0016897882235677897,0.0035143062702569115,0.0,0.00020015111844912394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012305594046526911,0.0004069453200733202,0.0012305594046526911,0.0005865443419884689,0.00020136928384948002,0.00041879409916539844,0.0,2.3851679649343728e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005865443419884689,0.00020136928384948002,0.00041879409916539844,0.0,2.3851679649343728e-05 +100675,85.0,Rural Climate Zone 3A,G1302330010100,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,13301.0,,248.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0030994475883805456,0.00019700824964703024,0.0,0.0032965385451013155,0.0010492219374568538,0.00058755105184404,0.0015494343194321853,0.0,0.00011016582222075749,0.0009623795100305811,0.00058755105184404,0.0015494343194321853,0.0,0.0,8.68424274262728e-05,0.0,0.00011016582222075749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.316530838617791e-05,0.0,0.0,0.0003693593387759866,0.0001314362497692411,0.00038252464716216454,0.00011468619789185803,7.001811187897556e-05,0.00018464517285201687,0.0,0.0,5.803347525393287e-06,0.0,7.361960860784627e-06,0.0,0.0,0.0,0.00012174990400670427,6.8178410693964e-05,0.00017979368608399794,0.0,1.2783452005118248e-05 +100676,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,25350.0,,3610.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0022090378613086464,0.0010626583076642564,0.0,0.0032716961689729027,0.0015518506320496388,0.0007396502013809348,0.0009801646459360316,0.0,0.0,0.0004891923243853824,0.0007396502013809348,0.0009801646459360316,0.0,0.0,0.0010626583076642564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.100106304090475e-05,0.0,0.0,0.0002632461955025416,0.00015067990020962432,0.00033424725854344634,5.8295976053216356e-05,8.81424917728085e-05,0.00011680407046346449,0.0,0.0,7.100106304090475e-05,0.0,0.0,0.0,0.0,0.0,0.00015854217281867727,7.556510119651427e-05,0.00010013684917697494,0.0,0.0 +100677,50.0,the Greater Atlanta and Macon Area,G1301210007300,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,18576.0,,3139.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024959856801921674,0.0009240026664112354,0.0,0.0034199883466034036,0.0014979289937845752,0.0007939094253152734,0.0011281499275035544,0.0,0.0,0.0005739263273733397,0.0007939094253152734,0.0011281499275035544,0.0,0.0,0.0009240026664112354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.173621250316413e-05,0.0,0.0,0.0002974415051285809,0.00015325019536524984,0.00035917771763174506,6.839362581347093e-05,9.46085613693749e-05,0.0001344393179457351,0.0,0.0,6.173621250316413e-05,0.0,0.0,0.0,0.0,0.0,0.0001573171200119155,8.337881492323635e-05,0.00011848178269659313,0.0,0.0 +100678,35.0,Eastern Counties in South Carolina and Georgia,G1300730030202,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,44762.0,,898.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0035987855557825864,0.0002615166911590432,0.0,0.00386030224694163,0.0024362967845015116,0.0011888226819936063,0.00023518278044651236,0.0,0.0,0.0021747800933424686,0.0011888226819936063,0.00023518278044651236,0.0,0.0,0.0002615166911590432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7473857992368447e-05,0.0,0.0,0.00042885986148095804,0.00011576218782790131,0.0004463337194733265,0.00025916406385586313,0.0001416695501364294,2.802624748866563e-05,0.0,0.0,1.7473857992368447e-05,0.0,0.0,0.0,0.0,0.0,0.00028168815186141753,0.00013745339496896785,2.7192172642941186e-05,0.0,0.0 +100679,50.0,the Greater Atlanta and Macon Area,G1300770170200,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,112793.0,,12932.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005806019611333331,0.0021992208394590895,0.0,0.008005258181153841,0.00402273532042726,0.0011118355039286714,0.0013549719500818552,0.0,0.0015156799459932137,0.0033248682949339817,0.0011118355039286714,0.0011321722284774718,0.0,0.00023712585363178622,0.0006978670254932783,0.00022279972160438346,0.0012785540923614276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014693961048023102,0.0,0.0,0.000691892531128967,0.0003127391235885608,0.000838832141609198,0.0003962183551295369,0.00013249536386522796,0.00013491885340967866,0.0,2.825784583041332e-05,4.662756329564479e-05,1.488622866801505e-05,8.542581851657117e-05,0.0,0.0,0.0,0.0004215229050207336,0.00011650384481955613,0.00014198093265540754,0.0,0.0001588207433565056 +100680,35.0,Eastern Counties in South Carolina and Georgia,G1301030030401,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,11470.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013140061832424422,0.0,0.0,0.0013140061832424424,0.0003768376757294925,0.0003919062724216645,0.0005453236143038808,0.0,0.0,0.0003768376757294925,0.0003919062724216645,0.0005453236143038808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015658923177792907,5.331337046755104e-05,0.00015658923177792907,4.4907491989003915e-05,4.6703206507010334e-05,6.498584780133647e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.490749198900391e-05,4.670320650701033e-05,6.498584780133646e-05,0.0,0.0 +100681,35.0,Eastern Counties in South Carolina and Georgia,G1300510002200,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,48245.0,,2281.0,,4.088175128053588,Healthcare,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.00515594276396088,0.0008476605184380829,0.0,0.0060036032823989624,0.003469650109823609,0.0005893635255733793,0.001808543931138192,0.0,0.00013608446428755474,0.0030184247149977047,0.0005893635255733793,0.0015481932718135678,0.0,0.0,0.00045122539482590404,0.00026035065932462426,0.00013608446428755474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.663445355428505e-05,0.0,0.0,0.0006144256303251495,0.0002141280656415947,0.0006710600838794347,0.00035970094956537925,7.023352901087859e-05,0.00018449576933791275,0.0,0.0,3.0147568643246e-05,1.739471994108801e-05,9.092164969951049e-06,0.0,0.0,0.0,0.0003878243754974004,6.587682734904415e-05,0.0002021522051077769,0.0,1.521100707757022e-05 +100682,50.0,the Greater Atlanta and Macon Area,G1301170130612,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,35269.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0031100439672297224,0.0,0.0,0.0031100439672297224,0.0021305865061605395,0.0007271743441392164,0.00025228311692996664,0.0,0.0,0.0021305865061605395,0.0007271743441392164,0.00025228311692996664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037061924698256237,0.00010698216984897144,0.00037061924698256237,0.00025389877920208243,8.665626939350859e-05,3.0064198386971407e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025389877920208243,8.665626939350859e-05,3.0064198386971407e-05,0.0,0.0 +100683,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,33193.0,,3152.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,14029.891188970922,0.0,0.0,0.0017085862782433884,0.0005360242864510362,0.0,0.002244610564694425,0.0008704366331946522,0.0005234179994813787,0.0005451376922209434,0.0,0.0003056359701588702,0.0008704366331946522,0.0005234179994813787,0.0002514342552977688,0.0,6.331512063100856e-05,0.0,0.00029370343692317465,0.0002423208495278616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5813788824461016e-05,0.0,0.0,0.00020360997607928914,9.445458986380593e-05,0.00023942376490375018,0.00010372878696269955,6.237503350632174e-05,2.9963088992688206e-05,0.0,7.5451795213940905e-06,0.0,1.9623425902262397e-05,1.619036292219862e-05,0.0,0.0,0.0,9.28460460391621e-05,5.583093567559742e-05,5.8147689721957876e-05,0.0,3.2600984694825665e-05 +100684,50.0,the Greater Atlanta and Macon Area,G1300890023410,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,283423.0,,21804.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,306613.1346040191,0.0,0.0,0.03035578642201606,0.00810338036660813,0.0,0.03845916678862419,0.024520545040906797,0.003136374916959925,0.010215789436966995,0.0,0.0005865348906380172,0.018407438712927927,0.003136374916959925,0.00881201154055198,0.0,0.0,0.006113106327978868,0.0014037778964150148,0.0005865348906380172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005414202371255672,0.0,0.0,0.003617442715110995,0.0016175891890592216,0.004158862952236562,0.002193580299657111,0.0003737559764547855,0.0010501110565768266,0.0,0.0,0.00040844182648845667,9.379218636712941e-05,3.9188813211859293e-05,0.0,0.0,0.0,0.0026515807505595548,0.00033915850330711945,0.0011047058936757457,0.0,6.342618497887213e-05 +100685,50.0,the Greater Atlanta and Macon Area,G1302170100600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,70770.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.006305547889138609,0.0,0.0,0.006305547889138609,0.0026773919430178885,0.0015333141098458267,0.002094872525881192,0.0,0.0,0.0026773919430178885,0.0015333141098458267,0.002094872525881192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007514210888564111,0.0002644809925334291,0.0007514210888564111,0.00031906010460777256,0.00018272235470035342,0.0002496422867748714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031906010460777256,0.00018272235470035342,0.0002496422867748714,0.0,0.0 +100686,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,53706.0,,5932.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005270356779110797,0.0017462692879455857,0.0,0.007016626067056381,0.002829827217498578,0.0016883273112555232,0.0024985022279085793,0.0,0.0,0.001083557929552992,0.0016883273112555232,0.0024985022279085793,0.0,0.0,0.0017462692879455857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011667610472623495,0.0,0.0,0.0006280586393199439,0.00028768612466476787,0.0007447347440461789,0.0001291255881493106,0.00020119483334347365,0.000297741875050604,0.0,0.0,0.00011667610472623495,0.0,0.0,0.0,0.0,0.0,0.0003003538493255978,0.00017919666745780312,0.00026518748461408525,0.0,0.0 +100688,85.0,Rural Climate Zone 3A,G1300170960500,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,NaturalGas,101637.0,,7756.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.00480498113591857,0.0013190147771219882,0.0,0.006123995913040558,0.003249106460586097,0.0012120829673976496,0.0009893896279617868,0.0,0.0006733991267336055,0.003032264140418851,0.0012120829673976496,0.00041469542325361507,0.0,0.00014592087448703458,0.00021684232016724576,0.0005746942047081715,0.0005274782522465709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.812874427902369e-05,0.0,0.0,0.0005725995347677267,0.00023663245824792997,0.0006607282790467504,0.00036134856453807297,0.00014444138771818515,4.941838473626625e-05,0.0,1.7389084885179837e-05,1.4488117733287535e-05,3.839765822477914e-05,3.524296832095701e-05,0.0,0.0,0.0,0.00035055159255925394,0.00013077368183822031,0.00010674692071525662,0.0,7.265417097533144e-05 +100689,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,11701.0,,3178.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005767154659100575,0.0005403682249989493,0.0,0.0011170836909090067,0.00028519286344154935,0.00013774717787239023,0.0004969111091583998,0.0,0.00019721481007524733,0.00028519286344154935,0.00013774717787239023,7.556680037226505e-05,0.0,7.820862422385291e-05,0.0,0.0004213443087861347,0.0001190061858513944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.610414481121769e-05,0.0,0.0,6.872580415794744e-05,5.4516375512035615e-05,0.00010482994896916513,3.39857521407011e-05,1.641500207529418e-05,9.00511505276146e-06,0.0,9.319934889190709e-06,0.0,2.8151684788324866e-05,7.951275387108085e-06,0.0,0.0,0.0,2.676321708413785e-05,1.2926542339239476e-05,4.6631390861053614e-05,0.0,1.8507134822932255e-05 +100690,50.0,the Greater Atlanta and Macon Area,G1300890022009,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,87265.0,,2571.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007775211755523001,0.0007568977601202435,0.0,0.008532109515643245,0.0037622081464290867,0.001894653534394979,0.0028752171452128806,0.0,0.0,0.003005310386308843,0.001894653534394979,0.0028752171452128806,0.0,0.0,0.0007568977601202435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0571010971928025e-05,0.0,0.0,0.0009265565421724884,0.0003434622690489816,0.0009771275531444163,0.00035813686974060826,0.00022578209862861946,0.00034263391658383234,0.0,0.0,5.057101097192802e-05,0.0,0.0,0.0,0.0,0.0,0.00043086146911267047,0.00021698246708220002,0.00032928010226658793,0.0,0.0 +100691,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,72436.0,,4935.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0062532834896136215,0.0014527845829206544,0.0,0.007706068072534276,0.003345658120150367,0.0018080781550291595,0.0025523317973547496,0.0,0.0,0.0018928735372297123,0.0018080781550291595,0.0025523317973547496,0.0,0.0,0.0014527845829206544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.706559135023914e-05,0.0,0.0,0.0007451923782840548,0.0003483230580610387,0.0008422579696342939,0.00022557028405029438,0.0002154653731447695,0.0003041567210889909,0.0,0.0,9.706559135023914e-05,0.0,0.0,0.0,0.0,0.0,0.0003656738026246916,0.00019761935937507983,0.00027896480763452245,0.0,0.0 +100692,50.0,the Greater Atlanta and Macon Area,G1300890023108,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,11915.0,,518.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002652498561893328,0.0004108060352631399,0.0,0.0030632218900827294,0.001479216013827513,0.0006375061243825816,0.0008820709414297136,0.0,6.442881044292047e-05,0.0011328387890072937,0.0006375061243825816,0.0008820709414297136,0.0,0.0,0.00034637722482021944,0.0,6.442881044292047e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7445999716254613e-05,0.0,0.0,0.0003160906929150846,0.00011644352860572841,0.00034353669263133924,0.0001349971694321323,7.596978768948499e-05,0.00010511387982723885,0.0,0.0,2.3141503284009327e-05,0.0,4.304496432245288e-06,0.0,0.0,0.0,0.0001658923170805276,7.149555381921761e-05,9.892320724986452e-05,0.0,7.225614481729438e-06 +100693,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000500,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,119314.0,,9867.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.009855046374318319,0.002904556408833484,0.0,0.0127596027831518,0.005388358315325463,0.0028586140682058236,0.004512661089226813,0.0,0.0,0.0024838019064919795,0.0028586140682058236,0.004512661089226813,0.0,0.0,0.002904556408833484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001940656735893887,0.0,0.0,0.001174406339685925,0.0005319876753471617,0.001368472013275314,0.00029598974928313703,0.00034065537156323237,0.0005377648760590988,0.0,0.0,0.00019406567358938871,0.0,0.0,0.0,0.0,0.0,0.0005779033781332791,0.000306587392693776,0.0004839845339196339,0.0,0.0 +100694,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,8687.0,,797.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017380064475578064,0.0006322955787370052,0.0,0.0023703847333685513,0.0016911942438213583,0.0002692942320951849,0.0003751592864814985,0.0,3.45715568230305e-05,0.0010934702219073833,0.0002692942320951849,0.0003751592864814985,0.0,0.0,0.0005977240219139748,0.0,3.45715568230305e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.224839595829185e-05,0.0,0.0,0.00020711638055350147,9.190288732454754e-05,0.0002493647765117933,0.00013030768379641394,3.2091507332359406e-05,4.4707333310682525e-05,0.0,0.0,3.993841171884568e-05,0.0,2.309984239446173e-06,0.0,0.0,0.0,0.00017791385031797448,2.832978758975571e-05,3.946680482405772e-05,0.0,3.636932190576747e-06 +100695,81.0,the Columbus-Albany Area,G1301770020402,ComStock 90.1-2004,gen5_led,10001_25000,Electricity,35283.0,,1029.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,56080.226740887294,0.0,0.0,0.003111319658406108,0.00029966593205285944,0.0,0.0034109855904589674,0.002609487048495572,0.0005613952384079669,0.00024010330355542814,0.0,0.0,0.0023098211164427123,0.0005613952384079669,0.00024010330355542814,0.0,0.0,0.00029966593205285944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0022260471621017e-05,0.0,0.0,0.0003707696622368883,0.00011747745649903919,0.0003907919227085093,0.0002752567042917815,6.690033354931817e-05,2.8612624395788566e-05,0.0,0.0,2.0022260471621017e-05,0.0,0.0,0.0,0.0,0.0,0.00029896533829312436,6.43182795115037e-05,2.7508304903881228e-05,0.0,0.0 +100696,50.0,the Greater Atlanta and Macon Area,G1301350050428,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,29789.0,,2635.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026581188702629313,0.0007756797991744378,0.0,0.0034337679798310716,0.0016050357197635579,0.0008351562561793857,0.0009936066934944253,0.0,0.0,0.0008293559205891198,0.0008351562561793857,0.0009936066934944253,0.0,0.0,0.0007756797991744378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1825732085262575e-05,0.0,0.0,0.00031676115627412286,0.00015327309958856737,0.0003685868883593854,9.883220171512237e-05,9.952341271734847e-05,0.00011840554184165195,0.0,0.0,5.1825732085262575e-05,0.0,0.0,0.0,0.0,0.0,0.000172287447820636,8.964718861819473e-05,0.00010665554619860627,0.0,0.0 +100697,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,87454.0,,5416.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007481941877742154,0.001594263667953064,0.0,0.009076205545695217,0.00270074673341044,0.0034194973129026396,0.0029559614993821368,0.0,0.0,0.0011064830654573762,0.0034194973129026396,0.0029559614993821368,0.0,0.0,0.001594263667953064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010651892754068876,0.0,0.0,0.0008916096719239062,0.0003752164684974029,0.0009981285994645948,0.00013185761385245127,0.0004074953972005277,0.000352256660870927,0.0,0.0,0.00010651892754068876,0.0,0.0,0.0,0.0,0.0,0.00029700655642446206,0.00037604900490814316,0.0003250730381319895,0.0,0.0 +100698,50.0,the Greater Atlanta and Macon Area,G1301210009300,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,461284.0,,45141.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02175866407396596,0.007676696853678841,0.0,0.029435360927644795,0.012212229687096869,0.005895965734817258,0.0060022592515304755,0.0,0.005324870793477357,0.011153673919235456,0.005895965734817258,0.003936016122721782,0.0,0.0007729905668300421,0.0010585557678614126,0.002066243128808693,0.004551880226647316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005129115086320646,0.0,0.0,0.0025929390848272844,0.0011161446729562173,0.003105850593459349,0.0013291623486759833,0.0007026111504199329,0.00046904764044438096,0.0,9.211583239315508e-05,7.072643953691872e-05,0.00013805415279489967,0.0003041297316622961,0.0,0.0,0.0,0.0012885644893013556,0.0006221085150445736,0.0006333239977687749,0.0,0.0005618498497323939 +100699,50.0,the Greater Atlanta and Macon Area,G1300670030239,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,106498.0,,9736.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005482032717104706,0.0016557143404887906,0.0,0.0071377470575934975,0.003370594897036298,0.0019805522920655788,0.000689356452011653,0.0,0.0010972434164799678,0.002619625439089962,0.0019805522920655788,0.000689356452011653,0.0,0.00019249853393751327,0.0007509694579463364,0.0,0.0009047448825424545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011062491374338092,0.0,0.0,0.0006532830373166863,0.0002795145142789041,0.0007639079510600673,0.00031217560196988175,0.00023601851424346642,8.214925010551074e-05,0.0,2.2939670997827422e-05,5.0175280528585496e-05,0.0,6.044963321479544e-05,0.0,0.0,0.0,0.00036073346685902634,0.00021196599307754578,7.377746375111884e-05,0.0,0.00011743102737237628 +100700,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,500001_1mil,NaturalGas,644870.0,,5776.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,2428443.6554246196,0.0,0.0,0.05745717297937804,0.0017002655681053296,0.0,0.059157438547483364,0.010046948482497854,0.018473485752477,0.03063703500211482,0.0,0.0,0.008346682914392523,0.018473485752477,0.03063703500211482,0.0,0.0,0.0017002655681053296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011360082506840155,0.0,0.0,0.006847062014163805,0.0022236752684494905,0.006960662839232207,0.0009946583266099585,0.002201450158544691,0.0036509571862311636,0.0,0.0,0.00011360082506840155,0.0,0.0,0.0,0.0,0.0,0.0011821576908484703,0.002173652357938722,0.0036048564014871318,0.0,0.0 +100701,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030201,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Propane,2535.0,,41.0,743.0,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,4088.1751280535877,0.0,0.0,0.00028514965053875725,1.515063369488437e-05,8.931511679465084e-05,0.00038961540102829234,0.0001630533672329244,9.00900852700925e-05,0.00010485323472725603,0.0,3.161871379801955e-05,0.00010531821581252102,9.00900852700925e-05,8.970260103237165e-05,0.0,0.0,0.0,1.515063369488437e-05,0.0,0.0,0.0,0.0,0.0,5.7735151420403365e-05,3.161871379801955e-05,0.0,1.011207588638104e-06,0.0,7.204540751184568e-06,3.397924463062347e-05,1.7436247193246494e-05,4.219499297044614e-05,1.2550018603891099e-05,1.0735391189862697e-05,1.0689217464314897e-05,0.0,0.0,0.0,1.011207588638104e-06,0.0,4.657165171047725e-06,2.5505011943455995e-06,0.0,1.7658531120799348e-05,9.756674157761045e-06,1.135550979393608e-05,0.0,3.4242778979496825e-06 +100702,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000201,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,37544.0,,7713.0,,9.525004485617233,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,166687.57849830156,0.0,0.0,0.009840478931556781,0.006679157365076745,0.0,0.016519636296633528,0.004217412598969496,0.0015223852864480916,0.007792214839821364,0.0006346657512737996,0.0023529578201207735,0.004217412598969496,0.0015223852864480916,0.002161565018883156,0.0006346657512737996,0.0013044502759822377,0.0,0.005630649820938208,0.0010485075441385358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004462599153826075,0.0,0.0,0.0011726725013932477,0.0008094982263854508,0.0016189324167758554,0.0005025816137851887,0.00018141996688985629,0.00025758988716383975,7.563199710820669e-05,0.00015544903644615626,0.0,0.00037620513715985894,7.005477822274851e-05,0.0,0.0,0.0,0.00041330849231723216,0.00014919450082297945,0.0007636408560180868,6.219755326961663e-05,0.00023059101434794 +100703,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,11206.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0009043739232590605,0.0,0.0,0.0009043739232590605,0.0005905842674676465,0.0002498836025743843,6.387567961759208e-05,0.0,0.0,0.0005905842674676465,0.0002498836025743843,6.387567961759208e-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.0001077717483778375,3.3413270205236156e-05,0.0001077717483778375,7.037829976351545e-05,2.9777940349436413e-05,7.6118887267369355e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.037829976351545e-05,2.9777940349436413e-05,7.6118887267369355e-06,0.0,0.0 +100704,50.0,the Greater Atlanta and Macon Area,G1300670031004,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,NaturalGas,11848.0,,1065.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028729956204823224,0.0008448527582470252,0.0,0.0037178483787293475,0.002432415038673031,0.0006762130348925775,0.0005459493937531683,0.0,6.327091141057018e-05,0.0016508331918365761,0.0006762130348925775,0.0005459493937531683,0.0,0.0,0.0007815818468364551,0.0,6.327091141057018e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.644919620454896e-05,0.0,0.0,0.000342368087058702,0.00017631917703834823,0.0003988172832632509,0.00019672588357347182,8.058270661807142e-05,6.505949686715869e-05,0.0,0.0,5.222172336103648e-05,0.0,4.227472843512478e-06,0.0,0.0,0.0,0.0002609275738737366,7.25380429782955e-05,5.856453298675741e-05,0.0,6.787133424461357e-06 +100705,50.0,the Greater Atlanta and Macon Area,G1300670030318,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11883.0,,915.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002861912872601255,0.0007255064508412046,0.0,0.003587419323442459,0.002138060563234836,0.0007982886757317953,0.0005323027265861825,0.0,0.00011868465081590612,0.0015312387632095378,0.0007982886757317953,0.0005323027265861825,0.0,0.0,0.0006068218000252985,0.0,0.00011868465081590612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.847413340726284e-05,0.0,0.0,0.0003410502597691346,0.00015122556190059162,0.00038952439317639745,0.0001824756382211299,9.513097440371319e-05,6.343379105494177e-05,0.0,0.0,4.054431336172908e-05,0.0,7.929820045533762e-06,0.0,0.0,0.0,0.00023215204813839888,8.667871914555823e-05,5.7797786616329544e-05,0.0,1.2886858886642771e-05 +100706,35.0,Eastern Counties in South Carolina and Georgia,G1300730030105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,62730.0,,2285.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.005575165948859581,0.0006726547908330496,0.0,0.0062478207396926295,0.003920382377287447,0.001010884941840032,0.0013165227309588539,0.0,0.0,0.0032477275864543974,0.001010884941840032,0.0013165227309588539,0.0,0.0,0.0006726547908330496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.494387982295636e-05,0.0,0.0,0.0006643800113945764,0.0002683253261202655,0.0007093238912175326,0.00038702440621277335,0.00012046488935735923,0.00015688705861295109,0.0,0.0,4.494387982295636e-05,0.0,0.0,0.0,0.0,0.0,0.0004450865347738801,0.0001147671916967414,0.00014946668051266923,0.0,0.0 +100707,81.0,the Columbus-Albany Area,G1300950000400,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,34155.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0037586114360240366,0.0,0.0,0.0037586114360240366,0.0019060952327161153,0.0015113903080225307,0.000341095521685953,0.0,0.0,0.0019060952327161153,0.0015113903080225307,0.000341095521685953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004479051578731066,0.00010512978171994483,0.0004479051578731066,0.0002271450243428216,0.0001801089381132787,4.0647575864391477e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002271450243428216,0.0001801089381132787,4.0647575864391477e-05,0.0,0.0 +100708,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,3193.0,,1007.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0002638078557350531,0.0002963695280169157,0.0,0.0005601773837519688,0.00036443907478522054,0.00011732636487611773,7.84119440906306e-05,0.0,0.0,6.806954676830477e-05,0.00011732636487611773,7.84119440906306e-05,0.0,0.0,0.0002963695280169157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.98011249030064e-05,0.0,0.0,3.143750986377117e-05,3.10758672567717e-05,5.123863476677757e-05,8.111726021154545e-06,1.398157284890614e-05,9.344210993710485e-06,0.0,0.0,1.98011249030064e-05,0.0,0.0,0.0,0.0,0.0,3.333472787243104e-05,1.0731677023688745e-05,7.172229870657793e-06,0.0,0.0 +100709,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950100,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,10128.0,,275.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,9919.009120746628,0.0,0.0,0.0008761170867560723,8.25443504852271e-05,0.0,0.0009586614372412996,0.0002813527633471409,0.00024286967208067965,0.0002740196661514146,0.0,0.00016038799763986043,0.0002813527633471409,0.00024286967208067965,0.00019147531566618742,0.0,0.00016038799763986043,0.0,8.25443504852271e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.515086108359079e-06,0.0,0.0,0.0001044047404639416,4.83415246059874e-05,0.00010991982657230068,3.3528123900463845e-05,2.8942187595076275e-05,2.281764725237626e-05,0.0,1.91130472402065e-05,0.0,5.515086108359079e-06,0.0,0.0,0.0,0.0,3.225982161309259e-05,2.7847362163228734e-05,3.1419010936164136e-05,0.0,1.839003865179415e-05 +100710,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,290961.0,,24851.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013763955457857052,0.004226155756999525,0.0,0.017990093484495154,0.009017218559203356,0.004345711584054942,0.0019560843933059055,0.0,0.002671114408653795,0.0070846978162247,0.004345711584054942,0.0019560843933059055,0.0,0.0003774793946329242,0.0019325207429786552,0.0,0.0022936350140208704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028236690005078335,0.0,0.0,0.0016402231533919167,0.0006411281658195981,0.0019225900534427002,0.000844269325670001,0.0005178697925865089,0.00023310268052759693,0.0,4.498346749966044e-05,0.00012911968295890256,0.0,0.00015324721709188084,0.0,0.0,0.0,0.0009636645149501173,0.0004644234825036105,0.00020904551727347336,0.0,0.0002854603283807994 +100711,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,15834.0,,1009.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001410801201505397,0.00029701400974916747,0.0,0.0017078152112545645,0.0007685905001196684,0.00043158793336459426,0.0005076367777703017,0.0,0.0,0.0004715764903705009,0.00043158793336459426,0.0005076367777703017,0.0,0.0,0.00029701400974916747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9844591568364696e-05,0.0,0.0,0.00016812247512672755,7.507805424634138e-05,0.00018796706669509225,5.619686649548174e-05,5.1431506802418306e-05,6.049410182882751e-05,0.0,0.0,1.9844591568364696e-05,0.0,0.0,0.0,0.0,0.0,8.459328670054431e-05,4.750181244488719e-05,5.587196754966074e-05,0.0,0.0 +100712,50.0,the Greater Atlanta and Macon Area,G1301210010001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,18318.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016153287652985176,0.0,0.0,0.0016153287652985178,0.0011069962051083028,0.0004227093833751921,8.56231768150224e-05,0.0,0.0,0.0011069962051083028,0.0004227093833751921,8.56231768150224e-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.0001924973500875209,4.578111042946375e-05,0.0001924973500875209,0.0001319197928112855,5.037391638464195e-05,1.0203640891593424e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001319197928112855,5.037391638464194e-05,1.0203640891593422e-05,0.0,0.0 +100713,50.0,the Greater Atlanta and Macon Area,G1300890023000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,6257.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001152853900852206,0.0,0.0,0.001152853900852206,0.0006037616382969442,0.00028600106099052505,0.00022182037176882253,0.0,4.118812272217509e-05,0.0006037616382969442,0.00028600106099052505,0.00022182037176882253,0.0,4.118812272217509e-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.0001373801207531197,3.953177944587004e-05,0.0001373801207531197,7.194740522977071e-05,3.408138729925303e-05,2.643327956523905e-05,0.0,4.908192849921344e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.194740522977071e-05,3.408138729925303e-05,2.643327956523905e-05,0.0,4.908192849921344e-06 +100714,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,320028.0,,4544.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.026430564114920185,0.001337575800879078,0.0,0.02776813991579926,0.010964352883555082,0.006399887738897747,0.010403899293346435,0.0,0.0,0.009626777082676004,0.006399887738897747,0.010403899293346435,0.0,0.0,0.001337575800879078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.936888473773283e-05,0.0,0.0,0.0031496802308998936,0.001004954879124766,0.003239049115637626,0.0011472047790106854,0.0007626624919369688,0.0012398129599522395,0.0,0.0,8.936888473773284e-05,0.0,0.0,0.0,0.0,0.0,0.0012789505389524298,0.0007465228417789096,0.001213575734906287,0.0,0.0 +100715,50.0,the Greater Atlanta and Macon Area,G1301510070108,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,176611.0,,18005.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.009091118705602136,0.0030618561136289183,0.0,0.012152974819231053,0.0069291316251251555,0.0017601461692529018,0.0015882680456469102,0.0,0.0018754112488446651,0.006333356020688542,0.0017601461692529018,0.0006969095859765955,0.0,0.0003006891993226755,0.0005957756044366143,0.0008913584596703146,0.0015747220495219898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020457544129248693,0.0,0.0,0.0010833702250523315,0.0005729369701349215,0.0012879456663448185,0.0007547332247726308,0.00020975305826041523,8.304930553104954e-05,0.0,3.583252359693352e-05,3.9806265436968824e-05,5.955539498579649e-05,0.00010521378086972162,0.0,0.0,0.0,0.0007343342005441132,0.00018653643774818132,0.00016832117047983175,0.0,0.00019875197854780384 +100716,50.0,the Greater Atlanta and Macon Area,G1301210010001,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,51919.0,,2258.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004578334137650083,0.0006578921638217044,0.0,0.005236226301471788,0.003915369582722274,0.0009321961403440412,0.00038866057840547237,0.0,0.0,0.0032574774189005696,0.0009321961403440412,0.00038866057840547237,0.0,0.0,0.0006578921638217044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.395736279622801e-05,0.0,0.0,0.0005455907612829985,0.00015881966558994792,0.0005895481240792266,0.00038818695433888667,0.00011108791682391837,4.631589012019352e-05,0.0,0.0,4.395736279622801e-05,0.0,0.0,0.0,0.0,0.0,0.00044083251175029795,0.00010495621353478395,4.375939879414471e-05,0.0,0.0 +100717,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,NaturalGas,75951.0,,2477.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00805188934295082,0.0007216159754421077,0.0,0.008773505318392926,0.00509055451856833,0.0032714796482413732,0.00041144077798378623,0.0,0.0,0.004368938543126222,0.0032714796482413732,0.00041144077798378623,0.0,0.0,0.0007216159754421077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.821356780619138e-05,0.0,0.0,0.0009595274906203362,0.00029606717849127857,0.0010077410584265274,0.0005206376365107948,0.00038985566291229617,4.903057163636838e-05,0.0,0.0,4.8213567806191375e-05,0.0,0.0,0.0,0.0,0.0,0.0005847105133412815,0.00037576820708458777,4.725884923281304e-05,0.0,0.0 +100718,46.0,the Tallahassee-Valdosta Area,G1301850010900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,74886.0,,630.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00616016082276876,0.00018342616700458322,0.0,0.006343586989773343,0.0032912832350747876,0.0025472515432476187,0.0005050522114509372,0.0,0.0,0.0031078570680702043,0.0025472515432476187,0.0005050522114509372,0.0,0.0,0.00018342616700458322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2255684553506246e-05,0.0,0.0,0.0007340952506230412,0.00016926424706142614,0.0007463509351765474,0.00037035771937203344,0.00030355137046565424,6.018616078535365e-05,0.0,0.0,1.2255684553506246e-05,0.0,0.0,0.0,0.0,0.0,0.0003872339615408552,0.0002996953576103938,5.9421616025298446e-05,0.0,0.0 +100719,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,21868.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006874033019695059,0.0,0.0,0.006874033019695058,0.004399189252193762,0.0013951029198346376,0.0009502215701909031,0.0,0.00012960198454949477,0.004399189252193762,0.0013951029198346376,0.0009502215701909031,0.0,0.00012960198454949477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008191616058308178,0.00024448122383806327,0.0008191616058308178,0.0005242405618151335,0.000166250983205446,0.00011323556711212765,0.0,1.544434969664062e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005242405618151336,0.000166250983205446,0.00011323556711212767,0.0,1.544434969664062e-05 +100720,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,236982.0,,32788.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01087266542108904,0.005575914980823885,0.0,0.016448580401912927,0.007167853211284748,0.002972761047493153,0.002004186863838509,0.0,0.004303779279296516,0.005771002147528726,0.002972761047493153,0.001586530470227745,0.0,0.0005423717558394153,0.00139685106375602,0.0004176563936107638,0.0037614075234571006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003725506373083326,0.0,0.0,0.0012956741709873624,0.0006449115690126578,0.0016682248082956952,0.0006877189845980395,0.0003542580918827182,0.00018906371824625002,0.0,6.463337626035458e-05,9.332957116757091e-05,2.7905403176107793e-05,0.0002513156629646538,0.0,0.0,0.0,0.0007269679362661926,0.0003014991936925104,0.00020326582385960277,0.0,0.00043649185447738935 +100721,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,90326.0,,6051.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008972996399716042,0.0017811019910934785,0.0,0.010754098390809522,0.0034283359195163773,0.0026516126737278186,0.004674119107959026,0.0,0.0,0.0016472339284228992,0.0026516126737278186,0.004674119107959026,0.0,0.0,0.0017811019910934785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011900301640179882,0.0,0.0,0.001069293681709881,0.0004157009539146794,0.0011882966981116797,0.00019629750793352516,0.000315987274713353,0.0005570052418452078,0.0,0.0,0.00011900301640179882,0.0,0.0,0.0,0.0,0.0,0.0003788211810169534,0.00029299551392933306,0.0005164766120528605,0.0,0.0 +100722,85.0,Rural Climate Zone 3A,G1301070970600,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,35528.0,,3826.0,,3.3063363735822096,Lodging,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,57860.88653768867,0.0,0.0,0.0032323916382495203,0.001150042738840875,0.0,0.004382465715112599,0.0015272898501321294,0.0008039769596425595,0.0012998384849757974,0.0,0.0007512977443177049,0.0015272898501321294,0.0008039769596425595,0.0009010934904526274,0.0,0.0,0.0,0.00039874499452316996,0.0007512977443177049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.683946055079989e-05,0.0,0.0,0.00038519949105567526,0.0002171063668270752,0.0004620389516064752,0.0001820049482877609,9.580878505257934e-05,0.0001073820232080244,0.0,0.0,0.0,2.6641923157893554e-05,5.0197537392906325e-05,0.0,0.0,0.0,0.00016102063245373934,8.47624820584513e-05,0.00013704066384020438,0.0,7.920856538177007e-05 +100723,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5469.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001541246319131994,0.0,0.0,0.001541246319131994,0.0009292966805348582,0.0003558058312265005,0.00020784287630687957,0.0,4.821822399001623e-05,0.0009292966805348582,0.0003558058312265005,0.00020784287630687957,0.0,4.821822399001623e-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.00018366444979457238,5.834690762603685e-05,0.00018366444979457238,0.00011074074364860826,4.240002484659244e-05,2.4767843430843052e-05,0.0,5.74598198176741e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011074074364860826,4.240002484659244e-05,2.4767843430843052e-05,0.0,5.74598198176741e-06 +100724,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,51332.0,,3199.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004370844418525128,0.0009415571212135213,0.0,0.00531240153973865,0.0017477116994415779,0.001442902529692794,0.0021217873106042775,0.0,0.0,0.0008061545782280567,0.001442902529692794,0.0021217873106042775,0.0,0.0,0.0009415571212135213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.290984981071655e-05,0.0,0.0,0.0005208656679055908,0.00020207404009170963,0.0005837755177163074,9.606799112872441e-05,0.00017194809924273285,0.00025284957753413356,0.0,0.0,6.290984981071655e-05,0.0,0.0,0.0,0.0,0.0,0.00019205462812409092,0.00015855939446305858,0.00023316149512915777,0.0,0.0 +100725,85.0,Rural Climate Zone 3A,G1301330950301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9221.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0018716610787205272,0.0,0.0,0.0018716610787205272,0.000983056278465408,0.0005050920993259504,0.00033711403256141706,0.0,4.639866836775146e-05,0.000983056278465408,0.0005050920993259504,0.00033711403256141706,0.0,4.639866836775146e-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.000223040515895031,7.143852279443085e-05,0.000223040515895031,0.0001171480146676243,6.019038579633027e-05,4.017291837331623e-05,0.0,5.529197057760157e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001171480146676243,6.019038579633027e-05,4.017291837331623e-05,0.0,5.529197057760157e-06 +100726,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,NaturalGas,17395.0,,1726.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004417384808416409,0.001368884777459277,0.0,0.005786269585875686,0.004004924631678483,0.0007001980862769767,0.0010036503398264955,0.0,7.741382101999174e-05,0.0027135363823129373,0.0007001980862769767,0.0010036503398264955,0.0,0.0,0.0012913882493655459,0.0,7.741382101999174e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.145841916641011e-05,0.0,0.0,0.0005264116323146333,0.00026423076137956753,0.0006178700514810436,0.0003233671455647034,8.34413195876369e-05,0.00011960316716229312,0.0,0.0,8.628069342422376e-05,0.0,5.172199887605575e-06,0.0,0.0,0.0,0.0004276542860002941,7.476862617513351e-05,0.00010717189683855955,0.0,8.266410831552676e-06 +100727,85.0,Rural Climate Zone 3A,G1301330950301,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,43165.0,,8987.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0021169342321086244,0.0015283216936857113,0.0,0.003645255925794336,0.0014010886201354128,0.0005216449633393735,0.0010166766541872476,0.0,0.0007058456881323021,0.001038307695119712,0.0005216449633393735,0.0004364860374388599,0.0,0.00012049553621067884,0.00036278092501570037,0.0005801906167483878,0.0005853501519216232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010211331589392231,0.0,0.0,0.00025227177965600765,0.000174183275374707,0.0003543850955499299,0.0001237335228017309,6.216362381704078e-05,5.201536627333911e-05,0.0,1.4359266763896847e-05,2.423885190498091e-05,3.8764867351873826e-05,3.910959663706758e-05,0.0,0.0,0.0,0.00013621126599291112,5.071336661660597e-05,9.883943969147215e-05,0.0,6.862102324894067e-05 +100728,50.0,the Greater Atlanta and Macon Area,G1301210011416,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,69769.0,,4213.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005862286933082729,0.001227427526878989,0.0,0.0070897144599617185,0.0042606262875311985,0.0019355576241707345,0.000893560921859221,0.0,0.0,0.00303319876065221,0.0019355576241707345,0.000893560921859221,0.0,0.0,0.001227427526878989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.200965472265215e-05,0.0,0.0,0.0006985975215313636,0.0002515212461199888,0.0007806071762540156,0.00036146049497262547,0.00023065670010044315,0.0001064839460220469,0.0,0.0,8.200965472265215e-05,0.0,0.0,0.0,0.0,0.0,0.000469112751178602,0.00021311297937505464,9.838478996052938e-05,0.0,0.0 +100729,50.0,the Greater Atlanta and Macon Area,G1302550160500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,13900.0,,1506.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.001238448372537498,0.00044328067336401895,0.0,0.0016817597355078151,0.0006692175549277068,0.000454635827694169,0.0005578756632796413,0.0,0.0,0.0002259368815636879,0.000454635827694169,0.0005578756632796413,0.0,0.0,0.00044328067336401895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.961773791265598e-05,0.0,0.0,0.00014758480241942678,7.478697143133645e-05,0.00017720254033208274,2.6924699296521285e-05,5.417855139617852e-05,6.648155172672698e-05,0.0,0.0,2.961773791265598e-05,0.0,0.0,0.0,0.0,0.0,7.051366985677467e-05,4.7903765259940376e-05,5.8781871533360094e-05,0.0,0.0 +100730,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,31766.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.002624461233018384,0.0,0.0,0.002624461233018384,0.0021946748009741956,0.0003273970283395269,0.00010238940370466139,0.0,0.0,0.0021946748009741956,0.0003273970283395269,0.00010238940370466139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003127533209034383,7.318018529367332e-05,0.0003127533209034383,0.00026153628168412886,3.901543927526053e-05,1.2201599944048915e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026153628168412886,3.901543927526053e-05,1.2201599944048915e-05,0.0,0.0 +100731,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,116234.0,,1159.0,,1.8706521585294562,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,70149.4559448546,0.0,0.0,0.0056336982286918375,0.00019714388862956709,0.0,0.005830842117321405,0.002538030315834879,0.0010947966266040003,0.0008650288729615362,0.0,0.00133296857155957,0.002538030315834879,0.0010947966266040003,0.000667884984331969,0.0,0.00133296857155957,0.0,0.00019714388862956709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3172365341368097e-05,0.0,0.0,0.0006713559097372397,0.0001777104770047453,0.0006845282750786079,0.00030245170800063866,0.00013046459987645784,7.959044184731713e-05,0.0,0.00015884704712313316,0.0,1.3172365341368097e-05,0.0,0.0,0.0,0.0,0.0002979592791639119,0.00012852676016468547,0.00010155252198349193,0.0,0.00015648763226036984 +100732,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,17634.0,,11032.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005544097199448766,0.0075889052930748525,0.0,0.013132930772552601,0.0025567452467355183,0.000464315092355066,0.00803127407429914,0.0003795420866146137,0.0017010542725482628,0.0025567452467355183,0.000464315092355066,0.001929338940290953,0.0003795420866146137,0.00021408411348159903,0.0,0.006101935134008187,0.0014869701590666637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000507045462644139,0.0,0.0,0.0006606758553095477,0.0006715882678702959,0.0011677213179536869,0.0003046807788405224,5.533123964805583e-05,0.00022991437716594838,4.522905780313739e-05,2.551185516673566e-05,0.0,0.00040769497095596315,9.935049168817565e-05,0.0,0.0,0.0,0.00022733432322886827,4.128481608414523e-05,0.000714104879505509,3.374718052476005e-05,0.00015125011861040415 +100733,81.0,the Columbus-Albany Area,G1301770020300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,13903.0,,28.0,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.0020610285871322975,1.4467381213976975e-05,0.0,0.0020755505622376477,0.0011431960853610487,0.0001717523822610248,0.000746080119510224,0.0,1.4467381213976975e-05,0.0011431960853610487,0.0001717523822610248,0.000746080119510224,0.0,0.0,0.0,0.0,1.4467381213976975e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.682590152045053e-07,0.0,0.0,0.0002456101589030064,8.441576007452645e-05,0.00024657841791821095,0.00013623322545637198,2.0467513241917203e-05,8.890942020471725e-05,0.0,0.0,0.0,0.0,9.682590152045053e-07,0.0,0.0,0.0,0.00013581335344329892,2.0404432183983682e-05,8.863540058052163e-05,0.0,1.7187458769089878e-06 +100734,81.0,the Columbus-Albany Area,G1301450120198,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,287088.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.023249801249407377,0.0,0.0,0.023249801249407377,0.006576751939991408,0.006269119326463236,0.010403960672559031,0.0,0.0,0.006576751939991408,0.006269119326463236,0.010403960672559031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002770633675911455,0.0008173825197848158,0.002770633675911455,0.0007837387600687834,0.0007470787787766193,0.0012398197942868519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007837387600687834,0.0007470787787766193,0.0012398197942868519,0.0,0.0 +100735,81.0,the Columbus-Albany Area,G1300950011400,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,120285.0,,17203.0,,1.8706521585294562,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,70149.4559448546,0.0,0.0,0.0078058093455396676,0.002925598286115812,0.0,0.01073138990129406,0.004138089051826123,0.000988237154469483,0.003978586720491327,0.0,0.001626512435229964,0.004138089051826123,0.000988237154469483,0.001052988434375516,0.0,0.001626512435229964,0.0,0.002925598286115812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019547102475606917,0.0,0.0,0.0009302026120906699,0.0004074663224155421,0.001125673636846739,0.0004931277558389224,0.00011776623560218526,0.00012548251549559863,0.0,0.0001938282180455006,0.0,0.00019547102475606917,0.0,0.0,0.0,0.0,0.00043406658367739286,0.00010366155008538003,0.00041733551984962875,0.0,0.00017061370290170664 +100736,50.0,the Greater Atlanta and Macon Area,G1300670031306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,32605.0,,2358.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003012180229841286,0.0006870204456825084,0.0,0.003699200675523795,0.0023055991861208654,0.0011546220090266977,0.0002389491067767936,0.0,0.0,0.001618578740438357,0.0011546220090266977,0.0002389491067767936,0.0,0.0,0.0006870204456825084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.590275511057216e-05,0.0,0.0,0.00035895407724229137,0.00015208813731423668,0.00040485683235286354,0.00019288203025243737,0.00013759345264531428,2.8474974797724195e-05,0.0,0.0,4.590275511057216e-05,0.0,0.0,0.0,0.0,0.0,0.0002523349407196089,0.00012636692359850357,2.6151643814106062e-05,0.0,0.0 +100737,81.0,the Columbus-Albany Area,G1302150010203,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,22522.0,,1381.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005264718778875614,0.0010953724846033874,0.0,0.006360091263479002,0.00446030977968711,0.000852048273662345,0.0009175522760638766,0.0,0.00013018093406566987,0.0034951182291493924,0.000852048273662345,0.0009175522760638766,0.0,0.0,0.0009651915505377174,0.0,0.00013018093406566987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.318796283222756e-05,0.0,0.0,0.0006273839953246743,0.0002657610127512613,0.0007005719581569017,0.0004165049133363508,0.0001015365630325158,0.00010934251895580766,0.0,0.0,6.448984644005554e-05,0.0,8.698116392172015e-06,0.0,0.0,0.0,0.0004913086663213247,9.385417642534234e-05,0.00010106952371022597,0.0,1.4339591700008623e-05 +100738,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,12175.0,,2890.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0010847855138049003,0.0008505931281471302,0.0,0.001935409331558328,0.0010815324155373437,0.0003271512031335117,0.0005267257128874729,0.0,0.0,0.00023093928739021345,0.0003271512031335117,0.0005267257128874729,0.0,0.0,0.0008505931281471302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.683245276231876e-05,0.0,0.0,0.0001292726016853435,9.519528566742403e-05,0.00018610505444766227,2.752076067791354e-05,3.898622044206755e-05,6.276927780930632e-05,0.0,0.0,5.683245276231876e-05,0.0,0.0,0.0,0.0,0.0,0.00010399797386448793,3.145819929614487e-05,5.06488812870295e-05,0.0,0.0 +100739,50.0,the Greater Atlanta and Macon Area,G1301510070106,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,19992.0,,1033.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0010018895327629238,0.0001757256120341433,0.0,0.0011776328751584872,0.0006129563246526454,0.00034974910937196163,8.687877095825874e-05,0.0,0.00012804867017562137,0.0004372307126185021,0.00034974910937196163,8.687877095825874e-05,0.0,0.00012804867017562137,0.0001757256120341433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1741196112521926e-05,0.0,0.0,0.00011939412657415018,4.199793515308408e-05,0.0001311353226866721,5.210432621300978e-05,4.167923515319671e-05,1.0353252167224165e-05,0.0,1.5259425949325088e-05,1.1741196112521926e-05,0.0,0.0,0.0,0.0,0.0,6.825575875278069e-05,3.894631619442169e-05,9.674386563554003e-06,0.0,1.4258861175915717e-05 +100740,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,11412.0,,137.0,,7.614023970037612,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,22842.071910112838,0.0,0.0,0.0023909656301596086,9.504396893906627e-05,0.0,0.0024860095990986747,0.0011954467315684382,0.0003291537906841923,7.303302700556952e-05,0.0007241960731234093,0.0001641078096943331,0.0011954467315684382,0.0003291537906841923,7.303302700556952e-05,0.0007241960731234093,6.906384075526685e-05,0.0,0.0,9.504396893906627e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.350932724779685e-06,0.0,0.0,0.0002849244169564717,0.00010200605699818448,0.0002912753496812514,0.00014245790851118154,3.922429946993654e-05,8.703133318038978e-06,8.630033878114738e-05,8.230136942058602e-06,0.0,0.0,6.350932724779685e-06,0.0,0.0,0.0,0.00014006549487546248,3.856557332490095e-05,8.556974392633141e-06,8.485102572141658e-05,1.922782585854522e-05 +100741,85.0,Rural Climate Zone 3A,G1301750950500,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,9783.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0023381289746102207,0.0,0.0,0.0023381289746102207,0.0011014928080600964,0.0005639795358283374,0.0005977240219139748,0.0,7.493260880781252e-05,0.0011014928080600964,0.0005639795358283374,0.0005977240219139748,0.0,7.493260880781252e-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.00027863513972547674,7.717048068934705e-05,0.00027863513972547674,0.00013126504389331093,6.720951601655558e-05,7.123085089480086e-05,0.0,8.929728920809407e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013126504389331093,6.720951601655558e-05,7.123085089480086e-05,0.0,8.929728920809407e-06 +100742,50.0,the Greater Atlanta and Macon Area,G1302230120202,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,12368.0,,1446.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0029728230584856663,0.0011467335773954976,0.0,0.004119556635881164,0.0028406571546502526,0.0007047469753326387,0.0004733325830100564,0.0,0.00010073721581447645,0.0016939235772547555,0.0007047469753326387,0.0004733325830100564,0.0,0.00010073721581447645,0.0011467335773954976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.661812312831647e-05,0.0,0.0,0.0003542650879617755,0.00015969817324084162,0.000430883211090092,0.00020186131945651914,8.398321874366485e-05,5.640605103508905e-05,0.0,1.200464269801476e-05,7.661812312831647e-05,0.0,0.0,0.0,0.0,0.0,0.00029711728338453487,7.371269934547319e-05,4.9508012950844154e-05,0.0,1.053656469930599e-05 +100743,50.0,the Greater Atlanta and Macon Area,G1301170130103,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,35304.0,,2286.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029910098310331726,0.0006660626620704596,0.0,0.0036570421195041953,0.002324521938570585,0.0010025110230424366,0.0003300395314906113,0.0,0.0,0.0016584592765001252,0.0010025110230424366,0.0003300395314906113,0.0,0.0,0.0006660626620704596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4501401552781314e-05,0.0,0.0,0.0003564323839572123,0.00013308952308454023,0.0004009337855099936,0.0001976351222539118,0.00011946714122399566,3.933012047930488e-05,0.0,0.0,4.4501401552781314e-05,0.0,0.0,0.0,0.0,0.0,0.00025484513163290745,0.00010990864374796804,3.6183340088633e-05,0.0,0.0 +100744,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,9110.0,,449.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021875193933309422,0.0003559712453739791,0.0,0.002543490638704921,0.0016828408293736881,0.0003854149636251726,0.000398978923718419,0.0,7.617321491390214e-05,0.001326869583999709,0.0003854149636251726,0.000398978923718419,0.0,7.617321491390214e-05,0.0003559712453739791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3786627580492703e-05,0.0,0.0,0.0002606789434629359,0.00010792277840967511,0.00028446557104342866,0.00015811835192165602,4.59285370538501e-05,4.754490616904997e-05,0.0,9.07729240914076e-06,2.37866275804927e-05,0.0,0.0,0.0,0.0,0.0,0.00018820996241084264,4.310504864768893e-05,4.462205035975352e-05,0.0,8.519259614704186e-06 +100745,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,15029.0,,128.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003608675041393461,0.0001013988724043909,0.0,0.003710073913797853,0.0020937295717105677,0.0008515520312199092,0.0006715814387631763,0.0,9.321087210419947e-05,0.0019923306993061764,0.0008515520312199092,0.0006715814387631763,0.0,9.321087210419947e-05,0.0001013988724043909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.773788236552987e-06,0.0,0.0,0.00043003635933652615,0.00015020845410515374,0.0004368101475730791,0.0002374208347097905,0.00010147722670812417,8.003060226009792e-05,0.0,1.1107695658513591e-05,6.773788236552987e-06,0.0,0.0,0.0,0.0,0.0,0.00024650784443828295,0.00010025853313594949,7.906947251980476e-05,0.0,1.097429747904187e-05 +100746,50.0,the Greater Atlanta and Macon Area,G1301210011306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,72384.0,,8856.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0035225440944061503,0.001506052359742125,0.0,0.005028596454148276,0.00140016664134157,0.0011068000812853762,0.002070675719163707,0.0,0.0004509185516347829,0.00140016664134157,0.0011068000812853762,0.0005646233594215816,0.0,0.0004509185516347829,0.0,0.001506052359742125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010062571215102055,0.0,0.0,0.0004197742649448471,0.00022450308826942945,0.0005203999770958677,0.00016685495111411504,0.00013189506734642925,6.728499326616429e-05,0.0,5.373502743743414e-05,0.0,0.00010062571215102055,0.0,0.0,0.0,0.0,0.00014490060889325556,0.00011454065606626041,0.0002142903306422266,0.0,4.666471173069869e-05 +100747,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,9202.0,,509.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002019458619492669,0.0004039413481427774,0.0,0.002423482674709186,0.0009173868619163978,0.00045819718851576314,0.0009709810456994693,0.0,7.691757857755591e-05,0.0005134455137736205,0.00045819718851576314,0.0009709810456994693,0.0,7.691757857755591e-05,0.0004039413481427774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.698957613962375e-05,0.0,0.0,0.00024065960064499755,0.00010095679810930893,0.0002676491767846213,6.118748416284332e-05,5.460352162727963e-05,0.00011571215593939764,0.0,9.1662951468177e-06,2.698957613962375e-05,0.0,0.0,0.0,0.0,0.0,0.00010131611046669234,5.060325026915576e-05,0.0001072350465992579,0.0,8.494769449515319e-06 +100748,50.0,the Greater Atlanta and Macon Area,G1301350050534,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,32403.0,,3057.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028870326436374965,0.0008997578774360501,0.0,0.0037867905210735462,0.001881027349198799,0.0008180007662589701,0.0010877930952220751,0.0,0.0,0.0009812694717627488,0.0008180007662589701,0.0010877930952220751,0.0,0.0,0.0008997578774360501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0117572697808136e-05,0.0,0.0,0.00034404211406073115,0.0001636173262909066,0.00040415968675853927,0.00011693599110232393,9.747957424286428e-05,0.0001296302059367571,0.0,0.0,6.0117572697808136e-05,0.0,0.0,0.0,0.0,0.0,0.00020075983078697132,8.730425715910615e-05,0.00011609887427795141,0.0,0.0 +100749,50.0,the Greater Atlanta and Macon Area,G1301210006601,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,136341.0,,8809.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011284328952539826,0.0014980736971031015,0.0,0.01278238491928151,0.006781295871604757,0.0018834076418451095,0.0016152713860896506,0.0,0.0025024277501034128,0.005283222174501655,0.0018834076418451095,0.0016152713860896506,0.0,0.0025024277501034128,0.0014980736971031015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010009203863554952,0.0,0.0,0.0013447312436427289,0.0003746195502613184,0.0014448232822782783,0.0006295911750746508,0.0002244419771132735,0.00019248870792161393,0.0,0.0002982093835331908,0.0001000920386355495,0.0,0.0,0.0,0.0,0.0,0.0007665059549671932,0.00021288603246909574,0.00018257795556601137,0.0,0.0002828553433807788 +100750,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,181553.0,,35893.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009345460740172793,0.006103871952828797,0.0,0.015449350423363014,0.008637327835417302,0.0020524134469010525,0.0018823792808827459,0.0,0.0028772475905233285,0.005415703435032288,0.0020524134469010525,0.0014516024198211429,0.0,0.000425759168779728,0.003221624400385014,0.0004307768610616029,0.0024514884217436005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004078251938521898,0.0,0.0,0.001113681491633558,0.0006550233944801552,0.0015215066854857478,0.0006453794893006233,0.0002445823627686947,0.00017298480975004365,0.0,5.073694270899096e-05,0.0002152501896762536,2.878200234657078e-05,0.00016379418646890885,0.0,0.0,0.0,0.0008506346018565402,0.00020212893715702493,0.00018538337095078364,0.0,0.0002833615216701166 +100751,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,15073.0,,681.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033400424658881914,0.0005404907268863738,0.0,0.0038805331927745657,0.0018690971594346084,0.0006030172746332905,0.0013192605332156928,0.0,8.915822549097339e-05,0.001417764658039208,0.0006030172746332905,0.0013192605332156928,0.0,0.0,0.00045133250139540055,0.0,8.915822549097339e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.611314600464537e-05,0.0,0.0,0.0003980276567880738,0.0001577494659355767,0.00043414080279271914,0.0001689528053848346,7.186062910167012e-05,0.00015721422230156906,0.0,0.0,3.0155996594850774e-05,0.0,5.957149409794601e-06,0.0,0.0,0.0,0.00020910820781160422,6.746351356937946e-05,0.00014759436359143763,0.0,9.97471782029777e-06 +100752,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302290960100,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7388.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0005397388620088498,0.0,0.0,0.0005397388620088498,0.00036703457560579303,0.0001356788686884374,3.702541771461947e-05,0.0,0.0,0.00036703457560579303,0.0001356788686884374,3.702541771461947e-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,6.431804609801399e-05,2.1215355535089436e-05,6.431804609801399e-05,4.3737719136094605e-05,1.6168188628015112e-05,4.412138333904279e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3737719136094605e-05,1.6168188628015112e-05,4.412138333904279e-06,0.0,0.0 +100753,50.0,the Greater Atlanta and Macon Area,G1301210009403,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,19375.0,,2500.0,,8.72605822017302,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.0046523556049097815,0.001983232921194852,0.0,0.006635671233178374,0.004777574114551094,0.000748416310266993,0.0008902589417299051,0.0,0.00021942186663038258,0.0030137630599866233,0.000748416310266993,0.0008902589417299051,0.0,0.0,0.00176381105456447,0.0,0.00021942186663038258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013250972011297283,0.0,0.0,0.0005544145870202575,0.0003137852669138316,0.0006869243071332303,0.0003591458487214657,8.91877050709554e-05,0.00010609088931194205,0.0,0.0,0.0001178490467129263,0.0,1.4660673400046584e-05,0.0,0.0,0.0,0.0004945741995182791,7.747601370104574e-05,9.21595548102615e-05,0.0,2.2714539103643975e-05 +100754,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11201.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002689468623854799,0.0,0.0,0.0026894686238547985,0.0011206808491676155,0.000744446370727506,0.0007252583296199867,0.0,9.900036726595098e-05,0.0011206808491676155,0.000744446370727506,0.0007252583296199867,0.0,9.900036726595098e-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.0003204953963369094,8.869287604842443e-05,0.0003204953963369094,0.000133547961755493,8.87132991705677e-05,8.642672152279838e-05,0.0,1.1797557949913294e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00013354796175549304,8.871329917056773e-05,8.642672152279839e-05,0.0,1.1797557949913296e-05 +100755,50.0,the Greater Atlanta and Macon Area,G1301350050436,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4823.0,,1267.0,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0011581471535715218,0.0010049736530063245,0.0,0.002163203513651586,0.0016466978381496106,0.0002979935866827247,0.0001746773397374173,0.0,4.375204200809363e-05,0.0006417241851432863,0.0002979935866827247,0.0001746773397374173,0.0,4.375204200809363e-05,0.0010049736530063245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.714888782637992e-05,0.0,0.0,0.00013801739281870767,0.00011407742225178658,0.0002051662806450876,7.647482331502912e-05,3.5512152133528805e-05,2.081644887760556e-05,0.0,5.213968492544195e-06,6.714888782637992e-05,0.0,0.0,0.0,0.0,0.0,0.00015617895804410985,2.8262821990604114e-05,1.6567049693076852e-05,0.0,4.14960667028298e-06 +100756,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,42543.0,,4904.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006044224793714861,0.0014287741175518457,0.0,0.007472998911266706,0.005432379006640789,0.001442351116500521,0.0005982687881253976,0.0,0.0,0.004003604889088943,0.001442351116500521,0.0005982687881253976,0.0,0.0,0.0014287741175518457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.546225567831938e-05,0.0,0.0,0.0007202778639320221,0.00026151607450274934,0.0008157401196103415,0.00047710137792019797,0.00017188202237502232,7.129446363680195e-05,0.0,0.0,9.546225567831938e-05,0.0,0.0,0.0,0.0,0.0,0.000592989448180546,0.00015744464655552967,6.530602487426595e-05,0.0,0.0 +100757,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7195.0,,210.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014639979122594807,0.0001663239252897472,0.0,0.0016304045446229674,0.0010606355136328783,0.0002897228793087939,0.00023447455405093656,0.0,4.5488890556619085e-05,0.0008943115883431311,0.0002897228793087939,0.00023447455405093656,0.0,4.5488890556619085e-05,0.0001663239252897472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1113743136677415e-05,0.0,0.0,0.00017446649488961298,6.601283960968395e-05,0.0001855802380262904,0.00010657625045146518,3.452664434768173e-05,2.7942631094969372e-05,0.0,5.420968995496702e-06,1.1113743136677415e-05,0.0,0.0,0.0,0.0,0.0,0.00012072647351743255,3.297760735586137e-05,2.6688985684803597e-05,0.0,5.177757363894877e-06 +100758,50.0,the Greater Atlanta and Macon Area,G1300670031110,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,19527.0,,2512.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0048649127844198016,0.0019924134063799156,0.0,0.006857326190799718,0.0044929790738141365,0.000762145684507718,0.0014660655891029634,0.0,0.0001360531363011607,0.0025005656674342205,0.000762145684507718,0.0014660655891029634,0.0,0.0001360531363011607,0.0019924134063799156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013312211680807447,0.0,0.0,0.0005797412781784418,0.00031116496855340404,0.0007128633949865163,0.00029798707611987233,9.082327533388317e-05,0.00017470790868892165,0.0,1.6213162010226563e-05,0.00013312211680807447,0.0,0.0,0.0,0.0,0.0,0.00046707422500328667,7.922997171425683e-05,0.00015240699713585634,0.0,1.4143603198041502e-05 +100759,50.0,the Greater Atlanta and Macon Area,G1301130140207,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,79078.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006999626364029345,0.0,0.0,0.006999626364029347,0.004120998850915854,0.002327923781707613,0.0005507037314058783,0.0,0.0,0.004120998850915854,0.002327923781707613,0.0005507037314058783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008341331915861893,0.00021623625939272835,0.0008341331915861893,0.000491092201964146,0.00027741459226794554,6.562639735409782e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004910922019641459,0.0002774145922679455,6.562639735409781e-05,0.0,0.0 +100760,35.0,Eastern Counties in South Carolina and Georgia,G1302450010106,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,53155.0,,6079.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011067969367071127,0.004181561190094186,0.0,0.015249530557165318,0.004599903781028246,0.0011202659472638447,0.005650099316609839,0.0003804744462378167,0.0034987153460545543,0.004599903781028246,0.0011202659472638447,0.0014685381265156518,0.0003804744462378167,0.0034987153460545543,0.0,0.004181561190094186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027938758163418437,0.0,0.0,0.0013189455867816014,0.0005812124316843407,0.0015983331684157856,0.0005481604249517993,0.00013349963106704563,0.00017500246131426544,4.53403036370472e-05,0.00041693421910010805,0.0,0.00027938758163418437,0.0,0.0,0.0,0.0,0.0004821249255626463,0.00011741726830516761,0.0005921979767657557,3.9878271982004755e-05,0.00036670720868956414 +100761,50.0,the Greater Atlanta and Macon Area,G1301210007400,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,123743.0,,3959.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01761201013958264,0.0011532551970519988,0.0,0.018765265336634643,0.012045470944225305,0.005391374647399824,0.001328389371410076,0.0,0.0,0.010892215747173304,0.005391374647399824,0.001328389371410076,0.0,0.0,0.0011532551970519988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.705357676764384e-05,0.0,0.0,0.0020987899095943267,0.0005034595680442731,0.002175843486361971,0.001298004732118187,0.0006424799111019343,0.0001583016468098562,0.0,0.0,7.705357676764384e-05,0.0,0.0,0.0,0.0,0.0,0.0013966793980252524,0.000625133042280007,0.00015402752422009953,0.0,0.0 +100762,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,224260.0,,7348.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.01998126610988314,0.002163003451862092,0.0,0.022144269561745228,0.005539289799097566,0.006326600959058833,0.010278378803588829,0.0,0.0,0.003376286347235474,0.006326600959058833,0.010278378803588829,0.0,0.0,0.002163003451862092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014451901920812442,0.0,0.0,0.0023811297146173432,0.0007784957803895191,0.0025256487338254675,0.00040234566229428265,0.0007539290780322666,0.0012248549742907937,0.0,0.0,0.00014451901920812442,0.0,0.0,0.0,0.0,0.0,0.0006317797129579602,0.0007215759208996287,0.0011722930999678786,0.0,0.0 +100763,50.0,the Greater Atlanta and Macon Area,G1300890021417,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,64572.0,,,,9.325022323477118,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.017700076644559415,0.0,0.0,0.017700076644559415,0.00793919538144437,0.0035295329677665654,0.0059341123718096665,0.0,0.00029705915522270314,0.00793919538144437,0.0035295329677665654,0.0059341123718096665,0.0,0.00029705915522270314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002109280612439043,0.000735283719392024,0.002109280612439043,0.0009460970837995509,0.0004206069617310274,0.0007071555919923168,0.0,3.539990981063713e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0009460970837995509,0.0004206069617310274,0.0007071555919923168,0.0,3.539990981063713e-05 +100764,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,3825.0,,1051.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008679280318202921,0.0008339354245134366,0.0,0.001701863456333729,0.0012081022261100634,0.0002622641308273438,0.00018799317860944577,0.0,4.358662786061501e-05,0.0003741668015966268,0.0002622641308273438,0.00018799317860944577,0.0,4.358662786061501e-05,0.0008339354245134366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.572066949538197e-05,0.0,0.0,0.00010342856236433195,8.312908305960364e-05,0.00015914923185971391,4.458841396381149e-05,3.125328485394479e-05,2.2402622665725797e-05,0.0,5.194096852106246e-06,5.572066949538197e-05,0.0,0.0,0.0,0.0,0.0,0.00011297530396922976,2.45255486332873e-05,1.7580123634015146e-05,0.0,4.075989949461497e-06 +100765,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,181450.0,,7856.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.009282996676889947,0.0013359650026395586,0.0,0.010618961679529504,0.00578213681450052,0.0015697398179629549,0.00182330171663113,0.0,0.0014438010607963198,0.005225811264223524,0.0015697398179629549,0.0010436622642685683,0.0,0.0014438010607963198,0.0005563255502769968,0.0007796394523625617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.926164446694141e-05,0.0,0.0,0.0011062369252754112,0.00041588469625573584,0.0011954985697423528,0.0006227499143025682,0.00018706288606444902,0.0001243712320962756,0.0,0.0001720550057053126,3.717053469109372e-05,5.2091109775847686e-05,0.0,0.0,0.0,0.0,0.000650961600616328,0.00017672365376927152,0.00020527003112208908,0.0,0.00016254528034524078 +100766,50.0,the Greater Atlanta and Macon Area,G1301350050435,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,29378.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0023796803951495423,0.0,0.0,0.0023796803951495423,0.0014416828973128901,0.0006835882289460425,0.00025440926889060925,0.0,0.0,0.0014416828973128901,0.0006835882289460425,0.00025440926889060925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028358137289360297,7.3850543295081e-05,0.00028358137289360297,0.00017180223702751684,8.146173278291993e-05,3.0317403083166147e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017180223702751684,8.146173278291993e-05,3.0317403083166147e-05,0.0,0.0 +100767,50.0,the Greater Atlanta and Macon Area,G1300890022302,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,2867.0,,216.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00034794865922126633,0.00017153447093532358,0.0,0.0005194831301565899,0.0002780611819115515,0.00012637640867366176,8.667701327879417e-05,0.0,2.8285819218843137e-05,0.00010652671097622795,0.00012637640867366176,8.667701327879417e-05,0.0,2.8285819218843137e-05,0.00017153447093532358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1459505270661589e-05,0.0,0.0,4.1465763469639516e-05,2.394465633982009e-05,5.29252687403011e-05,1.2695009115496956e-05,1.5060538764347324e-05,1.0329479466646591e-05,0.0,3.3708797496117694e-06,1.145950527066159e-05,0.0,0.0,0.0,0.0,0.0,2.8329048480320377e-05,1.2875308173090289e-05,8.830708746988626e-06,0.0,2.881777091097433e-06 +100768,50.0,the Greater Atlanta and Macon Area,G1301350050528,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,500504.0,,69360.0,,9.729435225087556,Education,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,3405302.3287806446,0.0,0.0,0.11246438057479981,0.06134891066614586,0.0,0.1738132912409457,0.1325547390467108,0.01849813538552937,0.00978904581637801,0.0006505005010619722,0.012320778274012739,0.07996416196269718,0.01849813538552937,0.00978904581637801,0.0006505005010619722,0.0035624446918805,0.05259057708401362,0.0,0.008758333582132238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0040989749399643225,0.0,0.0,0.013402162896524806,0.007040161498715959,0.017501137836489128,0.009529174650949861,0.002204387046385292,0.0011665416726799615,7.75188876242035e-05,0.00042452964953368366,0.0035137943804532832,0.0,0.0005851805595110393,0.0,0.0,0.0,0.013346843284386513,0.001862564219277165,0.0009856521264685687,6.549843714776249e-05,0.001240570483918905 +100769,50.0,the Greater Atlanta and Macon Area,G1300630040606,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,30102.0,,3727.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002682087452781437,0.0010970613563239813,0.0,0.0037791488091054185,0.0019288417558106195,0.0008432583122419794,0.001007079430659117,0.0,0.0,0.0008317803994866385,0.0008432583122419794,0.001007079430659117,0.0,0.0,0.0010970613563239813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.329899088084436e-05,0.0,0.0,0.00031962024333138966,0.00017545857913504596,0.00039291923421223395,9.912199298591039e-05,0.00010048979822432426,0.00012001210935441282,0.0,0.0,7.329899088084436e-05,0.0,0.0,0.0,0.0,0.0,0.00020054225538398176,8.767381943016179e-05,0.00010470635020565417,0.0,0.0 +100770,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,83855.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006902187857033038,0.0,0.0,0.006902187857033037,0.0039251498817412305,0.0024715301598493035,0.0005055078154425037,0.0,0.0,0.0039251498817412305,0.0024715301598493035,0.0005055078154425037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008225205204693036,0.0002293901432160251,0.0008225205204693036,0.00046775260113503004,0.0002945275201925151,6.024039914175847e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004677526011350301,0.0002945275201925151,6.0240399141758476e-05,0.0,0.0 +100771,50.0,the Greater Atlanta and Macon Area,G1300670031408,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,59315.0,,20738.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003053256888340193,0.003526657538255602,0.0,0.006579914426595795,0.0017305187353199938,0.0005744459796482909,0.003437597932842677,0.0,0.0008373517787848337,0.0017305187353199938,0.0005744459796482909,0.0006198888959678862,0.0,0.0001284032774040224,0.0,0.0028177090368747913,0.0007089485013808113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023563079161698387,0.0,0.0,0.00036385114914935703,0.00032853212855759624,0.0005994819407663408,0.00020622281501277864,6.845569746110753e-05,7.387104832356681e-05,0.0,1.530158835190409e-05,0.0,0.0001882629667618767,4.736782485510722e-05,0.0,0.0,0.0,0.00015766386349782115,5.233654549564464e-05,0.0003131922008020794,0.0,7.628933097079567e-05 +100772,50.0,the Greater Atlanta and Macon Area,G1301210007703,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,89585.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007520229858392411,0.0,0.0,0.007520229858392411,0.0038189637781068505,0.0027607475736955763,0.0009405185065899851,0.0,0.0,0.0038189637781068505,0.0027607475736955763,0.0009405185065899851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008961708722520914,0.0002395836784458295,0.0008961708722520914,0.0004550983366958905,0.00032899281109414054,0.00011207972446206045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004550983366958905,0.00032899281109414054,0.00011207972446206045,0.0,0.0 +100773,50.0,the Greater Atlanta and Macon Area,G1300670030101,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,4899.0,,1154.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0011317635970486827,0.0009152364779991759,0.0,0.002047082782121598,0.0014326519313122828,0.0001992413406379916,0.00036688857910756773,0.0,4.821822399001623e-05,0.0005174154533131072,0.0001992413406379916,0.00036688857910756773,0.0,4.821822399001623e-05,0.0009152364779991759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.115211884346897e-05,0.0,0.0,0.00013487469226956106,0.00010403732500343953,0.00019602681111303006,6.166150795369585e-05,2.3744017368998294e-05,4.372289790322807e-05,0.0,5.746269043638857e-06,6.115211884346897e-05,0.0,0.0,0.0,0.0,0.0,0.00013718946394488733,1.907917207269563e-05,3.513292125964209e-05,0.0,4.617333880606704e-06 +100774,81.0,the Columbus-Albany Area,G1302150001200,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,5966.0,,179.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00023265780255393286,3.0389839473970508e-05,0.0,0.0002630476420279033,0.00014515846894597227,4.783651511130246e-05,1.1046015164692895e-05,0.0,5.900664280593573e-05,0.00014515846894597227,4.783651511130246e-05,1.1046015164692895e-05,0.0,2.8616803331965224e-05,0.0,0.0,3.0389839473970508e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0302809824744673e-06,0.0,0.0,2.772529025847951e-05,9.463838140714271e-06,2.975557124095398e-05,1.7298197785868903e-05,5.700566462229669e-06,1.316327985904034e-06,0.0,3.4101980244769037e-06,0.0,0.0,2.0302809824744673e-06,0.0,0.0,0.0,1.6420117400221775e-05,5.411197843629944e-06,1.2495093612236678e-06,0.0,6.674746635878597e-06 +100775,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,130511.0,,3262.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006243941808047215,0.0005546766266649318,0.0,0.0067986184347121476,0.0031302775783489025,0.0016432676267719138,0.0009864641183274779,0.0,0.001038609111263853,0.0025756009516839703,0.0016432676267719138,0.0009864641183274779,0.0,0.001038609111263853,0.0005546766266649318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.706057542815014e-05,0.0,0.0,0.0007440776209402417,0.00019957596497577207,0.0007811381963683917,0.0003069290341800603,0.0001958248016854863,0.00011755488710065063,0.0,0.00012376889797404447,3.706057542815014e-05,0.0,0.0,0.0,0.0,0.0,0.0003596582754518723,0.00018880587614291205,0.00011334138098383917,0.0,0.00011933266378976812 +100776,50.0,the Greater Atlanta and Macon Area,G1300150960901,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,118732.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011465698292034357,0.0,0.0,0.011465698292034357,0.004927768704009541,0.0025635028140471136,0.003974457463583999,0.0,0.0,0.004927768704009541,0.0025635028140471136,0.003974457463583999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013663465872655188,0.00047155105773791705,0.0013663465872655188,0.0005872333093078993,0.0003054880071152959,0.0004736289280673578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005872333093078993,0.0003054880071152959,0.0004736289280673578,0.0,0.0 +100777,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,34933.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0035215151188129467,0.0,0.0,0.0035215151188129467,0.002127701014213953,0.0009503899264072547,0.00044339380459230114,0.0,0.0,0.002127701014213953,0.0009503899264072547,0.00044339380459230114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004196514895314434,0.00013499101596831133,0.0004196514895314434,0.0002535536181918849,0.00011325595228082512,5.283829950129386e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002535536181918849,0.00011325595228082512,5.283829950129386e-05,0.0,0.0 +100778,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,90919.0,,7092.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00814551254511108,0.0020876604684012317,0.0,0.010233173013512314,0.0033079405940104898,0.00273548736773944,0.004189745051762384,0.0,0.0,0.001220280125609258,0.00273548736773944,0.004189745051762384,0.0,0.0,0.0020876604684012317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013948445002482973,0.0,0.0,0.0009706851749318742,0.0004024126931918302,0.0011101696249567038,0.0001454184522622645,0.00032598280579308595,0.000499283916876524,0.0,0.0,0.00013948445002482973,0.0,0.0,0.0,0.0,0.0,0.000358869645200225,0.0002967657227242326,0.00045453425703224616,0.0,0.0 +100779,50.0,the Greater Atlanta and Macon Area,G1300970080303,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,11993.0,,97.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002653739167999418,7.683487150381659e-05,0.0,0.0027305740395032344,0.0018047510560654273,0.00046828745151195864,0.0003807006604220321,0.0,7.683487150381659e-05,0.0018047510560654273,0.00046828745151195864,0.0003807006604220321,0.0,0.0,0.0,0.0,7.683487150381659e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1347827449944874e-06,0.0,0.0,0.00031623688048080606,0.00010405885345671804,0.00032137166322580054,0.00021506591563210338,5.580418928137892e-05,4.536677556732377e-05,0.0,0.0,0.0,0.0,5.1347827449944874e-06,0.0,0.0,0.0,0.00021240802857035268,5.511453452020242e-05,4.480611133812994e-05,0.0,9.042988797115514e-06 +100780,50.0,the Greater Atlanta and Macon Area,G1301350050436,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5676.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001362929868150047,0.0,0.0,0.001362929868150047,0.000774055503126178,0.0003543998109729323,0.00018749693616700993,0.0,4.689491081018731e-05,0.000774055503126178,0.0003543998109729323,0.00018749693616700993,0.0,4.689491081018731e-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.00016242209899628338,5.292146026291846e-05,0.00016242209899628338,9.224518626774779e-05,4.223427964069872e-05,2.2344250162301988e-05,0.0,5.588526617567369e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.224518626774779e-05,4.223427964069872e-05,2.2344250162301988e-05,0.0,5.588526617567369e-06 +100781,35.0,Eastern Counties in South Carolina and Georgia,G1301030030202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5889.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0004217672593493293,0.0,0.0,0.0004217672593493293,0.000201968299045182,0.00013386806267057951,8.596158723986551e-05,0.0,0.0,0.000201968299045182,0.00013386806267057951,8.596158723986551e-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,5.026167932084883e-05,1.9242542621394797e-05,5.026167932084883e-05,2.4068406578658677e-05,1.595295388179747e-05,1.0243976117128546e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4068406578658677e-05,1.595295388179747e-05,1.0243976117128546e-05,0.0,0.0 +100782,81.0,the Columbus-Albany Area,G1302150000200,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,17866.0,,738.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.001540679615357275,0.00021737448140662878,0.0,0.0017580234071576065,0.0004818575084802315,0.0007371643432708208,0.0005390322450128517,0.0,0.0,0.0002644830270736026,0.0007371643432708208,0.0005390322450128517,0.0,0.0,0.00021737448140662878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4522944080727781e-05,0.0,0.0,0.00018359836332529545,6.700571558611722e-05,0.00019812130740602324,3.151768246558696e-05,8.784575688366196e-05,6.423492397604658e-05,0.0,0.0,1.4522944080727781e-05,0.0,0.0,0.0,0.0,0.0,5.430316750893742e-05,8.307509608080228e-05,6.074650239647008e-05,0.0,0.0 +100783,50.0,the Greater Atlanta and Macon Area,G1300890021910,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,17360.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004056037603249376,0.0,0.0,0.004056037603249376,0.00187488665459636,0.00055529529308571,0.0015431485818279977,0.0,8.254165959182881e-05,0.00187488665459636,0.00055529529308571,0.0015431485818279977,0.0,8.254165959182881e-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.00048335185174237094,0.0001661778078014416,0.00048335185174237094,0.0002234274000764219,6.617369818311776e-05,0.00018389467689910798,0.0,9.836364430555783e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002234274000764219,6.617369818311776e-05,0.00018389467689910798,0.0,9.836364430555783e-06 +100784,50.0,the Greater Atlanta and Macon Area,G1300890023112,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,9225.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0019893532446515613,0.0,0.0,0.0019893532446515613,0.0013887344751567108,0.00016905325872314437,0.00039161799415562065,0.0,3.9947516616085484e-05,0.0013887344751567108,0.00016905325872314437,0.00039161799415562065,0.0,3.9947516616085484e-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.00023706875103457757,8.479829159467612e-05,0.00023706875103457757,0.00016549375955687823,2.0145866507906563e-05,4.666862911689706e-05,0.0,4.76049585289573e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016549375955687823,2.0145866507906563e-05,4.666862911689706e-05,0.0,4.76049585289573e-06 +100785,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,52292.0,,4500.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004493142499621474,0.001324655476627745,0.0,0.00581779797624922,0.0019753671989579374,0.0015592161375610875,0.002283214639730194,0.0,0.0,0.0006507117223301921,0.0015592161375610875,0.002283214639730194,0.0,0.0,0.001324655476627745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.850643798139243e-05,0.0,0.0,0.0005354395672498898,0.00023275963864572064,0.0006239460052312822,7.754412486099896e-05,0.00018580893306078918,0.0002720865093281017,0.0,0.0,8.850643798139243e-05,0.0,0.0,0.0,0.0,0.0,0.00021185377658117468,0.00016722249282203586,0.0002448697358280716,0.0,0.0 +100786,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,132989.0,,6737.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012162290975779613,0.001983039600532363,0.0,0.014145361265918274,0.0055410391066565345,0.003338200545820025,0.0052660909238354155,0.0,0.0,0.0035579995061241717,0.003338200545820025,0.0052660909238354155,0.0,0.0,0.001983039600532363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013249555335880845,0.0,0.0,0.0014493581544913886,0.0005955245239960033,0.001581853707850197,0.00042400034731506213,0.00039780730390737276,0.0006275505032689537,0.0,0.0,0.00013249555335880845,0.0,0.0,0.0,0.0,0.0,0.0006196457687741196,0.0003733057651681094,0.0005888987419371188,0.0,0.0 +100787,50.0,the Greater Atlanta and Macon Area,G1301210011618,ComStock 90.1-2007,gen1_t12_incandescent,200001_500000,NaturalGas,938999.0,,11679.0,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.0,0.0,0.1553307035175507,0.006115607711659248,0.0,0.16144631122920997,0.0498087913885023,0.02072815408279836,0.09040994083962454,0.0,0.0004993703243933864,0.04419260859512781,0.02072815408279836,0.09040994083962454,0.0,0.0,0.005616182793374488,0.0,0.0004993703243933864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040860864743932055,0.0,0.0,0.01851046032202003,0.0067293292018519,0.018919068969459354,0.0052663479235079014,0.0024701341396744783,0.010773978258837651,0.0,0.0,0.00037524003552381516,0.0,3.336496427537462e-05,0.0,0.0,0.0,0.005836837970405076,0.0024290265520237595,0.010594679390606768,0.0,5.851865884434304e-05 +100788,50.0,the Greater Atlanta and Macon Area,G1301210001100,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,313651.0,,60585.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.014100938707006575,0.010303095290831264,0.0,0.024404016267476424,0.010287439381697357,0.0037622053897210044,0.0043821297464117295,0.0,0.005972259480007745,0.007747121849239292,0.0037622053897210044,0.0017753233586284673,0.0,0.000816288109417811,0.002540317532458065,0.0026068063877832627,0.005155971370589934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006883920690974858,0.0,0.0,0.0016803809681914343,0.0009979460795210865,0.0023687730372889196,0.0009232091837441433,0.0004483345730857708,0.00021156177231964346,0.0,9.727543904187663e-05,0.00016972903704866513,0.0001741714302710172,0.0003444916017778033,0.0,0.0,0.0,0.0009985491225305107,0.0003651780342316466,0.0004253509207431471,0.0,0.00057969668077911 +100789,50.0,the Greater Atlanta and Macon Area,G1300890021211,ComStock 90.1-2007,gen3_t5_cfl,_1000,Electricity,2710.0,,292.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.00012300394204119275,8.593089763356779e-05,0.0,0.00020896552928105822,0.00011484050676600383,6.512334456372531e-05,2.9001677951329135e-05,0.0,0.0,2.8909609132436027e-05,6.512334456372531e-05,2.9001677951329135e-05,0.0,0.0,8.593089763356779e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.742262879332508e-06,0.0,0.0,1.4659874944997221e-05,1.164092589922078e-05,2.0402137824329727e-05,3.4455095304858745e-06,7.761540577166693e-06,3.4564824907740463e-06,0.0,0.0,5.7422628793325085e-06,0.0,0.0,0.0,0.0,0.0,1.12123365749217e-05,6.358251793688896e-06,2.8315494557191363e-06,0.0,0.0 +100790,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,114305.0,,9237.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005883873628328783,0.0015708922914552583,0.0,0.0074547659197840435,0.003035757021618601,0.0015209458633349694,0.0012836427060889826,0.0,0.0016144025983800677,0.003035757021618601,0.0015209458633349694,0.0010995838241874146,0.0,0.00022756918882637771,0.0,0.0001840588819015681,0.0013868334095536899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010495807639962169,0.0,0.0,0.0007011689904526699,0.000271044441287444,0.0008061270668522916,0.0003617648543401001,0.0001812479571949355,0.00013103511880532413,0.0,2.7118947221992927e-05,0.0,1.2297766240075763e-05,9.26603101595459e-05,0.0,0.0,0.0,0.00032827401018978536,0.00016446869571014823,0.000138807729267484,0.0,0.00017457471439808036 +100791,50.0,the Greater Atlanta and Macon Area,G1301350050427,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,6186.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012174481254426052,0.0,0.0,0.0012174481254426052,0.0005133628066998812,0.00037871569065228873,0.00027839201020650873,0.0,4.706032495766592e-05,0.0005133628066998812,0.00037871569065228873,0.00027839201020650873,0.0,4.706032495766592e-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.0001450822700176828,5.14663988258103e-05,0.0001450822700176828,6.117701426628786e-05,4.5131230598571304e-05,3.3175741907576105e-05,0.0,5.608139377721569e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.117701426628786e-05,4.5131230598571304e-05,3.3175741907576105e-05,0.0,5.608139377721569e-06 +100792,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5982.0,,555.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014362910425568128,0.00044008433936685475,0.0,0.0018763753819236674,0.000977184076229917,0.0004242872882826471,0.0003671367003287857,0.0,0.00010776731708231756,0.00064486705394538,0.0004242872882826471,0.0003671367003287857,0.0,0.0,0.00033231702228453717,0.0,0.00010776731708231756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9403514723645603e-05,0.0,0.0,0.0001711568297879879,8.83659879709516e-05,0.00020056034451163349,7.684612471823917e-05,5.0560551469099265e-05,4.3750153600649445e-05,0.0,0.0,2.2203217846195832e-05,0.0,7.2002968774497685e-06,0.0,0.0,0.0,0.00010444838323290647,4.5350842656352964e-05,3.92421813940645e-05,0.0,1.1518937228309535e-05 +100793,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,24405.0,,1748.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0057293099235374645,0.0013554693065777304,0.0,0.0070847792301151945,0.0033373670995873453,0.00042282103466533157,0.002444906636860005,0.00041166224660187475,0.00046810307318370713,0.001981897793009615,0.00042282103466533157,0.002444906636860005,0.00041166224660187475,0.00046810307318370713,0.0013554693065777304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.056400982168412e-05,0.0,0.0,0.0006827526685879719,0.00025930088072302697,0.000773316678409656,0.00023617957923464011,5.038690411333877e-05,0.00029135560007093346,4.9057129248614966e-05,5.5783091970188976e-05,9.056400982168412e-05,0.0,0.0,0.0,0.0,0.0,0.0003642797547051569,4.615169329472695e-05,0.0002668660544003374,4.4933691062049136e-05,5.1094311050521e-05 +100794,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,2703.0,,202.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00022534173422868075,5.8833662110925275e-05,0.0,0.00028417539633960605,0.0001816644982371936,8.07634009049821e-05,2.177787079686806e-05,0.0,0.0,0.00012283083612626836,8.07634009049821e-05,2.177787079686806e-05,0.0,0.0,5.8833662110925275e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.930654741520726e-06,0.0,0.0,2.6854451145093777e-05,1.1597253428924506e-05,3.0785105886614504e-05,1.463801057160793e-05,9.624745328858925e-06,2.5953149307227716e-06,0.0,0.0,3.930654741520726e-06,0.0,0.0,0.0,0.0,0.0,1.967996134115448e-05,8.749208695223169e-06,2.359226263435507e-06,0.0,0.0 +100795,35.0,Eastern Counties in South Carolina and Georgia,G1300730030102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5951.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00041326623840486564,0.0,0.0,0.00041326623840486564,0.0001974569269194197,0.0001223287707026433,9.348054078280269e-05,0.0,0.0,0.0001974569269194197,0.0001223287707026433,9.348054078280269e-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,4.924869448049297e-05,1.8213503356842986e-05,4.924869448049297e-05,2.3530825804804083e-05,1.457784763101478e-05,1.1140021044674114e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3530825804804083e-05,1.457784763101478e-05,1.1140021044674114e-05,0.0,0.0 +100796,81.0,the Columbus-Albany Area,G1302150002800,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,16021.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013825360741052126,0.0,0.0,0.0013825360741052126,0.000462707194150465,0.00042474415116020643,0.0004950847287945412,0.0,0.0,0.000462707194150465,0.00042474415116020643,0.0004950847287945412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016475349042808883,5.692230397361525e-05,0.00016475349042808883,5.513970066337313e-05,5.0615736365396545e-05,5.899805339931916e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.513970066337313e-05,5.0615736365396545e-05,5.899805339931916e-05,0.0,0.0 +100797,50.0,the Greater Atlanta and Macon Area,G1301210011000,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,39137.0,,3125.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005410267026250106,0.000910418269547173,0.0,0.0063206852957972785,0.003688752157317208,0.001983639032080696,0.0006482637327999372,0.0,0.0,0.0027783338877700346,0.001983639032080696,0.0006482637327999372,0.0,0.0,0.000910418269547173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.08295120375609e-05,0.0,0.0,0.0006447293090708161,0.00024380443124882558,0.000705558821108377,0.00033108777794865193,0.0002363857858390607,7.725212572981984e-05,0.0,0.0,6.08295120375609e-05,0.0,0.0,0.0,0.0,0.0,0.00041176415241053716,0.0002214275749355875,7.236370324998843e-05,0.0,0.0 +100798,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010101,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,158365.0,,32813.0,,9.729435225087556,Education,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.042398541873016844,0.029023074879037308,0.0,0.07142170896930693,0.05721038479619134,0.006830531912909028,0.0021323395358741116,0.000650408283809199,0.004598044440523249,0.028187309917154034,0.006830531912909028,0.0021323395358741116,0.000650408283809199,0.004598044440523249,0.029023074879037308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019391533182976995,0.0,0.0,0.005052556449534124,0.0030472200785727115,0.006991709767831825,0.003359030009651606,0.0008139819565889592,0.00025410699044426223,7.750796192550195e-05,0.0005479405202846239,0.0019391533182976995,0.0,0.0,0.0,0.0,0.0,0.005600515753170305,0.000668663595203195,0.00020874184301179261,6.36706404342937e-05,0.00045011793601223846 +100799,50.0,the Greater Atlanta and Macon Area,G1301530021202,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,23985.0,,1788.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005630578907410793,0.0013866815688421822,0.0,0.0070172604762529745,0.0026725297411979107,0.0004285621502631971,0.0029213383706997702,0.00042039521117327575,0.000574435002918821,0.0018603640360576178,0.0004285621502631971,0.0029213383706997702,0.00042039521117327575,0.0,0.0008121657051402926,0.0,0.000574435002918821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.264740428350623e-05,0.0,0.0,0.0006709885218773664,0.00026312465987263244,0.0007636359261608726,0.00022169708217127752,5.1071175533871034e-05,0.00034813196786560234,5.009793237747084e-05,0.0,5.4262670046273053e-05,0.0,3.8379331741211046e-05,0.0,0.0,0.0,0.0002908314050787376,4.663721058114154e-05,0.0003179073856368833,4.574846373799148e-05,6.251146112611876e-05 +100800,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,45745.0,,6251.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.003873611417289747,0.001840118104003961,0.0,0.005713760210900007,0.00253229148444235,0.0011942246498625082,0.001987244076595148,0.0,0.0,0.0006921733804383886,0.0011942246498625082,0.001987244076595148,0.0,0.0,0.001840118104003961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001229467849869163,0.0,0.0,0.00046161167179707447,0.0002534705727171241,0.0005845584567839907,8.248512225347387e-05,0.0001423137165136751,0.00023681649025801161,0.0,0.0,0.0001229467849869163,0.0,0.0,0.0,0.0,0.0,0.00025907149541364727,0.00012217770655570943,0.000203309254814634,0.0,0.0 +100801,50.0,the Greater Atlanta and Macon Area,G1300890023421,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,14533.0,,711.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.003489659562282598,0.0005636487075333801,0.0,0.004053225562742239,0.0021026619356744125,0.0009979435517384835,0.0008440256875096324,0.0,0.00010867709489344994,0.0016476903230344825,0.0009979435517384835,0.0008440256875096324,0.0,0.0,0.0004549716126399301,0.0,0.00010867709489344994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.765716678551001e-05,0.0,0.0,0.0004158556117083436,0.00015007494209428216,0.0004535127784938537,0.00019635189478002562,0.00011892289742073034,0.0001005808195075877,0.0,0.0,3.0396489286440284e-05,0.0,7.2606774990697206e-06,0.0,0.0,0.0,0.00023526547978144433,0.00011165925654104188,9.443748657395428e-05,0.0,1.2159809638233796e-05 +100802,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,28914.0,,5703.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006049364395253745,0.003923010694582909,0.0,0.009972375089836656,0.004577814029955438,0.0004736386885870954,0.0032502056464854615,0.00036749313148399105,0.0013030801533826372,0.0022740968409629956,0.0004736386885870954,0.0016309121408949953,0.00036749313148399105,0.0013030801533826372,0.0023037171889924426,0.0016192935055904664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002621142151372283,0.0,0.0,0.0007208885392314201,0.0004732231689282384,0.0009830027543686485,0.00027099877650597974,5.644240948799955e-05,0.0001943519672557707,4.379329288560111e-05,0.000155284999695255,0.00015392183960260538,0.00010819237553462295,0.0,0.0,0.0,0.0,0.0004512469456769447,4.6687788140978915e-05,0.00032038116035325293,3.622474658303694e-05,0.00012844797436908627 +100803,50.0,the Greater Atlanta and Macon Area,G1300590000600,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,20948.0,,1665.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0048003003868631496,0.0012914275663874564,0.0,0.0060916470924675375,0.002323696323040282,0.00041675647593519203,0.0025136383024682535,0.0004123899936494915,0.0004251659973743189,0.002323696323040282,0.00041675647593519203,0.0012222107360807968,0.0004123899936494915,0.0004251659973743189,0.0,0.0012914275663874564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.628317177909942e-05,0.0,0.0,0.0005720397365307793,0.0002379087801651175,0.0006583229083098787,0.0002769090526182937,4.9663822152440605e-05,0.00014564778266087304,4.9143479429073935e-05,5.066596369373937e-05,0.0,8.628317177909942e-05,0.0,0.0,0.0,0.0,0.00025112133027279466,4.503877705487642e-05,0.00027164831655566323,4.456689231274151e-05,4.5947592113802914e-05 +100804,50.0,the Greater Atlanta and Macon Area,G1301130140304,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,86168.0,,12153.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0044618631817177085,0.0020666509271213547,0.0,0.006528514108839064,0.0024989880599879228,0.0011519770421836706,0.0017475398822832443,0.0,0.0011300268547456453,0.0020410837459536387,0.0011519770421836706,0.0010779173225321102,0.0,0.0001908850710482885,0.00045790431403428363,0.0006696225597511341,0.0009391417836973568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013808181257219594,0.0,0.0,0.0005317108894484557,0.0002711231118789866,0.0006697927020206516,0.00024323167470634852,0.0001372786911605559,0.0001284531494967986,0.0,2.274737408475259e-05,3.059455123103579e-05,4.474035531412254e-05,6.274809066853188e-05,0.0,0.0,0.0,0.0002563836023193189,0.00011818704882712837,0.0001792887998907133,0.0,0.00011593507002936957 +100805,50.0,the Greater Atlanta and Macon Area,G1302070050200,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,13113.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003148823711402912,0.0,0.0,0.003148823711402912,0.0014648249829968738,0.0006535512966880072,0.0009647780151690211,0.0,6.558670947527079e-05,0.0014648249829968738,0.0006535512966880072,0.0009647780151690211,0.0,6.558670947527079e-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.00037523544681773024,0.00011229624622242547,0.00037523544681773024,0.0001745585994586263,7.788165845644317e-05,0.00011496957047512144,0.0,7.815762484935388e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001745585994586263,7.788165845644317e-05,0.00011496957047512144,0.0,7.815762484935388e-06 +100806,50.0,the Greater Atlanta and Macon Area,G1300670030209,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,91455.0,,3945.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.020798935034469238,0.002713668543317675,0.0,0.023512603577786912,0.009665987373657963,0.0010955225572634587,0.008749908183875565,0.00037093569009274036,0.0036302497728971845,0.009665987373657963,0.0010955225572634587,0.0060362396405578885,0.00037093569009274036,0.0036302497728971845,0.0,0.002713668543317675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018131191131881658,0.0,0.0,0.0024785687930800582,0.0009174572762902663,0.0026598807043988746,0.0011518769888434277,0.00013055130072998767,0.0007193269836097338,4.420368755322397e-05,0.00043260983234368484,0.0,0.0001813119113188166,0.0,0.0,0.0,0.0,0.0010934719848909188,0.00012393180115755846,0.0009898398476610993,4.196237483383911e-05,0.000410674695855459 +100807,81.0,the Columbus-Albany Area,G1302150010402,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,226702.0,,11614.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01030844985998012,0.0019751268014710417,0.0,0.012283576661451162,0.006078092007324041,0.0019303930996082488,0.0028415209122619224,0.0,0.0014335883726183695,0.005700843107389578,0.0019303930996082488,0.0012436430107253438,0.0,0.0014335883726183695,0.00037724889993446343,0.0015978779015365786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013196631969190524,0.0,0.0,0.0012284380418953209,0.0003911671805352214,0.0013604043615872263,0.0006793584524460787,0.00023004121391492804,0.0001482025334229243,0.0,0.0001708379550042848,2.5205545737667354e-05,0.0001067607739542379,0.0,0.0,0.0,0.0,0.0006731478220705172,0.0002137907601884663,0.0003146980353624264,0.0,0.00015876970760081235 +100808,50.0,the Greater Atlanta and Macon Area,G1301350050712,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,40649.0,,2539.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033198344185462747,0.0007395667727098191,0.0,0.004059401191256094,0.002818214423831803,0.0009458035128921539,0.0002953528809326987,0.0,0.0,0.002078647651121984,0.0009458035128921539,0.0002953528809326987,0.0,0.0,0.0007395667727098191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.941382526107787e-05,0.0,0.0,0.00039561723317918946,0.00013907636422793256,0.0004450310584402673,0.0002477077856345014,0.00011270928658707025,3.5196541403791746e-05,0.0,0.0,4.941382526107786e-05,0.0,0.0,0.0,0.0,0.0,0.00030896008767278613,0.00010368818418971695,3.237945672824457e-05,0.0,0.0 +100809,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,15848.0,,84.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003603381788674146,6.641378021266385e-05,0.0,0.0036697955688868096,0.002361617783552185,0.0004585280168107204,0.000783153281237502,0.0,6.641378021266385e-05,0.002361617783552185,0.0004585280168107204,0.000783153281237502,0.0,0.0,0.0,0.0,6.641378021266385e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.437901133500561e-06,0.0,0.0,0.00042940509607851954,0.00013162803880637048,0.00043384299721202014,0.0002814274952585854,5.464152250870621e-05,9.332622233674948e-05,0.0,0.0,0.0,0.0,4.437901133500561e-06,0.0,0.0,0.0,0.0002791903031798253,5.420715279221653e-05,9.258433077011153e-05,0.0,7.851432844904377e-06 +100810,85.0,Rural Climate Zone 3A,G1303150960300,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,11569.0,,435.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0005255633732132052,7.405971965156056e-05,0.0,0.0005996230928647659,0.0003281003380780771,0.00013030042607596807,6.012365557539904e-05,0.0,8.109867313532152e-05,0.0003002991313714343,0.00013030042607596807,6.012365557539904e-05,0.0,3.484016019040375e-05,2.7801206706642793e-05,0.0,4.625851294491776e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.947790929571246e-06,0.0,0.0,6.263079680965653e-05,2.4342668383445323e-05,6.757858773922778e-05,3.5786310153334885e-05,1.5527755406320964e-05,7.164868496779746e-06,0.0,4.151862753220938e-06,1.8573464633870514e-06,0.0,3.0904444661841943e-06,0.0,0.0,0.0,3.6977490940430224e-05,1.4685089485070078e-05,6.776042787300668e-06,0.0,9.139964526426795e-06 +100811,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,6180.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011287861423940676,0.0,0.0,0.0011287861423940678,0.0004894604623892214,0.00028699354587539673,0.0003046101525818693,0.0,4.763927447384108e-05,0.0004894604623892214,0.00028699354587539673,0.0003046101525818693,0.0,4.763927447384108e-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.0001345139522909039,3.9930582407463814e-05,0.0001345139522909039,5.83274889842885e-05,3.420013294617794e-05,3.629944946419983e-05,0.0,5.6770249501436594e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.832748898428849e-05,3.4200132946177936e-05,3.629944946419982e-05,0.0,5.677024950143659e-06 +100812,50.0,the Greater Atlanta and Macon Area,G1300670030345,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,16479.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0037580440165666507,0.0,0.0,0.0037580440165666507,0.001667457313658177,0.0004679566232170014,0.0015506749255382749,0.0,7.187244707945816e-05,0.001667457313658177,0.0004679566232170014,0.0015506749255382749,0.0,7.187244707945816e-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.0004478382573131335,0.00014229113086035942,0.0004478382573131335,0.00019870740582090065,5.576541352783374e-05,0.0001847906925120811,0.0,8.564889423062482e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019870740582090065,5.576541352783374e-05,0.0001847906925120811,0.0,8.564889423062482e-06 +100813,81.0,the Columbus-Albany Area,G1302150010106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,45132.0,,4036.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0021915435929642066,0.000686360020931664,0.0,0.0028779036138958706,0.0011682889746901194,0.0008677238878973841,0.0005726197524220252,0.0,0.00026925326852492187,0.0010674386789328591,0.0008677238878973841,0.00017893480745117288,0.0,7.744621868279064e-05,0.00010085029575726033,0.0003936849449708524,0.00019180704984213116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.585808553738225e-05,0.0,0.0,0.0002611621018858683,0.00011986435473731257,0.0003070201874232506,0.00012720464695266186,0.00010340501331910289,2.132332232154447e-05,0.0,9.229119292559081e-06,6.738156868503274e-06,2.6303452023250125e-05,1.2815292018893884e-05,0.0,0.0,0.0,0.00012463527209249196,9.25704215414095e-05,6.108815558033023e-05,0.0,2.872444670060983e-05 +100814,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7374.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015081634896362706,0.0,0.0,0.0015081634896362706,0.000882153648503453,0.00026234683790108315,0.00032264029465703826,0.0,4.094000150095717e-05,0.000882153648503453,0.00026234683790108315,0.00032264029465703826,0.0,4.094000150095717e-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.0001797229124274497,5.8693755054822196e-05,0.0001797229124274497,0.00010512336627097224,3.1263014983266827e-05,3.844798910773136e-05,0.0,4.878686133895674e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010512336627097224,3.1263014983266827e-05,3.844798910773136e-05,0.0,4.878686133895674e-06 +100815,81.0,the Columbus-Albany Area,G1302150001800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,41705.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.003542102290061963,0.0,0.0,0.003542102290061962,0.0016879283463736533,0.0008336217758645008,0.0010205214782175107,0.0,0.0,0.0016879283463736533,0.0008336217758645008,0.0010205214782175107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004221042908838554,0.00014030525157703535,0.0004221042908838554,0.00020114659017832768,9.934081507298025e-05,0.00012161322842181689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002011465901783277,9.934081507298028e-05,0.00012161322842181692,0.0,0.0 +100816,50.0,the Greater Atlanta and Macon Area,G1301210009101,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,302410.0,,17684.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01556665449451808,0.0030072997915394153,0.0,0.018573954286057497,0.010898427636232378,0.0029506867475251873,0.0025827108266134116,0.0,0.0021421290756865195,0.00859599836294716,0.0029506867475251873,0.0018778225779977923,0.0,0.0021421290756865195,0.0023024292732852164,0.0007048882486156192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020093055430348895,0.0,0.0,0.0018550479829602608,0.0007495413826114624,0.00205597853726375,0.001024368429987981,0.0003516276089555251,0.0002237764695618295,0.0,0.00025527336156219016,0.00015383514188619074,4.709659705853624e-05,0.0,0.0,0.0,0.0,0.0012063631128259851,0.00032661589070746285,0.0002858840904686533,0.0,0.00023711544326164848 +100817,50.0,the Greater Atlanta and Macon Area,G1301350050531,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,26375.0,,3445.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.0023257368825480946,0.0010035437254233201,0.0,0.003329280607971415,0.0019452771759908153,0.0011172017345193875,0.00026680169746121204,0.0,0.0,0.0009417334505674951,0.0011172017345193875,0.00026680169746121204,0.0,0.0,0.0010035437254233201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.70511453461118e-05,0.0,0.0,0.00027715490517292755,0.00013818215348775578,0.00034420605051903937,0.00011222509611846023,0.00013313541317301096,3.1794395881456374e-05,0.0,0.0,6.70511453461118e-05,0.0,0.0,0.0,0.0,0.0,0.00020111737421875424,0.00011550471166389602,2.7583964636389067e-05,0.0,0.0 +100818,35.0,Eastern Counties in South Carolina and Georgia,G1300510003602,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,49015.0,,1021.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.01122185947425028,0.0007921930917223662,0.0,0.012014052565972646,0.0036780335786550534,0.0004510414479562478,0.006857964733607977,0.0004294516188769509,0.0005975611868764201,0.0032776918416827718,0.0004510414479562478,0.00646611337885789,0.0004294516188769509,0.0005975611868764201,0.0004003417369722808,0.0003918513547500854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.293008951682766e-05,0.0,0.0,0.0013372839173422253,0.0004148803064753702,0.0013902140068590527,0.0003905952124907559,5.374960146227794e-05,0.0007705522822754605,5.11767897752166e-05,7.121003133851452e-05,2.67486856382376e-05,2.6181403878590066e-05,0.0,0.0,0.0,0.0,0.0004256060784373818,5.219255827119808e-05,0.0007935739067939856,4.9694276977112404e-05,6.914718637937501e-05 +100819,50.0,the Greater Atlanta and Macon Area,G1300890021210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6172.0,,917.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011527711937784667,0.0007278222489059053,0.0,0.0018805107356106327,0.0011581471535715216,0.0002989860715675964,0.00038533225655143326,0.0,3.812796099382072e-05,0.0004303249046656165,0.0002989860715675964,0.00038533225655143326,0.0,3.812796099382072e-05,0.0007278222489059053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.862607722204753e-05,0.0,0.0,0.00013737135420836347,8.808505478884006e-05,0.00018599743143041098,5.128018050983751e-05,3.562903181684848e-05,4.5918577934909276e-05,0.0,4.543563946768229e-06,4.862607722204753e-05,0.0,0.0,0.0,0.0,0.0,0.0001145499420468859,2.9572094586838014e-05,3.8112417338887485e-05,0.0,3.771157843577406e-06 +100820,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,169814.0,,2857.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014974397138007712,0.0008322973717932752,0.0,0.01580669450980099,0.0071636741745926425,0.007771814382535309,0.0008712059526730355,0.0,0.0,0.0063313768027993675,0.007771814382535309,0.0008712059526730355,0.0,0.0,0.0008322973717932752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.560891967692882e-05,0.0,0.0,0.0017844714399221195,0.000554179601066923,0.0018400803595990485,0.0007544985601660135,0.0009261528643987456,0.00010382001535736035,0.0,0.0,5.560891967692882e-05,0.0,0.0,0.0,0.0,0.0,0.0008339337578177063,0.0009047282463063607,0.00010141835547498123,0.0,0.0 +100821,50.0,the Greater Atlanta and Macon Area,G1301210005700,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,79436.0,,17193.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01356746163845161,0.005008697668083588,0.0,0.0185761593065352,0.014843912154823129,0.0027275492295101137,0.0010046979222019547,0.0,0.0,0.009835214486739543,0.0027275492295101137,0.0010046979222019547,0.0,0.0,0.005008697668083588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033465210460369784,0.0,0.0,0.0016168079475535188,0.0007983306000268276,0.0019514600521572168,0.0011720433321872857,0.00032503672309028265,0.00011972789227595064,0.0,0.0,0.00033465210460369784,0.0,0.0,0.0,0.0,0.0,0.001559380553852024,0.00028653411471383247,0.00010554538359136025,0.0,0.0 +100822,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,137584.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012120829317671415,0.0,0.0,0.012120829317671415,0.004411109181987715,0.0030894612867771436,0.004620258848906558,0.0,0.0,0.004411109181987715,0.0030894612867771436,0.004620258848906558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014444168586504767,0.0004334122899379289,0.0014444168586504767,0.0005256637397345203,0.0003681653993974569,0.0005505877195184999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005256637397345203,0.0003681653993974569,0.0005505877195184999,0.0,0.0 +100823,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,29810.0,,1979.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002898541245999135,0.0005823966587115057,0.0,0.0034809379047106405,0.00103709386561827,0.0010196928588474727,0.0014241511802448978,0.0,0.0,0.00045469720690676445,0.0010196928588474727,0.0014241511802448978,0.0,0.0,0.0005823966587115057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.891236244090582e-05,0.0,0.0,0.0003454142538870256,0.00014821561856853997,0.00038432661632793145,5.4185496475167784e-05,0.00012151507194140961,0.00016971368547044822,0.0,0.0,3.891236244090582e-05,0.0,0.0,0.0,0.0,0.0,0.00011450442010129941,0.00011258319362843711,0.0001572390025981949,0.0,0.0 +100824,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150002100,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7133.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005332996589280466,0.0,0.0,0.0005332996589280466,0.00031303031580547027,0.0001656879849329362,5.4611731789077776e-05,0.0,0.0,0.00031303031580547027,0.0001656879849329362,5.4611731789077776e-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,6.355302865467976e-05,2.0856397277331293e-05,6.355302865467976e-05,3.730365151584062e-05,1.974494653783336e-05,6.508050206237282e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.730365151584062e-05,1.974494653783336e-05,6.508050206237282e-06,0.0,0.0 +100825,50.0,the Greater Atlanta and Macon Area,G1300670031114,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,51678.0,,15553.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011391856756177628,0.010698539796369717,0.0,0.022090396552547346,0.0060201743670503915,0.0011366181006554038,0.010024802388649064,0.0003667759317738349,0.004542025764418647,0.004510468977171779,0.0011366181006554038,0.004861681675235227,0.0003667759317738349,0.000516312071341384,0.0015097053898786125,0.005163120713413839,0.004025713693077263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007148128408162822,0.0,0.0,0.0013575474261758424,0.001020936747289687,0.0020723602669921242,0.0005375046124491542,0.0001354487692493909,0.0005793580086514678,4.370803924415604e-05,6.152799658167372e-05,0.00010086954099109571,0.0003449690382873624,0.00026897426153782384,0.0,0.0,0.0,0.0005647689541906856,0.0001066292397666665,0.0009404540160818614,3.44082491271285e-05,0.00042609980782578173 +100826,50.0,the Greater Atlanta and Macon Area,G1301510070309,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,39721.0,,2061.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0035026227399626653,0.0006005164344837912,0.0,0.004103169548045894,0.0023359424119591796,0.0015991700103976335,0.00016802675208964308,0.0,0.0,0.0017354259774753882,0.0015991700103976335,0.00016802675208964308,0.0,0.0,0.0006005164344837912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0123460490584244e-05,0.0,0.0,0.0004174024935054311,0.0001583412634134146,0.0004575259539960154,0.00020680820746914018,0.0001905707806505571,2.0023505385733752e-05,0.0,0.0,4.0123460490584244e-05,0.0,0.0,0.0,0.0,0.0,0.0002604704163444486,0.0001783162445620713,1.873590626623701e-05,0.0,0.0 +100827,50.0,the Greater Atlanta and Macon Area,G1301350050544,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,4584.0,,642.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0011007484443964425,0.0005089793317916979,0.0,0.00160972777618814,0.0009879359958160272,0.0002740085352983255,0.00029303116225836616,0.0,5.4752082815421506e-05,0.0005337087468397508,0.0002740085352983255,0.00029303116225836616,0.0,0.0,0.0004542272489762763,0.0,5.4752082815421506e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.400696063548245e-05,0.0,0.0,0.00013117798459231768,7.46358349831691e-05,0.00016518494522780016,6.360294045940536e-05,3.265404335069115e-05,3.4921000782221164e-05,0.0,0.0,3.0348753300303803e-05,0.0,3.6582073351786448e-06,0.0,0.0,0.0,0.00010137872736711058,2.8117850461886762e-05,3.006988958239203e-05,0.0,5.6184778164108166e-06 +100828,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,30692.0,,1100.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0070947781995052694,0.0008722287996547359,0.0,0.007966924292086267,0.0055226821418685144,0.0009377328020562676,0.001382283323405045,0.0,0.00012439143890391837,0.004650453342213779,0.0009377328020562676,0.001382283323405045,0.0,0.00012439143890391837,0.0008722287996547359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.827612002931308e-05,0.0,0.0,0.0008454672350223835,0.00032732416417229396,0.0009037433550516967,0.0005541830651050173,0.00011174730725191514,0.0001647232974158809,0.0,1.4823421247740376e-05,5.827612002931308e-05,0.0,0.0,0.0,0.0,0.0,0.0006264760533414515,0.00010637352102293372,0.00015680196303195372,0.0,1.4110581726802992e-05 +100829,50.0,the Greater Atlanta and Macon Area,G1301350050320,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,4086.0,,777.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.0003640401099033504,0.0002285761877052903,0.0,0.0005926162976086408,0.00038767110675258157,0.00011253878629367612,9.240640456238307e-05,0.0,0.0,0.00015909491904729124,0.00011253878629367612,9.240640456238307e-05,0.0,0.0,0.0002285761877052903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5271867149214637e-05,0.0,0.0,4.338319258758937e-05,3.0098871858573495e-05,5.8655059736804e-05,1.8959574302315233e-05,1.3411411837690967e-05,1.1012206447583172e-05,0.0,0.0,1.5271867149214637e-05,0.0,0.0,0.0,0.0,0.0,3.837031147567623e-05,1.1138690008019694e-05,9.146058253108068e-06,0.0,0.0 +100830,50.0,the Greater Atlanta and Macon Area,G1301170130406,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,15978.0,,783.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.00138858192654586,0.0002303868744768548,0.0,0.0016189688010227149,0.0006355203672128292,0.0003941773032876946,0.0005892711305221912,0.0,0.0,0.00040513349273597443,0.0003941773032876946,0.0005892711305221912,0.0,0.0,0.0002303868744768548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539270576070652e-05,0.0,0.0,0.00016547389019995874,6.806380121221622e-05,0.00018086659596066524,4.827876109555884e-05,4.6973138967605326e-05,7.02219901367946e-05,0.0,0.0,1.539270576070652e-05,0.0,0.0,0.0,0.0,0.0,7.099853030450318e-05,4.4036368709244685e-05,6.58316969469174e-05,0.0,0.0 +100831,46.0,the Tallahassee-Valdosta Area,G1301850010202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,43429.0,,11234.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.008513590879379125,0.0077279703168741205,0.0,0.016241632916224262,0.00450996693737467,0.0010725721665384635,0.0055610948325794645,0.00038492108444078453,0.004713077895290879,0.00450996693737467,0.0010725721665384635,0.001957668328842119,0.00038492108444078453,0.0005885340821541043,0.0,0.0036034265037373455,0.004124543813136775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00051633883585803,0.0,0.0,0.0010145519059244453,0.0007779980789328352,0.0015308907417824755,0.0005374460221071126,0.0001278168226804044,0.0002332924100223549,4.587047056674893e-05,7.013472730962208e-05,0.0,0.00024076037688409497,0.0002755784589739351,0.0,0.0,0.0,0.0004250968277503099,0.00010109764259030079,0.0005241731935011255,3.6281581262597415e-05,0.000444241496678142 +100832,35.0,Eastern Counties in South Carolina and Georgia,G1302450010201,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Propane,24415.0,,,2290.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0020430194189815006,0.0,0.00021583479760466442,0.0022588542165861655,0.0017408324781753078,0.00043166959520932896,8.635214320152842e-05,0.0,0.0,0.0015249976805706434,0.00043166959520932896,8.635214320152842e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021583479760466442,0.0,0.0,0.0,0.0,1.7406808808012514e-05,0.00024346089188063817,7.701837442918898e-05,0.0002608677006886507,0.00018172969477339818,5.1440854487721786e-05,1.0290342619518224e-05,0.0,0.0,0.0,0.0,0.0,1.740680880801251e-05,0.0,0.0,0.00020104306091609842,4.9852112603196275e-05,9.972527169355964e-06,0.0,0.0 +100833,85.0,Rural Climate Zone 3A,G1301750950900,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,41051.0,,803.0,,4.088175128053588,Healthcare,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.005536374788555189,0.00029840161146880956,0.0,0.005834776400023998,0.0027346312592909706,0.0009478639423126892,0.002026503814856158,0.0,0.00012573863514040869,0.0027346312592909706,0.0009478639423126892,0.0017281022033873482,0.0,0.00012573863514040869,0.0,0.00029840161146880956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9938689564311848e-05,0.0,0.0,0.0006597570718616658,0.00021656211577166654,0.0006796957614259776,0.0003258797283704171,0.00011295476968001168,0.00020593397180071788,0.0,1.498398444982577e-05,0.0,1.9938689564311848e-05,0.0,0.0,0.0,0.0,0.00031855844141609463,0.00011041710252955066,0.0002360683527590945,0.0,1.464735089969716e-05 +100834,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,20265.0,,343.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0047793109630996184,0.00027218897967606063,0.0,0.00505149994277568,0.0026835137145455688,0.0007359275421323574,0.001544554602081566,0.0,8.758679108992654e-05,0.0024989115259594344,0.0007359275421323574,0.001544554602081566,0.0,0.0,0.00018460218858613414,0.0,8.758679108992654e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8188185892796733e-05,0.0,0.0,0.0005695397869015584,0.0002115119892415148,0.0005877279727943552,0.0002977896916457911,8.769883750129905e-05,0.00018406111377126992,0.0,0.0,1.2335469739508453e-05,0.0,5.852716153288284e-06,0.0,0.0,0.0,0.00031221935925611355,8.562312330212965e-05,0.00017970463336337055,0.0,1.0190479610806391e-05 +100835,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,7612.0,,146.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015494343194321853,0.00011612073152998763,0.0,0.0016655550509621728,0.0008866198304853755,0.00048805444213565315,0.00017476004681115658,0.0,0.00011612073152998763,0.0008866198304853755,0.00048805444213565315,0.00017476004681115658,0.0,0.0,0.0,0.0,0.00011612073152998763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.757531585253539e-06,0.0,0.0,0.0001846448378925062,7.184197828865456e-05,0.00019240236947775974,0.00010565776994809791,5.816105414773562e-05,2.082601379667266e-05,0.0,0.0,0.0,0.0,7.757531585253539e-06,0.0,0.0,0.0,0.00010242096537896436,5.6379301931088506e-05,2.0188013045312657e-05,0.0,1.3414089122394217e-05 +100836,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,17098.0,,1288.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003966962084832141,0.0010213496536067073,0.0,0.004988311738438849,0.0027926870518814543,0.00050633270543204,0.0015384342786248573,0.0,0.00015085770250049672,0.0019221951007752439,0.00050633270543204,0.0015384342786248573,0.0,0.0,0.0008704919511062106,0.0,0.00015085770250049672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.824048191426075e-05,0.0,0.0,0.00047273272205891094,0.00021995266560216609,0.0005409732039731717,0.00022906307216602345,6.033837303904288e-05,0.00018333127685384457,0.0,0.0,5.816107151571742e-05,0.0,1.0079410398543331e-05,0.0,0.0,0.0,0.0003028617579188254,5.491084765678638e-05,0.00016684035891275457,0.0,1.6360239484805348e-05 +100837,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5774.0,,173.0,,9.325022323477118,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,27975.06697043135,0.0,0.0,0.0011469612190791486,0.00014636416573900513,0.0,0.001293325384818154,0.0006878055179836582,0.0002167179555507492,0.00033939516693102644,0.0,4.940674435271974e-05,0.0005414413522446531,0.0002167179555507492,0.00033939516693102644,0.0,4.940674435271974e-05,0.00014636416573900513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.778899185150885e-06,0.0,0.0,0.0001366794999728091,5.069489249927414e-05,0.00014645839915795997,6.452173975752703e-05,2.5825547810227936e-05,4.0444577321074736e-05,0.0,5.88763508397937e-06,9.778899185150885e-06,0.0,0.0,0.0,0.0,0.0,7.788828416915492e-05,2.4541515392285776e-05,3.843369457845733e-05,0.0,5.594905018061888e-06 +100838,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,22101.0,,1677.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0019691678984858014,0.0004935809380859538,0.0,0.0024627488365717553,0.0011236999345903872,0.0007560691407502059,0.000582979761231162,0.0,0.0,0.0006301189965044335,0.0007560691407502059,0.000582979761231162,0.0,0.0,0.0004935809380859538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2978036331490633e-05,0.0,0.0,0.00023466290444782865,0.00011237859129301398,0.0002676409407793193,7.509037394992234e-05,9.009967137299277e-05,6.947285912491355e-05,0.0,0.0,3.2978036331490633e-05,0.0,0.0,0.0,0.0,0.0,0.00012211887106851064,8.216633914089387e-05,6.335573056991475e-05,0.0,0.0 +100839,50.0,the Greater Atlanta and Macon Area,G1301170130303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,27992.0,,2903.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002439240598147715,0.0008545213977532362,0.0,0.003293761995900951,0.001358751629224493,0.0008203024867312976,0.0011147078799451605,0.0,0.0,0.0005042302314712567,0.0008203024867312976,0.0011147078799451605,0.0,0.0,0.0008545213977532362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.709388012070708e-05,0.0,0.0,0.00029068075849683606,0.00013696986292394716,0.0003477746386175432,6.008838416858137e-05,9.775425565684792e-05,0.00013283811867140674,0.0,0.0,5.709388012070708e-05,0.0,0.0,0.0,0.0,0.0,0.0001434649368754075,8.661232998470357e-05,0.00011769737175743214,0.0,0.0 +100840,50.0,the Greater Atlanta and Macon Area,G1301210008000,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,57733.0,,6448.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.009966732172305008,0.00187860712522495,0.0,0.011845339297529957,0.009371257755327883,0.0018307079589116155,0.000643373583290459,0.0,0.0,0.007492650630102932,0.0018307079589116155,0.000643373583290459,0.0,0.0,0.00187860712522495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012551841770744678,0.0,0.0,0.001187714646300293,0.0004892863551415472,0.0013132330640077399,0.0008928835188039641,0.0002181616419812931,7.666948551503576e-05,0.0,0.0,0.00012551841770744678,0.0,0.0,0.0,0.0,0.0,0.0010389441135047746,0.00020296136411104571,7.13275863919196e-05,0.0,0.0 +100841,50.0,the Greater Atlanta and Macon Area,G1301210000600,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,58913.0,,4933.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004976411729991399,0.0014519252739443186,0.0,0.006428367693542015,0.002598642413257983,0.001573333356458031,0.0022563305446134064,0.0,0.0,0.0011467171393136646,0.001573333356458031,0.0022563305446134064,0.0,0.0,0.0014519252739443186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.70094070280519e-05,0.0,0.0,0.0005930311048271428,0.0002658324072700542,0.0006900405118551948,0.00013665246546080672,0.00018749164443499847,0.00026888333769955764,0.0,0.0,9.70094070280519e-05,0.0,0.0,0.0,0.0,0.0,0.00027894616899008237,0.000168886380861477,0.0002422013733725403,0.0,0.0 +100842,81.0,the Columbus-Albany Area,G1300950001100,ComStock 90.1-2007,gen1_t12_incandescent,200001_500000,Electricity,302928.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.03424085409044147,0.0,0.0,0.03424085409044146,0.00809972365251491,0.013602400751299315,0.012538698997020937,0.0,0.0,0.00809972365251491,0.013602400751299315,0.012538698997020937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00408041786018604,0.0012129353152222706,0.00408041786018604,0.0009652287576412796,0.0016209723863898548,0.001494213058932531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009652287576412798,0.0016209723863898553,0.0014942130589325313,0.0,0.0 +100843,85.0,Rural Climate Zone 3A,G1300090970200,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,583091.0,,24315.0,,7.614023970037612,Education,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,2664908.3895131643,0.0,0.0,0.10302412614583395,0.016830793041738068,0.0,0.119854919187572,0.092497627708963,0.012846523883684227,0.00812023339789198,0.0008112295025391375,0.005579304694493662,0.07817702021893908,0.012846523883684227,0.00812023339789198,0.0008112295025391375,0.003069119142779507,0.014320607490023913,0.0,0.002510185551714155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011245333143016306,0.0,0.0,0.012277188251036282,0.004345037354082929,0.01340172156533791,0.009316206116365069,0.0015308957036739958,0.0009676726976276637,9.667266969456601e-05,0.00036574106367498466,0.000956817671254921,0.0,0.0001677156430467096,0.0,0.0,0.0,0.010342733201211372,0.00143644947857469,0.0009079736383101278,9.070859996662056e-05,0.0006238566472751002 +100844,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,92173.0,,6773.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008451303782261391,0.001993750273130261,0.0,0.010445054055391654,0.003335223654009147,0.0029200853496201226,0.004189745051762384,0.0,0.0,0.0013414733808788863,0.0029200853496201226,0.004189745051762384,0.0,0.0,0.001993750273130261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013321131076473732,0.0,0.0,0.0010071248434591429,0.00043258591102099896,0.00114033615422388,0.0001598606799057397,0.0003479806875237636,0.0004992834760296397,0.0,0.0,0.00013321131076473732,0.0,0.0,0.0,0.0,0.0,0.0003641222051049211,0.0003187995849454171,0.00045741436417354186,0.0,0.0 +100845,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5848.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,9713.774621698478,0.0,0.0,0.00044042653997833267,0.0,0.0,0.0004404265399783327,0.0002464989177831488,0.000109040171175738,8.48567614131482e-05,0.0,0.0,0.0002464989177831488,0.000109040171175738,8.48567614131482e-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,5.248497722665497e-05,2.1007287163349114e-05,5.248497722665497e-05,2.937491025604437e-05,1.2994155395882178e-05,1.0112254339885793e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9374910256044365e-05,1.2994155395882176e-05,1.0112254339885791e-05,0.0,0.0 +100846,81.0,the Columbus-Albany Area,G1300950000400,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,92353.0,,2001.0,,9.729435225087556,Education,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,729707.6418815667,0.0,0.0,0.030051205030205436,0.0017695568634644432,0.0,0.03182076189366988,0.021627804510145367,0.005010624429430431,0.0018813241738255314,0.0006742925522774513,0.002626624010738326,0.021627804510145367,0.005010624429430431,0.0018813241738255314,0.0006742925522774513,0.000857067147273883,0.0,0.0,0.0017695568634644432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011823424030708598,0.0,0.0,0.00358114288998292,0.0009062406978702924,0.003699377130290006,0.0025773428476361547,0.0005971062402254305,0.0002241936947978101,8.03541148160182e-05,0.00010213500315920037,0.0,0.0,0.00011823424030708598,0.0,0.0,0.0,0.002514377425989009,0.0005825187179567426,0.0002187165614251497,7.83910346130432e-05,0.00030536266943152475 +100847,81.0,the Columbus-Albany Area,G1302150000300,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,40545.0,,1581.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0034613272462864085,0.0004652851210794718,0.0,0.00392661236736588,0.0021219407586357654,0.0007034057763433478,0.001101235142780469,0.0,0.0,0.001656655637556294,0.0007034057763433478,0.001101235142780469,0.0,0.0,0.0004652851210794718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.108854708990442e-05,0.0,0.0,0.0004124790073121508,0.00015024839088373498,0.0004435675544020552,0.0001974201293941323,8.382337055099966e-05,0.00013123185015189882,0.0,0.0,3.108854708990442e-05,0.0,0.0,0.0,0.0,0.0,0.00023970384260912334,7.945983732899119e-05,0.00012440040762985125,0.0,0.0 +100848,50.0,the Greater Atlanta and Macon Area,G1301210010601,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,140403.0,,22724.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01270275786614405,0.0038644031929461874,0.0,0.01656716105909024,0.007834355227425953,0.001861244690070043,0.003731655976994253,0.0,0.003139905164599991,0.006873529211711871,0.001861244690070043,0.003523182387417272,0.0,0.00044480157694486464,0.0009608260157140812,0.00020847358957698083,0.0026951035876551263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025819672149742526,0.0,0.0,0.0015137636240907175,0.000609397869351597,0.0017719603455881427,0.0008191054729576455,0.0002218010086509888,0.0004198509800240946,0.0,5.3006162457988624e-05,6.419675039075665e-05,1.3928980662739508e-05,0.00018007099044392919,0.0,0.0,0.0,0.0008379327482081158,0.0001990716316740942,0.00039912368757848615,0.0,0.00033583227812744647 +100849,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,44883.0,,2201.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003743819493097852,0.0006412170577303787,0.0,0.004385036550828231,0.0033449837588807327,0.0007702137345425108,0.0002698390574049872,0.0,0.0,0.0027037667011503537,0.0007702137345425108,0.0002698390574049872,0.0,0.0,0.0006412170577303787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2841943609448145e-05,0.0,0.0,0.0004461444843122532,0.00015684537710368546,0.0004889864279217013,0.00032220319457422047,9.178503665606664e-05,3.2156253081966085e-05,0.0,0.0,4.2841943609448145e-05,0.0,0.0,0.0,0.0,0.0,0.0003730075315796988,8.588846601952276e-05,3.0090430322479695e-05,0.0,0.0 +100850,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,117308.0,,7016.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009420128876823227,0.0020440521213623843,0.0,0.01146418099818561,0.007948710225660778,0.0024928220530551675,0.001022679093069104,0.0,0.0,0.005904658104298391,0.0024928220530551675,0.001022679093069104,0.0,0.0,0.0020440521213623843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013657143084699848,0.0,0.0,0.0011225786985264233,0.00039875013025189235,0.0012591501293734216,0.0007036467862212637,0.00029706482496875817,0.00012187070690001571,0.0,0.0,0.00013657143084699848,0.0,0.0,0.0,0.0,0.0,0.0008730339751768253,0.00027379515476126063,0.00011232433547143541,0.0,0.0 +100851,50.0,the Greater Atlanta and Macon Area,G1302470060308,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,40794.0,,2295.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0035553908895888673,0.0006756623722502244,0.0,0.004231053261839092,0.0018180829666822104,0.0013117044627701147,0.001101235142780469,0.0,0.0,0.0011424205944319862,0.0013117044627701147,0.001101235142780469,0.0,0.0,0.0006756623722502244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.514440091912018e-05,0.0,0.0,0.0004236885323223528,0.000166870823608185,0.000468832933241473,0.00013613988446870595,0.00015631309072067052,0.00013123189991646946,0.0,0.0,4.514440091912018e-05,0.0,0.0,0.0,0.0,0.0,0.0002014574427208891,0.00014534684693596532,0.00012202524294244971,0.0,0.0 +100852,50.0,the Greater Atlanta and Macon Area,G1301210007706,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,NaturalGas,95712.0,,20385.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0049268064492357525,0.003466587073764463,0.0,0.008393393523000217,0.004902320820114659,0.0009318368747922953,0.0014916730366304623,0.0,0.0010675805218242195,0.0027441989584272527,0.0009318368747922953,0.0010585912285842527,0.0,0.0001921971177933724,0.0021581218616874066,0.0004330818080462098,0.000875383404030847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023161694970823032,0.0,0.0,0.0005871181531930803,0.00039258992131350703,0.0008187351029013104,0.00032702097008826235,0.00011104522790622919,0.00012615030314600453,0.0,2.2903764946029463e-05,0.00014419300368528613,2.8935978015074065e-05,5.848796800787016e-05,0.0,0.0,0.0,0.00047819777901669444,9.089619800140111e-05,0.00014550551857173065,0.0,0.0001041373368228245 +100853,81.0,the Columbus-Albany Area,G1302150001800,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,69788.0,,2912.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005858216187743293,0.0008572834623200293,0.0,0.006715530339669621,0.001903093176126847,0.0025561066189293672,0.0022563305446134064,0.0,0.0,0.0010458097138068179,0.0025561066189293672,0.0022563305446134064,0.0,0.0,0.0008572834623200293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.727969060287123e-05,0.0,0.0,0.0006981135158715505,0.00023491516698615053,0.0007553932064744218,0.00012462733925146333,0.0003046068157089864,0.0002688830181385344,0.0,0.0,5.727969060287123e-05,0.0,0.0,0.0,0.0,0.0,0.00021406852233873968,0.000287522425973961,0.0002538022581617211,0.0,0.0 +100854,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,171718.0,,18924.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.009146809770822521,0.003218273362076624,0.0,0.012365065402537725,0.006781615018110317,0.0022146107931716955,0.001858939743085436,0.0,0.0015099175785316967,0.005625879139305595,0.0022146107931716955,0.001081977575297302,0.0,0.00022435999340934817,0.0011557358788047217,0.0007769621677881338,0.0012855575851223485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021502576174150468,0.0,0.0,0.0010900070708935272,0.0005855976796436045,0.001305032832635032,0.0006704247924119725,0.00026391074968395225,0.00012893710891248147,0.0,2.6736532776916307e-05,7.721935328440125e-05,5.191196122170698e-05,8.589326259877881e-05,0.0,0.0,0.0,0.0007157447185931113,0.00023373429112666234,0.00019619608304851616,0.0,0.00015935961116325656 +100855,50.0,the Greater Atlanta and Macon Area,G1300150960401,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,32784.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002890989568084656,0.0,0.0,0.002890989568084656,0.00185415637767756,0.0007448821526114257,0.0002919510377956705,0.0,0.0,0.00185415637767756,0.0007448821526114257,0.0002919510377956705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003445118874018335,9.782659492446426e-05,0.0003445118874018335,0.00022095510833511863,8.876571507593494e-05,3.479106399077992e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022095510833511863,8.876571507593494e-05,3.479106399077992e-05,0.0,0.0 +100856,50.0,the Greater Atlanta and Macon Area,G1301210011416,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,63810.0,,7624.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.005305751470584802,0.0022209479644878507,0.0,0.007526699435072653,0.005118953834042627,0.0018075632761400486,0.000600182324889976,0.0,0.0,0.002898005869554777,0.0018075632761400486,0.000600182324889976,0.0,0.0,0.0022209479644878507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001483908248635537,0.0,0.0,0.000632277041874846,0.00031348722001720545,0.0007806678667383998,0.0003453502465572655,0.00021540412655503944,7.152266876254104e-05,0.0,0.0,0.0001483908248635537,0.0,0.0,0.0,0.0,0.0,0.0005309369404247821,0.00018748012710637804,6.225079920723951e-05,0.0,0.0 +100857,50.0,the Greater Atlanta and Macon Area,G1300670030322,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,7696.0,,1193.0,,8.72605822017302,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0018391571987409795,0.0009460862165039376,0.0,0.002785243415244917,0.0017830818027457288,0.00047631003766467143,0.00037921193309472455,0.0,0.00014663964173979206,0.0009837179350553227,0.00047631003766467143,0.00037921193309472455,0.0,0.0,0.0007993638676904062,0.0,0.00014663964173979206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.32095652105461e-05,0.0,0.0,0.0002191707591401683,0.00011772550643575275,0.0002823803243507144,0.00011722880825710131,5.6761451719576784e-05,4.5190355293325155e-05,0.0,0.0,5.340680546900324e-05,0.0,9.797233946874574e-06,0.0,0.0,0.0,0.00018077673751862013,4.829042308872087e-05,3.8446186813992916e-05,0.0,1.4866976929380465e-05 +100858,50.0,the Greater Atlanta and Macon Area,G1301350050718,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,438185.0,,89270.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,280597.8237794184,0.0,0.0,0.02107742812748469,0.01518112551580045,0.0,0.03625855364328514,0.017703109854550182,0.006379827297970499,0.003932239555739311,0.0,0.008243359204663729,0.010054870230950525,0.006379827297970499,0.003552153797977639,0.0,0.0010905768005860278,0.007648239623599658,0.0003800857577616719,0.007152782404077702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010143135465490252,0.0,0.0,0.0025117570491997093,0.0017562917887637528,0.0035260705957487347,0.001198219774662431,0.0007602718932988935,0.0004233034167141811,0.0,0.00012996196452420383,0.0005110104023180598,2.5395095544580087e-05,0.00047790686404788457,0.0,0.0,0.0,0.001721591427103141,0.0006204252288341057,0.0003824022990365538,0.0,0.000801649916533348 +100859,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,26001.0,,2482.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023303538750034654,0.0007306581467357078,0.0,0.003061042711345471,0.0010402548950669336,0.0008522503668872063,0.0011685374493913313,0.0,0.0,0.00030959674833122574,0.0008522503668872063,0.0011685374493913313,0.0,0.0,0.0007306581467357078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.881885427685737e-05,0.0,0.0,0.00027770471937068984,0.00013331858857369447,0.00032652357364754717,3.6894172612849744e-05,0.00010156137722629236,0.00013925282676515333,0.0,0.0,4.881885427685737e-05,0.0,0.0,0.0,0.0,0.0,0.00011096471949988228,9.091014457492715e-05,0.00012464870957273772,0.0,0.0 +100860,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,27379.0,,2003.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002338363862247166,0.0005895166473725728,0.0,0.0029278805096197382,0.0010005732341240039,0.000826041443108968,0.0011012658323867666,0.0,0.0,0.0004110565867514311,0.000826041443108968,0.0011012658323867666,0.0,0.0,0.0005895166473725728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.938897396067935e-05,0.0,0.0,0.00027865746992689706,0.0001244863810329275,0.0003180464438875764,4.89846727065236e-05,9.843746831184031e-05,0.0001312353289085331,0.0,0.0,3.938897396067935e-05,0.0,0.0,0.0,0.0,0.0,0.00010868912099270101,8.973028189551698e-05,0.00011962704099935842,0.0,0.0 +100861,81.0,the Columbus-Albany Area,G1302150002000,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,164287.0,,1311.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01450831425463541,0.0003819783865291669,0.0,0.014890292641164577,0.008630627906637742,0.004657730726580367,0.0016019340079464685,0.0,0.0,0.008248649520108575,0.004657730726580367,0.0016019340079464685,0.0,0.0,0.0003819783865291669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5521816116841108e-05,0.0,0.0,0.00172892787048591,0.0005351418866836544,0.0017544496866027514,0.0009829756785582065,0.0005550528011088873,0.00019089939081881616,0.0,0.0,2.5521816116841108e-05,0.0,0.0,0.0,0.0,0.0,0.0010169042873022598,0.0005487974219484388,0.00018874797735205287,0.0,0.0 +100862,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,21178.0,,3402.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0049716443861853605,0.0026386490730921966,0.0,0.007610374320060625,0.003509519706740242,0.00042823870713092294,0.00262805631051022,0.0004097215878082301,0.0006347571470879426,0.003509519706740242,0.00042823870713092294,0.0006241643845059657,0.0004097215878082301,0.0,0.0,0.002003891926004254,0.0006347571470879426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017630076826951507,0.0,0.0,0.0005924647891005903,0.000379467117484421,0.0007687655573701054,0.000418225176900394,5.103268367504922e-05,7.438090734284458e-05,4.8826021182302565e-05,0.0,0.0,0.00013388960649837959,4.241116177113549e-05,0.0,0.0,0.0,0.0003545157912064486,4.3258735317021144e-05,0.00026547434979956646,4.138821976045055e-05,6.412029309641537e-05 +100863,50.0,the Greater Atlanta and Macon Area,G1301210009102,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,52368.0,,8611.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026956354984977275,0.001464456931850681,0.0,0.004160092430348409,0.0017256606162908993,0.000712494573664822,0.0010641408317087291,0.0,0.0006577964086839591,0.001377702273422363,0.000712494573664822,0.000492904047477468,0.0,0.00011253460393307514,0.0003479583428685362,0.0005712367842312611,0.0005452618047508839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.784660641272266e-05,0.0,0.0,0.0003212343564905673,0.0001967747693693729,0.00041908096290328993,0.0001641784668161052,8.490678209342224e-05,5.8738547771485335e-05,0.0,1.3410559809554583e-05,2.324857923930556e-05,3.816676310481256e-05,3.643126406860454e-05,0.0,0.0,0.0,0.00017384025110685038,7.177554753748955e-05,0.00010719982112990039,0.0,6.62653431290497e-05 +100864,50.0,the Greater Atlanta and Macon Area,G1300670030230,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,96208.0,,6562.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008572036693436556,0.0019316345099837109,0.0,0.010503640513813969,0.003238551394171384,0.0025372018214499816,0.0047279179877989,0.0,0.0,0.0013069168841876731,0.0025372018214499816,0.0047279179877989,0.0,0.0,0.0019316345099837109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001290600458478603,0.0,0.0,0.0010215117220856332,0.0004163725894529505,0.0011505717679334932,0.00015574255742646873,0.00030235304567614055,0.0005634161189830237,0.0,0.0,0.0001290600458478603,0.0,0.0,0.0,0.0,0.0,0.0003547518403961672,0.00027792580881557457,0.0005178974804699499,0.0,0.0 +100865,50.0,the Greater Atlanta and Macon Area,G1301350050430,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,66732.0,,5421.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005718670547907638,0.0015957674586616515,0.0,0.007314468696175588,0.002507156696884531,0.0019589789491949645,0.002848333050096093,0.0,0.0,0.0009113892382228797,0.0019589789491949645,0.002848333050096093,0.0,0.0,0.0015957674586616515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010662077395409114,0.0,0.0,0.0006814841900704778,0.00032023485265901113,0.0007881049640245689,0.00010860869701202102,0.0002334481714540636,0.00033943097883229554,0.0,0.0,0.00010662077395409114,0.0,0.0,0.0,0.0,0.0,0.00027013618083228006,0.0002110722047504848,0.0003068965784418041,0.0,0.0 +100866,50.0,the Greater Atlanta and Macon Area,G1300670031001,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,67058.0,,10601.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0065393106203082115,0.0031206112371693117,0.0,0.009659921857477523,0.005894184406324202,0.001455608026700043,0.002310129424453279,0.0,0.0,0.002773573169154889,0.001455608026700043,0.002310129424453279,0.0,0.0,0.0031206112371693117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020850145676464438,0.0,0.0,0.0007792761729962379,0.0004391907795254176,0.0009877776297608821,0.00033052099988518344,0.00017346180940032362,0.00027529336371073077,0.0,0.0,0.00020850145676464438,0.0,0.0,0.0,0.0,0.0,0.0006027112421976463,0.0001488435483938933,0.0002362228391693427,0.0,0.0 +100867,81.0,the Columbus-Albany Area,G1302150010402,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,12514.0,,171.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027577846667634666,0.00013572230800620345,0.0,0.0028935069747696705,0.0012057037209716236,0.0010162218150348702,0.0005358591307569728,0.0,0.00013572230800620345,0.0012057037209716236,0.0010162218150348702,0.0005358591307569728,0.0,0.0,0.0,0.0,0.00013572230800620345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.065867343360633e-06,0.0,0.0,0.0003286420543593506,0.00010086096927918418,0.00033770792170271114,0.00014368233770545264,0.00012110199501899414,6.38577216349038e-05,0.0,0.0,0.0,0.0,9.065867343360633e-06,0.0,0.0,0.0,0.00014072048256630334,0.00011860560908850109,6.254136414783093e-05,0.0,1.5840465900075712e-05 +100868,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,60348.0,,4916.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005292453295645144,0.0014471990745744722,0.0,0.006739652370219616,0.002907011577337301,0.001441767014259779,0.0023908737786225353,0.0,0.0,0.0014598125027628283,0.001441767014259779,0.0023908737786225353,0.0,0.0,0.0014471990745744722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.669286364971663e-05,0.0,0.0,0.0006306923597370478,0.0002868797300809709,0.0007273852233867646,0.00017396329088037847,0.00017181284172365928,0.00028491622713300996,0.0,0.0,9.669286364971665e-05,0.0,0.0,0.0,0.0,0.0,0.000313742779214071,0.0001556044680246386,0.0002580379761480549,0.0,0.0 +100869,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,7261.0,,352.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014728475691495866,0.0002793844950913804,0.0,0.0017521493571672276,0.0013071853004497538,0.00021743689686063924,0.00019932404771173088,0.0,2.820311214510383e-05,0.0010560039175034773,0.00021743689686063924,0.00019932404771173088,0.0,0.0,0.00025118138294627664,0.0,2.820311214510383e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.86663105758617e-05,0.0,0.0,0.00017551162496458762,7.160416075177469e-05,0.0001941779355404493,0.00012583852355951567,2.5910830078161552e-05,2.375241555282211e-05,0.0,0.0,1.6781996808434576e-05,0.0,1.8843137674271288e-06,0.0,0.0,0.0,0.00014486581407679023,2.409694559999251e-05,2.2089630618479245e-05,0.0,3.125545245187312e-06 +100870,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,20927.0,,1677.0,,8.53126424238864,Food Service,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.004849948907667226,0.0013003222525249946,0.0,0.006150271160192221,0.002017153094427493,0.0004419850402525726,0.0028206666957794535,0.00040681059961776306,0.0004636557301149381,0.002017153094427493,0.0004419850402525726,0.0015203444432544586,0.00040681059961776306,0.0004636557301149381,0.0,0.0013003222525249946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.688009044401824e-05,0.0,0.0,0.0005779555439410451,0.00023775367922993927,0.0006648356343850633,0.0002403787825597844,5.267018461764537e-05,0.00018117541368111386,4.847853984840357e-05,5.525262323409781e-05,0.0,8.688009044401824e-05,0.0,0.0,0.0,0.0,0.00021805140330488802,4.7777959210475345e-05,0.0003049100898534599,4.3975651808983074e-05,5.012053020725681e-05 +100871,50.0,the Greater Atlanta and Macon Area,G1302970110300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,23404.0,,8713.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026881178252556254,0.0014817794949580727,0.0,0.004169897320213698,0.001798745166064357,0.0005307406387478606,0.0009433084186310693,0.0,0.0008971030967704118,0.001239653679405832,0.0005307406387478606,0.0007853308983783988,0.0,0.00013239260872353428,0.000559091486658525,0.0001579775202526705,0.0007647104880468774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.900409248738859e-05,0.0,0.0,0.00032033785055003076,0.00017985150428603786,0.00041934194303741936,0.0001477271536821636,6.324734497077799e-05,9.358637839215171e-05,0.0,1.5776973504937503e-05,3.735531868432178e-05,1.0555160925928619e-05,5.109361287713819e-05,0.0,0.0,0.0,0.00018088917664954332,5.337345109736254e-05,9.486295579384578e-05,0.0,9.021635949666776e-05 +100872,50.0,the Greater Atlanta and Macon Area,G1301390001606,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,90423.0,,9982.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004375480860879211,0.0016975048023558548,0.0,0.006072967932873647,0.002741769898912706,0.0016972565772959748,0.0008988761329124169,0.0,0.000735065323752549,0.0018381597595011343,0.0016972565772959748,0.0006999769385022648,0.0,0.00014006985521841715,0.0009036101394115709,0.00019889919441015233,0.0005949954685341319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011341685468689817,0.0,0.0,0.0005214170299334313,0.00025885138437083523,0.0006348338846203294,0.00021904970740739131,0.00020225856579128551,8.341480808635232e-05,0.0,1.6691835757799924e-05,6.0373684794893255e-05,1.3289223687879925e-05,3.975394620412503e-05,0.0,0.0,0.0,0.0002866091925564025,0.00017742164919556244,9.396345140575629e-05,0.0,7.683959146260813e-05 +100873,50.0,the Greater Atlanta and Macon Area,G1302230120204,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,79712.0,,25234.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.00410317797019004,0.004291279374495379,0.0,0.008394457344685418,0.004104348174043763,0.001053325311242497,0.001107420643935078,0.0,0.0021293632154640815,0.0020323426777735525,0.001053325311242497,0.0007194980664257427,0.0,0.0002980119147482475,0.0020720054962702103,0.00038792257750933524,0.0018313513007158337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028671799955933713,0.0,0.0,0.0004889680529224071,0.0004357457059624176,0.0007756860524817443,0.00024219047997472537,0.00012552280945987774,8.57412403696781e-05,0.0,3.551352311812592e-05,0.0001384391970602952,2.5918700625371804e-05,0.00012236010187367008,0.0,0.0,0.0,0.00037926044560227255,9.73320512700057e-05,0.00010233070613845418,0.0,0.00019676284947101188 +100874,85.0,Rural Climate Zone 3A,G1300090970400,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,28073.0,,8288.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005695784938146784,0.005701522535828031,0.0,0.011397307473974815,0.0022171511839765997,0.0003379445034255593,0.006827310920860078,0.0003786097269914107,0.0016362194187501502,0.0022171511839765997,0.0003379445034255593,0.002567288082474813,0.0003786097269914107,0.000194719721307384,0.0,0.0042600228383852645,0.0014414996974427662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038094283615819325,0.0,0.0,0.0006787570249450418,0.0005611587353134944,0.001059699861103235,0.00026421414393833833,4.0272272958447644e-05,0.0003059393639262716,4.511827863914369e-05,2.3204418735608098e-05,0.0,0.0002846301443088967,9.631269184929653e-05,0.0,0.0,0.0,0.00020614647863715846,3.142143389203244e-05,0.0006347903178943413,3.5202408640925134e-05,0.00015213255365297706 +100875,85.0,Rural Climate Zone 3A,G1300310110601,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,92738.0,,1119.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.004773704778373597,0.00019024677803716655,0.0,0.004963951556410763,0.0031789651508083677,0.001216870164981064,0.0005149783474454337,0.0,5.3137893175898256e-05,0.0029887183727712006,0.001216870164981064,0.0005149783474454337,0.0,5.3137893175898256e-05,0.00019024677803716655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2710749558012914e-05,0.0,0.0,0.0005688729222483369,0.0001582779329674435,0.0005815836718063499,0.0003561596356352197,0.00014501200197500311,6.136894739136212e-05,0.0,6.3323372467520155e-06,1.2710749558012914e-05,0.0,0.0,0.0,0.0,0.0,0.0003724521087567535,0.00014257025086139325,6.033560054011492e-05,0.0,6.225711648088292e-06 +100876,50.0,the Greater Atlanta and Macon Area,G1300670031114,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,13610.0,,3127.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0012432973303325352,0.0009205040512932972,0.0,0.0021638013816258324,0.0011518729931716785,0.00046034409446554184,0.0005515842939886121,0.0,0.0,0.00023136894187838128,0.00046034409446554184,0.0005515842939886121,0.0,0.0,0.0009205040512932972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.150366782219823e-05,0.0,0.0,0.00014816050984629354,0.00010598365752113832,0.00020966417766849177,2.7571635163191324e-05,5.485800868124022e-05,6.573086600186201e-05,0.0,0.0,6.150366782219823e-05,0.0,0.0,0.0,0.0,0.0,0.00011161214053316741,4.4605603282378484e-05,5.344643385294589e-05,0.0,0.0 +100877,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,34674.0,,,11750.0,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002978702497648734,0.0,0.0011190351144331368,0.004097768301688169,0.0014906555570920199,0.0014251025580401264,0.001181979496949725,0.0,0.0,0.000371620442658883,0.0014251025580401264,0.001181979496949725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011190351144331368,0.0,0.0,0.0,0.0,9.024967115557434e-05,0.0003549669475819574,0.00018529550307159478,0.0004452166187375317,4.428538072996758e-05,0.0001698270657838611,0.00014085450106812876,0.0,0.0,0.0,0.0,0.0,9.024967115557434e-05,0.0,0.0,0.00016195757738606377,0.00015483533853864891,0.00012842036843133613,0.0,0.0 +100878,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,105231.0,,14926.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,285525.89887641044,0.0,0.0,0.02204774711509046,0.010331719642515173,0.0,0.032379466757605634,0.028434961629077556,0.0019084569161682671,0.0006742564933923282,0.0007028346343945076,0.0006589570845729795,0.018416013863086233,0.0019084569161682671,0.0006742564933923282,0.0007028346343945076,0.0003461852080491275,0.010018947765991323,0.0,0.000312771876523852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006903051213297346,0.0,0.0,0.002627383988525101,0.0014775579540046886,0.0033176891098548353,0.0021945979198578327,0.0002274268258863746,8.034973848577794e-05,8.375533587851775e-05,4.1254168416598174e-05,0.0006694075325794687,0.0,2.0897588750265913e-05,0.0,0.0,0.0,0.00291352427889417,0.000195545738130828,6.908617248464081e-05,7.201436731541442e-05,6.75185530297822e-05 +100879,50.0,the Greater Atlanta and Macon Area,G1301350050715,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,7023.0,,413.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001455230962443114,0.00032793354737635386,0.0,0.0017830818027457288,0.0011629441638484014,0.00021818126052429297,0.0003662269225176533,0.0,3.57294558553808e-05,0.0008708227794011678,0.00021818126052429297,0.0003662269225176533,0.0,0.0,0.0002921213844472338,0.0,3.57294558553808e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1909151228334444e-05,0.0,0.0,0.00017341353783324265,8.237190322357433e-05,0.00019532268906157708,0.00010377215912737777,2.599971087263962e-05,4.364166783322526e-05,0.0,0.0,1.9516550350183423e-05,0.0,2.3870752410190365e-06,0.0,0.0,0.0,0.00012739145279905536,2.3900053515675135e-05,4.011729983601574e-05,0.0,3.913882910830802e-06 +100880,85.0,Rural Climate Zone 3A,G1302870970200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,103284.0,,707.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.005135031813752852,0.00012015865934369781,0.0,0.005255208203457971,0.0027266990917056604,0.001156338711093004,0.0008662168071766797,0.0,0.0005059358631212068,0.0026065404323619627,0.001156338711093004,0.0008662168071766797,0.0,0.0005059358631212068,0.00012015865934369781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.028590075148276e-06,0.0,0.0,0.0006119325039977884,0.00017331128984743858,0.0006199610940729368,0.00031061673450101475,0.00013779880409963392,0.00010322549870108888,0.0,6.029146669605099e-05,8.028590075148276e-06,0.0,0.0,0.0,0.0,0.0,0.0003216708618678886,0.00013641419800958446,0.00010218828611362275,0.0,5.968565641699366e-05 +100881,50.0,the Greater Atlanta and Macon Area,G1300210013502,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,9051.0,,457.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021733764837215206,0.00036233969005190574,0.0,0.002535716173773426,0.0014028773847661322,0.000512783857183706,0.0005306485851113964,0.0,8.940634671219132e-05,0.0010405376947142265,0.000512783857183706,0.0005306485851113964,0.0,8.940634671219132e-05,0.00036233969005190574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4207542838752546e-05,0.0,0.0,0.0002589967309094316,9.478445835499099e-05,0.0002832042737481842,0.000123998701254721,6.110737999994199e-05,6.323628227090771e-05,0.0,1.0654367383860855e-05,2.4207542838752546e-05,0.0,0.0,0.0,0.0,0.0,0.00015668191693521313,5.7270833922787506e-05,5.9266075878807196e-05,0.0,9.985447011376336e-06 +100882,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock 90.1-2004,gen5_led,25001_50000,Electricity,22478.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.0030094841727653305,0.0,0.0,0.0030094841727653305,0.0011298685454562258,0.000697605440753082,0.001181979496949725,0.0,0.0,0.0011298685454562258,0.000697605440753082,0.001181979496949725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035863324553984396,0.0001266803127669533,0.00035863324553984396,0.00013464381276942033,8.313202162271005e-05,0.0001408537539385445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013464381276942033,8.313202162271005e-05,0.0001408537539385445,0.0,0.0 +100883,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,29324.0,,3128.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0026017420634940514,0.0009206881889310833,0.0,0.003522430252425134,0.0014096043068597863,0.0009308771382219209,0.001181979496949725,0.0,0.0,0.0004889161179287031,0.0009308771382219209,0.001181979496949725,0.0,0.0,0.0009206881889310833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.151493653175053e-05,0.0,0.0,0.0003100460714746494,0.00015501404142513055,0.00037156100800639987,5.826347037678871e-05,0.00011093136548043156,0.00014085489285616974,0.0,0.0,6.151493653175053e-05,0.0,0.0,0.0,0.0,0.0,0.00014869109098367212,9.819290178129681e-05,0.00012468025251235874,0.0,0.0 +100884,50.0,the Greater Atlanta and Macon Area,G1301350050542,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,51521.0,,17255.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,56751.431377317895,0.0,0.0,0.010744297137877676,0.011869655203083626,0.0,0.022613952340961307,0.0063160192474897865,0.0006608995329088559,0.01267112587918308,0.00036584357215063197,0.002600135829199963,0.0058847670617729175,0.0006608995329088559,0.0012327228618163228,0.00036584357215063197,0.002600135829199963,0.00043125218571686915,0.011438403017366759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007930586324761533,0.0,0.0,0.001280381333704347,0.0011826792156134451,0.0020734399661805005,0.0007012786227336747,7.87583789364161e-05,0.00014690168390223764,4.359701475362544e-05,0.0003098541801368235,2.8813664997456857e-05,0.0007642449674786966,0.0,0.0,0.0,0.0,0.0005791064975046248,6.059690426963173e-05,0.0011617968596676271,3.3543658022722886e-05,0.00023840262261434926 +100885,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,103797.0,,12699.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004964111129663543,0.002159593481685271,0.0,0.007123704611348815,0.0028469464028564586,0.0018687446329507256,0.0009584678776452144,0.0,0.0014495634282578368,0.0021040442593562463,0.0018687446329507256,0.000770632428761175,0.0,0.00022070753895681724,0.0007429021435002123,0.0001878354488840394,0.0012288558893010194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014429144318549205,0.0,0.0,0.0005915637065455339,0.0002872143259046203,0.0007358551497310259,0.0002507349630758559,0.0002226947529537542,9.183480466784923e-05,0.0,2.6301298741611148e-05,4.9636389135417456e-05,1.2550069367556387e-05,8.210498468251821e-05,0.0,0.0,0.0,0.00029408015714361366,0.00019303514627744205,9.900656499616655e-05,0.0,0.00014973511280155744 +100886,50.0,the Greater Atlanta and Macon Area,G1300670031118,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,7626.0,,1113.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0018182323090849342,0.0008825671838721494,0.0,0.0027007994929570834,0.00154529896574522,0.0006121150527446143,0.0004732498759363171,0.0,7.021830560467199e-05,0.0007328673804040031,0.0006121150527446143,0.0004732498759363171,0.0,0.0,0.0008124315853412168,0.0,7.021830560467199e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89699726757622e-05,0.0,0.0,0.00021667353621587155,0.00011397502645074474,0.00027564350889163375,8.733370653242532e-05,7.294399752245568e-05,5.63958321609906e-05,0.0,0.0,5.428376362046782e-05,0.0,4.691735245218077e-06,0.0,0.0,0.0,0.00015771316245999958,6.247244248375386e-05,4.829986703040663e-05,0.0,7.16647799874436e-06 +100887,50.0,the Greater Atlanta and Macon Area,G1302970110300,ComStock DOE Ref 1980-2004,gen5_led,200001_500000,NaturalGas,111227.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.024018606576771132,0.0,0.0,0.02401860657677113,0.00981548747180058,0.004552649646232719,0.009650469458737833,0.0,0.0,0.00981548747180058,0.004552649646232719,0.009650469458737833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002862250072095793,0.0009207222185332818,0.002862250072095793,0.0011696923230753607,0.0005425302977716805,0.0011500274512487518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001169692323075361,0.0005425302977716806,0.001150027451248752,0.0,0.0 +100888,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,60776.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005415058272804466,0.0,0.0,0.005415058272804466,0.0016530035744068675,0.0013980957044981478,0.00236395899389945,0.0,0.0,0.0016530035744068675,0.0013980957044981478,0.00236395899389945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006453019062469052,0.00021168150221616814,0.0006453019062469052,0.00019698520382593432,0.0001666083313930835,0.0002817083710278873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019698520382593432,0.0001666083313930835,0.0002817083710278873,0.0,0.0 +100889,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890102,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Propane,24656.0,,,8010.0,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0021742029949531508,0.0,0.0007549358140253214,0.0029291691825779104,0.0018608993167527413,0.0007485573581433936,0.0003197125076817757,0.0,0.0,0.0011059635027274195,0.0007485573581433936,0.0003197125076817757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007549358140253214,0.0,0.0,0.0,0.0,6.088514273968849e-05,0.0002590972780013017,0.00012277431466738937,0.0003199824207409902,0.0001317964025395127,8.920472208574894e-05,3.809977296305917e-05,0.0,0.0,0.0,0.0,0.0,6.088514273968849e-05,0.0,0.0,0.00020328462817082734,8.177240049733198e-05,3.492539207283086e-05,0.0,0.0 +100890,81.0,the Columbus-Albany Area,G1301770020402,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,52431.0,,4329.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026989156153604376,0.0007362355276062724,0.0,0.00343515114296671,0.001550289611485157,0.0005100138462478189,0.0007178668731750979,0.0,0.0006569630816972165,0.001550289611485157,0.0005100138462478189,0.0005316626175417034,0.0,0.00010693180972433845,0.0,0.0001862042556333945,0.000550031271972878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.919103357820609e-05,0.0,0.0,0.00032162415352264377,0.00011683095969814415,0.0003708151871008498,0.0001847447845983406,6.077728797844468e-05,6.335712697102877e-05,0.0,1.2742841084581952e-05,0.0,1.2441099957574425e-05,3.6749933620631675e-05,0.0,0.0,0.0,0.00016734953089921244,5.505460224293886e-05,7.749176901137176e-05,0.0,7.091737100321964e-05 +100891,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,67407.0,,2142.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006005925262854137,0.0006304565821737082,0.0,0.006636381845027846,0.002816937582853543,0.001455485268274852,0.00236395899389945,0.0,0.0,0.0021864810006798348,0.001455485268274852,0.00236395899389945,0.0,0.0,0.0006304565821737082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2124270288417494e-05,0.0,0.0,0.0007157131964810903,0.0002620918488807379,0.0007578374667695077,0.00026055823833180176,0.00017344704907185107,0.00028170790907743737,0.0,0.0,4.2124270288417494e-05,0.0,0.0,0.0,0.0,0.0,0.00032167842232239607,0.00016620822827670233,0.0002699508161704092,0.0,0.0 +100892,50.0,the Greater Atlanta and Macon Area,G1300590130700,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,86177.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007651532642143259,0.0,0.0,0.007651532642143255,0.0028390340993878892,0.0019103359232131051,0.0029021626195422636,0.0,0.0,0.0028390340993878892,0.0019103359232131051,0.0029021626195422636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009118176069614263,0.000311696924955727,0.0009118176069614263,0.0003383219283843559,0.00022765085264129592,0.00034584482593577435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003383219283843561,0.000227650852641296,0.0003458448259357745,0.0,0.0 +100893,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,16905.0,,303.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004059263179125208,0.00024001592799147012,0.0,0.00429927910711668,0.002576325346979426,0.0006856416412988586,0.0009717254093631229,0.0,6.558670947527079e-05,0.002336309418987956,0.0006856416412988586,0.0009717254093631229,0.0,6.558670947527079e-05,0.00024001592799147012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6035801002341134e-05,0.0,0.0,0.0004837371031409441,0.00016620716594803814,0.0004997729041432853,0.0002784149488493355,8.170702088505353e-05,0.00011579925070910661,0.0,7.815882697448425e-06,1.6035801002341134e-05,0.0,0.0,0.0,0.0,0.0,0.0002994868601451143,7.97029236148635e-05,0.00011295894445730171,0.0,7.6241759260056395e-06 +100894,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,91527.0,,3340.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004349027161640492,0.0005680275888142316,0.0,0.004917054750454723,0.0014681271166646324,0.0009994604732483764,0.001958584374266133,0.0,0.000490900516637002,0.0012201680122051939,0.0009994604732483764,0.0016385158899113398,0.0,0.000490900516637002,0.00024795910445943846,0.00032006848435479316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7952298039803705e-05,0.0,0.0,0.0005182659923749015,0.00015823667283505476,0.0005562182904147053,0.00014540529691037834,0.0001191039638879076,0.00019525908488155416,0.0,5.849975959135176e-05,1.6567184445692636e-05,2.1385113594111073e-05,0.0,0.0,0.0,0.0,0.00016607485504755757,0.0001130591835927541,0.00022155548546343062,0.0,5.553077197325853e-05 +100895,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6562.0,,213.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012333278836005525,0.00016872243042818713,0.0,0.0014020503140287394,0.000761649442065282,0.0004155203384662805,0.00018336158248004455,0.0,4.151895101713233e-05,0.000592927011637095,0.0004155203384662805,0.00018336158248004455,0.0,4.151895101713233e-05,0.00016872243042818713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1271578182032358e-05,0.0,0.0,0.00014697536306925167,4.897241867887493e-05,0.00015824694125128404,7.065895774164868e-05,4.951745064779508e-05,2.1851152087213715e-05,0.0,4.9478025925941745e-06,1.1271578182032358e-05,0.0,0.0,0.0,0.0,0.0,8.596602654454192e-05,4.689904629816252e-05,2.069569777926479e-05,0.0,4.686170629314807e-06 +100896,50.0,the Greater Atlanta and Macon Area,G1301170130306,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6343.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001211989458575811,0.0,0.0,0.001211989458575811,0.0006234459218468994,0.00019212853229641112,0.000357542679775026,0.0,3.8872324657474485e-05,0.0006234459218468994,0.00019212853229641112,0.000357542679775026,0.0,3.8872324657474485e-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.00014443412027037063,5.256571222726831e-05,0.00014443412027037063,7.429673799631869e-05,2.289616905882837e-05,4.260875542028199e-05,0.0,4.632457794941599e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.429673799631869e-05,2.289616905882837e-05,4.260875542028199e-05,0.0,4.632457794941599e-06 +100897,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,137209.0,,261.0,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,699376.6742607838,0.0,0.0,0.0352077409770332,0.00022166746840182665,0.0,0.03542932006127697,0.018096302825119776,0.004355748077264282,0.012295031842866708,0.0,0.0006823257001842512,0.01787463535671795,0.004355748077264282,0.012295031842866708,0.0,0.0006823257001842512,0.00022166746840182665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4808259902056763e-05,0.0,0.0,0.0041956354319991115,0.0014491306750865362,0.004210443691901169,0.002130084218854914,0.0005190657071055284,0.0014651741294943988,0.0,8.131137654426932e-05,1.4808259902056763e-05,0.0,0.0,0.0,0.0,0.0,0.0021505765265880925,0.0005176399655344397,0.0014611496685509996,0.0,8.108803485909409e-05 +100898,50.0,the Greater Atlanta and Macon Area,G1300150960801,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,Electricity,280949.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,1133273.7058648225,0.0,0.0,0.03101319750650576,0.0,0.0,0.031013197506505767,0.010158505201390004,0.010701926060103426,0.010152796934618631,0.0,0.0,0.010158505201390004,0.010701926060103426,0.010152796934618631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00369578467847584,0.0011270170709063172,0.00369578467847584,0.0012105700443057709,0.0012753284905503398,0.0012098898008426496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012105700443057706,0.0012753284905503396,0.0012098898008426492,0.0,0.0 +100899,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960102,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4875.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001170635921706157,0.0,0.0,0.001170635921706157,0.0005684457178102598,0.00031329439532449654,0.00024200089776121351,0.0,4.6812203736448e-05,0.0005684457178102598,0.00031329439532449654,0.00024200089776121351,0.0,4.6812203736448e-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.000139506460140494,4.307982259182036e-05,0.000139506460140494,6.774253925007878e-05,3.733576875880962e-05,2.883961441084397e-05,0.0,5.5786813932117856e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.774253925007878e-05,3.733576875880962e-05,2.883961441084397e-05,0.0,5.5786813932117856e-06 +100900,35.0,Eastern Counties in South Carolina and Georgia,G1301890950400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6533.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001239448207057261,0.0,0.0,0.001239448207057261,0.0005739043846770542,0.0002751664343306758,0.000346790760188916,0.0,4.358662786061501e-05,0.0005739043846770542,0.0002751664343306758,0.000346790760188916,0.0,4.358662786061501e-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.00014770723013223747,4.5939831539843935e-05,0.00014770723013223747,6.839319831092991e-05,3.279206957493354e-05,4.132766688539115e-05,0.0,5.19429536098286e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.839319831092991e-05,3.279206957493354e-05,4.132766688539115e-05,0.0,5.19429536098286e-06 +100901,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,28730.0,,2367.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024616133211387407,0.0006967154421704485,0.0,0.003158328763309189,0.0012663452246621098,0.0008041904434250037,0.0010877930952220751,0.0,0.0,0.0005696297824916613,0.0008041904434250037,0.0010877930952220751,0.0,0.0,0.0006967154421704485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.655044309164666e-05,0.0,0.0,0.00029334658884085937,0.00012506510264748822,0.0003398970319325061,6.788188549401807e-05,9.583411063440815e-05,0.00012963059271243308,0.0,0.0,4.655044309164666e-05,0.0,0.0,0.0,0.0,0.0,0.0001362831470443777,8.654638744518995e-05,0.00011706749744293841,0.0,0.0 +100902,50.0,the Greater Atlanta and Macon Area,G1302230120202,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,9185.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0004824608646010568,0.0,0.0,0.0004824608646010568,0.0002366294035120247,0.00010276517479062605,3.1099053930772617e-05,0.0,0.00011200269309047355,0.0002366294035120247,0.00010276517479062605,3.1099053930772617e-05,0.0,0.00011200269309047355,0.0,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.749477919452077e-05,1.5984650963876293e-05,5.749477919452077e-05,2.8199085778915667e-05,1.2246508405109786e-05,3.7060689686960947e-06,0.0,1.3347341890110165e-05,0.0,0.0,0.0,0.0,0.0,0.0,2.8199085778915667e-05,1.2246508405109786e-05,3.7060689686960947e-06,0.0,1.3347341890110165e-05 +100903,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,61186.0,,6102.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005247554401631604,0.0017961705877856504,0.0,0.007043724989417254,0.0037002151417077265,0.0013562657711143793,0.001987244076595148,0.0,0.0,0.0019040445539220759,0.0013562657711143793,0.001987244076595148,0.0,0.0,0.0017961705877856504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012000913564673115,0.0,0.0,0.0006253400666615442,0.0003025680760762122,0.0007453492023082754,0.000226901001332348,0.00016162335114729468,0.00023681571418190147,0.0,0.0,0.00012000913564673115,0.0,0.0,0.0,0.0,0.0,0.0003915474281554863,0.00014351662112545855,0.00021028515302733047,0.0,0.0 +100904,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000500,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,16005.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0038429841812969196,0.0,0.0,0.0038429841812969196,0.002322331923526014,0.0005257688677607773,0.0009130033870082147,0.0,8.179729592817503e-05,0.002322331923526014,0.0005257688677607773,0.0009130033870082147,0.0,8.179729592817503e-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.0004579612476347778,0.00016076649668111023,0.0004579612476347778,0.0002767479580832224,6.265489403237453e-05,0.00010880090848252044,0.0,9.747630989148718e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002767479580832224,6.265489403237453e-05,0.00010880090848252044,0.0,9.747630989148718e-06 +100905,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,33080.0,,1961.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028518009756077333,0.0005773635632786824,0.0,0.003429164538886416,0.0014372556421340167,0.0008502862320841533,0.0011416226646682457,0.0,0.0,0.0008598920788553344,0.0008502862320841533,0.0011416226646682457,0.0,0.0,0.0005773635632786824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8576286835525226e-05,0.0,0.0,0.0003398446317253915,0.00014727447831220424,0.00037842091856091675,0.00010247198502339274,0.00010132727138934718,0.0001360453753126516,0.0,0.0,3.8576286835525226e-05,0.0,0.0,0.0,0.0,0.0,0.00015860644601201797,9.383221287173237e-05,0.00012598225967716637,0.0,0.0 +100906,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,14279.0,,1715.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0012722376290712689,0.0005048747132035085,0.0,0.0017771123422747773,0.0007954132160238606,0.000448958250529094,0.0005327408757218226,0.0,0.0,0.0002905385028203523,0.000448958250529094,0.0005327408757218226,0.0,0.0,0.0005048747132035085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3733122439930973e-05,0.0,0.0,0.0001516110671271316,7.861685237559345e-05,0.0001853441895670626,3.462313285472332e-05,5.350182851291299e-05,6.34861057594953e-05,0.0,0.0,3.3733122439930973e-05,0.0,0.0,0.0,0.0,0.0,8.295773676646854e-05,4.682416587532481e-05,5.556228692526922e-05,0.0,0.0 +100907,50.0,the Greater Atlanta and Macon Area,G1300670030231,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,69001.0,,7040.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006147926071193608,0.002072346354858678,0.0,0.008220272426052286,0.0035079447582526194,0.002509826692632431,0.0022025009751672356,0.0,0.0,0.0014355984033939408,0.002509826692632431,0.0022025009751672356,0.0,0.0,0.002072346354858678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001384630819748007,0.0,0.0,0.0007326350481800395,0.00035003291539171356,0.0008710981301548402,0.0001710771556551116,0.0002990906166708855,0.00026246727585404236,0.0,0.0,0.0001384630819748007,0.0,0.0,0.0,0.0,0.0,0.00037173513981310146,0.0002659650709428826,0.00023339791939885616,0.0,0.0 +100908,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,30185.0,,1464.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002680859868529529,0.000430882072419747,0.0,0.003111741940949276,0.0010807958649861988,0.0008624393161780436,0.0011685374493913313,0.0,0.0,0.0006499137925664518,0.0008624393161780436,0.0011685374493913313,0.0,0.0,0.000430882072419747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8788403137298015e-05,0.0,0.0,0.0003194727149016081,0.00012462134940699016,0.00034826111803890606,7.744892830862186e-05,0.00010277517038904905,0.00013925227342301017,0.0,0.0,2.8788403137298015e-05,0.0,0.0,0.0,0.0,0.0,0.00012096092267763531,9.652281140037219e-05,0.00013078081869192842,0.0,0.0 +100909,85.0,Rural Climate Zone 3A,G1300310110200,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,11622.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002790619375037972,0.0,0.0,0.0027906193750379723,0.0017776231358789347,0.0004336331876151888,0.0005007086244177672,0.0,7.865442712608135e-05,0.0017776231358789347,0.0004336331876151888,0.0005007086244177672,0.0,7.865442712608135e-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.00033255059049994384,0.00010164142258241513,0.00033255059049994384,0.00021183455859681972,5.1674898372638786e-05,5.966809741521177e-05,0.0,9.3730361152736e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00021183455859681967,5.167489837263878e-05,5.966809741521175e-05,0.0,9.373036115273598e-06 +100910,35.0,Eastern Counties in South Carolina and Georgia,G1302450010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5484.0,,182.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003870880042329252,5.3491983776895945e-05,0.0,0.00044057998800982117,0.00021283241967456882,0.00013752012582000619,9.025813212154388e-05,0.0,0.0,0.00015934043589767286,0.00013752012582000619,9.025813212154388e-05,0.0,0.0,5.3491983776895945e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5737443673556394e-06,0.0,0.0,4.612911749453625e-05,2.0265698050973283e-05,4.970286186189188e-05,1.8988533896109745e-05,1.6388216561723374e-05,1.0756024304402686e-05,0.0,0.0,3.5737443673556394e-06,0.0,0.0,0.0,0.0,0.0,2.401012447842158e-05,1.551396795786692e-05,1.0182231592074672e-05,0.0,0.0 +100911,50.0,the Greater Atlanta and Macon Area,G1301350050319,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,53199.0,,4479.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004739979003073897,0.0013184254865493113,0.0,0.006058404489623209,0.0020179336828928507,0.0017034265975539931,0.0023370442091763645,0.0,0.0,0.0006995081963435396,0.0017034265975539931,0.0023370442091763645,0.0,0.0,0.0013184254865493113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.808931185162374e-05,0.0,0.0,0.0005648530090261314,0.000256476001375074,0.0006529423208777551,8.335887338042082e-05,0.00020299365011101027,0.00027850048553470033,0.0,0.0,8.808931185162374e-05,0.0,0.0,0.0,0.0,0.0,0.0002174820622396903,0.0001835861765183948,0.00025187408211966997,0.0,0.0 +100912,35.0,Eastern Counties in South Carolina and Georgia,G1300510010802,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,112446.0,,6744.0,,4.088175128053588,Healthcare,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.011980431403971417,0.002506596785392263,0.0,0.014486989440939908,0.007930446151313324,0.0017647969606995105,0.004509037829085958,0.0,0.000282708499841116,0.0063679547111278574,0.0017647969606995105,0.003847679732144049,0.0,0.0,0.0015624914401854663,0.000661358096941909,0.000282708499841116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016747519124976398,0.0,0.0,0.0014276841830163493,0.0005595676863100909,0.001595159374266113,0.0007588564979578241,0.0002103073438733432,0.00045852034118518196,0.0,0.0,0.00010439595003718535,4.418783045418806e-05,1.8888821829959933e-05,0.0,0.0,0.0,0.0008732197653592904,0.00019432142385502593,0.0004964892113236976,0.0,3.1128973728099004e-05 +100913,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,44783.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005457010964613426,0.0,0.0,0.005457010964613426,0.0018720352945535725,0.0015170179289017462,0.0020679577411581067,0.0,0.0,0.0018720352945535725,0.0015170179289017462,0.0020679577411581067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006503028038446842,0.00022970086374610383,0.0006503028038446842,0.0002230872924461198,0.00018078047103893742,0.000246435040359627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002230872924461198,0.00018078047103893742,0.000246435040359627,0.0,0.0 +100914,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,7343.0,,490.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017503298015449633,0.00038864053950100555,0.0,0.002138970341045969,0.0014338098303446334,0.00023273770550241105,0.00036399383152669197,0.0,0.00010826355952475341,0.0011534328503683814,0.00023273770550241105,0.00036399383152669197,0.0,0.0,0.0002803769799762521,0.0,0.00010826355952475341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5968328969776292e-05,0.0,0.0,0.00020858381014045708,9.531509435627636e-05,0.00023455213911023336,0.00013745262090529765,2.7734954483544207e-05,4.337652263044707e-05,0.0,0.0,1.873433394499715e-05,0.0,7.233995024779138e-06,0.0,0.0,0.0,0.00015722666010420714,2.5521217208885486e-05,3.991431305483477e-05,0.0,1.1871809995178076e-05 +100915,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,216812.0,,32825.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012581163047525329,0.005582191528766584,0.0,0.018163354576291917,0.00809612628343161,0.0027878511082434225,0.00334103838454907,0.0,0.003938321069706389,0.006741207524434016,0.0027878511082434225,0.0025521436835252405,0.0,0.0004999430009612289,0.001354918758997595,0.0007888947010238293,0.0034383780687451595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003729698559321132,0.0,0.0,0.0014992725722927755,0.000726197572390522,0.0018722424282248888,0.0008033365045297298,0.00033222275925018894,0.0003041339668523156,0.0,5.957722876807842e-05,9.052786020308928e-05,5.270939584752617e-05,0.00022973259988149774,0.0,0.0,0.0,0.000834532578684144,0.00028736614189319484,0.0003443875849918979,0.0,0.00040595429504529574 +100916,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2004,gen5_led,50001_100000,NaturalGas,51316.0,,6409.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004413318833641149,0.0018865207887260875,0.0,0.006299839622367238,0.0026493416428617876,0.0011520264412031669,0.0024985022279085793,0.0,0.0,0.0007628208541357003,0.0011520264412031669,0.0024985022279085793,0.0,0.0,0.0018865207887260875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012604567527437817,0.0,0.0,0.0005259262636740375,0.0002740477474884967,0.0006519719389484157,9.090381565231998e-05,0.00013728465690202715,0.0002977414483378933,0.0,0.0,0.00012604567527437817,0.0,0.0,0.0,0.0,0.0,0.00027418101275161175,0.00011922349736084888,0.00025857060491079524,0.0,0.0 +100917,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,20154.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.0017591282329843237,0.0,0.0,0.0017591282329843237,0.0008122004306687042,0.0004016041880117386,0.0005453236143038808,0.0,0.0,0.0008122004306687042,0.0004016041880117386,0.0005453236143038808,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.317085586311303e-11,0.0,0.0,0.00020963112344266364,7.38237370152522e-05,0.0002096312066135195,9.678799165928285e-05,4.785821495761857e-05,6.498491682576221e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.678803005978354e-05,4.785823394529861e-05,6.498494260843734e-05,0.0,0.0 +100918,50.0,the Greater Atlanta and Macon Area,G1300570090100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,13961.0,,1873.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012297018347426527,0.0005512467083193373,0.0,0.0017809485430619902,0.0007249805695706328,0.0005294570878479684,0.0005264801960370913,0.0,0.0,0.00017373386125129546,0.0005294570878479684,0.0005264801960370913,0.0,0.0,0.0005512467083193373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.683180308206465e-05,0.0,0.0,0.00014653984104531664,8.43126082769691e-05,0.0001833716441273813,2.0703337746326025e-05,6.30937966436348e-05,6.273904946797791e-05,0.0,0.0,3.683180308206465e-05,0.0,0.0,0.0,0.0,0.0,7.46461089628152e-05,5.4514442358146194e-05,5.42079329152561e-05,0.0,0.0 +100919,50.0,the Greater Atlanta and Macon Area,G1302270050400,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,20253.0,,,5116.0,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0019018429287948307,0.0,0.00048215051747487245,0.0023839934462697027,0.0016330669473701644,0.0005684419134775253,0.00018248458542201293,0.0,0.0,0.0011509164298952922,0.0005684419134775253,0.00018248458542201293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00048215051747487245,0.0,0.0,0.0,0.0,3.8885072653865676e-05,0.0002266373130939265,8.764121585688037e-05,0.00026552238574779224,0.00013715149832715904,6.77396361024169e-05,2.1746178664350558e-05,0.0,0.0,0.0,0.0,0.0,3.8885072653865676e-05,0.0,0.0,0.00018188633556442046,6.33114378991952e-05,2.032461228417658e-05,0.0,0.0 +100920,50.0,the Greater Atlanta and Macon Area,G1301210010603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6172.0,,600.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006885391256543961,0.0001749215591620127,0.0,0.0008634606848164089,0.0005519794225822637,0.00027606564528972636,3.538524334498087e-05,0.0,0.0,0.00037705786342025107,0.00027606564528972636,3.538524334498087e-05,0.0,0.0,0.0001749215591620127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1686992864086993e-05,0.0,0.0,8.205076203306595e-05,3.4789243950403743e-05,9.373775489715294e-05,4.4932646339868565e-05,3.2897762412040076e-05,4.216733767194046e-06,0.0,0.0,1.1686992864086993e-05,0.0,0.0,0.0,0.0,0.0,5.992318206507527e-05,2.9969834468137863e-05,3.841440989699703e-06,0.0,0.0 +100921,50.0,the Greater Atlanta and Macon Area,G1300570090502,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,6761.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013994036876690816,0.0,0.0,0.0013994036876690816,0.0009403794284159254,0.00024969265561896914,0.00016789535969079407,0.0,4.151895101713233e-05,0.0009403794284159254,0.00024969265561896914,0.00016789535969079407,0.0,4.151895101713233e-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.00016676897374885678,5.033696903879496e-05,0.00016676897374885678,0.00011206638484187361,2.9756237100933726e-05,2.0008334320932577e-05,0.0,4.947873807442441e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011206638484187361,2.9756237100933726e-05,2.0008334320932577e-05,0.0,4.947873807442441e-06 +100922,81.0,the Columbus-Albany Area,G1300950001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,86897.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009727899335426936,0.0,0.0,0.009727899335426936,0.0021571110474529333,0.0029505294390674433,0.004620258848906558,0.0,0.0,0.0021571110474529333,0.0029505294390674433,0.004620258848906558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011592539082200275,0.00032561188027612067,0.0011592539082200275,0.00025705852065282115,0.00035160857093789657,0.0005505868166293096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025705852065282115,0.00035160857093789657,0.0005505868166293096,0.0,0.0 +100923,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,17300.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0015255444053605231,0.0,0.0,0.0015255444053605231,0.0010991901900528006,0.0003093247366740645,0.00011702947863365777,0.0,0.0,0.0010991901900528006,0.0003093247366740645,0.00011702947863365777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001817973585458318,5.0737567101211726e-05,0.0001817973585458318,0.00013098922088987988,3.686187033470216e-05,1.394626732124975e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013098922088987988,3.686187033470216e-05,1.394626732124975e-05,0.0,0.0 +100924,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,35878.0,,8596.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,56751.431377317895,0.0,0.0,0.007115123164545725,0.005913311610237131,0.0,0.01302836305481184,0.004139963606905132,0.0008582728931438175,0.003555876162953996,0.0003753106083246927,0.004099011503455219,0.0039316888110757986,0.0008582728931438175,0.001446233215529797,0.0003753106083246927,0.0005036176364716208,0.00020827479582933447,0.002109642947424199,0.003595393866983598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000395090971053808,0.0,0.0,0.0008478920529205349,0.000625274130603947,0.0012429830239743427,0.0004685298652424096,0.00010227830896307761,0.00017234412135376122,4.472485926328949e-05,6.001489809799707e-05,1.3915635899821204e-05,0.00014095331611337493,0.0002402220190406119,0.0,0.0,0.0,0.00039497705595133083,8.188431897598186e-05,0.0003392516532822913,3.5806855619730356e-05,0.0003910699826551593 +100925,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5510.0,,937.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012791476024521286,0.0007434538858426343,0.0,0.0020225187812210237,0.0013160349573398597,0.0003231365370994741,0.0003309937091047083,0.0,5.251899182446022e-05,0.0005725810714972253,0.0003231365370994741,0.0003309937091047083,0.0,5.251899182446022e-05,0.0007434538858426343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.967313518238057e-05,0.0,0.0,0.00015242868342109554,9.647848234467632e-05,0.00020210181860347612,6.823120233571993e-05,3.850632782401528e-05,3.944262194822348e-05,0.0,6.258387040760098e-06,4.967313518238057e-05,0.0,0.0,0.0,0.0,0.0,0.00013150585334172375,3.2289678796261606e-05,3.307481303881211e-05,0.0,5.2480025686271106e-06 +100926,50.0,the Greater Atlanta and Macon Area,G1301950020300,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,NaturalGas,21234.0,,2180.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0010112511635927115,0.0003706886662090439,0.0,0.0013819398298017557,0.0008644615013960944,0.00022444864521644841,0.00010551338081073423,0.0,0.0001875340327398985,0.0006277966371612297,0.00022444864521644841,0.00010551338081073423,0.0,5.351023076571937e-05,0.00023666486423486475,0.0,0.0001340238019741791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4767146678871226e-05,0.0,0.0,0.00012050987770442381,5.4271437330988497e-05,0.00014527702438329505,7.481395195508441e-05,2.6747340086969423e-05,1.2573933237819342e-05,0.0,6.376765335529958e-06,1.581249695650132e-05,0.0,8.954649722369904e-06,0.0,0.0,0.0,9.087689051900043e-05,2.3595261241283665e-05,1.1092139951566407e-05,0.0,1.9714596583383946e-05 +100927,50.0,the Greater Atlanta and Macon Area,G1301530020900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,13682.0,,1374.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0028487889687110867,0.0009454843778988005,0.0,0.003794273346609886,0.0008211936681287466,0.0002384689036269068,0.0018784177608698693,0.00037523888835367704,0.0004810258456017032,0.0008211936681287466,0.0002384689036269068,0.0009329333829710685,0.00037523888835367704,0.0004810258456017032,0.0,0.0009454843778988005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.317181574288075e-05,0.0,0.0,0.0003394823917029114,0.00015386975526029056,0.00040265420744579216,9.785940396763263e-05,2.8417687178373675e-05,0.00011117512024549915,4.471619227586497e-05,5.7322534708376586e-05,0.0,6.317181574288075e-05,0.0,0.0,0.0,0.0,8.714635330512479e-05,2.5306692116990386e-05,0.00019934062352965271,3.982093628754698e-05,5.104721324170059e-05 +100928,50.0,the Greater Atlanta and Macon Area,G1302470060309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,4206.0,,71.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006877093181423412,5.6075395995250426e-05,0.0,0.0007437847141375918,0.00043363318761518885,0.00017451192558993865,7.956420493721375e-05,0.0,5.6075395995250426e-05,0.00043363318761518885,0.00017451192558993865,7.956420493721375e-05,0.0,0.0,0.0,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.748255390590935e-06,0.0,0.0,8.195367392427368e-05,3.2372687481679326e-05,8.570192931486462e-05,5.167565993805976e-05,2.0796422366833127e-05,9.481591619380792e-06,0.0,0.0,0.0,0.0,3.748255390590935e-06,0.0,0.0,0.0,4.9964996708310366e-05,2.010798074662118e-05,9.167714444668049e-06,0.0,6.461237415265005e-06 +100929,35.0,Eastern Counties in South Carolina and Georgia,G1301030030204,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,64049.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.0031651177385393064,0.0,0.0,0.003165117738539306,0.0017886743207777666,0.0005218931883992544,0.0006177435222360597,0.0,0.00023682443748764527,0.0017886743207777666,0.0005218931883992544,0.0006177435222360597,0.0,0.00023682443748764527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003771814400014607,0.0001062927291543289,0.0003771814400014607,0.00021315313101620797,6.219308113897507e-05,7.361539459701138e-05,0.0,2.822194614483743e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000213153131016208,6.219308113897509e-05,7.361539459701139e-05,0.0,2.8221946144837434e-05 +100930,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,499330.0,,38832.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02570311984872369,0.006603797223428605,0.0,0.03230689934179088,0.01276369711834477,0.011019916072682578,0.003744652331915152,0.0,0.0047786515492097914,0.011341988087877838,0.011019916072682578,0.0026698023619087107,0.0,0.0006714133262545597,0.001421709030466934,0.0010748499700064412,0.004107238222955232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044122678599829625,0.0,0.0,0.00306299050544317,0.0011977799458258167,0.0035042172914414665,0.001351602530373153,0.0013132218384408851,0.0003181551241275559,0.0,8.001101250157586e-05,9.49902131931294e-05,7.181513629973051e-05,0.00027442143650543646,0.0,0.0,0.0,0.001384433946187112,0.0011952920657469508,0.00040616944737124634,0.0,0.0005183237552869488 +100931,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,87284.0,,8174.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.007329261086411081,0.0024059730649210044,0.0,0.009735234151332086,0.005875924090577068,0.0014684055925261851,0.0023908737786225353,0.0,0.0,0.0034699510256560634,0.0014684055925261851,0.0023908737786225353,0.0,0.0,0.0024059730649210044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016075242152127647,0.0,0.0,0.0008734137255096211,0.0004093126884989816,0.0010341661470308976,0.0004135072849667356,0.00017498702584157393,0.00028491575748088314,0.0,0.0,0.00016075242152127647,0.0,0.0,0.0,0.0,0.0,0.00062419472223651,0.00015598755307735852,0.0002539806115846681,0.0,0.0 +100932,50.0,the Greater Atlanta and Macon Area,G1301210006000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,16538.0,,2995.0,,8.53126424238864,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006657268270031889,0.002323211158341871,0.0,0.008980479428373758,0.0044947274876471835,0.0008517874888438713,0.0023848270750400887,0.00042209328761771487,0.0008269632284418333,0.0044947274876471835,0.0008517874888438713,0.0008885791451400515,0.00042209328761771487,0.0,0.0,0.0014962479299000374,0.0008269632284418333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001552231014953753,0.0,0.0,0.0007933380976273421,0.0004404960587422253,0.0009485611991227172,0.0005356308938991065,0.0001015064195360916,0.00010589083389805493,5.030031421856827e-05,0.0,0.0,9.997035501967995e-05,5.525274647569535e-05,0.0,0.0,0.0,0.00047475461966338655,8.996986945515263e-05,0.000251896844488401,4.458351229883205e-05,8.734781231420599e-05 +100933,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,34405.0,,2222.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002784681970052525,0.0006472310304190535,0.0,0.0034318826268721413,0.002522527433305289,0.0007005670710317456,0.00020878812253510604,0.0,0.0,0.0018752964028862355,0.0007005670710317456,0.00020878812253510604,0.0,0.0,0.0006472310304190535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.324340608227712e-05,0.0,0.0,0.0003318437509547411,0.00012231833424898423,0.00037508715703701823,0.00022347449338136222,8.34848672655305e-05,2.4880770760167213e-05,0.0,0.0,4.324340608227712e-05,0.0,0.0,0.0,0.0,0.0,0.00027569930163046276,7.65683852150105e-05,2.2819470191544868e-05,0.0,0.0 +100934,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,13010.0,,621.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003044199263122688,0.000492603331191315,0.0,0.0035368025943140033,0.0017849840654417329,0.0007588374015581455,0.0009134996294506505,0.0,7.948149786347443e-05,0.0012923807342504177,0.0007588374015581455,0.0009134996294506505,0.0,7.948149786347443e-05,0.000492603331191315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.291095697175613e-05,0.0,0.0,0.0003627704530267638,0.0001535965814269763,0.0003956814099985199,0.00015401013663151602,9.042896477628052e-05,0.000108859718360111,0.0,9.471633258856196e-06,3.291095697175613e-05,0.0,0.0,0.0,0.0,0.0,0.00019969590979557224,8.489528182626147e-05,0.00010219818940284013,0.0,8.892028973846026e-06 +100935,50.0,the Greater Atlanta and Macon Area,G1301130140304,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,24800.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00563781038851363,0.0,0.0,0.005637810388513628,0.00278003286959934,0.0011997488116623936,0.0015213139143608208,0.0,0.00013679749996481447,0.00278003286959934,0.0011997488116623936,0.0015213139143608208,0.0,0.00013679749996481447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006718436858464874,0.00016365587970752296,0.0006718436858464874,0.00033128952575122464,0.00014297104871767666,0.00018129115332365535,0.0,1.6301814047913773e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00033128952575122475,0.00014297104871767669,0.0001812911533236554,0.0,1.6301814047913776e-05 +100936,50.0,the Greater Atlanta and Macon Area,G1301210007300,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,163215.0,,9267.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02604461162612027,0.002727692207739823,0.0,0.028772303833860098,0.010703859505300182,0.006534308214481686,0.011534105424471934,0.0,0.0,0.00797616729756036,0.006534308214481686,0.011534105424471934,0.0,0.0,0.002727692207739823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018224812312737365,0.0,0.0,0.0031036858901709154,0.0011567102195445442,0.003285934013298289,0.0009505043981632399,0.0007786808457137968,0.001374496989072977,0.0,0.0,0.00018224812312737365,0.0,0.0,0.0,0.0,0.0,0.001222431690737271,0.0007462490921589573,0.0013172497255029825,0.0,0.0 +100937,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,320365.0,,4089.0,,9.729435225087556,Education,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1459415.2837631335,0.0,0.0,0.07291959380610159,0.003616576219258353,0.0,0.07653617002535994,0.055399791255242845,0.012964823567380587,0.002277489491739088,0.0006679295618361022,0.00522613614916134,0.055399791255242845,0.012964823567380587,0.002277489491739088,0.0006679295618361022,0.001609559929902986,0.0,0.0,0.003616576219258353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024163797876602703,0.0,0.0,0.008689684610551543,0.0021742302232864268,0.008931322589317569,0.006601884190119689,0.0015449925315211524,0.00027140394445535174,7.959585252014873e-05,0.00019180809193520307,0.0,0.0,0.00024163797876602703,0.0,0.0,0.0,0.0064648310324057325,0.0015129189448008112,0.0002657696790649807,7.794346622940663e-05,0.0006098594668166411 +100938,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,39651.0,,3412.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.00281728350820071,0.0005802615381940681,0.0,0.0033975273160333583,0.001539881889331586,0.0006906153076724767,0.0008978123112272137,0.0,0.0002692355381635018,0.001539881889331586,0.0006906153076724767,0.0003175507730331457,0.0,0.0002692355381635018,0.0,0.0005802615381940681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.876941372098954e-05,0.0,0.0,0.0003357295639148996,0.00014062559572348925,0.00037449897763588915,0.0001835043841632831,8.229912800856696e-05,3.7841836734189984e-05,0.0,3.208421500885957e-05,0.0,3.876941372098954e-05,0.0,0.0,0.0,0.0,0.00016973644053228215,7.612439948385633e-05,9.896308738322591e-05,0.0,2.9677004599685718e-05 +100939,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,20527.0,,113.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004804123085221411,8.990258915462716e-05,0.0,0.004894025674376037,0.0025054453847848396,0.0007370854411647078,0.001565810320032568,0.0,8.551911424644388e-05,0.002415542795630213,0.0007370854411647078,0.001565810320032568,0.0,8.551911424644388e-05,8.990258915462716e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.008909440540376e-06,0.0,0.0,0.0005724932723362742,0.0001881074813039737,0.0005785021817768146,0.0002878531575913856,8.783631241712074e-05,0.0001865930281284706,0.0,1.0191062279993587e-05,6.008909440540376e-06,0.0,0.0,0.0,0.0,0.0,0.000296158156466041,8.712776847540218e-05,0.00018508784927920936,0.0,1.010885464582202e-05 +100940,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,69140.0,,11034.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00846615755170948,0.0032479731033047783,0.0,0.01171413065501426,0.004659480165755022,0.002757276988210809,0.004297373501048428,0.0,0.0,0.0014115070624502442,0.002757276988210809,0.004297373501048428,0.0,0.0,0.0032479731033047783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021701017572882267,0.0,0.0,0.0010088963779500458,0.0004849005781158183,0.0012259065536788685,0.00016820669283072986,0.0003285796123471853,0.0005121100727721307,0.0,0.0,0.00021701017572882267,0.0,0.0,0.0,0.0,0.0,0.00048762366070167665,0.00028855439893089093,0.00044972849404630093,0.0,0.0 +100941,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2879.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005904457994249156,0.0,0.0,0.0005904457994249158,0.0003304147595885332,0.00012827867136966581,0.00010346654924787358,0.0,2.8368526292582448e-05,0.0003304147595885332,0.00012827867136966581,0.00010346654924787358,0.0,2.8368526292582448e-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,7.035973055336399e-05,2.4935445279151056e-05,7.035973055336399e-05,3.9373458966338314e-05,1.5286166422225463e-05,1.2329461118119955e-05,0.0,3.380499731027295e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.93734589663383e-05,1.5286166422225456e-05,1.2329461118119952e-05,0.0,3.3804997310272936e-06 +100942,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,51625.0,,3740.0,,9.325022323477118,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.012254993819267816,0.003170162981115119,0.0,0.015425156800382934,0.011123057907058007,0.0020218759996651465,0.0019839591958595707,0.0,0.0002961753136421535,0.007952894925942889,0.0020218759996651465,0.0019839591958595707,0.0,0.0002961753136421535,0.003170162981115119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021181104012745502,0.0,0.0,0.0014604023452142688,0.0005591363515770338,0.001672213385341724,0.0009477300904737271,0.0002409427940307063,0.00023642432670078966,0.0,3.529460145116701e-05,0.00021181104012745502,0.0,0.0,0.0,0.0,0.0,0.0012058306154561582,0.00021918792488756432,0.0002150774326784034,0.0,3.210783075267651e-05 +100943,50.0,the Greater Atlanta and Macon Area,G1302310010100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,11015.0,,96.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002644806804035573,7.57596795452056e-05,0.0,0.0027205664835807785,0.0014032909201348292,0.0006667844284862965,0.000574648748340708,0.0,7.57596795452056e-05,0.0014032909201348292,0.0006667844284862965,0.000574648748340708,0.0,0.0,0.0,0.0,7.57596795452056e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.063844879522385e-06,0.0,0.0,0.00031517391017629666,9.187632533296798e-05,0.000320237755055819,0.0001672260846194642,7.945875488902695e-05,6.847921470713957e-05,0.0,0.0,0.0,0.0,5.063844879522385e-06,0.0,0.0,0.0,0.0001651813093583049,7.848716426278387e-05,6.764187761074452e-05,0.0,8.917668378158029e-06 +100944,50.0,the Greater Atlanta and Macon Area,G1301350050607,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,92199.0,,7956.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00821487105534389,0.002342015925396592,0.0,0.010556856291134186,0.003674405182811359,0.0026927367461667398,0.004189745051762384,0.0,0.0,0.0013323892574147664,0.0026927367461667398,0.004189745051762384,0.0,0.0,0.002342015925396592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015647898840267062,0.0,0.0,0.0009789485491004733,0.0004525719448792391,0.001135427537503144,0.00015877796761456782,0.00032088765764067245,0.0004992829238452332,0.0,0.0,0.00015647898840267062,0.0,0.0,0.0,0.0,0.0,0.0003951953795195658,0.0002896134387480475,0.00045062202001212024,0.0,0.0 +100945,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,94306.0,,15465.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005187389571026269,0.0026299799701592717,0.0,0.00781736954118554,0.003312722997361246,0.0015763355124112145,0.001354954219720435,0.0,0.0015733568116926455,0.0026108489101870354,0.0015763355124112145,0.0007588062776939998,0.0,0.0002413988707340189,0.0007018740871742101,0.0005961479420264353,0.001331957940958627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017571979481256832,0.0,0.0,0.0006181714794946229,0.0003379472153825479,0.0007938912743071912,0.000311129964589866,0.00018784894455003718,9.042551998636698e-05,0.0,2.87670503683526e-05,4.689509881516012e-05,3.983109956707241e-05,8.899359643033583e-05,0.0,0.0,0.0,0.0003364228680691248,0.00016008441229375885,0.00013760208295828232,0.0,0.00015978191098602536 +100946,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,7806.0,,415.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0015140356918717619,0.0003293395676299221,0.0,0.001843457966575423,0.0008813265777660599,0.0005890397791713474,0.0003041966172131727,0.0,6.881228535110377e-05,0.0006207165884135022,0.0005890397791713474,0.0003041966172131727,0.0,0.0,0.0002606099893525577,0.0,6.881228535110377e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.200626178696063e-05,0.0,0.0,0.00018042754232983706,7.25249335231652e-05,0.00020243380411679766,7.397075850461198e-05,7.019583505261113e-05,3.62510925756113e-05,0.0,0.0,1.7413794799274976e-05,0.0,4.597993422087203e-06,0.0,0.0,0.0,9.678023314947266e-05,6.468363555654506e-05,3.3404438581433975e-05,0.0,7.556414600259126e-06 +100947,50.0,the Greater Atlanta and Macon Area,G1300590130500,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,6161.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00045472789651306223,0.0,0.0,0.0004547278965130621,0.00022998790959498467,0.00014417977038660767,8.056021653146981e-05,0.0,0.0,0.00022998790959498467,0.00014417977038660767,8.056021653146981e-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,5.4187886565834324e-05,2.25990664246867e-05,5.4187886565834324e-05,2.740662900211665e-05,1.7181257412856154e-05,9.600000150861516e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7406629002116656e-05,1.7181257412856157e-05,9.60000015086152e-06,0.0,0.0 +100948,81.0,the Columbus-Albany Area,G1300950000200,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,40559.0,,12488.0,,9.525004485617233,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,166687.57849830156,0.0,0.0,0.013440830305781406,0.010813602990302196,0.0,0.024254433296083604,0.012696926210405003,0.0009385469630501311,0.007755471033168671,0.0006813403164812753,0.002182058493355297,0.00877400574239641,0.0009385469630501311,0.0018329471903430947,0.0006813403164812753,0.0012138998138872706,0.003922920468008593,0.005922523842825576,0.0009681586794680267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007225026456083053,0.0,0.0,0.0016017176033507965,0.0012122562137433816,0.0023242202489591017,0.0010455811977220168,0.00011184481598895006,0.00021842875134894698,8.11940002182191e-05,0.0001446580796255697,0.0002621069424491579,0.0003957089185683303,6.468678459081698e-05,0.0,0.0,0.0,0.0012167034635489897,8.993777877599048e-05,0.0007431805392219566,6.529053640076953e-05,0.00020909927982067038 +100949,81.0,the Columbus-Albany Area,G1301770020403,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,17241.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001452815272526952,0.0,0.0,0.001452815272526952,0.0004510758333636356,0.0004564465144657335,0.0005453236143038808,0.0,0.0,0.0004510758333636356,0.0004564465144657335,0.0005453236143038808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001731281545776256,6.029471618312103e-05,0.0001731281545776256,5.37535143535339e-05,5.439352421962917e-05,6.498477320369736e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.37535143535339e-05,5.439352421962917e-05,6.498477320369736e-05,0.0,0.0 +100950,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,44003.0,,5484.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004260269767034505,0.0016141198432276778,0.0,0.005874389610262183,0.0023780455231900955,0.0012938738015111496,0.0022025009751672356,0.0,0.0,0.0007639256799624176,0.0012938738015111496,0.0022025009751672356,0.0,0.0,0.0016141198432276778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001078462428887908,0.0,0.0,0.000507688677506271,0.0002559134450185478,0.0006155349203950618,9.10356478301524e-05,0.00015418861130159196,0.00026246807559965243,0.0,0.0,0.0001078462428887908,0.0,0.0,0.0,0.0,0.0,0.0002491782396005086,0.0001355757040736826,0.0002307841924633771,0.0,0.0 +100951,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,10720.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002410249542910897,0.0,0.0,0.0024102495429108965,0.001326621462778491,0.0004027834491104271,0.000622288022814549,0.0,5.863931528116896e-05,0.001326621462778491,0.0004027834491104271,0.000622288022814549,0.0,5.863931528116896e-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.0002872232579698513,9.746099903821054e-05,0.0002872232579698513,0.00015809007816335234,4.7998670863810843e-05,7.41564680861012e-05,0.0,6.9878968464973085e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015809007816335236,4.799867086381086e-05,7.415646808610121e-05,0.0,6.987896846497309e-06 +100952,50.0,the Greater Atlanta and Macon Area,G1302970110300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,5747.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0016007954122242952,0.0,0.0,0.0016007954122242952,0.0007178146929834492,0.0004493475316256573,0.0003811969028644679,0.0,5.2436284750720904e-05,0.0007178146929834492,0.0004493475316256573,0.0003811969028644679,0.0,5.2436284750720904e-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.00019076315492606318,6.351732350763054e-05,0.00019076315492606318,8.554034727994328e-05,5.354772517247747e-05,4.5426369468056066e-05,0.0,6.248713005586363e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.554034727994328e-05,5.354772517247747e-05,4.5426369468056066e-05,0.0,6.248713005586363e-06 +100953,35.0,Eastern Counties in South Carolina and Georgia,G1300510000601,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,32131.0,,1121.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028207124044281606,0.00032988257809400716,0.0,0.0031505949825221674,0.0008444858964938874,0.0012586728230876843,0.001047436262940596,0.0,0.0,0.0005146033183998803,0.0012586728230876843,0.001047436262940596,0.0,0.0,0.00032988257809400716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2040712336476866e-05,0.0,0.0,0.00033613933439633685,0.00011645825727075657,0.0003581800467328137,6.132437204641204e-05,0.0001499938257836055,0.00012482113656631935,0.0,0.0,2.2040712336476866e-05,0.0,0.0,0.0,0.0,0.0,9.600662717657153e-05,0.00014309408003753058,0.0001190793395187116,0.0,0.0 +100954,35.0,Eastern Counties in South Carolina and Georgia,G1300510011600,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,FuelOil,24786.0,,1244.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0022000458066634195,0.00036624976155678494,0.0,0.002566295568220204,0.0008856713481454045,0.0006735140998093853,0.001007079430659117,0.0,0.0,0.0005194215865886196,0.0006735140998093853,0.001007079430659117,0.0,0.0,0.00036624976155678494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4470821187040318e-05,0.0,0.0,0.0002621743382282719,0.0001064464289901563,0.00028664515941531225,6.189826153296276e-05,8.026110768699562e-05,0.00012001131179936031,0.0,0.0,2.4470821187040318e-05,0.0,0.0,0.0,0.0,0.0,9.892601924835265e-05,7.522888590818627e-05,0.0001124868263500015,0.0,0.0 +100955,50.0,the Greater Atlanta and Macon Area,G1301210001001,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,133241.0,,13261.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.006400660472639062,0.0022550714779322554,0.0,0.008655731950571318,0.004498901906724198,0.0012857703494593893,0.0022027137206588406,0.0,0.0006683637040903104,0.0032472625029984106,0.0012857703494593893,0.0011992816464523718,0.0,0.0006683637040903104,0.0012516394037257873,0.0010034320742064685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015067066488183965,0.0,0.0,0.0007627539615099236,0.00037357095336111584,0.0009134246263917632,0.00038696980550874784,0.0001532226919135087,0.00014291600541975412,0.0,7.964757155977307e-05,8.362721226228866e-05,6.704345261955103e-05,0.0,0.0,0.0,0.0,0.0004747614432597468,0.00013568515150276,0.00023244862119465356,0.0,7.053128148939628e-05 +100956,50.0,the Greater Atlanta and Macon Area,G1301350050709,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,79874.0,,16163.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,240343.828889517,0.0,0.0,0.006497216655729492,0.004708576132039162,0.0,0.011205792787768655,0.008021819479507445,0.0022312142410978114,0.0009527590671633992,0.0,0.0,0.0033132433474682824,0.0022312142410978114,0.0009527590671633992,0.0,0.0,0.004708576132039162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031459917967020584,0.0,0.0,0.0007742608370656026,0.0005185003394269044,0.0010888600167358086,0.0003948328497481518,0.00026588951816185365,0.00011353846915559734,0.0,0.0,0.00031459917967020584,0.0,0.0,0.0,0.0,0.0,0.0007794752819490061,0.0002168057202123854,9.257901457441708e-05,0.0,0.0 +100957,50.0,the Greater Atlanta and Macon Area,G1300670030328,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10656.0,,341.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0025765734682006445,0.00027053483820127457,0.0,0.002847108306401919,0.0010481467454982428,0.0009882668241109845,0.0007298899257493879,0.0,8.080481104330337e-05,0.0007776119072969683,0.0009882668241109845,0.0007298899257493879,0.0,8.080481104330337e-05,0.00027053483820127457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.807620282374708e-05,0.0,0.0,0.0003070445174967359,0.00011362830393511413,0.000325120720320483,9.266627783854878e-05,0.00011776955476417992,8.69793556610501e-05,0.0,9.629329232957051e-06,1.807620282374708e-05,0.0,0.0,0.0,0.0,0.0,0.00011969134582330583,0.00011285345942102752,8.334854627086513e-05,0.0,9.22736880528445e-06 +100958,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,35462.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003127083556514301,0.0,0.0,0.003127083556514301,0.0021904528706523482,0.0007184267475011439,0.00021823431196024682,0.0,0.0,0.0021904528706523482,0.0007184267475011439,0.00021823431196024682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037264795414734386,9.124032917390627e-05,0.00037264795414734386,0.0002610316501470948,8.561340073670888e-05,2.6006522821344148e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002610316501470948,8.561340073670888e-05,2.6006522821344148e-05,0.0,0.0 +100959,50.0,the Greater Atlanta and Macon Area,G1301210009101,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,17008.0,,9244.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.003541388728808842,0.006359194670041183,0.0,0.009900655118821045,0.0029818295149450446,0.00031442035293243885,0.0040556209209907735,0.0003719397696869589,0.002176916280236842,0.0018506621320868275,0.00031442035293243885,0.0007278859858374366,0.0003719397696869589,0.0002765522082361962,0.0011311673828582173,0.003327734935153337,0.0019003640720006462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042488655885857506,0.0,0.0,0.0004220229218780375,0.0005371338290695059,0.0008469094807366125,0.0002205411210689149,3.746908521028224e-05,8.674127413301882e-05,4.432360307949902e-05,3.29563851667081e-05,7.557840917497431e-05,0.00022234102252787424,0.00012697191909138313,0.0,0.0,0.0,0.00025506793801417923,2.689575332533582e-05,0.0003469208620075478,3.18160074692499e-05,0.00018621505490052875 +100960,50.0,the Greater Atlanta and Macon Area,G1301210001202,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,22083.0,,13789.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004598110781752856,0.009485181326727607,0.0,0.014083292108480461,0.003182430273875709,0.00029283264165674,0.008139714670474744,0.0003735176090493024,0.002094868633394983,0.0022585336072526076,0.00029283264165674,0.0014184058667757397,0.0003735176090493024,0.00025482105701846603,0.0009238966666231015,0.0067213088036990045,0.0018400475763765169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006337456594073576,0.0,0.0,0.0005479485892092649,0.0007653615008089054,0.0011816942486166226,0.00026914538655460694,3.489633905885682e-05,0.00016902887523071548,4.4511421459350066e-05,3.036656690573555e-05,6.172950015867754e-05,0.0004490794780989462,0.00012294147306870292,0.0,0.0,0.0,0.0002670298622150862,2.4570863530169185e-05,0.0006829833491622558,3.134093981511661e-05,0.00017577525173958152 +100961,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302670950400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,23697.0,,1011.0,,8.53126424238864,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005563060153548572,0.0007837835702832394,0.0,0.006346843723831812,0.002215504595294592,0.0003913661900516743,0.003031794200371379,0.0003269201459460577,0.0003814203137342454,0.002215504595294592,0.0003913661900516743,0.00224801063008814,0.0003269201459460577,0.0003814203137342454,0.0,0.0007837835702832394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.236869343378251e-05,0.0,0.0,0.0006629388216222675,0.0002418383592901765,0.0007153075150560501,0.00026401727918876284,4.6638331007467864e-05,0.0002678909587476476,3.895842402132079e-05,4.545310069467478e-05,0.0,5.236869343378251e-05,0.0,0.0,0.0,0.0,0.0002496937305553594,4.410809357596771e-05,0.00034169191333415985,3.6844839323892046e-05,4.298716475161978e-05 +100962,50.0,the Greater Atlanta and Macon Area,G1301210007706,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,17376.0,,835.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004172323748926841,0.0006623182465043737,0.0,0.004834641995431216,0.0025018889806140495,0.0006965589750324472,0.0015189154092223808,0.0,0.00011727863056233791,0.0019568493646720136,0.0006965589750324472,0.0015189154092223808,0.0,0.0,0.0005450396159420359,0.0,0.00011727863056233791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.42537651435506e-05,0.0,0.0,0.0004972098079713935,0.00021227929440936273,0.0005414635731149442,0.00023319491856013585,8.300792916794015e-05,0.0001810069602433176,0.0,0.0,3.6417621415584226e-05,0.0,7.836143727966378e-06,0.0,0.0,0.0,0.00028020311498977093,7.801225237830913e-05,0.0001701133952656907,0.0,1.3134810481173394e-05 +100963,50.0,the Greater Atlanta and Macon Area,G1301430010400,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,3884.0,,951.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.0003460253110065989,0.0002800733470728356,0.0,0.0006260986580794344,0.00038457145651651356,0.00015774457637019232,8.378262519272859e-05,0.0,0.0,0.00010449810944367799,0.00015774457637019232,8.378262519272859e-05,0.0,0.0,0.0002800733470728356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8712287067206872e-05,0.0,0.0,4.12366316540854e-05,3.2003370763316314e-05,5.994891872129227e-05,1.2453279891987651e-05,1.879878374297108e-05,9.984568019126661e-06,0.0,0.0,1.8712287067206872e-05,0.0,0.0,0.0,0.0,0.0,3.682269989199125e-05,1.5104036185845905e-05,8.022182643455119e-06,0.0,0.0 +100964,35.0,Eastern Counties in South Carolina and Georgia,G1300510010603,ComStock 90.1-2007,gen1_t12_incandescent,200001_500000,NaturalGas,388306.0,,1542.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.033742915228261235,0.0004539299667493218,0.0,0.03419684519501055,0.010511834638695455,0.012402068869783567,0.011282972376137833,0.0,0.0,0.010057904671946132,0.012402068869783567,0.011282972376137833,0.0,0.0,0.0004539299667493218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.032988264589075e-05,0.0,0.0,0.004021077109466515,0.0012581996805385472,0.004051406992112407,0.0011985807975383686,0.0014779302530608211,0.001344569716087591,0.0,0.0,3.032988264589075e-05,0.0,0.0,0.0,0.0,0.0,0.0012453698612336867,0.0014693118107582568,0.001336728956013916,0.0,0.0 +100965,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,28725.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.002559329027590626,0.0,0.0,0.002559329027590626,0.001281014856472412,0.0005823045898926126,0.0006960095812256014,0.0,0.0,0.001281014856472412,0.0005823045898926126,0.0006960095812256014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030498974833229633,0.00011605008042841217,0.00030498974833229633,0.00015265579160537188,6.939198845069178e-05,8.294196827623269e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015265579160537188,6.939198845069178e-05,8.294196827623269e-05,0.0,0.0 +100966,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950800,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,195506.0,,39647.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,283757.1568865895,0.0,0.0,0.03709285180956388,0.027273240257990473,0.0,0.06436609206755435,0.023056679722040674,0.005873076706497374,0.014244303443410513,0.00038549484420890944,0.02080660907136791,0.021882336916631055,0.005873076706497374,0.006529027561406152,0.00038549484420890944,0.002422987500791404,0.0011743428054096152,0.00771527588200436,0.018383621570576502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018222378659043215,0.0,0.0,0.004420283940698262,0.0029041582861862344,0.006242521806602583,0.0026076760814759863,0.0006998832762037937,0.000778051680313746,4.59386805260217e-05,0.0002887427689099753,7.846269483666346e-05,0.0005154894587183384,0.00122828571234932,0.0,0.0,0.0,0.0022361436173821032,0.0005695981880285772,0.0013814785395395686,3.738707592782428e-05,0.0020179213414595674 +100967,50.0,the Greater Atlanta and Macon Area,G1301510070106,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,50748.0,,7104.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,32736.412774265485,0.0,0.0,0.002502941930584594,0.001208111366439558,0.0,0.003711053297024153,0.001747380309030464,0.0008017314826919477,0.0007822990065755698,0.0,0.00037964249872617057,0.001200451850306095,0.0008017314826919477,0.0004209187801120536,0.0,7.983981747449778e-05,0.0005469284587243686,0.0003613802264635162,0.0002998026812516728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.071930037584545e-05,0.0,0.0,0.0002982699071715368,0.00016018714976561384,0.0003789892075473823,0.00014305512148700528,9.554052053583736e-05,5.0159935369118035e-05,0.0,9.51432977957618e-06,3.654272591936516e-05,2.4145422235176873e-05,2.003115222130339e-05,0.0,0.0,0.0,0.00017845022035506636,8.187637173922042e-05,7.989184116674518e-05,0.0,3.877077428635029e-05 +100968,50.0,the Greater Atlanta and Macon Area,G1301510070113,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,81491.0,,9275.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004119294868720868,0.0015772929519278973,0.0,0.0056965878206487654,0.0020988138027373308,0.0014976658987904403,0.001852858229118358,0.0,0.00024723215964121627,0.0017395434892828006,0.0014976658987904403,0.0006348355906449906,0.0,0.00024723215964121627,0.00035927031345452993,0.0012180226384733673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010538566136624943,0.0,0.0,0.0004908874008144085,0.00025714154681158257,0.000596273062180658,0.0002072976102152216,0.00017847358438166522,7.565197514810785e-05,0.0,2.9462118180846694e-05,2.4004380128870414e-05,8.138128123737902e-05,0.0,0.0,0.0,0.0,0.00021968697271179688,0.00015676363811303808,0.0001939423186031408,0.0,2.587827688084626e-05 +100969,35.0,Eastern Counties in South Carolina and Georgia,G1302450001200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,11406.0,,344.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0009552800759167326,0.00010011138374683,0.0,0.0010553914596635628,0.0008158348808980138,0.00019745876994482458,4.2097808820724027e-05,0.0,0.0,0.0007157234971511839,0.00019745876994482458,4.2097808820724027e-05,0.0,0.0,0.00010011138374683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.688969573765056e-06,0.0,0.0,0.00011384034602928584,4.250748737283686e-05,0.00012052931560305088,8.529248398569493e-05,2.353108293969626e-05,5.0167791038946354e-06,0.0,0.0,6.688969573765056e-06,0.0,0.0,0.0,0.0,0.0,9.317113469070554e-05,2.255046711184947e-05,4.807713800495827e-06,0.0,0.0 +100970,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,78462.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006487690702515475,0.0,0.0,0.006487690702515474,0.002535636651528799,0.001588095057087226,0.00236395899389945,0.0,0.0,0.002535636651528799,0.001588095057087226,0.00236395899389945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007731246266188919,0.00025999522971188895,0.0007731246266188919,0.0003021665534539567,0.00018924998961029627,0.0002817080835546389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003021665534539568,0.00018924998961029633,0.000281708083554639,0.0,0.0 +100971,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,108316.0,,7305.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009650807044407106,0.002150297954854843,0.0,0.011801104999261949,0.0044296457041915266,0.0028587982058436096,0.004512661089226813,0.0,0.0,0.0022793477493366836,0.0028587982058436096,0.004512661089226813,0.0,0.0,0.002150297954854843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001436707133308349,0.0,0.0,0.0011500664494452483,0.0004959457664275475,0.0012937371627760833,0.00027162509426088133,0.0003406769907580296,0.0005377643644263376,0.0,0.0,0.0001436707133308349,0.0,0.0,0.0,0.0,0.0,0.0004856153102444576,0.00031340569209483164,0.000494716160436794,0.0,0.0 +100972,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,52599.0,,4161.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004542123111272608,0.001224730118522425,0.0,0.0057668225401887345,0.002052060525095896,0.001566090609371773,0.0021487020953273625,0.0,0.0,0.0008273304065734715,0.001566090609371773,0.0021487020953273625,0.0,0.0,0.001224730118522425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.182839233844361e-05,0.0,0.0,0.0005412752377867402,0.00023477320379611957,0.0006231036301251838,9.859122079603612e-05,0.00018662771708664305,0.0002560562999040609,0.0,0.0,8.182839233844361e-05,0.0,0.0,0.0,0.0,0.0,0.0002217245898435426,0.00016921567067548014,0.00023216668560989745,0.0,0.0 +100973,50.0,the Greater Atlanta and Macon Area,G1300890022009,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,74820.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.00659775326986845,0.0,0.0,0.00659775326986845,0.003400719313849007,0.002268057417215804,0.0009289461652042017,0.0,0.0,0.003400719313849007,0.002268057417215804,0.0009289461652042017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000786239822559878,0.00023254472754807872,0.000786239822559878,0.00040525628051409453,0.0002702794403378658,0.00011070048215252421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040525628051409453,0.0002702794403378658,0.00011070048215252421,0.0,0.0 +100974,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,53620.0,,8090.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002956218620288244,0.0013756987425818969,0.0,0.004331917362870141,0.0020122009872003727,0.0008746741895740449,0.001058786262559873,0.0,0.0003862381931744303,0.0017803233205489224,0.0008746741895740449,0.0002157784984820426,0.0,8.542488132181441e-05,0.00023187766665145056,0.0008430077640778305,0.00030081331185261587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.191642823610846e-05,0.0,0.0,0.0003522870525415185,0.00019709741888150923,0.00044420348077762697,0.00021215780553670815,0.00010423328980626509,2.5713920719659574e-05,0.0,1.0179923584824966e-05,1.549275742327396e-05,5.632502251467989e-05,2.0098648298154614e-05,0.0,0.0,0.0,0.00020633511853198691,8.969084287834044e-05,0.0001085700635150202,0.0,3.960563774551545e-05 +100975,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,14756.0,,1276.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,12264.525384160763,0.0,0.0,0.001618405415688582,0.0004742419585465212,0.0,0.002092647374235103,0.001412225052797329,0.0002562433264047835,0.0003886079420102183,0.0,3.5609801446544076e-05,0.00103066932391363,0.0002562433264047835,0.00033153151379394037,0.0,0.0,0.00038155572888369917,5.707642821627795e-05,3.5609801446544076e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1685912237008296e-05,0.0,0.0,0.0001928644229247883,8.670425537058968e-05,0.00022455033516179657,0.0001228242580356847,3.053636672017681e-05,3.950841579583137e-05,0.0,0.0,2.5493192074337827e-05,3.813493645323411e-06,2.3792265173470565e-06,0.0,0.0,0.0,0.00015153800531990586,2.749604426221088e-05,4.169935398543973e-05,0.0,3.821089471793708e-06 +100976,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,3856.0,,291.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006068218000252985,0.00023091814988014629,0.0,0.0008378226569791842,0.0006878747322898197,8.69251345000121e-05,5.293252719315675e-05,0.0,1.0090262996195503e-05,0.00046696413833212966,8.69251345000121e-05,5.293252719315675e-05,0.0,0.0,0.0002209105939576901,0.0,1.0090262996195503e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.543051470593984e-05,0.0,0.0,7.231836877333883e-05,3.97328401260855e-05,8.774888347927865e-05,5.565074418621658e-05,1.0359357445928735e-05,6.308267141193521e-06,0.0,0.0,1.4761785379500471e-05,0.0,6.74256015087629e-07,0.0,0.0,0.0,7.204417215174337e-05,9.104054939459218e-06,5.543858383685917e-06,0.0,1.0567980043901277e-06 +100977,50.0,the Greater Atlanta and Macon Area,G1301210001002,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,35172.0,,1015.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008344564790779942,0.000804987948704679,0.0,0.009149635446558363,0.004564934227967335,0.001651908383795187,0.0027165965440412916,0.0,0.0002161135836808103,0.0039760598629434655,0.001651908383795187,0.0027165965440412916,0.0,0.0,0.0005888743650238687,0.0,0.0002161135836808103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.378593082334936e-05,0.0,0.0,0.000994409831631257,0.00035724925109349026,0.0010481957624546066,0.0004738213577338474,0.00019685555556055523,0.0003237329183368546,0.0,0.0,3.934612426407556e-05,0.0,1.44398065592738e-05,0.0,0.0,0.0,0.000522965613393833,0.00018924506642597065,0.00031121731596792833,0.0,2.4758291622243097e-05 +100978,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,29044.0,,6061.0,,7.56685751697572,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006012858930006799,0.004169368795021532,0.0,0.010182227725028333,0.00162675238257609,0.00029656208014955165,0.006671248263930108,0.00027755628783041476,0.0013101804305131826,0.0013718596055866084,0.00029656208014955165,0.003913543658408848,0.00027755628783041476,0.00015333729803137643,0.00025489277698948165,0.00275770460552126,0.0011568431324818062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002785735557952079,0.0,0.0,0.0007165385071935656,0.0004597671923591809,0.0009951120629887737,0.00016348133979339352,3.534061794467179e-05,0.0004663679563208962,3.3075741583042286e-05,1.8272851551561863e-05,1.7030488479997403e-05,0.00018425416785154193,7.729369138501916e-05,0.0,0.0,0.0,0.00015898298124074721,2.8983097938034107e-05,0.0006519830239419726,2.712565635312987e-05,0.0001280443127284177 +100979,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,14121.0,,1319.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003435651843130831,0.0010464098969497173,0.0,0.004482061740080548,0.0031838915106683786,0.00038384352922412576,0.0008424542531085855,0.0,7.187244707945816e-05,0.002137481613718661,0.00038384352922412576,0.0008424542531085855,0.0,7.187244707945816e-05,0.0010464098969497173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.991448121733349e-05,0.0,0.0,0.00040942205425965525,0.00017384822655003106,0.0004793365354769888,0.0002547208370314523,4.574212214297207e-05,0.00010039415129246144,0.0,8.56494379276939e-06,6.991448121733349e-05,0.0,0.0,0.0,0.0,0.0,0.0003405030128011913,4.105035542420846e-05,9.009672922882728e-05,0.0,7.686438022761724e-06 +100980,81.0,the Columbus-Albany Area,G1302150001000,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,133042.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.011731863530030518,0.0,0.0,0.011731863530030518,0.007770447570560611,0.003201711490332857,0.0007597044691370486,0.0,0.0,0.007770447570560611,0.003201711490332857,0.0007597044691370486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001398062080620245,0.00035324537882927326,0.001398062080620245,0.0009259882771428927,0.0003815413822588896,9.053242121846246e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009259882771428927,0.0003815413822588896,9.053242121846246e-05,0.0,0.0 +100981,50.0,the Greater Atlanta and Macon Area,G1300670031309,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,58066.0,,4666.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005749053258142364,0.0013735747090662831,0.0,0.00712262796720865,0.003538327468487345,0.0014625131881170262,0.0021217873106042775,0.0,0.0,0.002164752759421061,0.0014625131881170262,0.0021217873106042775,0.0,0.0,0.0013735747090662831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.177338127407379e-05,0.0,0.0,0.0006851034311045176,0.00029624691027054845,0.0007768768123785914,0.0002579693518879584,0.00017428483581979188,0.0002528492433967674,0.0,0.0,9.177338127407379e-05,0.0,0.0,0.0,0.0,0.0,0.0003859312289684742,0.00015951873225399966,0.0002314268511561174,0.0,0.0 +100982,50.0,the Greater Atlanta and Macon Area,G1301210001600,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,54853.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004758814065509205,0.0,0.0,0.004758814065509205,0.0030502079763373518,0.0013177586116068626,0.0003908474775649905,0.0,0.0,0.0030502079763373518,0.0013177586116068626,0.0003908474775649905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005670988158690754,0.00018978780358424176,0.0005670988158690754,0.00036348747980558704,0.000157034785969005,4.657655009448327e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036348747980558704,0.000157034785969005,4.657655009448327e-05,0.0,0.0 +100983,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,7369.0,,1102.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0008324796133899018,0.00032092745165928575,0.0,0.0011534070650491878,0.0008726031382471722,0.00021732310397711428,6.348082282490131e-05,0.0,0.0,0.0005516756865878863,0.00021732310397711428,6.348082282490131e-05,0.0,0.0,0.00032092745165928575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1443002762674212e-05,0.0,0.0,9.920551755831678e-05,4.626726568960863e-05,0.000120648520320991,6.574247721146045e-05,2.5898112891482656e-05,7.56492745537369e-06,0.0,0.0,2.1443002762674212e-05,0.0,0.0,0.0,0.0,0.0,9.127590826096146e-05,2.2732400139482026e-05,6.6402119205475115e-06,0.0,0.0 +100984,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,34280.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0032255851394909305,0.0,0.0,0.00322558513949093,0.0023018328597905844,0.0006743242811175281,0.0002493976249833802,0.0,0.0,0.0023018328597905844,0.0006743242811175281,0.0002493976249833802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003843877286465577,9.659414552922045e-05,0.0003843877286465577,0.0002743056736795835,8.035812653542215e-05,2.972030885916631e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002743056736795835,8.035812653542216e-05,2.9720308859166314e-05,0.0,0.0 +100985,35.0,Eastern Counties in South Carolina and Georgia,G1300510001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,15881.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0035370507155352217,0.0,0.0,0.0035370507155352217,0.0016049307659112603,0.0007451907343911598,0.0010883423833355462,0.0,9.858683189725445e-05,0.0016049307659112603,0.0007451907343911598,0.0010883423833355462,0.0,9.858683189725445e-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.00042150812577914184,0.00011363024078615716,0.00042150812577914184,0.00019125859750138531,8.880391463475815e-05,0.00012969708242827773,0.0,1.1748531214720502e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00019125859750138531,8.880391463475815e-05,0.00012969708242827773,0.0,1.1748531214720502e-05 +100986,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9558.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002000022457163932,0.0,0.0,0.002000022457163932,0.0014876521353489227,0.00024216631190869216,0.00022736174570935614,0.0,4.275955712322194e-05,0.0014876521353489227,0.00024216631190869216,0.00022736174570935614,0.0,4.275955712322194e-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.00023833723341063794,6.505432192425881e-05,0.00023833723341063794,0.00017727945651133673,2.8858300364996612e-05,2.7094080499786777e-05,0.0,5.095540057617229e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017727945651133673,2.8858300364996612e-05,2.7094080499786777e-05,0.0,5.095540057617229e-06 +100987,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock 90.1-2004,gen1_t12_incandescent,_1000,NaturalGas,3077.0,,461.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,3204.5843851935597,0.0,0.0,0.0002713577373768748,0.00013443355111148955,0.0,0.00040579128848836435,0.0002992407016607309,8.878203115654859e-05,1.7768555671084815e-05,0.0,0.0,0.0001648071505492414,8.878203115654859e-05,1.7768555671084815e-05,0.0,0.0,0.00013443355111148955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.98187331788335e-06,0.0,0.0,3.233758366616101e-05,1.8660454406483345e-05,4.131945698404436e-05,1.9639996527041597e-05,1.058011607971666e-05,2.117471059402752e-06,0.0,0.0,8.98187331788335e-06,0.0,0.0,0.0,0.0,0.0,3.0470006752006358e-05,9.04017760212288e-06,1.8092726299151159e-06,0.0,0.0 +100988,50.0,the Greater Atlanta and Macon Area,G1300670031106,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,188714.0,,51233.0,,7.614023970037612,Education,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.04342477392090251,0.035462730636840765,0.0,0.07888743239072053,0.06293007682511725,0.008269186132812429,0.0027978433043270015,0.0007648982739446951,0.004125427854519152,0.029374215429944638,0.008269186132812429,0.0027978433043270015,0.0007648982739446951,0.002218630779873739,0.033555861395172616,0.0,0.001906797074645413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023694103702943206,0.0,0.0,0.005174845825500426,0.0036751819537898522,0.007544256195794747,0.0035004681054155275,0.0009854228237921258,0.0003334135433882299,9.115143920069767e-05,0.00026438991370384454,0.0022420046213610994,0.0,0.00012740092715867084,0.0,0.0,0.0,0.00601820350342111,0.0007908085841565361,0.00026756665851397014,7.31496560032389e-05,0.00039452779369989166 +100989,50.0,the Greater Atlanta and Macon Area,G1300590130500,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Propane,34899.0,,,7414.0,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0028202190813946945,0.0,0.0006987750286649184,0.003518994110059613,0.0020924676388661607,0.0012377545506878245,0.00018877192050562754,0.0,0.0,0.0013936926102012426,0.0012377545506878245,0.00018877192050562754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006987750286649184,0.0,0.0,0.0,0.0,5.6354497302926604e-05,0.0003360800849426464,0.00013664574129201946,0.00039243458224557303,0.00016608366843214755,0.00014750082973255844,2.2495586777940433e-05,0.0,0.0,0.0,0.0,0.0,5.6354497302926604e-05,0.0,0.0,0.00023334982612599817,0.0001380331068566366,2.1051649262938245e-05,0.0,0.0 +100990,50.0,the Greater Atlanta and Macon Area,G1301390000701,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,24090.0,,5710.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005016023052860822,0.0039277442126699385,0.0,0.00894376726553076,0.0026362826945918304,0.0004797348861234223,0.0036203524168970306,0.00036570013220860073,0.0018417688556808915,0.0026362826945918304,0.0004797348861234223,0.0013211535860785713,0.00036570013220860073,0.00021315175385839606,0.0,0.002299198830818459,0.0016286171018224957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026243031742408205,0.0,0.0,0.0005977488676808427,0.0004147398936734327,0.0008601791851049246,0.00031416023789605806,5.716899263525581e-05,0.00015743908107849415,4.3579711981935916e-05,2.5400844089098562e-05,0.0,0.00015361985056114714,0.00010881525879788288,0.0,0.0,0.0,0.0002535481338696979,4.613916609865634e-05,0.0003481924002831625,3.5171715942151097e-05,0.00017713466667865072 +100991,50.0,the Greater Atlanta and Macon Area,G1300570090701,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,175208.0,,23191.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011099755890157078,0.003943782021023765,0.0,0.015043537911180844,0.007558914062765432,0.0021555332289200793,0.0027025148787287083,0.0,0.002626575740766622,0.005847880994646075,0.0021555332289200793,0.0027025148787287083,0.0,0.0003938090575007928,0.0017110330681193557,0.0,0.0022327666832658295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002635010477602357,0.0,0.0,0.0013227362943779898,0.0005257278149977292,0.0015862373421382254,0.0006968805902912662,0.0002568706973239589,0.00032205343536977613,0.0,4.692945850034508e-05,0.00011432148222148002,0.0,0.00014918075018049965,0.0,0.0,0.0,0.0007970353664918653,0.000227286115813991,0.00028496155915142305,0.0,0.0002769543006809458 +100992,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,79700.0,,,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,349688.3371303919,0.0,0.0,0.020451033564019883,0.0,0.0,0.020451033564019883,0.008948012161483625,0.005447734350033249,0.0057467379567331615,0.0,0.00030854909576984727,0.008948012161483625,0.005447734350033249,0.0057467379567331615,0.0,0.00030854909576984727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002437109911355173,0.0008177013444356339,0.002437109911355173,0.0010663172136221313,0.0006491959116557418,0.0006848275901788915,0.0,3.676919589840835e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0010663172136221313,0.0006491959116557418,0.0006848275901788915,0.0,3.676919589840835e-05 +100993,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,64140.0,,4581.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005714803657514128,0.0013485626799336554,0.0,0.007063366337447785,0.00365006832501728,0.001452999410164738,0.001960329291872063,0.0,0.0,0.0023015056450836247,0.001452999410164738,0.001960329291872063,0.0,0.0,0.0013485626799336554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.010363489809136e-05,0.0,0.0,0.0006810220361237368,0.0002751903461107132,0.0007711256710218282,0.00027426595111526797,0.00017315111351129254,0.00023360862871786513,0.0,0.0,9.010363489809136e-05,0.0,0.0,0.0,0.0,0.0,0.00039848724417449594,0.00015862764178283523,0.00021401413552688534,0.0,0.0 +100994,50.0,the Greater Atlanta and Macon Area,G1300770170404,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,12122.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.002547114666658624,0.0014962479299000374,0.0,0.004043362596558661,0.001358865459466609,0.00026861952135364916,0.0017806353039520495,0.00041796938768121994,0.0002174346456712711,0.001358865459466609,0.00026861952135364916,0.00028438737405201206,0.00041796938768121994,0.0002174346456712711,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.997169436033309e-05,0.0,0.0,0.0003035363414714073,0.00020233995368156338,0.00040350803583174037,0.0001619342291564127,3.2011038932317936e-05,3.389007342714093e-05,4.980886822430806e-05,2.591140387989251e-05,0.0,9.997169436033309e-05,0.0,0.0,0.0,0.0,0.00013560820218687302,2.6806929346313126e-05,0.0001776987932375561,4.1711323838378254e-05,2.1698926252930765e-05 +100995,50.0,the Greater Atlanta and Macon Area,G1301210010601,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,25955.0,,1093.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0020548247760541795,0.00018595603057351378,0.0,0.002240780806627694,0.0009968009190353684,0.00047485453955185424,0.00043616689093329896,0.0,0.0003329407267457515,0.0009968009190353684,0.00047485453955185424,0.00025021086035978516,0.0,0.0003329407267457515,0.0,0.00018595603057351378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.242455634199292e-05,0.0,0.0,0.00024486845562106196,8.427527687982419e-05,0.00025729301196305486,0.0001187863337303901,5.6587257025387924e-05,2.981701781578203e-05,0.0,3.967573416558637e-05,0.0,1.242455634199292e-05,0.0,0.0,0.0,0.0,0.00011445559959616506,5.45241883383937e-05,5.0081959268332645e-05,0.0,3.8229228908160584e-05 +100996,50.0,the Greater Atlanta and Macon Area,G1300890023206,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,31879.0,,3036.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028586447578121212,0.0008935278873576164,0.0,0.0037521726451697377,0.0017700844224326033,0.0007597212038996324,0.0012223363292312042,0.0,0.0,0.0008765565350749869,0.0007597212038996324,0.0012223363292312042,0.0,0.0,0.0008935278873576164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.969950019974131e-05,0.0,0.0,0.0003406600769687539,0.00016507701743863657,0.00040035957716849516,0.00010445782599956574,9.053474835863207e-05,0.00014566384537975993,0.0,0.0,5.969950019974131e-05,0.0,0.0,0.0,0.0,0.0,0.00018886930798078956,8.106281046282653e-05,0.00013042418412134593,0.0,0.0 +100997,50.0,the Greater Atlanta and Macon Area,G1302170100600,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,1174.0,,450.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,3237.924873899493,0.0,0.0,0.0001046208678688688,0.0001323642719619921,0.0,0.00023698513983086094,0.00013337702896981627,7.098505936658654e-05,3.259236188816036e-05,0.0,0.0,1.012757007824192e-06,7.098505936658654e-05,3.259236188816036e-05,0.0,0.0,0.0001323642719619921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.844251245780532e-06,0.0,0.0,1.2467369754434898e-05,1.4609539673743953e-05,2.131162100021543e-05,1.2068735755246453e-07,8.459086606631834e-06,3.883938597597496e-06,0.0,0.0,8.844251245780532e-06,0.0,0.0,0.0,0.0,0.0,1.1994341474609715e-05,6.38355081241884e-06,2.930968855507483e-06,0.0,0.0 +100998,50.0,the Greater Atlanta and Macon Area,G1300210013410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,40054.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0035319940106189702,0.0,0.0,0.0035319940106189702,0.0021909692218427903,0.0010804193056002703,0.0002606054831759106,0.0,0.0,0.0021909692218427903,0.0010804193056002703,0.0002606054831759106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004209010999692803,0.00010852877027504724,0.0004209010999692803,0.0002610936917503038,0.00012875154170363567,3.105586651534097e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002610936917503038,0.00012875154170363567,3.105586651534097e-05,0.0,0.0 +100999,81.0,the Columbus-Albany Area,G1302150010302,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,142519.0,,10011.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.007377656577968231,0.00170241611246921,0.0,0.009080072690437441,0.004325658545288863,0.002975402871344742,0.0009471736374206406,0.0,0.0008318553667446174,0.0037959108067805248,0.002975402871344742,0.00042588328130966827,0.0,0.00018045961853329744,0.0005297477385083376,0.0005212903561109724,0.0006513957482113199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011374603873740188,0.0,0.0,0.000879180614182662,0.00040705971907778693,0.000992926652920064,0.0004523511170815406,0.0003545728235279469,5.07516608932585e-05,0.0,2.1505012679916116e-05,3.5394817015696105e-05,3.482974145118419e-05,4.35226649153109e-05,0.0,0.0,0.0,0.00047302062521724424,0.0003253670884424113,0.00010357559698047867,0.0,9.096528113537969e-05 +101000,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,115081.0,,10067.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005591304934536492,0.0017119905076360383,0.0,0.007303295442172531,0.0032318548189243846,0.0019567581470398675,0.0012213382160589173,0.0,0.0008933442601493605,0.0027744292246484428,0.0019567581470398675,0.000678611852991101,0.0,0.00018150570985708055,0.00045742559427594217,0.0005427263630678164,0.0007118385502922799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011438528668161715,0.0,0.0,0.0006663045741506841,0.0003039128151872159,0.0007806898608323013,0.0003306231558972986,0.0002331829365674478,8.086881095107462e-05,0.0,2.1629670734863114e-05,3.0562527948248605e-05,3.626183109794527e-05,4.7560927635423274e-05,0.0,0.0,0.0,0.00034547093278561574,0.00020916875917053143,0.0001305556333403063,0.0,9.549453553584771e-05 +101001,50.0,the Greater Atlanta and Macon Area,G1300890022403,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,NaturalGas,276409.0,,33856.0,,9.729435225087556,Education,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.06592860387336726,0.029945708493032925,0.0,0.09587431236640018,0.06415747931660568,0.01842546819034411,0.00717865204212776,0.0006552957982061771,0.00545741701911646,0.04222849325890312,0.01842546819034411,0.002955931820391332,0.0006552957982061771,0.0016634148055225198,0.02192898605770255,0.004222720221736428,0.0037940022135939406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002000797455101815,0.0,0.0,0.007856586023994158,0.003946820128573606,0.009857383479095974,0.005032289028742097,0.0021957279142124334,0.00035225275925109657,7.809035088407973e-05,0.00019822597090445124,0.0014651668537888282,0.0002821375181429717,0.00025349308317001464,0.0,0.0,0.0,0.006596395437591562,0.0018944272063197486,0.0007380780554839009,6.737468896227888e-05,0.0005611080907384836 +101002,50.0,the Greater Atlanta and Macon Area,G1300670030339,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,446170.0,,33946.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02166162580591401,0.005772828374754992,0.0,0.027434436450307582,0.014095761441471922,0.00534222881730759,0.004294027580515488,0.0,0.003702418611012586,0.012097248293287828,0.00534222881730759,0.0035210015529626056,0.0,0.0007011471423559881,0.0019985131481840917,0.000773026027552882,0.0030012714686565977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038570635820665096,0.0,0.0,0.0025813734530428286,0.0011924241353611393,0.0029670798112494796,0.0014416053475836148,0.000636622928151275,0.0004195908478143307,0.0,8.355432949360835e-05,0.0001335288662980407,5.164904177478354e-05,0.0002005272654956062,0.0,0.0,0.0,0.0015244799824095275,0.0005777709084573093,0.0004644062059074339,0.0,0.00040042271447520913 +101003,50.0,the Greater Atlanta and Macon Area,G1300670030326,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,44489.0,,2299.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004204040271778667,0.0006698593620001786,0.0,0.0048738996337788455,0.002870760750859114,0.0015027642057822092,0.0005003746771375235,0.0,0.0,0.002200901388858935,0.0015027642057822092,0.0005003746771375235,0.0,0.0,0.0006698593620001786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4756263726049994e-05,0.0,0.0,0.0005009883180760073,0.0001831745803628882,0.0005457445818020573,0.0002622776695212488,0.000179081850612513,5.9628797942245514e-05,0.0,0.0,4.4756263726049994e-05,0.0,0.0,0.0,0.0,0.0,0.00032144735081806913,0.00016826883700020933,5.602839398377897e-05,0.0,0.0 +101004,85.0,Rural Climate Zone 3A,G1300310110200,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,70751.0,,4422.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0036419226178473663,0.0007519800885472794,0.0,0.004393902706394646,0.0017578234919068752,0.0009794074344822968,0.0007718912844219988,0.0,0.0008847804955834749,0.0017578234919068752,0.0009794074344822968,0.0007718912844219988,0.0,0.0001328004070361955,0.0,0.0,0.0007519800885472794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.024243869949232e-05,0.0,0.0,0.0004340013585978845,0.0001541556908493497,0.0004842437972973768,0.0002094766593678445,0.00011671421987472878,9.198489404671189e-05,0.0,1.5825585308599333e-05,0.0,0.0,5.024243869949232e-05,0.0,0.0,0.0,0.00019372643856239874,0.00010793866110980557,8.50686944263181e-05,0.0,9.751000319885438e-05 +101005,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,15848.0,,1243.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013515702613508306,0.00036582010706861715,0.0,0.0017173903684194476,0.0006150810894185591,0.000494194730211908,0.0006080838591826829,0.0,0.0,0.000249260982349942,0.000494194730211908,0.0006080838591826829,0.0,0.0,0.00036582010706861715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.444246489662737e-05,0.0,0.0,0.00016106371406534873,7.527165559972393e-05,0.00018550617896197612,2.9703893861007323e-05,5.889212051758199e-05,7.246404247254359e-05,0.0,0.0,2.444246489662737e-05,0.0,0.0,0.0,0.0,0.0,6.643879268684642e-05,5.3381093635180524e-05,6.568297766176903e-05,0.0,0.0 +101006,50.0,the Greater Atlanta and Macon Area,G1301130140403,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,62918.0,,765.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.007057521660575843,0.00028441343048708767,0.0,0.007341973839486702,0.004351370492757353,0.000809687063141442,0.0019985274528927137,0.0,0.0001823888306951937,0.004351370492757353,0.000809687063141442,0.0017141140224056265,0.0,0.0001823888306951937,0.0,0.00028441343048708767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.900337180213294e-05,0.0,0.0,0.000841032913663024,0.00028282194710046516,0.0008600362854651569,0.000518545458300786,9.648903717477804e-05,0.0002042680674531325,0.0,2.173496831841885e-05,0.0,1.900337180213294e-05,0.0,0.0,0.0,0.0,0.0005097180400107992,9.484646355291866e-05,0.0002341068171261909,0.0,2.136496477524828e-05 +101007,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,7053.0,,5245.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0014362641395586268,0.0036080883018533606,0.0,0.005044352441411989,0.0011465871766265737,0.0001901296431623849,0.0026823269159838526,0.0003710074100637559,0.0006543012955754196,0.0006733788078655722,0.0001901296431623849,0.00011188315478435322,0.0003710074100637559,8.986512368256065e-05,0.00047320836876100174,0.0025704437611995,0.0005644361718928589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024107104801772422,0.0,0.0,0.00017115877349240406,0.00028546860652114086,0.0004122298215101283,8.024616619994915e-05,2.265764049377625e-05,1.3333051365632192e-05,4.421274020154829e-05,1.0709175231498166e-05,3.161697493084489e-05,0.00017174179774499554,3.771227534188378e-05,0.0,0.0,0.0,9.370031786166603e-05,1.5537595712220974e-05,0.00021920259511017134,3.0319118302270492e-05,5.347019452379929e-05 +101008,46.0,the Tallahassee-Valdosta Area,G1301850010601,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,14114.0,,484.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0007148704420951089,8.223341626620489e-05,0.0,0.000797103858361314,0.00040955361844179967,0.00020694877849485632,5.859884449327451e-05,0.0,0.00012200261693138333,0.000383153110287341,0.00020694877849485632,5.859884449327451e-05,0.0,6.616970881963706e-05,2.6400508154458617e-05,0.0,5.5832908111746266e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.494830850111414e-06,0.0,0.0,8.518941937427087e-05,3.470209701206208e-05,9.068425022438227e-05,4.565944970554809e-05,2.466159634258016e-05,6.983085667600019e-06,0.0,7.885287658542594e-06,1.7640800206588816e-06,0.0,3.7307508294525313e-06,0.0,0.0,0.0,4.6593756165513844e-05,2.3543976880552302e-05,6.666624707867148e-06,0.0,1.3879892470448969e-05 +101009,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,114308.0,,2034.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005884015471220144,0.00034588389058239007,0.0,0.006229899361802534,0.0022964718718480794,0.0018158195041118677,0.0012334125921859734,0.0,0.0008841953936566132,0.0021384234301497287,0.0018158195041118677,0.001045577143301934,0.0,0.0008841953936566132,0.00015804844169835068,0.0001878354488840394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3109504538200066e-05,0.0,0.0,0.0007011867273716581,0.00022060442757936068,0.0007242962319098581,0.00025483177840975876,0.0002163876933725675,0.00012459940306283067,0.0,0.00010536785252650121,1.0559674156936405e-05,1.2549830381263662e-05,0.0,0.0,0.0,0.0,0.0002669908174865416,0.0002111095458010931,0.00014339815798436765,0.0,0.00010279771063785567 +101010,50.0,the Greater Atlanta and Macon Area,G1300670030414,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,67645.0,,1128.0,,9.325022323477118,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.018974929740344083,0.0009564049743126658,0.0,0.01993133471465675,0.008368565621275342,0.003317145835960509,0.007842856649164471,0.0,0.00040294337657253895,0.00781501563937716,0.003317145835960509,0.007842856649164471,0.0,0.0,0.000553549981898182,0.0,0.00040294337657253895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.390334799149497e-05,0.0,0.0,0.002261206209485207,0.0007695205554144207,0.0023251095574767016,0.0009313005177253002,0.0003952979465370018,0.0009346182777945538,0.0,0.0,3.698610742729259e-05,0.0,2.6923146057963737e-05,0.0,0.0,0.0,0.0009762432966463453,0.0003869649271939713,0.0009149161967302829,0.0,4.7005757988791005e-05 +101011,50.0,the Greater Atlanta and Macon Area,G1300670030601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,52303.0,,3312.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002692319920912178,0.0005632581215922374,0.0,0.0032555780425044148,0.001303819857385003,0.0007844266499459761,0.0006864309423773443,0.0,0.0004808828624346721,0.0008973513218302926,0.0007844266499459761,0.0005296413563398174,0.0,0.0004808828624346721,0.00040646853555471044,0.00015678958603752692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.763402645919142e-05,0.0,0.0,0.0003208378046702923,0.00011334561148858287,0.00035847183112948367,0.00010693537045050422,9.347838729665898e-05,6.31161879057411e-05,0.0,5.730574612946939e-05,2.715814834352062e-05,1.0475878115670791e-05,0.0,0.0,0.0,0.0,0.00014356365770922859,8.637325044021556e-05,7.558293908035228e-05,0.0,5.295003160886773e-05 +101012,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7184.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017251041440544742,0.0,0.0,0.0017251041440544742,0.001059725735821746,0.00026284308034351896,0.0003561366595214578,0.0,4.639866836775146e-05,0.001059725735821746,0.00026284308034351896,0.0003561366595214578,0.0,4.639866836775146e-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.00020557942583674998,6.975059928001601e-05,0.00020557942583674998,0.0001262867572752075,3.132282171393189e-05,4.2440550755251965e-05,0.0,5.529296092358651e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001262867572752075,3.132282171393189e-05,4.2440550755251965e-05,0.0,5.529296092358651e-06 +101013,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,52048.0,,3726.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026791639927384986,0.0006337008475141072,0.0,0.0033128648402526058,0.0015611583230356492,0.0007936996289686638,0.0007073704992144267,0.0,0.00025061865867244637,0.0011149383171771806,0.0007936996289686638,0.0005199073879202084,0.0,0.00025061865867244637,0.00044622000585846887,0.00018746311129421827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.233998841637881e-05,0.0,0.0,0.00031927096719563285,0.00012421770854556915,0.0003616109556120116,0.00013286511607853418,9.458370181536476e-05,6.195639201009585e-05,0.0,2.9865757291638126e-05,2.9813673049858855e-05,1.2525130732950201e-05,0.0,0.0,0.0,0.0,0.00017040597195372483,8.663513156738776e-05,7.721200064810683e-05,0.0,2.7355916110913124e-05 +101014,50.0,the Greater Atlanta and Macon Area,G1301210002100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5924.0,,400.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001078831069855526,0.00031734704193772255,0.0,0.001396260818866988,0.0008692513450001208,0.00023794825114798745,0.0002539107163796738,0.0,3.515050633920565e-05,0.0005870548094016041,0.00023794825114798745,0.0002539107163796738,0.0,0.0,0.0002821965355985169,0.0,3.515050633920565e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1205278044305195e-05,0.0,0.0,0.00012856605513800518,5.1224470702747277e-05,0.00014977133318231037,6.996027747390071e-05,2.8356680514569223e-05,3.0258953486175703e-05,0.0,0.0,1.885650473994509e-05,0.0,2.3487733043601012e-06,0.0,0.0,0.0,9.324112733953807e-05,2.5523760547654717e-05,2.7235990573965928e-05,0.0,3.7704547211516347e-06 +101015,35.0,Eastern Counties in South Carolina and Georgia,G1300730030202,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,34693.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00276989002712634,0.0,0.0,0.00276989002712634,0.0017768555671084816,0.0006761770706832311,0.0003168270157351893,0.0,0.0,0.0017768555671084816,0.0006761770706832311,0.0003168270157351893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033008116500664856,7.501446608573896e-05,0.00033008116500664856,0.00021174362516052526,8.057840313373698e-05,3.775551716323827e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021174362516052526,8.057840313373698e-05,3.775551716323827e-05,0.0,0.0 +101016,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,149328.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.01230355523356794,0.0,0.0,0.01230355523356794,0.0032266745165341728,0.004725677646539168,0.0043512030704945985,0.0,0.0,0.0032266745165341728,0.004725677646539168,0.0043512030704945985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014661901419784698,0.0004063011760652098,0.0014661901419784698,0.0003845163676437301,0.0005631495814006648,0.0005185241929340749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003845163676437301,0.0005631495814006648,0.0005185241929340749,0.0,0.0 +101017,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,42049.0,,5762.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.00397832435397751,0.0016962145400740325,0.0,0.005674569583657841,0.0023024570228788533,0.0018805670051043333,0.001491545555674653,0.0,0.0,0.0006062424828048208,0.0018805670051043333,0.001491545555674653,0.0,0.0,0.0016962145400740325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011333136179253747,0.0,0.0,0.00047409097649554836,0.0002643012931678071,0.0005874223382880858,7.224501199321969e-05,0.00022410436366854928,0.00017774525806836438,0.0,0.0,0.00011333136179253747,0.0,0.0,0.0,0.0,0.0,0.00023834665664906456,0.00019467327894386768,0.0001544024026951534,0.0,0.0 +101018,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,57836.0,,4041.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0049335383499935085,0.0011895291400989597,0.0,0.006123067490092469,0.00206697567375658,0.001530674803704224,0.0025254170126316642,0.0,0.0,0.0008774465336576202,0.001530674803704224,0.0025254170126316642,0.0,0.0,0.0011895291400989597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.947694633354803e-05,0.0,0.0,0.0005879209020136664,0.0002491739123441997,0.0006673978483472144,0.00010456372707378098,0.00018240776648357525,0.0003009494084563101,0.0,0.0,7.947694633354803e-05,0.0,0.0,0.0,0.0,0.0,0.00022529477577754785,0.00016683942683376604,0.0002752636457359005,0.0,0.0 +101019,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,30844.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.002748192864746689,0.0,0.0,0.0027481928647466887,0.0010549552164835334,0.0006592127432746559,0.0010339942153822022,0.0,0.0,0.0010549552164835334,0.0006592127432746559,0.0010339942153822022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003274954080080747,0.00010966716881589826,0.0003274954080080747,0.00012571642750566813,7.855676691845094e-05,0.00012321855637879183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012571642750566813,7.855676691845096e-05,0.00012321855637879186,0.0,0.0 +101020,50.0,the Greater Atlanta and Macon Area,G1300630040515,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,71227.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0059880946015951715,0.0,0.0,0.005988094601595172,0.0016916110991293776,0.0017172369203879592,0.0025792158924715374,0.0,0.0,0.0016916110991293776,0.0017172369203879592,0.0025792158924715374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007135879031679234,0.000219571098458024,0.0007135879031679234,0.0002015855288728664,0.00020463930094487005,0.0003073594161381247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020158552887286637,0.00020463930094487002,0.00030735941613812466,0.0,0.0 +101021,81.0,the Columbus-Albany Area,G1302150000400,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,7515.0,,404.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005611594511534954,0.00011886084519100286,0.0,0.0006800202963444982,0.00026847267589230394,0.00021013173432037096,0.0002014158861318233,0.0,0.0,0.00014961183070130106,0.00021013173432037096,0.0002014158861318233,0.0,0.0,0.00011886084519100286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9419363351769e-06,0.0,0.0,6.687207924931301e-05,2.9521187973428785e-05,7.481401558448991e-05,1.7828897256789767e-05,2.5040914772767085e-05,2.4002267219756148e-05,0.0,0.0,7.9419363351769e-06,0.0,0.0,0.0,0.0,0.0,2.9536646282747435e-05,2.3118131812753967e-05,2.21592374889885e-05,0.0,0.0 +101022,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,67382.0,,2937.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006003684921594405,0.0008644034509810967,0.0,0.006868088372575502,0.0031122943538626348,0.0015264089484288434,0.002229415759890321,0.0,0.0,0.002247890902881538,0.0015264089484288434,0.002229415759890321,0.0,0.0,0.0008644034509810967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.775523443311207e-05,0.0,0.0,0.0007154473048389436,0.00028732992561600074,0.0007732025392720557,0.0002678767305482566,0.00018189914735656067,0.00026567508415405015,0.0,0.0,5.775523443311207e-05,0.0,0.0,0.0,0.0,0.0,0.00035037899439058456,0.00017184159708914632,0.0002509854027975942,0.0,0.0 +101023,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,63435.0,,3779.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005440806852488238,0.001112467538685428,0.0,0.006553274391173666,0.002853212697497428,0.0015244448136257905,0.0021755861904441502,0.0,0.0,0.0017407451588119995,0.0015244448136257905,0.0021755861904441502,0.0,0.0,0.001112467538685428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.43281320536607e-05,0.0,0.0,0.0006483695000881254,0.00027110305291829325,0.0007226976321417862,0.00020744093642721356,0.00018166487958867054,0.0002592600268564583,0.0,0.0,7.43281320536607e-05,0.0,0.0,0.0,0.0,0.0,0.00031465339880403995,0.00016811636311490888,0.000239924485761196,0.0,0.0 +101024,50.0,the Greater Atlanta and Macon Area,G1300670031509,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,Electricity,89349.0,,5979.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.007960914563230401,0.0017599875419606593,0.0,0.009720902105191059,0.002934632223005233,0.0027579828491556563,0.00402828703303017,0.0,0.0,0.0011746446810445741,0.0027579828491556563,0.00402828703303017,0.0,0.0,0.0017599875419606593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011759215412279114,0.0,0.0,0.0009486871833306546,0.0003891615211973142,0.0010662793374534457,0.00013998019260519736,0.00032866361773615344,0.0004800433729893037,0.0,0.0,0.00011759215412279114,0.0,0.0,0.0,0.0,0.0,0.0003218978720858182,0.0003025213188326682,0.0004418601465349594,0.0,0.0 +101025,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,13835.0,,11297.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.002857180205319913,0.007771504339280596,0.0,0.01062868454460051,0.004048664083802259,0.000358456415136024,0.003902785662756506,0.0003669193717158662,0.0019518590111898546,0.0015466411749516524,0.000358456415136024,0.0003613969339476641,0.0003669193717158662,0.00022376630956870644,0.0025020229088506068,0.003541388728808842,0.001728092701621148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005192461315084728,0.0,0.0,0.0003404863281484792,0.0006175226674119817,0.000859732459656952,0.00018431115182795206,4.271676961910987e-05,4.306718729705775e-05,4.3725288789789146e-05,2.6665930614570383e-05,0.0001671704292564954,0.00023661472957138194,0.00011546097268059557,0.0,0.0,0.0,0.00032748812108271153,2.89948030888982e-05,0.00031568831526382015,2.967935426226555e-05,0.0001578818659592566 +101026,85.0,Rural Climate Zone 3A,G1301070970600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,17885.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0015771491508052632,0.0,0.0,0.0015771491508052636,0.0009376937618422743,0.00047516458960418956,0.00016429079935879963,0.0,0.0,0.0009376937618422743,0.00047516458960418956,0.00016429079935879963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001879460508485671,5.097329298699794e-05,0.0001879460508485671,0.00011174329286079855,5.662451650409214e-05,1.957824148367645e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011174329286079852,5.6624516504092126e-05,1.9578241483676447e-05,0.0,0.0 +101027,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,27025.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006020165190410447,0.0,0.0,0.006020165190410447,0.0026252879346330958,0.002080000197469842,0.0011811397200710493,0.0,0.00013373733823646012,0.0026252879346330958,0.002080000197469842,0.0011811397200710493,0.0,0.00013373733823646012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007174162211043362,0.00021154521596214822,0.0007174162211043362,0.00031285256962307274,0.0002478712517626695,0.00014075507361814324,0.0,1.5937326100450784e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00031285256962307274,0.0002478712517626695,0.00014075507361814324,0.0,1.5937326100450784e-05 +101028,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,48746.0,,1619.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.004343223772857195,0.000476517516984431,0.0,0.004819741289841626,0.0021969461564273515,0.0014273735889061565,0.0011954215445081188,0.0,0.0,0.0017204286394429202,0.0014273735889061565,0.0011954215445081188,0.0,0.0,0.000476517516984431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1837891133700354e-05,0.0,0.0,0.0005175730658377834,0.00017525870195563424,0.0005494109569714837,0.00020501995108711992,0.00017009718198794036,0.00014245593276272312,0.0,0.0,3.1837891133700354e-05,0.0,0.0,0.0,0.0,0.0,0.00025043383402374204,0.00016270887632280392,0.00013626824662493783,0.0,0.0 +101029,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,13103.0,,1815.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001132937506085996,0.0005343981144618986,0.0,0.0016673356205478944,0.0008318417786992338,0.00032132017793694816,0.0005141429743054148,0.0,0.0,0.0002974436642373354,0.00032132017793694816,0.0005141429743054148,0.0,0.0,0.0005343981144618986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5705165833774784e-05,0.0,0.0,0.00013500902497051392,7.660907300135386e-05,0.00017071419080428872,3.544553770761244e-05,3.82908357200477e-05,6.126899434746505e-05,0.0,0.0,3.5705165833774784e-05,0.0,0.0,0.0,0.0,0.0,8.517013274218641e-05,3.2899143693440025e-05,5.264177213908317e-05,0.0,0.0 +101030,50.0,the Greater Atlanta and Macon Area,G1300150960102,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,147595.0,,54427.0,,7.614023970037612,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.030923785742062802,0.037673423044213894,0.0,0.0685972087862767,0.05929531255815824,0.005196242137828085,0.001700255055584208,0.000754001053512046,0.0016513979811941181,0.02162188951394435,0.005196242137828085,0.001700255055584208,0.000754001053512046,0.0016513979811941181,0.037673423044213894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002517119544817233,0.0,0.0,0.003685127497319847,0.0034187468834557914,0.006202247042137081,0.002576638586764859,0.0006192260852071536,0.00020261609332223023,8.985284138500261e-05,0.00019679389064060246,0.002517119544817233,0.0,0.0,0.0,0.0,0.0,0.005361211971062067,0.00046982053643004483,0.00015372931458816798,6.817333950836924e-05,0.00014931188054843154 +101031,85.0,Rural Climate Zone 3A,G1302850960902,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,17679.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.0028020860686361593,0.0,0.0,0.0028020860686361593,0.0017104266167316932,0.0003415393844326037,0.0007211307111525354,0.0,2.893476242795395e-05,0.0017104266167316932,0.0003415393844326037,0.0007211307111525354,0.0,2.893476242795395e-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.0003339183886266941,0.00011976682064211385,0.0003339183886266941,0.00020382775037357923,4.0700491743923135e-05,8.593554914409854e-05,0.0,3.448091532013947e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00020382775037357923,4.0700491743923135e-05,8.593554914409854e-05,0.0,3.448091532013947e-06 +101032,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11268.0,,2379.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0010271197435715168,0.0007003981949261728,0.0,0.001727487248891392,0.0012582124789932187,0.00024622271132646945,0.0002230520585717038,0.0,0.0,0.0005578142840670458,0.00024622271132646945,0.0002230520585717038,0.0,0.0,0.0007003981949261728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6795909305664045e-05,0.0,0.0,0.00012239808202441438,9.069282811429997e-05,0.00016919399133007843,6.647267655299856e-05,2.9341454884722018e-05,2.658029341918978e-05,0.0,0.0,4.6795909305664045e-05,0.0,0.0,0.0,0.0,0.0,0.00012323216359414014,2.4115606822669067e-05,2.1846220913269195e-05,0.0,0.0 +101033,81.0,the Columbus-Albany Area,G1302150010401,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,44566.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.003796887401545491,0.0,0.0,0.003796887401545491,0.001103322036008713,0.0011482516196285497,0.001545252366695633,0.0,0.0,0.001103322036008713,0.0011482516196285497,0.001545252366695633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000452466286002479,0.0001565247100299945,0.000452466286002479,0.00013148033404792415,0.00013683448856507692,0.0001841441489707387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013148033404792415,0.00013683448856507692,0.0001841441489707387,0.0,0.0 +101034,50.0,the Greater Atlanta and Macon Area,G1300670031405,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,138046.0,,5568.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007673789074405955,0.0009468722212764997,0.0,0.008620661295682454,0.004387058786886506,0.001859170237783897,0.0009860917807376567,0.0,0.0013883582206358146,0.003440186565610006,0.001859170237783897,0.0009860917807376567,0.0,0.0013883582206358146,0.0009468722212764997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.326458100924341e-05,0.0,0.0,0.0009144707059939416,0.00031632809690936774,0.0009777352870031849,0.00040996042592528393,0.00022155374658128422,0.00011751066365813484,0.0,0.0001654479827223567,6.326458100924341e-05,0.0,0.0,0.0,0.0,0.0,0.0004975699699795192,0.00021086274981454468,0.00011184022863001122,0.0,0.00015746434951532647 +101035,50.0,the Greater Atlanta and Macon Area,G1300670031310,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,NaturalGas,84275.0,,8695.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00836423736919481,0.0025595131652284115,0.0,0.01092375053442322,0.0039974132890946805,0.0024136761561017288,0.004512630399620515,0.0,0.0,0.0014379001238662684,0.0024136761561017288,0.004512630399620515,0.0,0.0,0.0025595131652284115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017101254756059513,0.0,0.0,0.0009967502410989206,0.00044979877252759247,0.0011677627886595157,0.0001713518198823955,0.00028763319168699215,0.0005377615723075859,0.0,0.0,0.00017101254756059513,0.0,0.0,0.0,0.0,0.0,0.0004273285512322701,0.00025802504278070817,0.0004824059138886953,0.0,0.0 +101036,81.0,the Columbus-Albany Area,G1302150010106,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,16170.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0013556212893821274,0.0,0.0,0.0013556212893821274,0.0004273220780892136,0.00039555833557109116,0.0005327408757218226,0.0,0.0,0.0004273220780892136,0.00039555833557109116,0.0005327408757218226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016154680965652915,5.181090585796025e-05,0.00016154680965652915,5.092315896172942e-05,4.713793420408865e-05,6.348571649071107e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.092315896172942e-05,4.713793420408865e-05,6.348571649071107e-05,0.0,0.0 +101037,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,82085.0,,7479.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.008148489436921959,0.002201580286978304,0.0,0.010350069723900263,0.003217682461888946,0.0022947846213044283,0.004837571951100592,0.0,0.0,0.0010161021749106416,0.0022947846213044283,0.004837571951100592,0.0,0.0,0.002201580286978304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014709625949769218,0.0,0.0,0.0009710396240943599,0.00044199564900537287,0.001118135883592052,0.00012108691820792264,0.0002734650162215473,0.0005764840324442489,0.0,0.0,0.00014709625949769218,0.0,0.0,0.0,0.0,0.0,0.00034761178606698977,0.0002479095405773525,0.0005226112414966097,0.0,0.0 +101038,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,162681.0,,10584.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009111455430150935,0.0017999685610023404,0.0,0.010911423991153274,0.003962097484370679,0.0031837346180303614,0.002700635460418183,0.0,0.0010649386979726312,0.0037140674584655612,0.0031837346180303614,0.001956793607762708,0.0,0.0002568597458923049,0.00024803002590511865,0.0007438418526554753,0.0008080789520803264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012026308835834597,0.0,0.0,0.0010857946631735993,0.00042973853675203267,0.0012060577515319454,0.00044259829354198325,0.0003793995463972916,0.000233187340104869,0.0,3.060948312945558e-05,1.6571876624522522e-05,4.96990449659442e-05,5.399098213162044e-05,0.0,0.0,0.0,0.00043793719199481106,0.0003519034562316805,0.00029850570683901496,0.0,0.0001177094367002485 +101039,50.0,the Greater Atlanta and Macon Area,G1301350050219,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,9653.0,,931.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002062962540279545,0.000738822289713233,0.0,0.0028017848299927784,0.0015709381586044052,0.00069143113646061,0.00046870098688065517,0.0,7.071454804710785e-05,0.0009028304169382798,0.00069143113646061,0.00046870098688065517,0.0,0.0,0.0006681077416661252,0.0,7.071454804710785e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9363682679987784e-05,0.0,0.0,0.0002458402208473175,0.00012067456587593528,0.0002952039035273053,0.00010758897689810038,8.239683463430919e-05,5.585440931490792e-05,0.0,0.0,4.463895988905646e-05,0.0,4.72472279093133e-06,0.0,0.0,0.0,0.00016551844797489776,7.285112272665817e-05,4.938364981961386e-05,0.0,7.450683006135494e-06 +101040,50.0,the Greater Atlanta and Macon Area,G1301510070104,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,16560.0,,280.0,,4.088175128053588,Healthcare,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,30661.31346040191,0.0,0.0,0.0018260194702594014,0.00010411701467558644,0.0,0.0019301364849349876,0.0009088055311504297,0.00022047853126315104,0.0007399786487754651,0.0,6.087377374594206e-05,0.0009088055311504297,0.00022047853126315104,0.0006358616340998787,0.0,6.087377374594206e-05,0.0,0.00010411701467558644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.956059747940984e-06,0.0,0.0,0.00021760370545708755,6.95666082794433e-05,0.0002245597652050285,0.00010830084472765052,2.6274060139009613e-05,7.577457414431421e-05,0.0,7.2542264461131995e-06,0.0,6.956059747940985e-06,0.0,0.0,0.0,0.0,0.00010573405470807715,2.565135035767711e-05,8.609206287883302e-05,0.0,7.082297260441255e-06 +101041,35.0,Eastern Counties in South Carolina and Georgia,G1301790010207,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,13177.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004075473765578113,0.0,0.0,0.004075473765578113,0.0024287759274285014,0.0006101300829748707,0.0009593193483022268,0.0,7.724840687251313e-05,0.0024287759274285014,0.0006101300829748707,0.0009593193483022268,0.0,7.724840687251313e-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.0004856682417066098,0.00015084426353923137,0.0004856682417066098,0.0002894336712792495,7.270830869124238e-05,0.00011432068218919893,0.0,9.205579546918855e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002894336712792495,7.270830869124238e-05,0.00011432068218919893,0.0,9.205579546918855e-06 +101042,50.0,the Greater Atlanta and Macon Area,G1300890021308,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,28675.0,,2697.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002550030076882422,0.0007938787357089755,0.0,0.0033439088125913974,0.0011708391698636589,0.0009642060506612261,0.0012088942816728106,0.0,0.0,0.0003769604341546833,0.0009642060506612261,0.0012088942816728106,0.0,0.0,0.0007938787357089755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.304182930630833e-05,0.0,0.0,0.00030388398126414114,0.00014503688816493556,0.0003569258105704495,4.4921916234820204e-05,0.0001149032617654955,0.00014406246050686339,0.0,0.0,5.304182930630833e-05,0.0,0.0,0.0,0.0,0.0,0.00012497431693640008,0.00010291848416837878,0.00012903628524656597,0.0,0.0 +101043,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,28683.0,,2683.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025503062833391013,0.0007898890868902741,0.0,0.0033401646806230775,0.0011670643482890413,0.0009642060506612261,0.0012088942816728106,0.0,0.0,0.0003771752613987672,0.0009642060506612261,0.0012088942816728106,0.0,0.0,0.0007898890868902741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.277527421535473e-05,0.0,0.0,0.00030391366864290016,0.0001447308094856953,0.00035668894285825493,4.494703956222916e-05,0.00011490204141302814,0.00014406093046344745,0.0,0.0,5.277527421535473e-05,0.0,0.0,0.0,0.0,0.0,0.00012462827089145895,0.00010296547320048012,0.0001290951987663159,0.0,0.0 +101044,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,223683.0,,9437.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01769016141093598,0.00274920560590923,0.0,0.02043936701684521,0.015460921453801624,0.003094097827524903,0.0018843173619192475,0.0,0.0,0.012711715847892394,0.003094097827524903,0.0018843173619192475,0.0,0.0,0.00274920560590923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018368611041038428,0.0,0.0,0.0021081009920182253,0.0006804928191969111,0.002291787102428609,0.001514829637033702,0.00036871742140093743,0.00022455031402276825,0.0,0.0,0.00018368611041038425,0.0,0.0,0.0,0.0,0.0,0.0017335732730999907,0.00034692921209007385,0.00021128121156441666,0.0,0.0 +101045,50.0,the Greater Atlanta and Macon Area,G1300630040608,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,21604.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00507158831405806,0.0014962479299000374,0.0,0.006567836243958098,0.0026781091352296393,0.0006590153820085012,0.0022645062298341195,0.0004207995150886184,0.0005454059817972197,0.0026781091352296393,0.0006590153820085012,0.0007682582999340822,0.0004207995150886184,0.0005454059817972197,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99716943603331e-05,0.0,0.0,0.0006043696521659775,0.00026299900847914017,0.0007043413465263105,0.0003191441785672382,7.853336519695021e-05,9.155159542775753e-05,5.014572177729189e-05,6.499479119673978e-05,0.0,9.99716943603331e-05,0.0,0.0,0.0,0.0,0.00028720310988071757,7.067347057753166e-05,0.00024284791945076978,4.5126962071837385e-05,5.8489884545454104e-05 +101046,35.0,Eastern Counties in South Carolina and Georgia,G1300730030603,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,21721.0,,1808.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0010767825794012267,0.0003074621973851356,0.0,0.0013842270464249423,0.0008711281172900343,0.00025246261626013186,0.00010175454418968304,0.0,0.00015889949904651323,0.0006764487488978546,0.00025246261626013186,0.00010175454418968304,0.0,4.611667005355734e-05,0.00019467936839217976,0.0,0.0001127828289929559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0542679049582596e-05,0.0,0.0,0.00012831708429013344,5.765066690564287e-05,0.00014885976333971603,8.061045264917705e-05,3.008524416207884e-05,1.2125796491759988e-05,0.0,5.495590987117569e-06,1.3007243870850408e-05,0.0,7.535435178732192e-06,0.0,0.0,0.0,9.368110940562985e-05,2.714982733914279e-05,1.0942682709413614e-05,0.0,1.7088050608427398e-05 +101047,85.0,Rural Climate Zone 3A,G1301070970600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,24588.0,,13623.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.00511980185092041,0.009371505172667865,0.0,0.014491235303617258,0.0032235258172676547,0.0004734235286740485,0.008546653786017322,0.0003791834867595357,0.001868448684898699,0.0025677901222719225,0.0004734235286740485,0.0014596448501097163,0.0003791834867595357,0.00023968814313417216,0.0006557356949957318,0.0070870089359076046,0.0016287605417645268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006261476600149453,0.0,0.0,0.0006101130748164338,0.0007736753743373282,0.0012362607348313794,0.0003059966718635696,5.6416613998028734e-05,0.0001739419675939829,4.518628059499742e-05,2.856299408898835e-05,4.381231866651854e-05,0.00047351134956054135,0.00010882399178788538,0.0,0.0,0.0,0.0002750019796178785,4.038820067319929e-05,0.0007291229676750704,3.234849522181559e-05,0.00015939909164341582 +101048,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,76159.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006785686779666169,0.0,0.0,0.006785686779666168,0.0028283848060025865,0.0015933736693704308,0.00236395899389945,0.0,0.0,0.0028283848060025865,0.0015933736693704308,0.00236395899389945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008086370671838992,0.0002807399652697277,0.0008086370671838992,0.000337053104373608,0.00018987923444812178,0.0002817083855827332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033705310437360804,0.0001898792344481218,0.00028170838558273326,0.0,0.0 +101049,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,76568.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006161800997138398,0.0,0.0,0.006161800997138398,0.004128774492371918,0.0015165234463275106,0.0005164726848395321,0.0,0.0,0.004128774492371918,0.0015165234463275106,0.0005164726848395321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007342907984083465,0.00020433751650584815,0.0007342907984083465,0.0004920186678959209,0.00018072138531022953,6.154712563470416e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004920186678959209,0.00018072138531022953,6.154712563470416e-05,0.0,0.0 +101050,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,10558.0,,537.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0023509485710398134,0.0004260241368311725,0.0,0.002776972707870986,0.001313967280496377,0.0008613941729948869,0.0005233703626223373,0.0,7.815818468364551e-05,0.0008879431436652045,0.0008613941729948869,0.0005233703626223373,0.0,7.815818468364551e-05,0.0004260241368311725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.846419507184852e-05,0.0,0.0,0.0002801579388586907,0.00012170401002884662,0.0003086221339305393,0.00010581444614201947,0.00010265065728102953,6.236902153378345e-05,0.0,9.313957861792884e-06,2.846419507184852e-05,0.0,0.0,0.0,0.0,0.0,0.00014602930193455081,9.573205637617842e-05,5.816538192495986e-05,0.0,8.686201946758388e-06 +101051,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,16203.0,,,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,65445.43665129765,0.0,0.0,0.004006744187300748,0.0,0.0,0.004006744187300748,0.002978943381942375,0.0004897912906841785,0.00044132494547294445,0.0,9.668456920125038e-05,0.002978943381942375,0.0004897912906841785,0.00044132494547294445,0.0,9.668456920125038e-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.00047748018805034896,0.00016242464986496996,0.00047748018805034896,0.0003549980681844869,5.836799821723947e-05,5.2592306397701767e-05,0.0,1.1521815250920796e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003549980681844869,5.836799821723947e-05,5.2592306397701767e-05,0.0,1.1521815250920796e-05 +101052,50.0,the Greater Atlanta and Macon Area,G1301130140304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,22426.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.005051748063996897,0.0,0.0,0.005051748063996898,0.0023647606523542774,0.00153454704615911,0.0009670111061599823,0.0,0.00018534655224978794,0.0023647606523542774,0.00153454704615911,0.0009670111061599823,0.0,0.00018534655224978794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006020060987259323,0.00015994233555808695,0.0006020060987259323,0.0002818035097375876,0.00018286871571317857,0.00011523666185827765,0.0,2.208735539038661e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00028180350973758755,0.00018286871571317854,0.00011523666185827764,0.0,2.2087355390386608e-05 +101053,35.0,Eastern Counties in South Carolina and Georgia,G1302450010511,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,29061.0,,13934.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005938198440179548,0.009584943806410322,0.0,0.01552314224658987,0.004592516624013638,0.00048217336513795315,0.008254753503983785,0.00038155024580305085,0.0018120767876804288,0.0033739225964873904,0.00048217336513795315,0.0014637328884576058,0.00038155024580305085,0.00023681934429354776,0.0012185940275262473,0.006791020615526179,0.001575257443386881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006404082171845644,0.0,0.0,0.0007076444653256363,0.0008422876225552893,0.0013480526825102009,0.0004020643088797168,5.745973574385852e-05,0.00017443042492881278,4.546865895542575e-05,2.8221336817822527e-05,8.141911360168008e-05,0.0004537350967403851,0.00010524921494598914,0.0,0.0,0.0,0.00039882095107608175,4.187264974989065e-05,0.0007168550302339973,3.3134388914088696e-05,0.00015736343426754978 +101054,50.0,the Greater Atlanta and Macon Area,G1301210001300,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,408146.0,,32199.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.019933819815891287,0.005475738438800587,0.0,0.02540955825469187,0.014531006353611374,0.0030668028844651135,0.004715371889301623,0.0,0.003096394857675181,0.011921292186555223,0.0030668028844651135,0.0045068982997246414,0.0,0.0004388441755077269,0.002609714167056152,0.00020847358957698083,0.0026575506821674543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003658572669472553,0.0,0.0,0.0023754748104081818,0.0010542663816342167,0.002741332077355437,0.0014206373669587427,0.00036546497699985837,0.0005370783664620306,0.0,5.229621288047855e-05,0.00017436605187479216,1.3929003104469804e-05,0.00017756221196799335,0.0,0.0,0.0,0.0015676901358981762,0.00033086467060315866,0.00050872195758916,0.0,0.0003340572261202551 +101055,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock 90.1-2004,gen3_t5_cfl,50001_100000,NaturalGas,129735.0,,13201.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.035219059875614134,0.011676364111633794,0.0,0.046895423987247914,0.035735015404880034,0.006598605522184494,0.001106699250530866,0.0006460740729288598,0.002809121953976438,0.02596607294960658,0.006598605522184494,0.001106699250530866,0.0006460740729288598,0.0009017002976160993,0.009768942455273455,0.0,0.001907421656360339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007801481432942659,0.0,0.0,0.004196983362301396,0.0018999802322380637,0.004977131505595661,0.0030943238274585777,0.0007863423296592331,0.0001318830871111796,7.699132641454247e-05,0.00010745378099934289,0.0006527050925755799,0.0,0.00012744305071868612,0.0,0.0,0.0,0.003792648746985183,0.0007003269113505101,0.00011745682709967818,6.85694967636318e-05,0.00029813931064997883 +101056,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,11114.0,,1224.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026687918554199716,0.0009711464598469475,0.0,0.0036399383152669195,0.001893413039113965,0.0006228669723307243,0.0009540260955829112,0.0,0.0001696322082393195,0.0010918987875063366,0.0006228669723307243,0.0009540260955829112,0.0,0.0,0.0008015142516076282,0.0,0.0001696322082393195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488850475427369e-05,0.0,0.0,0.0003180351520688777,0.00017086007452796691,0.00038292365682315144,0.00013011962556134016,7.422594304669389e-05,0.00011368958346084371,0.0,0.0,5.3554292247799903e-05,0.0,1.1334212506473798e-05,0.0,0.0,0.0,0.00019918816804481723,6.55259727229074e-05,0.00010036410773585668,0.0,1.7845408319570178e-05 +101057,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13638.0,,687.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030571842736997596,0.000545122323015775,0.0,0.0036023065967155346,0.0022897453364727257,0.00048433262381738433,0.000754123098355005,0.0,7.402283099668014e-05,0.0017446230134569504,0.00048433262381738433,0.000754123098355005,0.0,7.402283099668014e-05,0.000545122323015775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6421044924912805e-05,0.0,0.0,0.00036431806025437314,0.00014220825215435372,0.00040073910517928596,0.00020790296404625435,5.771687482008466e-05,8.986722414780257e-05,0.0,8.821141216525914e-06,3.6421044924912805e-05,0.0,0.0,0.0,0.0,0.0,0.000254723042747986,5.3879651014347354e-05,8.389253038743496e-05,0.0,8.23468026944004e-06 +101058,50.0,the Greater Atlanta and Macon Area,G1300590030200,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,20559.0,,2941.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004781298102842046,0.0022807592472308936,0.0,0.0070620573500729394,0.002744414977345832,0.00038716142933211084,0.0030586399803501302,0.00031632738336408053,0.0005555135796807856,0.002744414977345832,0.00038716142933211084,0.0013333943128000225,0.00031632738336408053,0.0,0.0,0.0017252456675501077,0.0005555135796807856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015238505443661502,0.0,0.0,0.0005697790663211259,0.00034035621621056653,0.0007221641207577409,0.00032704720972330476,4.6137361230264677e-05,0.00015889830549019725,3.769618987735911e-05,0.0,0.0,0.00011526935834431033,3.711569609230465e-05,0.0,0.0,0.0,0.0002806431512608515,3.959102558152495e-05,0.0003127757171359154,3.2347554735782294e-05,5.6806672043666754e-05 +101059,35.0,Eastern Counties in South Carolina and Georgia,G1301030030305,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,5463.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013117341895054156,0.0,0.0,0.0013117341895054156,0.0008981988208088786,0.00023356477623980417,0.00013845164143960062,0.0,4.143624394339302e-05,0.0008981988208088786,0.00023356477623980417,0.00013845164143960062,0.0,4.143624394339302e-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.00015631651186250872,4.262984714795011e-05,0.00015631651186250872,0.0001070364009348578,2.7833406651937244e-05,1.6498981138577528e-05,0.0,4.937867114950623e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001070364009348578,2.7833406651937244e-05,1.6498981138577528e-05,0.0,4.937867114950623e-06 +101060,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,12613.0,,101.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003028650333259699,8.047398274834611e-05,0.0,0.0031091243160080453,0.0010565001599459132,0.0004136180757702765,0.0015584493904697697,0.0,8.047398274834611e-05,0.0010565001599459132,0.0004136180757702765,0.0015584493904697697,0.0,0.0,0.0,0.0,8.047398274834611e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.379343960051219e-06,0.0,0.0,0.0003609142671359081,0.00012563954010824877,0.0003662936110959593,0.00012589963812212487,4.928950135030112e-05,0.00018571527173439787,0.0,0.0,0.0,0.0,5.379343960051219e-06,0.0,0.0,0.0,0.00012446889200201595,4.872936659637402e-05,0.0001836047700010949,0.0,9.480838571939993e-06 +101061,50.0,the Greater Atlanta and Macon Area,G1300210012500,ComStock 90.1-2007,gen4_led,5001_10000,DistrictHeating,24246.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,43199.70345818221,0.0,0.0030758744338742513,0.003854437918751707,0.0,0.0,0.00693031235262596,0.006005109675519288,0.0002293489376600652,0.000668665981542604,0.0,2.7187757904002015e-05,0.0029564229995490384,0.0002293489376600652,0.000668665981542604,0.0,0.0,0.0,0.0,0.0,0.0030486866759702495,0.0,2.7187757904002015e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045932636647880333,0.00015525853125251713,0.00045932636647880333,0.0003523115595015246,2.7331096365222696e-05,7.968371061205611e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039800590034269276,1.5200759912539112e-05,4.431775944031876e-05,0.0,1.8019467832526727e-06 +101062,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,16958.0,,1204.0,,8.72605822017302,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0038856610313464024,0.0009550185804677828,0.0,0.004840679611814185,0.003065206859852472,0.0007434538858426344,0.0009587403987860516,0.0,7.327846733302637e-05,0.0021834667467177157,0.0007434538858426344,0.0009587403987860516,0.0,0.0,0.0008817401131347563,0.0,7.327846733302637e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.380829030438928e-05,0.0,0.0,0.0004630503032328392,0.00020292086375437652,0.0005268585935372284,0.0002602015283911997,8.859664919350356e-05,0.00011425212564813587,0.0,0.0,5.891228742834451e-05,0.0,4.896002876044765e-06,0.0,0.0,0.0,0.00033361649697722837,8.091737112674526e-05,0.00010434911181457682,0.0,7.975613618677972e-06 +101063,50.0,the Greater Atlanta and Macon Area,G1301210009900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,9439.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0020313684381111294,0.0,0.0,0.0020313684381111294,0.0009157327204416117,0.00044512947086495255,0.0006168293559477548,0.0,5.367689085681052e-05,0.0009157327204416117,0.00044512947086495255,0.0006168293559477548,0.0,5.367689085681052e-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.00024207113382715444,7.473416888608222e-05,0.00024207113382715444,0.00010912469336485706,5.304453573786676e-05,7.350541574377745e-05,0.0,6.3964889806532e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010912469336485706,5.304453573786676e-05,7.350541574377745e-05,0.0,6.3964889806532e-06 +101064,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock 90.1-2004,gen5_led,1001_5000,NaturalGas,7236.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0006380582033888525,0.0,0.0,0.0006380582033888526,0.0004327022975902125,0.00014111574298779494,6.420978921140735e-05,0.0,0.0,0.0004327022975902125,0.00014111574298779494,6.420978921140735e-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,7.603632187741955e-05,2.411004752521408e-05,7.603632187741955e-05,5.1564404315976535e-05,1.6816525512566822e-05,7.651772478167512e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.156440431597653e-05,1.681652551256682e-05,7.65177247816751e-06,0.0,0.0 +101065,50.0,the Greater Atlanta and Macon Area,G1300890021417,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,18713.0,,7409.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0036533436035642115,0.0050965645803113515,0.0,0.00874983646390455,0.002348829050761262,0.0005001750778628715,0.003700822224376546,0.00036620217200571006,0.0018337362189271434,0.0015168773869801738,0.0005001750778628715,0.0010464660970887808,0.00036620217200571006,0.00022347942968464407,0.0008319516637810882,0.0026543561272877646,0.001610256789242499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003405212228037014,0.0,0.0,0.00043535868826130066,0.0004500052257509112,0.000775879911065002,0.00018076201450217927,5.960445811528123e-05,0.0001247044233381228,4.3639283501093485e-05,2.6631415469919176e-05,5.558591349135878e-05,0.00017734781537199896,0.00010758749394034372,0.0,0.0,0.0,0.0002082792384211378,4.435234835874855e-05,0.0003281654040234849,3.247248217949098e-05,0.00016260407841073743 +101066,50.0,the Greater Atlanta and Macon Area,G1301210002500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,120301.0,,7479.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009642888855099698,0.0021787894084682514,0.0,0.01182167826356795,0.007295313354555858,0.0036551589563390548,0.0008712059526730355,0.0,0.0,0.005116523946087608,0.0036551589563390548,0.0008712059526730355,0.0,0.0,0.0021787894084682514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014557394639725437,0.0,0.0,0.0011491251582650907,0.0003612794428899319,0.0012946991046623448,0.0006097266574015967,0.00043557850529054486,0.00010381999557294912,0.0,0.0,0.00014557394639725437,0.0,0.0,0.0,0.0,0.0,0.0007989758693977525,0.00040030957725814813,9.541365800644392e-05,0.0,0.0 +101067,50.0,the Greater Atlanta and Macon Area,G1301530021103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,72986.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006502974126451731,0.0,0.0,0.00650297412645173,0.0013885512369395624,0.0020239488457272008,0.003090504733391266,0.0,0.0,0.0013885512369395624,0.0020239488457272008,0.003090504733391266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007749479499180899,0.0002578296105277326,0.0007749479499180899,0.00016547120033055985,0.00024119041199248737,0.0003682899948212629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016547120033055988,0.00024119041199248742,0.00036828999482126296,0.0,0.0 +101068,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,317769.0,,26849.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.015857822489758186,0.004565940403253419,0.0,0.020423762893011607,0.011421916557159436,0.003712223500877876,0.0025990582198427,0.0,0.0026905646151315927,0.010883995122036453,0.003712223500877876,0.0008333447171039017,0.0,0.00042825914973995547,0.0005379214351229819,0.0017657135027387986,0.002262305465391637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003050697217795325,0.0,0.0,0.001889745461117574,0.0008919588259954829,0.0021948151828971064,0.0012970242537383733,0.0004423783603309164,9.930804798139855e-05,0.0,5.103479906688584e-05,3.594079818371797e-05,0.0001179747608267221,0.0001511541627690924,0.0,0.0,0.0,0.0012274425632905887,0.00039892964605567805,0.00027930467426725636,0.0,0.0002891382992835831 +101069,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,20177.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016863118671845434,0.0,0.0,0.0016863118671845434,0.0011191456448834036,0.00045806425312073525,0.00010910196918040455,0.0,0.0,0.0011191456448834036,0.00045806425312073525,0.00010910196918040455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020095288922581585,5.757402420990999e-05,0.00020095288922581585,0.0001333653372073418,5.4586187114582924e-05,1.300136490389111e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001333653372073418,5.4586187114582924e-05,1.300136490389111e-05,0.0,0.0 +101070,50.0,the Greater Atlanta and Macon Area,G1300850970100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,28716.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028643837141897914,0.0,0.0,0.002864383714189792,0.0006577703317786638,0.0009438895312921469,0.0012626931615126835,0.0,0.0,0.0006577703317786638,0.0009438895312921469,0.0012626931615126835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000341341546318666,0.00011754431873999955,0.000341341546318666,7.838486898930689e-05,0.00011248098869197606,0.0001504720314326526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.838486898930688e-05,0.00011248098869197605,0.00015047203143265256,0.0,0.0 +101071,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12384.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027175890289261634,0.0,0.0,0.002717589028926163,0.0018580971186272805,0.0003973247822436329,0.00038971573145961657,0.0,7.245139659563332e-05,0.0018580971186272805,0.0003973247822436329,0.00038971573145961657,0.0,7.245139659563332e-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.0003238514474335494,9.83562496681848e-05,0.0003238514474335494,0.00022142694680266968,4.7348662531826996e-05,4.644190213363214e-05,0.0,8.633935965420577e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00022142694680266973,4.7348662531827e-05,4.6441902133632145e-05,0.0,8.633935965420578e-06 +101072,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,5056.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012141398424930327,0.0,0.0,0.0012141398424930327,0.0006512354986233066,0.0002670611411042237,0.00025300093856854143,0.0,4.2842264196961245e-05,0.0006512354986233066,0.0002670611411042237,0.00025300093856854143,0.0,4.2842264196961245e-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.00014468456212367068,4.698606456986239e-05,0.00014468456212367068,7.76053298475329e-05,3.18246901292461e-05,3.014918770683302e-05,0.0,5.10535444005868e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.76053298475329e-05,3.18246901292461e-05,3.014918770683302e-05,0.0,5.10535444005868e-06 +101073,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,55105.0,,2077.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.005013488130211511,0.0006244414304360802,0.0,0.005637929560647591,0.001470662044009576,0.0014004648742727088,0.0019373792086931324,0.0,0.000829423433672174,0.001470662044009576,0.0014004648742727088,0.0013129377782570523,0.0,0.000829423433672174,0.0,0.0006244414304360802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.172220089788939e-05,0.0,0.0,0.0005974479478145183,0.00028125614834914505,0.0006391701487124077,0.00017525602879709168,0.00016689076415251193,0.00015646032479880146,0.0,9.884083006611321e-05,0.0,4.172220089788939e-05,0.0,0.0,0.0,0.0,0.00016672845363951698,0.00015877022448158656,0.00021964001919713225,0.0,9.4031451394172e-05 +101074,85.0,Rural Climate Zone 3A,G1300310110401,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8700.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0006629038077289335,0.0,0.0,0.0006629038077289335,0.0004607675034706952,0.0001479801764607269,5.415612779751151e-05,0.0,0.0,0.0004607675034706952,0.0001479801764607269,5.415612779751151e-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,7.899736386134569e-05,2.4387728289272238e-05,7.899736386134569e-05,5.490904970339585e-05,1.7634600537570506e-05,6.453713620379354e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.490904970339585e-05,1.7634600537570506e-05,6.453713620379354e-06,0.0,0.0 +101075,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,15806.0,,2333.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0021206824847775597,0.0006867720097299927,0.0,0.002807423804901255,0.0016874680022791874,0.000518132623124116,0.0006018538691042492,0.0,0.0,0.0010006959925491948,0.000518132623124116,0.0006018538691042492,0.0,0.0,0.0006867720097299927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5885343456738336e-05,0.0,0.0,0.00025271609575142886,0.00013350197556969941,0.00029860143920816713,0.00011925028196649604,6.174448770019788e-05,7.172132608473499e-05,0.0,0.0,4.5885343456738336e-05,0.0,0.0,0.0,0.0,0.0,0.00017948140683947034,5.510929511086256e-05,6.401400144637362e-05,0.0,0.0 +101076,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6830.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012649219857689678,0.0,0.0,0.0012649219857689678,0.0007740555031261781,0.00019651200720459443,0.0002536625951584558,0.0,4.069188027973925e-05,0.0007740555031261781,0.00019651200720459443,0.0002536625951584558,0.0,4.069188027973925e-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.00015073770441329507,4.012210661301419e-05,0.00015073770441329507,9.22423287304844e-05,2.341786227840912e-05,3.0228360104326918e-05,0.0,4.849153300074616e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.22423287304844e-05,2.341786227840912e-05,3.0228360104326918e-05,0.0,4.849153300074616e-06 +101077,35.0,Eastern Counties in South Carolina and Georgia,G1300730030105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,36161.0,,1437.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0031599246228366704,0.0004228720851760466,0.0,0.0035827660184064186,0.0015837064433866543,0.0008440255523994219,0.0011550647122266396,0.0,0.0,0.0011608343582106076,0.0008440255523994219,0.0011550647122266396,0.0,0.0,0.0004228720851760466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.825316416219798e-05,0.0,0.0,0.0003765604881436176,0.00013965981806079503,0.00040481365230581555,0.00013833379107292188,0.00010058046059715791,0.00013764623647353764,0.0,0.0,2.825316416219798e-05,0.0,0.0,0.0,0.0,0.0,0.00017894162952141734,9.536572155449227e-05,0.00013050976882213753,0.0,0.0 +101078,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,24939.0,,1403.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005550471718644921,0.0011127409700886417,0.0,0.006663212688733562,0.003964067337251265,0.0012469745507675382,0.001320997381764218,0.0,0.00013117341895054158,0.0028513263671626236,0.0012469745507675382,0.001320997381764218,0.0,0.00013117341895054158,0.0011127409700886417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.43488085333598e-05,0.0,0.0,0.000661435941054222,0.00023698077654565764,0.0007357847495875817,0.0003397854875256192,0.00014859886281142165,0.0001574199798914921,0.0,1.563161082568911e-05,7.43488085333598e-05,0.0,0.0,0.0,0.0,0.0,0.00043773183137608865,0.00013769706903247073,0.0001458710344622022,0.0,1.4484814716820228e-05 +101079,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,14524.0,,2465.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0012940579391489356,0.0007255329824839915,0.0,0.0020195909216329275,0.0009690243188499654,0.000411056586751431,0.0006394793264252329,0.0,0.0,0.0002434913363659739,0.000411056586751431,0.0006394793264252329,0.0,0.0,0.0007255329824839915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8476158036382274e-05,0.0,0.0,0.0001542099693930336,9.636374956956232e-05,0.00020268612742941586,2.9016314024672217e-05,4.898468742708086e-05,7.620531073003465e-05,0.0,0.0,4.8476158036382274e-05,0.0,0.0,0.0,0.0,0.0,9.72512722595439e-05,4.1253635491506904e-05,6.417813966974239e-05,0.0,0.0 +101080,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,109596.0,,10000.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009894022174316399,0.002943593588044162,0.0,0.012837615762360562,0.004405523673641532,0.0032735989245633603,0.005158462474549373,0.0,0.0,0.0014619300855973699,0.0032735989245633603,0.005158462474549373,0.0,0.0,0.002943593588044162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019667382029267327,0.0,0.0,0.0011790506296920358,0.0005293045066097966,0.001375724449984709,0.00017421525418285253,0.0003901081688885824,0.000614723549402233,0.0,0.0,0.00019667382029267327,0.0,0.0,0.0,0.0,0.0,0.00047211154664599984,0.0003508104747276962,0.0005527991398039226,0.0,0.0 +101081,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,29139.0,,3031.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007310990405389361,0.002084756117481782,0.0,0.009395746522871142,0.0037306577323190405,0.00033134626609212305,0.0034036146644878537,0.0003862837638900812,0.0015439158160530592,0.0037306577323190405,0.00033134626609212305,0.0013188585470060715,0.0003862837638900812,0.0015439158160530592,0.0,0.002084756117481782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013929147878084157,0.0,0.0,0.0008712401732885928,0.00040203970355692526,0.0010105316520694345,0.0004445770968034759,3.9486056236077794e-05,0.0001571664692911763,4.603287854708118e-05,0.00018398621917620057,0.0,0.00013929147878084157,0.0,0.0,0.0,0.0,0.00040123982829561836,3.563696496771741e-05,0.00036606568105475437,4.154560461388009e-05,0.00016605128676624518 +101082,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6817.0,,560.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0007668313064495184,0.0002081952809274008,0.0,0.0009750265873769193,0.00048722268051016904,0.00015758983948106073,0.00028960571927254676,0.0,4.064709653691485e-05,0.00032006198035740383,0.00015758983948106073,0.000248532390074139,0.0,4.064709653691485e-05,0.00016716070015276513,4.1073329198407755e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3910951200511955e-05,0.0,0.0,9.13809029829883e-05,3.730477016130883e-05,0.00010529185418350025,3.814079123999411e-05,1.8779491280031e-05,2.9616832326068062e-05,0.0,4.843788136895135e-06,1.1169150098456836e-05,2.744390149365843e-06,0.0,0.0,0.0,0.0,5.261454415226055e-05,1.7017921987215178e-05,3.127414529934749e-05,0.0,4.38942713660898e-06 +101083,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,194327.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01606256171146461,0.0,0.0,0.01606256171146461,0.008978770103393255,0.006260910052103784,0.00082291192956701,0.0,0.0,0.008978770103393255,0.006260910052103784,0.00082291192956701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001914145911239172,0.0004526966413315971,0.001914145911239172,0.001069983505127938,0.0007461011258445116,9.806489983265583e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001069983505127938,0.0007461011258445116,9.806489983265583e-05,0.0,0.0 +101084,50.0,the Greater Atlanta and Macon Area,G1300590140600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,272550.0,,26346.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012693573538928462,0.004480462330847343,0.0,0.017174035869775808,0.006495340602622144,0.004597819593086673,0.004266829206097127,0.0,0.0018140641983312826,0.0054180793034625755,0.004597819593086673,0.002345691355150146,0.0,0.00033200101759048875,0.001077261299159568,0.0019211378509469813,0.0014820631807407937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002993586039434905,0.0,0.0,0.0015126691761532236,0.0006430475363137454,0.0018120277800967143,0.0006456622739976985,0.0005479134740619841,0.00027953160698387843,0.0,3.9563934003334324e-05,7.197637537949581e-05,0.0001283593304831382,9.902289808085646e-05,0.0,0.0,0.0,0.0006853215925707218,0.0004851146750664602,0.00045019197077506354,0.0,0.0001914014124100039 +101085,81.0,the Columbus-Albany Area,G1302150002400,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,19821.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001744335842748831,0.0,0.0,0.0017443358427488306,0.0008029628591730957,0.0004337362058054334,0.0005076367777703017,0.0,0.0,0.0008029628591730957,0.0004337362058054334,0.0005076367777703017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020787002981558235,7.116032055149177e-05,0.00020787002981558235,9.56879457421953e-05,5.168772883253501e-05,6.049435524085202e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.568794574219531e-05,5.168772883253502e-05,6.0494355240852035e-05,0.0,0.0 +101086,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,15765.0,,1094.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.0037854200579743617,0.0008681761530415099,0.0,0.004653596211015872,0.0025760772257582085,0.001014236845265127,0.0009093642757636851,0.0,0.0001539178642288511,0.0018618189369455495,0.001014236845265127,0.0009093642757636851,0.0,0.0,0.0007142582888126589,0.0,0.0001539178642288511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.800666010533947e-05,0.0,0.0,0.00045110441047459216,0.00015918205738737744,0.0005091110705799317,0.0002218709472392568,0.00012086550690751214,0.00010836795632782321,0.0,0.0,4.7722731891941666e-05,0.0,1.0283928213397804e-05,0.0,0.0,0.0,0.00028182708057002684,0.00011095917709667831,9.948594570480127e-05,0.0,1.683886720842521e-05 +101087,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,115896.0,,24297.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.021870431401442465,0.016713622045477997,0.0,0.038584053446920466,0.013883193389346907,0.0026331987358381597,0.011689422915921397,0.0003817654057160977,0.009996473000097898,0.012145705371522715,0.0026331987358381597,0.005577949025768134,0.0003817654057160977,0.001131812862597358,0.0017374880178241932,0.0061114738901532645,0.00886466013750054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011167060218783996,0.0,0.0,0.002606259487820827,0.0017114279454080257,0.003722965509699227,0.001447381593886605,0.0003137934987484232,0.000664714028916243,4.5494288270130926e-05,0.00013487607799942436,0.00011608874049959711,0.0004083327765290254,0.0005922845048497771,0.0,0.0,0.0,0.001339585801272213,0.0002540766767077841,0.0011279094459096175,3.68364469594317e-05,0.00096455713885018 +101088,50.0,the Greater Atlanta and Macon Area,G1301210001900,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,42533.0,,2742.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0037035441002433935,0.000798795291613435,0.0,0.004502339391856828,0.002997752770108354,0.0013450037303025261,0.00015955251784651034,0.0,0.0,0.0021989574784949187,0.0013450037303025261,0.00015955251784651034,0.0,0.0,0.000798795291613435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.337152507288646e-05,0.0,0.0,0.0004413440520087217,0.00018338196063765169,0.0004947155770816081,0.00026204542931999885,0.00016028144399834508,1.9013559128388665e-05,0.0,0.0,5.337152507288646e-05,0.0,0.0,0.0,0.0,0.0,0.00032939209209648654,0.00014778856916406558,1.7531578379902368e-05,0.0,0.0 +101089,50.0,the Greater Atlanta and Macon Area,G1301170130506,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,28182.0,,4250.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024615212523198472,0.001251031111119556,0.0,0.0037125523634394036,0.0019143562616381038,0.000777643933977491,0.0010205214782175107,0.0,0.0,0.0006633251505185479,0.000777643933977491,0.0010205214782175107,0.0,0.0,0.001251031111119556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.358629140697839e-05,0.0,0.0,0.0002933335794787162,0.00017502996537539943,0.0003769198708856946,7.904686606970678e-05,9.266996110577869e-05,0.00012161309509650965,0.0,0.0,8.358629140697839e-05,0.0,0.0,0.0,0.0,0.0,0.0001943565623670785,7.895092715090905e-05,0.00010360926558069291,0.0,0.0 +101090,50.0,the Greater Atlanta and Macon Area,G1301210006700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,42691.0,,6353.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007274963042932566,0.0018508760289382825,0.0,0.009125869445470286,0.006554774626664031,0.001970062033132021,0.0006010024120747954,0.0,0.0,0.004703898597725749,0.001970062033132021,0.0006010024120747954,0.0,0.0,0.0018508760289382825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012366545366305413,0.0,0.0,0.0008669447650887616,0.00038738989801776093,0.0009906102187518158,0.0005605554613460742,0.00023476888562109485,7.16204181215924e-05,0.0,0.0,0.00012366545366305413,0.0,0.0,0.0,0.0,0.0,0.0007115186958993242,0.0002138496055917429,6.523862021621342e-05,0.0,0.0 +101091,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,74765.0,,20145.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.003848552249836661,0.0034259136246668626,0.0,0.007274465874503525,0.0032932373301606073,0.0010493005192001449,0.0014916021151847821,0.0,0.0014403436403194094,0.0018742765057137816,0.0010493005192001449,0.0007119626628222203,0.0,0.0002130125621005144,0.0014189608244468256,0.0007796394523625617,0.001227331078218895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000228900055975758,0.0,0.0,0.0004586238869083839,0.00035129499289668717,0.0006875239428841419,0.00022335359386844772,0.00012504293859359194,8.48430948991346e-05,0.0,2.538425954720965e-05,9.480688882658852e-05,5.209107229142509e-05,8.200327949961403e-05,0.0,0.0,0.0,0.00031125027639775587,9.917143645685147e-05,0.00014097422204433085,0.0,0.000136129683716206 +101092,50.0,the Greater Atlanta and Macon Area,G1300670031406,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,3940.0,,342.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,4088.1751280535877,0.0,0.0,0.00042375276237149737,0.00012697858470111527,0.0,0.0005507313470726127,0.0003400174186000264,7.125835131686025e-05,0.00010783686335770639,0.0,3.161871379801955e-05,0.00026031191090085214,7.125835131686025e-05,9.218250015378494e-05,0.0,0.0,7.970550769917428e-05,1.5654363203921443e-05,3.161871379801955e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.484824571575347e-06,0.0,0.0,5.049816475376311e-05,2.447625854700983e-05,5.898298932533846e-05,3.102109279588337e-05,8.491781728435475e-06,1.098529022944426e-05,0.0,0.0,5.3259945510315805e-06,1.0460387936882636e-06,2.1127912268555033e-06,0.0,0.0,0.0,3.641565688664216e-05,7.631725699662101e-06,1.1549261893507136e-05,0.0,3.386344845527066e-06 +101093,50.0,the Greater Atlanta and Macon Area,G1302070050200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,16578.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,5611.956475588368,0.0,0.0,0.0008533622951471414,0.0,0.0,0.0008533622951471414,0.0005366803098235784,0.00013331458751737702,4.978685486750827e-05,0.0,0.0001335805429386778,0.0005366803098235784,0.00013331458751737702,4.978685486750827e-05,0.0,0.0001335805429386778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001016933404303083,3.2890928249028544e-05,0.0001016933404303083,6.395503265084151e-05,1.588681127561787e-05,5.932991895456175e-06,0.0,1.5918504608392742e-05,0.0,0.0,0.0,0.0,0.0,0.0,6.395503265084151e-05,1.588681127561787e-05,5.932991895456175e-06,0.0,1.5918504608392742e-05 +101094,50.0,the Greater Atlanta and Macon Area,G1301350050727,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5349.0,,232.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012845235622451834,0.0001841059461436983,0.0,0.0014686295083888821,0.0006735664085329197,0.00017434651144246005,0.0005817615566822883,0.0,3.90377388049531e-05,0.0004894604623892214,0.00017434651144246005,0.0005817615566822883,0.0,3.90377388049531e-05,0.0001841059461436983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2301735200018803e-05,0.0,0.0,0.0001530733024404402,5.853713894734298e-05,0.000165375037640459,5.8327719003446346e-05,2.0776416299301267e-05,6.932699822072348e-05,0.0,4.652024901930833e-06,1.2301735200018804e-05,0.0,0.0,0.0,0.0,0.0,7.584695086691998e-05,1.9632290327537735e-05,6.550926478363397e-05,0.0,4.395844893072964e-06 +101095,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,33639.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002920821900171267,0.0,0.0,0.002920821900171267,0.0007504529427977262,0.0008673189635793785,0.0013030806834004602,0.0,0.0,0.0007504529427977262,0.0008673189635793785,0.0013030806834004602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034806970232619227,0.00011100384431893137,0.00034806970232619227,8.943028412451408e-05,0.00010335702202768139,0.000155286053405589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.943028412451408e-05,0.00010335702202768139,0.000155286053405589,0.0,0.0 +101096,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030301,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,37334.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008964619722603533,0.0,0.0,0.008964619722603533,0.005024206608441708,0.0014933589234369347,0.0022727903863561678,0.0,0.00017426380436872077,0.005024206608441708,0.0014933589234369347,0.0022727903863561678,0.0,0.00017426380436872077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010682961525500662,0.0003576860192762444,0.0010682961525500662,0.0005987248489617019,0.00017796065440025822,0.00027084397335617506,0.0,2.0766675831930892e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005987248489617019,0.00017796065440025822,0.00027084397335617506,0.0,2.0766675831930892e-05 +101097,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,292311.0,,1706.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013690977290252112,0.00029017509500058416,0.0,0.013981152385252696,0.007000744554900748,0.0029090026678266433,0.0023159929997715574,0.0,0.001755412162753748,0.006710569459900164,0.0029090026678266433,0.0023159929997715574,0.0,0.001755412162753748,0.00029017509500058416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9387796910394017e-05,0.0,0.0,0.0016315274564996925,0.00037953600055233306,0.0016509152534100863,0.0007996856681933639,0.0003466602582833315,0.00027599243560784555,0.0,0.0002091890944151517,1.9387796910394017e-05,0.0,0.0,0.0,0.0,0.0,0.0008266583220353303,0.0003434993585787198,0.00027347589560263136,0.0,0.00020728167719340484 +101098,35.0,Eastern Counties in South Carolina and Georgia,G1302450010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,34269.0,,1232.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029780273263101844,0.00036275114643884686,0.0,0.0033407784727490313,0.0015138568994530833,0.000779485310355353,0.001047436262940596,0.0,0.0,0.0011511057530142362,0.000779485310355353,0.001047436262940596,0.0,0.0,0.00036275114643884686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.423712739852324e-05,0.0,0.0,0.00035488651480553626,0.0001350781111252804,0.0003791236422040595,0.00013717533927600872,9.288995527011157e-05,0.00012482122025941604,0.0,0.0,2.423712739852324e-05,0.0,0.0,0.0,0.0,0.0,0.00017179796450978672,8.845881650551557e-05,0.00011886686118875729,0.0,0.0 +101099,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,9810.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030370037477073686,0.0,0.0,0.0030370037477073686,0.0016069157356810037,0.0004286707631908304,0.000937815509130007,0.0,6.35190326317881e-05,0.0016069157356810037,0.0004286707631908304,0.000937815509130007,0.0,6.35190326317881e-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.00036191287934697196,0.00012330145962617214,0.00036191287934697196,0.0001914925199573071,5.108372695139858e-05,0.0001117573567242733,0.0,7.569419698760197e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001914925199573071,5.108372695139858e-05,0.0001117573567242733,0.0,7.569419698760197e-06 +101100,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,118177.0,,6626.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010421791333817996,0.0019503244802190117,0.0,0.012372115814037007,0.0044031605739566085,0.0031872076828353274,0.004781747557245071,0.0,0.0,0.002452836093737597,0.0031872076828353274,0.004781747557245071,0.0,0.0,0.0019503244802190117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013030896750621383,0.0,0.0,0.001241943535336065,0.0004892019104236282,0.001372252502842279,0.00029229945527419973,0.00037981301397066545,0.0005698310660911999,0.0,0.0,0.00013030896750621383,0.0,0.0,0.0,0.0,0.0,0.0004883762978659689,0.00035350895397266735,0.0005303672510036426,0.0,0.0 +101101,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,1799.0,,482.0,,8.72605822017302,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,8726.05822017302,0.0,0.0,0.0004319790461404027,0.00038268563019177535,0.0,0.000814664676332178,0.0004945883009610584,0.00010652671097622798,0.0002037902296936535,0.0,9.759434701238273e-06,0.00012166210547052121,0.00010652671097622798,0.0002037902296936535,0.0,0.0,0.0003729261954905371,0.0,9.759434701238273e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5568095797097163e-05,0.0,0.0,5.148030601265725e-05,4.344222812583699e-05,7.704840180975443e-05,1.4498857006436685e-05,1.2695124285717509e-05,2.428632472050306e-05,0.0,0.0,2.491604580702639e-05,0.0,6.520499900707727e-07,0.0,0.0,0.0,4.677659317993214e-05,1.0074958531062308e-05,1.9273833711597456e-05,0.0,9.230163871625403e-07 +101102,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,52253.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.004607766155505264,0.0,0.0,0.004607766155505264,0.0036610210610305404,0.0006840742065370466,0.00026264051433824004,0.0,0.0,0.0036610210610305404,0.0006840742065370466,0.00026264051433824004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005490968433898453,0.0001647213187233555,0.0005490968433898453,0.00043627541857648323,8.151954217666162e-05,3.12982630850543e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043627541857648323,8.151954217666162e-05,3.12982630850543e-05,0.0,0.0 +101103,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14303.0,,159.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.00332705745531112,0.0001257974591574866,0.0,0.0034528549144686063,0.0010557557962822591,0.000820784999788887,0.0014987348832299898,0.0,7.766194224120967e-05,0.0009299583371247725,0.000820784999788887,0.0014987348832299898,0.0,7.766194224120967e-05,0.0001257974591574866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.404930269734415e-06,0.0,0.0,0.00039647860961305727,0.0001285749484602884,0.00040488353988279166,0.00011082122670070387,9.78112641211122e-05,0.00017860116053392523,0.0,9.254814289573192e-06,8.404930269734415e-06,0.0,0.0,0.0,0.0,0.0,0.00012379846667154917,9.624567044641239e-05,0.0001757424218217895,0.0,9.106679216967074e-06 +101104,50.0,the Greater Atlanta and Macon Area,G1300970080303,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,47452.0,,4556.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004543131135901729,0.00132738704262863,0.0,0.005870548552129797,0.004028875723821153,0.00146519206327771,0.00037645039143149606,0.0,0.0,0.0027014886811925227,0.00146519206327771,0.00037645039143149606,0.0,0.0,0.00132738704262863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.86889265145489e-05,0.0,0.0,0.000541397182492993,0.0002179486733286223,0.0006300861090075418,0.0003219317947871756,0.0001746044371471134,4.486095055870403e-05,0.0,0.0,8.86889265145489e-05,0.0,0.0,0.0,0.0,0.0,0.00043241932265025696,0.00015725909732310352,4.0404429035065926e-05,0.0,0.0 +101105,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,9724.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.000769265671458218,0.0,0.0,0.000769265671458218,0.00032319224392110806,0.00017465454944022655,0.00027138818849058567,0.0,0.0,0.00032319224392110806,0.00017465454944022655,0.00027138818849058567,0.0,0.0,0.0,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.16706219262943e-05,3.0912881631685366e-05,9.16706219262943e-05,3.8513656726474324e-05,2.0812954176276267e-05,3.234035385359532e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8513656726474324e-05,2.0812954176276267e-05,3.234035385359532e-05,0.0,0.0 +101106,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,5815.0,,562.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.00103177074489786,0.00044570842038112765,0.0,0.0014774791652789878,0.0007910931603164756,0.0002512640900200159,0.0003901292668283131,0.0,4.507535518792254e-05,0.00039046009512327034,0.0002512640900200159,0.0003901292668283131,0.0,0.0,0.0004006330651932051,0.0,4.507535518792254e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.978132415934442e-05,0.0,0.0,0.0001229535875090247,6.820701291746266e-05,0.00015273491166836912,4.653017127295436e-05,2.994252495810958e-05,4.649074727695948e-05,0.0,0.0,2.6769481207620037e-05,0.0,3.011842951724385e-06,0.0,0.0,0.0,8.17795247485418e-05,2.597451084015368e-05,4.0329745764649416e-05,0.0,4.659680186926845e-06 +101107,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,43924.0,,4096.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0055652838956317206,0.0012056104937989561,0.0,0.0067708943894306765,0.002453449885863551,0.0017920581805417589,0.0025254170126316642,0.0,0.0,0.0012478393920645951,0.0017920581805417589,0.0025254170126316642,0.0,0.0,0.0012056104937989561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.055216501677905e-05,0.0,0.0,0.0006632034216811377,0.0002861414864188225,0.0007437555866979166,0.00014870245077260554,0.0002135558831275149,0.00030094874499820304,0.0,0.0,8.055216501677905e-05,0.0,0.0,0.0,0.0,0.0,0.00026950162775287584,0.00019685040214867513,0.0002774069279265036,0.0,0.0 +101108,35.0,Eastern Counties in South Carolina and Georgia,G1300730030202,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,53861.0,,3230.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0025162397016496338,0.0005493752486003361,0.0,0.0030656149502499698,0.0015048289648041412,0.0004473370186279322,0.0007804195882650442,0.0,0.0003330471089142718,0.0014143332001161917,0.0004473370186279322,0.0005908997550460998,0.0,6.366972785940961e-05,9.049576468794951e-05,0.0001895198332189444,0.0002693773810548622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.670662218947191e-05,0.0,0.0,0.00029985459244916027,0.00010346819865600574,0.00033656121463863215,0.00016854288763909226,5.330814044471285e-05,7.041618694415162e-05,0.0,7.587377421203482e-06,6.0464934534473015e-06,1.2662807312675978e-05,1.7998506081156904e-05,0.0,0.0,0.0,0.00016520896212897837,4.9111285267565955e-05,8.567904606964658e-05,0.0,3.6563867715654336e-05 +101109,35.0,Eastern Counties in South Carolina and Georgia,G1301030030202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6349.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011963578216390817,0.0,0.0,0.0011963578216390817,0.0006605813979558483,0.00025407613052715234,0.00023985051384399158,0.0,4.168436516461094e-05,0.0006605813979558483,0.00025407613052715234,0.00023985051384399158,0.0,4.168436516461094e-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.0001425699439466921,4.118535334454432e-05,0.0001425699439466921,7.872147544432975e-05,3.027824872480042e-05,2.8582982194635823e-05,0.0,4.96752518141257e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.872147544432975e-05,3.027824872480042e-05,2.8582982194635823e-05,0.0,4.96752518141257e-06 +101110,50.0,the Greater Atlanta and Macon Area,G1300890023418,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,34073.0,,1237.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008120676742167638,0.0009809058945481858,0.0,0.009101582636715825,0.006070781919538904,0.0015793742801258146,0.0011745231541719049,0.0,0.00027690328287920124,0.005366779307869919,0.0015793742801258146,0.0011745231541719049,0.0,0.0,0.0007040026116689847,0.0,0.00027690328287920124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.554019832309261e-05,0.0,0.0,0.0009677250539486778,0.00037517804716885714,0.0010332652522717705,0.0006395485204171242,0.0001882109224350106,0.00013996561109654303,0.0,0.0,4.7038631376573723e-05,0.0,1.8501566946518898e-05,0.0,0.0,0.0,0.0006891909090925634,0.00017929986784964225,0.00013333878421306923,0.0,3.143569111649572e-05 +101111,50.0,the Greater Atlanta and Macon Area,G1301350050525,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,22993.0,,4444.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005397699852173432,0.0034468525998621316,0.0,0.008844552452035564,0.004020802438082542,0.0007225719575003639,0.0029168101668479328,0.0004114196642526692,0.0007728673645689882,0.0020592815624061963,0.0007225719575003639,0.002204345807231135,0.0004114196642526692,0.0,0.0019615208756763457,0.0007124643596167978,0.0007728673645689882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002302992250359932,0.0,0.0,0.0006432320586177458,0.0004154558230960829,0.000873531283653739,0.00024540006946231833,8.610731616269197e-05,0.0002626870575101999,4.9027979480279405e-05,0.0,0.00013105774745872625,4.7602844952545014e-05,5.163863262472197e-05,0.0,0.0,0.0,0.0003971141257970578,7.136474264700871e-05,0.0002880784463700647,4.0633819448073005e-05,7.633216318488242e-05 +101112,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,21272.0,,1397.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028395670642365426,0.0004068543644686856,0.0,0.0032464214287052278,0.0020042019589000546,0.0010087072373277382,0.000233512232477436,0.0,0.0,0.0015973475944313685,0.0010087072373277382,0.000233512232477436,0.0,0.0,0.0004068543644686856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7182991657478726e-05,0.0,0.0,0.0003383863625254199,0.0001074557696959046,0.0003655693541828986,0.00019035318763062462,0.00012020592054027463,2.782725435452066e-05,0.0,0.0,2.7182991657478726e-05,0.0,0.0,0.0,0.0,0.0,0.00022568690844903841,0.00011358736424327597,2.629508149058433e-05,0.0,0.0 +101113,46.0,the Tallahassee-Valdosta Area,G1301850011401,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,71595.0,,7853.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.0065455726977408455,0.002360536522513186,0.0,0.008906140558276238,0.002831170939972238,0.0016517958123484571,0.0029331762022461226,0.0,0.0014899662656872148,0.002831170939972238,0.0016517958123484571,0.0020626059454201514,0.0,0.0,0.0,0.0008705702568259715,0.0014899662656872148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015771762176105628,0.0,0.0,0.0007800247071018719,0.0004470869427125743,0.0009377423288629282,0.00033738580032414625,0.0001968416828009411,0.0002457972239767847,0.0,0.0,0.0,5.816655204144896e-05,9.955106971960733e-05,0.0,0.0,0.0,0.00029809868969465973,0.00017392032404409658,0.0003088389931487858,0.0,0.00015688102234298834 +101114,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,NaturalGas,10132.0,,10219.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.002109571227453183,0.007029489519153086,0.0,0.009139060746606269,0.0013991849145435558,0.0002561837364677627,0.0064106178892593775,0.00037165288980289644,0.0007014213165326761,0.0012601916107153016,0.0002561837364677627,0.0001235017900888822,0.00037165288980289644,9.804120037834031e-05,0.0001389933038282542,0.0062871160991704944,0.0006033801161543358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046966804276121386,0.0,0.0,0.00025139632450506586,0.0005339870355199062,0.0007210643672662797,0.00015017627041131814,3.052926059468605e-05,1.4717633466979106e-05,4.42896496085283e-05,1.1683510423554263e-05,9.286693263865328e-06,0.00042006713358976386,4.0314215907584624e-05,0.0,0.0,0.0,0.00011039453758620896,2.021268585052737e-05,0.0005057924725821775,2.932310696456686e-05,5.5341564282798904e-05 +101115,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,41261.0,,1942.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0036763386280081146,0.000571624606901012,0.0,0.0042479632349091264,0.0024881291409799555,0.0007527546632700538,0.001007079430659117,0.0,0.0,0.0019165045340789437,0.0007527546632700538,0.001007079430659117,0.0,0.0,0.000571624606901012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.819307810265037e-05,0.0,0.0,0.00043810243405445026,0.0001763220832259883,0.0004762955121571007,0.00022838627945198146,8.970437263640469e-05,0.00012001178196606411,0.0,0.0,3.819307810265037e-05,0.0,0.0,0.0,0.0,0.0,0.00027897716575727533,8.440131141542849e-05,0.00011291703498439687,0.0,0.0 +101116,50.0,the Greater Atlanta and Macon Area,G1300630040611,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,89983.0,,15337.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.007858411278196073,0.004514471775998377,0.0,0.012372883054194449,0.005920730915771714,0.0025314935546786096,0.003920658583744126,0.0,0.0,0.0014062591397733368,0.0025314935546786096,0.003920658583744126,0.0,0.0,0.004514471775998377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003016305130569679,0.0,0.0,0.0009364710256598425,0.0005587657451934512,0.0012381015387168104,0.00016758106598734401,0.0003016729821941,0.0004672169774783986,0.0,0.0,0.0003016305130569679,0.0,0.0,0.0,0.0,0.0,0.0005924622438470471,0.0002533157431110411,0.0003923235517587223,0.0,0.0 +101117,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,25526.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006129173113598855,0.0,0.0,0.006129173113598854,0.002208940525429423,0.0014587046595401648,0.002307527357326677,0.0,0.00015408327837632973,0.002208940525429423,0.0014587046595401648,0.002307527357326677,0.0,0.00015408327837632973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000730398405838253,0.00022179563918571984,0.000730398405838253,0.0002632339809077154,0.0001738302276946748,0.0002749823299133315,0.0,1.8361723320019233e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00026323398090771544,0.00017383022769467484,0.0002749823299133316,0.0,1.8361723320019236e-05 +101118,50.0,the Greater Atlanta and Macon Area,G1301130140206,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,97455.0,,5555.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.011058800144552426,0.0020645935154241153,0.0,0.013123393659976543,0.007562917351835117,0.001428034409696339,0.003957764004080536,0.0,0.00017467789436454923,0.006061803414904631,0.001428034409696339,0.0033942844255869086,0.0,0.00017467789436454923,0.001501113936930487,0.0005634795784936278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013794474588020144,0.0,0.0,0.0013178536125912877,0.0005138139609130133,0.0014557983584714892,0.0007223721764323093,0.00017017581302886938,0.0004044896312395643,0.0,2.0815991890544942e-05,0.00010029614983294552,3.76485960472559e-05,0.0,0.0,0.0,0.0,0.0008389661204506445,0.00015841406600618945,0.0004390408829943071,0.0,1.9377289020347918e-05 +101119,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Propane,54502.0,,,3845.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0048060753862343465,0.0,0.00036241778849125473,0.005168493174725602,0.0037898962434449214,0.0011382202653303119,0.0002403766659503679,0.0,0.0,0.003427478454953667,0.0011382202653303119,0.0002403766659503679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036241778849125473,0.0,0.0,0.0,0.0,2.92283713545426e-05,0.0005727301867008667,0.00014696941381445609,0.0006019585580554093,0.0004084456063759076,0.00013563938404638934,2.8645196278569808e-05,0.0,0.0,0.0,0.0,0.0,2.92283713545426e-05,0.0,0.0,0.00044139759902165986,0.0001325650255316542,2.7995933502095084e-05,0.0,0.0 +101120,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,12472.0,,921.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003024101444204037,0.0007309651177079989,0.0,0.003755066561912036,0.0020651956312705065,0.000712686854411612,0.000910439467722296,0.0,6.674460850762109e-05,0.001401057829143868,0.000712686854411612,0.000910439467722296,0.0,0.0,0.0006641378021266385,0.0,6.674460850762109e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.883619673554257e-05,0.0,0.0,0.0003603798971488356,0.0001504690939222295,0.0004092160938843782,0.00016696300890770363,8.49303570104889e-05,0.00010849638737048413,0.0,0.0,4.437142563774687e-05,0.0,4.459245390991498e-06,0.0,0.0,0.0,0.00022505893714578484,7.766651427253615e-05,9.921701161797353e-05,0.0,7.2736308480836346e-06 +101121,35.0,Eastern Counties in South Carolina and Georgia,G1300510011600,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,86102.0,,1179.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007767865814608402,0.000343403915243222,0.0,0.008111269729851626,0.005759533046184814,0.0017928928276116146,0.0005588438560551958,0.0,0.0,0.005416129130941592,0.0017928928276116146,0.0005588438560551958,0.0,0.0,0.000343403915243222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.294444492433452e-05,0.0,0.0,0.0009256804120143239,0.00029099771943463874,0.0009486248569386586,0.0006454288430194187,0.00021365530906055082,6.659625993435446e-05,0.0,0.0,2.294444492433452e-05,0.0,0.0,0.0,0.0,0.0,0.0006735858125717252,0.00020968143814033,6.535760622660316e-05,0.0,0.0 +101122,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,31480.0,,1970.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002724623247110053,0.000579880110995094,0.0,0.003304503358105148,0.001370321610798727,0.0007925897722444722,0.0011416226646682457,0.0,0.0,0.0007904414998036327,0.0007925897722444722,0.0011416226646682457,0.0,0.0,0.000579880110995094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.874437872499154e-05,0.0,0.0,0.00032468871446984527,0.00012897099254741167,0.00036343309319483675,9.419556803204926e-05,9.44515740020075e-05,0.00013604522966393075,0.0,0.0,3.874437872499154e-05,0.0,0.0,0.0,0.0,0.0,0.00015070955230315905,8.716993791362761e-05,0.00012555697825637082,0.0,0.0 +101123,50.0,the Greater Atlanta and Macon Area,G1301350050428,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,90329.0,,5364.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.008214103815186448,0.0015790416232294034,0.0,0.009793145438415852,0.004078771435389891,0.0030544137563851674,0.0026599602466407936,0.0,0.0,0.002499729812160487,0.0030544137563851674,0.0026599602466407936,0.0,0.0,0.0015790416232294034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010550312006496132,0.0,0.0,0.0009788584547122216,0.0004159013751021262,0.001084361574777183,0.0002978878422020462,0.00036398842733144495,0.00031698218517873047,0.0,0.0,0.00010550312006496132,0.0,0.0,0.0,0.0,0.0,0.0004516284420208732,0.00033820481189858416,0.0002945283208577255,0.0,0.0 +101124,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,94171.0,,7157.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.007547596471485827,0.002085117227802224,0.0,0.00963271369928805,0.0061569412212283585,0.0025313661507416745,0.0009444063273180175,0.0,0.0,0.004071823993426134,0.0025313661507416745,0.0009444063273180175,0.0,0.0,0.002085117227802224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013931573867382875,0.0,0.0,0.0008994312346111104,0.00034322586687528445,0.001038746973284939,0.00048523072151013404,0.00030165759269402856,0.00011254292040694773,0.0,0.0,0.00013931573867382875,0.0,0.0,0.0,0.0,0.0,0.0006639358604332777,0.00027297073383933363,0.0001018403790123277,0.0,0.0 +101125,50.0,the Greater Atlanta and Macon Area,G1300130180503,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,179277.0,,3203.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014640834268982321,0.0009332592163243625,0.0,0.015574093485306683,0.00824412385379235,0.006288489280393263,0.0010414499775216347,0.0,0.0,0.0073108646374679875,0.006288489280393263,0.0010414499775216347,0.0,0.0,0.0009332592163243625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.235574781486673e-05,0.0,0.0,0.0017447191269925335,0.0005475939045337982,0.0018070748748074004,0.0008712212114078084,0.0007493867716701006,0.00012410752435313522,0.0,0.0,6.235574781486673e-05,0.0,0.0,0.0,0.0,0.0,0.0009565724704968375,0.0007296585826851136,0.00012084029735172854,0.0,0.0 +101126,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,88546.0,,15473.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.007982888321339556,0.0045546137810357715,0.0,0.012537502102375328,0.005856773776247301,0.0025447821542055145,0.0041359154823162134,0.0,0.0,0.0013021599952115293,0.0025447821542055145,0.0041359154823162134,0.0,0.0,0.0045546137810357715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000304313021781404,0.0,0.0,0.0009513052274984461,0.0005765496917762181,0.0012556182492798502,0.00015517586625541225,0.0003032567247206877,0.0004928689793018356,0.0,0.0,0.000304313021781404,0.0,0.0,0.0,0.0,0.0,0.0005865500141345161,0.0002548573780623147,0.00041420778354975767,0.0,0.0 +101127,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,49907.0,,7726.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002568987526874291,0.0013138729723101727,0.0,0.0038828604991844634,0.0013754682478834363,0.000514765583108393,0.0013534116782768907,0.0,0.0006392681810000037,0.001152774908447573,0.000514765583108393,0.000794781181015287,0.0,0.00010670131502587777,0.00022269333943586317,0.0005586304972616036,0.0005325668659741261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.778548342081277e-05,0.0,0.0,0.000306141168497548,0.0001591678248551777,0.0003939266519183608,0.00013737390851258232,6.134359761056035e-05,9.471250323738431e-05,0.0,1.2715384921308585e-05,1.4879096281734993e-05,3.732449733667392e-05,3.558307444382756e-05,0.0,0.0,0.0,0.00013954495708062137,5.2224354369486825e-05,0.00013730725870857432,0.0,6.485547813838898e-05 +101128,35.0,Eastern Counties in South Carolina and Georgia,G1300510000601,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,61045.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.005252771634702214,0.0,0.0,0.005252771634702213,0.0015145013811853347,0.0015895988477958134,0.0021487020953273625,0.0,0.0,0.0015145013811853347,0.0015895988477958134,0.0021487020953273625,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.612971316422001e-10,0.0,0.0,0.0006259625881975977,0.0001951431130953237,0.0006259630494947293,0.0001804801865233483,0.00018942940568528942,0.00025605665320970443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018048031952649246,0.00018942954528347489,0.00025605684190820163,0.0,0.0 +101129,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,39859.0,,2011.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0020517751538899304,0.0003420718628770787,0.0,0.002393847016767009,0.00129273838149747,0.0008860038905214588,0.0001590590722992937,0.0,5.602794208736686e-05,0.001006694460707758,0.0008860038905214588,0.0001590590722992937,0.0,0.0,0.0002860439207897118,0.0,5.602794208736686e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.285550695648641e-05,0.0,0.0,0.0002445059675449525,9.829342893122242e-05,0.0002673614745014389,0.00011996577825344848,0.0001055833228557377,1.8954753543831878e-05,0.0,0.0,1.911200402887033e-05,0.0,3.7435029276160817e-06,0.0,0.0,0.0,0.00014438200829080253,9.895507312064976e-05,1.776482281654057e-05,0.0,6.257590023438658e-06 +101130,35.0,Eastern Counties in South Carolina and Georgia,G1300510004001,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,120302.0,,7180.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,153306.56730200956,0.0,0.0,0.012763227061015032,0.002668448951488253,0.0,0.015431637264079517,0.00926393440700578,0.001234331039259697,0.004639310029807701,0.0,0.00029410053643010833,0.007506228407856561,0.001234331039259697,0.004022667613898775,0.0,0.0,0.0017577059991492193,0.0006166424159089255,0.00029410053643010833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017828909371293635,0.0,0.0,0.0015209671186126028,0.0005802623575576604,0.0016992562123255392,0.0008945015659885716,0.00014709265260439683,0.0004793729000196347,0.0,0.0,0.00011743893748738447,4.1200195123103844e-05,1.9649961102448042e-05,0.0,0.0,0.0,0.0010200990226956236,0.0001359184803682845,0.0005108580673682103,0.0,3.2384908679807865e-05 +101131,81.0,the Columbus-Albany Area,G1302150001600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,21387.0,,1267.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0018148605580209517,0.0003729094061233865,0.0,0.002187769964144338,0.0009285447281432952,0.000707610252406133,0.0005515842939886121,0.0,0.0,0.0005556353220199089,0.000707610252406133,0.0005515842939886121,0.0,0.0,0.0003729094061233865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4916243904314785e-05,0.0,0.0,0.0002162730595617882,8.94311642123065e-05,0.000241189303466103,6.621387553040746e-05,8.43244036511795e-05,6.573112316531418e-05,0.0,0.0,2.491624390431478e-05,0.0,0.0,0.0,0.0,0.0,0.00010236682095852555,7.801004068088061e-05,6.0809058470636576e-05,0.0,0.0 +101132,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,4955.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0008790934867750986,0.0,0.0,0.0008790934867750986,0.00024779039292296506,0.00020420376506235006,0.00038028712505333557,0.0,4.67294966627087e-05,0.00024779039292296506,0.00020420376506235006,0.00038028712505333557,0.0,4.67294966627087e-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.00010475781181230381,3.405412717302045e-05,0.00010475781181230381,2.952812157208225e-05,2.4334089506499026e-05,4.531719058358952e-05,0.0,5.568554301811239e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.952812157208225e-05,2.4334089506499026e-05,4.531719058358952e-05,0.0,5.568554301811239e-06 +101133,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,44077.0,,0.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.004266131481837366,6.137921259540556e-08,0.0,0.004266223550656259,0.0019515213748646223,0.000998179444832783,0.0013165227309588539,0.0,0.0,0.001951459995652027,0.000998179444832783,0.0013165227309588539,0.0,0.0,6.137921259540556e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.942065825026129e-09,0.0,0.0,0.000508388211998263,0.0001870029319884583,0.0005083931540640881,0.00023255243355706145,0.00011895148224390873,0.00015688795342964473,0.0,0.0,4.942065825026129e-09,0.0,0.0,0.0,0.0,0.0,0.00023255698985541755,0.00011895007147537239,0.0001568860927332982,0.0,0.0 +101134,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,77980.0,,1964.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.01055801551572203,0.0007297878133234072,0.0,0.011287842077469211,0.004768768513630229,0.0013897122185857493,0.004859517322104446,0.0,0.00026976652630124033,0.004768768513630229,0.0013897122185857493,0.004129729508781039,0.0,0.00026976652630124033,0.0,0.0007297878133234072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8760354726296026e-05,0.0,0.0,0.0012581804475042663,0.00038272121710182744,0.0013069408022305625,0.0005682858955443784,0.00016560960139513393,0.0004921327226401947,0.0,3.214761034191893e-05,0.0,4.876035472629603e-05,0.0,0.0,0.0,0.0,0.0005521425711027572,0.0001609051215779669,0.0005626497450811651,0.0,3.123439164717149e-05 +101135,50.0,the Greater Atlanta and Macon Area,G1300210011900,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,421680.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,480687.657779034,0.0,0.0,0.03448506097844422,0.0,0.0,0.034485060978444226,0.023689676266278475,0.007627023434015546,0.003168361278150206,0.0,0.0,0.023689676266278475,0.007627023434015546,0.003168361278150206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004109517510043567,0.0014161786879372535,0.004109517510043567,0.0028230525526513643,0.0009088975185861351,0.00037756743880606883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002823052552651364,0.0009088975185861348,0.0003775674388060687,0.0,0.0 +101136,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,90241.0,,1354.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0077054480677638225,0.00039434044150033187,0.0,0.008099788509264154,0.004535598483241167,0.002647241432596698,0.0009169485934262897,0.0,0.0,0.004141258041740835,0.002647241432596698,0.0009169485934262897,0.0,0.0,0.00039434044150033187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6347118345599817e-05,0.0,0.0,0.0009182435062352202,0.00027564053898600937,0.00094459062458082,0.0004935057988881459,0.00031546669752900936,0.00010927100981806488,0.0,0.0,2.6347118345599817e-05,0.0,0.0,0.0,0.0,0.0,0.0005289377369831858,0.0003087191024028243,0.00010693378519481001,0.0,0.0 +101137,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,7367.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015400057130259043,0.0,0.0,0.0015400057130259043,0.0008577550617503572,0.0004490994104044394,0.00017657960243342135,0.0,5.6488931363946976e-05,0.0008577550617503572,0.0004490994104044394,0.00017657960243342135,0.0,5.6488931363946976e-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.00018352078673828146,5.153399632079516e-05,0.00018352078673828146,0.00010221772713548426,5.351868270616909e-05,2.1042796975630018e-05,0.0,6.7317238100024835e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010221772713548426,5.351868270616909e-05,2.1042796975630018e-05,0.0,6.7317238100024835e-06 +101138,50.0,the Greater Atlanta and Macon Area,G1301390000302,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,13271.0,,1744.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0011653150407300724,0.0005134371133605675,0.0,0.00167875215409064,0.0007629743021671889,0.0004332451721046702,0.00048253267981878084,0.0,0.0,0.00024953718880662136,0.0004332451721046702,0.00048253267981878084,0.0,0.0,0.0005134371133605675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4304989812361545e-05,0.0,0.0,0.00013886717677299182,7.958373154499274e-05,0.00017317216658535337,2.9736615162655622e-05,5.1628556911967694e-05,5.750200469836849e-05,0.0,0.0,3.4304989812361545e-05,0.0,0.0,0.0,0.0,0.0,7.870483598980768e-05,4.469153170299324e-05,4.9775798892552444e-05,0.0,0.0 +101139,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,25126.0,,3638.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0021809568715462483,0.0010708524325457429,0.0,0.003251809304091991,0.0014320997882760025,0.0007857459900400842,0.0010339635257759043,0.0,0.0,0.00036124735573025946,0.0007857459900400842,0.0010339635257759043,0.0,0.0,0.0010708524325457429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.154736421045633e-05,0.0,0.0,0.0002599012222509407,0.00014524499100564828,0.000331448586461397,4.3049282869426905e-05,9.363612176585988e-05,0.00012321581761565387,0.0,0.0,7.154736421045633e-05,0.0,0.0,0.0,0.0,0.0,0.00014597026027892776,8.00890745311458e-05,0.00010538925165132341,0.0,0.0 +101140,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,49392.0,,8002.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004398188857736381,0.002355396593742391,0.0,0.006753616141085069,0.0031469736089790386,0.0014310563416618809,0.0021755861904441502,0.0,0.0,0.0007915770152366479,0.0014310563416618809,0.0021755861904441502,0.0,0.0,0.002355396593742391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015737466193114347,0.0,0.0,0.0005241254432712036,0.0003263167833675565,0.0006815001052023471,9.433102293104663e-05,0.00017053679677721492,0.00025926128079641357,0.0,0.0,0.00015737466193114347,0.0,0.0,0.0,0.0,0.0,0.0003175577054996278,0.0001444063486907574,0.00021953605101196204,0.0,0.0 +101141,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,17063.0,,1034.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014854383240214101,0.00030428744644172304,0.0,0.0017897257704631332,0.0008075049209051554,0.00044315791493882816,0.0005390322450128517,0.0,0.0,0.0005032174744634325,0.00044315791493882816,0.0005390322450128517,0.0,0.0,0.00030428744644172304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.033142349704789e-05,0.0,0.0,0.00017701517385702276,7.667258890933243e-05,0.00019734659735407066,5.9966898180521516e-05,5.280978287044768e-05,6.423483561887418e-05,0.0,0.0,2.033142349704789e-05,0.0,0.0,0.0,0.0,0.0,8.904065143234916e-05,4.886542287485262e-05,5.9437139014813814e-05,0.0,0.0 +101142,50.0,the Greater Atlanta and Macon Area,G1300770170306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,214908.0,,16820.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.01914804329890051,0.004951000735976901,0.0,0.024099044034877413,0.008027326871258629,0.00604450209797035,0.01002721506564843,0.0,0.0,0.003076326135281727,0.00604450209797035,0.01002721506564843,0.0,0.0,0.004951000735976901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003307975764404111,0.0,0.0,0.002281834378209916,0.0009477642099600214,0.0026126319546503273,0.00036659968982180895,0.0007203113378745432,0.0011949233505135638,0.0,0.0,0.0003307975764404111,0.0,0.0,0.0,0.0,0.0,0.0008702606901718213,0.0006552981648671696,0.0010870730996113361,0.0,0.0 +101143,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050500,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,NaturalGas,23534.0,,1867.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0012113914833022674,0.00031751531231030553,0.0,0.0015289245259739934,0.0005656871811067847,0.0004633652653516599,0.00023368616351629592,0.0,0.00026622137672209284,0.0004579397747571238,0.0004633652653516599,0.00023368616351629592,0.0,5.643574040002807e-05,0.00010774740634966088,0.0,0.00020978563632206474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1214918272309402e-05,0.0,0.0,0.0001443596356198418,5.983419461289557e-05,0.0001655745538921512,5.457196945083318e-05,5.521851671163366e-05,2.784801600441308e-05,0.0,6.725359252052113e-06,7.1991879797199155e-06,0.0,1.4016914954096764e-05,0.0,0.0,0.0,6.126097205131603e-05,5.018004211217969e-05,2.530699299910187e-05,0.0,2.883038694093434e-05 +101144,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,27814.0,,3348.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.006700265457768773,0.0026558895519166394,0.0,0.009356155009685412,0.006470753328142195,0.0015481937133260957,0.0010932221006861654,0.0,0.00024406857460469614,0.004058932350830251,0.0015481937133260957,0.0010932221006861654,0.0,0.0,0.0024118209773119435,0.0,0.00024406857460469614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001774495459590898,0.0,0.0,0.0007984623664119454,0.00044010576331731104,0.0009759119123710352,0.00048369795948788606,0.00018449633433152132,0.00013027792869245411,0.0,0.0,0.00016114244549430176,0.0,1.6307100464788054e-05,0.0,0.0,0.0,0.0006749444882445166,0.00016148735093944177,0.00011403065359888567,0.0,2.5458046510085607e-05 +101146,50.0,the Greater Atlanta and Macon Area,G1300670031309,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,128300.0,,14216.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.007286788475690459,0.0024175347796241992,0.0,0.00970430552495324,0.004718900231224213,0.0022765961366962,0.0015195097040599452,0.0,0.0011892994529728819,0.0036741209541861822,0.0022765961366962,0.0010787683798802728,0.0,0.0002573030049278063,0.0010447792770380314,0.0004407413241796725,0.0009319964480450756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001615249872080453,0.0,0.0,0.0008683520341727999,0.0003530761839132591,0.0010298770213808452,0.0004378376585251668,0.00027129741626029055,0.00012855467400974183,0.0,3.066228537760093e-05,6.980580415270466e-05,2.9447657733902388e-05,6.227034068640194e-05,0.0,0.0,0.0,0.0005007969814872447,0.0002416055473644127,0.00016125915697445917,0.0,0.00012621533555472864 +101147,50.0,the Greater Atlanta and Macon Area,G1300890021704,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,32914.0,,10202.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007675143807298517,0.007912227623255438,0.0,0.015587371430553955,0.004406265790970213,0.0006589345212254326,0.009360363387229701,0.00041651389358598643,0.0007452129767595517,0.0028858404869326866,0.0006589345212254326,0.003713854905554411,0.00041651389358598643,0.0,0.0015204253040375273,0.005646508481675292,0.0007452129767595517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005286484370056401,0.0,0.0,0.0009146291373952082,0.0007845135156821239,0.001443277574400848,0.00034389893681385596,7.852370299240977e-05,0.0004425715001519682,4.96349974369742e-05,0.0,0.00010158586163533014,0.0003772664318457216,4.9790740883433626e-05,0.0,0.0,0.0,0.0004079882635305186,6.101255889874104e-05,0.0008667017800416446,3.856616650968402e-05,6.900131829804852e-05 +101148,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970600,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,28805.0,,4647.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.014567878677625958,0.0036037225190150755,0.0,0.018171601196641036,0.010877230816812215,0.0015680523052648897,0.003711267360496218,0.00041522012105689,0.001599830593010821,0.010877230816812215,0.0015680523052648897,0.0017073754344919631,0.00041522012105689,0.0,0.0,0.002003891926004254,0.001599830593010821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024077787448079901,0.0,0.0,0.0017360281831218926,0.0008567938139358844,0.0019768060576026915,0.001296220243878723,0.00018686200336978095,0.00020346489279872757,4.948104307466096e-05,0.0,0.0,0.00013388734456847357,0.00010689052991232543,0.0,0.0,0.0,0.0011832845953383387,0.00017058129672460978,0.0004037319397570863,4.516991329831226e-05,0.00017403831248434428 +101149,50.0,the Greater Atlanta and Macon Area,G1300890023112,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,493958.0,,28362.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.023157961927597948,0.004823261138542644,0.0,0.02798122306614059,0.012377583037700283,0.010087884163914663,0.003009409704548402,0.0,0.0025063638903386636,0.010602667477384477,0.010087884163914663,0.002042253949807362,0.0,0.00042515633649144624,0.0017749155603158056,0.0009671557547410403,0.002081207553847218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032226221999838266,0.0,0.0,0.002759690287631772,0.0010061697144990653,0.003081952507630155,0.0012634997221174806,0.001202153973520989,0.00024337151981601834,0.0,5.0665072177284206e-05,0.00011858952114499692,6.461971509617098e-05,0.00013905416839670833,0.0,0.0,0.0,0.0013633114961154713,0.001111115830146862,0.0003314672043997518,0.0,0.00027605992985382197 +101150,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,45207.0,,8202.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004027888068148299,0.0024144127066528733,0.0,0.00644233146440747,0.0030946171406351576,0.0013066406777309937,0.0020410429564350213,0.0,0.0,0.0006802044339822845,0.0013066406777309937,0.0020410429564350213,0.0,0.0,0.0024144127066528733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016131724478619483,0.0,0.0,0.00047999733304703685,0.00029865810377724595,0.0006413145778332317,8.105893428869853e-05,0.00015571039461629796,0.00024322800414204045,0.0,0.0,0.00016131724478619483,0.0,0.0,0.0,0.0,0.0,0.00030805976005217133,0.0001300721205123294,0.0002031796422114097,0.0,0.0 +101151,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,385428.0,,17070.0,,5.759960461090961,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,2015986.1613818365,0.0,0.0,0.05738576838444734,0.008938330271234588,0.0,0.06632404406179057,0.03463376415454203,0.012329866585030408,0.017806507392054235,0.0,0.0015539059301638738,0.02724933981347132,0.012329866585030408,0.017806507392054235,0.0,0.0,0.0073844243410707165,0.0,0.0015539059301638738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005972052509664098,0.0,0.0,0.006838549123169646,0.002375736469109716,0.007435754374136056,0.00324725021785836,0.0014693259443522644,0.0021219664551123886,0.0,0.0,0.0004933826406083872,0.0,0.00010382261035802279,0.0,0.0,0.0,0.003882877875556068,0.001382332164587834,0.0019963320557654595,0.0,0.00017421227822669112 +101152,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,11197.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.0017746836268783001,0.0,0.0,0.0017746836268783001,0.0007837499045579377,0.00014358193431229983,0.0008359962586023753,0.0,1.1300935514314089e-05,0.0007837499045579377,0.00014358193431229983,0.0008359962586023753,0.0,1.1300935514314089e-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.00021148538129835923,7.830275351603463e-05,0.00021148538129835923,9.339785688987743e-05,1.7110362470073674e-05,9.962394695978636e-05,0.0,1.3467091373784219e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.339785688987743e-05,1.7110362470073674e-05,9.962394695978636e-05,0.0,1.3467091373784219e-06 +101153,35.0,Eastern Counties in South Carolina and Georgia,G1302450010300,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,263686.0,,19592.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012559992995989786,0.0033317476751649616,0.0,0.01589174067115475,0.005971656647719464,0.004009597122615,0.0028180991048260325,0.0,0.0030923877959942486,0.005676215635377124,0.004009597122615,0.0024375878183902793,0.0,0.0004365924196073802,0.00029544101234233984,0.0003805112864357532,0.0026557953763868686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002226076284516379,0.0,0.0,0.0014967504290372383,0.0005506527072452615,0.0017193580574888765,0.0006764237997800791,0.00047781604778415255,0.0002904826948674648,0.0,5.202788660554152e-05,1.9739617016952842e-05,2.5423508419901876e-05,0.00017744450301478316,0.0,0.0,0.0,0.0006460850441921669,0.00043380604193759333,0.00030489557455965903,0.0,0.0003345713967994566 +101154,50.0,the Greater Atlanta and Macon Area,G1302550160500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,32243.0,,505.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007569377903044882,0.0003918513547500854,0.0,0.007961229257794966,0.002453639601431406,0.0006743789307915214,0.003922475725871213,0.00041457323479234177,0.0004962426256915548,0.002453639601431406,0.0006743789307915214,0.003530624371121127,0.00041457323479234177,0.0004962426256915548,0.0,0.0003918513547500854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.618320783262974e-05,0.0,0.0,0.000902029161669008,0.0002671279875605671,0.0009282123695016377,0.0002923958218319023,8.036452524644298e-05,0.0004207381613711558,4.940394735473778e-05,5.913634189897129e-05,0.0,2.618320783262974e-05,0.0,0.0,0.0,0.0,0.00028607373994634863,7.862691112419416e-05,0.0004573276776646924,4.833575219829058e-05,5.785771625529731e-05 +101155,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7209.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014303361332475826,0.0,0.0,0.0014303361332475826,0.0005933405470057915,0.0004492648245519179,0.000341662921617079,0.0,4.598513299905493e-05,0.0005933405470057915,0.0004492648245519179,0.000341662921617079,0.0,4.598513299905493e-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.00017045233228198733,5.3102259143295805e-05,0.00017045233228198733,7.070805087261346e-05,5.353863010036747e-05,4.0715773369775045e-05,0.0,5.480021784941886e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.070805087261346e-05,5.353863010036747e-05,4.0715773369775045e-05,0.0,5.480021784941886e-06 +101156,50.0,the Greater Atlanta and Macon Area,G1300890023315,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,49977.0,,6198.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.00238070881895475,0.0010540167953378787,0.0,0.0034347078839312094,0.0011491933754407225,0.0007988414337804791,0.0010689634900149835,0.0,0.000417709584695024,0.0009040533984470725,0.0007988414337804791,0.0002600866716707546,0.0,0.000417709584695024,0.00024513997699365006,0.0008088768183442288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.04228270400961e-05,0.0,0.0,0.00028370378033478415,0.00014083327340181937,0.00035412660737488033,0.00010773403480588286,9.519615874363201e-05,3.099395078482605e-05,0.0,4.977752311266733e-05,1.637872401729892e-05,5.404410302279719e-05,0.0,0.0,0.0,0.0,0.00011848458879615768,8.236246467964026e-05,0.0001102126954951839,0.0,4.3066858403898456e-05 +101157,50.0,the Greater Atlanta and Macon Area,G1300850970100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,106325.0,,7465.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0066585663098551505,0.0012695116080372005,0.0,0.007928077917892351,0.003075348918669579,0.001942077407784064,0.0017214053295500865,0.0,0.0011892462618886218,0.003075348918669579,0.001942077407784064,0.0004518937215128858,0.0,0.0011892462618886218,0.0,0.0012695116080372005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.482087074826099e-05,0.0,0.0,0.0007934891921488447,0.00027247800267528967,0.0008783100628971058,0.00036648371668826,0.00023143381948637865,5.385134987537506e-05,0.0,0.00014172030609883106,0.0,8.482087074826099e-05,0.0,0.0,0.0,0.0,0.0003407017350436566,0.00021515254363636924,0.00019070544448817548,0.0,0.00013175033972890454 +101158,50.0,the Greater Atlanta and Macon Area,G1301350050524,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,42493.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.01020332356599714,0.0,0.0,0.01020332356599714,0.004348903351360263,0.002073962581086873,0.003634314234252647,0.0,0.00014622610637109553,0.004348903351360263,0.002073962581086873,0.003634314234252647,0.0,0.00014622610637109553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012159099757050576,0.00040313477776706194,0.0012159099757050576,0.0005182502479797947,0.00024715003648285213,0.0004330940701519177,0.0,1.742547712959334e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005182502479797947,0.00024715003648285213,0.0004330940701519177,0.0,1.742547712959334e-05 +101159,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,7792.0,,39.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016112165035154478,3.126327387345821e-05,0.0,0.0016423970703151668,0.0012328316411581164,0.00018203826930021565,0.0001961811789096372,0.0,3.126327387345821e-05,0.0012328316411581164,0.00018203826930021565,0.0001961811789096372,0.0,0.0,0.0,0.0,3.126327387345821e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.086165721343622e-06,0.0,0.0,0.00019200141932370775,7.113480295273287e-05,0.00019408758504505137,0.00014691099822592208,2.1692681275677882e-05,2.337802816261151e-05,0.0,0.0,0.0,0.0,2.086165721343622e-06,0.0,0.0,0.0,0.00014568786094679907,2.1512074462894455e-05,2.318338965287853e-05,0.0,3.6944862094384846e-06 +101160,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950500,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,20929.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006800341016993335,0.0,0.0,0.006800341016993335,0.003967458327274577,0.0010301993104968132,0.0016350361407523686,0.0,0.00016772994554331544,0.003967458327274577,0.0010301993104968132,0.0016350361407523686,0.0,0.00016772994554331544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008103868685330299,0.00019577343235762653,0.0008103868685330299,0.00047279630857348934,0.00012276737168212182,0.00019484490773794688,0.0,1.998813662261906e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00047279630857348934,0.00012276737168212182,0.00019484490773794688,0.0,1.998813662261906e-05 +101161,50.0,the Greater Atlanta and Macon Area,G1301170130307,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,233215.0,,18802.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011926841789679699,0.0031974756481309018,0.0,0.015124317437810602,0.010258592083666933,0.002082732364929343,0.0013997056519446487,0.0,0.0013832873372696794,0.008407258665630697,0.002082732364929343,0.0011879164847821177,0.0,0.00024893427433754137,0.0018513334180362336,0.00021178916716253074,0.001134353062932138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021363702626065508,0.0,0.0,0.001421298928894,0.0006191919005045662,0.0016349359551546551,0.0010018769383471978,0.000248195233209884,0.00014156173589032677,0.0,2.9665021446591557e-05,0.0001236955053207158,1.4150540252987571e-05,7.579098068695175e-05,0.0,0.0,0.0,0.0011089519322651771,0.00022514298859361927,0.00015130792555811146,0.0,0.00014953310873774746 +101162,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,22890.0,,4283.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005496381292419414,0.003397854710431966,0.0,0.008894236002851382,0.005721013704695373,0.0008834769616832817,0.002110270986458429,0.0,0.0001795570570880364,0.002502716051351443,0.0008834769616832817,0.002110270986458429,0.0,0.0,0.0032182976533439303,0.0,0.0001795570570880364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022702323491718558,0.0,0.0,0.0006549928696270183,0.00039732336007871033,0.0008820161045442038,0.0002982437136588657,0.00010528219924996702,0.00025147681275631054,0.0,0.0,0.00021502636411891847,0.0,1.1996870798267165e-05,0.0,0.0,0.0,0.0005673366684043152,8.761189920625245e-05,0.00020926957575805388,0.0,1.780616300100862e-05 +101163,50.0,the Greater Atlanta and Macon Area,G1300590000402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,268146.0,,32172.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013802891331535488,0.005471146275192793,0.0,0.01927403760672828,0.012603733797613056,0.0028808291235301793,0.0016416896246055292,0.0,0.0021477850609795163,0.009724659979863461,0.0028808291235301793,0.0008527949235816998,0.0,0.00034462503492156633,0.002879073817749594,0.0007888947010238293,0.00180316002605795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036554990887739463,0.0,0.0,0.0016448647482110144,0.0008175484954377381,0.002010414657088409,0.0011588695444316312,0.00034330301942522704,0.00010162597629440284,0.0,4.106832095376747e-05,0.00019236282833483018,5.27093174936103e-05,0.00012047657841018282,0.0,0.0,0.0,0.0013146561025654776,0.0003004902871254358,0.00017123951665139309,0.0,0.00022402875074610285 +101164,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,3660.0,,771.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008402211621176242,0.0006114533961546997,0.0,0.001451674558272324,0.0009696577325196402,0.00020751204801192235,0.000245640009005743,0.0,2.8782061661278978e-05,0.00038698639802621943,0.00020751204801192235,0.000245640009005743,0.0,0.0,0.0005826713344934208,0.0,2.8782061661278978e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.085315515686918e-05,0.0,0.0,0.000100126733259754,7.495365535208952e-05,0.00014097988841662318,4.611605324563332e-05,2.4728612437122044e-05,2.9272211613492405e-05,0.0,0.0,3.8930133650770106e-05,0.0,1.9230215060990765e-06,0.0,0.0,0.0,9.416865381702882e-05,2.015260597295508e-05,2.3855416396842003e-05,0.0,2.795180103064315e-06 +101165,50.0,the Greater Atlanta and Macon Area,G1301210009102,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,70995.0,,8.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.0063255575124447115,2.240341259732303e-06,0.0,0.006327797853704443,0.0022834908461868736,0.0013843774504830749,0.0026599602466407936,0.0,0.0,0.002281250504927141,0.0013843774504830749,0.0026599602466407936,0.0,0.0,2.240341259732303e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.503007368826977e-07,0.0,0.0,0.0007538047526389239,0.0002588302649978047,0.0007539550533758065,0.0002718523180274466,0.00016497364849932182,0.0003169824433346277,0.0,0.0,1.503007368826977e-07,0.0,0.0,0.0,0.0,0.0,0.00027207719061570455,0.0001649481223487866,0.0003169333970679107,0.0,0.0 +101166,81.0,the Columbus-Albany Area,G1300950000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,25799.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007658509614112389,0.0,0.0,0.007658509614112389,0.004277196318428283,0.0011762600027204302,0.002071315954727215,0.0,0.0001338200453101994,0.004277196318428283,0.0011762600027204302,0.002071315954727215,0.0,0.0001338200453101994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000912654239490441,0.000246725765130927,0.000912654239490441,0.0005097077042187536,0.0001401733146939788,0.00024683592273913693,0.0,1.594715392876232e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005097077042187536,0.0001401733146939788,0.00024683592273913693,0.0,1.594715392876232e-05 +101167,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock DOE Ref 1980-2004,gen3_t5_cfl,200001_500000,Electricity,277776.0,,11885.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.023690135720566823,0.00349830822187514,0.0,0.02718841325283566,0.007747621799461365,0.007529971111598057,0.011910820341776237,0.0,0.0,0.004249313577586225,0.007529971111598057,0.011910820341776237,0.0,0.0,0.00349830822187514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002337358868602208,0.0,0.0,0.0028231061292728764,0.0010704054217078652,0.003056842016133097,0.0005063822068216964,0.0008973316087820007,0.001419388656450129,0.0,0.0,0.0002337358868602208,0.0,0.0,0.0,0.0,0.0,0.0008710790005088705,0.0008466081437025638,0.0013391548719216629,0.0,0.0 +101168,50.0,the Greater Atlanta and Macon Area,G1301350050539,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,117901.0,,10778.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006336157417792911,0.0018329647636050586,0.0,0.00816912218139797,0.004564876581568215,0.0019105350948177896,0.001041570081621002,0.0,0.0006521581537523823,0.003438927709949182,0.0019105350948177896,0.0008490360869606486,0.0,0.00013765852606528996,0.0011259488716190331,0.00019253399466035337,0.0005144996276870922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001224684716327844,0.0,0.0,0.0007550667151254034,0.00036206408032088866,0.0008775351867581877,0.00040980987028720983,0.00022767449781548632,0.00010117786647851498,0.0,1.6404480544192252e-05,7.522961716548986e-05,1.2864046560847416e-05,3.437599255020446e-05,0.0,0.0,0.0,0.0004903635586031873,0.00020523157005249897,0.00011188648863379012,0.0,7.00554740816762e-05 +101169,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,214485.0,,11016.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009959409965064961,0.001873301335835679,0.0,0.011832711300900639,0.005777101391857224,0.0033173151609690397,0.0013496705720172594,0.0,0.0013886241760571155,0.005257264925382696,0.0033173151609690397,0.0011253637696921714,0.0,0.00025946610902105274,0.0005198364664745281,0.00022430680232508795,0.0011291580670360626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012516248949109008,0.0,0.0,0.0011868438040033775,0.0003634920024466228,0.0013120062934944676,0.0006264981886056975,0.0003953180919886845,0.00013410744431588683,0.0,3.0920079093108475e-05,3.47322798673917e-05,1.498680284465269e-05,7.544340677904566e-05,0.0,0.0,0.0,0.0006405626902851429,0.000367822577431152,0.0001496509328758947,0.0,0.0001539700929022779 +101170,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,66782.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005647225144446587,0.0,0.0,0.005647225144446587,0.001403558454419139,0.0015298768739404837,0.0027137898160869644,0.0,0.0,0.001403558454419139,0.0015298768739404837,0.0027137898160869644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006729693702874645,0.00023056710367157774,0.0006729693702874645,0.00016725946373166223,0.00018231259603409636,0.0003233973105217059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016725946373166223,0.00018231259603409636,0.0003233973105217059,0.0,0.0 +101171,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Propane,24430.0,,3233.0,8929.0,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0049255841694101354,0.0022240363011940983,0.0019872886768715664,0.009136980867446817,0.002716107022332206,0.00046460197223912843,0.0035913058286357073,0.00037774908733922345,0.0019872886768715664,0.002716107022332206,0.00046460197223912843,0.0013672695274416092,0.00037774908733922345,0.0,0.0,0.0022240363011940983,0.0,0.0,0.0,0.0,0.0,0.0,0.0019872886768715664,0.0,0.0001485975387212998,0.0,0.00016027493228327127,0.0005869740277922647,0.00045840415189321137,0.0008958464987968356,0.0003236741519339651,5.5365877748890345e-05,0.00016293533396184712,4.501575765720986e-05,0.0,0.0,0.0001485975387212998,0.0,0.0,0.00016027493228327127,0.0,0.00026630404524352787,4.555247036221841e-05,0.0003521139859397537,3.703687270728688e-05,0.00019484615641659613 +101172,50.0,the Greater Atlanta and Macon Area,G1300670030239,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,19009.0,,4405.0,,8.53126424238864,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004462544895985909,0.003416529806211434,0.0,0.007878993841414274,0.003308257217682676,0.0009931321376476577,0.0025009431595264943,0.00041893971707804224,0.0006578024702624731,0.001974539461750379,0.0009931321376476577,0.0010759335795098302,0.00041893971707804224,0.0,0.0013337177559322965,0.0014250095800166643,0.0006578024702624731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022827094876840432,0.0,0.0,0.0005317905317759867,0.00037311296818827054,0.000760061480544391,0.00023530102550260598,0.00011834912139002442,0.00012821636616313834,4.992401872021793e-05,0.0,8.91105990009008e-05,9.521014224523311e-05,4.39502075222704e-05,0.0,0.0,0.0,0.00031913705347461156,9.580429914147528e-05,0.00024125803355696865,4.0413782270964295e-05,6.34561124829752e-05 +101173,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,17369.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015475847767742583,0.0,0.0,0.0015475847767742583,0.00041430968501898757,0.0006381903629607294,0.0004950847287945412,0.0,0.0,0.00041430968501898757,0.0006381903629607294,0.0004950847287945412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000184423616537424,5.686663270846005e-05,0.000184423616537424,4.937273332253007e-05,7.605229551422317e-05,5.899858770067074e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.937273332253007e-05,7.605229551422317e-05,5.899858770067074e-05,0.0,0.0 +101174,81.0,the Columbus-Albany Area,G1300950000100,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,15692.0,,3303.0,,8.53126424238864,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00454817646525548,0.0025615887468278904,0.0,0.007109846072866439,0.0030543543588474986,0.00042500427580818183,0.002645279657303816,0.0004274300993002377,0.0005576968208236357,0.0030543543588474986,0.00042500427580818183,0.000641387731299562,0.0004274300993002377,0.0,0.0,0.002003891926004254,0.0005576968208236357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017115201935952106,0.0,0.0,0.0005420008692718786,0.0003192696761853464,0.0007131528886313998,0.00036398383620471616,5.064726241209298e-05,7.643342569496224e-05,5.093634496010721e-05,0.0,0.0,0.00013388962226609582,3.726239709342518e-05,0.0,0.0,0.0,0.00030636691871977737,4.26300406319633e-05,0.0002653346935376802,4.2873362781689124e-05,5.5939762221965525e-05 +101175,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,195082.0,,22387.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.009090214457169713,0.003807116395197998,0.0,0.01289733085236771,0.006048305000138352,0.0018222024342230867,0.002612852441027501,0.0,0.0024139887073401887,0.0053793739244826005,0.0018222024342230867,0.0015357507151207137,0.0,0.000352905113704731,0.0006689310756557521,0.0010771017259067876,0.0020610835936354576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002543688404225786,0.0,0.0,0.0010832642464426944,0.0005136698104901703,0.0013376330868652728,0.0006410501609279392,0.00021714853440204845,0.00018301260646572768,0.0,4.205505754175097e-05,4.469398998459896e-05,7.196552156420702e-05,0.00013770932887377253,0.0,0.0,0.0,0.0006272935834744814,0.00018898780646041762,0.0002709892392636772,0.0,0.00025036429655245885 +101176,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,15135.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0033321025868092175,0.0,0.0,0.003332102586809218,0.0016134495945064093,0.0008546121929482635,0.0007603261288854532,0.0,0.00010371467046909152,0.0016134495945064093,0.0008546121929482635,0.0007603261288854532,0.0,0.00010371467046909152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039708049075111933,0.00011186400009222488,0.00039708049075111933,0.00019227179839090638,0.00010184255140318,9.060665586465052e-05,0.0,1.2359485092382438e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00019227179839090635,0.00010184255140317998,9.06066558646505e-05,0.0,1.2359485092382436e-05 +101177,85.0,Rural Climate Zone 3A,G1303010970400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,11410.0,,368.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005525489832945256,6.26236365356265e-05,0.0,0.0006151726198301521,0.00033372086264823385,0.00010092121720294055,4.585071463225655e-05,0.0,0.0001346798253467211,0.00027109722611260735,0.00010092121720294055,4.585071463225655e-05,0.0,0.0001346798253467211,6.26236365356265e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1843978033696e-06,0.0,0.0,6.584662447878095e-05,2.4664567787283078e-05,7.003102228215057e-05,3.230634348224107e-05,1.202666495100825e-05,5.463976732836848e-06,0.0,1.604963931269478e-05,4.1843978033696e-06,0.0,0.0,0.0,0.0,0.0,3.7990658905771206e-05,1.1488833837618196e-05,5.219628303598148e-06,0.0,1.5331901235163008e-05 +101178,50.0,the Greater Atlanta and Macon Area,G1301510070311,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,56299.0,,3269.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005016154770146924,0.0009622726054644707,0.0,0.005978427375611394,0.002068694291709251,0.0014112001663872673,0.0024985022279085793,0.0,0.0,0.0011064216862447808,0.0014112001663872673,0.0024985022279085793,0.0,0.0,0.0009622726054644707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.429403319383099e-05,0.0,0.0,0.000597765574339578,0.00022921117048926563,0.000662059607533409,0.00013185015715145163,0.00016817002597068685,0.0002977417339957279,0.0,0.0,6.429403319383099e-05,0.0,0.0,0.0,0.0,0.0,0.0002290901678362474,0.00015627832699295573,0.000276687714093263,0.0,0.0 +101179,50.0,the Greater Atlanta and Macon Area,G1301210011503,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,28308.0,,1627.0,,8.72605822017302,Office,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.0067972808552649805,0.0012908092998493708,0.0,0.008088090155114353,0.004054548875922068,0.0015266071670801365,0.0022690685680378992,0.0,0.0002378655440742481,0.003001605120146945,0.0015266071670801365,0.0022690685680378992,0.0,0.0,0.0010529437557751226,0.0,0.0002378655440742481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.624175190256314e-05,0.0,0.0,0.0008100187595222572,0.00034448899748501706,0.0008962605114248203,0.0003576954531919664,0.00018192281150163442,0.0002704004948286564,0.0,0.0,7.034944213952272e-05,0.0,1.5892309763040403e-05,0.0,0.0,0.0,0.00044929420659746156,0.0001691669719392111,0.00025144088607391137,0.0,2.6358446814236158e-05 +101180,50.0,the Greater Atlanta and Macon Area,G1301130140204,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,34757.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008100165387880292,0.0,0.0,0.008100165387880292,0.004543513095868853,0.0022874295384080253,0.0010776731708231758,0.0,0.0001916322898539753,0.004543513095868853,0.0022874295384080253,0.0010776731708231758,0.0,0.0001916322898539753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009652839873147194,0.0003189255329859276,0.0009652839873147194,0.0005414433196832087,0.00027258938550065543,0.0001284246191949069,0.0,2.2836519008027574e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005414433196832087,0.00027258938550065543,0.0001284246191949069,0.0,2.2836519008027574e-05 +101181,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,5840.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0011168763237756072,0.0,0.0,0.0011168763237756072,0.0007774464931494897,0.00018327887540630524,0.00012860949966462303,0.0,2.7541455555189372e-05,0.0007774464931494897,0.00018327887540630524,0.00012860949966462303,0.0,2.7541455555189372e-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.0001330924025181987,4.377345822712478e-05,0.0001330924025181987,9.264429677658974e-05,2.184040017626839e-05,1.5325732073148626e-05,0.0,3.2819734921919564e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.264429677658974e-05,2.184040017626839e-05,1.5325732073148626e-05,0.0,3.2819734921919564e-06 +101182,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010702,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,59425.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005240174869398696,0.0,0.0,0.005240174869398696,0.003323418503279929,0.001364625075539314,0.0005521312905794527,0.0,0.0,0.003323418503279929,0.001364625075539314,0.0005521312905794527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006244598752360428,0.000150841087681037,0.0006244598752360428,0.00039604432211505253,0.0001626193067318456,6.579624638914462e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039604432211505253,0.0001626193067318456,6.579624638914462e-05,0.0,0.0 +101183,50.0,the Greater Atlanta and Macon Area,G1300210012102,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9154.0,,297.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.00080723915225713,8.665587919590594e-05,0.0,0.0008938950314530363,0.0005796497716700558,0.000258357836817517,5.5887422965463356e-05,0.0,0.0,0.0004929938924741499,0.000258357836817517,5.5887422965463356e-05,0.0,0.0,8.665587919590594e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.790013797013514e-06,0.0,0.0,9.619618470911779e-05,3.311017117608726e-05,0.00010198619850613131,5.874855228256354e-05,3.0787701664437526e-05,6.6599307621167465e-06,0.0,0.0,5.790013797013513e-06,0.0,0.0,0.0,0.0,0.0,6.613335413832856e-05,2.947654109728688e-05,6.3763032705158546e-06,0.0,0.0 +101184,50.0,the Greater Atlanta and Macon Area,G1301170130205,ComStock 90.1-2004,gen3_t5_cfl,1001_5000,NaturalGas,7093.0,,629.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014763212662466374,0.0004991371900167202,0.0,0.0019754584562633576,0.001269305460677151,0.00020279774480878182,0.0003931067214829282,0.0,0.00011024852929449677,0.0008804167999549276,0.00020279774480878182,0.0003931067214829282,0.0,0.0,0.00038888866072222346,0.0,0.00011024852929449677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.334778659632302e-05,0.0,0.0,0.000175930619156688,9.137574837900591e-05,0.00020927840575301102,0.00010491772778279799,2.4167051998442523e-05,4.6845839375447514e-05,0.0,0.0,2.5981987170822013e-05,0.0,7.365799425501009e-06,0.0,0.0,0.0,0.00013446915189832366,2.148422235320842e-05,4.164539512430653e-05,0.0,1.1679636377172437e-05 +101185,50.0,the Greater Atlanta and Macon Area,G1302250040200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,111773.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.00995880793321085,0.0,0.0,0.00995880793321085,0.0035064409675440314,0.002531739071528991,0.003920658583744126,0.0,0.0,0.0035064409675440314,0.002531739071528991,0.003920658583744126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011867734080140612,0.0003485543188078135,0.0011867734080140612,0.0004178563262752551,0.00030170283695310637,0.0004672179020114341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004178563262752551,0.00030170283695310637,0.0004672179020114341,0.0,0.0 +101186,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,25237.0,,919.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005924669575431028,0.0007124643596167978,0.0,0.0066371339350478255,0.0030701222115458618,0.0005141128587496993,0.0021427298905329164,0.00041044933485584684,0.0004998005001465701,0.0030701222115458618,0.0005141128587496993,0.001430265530916119,0.00041044933485584684,0.0004998005001465701,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.0007060299187775255,0.00024596923464948107,0.000753635197472599,0.00036585975100511927,6.126570524890824e-05,0.00017044161598658213,4.891234977091196e-05,5.9560132768716884e-05,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.00034860712196049814,5.837663509863164e-05,0.00024330331133668449,4.660581940243068e-05,5.675149127786133e-05 +101187,81.0,the Columbus-Albany Area,G1302150010602,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,29914.0,,1091.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002665269548530296,0.00032113604029916187,0.0,0.002986405588829457,0.0011140633982129086,0.0007845490953944741,0.0010877930952220751,0.0,0.0,0.0007929273579137469,0.0007845490953944741,0.0010877930952220751,0.0,0.0,0.00032113604029916187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1456816223580287e-05,0.0,0.0,0.0003176155109124957,0.00011692633981834439,0.00033907232713607604,9.449176652288133e-05,9.349334363087582e-05,0.00012963040075873855,0.0,0.0,2.1456816223580287e-05,0.0,0.0,0.0,0.0,0.0,0.00012648920509060422,8.907661053238775e-05,0.00012350651151308415,0.0,0.0 +101188,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,544974.0,,5552.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,1142103.5955056418,0.0,0.0,0.1043973202543932,0.0038433269626567293,0.0,0.10824064721704993,0.09245728634325538,0.00647056742524345,0.005802084293669742,0.000769805631490524,0.0027409756904135736,0.09245728634325538,0.00647056742524345,0.0031807615269471116,0.000769805631490524,0.001518971494479474,0.0,0.0026213227667226304,0.0012220041959340997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025678959881741254,0.0,0.0,0.012440825364085648,0.004072834228566696,0.012697614962903059,0.011017954773463613,0.000771084920071093,0.0003790451573385687,9.173623807896798e-05,0.0001810128751369755,0.0,0.00017514211727964694,8.164748153776565e-05,0.0,0.0,0.0,0.010846082804248118,0.0007590565639587426,0.0006806373967405558,9.030522041632266e-05,0.00032154144338917694 +101189,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6519.0,,220.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001565231370516393,0.0001741810972949814,0.0,0.0017394124678113746,0.0010679137361219375,0.0002500234839139264,0.0003778059128411563,0.0,4.358662786061501e-05,0.0008937326388269559,0.0002500234839139264,0.0003778059128411563,0.0,4.358662786061501e-05,0.0001741810972949814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1639606479618494e-05,0.0,0.0,0.00018652283375765398,7.240353865203272e-05,0.0001981624402372725,0.0001065028132938023,2.979437392070743e-05,4.502173340052647e-05,0.0,5.194057246514327e-06,1.1639606479618494e-05,0.0,0.0,0.0,0.0,0.0,0.00012166199554674823,2.8483907414639093e-05,4.304151143568354e-05,0.0,4.9656034427769765e-06 +101190,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,11939.0,,1338.0,,8.72605822017302,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0026008066408062616,0.001061379877296532,0.0,0.0036621865181027937,0.0021436019371753696,0.00047953561354050443,0.0009595674695234447,0.0,7.948149786347443e-05,0.0010822220598788379,0.00047953561354050443,0.0009595674695234447,0.0,7.948149786347443e-05,0.001061379877296532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.091555023867676e-05,0.0,0.0,0.0003099356697590393,0.0001592126050586871,0.00038085121999771604,0.00012896738023268555,5.714580592962252e-05,0.00011435074860218704,0.0,9.471734994544193e-06,7.091555023867676e-05,0.0,0.0,0.0,0.0,0.0,0.0002229251320016442,4.986958543658974e-05,9.979077789501796e-05,0.0,8.265724664464081e-06 +101191,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,124676.0,,44363.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.03560720229253641,0.03923890214124957,0.0,0.07484610443378599,0.0593168112840362,0.007378579046140002,0.001998624519353009,0.0006474573317204575,0.005504724469789099,0.023927333925297244,0.007378579046140002,0.001998624519353009,0.0006474573317204575,0.0016552996872784805,0.03538947735873895,0.0,0.0038494247825106185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002621715492679683,0.0,0.0,0.00424324214617219,0.0036081394355176205,0.006864957638851872,0.0028513745877372237,0.0008792911425677194,0.00023817225866884362,7.715625100881054e-05,0.00019725889554310632,0.002364519290964244,0.0,0.0002571962017154393,0.0,0.0,0.0,0.00544059573730952,0.0006767704607991035,0.00018331578864558227,5.938541743554805e-05,0.0005048986929184119 +101192,50.0,the Greater Atlanta and Macon Area,G1300890021308,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,16763.0,,927.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004061248148894952,0.0007355140067636609,0.0,0.0047968448627323515,0.002771265919782974,0.00041527221724506255,0.0015333891471267596,0.0,7.69175785775559e-05,0.0021126694915968693,0.00041527221724506255,0.0015333891471267596,0.0,0.0,0.0006585964281861049,0.0,7.69175785775559e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.914504772620183e-05,0.0,0.0,0.00048397260949416265,0.00021491951414865008,0.0005331176572203644,0.0002517635291813069,4.948734262524826e-05,0.00018273159376062592,0.0,0.0,4.4005624091279106e-05,0.0,5.139423634922714e-06,0.0,0.0,0.0,0.00030799636781411,4.615303556852736e-05,0.0001704196931767571,0.0,8.548560660970014e-06 +101193,85.0,Rural Climate Zone 3A,G1302850960600,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,37091.0,,1782.0,,3.3063363735822096,Lodging,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,57860.88653768867,0.0,0.0,0.0034496894842117698,0.0005355041234212455,0.0,0.003985193607633016,0.0014567166241288146,0.0006753030404731052,0.0012687198289272664,0.0,0.0005844541141038291,0.0014567166241288146,0.0006753030404731052,0.0007332157055060207,0.0,0.0005844541141038291,0.0,0.0005355041234212455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5779593309991934e-05,0.0,0.0,0.00041109366382786075,0.000164805516984069,0.00044687325713785276,0.00017359445738893787,8.047472167356986e-05,8.737607605905211e-05,0.0,6.964840870630091e-05,0.0,3.5779593309991934e-05,0.0,0.0,0.0,0.0,0.00016334656898587654,7.572401719035912e-05,0.00014226585159179955,0.0,6.553681936981751e-05 +101194,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890101,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,22256.0,,6362.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005135549193465265,0.004934044122058494,0.0,0.01006959331552376,0.0030610658038421864,0.00041344118382938234,0.005656130914860447,0.00041344118382938234,0.0005255950899454303,0.0030610658038421864,0.00041344118382938234,0.0007220867928019527,0.00041344118382938234,0.0005255950899454303,0.0,0.004934044122058494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003296615298827873,0.0,0.0,0.0006119957886689372,0.0004998884310054813,0.0009416573185517245,0.000364782676636351,4.9269173331616196e-05,8.605001327035646e-05,4.9269173331616196e-05,6.263438815871411e-05,0.0,0.0003296615298827873,0.0,0.0,0.0,0.0,0.000286255355746359,3.866292355058996e-05,0.0005289326891140655,3.866292355058996e-05,4.915098828062483e-05 +101195,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,NaturalGas,333566.0,,17341.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,1133273.7058648225,0.0,0.0,0.02972030577239614,0.0051043260090402245,0.0,0.03482463178143636,0.009226492547735067,0.01343615515398466,0.012161984079716635,0.0,0.0,0.004122166538694843,0.01343615515398466,0.012161984079716635,0.0,0.0,0.0051043260090402245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003410404154483229,0.0,0.0,0.0035417130125091254,0.001299737469139525,0.003882753427957449,0.0004912308433712379,0.0016011613713327693,0.001449320797805118,0.0,0.0,0.0003410404154483229,0.0,0.0,0.0,0.0,0.0,0.001028702781197493,0.0014980568297210675,0.0013559938170388888,0.0,0.0 +101196,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,128587.0,,22138.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006007489708149391,0.0037648472135725906,0.0,0.009772336921721983,0.003450328332342275,0.0016583384339789588,0.0034766579190510538,0.0,0.001187012236349695,0.0031856317667023075,0.0016583384339789588,0.0009777407805088118,0.0,0.00018577872695931327,0.0002646965656399682,0.002498917138542242,0.0010012335093903817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025154475472159075,0.0,0.0,0.0007159014349724355,0.0004163494106062891,0.0009674461896940263,0.0003796258443825942,0.00019762112333625577,0.00011651556004295714,0.0,2.2138907210628432e-05,1.7685454124012213e-05,0.00016696281761928339,6.689648297829525e-05,0.0,0.0,0.0,0.00034157715038438195,0.00016417293141110807,0.0003441837386080244,0.0,0.00011751236929051182 +101197,50.0,the Greater Atlanta and Macon Area,G1300570090803,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,92451.0,,9438.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004758917656949272,0.0016049700461045998,0.0,0.006363887703053872,0.0029866261901236348,0.0010673500271257586,0.0008229192645889108,0.0,0.0014869744908541482,0.0029866261901236348,0.0010673500271257586,0.00048811684989405365,0.0,0.00021682458980582572,0.0,0.00033480241469485705,0.0012701499010483225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010723456520172861,0.0,0.0,0.0005671120599687903,0.00023949934839684122,0.0006743466251705188,0.000355911123733026,0.0001271942731993115,5.816804832600286e-05,0.0,2.5838614710450018e-05,0.0,2.236950867427714e-05,8.486387189001703e-05,0.0,0.0,0.0,0.00031647656054478745,0.00011310128686314186,8.720028617051786e-05,0.0,0.00015756661280194446 +101198,35.0,Eastern Counties in South Carolina and Georgia,G1300510003501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,81127.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006747221752701628,0.0,0.0,0.006747221752701628,0.003745884897859619,0.0020508558076364407,0.0009504810472055678,0.0,0.0,0.003745884897859619,0.0020508558076364407,0.0009504810472055678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008040544506056071,0.00020814491539757217,0.0008040544506056071,0.0004463904602474901,0.00024439684956555156,0.00011326714079256536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004463904602474901,0.00024439684956555156,0.00011326714079256536,0.0,0.0 +101199,50.0,the Greater Atlanta and Macon Area,G1301210007100,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,33133.0,,3985.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0048425237055596485,0.00116093971770975,0.0,0.006003493796868836,0.003750896541766848,0.001579123434768717,0.0006734434467338334,0.0,0.0,0.002589956824057098,0.001579123434768717,0.0006734434467338334,0.0,0.0,0.00116093971770975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.756805986613821e-05,0.0,0.0,0.0005770756135227149,0.00021362123168705089,0.0006546436733888531,0.0003086409100123056,0.00018818155167749223,8.025315183291707e-05,0.0,0.0,7.756805986613821e-05,0.0,0.0,0.0,0.0,0.0,0.0004090119476569592,0.0001721935927726922,7.343482090702312e-05,0.0,0.0 +101200,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010400,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7976.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001632968463908886,0.0,0.0,0.001632968463908886,0.0006954837830738361,0.0004839190884486877,0.0003960014690638039,0.0,5.7564123322557956e-05,0.0006954837830738361,0.0004839190884486877,0.0003960014690638039,0.0,5.7564123322557956e-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.00019459774724570584,6.172559640020691e-05,0.00019459774724570584,8.287948017570606e-05,5.766771774385255e-05,4.719074219066245e-05,0.0,6.859807135484766e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.287948017570606e-05,5.766771774385255e-05,4.719074219066245e-05,0.0,6.859807135484766e-06 +101201,50.0,the Greater Atlanta and Macon Area,G1301350050540,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,113689.0,,7221.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010025292472020993,0.002103523629061502,0.0,0.012128785727483058,0.008590352513783284,0.002561709376579989,0.0009767542107192231,0.0,0.0,0.006486828884721782,0.002561709376579989,0.0009767542107192231,0.0,0.0,0.002103523629061502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014054461784793334,0.0,0.0,0.001194693657707843,0.0004106682791748106,0.0013352382755557764,0.0007730221685643133,0.00030527368190325413,0.00011639780724027562,0.0,0.0,0.00014054461784793334,0.0,0.0,0.0,0.0,0.0,0.0009456979234887092,0.0002820144149062762,0.00010752928094090619,0.0,0.0 +101202,50.0,the Greater Atlanta and Macon Area,G1302170100902,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,10665.0,,355.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.000549002911010515,6.0371880635279795e-05,0.0,0.0006093747916457949,0.0003315400281935674,9.767656106307089e-05,5.363434329565973e-05,0.0,0.00012654158945491685,0.0002711681475582876,9.767656106307089e-05,5.363434329565973e-05,0.0,0.00012654158945491685,6.0371880635279795e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.033595115972741e-06,0.0,0.0,6.542313561939852e-05,2.2493053961247434e-05,6.945673073537127e-05,3.231434685967837e-05,1.1639841562048392e-05,6.391454116027662e-06,0.0,1.5079605959037826e-05,4.033595115972741e-06,0.0,0.0,0.0,0.0,0.0,3.7789036865218865e-05,1.1133205202978272e-05,6.113259346344033e-06,0.0,1.4423250233010696e-05 +101203,50.0,the Greater Atlanta and Macon Area,G1301510070104,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,41552.0,,8292.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0020598424683360545,0.001410077913375379,0.0,0.0034699203817114338,0.0011811434867196574,0.00020402326886054763,0.0017299690941159718,0.0,0.0003547845320152565,0.0007395511051918225,0.00020402326886054763,0.001048981372694584,0.0,6.72867215891004e-05,0.0004415923815278351,0.000680987721421388,0.00028749781042615614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.421335337410064e-05,0.0,0.0,0.00024546680491417216,0.00015455968946178524,0.0003396801582882728,8.813064574245141e-05,2.431299514656538e-05,0.00012500475639664964,0.0,8.018407628505745e-06,2.950468104886709e-05,4.549971050047728e-05,1.9208961824756274e-05,0.0,0.0,0.0,0.00011562542144906807,1.9972405311173226e-05,0.00016935148680077188,0.0,3.4730844727259585e-05 +101204,50.0,the Greater Atlanta and Macon Area,G1301210007100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,20567.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.007280869115418712,0.0,0.0,0.00728086911541871,0.0033116739395956086,0.001596742765611069,0.002236316566837133,0.0,0.00013621855044863932,0.0033116739395956086,0.001596742765611069,0.002236316566837133,0.0,0.00013621855044863932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008676512647352985,0.00026585802727247286,0.0008676512647352985,0.00039464767688188483,0.0001902816625429352,0.0002664988021080713,0.0,1.623297929183747e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00039464767688188494,0.00019028166254293522,0.00026649880210807136,0.0,1.6232979291837478e-05 +101205,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,279767.0,,24423.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013396316413812257,0.004153319432285949,0.0,0.017549635846098203,0.008314564336126661,0.003541710615101228,0.00264948336772133,0.0,0.0030438597967875646,0.007231717973119778,0.003541710615101228,0.002210763304743544,0.0,0.0004121067904862873,0.0010828463630068847,0.00043872006297778653,0.0026317530063012773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002775007488870161,0.0,0.0,0.0015964131398378775,0.0006709991948376302,0.0018739138887248934,0.0008617898562015819,0.00042205880995922936,0.0002634523909218157,0.0,4.910996986234251e-05,7.234952224674058e-05,2.9312733588874772e-05,0.00017583849305140073,0.0,0.0,0.0,0.0008878120164315823,0.0003781765484870813,0.000282906364796307,0.0,0.0003250170657985305 +101206,50.0,the Greater Atlanta and Macon Area,G1301350050730,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,69965.0,,4006.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0062337955896145806,0.0011790639843514432,0.0,0.007412859573966025,0.003686588956511547,0.001443025288117985,0.0022832453293364914,0.0,0.0,0.002507524972160104,0.001443025288117985,0.0022832453293364914,0.0,0.0,0.0011790639843514432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.87772778725971e-05,0.0,0.0,0.0007428694736643687,0.00030905744036094953,0.0008216467515369659,0.00029881694538912645,0.0001719625581009562,0.00027208997017428617,0.0,0.0,7.87772778725971e-05,0.0,0.0,0.0,0.0,0.0,0.000408624203675445,0.00015994597341785163,0.0002530765744436691,0.0,0.0 +101207,81.0,the Columbus-Albany Area,G1301450120300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,20189.0,,697.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,24797.522801866573,0.0,0.0,0.0018368468334628329,0.00020958869250007548,0.0,0.002046435525962909,0.0005364442640873644,0.0004911608220026442,0.0006911914177305123,0.0,0.0003276390221423878,0.0005364442640873644,0.0004911608220026442,0.0004816027252304367,0.0,0.0003276390221423878,0.0,0.00020958869250007548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4003148321997025e-05,0.0,0.0,0.00021889228674835736,0.00010045566837885384,0.00023289543507035436,6.39266756160368e-05,5.853036493341191e-05,5.739135125991668e-05,0.0,3.904389493899199e-05,0.0,1.4003148321997025e-05,0.0,0.0,0.0,0.0,6.105025967863655e-05,5.589675896385506e-05,7.866132302091413e-05,0.0,3.728709340694855e-05 +101208,50.0,the Greater Atlanta and Macon Area,G1301210003200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,17109.0,,1122.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0037882320984814984,0.0008901762346561657,0.0,0.0046784910402114036,0.002656551208506554,0.0009608907827032737,0.0009404621354896648,0.0,0.00012066962058564955,0.0017663749738503886,0.0009608907827032737,0.0009404621354896648,0.0,0.00012066962058564955,0.0008901762346561657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.947799325208279e-05,0.0,0.0,0.0004514395709195494,0.0001693935023641097,0.0005109175641716322,0.000210497018014733,0.00011450832772838732,0.00011207386767081188,0.0,1.4380069732804022e-05,5.947799325208279e-05,0.0,0.0,0.0,0.0,0.0,0.00029011034987170653,0.0001049346838359118,0.00010270376053521717,0.0,1.3177802006937108e-05 +101209,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,17162.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015291710129956369,0.0,0.0,0.0015291710129956369,0.0006195617719380238,0.0003831290450205216,0.0005264801960370913,0.0,0.0,0.0006195617719380238,0.0003831290450205216,0.0005264801960370913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018222704815270408,6.206662442044e-05,0.00018222704815270408,7.383144977836895e-05,4.565642059803636e-05,6.273917777629875e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.383144977836895e-05,4.565642059803636e-05,6.273917777629875e-05,0.0,0.0 +101210,50.0,the Greater Atlanta and Macon Area,G1301210007300,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,58247.0,,10861.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008503875077849358,0.0031969055984254007,0.0,0.011700811365881058,0.005190195527461197,0.0025360969956232647,0.003974488153190296,0.0,0.0,0.0019932899290357954,0.0025360969956232647,0.003974488153190296,0.0,0.0,0.0031969055984254007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002135987345780318,0.0,0.0,0.0010133919965428521,0.00048252446463135066,0.0012269907311208837,0.00023753689257923594,0.00030222226623664855,0.0004736328377269674,0.0,0.0,0.0002135987345780318,0.0,0.0,0.0,0.0,0.0,0.000544263265662896,0.00026594459217819835,0.0004167796550531815,0.0,0.0 +101211,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,11267.0,,1653.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0009402988473553156,0.000486645087062673,0.0,0.0014269746240242866,0.0006568803331960302,0.0002617823417194048,0.0005082505698962558,0.0,0.0,0.00017023524613335732,0.0002617823417194048,0.0005082505698962558,0.0,0.0,0.000486645087062673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.251565937789594e-05,0.0,0.0,0.00011205439724066809,6.296272434112943e-05,0.00014457005661856404,2.028675026906837e-05,3.119631869391622e-05,6.056767103047436e-05,0.0,0.0,3.251565937789594e-05,0.0,0.0,0.0,0.0,0.0,6.655004606455779e-05,2.652176662916642e-05,5.149202545669695e-05,0.0,0.0 +101212,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,63792.0,,3892.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005546747373427908,0.0011456430030932446,0.0,0.006692390376521154,0.0019884409712407586,0.0025552779995593297,0.0021487020953273625,0.0,0.0,0.0008427979681475138,0.0025552779995593297,0.0021487020953273625,0.0,0.0,0.0011456430030932446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.654453247281944e-05,0.0,0.0,0.0006609952515023656,0.00027311652755777167,0.0007375397839751851,0.00010043461823953018,0.000304507580797457,0.0002560567096869298,0.0,0.0,7.654453247281944e-05,0.0,0.0,0.0,0.0,0.0,0.00021913759387399366,0.0002816062838180094,0.00023679928845372566,0.0,0.0 +101213,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,15505.0,,1105.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001351017848437472,0.0003253098267556494,0.0,0.0016763276751931215,0.000543113962650446,0.0006381289837481339,0.0004950847287945412,0.0,0.0,0.00021780413589479668,0.0006381289837481339,0.0004950847287945412,0.0,0.0,0.0003253098267556494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1735119515706225e-05,0.0,0.0,0.00016099872579668665,6.970388744973465e-05,0.00018273384531239284,2.595538496613251e-05,7.604485269843499e-05,5.899848813211914e-05,0.0,0.0,2.1735119515706225e-05,0.0,0.0,0.0,0.0,0.0,5.920399949641931e-05,6.956143761818651e-05,5.396840819778699e-05,0.0,0.0 +101214,50.0,the Greater Atlanta and Macon Area,G1301950020300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,26959.0,,1640.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002354567974372353,0.00048268612785026935,0.0,0.0028372541022226223,0.0009241254248364261,0.0008118628449994294,0.0011012658323867666,0.0,0.0,0.0004414392969861569,0.0008118628449994294,0.0011012658323867666,0.0,0.0,0.00048268612785026935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.225014031439905e-05,0.0,0.0,0.0002805902869151668,0.00011092311180505242,0.0003128404272295659,5.260565010020282e-05,9.674846132861268e-05,0.00013123617548635132,0.0,0.0,3.225014031439905e-05,0.0,0.0,0.0,0.0,0.0,0.00010189562947254394,8.951736789541304e-05,0.0001214274298616089,0.0,0.0 +101215,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970201,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,50985.0,,6164.0,,3.3063363735822096,Lodging,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,57860.88653768867,0.0,0.0,0.004638654046629962,0.0018527352107202404,0.0,0.006491389257350201,0.00238344461674428,0.0009464709466039596,0.002023433417665203,0.0,0.0011380089383145548,0.00238344461674428,0.0009464709466039596,0.0013087071452595178,0.0,0.0,0.0,0.0007147262724056852,0.0011380089383145548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012378862008208513,0.0,0.0,0.0005527796935633726,0.00033473098758412476,0.0006765683136454578,0.0002840306200084844,0.00011278916568707592,0.000155956173374544,0.0,0.0,0.0,4.775370948076174e-05,7.603491060132336e-05,0.0,0.0,0.0,0.00024841571520181394,9.864641094095385e-05,0.0002108933667186116,0.0,0.00011860955456293614 +101216,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,424466.0,,68181.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,280597.8237794184,0.0,0.0,0.020729647088230357,0.01159482304172779,0.0,0.032324487860319565,0.015213341582500688,0.006193020210048823,0.0051861661760882844,0.0,0.00573195989168177,0.00957951924127891,0.006193020210048823,0.004157539258303921,0.0,0.0007995861089601213,0.0056338223412217775,0.0010286269177843634,0.004932373782721649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007746986064207765,0.0,0.0,0.0024703129778226203,0.001513825786219717,0.0032450115842433966,0.0011415732550733439,0.0007380105474872024,0.0004954461183966046,0.0,9.528516975922624e-05,0.000376419226137355,6.872686515927192e-05,0.00032955251512414955,0.0,0.0,0.0,0.0015272467698047682,0.0006217089164692254,0.0005206322028036421,0.0,0.000575423695165761 +101217,50.0,the Greater Atlanta and Macon Area,G1300890023312,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,42149.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0037168173631976905,0.0,0.0,0.0037168173631976905,0.002428855252639262,0.001082758072756977,0.00020517366420201352,0.0,0.0,0.002428855252639262,0.001082758072756977,0.00020517366420201352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004429242716597043,0.00013469453190556672,0.0004429242716597043,0.00028944089488877926,0.00012902970038510371,2.445005683632673e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028944089488877926,0.00012902970038510371,2.445005683632673e-05,0.0,0.0 +101219,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,16971.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00396233048870274,0.0,0.0,0.00396233048870274,0.002182143433537887,0.0007981232615843166,0.000912507144565779,0.0,6.955664901475753e-05,0.002182143433537887,0.0007981232615843166,0.000912507144565779,0.0,6.955664901475753e-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.00047218549386202833,0.00016195350462553895,0.00047218549386202833,0.0002600430422905518,9.511125523437783e-05,0.00010874222580320113,0.0,8.28897053389759e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002600430422905518,9.511125523437783e-05,0.00010874222580320113,0.0,8.28897053389759e-06 +101220,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,99012.0,,2240.0,,4.088175128053588,Healthcare,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,153306.56730200956,0.0,0.0,0.011138350658556515,0.0008325486331669708,0.0,0.011970938040147256,0.006046962768599924,0.0015469920706766332,0.00413941661472406,0.0,0.00023752783772286747,0.006046962768599924,0.0015469920706766332,0.003544395819279957,0.0,0.0,0.0,0.0005950207954441032,0.00023752783772286747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.562730158765335e-05,0.0,0.0,0.0013273377752011002,0.00038666336337327356,0.0013829650767887536,0.0007206059814458645,0.00018435234051176615,0.00042237945324346946,0.0,0.0,0.0,3.975671801079795e-05,1.5870583576855394e-05,0.0,0.0,0.0,0.0006985867190665583,0.00017871916140905743,0.0004782138707295558,0.0,2.744084909922658e-05 +101222,50.0,the Greater Atlanta and Macon Area,G1301510070108,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,29504.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007084357108214117,0.0,0.0,0.007084357108214116,0.004829596863933118,0.001241350469753265,0.0008881085578126831,0.0,0.00012538392378879005,0.004829596863933118,0.001241350469753265,0.0008881085578126831,0.0,0.00012538392378879005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008442322956231812,0.0002594045802023779,0.0008442322956231812,0.0005755358722170081,0.0001479298884492426,0.00010583457539929157,0.0,1.4941815636554854e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005755358722170082,0.00014792988844924263,0.00010583457539929159,0.0,1.4941815636554856e-05 +101223,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,35879.0,,2445.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0017712276451404348,0.00041584789674591836,0.0,0.002187075541886353,0.0008981846488170349,0.00037265673632666985,0.0006091974880315942,0.0,0.0003070721294338945,0.0008981846488170349,0.00037265673632666985,0.00019334959128567583,0.0,0.0003070721294338945,0.0,0.00041584789674591836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7783999208172246e-05,0.0,0.0,0.00021107400866244674,9.173020157947821e-05,0.000238858007870619,0.00010703504705621963,4.440883214946552e-05,2.3041122589681294e-05,0.0,3.659323265755987e-05,0.0,2.7783999208172246e-05,0.0,0.0,0.0,0.0,9.809382063290273e-05,4.069911804773876e-05,6.653254339148614e-05,0.0,3.3536398585440456e-05 +101224,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,15773.0,,4984.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.003773206720326711,0.0038653071522417627,0.0,0.007638513872568473,0.0037734493026759146,0.0004169990582843976,0.0022883601608393355,0.00041020675250664124,0.0007494985982621835,0.002153888678596373,0.0004169990582843976,0.0007921122309392979,0.00041020675250664124,0.0,0.001619560624079542,0.0014962479299000374,0.0007494985982621835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025825786181951833,0.0,0.0,0.0004496457549388054,0.0003810994725616448,0.0007079036167583237,0.0002566747524656571,4.969297212394015e-05,9.439448418191153e-05,4.8883546167296555e-05,0.0,0.00010820983880137092,9.997078522045872e-05,5.00772377976887e-05,0.0,0.0,0.0,0.00034970655988613694,3.864562485177236e-05,0.00021207507917493852,3.8016144051394446e-05,6.946020879408142e-05 +101225,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,52590.0,,4466.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.0046081057648126676,0.001314558596155801,0.0,0.005922664360968469,0.0013249316830844244,0.0018301132923509102,0.002767588695926837,0.0,0.0,1.037308692862354e-05,0.0018301132923509102,0.002767588695926837,0.0,0.0,0.001314558596155801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.783126034142343e-05,0.0,0.0,0.0005491383619339797,0.0002603319183290927,0.0006369696222754031,1.236139154547959e-06,0.000218090787583309,0.00032980777797968924,0.0,0.0,8.783126034142343e-05,0.0,0.0,0.0,0.0,0.0,0.00014249351006225168,0.0001968246892787514,0.0002976481223342411,0.0,0.0 +101226,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,23333.0,,788.0,,4.088175128053588,Healthcare,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.002521514928544515,0.00029270559317431336,0.0,0.002814220521718829,0.0013196550684058236,0.00044475440805596625,0.0009750265873769192,0.0,7.482320630389186e-05,0.0012336335676317997,0.00044475440805596625,0.0008431269528567494,0.0,0.0,8.602150077402378e-05,0.0001318996345201698,7.482320630389186e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9557938443338307e-05,0.0,0.0,0.00030048372557581887,8.901771009405228e-05,0.00032004166401915717,0.00014700956405257624,5.300046412022082e-05,0.00010047369740302185,0.0,0.0,5.747765865000138e-06,8.81324099300021e-06,4.99952066906093e-06,0.0,0.0,0.0,0.0001500751631808729,5.057881560296147e-05,0.00011088297064099316,0.0,8.509121182202352e-06 +101227,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,142168.0,,1759.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.016073233664897664,0.0006536471606112646,0.0,0.016726880825508925,0.010247950628697825,0.0018118762955825912,0.004466453311360439,0.0,0.00020056184144430055,0.010247950628697825,0.0018118762955825912,0.0038128061507491746,0.0,0.00020056184144430055,0.0,0.0006536471606112646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.367273308394573e-05,0.0,0.0,0.0019154156198062937,0.0006250126061296803,0.0019590883528902395,0.0012212281059585104,0.00021591773193062433,0.00045436460445341117,0.0,2.3900559890353116e-05,0.0,4.367273308394573e-05,0.0,0.0,0.0,0.0,0.0012002620767799532,0.00021221085895109008,0.0005231206434896118,0.0,2.3490235370633926e-05 +101228,50.0,the Greater Atlanta and Macon Area,G1300670031408,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,53820.0,,8979.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.004795281673622358,0.0026431730319959497,0.0,0.0074384547056183066,0.003658477277142851,0.0015236468838620502,0.0022563305446134064,0.0,0.0,0.0010153042451469013,0.0015236468838620502,0.0022563305446134064,0.0,0.0,0.0026431730319959497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001766017370318855,0.0,0.0,0.0005714428667584605,0.00034079297355803635,0.000748044603790346,0.00012099150956454776,0.00018156955159299645,0.0002688818056009163,0.0,0.0,0.0001766017370318855,0.0,0.0,0.0,0.0,0.0,0.00036791299988548156,0.00015322481276845292,0.00022690679113641162,0.0,0.0 +101229,50.0,the Greater Atlanta and Macon Area,G1301350050522,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,85002.0,,3689.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,120171.9144447585,0.0,0.0,0.007003909041550069,0.0010747394425054105,0.0,0.00807864848405548,0.004958915338605113,0.0025375016178281005,0.0005822315276222648,0.0,0.0,0.0038841758960997037,0.0025375016178281005,0.0005822315276222648,0.0,0.0,0.0010747394425054105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.180848973226318e-05,0.0,0.0,0.0008346408555224379,0.0003030582340325804,0.000906449345254701,0.0004628689312908053,0.00030238863877719537,6.938328545443733e-05,0.0,0.0,7.180848973226318e-05,0.0,0.0,0.0,0.0,0.0,0.0005564056377404858,0.0002847155294109749,6.532817810324e-05,0.0,0.0 +101230,50.0,the Greater Atlanta and Macon Area,G1301210002800,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,121398.0,,6025.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0056850808160871505,0.0010246730471876915,0.0,0.006709753863274843,0.003013044428639513,0.001466655496666768,0.0009385566817704951,0.0,0.0012914972561980662,0.0023747691478790325,0.001466655496666768,0.0005521589153432843,0.0,0.0012914972561980662,0.0006382752807604808,0.0003863977664272107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.84629080932062e-05,0.0,0.0,0.0006774801958366679,0.0002083288530995452,0.0007459431039298741,0.0002829966924690593,0.0001747785273861084,6.579972074296646e-05,0.0,0.00015390525523853384,4.264597571372042e-05,2.581693237948579e-05,0.0,0.0,0.0,0.0,0.0003349690255673554,0.00016305241233475722,0.00010434211130247067,0.0,0.00014357955472529076 +101231,50.0,the Greater Atlanta and Macon Area,G1301350050209,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,66311.0,,6493.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.00590824024600855,0.001911379369827227,0.0,0.007819619615835776,0.003996676738543536,0.0015396975479557487,0.0022832453293364914,0.0,0.0,0.0020852973687163086,0.0015396975479557487,0.0022832453293364914,0.0,0.0,0.001911379369827227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001277079128185036,0.0,0.0,0.0007040735386320793,0.0003159419485654703,0.0008317814514505829,0.00024850084565943877,0.00018348277251330496,0.0002720899204593355,0.0,0.0,0.0001277079128185036,0.0,0.0,0.0,0.0,0.0,0.0004251308557045725,0.00016377930438457182,0.00024287129136143856,0.0,0.0 +101232,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,28115.0,,978.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0066056790904341686,0.0007583932843997218,0.0,0.00736407237483389,0.0028948968946363616,0.0012433154004616825,0.0020400366960358863,0.0004274300993002377,0.0007583932843997218,0.0028948968946363616,0.0012433154004616825,0.0020400366960358863,0.0004274300993002377,0.0,0.0,0.0,0.0007583932843997218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.067024751016527e-05,0.0,0.0,0.0007871881412980766,0.00028110608384541134,0.000837858388808242,0.0003449802018142834,0.00014816389439111817,0.00024310788837106663,5.09361567216084e-05,0.0,0.0,0.0,5.067024751016527e-05,0.0,0.0,0.0,0.0003293712397769199,0.0001414600760540186,0.0002321082374328067,4.8631501172056616e-05,8.628733437244023e-05 +101233,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,9256.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0020683385000726,0.0,0.0,0.0020683385000726,0.0012438316819654443,0.00033058017373601177,0.00045348288531262264,0.0,4.044375905852133e-05,0.0012438316819654443,0.00033058017373601177,0.00045348288531262264,0.0,4.044375905852133e-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.0002464800588817377,8.547471810356206e-05,0.0002464800588817377,0.00014822511218499893,3.9394625533841396e-05,5.4040713485627314e-05,0.0,4.819607677270064e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014822511218499893,3.9394625533841396e-05,5.4040713485627314e-05,0.0,4.819607677270064e-06 +101234,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Propane,53454.0,,,10575.0,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.006628946956491021,0.0,0.000996709665549826,0.007625656622040847,0.005076582662826965,0.0020341807015451154,0.0005148932576687689,0.0,0.0,0.004079872997277138,0.0020341807015451154,0.0005148932576687689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000996709665549826,0.0,0.0,0.0,0.0,8.038363963122122e-05,0.0007899582840023121,0.00032145785364272187,0.0008703419236335334,0.00048619026415961075,0.0002424092253098685,6.135879453283298e-05,0.0,0.0,0.0,0.0,0.0,8.038363963122122e-05,0.0,0.0,0.0005794075106239158,0.00023216790796530345,5.876650504431439e-05,0.0,0.0 +101235,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11074.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0009149185429471152,0.0,0.0,0.0009149185429471152,0.0004386772324193636,0.00023446859211444923,0.0002417727184133025,0.0,0.0,0.0004386772324193636,0.00023446859211444923,0.0002417727184133025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010902805777047815,4.2093817085559164e-05,0.00010902805777047815,5.2275830463277034e-05,2.794090840488572e-05,2.881131890231541e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2275830463277034e-05,2.794090840488572e-05,2.881131890231541e-05,0.0,0.0 +101236,35.0,Eastern Counties in South Carolina and Georgia,G1300730030102,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,NaturalGas,170375.0,,7948.0,,1.8706521585294562,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,70149.4559448546,0.0,0.0,0.008679331061621408,0.001351638642134885,0.0,0.010030951973394873,0.004189117031993036,0.003416215116970094,0.0016316719704031993,0.0,0.0007939301236671244,0.004189117031993036,0.003416215116970094,0.0009132909167469199,0.0,0.00016069026554993855,0.0,0.0007183810536562793,0.0006332398581171858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.030803118934076e-05,0.0,0.0,0.0010342982361141702,0.0003997955317775252,0.001124606267303511,0.0004992085595426988,0.00040710340976538934,0.00010883502167895953,0.0,1.9149132236000974e-05,0.0,4.7997724078791596e-05,4.2309122478812395e-05,0.0,0.0,0.0,0.00046965704562663003,0.0003830042194590743,0.00018293263978990754,0.0,8.901037461302096e-05 +101237,81.0,the Columbus-Albany Area,G1302150003301,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,16524.0,,106.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003967789155569534,8.436121521409356e-05,0.0,0.004052150370783628,0.0025276108805469743,0.00047382882545249225,0.0009726351871742553,0.0,7.791006346242759e-05,0.002443249665332881,0.00047382882545249225,0.0009726351871742553,0.0,7.791006346242759e-05,8.436121521409356e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.639265383301411e-06,0.0,0.0,0.0004728291148250108,0.00015834744900162972,0.0004784683802083122,0.0002911544770301757,5.646471002694141e-05,0.00011590591550302512,0.0,9.284300374477013e-06,5.639265383301411e-06,0.0,0.0,0.0,0.0,0.0,0.00029845434476764973,5.594859268917461e-05,0.00011484647408355618,0.0,9.199436954652204e-06 +101238,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,8319.0,,40.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001997541244951753,3.2090344610851275e-05,0.0,0.002029631589562604,0.001137222263915477,0.0002760762121418082,0.0005842427688944676,0.0,3.2090344610851275e-05,0.001137222263915477,0.0002760762121418082,0.0005842427688944676,0.0,0.0,0.0,0.0,3.2090344610851275e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.143666036354266e-06,0.0,0.0,0.00023804499247024303,8.290727999903845e-05,0.0002401886585065973,0.00013552163988348132,3.289972610407714e-05,6.962362648268452e-05,0.0,0.0,0.0,0.0,2.143666036354266e-06,0.0,0.0,0.0,0.0001345800348193037,3.2671138634678965e-05,6.913988116098628e-05,0.0,3.7976038916283516e-06 +101239,35.0,Eastern Counties in South Carolina and Georgia,G1300510000601,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,101967.0,,1755.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.009077757663960887,0.0005113699201339896,0.0,0.009589127584094878,0.006378729244322823,0.002647697036588264,0.0005627013031837903,0.0,0.0,0.005867359324188834,0.002647697036588264,0.0005627013031837903,0.0,0.0,0.0005113699201339896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4166561458255266e-05,0.0,0.0,0.0010817786280808948,0.0003334476548702343,0.00111594518953915,0.0006992017362808938,0.00031552087793502087,6.70560138649803e-05,0.0,0.0,3.4166561458255266e-05,0.0,0.0,0.0,0.0,0.0,0.00074233157846201,0.00030812863270675,6.548497837038983e-05,0.0,0.0 +101240,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2007,gen5_led,100001_200000,NaturalGas,148197.0,,46475.0,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.03967656522291106,0.04110722368243408,0.0,0.08078378890534516,0.060322163773769345,0.0074236732827460865,0.006957238418219369,0.0006534514531507138,0.005427169760206859,0.027209530386000064,0.0074236732827460865,0.0027345181964829406,0.0006534514531507138,0.0016552996872784805,0.03311263338776927,0.004222720221736428,0.0037718700729283787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027465446316015866,0.0,0.0,0.004728178952750112,0.0038384503880391748,0.007474723584351699,0.0032425067079902086,0.0008846646772565072,0.00032586720422706525,7.787053617350638e-05,0.00019725883775253167,0.0022123927943163884,0.0002821375056939604,0.00025201433159123776,0.0,0.0,0.0,0.005581460170768069,0.0006868940726967093,0.0006437360117826952,6.046224192105639e-05,0.0005021625545495357 +101241,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,36638.0,,3321.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003047292110791327,0.0009676117572884598,0.0,0.004014903868079787,0.0028529921951880284,0.0009088692159758479,0.0002530424569159104,0.0,0.0,0.0018853804378995687,0.0009088692159758479,0.0002530424569159104,0.0,0.0,0.0009676117572884598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.464926463679079e-05,0.0,0.0,0.00036314144235185657,0.00015369992583982677,0.00042779070698864736,0.00022467809015625696,0.00010830864452734165,3.0154707668257964e-05,0.0,0.0,6.464926463679079e-05,0.0,0.0,0.0,0.0,0.0,0.000303988236907974,9.684062613645597e-05,2.696184394421731e-05,0.0,0.0 +101242,50.0,the Greater Atlanta and Macon Area,G1301510070305,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,NaturalGas,539650.0,,40348.0,,7.614023970037612,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,2664908.3895131643,0.0,0.0,0.11306602302505431,0.027928493463538925,0.0,0.1409944443215705,0.10279521234972558,0.02195775483774269,0.011018461030840273,0.0007951362564697284,0.004427952013814951,0.07685188934751985,0.02195775483774269,0.011018461030840273,0.0007951362564697284,0.002442781552481742,0.02594332300220572,0.0,0.0019851704613332083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018660170010695667,0.0,0.0,0.01347385886046717,0.005025610661652072,0.015339875861536737,0.009158290727173345,0.00261666309348235,0.0013130486490729573,9.475484683970293e-05,0.00029110154389881145,0.00173337963429914,0.0,0.00013263736677042687,0.0,0.0,0.0,0.01118388603318788,0.0023889539409142502,0.001198783577690313,8.65090218692158e-05,0.0004817511394835246 +101243,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,7635.0,,834.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,9613.75315558068,0.0,0.0,0.0006732915787366447,0.0002431102898997656,0.0,0.0009164018686364102,0.0006149438942167234,0.00022476463583936347,7.666296498088561e-05,0.0,0.0,0.0003718336043169578,0.00022476463583936347,7.666296498088561e-05,0.0,0.0,0.0002431102898997656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6242988163191713e-05,0.0,0.0,8.02348604072292e-05,4.030461293285964e-05,9.647784857042094e-05,4.4310694325136456e-05,2.6784768665741693e-05,9.135777853017843e-06,0.0,0.0,1.6242988163191713e-05,0.0,0.0,0.0,0.0,0.0,6.474066229679966e-05,2.366299026950101e-05,8.070998302732508e-06,0.0,0.0 +101244,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,140583.0,,22549.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.03593896381164019,0.01952558663154283,0.0,0.05546455044318302,0.016789572370077145,0.0025088707294308524,0.02674407446576747,0.0006860348568889905,0.008735817461772112,0.016789572370077145,0.0025088707294308524,0.01148465142973579,0.0006860348568889905,0.004469744145884184,0.0,0.01525942303603168,0.0042660733158879265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001304584760626982,0.0,0.0,0.004282774685801465,0.002477142767668803,0.005587359446428446,0.0020007798752591927,0.0002989771242785403,0.0013686030202850546,8.175340652726259e-05,0.0005326505010086551,0.0,0.0010195448221057759,0.00028503390656821706,0.0,0.0,0.0,0.0016913393335720149,0.0002527373332686266,0.0026941308621146053,6.910942769011492e-05,0.0008800243006982867 +101245,50.0,the Greater Atlanta and Macon Area,G1301210010510,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,255775.0,,10996.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02328610705365756,0.0032368020866124147,0.0,0.026522909140269973,0.012163794766488201,0.004834226784014142,0.009524887589767632,0.0,0.0,0.008926992679875788,0.004834226784014142,0.009524887589767632,0.0,0.0,0.0032368020866124147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021626424841978518,0.0,0.0,0.0027749604434231046,0.0010328482254498505,0.00299122469184289,0.001063812491641533,0.0005760854774593448,0.001135062474322227,0.0,0.0,0.00021626424841978515,0.0,0.0,0.0,0.0,0.0,0.0013718194734824807,0.0005451988108030052,0.0010742064075574044,0.0,0.0 +101246,50.0,the Greater Atlanta and Macon Area,G1301350050608,ComStock 90.1-2004,gen3_t5_cfl,10001_25000,Electricity,61156.0,,844.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.0068798213891570715,0.0003138234841300985,0.0,0.007193606124863397,0.0042291579641802034,0.0007130097458300954,0.002114656478937646,0.0,0.00013685943276299642,0.0042291579641802034,0.0007130097458300954,0.001800832994807548,0.0,0.00013685943276299642,0.0,0.0003138234841300985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.096708406695718e-05,0.0,0.0,0.0008198539654751337,0.0002718505686802941,0.0008408210495420909,0.0005039799336968982,8.496788426259461e-05,0.00021460151193435602,0.0,1.630925315012685e-05,0.0,2.096708406695718e-05,0.0,0.0,0.0,0.0,0.0004943230107957595,8.333978708543549e-05,0.00024717056357809663,0.0,1.5996746263016044e-05 +101247,50.0,the Greater Atlanta and Macon Area,G1301350050540,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,42608.0,,718.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.004793141272182868,0.00026693789136587827,0.0,0.0050601179119725195,0.0024942747866327415,0.0005168264762720402,0.0018757724463827558,0.0,0.00017324420268498213,0.0024942747866327415,0.0005168264762720402,0.0016088345550168775,0.0,0.00017324420268498213,0.0,0.00026693789136587827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.783612873997509e-05,0.0,0.0,0.000571191370748241,0.00019422164863687211,0.0005890274994882162,0.00029723894070635197,6.158942677822811e-05,0.00019172237215714735,0.0,2.0645248697365263e-05,0.0,1.783612873997509e-05,0.0,0.0,0.0,0.0,0.00029034826187164287,6.01616429268455e-05,0.0002183509501008895,0.0,2.0166644588838373e-05 +101248,85.0,Rural Climate Zone 3A,G1302330010500,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,29208.0,,4119.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002575620485122479,0.0012000912873850122,0.0,0.003775742146106929,0.0028195812358065013,0.0007067632853170471,0.0002493976249833802,0.0,0.0,0.0016194899484214891,0.0007067632853170471,0.0002493976249833802,0.0,0.0,0.0012000912873850122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.018386737971698e-05,0.0,0.0,0.00030693339867242565,0.00015044517463051564,0.0003871172660521427,0.00019299254562389514,8.422407667290115e-05,2.972039595862269e-05,0.0,0.0,8.018386737971698e-05,0.0,0.0,0.0,0.0,0.0,0.0002890845129725718,7.246264712225331e-05,2.5570105957317543e-05,0.0,0.0 +101249,50.0,the Greater Atlanta and Macon Area,G1300670031505,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,10946.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0010170228630995725,0.0,0.0,0.0010170228630995725,0.00045920857903252675,0.0003429563503768286,0.0002148579336902172,0.0,0.0,0.00045920857903252675,0.0003429563503768286,0.0002148579336902172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012119619846679341,4.4937483421293434e-05,0.00012119619846679341,5.472279542709888e-05,4.086929351719776e-05,2.560410952249678e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.472279542709888e-05,4.086929351719776e-05,2.560410952249678e-05,0.0,0.0 +101250,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,58725.0,,12450.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.007081074240281559,0.0036646458880086894,0.0,0.010745750817896544,0.004874675685114514,0.0021656734476099924,0.003705401685172039,0.0,0.0,0.0012100297971058254,0.0021656734476099924,0.003705401685172039,0.0,0.0,0.0036646458880086894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000244850622828605,0.0,0.0,0.0008438392929188535,0.00046850895009640056,0.0010886899157474587,0.0001441971449179332,0.00025807953549314677,0.0004415662697347422,0.0,0.0,0.000244850622828605,0.0,0.0,0.0,0.0,0.0,0.0004938705866959923,0.00021941201533245253,0.00037540731371901395,0.0,0.0 +101251,50.0,the Greater Atlanta and Macon Area,G1300150960102,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,127357.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.011347420549363009,0.0,0.0,0.011347420549363009,0.004034639781533795,0.002907748127888446,0.004405001950334471,0.0,0.0,0.004034639781533795,0.002907748127888446,0.004405001950334471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013522484673660759,0.0004216371173946728,0.0013522484673660759,0.00048079961760644696,0.0003465102868373422,0.0005249349057058385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00048079961760644696,0.0003465102868373422,0.0005249349057058385,0.0,0.0 +101252,50.0,the Greater Atlanta and Macon Area,G1300590140500,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,200845.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,240343.828889517,0.0,0.0,0.016200427479312565,0.0,0.0,0.016200427479312565,0.011707139420088187,0.0028371979234803977,0.0016560901357439805,0.0,0.0,0.011707139420088187,0.0028371979234803977,0.0016560901357439805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019305754838891149,0.0006528594193915205,0.0019305754838891149,0.0013951185164561555,0.0003381037173868936,0.00019735325004606563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013951185164561555,0.0003381037173868936,0.00019735325004606563,0.0,0.0 +101253,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,11303.0,,105.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027480252320622287,8.320331618174326e-05,0.0,0.0028313112553177105,0.001520569550697167,0.0005353628883145369,0.0006920927930505245,0.0,8.320331618174326e-05,0.001520569550697167,0.0005353628883145369,0.0006920927930505245,0.0,0.0,0.0,0.0,8.320331618174326e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.561612060678879e-06,0.0,0.0,0.0003274788647927462,9.520689548006108e-05,0.00033304047685342507,0.00018120444619318117,6.37985520918391e-05,8.247586650772587e-05,0.0,0.0,0.0,0.0,5.561612060678879e-06,0.0,0.0,0.0,0.00017886101618176092,6.297347608074725e-05,8.140924576605793e-05,0.0,9.787010186502662e-06 +101254,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,41172.0,,2464.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0036683900199770093,0.0007251647072084188,0.0,0.004393554727185428,0.0024420640419271036,0.0008098680205900788,0.0011416226646682457,0.0,0.0,0.0017168993347186844,0.0008098680205900788,0.0011416226646682457,0.0,0.0,0.0007251647072084188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.845075168948925e-05,0.0,0.0,0.0004371542451608895,0.00018391964702225543,0.00048560499685037866,0.0002045992461540073,9.651025144355247e-05,0.0001360447475633297,0.0,0.0,4.845075168948925e-05,0.0,0.0,0.0,0.0,0.0,0.00026991321948278637,8.951201976714778e-05,0.0001261797576004445,0.0,0.0 +101255,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,30091.0,,1938.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002653498394080875,0.0005646452135478063,0.0,0.0032181436076286806,0.002286281576878455,0.0006865952152903798,0.0002452971890592837,0.0,0.0,0.001721636363330649,0.0006865952152903798,0.0002452971890592837,0.0,0.0,0.0005646452135478063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.772541981445263e-05,0.0,0.0,0.0003162132734833418,0.00010954442102977863,0.0003539386932977945,0.0002051647257112106,8.18204831287166e-05,2.9231684217983427e-05,0.0,0.0,3.772541981445263e-05,0.0,0.0,0.0,0.0,0.0,0.000251450405107139,7.551329056550744e-05,2.6978338182129535e-05,0.0,0.0 +101256,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,19421.0,,5783.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004473137658567887,0.004484862472112822,0.0,0.008958000130680712,0.0042965377083462215,0.0008778246609919372,0.0027134452974305855,0.00041740336219974025,0.0006527891017122244,0.002468356263949878,0.0008778246609919372,0.0007095533714263309,0.00041740336219974025,0.0,0.0018281814443963434,0.002003891926004254,0.0006527891017122244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002996520129865824,0.0,0.0,0.000533056346388738,0.00046340412371589175,0.0008327083593753203,0.0002941498947895409,0.00010460889922804351,8.455629059746515e-05,4.9741261773688335e-05,0.0,0.00012214828287923052,0.00013388821913012914,4.36155109772227e-05,0.0,0.0,0.0,0.00039939303571312956,8.159990205517521e-05,0.00025223359554767084,3.880054296322904e-05,6.068128309611546e-05 +101257,50.0,the Greater Atlanta and Macon Area,G1300670030219,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,130789.0,,26723.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.00673237780444683,0.004544415744489474,0.0,0.011276793548936303,0.004667535374190321,0.0016379485183458979,0.0028516804093556124,0.0,0.0021196469774058925,0.00327394669693559,0.0016379485183458979,0.0015155735638246934,0.0,0.00030490902534064805,0.00139358867725473,0.0013361068455309193,0.001814737952065244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030363138192007,0.0,0.0,0.0008022850540301893,0.0005080921556059493,0.0011059164359502594,0.00039015019342913265,0.00019519130591153465,0.00018060810813925018,0.0,3.633544655027183e-05,9.311147564263004e-05,8.927087456585548e-05,0.00012125021635102824,0.0,0.0,0.0,0.0004577457291645835,0.00016063379894455627,0.00027966462462028616,0.0,0.00020787402203941026 +101258,46.0,the Tallahassee-Valdosta Area,G1301850011600,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,8786.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018992025342757166,0.0,0.0,0.0018992025342757163,0.0006429647912493759,0.0005987992138725857,0.0006161676993578402,0.0,4.110541564843579e-05,0.0006429647912493759,0.0005987992138725857,0.0006161676993578402,0.0,4.110541564843579e-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.00022632011239706004,7.242164983719877e-05,0.00022632011239706004,7.661945537493988e-05,7.135642615314699e-05,7.342615674598689e-05,0.0,4.8983624030544274e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.66194553749399e-05,7.1356426153147e-05,7.34261567459869e-05,0.0,4.898362403054428e-06 +101259,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,53464.0,,4980.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004763609999923129,0.0014657662863845826,0.0,0.006229376286307712,0.0022749898252424094,0.0016711411317288098,0.002283214639730194,0.0,0.0,0.0008092235388578269,0.0016711411317288098,0.002283214639730194,0.0,0.0,0.0014657662863845826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.793443143841516e-05,0.0,0.0,0.0005676686724754544,0.0002966456788428718,0.0006656031039138694,9.643334614855641e-05,0.00019914612400740833,0.00027208554510824303,0.0,0.0,9.793443143841516e-05,0.0,0.0,0.0,0.0,0.0,0.00024308056207523508,0.00017855988677417445,0.00024395937590836604,0.0,0.0 +101260,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,29530.0,,3409.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002631050637508357,0.0010035808155411789,0.0,0.0036346314530495364,0.0016336998120456121,0.000899665808617157,0.0011012658323867666,0.0,0.0,0.0006301189965044335,0.000899665808617157,0.0011012658323867666,0.0,0.0,0.0010035808155411789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.705245654290081e-05,0.0,0.0,0.00031353838763434447,0.00016978521838003575,0.00038059084417724524,7.509034275709324e-05,0.00010721183508300157,0.00013123620979424967,0.0,0.0,6.705245654290081e-05,0.0,0.0,0.0,0.0,0.0,0.0001710685659964139,9.420613176384712e-05,0.00011531614641698415,0.0,0.0 +101261,50.0,the Greater Atlanta and Macon Area,G1301210001201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,234451.0,,23364.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01206841872561882,0.003973196690619632,0.0,0.016041615416238456,0.007423188146094928,0.003019001830076651,0.0026352636178624484,0.0,0.002964161822204427,0.00636986283485243,0.003019001830076651,0.002262855106595659,0.0,0.000416698954094081,0.001053325311242497,0.000372408511266789,0.0025474628681103465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026546571389610623,0.0,0.0,0.0014381696268085426,0.0006086244032733815,0.001703635340704649,0.0007590839748188791,0.0003597684861628806,0.00026965997436483654,0.0,4.965719146194653e-05,7.037702321004902e-05,2.488215384298191e-05,0.00017020653684307537,0.0,0.0,0.0,0.0007883498848616929,0.0003206209647791584,0.000279867589078282,0.0,0.00031479690198551547 +101262,50.0,the Greater Atlanta and Macon Area,G1301350050609,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,35468.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003127599907704743,0.0,0.0,0.003127599907704743,0.0019086466150688868,0.000791110770955684,0.00042784252168017215,0.0,0.0,0.0019086466150688868,0.000791110770955684,0.00042784252168017215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000372710329106968,0.00012061286454401925,0.000372710329106968,0.0002274499069714071,9.427521566188625e-05,5.098520647367464e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002274499069714071,9.427521566188625e-05,5.098520647367464e-05,0.0,0.0 +101263,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,48270.0,,20759.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009348483061971854,0.014280163428918314,0.0,0.02362871821086119,0.005537140362260251,0.0012126412699319518,0.011802597030184032,0.0003730872892232087,0.004703180539290725,0.004059995839222726,0.0012126412699319518,0.0031595516031217292,0.0003730872892232087,0.0005432070604722381,0.001477144523037525,0.008643045427062302,0.004159973478818487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009541192479760006,0.0,0.0,0.0011140411469362243,0.0012206687817957332,0.002068160394912225,0.0004838220694524057,0.00014450817980005433,0.0003765178230962617,4.446011067659585e-05,6.473296391090674e-05,9.869439019292708e-05,0.000577479105483581,0.0002779457522994926,0.0,0.0,0.0,0.0004846515285383822,0.00010613934388351748,0.001033050693529161,3.265536236586574e-05,0.0004116571891323294 +101264,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300650970100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,19110.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.0026442551286753766,0.0,0.0,0.0026442551286753766,0.0021298168902629047,0.0001860559818008813,0.0003167537577490355,0.0,1.1628498862555079e-05,0.0021298168902629047,0.0001860559818008813,0.0003167537577490355,0.0,1.1628498862555079e-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.00031511057139083955,0.00010385577855928875,0.00031511057139083955,0.0002538060000226991,2.2171917565809467e-05,3.7746908954467867e-05,0.0,1.3857448478630913e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002538060000226991,2.2171917565809467e-05,3.7746908954467867e-05,0.0,1.3857448478630913e-06 +101265,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,39007.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.003753829883909814,0.0,0.0,0.003753829883909814,0.0014472911433933654,0.0010034273675096903,0.0013030806834004602,0.0,0.0,0.0014472911433933654,0.0010034273675096903,0.0013030806834004602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004473365717164918,0.00015916761290857214,0.0004473365717164918,0.00017247085733328453,0.00011957647853790523,0.00015528557862489161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017247085733328453,0.00011957647853790523,0.00015528557862489161,0.0,0.0 +101266,35.0,Eastern Counties in South Carolina and Georgia,G1302450010512,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,260347.0,,28386.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.0444127404621142,0.01964819360922565,0.0,0.06406086190431712,0.05540038617424759,0.004388909654516518,0.0014273915426315808,0.0007807028519231732,0.0020636160150437357,0.03676354122159906,0.004388909654516518,0.0014273915426315808,0.0007807028519231732,0.0010522673584666099,0.018636844952648522,0.0,0.0010113486565771258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013127757251726803,0.0,0.0,0.00529257715890615,0.0024752482005259285,0.006605352884078831,0.004381037434875675,0.0005230175564106823,0.00017009938582358074,9.30347922462964e-05,0.00012539658954920018,0.001245203408223551,0.0,6.75723169491293e-05,0.0,0.0,0.0,0.005712366173619752,0.00045254303770877655,0.00014717917559263832,8.049872701153554e-05,0.0002127806525138527 +101267,85.0,Rural Climate Zone 3A,G1302770960300,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,245679.0,,4635.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012646393047189702,0.0007881500258441872,0.0,0.013434525342672471,0.00705514130373747,0.003105011813325327,0.0015247046999560207,0.0,0.001749667525653651,0.006683938457047245,0.003105011813325327,0.001107757520802059,0.0,0.001749667525653651,0.0003712028466902255,0.00041694717915396166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.265931318061152e-05,0.0,0.0,0.0015070456961431796,0.00039403003973221905,0.0015597050093237913,0.000796511752196202,0.00037001812866993924,0.0001320092771010282,0.0,0.00020850442528383856,2.4801479815290264e-05,2.7857833365321254e-05,0.0,0.0,0.0,0.0,0.0008190791228011895,0.00036048184477872175,0.00017701329206677211,0.0,0.0002031307496771078 +101268,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,329381.0,,12352.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.016096810031339077,0.0021005159174336554,0.0,0.01819732594877273,0.008882432351688112,0.004734059690238358,0.0020621828760435017,0.0,0.002518633300441341,0.007177108459946015,0.004734059690238358,0.0016669908503519446,0.0,0.002518633300441341,0.0017053238917420983,0.00039519202569155695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001403446763709788,0.0,0.0,0.001918225720632077,0.0007116841592654365,0.002058570397003056,0.0008552821348348379,0.0005641487377401386,0.00019865207572046045,0.0,0.00030014065944375975,0.000113940164750883,2.640451162009578e-05,0.0,0.0,0.0,0.0,0.001004824134273452,0.0005355399558926619,0.0002332841997654099,0.0,0.0002849201013264436 +101269,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,54573.0,,2694.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0026958482628347685,0.00045822346053984455,0.0,0.0031540717233746133,0.001670873799502936,0.0005369285348834591,0.0006770515811861362,0.0,0.00026921780780208177,0.001372649120417648,0.0005369285348834591,0.0005170527997315798,0.0,0.00026921780780208177,0.0002982246790852881,0.00015999878145455648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.061615760289176e-05,0.0,0.0,0.0003212584506139116,0.00011783288029064136,0.0003518746082168033,0.0001635756491718206,6.398462093919042e-05,6.161607224610081e-05,0.0,3.208210825679977e-05,1.9925854004048888e-05,1.0690303598842876e-05,0.0,0.0,0.0,0.0,0.00018640605387082603,5.990083118667868e-05,7.553324108227424e-05,0.0,3.0034482077024368e-05 +101270,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,103616.0,,2099.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008593089763356779,0.0006179659124105431,0.0,0.009211055675767323,0.0026736171214432713,0.002562919711527457,0.003974488153190296,0.0,0.0,0.0020556512090327277,0.002562919711527457,0.003974488153190296,0.0,0.0,0.0006179659124105431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.128951419366346e-05,0.0,0.0,0.0010240201907422185,0.0003199471293346613,0.001065309704935882,0.0002449675729153403,0.0003054176791038336,0.0004736312815080777,0.0,0.0,4.128951419366346e-05,0.0,0.0,0.0,0.0,0.0,0.00030921865712411765,0.00029641588736073124,0.0004596716110277551,0.0,0.0 +101271,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,97117.0,,12547.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008653057254062492,0.0036932486010781483,0.0,0.01234630585514064,0.005064797796128783,0.002661218520498999,0.004620289538512857,0.0,0.0,0.001371549195050635,0.002661218520498999,0.004620289538512857,0.0,0.0,0.0036932486010781483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024676088297722774,0.0,0.0,0.001031167550515802,0.0005278059319174122,0.0012779284334930295,0.00016344477822659618,0.00031713209592851044,0.0005505906763606952,0.0,0.0,0.00024676088297722774,0.0,0.0,0.0,0.0,0.0,0.0005242417602080435,0.00027545460601625303,0.0004782320672687327,0.0,0.0 +101272,50.0,the Greater Atlanta and Macon Area,G1300890023000,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,74351.0,,3428.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006387841324154149,0.0009987446967121554,0.0,0.007386586020866303,0.004129138975565172,0.002877594810732608,0.0003798522345685243,0.0,0.0,0.003130394278853016,0.002877594810732608,0.0003798522345685243,0.0,0.0,0.0009987446967121554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.67303285750011e-05,0.0,0.0,0.000761226647018889,0.00028957225806870344,0.0008279569755938901,0.0003730430077728854,0.0003429173860299348,4.526625321606885e-05,0.0,0.0,6.67303285750011e-05,0.0,0.0,0.0,0.0,0.0,0.00046283214036338274,0.00032254747859816014,4.2577356632347374e-05,0.0,0.0 +101273,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,93519.0,,1388.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008023976005067525,0.00040448522371254095,0.0,0.008428461228780064,0.005161051642863351,0.0024324393373729167,0.0008349702485437976,0.0,0.0,0.004756566419150811,0.0024324393373729167,0.0008349702485437976,0.0,0.0,0.00040448522371254095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7025506026700386e-05,0.0,0.0,0.0009562030015958382,0.000306865294826868,0.0009832285076225387,0.0005668315912721499,0.0002898694854180588,9.950192490562956e-05,0.0,0.0,2.7025506026700386e-05,0.0,0.0,0.0,0.0,0.0,0.0006020663756805187,0.0002837580472460329,9.740408469598728e-05,0.0,0.0 +101274,50.0,the Greater Atlanta and Macon Area,G1301130140403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Propane,93975.0,,,28295.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008352557603785124,0.0,0.0026668627778334854,0.01101942038161861,0.008479579996633803,0.0019310015842550726,0.000608869174329173,0.0,0.0,0.0058127172188003175,0.0019310015842550726,0.000608869174329173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026668627778334854,0.0,0.0,0.0,0.0,0.00021507893769457455,0.0009953584028847527,0.000497546465412717,0.0012104373405793273,0.0006926904550414434,0.00023011378598586943,7.255778142151375e-05,0.0,0.0,0.0,0.0,0.0,0.00021507893769457452,0.0,0.0,0.0009314464740338214,0.00021211246520725353,6.688173775138975e-05,0.0,0.0 +101275,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,100835.0,,12981.0,,9.729435225087556,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.026996231880335713,0.01148160127377685,0.0,0.03847783315411257,0.029687500185268036,0.004790594064313637,0.0009940097676420468,0.000646166290181633,0.0023594706294544398,0.018205898911491183,0.004790594064313637,0.0009940097676420468,0.000646166290181633,0.0023594706294544398,0.01148160127377685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007671363085392139,0.0,0.0,0.0032170834916005185,0.0014774647079061484,0.003984219800139732,0.0021695582219594485,0.000570884897847128,0.00011845402825644752,7.700226143361422e-05,0.00028117309277015176,0.0007671363085392138,0.0,0.0,0.0,0.0,0.0,0.0030740173330720613,0.0004960461169687836,0.0001029255826831415,6.690783540780893e-05,0.00024431338329444834 +101276,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970500,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,8466.0,,46.0,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0017727434185283153,3.647381951903457e-05,0.0,0.00180921723804735,0.0008017623728288461,0.0003453020328616085,0.0006256790128378606,0.0,3.647381951903457e-05,0.0008017623728288461,0.0003453020328616085,0.0006256790128378606,0.0,0.0,0.0,0.0,3.647381951903457e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4378039976475446e-06,0.0,0.0,0.00021125293831546454,7.4058393513516e-05,0.0002136907423131121,9.554380815667226e-05,4.11486898137102e-05,7.456044034508208e-05,0.0,0.0,0.0,0.0,2.4378039976475446e-06,0.0,0.0,0.0,9.469796827352266e-05,4.078440453290253e-05,7.390036414165454e-05,0.0,4.30800536503234e-06 +101277,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,DistrictHeating,40404.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,100799.30806909183,0.01179255350613244,0.0018179765827374844,0.006403918052002692,0.0,0.0,0.02001444814087262,0.01526450662192142,0.001095535618191985,0.0035967001575774237,0.0,5.765114929041391e-05,0.00171162768234191,0.001095535618191985,0.0035967001575774237,0.0,0.0,0.0,0.0,0.0,0.00176032543344707,0.0,5.765114929041391e-05,0.01179255350613244,0.0,0.0,0.0,0.0,0.0,0.0,0.0007631422978428462,0.00026996693169272705,0.0007631422978428462,0.0002039712988121918,0.0001305528212957468,0.0004286116718884285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005820290710440025,4.177230184670298e-05,0.000137140629788341,0.0,2.198213522206525e-06 +101278,50.0,the Greater Atlanta and Macon Area,G1301210001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,44672.0,,16938.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.008842068346630625,0.011651769931138202,0.0,0.020493838277768826,0.007214025004576253,0.0011595684913803994,0.00607001974690624,0.0003700750504405531,0.005680221704436395,0.004924938689670995,0.0011595684913803994,0.0017247218629834146,0.0003700750504405531,0.0006628359721262773,0.0022890863149052578,0.004345297883922826,0.005017385732310117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007785020951197369,0.0,0.0,0.001053695556472756,0.0010465006781413611,0.0018321976515924929,0.0005868972970769404,0.00013818397674554708,0.0002055324265695767,4.410126917411077e-05,7.898913366417281e-05,0.00015294315821506963,0.0002903270083897742,0.000335231928514893,0.0,0.0,0.0,0.0006449509112332633,0.00010366816786450798,0.0005426741333011276,3.308558548867276e-05,0.0005078252656400935 +101279,50.0,the Greater Atlanta and Macon Area,G1302250040301,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,131186.0,,,,9.325022323477118,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.03366234397344231,0.0,0.0,0.03366234397344231,0.013554329326833703,0.011333235434912691,0.0078157227126416,0.0,0.0009589681148962598,0.013554329326833703,0.011333235434912691,0.0078157227126416,0.0,0.0009589681148962598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004011473150850158,0.001356182389675745,0.004011473150850158,0.0016152418921056534,0.0013505586448550222,0.0009313837990897763,0.0,0.00011427828223913054,0.0,0.0,0.0,0.0,0.0,0.0,0.0016152418921056534,0.0013505586448550222,0.0009313837990897763,0.0,0.00011427828223913054 +101280,35.0,Eastern Counties in South Carolina and Georgia,G1302450010600,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,38872.0,,2522.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.003540168844865207,0.0007423201971288347,0.0,0.004282458352387743,0.002541651814363149,0.0007472305341364675,0.0009936066934944253,0.0,0.0,0.0017993316172343144,0.0007472305341364675,0.0009936066934944253,0.0,0.0,0.0007423201971288347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.959694799451579e-05,0.0,0.0,0.00042187405079835904,0.00019269960955777077,0.00047147099879287483,0.00021442234858182457,8.904580152260386e-05,0.0001184059006939306,0.0,0.0,4.959694799451579e-05,0.0,0.0,0.0,0.0,0.0,0.0002798194450235294,8.226525450304155e-05,0.00010938967799369445,0.0,0.0 +101281,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,72485.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.006391789892081055,0.0,0.0,0.006391789892081055,0.0033243904584619364,0.002506490172802156,0.000560909260816963,0.0,0.0,0.0033243904584619364,0.002506490172802156,0.000560909260816963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007616989505729741,0.0001860535372648045,0.0007616989505729741,0.000396162071385114,0.00029869425723930913,6.684262194855096e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000396162071385114,0.00029869425723930913,6.684262194855096e-05,0.0,0.0 +101282,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7798.0,,555.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018550369568989264,0.0004402497535143333,0.0,0.002295286710413259,0.0016658031721833906,0.00019866239112181644,0.00038533225655143326,0.0,4.5406183482879774e-05,0.0012255534186690574,0.00019866239112181644,0.00038533225655143326,0.0,4.5406183482879774e-05,0.0004402497535143333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.941526022605596e-05,0.0,0.0,0.00022105660832852042,0.00010147639093659152,0.0002504718685545764,0.00014604381926131414,2.3673724785104372e-05,4.5918352944963054e-05,0.0,5.410855498344005e-06,2.941526022605596e-05,0.0,0.0,0.0,0.0,0.0,0.00018177983224840457,2.1678921456763212e-05,4.2049165306852533e-05,0.0,4.954924179751458e-06 +101283,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2004,gen4_led,_1000,Electricity,4244.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0003424927072600896,0.0,0.0,0.0003424927072600895,0.0002492761305856292,7.277514425285336e-05,2.047180602104473e-05,0.0,0.0,0.0002492761305856292,7.277514425285336e-05,2.047180602104473e-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,4.081373926109805e-05,1.3463216459230304e-05,4.081373926109805e-05,2.97054237420922e-05,8.672376664561094e-06,2.439558377259674e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.970542374209221e-05,8.672376664561098e-06,2.4395583772596745e-06,0.0,0.0 +101284,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,NaturalGas,3108.0,,71.0,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.000644618932724162,5.6075395995250426e-05,0.0,0.0007007770357931518,0.00028815144490774704,0.000208504532896794,0.00014788024784588168,0.0,5.6075395995250426e-05,0.00028815144490774704,0.000208504532896794,0.00014788024784588168,0.0,0.0,0.0,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.748094266154694e-06,0.0,0.0,7.682185001814501e-05,3.106040059657604e-05,8.056994428429971e-05,3.434017519415156e-05,2.4848329984057426e-05,1.7623488302853898e-05,0.0,0.0,0.0,0.0,3.748094266154694e-06,0.0,0.0,0.0,3.312943300914672e-05,2.3972244723323444e-05,1.700213152134166e-05,0.0,6.447116986280562e-06 +101285,50.0,the Greater Atlanta and Macon Area,G1301350050536,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,7196.0,,5150.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.001242978817671555,0.0035429665681711857,0.0,0.004785945385842741,0.0009252593460723982,0.00012493618950919444,0.00266145640441831,0.00037222664957102134,0.0007020667962718165,0.0005178899107037274,0.00012493618950919444,0.00013189302669770872,0.00037222664957102134,9.603304118990321e-05,0.00040736943536867073,0.002529563377720601,0.0006060337550819133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023671894282896512,0.0,0.0,0.00014812695726922707,0.00027882297987869616,0.00038484590009819225,6.171742879470826e-05,1.4888763462177228e-05,1.5717816307086063e-05,4.435860067089542e-05,1.144434803436011e-05,2.7217886543897203e-05,0.000169009658169587,4.049139811548088e-05,0.0,0.0,0.0,7.44016567587295e-05,1.004632866240654e-05,0.00021401217585146056,2.9931369551027524e-05,5.645436927456809e-05 +101286,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,783557.0,,17136.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,654728.2554853096,0.0,0.0,0.040333788563877176,0.0029141090119156185,0.0,0.04324791530615422,0.01884712596445625,0.014363170752409159,0.005312424079760481,0.0,0.004725159048805493,0.01674526253955467,0.014363170752409159,0.004500178492746442,0.0,0.004725159048805493,0.0021018634249015795,0.0008122455870140388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019470423399162032,0.0,0.0,0.004806500388112597,0.0014105056278748257,0.005001204622104216,0.001995500887994935,0.001711631568818484,0.0005362776580659125,0.0,0.0005630881603400303,0.0001404345913028993,5.4269642688721e-05,0.0,0.0,0.0,0.0,0.002179488486775822,0.001660962278678872,0.0006143306486381119,0.0,0.0005464191073205512 +101287,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen5_led,100001_200000,Electricity,106312.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.009101984814985286,0.0,0.0,0.009101984814985286,0.0026438482033344997,0.0023760506987807453,0.004082085912870043,0.0,0.0,0.0026438482033344997,0.0023760506987807453,0.004082085912870043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001084665231855042,0.00033903051260048293,0.001084665231855042,0.0003150620752232036,0.00028314918498317863,0.00048645397164865994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003150620752232036,0.00028314918498317863,0.00048645397164865994,0.0,0.0 +101288,50.0,the Greater Atlanta and Macon Area,G1301350050434,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,29330.0,,3970.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006885376539068206,0.0030793403408156737,0.0,0.00996471687988388,0.005234927095856485,0.0005211477468766613,0.003039637696329027,0.000416594754369055,0.0007524095864526505,0.0029079963414934636,0.0005211477468766613,0.003039637696329027,0.000416594754369055,0.0,0.0023269307543630226,0.0,0.0007524095864526505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020574571069277033,0.0,0.0,0.0008205155577607074,0.0004417949790578043,0.0010262612684534779,0.0003465396883624188,6.210405949158271e-05,0.0003622271063379497,4.964470356875627e-05,0.0,0.00015547356537487134,0.0,5.027214531789894e-05,0.0,0.0,0.0,0.0005391425553194205,5.367274898105755e-05,0.00031305078463102166,4.2904887936448186e-05,7.749029158552994e-05 +101289,50.0,the Greater Atlanta and Macon Area,G1301170130205,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,4862.0,,407.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00035339081651804754,0.00011975084377363626,0.0,0.0004731416602916838,0.0002744878387266537,0.00011054396188432542,8.81098596807047e-05,0.0,0.0,0.00015473699495301743,0.00011054396188432542,8.81098596807047e-05,0.0,0.0,0.00011975084377363626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.001552272675008e-06,0.0,0.0,4.211263384023524e-05,2.2955180716037393e-05,5.011418611291025e-05,1.8439591821317072e-05,1.3173226842598986e-05,1.0499815176319181e-05,0.0,0.0,8.001552272675008e-06,0.0,0.0,0.0,0.0,0.0,2.9073184185890204e-05,1.1708587817260343e-05,9.332414109759702e-06,0.0,0.0 +101290,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,327908.0,,6298.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,480687.657779034,0.0,0.0,0.026377010850133005,0.0018347172740373987,0.0,0.0282117281241704,0.018740936083485003,0.007981574460252425,0.0014892175804329718,0.0,0.0,0.016906218809447603,0.007981574460252425,0.0014892175804329718,0.0,0.0,0.0018347172740373987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012258481164705265,0.0,0.0,0.003143297074853941,0.0008609398939689692,0.003265881886500994,0.0020146812098046874,0.000951148702792222,0.0001774671622570311,0.0,0.0,0.00012258481164705265,0.0,0.0,0.0,0.0,0.0,0.0021695120349146065,0.0009239731554468136,0.00017239669613957403,0.0,0.0 +101291,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,23511.0,,3257.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002189335134065521,0.0009586205423150441,0.0,0.0031479556763805657,0.0012466731870252824,0.0007731018722454308,0.0011281499275035544,0.0,0.0,0.0002880526447102383,0.0007731018722454308,0.0011281499275035544,0.0,0.0,0.0009586205423150441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.404944033856587e-05,0.0,0.0,0.00026089810650589874,0.0001441595941752069,0.00032494754684446464,3.432658089187201e-05,9.212879812989004e-05,0.0001344390702733023,0.0,0.0,6.404944033856587e-05,0.0,0.0,0.0,0.0,0.0,0.00012868776929744223,7.980339708463069e-05,0.00011645321252951546,0.0,0.0 +101292,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,19869.0,,229.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016492257022710486,6.676117156417849e-05,0.0,0.0017159868738352267,0.0012304648868227642,0.00036812802518555206,0.0001173939618269108,0.0,0.0,0.0011637037152585857,0.00036812802518555206,0.0001173939618269108,0.0,0.0,6.676117156417849e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.461117874498449e-06,0.0,0.0,0.0001965349610937008,4.568664265243352e-05,0.00020099607896819925,0.00013867626734654975,4.3869087783263714e-05,1.3989605963887318e-05,0.0,0.0,4.461117874498449e-06,0.0,0.0,0.0,0.0,0.0,0.00014412617096928496,4.311937972767232e-05,1.375052827124204e-05,0.0,0.0 +101293,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,80981.0,,4860.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.009774367393355427,0.0018060640320167788,0.0,0.011580470173795977,0.005315470024630544,0.0013253898351240918,0.004696773942261699,0.0,0.00024279762335587072,0.00420230530650615,0.0013253898351240918,0.004003874628369315,0.0,0.00024279762335587072,0.001113164718124394,0.0006928993138923844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012067087149153692,0.0,0.0,0.0011647945946062198,0.0004525320867424402,0.001285465466097757,0.0005007815144365124,0.0001579444329817236,0.0004771348709253473,0.0,2.893377626263646e-05,7.437530135612253e-05,4.629557013541435e-05,0.0,0.0,0.0,0.0,0.000590032446886447,0.00014712208024370292,0.0005213554039029298,0.0,2.6951233878293885e-05 +101294,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,DistrictHeating,371220.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.1288134131935066,0.00800346447535481,0.056066834562755005,0.0,0.0,0.19288371223161643,0.15415868185754442,0.017539161105998218,0.020673833160881727,0.0,0.0005120907010834114,0.017853894889766433,0.017539161105998218,0.020673833160881727,0.0,0.0,0.0,0.0,0.0,0.007491373774271397,0.0,0.0005120907010834114,0.1288134131935066,0.0,0.0,0.0,0.0,0.0,0.0,0.0066813759225382964,0.0018364640851501331,0.0066813759225382964,0.002127614022983526,0.002090107808457992,0.0024636605969449183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005339964133292992,0.000607546004581346,0.0007161291615013179,0.0,1.7738514262240707e-05 +101295,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6185.0,,655.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014588700736876438,0.0005193177160091112,0.0,0.0019781877896967548,0.0013006514416243483,0.0002575498276242033,0.00038483601410899744,0.0,3.506779926546634e-05,0.0008164015248807036,0.0002575498276242033,0.00038483601410899744,0.0,0.0,0.00048424991674364494,0.0,3.506779926546634e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4699074660579125e-05,0.0,0.0,0.00017384667357849115,9.082293739010162e-05,0.0002085457482390703,9.728672344766064e-05,3.069099957613364e-05,4.585909474237311e-05,0.0,0.0,3.23559614807598e-05,0.0,2.343113179819326e-06,0.0,0.0,0.0,0.00013711808833546363,2.7151578728006728e-05,4.057042255022971e-05,0.0,3.6969394286046405e-06 +101296,50.0,the Greater Atlanta and Macon Area,G1301350050434,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,3225.0,,723.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007743036243473961,0.0005732427280871397,0.0,0.0013475463524345358,0.0008673490823041169,0.0002854221114743499,0.0001590457028006882,0.0,3.57294558553808e-05,0.000329835810072358,0.0002854221114743499,0.0001590457028006882,0.0,0.0,0.0005375132722317588,0.0,3.57294558553808e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.829966139355619e-05,0.0,0.0,9.227185901847903e-05,6.172012214925971e-05,0.00013057152041203522,3.9305722470166026e-05,3.401305121478008e-05,1.895308533353292e-05,0.0,0.0,3.591249450248473e-05,0.0,2.3871668910714575e-06,0.0,0.0,0.0,8.404244366052988e-05,2.765619081457887e-05,1.5410853357413843e-05,0.0,3.462032579512625e-06 +101297,50.0,the Greater Atlanta and Macon Area,G1302170100903,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,4873.0,,131.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011700569721899822,0.00010371467046909149,0.0,0.0012737716426590735,0.00055529529308571,0.00018890295642057814,0.0004257760156099546,0.0,0.00010371467046909149,0.00055529529308571,0.00018890295642057814,0.0004257760156099546,0.0,0.0,0.0,0.0,0.00010371467046909149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.927911865422627e-06,0.0,0.0,0.0001394327175404502,5.562199978800296e-05,0.00014636062940587283,6.617312967884234e-05,2.251108552077389e-05,5.073864634892469e-05,0.0,0.0,0.0,0.0,6.927911865422627e-06,0.0,0.0,0.0,6.380528964554446e-05,2.1705582596131002e-05,4.892309072017619e-05,0.0,1.191716312414548e-05 +101298,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,11808.0,,1264.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010197235484537704,0.00037192733872186005,0.0,0.0013916508871756304,0.0004904505982435882,0.0004186676091132613,0.00048253267981878084,0.0,0.0,0.00011852325952172815,0.0004186676091132613,0.00048253267981878084,0.0,0.0,0.00037192733872186005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4850343247544307e-05,0.0,0.0,0.00012151919168355519,7.302623977480559e-05,0.0001463695349310995,1.412426996965992e-05,4.989210018801154e-05,5.750282152588371e-05,0.0,0.0,2.4850343247544307e-05,0.0,0.0,0.0,0.0,0.0,5.158407660507875e-05,4.403416388501872e-05,5.075129444100202e-05,0.0,0.0 +101299,50.0,the Greater Atlanta and Macon Area,G1300670030410,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,59444.0,,4117.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005667050630114904,0.0012118711734836875,0.0,0.00687892180359859,0.0021259917866670625,0.0025234835674349094,0.002229415759890321,0.0,0.0,0.0009141206131833752,0.0025234835674349094,0.002229415759890321,0.0,0.0,0.0012118711734836875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.096937312763537e-05,0.0,0.0,0.0006753311673517086,0.0002618507126184526,0.0007563005404793439,0.00010893393779135366,0.00030071852443536715,0.0002656750479055628,0.0,0.0,8.096937312763537e-05,0.0,0.0,0.0,0.0,0.0,0.00023374138901677963,0.0002774434773983562,0.00024511229990667406,0.0,0.0 +101300,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,59195.0,,3367.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0052198549313748396,0.0009807635258450064,0.0,0.006200618457219847,0.0037876485970865276,0.0016045461374981159,0.0008084237226352026,0.0,0.0,0.002806885071241521,0.0016045461374981159,0.0008084237226352026,0.0,0.0,0.0009807635258450064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.552841932798171e-05,0.0,0.0,0.0006220395257554841,0.0002090877791658647,0.0006875679450834657,0.00033449080128082273,0.0001912105090168163,9.633821545784509e-05,0.0,0.0,6.552841932798171e-05,0.0,0.0,0.0,0.0,0.0,0.0004200009693492289,0.00017792329880684927,8.96436769273875e-05,0.0,0.0 +101301,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6985.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0014550655482956354,0.0,0.0,0.0014550655482956354,0.0005771299605528872,0.0002263692608244844,0.0006134383659244431,0.0,3.804525392008141e-05,0.0005771299605528872,0.0002263692608244844,0.0006134383659244431,0.0,3.804525392008141e-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.00017340138874269144,5.3261344606211057e-05,0.00017340138874269144,6.877706420999836e-05,2.6976615755627036e-05,7.310396750437915e-05,0.0,4.5338850009457205e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.877706420999836e-05,2.6976615755627036e-05,7.310396750437915e-05,0.0,4.5338850009457205e-06 +101302,50.0,the Greater Atlanta and Macon Area,G1302470060308,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,83254.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0067814209243907886,0.0,0.0,0.0067814209243907886,0.0023095463219336234,0.0023769713869696758,0.002094872525881192,0.0,0.0,0.0023095463219336234,0.0023769713869696758,0.002094872525881192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008081272444091873,0.0002413103614253993,0.0008081272444091873,0.0002752236331867664,0.00028325853215841373,0.000249641421850092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002752236331867664,0.00028325853215841373,0.000249641421850092,0.0,0.0 +101303,81.0,the Columbus-Albany Area,G1302150002700,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,23420.0,,882.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0020866477113934074,0.00025972613809745865,0.0,0.0023463738494908667,0.000780007033662414,0.0006131169546155061,0.0009532498612129461,0.0,0.0,0.0005202808955649553,0.0006131169546155061,0.0009532498612129461,0.0,0.0,0.00025972613809745865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7352413453699672e-05,0.0,0.0,0.0002486631843498836,8.991727998381821e-05,0.0002660155978035833,6.20012202065475e-05,7.30643766463992e-05,0.00011359758749693693,0.0,0.0,1.7352413453699672e-05,0.0,0.0,0.0,0.0,0.0,8.843178907561145e-05,6.951094909319189e-05,0.00010807285963477994,0.0,0.0 +101304,50.0,the Greater Atlanta and Macon Area,G1301390001004,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,191113.0,,1140.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008972431666256303,0.00019393469321253752,0.0,0.009166366359468837,0.003859527343555674,0.0030278315500638373,0.0011284133918564203,0.0,0.0011505763436314867,0.003859527343555674,0.0030278315500638373,0.0009344786986438829,0.0,0.0011505763436314867,0.0,0.00019393469321253752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2957177681534963e-05,0.0,0.0,0.0010692274511798733,0.000240308925744781,0.001082184628861408,0.00045993246176829437,0.00036082087123072686,0.00011136003196219181,0.0,0.00013711197332553864,0.0,1.2957177681534963e-05,0.0,0.0,0.0,0.0,0.0004556572366924554,0.0003574669213254715,0.0001332209056216628,0.0,0.00013583747196874074 +101305,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5552.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013331553216038964,0.0,0.0,0.0013331553216038964,0.000630889558483437,0.0002718581513811035,0.0003818585594543824,0.0,4.846634521123415e-05,0.000630889558483437,0.0002718581513811035,0.0003818585594543824,0.0,4.846634521123415e-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.00015886958903993406,4.8134098588935345e-05,0.00015886958903993406,7.518191111090123e-05,3.239681985075149e-05,4.5505359674754985e-05,0.0,5.775642358545899e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.518191111090123e-05,3.239681985075149e-05,4.5505359674754985e-05,0.0,5.775642358545899e-06 +101307,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010401,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,68018.0,,2761.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.0035012499303406675,0.0004695708918486784,0.0,0.003970820822189346,0.0017920785501704172,0.0007479198357820874,0.0010353821854854036,0.0,0.0003954579811128577,0.0017920785501704172,0.0007479198357820874,0.0005658112936367251,0.0,0.0003954579811128577,0.0,0.0004695708918486784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.137411861824622e-05,0.0,0.0,0.00041723671373629395,0.0001446381537670597,0.0004486108323545401,0.0002135582948680429,8.912806015808867e-05,6.742656178472195e-05,0.0,4.712590981594504e-05,0.0,3.137411861824622e-05,0.0,0.0,0.0,0.0,0.00020246339133313143,8.449762784302079e-05,0.0001169742188919954,0.0,4.467759740679268e-05 +101308,81.0,the Columbus-Albany Area,G1300950000100,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,35178.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0038627321348966505,0.0,0.0,0.0038627321348966505,0.002817455083845859,0.0006874760496740749,0.00035780100137671654,0.0,0.0,0.002817455083845859,0.0006874760496740749,0.00035780100137671654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004603147018677609,0.00011695419968233995,0.0004603147018677609,0.0003357509533808286,8.192525958194993e-05,4.2638488904982336e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003357509533808286,8.192525958194993e-05,4.2638488904982336e-05,0.0,0.0 +101309,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,64464.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005214235815478856,0.0,0.0,0.005214235815478855,0.003267804442709405,0.0015639366350498414,0.00038252511131904647,0.0,0.0,0.003267804442709405,0.0015639366350498414,0.00038252511131904647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006213706755042134,0.00016559507197015468,0.0006213706755042134,0.0003894181095443106,0.00018637138743934263,4.5584798085280265e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003894181095443107,0.00018637138743934266,4.558479808528028e-05,0.0,0.0 +101310,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,28467.0,,1667.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00674839837255012,0.0012928830604826901,0.0,0.008041281433032812,0.0038926380969189255,0.0004453003323583823,0.002698405191779839,0.0004245191111097707,0.0005803378400828235,0.0038926380969189255,0.0004453003323583823,0.0019859408321630414,0.0004245191111097707,0.0,0.0,0.0007124643596167978,0.0005803378400828235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.638248472861012e-05,0.0,0.0,0.0008041903347587434,0.00034094357455920763,0.0008905728194873536,0.00046387628018363834,5.3065365080417457e-05,0.0002366597723579177,5.058891713676987e-05,0.0,0.0,4.760248126485606e-05,3.877460084415752e-05,0.0,0.0,0.0,0.00043111010528448795,4.931706169093633e-05,0.0002988486772631626,4.7015539109754095e-05,6.427248079822953e-05 +101311,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,44108.0,,2774.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.00392995753445233,0.0008165583547629779,0.0,0.004746515889215308,0.002467444346335304,0.0009490760747564585,0.0013299954681235456,0.0,0.0,0.001650885991572326,0.0009490760747564585,0.0013299954681235456,0.0,0.0,0.0008165583547629779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.455787162605835e-05,0.0,0.0,0.0004683257914223312,0.00020473365065315242,0.0005228836630483897,0.00019673303891282233,0.00011309964546277452,0.00015849310704673435,0.0,0.0,5.455787162605835e-05,0.0,0.0,0.0,0.0,0.0,0.00027181755382117473,0.00010455171457611727,0.00014651439465109765,0.0,0.0 +101312,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,18906.0,,7379.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0037163137381159175,0.005075980948629871,0.0,0.008792294686745791,0.002543118452242552,0.0003633333731650856,0.003533858131852203,0.0003672062515999286,0.0019847784778860202,0.0014256495838483165,0.0003633333731650856,0.001314555348745135,0.0003672062515999286,0.00024556918075745225,0.0011174688683942358,0.002219302783107068,0.001739209297128568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003391488797800337,0.0,0.0,0.0004428639027233323,0.00044595546375637585,0.0007820127825033659,0.00016989112951993363,4.329753808974664e-05,0.0001566523047072574,4.3759059419562334e-05,2.926387098683231e-05,7.466306882165604e-05,0.00014828149679849332,0.00011620431415988441,0.0,0.0,0.0,0.00022619250240461732,3.2315948480831146e-05,0.00031431182974654416,3.266041378244284e-05,0.00017653208808893033 +101313,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,45741.0,,5102.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,71543.06474093779,0.0,0.0,0.005089837953005708,0.0018959991235917828,0.0,0.00698583707659749,0.004076411677670653,0.0007655526084650395,0.0020235976830732514,0.0,0.00012027510738854499,0.002442429395625695,0.0007655526084650395,0.0017615420931026558,0.0,0.00012027510738854499,0.001633982282044959,0.00026205558997059584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012667973983218785,0.0,0.0,0.0006065467301647548,0.00031719638261866814,0.0007332264699969426,0.00029105986816342606,9.1229511768515e-05,0.00020991976689317516,0.0,1.433296576046316e-05,0.00010917328378703744,1.7509044991622618e-05,0.0,0.0,0.0,0.0,0.00042785609110262165,8.035163582360121e-05,0.00021239478813846993,0.0,1.2623954932249748e-05 +101314,81.0,the Columbus-Albany Area,G1302150000900,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,122082.0,,5180.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.00987093383967834,0.0015090515408658235,0.0,0.01137998538054416,0.00773251094486286,0.0028707000036602382,0.0007767744320210651,0.0,0.0,0.006223459403997035,0.0028707000036602382,0.0007767744320210651,0.0,0.0,0.0015090515408658235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010082689653325984,0.0,0.0,0.0011762991473382473,0.0003502418039511949,0.001277126043871507,0.0007416370233370407,0.00034209549181615025,9.256663218505629e-05,0.0,0.0,0.00010082689653325984,0.0,0.0,0.0,0.0,0.0,0.0008677859225627246,0.0003221661202732767,8.717400103550601e-05,0.0,0.0 +101315,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,8515.0,,1413.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0020355864988718343,0.0011210116774625727,0.0,0.0031565981763344068,0.0019533756675749626,0.00041783613653098106,0.0006996191367608014,0.0,8.576723546766179e-05,0.0009181312255800517,0.00041783613653098106,0.0006996191367608014,0.0,0.0,0.0010352444419949108,0.0,8.576723546766179e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.489948473969091e-05,0.0,0.0,0.00024257506354631732,0.0001529903940998188,0.0003174745482860083,0.00010941109135493534,4.979234605216947e-05,8.33716261392125e-05,0.0,0.0,6.916901656239568e-05,0.0,5.7304681772952245e-06,0.0,0.0,0.0,0.00019646056388982193,4.202382796051233e-05,7.036412524108746e-05,0.0,8.626031194586558e-06 +101316,50.0,the Greater Atlanta and Macon Area,G1300670030408,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,79522.0,,8320.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.007549935238642532,0.0024237828615331575,0.0,0.009973718100175692,0.006799585838132312,0.002420684754390507,0.0007534475076528716,0.0,0.0,0.004375802976599154,0.002420684754390507,0.0007534475076528716,0.0,0.0,0.0024237828615331575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016194229916638902,0.0,0.0,0.0008997107561180411,0.0004587252147659734,0.00106165305528443,0.0005214557317722713,0.0002884681844089147,8.978683993685506e-05,0.0,0.0,0.00016194229916638902,0.0,0.0,0.0,0.0,0.0,0.0007237823454820473,0.00025766994209850904,8.02007677038736e-05,0.0,0.0 +101317,50.0,the Greater Atlanta and Macon Area,G1300670030506,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,59811.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0056833256851954944,0.0,0.0,0.005683325685195494,0.003855260229434963,0.0012411867674242906,0.000586848314736803,0.0,0.0,0.003855260229434963,0.0012411867674242906,0.000586848314736803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006772718794663794,0.00019290203383422625,0.0006772718794663794,0.0004594245492956625,0.00014791003389652367,6.993367670601835e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045942454929566256,0.0001479100338965237,6.993367670601835e-05,0.0,0.0 +101318,50.0,the Greater Atlanta and Macon Area,G1301950020300,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,43879.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003707611336825473,0.0,0.0,0.0037076113368254737,0.0012733424548979863,0.0009024585627902479,0.001531779629530941,0.0,0.0,0.0012733424548979863,0.0009024585627902479,0.001531779629530941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044182797706161705,0.00015856030718015395,0.00044182797706161705,0.00015174145018014698,0.0001075440236195175,0.00018253884604833563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015174145018014695,0.00010754402361951747,0.00018253884604833558,0.0,0.0 +101319,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,15218.0,,639.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001291142426550654,0.00018806590739232267,0.0,0.0014792083339429764,0.0005781614930424229,0.00041854485068807047,0.00048253267981878084,0.0,0.0,0.0003900955856501001,0.00041854485068807047,0.00048253267981878084,0.0,0.0,0.00018806590739232267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2564526016847905e-05,0.0,0.0,0.0001538646655690438,5.9497522335328686e-05,0.00016642919158589174,4.648745606351443e-05,4.987773784865153e-05,5.750312891878194e-05,0.0,0.0,1.2564526016847905e-05,0.0,0.0,0.0,0.0,0.0,6.505030270932208e-05,4.709146071180711e-05,5.429088112419295e-05,0.0,0.0 +101320,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Propane,163850.0,,,6681.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013266914872015055,0.0,0.0006297054635434708,0.013896620335558527,0.008982688297720724,0.0037920527690050022,0.001121909642432239,0.0,0.0,0.008352982834177253,0.0037920527690050022,0.001121909642432239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006297054635434708,0.0,0.0,0.0,0.0,5.078506827654009e-05,0.0015809934843286715,0.00041696222113959415,0.0016317785526052116,0.0009954093745939347,0.00045189185110952764,0.00013369587819036597,0.0,0.0,0.0,0.0,0.0,5.0785068276540084e-05,0.0,0.0,0.0010547714303924944,0.00044527303973156075,0.00013173764903093112,0.0,0.0 +101321,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,200308.0,,7509.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.018224282094467917,0.0022570583731957145,0.0,0.02048130912964143,0.005951403796753789,0.003764636607361554,0.00773535204873634,0.0,0.0030299166767897433,0.005951403796753789,0.003764636607361554,0.005478293675540626,0.0,0.0030299166767897433,0.0,0.0022570583731957145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015080313577538163,0.0,0.0,0.002171751195880442,0.000977362784958609,0.0023225543316558236,0.0007092168704242617,0.00044862420432871655,0.0006528372848690246,0.0,0.0003610691017690998,0.0,0.00015080313577538163,0.0,0.0,0.0,0.0,0.0006748815996131307,0.00042690498952938446,0.0008771790559849758,0.0,0.00034358868652833215 +101322,50.0,the Greater Atlanta and Macon Area,G1302550160700,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6130.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.0009716620786655179,0.0,0.0,0.0009716620786655178,0.0005517804601119445,0.00016045144674671068,0.0002478016729443075,0.0,1.1628498862555079e-05,0.0005517804601119445,0.00016045144674671068,0.0002478016729443075,0.0,1.1628498862555079e-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.00011579098226979778,3.876538753205713e-05,0.00011579098226979778,6.57545487021489e-05,1.912067068720843e-05,2.95300184584005e-05,0.0,1.385744422039944e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.57545487021489e-05,1.912067068720843e-05,2.95300184584005e-05,0.0,1.3857444220399443e-06 +101323,50.0,the Greater Atlanta and Macon Area,G1300570090902,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6331.0,,578.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014878175494964013,0.0004585280168107203,0.0,0.0019462628592333822,0.001246478308325102,0.0003964977115062398,0.00024291067557234589,0.0,6.037616382969442e-05,0.0007879502915143818,0.0003964977115062398,0.00024291067557234589,0.0,6.037616382969442e-05,0.0004585280168107203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.063375404817366e-05,0.0,0.0,0.00017729593409466994,8.853673298799415e-05,0.0002079296881428436,9.389617900494304e-05,4.724869131412796e-05,2.894647609294822e-05,0.0,7.194731885547227e-06,3.063375404817366e-05,0.0,0.0,0.0,0.0,0.0,0.00013316795554992335,4.2359974713445196e-05,2.5951448838837824e-05,0.0,6.450309040637253e-06 +101324,35.0,Eastern Counties in South Carolina and Georgia,G1300510010603,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,17313.0,,351.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,24034.3828889517,0.0,0.0,0.0014699303447899994,0.00010223753570747261,0.0,0.0015721678804974722,0.0011305053710731227,0.0003442240024280414,9.743850699630785e-05,0.0,0.0,0.0010282678353656502,0.0003442240024280414,9.743850699630785e-05,0.0,0.0,0.00010223753570747261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.83078694075156e-06,0.0,0.0,0.00017516786861459052,6.498670519422148e-05,0.00018199865555534205,0.00012253606827313456,4.102030075439931e-05,1.1611499587056646e-05,0.0,0.0,6.830786940751561e-06,0.0,0.0,0.0,0.0,0.0,0.00013087053881821894,3.98483561640751e-05,1.1279760573047996e-05,0.0,0.0 +101325,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,163097.0,,5539.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.00849225801827843,0.0009419254504403052,0.0,0.009434165738357318,0.004354771798740589,0.0031145152870464756,0.0013251317518119064,0.0,0.0006397291703969252,0.0039596684248561324,0.0031145152870464756,0.0007783274056174781,0.0,0.0006397291703969252,0.0003951033738844566,0.0005468043461944284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.29334601721281e-05,0.0,0.0,0.0010120052931760783,0.0004061949874287956,0.0010749387533482064,0.00047186571540238487,0.00037115051725757715,9.275171015924584e-05,0.0,7.623523746539132e-05,2.6398291321895573e-05,3.6533984220393984e-05,0.0,0.0,0.0,0.0,0.0004961872727571153,0.0003548711431186506,0.00015098690364568888,0.0,7.289141361074822e-05 +101326,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,36858.0,,3613.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00510398842337095,0.001063425547821699,0.0,0.006167413971192649,0.0024834643208227042,0.0013738202259166651,0.002310129424453279,0.0,0.0,0.0014200387730010054,0.0013738202259166651,0.002310129424453279,0.0,0.0,0.001063425547821699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.105095566368341e-05,0.0,0.0,0.0006082323498672877,0.00026260624030340383,0.0006792833055309711,0.00016922325212380055,0.00016371547797371856,0.00027529361976976857,0.0,0.0,7.105095566368341e-05,0.0,0.0,0.0,0.0,0.0,0.00027353050417830936,0.0001513135243758437,0.00025443927697681797,0.0,0.0 +101327,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,14310.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032445985027930303,0.0,0.0,0.0032445985027930303,0.0019287289596006492,0.0007304688752655632,0.0005135282208473598,0.0,7.195515415319745e-05,0.0019287289596006492,0.0007304688752655632,0.0005135282208473598,0.0,7.195515415319745e-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.0003866573277939667,0.00011374278301108701,0.0003866573277939667,0.0002298457528461714,8.704964361652599e-05,6.119692450351107e-05,0.0,8.574862992117027e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002298457528461714,8.704964361652599e-05,6.119692450351107e-05,0.0,8.574862992117027e-06 +101328,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,22586.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.002012348174546669,0.0,0.0,0.002012348174546669,0.0007807742738198566,0.0004916168032829009,0.0007399570974439118,0.0,0.0,0.0007807742738198566,0.0004916168032829009,0.0007399570974439118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002398075433476496,8.934901355716535e-05,0.0002398075433476496,9.304332266257271e-05,5.85850000287627e-05,8.817922065631422e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.304332266257271e-05,5.85850000287627e-05,8.817922065631422e-05,0.0,0.0 +101329,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2711.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0006509873774020886,0.0,0.0,0.0006509873774020889,0.0003280989615238326,0.00017682772365463926,0.00011959442862703853,0.0,2.654897067031768e-05,0.0003280989615238326,0.00017682772365463926,0.00011959442862703853,0.0,2.654897067031768e-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,7.757859609474604e-05,2.7241396501078822e-05,7.757859609474604e-05,3.909977013185842e-05,2.1072676718405163e-05,1.4252147116376925e-05,0.0,3.1638583847558737e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.909977013185841e-05,2.1072676718405157e-05,1.425214711637692e-05,0.0,3.163858384755873e-06 +101330,81.0,the Columbus-Albany Area,G1302150000800,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,8221.0,,39.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0016232090292076474,3.0849738504761666e-05,0.0,0.00165397606063867,0.0009302064583459905,0.00030965528407996695,0.0003833472867816899,0.0,3.0849738504761666e-05,0.0009302064583459905,0.00030965528407996695,0.0003833472867816899,0.0,0.0,0.0,0.0,3.0849738504761666e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0590638674502342e-06,0.0,0.0,0.00019343179871321873,5.932813583448958e-05,0.000195490862580669,0.00011084925303819277,3.690047153685371e-05,4.5682074138172266e-05,0.0,0.0,0.0,0.0,2.0590638674502342e-06,0.0,0.0,0.0,0.00010994528110034923,3.659954943004423e-05,4.530953835690573e-05,0.0,3.6462692140508813e-06 +101331,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,61118.0,,5125.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.00520526412415337,0.0015087010455950686,0.0,0.006713965169748437,0.002611746875147102,0.001711375205585098,0.0023908737786225353,0.0,0.0,0.0011030458295520336,0.001711375205585098,0.0023908737786225353,0.0,0.0,0.0015087010455950686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010080181922308368,0.0,0.0,0.0006203020004362543,0.0002751075135449948,0.0007211038196593382,0.00013144799539932701,0.00020394151731812556,0.0002849161449442037,0.0,0.0,0.00010080181922308368,0.0,0.0,0.0,0.0,0.0,0.00028051093504890526,0.00018380780454122295,0.00025678837624244983,0.0,0.0 +101332,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,29914.0,,3012.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026653002381365936,0.000886745484365824,0.0,0.0035520457225024175,0.0016169432870070664,0.0008203638659438931,0.0011147078799451605,0.0,0.0,0.0007301978026412422,0.0008203638659438931,0.0011147078799451605,0.0,0.0,0.000886745484365824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9246644494423346e-05,0.0,0.0,0.0003176193961135428,0.0001422955153677165,0.00037686604060796616,8.701645758321558e-05,9.776139737136704e-05,0.00013283788392962453,0.0,0.0,5.9246644494423346e-05,0.0,0.0,0.0,0.0,0.0,0.0001715549466611824,8.703921800823861e-05,0.00011826861982324802,0.0,0.0 +101333,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,32228.0,,9187.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0074623990870452215,0.007125047900083322,0.0,0.01458744698712854,0.0035819709683696426,0.0004647877810778975,0.009608282548117809,0.000416594754369055,0.000515891795977207,0.0035819709683696426,0.0004647877810778975,0.0024832346480344867,0.000416594754369055,0.000515891795977207,0.0,0.007125047900083322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00047605278695073627,0.0,0.0,0.0008892837895502782,0.0007046775591215595,0.0013653365765010142,0.00042685853164040673,5.538811774502366e-05,0.0002959236423016138,4.964502133304835e-05,6.147811259799077e-05,0.0,0.00047605278695073627,0.0,0.0,0.0,0.0,0.0003352605828418861,4.350259222030704e-05,0.000899303326474945,3.899188502418614e-05,4.8285758240354716e-05 +101334,50.0,the Greater Atlanta and Macon Area,G1300630040611,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,18839.0,,5208.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004227644321171837,0.004039481278971372,0.0,0.00826712560014321,0.0030241932867629373,0.0006985563049290112,0.0034631864780419745,0.00041893971707804224,0.0006623306741143106,0.002016101904247602,0.0006985563049290112,0.001094127255700249,0.00041893971707804224,0.0,0.0010080913825153354,0.002369059222341726,0.0006623306741143106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002698944377900195,0.0,0.0,0.0005038036579114023,0.00040431039339948254,0.0007736980957014217,0.00024025661501262335,8.324617563446251e-05,0.00013038592458732633,4.992457876630978e-05,0.0,6.73547512997072e-05,0.00015828663700800686,4.425304948230541e-05,0.0,0.0,0.0,0.00028302613268159084,6.537600963198566e-05,0.000324110327182349,3.9207443674420376e-05,6.198575007473022e-05 +101335,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6193.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012588016623122588,0.0,0.0,0.001258801662312259,0.0006825814795705042,0.0003277681332288754,0.0001937826737711973,0.0,5.45866686679429e-05,0.0006825814795705042,0.0003277681332288754,0.0001937826737711973,0.0,5.45866686679429e-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.0001500108650933462,4.622476847534345e-05,0.0001500108650933462,8.134294806934208e-05,3.905999069414791e-05,2.309299979722143e-05,0.0,6.505070365414488e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.134294806934206e-05,3.9059990694147906e-05,2.3092999797221428e-05,0.0,6.505070365414487e-06 +101336,50.0,the Greater Atlanta and Macon Area,G1300890023310,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,42522.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0035011648071896525,0.0,0.0,0.0035011648071896525,0.0020734841392175663,0.0010043941862075772,0.0004232864817645094,0.0,0.0,0.0020734841392175663,0.0010043941862075772,0.0004232864817645094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004172264376170664,0.00010060962982955208,0.0004172264376170664,0.0002470927387036233,0.00011969154020231761,5.044215871112551e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002470927387036233,0.00011969154020231761,5.044215871112551e-05,0.0,0.0 +101337,50.0,the Greater Atlanta and Macon Area,G1301350050607,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,29430.0,,2762.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002595211456759829,0.0008046270227054836,0.0,0.003399838479465312,0.0021760254109194164,0.0009843779841780989,0.0002394350843677976,0.0,0.0,0.0013713983882139326,0.0009843779841780989,0.0002394350843677976,0.0,0.0,0.0008046270227054836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.376104679128722e-05,0.0,0.0,0.0003092667065237628,0.00013272056069507925,0.00036302775331504997,0.00016342709252079653,0.00011730656334314842,2.853305065981792e-05,0.0,0.0,5.376104679128722e-05,0.0,0.0,0.0,0.0,0.0,0.00023235151341859323,0.00010510985453202294,2.5566385364433854e-05,0.0,0.0 +101338,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970201,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11278.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027079950083724034,0.0,0.0,0.0027079950083724034,0.001191064568919766,0.00046390397660377527,0.0009675900556761576,0.0,8.527099302522596e-05,0.001191064568919766,0.00046390397660377527,0.0009675900556761576,0.0,8.527099302522596e-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.00032270432229412405,0.00010692166986329273,0.00032270432229412405,0.00014193589106828173,5.52821618638978e-05,0.00011530504753890899,0.0,1.0161509873716998e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00014193589106828173,5.52821618638978e-05,0.00011530504753890899,0.0,1.0161509873716998e-05 +101339,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,208065.0,,15047.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011722676677927792,0.0025589344119491208,0.0,0.014281611089876913,0.006050290800617398,0.003078770878423649,0.0031191606417385297,0.0,0.0020334064994587554,0.00518774417825467,0.003078770878423649,0.0031191606417385297,0.0,0.00033701870987236365,0.0008625466223627287,0.0,0.0016963877895863919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001709731792155483,0.0,0.0,0.0013969690895412174,0.00048731318815045226,0.0015679422687567657,0.0006182136094493262,0.00036689127143083283,0.00037170444272566276,0.0,4.0161878828852536e-05,5.7630370500453785e-05,0.0,0.00011334280871509448,0.0,0.0,0.0,0.0006642462551919268,0.0003380105343660805,0.0003424448251983922,0.0,0.00022324260057228544 +101340,50.0,the Greater Atlanta and Macon Area,G1300890021813,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,13788.0,,1375.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.00315316623575724,0.0010663920071077436,0.0,0.004219558242864984,0.00205135720566548,0.00026611283707852487,0.0013186776502815505,0.00041772680533201434,0.0001656028837243448,0.0009849651985577364,0.00026611283707852487,0.0013186776502815505,0.00041772680533201434,0.0001656028837243448,0.0010663920071077436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.125053550265673e-05,0.0,0.0,0.0003757561608627525,0.0001780206619738465,0.00044700669636540925,0.00011737622247645052,3.171210476726038e-05,0.00015714403055134678,4.977962115699395e-05,1.973454590195966e-05,7.125053550265673e-05,0.0,0.0,0.0,0.0,0.0,0.00021731431462533897,2.8191154930505374e-05,0.00013969655260002477,4.425266070221535e-05,1.7543447370913092e-05 +101341,50.0,the Greater Atlanta and Macon Area,G1301210003000,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,38236.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,100799.30806909183,0.0,0.0,0.0057737953577697764,0.0,0.0,0.005773795357769778,0.003352720057029261,0.0006225887372233714,0.0017501709696515996,0.0,4.8370187756919244e-05,0.003352720057029261,0.0006225887372233714,0.0017501709696515996,0.0,4.8370187756919244e-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.000688051504900304,0.0002361730484428959,0.000688051504900304,0.00039953686229008865,7.419263950947974e-05,0.00020856433158496156,0.0,5.764177359294901e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0003995368622900885,7.419263950947972e-05,0.00020856433158496148,0.0,5.764177359294899e-06 +101342,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,689046.0,,85622.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.18060032367915063,0.07414096693866877,0.0,0.25474129061781936,0.13121303635300133,0.02595078741648683,0.053558928156143555,0.000649652168729198,0.04336888652345846,0.09707704689679343,0.02595078741648683,0.03498209008507532,0.000649652168729198,0.021940837391689057,0.03413598945620788,0.018576838071068236,0.0214280491317694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004953666020179121,0.0,0.0,0.021521789994121434,0.011789493558671624,0.026475456014300555,0.011568483234138642,0.003092504961131448,0.004168747768713686,7.741778785211255e-05,0.0026146470007329934,0.0022807672737029717,0.0012411957290919154,0.0014316969854275372,0.0,0.0,0.0,0.013637070629741493,0.0026970850666389813,0.005566420124244562,6.751884382806728e-05,0.004507361349847453 +101343,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6663.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0004867371558815661,0.0,0.0,0.0004867371558815661,0.0002743650803014629,0.0001210398072381398,9.13322683419635e-05,0.0,0.0,0.0002743650803014629,0.0001210398072381398,9.13322683419635e-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,5.800446179040703e-05,2.078611304937371e-05,5.800446179040703e-05,3.269608375827484e-05,1.4424312566290377e-05,1.0884065465841826e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.269608375827484e-05,1.4424312566290377e-05,1.0884065465841826e-05,0.0,0.0 +101344,50.0,the Greater Atlanta and Macon Area,G1301210006900,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,47299.0,,5691.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0022510112251670636,0.0009678826995592624,0.0,0.0032188939247263263,0.0017262102574949207,0.0004867516120647095,0.0005240562924925008,0.0,0.000481875762674195,0.0011398494749723547,0.0004867516120647095,0.0005240562924925008,0.0,0.00010035384563749887,0.0005863607825225661,0.0,0.00038152191703669615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.466843185405848e-05,0.0,0.0,0.000268247662185696,0.0001251507889818979,0.00033291609403975444,0.00013583315511109205,5.8005033711809505e-05,6.245054389028353e-05,0.0,1.1958929472510905e-05,3.917730146816333e-05,0.0,2.549113038589515e-05,0.0,0.0,0.0,0.00017853436300030543,5.034258638079052e-05,5.4200846015263395e-05,0.0,4.983829864339507e-05 +101345,50.0,the Greater Atlanta and Macon Area,G1300570090804,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5777.0,,618.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013870803336819247,0.000490204826052875,0.0,0.0018772851597347998,0.0014131330619098065,0.00021388049268984897,0.00020966243192914433,0.0,4.069188027973925e-05,0.0009229282358569315,0.00021388049268984897,0.00020966243192914433,0.0,4.069188027973925e-05,0.000490204826052875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2751787517936685e-05,0.0,0.0,0.00016529543398286707,7.103494020397785e-05,0.00019804722150080372,0.00010998340873023752,2.548768661854953e-05,2.4985029225840324e-05,0.0,4.849165435547708e-06,3.2751787517936685e-05,0.0,0.0,0.0,0.0,0.0,0.0001490807483726642,2.2563667054413534e-05,2.2118675940811414e-05,0.0,4.29285544886754e-06 +101346,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,24321.0,,1560.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.001213536857034094,0.0002652993979282501,0.0,0.0014788362549623443,0.0006494808691779542,0.00023123937364032866,0.00036185894622185765,0.0,0.00023625706592220362,0.0005950486596183922,0.00023123937364032866,0.00015099175785316966,0.0,0.00023625706592220362,5.443220955956209e-05,0.00021086718836868797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7725753240529043e-05,0.0,0.0,0.0001446147174283382,5.804354500106753e-05,0.00016234047066886724,7.09107377069204e-05,2.7556325531827292e-05,1.7993380480680967e-05,0.0,2.8154273708909573e-05,3.6368417061033308e-06,1.4088911534425707e-05,0.0,0.0,0.0,0.0,7.129729856092744e-05,2.53844931296338e-05,3.9723364536320826e-05,0.0,2.5935314441985157e-05 +101347,50.0,the Greater Atlanta and Macon Area,G1300890023414,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,64297.0,,18789.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012454961886542031,0.01292458425675225,0.0,0.0253796178632653,0.00540775753454809,0.0013660502879343436,0.014613230974314812,0.0003683537711361784,0.0036241535753608577,0.00540775753454809,0.0013660502879343436,0.0016886467175625623,0.0003683537711361784,0.0036241535753608577,0.0,0.01292458425675225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008635469932048394,0.0,0.0,0.001484237052271247,0.0012145642617573706,0.0023477840454760863,0.0006444334535578184,0.00016278993633924967,0.00020123321526264684,4.389610505792967e-05,0.00043188434205360246,0.0,0.0008635469932048394,0.0,0.0,0.0,0.0,0.0005002536653552916,0.0001263687691678126,0.0013518213993289488,3.407518236183575e-05,0.0003352583946861924 +101348,81.0,the Columbus-Albany Area,G1302150001400,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,97581.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007846229701157802,0.0,0.0,0.007846229701157802,0.005905873048275903,0.0013601297828225267,0.0005802268700593732,0.0,0.0,0.005905873048275903,0.0013601297828225267,0.0005802268700593732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009350188253992413,0.0002259016652546335,0.0009350188253992413,0.000703790570870124,0.00016208382884044082,6.914442568867665e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000703790570870124,0.00016208382884044082,6.914442568867665e-05,0.0,0.0 +101349,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,44182.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0036293221511600328,0.0,0.0,0.0036293221511600328,0.0014389128808740927,0.0009680422514484388,0.0012223363292312042,0.0,0.0,0.0014389128808740927,0.0009680422514484388,0.0012223363292312042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043250032910927005,0.00013231700084262638,0.00043250032910927005,0.00017147287251386567,0.00011535999696508262,0.00014566380240060479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017147287251386567,0.00011535999696508262,0.00014566380240060479,0.0,0.0 +101350,81.0,the Columbus-Albany Area,G1300950000400,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,5098.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001381290838520173,0.0,0.0,0.0013812908385201733,0.0007193861273844959,0.00023199334183875733,0.00038094878164324995,0.0,4.90452947274093e-05,0.0007193861273844959,0.00023199334183875733,0.00038094878164324995,0.0,4.90452947274093e-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.00016460871459398002,5.28207649659336e-05,0.00016460871459398002,8.572939342185727e-05,2.764669447554722e-05,4.5397745010470754e-05,0.0,5.844737905169162e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.572939342185726e-05,2.7646694475547215e-05,4.539774501047075e-05,0.0,5.844737905169161e-06 +101351,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,33187.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0029264659322279507,0.0,0.0,0.0029264659322279507,0.0017536805107374771,0.0009426142849511901,0.00023014076293984554,0.0,0.0,0.0017536805107374771,0.0009426142849511901,0.00023014076293984554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003487417612950746,9.831680743913857e-05,0.0003487417612950746,0.0002089830000507916,0.00011232967462071575,2.7425467055525012e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002089830000507916,0.00011232967462071575,2.7425467055525012e-05,0.0,0.0 +101352,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,8091.0,,776.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0009102004744062246,0.000288327021288068,0.0,0.0011985274956942927,0.0006448900168387738,0.00017611158604411627,0.00034098612919432846,0.0,3.64622667695299e-05,0.0004430882258337667,0.00017611158604411627,0.0002909619141045696,0.0,0.0,0.00020180179100500714,5.002421508975887e-05,3.64622667695299e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9264909539312424e-05,0.0,0.0,0.00010846469867065605,4.9349559890303944e-05,0.00012772960820996848,5.280092930178596e-05,2.098646468531851e-05,3.467268719957242e-05,0.0,0.0,1.3483624362416223e-05,3.3424268532794432e-06,2.4362693020417944e-06,0.0,0.0,0.0,6.872729201896174e-05,1.8768583922741157e-05,3.633961243567044e-05,0.0,3.885860829768851e-06 +101353,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,33339.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029518797817445425,0.0,0.0,0.0029518797817445425,0.0011133882268743592,0.0007237836749250224,0.0011147078799451605,0.0,0.0,0.0011133882268743592,0.0007237836749250224,0.0011147078799451605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035176907295201025,0.00011576902891839036,0.00035176907295201025,0.00013268004572049673,8.625172133388998e-05,0.0001328373058976235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013268004572049673,8.625172133388998e-05,0.0001328373058976235,0.0,0.0 +101354,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Propane,248973.0,,,74736.0,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.022183183982530715,0.0,0.0071173800445317415,0.02930053333745616,0.01246694669749691,0.006304074788036318,0.010529511851922933,0.0,0.0,0.005349566652965167,0.006304074788036318,0.010529511851922933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0071173800445317415,0.0,0.0,0.0,0.0,0.000574006587823231,0.0026435258666965755,0.0013254634415061672,0.0032175324545198067,0.0006374972066168437,0.0007512440405708863,0.0012547809622895686,0.0,0.0,0.0,0.0,0.0,0.0005740065878232311,0.0,0.0,0.0013690128144079503,0.0006922592497760971,0.0011562603903357593,0.0,0.0 +101355,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,69438.0,,5439.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006123135405054141,0.001584408441070886,0.0,0.0077075438461250275,0.0053172023175728335,0.0019910805639429454,0.00039926096460924775,0.0,0.0,0.0037327938765019477,0.0019910805639429454,0.00039926096460924775,0.0,0.0,0.001584408441070886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010586099827620961,0.0,0.0,0.0007296823458340392,0.0002645396360017504,0.0008355433441102488,0.0004448299134578413,0.00023727326615106983,4.757916622512796e-05,0.0,0.0,0.00010586099827620961,0.0,0.0,0.0,0.0,0.0,0.0005764161832136922,0.00021584491064896135,4.3282250247595036e-05,0.0,0.0 +101356,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,19727.0,,1269.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001757624442275736,0.0003734618190367451,0.0,0.002131086261312481,0.0008998192566486456,0.0004850492275351925,0.0007462177771286433,0.0,0.0,0.0005263574376119004,0.0004850492275351925,0.0007462177771286433,0.0,0.0,0.0003734618190367451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.495156826157651e-05,0.0,0.0,0.00020945308195218404,9.788897486031283e-05,0.00023440465021376053,6.272511058933681e-05,5.780248223803093e-05,8.892548912481634e-05,0.0,0.0,2.4951568261576513e-05,0.0,0.0,0.0,0.0,0.0,9.8973852884036e-05,5.335203768186183e-05,8.207875964786274e-05,0.0,0.0 +101357,81.0,the Columbus-Albany Area,G1300950000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,58521.0,,7824.0,,3.3063363735822096,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.006786311384311657,0.0023516365242072616,0.0,0.009137947908518919,0.003212429318105599,0.0016545222202802017,0.002789930102751828,0.0,0.0014810662673812901,0.003212429318105599,0.0016545222202802017,0.0019193598459258563,0.0,0.0,0.0,0.0008705702568259715,0.0014810662673812901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015712225060005199,0.0,0.0,0.0008087124508247612,0.00045023454295074,0.000965834701424813,0.00038281939036164726,0.00019716641986102225,0.00022872664060209164,0.0,0.0,0.0,5.816628405364326e-05,9.895596654640872e-05,0.0,0.0,0.0,0.0003395374697210021,0.00017487459882927379,0.00029488144764705195,0.0,0.00015654118522748516 +101358,50.0,the Greater Atlanta and Macon Area,G1301130140306,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,87701.0,,8243.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.007863751269691873,0.002426381653108977,0.0,0.010290163612407149,0.006295021354178498,0.0016042684796061155,0.0023908737786225353,0.0,0.0,0.0038686397010695203,0.0016042684796061155,0.0023908737786225353,0.0,0.0,0.002426381653108977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016211744411804123,0.0,0.0,0.0009371085610539642,0.00045553187357399804,0.0010992260051720054,0.00046101857232922736,0.0001911776803345949,0.00028491596561324204,0.0,0.0,0.00016211744411804123,0.0,0.0,0.0,0.0,0.0,0.0006724529790063661,0.00017137274959695974,0.0002554002765686794,0.0,0.0 +101359,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,123950.0,,9339.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010688238495694651,0.0027491135529356192,0.0,0.013437382738236569,0.005638846881927314,0.0031782463177963977,0.004620258848906558,0.0,0.0,0.002889733328991694,0.0031782463177963977,0.004620258848906558,0.0,0.0,0.0027491135529356192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018368059792144521,0.0,0.0,0.0012736985279362242,0.0005454452079507751,0.0014573791258576695,0.0003443644234499047,0.00037874600740118503,0.0005505880970851343,0.0,0.0,0.00018368059792144521,0.0,0.0,0.0,0.0,0.0,0.0006115727965568793,0.0003447032752300938,0.0005010997255659965,0.0,0.0 +101360,50.0,the Greater Atlanta and Macon Area,G1300570090702,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,44598.0,,919.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.012216932270691582,0.0007124643596167978,0.0,0.012929477491091449,0.005730037670585082,0.0010084956864306782,0.004223763003584546,0.0004213655405700981,0.0015457347291379763,0.005730037670585082,0.0010084956864306782,0.0035112986439677493,0.0004213655405700981,0.0015457347291379763,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.0014558730081980706,0.0004618601531684133,0.0015034782868931444,0.000682839766622585,0.00012018087816373681,0.00041843605302935435,5.021348269012448e-05,0.0001842028276922701,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.0006663059065411006,0.00011727089265738972,0.0004911517862378728,4.899764445459091e-05,0.00017974265426865468 +101361,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,35767.0,,4455.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0031010926475639735,0.0013112748082819467,0.0,0.0044123674558459195,0.0020170743739165156,0.0008903975475152508,0.0015048955344141536,0.0,0.0,0.0007057995656345686,0.0008903975475152508,0.0015048955344141536,0.0,0.0,0.0013112748082819467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.761212308191823e-05,0.0,0.0,0.0003695509090943306,0.00020176512637448807,0.0004571630321762488,8.41086999846746e-05,0.00010610686636469971,0.0001793353427449562,0.0,0.0,8.761212308191823e-05,0.0,0.0,0.0,0.0,0.0,0.00020898799706333524,9.225361367513951e-05,0.00015592142143777414,0.0,0.0 +101362,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970400,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,76359.0,,,,9.729435225087556,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,364853.82094078336,0.0,0.0,0.017790736839506348,0.0,0.0,0.017790736839506355,0.012690938326644263,0.002149123075878829,0.001100889563606156,0.0006623965266697116,0.0011873893467073935,0.012690938326644263,0.002149123075878829,0.001100889563606156,0.0006623965266697116,0.0011873893467073935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002120088712775013,0.00043452296132989797,0.002120088712775013,0.0015123552972294368,0.0002561069626648162,0.00013119094272870957,7.893655064670136e-05,0.0001414989595053497,0.0,0.0,0.0,0.0,0.0,0.0,0.0015123552972294361,0.0002561069626648161,0.00013119094272870952,7.893655064670134e-05,0.00014149895950534965 +101363,50.0,the Greater Atlanta and Macon Area,G1301210010001,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,486275.0,,37123.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.025031139150903686,0.00631312567830826,0.0,0.031344247098850524,0.015305645844053485,0.008052243638916982,0.0034785550677229994,0.0,0.0045077848177956445,0.013294650521429674,0.008052243638916982,0.0030523349095463504,0.0,0.0006318923506492618,0.002010995322623809,0.00042622015817664924,0.003875892467146383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042180586023342104,0.0,0.0,0.002982911757770869,0.0011004806379757333,0.00340471761800429,0.0015842974271666529,0.0009595700811760302,0.00036374076447142376,0.0,7.530137206436756e-05,0.0001343628584647516,2.8477519635994775e-05,0.00025896429749439374,0.0,0.0,0.0,0.0016625507671579741,0.0008746618062135245,0.0003778523595390152,0.0,0.0004896507591622428 +101364,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10862.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0023108356402762494,0.0,0.0,0.0023108356402762494,0.0009543569238778683,0.0006678596204449074,0.0006242729925842925,0.0,6.426339629544187e-05,0.0009543569238778683,0.0006678596204449074,0.0006242729925842925,0.0,6.426339629544187e-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.0002753730084244214,7.231198658077502e-05,0.0002753730084244214,0.0001137268841878811,7.958615043046537e-05,7.439210692868765e-05,0.0,7.658011007364906e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001137268841878811,7.958615043046537e-05,7.439210692868765e-05,0.0,7.658011007364906e-06 +101365,50.0,the Greater Atlanta and Macon Area,G1300630040204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,34172.0,,2553.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004704323828117878,0.0007438798238299798,0.0,0.005448203651947858,0.00422089761946662,0.0009583174358605077,0.0002690189702201679,0.0,0.0,0.0034770177956366397,0.0009583174358605077,0.0002690189702201679,0.0,0.0,0.0007438798238299798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.970149000522859e-05,0.0,0.0,0.0005606057908421824,0.0002235160583394015,0.0006103072808474109,0.00041434994322554476,0.00011420096142135104,3.205850576238175e-05,0.0,0.0,4.970149000522858e-05,0.0,0.0,0.0,0.0,0.0,0.0004728245699756446,0.00010735063258136207,3.0135480738268965e-05,0.0,0.0 +101366,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,3910.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0009388079940148787,0.0,0.0,0.0009388079940148785,0.0004031969844791237,0.00025184303953619113,0.00024431669582591415,0.0,3.936856709991033e-05,0.0004031969844791237,0.00025184303953619113,0.00024431669582591415,0.0,3.936856709991033e-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.00011187630414604836,3.4695071560359295e-05,0.00011187630414604836,4.804836425971154e-05,3.0011747522219825e-05,2.911484472270521e-05,0.0,4.6914915666918345e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.804836425971155e-05,3.001174752221983e-05,2.9114844722705216e-05,0.0,4.691491566691835e-06 +101367,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,77438.0,,8006.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005435969238135409,0.0013614435320001743,0.0,0.006797412770135585,0.003572135915298038,0.0010091235202223051,0.0009052590630236361,0.0,0.001310894271591604,0.002419520580103246,0.0010091235202223051,0.000696430866218254,0.0,0.001310894271591604,0.0011526153351947926,0.0002088281968053819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.096344266907496e-05,0.0,0.0,0.0006477934868012562,0.0002210885133521399,0.0007387569294703311,0.00028832938604157667,0.0001202552139537478,8.299226124728561e-05,0.0,0.00015621662555864615,7.70108025034671e-05,1.3952640165607857e-05,0.0,0.0,0.0,0.0,0.0003882271460739365,0.00010967363884845435,9.838543404525231e-05,0.0,0.00014247071050268775 +101368,50.0,the Greater Atlanta and Macon Area,G1301350050715,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,33886.0,,4574.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.003017279332764947,0.0013464144074928164,0.0,0.004363724429864061,0.002500957396412395,0.0008018580333463784,0.0010608783104989897,0.0,0.0,0.0011545429889195788,0.0008018580333463784,0.0010608783104989897,0.0,0.0,0.0013464144074928164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.996039344022408e-05,0.0,0.0,0.00035956465215858266,0.00019868985419766645,0.00044952504559880673,0.0001375851561719952,9.555621904470736e-05,0.0001264232769418801,0.0,0.0,8.996039344022408e-05,0.0,0.0,0.0,0.0,0.0,0.00025763381848059944,8.260266540594296e-05,0.00010928540025078978,0.0,0.0 +101369,50.0,the Greater Atlanta and Macon Area,G1300570090905,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,17063.0,,4472.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0041253554305901476,0.0034684424289414288,0.0,0.007593797859531578,0.0038425044114164387,0.0004194248817764534,0.0022071759346385333,0.000418292830813494,0.0007063189401035899,0.001792926142978466,0.0004194248817764534,0.0014947115750217357,0.000418292830813494,0.0,0.002049578268437972,0.0007124643596167978,0.0007063189401035899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002317394262625443,0.0,0.0,0.000491612661090234,0.00037700588104925837,0.0007233520873527784,0.00021366042444536756,4.998225867488032e-05,0.00017812262417681954,4.9847353793166745e-05,0.0,0.0001369398805771602,4.7602370606594806e-05,4.719177247175187e-05,0.0,0.0,0.0,0.00036602022309187353,3.995258622006624e-05,0.00021024595979620748,3.984475197925634e-05,6.728086381960259e-05 +101370,35.0,Eastern Counties in South Carolina and Georgia,G1300510003501,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,39004.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0034510769177829755,0.0,0.0,0.0034510769177829755,0.0011174699445119535,0.0009094251034198266,0.0014241511802448978,0.0,0.0,0.0011174699445119535,0.0009094251034198266,0.0014241511802448978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041125844128805586,0.0001411411208813853,0.00041125844128805586,0.00013316682256432302,0.00010837450436802661,0.000169713457132193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013316682256432302,0.00010837450436802661,0.000169713457132193,0.0,0.0 +101371,50.0,the Greater Atlanta and Macon Area,G1301210009900,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,146071.0,,43109.0,,9.729435225087556,Education,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.034985750226098,0.03812962080764105,0.0,0.07311537103373905,0.05044366722220136,0.008835427205450613,0.008012480441702803,0.00042004958638180935,0.005403838795255246,0.02206233220521256,0.008835427205450613,0.002018174576940922,0.00042004958638180935,0.0016498588693648634,0.02838133501698879,0.005994305864761881,0.0037539799258903828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025475991684403305,0.0,0.0,0.0041691862613677175,0.0035618111662878804,0.006716785429808048,0.002629126765304801,0.0010529012949621027,0.00024050208055698843,5.0056521678642094e-05,0.00019661058822230203,0.001896275492832007,0.0004005046027990945,0.0002508190728092295,0.0,0.0,0.0,0.004634036376124247,0.0008116715798695091,0.0007360711041542414,3.8588095795948414e-05,0.0004964267454548366 +101373,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,68979.0,,7115.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005999725962382001,0.0020944735609993216,0.0,0.00809419952338132,0.00450854868198292,0.0015176624106339979,0.0020679577411581067,0.0,0.0,0.002414075120983599,0.0015176624106339979,0.0020679577411581067,0.0,0.0,0.0020944735609993216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013994064085888375,0.0,0.0,0.0007149764023800391,0.0003578361122913856,0.0008549170432389229,0.0002876809300788056,0.00018085706200349718,0.00024643475307331656,0.0,0.0,0.00013994064085888375,0.0,0.0,0.0,0.0,0.0,0.00047619719496232594,0.00016029694560729807,0.0002184196612039264,0.0,0.0 +101374,50.0,the Greater Atlanta and Macon Area,G1301210001001,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,NaturalGas,59059.0,,3840.0,,9.325022323477118,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.014175051268853652,0.0032552769253220404,0.0,0.017430328194175695,0.009890010518033333,0.0027871060401049447,0.004014850379646322,0.0,0.0007384496405491473,0.007373094849102386,0.0027871060401049447,0.004014850379646322,0.0,0.0,0.0025169156689309477,0.0,0.0007384496405491473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021749930556723033,0.0,0.0,0.0016892109389950243,0.0006811355751269939,0.0019067102445622546,0.0008786361500305771,0.00033213354377272165,0.0004784412451917257,0.0,0.0,0.00016816615689603913,0.0,4.933905400380683e-05,0.0,0.0,0.0,0.0010818720200497292,0.0003048825920056494,0.000439186013250987,0.0,8.077928763262512e-05 +101375,50.0,the Greater Atlanta and Macon Area,G1302070050200,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,6359.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015267725812276149,0.0,0.0,0.001526772581227615,0.000640318164889718,0.00024795580707044363,0.000587302930622822,0.0,5.11956786446313e-05,0.000640318164889718,0.00024795580707044363,0.000587302930622822,0.0,5.11956786446313e-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.00018194660060743924,5.906129455530714e-05,0.00018194660060743924,7.630718211824457e-05,2.954907413982139e-05,6.998931803431344e-05,0.0,6.101026315059855e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.630718211824456e-05,2.9549074139821386e-05,6.998931803431343e-05,0.0,6.101026315059854e-06 +101376,85.0,Rural Climate Zone 3A,G1301650960100,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Propane,6200.0,,,912.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006032804320326268,0.0,8.598766000827541e-05,0.00068929846564034,0.00040591278288611545,0.0002465728802356693,3.678242891911746e-05,0.0,0.0,0.00031992512287784,0.0002465728802356693,3.678242891911746e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.598766000827541e-05,0.0,0.0,0.0,0.0,6.935890043633262e-06,7.189292490537582e-05,2.5047766441428542e-05,7.882881494900907e-05,3.8125474676685306e-05,2.9384088429253895e-05,4.383361799436619e-06,0.0,0.0,0.0,0.0,0.0,6.935890043633262e-06,0.0,0.0,4.642056415698234e-05,2.8198304386888853e-05,4.206472851998325e-06,0.0,0.0 +101377,81.0,the Columbus-Albany Area,G1302150002902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,24700.0,,1106.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002231379894693374,0.00032546327478713804,0.0,0.002556843169480512,0.0006567268851645419,0.0008118321553931318,0.0010883148185291361,0.0,0.0,0.0003312636103774039,0.0008118321553931318,0.0010883148185291361,0.0,0.0,0.00032546327478713804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1745715784031936e-05,0.0,0.0,0.00026590962935092504,0.00010254936757616013,0.000287655345134957,3.947610358164006e-05,9.674461441959648e-05,0.00012969256857625714,0.0,0.0,2.1745715784031936e-05,0.0,0.0,0.0,0.0,0.0,7.388446857684808e-05,9.133444774350963e-05,0.00012243988152120132,0.0,0.0 +101378,50.0,the Greater Atlanta and Macon Area,G1301210010603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,66289.0,,8485.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010299155667052374,0.0024977042981448386,0.0,0.012796859965197215,0.006344769205987073,0.002531432175466014,0.003920658583744126,0.0,0.0,0.003847064907842235,0.002531432175466014,0.003920658583744126,0.0,0.0,0.0024977042981448386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001668818585012144,0.0,0.0,0.0012273291624845279,0.0005312770704021644,0.0013942110209857422,0.0004584467993303918,0.00030166555708447567,0.0004672168060696605,0.0,0.0,0.0001668818585012144,0.0,0.0,0.0,0.0,0.0,0.0006912591976981759,0.00027579817607687937,0.0004271536472106868,0.0,0.0 +101379,50.0,the Greater Atlanta and Macon Area,G1300790070201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,21010.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0018526984449045477,0.0,0.0,0.0018526984449045482,0.0011150148353598695,0.0005832338564037106,0.00015444975314096802,0.0,0.0,0.0011150148353598695,0.0005832338564037106,0.00015444975314096802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002207821095349614,6.968157142616906e-05,0.0002207821095349614,0.00013287393217745847,6.950273074561586e-05,1.8405446611887122e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013287393217745845,6.950273074561585e-05,1.840544661188712e-05,0.0,0.0 +101380,50.0,the Greater Atlanta and Macon Area,G1300890023000,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Propane,42838.0,,,7454.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003519024483659051,0.0,0.0007026021021940752,0.004221626585853126,0.0032291995978240232,0.0007435457142361646,0.00024888127379293847,0.0,0.0,0.002526597495629948,0.0007435457142361646,0.00024888127379293847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007026021021940752,0.0,0.0,0.0,0.0,5.66646802157392e-05,0.0004193560140854007,0.00015662716973912592,0.00047602069430113987,0.0003010902197144778,8.86070467711389e-05,2.965874759978399e-05,0.0,0.0,0.0,0.0,0.0,5.666468021573921e-05,0.0,0.0,0.00036411695902813153,8.384046763430394e-05,2.806326763870452e-05,0.0,0.0 +101381,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,14619.0,,3154.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0013025282704871017,0.0009282992112929137,0.0,0.0022308274817800155,0.001190633965925677,0.00046353581352050286,0.0005767190815464307,0.0,0.0,0.00026233475463276337,0.00046353581352050286,0.0005767190815464307,0.0,0.0,0.0009282992112929137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.202349899471368e-05,0.0,0.0,0.00015522001846499754,0.00011225511812144856,0.00021724351745971122,3.126197440834076e-05,5.523875309587962e-05,6.872660541431207e-05,0.0,0.0,6.202349899471368e-05,0.0,0.0,0.0,0.0,0.0,0.000115946890952909,4.514026809343071e-05,5.6162335673447414e-05,0.0,0.0 +101382,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,5202.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012491249346847598,0.0,0.0,0.00124912493468476,0.0006720776812056123,0.0003525802553506676,0.00017616606706472482,0.0,4.8300931063755535e-05,0.0006720776812056123,0.0003525802553506676,0.00017616606706472482,0.0,4.8300931063755535e-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.00014885153171826214,3.910099549915365e-05,0.00014885153171826214,8.008789953933647e-05,4.201510161656305e-05,2.099276716942981e-05,0.0,5.755763392932868e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.008789953933645e-05,4.201510161656304e-05,2.0992767169429805e-05,0.0,5.755763392932867e-06 +101383,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,136563.0,,,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,729707.6418815667,0.05455462013357669,0.0,0.03656174307599155,0.0,0.0,0.09111636320956826,0.08065717461728758,0.0064115889335604965,0.0010083034418218889,0.0006476417662260038,0.002391654450672278,0.02610255448371088,0.0064115889335604965,0.0010083034418218889,0.0006476417662260038,0.002391654450672278,0.0,0.0,0.0,0.0,0.0,0.0,0.05455462013357669,0.0,0.0,0.0,0.0,0.0,0.0,0.004356994981618355,0.0014591398946557648,0.004356994981618355,0.0031105929128315687,0.0007640571388968238,0.00012015764748511905,7.717826580281608e-05,0.00028500901660202696,0.0,0.0,0.0,0.0,0.0,0.0,0.0038568583365291066,0.00030658884775143594,4.821497348244855e-05,3.09688822724745e-05,0.00011436394158288854 +101384,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,48169.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.003911299520397616,0.0,0.0,0.003911299520397615,0.0024254230359027967,0.0012496306280679855,0.0002362458564268337,0.0,0.0,0.0024254230359027967,0.0012496306280679855,0.0002362458564268337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046610324995504813,0.00012283662181704602,0.00046610324995504813,0.0002890337479025919,0.0001489164647065036,2.815303734595268e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028903374790259197,0.00014891646470650363,2.815303734595269e-05,0.0,0.0 +101385,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,39717.0,,843.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033169793001991254,0.0002456920458519745,0.0,0.0035626713460511,0.0022830923489374913,0.0008450239099576935,0.0004345550871559153,0.0,0.0,0.0020374003030855167,0.0008450239099576935,0.0004345550871559153,0.0,0.0,0.0002456920458519745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.641539408910742e-05,0.0,0.0,0.00039527839899037356,0.00011605757797465458,0.000411693793079481,0.00024279329384352763,0.00010069996463849225,5.17851405083537e-05,0.0,0.0,1.641539408910742e-05,0.0,0.0,0.0,0.0,0.0,0.0002638286998116318,9.76489451150027e-05,5.021614815284653e-05,0.0,0.0 +101386,50.0,the Greater Atlanta and Macon Area,G1300670030318,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,11281.0,,686.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002724949958488962,0.0005439644239834248,0.0,0.0032689143824723866,0.0014479527399540548,0.001173282548065815,0.0005634005863121622,0.0,8.419580106661495e-05,0.000988184117037245,0.001173282548065815,0.0005634005863121622,0.0,0.0,0.0004597686229168099,0.0,8.419580106661495e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.634608884457578e-05,0.0,0.0,0.00032472472062677855,0.000146932475044791,0.0003610708094713544,0.00011775915749685098,0.00013981682358974959,6.713888356783972e-05,0.0,0.0,3.072037522989156e-05,0.0,5.625713614684225e-06,0.0,0.0,0.0,0.0001599348917471663,0.0001295959544368139,6.223090664201158e-05,0.0,9.299921162884291e-06 +101387,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,16380.0,,2183.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0014594749170935535,0.0006426096662675985,0.0,0.0021020845833611516,0.0011497860999434347,0.00043207896706535745,0.0005201888267460621,0.0,0.0,0.0005071764336758362,0.00043207896706535745,0.0005201888267460621,0.0,0.0,0.0006426096662675985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.29363424011511e-05,0.0,0.0,0.0001739212077770677,9.555857623083422e-05,0.00021685755017821878,6.043868028690008e-05,5.1489542524462435e-05,6.198932777822562e-05,0.0,0.0,4.29363424011511e-05,0.0,0.0,0.0,0.0,0.0,0.00011861549189615254,4.4574603240515995e-05,5.366428900680062e-05,0.0,0.0 +101388,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7330.0,,68.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0014831032462932607,5.425584037298567e-05,0.0,0.0015373590866662463,0.0005767164251841907,0.00029451988958567376,0.0006223707298882883,0.0,4.375204200809363e-05,0.000522460584811205,0.00029451988958567376,0.0006223707298882883,0.0,4.375204200809363e-05,5.425584037298567e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6242765905036206e-06,0.0,0.0,0.0001767361736481201,5.18796478839673e-05,0.00018036045023862372,6.225978189466733e-05,3.509689462195827e-05,7.416572087341644e-05,0.0,5.2137762580780465e-06,3.6242765905036206e-06,0.0,0.0,0.0,0.0,0.0,6.765942648557797e-05,3.455259109639225e-05,7.301551474314845e-05,0.0,5.132917913505054e-06 +101389,50.0,the Greater Atlanta and Macon Area,G1301210011416,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,186052.0,,31999.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008438960551849752,0.005441749335958345,0.0,0.013880709887808098,0.006646030944331173,0.002201809472226417,0.0015828425550523737,0.0,0.003450009185836714,0.004590355110928832,0.002201809472226417,0.0011764449409433434,0.0,0.0004703332973897407,0.002055675833402342,0.00040639761410903025,0.0029796758884469737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003635862802222949,0.0,0.0,0.001005654361232149,0.0005737959351710816,0.001369240641454444,0.0005470236065860038,0.00026238531211778264,0.0001401946339647062,0.0,5.6048695671294946e-05,0.00013734839358931926,2.715314280074164e-05,0.00019908474383223407,0.0,0.0,0.0,0.000655587195964304,0.00021719400797791892,0.00015613699680481834,0.0,0.00034032069172398324 +101390,85.0,Rural Climate Zone 3A,G1302610950600,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,7462.0,,33.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0014085841728541447,2.6135435301621144e-05,0.0,0.001434719608155766,0.0008794243150700558,0.00024299338264608525,0.0002861664751380037,0.0,2.6135435301621144e-05,0.0008794243150700558,0.00024299338264608525,0.0002861664751380037,0.0,0.0,0.0,0.0,2.6135435301621144e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7478304116263401e-06,0.0,0.0,0.0001678576456153871,4.629736537904998e-05,0.00016960547602701343,0.00010479891643640485,2.8956946909635807e-05,3.4101782269346445e-05,0.0,0.0,0.0,0.0,1.7478304116263401e-06,0.0,0.0,0.0,0.00010396120519947158,2.8725479251015477e-05,3.3829189315355185e-05,0.0,3.0896022611711672e-06 +101391,85.0,Rural Climate Zone 3A,G1302850960901,ComStock 90.1-2007,gen4_led,_1000,Electricity,2593.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005927615974896162,0.0,0.0,0.0005927615974896162,0.00031329439532449654,0.00012290271157661085,0.00013067717650810573,0.0,2.5970021154142532e-05,0.00031329439532449654,0.00012290271157661085,0.00013067717650810573,0.0,2.5970021154142532e-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,7.063728400381444e-05,2.473190328486029e-05,7.063728400381444e-05,3.7334174941600274e-05,1.4645877498209611e-05,1.5572332736992723e-05,0.0,3.0947547338074143e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.7334174941600274e-05,1.4645877498209611e-05,1.5572332736992723e-05,0.0,3.0947547338074143e-06 +101392,81.0,the Columbus-Albany Area,G1302150010205,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,61714.0,,5644.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003014728812974418,0.0009598153851131384,0.0,0.003974544198087557,0.0015947928186494898,0.0007261646823196826,0.0009842478231499713,0.0,0.0006693388739684134,0.0013882163777444547,0.0007261646823196826,0.0007786997432072991,0.0,0.00012166574006440235,0.0002065764409050352,0.00020554807994267212,0.000547673133904011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.412867430365068e-05,0.0,0.0,0.0003592603120893267,0.00016820592992399295,0.0004233889863929773,0.00016543147992934232,8.653585996712656e-05,9.279637742690281e-05,0.0,1.4498707664186504e-05,1.380210559559305e-05,1.3733397147859428e-05,3.6591986931789e-05,0.0,0.0,0.0,0.00016988557211659722,7.735481440856677e-05,0.00010484716421155285,0.0,7.130143565626047e-05 +101393,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5642.0,,217.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0010490565233093753,0.00017236154167271666,0.0,0.0012214180649820921,0.0004306557329605738,0.00029683568765037437,0.0003861593272888263,0.0,0.00010768461000857827,0.0003659788012964354,0.00029683568765037437,0.0003861593272888263,0.0,0.0,6.46769316641384e-05,0.0,0.00010768461000857827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1513663159641214e-05,0.0,0.0,0.00012501406427888563,4.800186508138069e-05,0.00013652772743852687,4.361299546153177e-05,3.5373342533658205e-05,4.6017870239523574e-05,0.0,0.0,4.320386080057308e-06,0.0,7.193277079583908e-06,0.0,0.0,0.0,4.813785731124116e-05,3.317971382562791e-05,4.316413592974552e-05,0.0,1.2036775536630686e-05 +101394,46.0,the Tallahassee-Valdosta Area,G1300270960500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,13862.0,,606.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006642857209636983,0.00010301339985050677,0.0,0.000767299120814205,0.0002861503029582322,0.00014225068967308366,0.0001669845438540573,0.0,0.00017191358432883198,0.0002861503029582322,0.00014225068967308366,6.397114400355051e-05,0.0,0.00017191358432883198,0.0,0.00010301339985050677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.882294729644801e-06,0.0,0.0,7.916184224674236e-05,2.512500757070423e-05,8.604413697638717e-05,3.410006331127356e-05,1.6951781891464637e-05,7.6233365404966225e-06,0.0,2.048666050350755e-05,0.0,6.882294729644801e-06,0.0,0.0,0.0,0.0,3.2088601688277864e-05,1.595184654223021e-05,1.8725475599491967e-05,0.0,1.9278213146387144e-05 +101395,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,22170.0,,2253.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005099404423433634,0.0017474015221108842,0.0,0.006846805945544519,0.0018708759378565263,0.0006207682316170875,0.0035731571430151726,0.00032109816956512374,0.00046090646349060817,0.0018708759378565263,0.0006207682316170875,0.0018257556209042881,0.00032109816956512374,0.00046090646349060817,0.0,0.0017474015221108842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011674853381857142,0.0,0.0,0.0006076909297517186,0.00027327693780096945,0.0007244394635702898,0.0002229504161116566,7.397632988240428e-05,0.00021757347302524507,3.826494802175686e-05,5.4925762710655775e-05,0.0,0.00011674853381857142,0.0,0.0,0.0,0.0,0.0001979516246855681,6.568157594809641e-05,0.00037806475961579155,3.3974409025646846e-05,4.876709429518686e-05 +101396,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,22866.0,,7202.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0046943589828558055,0.004954128717874348,0.0,0.00964841598075914,0.003595250427041566,0.0005275003868198193,0.0036221454161724205,0.00038456248458570644,0.0015189572661396264,0.002607236106330509,0.0005275003868198193,0.0009784038445949659,0.00038456248458570644,0.00019658444055378993,0.0009880143207110577,0.0026437415715774544,0.0013223728255858365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033100510904848264,0.0,0.0,0.0005594143701589543,0.0004925688835192009,0.000890419479207437,0.00031069744550964753,6.286082886483804e-05,0.00011659380385780022,4.582729631179627e-05,2.342644893521701e-05,6.601317942920692e-05,0.00017663892422469698,8.835300539457879e-05,0.0,0.0,0.0,0.0003317934279834802,4.8681215719812825e-05,0.0003342754750120227,3.548996311211915e-05,0.00014017939738000216 +101397,46.0,the Tallahassee-Valdosta Area,G1301850010800,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,59200.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004947901085740834,0.0,0.0,0.004947901085740835,0.0012970348309598128,0.0014752493747305728,0.0021755861904441502,0.0,0.0,0.0012970348309598128,0.0014752493747305728,0.0021755861904441502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005896319417134766,0.0001640522525691924,0.0005896319417134766,0.0001545651686637018,0.00017580265616885088,0.0002592604596590356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015456516866370177,0.00017580265616885086,0.00025926045965903553,0.0,0.0 +101398,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,40498.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004832815062124449,0.0,0.0,0.004832815062124448,0.0018831142424270426,0.0011238840722281737,0.001825786057862934,0.0,0.0,0.0018831142424270426,0.0011238840722281737,0.001825786057862934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00057591583217749,0.00020500382454009656,0.00057591583217749,0.00022440653988855795,0.0001339307675563703,0.00021757486752037308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000224406539888558,0.00013393076755637034,0.0002175748675203731,0.0,0.0 +101399,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,21922.0,,1849.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.005053071377176726,0.0014671407810615742,0.0,0.006520212158238299,0.0036935324990499904,0.0011818013766609638,0.0014879002565701407,0.0,0.00015706073303094475,0.002383452451019361,0.0011818013766609638,0.0014879002565701407,0.0,0.0,0.0013100800480306293,0.0,0.00015706073303094475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.802664230462955e-05,0.0,0.0,0.0006021635441395643,0.00024379246989729642,0.0007001901864441939,0.00028403085332941543,0.00014083270397751465,0.00017730984285502756,0.0,0.0,8.753266892752308e-05,0.0,1.049397337710646e-05,0.0,0.0,0.0,0.00039663973293873044,0.00012691085906134446,0.00015978209493411623,0.0,1.6866381227342223e-05 +101400,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,166935.0,,15222.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008593019662228592,0.002588703688773389,0.0,0.0111817410813634,0.0057444066053986475,0.002215000861122937,0.0018219010180789456,0.0,0.0014004148664014506,0.004857817612950327,0.002215000861122937,0.00124566427192723,0.0,0.0002745191858666776,0.0008865889924483201,0.0005762367461517161,0.0011258956805347729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017296252687289433,0.0,0.0,0.0010240142635906798,0.0004240150348677998,0.0011969767904635741,0.0005788971422291658,0.00026395755680922903,0.0001484435078981261,0.0,3.2713943759774055e-05,5.923685785151234e-05,3.850087753328036e-05,7.522597613048727e-05,0.0,0.0,0.0,0.000614924038359994,0.00023711017831023768,0.0001950298452892231,0.0,0.0001499108305142668 +101401,50.0,the Greater Atlanta and Macon Area,G1300670030505,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,3942.0,,881.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008946424166380885,0.0006985439448021904,0.0,0.0015931863614402787,0.0010910717167689433,0.00023885802895911985,0.0002220684929900404,0.0,4.118812272217509e-05,0.0003925277719667531,0.00023885802895911985,0.0002220684929900404,0.0,4.118812272217509e-05,0.0006985439448021904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6672105586725516e-05,0.0,0.0,0.00010661692735761492,7.465203603963231e-05,0.00015328903294434045,4.677858345560141e-05,2.846534956168918e-05,2.6464495697069057e-05,0.0,4.908498643255267e-06,4.6672105586725516e-05,0.0,0.0,0.0,0.0,0.0,0.00010497788104665625,2.2981816287351676e-05,2.1366404685436026e-05,0.0,3.962930924896514e-06 +101402,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,9755.0,,2565.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0008691296503509429,0.0007549643149234883,0.0,0.0016240939652744312,0.0007600280999626093,0.0003752725058083097,0.0004887933595035122,0.0,0.0,5.063785039120959e-06,0.0003752725058083097,0.0004887933595035122,0.0,0.0,0.0007549643149234883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.044271327333362e-05,0.0,0.0,0.0001035732641931573,8.448689278508163e-05,0.00015401597746649094,6.034459248542004e-07,4.4720828903740384e-05,5.8248989364562724e-05,0.0,0.0,5.044271327333362e-05,0.0,0.0,0.0,0.0,0.0,7.2074937300787e-05,3.55878188295588e-05,4.635322133614514e-05,0.0,0.0 +101403,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,86574.0,,13.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.007713617715683511,3.805511180915145e-06,0.0,0.007717423226864426,0.00392581443760214,0.0013738202259166651,0.0024177578737393226,0.0,0.0,0.003922008926421225,0.0013738202259166651,0.0024177578737393226,0.0,0.0,3.805511180915145e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5484700227436727e-07,0.0,0.0,0.0009192159742614099,0.0003331689981600412,0.0009194708212636843,0.00046737774533888403,0.00016371533357926026,0.00028811923812593996,0.0,0.0,2.5484700227436727e-07,0.0,0.0,0.0,0.0,0.0,0.00046773018907471153,0.0001636799711845643,0.0002880570045770391,0.0,0.0 +101404,46.0,the Tallahassee-Valdosta Area,G1301850010500,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,169202.0,,1200.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.008531903106413668,0.00020398780813770748,0.0,0.008735890914551377,0.004288797123896572,0.0019020245213361645,0.0012898660629474216,0.0,0.0012552209367326383,0.004288797123896572,0.0019020245213361645,0.0010858782548097139,0.0,0.0012552209367326383,0.0,0.00020398780813770748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3628963725247773e-05,0.0,0.0,0.0010167313780419674,0.00031680060715506765,0.0010303603417672151,0.0005110881541357213,0.0002266608034019989,0.0001294021369708881,0.0,0.00014958239642828722,0.0,1.3628963725247773e-05,0.0,0.0,0.0,0.0,0.0005058449691705263,0.0002243355205579735,0.00015213409261311596,0.0,0.00014804785064462115 +101405,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,46697.0,,390.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0039049514381151247,0.00011371875629494282,0.0,0.004018670194410068,0.0020756710383770843,0.001742654894141573,0.000200344261891411,0.0,0.0,0.0019619522820821414,0.001742654894141573,0.000200344261891411,0.0,0.0,0.00011371875629494282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.597034767159343e-06,0.0,0.0,0.0004653462934677099,0.00013708658948843503,0.00047294332823486927,0.00023380245232143725,0.00020766916276264267,2.3874678383630055e-05,0.0,0.0,7.597034767159343e-06,0.0,0.0,0.0,0.0,0.0,0.00024427851048246897,0.00020508699786972359,2.3577819882676763e-05,0.0,0.0 +101406,35.0,Eastern Counties in South Carolina and Georgia,G1300510002600,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,25295.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.0057692319286853895,0.0,0.0,0.0057692319286853895,0.002084631793599244,0.00132918538206441,0.0022185345459831826,0.0,0.00013696291411229307,0.002084631793599244,0.00132918538206441,0.0022185345459831826,0.0,0.00013696291411229307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006875071869274568,0.00018870199344276422,0.0006875071869274568,0.00024842116904173967,0.0001583962153409958,0.0002643780773011555,0.0,1.632158127090342e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00024842116904173967,0.0001583962153409958,0.0002643780773011555,0.0,1.632158127090342e-05 +101407,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7805.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0015559681782575906,0.0,0.0,0.0015559681782575906,0.0007872886349244672,0.0002190910383354254,0.0005072424832431725,0.0,4.226331468078609e-05,0.0007872886349244672,0.0002190910383354254,0.0005072424832431725,0.0,4.226331468078609e-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.00018541697427533444,4.920568928768635e-05,0.00018541697427533444,9.381726349475938e-05,2.6107987288330465e-05,6.044555909374508e-05,0.0,5.036308608658688e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.381726349475938e-05,2.6107987288330465e-05,6.044555909374508e-05,0.0,5.036308608658688e-06 +101408,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,6510.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012102526100272856,0.0,0.0,0.0012102526100272856,0.0006944085911152251,0.00030419661721317273,0.00016772994554331544,0.0,4.391745615557224e-05,0.0006944085911152251,0.00030419661721317273,0.00016772994554331544,0.0,4.391745615557224e-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.0001442195334512641,3.835184030925321e-05,0.0001442195334512641,8.274907420602838e-05,3.624953488920586e-05,1.9987508633852495e-05,0.0,5.233415722177354e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.274907420602838e-05,3.624953488920586e-05,1.9987508633852495e-05,0.0,5.233415722177354e-06 +101409,85.0,Rural Climate Zone 3A,G1301050000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13023.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002875724953915719,0.0,0.0,0.0028757249539157195,0.0017672847516615208,0.0005958217592179707,0.0004281745207483945,0.0,8.436121521409358e-05,0.0017672847516615208,0.0005958217592179707,0.0004281745207483945,0.0,8.436121521409358e-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.0003426965080425582,0.0001076531779989823,0.0003426965080425582,0.00021060509013095722,7.100332596889817e-05,5.10250164548842e-05,0.0,1.005321939037703e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002106050901309572,7.100332596889815e-05,5.1025016454884195e-05,0.0,1.005321939037703e-05 +101410,50.0,the Greater Atlanta and Macon Area,G1301350050435,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,120428.0,,1542.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.012942554766232232,0.0005731666844366485,0.0,0.013515721450668882,0.007734999101806937,0.0016048822157921248,0.0039629562928659955,0.0,0.00021292258862759493,0.007734999101806937,0.0016048822157921248,0.0033897896084293467,0.0,0.00021292258862759493,0.0,0.0005731666844366485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.829443372010994e-05,0.0,0.0,0.0015423397140618227,0.0005308657157954001,0.0015806341477819326,0.0009217651783923927,0.00019125077100433385,0.00040395480102856573,0.0,2.5373581212729115e-05,0.0,3.829443372010994e-05,0.0,0.0,0.0,0.0,0.000904591276019051,0.00018768747511613032,0.00046345909580441155,0.0,2.4900832385994887e-05 +101411,50.0,the Greater Atlanta and Macon Area,G1300590030100,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,17611.0,,1374.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014207858608997171,0.0004004151613878823,0.0,0.0018212010222875992,0.0012673688101396327,0.0004312747384166381,0.00012252710013189086,0.0,0.0,0.0008669536487517502,0.0004312747384166381,0.00012252710013189086,0.0,0.0,0.0004004151613878823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6753712784163662e-05,0.0,0.0,0.0001693135367765997,6.787480627585108e-05,0.00019606724956076338,0.00010331394232666661,5.139455092654379e-05,1.4601423933916308e-05,0.0,0.0,2.6753712784163662e-05,0.0,0.0,0.0,0.0,0.0,0.00013644266269467002,4.643026812063508e-05,1.3191048777987317e-05,0.0,0.0 +101412,85.0,Rural Climate Zone 3A,G1302850960400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,100515.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.008955718151370435,0.0,0.0,0.008955718151370437,0.0019925840680909486,0.0037919156853252626,0.0031712183979542238,0.0,0.0,0.0019925840680909486,0.0037919156853252626,0.0031712183979542238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00106723674560348,0.0003576376294093219,0.00106723674560348,0.00023745264201345076,0.0004518757387412931,0.00037790836484873617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002374526420134507,0.000451875738741293,0.0003779083648487361,0.0,0.0 +101413,35.0,Eastern Counties in South Carolina and Georgia,G1300730030603,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,15635.0,,307.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035280356444976372,0.00024373774630973897,0.0,0.0037718560978811156,0.0018137661271030118,0.0011057935758945403,0.0007623110986551965,0.0,8.990258915462716e-05,0.0016598482628741606,0.0011057935758945403,0.0007623110986551965,0.0,0.0,0.0001539178642288511,0.0,8.990258915462716e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.628752645761629e-05,0.0,0.0,0.00042043093186620644,0.00015491741183364368,0.00043671845832382274,0.00019780172941423203,0.00013177582950163347,9.084351686735646e-05,0.0,0.0,1.0285404390099734e-05,0.0,6.007648883416663e-06,0.0,0.0,0.0,0.00021000407391824212,0.00012803257949324656,8.82629981442972e-05,0.0,1.040923065887502e-05 +101414,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13303.0,,728.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029953193825427576,0.0005774607888478444,0.0,0.003572780171390602,0.0015304116924721447,0.0005380095146741949,0.001433644416197155,0.0,7.063184097336853e-05,0.0009529509036243001,0.0005380095146741949,0.001433644416197155,0.0,7.063184097336853e-05,0.0005774607888478444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8581898149368967e-05,0.0,0.0,0.000356946294051212,0.00014237303853335226,0.000395528192200581,0.00011356127678534527,6.411353111340663e-05,0.00017084457314677791,0.0,8.417056967079053e-06,3.8581898149368967e-05,0.0,0.0,0.0,0.0,0.0,0.00016942575277743304,5.9560879907976754e-05,0.00015871303494617513,0.0,7.819368399909629e-06 +101415,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,16711.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0037601944004838728,0.0,0.0,0.0037601944004838728,0.0014459677701843116,0.0006767092773350134,0.0015490207840634887,0.0,8.849656890105894e-05,0.0014459677701843116,0.0006767092773350134,0.0015490207840634887,0.0,8.849656890105894e-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.000448094856431282,0.0001351530597525197,0.000448094856431282,0.0001723130911267839,8.06420929817163e-05,0.0001845937129619365,0.0,1.0545959360845322e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0001723130911267839,8.06420929817163e-05,0.0001845937129619365,0.0,1.0545959360845322e-05 +101416,85.0,Rural Climate Zone 3A,G1300690010801,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,27236.0,,5064.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004689123424971667,0.0034837975920833063,0.0,0.008172921017054972,0.0017973741936222285,0.0004874089230220927,0.0041211012545280265,0.00037681672771602045,0.0013902199181666046,0.0017973741936222285,0.0004874089230220927,0.0006373036624447197,0.00037681672771602045,0.0013902199181666046,0.0,0.0034837975920833063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002327676721429819,0.0,0.0,0.0005587964228728652,0.0003671654665742717,0.0007915640950158471,0.0002141906234780268,5.808385448133236e-05,7.594660549163027e-05,4.4904733879476194e-05,0.00016567060554239943,0.0,0.0002327676721429819,0.0,0.0,0.0,0.0,0.0001740793620800322,4.7206549806308555e-05,0.0003991370745174067,3.649546978845573e-05,0.00013464563882364407 +101417,50.0,the Greater Atlanta and Macon Area,G1301210011417,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,15474.0,,737.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003796833634150386,0.0005844908901156855,0.0,0.0043814072313398105,0.00264877674357506,0.0006428820841756366,0.0009955450466000435,0.0,9.412064991533184e-05,0.0020642858534593743,0.0006428820841756366,0.0009955450466000435,0.0,9.412064991533184e-05,0.0005844908901156855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905373158723157e-05,0.0,0.0,0.00045246405557696645,0.00018286795643505967,0.000491517787164198,0.00024599843952219716,7.661147763957044e-05,0.00011863789480863365,0.0,1.121624360656518e-05,3.905373158723157e-05,0.0,0.0,0.0,0.0,0.0,0.00029714674189184725,7.212020310764155e-05,0.00011168286180453897,0.0,1.0558702063102545e-05 +101419,85.0,Rural Climate Zone 3A,G1300550010500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,10319.0,,122.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0011607865309402842,4.541315266088102e-05,0.0,0.001206199683601165,0.0006927055717735241,0.00016274337984274772,0.00031459845260554015,0.0,3.615227937935324e-05,0.0006927055717735241,0.00016274337984274772,0.00026918529994465914,0.0,3.615227937935324e-05,0.0,4.541315266088102e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0350651856086387e-06,0.0,0.0,0.00013832871457232835,4.617646489054775e-05,0.00014136377975793702,8.254840038753927e-05,1.9393817845704814e-05,3.2078298231931264e-05,0.0,4.308198107152997e-06,0.0,3.0350651856086387e-06,0.0,0.0,0.0,0.0,8.11834717058897e-05,1.9073143209975764e-05,3.687020231471267e-05,0.0,4.236962527358901e-06 +101420,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302670950300,ComStock 90.1-2007,gen4_led,10001_25000,Propane,22441.0,,,2475.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0026707505985615176,0.0,0.00023326924368193404,0.00290405021584289,0.00198858992878905,0.0007234080178089351,0.00019205226924490476,0.0,0.0,0.0017553206851071157,0.0007234080178089351,0.00019205226924490476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023326924368193404,0.0,0.0,0.0,0.0,1.8813709469133376e-05,0.000318269384566443,9.712213349430274e-05,0.00033708309403557643,0.00020917896057635974,8.62074597090751e-05,2.28865838577689e-05,0.0,0.0,0.0,0.0,0.0,1.8813709469133376e-05,0.0,0.0,0.00023082247073666446,8.396845604214287e-05,2.2292167256769086e-05,0.0,0.0 +101421,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,16310.0,,2504.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0018887304403795223,0.0007369802056330346,0.0,0.002625710646012557,0.0014029139726868872,0.0005393698306821264,0.000683457532249841,0.0,0.0,0.0006659337670538527,0.0005393698306821264,0.000683457532249841,0.0,0.0,0.0007369802056330346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9239927222300026e-05,0.0,0.0,0.00022507712020308627,0.00012574893907875716,0.00027431704742538626,7.935830933309669e-05,6.427587845196435e-05,8.14465896515076e-05,0.0,0.0,4.923992722230003e-05,0.0,0.0,0.0,0.0,0.0,0.00014656726146261185,5.634982653086438e-05,7.140316568093029e-05,0.0,0.0 +101422,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,60770.0,,4691.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0031281322046170764,0.0007978308031795359,0.0,0.003925963007796612,0.0016184805815066799,0.0007408631519369063,0.0008126001942424401,0.0,0.0007540013497491655,0.001351142192015124,0.0007408631519369063,0.0002821077805544602,0.0,0.0007540013497491655,0.00026733838949155613,0.0005304924136879798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3306281187593094e-05,0.0,0.0,0.00037277358704488635,0.00014990179876667016,0.00042607986823247945,0.0001610130546214635,8.82872578880369e-05,3.361824961724435e-05,0.0,8.985291202457e-05,1.7861951814447944e-05,3.5444329373145154e-05,0.0,0.0,0.0,0.0,0.00017565167871824188,8.04049537727916e-05,8.819048549385694e-05,0.0,8.183082599357991e-05 +101423,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,47322.0,,6392.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004216322250816195,0.0018816718309310502,0.0,0.006098024771353542,0.002964769416389577,0.0010114680443596884,0.0021217873106042775,0.0,0.0,0.0010830975854585266,0.0010114680443596884,0.0021217873106042775,0.0,0.0,0.0018816718309310502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012572330157117293,0.0,0.0,0.0005024519856177689,0.00028411469031470126,0.0006281752871889419,0.00012907090588868078,0.00012053493472399247,0.0002528498022335296,0.0,0.0,0.00012572330157117293,0.0,0.0,0.0,0.0,0.0,0.0003054095300396967,0.00010419426831994542,0.00021857148882929988,0.0,0.0 +101424,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,98232.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00784070170606013,0.0,0.0,0.00784070170606013,0.005790635612009072,0.0015045258745495988,0.0005455402195014605,0.0,0.0,0.005790635612009072,0.0015045258745495988,0.0005455402195014605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009343614169511909,0.0002292187563347378,0.0009343614169511909,0.000690058963893879,0.00017929146914202372,6.501098391528825e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000690058963893879,0.00017929146914202372,6.501098391528825e-05,0.0,0.0 +101425,50.0,the Greater Atlanta and Macon Area,G1300890023416,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,56933.0,,10068.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004854205717713947,0.0029636339009565618,0.0,0.007817870308276806,0.0038032401500491145,0.0016237563796051564,0.0023908737786225353,0.0,0.0,0.0008396062490925527,0.0016237563796051564,0.0023908737786225353,0.0,0.0,0.0029636339009565618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019801301273151474,0.0,0.0,0.0005784676583004106,0.0003574441961660418,0.0007764806710319255,0.00010005448657328229,0.00019350035931375807,0.0002849164696429402,0.0,0.0,0.00019801301273151477,0.0,0.0,0.0,0.0,0.0,0.0003777425753250467,0.00016127351740452284,0.00023746457830235598,0.0,0.0 +101426,50.0,the Greater Atlanta and Macon Area,G1300670031306,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,6394.0,,619.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005462691858879665,0.00018041918066024576,0.0,0.0007266883665482124,0.0004049104541046695,0.00027536705250265803,4.641085994088478e-05,0.0,0.0,0.00022449127344442374,0.00027536705250265803,4.641085994088478e-05,0.0,0.0,0.00018041918066024576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2054285481636486e-05,0.0,0.0,6.509739687795371e-05,3.0541167252462915e-05,7.71516823595902e-05,2.6752007802332826e-05,3.2814734506284585e-05,5.530654569336294e-06,0.0,0.0,1.2054285481636484e-05,0.0,0.0,0.0,0.0,0.0,4.29888851634565e-05,2.9235408663408347e-05,4.927388532725342e-06,0.0,0.0 +101427,50.0,the Greater Atlanta and Macon Area,G1300670030345,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,38257.0,,2621.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.008648707635443589,0.0020326783647766503,0.0,0.010681386000220242,0.004899354846122096,0.0018067533368831838,0.0025985421246902075,0.0004199100464748646,0.0009569065068329575,0.003650460051628685,0.0018067533368831838,0.0018147585544069683,0.0004199100464748646,0.0009569065068329575,0.0012488947944934111,0.0007837835702832394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001358107035807807,0.0,0.0,0.0010306487879632826,0.00039756445487971776,0.0011664594915440634,0.0004350178531068495,0.00021530709734897426,0.00021626106273733576,5.00398208258693e-05,0.00011403258995827793,8.344324595453729e-05,5.2367457626243434e-05,0.0,0.0,0.0,0.0,0.0005350334650001121,0.0001973062839076168,0.00028377348458893546,4.5856226831912556e-05,0.00010449886160771294 +101428,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6250.0,,504.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011703050934112,0.0003997232873820727,0.0,0.0015700283807932728,0.0008015142516076283,0.00028029427290251287,0.0003818585594543824,0.0,0.00010636129682874933,0.0005081522610543048,0.00028029427290251287,0.0003818585594543824,0.0,0.0,0.0002933619905533234,0.0,0.00010636129682874933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.670464466096729e-05,0.0,0.0,0.00013946305388194113,6.524134117001877e-05,0.00016616769854290844,6.05555479187736e-05,3.3402140608190716e-05,4.550536535497684e-05,0.0,0.0,1.9598877428605624e-05,0.0,7.105767232361666e-06,0.0,0.0,0.0,8.48301726059804e-05,2.966561293588562e-05,4.0414911456177015e-05,0.0,1.1257001544865417e-05 +101429,50.0,the Greater Atlanta and Macon Area,G1302470060307,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,25038.0,,1096.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,56080.226740887294,0.0,0.0,0.002079194375911863,0.0003192872772896471,0.0,0.0023984816532015107,0.0014843881781223694,0.0005981776673270844,0.00031588543415261893,0.0,0.0,0.001165100900832722,0.0005981776673270844,0.00031588543415261893,0.0,0.0,0.0003192872772896471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1332824327495066e-05,0.0,0.0,0.00024777279783504244,8.87634383171023e-05,0.0002691056221625375,0.00013884238688980033,7.128345283786668e-05,3.764333855559122e-05,0.0,0.0,2.1332824327495066e-05,0.0,0.0,0.0,0.0,0.0,0.00016654586607787363,6.711453186015517e-05,3.5441816357551215e-05,0.0,0.0 +101430,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,86103.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007359128286974575,0.0,0.0,0.007359128286974576,0.0049749829727076846,0.00196574898201186,0.0004183963322550314,0.0,0.0,0.0049749829727076846,0.00196574898201186,0.0004183963322550314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008769733440737302,0.00024975371212321437,0.0008769733440737302,0.0005928592741082622,0.00023425457352275504,4.985949644271313e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005928592741082621,0.000234254573522755,4.985949644271312e-05,0.0,0.0 +101431,35.0,Eastern Counties in South Carolina and Georgia,G1300510003800,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,46652.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003943617030199383,0.0,0.0,0.003943617030199382,0.0029996966804723703,0.0006920017159902997,0.00025191863373671356,0.0,0.0,0.0029996966804723703,0.0006920017159902997,0.00025191863373671356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046995370457481863,0.00013607095207603085,0.00046995370457481863,0.0003574684247464829,8.246459215268447e-05,3.0020687675651358e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035746842474648294,8.246459215268449e-05,3.0020687675651365e-05,0.0,0.0 +101432,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Propane,61106.0,,,10045.0,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005388398034654925,0.0,0.0009467450944747243,0.006335143129129648,0.004471176078833695,0.0013577302684669441,0.0005062367818290096,0.0,0.0,0.0035244309843589705,0.0013577302684669441,0.0005062367818290096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009467450944747243,0.0,0.0,0.0,0.0,7.635447646721035e-05,0.0006421237285627441,0.00022144801624873696,0.0007184782050299544,0.000419998810441177,0.00016179777677213152,6.032714134943549e-05,0.0,0.0,0.0,0.0,0.0,7.635447646721035e-05,0.0,0.0,0.0005070828705861684,0.00015398225206902106,5.741308237476508e-05,0.0,0.0 +101433,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,36304.0,,1639.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008717242865049263,0.0013000724921081732,0.0,0.010017232650083696,0.0063859785775594044,0.0015759005830287636,0.0018945709381463151,0.0,0.00016086525842295293,0.005085906085451232,0.0015759005830287636,0.0018945709381463151,0.0,0.00016086525842295293,0.0013000724921081732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.68611349398209e-05,0.0,0.0,0.0010388132472045077,0.0004104262015751794,0.0011256743821443287,0.0006060754182710159,0.0001877963511251026,0.00022577154483167445,0.0,1.916993297671484e-05,8.68611349398209e-05,0.0,0.0,0.0,0.0,0.0,0.0007176166053826292,0.00017708991865203103,0.00021290011370641725,0.0,1.8077038510454513e-05 +101434,50.0,the Greater Atlanta and Macon Area,G1300570090602,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,4409.0,,698.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.000861146051773669,0.0005540546869796202,0.0,0.0014152007387532896,0.0008924920327208664,0.0002026323306613032,0.00021082033096149466,0.0,0.00010933875148336442,0.00044769339015087107,0.0002026323306613032,0.00021082033096149466,0.0,0.0,0.00044479864256999525,0.0,0.00010933875148336442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.701903006662746e-05,0.0,0.0,0.00010262057457805337,6.365542002911887e-05,0.0001396396046446808,5.3350477352190046e-05,2.4147177076088233e-05,2.512292014977507e-05,0.0,0.0,2.9719113852563446e-05,0.0,7.3054422672162285e-06,0.0,0.0,0.0,8.806329108297298e-05,1.9993982314269647e-05,2.0801902415948302e-05,0.0,1.0788589640597744e-05 +101435,85.0,Rural Climate Zone 3A,G1302850960800,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,103236.0,,14151.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.027639170566670285,0.012516555501650189,0.0,0.04015572606832048,0.028308022301034116,0.004316966254070613,0.004521411903468741,0.00064985498029256,0.0023594706294544398,0.01758011263417242,0.004316966254070613,0.0027327660686802505,0.00064985498029256,0.0023594706294544398,0.010727909666861697,0.0017886458347884905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008362852006647939,0.0,0.0,0.0032937054224686435,0.0015959287021893986,0.004129990623133437,0.0020949873358576303,0.0005144443508298621,0.0003256583404714958,7.744193579343426e-05,0.00028117345951622093,0.0007167780374786335,0.00011950716318616022,0.0,0.0,0.0,0.0,0.0029114619036849356,0.00044399720526435034,0.0004650243089336531,6.683716714369678e-05,0.00024267003810680082 +101436,85.0,Rural Climate Zone 3A,G1302870970300,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,29584.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025899879442820312,0.0,0.0,0.0025899879442820312,0.0007105871442170103,0.0006974519927215935,0.001181979496949725,0.0,0.0,0.0007105871442170103,0.0006974519927215935,0.001181979496949725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003086454170337749,0.00010007883964609076,0.0003086454170337749,8.467972445582007e-05,8.311442592998908e-05,0.00014085492388751206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.467972445582007e-05,8.311442592998908e-05,0.00014085492388751206,0.0,0.0 +101437,35.0,Eastern Counties in South Carolina and Georgia,G1302450000100,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,81738.0,,3442.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0065434756476731885,0.0010027843854373763,0.0,0.007546260033110563,0.005644295609917983,0.0013169385244220435,0.0005849955251711001,0.0,0.0,0.004641511224480607,0.0013169385244220435,0.0005849955251711001,0.0,0.0,0.0010027843854373763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.700000041668236e-05,0.0,0.0,0.000779772244187046,0.00024286260967978964,0.0008467722446037283,0.0005531191401651522,0.00015693679688563004,6.971268757823781e-05,0.0,0.0,6.700000041668236e-05,0.0,0.0,0.0,0.0,0.0,0.0006333512020320802,0.00014777478982132462,6.564284450294554e-05,0.0,0.0 +101438,50.0,the Greater Atlanta and Macon Area,G1301510070104,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,24112.0,,6638.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0011730939026349536,0.0011288921116147618,0.0,0.0023019860142497153,0.000931092199612653,0.0003634901394725025,0.0007635048234703137,0.0,0.00024388112133282626,0.0006455801896655427,0.0003634901394725025,0.00010730414731415957,0.0,5.671942618274891e-05,0.0002855120099471103,0.0006562006761561541,0.00018716169515007737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.542564445032827e-05,0.0,0.0,0.00013979528075294887,0.00011018226096964105,0.00021522092520327713,7.693251466069588e-05,4.331640117159447e-05,1.2787223056947942e-05,0.0,6.759141863710584e-06,1.9076160712794664e-05,4.3843302985811984e-05,1.2504996117758212e-05,0.0,0.0,0.0,8.705114775230409e-05,3.398399626899467e-05,7.138280314791708e-05,0.0,2.2801320359007928e-05 +101439,50.0,the Greater Atlanta and Macon Area,G1301350050718,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,86107.0,,4239.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007637016348230567,0.0012350209267384268,0.0,0.008872037274968993,0.006414661212457684,0.001966386827600053,0.0004909892349112581,0.0,0.0,0.0051796402857192565,0.001966386827600053,0.0004909892349112581,0.0,0.0,0.0012350209267384268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.251678515741263e-05,0.0,0.0,0.0009100871491651382,0.0003324366831916931,0.0009926039343225509,0.0006172468207984545,0.00023433017561904837,5.8510152747635416e-05,0.0,0.0,8.251678515741263e-05,0.0,0.0,0.0,0.0,0.0,0.0007176725885491745,0.0002199994478137124,5.49318979596642e-05,0.0,0.0 +101440,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,15729.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0037768185223054735,0.0,0.0,0.0037768185223054735,0.0017450365488256472,0.0014319902747223687,0.0005318064841437468,0.0,6.790250753997141e-05,0.0017450365488256472,0.0014319902747223687,0.0005318064841437468,0.0,6.790250753997141e-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.0004500726984613193,0.00013862756639942286,0.0004500726984613193,0.00020795103174937863,0.00017064619952171864,6.337386293893098e-05,0.0,8.091748285048576e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00020795103174937863,0.00017064619952171864,6.337386293893098e-05,0.0,8.091748285048576e-06 +101441,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,6598.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012419294192694403,0.0,0.0,0.0012419294192694403,0.0007754615233797464,0.0002882341519814864,0.0001382035202183827,0.0,4.01129307635641e-05,0.0007754615233797464,0.0002882341519814864,0.0001382035202183827,0.0,4.01129307635641e-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.00014800322923278684,3.0463473662487426e-05,0.00014800322923278684,9.24133109540896e-05,3.434944418462055e-05,1.6469991745337428e-05,0.0,4.780338717228398e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.24133109540896e-05,3.434944418462055e-05,1.6469991745337428e-05,0.0,4.780338717228398e-06 +101442,50.0,the Greater Atlanta and Macon Area,G1301510070403,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,5841.0,,1368.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0005204036539901461,0.00040280108265734895,0.0,0.0009232354262537928,0.0005158002130454907,0.00020868932282437896,0.00019871520077762553,0.0,0.0,0.00011299913038814164,0.00020868932282437896,0.00019871520077762553,0.0,0.0,0.00040280108265734895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6913821131894174e-05,0.0,0.0,6.201623467421696e-05,4.761500098107826e-05,8.893005580611113e-05,1.3466048007929872e-05,2.4869398819642352e-05,2.3680787846644738e-05,0.0,0.0,2.6913821131894174e-05,0.0,0.0,0.0,0.0,0.0,4.968412219304291e-05,2.010186415854655e-05,1.9141113298027778e-05,0.0,0.0 +101443,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,95681.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.00843733031981589,0.0,0.0,0.00843733031981589,0.005787385636869232,0.0018519998521174799,0.000797944830829178,0.0,0.0,0.005787385636869232,0.0018519998521174799,0.000797944830829178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010054591379708624,0.00031802181051889265,0.0010054591379708624,0.0006896707314972662,0.000220698977549671,9.508942892392505e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006896707314972662,0.000220698977549671,9.508942892392505e-05,0.0,0.0 +101444,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,23520.0,,1237.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007339094895331184,0.0009809058945481858,0.0,0.008320083496953108,0.004114097969014369,0.001749006488365134,0.0022919784274636873,0.0,0.000164917905036179,0.0031331920744661836,0.001749006488365134,0.0022919784274636873,0.0,0.000164917905036179,0.0009809058945481858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.554021255184337e-05,0.0,0.0,0.0008745881177758285,0.00026327836508797877,0.0009401283303276718,0.00037337745295823243,0.00020842628613646595,0.0002731313775672079,0.0,1.9653001113922217e-05,6.554021255184337e-05,0.0,0.0,0.0,0.0,0.0,0.00046487274506684477,0.00019762909233316377,0.0002589822389339687,0.0,1.863490850297104e-05 +101445,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,24136.0,,2743.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0021700620613105638,0.000807351472873667,0.0,0.0029774135341842306,0.001144783694116909,0.0008255504094082049,0.001007079430659117,0.0,0.0,0.00033743222124324213,0.0008255504094082049,0.001007079430659117,0.0,0.0,0.000807351472873667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.394206577451269e-05,0.0,0.0,0.0002586022829037058,0.0001350067793892122,0.0003125443486782185,4.021117381595596e-05,9.837931565704549e-05,0.0001200117934307044,0.0,0.0,5.394206577451269e-05,0.0,0.0,0.0,0.0,0.0,0.00012016996293840159,8.665948214688229e-05,0.00010571490359293469,0.0,0.0 +101446,50.0,the Greater Atlanta and Macon Area,G1300210012500,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,13314.0,,1784.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011204468363228309,0.0005250377845410992,0.0,0.00164548462086393,0.0007449595032704374,0.0003991490195079224,0.0005013760980855704,0.0,0.0,0.00021992171872933815,0.0003991490195079224,0.0005013760980855704,0.0,0.0,0.0005250377845410992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.507908592931059e-05,0.0,0.0,0.00013352160641134824,7.78109496246575e-05,0.00016860069234065882,2.620767020580464e-05,4.756586082845313e-05,5.974807537709048e-05,0.0,0.0,3.507908592931059e-05,0.0,0.0,0.0,0.0,0.0,7.633051468521462e-05,4.089786083858868e-05,5.137231681685554e-05,0.0,0.0 +101447,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,20396.0,,1462.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0018172850369184699,0.00043020690108119754,0.0,0.002247491937999668,0.001084110342466351,0.00046114202422928204,0.0007022702609103328,0.0,0.0,0.0006539034413851531,0.00046114202422928204,0.0007022702609103328,0.0,0.0,0.00043020690108119754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8743318151042636e-05,0.0,0.0,0.00021656392324772913,9.499373454253533e-05,0.00024530724139877174,7.792497699298091e-05,5.4953804115855425e-05,8.368879938660452e-05,0.0,0.0,2.8743318151042636e-05,0.0,0.0,0.0,0.0,0.0,0.00011832750675804095,5.033231752431205e-05,7.665076679813873e-05,0.0,0.0 +101448,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,18190.0,,483.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015701416374030697,0.0001421542563709593,0.0,0.0017122958937740291,0.0004186676091132613,0.0005599011772952896,0.0007337271073654782,0.0,0.0,0.0002765133527423021,0.0005599011772952896,0.0007337271073654782,0.0,0.0,0.0001421542563709593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.497259276228174e-06,0.0,0.0,0.00018711051336577842,7.273578403111374e-05,0.0001966077726420066,3.295152115682858e-05,6.672225882188464e-05,8.743673338706522e-05,0.0,0.0,9.497259276228174e-06,0.0,0.0,0.0,0.0,0.0,4.807189365132906e-05,6.428849345952554e-05,8.424738553115197e-05,0.0,0.0 +101449,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,29360.0,,5849.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025878089822348946,0.0017216869133011262,0.0,0.0043094958955360195,0.002166931721468198,0.0009336392027887142,0.0012088942816728106,0.0,0.0,0.000445244808167072,0.0009336392027887142,0.0012088942816728106,0.0,0.0,0.0017216869133011262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011503348166683034,0.0,0.0,0.0003083836477311458,0.0002077793704215923,0.00042341712939797615,5.3058869112253776e-05,0.00011125978192259335,0.00014406133948171966,0.0,0.0,0.00011503348166683034,0.0,0.0,0.0,0.0,0.0,0.00021290564635550202,9.173203565356735e-05,0.00011877643206987284,0.0,0.0 +101450,35.0,Eastern Counties in South Carolina and Georgia,G1302450000600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6759.0,,429.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013546591607761164,0.0003405050225847287,0.0,0.001695164183360845,0.0012081849331838028,0.0002498580697664477,0.00019535410817224413,0.0,4.184977931208955e-05,0.0008676799105990741,0.0002498580697664477,0.00019535410817224413,0.0,4.184977931208955e-05,0.0003405050225847287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2748477875460387e-05,0.0,0.0,0.000161430955698341,7.307384637722289e-05,0.00018417943357380137,0.0001033989960456252,2.977488962480543e-05,2.3279804466663493e-05,0.0,4.987121532655261e-06,2.2748477875460384e-05,0.0,0.0,0.0,0.0,0.0,0.00013126918255494194,2.7147056441571715e-05,2.1225205996356303e-05,0.0,4.54697469693323e-06 +101452,81.0,the Columbus-Albany Area,G1302150010203,ComStock 90.1-2004,gen5_led,25001_50000,NaturalGas,112208.0,,5938.0,,4.088175128053588,Healthcare,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.011496114855244155,0.002206955224362747,0.0,0.013703070079606902,0.007339687682484149,0.0013458490028757516,0.004716613135233005,0.0,0.00030092025901399486,0.006138447797125811,0.0013458490028757516,0.0040117793068188195,0.0,0.0,0.0012012398853583387,0.0007048338284141859,0.00030092025901399486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014745629881123654,0.0,0.0,0.0013699688842423786,0.0004733406199344726,0.001517425183053615,0.0007315064772315145,0.00016038211865875213,0.00047807567078038876,0.0,0.0,8.026007302913029e-05,4.709302049610915e-05,2.0105794237096404e-05,0.0,0.0,0.0,0.0008127687343382084,0.000149034133058294,0.0005222995656116022,0.0,3.332275004551035e-05 +101453,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,114181.0,,19153.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005877490698217564,0.00325717377503222,0.0,0.009134682203611204,0.003815041866752762,0.0015334634984975268,0.0018567234479079295,0.0,0.001929453390452986,0.0029344634668258393,0.0015334634984975268,0.0011387679229257314,0.0,0.0002708135403298865,0.0008805783999269223,0.0007179555249821982,0.0016586398501230995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021762581552602124,0.0,0.0,0.0007004097654949341,0.000370983657692256,0.0009180355810209553,0.0003496946187045853,0.00018274002708390785,0.00013570488067151686,0.0,3.22723519295117e-05,5.8835237434269127e-05,4.7969702394560755e-05,0.00011082087569719135,0.0,0.0,0.0,0.000383411715776939,0.00015411308488226004,0.00018660071049012895,0.0,0.0001939100698716273 +101454,50.0,the Greater Atlanta and Macon Area,G1300670030901,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,172924.0,,8286.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009541310312418696,0.0014091382042201166,0.0,0.010950448516638811,0.0061980201719692785,0.0023642905042797814,0.0012488734673442594,0.0,0.0011392821034069132,0.0049459552395694105,0.0023642905042797814,0.0010918001955240115,0.0,0.0011392821034069132,0.0012520649323998685,0.00015707327182024777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.415090084664747e-05,0.0,0.0,0.0011370191551099424,0.0003459825873230835,0.00123117005595659,0.000589399743176493,0.00028174784212936835,0.00013010767863275694,0.0,0.00013576600406356868,8.365612468025194e-05,1.0494776166395514e-05,0.0,0.0,0.0,0.0,0.0006968497071465831,0.00026581958428724184,0.00014041211319670073,0.0,0.00012809064476861881 +101455,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,55559.0,,5131.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.00489926158930937,0.0014947455755306423,0.0,0.006394007164840012,0.004270011729757465,0.0012739902548170624,0.0008500051802654848,0.0,0.0,0.002775266154226822,0.0012739902548170624,0.0008500051802654848,0.0,0.0,0.0014947455755306423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.987031163804845e-05,0.0,0.0,0.0005838341542849711,0.00025220958581309853,0.0006837044659230196,0.00033072232182995714,0.0001518185974415922,0.00010129323501342165,0.0,0.0,9.987031163804845e-05,0.0,0.0,0.0,0.0,0.0,0.0004565878664059811,0.00013622643896155627,9.089016055548237e-05,0.0,0.0 +101456,50.0,the Greater Atlanta and Macon Area,G1300630040622,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,75869.0,,5377.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006759815441557205,0.0015828471344103187,0.0,0.008342693265573822,0.0038318735527248715,0.0017432310169221135,0.002767588695926837,0.0,0.0,0.002249026418314553,0.0017432310169221135,0.002767588695926837,0.0,0.0,0.0015828471344103187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010575676490629162,0.0,0.0,0.0008055557683076265,0.00036457702772588804,0.0009113125332139183,0.00026801267283299953,0.0002077378906739631,0.00032980886202911856,0.0,0.0,0.00010575676490629162,0.0,0.0,0.0,0.0,0.0,0.0004185739884143916,0.00019042151298596236,0.0003023170318135644,0.0,0.0 +101457,50.0,the Greater Atlanta and Macon Area,G1301390001102,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,68336.0,,6.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.005960259128683155,1.7493075589690587e-06,0.0,0.005962039125848422,0.00255125766113433,0.0013427930339496876,0.0020679577411581067,0.0,0.0,0.0025495083535753606,0.0013427930339496876,0.0020679577411581067,0.0,0.0,1.7493075589690587e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1764912488083177e-07,0.0,0.0,0.0007102742658465727,0.00025811106035385955,0.0007103919149714535,0.0003038207123228766,0.00016001843473258953,0.00024643511879110665,0.0,0.0,1.1764912488083177e-07,0.0,0.0,0.0,0.0,0.0,0.0003039887490206461,0.0001599971577949183,0.0002464023514123275,0.0,0.0 +101458,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,50241.0,,4477.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.0043707216600999375,0.0013178116944233575,0.0,0.005688502664916997,0.002037759168561167,0.0014751573059116796,0.0021755861904441502,0.0,0.0,0.0007199474741378096,0.0014751573059116796,0.0021755861904441502,0.0,0.0,0.0013178116944233575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.804753043742084e-05,0.0,0.0,0.0005208502168231521,0.0002386526050135578,0.0006088977472605729,8.579471015717452e-05,0.0001757915654173199,0.0002592602840292469,0.0,0.0,8.804753043742084e-05,0.0,0.0,0.0,0.0,0.0,0.0002181218925762035,0.00015790094746096137,0.000232874907223408,0.0,0.0 +101459,50.0,the Greater Atlanta and Macon Area,G1301210010119,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,DistrictHeating,14474.0,,,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,163187.89066084955,0.013692031845083321,0.008823478882784192,0.0037140790897853115,0.0,0.0,0.026229589817652825,0.02328957918411281,0.0008703188043671399,0.001920941291166388,0.0,0.0001487505380064889,0.0009228189942517832,0.0008703188043671399,0.001920941291166388,0.0,0.0,0.0,0.0,0.0,0.008674728344777704,0.0,0.0001487505380064889,0.013692031845083321,0.0,0.0,0.0,0.0,0.0,0.0,0.0004426018948053227,0.00014937166052596262,0.0004426018948053227,0.0001099711195007942,0.00010371474128190023,0.00022891603402262824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003929917298656923,1.4685885466586737e-05,3.24142413659791e-05,0.0,2.510038107064636e-06 +101460,50.0,the Greater Atlanta and Macon Area,G1300890021218,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,3685.0,,836.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008848829819368502,0.0006632280243155062,0.0,0.001548028299178617,0.0010612144631490534,0.0001849330168810914,0.0002587077266565536,0.0,4.325579956565778e-05,0.0003979864388335473,0.0001849330168810914,0.0002587077266565536,0.0,4.325579956565778e-05,0.0006632280243155062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4310863088973576e-05,0.0,0.0,0.00010544610045408997,7.171822046291703e-05,0.00014975696354306353,4.7425613177407315e-05,2.203733812649268e-05,3.0828619704682064e-05,0.0,5.1545294455079025e-06,4.4310863088973576e-05,0.0,0.0,0.0,0.0,0.0,0.00010266237106486338,1.7890504380097777e-05,2.502750344407238e-05,0.0,4.184585774056859e-06 +101461,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,13012.0,,125.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003124342417576077,9.949660970838682e-05,0.0,0.0032239217343582034,0.0013286064325482344,0.0008343489598821333,0.0009613870251457095,0.0,9.949660970838682e-05,0.0013286064325482344,0.0008343489598821333,0.0009613870251457095,0.0,0.0,0.0,0.0,9.949660970838682e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.649895169161452e-06,0.0,0.0,0.0003723237334832,0.00012075660344044091,0.0003789736286523614,0.00015832826277726927,9.942825665445048e-05,0.00011456721405148022,0.0,0.0,0.0,0.0,6.649895169161452e-06,0.0,0.0,0.0,0.00015617835737997775,9.807814176103186e-05,0.00011301153051449586,0.0,1.1695876738552865e-05 +101462,35.0,Eastern Counties in South Carolina and Georgia,G1302450010905,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,251764.0,,9643.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011518724330512924,0.0016398633973792637,0.0,0.013158587727892189,0.006253037483455702,0.004202184308359615,0.0013584293705587657,0.0,0.0013449365655181054,0.006066478620593907,0.004202184308359615,0.0010060384373352163,0.0,0.00024402296422418673,0.00018655886286179558,0.00035239093322354944,0.0011009136012939188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010956642011473932,0.0,0.0,0.001372664215146272,0.0004304297766336059,0.001482230635261011,0.0007229305846291024,0.0005007662185520482,0.00011988766484614998,0.0,2.9079747118971494e-05,1.2464810652588816e-05,2.3544773970747264e-05,7.355683549140323e-05,0.0,0.0,0.0,0.0007043646258304139,0.00047334915005057735,0.00015301836872755862,0.0,0.0001514984906524611 +101463,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970200,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,27763.0,,3325.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005972193706440948,0.0022870064357458047,0.0,0.008259200142186753,0.003784232550667702,0.0003757409281507863,0.0025684356020110625,0.0003650546524694602,0.001165736408887742,0.003784232550667702,0.0003757409281507863,0.0002814291662652578,0.0003650546524694602,0.001165736408887742,0.0,0.0022870064357458047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015280261430984201,0.0,0.0,0.000711694698466891,0.00039420318174595475,0.0008644973127767331,0.00045095962663961093,4.4776314986826653e-05,3.3537365911110474e-05,4.3502852315889976e-05,0.00013891853861345302,0.0,0.00015280261430984201,0.0,0.0,0.0,0.0,0.00039609875225862985,3.932911384813436e-05,0.0002688402796582148,3.821057253044548e-05,0.0001220185944813086 +101464,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,8396.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017552922259693213,0.0,0.0,0.0017552922259693215,0.0011234101826010127,0.0002060233206846148,0.0003845051858140402,0.0,4.135353686965371e-05,0.0011234101826010127,0.0002060233206846148,0.0003845051858140402,0.0,4.135353686965371e-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.0002091764716759467,7.098825573822052e-05,0.0002091764716759467,0.00013387570158669295,2.4551599252922928e-05,4.582110996661528e-05,0.0,4.9280608697155604e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013387570158669292,2.4551599252922925e-05,4.5821109966615275e-05,0.0,4.92806086971556e-06 +101465,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,142961.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.011762466784933142,0.0,0.0,0.011762466784933142,0.003139945689136865,0.004486574923873766,0.0041359154823162134,0.0,0.0,0.003139945689136865,0.004486574923873766,0.0041359154823162134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014017099555191485,0.00038850402752444276,0.0014017099555191485,0.00037418113162200904,0.0005346562801802776,0.0004928688864970401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037418113162200904,0.0005346562801802776,0.0004928688864970401,0.0,0.0 +101466,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,117814.0,,3493.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.010005241307539275,0.0010280711213667456,0.0,0.01103331242890602,0.0029743445735544607,0.003115762279374275,0.004943205575977285,0.0,0.0,0.0019462734521877153,0.003115762279374275,0.004943205575977285,0.0,0.0,0.0010280711213667456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.868976562631657e-05,0.0,0.0,0.0011923060859390948,0.00040270169367776626,0.0012609958515654115,0.00023193380455466798,0.00037129962325227315,0.0005890726581321536,0.0,0.0,6.868976562631657e-05,0.0,0.0,0.0,0.0,0.0,0.000339937456910223,0.0003561000682316868,0.0005649583264235018,0.0,0.0 +101467,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Propane,106633.0,,,22165.0,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00975068475950428,0.0,0.002089126542928008,0.011839841676031726,0.009258845063808764,0.0019809054081312985,0.0006000608304922249,0.0,0.0,0.007169718520880756,0.0019809054081312985,0.0006000608304922249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002089126542928008,0.0,0.0,0.0,0.0,0.00016848631072638876,0.001161971447695933,0.0005278347674917628,0.0013304577584223214,0.0008544023742701432,0.00023606091075721006,7.150816266857985e-05,0.0,0.0,0.0,0.0,0.0,0.00016848631072638876,0.0,0.0,0.0010404279538730528,0.00022259680839181175,6.742958303825066e-05,0.0,0.0 +101468,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,25765.0,,1076.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008260699818008286,0.0008538678292846097,0.0,0.009114484940219157,0.005512922707167275,0.001007785693513461,0.0023888284108124157,0.0,0.00020511354287348237,0.004864168420756148,0.001007785693513461,0.0023888284108124157,0.0,0.0,0.0006487542864111273,0.0,0.00020511354287348237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.704913183775887e-05,0.0,0.0,0.000984408254866863,0.000370063462213734,0.0010414573867046219,0.0005796515612414016,0.00012009546136377744,0.0002846710882700027,0.0,0.0,4.334496223705739e-05,0.0,1.3704169600701472e-05,0.0,0.0,0.0,0.0006299285273242162,0.00011515361115946914,0.00027295705794985194,0.0,2.3437091151045007e-05 +101469,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,NaturalGas,95546.0,,19958.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,357187.66821064625,0.0,0.0,0.02711178337116408,0.01728204771477111,0.0,0.0443938310859352,0.022177370004539326,0.002062257433335335,0.014757378051275832,0.0006408047656531196,0.004756111110754809,0.014981813194613908,0.002062257433335335,0.006990892904073677,0.0006408047656531196,0.002436015073488042,0.007195556809925411,0.007766485147202157,0.002320096037266767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011546868340010718,0.0,0.0,0.0032308566121828455,0.0022926361951587505,0.0043855434461839175,0.0017853525000420603,0.00024575506425745733,0.000833090625392482,7.636341312872357e-05,0.00029029500936212277,0.00048076563893676696,0.0005189117802443228,0.00015501544678413578,0.0,0.0,0.0,0.0021908408735604027,0.00020372469214474244,0.0014578404479296079,6.33033255195632e-05,0.0004698430255031879 +101470,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,84864.0,,10747.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0043927147721795025,0.0018275924640947826,0.0,0.0062203072362742836,0.002606930500313204,0.00158154823866871,0.0015364421992160955,0.0,0.0004953862980762753,0.002108264085374219,0.00158154823866871,0.00020751615006029802,0.0,0.0004953862980762753,0.000498666414938985,0.0013289260491557977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001221086922589143,0.0,0.0,0.0005234721393941166,0.00028276180030100925,0.0006455808316530308,0.00025123814506878363,0.00018847033850097553,2.4729336791652665e-05,0.0,5.903431903270467e-05,3.3317878574094755e-05,8.879081368481956e-05,0.0,0.0,0.0,0.0,0.0002705628993113676,0.00016414257181140147,0.00015946119622072653,0.0,5.141416430953539e-05 +101471,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,106393.0,,5158.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009495885911816302,0.0015183682715788449,0.0,0.011014284873001446,0.0032123117807868477,0.0030201948453632286,0.004781747557245071,0.0,0.0,0.001693943509208003,0.0030201948453632286,0.004781747557245071,0.0,0.0,0.0015183682715788449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010144910146421218,0.0,0.0,0.0011316075632759836,0.0004015719404360087,0.0012330566647401958,0.00020186418672077228,0.0003599111616671121,0.0005698322148880992,0.0,0.0,0.00010144910146421218,0.0,0.0,0.0,0.0,0.0,0.00035962048341712155,0.0003381128621448381,0.000535319883455988,0.0,0.0 +101472,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,50499.0,,610.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.002478420840740661,0.00010374034466872893,0.0,0.00258216118540939,0.0007908450407800353,0.0003574086255054244,0.001067527330739959,0.0,0.0003663624580225511,0.0007908450407800353,0.0003574086255054244,0.0009637869860712302,0.0,0.0003663624580225511,0.0,0.00010374034466872893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.931583501294546e-06,0.0,0.0,0.00029534806684896936,8.182259124914073e-05,0.0003022796503502639,9.424329804363468e-05,4.259161514580728e-05,0.0001148524167127588,0.0,4.365862405783391e-05,0.0,6.931583501294546e-06,0.0,0.0,0.0,0.0,9.25799534742553e-05,4.183989557290912e-05,0.00012496965336587383,0.0,4.288807233966769e-05 +101473,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,132865.0,,3415.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013466722001857173,0.0010051766750686592,0.0,0.014471867987319535,0.005205755157854133,0.003569078453997643,0.005697065065074057,0.0,0.0,0.004200578482785474,0.003569078453997643,0.005697065065074057,0.0,0.0,0.0010051766750686592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.715923082786743e-05,0.0,0.0,0.001604802750188788,0.0005971197116720456,0.0016719619810166555,0.0005005746684774752,0.0004253200532263956,0.0006789080284849173,0.0,0.0,6.715923082786743e-05,0.0,0.0,0.0,0.0,0.0,0.0006014306317636319,0.00041234231044523446,0.0006581925844354157,0.0,0.0 +101474,46.0,the Tallahassee-Valdosta Area,G1301850010900,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,36457.0,,1103.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.003255614815272906,0.00032481879305488624,0.0,0.003580433608327793,0.001013677696013123,0.0009541091701892819,0.0016126160525190905,0.0,0.0,0.0006888589029582367,0.0009541091701892819,0.0016126160525190905,0.0,0.0,0.00032481879305488624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1703193554882478e-05,0.0,0.0,0.00038796436157737923,0.00015170339042403435,0.0004096675551322617,8.208978016973527e-05,0.00011369906333854137,0.0001921718608571197,0.0,0.0,2.1703193554882478e-05,0.0,0.0,0.0,0.0,0.0,0.00011598340001387384,0.00010916766342813574,0.00018451298023399983,0.0,0.0 +101475,85.0,Rural Climate Zone 3A,G1300690010100,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,30976.0,,2244.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0015612469748427496,0.0003815573777595363,0.0,0.0019428043526022861,0.0007942670005341054,0.00039357856280233214,0.0004293584321479987,0.0,0.00032561808747926977,0.0006743565662502884,0.00039357856280233214,0.0004293584321479987,0.0,6.395341364213045e-05,0.00011991043428381707,0.0,0.0002616646738371393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5493793729452818e-05,0.0,0.0,0.00018605086288960135,7.485343815654881e-05,0.00021154465661905417,8.036180250006358e-05,4.690201640364966e-05,5.116583607670872e-05,0.0,7.621207909179399e-06,8.011827462466978e-06,0.0,1.7483150922828287e-05,0.0,0.0,0.0,8.648474544890502e-05,4.285528895851941e-05,4.6751224318384804e-05,0.0,3.54553284855937e-05 +101476,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,12837.0,,1718.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011372340509676743,0.0005055805741483556,0.0,0.00164281462511603,0.0006345076102050051,0.00044392515509627086,0.0005643818598147542,0.0,0.0,0.00012892703605664943,0.00044392515509627086,0.0005643818598147542,0.0,0.0,0.0005055805741483556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3779123040170666e-05,0.0,0.0,0.00013552373209327546,8.314760042948045e-05,0.0001693028551334461,1.536418389798819e-05,5.290238516648397e-05,6.725716302880332e-05,0.0,0.0,3.3779123040170666e-05,0.0,0.0,0.0,0.0,0.0,6.539018363317763e-05,4.574940779946382e-05,5.8163263700804674e-05,0.0,0.0 +101477,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,93946.0,,9115.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.008002038635669322,0.0026830081409703675,0.0,0.010685077466245987,0.006342498175121042,0.0015480451208687242,0.0027945034806499225,0.0,0.0,0.0036594900341506745,0.0015480451208687242,0.0027945034806499225,0.0,0.0,0.0026830081409703675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017926364543257122,0.0,0.0,0.0009535881080741499,0.0004641457959611366,0.001132851753506721,0.00043609464251106555,0.00018447766690883396,0.00033301579865425025,0.0,0.0,0.00017926364543257122,0.0,0.0,0.0,0.0,0.0,0.000672443433563932,0.00016412661819472906,0.0002962784479790143,0.0,0.0 +101478,50.0,the Greater Atlanta and Macon Area,G1301390001403,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,56316.0,,,10704.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004966022760873547,0.0,0.0010089198525238023,0.005974912239797913,0.0036515748716053993,0.0019408426304729038,0.00038252511131904647,0.0,0.0,0.0026426550190815977,0.0019408426304729038,0.00038252511131904647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010089198525238023,0.0,0.0,0.0,0.0,8.136771793951465e-05,0.0005917898710468304,0.0002106128458730861,0.000673157588986345,0.0003149193123489553,0.00023128589322206645,4.558466547580877e-05,0.0,0.0,0.0,0.0,0.0,8.136771793951465e-05,0.0,0.0,0.00041140107802757484,0.00021866311893733266,4.3096814033032864e-05,0.0,0.0 +101479,50.0,the Greater Atlanta and Macon Area,G1301510070202,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,37623.0,,4477.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0030633597448938977,0.001304394227854252,0.0,0.00436775397274815,0.003357345813851897,0.0006590767341997768,0.00035136179829591306,0.0,0.0,0.0020529515859976457,0.0006590767341997768,0.00035136179829591306,0.0,0.0,0.001304394227854252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.71512106595747e-05,0.0,0.0,0.0003650556634546711,0.00017231039940296186,0.00045220687411424586,0.0002446469450791348,7.854111645616431e-05,4.187122149246089e-05,0.0,0.0,8.71512106595747e-05,0.0,0.0,0.0,0.0,0.0,0.00034759623945743184,6.823622201100842e-05,3.637755731708121e-05,0.0,0.0 +101480,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,169990.0,,19426.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.00791423050562329,0.0033035918612299184,0.0,0.01121782236685321,0.006089031640320214,0.0021964549030775615,0.0013213729151908555,0.0,0.0016109629082645773,0.004611791117885675,0.0021964549030775615,0.000789391151143591,0.0,0.0003165756031550428,0.0014772405224345393,0.0005319817640472643,0.0012943873051095346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022072714705680956,0.0,0.0,0.0009431229752211976,0.0004626916895720068,0.0011638501222780073,0.0005495778973216152,0.000261747125214235,9.407016014391367e-05,0.0,3.772567964982657e-05,9.870077773841374e-05,3.554398424407223e-05,8.648356971584619e-05,0.0,0.0,0.0,0.0006317376035549833,0.00022788240212097839,0.000137092563835197,0.0,0.00016713755276684858 +101481,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,64574.0,,4980.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005753441871842937,0.0014659504240223686,0.0,0.007219392295865305,0.0035925866924216834,0.0014781035081162593,0.0021487020953273625,0.0,0.0,0.002126636268399315,0.0014781035081162593,0.0021487020953273625,0.0,0.0,0.0014659504240223686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.794597569146143e-05,0.0,0.0,0.0006856265390630008,0.0003239527473432812,0.0007835725147544622,0.0002534271305814769,0.00017614273598666095,0.0002560566724948628,0.0,0.0,9.794597569146145e-05,0.0,0.0,0.0,0.0,0.0,0.0003899292452449928,0.0001604291934080623,0.0002332140761014071,0.0,0.0 +101482,50.0,the Greater Atlanta and Macon Area,G1302170100800,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,724219.0,,12321.0,,7.614023970037612,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,2664908.3895131643,0.0,0.0,0.1517362169872533,0.008528121410377629,0.0,0.16026441056465368,0.11326996703129713,0.02176514105406891,0.01806852964862791,0.0008068994811751709,0.0063538011824618166,0.11326996703129713,0.02176514105406891,0.009540408238250283,0.0008068994811751709,0.0063538011824618166,0.0,0.008528121410377629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005698004790374371,0.0,0.0,0.01808211659961741,0.005385330190647752,0.018651917078654847,0.013498166698506736,0.0025937104941785596,0.0011369123179503283,9.615667763752088e-05,0.0007571704113442672,0.0,0.0005698004790374371,0.0,0.0,0.0,0.0,0.013182602582358224,0.0025330739664246736,0.0021028543739189504,9.390869851056147e-05,0.000739469058488987 +101483,50.0,the Greater Atlanta and Macon Area,G1301350050529,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,86859.0,,17742.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.008780945159571422,0.005332916590536461,0.0,0.014113861750107882,0.006745289913246675,0.0008389501924221773,0.004354104805018017,0.0,0.002175548177443218,0.004909884628805224,0.0008389501924221773,0.0030321103383440205,0.0,0.0,0.001835405284441451,0.001321994466673996,0.002175548177443218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003563144359027078,0.0,0.0,0.0010464085448086498,0.0007583098673451396,0.0014027229807113575,0.0005851016190445259,9.99760998464401e-05,0.00036133082591768373,0.0,0.0,0.00012263109453823612,8.832797300736733e-05,0.00014535746218128373,0.0,0.0,0.0,0.0006703886817368966,8.338006531584513e-05,0.0004327378982848427,0.0,0.00021621944994048038 +101484,46.0,the Tallahassee-Valdosta Area,G1300270960400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,11374.0,,219.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,5611.956475588368,0.0,0.0,0.0005251378445391239,3.73046804277911e-05,0.0,0.000562442524966915,0.0003077104224450164,0.00019349143417703624,2.3935987917071283e-05,0.0,3.73046804277911e-05,0.0003077104224450164,0.00019349143417703624,2.3935987917071283e-05,0.0,0.0,0.0,0.0,3.73046804277911e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.492313619868343e-06,0.0,0.0,6.257973813488286e-05,1.9827820107514578e-05,6.50720517547512e-05,3.666930094303775e-05,2.3058028302585473e-05,2.8524088892596346e-06,0.0,0.0,0.0,0.0,2.492313619868343e-06,0.0,0.0,0.0,3.560070166457686e-05,2.2386082239442655e-05,2.7692853498806542e-06,0.0,4.3159825008510355e-06 +101485,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,174497.0,,25364.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011053958366609079,0.004313460056631866,0.0,0.015367418423240947,0.006173020362367004,0.0032800282109026685,0.0025814165102297478,0.0,0.0033329533397415258,0.005190492384274778,0.0032800282109026685,0.0021551963520530988,0.0,0.00042825914973995547,0.000982527978092226,0.00042622015817664924,0.0029046941900015707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002881996397491931,0.0,0.0,0.0013172797508968655,0.0005968553408099266,0.0016054793906460586,0.0006185413666513548,0.0003908748885507142,0.0002568307586847943,0.0,5.10348499043431e-05,6.564665155397066e-05,2.8477485458917272e-05,0.00019407431809944598,0.0,0.0,0.0,0.000644913589053467,0.0003426741921322208,0.0002696881734917507,0.0,0.00034820343596862004 +101486,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010401,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,143443.0,,9098.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.0073837558222967295,0.0015472045285980676,0.0,0.008930960350894796,0.003976565459289443,0.0024758499383347537,0.0013504152471969018,0.0,0.0011281297060736998,0.003912417011671692,0.0024758499383347537,0.0008118555190627978,0.0,0.0001836333532274869,6.414844761775103e-05,0.0005385597281341039,0.0009444963528462127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010337538633209463,0.0,0.0,0.0008799077854205351,0.0003276906838183034,0.0009832831717526296,0.00046623510734010844,0.0002950422100491494,9.674723935247676e-05,0.0,2.1883228678800624e-05,4.2860335737886426e-06,3.598349082471809e-05,6.31058619335879e-05,0.0,0.0,0.0,0.0004378129275985782,0.0002725867638529421,0.00014867836551461615,0.0,0.0001242051147864934 +101487,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,29866.0,,919.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007046774662072988,0.0007124643596167978,0.0,0.007759319882472852,0.0033195777273122696,0.00042516599737431885,0.0029928193029323488,0.0004191014386441793,0.0006026554162097373,0.0033195777273122696,0.00042516599737431885,0.0022803549433155507,0.0004191014386441793,0.0006026554162097373,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.0008397547914263203,0.00029295128049959345,0.0008873600701213938,0.00039558967551866066,5.066646807485733e-05,0.0002717468745110406,4.9943762653477656e-05,7.181764674056897e-05,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.0003796287264216341,4.862221624546202e-05,0.0003422604541036592,4.792866998863249e-05,6.892000336200616e-05 +101488,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970202,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,270617.0,,30659.0,,7.4027997343857175,Healthcare,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,555209.9800789288,0.0,0.0,0.05290034289163315,0.02063314185013037,0.0,0.07353355490676679,0.043041738942878736,0.0052333269335245285,0.02027473901345267,0.001009534066977059,0.00397428611493707,0.02753162464114028,0.0052333269335245285,0.017430600606105223,0.001009534066977059,0.0016953969738925964,0.01551011430173845,0.002844138407347448,0.0022788891410444744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001378587005939052,0.0,0.0,0.006304034842301611,0.00321466135391169,0.007682621848240663,0.0032808921741482445,0.0006236457748048363,0.002077172047225242,0.00012030428509226915,0.00020203728389522514,0.0010362959840200477,0.0001900288516378618,0.00015226217028114258,0.0,0.0,0.0,0.0044969049083522766,0.0005467663285075587,0.0021182595226032653,0.00010547386821342819,0.0004152245512472198 +101489,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,55543.0,,2902.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0048072199304721635,0.0008542758809028544,0.0,0.005661495811375018,0.0019920623447838874,0.0014938165865406828,0.0021755861904441502,0.0,0.0,0.001137786463881033,0.0014938165865406828,0.0021755861904441502,0.0,0.0,0.0008542758809028544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.707734828529219e-05,0.0,0.0,0.0005728682034323563,0.00022117216227976463,0.0006299455517176485,0.0001355880731234115,0.00017801557585591128,0.0002592608972249728,0.0,0.0,5.707734828529219e-05,0.0,0.0,0.0,0.0,0.0,0.00022165357966343893,0.00016621457387333062,0.00024207398339764577,0.0,0.0 +101490,50.0,the Greater Atlanta and Macon Area,G1300450910103,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,8909.0,,2746.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.002228523181368624,0.0021297113044588833,0.0,0.004358234485827509,0.0014241201114029106,0.00017757027961848694,0.0020118971435280388,0.00041796938768121994,0.00032667756359685207,0.0009125139369283356,0.00017757027961848694,0.0007204695771405822,0.00041796938768121994,0.0,0.0005116061744745749,0.0012914275663874564,0.00032667756359685207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014229227449062633,0.0,0.0,0.0002655699817229528,0.00022311093029357625,0.00040786225621357915,0.000108743005941347,2.1160801156154015e-05,8.585734895324782e-05,4.9808825672204044e-05,0.0,3.418191285223604e-05,8.628407304616118e-05,2.1826288592229115e-05,0.0,0.0,0.0,0.00013327526172461973,1.6617787573658013e-05,0.00018828195474507515,3.9115366105755135e-05,3.0571886064471025e-05 +101491,81.0,the Columbus-Albany Area,G1302150000200,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,15457.0,,8.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0036481263155671113,6.285737604187364e-06,0.0,0.0036544947602450374,0.0012148014990829474,0.0015787953306096395,0.000782905160016284,0.0,7.791006346242759e-05,0.00120851576147876,0.0015787953306096395,0.000782905160016284,0.0,7.791006346242759e-05,6.285737604187364e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2127321579403566e-07,0.0,0.0,0.00043474352056177177,0.0001338451553894315,0.00043516479377756585,0.00014401760009178646,0.00018814344156529644,9.329801549882634e-05,0.0,9.284463405862499e-06,4.2127321579403566e-07,0.0,0.0,0.0,0.0,0.0,0.00014465442653792803,0.00018799757272484397,9.322568093736565e-05,0.0,9.27726510067594e-06 +101492,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12734.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028457022861483505,0.0,0.0,0.0028457022861483505,0.0013597042922742142,0.000526513231424431,0.0008957176085966993,0.0,6.36017397055274e-05,0.0013597042922742142,0.000526513231424431,0.0008957176085966993,0.0,6.36017397055274e-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.0003391130096739224,9.657153493710874e-05,0.0003391130096739224,0.00016203150170137717,6.274285522086174e-05,0.00010673973013539626,0.0,7.579210754766363e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016203150170137717,6.274285522086174e-05,0.00010673973013539626,0.0,7.579210754766363e-06 +101493,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,60603.0,,10707.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002967902928464059,0.0018207840053094824,0.0,0.004788686933773541,0.001610466458144816,0.0006372823805209579,0.00164206196219535,0.0,0.0008988584025509969,0.0013129687238777501,0.0006372823805209579,0.0008904896719607318,0.0,0.00012714442174319867,0.00029749773426706596,0.0007515722902346183,0.0007717139808077982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012165416605311943,0.0,0.0,0.0003536788927520528,0.00022622984609308087,0.0004753330588051722,0.0001564637845886279,7.594363163005798e-05,0.00010611782419352949,0.0,1.515153944910402e-05,1.9877063209812655e-05,5.02156762858781e-05,5.156142655742867e-05,0.0,0.0,0.0,0.0001598575889883614,6.325771290648209e-05,0.0001629938114628168,0.0,8.922218550224008e-05 +101494,50.0,the Greater Atlanta and Macon Area,G1301130140407,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,50028.0,,5268.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0044069353955312265,0.0015505309789788377,0.0,0.005957497064116362,0.0022035137321750596,0.0014169084331586397,0.0023370442091763645,0.0,0.0,0.0006529827531962222,0.0014169084331586397,0.0023370442091763645,0.0,0.0,0.0015505309789788377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010359843257221579,0.0,0.0,0.0005251668944798834,0.00024861549370716433,0.0006287653270520993,7.781482909704575e-05,0.00016885053553515557,0.000278501529847682,0.0,0.0,0.00010359843257221578,0.0,0.0,0.0,0.0,0.0,0.0002325629400340031,0.0001495431529029233,0.00024665599507701073,0.0,0.0 +101495,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301610960100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,52393.0,,252.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.00328736858053057,4.2818822829427514e-05,0.0,0.0033301874033599983,0.0013263728771113104,0.0007528488762568621,0.0008013236843792865,0.0,0.0004496596959739591,0.0012835540542818827,0.0007528488762568621,0.0008013236843792865,0.0,0.0004496596959739591,4.2818822829427514e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.860954697423998e-06,0.0,0.0,0.000391749425083635,0.00010191886871267163,0.00039461037978105897,0.0001529586812402828,8.97155604014704e-05,9.549221055426051e-05,0.0,5.3585085780874e-05,2.8609546974239977e-06,0.0,0.0,0.0,0.0,0.0,0.00015716848374361882,8.92087876729467e-05,9.495280749108186e-05,0.0,5.3282401831647894e-05 +101496,35.0,Eastern Counties in South Carolina and Georgia,G1300730030201,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,19393.0,,299.0,,4.088175128053588,Healthcare,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,30661.31346040191,0.0,0.0,0.0021000483231755707,0.00011113047937833343,0.0,0.0022111788025539047,0.0011151021393129986,0.00025740577911794593,0.0007803545063459753,0.0,5.823888092944043e-05,0.0011151021393129986,0.00025740577911794593,0.0006692240269676418,0.0,5.823888092944043e-05,0.0,0.00011113047937833343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.42461846306627e-06,0.0,0.0,0.0002502578848214561,7.080266953747678e-05,0.00025768250328452236,0.0001328841339814356,3.067444930289376e-05,7.974987413973778e-05,0.0,6.940192277924029e-06,0.0,7.42461846306627e-06,0.0,0.0,0.0,0.0,0.00012994983053573968,2.999710627037732e-05,9.093959403569606e-05,0.0,6.7869412500944015e-06 +101497,85.0,Rural Climate Zone 3A,G1302770960500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,50152.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.003940883406249985,0.0,0.0,0.003940883406249986,0.0026736057169086665,0.0010282374617662123,0.00023904022757510686,0.0,0.0,0.0026736057169086665,0.0010282374617662123,0.00023904022757510686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004696259463353285,0.00010430074103239991,0.0004696259463353285,0.00031860739978743985,0.00012253267637240073,2.8485870175487956e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003186073997874398,0.0001225326763724007,2.848587017548795e-05,0.0,0.0 +101498,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,88334.0,,7132.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.010165222743944425,0.0026504696828580066,0.0,0.012815692426802434,0.007382194703362125,0.0012115082176579405,0.003926842761910415,0.0,0.00029518549229572665,0.005593761204161643,0.0012115082176579405,0.003359992070548615,0.0,0.0,0.001788433499200481,0.000566850691361799,0.00029518549229572665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017708871436330416,0.0,0.0,0.0012113713485160918,0.0005299660556327804,0.001388460062879396,0.0006665984822810621,0.00014437325972388448,0.0004004042240912555,0.0,0.0,0.00011949255301655365,3.787361191808392e-05,1.9722549428666577e-05,0.0,0.0,0.0,0.0007997915509100203,0.00013125555140120878,0.0004254365793546121,0.0,3.1980579241809264e-05 +101499,50.0,the Greater Atlanta and Macon Area,G1300590002000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,9671.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0019793456887291054,0.0,0.0,0.0019793456887291054,0.0009994322790657908,0.0006098819617536529,0.0003220613451408631,0.0,4.797010276879831e-05,0.0009994322790657908,0.0006098819617536529,0.0003220613451408631,0.0,4.797010276879831e-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.0002358750008549177,7.042640588808613e-05,0.0002358750008549177,0.00011910051438788338,7.267851647602219e-05,3.837946069401009e-05,0.0,5.716509297002017e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011910051438788338,7.267851647602219e-05,3.837946069401009e-05,0.0,5.716509297002017e-06 +101500,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,40800.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0036352145555691925,0.0,0.0,0.0036352145555691925,0.0016223446577154621,0.0008712779227917822,0.0011416226646682457,0.0,0.0,0.0016223446577154621,0.0008712779227917822,0.0011416226646682457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043320077391368207,0.00015654529289055774,0.00043320077391368207,0.0001933313565220975,0.00010382833383770028,0.0001360447407688838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001933313565220975,0.00010382833383770028,0.0001360447407688838,0.0,0.0 +101501,50.0,the Greater Atlanta and Macon Area,G1301510070403,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,76927.0,,3292.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003959827998108913,0.0005598361618381672,0.0,0.004519646429585659,0.0019826090139903048,0.00103079002187761,0.0011062859008041945,0.0,0.0003999614929135512,0.0019826090139903048,0.00103079002187761,0.0005464497389660274,0.0,0.0003999614929135512,0.0,0.0005598361618381672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.740447709208873e-05,0.0,0.0,0.0004718846378192887,0.00017265717729221563,0.0005092891149113773,0.00023626347835079372,0.0001228371475664469,6.51193024751517e-05,0.0,4.76625965358362e-05,0.0,3.740447709208873e-05,0.0,0.0,0.0,0.0,0.00022340711949076235,0.00011615292171198756,0.00012466005384212226,0.0,4.506901986650525e-05 +101502,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,201912.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,240343.828889517,0.0,0.0,0.01734742571488039,0.0,0.0,0.017347425714880387,0.011128340109202389,0.0052747096519594186,0.0009444063273180175,0.0,0.0,0.011128340109202389,0.0052747096519594186,0.0009444063273180175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002067259169507783,0.0007453764151803794,0.002067259169507783,0.001326142766670928,0.0006285769470193404,0.0001125430753806114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013261427666709281,0.0006285769470193405,0.00011254307538061142,0.0,0.0 +101503,50.0,the Greater Atlanta and Macon Area,G1300570090702,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,13024.0,,3380.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011339195734875224,0.0009949263465652265,0.0,0.002128845920052749,0.0012167201312787243,0.00041704105997948307,0.0004950847287945412,0.0,0.0,0.000221793784713498,0.00041704105997948307,0.0004950847287945412,0.0,0.0,0.0009949263465652265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.647575613478925e-05,0.0,0.0,0.0001351260675023476,0.00010750384152242916,0.00020160182363713688,2.6430553476222427e-05,4.969763265371336e-05,5.89978813724118e-05,0.0,0.0,6.647575613478925e-05,0.0,0.0,0.0,0.0,0.0,0.00011522346216382325,3.949381091015977e-05,4.6884550563153824e-05,0.0,0.0 +101504,50.0,the Greater Atlanta and Macon Area,G1301210000100,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,24369.0,,1349.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0012029163705434825,0.00022944860713690332,0.0,0.0014323649776803859,0.0006783458975698002,0.00023506913170706008,0.00030861467087743913,0.0,0.0002103352775260864,0.00044889729043289683,0.00023506913170706008,0.00030861467087743913,0.0,0.0002103352775260864,0.00022944860713690332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5330749653525756e-05,0.0,0.0,0.00014334919236473384,4.9570028852177925e-05,0.00015867994201825962,5.349421257705551e-05,2.8012728902227745e-05,3.677700703516188e-05,0.0,2.5065243850288708e-05,1.5330749653525756e-05,0.0,0.0,0.0,0.0,0.0,7.514836607427765e-05,2.6041376863294207e-05,3.41888826129506e-05,0.0,2.3301316467737154e-05 +101505,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,65071.0,,6897.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0030843736726323856,0.0011729697901050132,0.0,0.004257343462737399,0.0015896510138376741,0.0004566809190963,0.0015919559608222808,0.0,0.0006190378386197236,0.0015896510138376741,0.0004566809190963,0.00041898617071726784,0.0,0.0006190378386197236,0.0,0.0011729697901050132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.837129303110226e-05,0.0,0.0,0.0003675591728007672,0.00016333945412158588,0.0004459304658318695,0.00018943580567830755,5.442183038531478e-05,4.992981612126311e-05,0.0,7.376960772111972e-05,0.0,7.837129303110226e-05,0.0,0.0,0.0,0.0,0.00016650613776294756,4.7834509189023055e-05,0.00016674756674126697,0.0,6.484039499264476e-05 +101506,81.0,the Columbus-Albany Area,G1302150010302,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,15263.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033993434377592746,0.0,0.0,0.0033993434377592746,0.002097285975881358,0.0005406561410338527,0.0006789423683259746,0.0,8.24589525180895e-05,0.002097285975881358,0.0005406561410338527,0.0006789423683259746,0.0,8.24589525180895e-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.0004050966862999151,0.00013442672885635398,0.0004050966862999151,0.00024993167492745307,6.44295038646881e-05,8.090894863472914e-05,0.0,9.826558873044824e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00024993167492745307,6.44295038646881e-05,8.090894863472914e-05,0.0,9.826558873044824e-06 +101507,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,243512.0,,34745.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01253485134349615,0.005908731595039697,0.0,0.018443582938535846,0.008087332024167266,0.0029173891287783285,0.0038639244731878473,0.0,0.0035749373124024067,0.006838423096100165,0.0029173891287783285,0.002329024815415296,0.0,0.0004500143032023603,0.0012489089280670995,0.001534899657772551,0.0031249230092000465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039478677623885704,0.0,0.0,0.0014937535946070893,0.000752854196201721,0.0018885403708459461,0.0008149214379430107,0.0003476595277088306,0.00027754530904435686,0.0,5.362731991089103e-05,8.34447667146445e-05,0.00010255298924913839,0.00020878902027507418,0.0,0.0,0.0,0.0008281066141526848,0.00029872759352269,0.0003956485777103673,0.0,0.0003660575854602043 +101508,50.0,the Greater Atlanta and Macon Area,G1300590130700,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,63974.0,,4074.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0029315734179143705,0.0006928670635728233,0.0,0.0036244404814871943,0.0019172194410731495,0.0005184889590066042,0.000606396090927226,0.0,0.0005823182601187943,0.0019172194410731495,0.0005184889590066042,0.0003971069047249226,0.0,9.874038274827407e-05,0.0,0.00020928918620230323,0.00048357787737052016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6293591616339156e-05,0.0,0.0,0.0003493503740356542,0.00012750772401268873,0.00039564396565199336,0.00022847162030956053,6.178740421625865e-05,4.7322521363456034e-05,0.0,1.1766715250841033e-05,0.0,1.3983559942659996e-05,3.231003167367916e-05,0.0,0.0,0.0,0.0002092836967707726,5.659826087252344e-05,6.619420442845037e-05,0.0,6.356586813378543e-05 +101509,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,9485.0,,326.0,,3.3063363735822096,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,9919.009120746628,0.0,0.0,0.0008066720295521002,9.80253334539827e-05,0.0,0.0009046973630060825,0.0003079900822205057,0.00015123729515630448,0.000293355225851257,0.0,0.00015208342175581141,0.0003079900822205057,0.00015123729515630448,0.00019532989239727432,0.0,0.00015208342175581141,0.0,9.80253334539827e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.549164753677333e-06,0.0,0.0,9.612852964531842e-05,4.367983773088961e-05,0.00010267769439899576,3.6702194528347344e-05,1.8022465485735072e-05,2.327683948872497e-05,0.0,1.8123295690483284e-05,0.0,6.549164753677332e-06,0.0,0.0,0.0,0.0,3.495501681919465e-05,1.716452087601072e-05,3.329404888527484e-05,0.0,1.7260551141997526e-05 +101510,50.0,the Greater Atlanta and Macon Area,G1300570090601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13781.0,,1269.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032788392313211033,0.0010063796732598929,0.0,0.004285218904580996,0.0032164780977216654,0.0006464384883464269,0.0003468734672626553,0.0,7.534614417650906e-05,0.002210098424461773,0.0006464384883464269,0.0003468734672626553,0.0,7.534614417650906e-05,0.0010063796732598929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.724116449219458e-05,0.0,0.0,0.0003907313055856857,0.00018326602448213766,0.00045797247007788033,0.0002633720600307914,7.703450419881244e-05,4.133606839941393e-05,0.0,8.978816955619002e-06,6.724116449219458e-05,0.0,0.0,0.0,0.0,0.0,0.00034375336526921876,6.908655960257688e-05,3.707126803649019e-05,0.0,8.052438049890933e-06 +101511,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,28994.0,,616.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0014924531725329449,0.00010478643599251205,0.0,0.001597221878164037,0.0009657727865502761,0.00042265635553121876,8.03539979556793e-05,0.0,0.00012845646848828256,0.0008609863505577642,0.00042265635553121876,8.03539979556793e-05,0.0,0.00012845646848828256,0.00010478643599251205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.000832932433589e-06,0.0,0.0,0.00017785236793057624,6.567928584337927e-05,0.00018485320086300986,0.00010260185312395346,5.036702995817139e-05,9.575609521370614e-06,0.0,1.530787532708078e-05,7.000832932433589e-06,0.0,0.0,0.0,0.0,0.0,0.00011177294359717758,4.8915796391950055e-05,9.299705900172734e-06,0.0,1.4866806982954867e-05 +101512,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,92765.0,,8367.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.008328422598645392,0.002462963663815839,0.0,0.01079138626246123,0.00716415100452944,0.0014785638522107247,0.0021487020953273625,0.0,0.0,0.0047011873407136005,0.0014785638522107247,0.0021487020953273625,0.0,0.0,0.002462963663815839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001645609543772145,0.0,0.0,0.0009924806496270642,0.00048396228883947464,0.0011570416040042786,0.0005602306331920354,0.00017619735252097712,0.00025605632113005294,0.0,0.0,0.0001645609543772145,0.0,0.0,0.0,0.0,0.0,0.0007681330802182828,0.00015853013223478694,0.00023038168205999362,0.0,0.0 +101513,81.0,the Columbus-Albany Area,G1302150001000,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,114988.0,,11737.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005919050665386168,0.0019959777065010243,0.0,0.007915028371887192,0.003926441727554954,0.0015928602092547036,0.0007809869598304858,0.0,0.0016147217448856286,0.0032950103663026134,0.0015928602092547036,0.0007809869598304858,0.0,0.00025017539963694506,0.0006314313612523404,0.0,0.0013645463452486835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013335982471711298,0.0,0.0,0.0007053620769550697,0.0002867719951721879,0.0008387219016721826,0.0003926601556488051,0.0001898181395995337,9.306873943186915e-05,0.0,2.981292938121308e-05,4.2188635365631e-05,0.0,9.117118935148196e-05,0.0,0.0,0.0,0.0004160683345415097,0.0001687886234936539,8.275786735733729e-05,0.0,0.00017110519746867198 +101514,50.0,the Greater Atlanta and Macon Area,G1301350050535,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,41242.0,,11929.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002122927094268602,0.0020286902233210215,0.0,0.004151617317589624,0.0018566347961008292,0.00046299292776183883,0.0011377927530476285,0.0,0.0006941968406793274,0.0011491756450793024,0.00046299292776183883,0.00040198275411543714,0.0,0.00010877576731202395,0.0007074591510215268,0.0007358099989321912,0.0005854210733673034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000135545027116783,0.0,0.0,0.00025298472772739645,0.00019245173271146028,0.00038852975484417944,0.0001369448288950797,5.517388707589743e-05,4.790343383696805e-05,0.0,1.2962577919451261e-05,4.726821705299608e-05,4.916245226183147e-05,3.9114357801955455e-05,0.0,0.0,0.0,0.0001737534572630214,4.332926543006521e-05,0.00010648051243358268,0.0,6.496651971751016e-05 +101515,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,158082.0,,13496.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.041433652520001106,0.011686336108021089,0.0,0.05311998862802219,0.014884852879269946,0.006244099860754065,0.02256448902892937,0.0006603954438930078,0.00876597085592936,0.014884852879269946,0.006244099860754065,0.010878152920908282,0.0006603954438930078,0.00876597085592936,0.0,0.011686336108021089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007808132971974456,0.0,0.0,0.0049375701705095636,0.002355679610160268,0.005718383467707008,0.0017737998245177327,0.0007440975955296101,0.0012963289525727958,7.869807864350093e-05,0.001044624202341306,0.0,0.0007808132971974456,0.0,0.0,0.0,0.0,0.0016023590897225213,0.0006721793120944258,0.0024290743344063497,7.10917770512221e-05,0.0009436595171728727 +101516,50.0,the Greater Atlanta and Macon Area,G1301390000701,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,26290.0,,886.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0023182649770864083,0.00025811484802201496,0.0,0.0025763494515089855,0.001872988009328966,0.0005543789369378463,0.00014901287884161045,0.0,0.0,0.001614873161306951,0.0005543789369378463,0.00014901287884161045,0.0,0.0,0.00025811484802201496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.724536268901483e-05,0.0,0.0,0.0002762618414655039,9.966121264468022e-05,0.00029350720415451874,0.00019244039731669104,6.606395192176058e-05,1.7757492227052235e-05,0.0,0.0,1.724536268901483e-05,0.0,0.0,0.0,0.0,0.0,0.00021337768201867903,6.315688724892452e-05,1.697609515906332e-05,0.0,0.0 +101517,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,14893.0,,5179.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0034962585383170024,0.004016840259712184,0.0,0.007513098798029188,0.003513724467459804,0.00042718751695103204,0.0023558789147015563,0.0004199100464748646,0.0007963169916588612,0.0017895299900895876,0.00042718751695103204,0.0008596309848015186,0.0004199100464748646,0.0,0.0017241944773702168,0.0014962479299000374,0.0007963169916588612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026837946256363417,0.0,0.0,0.00041664527938145535,0.00038542137327081486,0.0006850247419450895,0.0002132563180071,5.090746590897425e-05,0.00010244127769795672,5.0040217767424436e-05,0.0,0.00011519959900644921,9.996967499954681e-05,5.320478595955128e-05,0.0,0.0,0.0,0.0003203722273982598,3.894984299132431e-05,0.00021480289145414235,3.828630222486223e-05,7.260610520131777e-05 +101518,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301090970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,19560.0,,1641.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0013606988568205323,0.00027912907983589124,0.0,0.0016398456670178435,0.0010232900789969273,0.0003796070380033305,7.851004036799381e-05,0.0,0.00015842077928817177,0.0008549757580363662,0.0003796070380033305,7.851004036799381e-05,0.0,4.760602041284178e-05,0.00016831432096056124,0.0,0.00011081475887533001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8650314160726983e-05,0.0,0.0,0.00016215280801740335,6.408511455166172e-05,0.00018080312217813035,0.00010188640877993337,4.5237303498027275e-05,9.355944880395368e-06,0.0,5.673150859047326e-06,1.1246105083388253e-05,0.0,7.404209077338732e-06,0.0,0.0,0.0,0.00011282405710350114,4.185402263897772e-05,8.656217293105714e-06,0.0,1.7466870260591585e-05 +101519,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,5314.0,,160.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012758393195025563,0.00012670723696861898,0.0,0.0014026292635449145,0.0007800104124354082,0.0002073466338644437,0.0003872345192474374,0.0,2.7954990923885905e-05,0.0006812581663906752,0.0002073466338644437,0.0003872345192474374,0.0,0.0,9.875224604473304e-05,0.0,2.7954990923885905e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.467921487722264e-06,0.0,0.0,0.00015204325140817375,6.055020379395575e-05,0.000160511172895896,8.11863258037811e-05,2.470973883575078e-05,4.614718676864188e-05,0.0,0.0,6.599672491083799e-06,0.0,1.8682489966384625e-06,0.0,0.0,0.0,8.92612106598971e-05,2.372790320478868e-05,4.431353921213427e-05,0.0,3.19905515884267e-06 +101520,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,64732.0,,2144.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.007162762379540821,0.0007969775801441987,0.0,0.007959701211261244,0.004476372907846093,0.0010083114833971383,0.0023218055524232006,0.0,0.0001532500160185874,0.004148948726971993,0.0010083114833971383,0.002005502169171689,0.0,0.0,0.00032742418087409954,0.00031630338325151173,0.0001532500160185874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.324830957482148e-05,0.0,0.0,0.0008535714615834454,0.00030020444994400495,0.0009068197711582667,0.0004944215710731546,0.00012015837759367937,0.00023899151291661148,0.0,0.0,2.187612873916966e-05,2.1133117029330402e-05,1.023906380632142e-05,0.0,0.0,0.0,0.0005099768632230924,0.00011487325520923193,0.00026451485097752584,0.0,1.7459216215222203e-05 +101521,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,16329.0,,1660.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014399212285455005,0.00048351732944957123,0.0,0.001923438557995072,0.0013505317254001968,0.00046170908505326546,0.00011119774754160941,0.0,0.0,0.0008670143959506257,0.00046170908505326546,0.00011119774754160941,0.0,0.0,0.00048351732944957123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.230625819474525e-05,0.0,0.0,0.00017159213263420747,8.224499660619871e-05,0.00020389839082895274,0.00010332013048797545,5.50208198825614e-05,1.325118226367063e-05,0.0,0.0,3.230625819474525e-05,0.0,0.0,0.0,0.0,0.0,0.00014316612528532597,4.894450050517814e-05,1.1787765038448596e-05,0.0,0.0 +101522,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,80596.0,,6717.0,,4.088175128053588,Healthcare,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,153306.56730200956,0.0,0.0,0.009945829168546893,0.0024965609436352937,0.0,0.012442390112182188,0.005686021201162973,0.0019209143600772323,0.0046203620505831525,0.0,0.00021516999720637572,0.0038676351703866717,0.0019209143600772323,0.003942187137724158,0.0,0.00021516999720637572,0.001818386030776301,0.0006781749128589929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016680515626641744,0.0,0.0,0.001185226860018192,0.000467359862909809,0.0013520320162846093,0.0004608992383651665,0.00022891196468145515,0.0004697834643716843,0.0,2.564142776205511e-05,0.00012149359573599935,4.5311560530418095e-05,0.0,0.0,0.0,0.0,0.000617862214569088,0.0002087330241174849,0.0005020641020649716,0.0,2.338109660153293e-05 +101523,81.0,the Columbus-Albany Area,G1302150010502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,139076.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012263917871381615,0.0,0.0,0.012263917871381615,0.0076259907316346635,0.0037449736898764875,0.0008929534498704659,0.0,0.0,0.0076259907316346635,0.0037449736898764875,0.0008929534498704659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014614676875444872,0.00033599744432316543,0.0014614676875444872,0.0009087747615960042,0.0004462813674927315,0.00010641155845575164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009087747615960042,0.0004462813674927315,0.00010641155845575164,0.0,0.0 +101524,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,16116.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002905811884610279,0.0,0.0,0.002905811884610279,0.001886868744272019,0.0007841552166844389,0.00023481829725325933,0.0,0.0,0.001886868744272019,0.0007841552166844389,0.00023481829725325933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000346280559098259,9.985102204830592e-05,0.000346280559098259,0.00022485487349404768,9.344641622928799e-05,2.7982888944053355e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022485487349404768,9.344641622928799e-05,2.7982888944053355e-05,0.0,0.0 +101525,85.0,Rural Climate Zone 3A,G1301750950400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,98495.0,,16538.0,,7.614023970037612,Education,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,571051.7977528209,0.0,0.0,0.025008182721634405,0.011447638315032092,0.0,0.0364558210366665,0.02437939145256373,0.006243313470657936,0.0032705373032266847,0.0008217658878581228,0.0017409572564054934,0.01495914130716352,0.006243313470657936,0.002050481616906371,0.0008217658878581228,0.0009336247730939258,0.009420250145400209,0.0012200556863203144,0.0008073324833115674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007648663838333301,0.0,0.0,0.0029801767946721074,0.0014944806682167977,0.0037450431785054383,0.0017826519538848013,0.0007440035981112086,0.00024435193075103773,9.792825240073439e-05,0.00011125825953352953,0.0006294077839667894,8.151721387333983e-05,5.3941385993200806e-05,0.0,0.0,0.0,0.002504452541713656,0.0006413647494330744,0.0003359766168804038,8.441858241393585e-05,0.00017884551525017902 +101526,50.0,the Greater Atlanta and Macon Area,G1301210009102,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,15048.0,,106.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0036132239304491236,8.386497277165771e-05,0.0,0.003697088903220781,0.0017296530331101362,0.0007590855227793636,0.001124568081633363,0.0,8.386497277165771e-05,0.0017296530331101362,0.0007590855227793636,0.001124568081633363,0.0,0.0,0.0,0.0,8.386497277165771e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.601820704225778e-06,0.0,0.0,0.00043058255227906877,0.0001406088880635155,0.00043618437298329453,0.00020612019401222709,9.045909915575097e-05,0.00013401311519075466,0.0,0.0,0.0,0.0,5.601820704225778e-06,0.0,0.0,0.0,0.0002040653182747509,8.955728451803489e-05,0.00013267709714444547,0.0,9.894430867431615e-06 +101527,50.0,the Greater Atlanta and Macon Area,G1300670030904,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,3381.0,,847.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.000281270241718446,0.00024919960313734657,0.0,0.0005304698448557925,0.0003056684787251197,0.0001280984166866114,9.670294944406145e-05,0.0,0.0,5.6468875587773125e-05,0.0001280984166866114,9.670294944406145e-05,0.0,0.0,0.00024919960313734657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6650758100735387e-05,0.0,0.0,3.351808838253321e-05,2.8789276175602734e-05,5.01688464832686e-05,6.729217962232528e-06,1.526508465997748e-05,1.15237857603232e-05,0.0,0.0,1.6650758100735387e-05,0.0,0.0,0.0,0.0,0.0,2.8908400981970225e-05,1.2114825873367843e-05,9.145619627930538e-06,0.0,0.0 +101528,35.0,Eastern Counties in South Carolina and Georgia,G1300510004209,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4821.0,,88.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013198394827318679,6.947394194101823e-05,0.0,0.0013893134246728864,0.0007025138843416772,0.00023282041257615036,0.0004201519345956818,0.0,3.390990023311603e-05,0.000666949842633775,0.00023282041257615036,0.0004201519345956818,0.0,0.0,3.556404170790219e-05,0.0,3.390990023311603e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6416049661704715e-06,0.0,0.0,0.0001572828530575138,5.543608199490633e-05,0.00016192445802368428,7.947919081688127e-05,2.7744782012589376e-05,5.006873627849168e-05,0.0,0.0,2.3760596850634552e-06,0.0,2.265545281107015e-06,0.0,0.0,0.0,8.187798228677068e-05,2.7135215462356893e-05,4.896870143828528e-05,0.0,3.952198344428534e-06 +101529,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,18943.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00442573822286408,0.0,0.0,0.00442573822286408,0.0024970919703371694,0.0007177319859097098,0.001117372566218043,0.0,9.34589933254174e-05,0.0024970919703371694,0.0007177319859097098,0.001117372566218043,0.0,9.34589933254174e-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.0005274065655395664,0.00016731229279125584,0.0005274065655395664,0.0002975735648141613,8.553071659569727e-05,0.00013315510269738072,0.0,1.1137325392156942e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002975735648141613,8.553071659569727e-05,0.00013315510269738072,0.0,1.1137325392156942e-05 +101530,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,22424.0,,1162.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001977412444195957,0.00033842264493543075,0.0,0.002315835089131388,0.0016455504967390804,0.0004817556606821818,0.0001884985581106878,0.0,0.0,0.0013071278518036497,0.0004817556606821818,0.0001884985581106878,0.0,0.0,0.00033842264493543075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.261160798686803e-05,0.0,0.0,0.00023564317787208718,7.819752655213631e-05,0.0002582547858589552,0.00015576707923944014,5.74095885631872e-05,2.246289052538551e-05,0.0,0.0,2.261160798686803e-05,0.0,0.0,0.0,0.0,0.0,0.00018350671563355776,5.372390528570908e-05,2.102077776956752e-05,0.0,0.0 +101531,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6784.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00135300501930133,0.0,0.0,0.00135300501930133,0.0007738073819049603,0.00025630922151811367,0.00027971532338633766,0.0,4.300767834443987e-05,0.0007738073819049603,0.00025630922151811367,0.00027971532338633766,0.0,4.300767834443987e-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.00016123455744438973,5.269810628065613e-05,0.00016123455744438973,9.221288094930683e-05,3.054379201174667e-05,3.333304439616884e-05,0.0,5.125128056182082e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.221288094930683e-05,3.054379201174667e-05,3.333304439616884e-05,0.0,5.125128056182082e-06 +101532,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,76914.0,,7473.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.0160148543678729,0.0051406723624859525,0.0,0.021155526730358858,0.006570840304508253,0.0008883952809703742,0.009904743157168931,0.0003732307291652399,0.0034183172585460536,0.006570840304508253,0.0008883952809703742,0.00476407079468298,0.0003732307291652399,0.0034183172585460536,0.0,0.0051406723624859525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034346770124369454,0.0,0.0,0.0019084631342753413,0.0008113524089200598,0.002251930835519036,0.0007830359361569489,0.00010586856448706725,0.0005677262666196762,4.4477275336295946e-05,0.000407355091675353,0.0,0.00034346770124369454,0.0,0.0,0.0,0.0,0.0006994426603313614,9.456652877736444e-05,0.0010543248021103058,3.972908821808384e-05,0.00036386775608192 +101533,81.0,the Columbus-Albany Area,G1302150000400,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,4790.0,,364.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,9713.774621698478,0.0,0.0,0.0003061288228195853,0.0001071374155852804,0.0,0.00041326623840486564,0.000190613144715032,0.0001356173702295486,8.703572346028511e-05,0.0,0.0,8.347572912975157e-05,0.0001356173702295486,8.703572346028511e-05,0.0,0.0,0.0001071374155852804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.158532798203937e-06,0.0,0.0,3.6481338263924085e-05,1.9721352214718603e-05,4.363987106212802e-05,9.94779349151614e-06,1.616150714669479e-05,1.0372037625713155e-05,0.0,0.0,7.158532798203937e-06,0.0,0.0,0.0,0.0,0.0,2.012826668400989e-05,1.4320851791440945e-05,9.190752586677193e-06,0.0,0.0 +101534,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9304.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002014992437510747,0.0,0.0,0.002014992437510747,0.0012401925707209147,0.0003393471235523784,0.0003940992063677999,0.0,4.143624394339302e-05,0.0012401925707209147,0.0003393471235523784,0.0003940992063677999,0.0,4.143624394339302e-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.00024012429223226107,7.955615823948056e-05,0.00024012429223226107,0.00014779229824006708,4.0439599845214756e-05,4.696434152143512e-05,0.0,4.937908730795172e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014779229824006708,4.0439599845214756e-05,4.696434152143512e-05,0.0,4.937908730795172e-06 +101535,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,110247.0,,7582.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010047439516198617,0.0022319323076067325,0.0,0.012279371823805348,0.005750342221606869,0.002285485670596224,0.004243543931602257,0.0,0.0,0.003518409914000136,0.002285485670596224,0.004243543931602257,0.0,0.0,0.0022319323076067325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001491248244525669,0.0,0.0,0.0011973354694730406,0.0005006569194504168,0.0013464602939256074,0.0004192826420488677,0.0002723572561910351,0.0005056955712331377,0.0,0.0,0.0001491248244525669,0.0,0.0,0.0,0.0,0.0,0.0006305377497297903,0.0002506085614109291,0.00046531398278488816,0.0,0.0 +101536,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10886.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0026138743584570717,0.0,0.0,0.0026138743584570717,0.0011195229501352654,0.0006955664901475754,0.0007031755409315918,0.0,9.560937724263937e-05,0.0011195229501352654,0.0006955664901475754,0.0007031755409315918,0.0,9.560937724263937e-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.00031149075101239543,9.074808526263879e-05,0.00031149075101239543,0.00013341155567978056,8.288941956759415e-05,8.379617659496857e-05,0.0,1.139359917005218e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00013341155567978056,8.288941956759415e-05,8.379617659496857e-05,0.0,1.139359917005218e-05 +101537,50.0,the Greater Atlanta and Macon Area,G1300890022005,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,7403.0,,512.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014487798106914483,0.0004059263179125208,0.0,0.0018547061286039689,0.0010521166850377295,0.0003769788421037633,0.00037772320576741705,0.0,4.788739569505899e-05,0.0006461903671252089,0.0003769788421037633,0.00037772320576741705,0.0,4.788739569505899e-05,0.0004059263179125208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7122785384296635e-05,0.0,0.0,0.00017264607396462497,7.204923994793617e-05,0.0001997688593489216,7.700426876095305e-05,4.492326340873212e-05,4.5011966649337344e-05,0.0,5.706575145602434e-06,2.7122785384296635e-05,0.0,0.0,0.0,0.0,0.0,0.00011332261582063015,4.060407852452106e-05,4.0684253317570796e-05,0.0,5.157911686199581e-06 +101538,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,67292.0,,4685.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005868497205853023,0.0013791602174124651,0.0,0.007247688112871787,0.0022750512044550047,0.0018811194180176922,0.0030915174903990896,0.0,0.0,0.0008958909870425396,0.0018811194180176922,0.0030915174903990896,0.0,0.0,0.0013791602174124651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.214782875372602e-05,0.0,0.0,0.0006993392959164322,0.00031025892680732283,0.0007914871246701582,0.00010676187618719957,0.00022416995070205533,0.0003684111262577949,0.0,0.0,9.214782875372602e-05,0.0,0.0,0.0,0.0,0.0,0.00024844801656041213,0.00020542851405040352,0.0003376105940593425,0.0,0.0 +101539,50.0,the Greater Atlanta and Macon Area,G1300890021210,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,41124.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.01006809750043337,0.0,0.0,0.010068097500433372,0.005054725518651513,0.0013602832417903893,0.003501155845532362,0.0,0.00015201560153284705,0.005054725518651513,0.0013602832417903893,0.003501155845532362,0.0,0.00015201560153284705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011997968865923333,0.00041949128807509636,0.0011997968865923333,0.000602362456223319,0.00016210248245148448,0.0004172263809288163,0.0,1.8115423040422478e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0006023624562233188,0.00016210248245148446,0.00041722638092881625,0.0,1.8115423040422475e-05 +101540,50.0,the Greater Atlanta and Macon Area,G1300670030320,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,10270.0,,256.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002281143800803838,0.0002028804518825211,0.0,0.002484024252686359,0.0013206665534692612,0.0004974830485419341,0.0006148443861780114,0.0,5.111297157089199e-05,0.0011177861015867398,0.0004974830485419341,0.0006148443861780114,0.0,5.111297157089199e-05,0.0002028804518825211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3557195788458082e-05,0.0,0.0,0.0002718382875908084,0.00010082667030591814,0.0002853954833792665,0.00013320381627895202,5.928382944268563e-05,7.326949095210724e-05,0.0,6.09100691530835e-06,1.3557195788458082e-05,0.0,0.0,0.0,0.0,0.0,0.0001517345368116178,5.7157016465548646e-05,7.064094104819429e-05,0.0,5.872491467283303e-06 +101541,50.0,the Greater Atlanta and Macon Area,G1301170130306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Propane,29131.0,,,6398.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002402430221128418,0.0,0.0006030374432371247,0.003005467664365542,0.0018707099893711348,0.000913243014294884,0.00022148428710008628,0.0,0.0,0.0012676725461340103,0.000913243014294884,0.00022148428710008628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006030374432371247,0.0,0.0,0.0,0.0,4.8634912030925183e-05,0.00028629182701667453,0.00011543772987566524,0.00033492673904759974,0.00015106548614807235,0.00010882897191906484,2.639374940079891e-05,0.0,0.0,0.0,0.0,0.0,4.8634912030925183e-05,0.0,0.0,0.00020847031690693962,0.00010177101832182095,2.4682019010966123e-05,0.0,0.0 +101542,50.0,the Greater Atlanta and Macon Area,G1302190030200,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,115584.0,,27986.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005786693517385474,0.004759360915984774,0.0,0.010546054433370249,0.005585826252857695,0.0009028300035090887,0.0016524519539875013,0.0,0.002404963953377382,0.0038047937178519713,0.0009028300035090887,0.0007733274436970231,0.0,0.0003057600826888106,0.0017810325350057239,0.0008791245102904783,0.0020992038706885716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031799252404521116,0.0,0.0,0.0006895899842106802,0.0005128089723298634,0.0010075825082558913,0.00045341050669707656,0.00010758864729819909,9.215605735581799e-05,0.0,3.643688575525223e-05,0.00011899812626332936,5.873793286791233e-05,0.00014025646491396947,0.0,0.0,0.0,0.0005336764438392284,8.625744587339986e-05,0.00015787721323556544,0.0,0.0002297730992873886 +101543,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,6185.0,,305.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001144748607625754,0.00024233172605617068,0.0,0.001387163040755664,0.0007160778444349238,0.00034670805311517674,0.00029476801080689167,0.0,2.960913239867205e-05,0.0005032725437036857,0.00034670805311517674,0.00029476801080689167,0.0,0.0,0.00021280530073123797,0.0,2.960913239867205e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.619354599193599e-05,0.0,0.0,0.00013642200685849758,5.417372222718121e-05,0.00015261555285043355,5.997600691669372e-05,4.13178999169729e-05,3.512810002483097e-05,0.0,0.0,1.4220475712372461e-05,0.0,1.9785970870693124e-06,0.0,0.0,0.0,7.878281997251692e-05,3.814478878780214e-05,3.243035000947682e-05,0.0,3.257594080637682e-06 +101544,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,40454.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003604402190846299,0.0,0.0,0.003604402190846298,0.0016047902029131759,0.0008445165861001852,0.0011550647122266396,0.0,0.0,0.0016047902029131759,0.0008445165861001852,0.0011550647122266396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004295294504939498,0.0001568003291521666,0.0004295294504939498,0.00019123966125809193,0.00010063936429787488,0.0001376467677185521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000191239661258092,0.0001006393642978749,0.00013764676771855212,0.0,0.0 +101545,85.0,Rural Climate Zone 3A,G1302850960600,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,31542.0,,11147.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006361704869026733,0.007667653821249992,0.0,0.014029358690276725,0.0027407786923615766,0.0003677082913970379,0.009019144955068165,0.0003733024491362556,0.0015284243023136873,0.0027407786923615766,0.0003677082913970379,0.0013514911338181747,0.0003733024491362556,0.0015284243023136873,0.0,0.007667653821249992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005123085473800005,0.0,0.0,0.0007581085174722463,0.0007225378038837149,0.0012704170648522469,0.0003266117674370577,4.381888084913764e-05,0.00016105383084087175,4.4485522687685084e-05,0.0001821385156574941,0.0,0.0005123085473800005,0.0,0.0,0.0,0.0,0.0002481889656276864,3.3297522616070865e-05,0.0008167212710325706,3.380409698003684e-05,0.00013840520859588183 +101546,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,17067.0,,5488.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004006570940262481,0.0042560264560288896,0.0,0.008262597396291371,0.0019304703349780315,0.00039290254492997635,0.005105388121380706,0.0003115565971630374,0.0005221989370565521,0.0019304703349780315,0.00039290254492997635,0.0008493616653518154,0.0003115565971630374,0.0005221989370565521,0.0,0.0042560264560288896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028436256725235877,0.0,0.0,0.00047745492436067284,0.00041312757714608733,0.0007618174916130316,0.0002300502303615957,4.682139856442128e-05,0.00010121670519050854,3.712756712671643e-05,6.222938710208532e-05,0.0,0.00028436256725235877,0.0,0.0,0.0,0.0,0.0001779907694505888,3.622590050935792e-05,0.0004707204993537437,2.8725744939813964e-05,4.8147121936495865e-05 +101547,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,17349.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014683205440197988,0.0,0.0,0.0014683205440197988,0.0009307989547699046,0.0004377443150968793,9.977727415301473e-05,0.0,0.0,0.0009307989547699046,0.0004377443150968793,9.977727415301473e-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.00017497813648152026,4.888339389559845e-05,0.00017497813648152026,0.00011092228274535989,5.216550624656965e-05,1.1890347489590707e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011092228274535989,5.216550624656965e-05,1.1890347489590707e-05,0.0,0.0 +101548,46.0,the Tallahassee-Valdosta Area,G1301850011600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,26193.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006197251275155034,0.0014962479299000374,0.0,0.007693499205055074,0.0036743948434169696,0.0006710636386857118,0.0023383321247756853,0.00043397982272878844,0.0005757287754479175,0.0036743948434169696,0.0006710636386857118,0.000842084194875648,0.00043397982272878844,0.0005757287754479175,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99716943603331e-05,0.0,0.0,0.0007385130981035755,0.0003437598173248956,0.0008384847924639085,0.0004378697262682452,7.99692097070964e-05,0.00010034936135554906,5.1716441558981366e-05,6.860835921370361e-05,0.0,9.99716943603331e-05,0.0,0.0,0.0,0.0,0.0004004581160791682,7.313663663521967e-05,0.0002548457956642104,4.7297786338260515e-05,6.274645774704953e-05 +101549,50.0,the Greater Atlanta and Macon Area,G1301210001700,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,20378.0,,1343.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004747799568004942,0.0010650189885410618,0.0,0.005812818556546004,0.00408647380638544,0.0008274015656880314,0.0008209504139363656,0.0,7.80754776099062e-05,0.003021454817844379,0.0008274015656880314,0.0008209504139363656,0.0,7.80754776099062e-05,0.0010650189885410618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.115914893313416e-05,0.0,0.0,0.0005657873228687805,0.00025456158202810593,0.0006369464718019147,0.00036006171028729714,9.860005884468741e-05,9.78312858948788e-05,0.0,9.30412390537634e-06,7.115914893313416e-05,0.0,0.0,0.0,0.0,0.0,0.0004477802029717539,9.066350564734008e-05,8.995661306032564e-05,0.0,8.555212847969713e-06 +101550,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,12069.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028980558638253317,0.0,0.0,0.002898055863825332,0.0015098176311110567,0.0004890469270205247,0.0008254165959182882,0.0,7.385741684920153e-05,0.0015098176311110567,0.0004890469270205247,0.0008254165959182882,0.0,7.385741684920153e-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.00034535790872853385,0.00010182076586543522,0.00034535790872853385,0.00017992319131961715,5.8279147097940086e-05,9.836392491754477e-05,0.0,8.801501498133012e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017992319131961712,5.827914709794007e-05,9.836392491754475e-05,0.0,8.801501498133012e-06 +101551,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7449.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006428572321000173,0.0,0.0,0.0006428572321000174,0.00037836392819607447,0.0001929938508274751,7.152982667590554e-05,0.0,0.0,0.00037836392819607447,0.0001929938508274751,7.152982667590554e-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,7.660973351179525e-05,2.209164188755658e-05,7.660973351179525e-05,4.5089886622085206e-05,2.299920844478843e-05,8.524258087421584e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.50898866220852e-05,2.2999208444788422e-05,8.524258087421582e-06,0.0,0.0 +101552,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,113388.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.012909644268341274,0.0,0.0,0.012909644268341274,0.005252311290607748,0.002983183180168199,0.004674119107959026,0.0,0.0,0.005252311290607748,0.002983183180168199,0.004674119107959026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015384174740244482,0.0004885335458369908,0.0015384174740244482,0.0006259078329758711,0.0003555002010273253,0.0005570057827999045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006259078329758711,0.0003555002010273253,0.0005570057827999045,0.0,0.0 +101553,50.0,the Greater Atlanta and Macon Area,G1300670030209,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,75408.0,,1419.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,120171.9144447585,0.0,0.0,0.007201428558693768,0.0004133239411489268,0.0,0.007614752499842696,0.00502950358369845,0.001861385294343745,0.0007238636218005014,0.0,0.0,0.004616179642549523,0.001861385294343745,0.0007238636218005014,0.0,0.0,0.0004133239411489268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7615607143806414e-05,0.0,0.0,0.0008581799882058225,0.0002738163723477885,0.000885795595349629,0.0005501009916173726,0.00022181760145603,8.62613951324202e-05,0.0,0.0,2.761560714380641e-05,0.0,0.0,0.0,0.0,0.0,0.0005850632862101945,0.00021652796922977112,8.420433990966345e-05,0.0,0.0 +101554,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,31472.0,,3773.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0016200408533116448,0.0006416263190688708,0.0,0.0022616671723805163,0.000764302689734216,0.000283402096938124,0.0008890180519628675,0.0,0.00032494433374530773,0.000764302689734216,0.000283402096938124,0.0002473917328939968,0.0,0.00032494433374530773,0.0,0.0006416263190688708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2870146439478776e-05,0.0,0.0,0.00019305727086583497,9.410209171896351e-05,0.00023592741730531376,9.108053731724011e-05,3.3772503502418776e-05,2.948121505062871e-05,0.0,3.872301499554736e-05,0.0,4.2870146439478776e-05,0.0,0.0,0.0,0.0,7.972877788145214e-05,2.9563291012066056e-05,9.273854946421445e-05,0.0,3.3896798947580994e-05 +101555,50.0,the Greater Atlanta and Macon Area,G1300670030320,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,17704.0,,2267.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,9613.75315558068,0.0,0.0,0.0014367623742039745,0.0006605346669727889,0.0,0.0020972970411767635,0.0018023390170367555,0.00026233677834386246,3.262124579614546e-05,0.0,0.0,0.0011418043500639667,0.00026233677834386246,3.262124579614546e-05,0.0,0.0,0.0006605346669727889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4133013484216143e-05,0.0,0.0,0.000171216561026239,8.680698676518425e-05,0.00021534957451045515,0.00013606690827428234,3.126223363388423e-05,3.887419118072441e-06,0.0,0.0,4.4133013484216143e-05,0.0,0.0,0.0,0.0,0.0,0.00018506340915099055,2.6936629616897912e-05,3.3495357425666736e-06,0.0,0.0 +101556,50.0,the Greater Atlanta and Macon Area,G1301210009801,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,12310.0,,824.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002955868108369108,0.0006538821249829645,0.0,0.0036097502333520726,0.0021636997560940214,0.00039368567099910335,0.0009783419752622676,0.0,7.402283099668014e-05,0.001583840462107737,0.00039368567099910335,0.0009783419752622676,0.0,0.0,0.0005798592939862842,0.0,7.402283099668014e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3687304208530406e-05,0.0,0.0,0.00035224382865229226,0.00015545239870741744,0.0003959311328608227,0.00018874253109184353,4.6914592584708894e-05,0.00011658670497573982,0.0,0.0,3.8741675917784797e-05,0.0,4.9456282907455995e-06,0.0,0.0,0.0,0.00023732281743090805,4.3180941514893254e-05,0.00010730826831505721,0.0,8.119105599964172e-06 +101557,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,24390.0,,3664.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005741439040997744,0.002841771360160339,0.0,0.008583210401158083,0.0035449367297242565,0.0008629462769073281,0.002903063833726283,0.00043438412664413106,0.0008378794341560844,0.0035449367297242565,0.0008629462769073281,0.0008991719077220284,0.00043438412664413106,0.0,0.0,0.002003891926004254,0.0008378794341560844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018987290753051027,0.0,0.0,0.0006841931229676751,0.00041213270203174936,0.0008740660304981854,0.00042244136261200603,0.00010283517841686424,0.00010715209745085554,5.1764484487949286e-05,0.0,0.0,0.0001338900066703023,5.598290086020792e-05,0.0,0.0,0.0,0.00036099648393790227,8.787761123597839e-05,0.000295631746494949,4.423524433655134e-05,8.532494449280435e-05 +101558,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,29635.0,,2584.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007102326020041066,0.002003891926004254,0.0,0.00910621794604532,0.004555292214165511,0.0009318396640817136,0.0027030951171978135,0.00041069191720505244,0.0005053798941782985,0.004555292214165511,0.0009318396640817136,0.0006992031911935594,0.00041069191720505244,0.0005053798941782985,0.0,0.002003891926004254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013388845047417305,0.0,0.0,0.0008463719278878072,0.00041747347150201887,0.0009802603783619801,0.0005428463073247219,0.00011104572371722897,8.332283694749036e-05,4.894144661227057e-05,6.022524932598762e-05,0.0,0.00013388845047417305,0.0,0.0,0.0,0.0,0.0004903652093398998,0.00010031008560278698,0.0002909810700811841,4.420990322601138e-05,5.440281456242787e-05 +101559,50.0,the Greater Atlanta and Macon Area,G1300890022100,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,62460.0,,5827.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.005381667981152565,0.0017150886479471198,0.0,0.007096756629099684,0.0025047322179870125,0.0017168072658997916,0.0028752171452128806,0.0,0.0,0.0007896435700398926,0.0017168072658997916,0.0028752171452128806,0.0,0.0,0.0017150886479471198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001145916841853932,0.0,0.0,0.0006413245485367056,0.000314764390150311,0.0007559162327220988,9.410052939614636e-05,0.00020458910668285366,0.00034263491245770556,0.0,0.0,0.0001145916841853932,0.0,0.0,0.0,0.0,0.0,0.0002667933876208754,0.00018286698397230162,0.0003062558611289219,0.0,0.0 +101560,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,12918.0,,4304.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010762231136478412,0.0012670203960006593,0.0,0.0023432128200422033,0.0014612549142588203,0.00036179976864361804,0.0005201888267460621,0.0,0.0,0.0001942345182581609,0.00036179976864361804,0.0005201888267460621,0.0,0.0,0.0012670203960006593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.465401038844064e-05,0.0,0.0,0.00012825016691258776,0.00012344792495448995,0.00021290417730102838,2.3146324466458535e-05,4.3114555085334116e-05,6.198928736079509e-05,0.0,0.0,8.465401038844064e-05,0.0,0.0,0.0,0.0,0.0,0.00013276953449826022,3.287310543537593e-05,4.726432582319298e-05,0.0,0.0 +101561,35.0,Eastern Counties in South Carolina and Georgia,G1300510010101,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,NaturalGas,797856.0,,77363.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.20080309776450633,0.06698892490713794,0.0,0.2677919323920211,0.11500648978971312,0.030657425293714183,0.0853181259716992,0.0006720415152890704,0.036137940101228734,0.10732748559741627,0.030657425293714183,0.04545019295729433,0.0006720415152890704,0.01669595240079252,0.007679004192296847,0.039867933014404874,0.019441987700436217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00447580658564009,0.0,0.0,0.02392931550534757,0.012247479344507081,0.028405122090987663,0.012790008191348656,0.0036533858820009778,0.005416211299337152,8.008588329102247e-05,0.001989624249369765,0.0005130659669890874,0.00266374116899311,0.0012989994496578922,0.0,0.0,0.0,0.01219892382325578,0.003251882536881201,0.00904983119974151,7.128452721291603e-05,0.0038332095800014698 +101562,50.0,the Greater Atlanta and Macon Area,G1300670031308,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,64229.0,,9940.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0035276504384951254,0.001690465848872094,0.0,0.00521811628736722,0.0017595610673260403,0.00131626657110188,0.0011645655987919082,0.0,0.0009777053197859715,0.0014239075952830207,0.00131626657110188,0.0006469099667720465,0.0,0.00014054857497675858,0.0003356534720430196,0.0005176556320198616,0.0008371567448092129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011294685045164964,0.0,0.0,0.00042038282319144693,0.0002328686164315164,0.0005333296736430966,0.00016968412979268257,0.0001568567710661217,7.709092579431715e-05,0.0,1.6748883647743027e-05,2.242636403197067e-05,3.4586663371053595e-05,5.593382304862537e-05,0.0,0.0,0.0,0.00017984001852622088,0.00013453207673669472,0.00011902712713461547,0.0,9.992863907286775e-05 +101563,50.0,the Greater Atlanta and Macon Area,G1300890023108,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,6317.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012033052158331838,0.0,0.0,0.0012033052158331838,0.0006018593756009402,0.00017335402655758837,0.00038905407486970213,0.0,3.90377388049531e-05,0.0006018593756009402,0.00017335402655758837,0.00038905407486970213,0.0,3.90377388049531e-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.00014339771740235881,5.031710062555018e-05,0.00014339771740235881,7.172349917774178e-05,2.065857554988962e-05,4.6363520699752274e-05,0.0,4.652121974975143e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.172349917774178e-05,2.065857554988962e-05,4.6363520699752274e-05,0.0,4.652121974975143e-06 +101564,50.0,the Greater Atlanta and Macon Area,G1301210006500,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,19835.0,,3001.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028019949217320435,0.0008742129390173728,0.0,0.0036761774871499784,0.0026489119805657743,0.0006752354891006607,0.0003520300174835436,0.0,0.0,0.0017746990415484017,0.0006752354891006607,0.0003520300174835436,0.0,0.0,0.0008742129390173728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.840888189906365e-05,0.0,0.0,0.00033390809987720736,0.000142575898637607,0.00039231698177627104,0.0002114873157767976,8.046645530531047e-05,4.1950709234337116e-05,0.0,0.0,5.840888189906365e-05,0.0,0.0,0.0,0.0,0.0,0.00028268851458862433,7.206027184437406e-05,3.75681953432727e-05,0.0,0.0 +101565,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,5389.0,,990.0,,8.72605822017302,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0012500347124958925,0.000785055543933506,0.0,0.0020350075493556588,0.001292711562545375,0.00023455726112467585,0.00039418191344153916,0.0,0.00011355681224406908,0.0006212128308559381,0.00023455726112467585,0.00039418191344153916,0.0,0.0,0.0006714987316894368,0.0,0.00011355681224406908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2452416726905606e-05,0.0,0.0,0.00014895954001140524,0.00010558117248169858,0.0002014119567383109,7.402640631372667e-05,2.7950857183561282e-05,4.697242078168303e-05,0.0,0.0,4.486527300945496e-05,0.0,7.5871437174506315e-06,0.0,0.0,0.0,0.0001279442748961512,2.3214968880709198e-05,3.901359015707335e-05,0.0,1.1239122804377195e-05 +101566,50.0,the Greater Atlanta and Macon Area,G1301990970800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Propane,2738.0,,,818.0,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00024140936833125148,0.0,7.711856897245188e-05,0.0003185583109031411,0.000207937661750849,9.743850699630785e-05,1.3182142155984289e-05,0.0,0.0,0.00013081909277839712,9.743850699630785e-05,1.3182142155984289e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.711856897245188e-05,0.0,0.0,0.0,0.0,6.220602991397716e-06,2.8769347655855657e-05,1.4283768355273988e-05,3.498995064725338e-05,1.5590032757142717e-05,1.1611986321085172e-05,1.5709482741118965e-06,0.0,0.0,0.0,0.0,0.0,6.220602991397716e-06,0.0,0.0,2.2839550165054985e-05,1.0702494439014955e-05,1.4479060431834444e-06,0.0,0.0 +101567,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2004,gen3_t5_cfl,5001_10000,NaturalGas,19971.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.00162407636193659,0.0,0.0,0.00162407636193659,0.001155442096211517,0.0003410651480865152,0.00012756911763855765,0.0,0.0,0.001155442096211517,0.0003410651480865152,0.00012756911763855765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019353662259878073,5.117873282100767e-05,0.00019353662259878073,0.00013769079222517705,4.0643776606727294e-05,1.520205376687636e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013769079222517705,4.0643776606727294e-05,1.520205376687636e-05,0.0,0.0 +101568,81.0,the Columbus-Albany Area,G1302150001200,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,169529.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013622012623041812,0.0,0.0,0.013622012623041812,0.009358105986771335,0.0026330873352587054,0.0016308193010117706,0.0,0.0,0.009358105986771335,0.0026330873352587054,0.0016308193010117706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016233088135045478,0.00042301905384813565,0.0016233088135045478,0.0011151873329158163,0.0003137799087649209,0.00019434157182381047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011151873329158163,0.0003137799087649209,0.00019434157182381047,0.0,0.0 +101569,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010301,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,20436.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016929333118619733,0.0,0.0,0.0016929333118619735,0.001043970986274968,0.000557720032875999,9.124229271100647e-05,0.0,0.0,0.001043970986274968,0.000557720032875999,9.124229271100647e-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.0002017424783053382,4.717083828115851e-05,0.0002017424783053382,0.000124407318690148,6.646205189806807e-05,1.0873107717122125e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000124407318690148,6.646205189806807e-05,1.0873107717122124e-05,0.0,0.0 +101570,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,38763.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.00614388734739072,0.0,0.0,0.00614388734739072,0.004073414017050808,0.00022656464920001678,0.001816120390430785,0.0,2.7788290709110493e-05,0.004073414017050808,0.00022656464920001678,0.001816120390430785,0.0,2.7788290709110493e-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.0007321546963811411,0.0002562895166548893,0.0007321546963811411,0.00048542055448902666,2.6999253496434405e-05,0.00021642341368973181,0.0,3.3114747059482204e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00048542055448902666,2.6999253496434405e-05,0.00021642341368973181,0.0,3.3114747059482204e-06 +101571,85.0,Rural Climate Zone 3A,G1302610950700,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,9335.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.001894488231072576,0.0,0.0,0.001894488231072576,0.0009687479547085077,0.0004096481362307897,0.00045439266312375504,0.0,6.169947700952333e-05,0.0009687479547085077,0.0004096481362307897,0.00045439266312375504,0.0,6.169947700952333e-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.00022576286428877552,5.725413301908402e-05,0.00022576286428877552,0.00011544400722144534,4.881705521794749e-05,5.414918258982506e-05,0.0,7.352619259557605e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011544400722144534,4.881705521794749e-05,5.414918258982506e-05,0.0,7.352619259557605e-06 +101572,81.0,the Columbus-Albany Area,G1300950011400,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,235705.0,,9861.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.015310503963082579,0.0016768843920243338,0.0,0.01698738835510691,0.008547683128077516,0.002990119071323385,0.002978257459533369,0.0,0.00247132869617264,0.007899567496728904,0.002990119071323385,0.0019494886988576457,0.0,0.00247132869617264,0.0006481156313486101,0.0010287687606757236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011203989597024989,0.0,0.0,0.0018245226534922517,0.000518504101891973,0.0019365625494625017,0.0009413759263134731,0.00035632661050370316,0.00023231673512311832,0.0,0.00029450338155195653,4.3303407353759524e-05,6.873648861649035e-05,0.0,0.0,0.0,0.0,0.0009744360159712865,0.000340873622884924,0.00033952139894745793,0.0,0.0002817315116588331 +101573,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,159528.0,,10671.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012614550703291023,0.0031087682760533365,0.0,0.01572331897934436,0.011034333818942546,0.0038049311751666088,0.0008840539852352045,0.0,0.0,0.00792556554288921,0.0038049311751666088,0.0008840539852352045,0.0,0.0,0.0031087682760533365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002077099585318247,0.0,0.0,0.0015032524663402308,0.0005585560365383472,0.0017109624248720556,0.0009444748552464153,0.0004534265474736092,0.00010535106362020634,0.0,0.0,0.0002077099585318247,0.0,0.0,0.0,0.0,0.0,0.0012007217161025192,0.0004140407173883973,9.61999913811392e-05,0.0,0.0 +101574,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,122957.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.012117576219403863,0.0,0.0,0.012117576219403863,0.003013044167095864,0.0047532982922071,0.0043512030704945985,0.0,0.0,0.003013044167095864,0.0047532982922071,0.0043512030704945985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014440264538101125,0.0004090898410351311,0.0014440264538101125,0.0003590582312011842,0.0005664407099669277,0.0005185238554251981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003590582312011842,0.0005664407099669277,0.0005185238554251981,0.0,0.0 +101575,50.0,the Greater Atlanta and Macon Area,G1300570090702,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,6254.0,,603.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.00047136166312641706,0.00017753937243221058,0.0,0.0006489010355586276,0.0002719406014039443,0.00015133044865397243,0.00022562998550071085,0.0,0.0,9.440122897173375e-05,0.00015133044865397243,0.00022562998550071085,0.0,0.0,0.00017753937243221058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1861159525528221e-05,0.0,0.0,5.617237525205528e-05,2.9903165444536785e-05,6.80335347775835e-05,1.124983568431031e-05,1.8034115656480538e-05,2.6888423911264433e-05,0.0,0.0,1.1861159525528221e-05,0.0,0.0,0.0,0.0,0.0,2.8511405205456264e-05,1.5866125614276593e-05,2.3656003957850637e-05,0.0,0.0 +101576,50.0,the Greater Atlanta and Macon Area,G1300970080201,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,105604.0,,7781.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010284500769622767,0.002266720978840543,0.0,0.012551221748463307,0.008862621459143292,0.0026472110589972598,0.0010413892303227591,0.0,0.0,0.006595900480302748,0.0026472110589972598,0.0010413892303227591,0.0,0.0,0.002266720978840543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015144805605971646,0.0,0.0,0.0012255841753754635,0.000402555445432124,0.0013770322314351803,0.0007860207735982289,0.00031546305022105294,0.0001241003515561818,0.0,0.0,0.00015144805605971646,0.0,0.0,0.0,0.0,0.0,0.0009723448162123019,0.00029043347529870473,0.00011425393992417409,0.0,0.0 +101577,50.0,the Greater Atlanta and Macon Area,G1301390001606,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,39390.0,,1865.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003531299548645171,0.0005490677462722005,0.0,0.0040803672949173714,0.002110370777061532,0.0008418159007459874,0.0011281499275035544,0.0,0.0,0.0015613030307893316,0.0008418159007459874,0.0011281499275035544,0.0,0.0,0.0005490677462722005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6684789190031924e-05,0.0,0.0,0.00042081839149682557,0.00016948561672984532,0.0004575031806868575,0.00018605757484039027,0.00010031763332688416,0.0001344395261063165,0.0,0.0,3.6684789190031924e-05,0.0,0.0,0.0,0.0,0.0,0.00023662118460191162,9.438695693492961e-05,0.00012649159813809743,0.0,0.0 +101578,50.0,the Greater Atlanta and Macon Area,G1300210012500,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,294525.0,,14304.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.014440758813983304,0.0024324814743013038,0.0,0.01687324028828461,0.010054497893360702,0.0029636121810004057,0.002623189241735392,0.0,0.001231958702549529,0.008940517015700205,0.0029636121810004057,0.0013046886450945854,0.0,0.001231958702549529,0.0011139808776604973,0.0013185005966408066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016252421895943938,0.0,0.0,0.0017208772551075826,0.0007319729125989557,0.0018834014740670222,0.001065424094357331,0.0003531679228867752,0.00015547721856321817,0.0,0.00014681013219308405,7.44297023390597e-05,8.809451662037971e-05,0.0,0.0,0.0,0.0,0.001122289247934635,0.0003308002170830579,0.00029280199891845796,0.0,0.0001375119892047342 +101579,85.0,Rural Climate Zone 3A,G1302930010500,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,Electricity,169580.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,240343.828889517,0.0,0.0,0.013797754269388644,0.0,0.0,0.013797754269388647,0.009919622719577055,0.0030028555348138963,0.0008752760149976942,0.0,0.0,0.009919622719577055,0.0030028555348138963,0.0008752760149976942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016442521903140522,0.0005742285633167617,0.0016442521903140522,0.0011821026136071557,0.0003578445951359296,0.00010430498157096701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011821026136071555,0.0003578445951359295,0.00010430498157096699,0.0,0.0 +101580,50.0,the Greater Atlanta and Macon Area,G1301530021108,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,29340.0,,758.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006887640640994125,0.0005878578929081966,0.0,0.007475498533902322,0.0032428408441802364,0.0006349188686540798,0.0026337974261080857,0.0004237913640621539,0.0005401500308977653,0.0032428408441802364,0.0006349188686540798,0.002045939533199889,0.0004237913640621539,0.0005401500308977653,0.0,0.0005878578929081966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9274811748944617e-05,0.0,0.0,0.000820789972943058,0.00028242682682420124,0.0008600647846920025,0.00038644455881036864,7.566234479800056e-05,0.00024381159552712815,5.0502591580020504e-05,6.436888222753997e-05,0.0,3.9274811748944617e-05,0.0,0.0,0.0,0.0,0.00037309260376302677,7.304815292108733e-05,0.00030302145147040967,4.8757688418163364e-05,6.214488811931525e-05 +101581,35.0,Eastern Counties in South Carolina and Georgia,G1300730030505,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,107078.0,,13066.0,,3.3063363735822096,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.011020798958577164,0.003927186928533487,0.0,0.014947985887110651,0.006341217454948833,0.0027721927821843873,0.003963131640001428,0.0,0.0018714440099760032,0.00547848170367385,0.0027721927821843873,0.0027701244727189257,0.0,0.0,0.0008627357512749818,0.0011930071672825024,0.0018714440099760032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026239167787763803,0.0,0.0,0.0013133277647241625,0.0007560803286822673,0.0015757194426018004,0.000652860301418393,0.0003303569699161559,0.0003301104933896135,0.0,0.0,5.764296058772054e-05,7.970976631361909e-05,0.00012503895097629842,0.0,0.0,0.0,0.0006684498974637557,0.00029222653128773205,0.00041776755918169285,0.0,0.0001972754546686198 +101582,50.0,the Greater Atlanta and Macon Area,G1301350050719,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13732.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003000860756483291,0.0,0.0,0.0030008607564832907,0.0015678779968760507,0.000706483823881164,0.000630310608967262,0.0,9.618832675881454e-05,0.0015678779968760507,0.000706483823881164,0.000630310608967262,0.0,9.618832675881454e-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.00035760560154582394,0.00010933130665557515,0.00035760560154582394,0.00018684037671923997,8.419003523425374e-05,7.51126502599213e-05,0.0,1.1462539332408931e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00018684037671924,8.419003523425374e-05,7.511265025992132e-05,0.0,1.1462539332408933e-05 +101583,50.0,the Greater Atlanta and Macon Area,G1300890021604,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,284867.0,,29155.0,,7.614023970037612,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.05256718102878152,0.020180930571039007,0.0,0.07274811159982054,0.05940392392737108,0.005395134452479617,0.005379402041523871,0.0007768058326956032,0.0017928453457503595,0.04088839173993635,0.005395134452479617,0.0037140036579195955,0.0007768058326956032,0.0017928453457503595,0.01851553218743473,0.0016653983836042766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013483733736954417,0.0,0.0,0.006264326175838995,0.002592402099578833,0.007612699549534437,0.004872588136773051,0.0006429274180469068,0.00044259041242346764,9.257040259844173e-05,0.0002136498059971282,0.0012371010600059039,0.00011127231368953771,0.0,0.0,0.0,0.0,0.006216301907740397,0.0005645718729030297,0.0005629255605086308,8.12885624463705e-05,0.00018761164593600725 +101584,35.0,Eastern Counties in South Carolina and Georgia,G1301270001000,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,NaturalGas,63921.0,,12300.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003149018570369898,0.0020917393885307293,0.0,0.005240757958900628,0.001660749763132086,0.0006035769634614376,0.0024106553993932193,0.0,0.0005657758329138849,0.0015863177058907042,0.0006035769634614376,0.0008604721700765826,0.0,9.86517309411738e-05,7.443205724138165e-05,0.0015501832293166365,0.000467124101972711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001397575666255194,0.0,0.0,0.0003752625752657904,0.00024377226486959667,0.0005150201418913098,0.00018903847475003663,7.192712288547707e-05,0.00010254083781079511,0.0,1.1756139819481651e-05,4.973106714930539e-06,0.00010357400981255171,3.121045009803716e-05,0.0,0.0,0.0,0.00016320531979570175,5.931475862881569e-05,0.00023690010024942832,0.0,5.559996321736409e-05 +101585,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,121977.0,,9122.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.01212224103956111,0.0026852484822301004,0.0,0.014807489521791213,0.007064133577605227,0.0030154686459933824,0.0047279179877989,0.0,0.0,0.004378885095375127,0.0030154686459933824,0.0047279179877989,0.0,0.0,0.0026852484822301004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017941266378617294,0.0,0.0,0.0014445853321362456,0.0005689100735114241,0.0016239979959224186,0.0005218237419339383,0.00035934789295993894,0.0005634173544667184,0.0,0.0,0.00017941266378617294,0.0,0.0,0.0,0.0,0.0,0.0007747524491627266,0.000330718791369285,0.000518530121245169,0.0,0.0 +101586,50.0,the Greater Atlanta and Macon Area,G1301170130612,ComStock 90.1-2004,gen3_t5_cfl,5001_10000,Electricity,16767.0,,375.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004026097642555747,0.00029782817253524595,0.0,0.004323843108017252,0.0024935355661663793,0.0007930781300862188,0.0009307854078621658,0.0,0.00010652671097622798,0.002195707393631133,0.0007930781300862188,0.0009307854078621658,0.0,0.00010652671097622798,0.00029782817253524595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9896642265168506e-05,0.0,0.0,0.00047977935411088433,0.00015304742015025808,0.0004996759963760528,0.00026165661358975645,9.450901264547893e-05,0.00011091922289208676,0.0,1.2694504983562091e-05,1.9896642265168506e-05,0.0,0.0,0.0,0.0,0.0,0.00028816028643894524,9.165043572466901e-05,0.00010756429279856347,0.0,1.2310539285991627e-05 +101587,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,37367.0,,4012.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0050251905325782885,0.00116877610636469,0.0,0.006193966638942979,0.0037803893068209045,0.00197993345294929,0.0004336438791727828,0.0,0.0,0.002611613200456215,0.00197993345294929,0.0004336438791727828,0.0,0.0,0.00116877610636469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.809078899775284e-05,0.0,0.0,0.0005988439361503675,0.00020386335510511093,0.0006769347251481203,0.00031122177726881906,0.00023594550984549548,5.1676649036052826e-05,0.0,0.0,7.809078899775284e-05,0.0,0.0,0.0,0.0,0.0,0.00041315637386164826,0.00021638568399078763,4.739266729568428e-05,0.0,0.0 +101588,50.0,the Greater Atlanta and Macon Area,G1302310010100,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,15013.0,,891.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013238940786932888,0.00025954240719558934,0.0,0.0015834364858888783,0.0010378962663874177,0.00043731908470475073,0.00010819076119727198,0.0,0.0,0.0007783538591918283,0.00043731908470475073,0.00010819076119727198,0.0,0.0,0.00025954240719558934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.734208065250766e-05,0.0,0.0,0.0001577643054803674,5.614864139340048e-05,0.00017510638613287506,9.275398839653784e-05,5.2113943843493e-05,1.2892753713746497e-05,0.0,0.0,1.734208065250766e-05,0.0,0.0,0.0,0.0,0.0,0.0001147771104225135,4.83615005666603e-05,1.196441623964745e-05,0.0,0.0 +101589,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,69506.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.006031980738600886,0.0,0.0,0.006031980738600886,0.0020306084902938022,0.0016373825648013365,0.00236395899389945,0.0,0.0,0.0020306084902938022,0.0016373825648013365,0.00236395899389945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007188199181626377,0.00022531500110708723,0.0007188199181626377,0.00024198383450937727,0.00019512383282318423,0.00028170859360681185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024198383450937727,0.00019512383282318423,0.00028170859360681185,0.0,0.0 +101590,35.0,Eastern Counties in South Carolina and Georgia,G1300510004208,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,43397.0,,769.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006682940647971119,0.0002857308768953385,0.0,0.006968671524866457,0.0036042233855840527,0.001090535638641498,0.002153831135371222,0.0,0.00012008136526968457,0.0036042233855840527,0.001090535638641498,0.0018681002584758834,0.0,0.00012008136526968457,0.0,0.0002857308768953385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9090891553048183e-05,0.0,0.0,0.0007963925304012531,0.0002420390242954492,0.0008154834219543012,0.0004295080165118743,0.00012995692802002012,0.00022261773226169663,0.0,1.4309853607662105e-05,0.0,1.9090891553048183e-05,0.0,0.0,0.0,0.0,0.0004217711237322418,0.00012761596398813335,0.0002520442495125211,0.0,1.4052084721405105e-05 +101591,50.0,the Greater Atlanta and Macon Area,G1300890021303,ComStock 90.1-2007,gen4_led,_1000,Electricity,4852.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0003096284726684421,0.0,0.0,0.0003096284726684421,0.00022318520866860037,6.764200594787331e-05,1.8770884452530628e-05,0.0,0.0,0.00022318520866860037,6.764200594787331e-05,1.8770884452530628e-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,3.689786076982077e-05,1.3211133572906316e-05,3.689786076982077e-05,2.6596574547443886e-05,8.060774566842344e-06,2.2368920890474043e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6596574547443886e-05,8.060774566842344e-06,2.2368920890474043e-06,0.0,0.0 +101592,50.0,the Greater Atlanta and Macon Area,G1301210011620,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,86300.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00761007496552928,0.0,0.0,0.007610074965529282,0.005133958392164877,0.0018303131021189245,0.0006458034712454794,0.0,0.0,0.005133958392164877,0.0018303131021189245,0.0006458034712454794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009068769054254697,0.00021399173394557163,0.0009068769054254697,0.0006118032109222183,0.0002181146295572475,7.695906494600394e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006118032109222182,0.00021811462955724744,7.695906494600393e-05,0.0,0.0 +101593,50.0,the Greater Atlanta and Macon Area,G1300590140400,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,NaturalGas,12723.0,,1541.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010972454939617677,0.00045365376029264247,0.0,0.001550929943860708,0.00063564312563802,0.00044527549777336975,0.00046998063084302045,0.0,0.0,0.0001819893653453775,0.00044527549777336975,0.00046998063084302045,0.0,0.0,0.00045365376029264247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.031148984875177e-05,0.0,0.0,0.0001307572569191072,7.232854296386632e-05,0.00016106874676785895,2.168742576931462e-05,5.306287697925563e-05,5.600695417053695e-05,0.0,0.0,3.031148984875177e-05,0.0,0.0,0.0,0.0,0.0,6.601345344023852e-05,4.624320181365493e-05,4.880890430590058e-05,0.0,0.0 +101594,50.0,the Greater Atlanta and Macon Area,G1300570091006,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,19052.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0017727551311843852,0.0,0.0,0.0017727551311843852,0.0012992914631487096,0.00030625700313085164,0.00016720666490482378,0.0,0.0,0.0012992914631487096,0.00030625700313085164,0.00016720666490482378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002112549741459597,5.0255222945078786e-05,0.0002112549741459597,0.00015483344519903565,3.6495912007431024e-05,1.9925616939492985e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015483344519903565,3.6495912007431024e-05,1.9925616939492985e-05,0.0,0.0 +101595,46.0,the Tallahassee-Valdosta Area,G1301850010900,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,73994.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006200988400482336,0.0,0.0,0.006200988400482336,0.001578581279134938,0.0025006505003494182,0.0021217873106042775,0.0,0.0,0.001578581279134938,0.0025006505003494182,0.0021217873106042775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007389589122355204,0.00020006355093517243,0.0007389589122355204,0.0001881162533402215,0.0002979973278898056,0.00025284898822215327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001881162533402215,0.0002979973278898056,0.00025284898822215327,0.0,0.0 +101596,50.0,the Greater Atlanta and Macon Area,G1301210008700,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,133341.0,,3238.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011880499010754105,0.0009532498612129461,0.0,0.012833748871967051,0.004878358437870239,0.002850726839387314,0.005104632905103202,0.0,0.0,0.003925108576657293,0.002850726839387314,0.005104632905103202,0.0,0.0,0.0009532498612129461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.369012289275361e-05,0.0,0.0,0.001415775932348083,0.0004910927392318212,0.0014794660552408369,0.00046774754576000806,0.0003397155662611429,0.0006083091631063114,0.0,0.0,6.369012289275361e-05,0.0,0.0,0.0,0.0,0.0,0.0005623739241065979,0.000328629898692345,0.0005884586945644417,0.0,0.0 +101597,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,47537.0,,3061.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.011159515810504445,0.002373668286976632,0.0,0.013533264958264145,0.0038541483641783064,0.000782489797754143,0.007755519425668632,0.0004238722248452225,0.0007171542850347725,0.0038541483641783064,0.000782489797754143,0.0060990054237267735,0.0004238722248452225,0.0,0.0,0.0016565140019418592,0.0007171542850347725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001585971837267486,0.0,0.0,0.0013298586949628017,0.0005083811704176295,0.0014884558786895502,0.00045929167544657944,9.324785043841367e-05,0.000726807106248609,5.051206282919961e-05,0.0,0.0,0.00011068035788881523,4.791682583793334e-05,0.0,0.0,0.0,0.00042389843158282034,8.606212492503676e-05,0.0008529906505952388,4.661957826361919e-05,7.887619985120916e-05 +101598,50.0,the Greater Atlanta and Macon Area,G1300670030345,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,440176.0,,60495.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.020394277301970055,0.010287723067480077,0.0,0.030682000369450128,0.013151087785011506,0.0060451667261670035,0.003825821926496153,0.0,0.007659906201414051,0.010625592834700605,0.0060451667261670035,0.0027509719564897126,0.0,0.0009725280542513164,0.002525494950310901,0.0010748499700064412,0.006687378147162736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006873655365902091,0.0,0.0,0.0024303459671566425,0.0013368576230492152,0.0031177115037468524,0.0012662310270719222,0.0007203906446986622,0.00032782792453106205,0.0,0.00011589425796265236,0.0001687388142439107,7.181519385206549e-05,0.000446811528494233,0.0,0.0,0.0,0.00133633065577236,0.0006142717429533861,0.00038875591186683005,0.0,0.0007783513915066952 +101599,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,118996.0,,9860.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010602461046092571,0.0029022546883611566,0.0,0.013504715734453727,0.006019551448050317,0.002972533886782896,0.004512661089226813,0.0,0.0,0.00311729675968916,0.002972533886782896,0.004512661089226813,0.0,0.0,0.0029022546883611566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019391214909387,0.0,0.0,0.0012634738619559719,0.0005263765373099247,0.0014573860110498418,0.0003714819567555817,0.0003542308576660806,0.0005377647047526877,0.0,0.0,0.00019391214909387,0.0,0.0,0.0,0.0,0.0,0.0006496108652477472,0.0003207864118840147,0.00048699204584287605,0.0,0.0 +101600,50.0,the Greater Atlanta and Macon Area,G1300210010800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6501.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012859295824987518,0.0,0.0,0.0012859295824987518,0.0005476862423016938,0.0003312418303259262,0.00036399383152669197,0.0,4.2924971270700556e-05,0.0005476862423016938,0.0003312418303259262,0.00036399383152669197,0.0,4.2924971270700556e-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.00015324115052683428,5.366579343792994e-05,0.00015324115052683428,6.526645863060823e-05,3.9473296106249756e-05,4.337627369877783e-05,0.0,5.115266087176936e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.526645863060823e-05,3.9473296106249756e-05,4.337627369877783e-05,0.0,5.115266087176936e-06 +101601,85.0,Rural Climate Zone 3A,G1301670960200,ComStock 90.1-2004,gen2_t8_halogen,_1000,NaturalGas,4763.0,,389.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,1870.6521585294563,0.0,0.0,0.00024517543771649015,6.61165177353769e-05,0.0,0.0003112919554518671,0.00014295990412988574,5.8297428349133617e-05,1.480485178574409e-05,0.0,9.522977118710362e-05,0.00013762306534244987,5.8297428349133617e-05,1.480485178574409e-05,0.0,3.4450092239162594e-05,5.336838787435893e-06,0.0,6.0779678947941016e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.417609669088004e-06,0.0,0.0,2.9216082734842038e-05,1.3262982438317406e-05,3.363369240393004e-05,1.6399713204212028e-05,6.94695400868966e-06,1.764205169481711e-06,0.0,4.105210352458641e-06,3.5658367133158736e-07,0.0,4.061025997756417e-06,0.0,0.0,0.0,1.54461731419313e-05,6.298774313614054e-06,1.5995974914439581e-06,0.0,1.028914745694072e-05 +101602,50.0,the Greater Atlanta and Macon Area,G1301350050218,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,20445.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001721636363330649,0.0,0.0,0.0017216363633306485,0.0011079985338897488,0.0004401134558530239,0.00017352437358787617,0.0,0.0,0.0011079985338897488,0.0004401134558530239,0.00017352437358787617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020516229009305488,6.243056636511369e-05,0.00020516229009305488,0.0001320368931989794,5.244701286913597e-05,2.067838402493953e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013203689319897941,5.244701286913598e-05,2.0678384024939538e-05,0.0,0.0 +101603,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,58094.0,,3750.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0029903850267446854,0.0006377079091950391,0.0,0.0036280929359397253,0.0014534109166859882,0.0007604020102218046,0.001044619703785251,0.0,0.0003696603052466809,0.001207774489572577,0.0007604020102218046,0.0009399041892384193,0.0,8.232206807330516e-05,0.0002456364271134115,0.00010471551454683185,0.0002873382371733757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2607385122438e-05,0.0,0.0,0.00035635926058500447,0.00012837235432853485,0.0003989666457074425,0.00014392849757077845,9.06158557130606e-05,0.00011200683487315635,0.0,9.81018532599017e-06,1.641178617861529e-05,6.996391595994074e-06,1.9198022723447335e-05,0.0,0.0,0.0,0.00015982569589678816,8.361832090963555e-05,0.00011487258640224307,0.0,4.065004249877566e-05 +101604,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,118357.0,,10622.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.011664781768087553,0.003126749158428852,0.0,0.014791500236910107,0.0083670301233679,0.0025038422194043793,0.003920627894137828,0.0,0.0,0.005240280964939049,0.0025038422194043793,0.003920627894137828,0.0,0.0,0.003126749158428852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020891015933107587,0.0,0.0,0.0013900686831818596,0.0005882531745644095,0.0015989788425129355,0.0006244737883021759,0.000298377863042801,0.0004672133746179599,0.0,0.0,0.00020891015933107587,0.0,0.0,0.0,0.0,0.0,0.0009044859498801208,0.0002706683344957692,0.0004238245581370457,0.0,0.0 +101605,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,63940.0,,2620.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005362640425247989,0.0007711377374423776,0.0,0.006133778162690366,0.001621331900707638,0.002362731409647542,0.002149684162728889,0.0,0.0,0.0008501941632652603,0.002362731409647542,0.002149684162728889,0.0,0.0,0.0007711377374423776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.152317220122524e-05,0.0,0.0,0.0006390539329572582,0.00021159858296987934,0.0006905771051584834,0.00010131574760335432,0.00028156144736985313,0.00025617308077192203,0.0,0.0,5.1523172201225245e-05,0.0,0.0,0.0,0.0,0.0,0.00018253915625808761,0.0002660103078174835,0.00024202418586511467,0.0,0.0 +101606,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,69193.0,,6640.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005761881513574804,0.00195462102510069,0.0,0.007716502538675495,0.003204056276692766,0.002390658951378451,0.0021217873106042775,0.0,0.0,0.0012494352515920759,0.002390658951378451,0.0021217873106042775,0.0,0.0,0.00195462102510069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001305967185610138,0.0,0.0,0.000686630585847718,0.0003005464489399926,0.0008172273044087319,0.0001488924159162719,0.00028488950223633686,0.0002528486676951093,0.0,0.0,0.0001305967185610138,0.0,0.0,0.0,0.0,0.0,0.0003393301902062164,0.00025318617609513074,0.00022471093810738472,0.0,0.0 +101607,50.0,the Greater Atlanta and Macon Area,G1301210001400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,67688.0,,3896.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005802693930985859,0.0011350310373893478,0.0,0.0069377249683752066,0.0037897443754477326,0.002343535811818617,0.0008044751547082948,0.0,0.0,0.0026547133380583846,0.002343535811818617,0.0008044751547082948,0.0,0.0,0.0011350310373893478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.583632033065256e-05,0.0,0.0,0.000691496757404921,0.00026733255596156596,0.0007673330777355735,0.0003163574861848836,0.000279275011573729,9.58678792143524e-05,0.0,0.0,7.583632033065256e-05,0.0,0.0,0.0,0.0,0.0,0.00041915703327807634,0.0002592020518921587,8.897735197604515e-05,0.0,0.0 +101608,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,32659.0,,1759.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027841959924615207,0.0005123418753159978,0.0,0.003296537867777518,0.0020014379613512187,0.0009245723668851654,0.0003705275395411345,0.0,0.0,0.001489096086035221,0.0009245723668851654,0.0003705275395411345,0.0,0.0,0.0005123418753159978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.423136367197864e-05,0.0,0.0,0.0003317877852743493,0.00011972460487748932,0.000366019148946328,0.00017745298599094802,0.00011017967799870388,4.41551212846974e-05,0.0,0.0,3.423136367197864e-05,0.0,0.0,0.0,0.0,0.0,0.0002222224189939405,0.00010265654587937518,4.1140184073012416e-05,0.0,0.0 +101609,50.0,the Greater Atlanta and Macon Area,G1300890021502,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,11056.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0009121871679866199,0.0,0.0,0.0009121871679866199,0.00047636406895294265,0.00021559448424136207,0.0002202593043986129,0.0,0.0,0.00047636406895294265,0.00021559448424136207,0.0002202593043986129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010870538904100764,4.1420060145868076e-05,0.00010870538904100764,5.6768329196060984e-05,2.5692405141240073e-05,2.6248311985577225e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6768329196060984e-05,2.5692405141240073e-05,2.6248311985577225e-05,0.0,0.0 +101610,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,231242.0,,22731.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01083950964523354,0.003865662048607012,0.0,0.014705171693840554,0.0058448668332046665,0.0032243903367665428,0.003144355485316424,0.0,0.00249157676891434,0.005007479593696993,0.0032243903367665428,0.0022539544651627923,0.0,0.0003537029799686334,0.0008373872395076737,0.0008904010201536317,0.0021378737889457063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025828092197702755,0.0,0.0,0.001291723716822109,0.0005447218047224491,0.0015500046387991366,0.0005967318047016493,0.00038424445446430837,0.0002685994601765163,0.0,4.215011037303204e-05,5.5949316197926995e-05,5.949138686281091e-05,0.00014284021891628964,0.0,0.0,0.0,0.0006160805798972866,0.0003398681826598904,0.0003314320763976803,0.0,0.00026262566872027886 +101611,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,21460.0,,1729.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.001892366365770252,0.0005035639050784875,0.0,0.0023959302708487394,0.0016085554526238989,0.0006059229351837111,0.0001814518830411294,0.0,0.0,0.0011049915475454114,0.0006059229351837111,0.0001814518830411294,0.0,0.0,0.0005035639050784875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.364514830743587e-05,0.0,0.0,0.0002255113476126755,7.696013130519714e-05,0.00025915649592011137,0.00013168070279359157,7.220721110580972e-05,2.1623433713274214e-05,0.0,0.0,3.364514830743587e-05,0.0,0.0,0.0,0.0,0.0,0.00017398986926590577,6.553983085000763e-05,1.9626795804197982e-05,0.0,0.0 +101612,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,151536.0,,4980.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013194259677146165,0.0014657662863845826,0.0,0.014659995273924453,0.003271880306610689,0.0060144262837986,0.00537371937312146,0.0,0.0,0.0018061140202261065,0.0060144262837986,0.00537371937312146,0.0,0.0,0.0014657662863845826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.793345996790141e-05,0.0,0.0,0.001572333274634429,0.000536296172621989,0.0016702667346023307,0.00021523095961982017,0.0007167270316979129,0.0006403752833166963,0.0,0.0,9.793345996790141e-05,0.0,0.0,0.0,0.0,0.0,0.0003727772576743377,0.0006852455244248865,0.0006122474490818936,0.0,0.0 +101613,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,10851.0,,318.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0026054382369356623,0.0002525046961261055,0.0,0.002857942933061768,0.0019541200312386165,0.0002449783524158286,0.0006164985276527975,0.0,4.242872882826471e-05,0.001701615335112511,0.0002449783524158286,0.0006164985276527975,0.0,4.242872882826471e-05,0.0002525046961261055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.687288277185111e-05,0.0,0.0,0.0003104860967206322,0.00011621413143771233,0.0003273589794924834,0.0002027789014643606,2.9193696225208324e-05,7.346718827235072e-05,0.0,5.056166834413191e-06,1.687288277185111e-05,0.0,0.0,0.0,0.0,0.0,0.0002238318798572972,2.8060694465540035e-05,7.061594076506934e-05,0.0,4.859937967866994e-06 +101614,50.0,the Greater Atlanta and Macon Area,G1301350050606,ComStock 90.1-2004,gen5_led,1001_5000,NaturalGas,3334.0,,244.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008005217667227566,0.00019345184547624005,0.0,0.0009939736121989966,0.00042445270243012564,0.00016690287480592239,0.00036978332668844343,0.0,3.283470827450504e-05,0.00026383556522839065,0.00016690287480592239,0.00036978332668844343,0.0,0.0,0.00016061713720173502,0.0,3.283470827450504e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2926231927829968e-05,0.0,0.0,9.539726721992137e-05,4.131273199215331e-05,0.00010832349914775134,3.144098382390217e-05,1.988962550364721e-05,4.406665789237198e-05,0.0,0.0,1.0732254127338949e-05,0.0,2.1939778004910204e-06,0.0,0.0,0.0,4.625696435565484e-05,1.8189118096202547e-05,4.0299081768147464e-05,0.0,3.578334927746487e-06 +101615,50.0,the Greater Atlanta and Macon Area,G1301390000102,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,26214.0,,2283.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002394096187283794,0.0006718875506756069,0.0,0.0030659837379594006,0.001139014048132941,0.0008256731678333957,0.001101235142780469,0.0,0.0,0.00046712649745733417,0.0008256731678333957,0.001101235142780469,0.0,0.0,0.0006718875506756069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.489212930561854e-05,0.0,0.0,0.0002852980536168158,0.00013570832279837796,0.0003301901829224343,5.5666218101545374e-05,9.83932679721422e-05,0.00013123125314616334,0.0,0.0,4.489212930561854e-05,0.0,0.0,0.0,0.0,0.0,0.00012266577028701068,8.892061981467198e-05,0.00011859718260518415,0.0,0.0 +101616,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4306.0,,574.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0009799961167370537,0.00045505431971366937,0.0,0.001435050436450723,0.0008062285548107688,0.0003246252644267816,0.00026631677744056993,0.0,3.7797132698863485e-05,0.00038897136779596285,0.0003246252644267816,0.00026631677744056993,0.0,0.0,0.0004172571870148059,0.0,3.7797132698863485e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.040351398723516e-05,0.0,0.0,0.00011678474391872154,6.316422874075464e-05,0.0001471882579059567,4.635316487887142e-05,3.868513122465879e-05,3.173659173080289e-05,0.0,0.0,2.7878176674954814e-05,0.0,2.5253373122803468e-06,0.0,0.0,0.0,8.269212944886555e-05,3.329571277049623e-05,2.7315208948024937e-05,0.0,3.876723754424656e-06 +101617,35.0,Eastern Counties in South Carolina and Georgia,G1300510004001,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6789.0,,123.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013264560486310124,9.726351871742553e-05,0.0,0.0014238022744221773,0.0005353628883145369,0.0002292640084053602,0.0006198895176761092,0.0,3.920315295243172e-05,0.00043809936959711133,0.0002292640084053602,0.0006198895176761092,0.0,3.920315295243172e-05,9.726351871742553e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.499364633464679e-06,0.0,0.0,0.00015807474656114468,5.485443704844564e-05,0.0001645741111946094,5.220862529831546e-05,2.7321561134025013e-05,7.387269145004238e-05,0.0,4.671868678761852e-06,6.499364633464679e-06,0.0,0.0,0.0,0.0,0.0,6.188139539719468e-05,2.650011247350899e-05,7.165163888490256e-05,0.0,4.531404513868421e-06 +101618,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,27244.0,,2280.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0023590793464981154,0.0006712123793370574,0.0,0.0030302917258351724,0.0010521931519167397,0.0008364452196438893,0.0011416226646682457,0.0,0.0,0.0003809807725796823,0.0008364452196438893,0.0011416226646682457,0.0,0.0,0.0006712123793370574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.48459679652388e-05,0.0,0.0,0.0002811262231730836,0.00012453158050427835,0.0003259721911383224,4.540062879015805e-05,9.967731091314305e-05,0.00013604462625786123,0.0,0.0,4.484596796523881e-05,0.0,0.0,0.0,0.0,0.0,0.00011318570562261881,8.997743639330543e-05,0.00012280574780387335,0.0,0.0 +101619,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,23554.0,,0.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.0020826580625747065,3.068960629770278e-08,0.0,0.002082719441787302,0.000860260354130907,0.0004887319802909168,0.0007336657281528827,0.0,0.0,0.0008602296645246092,0.0004887319802909168,0.0007336657281528827,0.0,0.0,3.068960629770278e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9615896484615857e-09,0.0,0.0,0.0002481876072574941,9.151322488885136e-05,0.0002481905688471426,0.00010251243157330407,5.824154380324176e-05,8.7429974641149e-05,0.0,0.0,2.9615896484615857e-09,0.0,0.0,0.0,0.0,0.0,0.00010251429086635412,5.824052235192068e-05,8.742844127755202e-05,0.0,0.0 +101620,50.0,the Greater Atlanta and Macon Area,G1302170100901,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,473998.0,,2405.0,,7.614023970037612,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,2664908.3895131643,0.0,0.0,0.09931069982409621,0.0016643880452860177,0.0,0.10097508786938222,0.06550001667165414,0.025770988151919853,0.005220129422352635,0.000797806436310841,0.003686219354167476,0.06550001667165414,0.025770988151919853,0.005220129422352635,0.000797806436310841,0.0020218313088814586,0.0,0.0,0.0016643880452860177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011120241467280908,0.0,0.0,0.0118346686661717,0.003296306111405667,0.011945871080844508,0.007805513366744658,0.0030710800197564074,0.0006220729711652692,9.507308729272611e-05,0.00024093782122053506,0.0,0.0,0.00011120241467280908,0.0,0.0,0.0,0.0077489881065011005,0.0030488401504244153,0.0006175680994248132,9.438459561397558e-05,0.00043609866660934037 +101621,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,179796.0,,26819.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.047124970247746714,0.023222808041488196,0.0,0.0703477782892349,0.04120000885509405,0.005660803215095456,0.013211068664673038,0.0006346657512737996,0.009641322082721787,0.026119249193425224,0.005660803215095456,0.009690253638509892,0.0006346657512737996,0.005020088729065562,0.015080759661668827,0.0035208150261631455,0.004621233353656224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001551611290052046,0.0,0.0,0.005615795832299981,0.003285898417835233,0.007167407122352027,0.003112582777073595,0.0006745874837835773,0.0011547696626859007,7.563194761013905e-05,0.0005982347196030428,0.0010076075602831064,0.00023524012836948649,0.00030876360139945317,0.0,0.0,0.0,0.004197676800749172,0.0005767528452041708,0.0013460141875660228,6.466313416878493e-05,0.0009823093528337436 +101622,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,111425.0,,4237.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.010301560010974108,0.001273608560391084,0.0,0.011575168571365193,0.003808885894713544,0.001963452443166826,0.004285067142102695,0.0,0.0015177630913821261,0.003808885894713544,0.001963452443166826,0.003011458581711612,0.0,0.0015177630913821261,0.0,0.001273608560391084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.509605518752458e-05,0.0,0.0,0.001227615345621668,0.000530905571629415,0.001312711400809193,0.00045389696017798754,0.00023398051819940126,0.0003588692162813175,0.0,0.00018086865096296172,0.0,8.509605518752458e-05,0.0,0.0,0.0,0.0,0.00043195638210753837,0.0002226703128512424,0.00048595892629904445,0.0,0.0001721257795513674 +101623,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,7134.0,,689.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0017143522244683642,0.0005461975149743862,0.0,0.0022605497394427507,0.0013697118481966705,0.000294602596659413,0.0005295733931527855,0.0,6.674460850762109e-05,0.0008902589417299051,0.000294602596659413,0.0005295733931527855,0.0,0.0,0.0004794529064667651,0.0,6.674460850762109e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.649302602853566e-05,0.0,0.0,0.00020429259071384588,0.00010021079732194873,0.0002407856167423815,0.00010608864562156683,3.5106629106653747e-05,6.310717186128692e-05,0.0,0.0,3.203362687574519e-05,0.0,4.459399152790473e-06,0.0,0.0,0.0,0.00014589677297199548,3.138000756755315e-05,5.6408250548861e-05,0.0,7.109395313592194e-06 +101624,35.0,Eastern Counties in South Carolina and Georgia,G1301890950400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,57193.0,,1391.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004940044546528621,0.00040952210643654594,0.0,0.005349566652965167,0.0014843948774072883,0.0015550423511046,0.002310129424453279,0.0,0.0,0.0010748727709707425,0.0015550423511046,0.002310129424453279,0.0,0.0,0.00040952210643654594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7361422071605474e-05,0.0,0.0,0.00058869638736712,0.00019747371887436302,0.0006160578094387255,0.00012809069051703456,0.00018531165168165085,0.0002752940451684347,0.0,0.0,2.7361422071605474e-05,0.0,0.0,0.0,0.0,0.0,0.00017094338959413167,0.00017907917529636644,0.00026603524454822745,0.0,0.0 +101625,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,99495.0,,4930.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008864876916729235,0.0014511273441805783,0.0,0.010316004260909815,0.0029446063450519868,0.0028587675162373124,0.004512630399620515,0.0,0.0,0.0014934790008714082,0.0028587675162373124,0.004512630399620515,0.0,0.0,0.0014511273441805783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.695521914593748e-05,0.0,0.0,0.0010564096839358193,0.0003699087909665692,0.0011533649030817565,0.0001779749108865757,0.000340673617540593,0.0005377611555086508,0.0,0.0,9.695521914593749e-05,0.0,0.0,0.0,0.0,0.0,0.00032921715868652456,0.0003196200811773925,0.0005045276632178394,0.0,0.0 +101626,35.0,Eastern Counties in South Carolina and Georgia,G1300730030306,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,30308.0,,330.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0033863409987136316,0.00012260001281486993,0.0,0.003508941011528501,0.00225872311852225,0.0002549258799965327,0.0009341082518735999,0.0,6.118376113611872e-05,0.00225872311852225,0.0002549258799965327,0.0008115082390587298,0.0,6.118376113611872e-05,0.0,0.00012260001281486993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.191331605858807e-06,0.0,0.0,0.00040354443765154465,0.00013183770509595544,0.0004117357692574035,0.00026916815259327224,3.0379079048774073e-05,9.670604233446957e-05,0.0,7.291163675028765e-06,0.0,8.191331605858807e-06,0.0,0.0,0.0,0.0,0.0002650364020622654,2.9912757997111853e-05,0.00010960736541060577,0.0,7.17924378742052e-06 +101627,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,11347.0,,550.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0009298573731873344,0.00016009924263638985,0.0,0.001089956615823724,0.0007001114670401794,0.000349417887931897,4.042726085164768e-05,0.0,0.0,0.0005400122244037897,0.000349417887931897,4.042726085164768e-05,0.0,0.0,0.00016009924263638985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0697175476492699e-05,0.0,0.0,0.00011080893009853374,4.459294484068896e-05,0.00012150610557502642,6.435199478087906e-05,4.163931311992984e-05,4.817622197724844e-06,0.0,0.0,1.0697175476492699e-05,0.0,0.0,0.0,0.0,0.0,7.804697599287611e-05,3.895238229162893e-05,4.5067472905213935e-06,0.0,0.0 +101628,50.0,the Greater Atlanta and Macon Area,G1301170130503,ComStock 90.1-2004,gen5_led,25001_50000,Electricity,52745.0,,6557.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.004679888753942996,0.0019302227880940164,0.0,0.006610111542037013,0.0047738296388202634,0.0006946899281548003,0.0011416226646682457,0.0,0.0,0.0028436068507262467,0.0006946899281548003,0.0011416226646682457,0.0,0.0,0.0019302227880940164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012896594015032953,0.0,0.0,0.0005576951403538244,0.00030884326650639404,0.000686661080504154,0.00033886825202644283,8.278512959485587e-05,0.00013604541596567605,0.0,0.0,0.00012896594015032953,0.0,0.0,0.0,0.0,0.0,0.0004959073681417648,7.216467281203063e-05,0.00011859222759916623,0.0,0.0 +101629,35.0,Eastern Counties in South Carolina and Georgia,G1301030030304,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,9479.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0022760986693057404,0.0,0.0,0.00227609866930574,0.001048891109161897,0.000495828907067148,0.0006507392561808708,0.0,8.055668982208543e-05,0.001048891109161897,0.000495828907067148,0.0006507392561808708,0.0,8.055668982208543e-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.000271235633565852,6.972965973493492e-05,0.000271235633565852,0.00012499310700879852,5.908639619285184e-05,7.754658302674867e-05,0.0,9.599691391465837e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012499310700879855,5.9086396192851844e-05,7.754658302674868e-05,0.0,9.599691391465839e-06 +101630,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,75354.0,,2264.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006632484265028036,0.0006664248007546159,0.0,0.007298909065782653,0.001754125827157798,0.0021851613476090337,0.0033595912014095235,0.0,0.0,0.0010877010264031823,0.0021851613476090337,0.0033595912014095235,0.0,0.0,0.0006664248007546159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.452622955697549e-05,0.0,0.0,0.0007903793439475201,0.00031562393776779957,0.0008349055735044955,0.00012961906720120316,0.0002604011292494799,0.000400355490280337,0.0,0.0,4.452622955697549e-05,0.0,0.0,0.0,0.0,0.0,0.00020065045563972774,0.00024995562647549545,0.0003842959808751508,0.0,0.0 +101631,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,69149.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0058668706567192455,0.0,0.0,0.0058668706567192455,0.001484302808588395,0.0017495223862131425,0.0026330454619177077,0.0,0.0,0.001484302808588395,0.0017495223862131425,0.0026330454619177077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006991445999905679,0.00022937906831655585,0.0006991445999905679,0.00017688174055565688,0.0002084874885528033,0.00031377537088210766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017688174055565688,0.0002084874885528033,0.00031377537088210766,0.0,0.0 +101632,50.0,the Greater Atlanta and Macon Area,G1301350050524,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,109835.0,,4752.0,,4.088175128053588,Healthcare,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,153306.56730200956,0.0,0.0,0.0123559036303229,0.001766075658683989,0.0,0.014121979289006888,0.007212399110392859,0.0018283443756857262,0.004870289383913085,0.0,0.0002109464190152187,0.006096018273095381,0.0018283443756857262,0.004220555814102802,0.0,0.0002109464190152187,0.0011163808372974772,0.0006497335698102841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011799929222789502,0.0,0.0,0.0014724285025252623,0.00048046187356420687,0.0015904277947531571,0.0007264503937366738,0.00021788016900558055,0.0005029552562981,0.0,2.5138065912183547e-05,7.459032007498978e-05,4.341156110573838e-05,0.0,0.0,0.0,0.0,0.0008122657438643234,0.00020590950134976996,0.0005484956071771238,0.0,2.375694236194019e-05 +101633,50.0,the Greater Atlanta and Macon Area,G1301170130304,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,185882.0,,38899.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010447278589899134,0.00661514465473744,0.0,0.017062423244636575,0.006266406175966422,0.003192316112957667,0.0054807561310824615,0.0,0.002122944824630022,0.005391572413139596,0.003192316112957667,0.0015175239035808993,0.0,0.00034586616022097,0.0008748337628268252,0.003963232227501562,0.001777078664409052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004419858172294879,0.0,0.0,0.001244982088586356,0.0007101510327858884,0.0016869679058158441,0.0006425033108780074,0.000380422169040319,0.00018084040381449317,0.0,4.1216204853536295e-05,5.845134698997891e-05,0.00026480032204406084,0.00011873414819544812,0.0,0.0,0.0,0.000619561826130677,0.00031562543904607477,0.0005418843244112986,0.0,0.0002098963162277935 +101634,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,14596.0,,656.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035803892221746183,0.0005204756150414615,0.0,0.00410086483721608,0.0020964589051439644,0.00041386619699149434,0.0015142011060192402,0.0,7.642133613512006e-05,0.0016524046262376229,0.00041386619699149434,0.0015142011060192402,0.0,0.0,0.0004440542789063415,0.0,7.642133613512006e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.477337048585446e-05,0.0,0.0,0.0004266699648373054,0.0001758340975933888,0.00046144333532315983,0.00019691474306963555,4.93198545633143e-05,0.00018044522329039932,0.0,0.0,2.9667603073025995e-05,0.0,5.1057674128284646e-06,0.0,0.0,0.0,0.00023590072532463655,4.6569639795032404e-05,0.00017038308660420726,0.0,8.599190082056342e-06 +101635,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001300,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,75521.0,,4820.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005667066768884378,0.0008197100691718812,0.0,0.006486776838056258,0.003077919821075487,0.0016221862270434711,0.0007873876203031249,0.0,0.000999265439272756,0.0022582097519036055,0.0016221862270434711,0.0007873876203031249,0.0,0.000999265439272756,0.0008197100691718812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4768312916719014e-05,0.0,0.0,0.0006753325410725073,0.00022559566946087347,0.0007301008539892264,0.0002691061517752329,0.00019331255329778908,9.383134240590996e-05,0.0,0.00011908038070334121,5.4768312916719014e-05,0.0,0.0,0.0,0.0,0.0,0.000346426576091516,0.00018258059114129922,8.862219070513221e-05,0.0,0.00011246950046050455 +101636,50.0,the Greater Atlanta and Macon Area,G1301210007706,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,32369.0,,1909.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002884025062220322,0.0005618653120983425,0.0,0.003445890374318664,0.0010367869695552929,0.0009042385599555147,0.0015048955344141536,0.0,0.0,0.0004749216574569506,0.0009042385599555147,0.0015048955344141536,0.0,0.0,0.0005618653120983425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7540187437454646e-05,0.0,0.0,0.00034368254288654946,0.00014824582681350644,0.0003812227303240041,5.659530669301458e-05,0.00010775600105996648,0.00017933489234240148,0.0,0.0,3.7540187437454646e-05,0.0,0.0,0.0,0.0,0.0,0.00011470090930457087,0.00010003692957256244,0.00016648828667255536,0.0,0.0 +101637,50.0,the Greater Atlanta and Macon Area,G1301350050426,ComStock 90.1-2007,gen5_led,_1000,Electricity,5414.0,,322.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0003710135171321385,9.382404866321537e-05,0.0,0.00046483756579535394,0.0003764503914314961,6.199251645245147e-05,2.6333910712530833e-05,0.0,0.0,0.0002826263427682807,6.199251645245147e-05,2.6333910712530833e-05,0.0,0.0,9.382404866321537e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.269008452118062e-06,0.0,0.0,4.421168731928144e-05,2.1424747495007444e-05,5.0480695771399504e-05,3.3679062669333916e-05,7.3873150895336405e-06,3.1380706431286956e-06,0.0,0.0,6.269008452118063e-06,0.0,0.0,0.0,0.0,0.0,4.0881974868709186e-05,6.732298749962518e-06,2.859825093688145e-06,0.0,0.0 +101638,50.0,the Greater Atlanta and Macon Area,G1300590030200,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,40257.0,,5324.0,,7.56685751697572,Food Service,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,22700.572550927158,0.0,0.0,0.008479954212972804,0.0036620934400281155,0.0,0.01214204765300092,0.006329789481924784,0.0003007935584394727,0.0032086080632964067,0.0003630464932810232,0.0019398100560592318,0.006329789481924784,0.0003007935584394727,0.0012434808574686644,0.0003630464932810232,0.00024284382185885906,0.0,0.0019651272058277425,0.0016969662342003727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002446792418673029,0.0,0.0,0.0010105394282914641,0.0005828321163206678,0.001255218670158767,0.0007543085355913947,3.584497544976953e-05,0.00014818316269625756,4.326353498491498e-05,2.8939219569127246e-05,0.0,0.00013129807930052485,0.00011338116256677805,0.0,0.0,0.0,0.0006543599698295449,3.1095388620337326e-05,0.0003316989737951004,3.7530962612338474e-05,0.0002005333753014458 +101639,50.0,the Greater Atlanta and Macon Area,G1300670031208,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,151836.0,,17258.0,,9.525004485617233,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.03979643155281044,0.014943715193612832,0.0,0.054740146746423295,0.01987514933267116,0.002742153275845006,0.021637949255768202,0.0006628329937200906,0.009821971608795594,0.01987514933267116,0.002742153275845006,0.011484019472373212,0.0006628329937200906,0.005032186198577752,0.0,0.01015392978339499,0.004789785410217843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009984506892339036,0.0,0.0,0.004742463105947946,0.0024429426433620794,0.00574091379518185,0.002368482769876447,0.00032677705598533377,0.0013685281953846836,7.898851468507015e-05,0.0005996758115698461,0.0,0.0006784255494240554,0.00032002513980984825,0.0,0.0,0.0,0.0020844211381783806,0.0002875853739071371,0.0022692960973839755,6.95151055253243e-05,0.0010300866120440829 +101640,50.0,the Greater Atlanta and Macon Area,G1300630040609,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,6044.0,,411.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001171876527812247,0.00032603128468034983,0.0,0.0014978251054188574,0.0010767633930120434,0.0001728577841151525,0.00021892562418794677,0.0,2.9278304103714822e-05,0.0007800931195091476,0.0001728577841151525,0.00021892562418794677,0.0,0.0,0.0002966702735028957,0.0,2.9278304103714822e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.178266731474339e-05,0.0,0.0,0.0001396457694936347,6.705497282559588e-05,0.00016142843680837812,9.295919951047798e-05,2.059846554038369e-05,2.6088104442773032e-05,0.0,0.0,1.9821011582441537e-05,0.0,1.956129941506636e-06,0.0,0.0,0.0,0.0001160484162787562,1.8629786467670364e-05,2.3594758267905962e-05,0.0,3.1554757940456015e-06 +101641,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970500,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,31220.0,,894.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.003255412014138802,0.0002603624943804086,0.0,0.0035157745085192113,0.0019371674249409358,0.0012002127817827633,0.0003783639281960744,0.0,0.0,0.0016768049305605271,0.0012002127817827633,0.0003783639281960744,0.0,0.0,0.0002603624943804086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.739517301889687e-05,0.0,0.0,0.0003879425377612684,0.00010904120571608623,0.0004053377107801653,0.00019982231350962955,0.00014302754625100555,4.508905842461789e-05,0.0,0.0,1.739517301889687e-05,0.0,0.0,0.0,0.0,0.0,0.00022333827369212689,0.000138373920238082,4.3622015042535424e-05,0.0,0.0 +101642,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,5827.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010507106647841614,0.0,0.0,0.0010507106647841614,0.0007027620055628952,0.00016442166259374318,0.00014349677293769837,0.0,3.9947516616085484e-05,0.0007027620055628952,0.00016442166259374318,0.00014349677293769837,0.0,3.9947516616085484e-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.00012521121810375017,3.574410331671143e-05,0.00012521121810375017,8.374682936300104e-05,1.959382096900625e-05,1.7100241137437545e-05,0.0,4.76047058754025e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.374682936300104e-05,1.959382096900625e-05,1.7100241137437545e-05,0.0,4.76047058754025e-06 +101643,85.0,Rural Climate Zone 3A,G1302870970200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,27872.0,,278.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0013419401344381165,4.728687390728082e-05,0.0,0.0013892270083453973,0.0007821926244070493,0.0004161493128900593,7.89710297649152e-05,0.0,0.00011189631092195324,0.0007349057504997686,0.0004161493128900593,7.89710297649152e-05,0.0,0.00011189631092195324,4.728687390728082e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1594875005670665e-06,0.0,0.0,0.00015991570489059636,5.0213389660548845e-05,0.00016307519239116346,8.75769105516255e-05,4.959148996494975e-05,9.410783362612851e-06,0.0,1.3334408127851301e-05,3.159487500567067e-06,0.0,0.0,0.0,0.0,0.0,9.18181203977967e-05,4.8849920751126276e-05,9.270058669230816e-06,0.0,1.313501128457918e-05 +101644,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,6212.0,,1169.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0018479241485573458,0.0009274771249125933,0.0,0.0027754012734699392,0.0018059089550977773,0.000473497997157535,0.00035175318461327443,0.0,0.00014407572245387352,0.001022590259712797,0.000473497997157535,0.00035175318461327443,0.0,0.0,0.0007833186953849805,0.0,0.00014407572245387352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.196784471187452e-05,0.0,0.0,0.00022021754886021163,0.0001140669241907344,0.0002821853935720861,0.00012186231813577659,5.6426866008356604e-05,4.191850849494159e-05,0.0,0.0,5.2336138511339715e-05,0.0,9.62618026467678e-06,0.0,0.0,0.0,0.00018361349550455937,4.814230646959481e-05,3.576405753977061e-05,0.0,1.4648715785158803e-05 +101645,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,59327.0,,2077.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005285977788716327,0.0006112448886313463,0.0,0.0058972533669539706,0.0018158426254224784,0.001636707393462787,0.0024446726584624085,0.0,0.0,0.001204597736791132,0.001636707393462787,0.0024446726584624085,0.0,0.0,0.0006112448886313463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0840310143560514e-05,0.0,0.0,0.0006299213508446271,0.00020918215841580386,0.0006707616609881874,0.00014354994741060416,0.0001950437503593521,0.00029132765307467086,0.0,0.0,4.0840310143560514e-05,0.0,0.0,0.0,0.0,0.0,0.00020653642292982381,0.00018616133672374308,0.0002780604106568399,0.0,0.0 +101646,50.0,the Greater Atlanta and Macon Area,G1300670031113,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,111305.0,,8319.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010941243610012912,0.0024488464449188957,0.0,0.013390090054931808,0.006797594346909678,0.002400755831850396,0.004191770565778032,0.0,0.0,0.0043487479019907824,0.002400755831850396,0.004191770565778032,0.0,0.0,0.0024488464449188957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016361731829670924,0.0,0.0,0.00130384793452624,0.0005613080599520337,0.0014674652528229493,0.0005182323117819063,0.0002860936694431457,0.0004995256105252852,0.0,0.0,0.00016361731829670924,0.0,0.0,0.0,0.0,0.0,0.0007449713531390034,0.00026310695068513883,0.00045939031237654987,0.0,0.0 +101647,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,470383.0,,20279.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.022490130134350236,0.00344857302656169,0.0,0.025938703160911934,0.012092549747511512,0.008041516770257847,0.0034333426461018645,0.0,0.002371311727402122,0.011412980455003729,0.008041516770257847,0.002624749513540357,0.0,0.00041088339554830365,0.0006795692925077838,0.0008085931325615079,0.0019604283318538185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002304140640064876,0.0,0.0,0.002680105235041721,0.0009312682912293403,0.002910519299048209,0.0013600627689639667,0.0009582919736300811,0.0003127863142582904,0.0,4.8964178189382534e-05,4.5404960618406375e-05,5.4025600840180085e-05,0.00013098468718995447,0.0,0.0,0.0,0.0013568758313202973,0.0009023191949212479,0.00038524709464979285,0.0,0.0002660791676379466 +101648,81.0,the Columbus-Albany Area,G1300950011400,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,10035.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002919063460555116,0.0,0.0,0.002919063460555117,0.0019996089217952356,0.00045348288531262253,0.00038359540800290786,0.0,8.22935383706109e-05,0.0019996089217952356,0.00045348288531262253,0.00038359540800290786,0.0,8.22935383706109e-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.0003478614124870721,0.00010462171467011717,0.0003478614124870721,0.00023829107977843097,5.4041030335655245e-05,4.5712620590328115e-05,0.0,9.806825676450297e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002382910797784309,5.4041030335655225e-05,4.57126205903281e-05,0.0,9.806825676450294e-06 +101649,50.0,the Greater Atlanta and Macon Area,G1301210001202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,251523.0,,21680.0,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,863994.0691636442,0.0,0.0,0.039865988109886716,0.011352362959987922,0.0,0.05121835106987465,0.03676953177896465,0.00860197730648247,0.005601606224377764,0.0,0.00024529035394112663,0.02541716881897673,0.00860197730648247,0.005601606224377764,0.0,0.00024529035394112663,0.011352362959987922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000758497654698192,0.0,0.0,0.004750753896902328,0.0023563613146168616,0.00550925155160052,0.0030289156130318524,0.0010250812571657366,0.0006675327481165654,0.0,2.9230784438260598e-05,0.000758497654698192,0.0,0.0,0.0,0.0,0.0,0.003955078517239376,0.0009252632275865063,0.0006025312634724743,0.0,2.6384415640386214e-05 +101650,85.0,Rural Climate Zone 3A,G1300090970200,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,90865.0,,7627.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.018077018694484765,0.00524660275967601,0.0,0.023323693174131792,0.006840650835468982,0.0007400783809100905,0.0106373626610934,0.00037961380658562934,0.00472598749007369,0.006840650835468982,0.0007400783809100905,0.005390759901417389,0.00037961380658562934,0.00472598749007369,0.0,0.00524660275967601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035054944192588154,0.0,0.0,0.0021542053322879495,0.0009416201742645647,0.0025047547742138316,0.0008151878777767293,8.819379021574828e-05,0.0006424070208136934,4.5237884641143096e-05,0.0005631873055787123,0.0,0.00035054944192588154,0.0,0.0,0.0,0.0,0.000734624345765026,7.947775869101806e-05,0.0011423570320316324,4.0767106963035046e-05,0.0005075285307631199 +101651,50.0,the Greater Atlanta and Macon Area,G1301350050321,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,92901.0,,6273.0,,9.325022323477118,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.021891430187841482,0.005317632869376356,0.0,0.02720915144137589,0.014040884116926227,0.004157502410747019,0.008414436999305863,0.0,0.0005965046827128898,0.009319667546104709,0.004157502410747019,0.008414436999305863,0.0,0.0,0.00472121657082152,0.0,0.0005965046827128898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035529573065368105,0.0,0.0,0.0026087646519859305,0.000994261247958688,0.0029640603826396115,0.0011106089942009261,0.0004954425195904726,0.0010027342033753217,0.0,0.0,0.0003154463898334194,0.0,3.985524617604409e-05,0.0,0.0,0.0,0.001529559951102624,0.0004529023337230826,0.0009166364267403353,0.0,6.498092753453695e-05 +101652,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,15751.0,,1523.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013471509580439613,0.0004481603207653537,0.0,0.001795311278809315,0.0009039623534988355,0.00041513830438902555,0.0004762413105277518,0.0,0.0,0.0004558020327334818,0.00041513830438902555,0.0004762413105277518,0.0,0.0,0.0004481603207653537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9943122166530355e-05,0.0,0.0,0.00016053910447756727,8.123759674776779e-05,0.00019048222664409762,5.4317632123674804e-05,4.947176203453737e-05,5.675336757979973e-05,0.0,0.0,2.9943122166530355e-05,0.0,0.0,0.0,0.0,0.0,9.591025463344495e-05,4.404610471657138e-05,5.052912345618057e-05,0.0,0.0 +101653,50.0,the Greater Atlanta and Macon Area,G1302170100800,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,89572.0,,6471.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004610745026561892,0.0011005058029812571,0.0,0.00571125082954315,0.0032489468873333157,0.0010653642266467128,0.00077229908273466,0.0,0.0006246760935513004,0.002454272088486549,0.0010653642266467128,0.00046646807860016917,0.0,0.0006246760935513004,0.0007946747988467666,0.00030583100413449077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.352900453657777e-05,0.0,0.0,0.0005494543180399929,0.0001997293836085173,0.0006229833225765706,0.00029247125765909327,0.00012695756786465978,5.558817469587988e-05,0.0,7.444154361189099e-05,5.309526467849356e-05,2.043373985808423e-05,0.0,0.0,0.0,0.0,0.0003543951731686807,0.00011620994515551303,8.424239504524834e-05,0.0,6.81396772632855e-05 +101654,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,249795.0,,8654.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014450794198547057,0.001471708649671483,0.0,0.01592252057857996,0.00786389400955176,0.0031515540120529654,0.002721149488581184,0.0,0.00218590533803263,0.006605127000535111,0.0031515540120529654,0.00250820784792635,0.0,0.00218590533803263,0.0012587670090166484,0.00021294164065483413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.833148969844373e-05,0.0,0.0,0.0017220740151437837,0.0005140366428944706,0.0018204055048422275,0.0007871205843821205,0.00037556477498131035,0.00029889842040155555,0.0,0.00026049023537879723,8.410389869454865e-05,1.4227591003895055e-05,0.0,0.0,0.0,0.0,0.0008990709651675361,0.00036031394929184545,0.0003111062399991938,0.0,0.0002499123232895513 +101655,50.0,the Greater Atlanta and Macon Area,G1300890023506,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,29770.0,,2673.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0024679764487150866,0.0007786272215867679,0.0,0.003246603670301855,0.002197074315329778,0.0006736560619298975,0.00037590366664161655,0.0,0.0,0.00141844709374301,0.0006736560619298975,0.00037590366664161655,0.0,0.0,0.0007786272215867679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.202378430463093e-05,0.0,0.0,0.0002941043814486636,0.00012841313844609066,0.00034612816575329457,0.00016903382742575863,8.02783995390985e-05,4.4795774051845583e-05,0.0,0.0,5.202378430463093e-05,0.0,0.0,0.0,0.0,0.0,0.00023423533637478657,7.182008053440781e-05,4.0075987046026935e-05,0.0,0.0 +101656,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,6050.0,,401.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014527497502309348,0.00031833952682259423,0.0,0.001771089277053529,0.0010918987875063364,0.00026052728227881836,0.00038698639802621943,0.0,3.159410216841543e-05,0.0008052360699258971,0.00026052728227881836,0.00038698639802621943,0.0,0.0,0.00028666271758043954,0.0,3.159410216841543e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1267983684179537e-05,0.0,0.0,0.0001731243956212104,7.754006314387121e-05,0.00019439237930538996,9.596009768107626e-05,3.104707351020853e-05,4.6117224429925625e-05,0.0,0.0,1.9151683930726496e-05,0.0,2.1107741666294055e-06,0.0,0.0,0.0,0.0001198453437746221,2.8595124442513233e-05,4.2475107068736326e-05,0.0,3.4677262022349375e-06 +101657,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,41752.0,,7582.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,71543.06474093779,0.0,0.0,0.0047182405690314325,0.0028179791188247204,0.0,0.007536219687856153,0.004697432665465825,0.0005778939921368427,0.0020082145588357346,0.0,0.0002526784714177518,0.002417940391801738,0.0005778939921368427,0.001722406185092852,0.0,0.0,0.002279492273664086,0.0002858083737428826,0.0002526784714177518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018828076797326626,0.0,0.0,0.0005622644712785409,0.0003818635036379242,0.0007505452392518072,0.0002881417248842225,6.886661567800667e-05,0.00020525613071631179,0.0,0.0,0.00015230224844731943,1.9096032238856128e-05,1.688248728709067e-05,0.0,0.0,0.0,0.00046782549737138144,5.755346878879462e-05,0.00020000158421059797,0.0,2.5164688881033226e-05 +101658,50.0,the Greater Atlanta and Macon Area,G1301390001403,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7805.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0018741422909327062,0.0,0.0,0.0018741422909327062,0.0009280560744287685,0.000279798030460077,0.0006222053157408098,0.0,4.4082870303050854e-05,0.0009280560744287685,0.000279798030460077,0.0006222053157408098,0.0,4.4082870303050854e-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.00022333593754302424,7.197846158772308e-05,0.00022333593754302424,0.00011059366968977381,3.334269535340031e-05,7.414634854969866e-05,0.0,5.253223950151453e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011059366968977381,3.334269535340031e-05,7.414634854969866e-05,0.0,5.253223950151453e-06 +101659,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,8661.0,,1160.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002079586662101146,0.0009205297307184915,0.0,0.003000033685745898,0.0017567809532966288,0.0005437163027622071,0.0006266714977227324,0.0,7.294763903806914e-05,0.0008362512225781373,0.0005437163027622071,0.0006266714977227324,0.0,7.294763903806914e-05,0.0009205297307184915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.15027562794281e-05,0.0,0.0,0.0002478160397839648,0.00013306822283309417,0.00030931879606339293,9.965271946610197e-05,6.479250101574072e-05,7.46779404010142e-05,0.0,8.692878901107894e-06,6.15027562794281e-05,0.0,0.0,0.0,0.0,0.0,0.0001811330892725313,5.605992791665276e-05,6.461303222155125e-05,0.0,7.5212741743972805e-06 +101660,50.0,the Greater Atlanta and Macon Area,G1301210007704,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,10599.0,,510.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0025448966589584894,0.00040476841888017047,0.0,0.0029496650778386597,0.0012928769766928534,0.000683325843234158,0.0008894318709925122,0.0,8.403038691913633e-05,0.000888108557812683,0.000683325843234158,0.0008894318709925122,0.0,8.403038691913633e-05,0.00040476841888017047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.704374894347219e-05,0.0,0.0,0.0003032685038879366,0.00011896496955461644,0.0003303122528314088,0.00010583351299150676,8.143010656880509e-05,0.00010599120867113653,0.0,1.0013675656488255e-05,2.7043748943472186e-05,0.0,0.0,0.0,0.0,0.0,0.00014478020234019127,7.65208566872224e-05,9.960122159457634e-05,0.0,9.409972209418777e-06 +101661,50.0,the Greater Atlanta and Macon Area,G1301390000701,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,61208.0,,6851.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0054536044183143804,0.0020166140298220497,0.0,0.0074701877585301325,0.004035192194447152,0.0013939832972542558,0.0020410429564350213,0.0,0.0,0.0020185781646251027,0.0013939832972542558,0.0020410429564350213,0.0,0.0,0.0020166140298220497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013473755782784138,0.0,0.0,0.0006498945313705397,0.0003373480829129171,0.0007846320891983811,0.00024054970065821358,0.00016611804821506035,0.00024322678249726572,0.0,0.0,0.00013473755782784138,0.0,0.0,0.0,0.0,0.0,0.00042383690801220945,0.0001464172069280717,0.0002143811977446686,0.0,0.0 +101662,85.0,Rural Climate Zone 3A,G1302850960800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10908.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028282510935893567,0.0,0.0,0.0028282510935893567,0.001327448533515884,0.0005134455137736205,0.0009144921143355222,0.0,7.286493196432983e-05,0.001327448533515884,0.0005134455137736205,0.0009144921143355222,0.0,7.286493196432983e-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.0003370391597823488,9.61361127517343e-05,0.0003370391597823488,0.0001581903881888729,6.118666229760269e-05,0.0001089788861186522,0.0,8.683223177220997e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001581903881888729,6.118666229760269e-05,0.0001089788861186522,0.0,8.683223177220997e-06 +101663,50.0,the Greater Atlanta and Macon Area,G1301350050545,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,3412.0,,483.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0003008808760303696,0.0001407816333939797,0.0,0.00044169288302378705,0.0003244507891940649,0.0001008707237327738,1.634099649751048e-05,0.0,0.0,0.00018366915580008528,0.0001008707237327738,1.634099649751048e-05,0.0,0.0,0.0001407816333939797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.407153224021651e-06,0.0,0.0,3.585633359667351e-05,2.2708087119127047e-05,4.526348682069517e-05,2.1888072810325526e-05,1.2020884703669765e-05,1.9473760826782096e-06,0.0,0.0,9.407153224021651e-06,0.0,0.0,0.0,0.0,0.0,3.324883552597069e-05,1.0336957759010358e-05,1.6745809317517536e-06,0.0,0.0 +101664,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,86199.0,,8829.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009279401428992308,0.0025990106885335554,0.0,0.011878412117525862,0.004735835906223707,0.0028990015900936003,0.004243543931602257,0.0,0.0,0.0021368252176901517,0.0028990015900936003,0.004243543931602257,0.0,0.0,0.0025990106885335554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017365168038607559,0.0,0.0,0.001105807605889166,0.0004609343714563229,0.0012794592862752415,0.00025464116368485875,0.00034546818912202347,0.000505694595863623,0.0,0.0,0.00017365168038607559,0.0,0.0,0.0,0.0,0.0,0.0005101110458655925,0.00031226012944098145,0.0004570848052994096,0.0,0.0 +101665,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,12553.0,,498.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002832221033128843,0.000394678155883975,0.0,0.003226899189012818,0.0017570290745178468,0.0007217019254491966,0.0006478445085999951,0.0,0.00010032368044577989,0.0014627573061533911,0.0007217019254491966,0.0006478445085999951,0.0,0.0,0.0002942717683644558,0.0,0.00010032368044577989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6368550266426167e-05,0.0,0.0,0.0003375149859031341,0.00012752474769241943,0.0003638835361695603,0.00017431637777954768,8.600501597333104e-05,7.720344832902843e-05,0.0,0.0,1.9660373396467796e-05,0.0,6.702651188846383e-06,0.0,0.0,0.0,0.00019813260822191254,8.138322064321262e-05,7.305463755423843e-05,0.0,1.1313069750196755e-05 +101666,81.0,the Columbus-Albany Area,G1302150010203,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,14981.0,,1063.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0012994593098573314,0.00031297260502397294,0.0,0.001612431914881304,0.0006208200457962296,0.0004525489344659252,0.0005390322450128517,0.0,0.0,0.0003078474407722567,0.0004525489344659252,0.0005390322450128517,0.0,0.0,0.00031297260502397294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0911126303032584e-05,0.0,0.0,0.00015485261231422078,7.05581457565394e-05,0.00017576373861725336,3.668524288233784e-05,5.392887962745026e-05,6.423483261742415e-05,0.0,0.0,2.0911126303032584e-05,0.0,0.0,0.0,0.0,0.0,6.767271923274492e-05,4.9330264363342554e-05,5.8757409689254635e-05,0.0,0.0 +101667,50.0,the Greater Atlanta and Macon Area,G1302970110504,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,28340.0,,2247.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0014648115390790825,0.0003821779404092381,0.0,0.0018469717491269005,0.0005772473767526592,0.0004829218539979781,0.0005666978117077277,0.0,0.00022010470666853553,0.0005772473767526592,0.0004829218539979781,0.0001845198712984895,0.0,0.00022010470666853553,0.0,0.0003821779404092381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.553445148033253e-05,0.0,0.0,0.00017455788747849072,8.28361970801068e-05,0.00020009233895882324,6.878911037374386e-05,5.7548576319982214e-05,2.198876652208595e-05,0.0,2.6229321380337753e-05,0.0,2.553445148033253e-05,0.0,0.0,0.0,0.0,6.253629912145924e-05,5.231751018740009e-05,6.139340825383421e-05,0.0,2.3845121396129714e-05 +101668,50.0,the Greater Atlanta and Macon Area,G1301210007400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,4595.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011765081239416481,0.0,0.0,0.0011765081239416481,0.0006858897625200763,0.00025672275688681025,0.00019411350206615454,0.0,3.969939539486756e-05,0.0006858897625200763,0.00025672275688681025,0.00019411350206615454,0.0,3.969939539486756e-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.00014019823962064517,3.539423119763557e-05,0.00014019823962064517,8.173384894017646e-05,3.059229074042057e-05,2.3131477566935273e-05,0.0,4.730766609343386e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.173384894017646e-05,3.059229074042057e-05,2.3131477566935273e-05,0.0,4.730766609343386e-06 +101669,50.0,the Greater Atlanta and Macon Area,G1301350050545,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,111016.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.009789502219585728,0.0,0.0,0.009789502219585728,0.00482925044260535,0.003965091165001874,0.0009951909855779385,0.0,0.0,0.00482925044260535,0.003965091165001874,0.0009951909855779385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011665975539041369,0.0002858384906945084,0.0011665975539041369,0.00057549317903646,0.00047251285615356234,0.00011859513828189323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00057549317903646,0.00047251285615356234,0.00011859513828189323,0.0,0.0 +101670,85.0,Rural Climate Zone 3A,G1300810010500,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,199023.0,,22277.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.010296056337347504,0.0037884640549841024,0.0,0.014084520392331606,0.0064003767868563415,0.002065427532183371,0.0029070523280704374,0.0,0.0027116992059442956,0.006047028414116109,0.002065427532183371,0.0017849154841567156,0.0,0.0003987026372527274,0.0003533483727402323,0.0011221368439137218,0.002312996568691568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025312315490636915,0.0,0.0,0.001226961516926625,0.0005933227346244646,0.0014800846718329942,0.0007206129136035523,0.0002461330838679726,0.0002127049948321227,0.0,4.7512637516538626e-05,2.3608685100594048e-05,7.497466362243447e-05,0.00015454099082306668,0.0,0.0,0.0,0.0006725894323912841,0.00021704733608329756,0.000305490245399914,0.0,0.00028496138438090164 +101671,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Electricity,1803.0,,209.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00040849023719843934,0.00016557956162609343,0.0,0.0005740697988245327,0.0003414975074696003,0.0001414290960942157,6.566941654901009e-05,0.0,2.5556485785445995e-05,0.00017591794584350689,0.0001414290960942157,6.566941654901009e-05,0.0,2.5556485785445995e-05,0.00016557956162609343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1062594494230269e-05,0.0,0.0,4.868233990386691e-05,2.385374524747175e-05,5.974493439809718e-05,2.0965243364147583e-05,1.685499113901851e-05,7.826235651684617e-06,0.0,3.0457264689805383e-06,1.1062594494230269e-05,0.0,0.0,0.0,0.0,0.0,3.554053221866349e-05,1.4718893217223195e-05,6.8343866751317045e-06,0.0,2.6597298269719107e-06 +101672,35.0,Eastern Counties in South Carolina and Georgia,G1300510010809,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,152079.0,,1890.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.01710816531542622,0.0007025864198354051,0.0,0.017810712986837854,0.010630785055566002,0.0022398526361452455,0.004703748658540674,0.0,0.00023636538500970504,0.010630785055566002,0.0022398526361452455,0.004001162238705268,0.0,0.00023636538500970504,0.0,0.0007025864198354051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.694179489405834e-05,0.0,0.0,0.002038746215024493,0.0006835901578468788,0.0020856880099185517,0.0012668496238595164,0.0002669188074793855,0.00047681058836296765,0.0,2.816719532262351e-05,0.0,4.694179489405834e-05,0.0,0.0,0.0,0.0,0.0012448968743026094,0.0002622934741941518,0.0005508231021430063,0.0,2.76790968356427e-05 +101673,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,60041.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006384044624224429,0.0,0.0,0.006384044624224429,0.0040631371439869375,0.0019384127425178836,0.00038252511131904647,0.0,0.0,0.0040631371439869375,0.0019384127425178836,0.00038252511131904647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007607750181524778,0.00015146776629616616,0.0007607750181524778,0.00048419668351679134,0.00023099713053073963,4.558482367169863e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00048419668351679134,0.00023099713053073963,4.558482367169863e-05,0.0,0.0 +101674,50.0,the Greater Atlanta and Macon Area,G1301210001700,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,67732.0,,2017.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0058610396315226816,0.0005936597442227626,0.0,0.0064546686861391474,0.0015556254536242561,0.0019430817331327543,0.0029559614993821368,0.0,0.0,0.0009619657094014938,0.0019430817331327543,0.0029559614993821368,0.0,0.0,0.0005936597442227626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.966482937464296e-05,0.0,0.0,0.0006984470009481279,0.0002565934191027438,0.0007381118303227709,0.00011463530482421574,0.00023155270983060764,0.0003522553290814743,0.0,0.0,3.966482937464296e-05,0.0,0.0,0.0,0.0,0.0,0.00017789070310254767,0.00022219755718666192,0.00033802357003356133,0.0,0.0 +101675,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,46020.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.00405809512648027,0.0,0.0,0.00405809512648027,0.0027155820313316398,0.0009336844467164911,0.0004088590220315773,0.0,0.0,0.0027155820313316398,0.0009336844467164911,0.0004088590220315773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00048359712979911514,0.00012377421938709613,0.00048359712979911514,0.0003236118511655142,0.00011126577975558582,4.872311845445481e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003236118511655142,0.00011126577975558582,4.872311845445481e-05,0.0,0.0 +101676,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4757.0,,44.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0008078826962855548,3.45715568230305e-05,0.0,0.0008424542531085855,0.00038582849899386907,0.00026044457520507907,0.0001615269150128674,0.0,3.45715568230305e-05,0.00038582849899386907,0.00026044457520507907,0.0001615269150128674,0.0,0.0,0.0,0.0,3.45715568230305e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3103479975919795e-06,0.0,0.0,9.627301513147218e-05,3.142682547272769e-05,9.858336312906416e-05,4.59780523739064e-05,3.1036417347359334e-05,1.9248689450426413e-05,0.0,0.0,0.0,0.0,2.3103479975919795e-06,0.0,0.0,0.0,4.5149360789032416e-05,3.0477028322543e-05,1.8901758118109394e-05,0.0,4.045537579810407e-06 +101677,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,68992.0,,3474.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00608383196738169,0.0010121698276636417,0.0,0.007096001795045331,0.004903756882026156,0.0018650301262762752,0.0003271844131434627,0.0,0.0,0.0038915870543625147,0.0018650301262762752,0.0003271844131434627,0.0,0.0,0.0010121698276636417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.762726566186556e-05,0.0,0.0,0.0007249994583318627,0.00020833071654047355,0.0007926267239937283,0.0004637535227124892,0.00022225233020445017,3.898998584698366e-05,0.0,0.0,6.762726566186556e-05,0.0,0.0,0.0,0.0,0.0,0.0005477519404484961,0.0002083247386115592,3.654665218839008e-05,0.0,0.0 +101678,50.0,the Greater Atlanta and Macon Area,G1301350050436,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,84139.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.00749667288876505,0.0,0.0,0.00749667288876505,0.0023019966787843882,0.002104140786983098,0.003090504733391266,0.0,0.0,0.0023019966787843882,0.002104140786983098,0.003090504733391266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008933623340463615,0.0003170590291675349,0.0008933623340463615,0.0002743239776418429,0.0002507459178909202,0.00036828878129942894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002743239776418429,0.0002507459178909202,0.00036828878129942894,0.0,0.0 +101679,81.0,the Columbus-Albany Area,G1302150010106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,27556.0,,1089.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002448017825548858,0.00032058362738580324,0.0,0.0027686014529346614,0.0008068297495666063,0.0008739786081459799,0.0010877930952220751,0.0,0.0,0.0004862461221808028,0.0008739786081459799,0.0010877930952220751,0.0,0.0,0.00032058362738580324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.141901320094225e-05,0.0,0.0,0.00029172651364823513,0.00010953129170933677,0.0003131455268491774,5.794520142718965e-05,0.00010415068456472527,0.0001296306276563202,0.0,0.0,2.141901320094225e-05,0.0,0.0,0.0,0.0,0.0,9.125731214863571e-05,9.885225315210528e-05,0.00012303596154843638,0.0,0.0 +101680,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970301,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,66297.0,,,11591.0,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005441399965673802,0.0,0.0010925079981764954,0.006533877590250859,0.004027448164647579,0.0016946038598310497,0.0008118559393716684,0.0,0.0,0.0029349401664710835,0.0016946038598310497,0.0008118559393716684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010925079981764954,0.0,0.0,0.0,0.0,8.810841671103282e-05,0.0006484398656109076,0.00026384384640546,0.0007365482823219404,0.0003497504721446996,0.00020194227699939018,9.674711646681784e-05,0.0,0.0,0.0,0.0,0.0,8.810841671103282e-05,0.0,0.0,0.00045400453051614863,0.000191028611254832,9.151856449366226e-05,0.0,0.0 +101681,85.0,Rural Climate Zone 3A,G1301470960500,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,139368.0,,7052.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006714204183991276,0.0011992284553681114,0.0,0.007913432639359388,0.0028480811459873417,0.002170799070102745,0.002166029602880751,0.0,0.0007285050900271295,0.0023755315534200946,0.002170799070102745,0.0014393507400798865,0.0,0.0007285050900271295,0.00047254959256724723,0.0007266788628008641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.012544440059591e-05,0.0,0.0,0.000800118193371488,0.00029314812265430817,0.000880243637772084,0.00028308731202296726,0.0002586897542205236,0.00017152452952302552,0.0,8.681448471350176e-05,3.157300507362364e-05,4.855243932697227e-05,0.0,0.0,0.0,0.0,0.0003168037718732552,0.0002414669028501624,0.00024093637540789398,0.0,8.103461541979737e-05 +101682,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970600,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,21095.0,,304.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0023684586546447884,0.00011287415844807717,0.0,0.002481332813092866,0.0012934998823596676,0.00034141236185582143,0.0007824856696534398,0.0,6.393489922393659e-05,0.0012934998823596676,0.00034141236185582143,0.0006696115112053626,0.0,6.393489922393659e-05,0.0,0.00011287415844807717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.541088930491314e-06,0.0,0.0,0.0002822442750536212,9.204819185476504e-05,0.0002897853639841125,0.00015414368153000428,4.068539865678713e-05,7.979620635432282e-05,0.0,7.618988512506953e-06,0.0,7.541088930491314e-06,0.0,0.0,0.0,0.0,0.00015106290145568406,3.9872243266611716e-05,9.13835070396047e-05,0.0,7.466712222211931e-06 +101683,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,28419.0,,2357.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026518581905782,0.0006936771711469759,0.0,0.003345535361725176,0.0014534597542592038,0.0008042518226375991,0.0010877930952220751,0.0,0.0,0.0007597825831122279,0.0008042518226375991,0.0010877930952220751,0.0,0.0,0.0006936771711469759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.634824324775031e-05,0.0,0.0,0.0003160156190784102,0.00013135256367262848,0.0003623638623261605,9.054147926169961e-05,9.584077253027828e-05,0.00012962971007920757,0.0,0.0,4.634824324775031e-05,0.0,0.0,0.0,0.0,0.0,0.00015742810442673244,8.711066099254542e-05,0.00011782177283373168,0.0,0.0 +101684,50.0,the Greater Atlanta and Macon Area,G1301350050606,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,41547.0,,16542.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.008650862903903007,0.011379090601336848,0.0,0.020029953505239853,0.005555500674840248,0.0006561660148218255,0.009328473190058499,0.0003665607718607881,0.0041233245736295105,0.0036093792613316415,0.0006561660148218255,0.0035788982736500077,0.0003665607718607881,0.00043985858223874263,0.001946121413508606,0.005749574916408491,0.0036834659913907676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007602836667380977,0.0,0.0,0.0010309087852160125,0.0010216759141571986,0.0017911924519541105,0.0004301236571445949,7.819420059642926e-05,0.00042649128909852624,4.3682430784604866e-05,5.2417207591857105e-05,0.00013002834549942193,0.0003841526579565933,0.00024610745518720506,0.0,0.0,0.0,0.0004968044919823022,5.867809991022686e-05,0.0008342051698681154,3.2779950665774345e-05,0.0003687311531357266 +101685,35.0,Eastern Counties in South Carolina and Georgia,G1300510000100,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,55801.0,,2407.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0048357612643290275,0.0007084695613824687,0.0,0.005544230825711496,0.0016630083860599185,0.001517263445752128,0.00236395899389945,0.0,0.0,0.0009545388246774496,0.001517263445752128,0.00236395899389945,0.0,0.0,0.0007084695613824687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7336226773698644e-05,0.0,0.0,0.0005762677583157046,0.00021713579209772755,0.0006236039850894033,0.0001137504352788815,0.00018080917499124275,0.00028170814804558033,0.0,0.0,4.7336226773698644e-05,0.0,0.0,0.0,0.0,0.0,0.00018705185433021278,0.00017065875518992008,0.00026589337556927046,0.0,0.0 +101686,35.0,Eastern Counties in South Carolina and Georgia,G1301910110100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,1875.0,,27.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.00045017460236305035,2.133842502474131e-05,0.0,0.00047159573446153093,0.00023100085695388565,0.0001246395601251363,9.006800330210579e-05,0.0,2.5804607006663916e-05,0.0002096624319291443,0.0001246395601251363,9.006800330210579e-05,0.0,2.5804607006663916e-05,2.133842502474131e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4271886169860898e-06,0.0,0.0,5.365095785764075e-05,1.769629830681967e-05,5.5078146474626844e-05,2.4987172178783627e-05,1.4854307090109244e-05,1.0734134320589891e-05,0.0,3.075344268157985e-06,1.4271886169860898e-06,0.0,0.0,0.0,0.0,0.0,2.6978825517999436e-05,1.455678125872723e-05,1.051913390229194e-05,0.0,3.013746352171795e-06 +101687,35.0,Eastern Counties in South Carolina and Georgia,G1300510004207,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,467000.0,,,,7.614023970037612,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,2664908.3895131643,0.1665168170801759,0.0,0.07484384193998035,0.0,0.0,0.24136065902015633,0.20950931053490907,0.01737637573359786,0.008665094419524441,0.0008319414380634443,0.004978009061084171,0.04299249345473318,0.01737637573359786,0.008665094419524441,0.0008319414380634443,0.004978009061084171,0.0,0.0,0.0,0.0,0.0,0.0,0.1665168170801759,0.0,0.0,0.0,0.0,0.0,0.0,0.008918994406423013,0.002889756885445759,0.008918994406423013,0.00512333144186323,0.002070708744430131,0.0010326023712257072,9.914083564162534e-05,0.0005932196132654124,0.0,0.0,0.0,0.0,0.0,0.0,0.007741992321119515,0.0006421087786262687,0.0003202010177326027,3.074271118865199e-05,0.00018395224454216042 +101688,85.0,Rural Climate Zone 3A,G1301750950800,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,131434.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014245612993098294,0.0,0.0,0.014245612993098298,0.008761811482609393,0.00400324040589569,0.0014805611045932128,0.0,0.0,0.008761811482609393,0.00400324040589569,0.0014805611045932128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016976219959278966,0.0004575126048881599,0.0016976219959278966,0.0010441280346628527,0.0004770583737834491,0.00017643558748159507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010441280346628525,0.000477058373783449,0.00017643558748159502,0.0,0.0 +101689,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,46975.0,,5822.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0024180666904668013,0.0009900633816957484,0.0,0.0034081300721625503,0.0014001843717029898,0.000836748946496552,0.0005205456809313303,0.0,0.0006506510730316777,0.0009524927458466567,0.000836748946496552,0.0005205456809313303,0.0,0.00010827931719226246,0.0004476916258563332,0.0,0.0005423717558394153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.615032541767238e-05,0.0,0.0,0.0002881558466778682,0.000137331526524224,0.00035430617209554054,0.00011350652763881623,9.971358609963803e-05,6.20323178077103e-05,0.0,1.2903415131703627e-05,2.9912172578729e-05,0.0,3.6238152838943386e-05,0.0,0.0,0.0,0.00014556192236269338,8.698767651495602e-05,5.411546616664746e-05,0.0,6.764110705124363e-05 +101690,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5387.0,,38.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009344245191066953,2.9939960693629282e-05,0.0,0.0009643644798003246,0.0005581073335928464,0.00023298582672362901,0.00014333135879021977,0.0,2.9939960693629282e-05,0.0005581073335928464,0.00023298582672362901,0.00014333135879021977,0.0,0.0,0.0,0.0,2.9939960693629282e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9977620045026658e-06,0.0,0.0,0.00011135388608609864,2.9385042656369848e-05,0.0001133516480906013,6.650876467595977e-05,2.7764550991727725e-05,1.7080570418411127e-05,0.0,0.0,0.0,0.0,1.9977620045026658e-06,0.0,0.0,0.0,6.560007901504097e-05,2.73852137796933e-05,1.68472046433115e-05,0.0,3.519150652555546e-06 +101691,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13615.0,,1889.0,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0033250724855413763,0.0014987348832299894,0.0,0.004823807368771366,0.00332697474823738,0.0006515663269182639,0.0007579276237470132,0.0,8.742137694244795e-05,0.0018282398650073905,0.0006515663269182639,0.0007579276237470132,0.0,8.742137694244795e-05,0.0014987348832299894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001001356004984376,0.0,0.0,0.0003962436484002245,0.00022718380018737924,0.0004963792488986621,0.0002178684637436749,7.764613243034025e-05,9.032104056761081e-05,0.0,1.041786773024494e-05,0.00010013560049843759,0.0,0.0,0.0,0.0,0.0,0.0003423522334921744,6.704745426966017e-05,7.799224053403984e-05,0.0,8.995831323055446e-06 +101692,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,130268.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.011209624217086324,0.0,0.0,0.011209624217086323,0.003565180873997835,0.0026474081976650327,0.0049970044558171585,0.0,0.0,0.003565180873997835,0.0026474081976650327,0.0049970044558171585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001335830837886761,0.00039198181417168164,0.001335830837886761,0.00042485621836199926,0.00031548689255119264,0.0005954840697481614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042485621836199937,0.0003154868925511927,0.0005954840697481615,0.0,0.0 +101693,81.0,the Columbus-Albany Area,G1302150000900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,151313.0,,1578.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.016937013527624934,0.000586496142214245,0.0,0.017523509669839173,0.011142186752509949,0.002121824937335482,0.004079201564182243,0.0,0.0001803351642352733,0.011142186752509949,0.002121824937335482,0.0034927054219679988,0.0,0.0001803351642352733,0.0,0.000586496142214245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.918509403651058e-05,0.0,0.0,0.002018352192652114,0.000635575206269971,0.0020575372866886246,0.001327793534922056,0.0002528539053068554,0.0004162191661014506,0.0,2.1490203898867855e-05,0.0,3.918509403651058e-05,0.0,0.0,0.0,0.0,0.0013082690129133053,0.0002491358184888984,0.00047896280347705907,0.0,2.117420148737802e-05 +101694,50.0,the Greater Atlanta and Macon Area,G1301210001002,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12508.0,,325.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.002780198283746819,0.00025821148421411775,0.0,0.0030384924750346755,0.0012980048152646906,0.0006720776812056122,0.0009842968845714976,0.0,8.403038691913633e-05,0.0010397933310505728,0.0006720776812056122,0.0009842968845714976,0.0,8.403038691913633e-05,0.00025821148421411775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7254315992930445e-05,0.0,0.0,0.00033131389370553803,0.00010906251581036799,0.0003485682096984684,0.0001239112976845463,8.009093262683928e-05,0.00011729783278267463,0.0,1.0013830611477812e-05,1.7254315992930445e-05,0.0,0.0,0.0,0.0,0.0,0.00014890384569132134,7.709906015596262e-05,0.00011291606139750321,0.0,9.639754506332514e-06 +101695,46.0,the Tallahassee-Valdosta Area,G1301850010202,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Propane,48782.0,,16670.0,16836.0,7.56685751697572,Food Service,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,56751.431377317895,0.0,0.0,0.010160281413897555,0.011467162725744018,0.0037468664457685676,0.025374310585410148,0.006520206004971232,0.0010974589964808804,0.013720675935025534,0.00028910320316392814,0.0037468664457685676,0.006520206004971232,0.0010974589964808804,0.002253513209281515,0.00028910320316392814,0.0,0.0,0.011467162725744018,0.0,0.0,0.0,0.0,0.0,0.0,0.0037468664457685676,0.0,0.000766167582509035,0.0,0.0003021792148073968,0.0012107822470278425,0.0014381783413077065,0.002279129044344274,0.0007770010845354229,0.00013078219152104278,0.00026854706834287574,3.445190262850107e-05,0.0,0.0,0.000766167582509035,0.0,0.0,0.0003021792148073968,0.0,0.000585647079199164,9.85741332926963e-05,0.0012323956911575243,2.5967346183692248e-05,0.00033654479451119667 +101696,50.0,the Greater Atlanta and Macon Area,G1300670031205,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,13105.0,,3746.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0011676781404149955,0.0011027082438827586,0.0,0.0022703863842977543,0.001369370233003498,0.0003870880042329252,0.0005139281470613308,0.0,0.0,0.0002666619891207395,0.0003870880042329252,0.0005139281470613308,0.0,0.0,0.0011027082438827586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.367644273384042e-05,0.0,0.0,0.00013915058809169375,0.0001154433931183133,0.00021282703082553417,3.177774022100312e-05,4.612874178933277e-05,6.124410608135785e-05,0.0,0.0,7.367644273384042e-05,0.0,0.0,0.0,0.0,0.0,0.00012836537551785414,3.628580191408998e-05,4.8175853393590006e-05,0.0,0.0 +101697,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,16728.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,56663.68529324113,0.0,0.0,0.0014904407298479358,0.0,0.0,0.0014904407298479353,0.0004913712864325193,0.0004851719859603833,0.0005139281470613308,0.0,0.0,0.0004913712864325193,0.0004851719859603833,0.0005139281470613308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017761469726509352,6.358263127595587e-05,0.00017761469726509352,5.8556345473312304e-05,5.781757951330924e-05,6.124442953569969e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8556345473312324e-05,5.781757951330925e-05,6.12444295356997e-05,0.0,0.0 +101698,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,73724.0,,6462.0,,7.56685751697572,Food Service,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,56751.431377317895,0.0,0.0,0.014685883304953629,0.004445132083576556,0.0,0.01913101538853019,0.008405795762942663,0.0007773727658382083,0.00592414132586049,0.00037509544841164585,0.003648610085477182,0.007809802803802934,0.0007773727658382083,0.002075002201423659,0.00037509544841164585,0.003648610085477182,0.0005959929591397279,0.0038491391244368294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029699825661445644,0.0,0.0,0.0017500901150661482,0.0007583164389305167,0.0020470883716806046,0.0009306800553795195,9.263810456373333e-05,0.00024727425419669084,4.4699445231877964e-05,0.00043479825569432657,3.982083467732835e-05,0.0002571774219371282,0.0,0.0,0.0,0.0,0.0008994507824900162,8.318171916597089e-05,0.0006339047130573265,4.0136580057018893e-05,0.00039041457691027195 +101699,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,62962.0,,5425.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012607510264892235,0.0037318052518552905,0.0,0.016339315516747527,0.006338180718533611,0.0007156935907647827,0.005544957839100953,0.00038542312423789387,0.0033550602441102854,0.006338180718533611,0.0007156935907647827,0.0018131525872456629,0.00038542312423789387,0.0033550602441102854,0.0,0.0037318052518552905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002493373998705147,0.0,0.0,0.0015024112311493895,0.0006711165875164317,0.001751748631019904,0.0007553080423100334,8.528774248321705e-05,0.00021606968811686643,4.593008599106208e-05,0.00039981567224821064,0.0,0.0002493373998705147,0.0,0.0,0.0,0.0,0.0006795204722907589,7.672997480016161e-05,0.0005944785320873531,4.132146353102201e-05,0.0003596981883106084 +101700,81.0,the Columbus-Albany Area,G1302150010501,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,62874.0,,3008.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005602019354370071,0.0008854258312950228,0.0,0.006487445185665092,0.002880219551039406,0.0014585235392983247,0.0021487020953273625,0.0,0.0,0.0019947937197443834,0.0014585235392983247,0.0021487020953273625,0.0,0.0,0.0008854258312950228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9159555869821995e-05,0.0,0.0,0.0006675806299669157,0.00024189484589821612,0.0007267401858367378,0.0002377152886917768,0.00017380912160305068,0.0002560562196720882,0.0,0.0,5.9159555869822e-05,0.0,0.0,0.0,0.0,0.0,0.00032264955338630607,0.0001633875335608332,0.00024070309888959865,0.0,0.0 +101701,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,201890.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02319787443555166,0.0,0.0,0.02319787443555166,0.0048406716013366605,0.00656723816203912,0.011789964672175884,0.0,0.0,0.0048406716013366605,0.00656723816203912,0.011789964672175884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002764447300463486,0.0008874819996314968,0.002764447300463486,0.0005768537793375276,0.0007826054865064234,0.0014049880346195353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005768537793375276,0.0007826054865064234,0.0014049880346195353,0.0,0.0 +101703,50.0,the Greater Atlanta and Macon Area,G1301210011800,ComStock 90.1-2004,gen4_led,100001_200000,NaturalGas,105497.0,,6386.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009399673996073004,0.0018797076961279975,0.0,0.011279381692201003,0.0034121318073911905,0.0027087874102604383,0.005158493164155671,0.0,0.0,0.0015324241112631932,0.0027087874102604383,0.005158493164155671,0.0,0.0,0.0018797076961279975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012559066745212677,0.0,0.0,0.0011201411177179919,0.0004970029229615878,0.0012457317851701187,0.0001826160415271302,0.00032280099912584097,0.0006147277342865282,0.0,0.0,0.00012559066745212677,0.0,0.0,0.0,0.0,0.0,0.00037684699069951674,0.00029916733632334507,0.0005697208476076973,0.0,0.0 +101704,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,NaturalGas,29416.0,,8144.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,22700.572550927158,0.0,0.0,0.005928803123976504,0.005602477255855473,0.0,0.011531280379831976,0.003456759163010421,0.0007410824605043091,0.004879898547873191,0.00036519809241149145,0.0020883421160325624,0.0019167879453632205,0.0007410824605043091,0.0026452476909687825,0.00036519809241149145,0.0002604869347286994,0.0015399712176472004,0.002234650856904409,0.0018278551813038632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037432517569162185,0.0,0.0,0.0007065261022525126,0.000567529099822833,0.0010808512779441344,0.00022842059140155136,8.831362609265251e-05,0.00031522998850046474,4.352007975068098e-05,3.104181650716287e-05,0.00010289198336384996,0.00014930646505452856,0.0001221267272732433,0.0,0.0,0.0,0.0003240093411846561,6.946322508114553e-05,0.0004574032031110251,3.423078893962963e-05,0.00019574471962767787 +101705,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,66652.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.005387061596279664,0.0,0.0,0.005387061596279663,0.002487749661949063,0.002024764885719412,0.0008745166750117505,0.0,0.0,0.002487749661949063,0.002024764885719412,0.0008745166750117505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006419658150906251,0.0001697432855245085,0.0006419658150906251,0.00029646036358253064,0.00024128735433903497,0.0001042144776053748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002964603635825307,0.00024128735433903502,0.00010421447760537483,0.0,0.0 +101706,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,60933.0,,4465.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003732046044945494,0.0007593736492594414,0.0,0.004491401963843516,0.0018632482209105091,0.0011277928292067186,0.0008221568590478486,0.0,0.0006782040546784398,0.0018632482209105091,0.0011277928292067186,0.0006276902549927094,0.0,0.00011331473983555746,0.0,0.00019446660405513912,0.0005648893148428823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0736412777384976e-05,0.0,0.0,0.0004447403520630012,0.0001850426207210715,0.0004954767648403861,0.00022203950856147675,0.0001343967823212775,7.480057363441497e-05,0.0,1.3503487545832044e-05,0.0,1.2992994824589845e-05,3.774223332525825e-05,0.0,0.0,0.0,0.00020554744554667276,0.00012441441378970727,9.069765387103394e-05,0.0,7.481725163297216e-05 +101707,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001300,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,62914.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.004947434118017644,0.0,0.0,0.004947434118017644,0.002991769171019117,0.0013714895090122458,0.0005841754379862807,0.0,0.0,0.002991769171019117,0.0013714895090122458,0.0005841754379862807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005895760899212717,0.00016096088234759901,0.0005895760899212717,0.0003565233063685973,0.00016343773414722627,6.961504940544808e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003565233063685973,0.00016343773414722627,6.961504940544808e-05,0.0,0.0 +101708,50.0,the Greater Atlanta and Macon Area,G1301350050540,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,526848.0,,62774.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.027119633883294546,0.010675220116315332,0.0,0.03779485399960988,0.020733530037381345,0.0062317787801130595,0.0056387336513351325,0.0,0.0051908292611417585,0.015415520893773548,0.0062317787801130595,0.004740761766855139,0.0,0.0007315724425527989,0.005318009143607798,0.0008979718844799942,0.00445925681858896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007132558785832567,0.0,0.0,0.0032317953913647826,0.0016621004589705067,0.003945051269948039,0.0018370384200014377,0.0007426292710382123,0.0005649475983198471,0.0,8.718010200528539e-05,0.00035531832062559875,5.9997238317265805e-05,0.00029794150427961966,0.0,0.0,0.0,0.0021641792558669865,0.0006504770938068456,0.000588574660252108,0.0,0.0005418221107286752 +101709,50.0,the Greater Atlanta and Macon Area,G1301170130205,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,25871.0,,1466.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002546899737040056,0.00043149586454570114,0.0,0.002978426291192055,0.0008281590259435097,0.0009009854616879584,0.0012492511139542896,0.0,0.0,0.00039666316139780854,0.0009009854616879584,0.0012492511139542896,0.0,0.0,0.00043149586454570114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8830870537714343e-05,0.0,0.0,0.0003035104988533569,0.00012008107096482263,0.0003323413693910712,4.7269797174078956e-05,0.00010736918417304524,0.00014887151750623274,0.0,0.0,2.8830870537714343e-05,0.0,0.0,0.0,0.0,0.0,9.24083653067291e-05,0.00010053454840374106,0.0001393950312460891,0.0,0.0 +101710,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,135320.0,,12318.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012909356859433842,0.0035884585319737507,0.0,0.016497815391407593,0.011976431752703293,0.0034627118303014585,0.0010586718084028399,0.0,0.0,0.008387973220729544,0.0034627118303014585,0.0010586718084028399,0.0,0.0,0.0035884585319737507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023975888271035242,0.0,0.0,0.0015383841687392412,0.0007398869170680996,0.0017781430514495935,0.0009995792471372547,0.00041264496122043586,0.0001261599603815506,0.0,0.0,0.00023975888271035242,0.0,0.0,0.0,0.0,0.0,0.0012908259910170252,0.0003732128669247711,0.00011410419350779708,0.0,0.0 +101711,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,8935.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007961190769687081,0.0,0.0,0.0007961190769687081,0.00033703325636137195,0.0002280851540045271,0.00023100066660280884,0.0,0.0,0.00033703325636137195,0.0002280851540045271,0.00023100066660280884,0.0,0.0,0.0,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.487335479658516e-05,3.447344736423021e-05,9.487335479658516e-05,4.016418728561343e-05,2.718086322224358e-05,2.7528304288728127e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.016418728561343e-05,2.718086322224358e-05,2.7528304288728127e-05,0.0,0.0 +101712,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,73190.0,,2782.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006521111683773674,0.0008187680064164124,0.0,0.00733984900058379,0.002957987013397785,0.0015604744114192937,0.002821418265373008,0.0,0.0,0.0021392190069813724,0.0015604744114192937,0.002821418265373008,0.0,0.0,0.0008187680064164124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.470517625758754e-05,0.0,0.0,0.000777106551214265,0.0003043182081549906,0.0008318117274718526,0.0002549260287849098,0.00018595830694535987,0.00033622221548399535,0.0,0.0,5.4705176257587544e-05,0.0,0.0,0.0,0.0,0.0,0.00033522328419263367,0.00017684572471927753,0.00031974619655716284,0.0,0.0 +101713,35.0,Eastern Counties in South Carolina and Georgia,G1302450010506,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,38812.0,,554.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,56080.226740887294,0.0,0.0,0.003308322824359366,0.00016137493381277541,0.0,0.0034696977581721413,0.0019047891679402926,0.0013625900443769846,0.00020234891945430263,0.0,0.0,0.001743414234127517,0.0013625900443769846,0.00020234891945430263,0.0,0.0,0.00016137493381277541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0782275617274796e-05,0.0,0.0,0.00039424735608545227,0.00013311565018054292,0.0004050296317027271,0.00020775978913110306,0.0001623776006587295,2.4113585867199926e-05,0.0,0.0,1.0782275617274796e-05,0.0,0.0,0.0,0.0,0.0,0.00022235252432149298,0.0001590597747414609,2.36208782534409e-05,0.0,0.0 +101714,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,59753.0,,3854.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.0050868943126631296,0.0011343492279756904,0.0,0.006221243540638819,0.0021076394021010366,0.0014804666078011824,0.002633168220342899,0.0,0.0,0.0009732901741253462,0.0014804666078011824,0.002633168220342899,0.0,0.0,0.0011343492279756904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.579029948974815e-05,0.0,0.0,0.000606196938514855,0.00028453475031503766,0.0006819872380046031,0.00011598541026744681,0.0001764248026518772,0.0003137903828261,0.0,0.0,7.579029948974815e-05,0.0,0.0,0.0,0.0,0.0,0.00023104435072492975,0.00016229220512217678,0.00028865404642377206,0.0,0.0 +101715,50.0,the Greater Atlanta and Macon Area,G1301350050212,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,98943.0,,19248.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005093134969717268,0.0032733793253701482,0.0,0.008366496564725996,0.0038908037011006476,0.0014242622025114216,0.0011411437913560185,0.0,0.0019103046001193288,0.00258537038082642,0.0014242622025114216,0.0008073697376235246,0.0,0.0002761503791173224,0.0013054333202742274,0.000333774053732494,0.0016341542210020065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021870777501688772,0.0,0.0,0.0006069385309023889,0.0003581108745507555,0.0008256463059192766,0.00030809332760809295,0.00016972642860475185,9.621260880810146e-05,0.0,3.290827877253558e-05,8.722130511953413e-05,2.2300800913730424e-05,0.00010918448434612442,0.0,0.0,0.0,0.00038396330865833643,0.00014055307583844327,0.00011261358306512027,0.0,0.0001885180880751105 +101716,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,90188.0,,3356.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01181298187689916,0.000987837047510457,0.0,0.01280081892440962,0.002729257377661006,0.003405779058887567,0.006665782487861045,0.0,0.0,0.001741420330150549,0.003405779058887567,0.006665782487861045,0.0,0.0,0.000987837047510457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.600194133771358e-05,0.0,0.0,0.0014077288348588967,0.0005396753701962731,0.0014737307761966106,0.00020752149100950948,0.0004058597089470123,0.0007943476349023751,0.0,0.0,6.600194133771358e-05,0.0,0.0,0.0,0.0,0.0,0.00031421353722540726,0.0003921000246661972,0.000767417214305006,0.0,0.0 +101718,50.0,the Greater Atlanta and Macon Area,G1301350050543,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,125554.0,,,17405.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011071511104654356,0.0,0.0016404477320335381,0.012711958836687893,0.0077346978440223785,0.003445824109014069,0.0015314065100520092,0.0,0.0,0.00609425011198884,0.003445824109014069,0.0015314065100520092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016404477320335381,0.0,0.0,0.0,0.0,0.00013229889304499864,0.001319370833690748,0.00047697524105093874,0.0014516697267357465,0.0007262401468932701,0.0004106322781494879,0.00018249478908415336,0.0,0.0,0.0,0.0,0.0,0.00013229889304499864,0.0,0.0,0.0008832806060707048,0.00039350336222574063,0.0001748822898601969,0.0,0.0 +101719,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,19669.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.001752468588417722,0.0,0.0,0.001752468588417722,0.0005261119207615188,0.0005679725437515853,0.00065835343429832,0.0,0.0,0.0005261119207615188,0.0005679725437515853,0.00065835343429832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020883655583380154,7.998770083207363e-05,0.00020883655583380154,6.269521875661278e-05,6.768362675894725e-05,7.845405312762394e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.269521875661278e-05,6.768362675894725e-05,7.845405312762394e-05,0.0,0.0 +101720,50.0,the Greater Atlanta and Macon Area,G1300670031111,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,72904.0,,4215.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0070161964125682146,0.0012406887137972305,0.0,0.008256885126365446,0.0034707182658135047,0.0017224848430648667,0.0030637127070933714,0.0,0.0,0.002230029552016275,0.0017224848430648667,0.0030637127070933714,0.0,0.0,0.0012406887137972305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.289588160605553e-05,0.0,0.0,0.0008361069332437401,0.0003580995323179007,0.0009190028148497957,0.0002657484283705707,0.00020526527979090956,0.0003650968823049337,0.0,0.0,8.289588160605553e-05,0.0,0.0,0.0,0.0,0.0,0.00038629577704167784,0.00019171496212997693,0.00034099549147406665,0.0,0.0 +101721,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,312849.0,,56663.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.0,0.07939939387304909,0.049064989071235,0.0,0.1284643829442841,0.06775404471397228,0.013181818066748046,0.028764712992795947,0.0006517286000633797,0.01811189801145799,0.040267600906423236,0.013181818066748046,0.01620239370061985,0.0006517286000633797,0.009095672039948125,0.02748644380754904,0.012562319292176093,0.009016225971509867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032782361060823945,0.0,0.0,0.009461869894765636,0.0061357149960880155,0.012740106000848031,0.0047986109485937825,0.001570851381100744,0.0019308074495398933,7.766521782719294e-05,0.0010839133808130891,0.0018364836968961758,0.0008393408305860753,0.0006024115786001433,0.0,0.0,0.0,0.006719323222971282,0.0013072709774124673,0.0028526622260049276,6.463341245481915e-05,0.001796198255532043 +101722,50.0,the Greater Atlanta and Macon Area,G1301210003800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,98680.0,,8230.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004662411299739926,0.0013996170001375479,0.0,0.006062046030238894,0.00272992601748411,0.001605962946344123,0.001060027387859277,0.0,0.0006661119481899638,0.0020614913919481193,0.001605962946344123,0.0008688054399440075,0.0,0.00012615152150367568,0.0006684346255359906,0.00019122194791526946,0.000539960426686288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.351458792690392e-05,0.0,0.0,0.0005556110768408234,0.00021595910810748788,0.0006491256647677273,0.00024566418073031725,0.00019137968416353413,0.00010353396451303682,0.0,1.5033247433935162e-05,4.466106696112541e-05,1.2776382153202588e-05,3.607713881257594e-05,0.0,0.0,0.0,0.00029232127767202937,0.00017196698275431685,0.00011350804322233665,0.0,7.13274625467495e-05 +101723,50.0,the Greater Atlanta and Macon Area,G1300890021913,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,12190.0,,146.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0012890438136258782,5.432529012846007e-05,0.0,0.00134340785217811,0.0007518744148734944,0.0001865736604625786,0.0003655913782896011,0.0,3.9290901704891945e-05,0.0007518744148734944,0.0001865736604625786,0.000311266088161141,0.0,3.9290901704891945e-05,0.0,5.432529012846007e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6303562243159188e-06,0.0,0.0,0.00015361441581855957,5.143241511298346e-05,0.0001572447720428755,8.960032838979558e-05,2.2233847721957622e-05,3.709335384226077e-05,0.0,4.68226824300416e-06,0.0,3.6303562243159188e-06,0.0,0.0,0.0,0.0,8.80062750712419e-05,2.1838291819626352e-05,4.279216683658871e-05,0.0,4.598967373852777e-06 +101724,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,129605.0,,1332.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00614818012601751,0.00022648763677975454,0.0,0.006374685493158685,0.003037193180893625,0.001614739475247049,0.0011431827829193246,0.0,0.0005795523237372659,0.003037193180893625,0.001614739475247049,0.00091669514613957,0.0,0.0005795523237372659,0.0,0.00022648763677975454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.513305473494075e-05,0.0,0.0,0.0007326670403095484,0.00019533548641642015,0.0007478000950444892,0.00036193658823966237,0.00019242546053486906,0.00010924083319322953,0.0,6.906415834178742e-05,0.0,1.513305473494075e-05,0.0,0.0,0.0,0.0,0.0003562863378559137,0.00018942147567244281,0.00013410421496680013,0.0,6.798598664029708e-05 +101725,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,2486.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.000596979658250321,0.0,0.0,0.000596979658250321,0.0002352189177145903,0.0001493689751731892,0.00018336158248004455,0.0,2.89474758087576e-05,0.0002352189177145903,0.0001493689751731892,0.00018336158248004455,0.0,2.89474758087576e-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,7.114489593040867e-05,2.4789679774436386e-05,7.114489593040867e-05,2.803215350873958e-05,1.7801008873693275e-05,2.1852069032656693e-05,0.0,3.4498079212583872e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.803215350873958e-05,1.7801008873693275e-05,2.1852069032656693e-05,0.0,3.4498079212583872e-06 +101726,50.0,the Greater Atlanta and Macon Area,G1302190030200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,3836.0,,71.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0005628216367959871,5.6075395995250426e-05,0.0,0.0006188970327912374,0.00030254247573838656,0.00013398545945767802,0.00012629370159992245,0.0,5.6075395995250426e-05,0.00030254247573838656,0.00013398545945767802,0.00012629370159992245,0.0,0.0,0.0,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.748094266154694e-06,0.0,0.0,6.70690913569299e-05,2.510643139661795e-05,7.08171856230846e-05,3.6052716558949234e-05,1.5966484643383753e-05,1.504989015459691e-05,0.0,0.0,0.0,0.0,3.748094266154694e-06,0.0,0.0,0.0,3.461837030726226e-05,1.5331262957289464e-05,1.4451134898630255e-05,0.0,6.416417459902627e-06 +101727,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,347775.0,,15370.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.016251436513283358,0.002613774419821344,0.0,0.018865210933104698,0.007774923055945935,0.003305737234961745,0.005767278771630516,0.0,0.002017271870566508,0.007774923055945935,0.003305737234961745,0.0031535043518091718,0.0,0.002017271870566508,0.0,0.002613774419821344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017463753386761714,0.0,0.0,0.0019366524481545112,0.00062702554836595,0.0021112899820221287,0.0009265226343654801,0.00039393835146889103,0.0003757970514302099,0.0,0.00024039441088993043,0.0,0.00017463753386761714,0.0,0.0,0.0,0.0,0.0008701263514740913,0.00036995981291281806,0.0006454419161942811,0.0,0.000225761901440939 +101728,85.0,Rural Climate Zone 3A,G1303170010302,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,9283.0,,1020.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.00042990807335202037,0.00017349158649521666,0.0,0.000603399659847237,0.00037630919077920067,0.00011030057839414848,3.0389839473970508e-05,0.0,8.64000511999173e-05,0.0002438456606099862,0.00011030057839414848,3.0389839473970508e-05,0.0,4.5371994873915126e-05,0.00013246353016921447,0.0,4.1028056326002186e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1591438399237458e-05,0.0,0.0,5.1231438319371146e-05,2.6784279150071178e-05,6.282287671860859e-05,2.905868648518626e-05,1.3144338589714515e-05,3.6215072082897736e-06,0.0,5.406906036180589e-06,8.850243871303326e-06,0.0,2.7411945279341315e-06,0.0,0.0,0.0,3.917938221308617e-05,1.1483930302846262e-05,3.164034164777125e-06,0.0,8.995530037899025e-06 +101729,50.0,the Greater Atlanta and Macon Area,G1301350050728,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,32098.0,,5138.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028599337212766246,0.0015124758671696862,0.0,0.004372378898840013,0.0019880726959651865,0.0009467129750715353,0.0014376239174095893,0.0,0.0,0.00047559682879550006,0.0009467129750715353,0.0014376239174095893,0.0,0.0,0.0015124758671696862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010105379889611107,0.0,0.0,0.0003408120941280489,0.00021288000615183984,0.00044186589302415994,5.667584181290039e-05,0.00011281773041519976,0.00017131852189994877,0.0,0.0,0.00010105379889611107,0.0,0.0,0.0,0.0,0.0,0.00020091157182939044,9.56733585642642e-05,0.00014528406407496086,0.0,0.0 +101730,50.0,the Greater Atlanta and Macon Area,G1301350050524,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,51375.0,,4016.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004577477537727561,0.0011820408761623203,0.0,0.0057595184138898815,0.0020634156794260465,0.0015743461134658553,0.0021217873106042775,0.0,0.0,0.0008813748032637262,0.0015743461134658553,0.0021217873106042775,0.0,0.0,0.0011820408761623203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.897616267005291e-05,0.0,0.0,0.0005454893638428309,0.00023263587966530078,0.0006244655265128838,0.00010503177279994005,0.00018761185671033553,0.00025284939155504916,0.0,0.0,7.897616267005291e-05,0.0,0.0,0.0,0.0,0.0,0.0002237221701662159,0.0001706956734938159,0.00023005101031875767,0.0,0.0 +101731,50.0,the Greater Atlanta and Macon Area,G1301350050428,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,12855.0,,1790.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010675993342781865,0.0005267870921000683,0.0,0.001594386426378255,0.0007479057054750167,0.0003514266817149946,0.0004950847287945412,0.0,0.0,0.0002211186133749486,0.0003514266817149946,0.0004950847287945412,0.0,0.0,0.0005267870921000683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5197750730031893e-05,0.0,0.0,0.0001272221577941665,7.332682148100202e-05,0.0001624199085241984,2.6349948167619226e-05,4.1878314568689484e-05,5.899755223317602e-05,0.0,0.0,3.5197750730031893e-05,0.0,0.0,0.0,0.0,0.0,7.61890431693624e-05,3.5799783887253544e-05,5.043420781321929e-05,0.0,0.0 +101733,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,2327.0,,150.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,3237.924873899493,0.0,0.0,8.988985684597145e-05,4.400889543090579e-05,0.0,0.00013386806267057951,4.434648110018052e-05,6.021300755609286e-05,2.9369953226901563e-05,0.0,0.0,3.3758566927473064e-07,6.021300755609286e-05,2.9369953226901563e-05,0.0,0.0,4.400889543090579e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9398813824309255e-06,0.0,0.0,1.0710694768751683e-05,7.636812909151515e-06,1.365057615118261e-05,4.022452798097252e-08,7.1745930816970985e-06,3.4995339343446096e-06,0.0,0.0,2.939881382430925e-06,0.0,0.0,0.0,0.0,0.0,4.522027175254212e-06,6.139942780518176e-06,2.9948650565524436e-06,0.0,0.0 +101734,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,5517.0,,497.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.001018041370657135,0.0003940164992940605,0.0,0.0014119751628774565,0.0007687622504068625,0.0003574599727012867,0.00025903855495151086,0.0,2.6714384817796296e-05,0.0004014601359305983,0.0003574599727012867,0.00025903855495151086,0.0,0.0,0.0003673021144762642,0.0,2.6714384817796296e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6324718585764762e-05,0.0,0.0,0.00012131472598411284,6.45500781648858e-05,0.00014763944456987763,4.783992850165601e-05,4.259665656863561e-05,3.086828513951104e-05,0.0,0.0,2.4539898245042257e-05,0.0,1.7848203407225061e-06,0.0,0.0,0.0,8.038358934378001e-05,3.737685563677431e-05,2.708568066968467e-05,0.0,2.7933189196386172e-06 +101735,50.0,the Greater Atlanta and Macon Area,G1301350050721,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7663.0,,584.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015971563009797656,0.0004629114917189036,0.0,0.0020600677926986694,0.0013517644131952405,0.0002928657481108876,0.000369369791319747,0.0,4.598513299905493e-05,0.0008888529214763367,0.0002928657481108876,0.000369369791319747,0.0,4.598513299905493e-05,0.0004629114917189036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.093166340460441e-05,0.0,0.0,0.00019032559776961522,9.072778409575851e-05,0.00022125726117421963,0.00010592041837450441,3.489943253597471e-05,4.401605922215845e-05,0.0,5.479831824343954e-06,3.093166340460441e-05,0.0,0.0,0.0,0.0,0.0,0.00014518342205843284,3.145463151669792e-05,3.967138784342641e-05,0.0,4.938936775849772e-06 +101736,50.0,the Greater Atlanta and Macon Area,G1301210011621,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,36142.0,,9986.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.003220260388817953,0.0029393277327687817,0.0,0.006159588121586735,0.002958263219854464,0.0011871660404140368,0.002014158861318234,0.0,0.0,1.893548708568262e-05,0.0011871660404140368,0.002014158861318234,0.0,0.0,0.0029393277327687817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019638946864050357,0.0,0.0,0.0003837504975624241,0.0003115486565423146,0.0005801399662029277,2.2564953492425016e-06,0.00014147165250364292,0.0002400223497095387,0.0,0.0,0.00019638946864050357,0.0,0.0,0.0,0.0,0.0,0.00027862361744142577,0.00011181307142102306,0.00018970327734047887,0.0,0.0 +101737,81.0,the Columbus-Albany Area,G1302150003000,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,117591.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.010369334232852407,0.0,0.0,0.010369334232852408,0.007899535368171055,0.0020097907011966004,0.0004600385370841892,0.0,0.0,0.007899535368171055,0.0020097907011966004,0.0004600385370841892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012356950541527712,0.0003961440184494003,0.0012356950541527712,0.0009413735313524255,0.00023950317094443863,5.4821971423543774e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009413735313524253,0.00023950317094443858,5.482197142354376e-05,0.0,0.0 +101738,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,61288.0,,4980.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005460693717369149,0.0014657662863845826,0.0,0.0069264600037537314,0.002534224929639105,0.0023242773329565205,0.0020679577411581067,0.0,0.0,0.0010684586432545223,0.0023242773329565205,0.0020679577411581067,0.0,0.0,0.0014657662863845826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.793299976162601e-05,0.0,0.0,0.0006507410703274058,0.0002733009996729248,0.0007486740700890319,0.00012732629901956712,0.0002769799585307171,0.00024643481277712167,0.0,0.0,9.793299976162601e-05,0.0,0.0,0.0,0.0,0.0,0.0002739218145439041,0.0002512287907440731,0.00022352346480105468,0.0,0.0 +101739,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,39284.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0032591479668696464,0.0,0.0,0.0032591479668696464,0.0019802371889436677,0.0009580744470650058,0.000320775583662097,0.0,0.0,0.0019802371889436677,0.0009580744470650058,0.000320775583662097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038838565734095303,0.00010059501815914457,0.00038838565734095303,0.0002359806090846468,0.00011417167237801422,3.822613676518429e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002359806090846468,0.00011417167237801422,3.822613676518429e-05,0.0,0.0 +101740,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,7380.0,,1061.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0017575253169602827,0.0008413790611499743,0.0,0.002598904378110257,0.0016950814762871054,0.0004641520978249933,0.0003677156498449608,0.0,7.187244707945816e-05,0.0008537024151371313,0.0004641520978249933,0.0003677156498449608,0.0,7.187244707945816e-05,0.0008413790611499743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.62150594577045e-05,0.0,0.0,0.000209439485869159,9.964948369768377e-05,0.0002656545453268635,0.00010173338226548043,5.5311736221069195e-05,4.381966843173086e-05,0.0,8.564842975072904e-06,5.62150594577045e-05,0.0,0.0,0.0,0.0,0.0,0.00017326766720154242,4.7444652272996156e-05,3.75871211699467e-05,0.0,7.346650539065157e-06 +101741,50.0,the Greater Atlanta and Macon Area,G1300890023210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,9154.0,,,3918.0,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,9613.75315558068,0.0,0.0,0.0007312140328644373,0.0,0.0003692518483647489,0.001100465881229186,0.0008339982933617895,0.00020107322827791704,6.539435958947967e-05,0.0,0.0,0.00046474644499704067,0.00020107322827791704,6.539435958947967e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003692518483647489,0.0,0.0,0.0,0.0,2.977886230440701e-05,8.713893768229062e-05,5.917450153106949e-05,0.00011691779998669763,5.538393642422236e-05,2.396194099263786e-05,7.79306026543041e-06,0.0,0.0,0.0,0.0,0.0,2.977886230440701e-05,0.0,0.0,8.86072410928416e-05,2.1362806323643796e-05,6.947752570212251e-06,0.0,0.0 +101742,50.0,the Greater Atlanta and Macon Area,G1301530020106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,33688.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003001596943946821,0.0,0.0,0.003001596943946821,0.0011740615785249178,0.0007801297920876048,0.001047436262940596,0.0,0.0,0.0011740615785249178,0.0007801297920876048,0.001047436262940596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035769481227567184,0.00011606879802760292,0.00035769481227567184,0.0001399107687584285,9.296663900667225e-05,0.0001248210617347649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001399107687584285,9.296663900667225e-05,0.0001248210617347649,0.0,0.0 +101743,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock 90.1-2007,gen5_led,_1000,NaturalGas,1850.0,,312.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0004443024001275595,0.00024712873633305057,0.0,0.00069143113646061,0.0004380993695971114,0.00013770727777594687,5.9549093092301346e-05,0.0,5.6075395995250426e-05,0.0002470460292593113,0.00013770727777594687,5.9549093092301346e-05,0.0,0.0,0.00019105334033780013,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.651106189428895e-05,0.0,0.0,5.294653904297351e-05,3.600224100343145e-05,6.945760093726246e-05,2.9439931519240857e-05,1.641027317694544e-05,7.096334346787216e-06,0.0,0.0,1.27645759624523e-05,0.0,3.746485931836649e-06,0.0,0.0,0.0,4.4009200019698475e-05,1.3833361909155743e-05,5.981994339094375e-06,0.0,5.633044669313868e-06 +101744,46.0,the Tallahassee-Valdosta Area,G1300270960300,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,24803.0,,232.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0012767633258580025,3.937913271393727e-05,0.0,0.0013161424585719395,0.0006205803800632681,0.0004557057492181971,0.00010209142105666404,0.0,0.00013776490823381028,0.000581201247349331,0.0004557057492181971,0.00010209142105666404,0.0,0.00013776490823381028,3.937913271393727e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.631296239377712e-06,0.0,0.0,0.00015214985299020405,4.072610057879058e-05,0.00015478114922958176,6.926082739923467e-05,5.430572867038222e-05,1.216607212217185e-05,0.0,1.6417224798415294e-05,2.631296239377712e-06,0.0,0.0,0.0,0.0,0.0,7.298157109812062e-05,5.359196423999016e-05,1.2006168006142067e-05,0.0,1.620144588532891e-05 +101745,85.0,Rural Climate Zone 3A,G1300610960300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13407.0,,,3453.0,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011137998913823594,0.0,0.00032542274437607306,0.0014392226357584324,0.000869687272701148,0.0004583983627145505,0.00011113700034273391,0.0,0.0,0.0005442645283250749,0.0004583983627145505,0.00011113700034273391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032542274437607306,0.0,0.0,0.0,0.0,2.624564946310362e-05,0.0001327284733029811,6.011599771685764e-05,0.00015897412276608475,6.485850867510549e-05,5.462607360481567e-05,1.3243891023059934e-05,0.0,0.0,0.0,0.0,0.0,2.624564946310362e-05,0.0,0.0,9.606420009204171e-05,5.0633915684318566e-05,1.2276006989724464e-05,0.0,0.0 +101746,50.0,the Greater Atlanta and Macon Area,G1302190030100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,247459.0,,12464.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.020911621524797995,0.003668973122496665,0.0,0.024580594647294663,0.007347367954126726,0.006452612482517201,0.010780644900257035,0.0,0.0,0.0036783948316300597,0.006452612482517201,0.010780644900257035,0.0,0.0,0.003668973122496665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002451386693756292,0.0,0.0,0.0024919983521007856,0.0009500008218264349,0.0027371370214764146,0.0004383473490053376,0.0007689456149591038,0.0012847090453586326,0.0,0.0,0.0002451386693756292,0.0,0.0,0.0,0.0,0.0,0.0008181556681690396,0.0007185214501343444,0.0012004633205703222,0.0,0.0 +101747,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,121230.0,,12120.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010598502086880167,0.0035675439736827575,0.0,0.014166046060562926,0.007086076646108084,0.002459679875941985,0.004620289538512857,0.0,0.0,0.0035185326724253264,0.002459679875941985,0.004620289538512857,0.0,0.0,0.0035675439736827575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023836157725857962,0.0,0.0,0.0012630032176003997,0.000596811229132457,0.0015013647948589795,0.0004192968072352813,0.0002931153451795139,0.0005505910651856045,0.0,0.0,0.00023836157725857962,0.0,0.0,0.0,0.0,0.0,0.0007510060298163613,0.0002606850744784076,0.0004896736905642106,0.0,0.0 +101748,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,68948.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.01048186841876928,0.0,0.0,0.010481868418769278,0.004912625973061979,0.004351777459443893,0.0012174953598628442,0.0,0.0,0.004912625973061979,0.004351777459443893,0.0012174953598628442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001249103485199298,0.00035779712372372807,0.001249103485199298,0.0005854279007590146,0.0005185926949502153,0.00014508650905171476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005854279007590147,0.0005185926949502154,0.0001450865090517148,0.0,0.0 +101749,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,19028.0,,659.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.002121398704673989,0.00024481254139201907,0.0,0.002366211246066008,0.001082088482259184,0.00037500724526621723,0.000842506978076396,0.0,6.656979204043822e-05,0.0009606121737337044,0.00037500724526621723,0.0007191707452098566,0.0,6.656979204043822e-05,0.00012147630852547951,0.0001233362328665395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.635818377767115e-05,0.0,0.0,0.00025280121836991886,8.45955684831063e-05,0.00026915940214759,0.00011447349683291914,4.468857659428791e-05,8.570158933560484e-05,0.0,7.932938064578075e-06,8.116952539252776e-06,8.24123123841837e-06,0.0,0.0,0.0,0.0,0.00012308887866199845,4.265752945967274e-05,9.583619167613809e-05,0.0,7.5723946695306625e-06 +101750,81.0,the Columbus-Albany Area,G1302150010501,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,20187.0,,700.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0017986564458957648,0.0002059886374701811,0.0,0.0020046450833659454,0.0007255022928776937,0.0005266029544622821,0.00075253983602597,0.0,0.0,0.0005195136554075126,0.0005266029544622821,0.00075253983602597,0.0,0.0,0.0002059886374701811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.376217965832423e-05,0.0,0.0,0.00021434326678786546,9.020096923063439e-05,0.0002281054464461897,6.190968502909135e-05,6.2754506463503e-05,8.967907529527111e-05,0.0,0.0,1.376217965832423e-05,0.0,0.0,0.0,0.0,0.0,8.255377761769634e-05,5.992133122428308e-05,8.563033760421034e-05,0.0,0.0 +101751,50.0,the Greater Atlanta and Macon Area,G1301350050540,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,146421.0,,6242.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.0129115741321928,0.001818406651139326,0.0,0.014729980783332125,0.008538261790747539,0.005305356613792111,0.000886332005193036,0.0,0.0,0.006719855139608212,0.005305356613792111,0.000886332005193036,0.0,0.0,0.001818406651139326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001214956804371272,0.0,0.0,0.0015386481538174407,0.00047567985488835104,0.0016601438342545678,0.0008007925756085047,0.0006322294303992836,0.00010562252824458407,0.0,0.0,0.00012149568043712722,0.0,0.0,0.0,0.0,0.0,0.0009623055776963728,0.0005979407034172825,9.989412988160373e-05,0.0,0.0 +101752,85.0,Rural Climate Zone 3A,G1302770960700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,80810.0,,3285.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.00390869363577348,0.0005585773061773433,0.0,0.004467288672312244,0.001517417521412379,0.0015216373474303516,0.0011967284744078838,0.0,0.00023150532906162947,0.001517417521412379,0.0015216373474303516,0.0006381511682305405,0.0,0.00023150532906162947,0.0,0.0005585773061773433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.732137456855205e-05,0.0,0.0,0.00046579229540048215,0.00017094692660906842,0.0005031136699690343,0.00018082803520611952,0.00018133090461218217,7.604737673531723e-05,0.0,2.7588091743527374e-05,0.0,3.732137456855205e-05,0.0,0.0,0.0,0.0,0.000170894149465821,0.00017136939346957018,0.00013477760200442907,0.0,2.6072525029214037e-05 +101753,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,55793.0,,9244.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,32736.412774265485,0.0,0.0,0.002871963942820153,0.0015719915738633015,0.0,0.004443955516683454,0.002421807796726433,0.0007660048044305412,0.0005885593473386527,0.0,0.000667548107464988,0.0014019042167607353,0.0007660048044305412,0.0005885593473386527,0.0,0.0001154778439288039,0.0010199035799656974,0.0,0.0005520702635361841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010503124338978844,0.0,0.0,0.00034224584796717166,0.00020849902008850466,0.0004472770913569601,0.0001670619502844075,9.128316687076008e-05,7.013736833726548e-05,0.0,1.376124958519687e-05,6.814396649610089e-05,0.0,3.6886092255082194e-05,0.0,0.0,0.0,0.00024375112286313314,7.709717156368968e-05,5.9237567068413746e-05,0.0,6.718766079607704e-05 +101754,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,6946.0,,517.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0021545192709089586,0.00040997896452574684,0.0,0.002564498235434705,0.0017667885092190853,0.0002904672429724477,0.0003893849031646593,0.0,0.00011785758007851305,0.0014746671247718515,0.0002904672429724477,0.0003893849031646593,0.0,0.0,0.0002921213844472338,0.0,0.00011785758007851305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.739223075372473e-05,0.0,0.0,0.0002567523875197408,0.00010855005148212075,0.00028414461827346553,0.00017573493548855965,3.461475566101074e-05,4.6402696370170424e-05,0.0,0.0,1.951772423283352e-05,0.0,7.874506520891212e-06,0.0,0.0,0.0,0.0001957589362259416,3.218356820641827e-05,4.31435760580345e-05,0.0,1.3058537783071189e-05 +101755,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,58406.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.004949036601173848,0.0,0.0,0.004949036601173848,0.0013156634219825185,0.001323243754738051,0.002310129424453279,0.0,0.0,0.0013156634219825185,0.001323243754738051,0.002310129424453279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005897654296543715,0.0001835359743912689,0.0005897654296543715,0.00015678461605275244,0.00015768794705730175,0.0002752928665443173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015678461605275244,0.00015768794705730175,0.0002752928665443173,0.0,0.0 +101756,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,58446.0,,16101.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012169588121870915,0.011075499964027766,0.0,0.02324508808589868,0.0071632472650972005,0.0010725004465674476,0.00967746256902046,0.0003713660099188341,0.004960440075323722,0.00512259892979002,0.0010725004465674476,0.005044065561527924,0.0003713660099188341,0.0005589854540956725,0.0020406483353071813,0.004633397007492536,0.004401454621228049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007400022116640134,0.0,0.0,0.001450224786812649,0.0010997985006519426,0.0021902269984766624,0.0006104495786123069,0.0001278076723635763,0.0006010909186391814,4.4254923598943304e-05,6.661314687720435e-05,0.00013634457011064242,0.0003095773594147521,0.00029408028213861884,0.0,0.0,0.0,0.0006749442075161507,0.00010105444321268466,0.0009118416637996784,3.499130045173741e-05,0.0004673886258099586 +101757,50.0,the Greater Atlanta and Macon Area,G1301390001502,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,90026.0,,18279.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006946879716906629,0.0031085578856093372,0.0,0.010055419872154546,0.004498972828169878,0.0010544600543733803,0.0030786822266165486,0.0,0.0014233047629947388,0.0036994753710168577,0.0010544600543733803,0.0007696217981602321,0.0,0.0014233047629947388,0.000799497457153021,0.002309060428456317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020769550967969264,0.0,0.0,0.0008278452269170145,0.00041568491572725676,0.0010355407365967072,0.0004408587960059134,0.00012565781452400973,9.17142311515283e-05,0.0,0.0001696122723452193,5.341770620380953e-05,0.00015427780347588313,0.0,0.0,0.0,0.0,0.0004633192542573922,0.00010859181966547241,0.00031705298249416476,0.0,0.0001465766801796778 +101758,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,75660.0,,6823.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0036341744499068037,0.0011603635031353554,0.0,0.004794537953042159,0.002062377910019122,0.0009591593617405966,0.0012868341711445921,0.0,0.00048618424049926787,0.001546903112453927,0.0009591593617405966,0.0006419454655744318,0.0,0.00048618424049926787,0.0005154747975651951,0.0006448887055701604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.75285397233134e-05,0.0,0.0,0.00043307738947468083,0.0001747217906806304,0.0005106059291979942,0.00018434138782990597,0.00011430112621133833,7.649937289697609e-05,0.0,5.7937615428602466e-05,3.444093873291911e-05,4.30876009903943e-05,0.0,0.0,0.0,0.0,0.00021963792953908257,0.00010214799881597806,0.00013704452110220632,0.0,5.177736797850037e-05 +101759,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001500,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,12729.0,,1558.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012576293764735623,0.0004585334076939772,0.0,0.0017161627841675397,0.000648348622645269,0.0004722516617090504,0.0005955318102069224,0.0,0.0,0.0001898152149512917,0.0004722516617090504,0.0005955318102069224,0.0,0.0,0.0004585334076939772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.063680080878105e-05,0.0,0.0,0.00014986808580231252,8.54033429774923e-05,0.00018050488661109358,2.26197347589571e-05,5.6276876066423894e-05,7.096781778456951e-05,0.0,0.0,3.063680080878105e-05,0.0,0.0,0.0,0.0,0.0,6.819288688386915e-05,4.967112294655772e-05,6.2637648867816e-05,0.0,0.0 +101760,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,106503.0,,9943.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.00958899817732353,0.002926683614974128,0.0,0.01251568179229766,0.005073881919592904,0.002929169473084242,0.004512661089226813,0.0,0.0,0.0021471983046187754,0.002929169473084242,0.004512661089226813,0.0,0.0,0.002926683614974128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019554393249700096,0.0,0.0,0.0011427030851321885,0.0005022918690720429,0.0013382470176291894,0.0002558776299364495,0.00034906368025847817,0.0005377654321605861,0.0,0.0,0.00019554393249700096,0.0,0.0,0.0,0.0,0.0,0.0005425279628694783,0.0003132032578439194,0.0004825190784209293,0.0,0.0 +101761,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000600,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,132246.0,,5257.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.010925049608165517,0.0015316191252480733,0.0,0.012456668733413587,0.009384531018282181,0.002628652789740794,0.0004434545517911766,0.0,0.0,0.007852911893034107,0.002628652789740794,0.0004434545517911766,0.0,0.0,0.0015316191252480733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010233315004972599,0.0,0.0,0.0013019166445957942,0.00040131400776830895,0.0014042497946455202,0.0009358160437499478,0.0003132513757437631,5.284560554005986e-05,0.0,0.0,0.00010233315004972598,0.0,0.0,0.0,0.0,0.0,0.001057925360085894,0.00029633003969082314,4.999097082970532e-05,0.0,0.0 +101762,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000400,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Propane,51611.0,,,612.0,3.20458438519356,Mercantile,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,120171.9144447585,0.0,0.0,0.004664929269647114,0.0,5.770983893172847e-05,0.004722639108578842,0.0021859879515349983,0.0017286222912013315,0.0008080288658425115,0.0,0.0,0.00212827811260327,0.0017286222912013315,0.0008080288658425115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.770983893172847e-05,0.0,0.0,0.0,0.0,4.653988657101501e-06,0.0005559117980476539,0.0001813665768369315,0.0005605657867047554,0.0002536233335885607,0.00020599701956889064,9.629144489020237e-05,0.0,0.0,0.0,0.0,0.0,4.653988657101501e-06,0.0,0.0,0.0002594714581415651,0.00020518326560723567,9.591106295595463e-05,0.0,0.0 +101763,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock 90.1-2004,gen5_led,1001_5000,Electricity,6809.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016251112919036515,0.0,0.0,0.0016251112919036515,0.001235643681665253,0.0002084218258230547,0.0001396095404719509,0.0,4.135353686965371e-05,0.001235643681665253,0.0002084218258230547,0.0001396095404719509,0.0,4.135353686965371e-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.00019365984406030347,6.227224927870815e-05,0.00019365984406030347,0.0001472481078050249,2.483703023217287e-05,1.6636867869804682e-05,0.0,4.927982188923188e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001472481078050249,2.483703023217287e-05,1.6636867869804682e-05,0.0,4.927982188923188e-06 +101764,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,33940.0,,2984.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0016442250662885966,0.0005073720223962311,0.0,0.002151614819046248,0.0007670154350314843,0.000305901925580171,0.0008319972096359779,0.0,0.0002466825184371946,0.0005669992278518687,0.000305901925580171,0.0007183278625720194,0.0,5.2996050284537824e-05,0.00020001620717961566,0.0001136693470639585,0.0001936864681526568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.39000474496086e-05,0.0,0.0,0.00019593986031121526,8.392228392139546e-05,0.00022983990776082383,6.756845627748265e-05,3.645387836253192e-05,8.560206503098697e-05,0.0,6.3154606402137524e-06,1.3364077274218426e-05,7.594814236771061e-06,1.2941155938619102e-05,0.0,0.0,0.0,8.193416185751565e-05,3.267707107091349e-05,8.887564829320207e-05,0.0,2.635113254562217e-05 +101765,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,12956.0,,1306.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011267995848264554,0.0003845407669102158,0.0,0.0015113096621303735,0.0005697218513105543,0.0004339510330495174,0.0005076367777703017,0.0,0.0,0.00018518108440033858,0.0004339510330495174,0.0005076367777703017,0.0,0.0,0.0003845407669102158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5692068379741096e-05,0.0,0.0,0.00013427751568818782,7.025535998183739e-05,0.00015996958406792894,2.206750543802498e-05,5.171271575964092e-05,6.049363729704528e-05,0.0,0.0,2.5692068379741096e-05,0.0,0.0,0.0,0.0,0.0,6.030409906867768e-05,4.593298647010896e-05,5.37324985291423e-05,0.0,0.0 +101766,50.0,the Greater Atlanta and Macon Area,G1301210006100,ComStock 90.1-2004,gen5_led,25001_50000,Electricity,39155.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0052874058165244,0.0,0.0,0.0052874058165243995,0.0032730894490115743,0.0014748204942994774,0.0005394958732133478,0.0,0.0,0.0032730894490115743,0.0014748204942994774,0.0005394958732133478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006300889877657026,0.0001650092765490533,0.0006300889877657026,0.000390047159109484,0.00017575124449216418,6.429058416405428e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003900471591094841,0.0001757512444921642,6.42905841640543e-05,0.0,0.0 +101767,50.0,the Greater Atlanta and Macon Area,G1300590001900,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,26955.0,,2716.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0023278680168933516,0.0007995256232677527,0.0,0.0031273936401611043,0.0012046898056100248,0.0007406936479950568,0.001181979496949725,0.0,0.0,0.0004051641823422721,0.0007406936479950568,0.001181979496949725,0.0,0.0,0.0007995256232677527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.342017970357221e-05,0.0,0.0,0.00027740642524241214,0.00013459041723144768,0.0003308266049459843,4.82824398308591e-05,8.826667817889597e-05,0.00014085365002618598,0.0,0.0,5.34201797035722e-05,0.0,0.0,0.0,0.0,0.0,0.00012743628857110286,7.835315699453734e-05,0.0001250339129267707,0.0,0.0 +101768,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,33005.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002781092122697826,0.0,0.0,0.002781092122697826,0.0009777708566448106,0.0007559156927187171,0.001047436262940596,0.0,0.0,0.0009777708566448106,0.0007559156927187171,0.001047436262940596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003314164836171038,0.00011005229508638432,0.0003314164836171038,0.00011651875047496058,9.008077033737457e-05,0.00012482062001602023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011651875047496058,9.008077033737457e-05,0.00012482062001602023,0.0,0.0 +101769,50.0,the Greater Atlanta and Macon Area,G1300670031114,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,14074.0,,2483.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0012511189344404355,0.0007232561498117463,0.0,0.0019743750842521816,0.0014568089498328907,0.00042668832490153763,9.087780951775345e-05,0.0,0.0,0.0007335528000211442,0.00042668832490153763,9.087780951775345e-05,0.0,0.0,0.0007232561498117463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.832432435963347e-05,0.0,0.0,0.00014909371581430013,8.974661568869904e-05,0.0001974180401739336,8.741623972788138e-05,5.084772206936681e-05,1.0829754017051929e-05,0.0,0.0,4.832432435963348e-05,0.0,0.0,0.0,0.0,0.0,0.0001456665301734132,4.266462514596895e-05,9.086884854551471e-06,0.0,0.0 +101770,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,52980.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004420664782968714,0.0,0.0,0.004420664782968714,0.003317799387383945,0.0007219197114364854,0.0003809153105488456,0.0,0.0,0.003317799387383945,0.0007219197114364854,0.0003809153105488456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005268022706229351,0.0001780011589061968,0.0005268022706229351,0.00039537588497526554,8.602980815405703e-05,4.539295792914966e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039537588497526554,8.602980815405703e-05,4.539295792914966e-05,0.0,0.0 +101771,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,14233.0,,761.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003378997497619405,0.0006035962241494655,0.0,0.003982593721768871,0.0025842652260583995,0.00035183589168701377,0.0009787555106309642,0.0,6.781980046623209e-05,0.001980669001908934,0.00035183589168701377,0.0009787555106309642,0.0,6.781980046623209e-05,0.0006035962241494655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0331249410069065e-05,0.0,0.0,0.00040266738815833197,0.00017347151934065798,0.00044299863756840107,0.00023603178586747604,4.192747691165204e-05,0.00011663605119240487,0.0,8.081930199237111e-06,4.0331249410069065e-05,0.0,0.0,0.0,0.0,0.0,0.00028745738436779136,3.9136008228271925e-05,0.00010887059740793842,0.0,7.543847378275265e-06 +101772,50.0,the Greater Atlanta and Macon Area,G1300670030320,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,614046.0,,1478.0,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,2015986.1613818365,0.0,0.0,0.0817461086542159,0.0007737592224365873,0.0,0.08251986787665247,0.04628066115848998,0.012271997060174499,0.023496719502131187,0.0,0.0004704901558568059,0.04550690193605339,0.012271997060174499,0.023496719502131187,0.0,0.0004704901558568059,0.0007737592224365873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1699151237835495e-05,0.0,0.0,0.009741526647800463,0.0032812433406520553,0.009793225799038296,0.005422970036947977,0.0014624303022068483,0.0028000589010801677,0.0,5.606740756546695e-05,5.1699151237835495e-05,0.0,0.0,0.0,0.0,0.0,0.0054924586831786365,0.0014564060911375564,0.0027885245764692093,0.0,5.583644825289479e-05 +101773,46.0,the Tallahassee-Valdosta Area,G1301850010302,ComStock 90.1-2007,gen4_led,_1000,Propane,2915.0,,,331.0,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0003706931044995759,0.0,8.494016473026873e-05,0.00045555056215610534,0.00021991810907281845,0.00011645155982494485,6.310549726309156e-05,0.0,5.6075395995250426e-05,0.00019113604741153946,0.00011645155982494485,6.310549726309156e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8782061661278985e-05,5.6075395995250426e-05,0.0,0.0,0.0,6.848562527598374e-06,4.4172274438922606e-05,2.048871398677631e-05,5.102083696652099e-05,2.277602102372828e-05,1.3876519948684298e-05,7.519733466510028e-06,0.0,0.0,0.0,0.0,0.0,2.3206424144150285e-06,4.521251600498244e-06,0.0,2.4630429465137853e-05,1.3042363552807108e-05,7.067701271869191e-06,0.0,6.28034267670683e-06 +101774,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,346135.0,,43239.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.017817364303541004,0.007353277331015656,0.0,0.02517064163455666,0.011876345720355392,0.006103464154516136,0.0020787075728869904,0.0,0.005112106456436723,0.00963616774601598,0.006103464154516136,0.0013059120400325693,0.0,0.0007718026326148985,0.0022401779743394115,0.0007727955328544215,0.004340303823821826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004913028538197973,0.0,0.0,0.002123260637232078,0.001029326211575451,0.0026145634910518752,0.0011483233614308975,0.0007273379479290083,0.00015562299692876204,0.0,9.197421805073738e-05,0.00014967555041272825,5.163366395948596e-05,0.0002899936394475833,0.0,0.0,0.0,0.0012336379969321474,0.0006339883892921176,0.000215922701040001,0.0,0.0005310125620723156 +101775,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,13805.0,,3259.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0007106328857157164,0.0005542510979908506,0.0,0.0012648839837065668,0.0004818934930356151,0.00013311955354175644,0.00043767397165400343,0.0,0.00021221469583661197,0.00031714297472048447,0.00013311955354175644,0.0001904595423742072,0.0,6.992854544068826e-05,0.00016475051831513064,0.0002472144292797962,0.00014228615039592373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.703179630221828e-05,0.0,0.0,8.468529185498969e-05,5.8921044678591393e-05,0.00012171708815720797,3.779355826871757e-05,1.586370187742671e-05,2.2696841444767946e-05,0.0,8.333303170560862e-06,1.1007659988490476e-05,1.651741317472263e-05,9.506723139005172e-06,0.0,0.0,0.0,4.637158310940224e-05,1.2809810735692704e-05,4.211643287301204e-05,0.0,2.042096759396723e-05 +101776,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7152.0,,,2842.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005500658858176855,0.0,0.0002678951470409711,0.0008179914064580945,0.0005734231837853167,0.00018928827169606936,5.5279950976708314e-05,0.0,0.0,0.00030552803674434553,0.00018928827169606936,5.5279950976708314e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002678951470409711,0.0,0.0,0.0,0.0,2.160588759205624e-05,6.555157693893465e-05,3.991250578418137e-05,8.71574645309909e-05,3.640990129369098e-05,2.2557560877053607e-05,6.5877344024771435e-06,0.0,0.0,0.0,0.0,0.0,2.160588759205624e-05,0.0,0.0,6.10985768400942e-05,2.0168776464191274e-05,5.8901112267054095e-06,0.0,0.0 +101777,50.0,the Greater Atlanta and Macon Area,G1302470060307,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,22313.0,,360.0,,4.088175128053588,Healthcare,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,30661.31346040191,0.0,0.0,0.002402053538055184,0.0001337208104374577,0.0,0.002535774348492642,0.001193102716366201,0.00028553713477647805,0.0009849074354388004,0.0,7.226581033493441e-05,0.001193102716366201,0.00028553713477647805,0.0008511866250013428,0.0,7.226581033493441e-05,0.0,0.0001337208104374577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.933187008219888e-06,0.0,0.0,0.0002862503909381402,8.719143102558652e-05,0.00029518357794636006,0.000142180893797104,3.402718347539409e-05,0.00010143508473388277,0.0,8.611846543847196e-06,0.0,8.933187008219888e-06,0.0,0.0,0.0,0.0,0.00013888630464451533,3.3238711926388666e-05,0.00011465077754714984,0.0,8.412294441948008e-06 +101778,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6591.0,,67.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0015825171489279083,5.3097941340635354e-05,0.0,0.0016356150902685435,0.0008661911832717667,0.00042445270243012564,0.00029187326322601586,0.0,5.3097941340635354e-05,0.0008661911832717667,0.00042445270243012564,0.00029187326322601586,0.0,0.0,0.0,0.0,5.3097941340635354e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.54875822500918e-06,0.0,0.0,0.0001885880023894585,6.737282646641908e-05,0.0001921367606144677,0.00010322369337434927,5.058187667307938e-05,3.478243234202984e-05,0.0,0.0,0.0,0.0,3.5487582250091795e-06,0.0,0.0,0.0,0.00010175203751594461,4.986073298308294e-05,3.428654066588069e-05,0.0,6.237449449559479e-06 +101779,81.0,the Columbus-Albany Area,G1302150002902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,163792.0,,11482.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007936251614506994,0.0019526269728289952,0.0,0.00988887858733599,0.004452359707996559,0.0016416364335212692,0.002464484776664499,0.0,0.0013303976691536623,0.0038576833859679887,0.0016416364335212692,0.0011065518562254953,0.0,0.0013303976691536623,0.000594676322028571,0.0013579329204390037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013046284309858845,0.0,0.0,0.0009457472843021523,0.0003749633906200467,0.0010762101274007408,0.0004597124389690104,0.00019563054124647458,0.00013186557883973775,0.0,0.00015854083813875538,3.9732711252500755e-05,9.072894720949694e-05,0.0,0.0,0.0,0.0,0.0004845518696845233,0.00017865986923210615,0.000268210743214899,0.0,0.00014478764526921215 +101780,50.0,the Greater Atlanta and Macon Area,G1300890023507,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,93491.0,,3111.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.008536978656713603,0.0009350639065217185,0.0,0.009472042563235321,0.0031832536194337127,0.0017707549446346845,0.0030599385020611356,0.0,0.0014580641590835849,0.0031832536194337127,0.0017707549446346845,0.0021248745955394174,0.0,0.0014580641590835849,0.0,0.0009350639065217185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.247558482124593e-05,0.0,0.0,0.0010173339233595499,0.000464721110361124,0.0010798095081807958,0.00037934168795891705,0.0002110171698410937,0.0002532168693226326,0.0,0.00017375446175022682,0.0,6.247558482124593e-05,0.0,0.0,0.0,0.0,0.0003628897887934944,0.0002018654385376401,0.00034883190894842566,0.0,0.000166218799377768 +101781,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,77060.0,,12946.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.017276050058182422,0.008905253641095375,0.0,0.026181303699277802,0.009733762746267718,0.0010677669284804175,0.010119759630273735,0.00037366104899133357,0.004886281625293581,0.005368239830518488,0.0010677669284804175,0.005580028904927587,0.00037366104899133357,0.004886281625293581,0.004365522915749229,0.004539730725346147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000594997520607085,0.0,0.0,0.0020587537645768575,0.0011681653323349019,0.0026537512851839426,0.0006397228488578548,0.00012724373779286231,0.0006649613468228147,4.452847084234367e-05,0.0005822888135295344,0.00029167898138662184,0.0003033185392204633,0.0,0.0,0.0,0.0,0.000986619524156701,0.00010822944079786148,0.0010257443797702212,3.7874488618811004e-05,0.0004952761822647972 +101782,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,48581.0,,7946.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002469271974247914,0.0013512840349064843,0.0,0.003820556009154398,0.0016895970611625118,0.0005673538350802696,0.0009382375352649341,0.0,0.0006253675776466823,0.0014237302916688202,0.0005673538350802696,0.00037097235199176485,0.0,0.00010721549550705932,0.00026586676949369177,0.0005672651832731693,0.000518152082139623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.028491237969358e-05,0.0,0.0,0.00029425820519414855,0.00017158341727683976,0.00038454311757384215,0.0001696630928776527,6.761042240864779e-05,4.420803362780517e-05,0.0,1.2776656280042913e-05,1.7763665793677e-05,3.790134867641893e-05,3.461989790959764e-05,0.0,0.0,0.0,0.0001700597818187298,5.710478055719704e-05,9.443462835542348e-05,0.0,6.294392684249183e-05 +101783,50.0,the Greater Atlanta and Macon Area,G1301430010200,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,39102.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.006197662330393617,0.0,0.0,0.006197662330393617,0.003946101062367811,0.0004908536773391207,0.001732427954955213,0.0,2.8279635731471976e-05,0.003946101062367811,0.0004908536773391207,0.001732427954955213,0.0,2.8279635731471976e-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.0007385616434200696,0.0002650408390456853,0.0007385616434200696,0.00047024809199938385,5.849394163288361e-05,0.00020644958845915867,0.0,3.3700213286435e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00047024809199938385,5.849394163288361e-05,0.00020644958845915867,0.0,3.3700213286435e-06 +101784,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,547526.0,,33883.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02682990204732947,0.00576210150609586,0.0,0.03259202128378674,0.017454246501658326,0.007381805482540524,0.0027465216357732795,0.0,0.0050094299334531986,0.01593518005663388,0.007381805482540524,0.0027465216357732795,0.0,0.0007663948723817825,0.0015190664450244439,0.0,0.004243035061071416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038499046335118965,0.0,0.0,0.00319726860775228,0.0013119107504632147,0.00358225907110347,0.0018989652241025211,0.000879675777281106,0.0003272977810757385,0.0,9.13298252929137e-05,0.00010149527805306866,0.0,0.00028349518529812096,0.0,0.0,0.0,0.0019184337269362796,0.0008113500976420492,0.0003018760928652549,0.0,0.0005505972048777762 +101785,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,33071.0,,2205.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.00349813020129609,0.0008196066596270951,0.0,0.004317736860923185,0.0015593915662836999,0.000644502532601053,0.001683076534964188,0.0,0.00043080497549801637,0.0014100938894898646,0.000644502532601053,0.001443533779205172,0.0,0.0,0.00014929767679383498,0.00023954275575901576,0.00043080497549801637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.476249161786301e-05,0.0,0.0,0.0004168631378656017,0.0001632856951325812,0.00047162562948346474,0.00016803724550906214,7.680370158974006e-05,0.0001720221907667995,0.0,0.0,9.975410372713038e-06,1.6005187366756293e-05,2.878448287667364e-05,0.0,0.0,0.0,0.000170332063474222,7.039889702233213e-05,0.00018384215060794913,0.0,4.7056750862399355e-05 +101786,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,72397.0,,4237.0,,3.3063363735822096,Lodging,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,123987.61400933286,0.0,0.0,0.009933181559966572,0.001273608560391084,0.0,0.011206790120357657,0.003401460268039877,0.0020466235540961327,0.004065450282497354,0.0,0.0016932246777020905,0.003401460268039877,0.0020466235540961327,0.0027918417221062695,0.0,0.0016932246777020905,0.0,0.001273608560391084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.509605518752458e-05,0.0,0.0,0.0011837171793715958,0.0005300244110643638,0.0012688132345591205,0.00040534514847247644,0.00024389199432878358,0.0003326981379120884,0.0,0.00020177816416945096,0.0,8.509605518752458e-05,0.0,0.0,0.0,0.0,0.0003851073999392676,0.00023171514980729581,0.0004602831914826771,0.0,0.00019170394529365468 +101787,85.0,Rural Climate Zone 3A,G1300310110300,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,124493.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.011092175093785014,0.0,0.0,0.011092175093785014,0.0025968624160927164,0.0029062750267861556,0.005589006961299845,0.0,0.0,0.0025968624160927164,0.0029062750267861556,0.005589006961299845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013218334663683553,0.00040738877673844435,0.0013218334663683553,0.00030946316841580035,0.0003463352823405211,0.0006660313583898633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030946316841580035,0.0003463352823405211,0.0006660313583898633,0.0,0.0 +101788,50.0,the Greater Atlanta and Macon Area,G1301350050419,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,49032.0,,2477.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.005255061231969867,0.0009206238004009149,0.0,0.006175646283947011,0.0029684779967554904,0.0006872420440216604,0.0023800831817764137,0.0,0.0001398430613934468,0.002374774647719638,0.0006872420440216604,0.002053201478835123,0.0,0.0001398430613934468,0.0005937033490358523,0.0003268817029412904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.151009115366467e-05,0.0,0.0,0.0006262341216052376,0.0002154853066078533,0.0006877442127589023,0.0002829966864092332,8.189712712572258e-05,0.00024467551714804853,0.0,1.6664790922233467e-05,3.966739410987204e-05,2.1840108126281208e-05,0.0,0.0,0.0,0.0,0.0003305813625170773,7.653397179969564e-05,0.00026505540616962705,0.0,1.5573472272502343e-05 +101789,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,60089.0,,3981.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005353863197846846,0.0011718826164777807,0.0,0.006525745814324626,0.0021657348268225877,0.0018076485005409913,0.0025523317973547496,0.0,0.0,0.0009938522103448068,0.0018076485005409913,0.0025523317973547496,0.0,0.0,0.0011718826164777807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.829829577096598e-05,0.0,0.0,0.000638008436932442,0.0002899712614226316,0.0007163067327034078,0.00011843524420253249,0.00021541360915184552,0.0003041559263632602,0.0,0.0,7.829829577096598e-05,0.0,0.0,0.0,0.0,0.0,0.00023772461904629388,0.00019841882110339885,0.00028015992387031243,0.0,0.0 +101790,50.0,the Greater Atlanta and Macon Area,G1301210011419,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,102668.0,,10472.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005643910916869788,0.0017808906921143637,0.0,0.007424801608984151,0.003646106983142498,0.0020322894866892922,0.0009244078533572931,0.0,0.0008219972857950679,0.002881626989794082,0.0020322894866892922,0.0005711126717013208,0.0,0.00015888176868509318,0.0007644799933484167,0.0003532951816559721,0.0006631155171099748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011898814464447923,0.0,0.0,0.000672574036975187,0.0002933157104573236,0.0007915621816196662,0.0003433979604088738,0.00024218403948922273,6.805840149349473e-05,0.0,1.8933635583595865e-05,5.107784347974484e-05,2.3605007518551745e-05,4.430529364618264e-05,0.0,0.0,0.0,0.0003887134700680372,0.000216663499509529,9.855162947713628e-05,0.0,8.763358256496374e-05 +101791,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,59841.0,,6224.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005276866177519501,0.0018133038864337836,0.0,0.007090170063953283,0.005159229226897087,0.0012883265937516813,0.0006426142433045154,0.0,0.0,0.0033459253404633034,0.0012883265937516813,0.0006426142433045154,0.0,0.0,0.0018133038864337836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012115382668063547,0.0,0.0,0.0006288345354108551,0.0002780043024463146,0.0007499883620914906,0.000398727831293742,0.00015352753467401988,7.657916944309316e-05,0.0,0.0,0.00012115382668063547,0.0,0.0,0.0,0.0,0.0,0.0005457361167127838,0.00013627740141228568,6.797484396642136e-05,0.0,0.0 +101792,50.0,the Greater Atlanta and Macon Area,G1302110010300,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Propane,10807.0,,,918.0,3.20458438519356,Mercantile,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,9613.75315558068,0.0,0.0,0.0009529716823594636,0.0,8.653438479815494e-05,0.0010395060671576182,0.000654277705488612,0.00034030580810057143,4.4922553568434955e-05,0.0,0.0,0.000567743320690457,0.00034030580810057143,4.4922553568434955e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.653438479815494e-05,0.0,0.0,0.0,0.0,6.9798927404463756e-06,0.00011356410731012197,3.349319894395985e-05,0.00012054400005056834,6.765706115827249e-05,4.055369747578028e-05,5.3533486760691755e-06,0.0,0.0,0.0,0.0,0.0,6.9798927404463756e-06,0.0,0.0,7.587185323425937e-05,3.946280319561033e-05,5.209343620698652e-06,0.0,0.0 +101793,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,8535.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0025950171456445093,0.0,0.0,0.0025950171456445097,0.001418591728776601,0.0003644900739691279,0.0007385741684920152,0.0,7.336117440676569e-05,0.001418591728776601,0.0003644900739691279,0.0007385741684920152,0.0,7.336117440676569e-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.00030924218177111177,7.499010989900003e-05,0.00030924218177111177,0.0001690502900859928,4.343543775705285e-05,8.801417271851187e-05,0.0,8.742281209554315e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016905029008599279,4.343543775705284e-05,8.801417271851184e-05,0.0,8.742281209554314e-06 +101794,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,9722.0,,1488.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0023344071562919518,0.0011807261847023524,0.0,0.003515133340994305,0.0024008209365046153,0.0005966488299553637,0.0004334677734677102,0.0,8.427850814035425e-05,0.0013043732599426173,0.0005966488299553637,0.0004334677734677102,0.0,0.0,0.0010964476765619982,0.0,8.427850814035425e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.888761885013572e-05,0.0,0.0,0.0002781890362862403,0.0001409668357366002,0.00035707665513637604,0.0001554408960591779,7.110206227702171e-05,5.165593407178691e-05,0.0,0.0,7.325673599721556e-05,0.0,5.630882852920167e-06,0.0,0.0,0.0,0.0002438818179642531,6.060918543455016e-05,4.403281686477369e-05,0.0,8.561236478764432e-06 +101795,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,108298.0,,4632.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009649241874485922,0.0013633243805628505,0.0,0.011012566255048773,0.0029575880485159145,0.0032194010798416175,0.004835546437084943,0.0,0.0,0.0015942636679530642,0.0032194010798416175,0.004835546437084943,0.0,0.0,0.0013633243805628505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.109039236220806e-05,0.0,0.0,0.0011498798577578026,0.00045835776550486214,0.0012409702501200107,0.0001899850479011823,0.0003836492549266541,0.0005762418977141369,0.0,0.0,9.109039236220806e-05,0.0,0.0,0.0,0.0,0.0,0.000333280971511621,0.00036278382992302737,0.0005449019903735101,0.0,0.0 +101796,50.0,the Greater Atlanta and Macon Area,G1301130140204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,103567.0,,6279.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.011766850092139697,0.002333662570097458,0.0,0.014100512662237153,0.007578067985530004,0.001750963773412877,0.004498963238905216,0.0,0.0002725176643890582,0.006108030284464727,0.001750963773412877,0.003907856034262093,0.0,0.0,0.0014700377010652768,0.0005911072046431229,0.0002725176643890582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015592184161490052,0.0,0.0,0.0014022342814344836,0.0005614694743990462,0.0015581561230493843,0.0007278829414711284,0.00020865919166162763,0.0004656921483017275,0.0,0.0,9.8219420635375e-05,3.949436611820986e-05,1.820805486131563e-05,0.0,0.0,0.0,0.0008374031012475747,0.0001934876404946306,0.0004971512232209895,0.0,3.0114158086189626e-05 +101797,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,28841.0,,1145.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.007264079579449632,0.0009079582555101168,0.0,0.008172037834959749,0.003480313662950056,0.0023727005314332513,0.002176850180818571,0.0,0.00014217345975786947,0.002572355407439939,0.0023727005314332513,0.002176850180818571,0.0,0.00014217345975786947,0.0009079582555101168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.066461535200931e-05,0.0,0.0,0.0008656414582677318,0.00029682611027844375,0.000926306073619741,0.00030654089919096187,0.0002827485472313779,0.0002594095706612474,0.0,1.694244118414454e-05,6.066461535200931e-05,0.0,0.0,0.0,0.0,0.0,0.00039449593225094064,0.0002689472268159455,0.0002467474557234971,0.0,1.6115458829357586e-05 +101798,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970400,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,102466.0,,13677.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011663067202833574,0.0023258333503596864,0.0,0.013988900553193259,0.005602865130182366,0.004232733721086365,0.0021034591574293844,0.0,0.0020498780052179842,0.0049758840896464585,0.004232733721086365,0.0021034591574293844,0.0,0.00035102569539420547,0.0006269810405359072,0.0,0.001698852309823779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001553983314660887,0.0,0.0,0.00138986598558229,0.0004925540366927369,0.0015452643170483786,0.0005929668348922397,0.0005044069902586019,0.0002506653082014657,0.0,4.183107801824588e-05,4.189113873746992e-05,0.0,0.00011350719272861879,0.0,0.0,0.0,0.0006189126533556692,0.00046756300524769366,0.00023235567126841174,0.0,0.00022643690429571245 +101799,85.0,Rural Climate Zone 3A,G1302370960202,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,39625.0,,4221.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.002039718508124294,0.0007178314124522577,0.0,0.0027575499205765527,0.0008544615775551846,0.0003304762065083642,0.0012654868159948489,0.0,0.0003071075901567346,0.0008544615775551846,0.0003304762065083642,0.000547655403542591,0.0,0.0003071075901567346,0.0,0.0007178314124522577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.796171096941162e-05,0.0,0.0,0.00024306830948765164,0.00010557836494848507,0.00029103002045706325,0.00010182411462721037,3.9382048317907004e-05,6.526276669582659e-05,0.0,3.6597266962523053e-05,0.0,4.7961710969411616e-05,0.0,0.0,0.0,0.0,9.017931771246657e-05,3.487824333587867e-05,0.00013355865335345265,0.0,3.241193480448277e-05 +101801,50.0,the Greater Atlanta and Macon Area,G1300670031311,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,39256.0,,2027.0,,3.3063363735822096,Lodging,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,57860.88653768867,0.0,0.0,0.004038217541202114,0.00060939917977818,0.0,0.004647616720980293,0.0013589733328746676,0.0004645861791736872,0.0020237467978872427,0.0,0.0008002790730224924,0.0013589733328746676,0.0004645861791736872,0.0014143476181090625,0.0,0.0008002790730224924,0.0,0.00060939917977818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.071684665938564e-05,0.0,0.0,0.0004812268737515352,0.00022503733258095012,0.0005219437204109208,0.0001619463245400848,5.536387089373358e-05,0.00016854517512148291,0.0,9.536776870241312e-05,0.0,4.071684665938564e-05,0.0,0.0,0.0,0.0,0.00015261748975509815,5.2174663567838805e-05,0.00022727389031257296,0.0,8.987415740518717e-05 +101802,50.0,the Greater Atlanta and Macon Area,G1301170130613,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,10122.0,,807.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002289828043546465,0.0006405662861109359,0.0,0.0029304770367311406,0.0014930280951419776,0.00036349758908425615,0.0010052217742275423,0.0,6.856416412988585e-05,0.0009210259731609275,0.00036349758908425615,0.0010052217742275423,0.0,0.0,0.0005720021219810501,0.0,6.856416412988585e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.28005884603201e-05,0.0,0.0,0.00027287780488064047,0.0001342700018706598,0.00031567839334096056,0.00010975826176229188,4.331784845952522e-05,0.00011979183849307607,0.0,0.0,3.821935052183006e-05,0.0,4.581237938490041e-06,0.0,0.0,0.0,0.00016083276012054132,3.9156879056601994e-05,0.00010828503027393414,0.0,7.385905059823219e-06 +101803,50.0,the Greater Atlanta and Macon Area,G1300590130400,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,12872.0,,98.0,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002853394044006106,7.807547760990619e-05,0.0,0.0029314695216160133,0.001088507797483025,0.000791506695685172,0.0009732968437641697,0.0,7.807547760990619e-05,0.001088507797483025,0.000791506695685172,0.0009732968437641697,0.0,0.0,0.0,0.0,7.807547760990619e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.215107595019922e-06,0.0,0.0,0.0003400363891068451,0.00011608212700884739,0.000345251496701865,0.00012971649034884604,9.432313750007267e-05,0.00011598690513070587,0.0,0.0,0.0,0.0,5.215107595019922e-06,0.0,0.0,0.0,0.00012819814208591703,9.321907300070101e-05,0.00011462926343492679,0.0,9.195277420340829e-06 +101804,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302290960400,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,23018.0,,601.0,,3.3063363735822096,Lodging,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24797.522801866573,0.0,0.0,0.0021152851607450056,0.0001805696839392098,0.0,0.0022958548446842153,0.000938573765008562,0.0004172030896013017,0.0006438083281581268,0.0,0.0002962696619162252,0.000938573765008562,0.0004172030896013017,0.00046323864421891697,0.0,0.0002962696619162252,0.0,0.0001805696839392098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2064250862029227e-05,0.0,0.0,0.00025207425767766114,0.00010262295371736002,0.00026413850853969036,0.00011184793874643997,4.971724903276646e-05,5.520321304006263e-05,0.0,3.530585685839211e-05,0.0,1.2064250862029229e-05,0.0,0.0,0.0,0.0,0.00010798307872897896,4.79992897201635e-05,7.4070262751524e-05,0.0,3.408587733902394e-05 +101805,50.0,the Greater Atlanta and Macon Area,G1301210009900,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,23347.0,,16753.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004799070140538598,0.011524323542643463,0.0,0.016323393683182058,0.004821446771495468,0.000473710408558111,0.009192994164810009,0.0003743782487014897,0.001460935809587997,0.002892466431059594,0.000473710408558111,0.0008697480885063152,0.0003743782487014897,0.0001887669637130883,0.0019289803404358744,0.008323246076303694,0.0012721688458749087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007699902142427552,0.0,0.0,0.0005718951572172335,0.000939651999745568,0.0013418853714599888,0.00034468917850630703,5.6451079197474776e-05,0.00010364606168475042,4.461387334001792e-05,2.2494964488683366e-05,0.0001288835722206375,0.0005561122963767633,8.499913756877113e-05,0.0,0.0,0.0,0.00039635317370361557,3.8941967576717064e-05,0.0007557217959146126,3.077624084034263e-05,0.00012009808925627955 +101806,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,54531.0,,1649.0,,3.20458438519356,Mercantile,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.004808657142186555,0.0004803888487074828,0.0,0.005289045990894039,0.0029728160449699597,0.0018345046588413348,0.00048172528708274393,0.0,0.0,0.002492427196262477,0.0018345046588413348,0.00048172528708274393,0.0,0.0,0.0004803888487074828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.209623886823885e-05,0.0,0.0,0.0005730387297865964,0.00017302436973889123,0.0006051349686548352,0.0002970179142325734,0.00021861450887555254,5.740630667847054e-05,0.0,0.0,3.209623886823885e-05,0.0,0.0,0.0,0.0,0.0,0.00034012843663804097,0.00020989095597511522,5.5115576041678973e-05,0.0,0.0 +101807,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,50338.0,,3988.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00422267499931982,0.0011738160616745358,0.0,0.005396491060994355,0.0019573524000611854,0.001317351350328892,0.0021217873106042775,0.0,0.0,0.0007835363383866497,0.001317351350328892,0.0021217873106042775,0.0,0.0,0.0011738160616745358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.842762232094166e-05,0.0,0.0,0.0005032071858504324,0.00022654106974181182,0.000581634808171374,9.337235660206104e-05,0.0001569859546098261,0.0002528488746385451,0.0,0.0,7.842762232094166e-05,0.0,0.0,0.0,0.0,0.0,0.00021096380497359578,0.00014198437304585525,0.000228686630151923,0.0,0.0 +101808,35.0,Eastern Counties in South Carolina and Georgia,G1300510010808,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,49274.0,,822.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004390209560098979,0.00024195685605108867,0.0,0.004632166416150068,0.0011542667824628993,0.0014099418925290611,0.0020679577411581067,0.0,0.0,0.0009123099264118107,0.0014099418925290611,0.0020679577411581067,0.0,0.0,0.00024195685605108867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6165963723066676e-05,0.0,0.0,0.0005231735633901541,0.0001704411950506843,0.0005393395271132208,0.00010871837177319514,0.00016802029925670704,0.00024643489236025185,0.0,0.0,1.6165963723066676e-05,0.0,0.0,0.0,0.0,0.0,0.00013439536594487297,0.00016416452373612384,0.00024077963743222397,0.0,0.0 +101809,50.0,the Greater Atlanta and Macon Area,G1300450910400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,306575.0,,10042.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.015781014564086517,0.0017077884119794857,0.0,0.017488802976066007,0.00862280666941428,0.0038616549869260803,0.0026753519650331873,0.0,0.002328971624331036,0.007384961486873292,0.0038616549869260803,0.002205426465956108,0.0,0.002328971624331036,0.0012378451825409862,0.00046992549907707947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011410388908896303,0.0,0.0,0.0018805940779837629,0.0006419763863162798,0.001994697967072726,0.0008800520892970858,0.0004601862237778135,0.0002628165593829672,0.0,0.00027753920552589636,8.270518082169803e-05,3.1397523633865e-05,0.0,0.0,0.0,0.0,0.0009834803992863558,0.0004404438292603151,0.0003051391872364804,0.0,0.00026563252904048543 +101810,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Propane,55366.0,,,10146.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005237441245449298,0.0,0.0009562520310987407,0.006193693276548039,0.00392596996892605,0.0015303130604722502,0.0007374102471497387,0.0,0.0,0.002969717937827309,0.0015303130604722502,0.0007374102471497387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009562520310987407,0.0,0.0,0.0,0.0,7.712031358769992e-05,0.0006241375487451414,0.00022517331240456154,0.0007012578623328414,0.00035389656653246295,0.0001823649751117904,8.787600710088813e-05,0.0,0.0,0.0,0.0,0.0,7.712031358769992e-05,0.0,0.0,0.00044450333348221944,0.00017326399896975506,8.349052988086682e-05,0.0,0.0 +101811,50.0,the Greater Atlanta and Macon Area,G1300890023214,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,74902.0,,5273.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006094250111988839,0.0015361447915642982,0.0,0.007630425277152575,0.005721474926089311,0.001380540841644696,0.0005284095094185685,0.0,0.0,0.004185330134525012,0.001380540841644696,0.0005284095094185685,0.0,0.0,0.0015361447915642982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000102637095413168,0.0,0.0,0.0007262408916028498,0.0002787932861987245,0.0008288779870160177,0.0004987583103243805,0.00016451658420743676,6.296961663858085e-05,0.0,0.0,0.00010263709541316798,0.0,0.0,0.0,0.0,0.0,0.0006215124907519228,0.0001499654176867675,5.74000785773276e-05,0.0,0.0 +101812,35.0,Eastern Counties in South Carolina and Georgia,G1300730030505,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,174884.0,,1675.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,240343.828889517,0.0,0.0,0.013836845091865032,0.00048783038056973195,0.0,0.014324675472434763,0.008512504978424325,0.004896619086158284,0.000915551407852153,0.0,0.0,0.008024674597854591,0.004896619086158284,0.000915551407852153,0.0,0.0,0.00048783038056973195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2593494946807414e-05,0.0,0.0,0.0016489094969457585,0.0004592588579180626,0.0016815029918925658,0.0009562846202622567,0.0005835204239468704,0.00010910445273663112,0.0,0.0,3.2593494946807414e-05,0.0,0.0,0.0,0.0,0.0,0.0009992409683043206,0.0005747899601200472,0.00010747206346819786,0.0,0.0 +101813,50.0,the Greater Atlanta and Macon Area,G1301350050542,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,193867.0,,35684.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008799294686989487,0.006068358038904431,0.0,0.014867652725893918,0.007296735208447112,0.0025621790680889905,0.001820996769646523,0.0,0.003187741679711293,0.004675815452973485,0.0025621790680889905,0.001134282141486458,0.0,0.0004270180244405517,0.0026209197554736253,0.0006867146281600649,0.0027607236552707414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004054526070502621,0.0,0.0,0.001048594852372196,0.0006562141667520713,0.0014540474594224577,0.0005572078432467916,0.00030532990168250694,0.00013517019909096173,0.0,5.088690835193551e-05,0.00017511470828081971,4.588230201679347e-05,0.0001844555967526489,0.0,0.0,0.0,0.0007136162975775322,0.00025057956580137967,0.0001780923845436287,0.0,0.00031175921149991724 +101814,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,94813.0,,6944.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008598920788553344,0.0020441119170647912,0.0,0.010643002016011838,0.0034162135250287847,0.0028218172302548776,0.004405001950334471,0.0,0.0,0.0013721016079639935,0.0028218172302548776,0.004405001950334471,0.0,0.0,0.0020441119170647912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013657460863422316,0.0,0.0,0.0010247152151050723,0.0004166761171654417,0.0011612898237392953,0.00016351044845330906,0.00033626999494366705,0.000524934771708096,0.0,0.0,0.00013657460863422316,0.0,0.0,0.0,0.0,0.0,0.00037275328862740125,0.00030789692880046416,0.0004806429549462824,0.0,0.0 +101815,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,46568.0,,3078.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0038369066481576952,0.0009061413155459723,0.0,0.004743017274097369,0.002380071037205744,0.0013155099739510297,0.001047436262940596,0.0,0.0,0.0014739297216597718,0.0013155099739510297,0.001047436262940596,0.0,0.0,0.0009061413155459723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.054217395383696e-05,0.0,0.0,0.00045723494751849904,0.0001931200541570707,0.000517777121472336,0.00017564466397759578,0.00015676616322900954,0.0001248204631052396,0.0,0.0,6.054217395383696e-05,0.0,0.0,0.0,0.0,0.0,0.00025982328533235026,0.0001436092108077211,0.0001143446253322646,0.0,0.0 +101816,50.0,the Greater Atlanta and Macon Area,G1301210009102,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,2637.0,,489.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0006332053565481377,0.0003880615899848304,0.0,0.0010212669465329682,0.0006475136803050377,0.00020883536119175125,0.00013762457070220753,0.0,2.7376041407710753e-05,0.00028682813172791816,0.00020883536119175125,0.00013762457070220753,0.0,0.0,0.00036068554857711957,0.0,2.7376041407710753e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.592891490148814e-05,0.0,0.0,7.546088275662036e-05,4.380684258225542e-05,0.0001013897976581085,3.418212400730923e-05,2.4887503782715045e-05,1.6401111403737754e-05,0.0,0.0,2.4099743794840102e-05,0.0,1.8291711066480336e-06,0.0,0.0,0.0,6.428415337425748e-05,2.0732850590113698e-05,1.366315381463334e-05,0.0,2.717850909040647e-06 +101817,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,57212.0,,11050.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011912687185692997,0.0076010976881475045,0.0,0.019513784873840503,0.008822990834340471,0.001205182392946328,0.005331160605503417,0.0003683537711361784,0.003786168989885123,0.008822990834340471,0.001205182392946328,0.0011080018322201753,0.0003683537711361784,0.00040823007502085816,0.0,0.004223158773283241,0.0033779389148642647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005078601782921562,0.0,0.0,0.0014196127626802891,0.0009921950162493833,0.001927472940972445,0.0010514193983439443,0.00014361934295050916,0.0001320385163795773,4.389603340834416e-05,4.864801833339076e-05,0.0,0.00028216637327265056,0.00022569380501950563,0.0,0.0,0.0,0.0008714903952045153,0.00011904181922465192,0.000526585071913,3.638412184823924e-05,0.00037397861691791233 +101818,46.0,the Tallahassee-Valdosta Area,G1301850011200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,50738.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.004353539128211282,0.0,0.0,0.004353539128211282,0.002682444434345052,0.0015044043801518477,0.00016672068731381974,0.0,0.0,0.002682444434345052,0.0015044043801518477,0.00016672068731381974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000518803993960323,0.00016882539245602056,0.000518803993960323,0.0003196624275401054,0.00017927735986028896,1.986782613109481e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003196624275401054,0.00017927735986028896,1.986782613109481e-05,0.0,0.0 +101819,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,100174.0,,4426.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009034928025224806,0.0013027124081248878,0.0,0.010337640433349695,0.0029331284322966457,0.0026765633236478506,0.0047279179877989,0.0,0.0,0.0016304160241717581,0.0026765633236478506,0.0047279179877989,0.0,0.0,0.0013027124081248878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.703947687837296e-05,0.0,0.0,0.0010766757435824172,0.0003826666238193079,0.0011637152204607905,0.00019429367674792712,0.0003189611249462357,0.0005634172846643576,0.0,0.0,8.703947687837296e-05,0.0,0.0,0.0,0.0,0.0,0.0003301842642174281,0.000301302555291803,0.0005322249462016877,0.0,0.0 +101820,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,81279.0,,3658.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0068230360305304725,0.0010768062161674973,0.0,0.00789984224669797,0.0025466235305833763,0.002854716488206015,0.0024985022279085793,0.0,0.0,0.0014698173144158794,0.002854716488206015,0.0024985022279085793,0.0,0.0,0.0010768062161674973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.194687416719975e-05,0.0,0.0,0.000813087179538428,0.000289044664000692,0.0008850340537056278,0.0001751551082637679,0.00034019069625179936,0.0002977413750228609,0.0,0.0,7.194687416719975e-05,0.0,0.0,0.0,0.0,0.0,0.0002853029815217414,0.00031981920990806066,0.0002799118622758258,0.0,0.0 +101821,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,130208.0,,6303.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011568078818643492,0.0018554015279402172,0.0,0.013423449656977409,0.006740757196046333,0.0026006065480610363,0.00408211660247634,0.0,0.0,0.004885355668106116,0.0026006065480610363,0.00408211660247634,0.0,0.0,0.0018554015279402172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012396625089965794,0.0,0.0,0.0013785448153488674,0.0005311814505479373,0.0015025110662485253,0.0005821780637031152,0.00030990908082455915,0.00048645767082119306,0.0,0.0,0.00012396625089965794,0.0,0.0,0.0,0.0,0.0,0.0007545051786810632,0.00029109060765084526,0.0004569187150599119,0.0,0.0 +101822,46.0,the Tallahassee-Valdosta Area,G1301850011402,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,115964.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.010071101202654146,0.0,0.0,0.010071101202654146,0.0023276225000429694,0.0030155914044185726,0.0047279179877989,0.0,0.0,0.0023276225000429694,0.0030155914044185726,0.0047279179877989,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.7817775116079753e-10,0.0,0.0,0.0012001539140705857,0.0003389535300061395,0.0012001542922483372,0.0002773783320903507,0.00035936227373991285,0.0005634169654621469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027737841949440167,0.00035936238697773594,0.0005634171429991767,0.0,0.0 +101823,50.0,the Greater Atlanta and Macon Area,G1300670030239,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,39843.0,,1506.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0020509418269031884,0.0002560973403512427,0.0,0.0023070391672544307,0.0014686058364229736,0.0006260413313806445,0.00013661243474150686,0.0,7.577956470930568e-05,0.001288288060781037,0.0006260413313806445,0.00013661243474150686,0.0,0.0,0.00018031777564193698,0.0,7.577956470930568e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.711068766036272e-05,0.0,0.0,0.0002444063587155965,9.520281871548575e-05,0.00026151704637595924,0.00015352253768586926,7.460400885150507e-05,1.627981217822217e-05,0.0,0.0,1.2047611015362008e-05,0.0,5.063076645000711e-06,0.0,0.0,0.0,0.00016647548341751874,7.096562651200254e-05,1.5485857777761464e-05,0.0,8.590078668676507e-06 +101824,50.0,the Greater Atlanta and Macon Area,G1300570090701,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,15620.0,,620.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003803863735418227,0.0004919416746014004,0.0,0.004295805410019627,0.0021607223014394063,0.001082801009395013,0.0009716427022893835,0.0,8.055668982208543e-05,0.001668780626838006,0.001082801009395013,0.0009716427022893835,0.0,8.055668982208543e-05,0.0004919416746014004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2867375992730015e-05,0.0,0.0,0.00045330051766019933,0.0001883528656742305,0.00048616789365292935,0.00019886598853778576,0.00012903571006277897,0.00011578914770986306,0.0,9.599815276592324e-06,3.2867375992730015e-05,0.0,0.0,0.0,0.0,0.0,0.00024453477515754294,0.00012254351297081542,0.00010996342731294983,0.0,9.11681802884007e-06 +101825,50.0,the Greater Atlanta and Macon Area,G1300670031116,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7136.0,,911.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006137593238386511,0.0002652526438898866,0.0,0.0008789815941291,0.0006250886764289325,0.0001924167524381578,6.144579166257194e-05,0.0,0.0,0.0003598360325390459,0.0001924167524381578,6.144579166257194e-05,0.0,0.0,0.0002652526438898866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7721837179283046e-05,0.0,0.0,7.313893119101834e-05,3.517870076138703e-05,9.086076837030138e-05,4.2880037502845274e-05,2.2929436784040245e-05,7.322217934350973e-06,0.0,0.0,1.7721837179283046e-05,0.0,0.0,0.0,0.0,0.0,6.461573008952633e-05,1.989021623504127e-05,6.351682311521466e-06,0.0,0.0 +101826,85.0,Rural Climate Zone 3A,G1303030950300,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,88147.0,,3673.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.006955979501637296,0.0010699404137942455,0.0,0.00802591991543154,0.0049222544040837465,0.0022989777414434355,0.0008046877699043591,0.0,0.0,0.0038523139902895014,0.0022989777414434355,0.0008046877699043591,0.0,0.0,0.0010699404137942455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.148645360530283e-05,0.0,0.0,0.000828931583905581,0.00025398613917411797,0.0009004180375108837,0.0004590733392645373,0.0002739650483630408,9.589319627800291e-05,0.0,0.0,7.148645360530283e-05,0.0,0.0,0.0,0.0,0.0,0.000552221639058815,0.00025791947191643503,9.027692653563369e-05,0.0,0.0 +101827,50.0,the Greater Atlanta and Macon Area,G1300630040415,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,183913.0,,6239.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.016217710057392646,0.001817556190355069,0.0,0.018035266247747716,0.011362945791259583,0.005116068342096041,0.0015562521143920901,0.0,0.0,0.009545389600904513,0.005116068342096041,0.0015562521143920901,0.0,0.0,0.001817556190355069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012143806517746385,0.0,0.0,0.001932634569152782,0.0006012305603990346,0.0020540726343302456,0.001137506457659869,0.0006096724199096085,0.0001854556915833043,0.0,0.0,0.00012143806517746385,0.0,0.0,0.0,0.0,0.0,0.001294148679292114,0.0005826792813871072,0.00017724467365102416,0.0,0.0 +101828,50.0,the Greater Atlanta and Macon Area,G1301590010100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,15300.0,,2053.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0013632016221376598,0.0006042783480017678,0.0,0.0019675106597457255,0.0010617069298690276,0.00042956241934894585,0.0004762413105277518,0.0,0.0,0.00045742858186726006,0.00042956241934894585,0.0004762413105277518,0.0,0.0,0.0006042783480017678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.037465615831967e-05,0.0,0.0,0.0001624515336972537,9.061791371773298e-05,0.00020282618985557337,5.451136022327307e-05,5.1190574239862674e-05,5.675325648740365e-05,0.0,0.0,4.037465615831967e-05,0.0,0.0,0.0,0.0,0.0,0.00010944894771570051,4.428261081591734e-05,4.909463132395551e-05,0.0,0.0 +101829,35.0,Eastern Counties in South Carolina and Georgia,G1300510004208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,40888.0,,2127.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.006359546303169316,0.0007906228386455771,0.0,0.007150169141814894,0.003804862723875898,0.0009128353672227264,0.002249500993664494,0.0,0.00018297005705177492,0.0035003388614510992,0.0009128353672227264,0.0019463720744954905,0.0,0.0,0.00030452386242479863,0.00030312891916900366,0.00018297005705177492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.282559379625871e-05,0.0,0.0,0.0007578547965769775,0.0002609828547511261,0.0008106803903732362,0.00041712859209366864,0.00010878081997611828,0.00023194538450719066,0.0,0.0,2.0346811490139054e-05,2.025360812919682e-05,1.2225174176922841e-05,0.0,0.0,0.0,0.0004313922562012787,0.00010349653514053528,0.0002550466020480786,0.0,2.0744996983343562e-05 +101830,50.0,the Greater Atlanta and Macon Area,G1302070050200,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,7551.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018131871775868367,0.0,0.0,0.0018131871775868363,0.0010343346641837785,0.00034546744700908715,0.0003816931453069037,0.0,5.1691921087067136e-05,0.0010343346641837785,0.00034546744700908715,0.0003816931453069037,0.0,5.1691921087067136e-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.0002160779722226131,7.286287105988902e-05,0.0002160779722226131,0.0001232619222102814,4.116944259334284e-05,4.548646817531175e-05,0.0,6.160139243677106e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012326192221028142,4.116944259334285e-05,4.5486468175311756e-05,0.0,6.160139243677107e-06 +101831,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,657226.0,,19768.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.030891626432519415,0.0033616942556034314,0.0,0.03425332068812285,0.01606734217065895,0.008176834888615692,0.0035965151622506107,0.0,0.006412628466597598,0.013478248413934323,0.008176834888615692,0.00282391466337181,0.0,0.006412628466597598,0.00258909375672463,0.0007726004988788008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022460892043184871,0.0,0.0,0.003681296107996875,0.001082803799273131,0.0039059050284287237,0.0016061771152521623,0.0009744177930206522,0.0003365205157551206,0.0,0.0007641806839689412,0.00017298823431828489,5.162068611356378e-05,0.0,0.0,0.0,0.0,0.0018321584978364595,0.0009324042126855678,0.00041011050534220915,0.0,0.0007312318125644877 +101832,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7702.0,,140.0,2938.0,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0008664535039675433,5.2077881549679266e-05,0.00035330812795385084,0.0012718395134710733,0.0007152571544088763,0.00016080595865414357,0.00035683423451711037,0.0,3.890341746717112e-05,0.0003619490264550253,0.00016080595865414357,0.00030475635296743116,0.0,3.890341746717112e-05,0.0,5.2077881549679266e-05,0.0,0.0,0.0,0.0,0.0,0.00035330812795385084,0.0,0.0,3.4796315337988923e-06,0.0,2.8493978258999048e-05,0.00010325229539531268,5.968710720708541e-05,0.0001352259051881106,4.313222536056597e-05,1.9162695133963043e-05,3.631677041653478e-05,0.0,4.635986967349132e-06,0.0,3.4796315337988923e-06,0.0,2.8493978258999048e-05,0.0,0.0,7.60483497507033e-05,1.709738617830969e-05,3.793971790748288e-05,0.0,4.136331499523598e-06 +101833,35.0,Eastern Counties in South Carolina and Georgia,G1302450010511,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13368.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003065124152778733,0.0,0.0,0.003065124152778733,0.001880593442684372,0.00045124979432166126,0.0006627317818730704,0.0,7.063184097336853e-05,0.001880593442684372,0.00045124979432166126,0.0006627317818730704,0.0,7.063184097336853e-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.0003652653853842669,0.0001071469658483339,0.0003652653853842669,0.00022410697066560875,5.377463417853643e-05,7.897656592239964e-05,0.0,8.417070672373553e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00022410697066560875,5.377463417853643e-05,7.897656592239964e-05,0.0,8.417070672373553e-06 +101834,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,179108.0,,16324.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.017788555119124867,0.004804979589212431,0.0,0.0225935347083373,0.007434465056799604,0.005131885275495562,0.010027184376042135,0.0,0.0,0.0026294854675871747,0.005131885275495562,0.010027184376042135,0.0,0.0,0.004804979589212431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003210410431521217,0.0,0.0,0.002119827826793739,0.0009585943894616517,0.0024408688699458607,0.00031335071494076815,0.0006115568767703118,0.0011949202350826594,0.0,0.0,0.0003210410431521217,0.0,0.0,0.0,0.0,0.0,0.0008031746495667247,0.0005544178533723768,0.0010832763670067594,0.0,0.0 +101836,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,22422.0,,328.0,,4.088175128053588,Healthcare,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,30661.31346040191,0.0,0.0,0.0024811778193977773,0.00012182504433942827,0.0,0.002602964115313433,0.001319383829439419,0.00038531432598959127,0.0008337110858801334,0.0,6.455487400428994e-05,0.001319383829439419,0.00038531432598959127,0.000711886041540705,0.0,6.455487400428994e-05,0.0,0.00012182504433942827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.138625442521422e-06,0.0,0.0,0.00029567526962321304,8.582459586075957e-05,0.0003038138950657344,0.00015722741290694493,4.591686913206051e-05,8.48335397922582e-05,0.0,7.692830246783268e-06,0.0,8.138625442521422e-06,0.0,0.0,0.0,0.0,0.00015399641429957514,4.497328469295081e-05,9.730945227811039e-05,0.0,7.5347437950981565e-06 +101837,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock 90.1-2004,gen5_led,50001_100000,Electricity,117460.0,,12423.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010357761891466626,0.003619075120207005,0.0,0.013976806638074192,0.010061497802550792,0.002947241474243373,0.000968067361280026,0.0,0.0,0.006442422682343788,0.002947241474243373,0.000968067361280026,0.0,0.0,0.003619075120207005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024180471353905779,0.0,0.0,0.0012343137679080675,0.0005361217888728616,0.0014761184814471254,0.0007677306254791871,0.00035121687166851466,0.00011536265119927134,0.0,0.0,0.00024180471353905779,0.0,0.0,0.0,0.0,0.0,0.001062614890652251,0.00031126406210464327,0.00010223952869023102,0.0,0.0 +101838,50.0,the Greater Atlanta and Macon Area,G1301350050424,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,26545.0,,5471.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002153518573736042,0.0015938546304960267,0.0,0.003747373204232069,0.0028799032042898767,0.0006806723634000184,0.00018679763654217367,0.0,0.0,0.00128604857379385,0.0006806723634000184,0.00018679763654217367,0.0,0.0,0.0015938546304960267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010649219488841073,0.0,0.0,0.0002566299365606943,0.0001690384270061085,0.00036312213144910503,0.00015325549913141365,8.111418567192508e-05,2.2260251757355608e-05,0.0,0.0,0.00010649219488841073,0.0,0.0,0.0,0.0,0.0,0.00027906390234306785,6.595745498131276e-05,1.8100774124724382e-05,0.0,0.0 +101839,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,21617.0,,1272.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005098560267733346,0.0010094398349882472,0.0,0.006108000102721592,0.0033947118416298738,0.0007446117848749848,0.001849909118327089,0.0,0.00011893277203712407,0.0023852720066416264,0.0007446117848749848,0.001849909118327089,0.0,0.00011893277203712407,0.0010094398349882472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.744515549095608e-05,0.0,0.0,0.000607588834128379,0.0002596709293079209,0.0006750339896193351,0.0002842497806226268,8.873442354179989e-05,0.0002204512775029921,0.0,1.4173064651017243e-05,6.744515549095608e-05,0.0,0.0,0.0,0.0,0.0,0.00037517122454571524,8.229179034194357e-05,0.0002044452376516996,0.0,1.3144018050840257e-05 +101840,50.0,the Greater Atlanta and Macon Area,G1301350050540,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,NaturalGas,24202.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002134200964493632,0.0,0.0,0.002134200964493632,0.0012719248500552953,0.0006878405328673278,0.00017443558157100874,0.0,0.0,0.0012719248500552953,0.0006878405328673278,0.00017443558157100874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025432965314431936,6.955877739918219e-05,0.00025432965314431936,0.000151573451292557,8.196896499119416e-05,2.0787236860568224e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000151573451292557,8.196896499119416e-05,2.0787236860568224e-05,0.0,0.0 +101841,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7515.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001435629385966898,0.0,0.0,0.0014356293859668979,0.0006869649544786875,0.0004060917320599994,0.0002888131014976615,0.0,5.375959793054982e-05,0.0006869649544786875,0.0004060917320599994,0.0002888131014976615,0.0,5.375959793054982e-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.00017108543761875424,4.631905048997437e-05,0.00017108543761875424,8.186632358920226e-05,4.839437139693993e-05,3.4418155787803313e-05,0.0,6.406586844808749e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.186632358920227e-05,4.839437139693994e-05,3.4418155787803313e-05,0.0,6.4065868448087495e-06 +101842,50.0,the Greater Atlanta and Macon Area,G1301210011417,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,9571.0,,1285.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0022734520429460825,0.001019447390910703,0.0,0.0032928994338567857,0.002051714378250999,0.0007106191775681295,0.0004383474908183294,0.0,9.213568014558846e-05,0.0011244026674858845,0.0007106191775681295,0.0004383474908183294,0.0,0.0,0.0009273117107651147,0.0,9.213568014558846e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.811404429448921e-05,0.0,0.0,0.000270919654370471,0.00013042623523863285,0.00033903369866496023,0.00013399129442544214,8.468210383989694e-05,5.2236400180569576e-05,0.0,0.0,6.195802893313428e-05,0.0,6.15601536135494e-06,0.0,0.0,0.0,0.0002112425017024581,7.316465411486761e-05,4.513182807364971e-05,0.0,9.486199334725616e-06 +101843,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950500,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,18612.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004390339595303655,0.0,0.0,0.004390339595303655,0.0025301747998328927,0.0005881300013602152,0.0011989217409250003,0.0,7.319576025928708e-05,0.0025301747998328927,0.0005881300013602152,0.0011989217409250003,0.0,7.319576025928708e-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.00052319035036644,0.0001643124562304519,0.00052319035036644,0.00030151723147542786,7.008659234511532e-05,0.00014287375089787533,0.0,8.722631729071446e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00030151723147542786,7.008659234511532e-05,0.00014287375089787533,0.0,8.722631729071446e-06 +101844,50.0,the Greater Atlanta and Macon Area,G1301210000600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,44615.0,,1519.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003956841629569118,0.00044714756375752954,0.0,0.004404019882932945,0.0015430120254359006,0.0015983146959843608,0.0012626931615126835,0.0,0.0,0.0010958644616783709,0.0015983146959843608,0.0012626931615126835,0.0,0.0,0.00044714756375752954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.987629946239216e-05,0.0,0.0,0.00047153038088481084,0.00017564575162725828,0.000501406680347203,0.00013059238538935418,0.00019046856253717836,0.0001504730901887417,0.0,0.0,2.987629946239216e-05,0.0,0.0,0.0,0.0,0.0,0.00017567507821839885,0.00018197140048558435,0.00014376020164321977,0.0,0.0 +101845,50.0,the Greater Atlanta and Macon Area,G1300970080303,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,98631.0,,,,7.614023970037612,Education,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,571051.7977528209,0.0,0.0,0.025894321593770166,0.0,0.0,0.025894321593770166,0.017544380562519765,0.0056821427018878675,0.0008576328981563126,0.0007693726293541272,0.0010407928018520984,0.017544380562519765,0.0056821427018878675,0.0008576328981563126,0.0007693726293541272,0.0010407928018520984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00308577700678771,0.0008341446114369488,0.00308577700678771,0.002090730430689547,0.0006771301281355285,0.0001022024797140142,9.168467151052721e-05,0.0001240292967380943,0.0,0.0,0.0,0.0,0.0,0.0,0.002090730430689547,0.0006771301281355285,0.0001022024797140142,9.168467151052721e-05,0.0001240292967380943 +101846,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,24000.0,,1481.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005762698069859984,0.0011750193966143403,0.0,0.006937717466474325,0.0036735173872050786,0.0008906724770986016,0.002234827839509826,0.0,0.0001387824697345579,0.0024984979905907385,0.0008906724770986016,0.002234827839509826,0.0,0.0001387824697345579,0.0011750193966143403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.8505568939678e-05,0.0,0.0,0.0006867338168926895,0.0002628118389219605,0.0007652393858323674,0.00029774300870473707,0.00010614037077497809,0.0002663217530607004,0.0,1.6538540455048126e-05,7.8505568939678e-05,0.0,0.0,0.0,0.0,0.0,0.0004051938123473222,9.824234881953154e-05,0.0002465044579304078,0.0,1.5307889434411177e-05 +101847,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,64692.0,,5225.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005291536626047934,0.00152220330942237,0.0,0.006813739935470305,0.004497540363145663,0.0019357398657673616,0.0003804597065572793,0.0,0.0,0.002975337053723293,0.0019357398657673616,0.0003804597065572793,0.0,0.0,0.00152220330942237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010170506456145963,0.0,0.0,0.0006305819199287332,0.0002472926606550678,0.0007322869844901929,0.00035456501284263027,0.0002306782787875791,4.533862829852372e-05,0.0,0.0,0.00010170506456145963,0.0,0.0,0.0,0.0,0.0,0.0004833601372142094,0.00020803804114698585,4.088880612899757e-05,0.0,0.0 +101848,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,54714.0,,4559.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0045200879739508565,0.001342117862611138,0.0,0.0058621751469556975,0.0023641124419309387,0.0014301356534729497,0.0020679577411581067,0.0,0.0,0.0010219945793198005,0.0014301356534729497,0.0020679577411581067,0.0,0.0,0.001342117862611138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.967187046685185e-05,0.0,0.0,0.0005386493766843101,0.00024203486507114215,0.0006283212471511621,0.00012178894444042947,0.00017042625779778426,0.0002464341744460965,0.0,0.0,8.967187046685185e-05,0.0,0.0,0.0,0.0,0.0,0.0002533909411920293,0.00015328518764099234,0.0002216484076998495,0.0,0.0 +101849,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,262511.0,,23061.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.06254884155923042,0.02039688862012903,0.0,0.08294582239661222,0.05691575067358107,0.012406632536344563,0.007888263802217339,0.0006701427759026584,0.005065124825819377,0.04584433174013929,0.012406632536344563,0.002052294960466997,0.0006701427759026584,0.0015755317636296845,0.01107141893344177,0.005835968841750342,0.0034895930621896922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013628024241989457,0.0,0.0,0.007453828411657175,0.0031314487133790466,0.008816630835856121,0.005463183232810163,0.0014784751849452676,0.00024456815033007236,7.985966068068458e-05,0.00018775317224845132,0.0007397283400825426,0.00038992576922923684,0.00023315447631197837,0.0,0.0,0.0,0.006049794286626893,0.0013187487425953708,0.0008384739323874328,7.123205595814208e-05,0.0005383916204151522 +101850,85.0,Rural Climate Zone 3A,G1303170010301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,62441.0,,11592.0,,9.525004485617233,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,166687.57849830156,0.0,0.0,0.01609721793956239,0.010037378789811141,0.0,0.026134596729373526,0.015152080564016809,0.0015599416097098128,0.00639107508736484,0.0006298809312428592,0.002401708816662431,0.009010086957130549,0.0015599416097098128,0.0035615311362377517,0.0006298809312428592,0.001335867584864639,0.00614199360688626,0.002829543951127087,0.0010658412317977922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006706389409003334,0.0,0.0,0.0019182730085171092,0.0012602220825827341,0.002588911949417443,0.001073713897590769,0.00018589509665608802,0.0004244204851601755,7.50616406834612e-05,0.00015919264686730332,0.00041037208755338034,0.0001890535764716835,7.12132768752695e-05,0.0,0.0,0.0,0.0015009759988616907,0.00015452893785164687,0.0006331044949588394,6.239645809311535e-05,0.00023791500281656122 +101851,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,93535.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008248042048119821,0.0,0.0,0.008248042048119821,0.005925889250305382,0.0019396580600948312,0.00038252511131904647,0.0,0.0,0.005925889250305382,0.0019396580600948312,0.00038252511131904647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00098290503417658,0.00029321529245481486,0.00098290503417658,0.0007061780653053024,0.0002311457265525197,4.558486188854422e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007061780653053024,0.0002311457265525197,4.558486188854422e-05,0.0,0.0 +101852,81.0,the Columbus-Albany Area,G1300950000400,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,174324.0,,8475.0,,3.3063363735822096,Lodging,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,247975.22801866572,0.0,0.0,0.020612176710365162,0.002547248458804372,0.0,0.023159425169169533,0.00823005406724803,0.0038489358870902025,0.00813093190301691,0.0,0.002949503311814385,0.00823005406724803,0.0038489358870902025,0.005583683444212539,0.0,0.002949503311814385,0.0,0.002547248458804372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017019211037504916,0.0,0.0,0.0024563148740930655,0.0011385695337308784,0.002626506984468115,0.0009807602808783282,0.00045867055196242607,0.0006653972013227263,0.0,0.00035148683992958457,0.0,0.00017019211037504916,0.0,0.0,0.0,0.0,0.0009333692150076927,0.00043650724991525775,0.0009221277850167959,0.0,0.0003345027345283679 +101853,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,29387.0,,1641.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007495328557624736,0.0013020574618779165,0.0,0.008797386019502654,0.004928266402904112,0.0013816216668151307,0.002318858226428962,0.0,0.00016855701628070853,0.0036262089410261946,0.0013816216668151307,0.002318858226428962,0.0,0.00016855701628070853,0.0013020574618779165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.699705516385114e-05,0.0,0.0,0.0008932013364250101,0.00038500882643561997,0.0009801983915888612,0.0004321271105568898,0.0001646447263446046,0.00027633308545487454,0.0,2.0086558053894294e-05,8.699705516385114e-05,0.0,0.0,0.0,0.0,0.0,0.0005491038804866638,0.00015393928748770236,0.0002583655075302431,0.0,1.878050092187593e-05 +101854,50.0,the Greater Atlanta and Macon Area,G1300670031310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,113213.0,,5963.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011381363253928268,0.001755138584165622,0.0,0.013136501838093888,0.005425768945402364,0.003090474043784968,0.004620289538512857,0.0,0.0,0.0036706303612367413,0.003090474043784968,0.004620289538512857,0.0,0.0,0.001755138584165622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011726745520501302,0.0,0.0,0.0013562968057333586,0.0005158841653226845,0.0014735642609383717,0.00043742248822916394,0.0003682862922717699,0.000550591682458195,0.0,0.0,0.00011726745520501302,0.0,0.0,0.0,0.0,0.0,0.0006086262008405666,0.0003466685542625408,0.0005182729483885092,0.0,0.0 +101855,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock 90.1-2007,gen4_led,200001_500000,Electricity,278415.0,,21640.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.024806500839252052,0.006369965372757488,0.0,0.031176435522403248,0.014122988542927248,0.005896087161914658,0.011157390507167634,0.0,0.0,0.007753023170169761,0.005896087161914658,0.011157390507167634,0.0,0.0,0.006369965372757488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004256028798532636,0.0,0.0,0.0029561417338157367,0.0012802439695418844,0.0033817446136690005,0.0009239124657321178,0.00070262506745698,0.0013296042006266389,0.0,0.0,0.00042560287985326357,0.0,0.0,0.0,0.0,0.0,0.0015319371709326059,0.0006395555061834994,0.00121025526549057,0.0,0.0 +101856,50.0,the Greater Atlanta and Macon Area,G1302190030400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,34383.0,,2170.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028921437648632906,0.0006323175930951174,0.0,0.003524461357958408,0.002188478586688894,0.0009059229768303859,0.00043005979443912803,0.0,0.0,0.0015561609935937771,0.0009059229768303859,0.00043005979443912803,0.0,0.0,0.0006323175930951174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2248577338214006e-05,0.0,0.0,0.00034464976248094805,0.0001254742004679143,0.00038689833981916206,0.00018544393378368707,0.00010795664537284321,5.124918332441785e-05,0.0,0.0,4.2248577338214006e-05,0.0,0.0,0.0,0.0,0.0,0.00024024060584684417,9.944784752661935e-05,4.720988644569849e-05,0.0,0.0 +101857,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock 90.1-2004,gen2_t8_halogen,_1000,Propane,12514.0,,6894.0,2884.0,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.003451667045068313,0.004742626523349312,0.0006417503006476877,0.008836115589036327,0.0016254614230978089,0.00018561128498840142,0.005999088695571802,0.00038413216475961283,0.0006417503006476877,0.0016254614230978089,0.00018561128498840142,0.00125646217222249,0.00038413216475961283,0.0,0.0,0.004742626523349312,0.0,0.0,0.0,0.0,0.0,0.0,0.0006417503006476877,0.0,0.0003168766397145203,0.0,5.175832354106089e-05,0.0004113268094444297,0.0004887013888159277,0.000779961772700011,0.00019370230451199027,2.211884769136211e-05,0.0001497295566866201,4.577610055445728e-05,0.0,0.0,0.0003168766397145203,0.0,0.0,5.175832354106089e-05,0.0,0.0001434790842469181,1.6383862955834103e-05,0.0005295380992286319,3.390725270148665e-05,5.664714286275253e-05 +101858,50.0,the Greater Atlanta and Macon Area,G1300570090502,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,191520.0,,16570.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01215146773851035,0.0028179572619346717,0.0,0.014969425000445022,0.0072478703323734465,0.0025854235719106797,0.0022773762725986826,0.0,0.0028587370932007935,0.005278612280532441,0.0025854235719106797,0.001428677062505015,0.0,0.0028587370932007935,0.001969258051841004,0.0008486992100936675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018827945351440498,0.0,0.0,0.0014480676960566359,0.0006021726357586061,0.001636347149571041,0.0006290423583335728,0.00030810009421678125,0.00017025277495936607,0.0,0.00034067035565288816,0.0001315743268494118,5.670512666499317e-05,0.0,0.0,0.0,0.0,0.0007922837355801721,0.0002826194387696286,0.0002489459796923923,0.0,0.00031249605737648935 +101859,50.0,the Greater Atlanta and Macon Area,G1302310010100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,68269.0,,6899.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003514139903093045,0.0011732002848034739,0.0,0.00468734018789652,0.0017828233015091495,0.0010489281816103238,0.0008543197346638242,0.0,0.001001268970113222,0.0014704320636492391,0.0010489281816103238,0.0008543197346638242,0.0,0.00014047765353107837,0.0003123912378599103,0.0,0.0008607913165821435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.838609179626545e-05,0.0,0.0,0.00041877420103733794,0.00018528133602228408,0.0004971602928336034,0.00017522894068400726,0.00012499902488594247,0.00010180786029587986,0.0,1.6740488069156903e-05,2.087207833514789e-05,0.0,5.751282882644276e-05,0.0,0.0,0.0,0.00018909422382816559,0.0001112540206229043,9.061297717535534e-05,0.0,0.00010619907120717804 +101860,50.0,the Greater Atlanta and Macon Area,G1301210001400,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,18175.0,,1176.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004095902412791722,0.0009326876705581695,0.0,0.0050285900833498915,0.0027195739986959067,0.0007322057238140885,0.0014967499134602464,0.0,7.997774030591027e-05,0.0018668640684436472,0.0007322057238140885,0.0014967499134602464,0.0,0.0,0.0008527099302522594,0.0,7.997774030591027e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.231767421541545e-05,0.0,0.0,0.00048809597031437217,0.00020530548139507628,0.0005504136445297876,0.0002224683933109062,8.725468217178151e-05,0.00017836303888656163,0.0,0.0,5.6973948848180675e-05,0.0,5.343725367234793e-06,0.0,0.0,0.0,0.0002976760108458631,8.014493412865476e-05,0.0001638295349515718,0.0,8.754111747702378e-06 +101861,46.0,the Tallahassee-Valdosta Area,G1300270960500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,14360.0,,89.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003157921489514236,7.087996219458645e-05,0.0,0.003228801451708822,0.0017052544463570405,0.0004710994920190951,0.0009814848440643613,0.0,7.087996219458645e-05,0.0017052544463570405,0.0004710994920190951,0.0009814848440643613,0.0,0.0,0.0,0.0,7.087996219458645e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7347824585525235e-06,0.0,0.0,0.00037632574561199874,9.67277646746107e-05,0.0003810605280705513,0.0002032131429214863,5.614036580079474e-05,0.00011696238078617121,0.0,0.0,0.0,0.0,4.7347824585525235e-06,0.0,0.0,0.0,0.00020125274642687126,5.559877988395861e-05,0.00011583404509883022,0.0,8.365195639141947e-06 +101862,81.0,the Columbus-Albany Area,G1300950001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,193429.0,,4312.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02191636854537849,0.0012691686684414985,0.0,0.023185537213819985,0.006667715933057801,0.005858032050105507,0.01065978923065668,0.0,0.0,0.005398547264616302,0.005858032050105507,0.01065978923065668,0.0,0.0,0.0012691686684414985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.479806369676016e-05,0.0,0.0,0.0026117319067194404,0.0007953983634608881,0.002696529970416201,0.0006433345976883807,0.0006980905246308189,0.0012703067844002406,0.0,0.0,8.479806369676016e-05,0.0,0.0,0.0,0.0,0.0,0.0007754703150460104,0.0006813022637816033,0.0012397573915885877,0.0,0.0 +101863,50.0,the Greater Atlanta and Macon Area,G1300890021805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,72911.0,,4423.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006098715031106189,0.0012884177145499945,0.0,0.007387132745656182,0.004483993737796427,0.002021697152176199,0.0008814418556835579,0.0,0.0,0.0031955760232464316,0.002021697152176199,0.0008814418556835579,0.0,0.0,0.0012884177145499945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.608400337230653e-05,0.0,0.0,0.0007267713253187021,0.0002751862204630915,0.0008128553286910087,0.00038081022145253907,0.00024092149103310982,0.00010503961283305311,0.0,0.0,8.608400337230653e-05,0.0,0.0,0.0,0.0,0.0,0.0004934036423980867,0.00022246077872530305,9.699090756761911e-05,0.0,0.0 +101864,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,43596.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.004478374621900442,0.0,0.0,0.004478374621900442,0.0022590668317822296,0.0014318114774956208,0.0007874963126225915,0.0,0.0,0.0022590668317822296,0.0014318114774956208,0.0007874963126225915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005336808635580982,0.00015014587758919426,0.0005336808635580982,0.00026920944302542073,0.000170626722924308,9.384469760836942e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026920944302542073,0.000170626722924308,9.384469760836942e-05,0.0,0.0 +101865,35.0,Eastern Counties in South Carolina and Georgia,G1300730030308,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,347248.0,,9337.0,,9.729435225087556,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.07976644817275148,0.008258700506607177,0.0,0.08802524089661144,0.07285882263652407,0.008158552570095512,0.0019894950113284646,0.000666269651286185,0.00435200881012442,0.0646001221299169,0.008158552570095512,0.0019894950113284646,0.000666269651286185,0.00435200881012442,0.008258700506607177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005517989994982825,0.0,0.0,0.009505618715070524,0.0023200023027091605,0.010057417714568808,0.0076982759541216,0.0009722394788123298,0.00023708440636928716,7.939811050422265e-05,0.0005186207652630838,0.0005517989994982825,0.0,0.0,0.0,0.0,0.0,0.0083245624321309,0.0009321641191541251,0.00022731187289203354,7.612534910748781e-05,0.000497243404903761 +101866,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,290884.0,,14022.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.024550242626666233,0.004127598599009535,0.0,0.02867787191528207,0.0093916946984356,0.007249775006100031,0.01203637152114014,0.0,0.0,0.005264096099426066,0.007249775006100031,0.01203637152114014,0.0,0.0,0.004127598599009535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027578286836424707,0.0,0.0,0.0029256061089296573,0.001102283928199834,0.0032013889772939037,0.0006273124034116722,0.0008639420134762218,0.001434351692041764,0.0,0.0,0.00027578286836424707,0.0,0.0,0.0,0.0,0.0,0.0010484204676867704,0.0008093121365822656,0.0013436529470605,0.0,0.0 +101867,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,48360.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005056634360853594,0.0,0.0,0.005056634360853594,0.0016803173240118225,0.0012814445109605797,0.002094872525881192,0.0,0.0,0.0016803173240118225,0.0012814445109605797,0.002094872525881192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006025879621513138,0.00019562333011356983,0.0006025879621513138,0.00020023970882342176,0.00015270691558156736,0.0002496413377463247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020023970882342176,0.00015270691558156736,0.0002496413377463247,0.0,0.0 +101868,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,29814.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006895867687162236,0.0,0.0,0.006895867687162236,0.003791374967283592,0.0013603659488641286,0.0015688704817609224,0.0,0.00017525628925359242,0.003791374967283592,0.0013603659488641286,0.0015688704817609224,0.0,0.00017525628925359242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008217686691586857,0.0002801047436433617,0.0008217686691586857,0.0004518116214651919,0.00016211246591172701,0.00018695959179715154,0.0,2.0884989984615117e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004518116214651919,0.00016211246591172701,0.00018695959179715154,0.0,2.0884989984615117e-05 +101869,50.0,the Greater Atlanta and Macon Area,G1301350050538,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4702.0,,626.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011291169706890251,0.0004963251495095839,0.0,0.0016254421201986088,0.0009101913465010782,0.0002897228793087939,0.00038276833726551474,0.0,4.275955712322194e-05,0.00041386619699149434,0.0002897228793087939,0.00038276833726551474,0.0,4.275955712322194e-05,0.0004963251495095839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.316049358755647e-05,0.0,0.0,0.00013455918300548958,7.04119292642267e-05,0.00016771967659304606,4.9321282724836636e-05,3.452686918167521e-05,4.561528706046042e-05,0.0,5.095744038517295e-06,3.316049358755647e-05,0.0,0.0,0.0,0.0,0.0,9.391721573838457e-05,2.9894775713908325e-05,3.949558150270275e-05,0.0,4.412103638050416e-06 +101870,85.0,Rural Climate Zone 3A,G1302610950700,ComStock 90.1-2004,gen3_t5_cfl,1001_5000,Electricity,27489.0,,6362.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006356547017800035,0.004934044122058494,0.0,0.011290510279075459,0.004124627683542533,0.0004426319265171209,0.005750576309484487,0.00042621718755420974,0.0005464571719771105,0.004124627683542533,0.0004426319265171209,0.0008165321874259932,0.00042621718755420974,0.0005464571719771105,0.0,0.004934044122058494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003296615298827873,0.0,0.0,0.0007574940743352347,0.0005331902126767862,0.001087155604218022,0.0004915217366242129,5.2747358040364265e-05,9.73041325340881e-05,5.079125396981367e-05,6.511995718611284e-05,0.0,0.0003296615298827873,0.0,0.0,0.0,0.0,0.00039715761206881884,4.262072905692552e-05,0.0005537191063831516,4.104016493588864e-05,5.2617991773237606e-05 +101871,35.0,Eastern Counties in South Carolina and Georgia,G1302450010512,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,19267.0,,654.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,24797.522801866573,0.0,0.0,0.0017342461487670725,0.00019667742735204457,0.0,0.001930923576119117,0.0007438079570109587,0.00023415770190797914,0.0006410192441819744,0.0,0.00031187599697379663,0.0007438079570109587,0.00023415770190797914,0.0004443418168299299,0.0,0.00031187599697379663,0.0,0.00019667742735204457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.314141611756689e-05,0.0,0.0,0.00020666508541220308,9.605914856228767e-05,0.00021980650152977,8.863743769892734e-05,2.790389443801918e-05,5.295092602203881e-05,0.0,3.716535833072362e-05,0.0,1.314141611756689e-05,0.0,0.0,0.0,0.0,8.467130800131605e-05,2.6655319712906412e-05,7.29703646583914e-05,0.0,3.550237443560554e-05 +101872,35.0,Eastern Counties in South Carolina and Georgia,G1301030030203,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,81713.0,,3297.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0042061913700405466,0.0005606517584634896,0.0,0.004766843128504036,0.0019630878860668263,0.0006313781701680802,0.0018701098707800696,0.0,0.0003022849318504803,0.001724915941111257,0.0006313781701680802,0.0015476300572721492,0.0,0.0003022849318504803,0.00023817194495556933,0.00032247981350792034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.745913561908261e-05,0.0,0.0,0.0005012440514633286,0.00017484075927150686,0.0005387031870824113,0.0002055550446217458,7.524016959254536e-05,0.00018442821351374636,0.0,3.6022736629691274e-05,1.5913113714655983e-05,2.154602190442663e-05,0.0,0.0,0.0,0.0,0.00022184948659700318,7.135234438280044e-05,0.00021134199729783425,0.0,3.416136252126832e-05 +101873,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,12529.0,,455.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0005978323263613405,7.741075795995053e-05,0.0,0.000675243084321291,0.0002845900311532675,9.654181793218753e-05,0.00015911226338355384,0.0,0.0001350167022137021,0.00027918227092015144,9.654181793218753e-05,8.710926565671942e-05,0.0,0.0001350167022137021,5.407760233116105e-06,7.200299772683441e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.172069015337166e-06,0.0,0.0,7.124319222705618e-05,2.2460865954414978e-05,7.641526124239337e-05,3.326992421873262e-05,1.1504809943541162e-05,1.038074035860748e-05,0.0,1.608983061892855e-05,3.6131036410394767e-07,4.810758651233217e-06,0.0,0.0,0.0,0.0,3.220621148518159e-05,1.092535178722907e-05,1.8006263900568163e-05,0.0,1.527944056193744e-05 +101874,50.0,the Greater Atlanta and Macon Area,G1302470060308,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Propane,19266.0,,362.0,2324.0,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0020450255614192134,0.00013441828206535518,0.000279414883820489,0.0024588587273050573,0.0009790176750254437,0.00040794340547248764,0.000944570326292062,0.0,0.0001273660689388361,0.0008269688601437909,0.00040794340547248764,0.0008101520442267069,0.0,0.0,0.0,0.00013441828206535518,0.0,0.0,0.0,0.0,0.0,0.00015204881488165286,0.0001273660689388361,0.0,8.981831750915581e-06,0.0,2.253421465494241e-05,0.0002437013042896813,0.0001019941909406197,0.0002752173506955393,9.854810307805253e-05,4.861373953733188e-05,9.65440792407423e-05,0.0,0.0,0.0,8.981831750915581e-06,0.0,1.2262412745249481e-05,1.0271801909692924e-05,0.0,0.00010958037068681937,4.566065632038449e-05,0.00010572471686189327,0.0,1.4255943894861679e-05 +101875,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,35387.0,,4330.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.00872398902448039,0.003358310042402094,0.0,0.012082299066882483,0.00603552970901798,0.0015107220100693038,0.0029003954278850217,0.0004209612366547555,0.0012147715440384923,0.0038528545916492107,0.0015107220100693038,0.0017247605028516968,0.0004209612366547555,0.0012147715440384923,0.002182675117368769,0.0011756349250333247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002243841436673257,0.0,0.0,0.0010396196736699754,0.000479257785009416,0.001264003817337301,0.00045913668873589526,0.00018002960786712407,0.00020553613101781067,5.016507726576289e-05,0.00014476180479515094,0.00014583456587720606,7.854957779011962e-05,0.0,0.0,0.0,0.0,0.0006314139841780841,0.00015804594614754816,0.0003034282525486488,4.4039351048768176e-05,0.00012708474275943994 +101876,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,176795.0,,4632.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.008636583160237661,0.0007876713060858457,0.0,0.009424236735962087,0.0059141393552728135,0.001658090208919078,0.0007626005750378912,0.0,0.0010894243270937244,0.005348274870551828,0.001658090208919078,0.0005407937536730306,0.0,0.0010894243270937244,0.0005658644847209852,0.00022180682136486058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.262710471710898e-05,0.0,0.0,0.0010292044090716725,0.00034451381020659383,0.0010818315137887814,0.0006373432612843269,0.00019759130688566496,6.44453142350553e-05,0.0,0.00012982452666662525,3.780740679902157e-05,1.4819697918087417e-05,0.0,0.0,0.0,0.0,0.0006788987278999454,0.00019033628833498982,8.75408118050862e-05,0.0,0.0001250577210609313 +101877,50.0,the Greater Atlanta and Macon Area,G1301210008400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,79411.0,,4148.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006432186779333266,0.0012084744008298317,0.0,0.007640661180163098,0.00480616650703266,0.0022865853128728325,0.0005479093602576051,0.0,0.0,0.0035976921062028278,0.0022865853128728325,0.0005479093602576051,0.0,0.0,0.0012084744008298317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.074387345707306e-05,0.0,0.0,0.000766510706332476,0.00028375650271847977,0.000847254579789549,0.00042872970143726947,0.00027248775313724606,6.529325175796048e-05,0.0,0.0,8.074387345707306e-05,0.0,0.0,0.0,0.0,0.0,0.0005329442686042047,0.00025355395727280134,6.075635391254302e-05,0.0,0.0 +101878,35.0,Eastern Counties in South Carolina and Georgia,G1302450010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,25889.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0022636653605185575,0.0,0.0,0.0022636653605185575,0.0011912170684453334,0.00047688579226000356,0.0005955318102069224,0.0,0.0,0.0011912170684453334,0.00047688579226000356,0.0005955318102069224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002697560032608343,8.680708094441057e-05,0.0002697560032608343,0.00014195470806086338,5.6829426988477556e-05,7.09682109988678e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014195470806086338,5.6829426988477556e-05,7.09682109988678e-05,0.0,0.0 +101879,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,15307.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0036755023569748223,0.0,0.0,0.0036755023569748223,0.0016159308067185882,0.0010095225420619868,0.0009799961167370537,0.0,7.005289145719338e-05,0.0016159308067185882,0.0010095225420619868,0.0009799961167370537,0.0,7.005289145719338e-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.000437999388637876,0.00014376694793006436,0.000437999388637876,0.00019256597783993742,0.00012030199229779288,0.00011678341035036438,0.0,8.348008149781297e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019256597783993742,0.00012030199229779288,0.00011678341035036438,0.0,8.348008149781297e-06 +101880,50.0,the Greater Atlanta and Macon Area,G1300670031406,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,6488.0,,345.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001541825268648169,0.0002735122928558896,0.0,0.0018153375615040585,0.0006994537226133227,0.0004610919360966389,0.0006147616791042721,0.0,4.01129307635641e-05,0.0004259414297574332,0.0004610919360966389,0.0006147616791042721,0.0,4.01129307635641e-05,0.0002735122928558896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8273424850029813e-05,0.0,0.0,0.00018373908844606358,7.904863527278015e-05,0.00020201251329609338,5.075937697120627e-05,5.4948257595043694e-05,7.326105806349054e-05,0.0,4.780252006026223e-06,1.8273424850029813e-05,0.0,0.0,0.0,0.0,0.0,7.783588432024518e-05,5.131075500595566e-05,6.841127210031719e-05,0.0,4.463805592446366e-06 +101881,35.0,Eastern Counties in South Carolina and Georgia,G1300510010101,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,34204.0,,987.0,,5.759960461090961,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,100799.30806909183,0.0,0.0,0.005102945620572234,0.0005167857757415322,0.0,0.0056197859902051405,0.003300309921310702,0.0007098843695295949,0.0015674998091158752,0.0,4.214648414034047e-05,0.002825616035818137,0.0007098843695295949,0.0015674998091158752,0.0,0.0,0.00047469388549256533,0.0,4.214648414034047e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4530221093976436e-05,0.0,0.0,0.0006081096748708848,0.00020369510413302284,0.0006426398959648612,0.0003367240367845897,8.459575806770138e-05,0.00018679638588324553,0.0,0.0,3.1717755378420155e-05,0.0,2.8161135310109666e-06,0.0,0.0,0.0,0.00037740063913100876,8.117747155793866e-05,0.00017924844754068557,0.0,4.819580715429411e-06 +101882,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,44895.0,,7902.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0042590421827825966,0.002326118709334382,0.0,0.006585130202510681,0.0032068490308658566,0.0012565245506468451,0.0021217873106042775,0.0,0.0,0.0008807303215314745,0.0012565245506468451,0.0021217873106042775,0.0,0.0,0.002326118709334382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015541740616335775,0.0,0.0,0.0005075403712887837,0.00029843409720633395,0.0006629577774521414,0.00010495462951797487,0.00014973717319515106,0.0002528485685756578,0.0,0.0,0.00015541740616335775,0.0,0.0,0.0,0.0,0.0,0.00032284942601693896,0.00012650056988900243,0.0002136108712213556,0.0,0.0 +101883,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Propane,20292.0,,,6552.0,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004997161395328954,0.0,0.0016815175161938591,0.006678678911522814,0.0037049460752260144,0.001467885144725228,0.0012368842877713423,0.0,0.0002689634038002278,0.0022923919628323837,0.001467885144725228,0.0012368842877713423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014125541123936314,0.0002689634038002278,0.0,0.0,0.0,0.00013561494264643372,0.0005955018720465605,0.00030652076926820373,0.0007311168146929942,0.00027317983097508304,0.00017492497889907903,0.0001473970621723984,0.0,0.0,0.0,0.0,0.0,0.00011392295536168616,2.1691987284747553e-05,0.0,0.0004055814643903773,0.0001606897899366108,0.00013540206268323273,0.0,2.9443497682773183e-05 +101884,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,39504.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0033601705585996084,0.0,0.0,0.0033601705585996084,0.002370173458525526,0.0006959806575166452,0.00029401644255743766,0.0,0.0,0.002370173458525526,0.0006959806575166452,0.00029401644255743766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004004245029348037,0.00013555205611212386,0.0004004245029348037,0.0002824486175472256,8.293856040286448e-05,3.5037324984713636e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002824486175472256,8.293856040286448e-05,3.5037324984713636e-05,0.0,0.0 +101885,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6180.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00146647912447166,0.0,0.0,0.0014664791244716601,0.000753296027617612,0.0002979108796089853,0.00037234724597436206,0.0,4.2924971270700556e-05,0.000753296027617612,0.0002979108796089853,0.00037234724597436206,0.0,4.2924971270700556e-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.00017475442874047918,5.931671336875986e-05,0.00017475442874047918,8.97672628147473e-05,3.550084328707946e-05,4.4371126173912206e-05,0.0,5.115196464740213e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.976726281474728e-05,3.550084328707945e-05,4.43711261739122e-05,0.0,5.115196464740212e-06 +101886,81.0,the Columbus-Albany Area,G1302150011400,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,16232.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013490737926271851,0.0,0.0,0.001349073792627185,0.0008966894026013094,0.00036487805004571265,8.753671357960076e-05,0.0,0.0,0.0008966894026013094,0.00036487805004571265,8.753671357960076e-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.00016076547211629248,3.998465657511903e-05,0.00016076547211629248,0.0001068560488971809,4.348152955090556e-05,1.0431513207833998e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010685604889718091,4.3481529550905566e-05,1.0431513207834e-05,0.0,0.0 +101887,50.0,the Greater Atlanta and Macon Area,G1301210010121,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,29088.0,,320.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.003504329949099623,0.00011899640940406624,0.0,0.0036233263585036895,0.002358500309735363,0.00037923082345737427,0.000817630490014719,0.0,6.792598687246114e-05,0.002358500309735363,0.00037923082345737427,0.0006986340806106528,0.0,6.792598687246114e-05,0.0,0.00011899640940406624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.95133856789261e-06,0.0,0.0,0.0004176023162728264,0.00014226955613765496,0.00042555365484071893,0.00028105663752601924,4.5191997493997566e-05,8.32544921647876e-05,0.0,8.09457153438007e-06,0.0,7.95133856789261e-06,0.0,0.0,0.0,0.0,0.0002770019389490855,4.454002951508535e-05,9.602934124837194e-05,0.0,7.977794190246717e-06 +101888,50.0,the Greater Atlanta and Macon Area,G1302170100902,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,89174.0,,11261.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00459023099839889,0.0019150208762570625,0.0,0.006505251874655954,0.002124026376676646,0.0014534641077702487,0.0013187488217006873,0.0,0.0016090480292312117,0.002024186711520328,0.0014534641077702487,0.0008647451871788154,0.0,0.0002478704526523382,9.983966515631732e-05,0.00045400363452187213,0.0013611775765788737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012795046379238722,0.0,0.0,0.0005470094705181565,0.0002996284931464057,0.0006749599343105438,0.0002412186449189247,0.00017320667136052007,0.0001030501094905251,0.0,2.953827053796319e-05,6.670700888961305e-06,3.0333860231352018e-05,9.094590267207393e-05,0.0,0.0,0.0,0.00022038081404055588,0.00015080585004331203,0.00013682830968236387,0.0,0.0001669486398126355 +101889,50.0,the Greater Atlanta and Macon Area,G1300670030337,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,9876.0,,1930.0,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0023679035211563713,0.0015308252278408408,0.0,0.0038987287489972125,0.002427204493027455,0.0003791292260209852,0.0009460035094301985,0.0,0.00014647422759231344,0.0010428534927789275,0.0003791292260209852,0.0009460035094301985,0.0,0.0,0.0013843510002485274,0.0,0.00014647422759231344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001022826514220111,0.0,0.0,0.0002821777922493052,0.0001808592691282801,0.0003844604436713163,0.00012427452960082048,4.5179986017143384e-05,0.00011273313264923345,0.0,0.0,9.249592195697347e-05,0.0,9.78672946503764e-06,0.0,0.0,0.0,0.00023935086956494876,3.7386594407800634e-05,9.328705646518842e-05,0.0,1.4444079122210932e-05 +101890,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,26460.0,,2404.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0062887150588419784,0.0019070597062809508,0.0,0.00819577476512293,0.005639464529988416,0.0015043589642442627,0.0009211086802346668,0.0,0.00013084259065558433,0.0037324048237074654,0.0015043589642442627,0.0009211086802346668,0.0,0.00013084259065558433,0.0019070597062809508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012741922029411152,0.0,0.0,0.0007494135122113464,0.00035536897625750236,0.0008768327325054579,0.00044478316822391556,0.00017927142897590853,0.00010976666691432698,0.0,1.559224809719541e-05,0.00012741922029411152,0.0,0.0,0.0,0.0,0.0,0.0006033434587221947,0.00016094526986035253,9.85456853282064e-05,0.0,1.3998318594704364e-05 +101891,85.0,Rural Climate Zone 3A,G1302850960800,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,42585.0,,,,5.759960461090961,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,43199.70345818221,0.0,0.0,0.006749661166071055,0.0,0.0,0.006749661166071054,0.004769267756497415,0.00025997611072059755,0.0016921922570129447,0.0,2.8225041840098475e-05,0.004769267756497415,0.00025997611072059755,0.0016921922570129447,0.0,2.8225041840098475e-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.0008043449999956657,0.00024245697266533402,0.0008043449999956657,0.0005683450738034956,3.0980886244717144e-05,0.0002016555123984151,0.0,3.3635275490379597e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0005683450738034956,3.098088624471715e-05,0.00020165551239841514,0.0,3.36352754903796e-06 +101892,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,40013.0,,2073.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003363754643333264,0.0006037967832230684,0.0,0.003967551426556332,0.002577959252279186,0.001215186966305575,0.00017437483437213321,0.0,0.0,0.0019741624690561175,0.001215186966305575,0.00017437483437213321,0.0,0.0,0.0006037967832230684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.03421790755065e-05,0.0,0.0,0.00040085164604973425,0.0001453288809624546,0.0004411938251252407,0.00023525683624373364,0.0001448113038408409,2.0779886406475393e-05,0.0,0.0,4.03421790755065e-05,0.0,0.0,0.0,0.0,0.0,0.00028667043756941483,0.0001351294358324259,1.9390574163016318e-05,0.0,0.0 +101893,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,664127.0,,134860.0,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,2664908.3895131643,0.0,0.0,0.12459167389166051,0.09334818823889149,0.0,0.217939862130552,0.18590975592999576,0.012355282959942218,0.012911979373302856,0.0008003322821064884,0.005962439418181971,0.10143024528175784,0.012355282959942218,0.006734843062490875,0.0008003322821064884,0.0032709703053630823,0.0844795106482379,0.00617713631081198,0.0026914691128188885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006236979707572324,0.0,0.0,0.014847349649817942,0.009569042376913105,0.021084329357390266,0.012087246841828143,0.0014723552577695833,0.0008025782675686949,9.537405556333196e-05,0.0003897952270881894,0.005644426566376354,0.000412720102535329,0.00017982821688247087,0.0,0.0,0.0,0.017985615327369576,0.0011952969625865183,0.0012491538863113874,7.742718228011315e-05,0.0005768290171310142 +101894,50.0,the Greater Atlanta and Macon Area,G1301210007300,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,NaturalGas,18107.0,,7326.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0024319671614551593,0.002156589324145872,0.0,0.004588525795994733,0.0026429582047518656,0.0008308597112977075,0.0011147078799451605,0.0,0.0,0.0004863688806059937,0.0008308597112977075,0.0011147078799451605,0.0,0.0,0.002156589324145872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014408994745425304,0.0,0.0,0.0002898113913715417,0.0002300711650522172,0.0004339013388257948,5.7959352511940243e-05,9.901145573925783e-05,0.00013283692591738348,0.0,0.0,0.00014408994745425304,0.0,0.0,0.0,0.0,0.0,0.00024992408335231897,7.856796651839122e-05,0.00010540928895508462,0.0,0.0 +101895,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,87964.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007806592153891535,0.0,0.0,0.007806592153891537,0.004496598781563093,0.002798410836998389,0.0005116129089294917,0.0,0.0,0.004496598781563093,0.002798410836998389,0.0005116129089294917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009302962002229748,0.00027787594348317713,0.0009302962002229748,0.0005358508140239043,0.0003334811037905499,6.0967901970499416e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005358508140239042,0.00033348110379054983,6.09679019704994e-05,0.0,0.0 +101896,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,4917.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,3204.5843851935597,0.0,0.0,0.00031743448772394436,0.0,0.0,0.0003174344877239443,0.00020644935537839914,8.56231768150224e-05,2.536195553052277e-05,0.0,0.0,0.00020644935537839914,8.56231768150224e-05,2.536195553052277e-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,3.78287466162018e-05,1.2661391633043505e-05,3.78287466162018e-05,2.4602620873631573e-05,1.0203735213000944e-05,3.0223905295692755e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4602620873631576e-05,1.0203735213000945e-05,3.022390529569276e-06,0.0,0.0 +101897,50.0,the Greater Atlanta and Macon Area,G1300570091005,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,7904.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016811039808251626,0.0,0.0,0.0016811039808251626,0.0011468989915429761,0.00026681301988300575,0.00020833911874931538,0.0,5.90528506498655e-05,0.0011468989915429761,0.00026681301988300575,0.00020833911874931538,0.0,5.90528506498655e-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.00020033741951934556,7.323780276963e-05,0.00020033741951934556,0.0001366761289223047,3.1796148547151866e-05,2.4827804770699176e-05,0.0,7.037337279189843e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001366761289223047,3.1796148547151866e-05,2.4827804770699176e-05,0.0,7.037337279189843e-06 +101898,50.0,the Greater Atlanta and Macon Area,G1300210013603,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,90866.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00728258681639144,0.0,0.0,0.00728258681639144,0.004892609771032501,0.0019095578230520194,0.0004803888487074828,0.0,0.0,0.004892609771032501,0.0019095578230520194,0.0004803888487074828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008678512110520976,0.00022008950336745354,0.0008678512110520976,0.0005830424575837498,0.00022755816183058693,5.724697207705804e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005830424575837498,0.00022755816183058693,5.724697207705804e-05,0.0,0.0 +101899,50.0,the Greater Atlanta and Macon Area,G1301210011419,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,14923.0,,2630.0,,7.614023970037612,Education,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,22842.071910112838,0.0,0.0,0.0031686374671280057,0.0018203409814115472,0.0,0.00498890628151682,0.0038323575752013486,0.0003153698893422321,6.97855109825946e-05,0.000673029654005871,9.8363651984774e-05,0.0020120165937898013,0.0003153698893422321,6.97855109825946e-05,0.000673029654005871,9.8363651984774e-05,0.0018203409814115472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012162412938237885,0.0,0.0,0.0003775968039611761,0.0002465121452165703,0.000499220933343555,0.000239765843588439,3.7581661997183584e-05,8.316125206241767e-06,8.020287866950436e-05,1.1721694577153598e-05,0.00012162412938237885,0.0,0.0,0.0,0.0,0.0,0.00038348949000833424,3.155786892393079e-05,6.983171452961343e-06,6.734752530539554e-05,9.842877652933105e-06 +101900,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,15596.0,,1256.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004662363160832239,0.0009962067031899578,0.0,0.005658652571095935,0.0038499315754910207,0.0007404764311880192,0.0009843795916452368,0.0,8.36995586241791e-05,0.002853724872301063,0.0007404764311880192,0.0009843795916452368,0.0,8.36995586241791e-05,0.0009962067031899578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.656155087134969e-05,0.0,0.0,0.000555608922674672,0.00023750916793320457,0.0006221704735460216,0.00034007539679214635,8.824179884883162e-05,0.00011730748239682722,0.0,9.974388521726528e-06,6.656155087134969e-05,0.0,0.0,0.0,0.0,0.0,0.00042330108119345425,8.141559603697171e-05,0.00010823281850017171,0.0,9.202790482454527e-06 +101901,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,136704.0,,5858.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011122720993306403,0.0017065710580095239,0.0,0.012829292051315926,0.008896731011311887,0.0023797411423484177,0.001552819897655624,0.0,0.0,0.007190159953302363,0.0023797411423484177,0.001552819897655624,0.0,0.0,0.0017065710580095239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011402377485299157,0.0,0.0,0.0013254728188845377,0.00043602723950402335,0.0014394965937375292,0.0008568372421882849,0.00028358907879306674,0.00018504649790318628,0.0,0.0,0.00011402377485299157,0.0,0.0,0.0,0.0,0.0,0.0009982479107152982,0.0002670162355557437,0.00017423244746648763,0.0,0.0 +101902,50.0,the Greater Atlanta and Macon Area,G1300670030901,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,13823.0,,3345.0,,8.53126424238864,Food Service,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,25593.792727165917,0.0,0.0,0.0033440785445820334,0.0025943373639706435,0.0,0.005938415908552677,0.0023832098593787178,0.00044538119314145087,0.002098660763760569,0.00041069191720505244,0.0006003913142838184,0.00188551173959193,0.00044538119314145087,0.0006024128338605317,0.00041069191720505244,0.0,0.0004976981197867881,0.0014962479299000374,0.0006003913142838184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017334088244694176,0.0,0.0,0.0003985077018232803,0.0002768438001119567,0.0005718485842702221,0.00022469297299340484,5.307525925240904e-05,7.178843163225259e-05,4.8941401914122275e-05,0.0,3.325374427942047e-05,9.99719389352391e-05,4.011519923228222e-05,0.0,0.0,0.0,0.00022949473480659386,4.288864382026666e-05,0.00020209365681031244,3.954818844646593e-05,5.781557377732024e-05 +101903,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,22482.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008284188626950248,0.0,0.0,0.008284188626950248,0.004894356502670995,0.0009474095296837667,0.0022903242859889012,0.0,0.00015218101568032565,0.004894356502670995,0.0009474095296837667,0.0022903242859889012,0.0,0.00015218101568032565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009872132043906574,0.00031750950550880436,0.0009872132043906574,0.0005832524564582325,0.00011290124353598617,0.0002729341978174185,0.0,1.8135162645675646e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005832524564582325,0.00011290124353598617,0.0002729341978174185,0.0,1.8135162645675646e-05 +101904,50.0,the Greater Atlanta and Macon Area,G1300570090701,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,55640.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005869080308372681,0.0,0.0,0.005869080308372681,0.002132160397532901,0.0015075348405557561,0.002229415759890321,0.0,0.0,0.002132160397532901,0.0015075348405557561,0.002229415759890321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006994078153510678,0.00022843207380072243,0.0006994078153510678,0.00025408574551095704,0.0001796502337673873,0.00026567549329827944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025408574551095704,0.0001796502337673873,0.00026567549329827944,0.0,0.0 +101905,46.0,the Tallahassee-Valdosta Area,G1301850011403,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,4101.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00023563838443807863,0.0,0.0,0.00023563838443807863,0.00015769972828080746,6.694341316080502e-05,1.0964869397028407e-05,0.0,0.0,0.00015769972828080746,6.694341316080502e-05,1.0964869397028407e-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,2.8079617358276388e-05,7.881612468060105e-06,2.8079617358276388e-05,1.8792133710256638e-05,7.977246282242996e-06,1.306617925539801e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8792133710256638e-05,7.977246282242996e-06,1.306617925539801e-06,0.0,0.0 +101906,50.0,the Greater Atlanta and Macon Area,G1301210010211,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,12662.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027857396576873522,0.0,0.0,0.0027857396576873522,0.0013605313630116072,0.00041585116676123775,0.0009358305393602636,0.0,7.336117440676569e-05,0.0013605313630116072,0.00041585116676123775,0.0009358305393602636,0.0,7.336117440676569e-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.00033196862188022215,9.102269675363765e-05,0.00033196862188022215,0.0001621306285235335,4.955579332622046e-05,0.00011152024691451561,0.0,8.742241185433083e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001621306285235335,4.955579332622046e-05,0.00011152024691451561,0.0,8.742241185433083e-06 +101907,35.0,Eastern Counties in South Carolina and Georgia,G1300730030307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,NaturalGas,3301.0,,139.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0004624979563502071,0.00011041394344197541,0.0,0.0005729118997921824,0.00020296315895626041,0.00021330154317367381,0.00010057180166699784,0.0,5.6075395995250426e-05,0.00014862461150953545,0.00021330154317367381,0.00010057180166699784,0.0,0.0,5.433854744672497e-05,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.378976497308042e-06,0.0,0.0,5.5114808030340556e-05,2.6225810692090638e-05,6.249378452764859e-05,1.7711250005458152e-05,2.541864984088846e-05,1.1984908183993941e-05,0.0,0.0,3.631451354854968e-06,0.0,3.7475251424530725e-06,0.0,0.0,0.0,2.2139417818803186e-05,2.3267138775343684e-05,1.0970469465226027e-05,0.0,6.116758468275696e-06 +101908,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,16066.0,,1863.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013596109382008287,0.0005483005061147579,0.0,0.0019079114443155867,0.0007840273720874128,0.0005660084089485325,0.0005578756632796413,0.0,0.0,0.0002357268659726551,0.0005660084089485325,0.0005578756632796413,0.0,0.0,0.0005483005061147579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.663485659874624e-05,0.0,0.0,0.0001620228808924478,8.877220793725607e-05,0.000198657737491194,2.809123173073206e-05,6.745040838561273e-05,6.648124077610304e-05,0.0,0.0,3.663485659874624e-05,0.0,0.0,0.0,0.0,0.0,8.16353947318159e-05,5.8934574902684515e-05,5.8087767856693554e-05,0.0,0.0 +101909,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,31219.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027529111850406367,0.0,0.0,0.0027529111850406367,0.0016270529746814895,0.000920259315765005,0.0002055988945941421,0.0,0.0,0.0016270529746814895,0.000920259315765005,0.0002055988945941421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003280605031384578,7.857819289716742e-05,0.0003280605031384578,0.0001938935845106295,0.00010966599132883539,2.450092729899289e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001938935845106295,0.00010966599132883539,2.450092729899289e-05,0.0,0.0 +101910,50.0,the Greater Atlanta and Macon Area,G1302970110800,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,110882.0,,4958.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010122874568478369,0.0014595669859124463,0.0,0.01158241086478452,0.0032438300064545882,0.002857202346316129,0.0054813785120138014,0.0,0.0,0.0017842630205421421,0.002857202346316129,0.0054813785120138014,0.0,0.0,0.0014595669859124463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.751961302018413e-05,0.0,0.0,0.0012063217010571693,0.00046377721530092446,0.0013038413140773536,0.0002126268766360245,0.00034048680257338246,0.0006532043646318381,0.0,0.0,9.751961302018413e-05,0.0,0.0,0.0,0.0,0.0,0.00036516055488228314,0.0003216375679723417,0.0006170431912227287,0.0,0.0 +101911,85.0,Rural Climate Zone 3A,G1302770960300,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,32846.0,,9222.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.00683907299610664,0.006343559716359781,0.0,0.013182704432437438,0.0032754510762829574,0.00028860116336681886,0.007219690882286486,0.0003831998051364099,0.0020156180654227326,0.0026111089847653517,0.00028860116336681886,0.0032956761081093596,0.0003831998051364099,0.0002604152147576837,0.0006643420915176052,0.003924014774177127,0.001755202850665049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004238400652984401,0.0,0.0,0.0008150032728267047,0.0006210422171923541,0.0012388433381251447,0.0003111624001531265,3.4392218480407084e-05,0.0003927413577563784,4.566541335507333e-05,3.1033336307743074e-05,4.4387506075359266e-05,0.0002621800302171144,0.00011727252900596643,0.0,0.0,0.0,0.0003078101891766156,2.7121265628349045e-05,0.0006784697327231005,3.601116358157777e-05,0.0001894175072612131 +101912,46.0,the Tallahassee-Valdosta Area,G1301850010601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,61750.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.005713243680641681,0.0,0.0,0.005713243680641681,0.004315693623311843,0.0009577099638717528,0.00043987046705752186,0.0,0.0,0.004315693623311843,0.0009577099638717528,0.00043987046705752186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000680837192804276,0.00020719906628590052,0.000680837192804276,0.0005142936124805616,0.00011412861060564716,5.241858928644769e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005142936124805616,0.00011412861060564716,5.241858928644769e-05,0.0,0.0 +101913,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,26210.0,,13022.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0060990054237267735,0.010099673526825252,0.0,0.016198759811335096,0.003909618861363317,0.0004133603230463138,0.010904804343838581,0.0004305028090568417,0.0005403926132469708,0.003909618861363317,0.0004133603230463138,0.0008051308170133307,0.0004305028090568417,0.0005403926132469708,0.0,0.010099673526825252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006748023383415648,0.0,0.0,0.0007268109659047415,0.0008667982523996335,0.0014016133042463064,0.0004659044653235523,4.925964067702169e-05,9.594644800882338e-05,5.130248962528629e-05,6.439792227005789e-05,0.0,0.0006748023383415648,0.0,0.0,0.0,0.0,0.0003382835398784445,3.5766400327996037e-05,0.0009435487053664352,3.7249670451144535e-05,4.6757991665101225e-05 +101914,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,4417.0,,96.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007224462891128503,7.625592198764145e-05,0.0,0.0007987022111004919,0.0004055127825438243,0.00016764723846957616,0.0001836097037012625,0.0,4.184977931208955e-05,0.0003292568605561829,0.00016764723846957616,0.0001836097037012625,0.0,4.184977931208955e-05,7.625592198764145e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0930103759637704e-06,0.0,0.0,8.609487977279293e-05,2.552872938634153e-05,9.11878901487567e-05,3.92379755438453e-05,1.9978743136743135e-05,2.1881011230177483e-05,0.0,4.987293550662074e-06,5.0930103759637704e-06,0.0,0.0,0.0,0.0,0.0,4.629742418964006e-05,1.9140297538731473e-05,2.0962733367530274e-05,0.0,4.7779923801668085e-06 +101915,50.0,the Greater Atlanta and Macon Area,G1301170130406,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,62331.0,,4033.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005495986764611507,0.0011871967300203343,0.0,0.006683183494631843,0.002781736604430078,0.001483689016462441,0.002417788563345621,0.0,0.0,0.0015945398744097437,0.001483689016462441,0.002417788563345621,0.0,0.0,0.0011871967300203343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.932169231651978e-05,0.0,0.0,0.0006549458571459493,0.00028268712838490844,0.0007342675494624692,0.00019001815861769176,0.00017680828143219022,0.0002881230743156647,0.0,0.0,7.932169231651978e-05,0.0,0.0,0.0,0.0,0.0,0.00030562364798535893,0.00016300984391006475,0.00026563742937062206,0.0,0.0 +101916,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,6287.0,,592.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012178616608113017,0.0004696934717655268,0.0,0.001687637839650568,0.0012623580664830492,0.00018212097637395494,0.00013646667166985723,0.0,0.00010669212512370656,0.0008992740127674897,0.00018212097637395494,0.00013646667166985723,0.0,0.0,0.0003630840537155595,0.0,0.00010669212512370656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.138432843818502e-05,0.0,0.0,0.00014513239710359533,7.612662750510972e-05,0.00017651672554178034,0.00010716635339269218,2.1703330283335616e-05,1.6262713427567556e-05,0.0,0.0,2.4260820891641525e-05,0.0,7.129033929434526e-06,0.0,0.0,0.0,0.00013203502974487593,1.9048754209409473e-05,1.4273589666451239e-05,0.0,1.1159351921043696e-05 +101917,50.0,the Greater Atlanta and Macon Area,G1300130180503,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,37085.0,,6076.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007433774995768086,0.004179911630760828,0.0,0.011613686626528912,0.002685912914534634,0.000291541682178459,0.006753009030887906,0.00037186804971594336,0.0015114266691829874,0.002685912914534634,0.000291541682178459,0.0025730974001270776,0.00037186804971594336,0.0015114266691829874,0.0,0.004179911630760828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027927570676256687,0.0,0.0,0.0008858725032808658,0.0005032564107245274,0.0011651482100434327,0.0003200764616292178,3.474261192317144e-05,0.0003066323955639905,4.431499208404524e-05,0.00018011458884844154,0.0,0.00027927570676256687,0.0,0.0,0.0,0.0,0.0002694653924580628,2.9249047272150208e-05,0.000677498596076536,3.730782536435396e-05,0.00015163454420991226 +101918,50.0,the Greater Atlanta and Macon Area,G1300590130500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,NaturalGas,15036.0,,2776.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.003032033494655973,0.0019092573484065813,0.0,0.004941290843062554,0.0016595284093302242,0.0002443499412501869,0.002033117738350542,0.0003700750504405531,0.0006342197036910485,0.0010193559480448798,0.0002443499412501869,0.0013005699543970908,0.0003700750504405531,9.768260052326225e-05,0.0006401724612853442,0.0007325477839534512,0.0005365371031677863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012756386849888983,0.0,0.0,0.00036132301073577797,0.00022996353166150995,0.0004888868792346678,0.00012147516206801997,2.9118826227098018e-05,0.0001549870251840902,4.4101304177230926e-05,1.1640693079338858e-05,4.277206304124904e-05,4.8943967275746996e-05,3.584783818189381e-05,0.0,0.0,0.0,0.00016419225073096042,2.4175763785832674e-05,0.00020115484349890947,3.661489320073279e-05,6.274912801823254e-05 +101919,50.0,the Greater Atlanta and Macon Area,G1301210009403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5913.0,,482.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001419666920735212,0.0003824375089705575,0.0,0.0018021044297057693,0.0010514550284478153,0.0004573701177783701,0.00018212097637395494,0.0,0.00011115830710562917,0.000780175826582887,0.0004573701177783701,0.00018212097637395494,0.0,0.0,0.00027127920186492823,0.0,0.00011115830710562917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5549973366774086e-05,0.0,0.0,0.0001691838330345013,8.024444040169948e-05,0.00019473380640127537,9.297472164371982e-05,5.45054818922687e-05,2.1703629498512774e-05,0.0,0.0,1.8123683530064654e-05,0.0,7.4262898367094235e-06,0.0,0.0,0.0,0.00011361929784659295,4.942300928904736e-05,1.9679831185259e-05,0.0,1.2011668080376066e-05 +101920,50.0,the Greater Atlanta and Macon Area,G1300890023306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,66771.0,,6717.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.005652595825548686,0.0019770551273043105,0.0,0.007629620263246698,0.003118002620634007,0.0017978585161320245,0.0027137591264806667,0.0,0.0,0.0011409474933296965,0.0017978585161320245,0.0027137591264806667,0.0,0.0,0.0019770551273043105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013209433479144413,0.0,0.0,0.0006736075912945253,0.00032708409039811185,0.0008057019260859692,0.00013596423952719842,0.00021424690211642512,0.0003233927924370457,0.0,0.0,0.00013209433479144413,0.0,0.0,0.0,0.0,0.0,0.00032926680887220054,0.0001898571644850416,0.00028657795272872706,0.0,0.0 +101921,50.0,the Greater Atlanta and Macon Area,G1300670031406,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,28911.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002746988333150275,0.0,0.0,0.002746988333150275,0.001702531369284303,0.0006162803325919844,0.0004281462576745497,0.0,0.0,0.001702531369284303,0.0006162803325919844,0.0004281462576745497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003273515361025295,9.278187173960146e-05,0.0003273515361025295,0.00020288628541746,7.344054254224151e-05,5.1021088599085084e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020288628541746,7.344054254224151e-05,5.1021088599085084e-05,0.0,0.0 +101922,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,7734.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015325620763893665,0.0,0.0,0.0015325620763893665,0.000891830376130952,0.00020147443162895286,0.00039533981247388947,0.0,4.3834749081832933e-05,0.000891830376130952,0.00020147443162895286,0.00039533981247388947,0.0,4.3834749081832933e-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.00018262848540579157,4.918763311499192e-05,0.00018262848540579157,0.00010627538899787645,2.4008796030680423e-05,4.711085592227111e-05,0.0,5.223588627364789e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010627538899787645,2.4008796030680423e-05,4.711085592227111e-05,0.0,5.223588627364789e-06 +101923,50.0,the Greater Atlanta and Macon Area,G1301350050719,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4470.0,,141.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007462659263497708,0.00011148913540058639,0.0,0.0008577550617503572,0.0003826029231180362,0.00022314368494865146,0.00021082033096149466,0.0,4.118812272217509e-05,0.00027111378771744977,0.00022314368494865146,0.00021082033096149466,0.0,4.118812272217509e-05,0.00011148913540058639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.449464199995341e-06,0.0,0.0,8.893218762976696e-05,3.1200697855493444e-05,9.638165182976228e-05,3.230851280620371e-05,2.6591936409743024e-05,2.5123367645824672e-05,0.0,4.908370767995561e-06,7.449464199995341e-06,0.0,0.0,0.0,0.0,0.0,4.2991179381398165e-05,2.5073541282103817e-05,2.3688827549326406e-05,0.0,4.628103616933914e-06 +101924,85.0,Rural Climate Zone 3A,G1300690010700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,34453.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0030697278699277205,0.0,0.0,0.0030697278699277205,0.0009623646742833639,0.0008849961768068552,0.0012223363292312042,0.0,0.0,0.0009623646742833639,0.0008849961768068552,0.0012223363292312042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003658120893865546,0.00011082987265471282,0.0003658120893865546,0.00011468268431875612,0.00010546286649977582,0.0001456628813614305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011468268431875612,0.00010546286649977582,0.0001456628813614305,0.0,0.0 +101925,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,96410.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.009234212074664747,0.0,0.0,0.009234212074664747,0.004685158086872657,0.003456454868817282,0.001092568745375371,0.0,0.0,0.004685158086872657,0.003456454868817282,0.001092568745375371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011004217822051827,0.0002470714788470635,0.0011004217822051827,0.00055832051182955,0.0004118985134954012,0.0001301991373217726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00055832051182955,0.0004118985134954012,0.0001301991373217726,0.0,0.0 +101926,50.0,the Greater Atlanta and Macon Area,G1301210001400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,134402.0,,1379.0,,3.20458438519356,Mercantile,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,240343.828889517,0.0,0.0,0.012132977284205468,0.00040166047896483006,0.0,0.012534637763170296,0.006192812442164344,0.0053570524800351646,0.0009847728409707896,0.0,0.0,0.005791151963199514,0.0053570524800351646,0.0009847728409707896,0.0,0.0,0.00040166047896483006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6837305033420276e-05,0.0,0.0,0.001445862523447328,0.0004528826645886318,0.0014726998284807483,0.0006901199429490994,0.0006383891798022624,0.00011735340069596622,0.0,0.0,2.6837305033420276e-05,0.0,0.0,0.0,0.0,0.0,0.0007275961215397882,0.0006294023343610978,0.00011570137257986253,0.0,0.0 +101927,50.0,the Greater Atlanta and Macon Area,G1300970080303,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,138922.0,,35675.0,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.047393212717717514,0.0315542540331554,0.0,0.07894737453362015,0.05745429942977638,0.008665563025842425,0.007560984772125341,0.0006543736256784456,0.004612153680197544,0.030122765618357413,0.008665563025842425,0.003338264550388913,0.0006543736256784456,0.004612153680197544,0.02733153381141897,0.004222720221736428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021082677983996555,0.0,0.0,0.005647757679380063,0.003425066253205105,0.007756025477779718,0.0035896718346263064,0.0010326584191887324,0.00039781454282403883,7.798044187512099e-05,0.000549621451513853,0.001826130719329949,0.0002821370790697063,0.0,0.0,0.0,0.0,0.005644481691985363,0.0008513307504496922,0.0007428136891966574,6.428761618396509e-05,0.0004531117299640403 +101928,35.0,Eastern Counties in South Carolina and Georgia,G1302450001601,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,58704.0,,2792.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00523049098053008,0.0008219597254713734,0.0,0.0060524507060014535,0.0019223969384881022,0.001685350419444646,0.0024446726584624085,0.0,0.0,0.001100437213016729,0.001685350419444646,0.0024446726584624085,0.0,0.0,0.0008219597254713734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4918036126450056e-05,0.0,0.0,0.0006233080413743842,0.00022787297204881557,0.0006782260775008343,0.0001311370895111323,0.00020084012626804643,0.00029132716837096737,0.0,0.0,5.491803612645006e-05,0.0,0.0,0.0,0.0,0.0,0.00021542013282281906,0.00018885715220462855,0.00027394535345466353,0.0,0.0 +101929,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,26019.0,,301.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.002908727927298939,0.00011194419627754718,0.0,0.003020633375152714,0.0018089314153759129,0.0002836384620116461,0.0008652523028306086,0.0,6.28111949345462e-05,0.0018089314153759129,0.0002836384620116461,0.0007533081065530615,0.0,6.28111949345462e-05,0.0,0.00011194419627754718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.4789584251628626e-06,0.0,0.0,0.0003466253330664163,0.00011424264045196298,0.00035410429149157913,0.0002155655221185418,3.3800437449827055e-05,8.97697137243289e-05,0.0,7.485042227618804e-06,0.0,7.4789584251628626e-06,0.0,0.0,0.0,0.0,0.00021205829958300147,3.3250508802749785e-05,0.00010143222152532822,0.0,7.363261580499644e-06 +101930,50.0,the Greater Atlanta and Macon Area,G1301210008102,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,64556.0,,2438.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.011688345785577457,0.0009062481351814722,0.0,0.01259459392075893,0.005820129495838152,0.0023440083992446042,0.004125854666403831,0.0,0.00030464010769611484,0.005820129495838152,0.0023440083992446042,0.0035242466389184745,0.0,0.0,0.0,0.0006016080274853573,0.00030464010769611484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.055050766337437e-05,0.0,0.0,0.0013928786061535377,0.0004979418908289651,0.0014534291138169118,0.000693574095814246,0.00027933115702143883,0.0004199779708960361,0.0,0.0,0.0,4.019613399955321e-05,2.035437366382116e-05,0.0,0.0,0.0,0.0006716489399069074,0.00027050098414671173,0.00047612787909301194,0.0,3.515578227830405e-05 +101931,50.0,the Greater Atlanta and Macon Area,G1302970110601,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,74973.0,,5103.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006096922988739361,0.0014866965716796383,0.0,0.007583619560419,0.005264838232142149,0.0013670245898948965,0.0009517871119813911,0.0,0.0,0.003778141660462511,0.0013670245898948965,0.0009517871119813911,0.0,0.0,0.0014866965716796383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.933218563805026e-05,0.0,0.0,0.00072655970160242,0.00027204318064355385,0.0008258918872404703,0.0004502345662733879,0.0001629059412348871,0.00011342281366312845,0.0,0.0,9.933218563805026e-05,0.0,0.0,0.0,0.0,0.0,0.0005733656796622615,0.00014887541621220871,0.00010365409919403141,0.0,0.0 +101932,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,14219.0,,1374.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012668976375754687,0.0004044890110037227,0.0,0.0016713866485791914,0.0005838083806012,0.0005297332943046477,0.0005578756632796413,0.0,0.0,0.00017931936959747735,0.0005297332943046477,0.0005578756632796413,0.0,0.0,0.0004044890110037227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7025357437331472e-05,0.0,0.0,0.0001509735588827335,7.852690098924384e-05,0.00017799891632006495,2.1369116652983495e-05,6.312721590743593e-05,6.64808835389242e-05,0.0,0.0,2.7025357437331472e-05,0.0,0.0,0.0,0.0,0.0,6.217427856918887e-05,5.6415403584227996e-05,5.941250254064635e-05,0.0,0.0 +101933,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,35232.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.003106793992089883,0.0,0.0,0.0031067939920898825,0.0017558977834964328,0.0011079985338897488,0.0002428976747037013,0.0,0.0,0.0017558977834964328,0.0011079985338897488,0.0002428976747037013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037023041343093276,0.00010676386112583997,0.00037023041343093276,0.00020924681970594435,0.00013203796464371465,2.894562908127377e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020924681970594438,0.00013203796464371468,2.8945629081273772e-05,0.0,0.0 +101934,50.0,the Greater Atlanta and Macon Area,G1300890021308,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,26410.0,,3093.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0021742333685525884,0.0009010024537214701,0.0,0.003075205448674621,0.0021377850492272864,0.0007048193749530311,0.00023260102449430345,0.0,0.0,0.0012367825955058166,0.0007048193749530311,0.00023260102449430345,0.0,0.0,0.0009010024537214701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.019911427166764e-05,0.0,0.0,0.00025909799531541165,0.00011522530323122422,0.00031929710958707934,0.00014738431291295767,8.399157595091193e-05,2.7718486905067163e-05,0.0,0.0,6.019911427166764e-05,0.0,0.0,0.0,0.0,0.0,0.00022196519827022703,7.318105829334666e-05,2.4150853023505653e-05,0.0,0.0 +101936,81.0,the Columbus-Albany Area,G1302150000300,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,18012.0,,4123.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004064709843288753,0.0031979631095772035,0.0,0.007262672952865957,0.0032553742655558587,0.0005105549842946841,0.0024502434485425277,0.0004291281757446767,0.0006174529395112778,0.0020997928147235287,0.0005105549842946841,0.0010252338685258632,0.0004291281757446767,0.0,0.00115558145083233,0.0014250095800166643,0.0006174529395112778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002136702152910966,0.0,0.0,0.0004843820974775373,0.00034222170059764763,0.000698052312768634,0.00025022746692322535,6.084165997201342e-05,0.00012217475558840007,5.113821499389851e-05,0.0,7.720956400225192e-05,9.521126208184771e-05,4.125479187748903e-05,0.0,0.0,0.0,0.0003128905225041188,4.907202759857438e-05,0.00023550531838644297,4.1245684267601235e-05,5.934653195164934e-05 +101937,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,565864.0,,15985.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.027292398524971544,0.0027183658218382354,0.0,0.030010764346809774,0.013972482238518292,0.006473372684822698,0.004060944249287475,0.0,0.00550396517418131,0.012187478102554475,0.006473372684822698,0.0031275825634130543,0.0,0.00550396517418131,0.001785004135963816,0.0009333616858744195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018162486671457744,0.0,0.0,0.003252383576727755,0.0010088808009184502,0.003434008443442333,0.0014523587432672756,0.0007714195946131983,0.00037270810606101964,0.0,0.000655897132786261,0.00011926324841009206,6.236161830448538e-05,0.0,0.0,0.0,0.0,0.001598813726582756,0.0007407214358268479,0.00046467716314210436,0.0,0.0006297961178906248 +101938,50.0,the Greater Atlanta and Macon Area,G1302550160100,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,30984.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027606221552972585,0.0,0.0,0.002760622155297258,0.0010034887467222856,0.0007366119303574623,0.0010205214782175107,0.0,0.0,0.0010034887467222856,0.0007366119303574623,0.0010205214782175107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032897951274403806,0.00011568430528507618,0.00032897951274403806,0.0001195843619190528,8.778102192125223e-05,0.00012161412890373303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011958436191905282,8.778102192125224e-05,0.00012161412890373306,0.0,0.0 +101939,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2082.0,,201.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.00018554935967591104,5.923094015456636e-05,0.0,0.0002447802998304774,0.00014316701337878347,7.261160850036479e-05,2.9001677951329135e-05,0.0,0.0,8.393607322421713e-05,7.261160850036479e-05,2.9001677951329135e-05,0.0,0.0,5.923094015456636e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9571153640943654e-06,0.0,0.0,2.211088895572476e-05,1.2560041729890094e-05,2.6068004319819122e-05,1.000219670755991e-05,8.652723001859872e-06,3.4559692463049785e-06,0.0,0.0,3.9571153640943654e-06,0.0,0.0,0.0,0.0,0.0,1.5246644953856093e-05,7.732810709715653e-06,3.0885486562473764e-06,0.0,0.0 +101940,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,15159.0,,1906.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0036399383152669195,0.0015121334291757574,0.0,0.005152071744442677,0.0026895513309285377,0.0009222665792670171,0.0014219000117261732,0.0,0.00011843652959468826,0.0011774179017527806,0.0009222665792670171,0.0014219000117261732,0.0,0.00011843652959468826,0.0015121334291757574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010103261711803337,0.0,0.0,0.0004337663699966928,0.0002288336349218375,0.0005347989871147263,0.00014031124842701475,0.00010990522135499027,0.00016944584033135978,0.0,1.4113915969899213e-05,0.00010103261711803337,0.0,0.0,0.0,0.0,0.0,0.00027918270531173295,9.573376631910991e-05,0.00014759706847440924,0.0,1.2294032227510126e-05 +101941,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,41265.0,,2980.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.004642138664743062,0.0011073912029823537,0.0,0.0057495298677254164,0.002770628544975236,0.0006068778131183608,0.0021891696978513613,0.0,0.00018289256020423075,0.0021684005427095253,0.0006068778131183608,0.0018669378057627206,0.0,0.0,0.0006022280022657106,0.0003222318920886404,0.00018289256020423075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.39886073387731e-05,0.0,0.0,0.0005531966696235545,0.00022019405732516938,0.0006271852769623276,0.00025840502519827496,7.232071450930795e-05,0.0002224801650985165,0.0,0.0,4.0236919950285585e-05,2.1529418756052945e-05,1.221967971724025e-05,0.0,0.0,0.0,0.00030223296014070077,6.620103522542628e-05,0.00023880474314461164,0.0,1.995076530864589e-05 +101942,50.0,the Greater Atlanta and Macon Area,G1301510070404,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,138162.0,,5309.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.012310030740496754,0.001562868200710514,0.0,0.013872898941207266,0.004194962284832994,0.005057647117861419,0.004620258848906558,0.0,0.0,0.0026320940841224796,0.005057647117861419,0.004620258848906558,0.0,0.0,0.001562868200710514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010442191205838277,0.0,0.0,0.001466963134936125,0.0005314159360281172,0.0015713850469945077,0.00031366168537572055,0.0006027102635098087,0.0005505875288281231,0.0,0.0,0.00010442191205838277,0.0,0.0,0.0,0.0,0.0,0.000475163917435618,0.0005728803394058807,0.0005233373139373576,0.0,0.0 +101943,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3317.0,,261.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0004704378354291806,0.00020742934093818298,0.0,0.0006778671763673637,0.0003855803777726512,0.00020742934093818304,5.632351721646836e-05,0.0,2.8533940440061064e-05,0.0001781510368344682,0.00020742934093818304,5.632351721646836e-05,0.0,2.8533940440061064e-05,0.00020742934093818298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3861625378412431e-05,0.0,0.0,5.6059603684048144e-05,3.2084944759595913e-05,6.992122906246057e-05,2.1229322492165913e-05,2.471826407165836e-05,6.711777445294794e-06,0.0,3.400239674929081e-06,1.3861625378412431e-05,0.0,0.0,0.0,0.0,0.0,3.97721778781346e-05,2.1396100840489398e-05,5.8097068071663796e-06,0.0,2.9432435366701924e-06 +101944,50.0,the Greater Atlanta and Macon Area,G1301210011800,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,85748.0,,9611.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.007640085418994214,0.0028289679085222426,0.0,0.010469053327516457,0.004384624051752797,0.002163740002413237,0.003920627894137828,0.0,0.0,0.0015556561432305542,0.002163740002413237,0.003920627894137828,0.0,0.0,0.0028289679085222426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018901569995089426,0.0,0.0,0.0009104527210357201,0.00045642968242039835,0.0010994684209866144,0.00018538423210281974,0.00025784829157974356,0.0004672128829230089,0.0,0.0,0.0001890156999508943,0.0,0.0,0.0,0.0,0.0,0.0004604767529581581,0.00022723771953917535,0.0004117475023948881,0.0,0.0 +101945,50.0,the Greater Atlanta and Macon Area,G1300970080201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,8157.0,,851.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006424927489067643,0.0002480308130086813,0.0,0.0008905235619154458,0.0006611421389615439,0.00019162703885277623,3.772401050168776e-05,0.0,0.0,0.00041311132595286243,0.00019162703885277623,3.772401050168776e-05,0.0,0.0,0.0002480308130086813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6572188745813006e-05,0.0,0.0,7.656416556289311e-05,4.1060762486879865e-05,9.313635430870612e-05,4.9229386650636265e-05,2.2835688580167946e-05,4.495470790389696e-06,0.0,0.0,1.6572188745813006e-05,0.0,0.0,0.0,0.0,0.0,6.91462541095401e-05,2.004151776437214e-05,3.945405779576827e-06,0.0,0.0 +101946,50.0,the Greater Atlanta and Macon Area,G1301210002800,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,279910.0,,9736.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.013180910252920034,0.0016556788797659502,0.0,0.014836589132685984,0.006402433508781066,0.0018338690120374816,0.0034256653996069817,0.0,0.0031745857515376144,0.006106318742704764,0.0018338690120374816,0.0020661012859173335,0.0,0.0031745857515376144,0.00029611476607630183,0.0013595641136896488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011062245403007619,0.0,0.0,0.001570743648500853,0.0005357067237138548,0.0016813661025309292,0.0007276782253107578,0.00021853863258057373,0.0002462133046763705,0.0,0.0003783092601472147,1.97845986309453e-05,9.08378553991309e-05,0.0,0.0,0.0,0.0,0.0007255599369303152,0.0002078243972213776,0.00038821575700462275,0.0,0.0003597619927651595 +101947,50.0,the Greater Atlanta and Macon Area,G1300890021913,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,72896.0,,2175.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00669002727683623,0.0006403386354015686,0.0,0.007330335222631501,0.0031607532422067075,0.0017518241066854705,0.002417788563345621,0.0,0.0,0.002520414606805139,0.0017518241066854705,0.002417788563345621,0.0,0.0,0.0006403386354015686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2783024392647495e-05,0.0,0.0,0.0007972361495173129,0.00028836715189105197,0.0008400191739099604,0.0003003523832068391,0.00020876110778818874,0.00028812265852228524,0.0,0.0,4.2783024392647495e-05,0.0,0.0,0.0,0.0,0.0,0.00036220626298977927,0.0002007501422841081,0.0002770662855090328,0.0,0.0 +101948,50.0,the Greater Atlanta and Macon Area,G1300850970100,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12797.0,,,2550.0,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002991762978371967,0.0,0.0006543783674254004,0.0036461413457973676,0.002002999911818547,0.0006097165476061743,0.0009559283582789152,0.0,7.757923516747037e-05,0.0013486215443931468,0.0006097165476061743,0.0009559283582789152,0.0,7.757923516747037e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006543783674254004,0.0,0.0,0.0,0.0,5.2774914155896306e-05,0.0003565229480540154,0.00016899967837639092,0.00040929786220991174,0.0001607127744718098,7.265881107605678e-05,0.00011391624232461533,0.0,9.244976232954594e-06,0.0,0.0,0.0,5.2774914155896306e-05,0.0,0.0,0.00022484690091867168,6.844377543861788e-05,0.00010730780744974844,0.0,8.70866269145735e-06 +101949,50.0,the Greater Atlanta and Macon Area,G1300570090905,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,11844.0,,823.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002891852833294884,0.0006530550542455714,0.0,0.0035449078875404555,0.0020209473468199768,0.001063447554140015,0.0003959187619900647,0.0,6.459422459039909e-05,0.0013678922925744054,0.001063447554140015,0.0003959187619900647,0.0,6.459422459039909e-05,0.0006530550542455714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.363413543991435e-05,0.0,0.0,0.0003446175494692781,0.00016119622341407026,0.00038825168490919245,0.00016300957101880137,0.0001267293708301438,4.7181015567265394e-05,0.0,7.69759205306753e-06,4.363413543991435e-05,0.0,0.0,0.0,0.0,0.0,0.00022134177739101087,0.00011647278795553993,4.336251640559727e-05,0.0,7.074603157044382e-06 +101950,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6244.0,,356.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001454900134148157,0.00028211382852477755,0.0,0.0017370966697466737,0.0008331910608497828,0.0002449783524158286,0.0006163331135053189,0.0,4.251143590200402e-05,0.0005510772323250053,0.0002449783524158286,0.0006163331135053189,0.0,4.251143590200402e-05,0.00028211382852477755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8851486935823168e-05,0.0,0.0,0.00017337986118110072,6.684029155890654e-05,0.00019223134811692391,6.567165113124177e-05,2.9193971281815715e-05,7.344816812697189e-05,0.0,5.0660706410713305e-06,1.8851486935823168e-05,0.0,0.0,0.0,0.0,0.0,9.220295200351813e-05,2.710990111518967e-05,6.820492339986273e-05,0.0,4.704419032142975e-06 +101951,50.0,the Greater Atlanta and Macon Area,G1300570090902,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,26905.0,,4699.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002508200143498653,0.0013830884870185715,0.0,0.003891257940910927,0.0019157986731340962,0.0006988023353986923,0.001276656932378138,0.0,0.0,0.0005327101861155249,0.0006988023353986923,0.001276656932378138,0.0,0.0,0.0013830884870185715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.240889112726368e-05,0.0,0.0,0.00029889613056058745,0.00017932436713596862,0.00039130502168785116,6.348178144908327e-05,8.327458022788489e-05,0.0001521361116776365,0.0,0.0,9.240889112726368e-05,0.0,0.0,0.0,0.0,0.0,0.00019265277520122488,7.027158496326616e-05,0.00012838066152336008,0.0,0.0 +101952,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,8284.0,,548.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0006477655201256126,0.0001612431914881304,0.0,0.000809008711613743,0.0002840936854978346,0.00022931273825643522,0.0002956022878594732,0.0,0.0,0.00012285049400970424,0.00022931273825643522,0.0002956022878594732,0.0,0.0,0.0001612431914881304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.077330625477139e-05,0.0,0.0,7.719171426295827e-05,3.765758871417865e-05,8.796502051772966e-05,1.4639618713915857e-05,2.73263130228277e-05,3.5225782526214714e-05,0.0,0.0,1.077330625477139e-05,0.0,0.0,0.0,0.0,0.0,3.089003432846339e-05,2.4933600140680403e-05,3.214138604858587e-05,0.0,0.0 +101953,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,35062.0,,4535.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0030967040338634017,0.001334997873950071,0.0,0.0044317019078134725,0.0023325635266568997,0.0008498872672022831,0.0012492511139542896,0.0,0.0,0.000997565652706829,0.0008498872672022831,0.0012492511139542896,0.0,0.0,0.001334997873950071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.919656239019349e-05,0.0,0.0,0.00036902773964057325,0.00021389685317260712,0.0004582243020307667,0.00011887781135551449,0.00010127928718253383,0.00014887064110252494,0.0,0.0,8.919656239019349e-05,0.0,0.0,0.0,0.0,0.0,0.00024117987088895335,8.787572086741378e-05,0.00012916871027439955,0.0,0.0 +101954,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,72009.0,,6161.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006415907713385148,0.0018135102153438527,0.0,0.008229417928729001,0.0030559175470937553,0.002755711818289626,0.002417788563345621,0.0,0.0,0.0012424073317499017,0.002755711818289626,0.002417788563345621,0.0,0.0,0.0018135102153438527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012116866422251743,0.0,0.0,0.0007645718836324485,0.0003166593480001488,0.0008857405478549659,0.0001480553892464886,0.00032839309257243654,0.00028812340181352336,0.0,0.0,0.00012116866422251743,0.0,0.0,0.0,0.0,0.0,0.00032891148630489743,0.00029660004107231384,0.0002602290204777548,0.0,0.0 +101955,50.0,the Greater Atlanta and Macon Area,G1301350050431,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,101781.0,,5010.0,,4.088175128053588,Healthcare,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.011449926734107831,0.0018618230138248055,0.0,0.013311749747932639,0.0055721008352730495,0.002159720895784579,0.005148619311867956,0.0,0.00043130870500705353,0.004442971766554556,0.002159720895784579,0.00441588661833787,0.0,0.00043130870500705353,0.0011291290687184925,0.0007327326935300854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012439737657368182,0.0,0.0,0.0013644640963475822,0.0005280079634418864,0.0014888614729212642,0.0005294597596411651,0.00025736947395928585,0.0005262320785263305,0.0,5.13981666512516e-05,7.54425597485294e-05,4.895740579425843e-05,0.0,0.0,0.0,0.0,0.0006232153108316096,0.00024155541494430828,0.0005758507391839364,0.0,4.824000796140975e-05 +101956,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock 90.1-2007,gen5_led,100001_200000,NaturalGas,253271.0,,73517.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.05718963591431738,0.0650257047514651,0.0,0.12221534066578248,0.10596832063769908,0.007851100249349749,0.002256187306348485,0.0006469962454565915,0.005492644009675814,0.044760317933790615,0.007851100249349749,0.002256187306348485,0.0006469962454565915,0.0016749419621191663,0.06120800270390845,0.0,0.0038177020475566466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004344637714185098,0.0,0.0,0.006815178520923117,0.0058562829556633575,0.011159816235108214,0.005334000689025031,0.0009356004620338419,0.000268865486264726,7.710129369873773e-05,0.00019959960054877042,0.004089561166214849,0.0,0.0002550765479702481,0.0,0.0,0.0,0.009676256504440971,0.0007169053864175514,0.00020601861921481628,5.907899257791019e-05,0.0005015483118479885 +101957,33.0,Rural Lower Plains-Upper South Appalachia,G1300110970400,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,252456.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,480687.657779034,0.0,0.0,0.020001318965753953,0.0,0.0,0.02000131896575395,0.009717334547321627,0.00816250999210311,0.0021214744263292136,0.0,0.0,0.009717334547321627,0.00816250999210311,0.0021214744263292136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023835185228352207,0.0006292358788375643,0.0023835185228352207,0.0011579959764545771,0.0009727105393557708,0.00025281200702487254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011579959764545773,0.0009727105393557709,0.0002528120070248726,0.0,0.0 +101958,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,113730.0,,6317.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.010055357434623423,0.0018595753143967047,0.0,0.011914932749020127,0.007244128118541253,0.0017417579158198239,0.002929046714659051,0.0,0.0,0.0053845528041445495,0.0017417579158198239,0.002929046714659051,0.0,0.0,0.0018595753143967047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001242467072900643,0.0,0.0,0.0011982778820595944,0.0005322528751259788,0.0013225245893496588,0.0006416669493788131,0.00020756198872081915,0.00034904894395996225,0.0,0.0,0.0001242467072900643,0.0,0.0,0.0,0.0,0.0,0.0008040781905343092,0.00019333031254881145,0.0003251160862665382,0.0,0.0 +101959,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,26505.0,,15768.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005425257207475899,0.010846498096574923,0.0,0.016271755304050818,0.004857521916916321,0.00047069816977545533,0.008663413898830737,0.00037072053017969355,0.0019094007883486133,0.002819383780594686,0.00047069816977545533,0.0015409752972414192,0.00037072053017969355,0.00022347942968464407,0.0020381381363216346,0.0071224386015893175,0.001685921358663969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007246990272771339,0.0,0.0,0.0006465188851371053,0.000907367305680551,0.001371217912414239,0.0003359812795772985,5.609231863513546e-05,0.000183635465213244,4.417814947813731e-05,2.6631672233289978e-05,0.000136176368787188,0.0004758793373174344,0.00011264332117251136,0.0,0.0,0.0,0.0004093425041096973,3.966565067359541e-05,0.000730064341477519,3.124055284653583e-05,0.00016090486330689176 +101960,50.0,the Greater Atlanta and Macon Area,G1301390001301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,66954.0,,3818.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005904141753107951,0.0011122204642115962,0.0,0.007016362217319546,0.004628875807114502,0.00200493092528656,0.00038252511131904647,0.0,0.0,0.003516655342902906,0.00200493092528656,0.00038252511131904647,0.0,0.0,0.0011122204642115962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.431287403786119e-05,0.0,0.0,0.0007035839619009736,0.0002447624738530857,0.0007778968359388348,0.0004190723058939765,0.00023892333597992304,4.558470047010485e-05,0.0,0.0,7.431287403786119e-05,0.0,0.0,0.0,0.0,0.0,0.0005131986822772382,0.00022228462196641823,4.2410164205563964e-05,0.0,0.0 +101961,85.0,Rural Climate Zone 3A,G1302930010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,115949.0,,1733.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.01304372690070114,0.0006439600546682438,0.0,0.013687686955369384,0.0071106844979911404,0.0019772158198180685,0.00436822605709821,0.0,0.00023152183203819468,0.0071106844979911404,0.0019772158198180685,0.0037242660024299655,0.0,0.00023152183203819468,0.0,0.0006439600546682438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3025536474060124e-05,0.0,0.0,0.001554397001957015,0.0005465979322420798,0.001597422538431075,0.000847367224849328,0.00023562118142645132,0.0004438139461779439,0.0,2.7590031924727044e-05,0.0,4.3025536474060124e-05,0.0,0.0,0.0,0.0,0.0008298529706151486,0.00023075112137050055,0.0005097941514386628,0.0,2.7019772869044642e-05 +101962,50.0,the Greater Atlanta and Macon Area,G1300630040521,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,286005.0,,26660.0,,7.614023970037612,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1142103.5955056418,0.0,0.0,0.053616706040384286,0.018453540714907273,0.0,0.07207024675529156,0.058672438984951655,0.007297024169579201,0.0025889197735156143,0.0007775996699456637,0.002734336324322158,0.04021889827004438,0.007297024169579201,0.0025889197735156143,0.0007775996699456637,0.002734336324322158,0.018453540714907273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012329571967605356,0.0,0.0,0.006389401763597037,0.0029642715594284186,0.007622358960357571,0.004792810273406149,0.0008695726116222522,0.00030851668795641194,9.266508648966769e-05,0.00032584570413058176,0.0012329571967605356,0.0,0.0,0.0,0.0,0.0,0.006205367834267101,0.0007717545043489671,0.0002738116868158877,8.224120325141299e-05,0.00028919136426847205 +101963,85.0,Rural Climate Zone 3A,G1302770960700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,207878.0,,2404.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01673023417430527,0.0007002633350373682,0.0,0.017430497509342637,0.010545045505599801,0.00567527668134449,0.0012102056959977835,0.0,0.0,0.009844782170562432,0.00567527668134449,0.0012102056959977835,0.0,0.0,0.0007002633350373682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.678658544070124e-05,0.0,0.0,0.0019937109793401577,0.0005377035585799607,0.002040497564780859,0.0011731844335333456,0.0006763121969785302,0.00014421796839379688,0.0,0.0,4.678658544070124e-05,0.0,0.0,0.0,0.0,0.0,0.0012344535583764425,0.0006643750840464543,0.0001416724780370616,0.0,0.0 +101964,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,65267.0,,7209.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0035693522485550897,0.0012259126493052907,0.0,0.004795264897860381,0.0017919189769176362,0.00044090089743245304,0.001683675120448214,0.0,0.000878752172700657,0.001301532640761816,0.00044090089743245304,0.0009481488072987436,0.0,0.000878752172700657,0.0004903863361558203,0.0007355263131494705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.190802473591193e-05,0.0,0.0,0.00042535231732812785,0.0001707696736081953,0.0005072603420640398,0.00015510095005342864,5.254124708786097e-05,0.00011298893027990722,0.0,0.00010471907701647023,3.276463145621839e-05,4.914339327969354e-05,0.0,0.0,0.0,0.0,0.0001895556246721346,4.664008033168725e-05,0.00017810520080013757,0.0,9.295756067877442e-05 +101965,85.0,Rural Climate Zone 3A,G1300810010300,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,105166.0,,1238.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,70149.4559448546,0.0,0.0,0.005079305287809627,0.0002105125811402869,0.0,0.005289835599311334,0.0036968867382495296,0.0012674194253896346,0.00025802994974602846,0.0,6.751721628756107e-05,0.0034863741571092427,0.0012674194253896346,0.00025802994974602846,0.0,6.751721628756107e-05,0.0002105125811402869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4065805894149836e-05,0.0,0.0,0.000605292079917912,0.00014750656621706636,0.0006193578858120619,0.0004154652152910334,0.00015103619425350243,3.0748985562598395e-05,0.0,8.04591060416235e-06,1.4065805894149836e-05,0.0,0.0,0.0,0.0,0.0,0.00043284822586678616,0.0001483952007598605,3.021131397196886e-05,0.0,7.905221164382423e-06 +101966,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,161889.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.012453783241467002,0.0,0.0,0.012453783241467002,0.006598269621058892,0.004077200120526616,0.001778313499881494,0.0,0.0,0.006598269621058892,0.004077200120526616,0.001778313499881494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014840933004610357,0.00046141792606200555,0.0014840933004610357,0.000786303049393332,0.0004858720652343475,0.00021191818583335623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000786303049393332,0.0004858720652343475,0.00021191818583335623,0.0,0.0 +101967,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,73209.0,,3755.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0065227996121200475,0.0011053475500243611,0.0,0.007628147162144409,0.0022125978556391803,0.0021367024592649606,0.003278846847240268,0.0,0.0,0.0011072503056148188,0.0021367024592649606,0.003278846847240268,0.0,0.0,0.0011053475500243611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.385198747734923e-05,0.0,0.0,0.000777309885420959,0.00033510465614309994,0.0008511618728983082,0.00013194895740634879,0.0002546268538901361,0.0003907340741244741,0.0,0.0,7.385198747734923e-05,0.0,0.0,0.0,0.0,0.0,0.00024688550112439124,0.0002384169613402059,0.0003658594104337111,0.0,0.0 +101968,85.0,Rural Climate Zone 3A,G1300550010300,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,82242.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.006528683704747004,0.0,0.0,0.0065286837047470025,0.004386828593195057,0.0014533767330964249,0.0006884783784555206,0.0,0.0,0.004386828593195057,0.0014533767330964249,0.0006884783784555206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007780110298544364,0.0002110630222547868,0.0007780110298544364,0.0005227701610211233,0.00017319618777988322,8.204468105342973e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005227701610211234,0.00017319618777988328,8.204468105342976e-05,0.0,0.0 +101969,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,7296.0,,332.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014931935092894562,0.00026342202985969406,0.0,0.0017566155391491502,0.0010964476765619984,0.00039467815588397503,0.0002247151193496983,0.0,4.069188027973925e-05,0.0008330256467023045,0.00039467815588397503,0.0002247151193496983,0.0,4.069188027973925e-05,0.00026342202985969406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7599697239817198e-05,0.0,0.0,0.00017794318769528324,7.883161980622398e-05,0.00019554288493510045,9.927128539198478e-05,4.703361535847412e-05,2.677919801529216e-05,0.0,4.84923276537495e-06,1.7599697239817198e-05,0.0,0.0,0.0,0.0,0.0,0.00012205433521279847,4.3934773148938246e-05,2.501483207159791e-05,0.0,4.529737717786592e-06 +101970,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001500,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,65858.0,,10431.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.025200669751589234,0.009226520574461643,0.0,0.034427190326050884,0.024824884446538544,0.005433440533395435,0.0010616050139247838,0.0006381433891903669,0.0024691169430017443,0.015598363872076904,0.005433440533395435,0.0010616050139247838,0.0006381433891903669,0.0024691169430017443,0.009226520574461643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006164651558381326,0.0,0.0,0.0030031148071152504,0.0013646526904910637,0.0036195799629533828,0.0018588266888443158,0.0006474925420738469,0.00012650940502977135,7.60463067065686e-05,0.0002942398644607477,0.0006164651558381326,0.0,0.0,0.0,0.0,0.0,0.002610019971839836,0.0005712569715483028,0.00011161422702756387,6.709263820628405e-05,0.0002595961543313952 +101971,50.0,the Greater Atlanta and Macon Area,G1300890021705,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,46728.0,,7756.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0038814065772893635,0.00228299981248611,0.0,0.006164406389775474,0.002935368773556378,0.0012677262569455066,0.0019613113592735895,0.0,0.0,0.000652368961070268,0.0012677262569455066,0.0019613113592735895,0.0,0.0,0.00228299981248611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015253615570034063,0.0,0.0,0.0004625410641788393,0.0002815475236115399,0.00061507721987918,7.774177414348982e-05,0.00015107292686264656,0.000233726363172703,0.0,0.0,0.00015253615570034063,0.0,0.0,0.0,0.0,0.0,0.0002928876440647801,0.0001264922349998216,0.0001956973408145783,0.0,0.0 +101972,50.0,the Greater Atlanta and Macon Area,G1300590002100,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,8605.0,,67.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0016961566682457165,5.351147670933189e-05,0.0,0.0017496681449550486,0.0011640193558070128,0.00027872283850146603,0.00025341447393723796,0.0,5.351147670933189e-05,0.0011640193558070128,0.00027872283850146603,0.00025341447393723796,0.0,0.0,0.0,0.0,5.351147670933189e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.576266934947524e-06,0.0,0.0,0.00020212338552798602,6.092079285328882e-05,0.00020569965246293356,0.0001387109678135789,3.321415102541998e-05,3.019826668898719e-05,0.0,0.0,0.0,0.0,3.576266934947524e-06,0.0,0.0,0.0,0.00013684788034806558,3.276803728669752e-05,2.9792660607252588e-05,0.0,6.2910742209178905e-06 +101973,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,300261.0,,18484.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.015456017039256949,0.0031433803154383207,0.0,0.01859937962433385,0.010414725646331916,0.0034337859051373665,0.002606061712603621,0.0,0.0021448063602609473,0.008239245760814277,0.0034337859051373665,0.0016381612826829386,0.0,0.0021448063602609473,0.002175479885517639,0.0009679004299206823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021002187618587766,0.0,0.0,0.0018418628013048487,0.0007637745683981025,0.0020518846774907266,0.0009818545255940046,0.0004091974349053558,0.00019521642098659314,0.0,0.0002555923069269988,0.00014535255721907192,6.466931896680577e-05,0.0,0.0,0.0,0.0,0.0011489531589548132,0.0003788154673351013,0.00028750088469029405,0.0,0.00023661516651051815 +101974,35.0,Eastern Counties in South Carolina and Georgia,G1302450001100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,155756.0,,9357.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01378268896406752,0.0027259090551404745,0.0,0.016508598019207992,0.01160253274362457,0.003962691650646292,0.0009434039985365716,0.0,0.0,0.008876623688484095,0.003962691650646292,0.0009434039985365716,0.0,0.0,0.0027259090551404745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018212970699723395,0.0,0.0,0.0016424570924455926,0.000684830179941414,0.0018245867994428262,0.001057810531176537,0.00047222650266194095,0.00011242367817176932,0.0,0.0,0.00018212970699723395,0.0,0.0,0.0,0.0,0.0,0.001282351660600685,0.00043797025450731787,0.00010426824132907132,0.0,0.0 +101975,35.0,Eastern Counties in South Carolina and Georgia,G1300250960200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,34042.0,,8322.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007088228175414871,0.005724759806437089,0.0,0.01281298798185196,0.002709867384853848,0.0007159804706488453,0.007658473664959995,0.0003811199259769572,0.0013476182553833317,0.002709867384853848,0.0007159804706488453,0.0019337138585229054,0.0003811199259769572,0.0013476182553833317,0.0,0.005724759806437089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003824950582566426,0.0,0.0,0.0008446921588488584,0.000581469746195049,0.001227187217105501,0.00032293031133585545,8.532218129541196e-05,0.00023043740880365594,4.541741674885497e-05,0.00016059338741268063,0.0,0.0003824950582566426,0.0,0.0,0.0,0.0,0.00025954247513959605,6.857433118035644e-05,0.0007335042378475408,3.650245376063449e-05,0.0001290705882879793 +101976,35.0,Eastern Counties in South Carolina and Georgia,G1300510004209,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7102.0,,125.0,,4.088175128053588,Healthcare,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0009602634379197556,4.634311483141101e-05,0.0,0.0010066065527511664,0.0005175239478999377,0.00011430785012764425,0.00032564175338058377,0.0,4.909425291922889e-05,0.0005175239478999377,0.00011430785012764425,0.0002792986385491727,0.0,4.909425291922889e-05,0.0,4.634311483141101e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096537863866859e-06,0.0,0.0,0.00011443080159863246,3.388497725411263e-05,0.00011752733946249932,6.167128505170426e-05,1.3621615072067059e-05,3.32829157421896e-05,0.0,5.850368236036935e-06,0.0,3.096537863866859e-06,0.0,0.0,0.0,0.0,6.042401824086308e-05,1.3346125622233165e-05,3.802062363703305e-05,0.0,5.732047851989632e-06 +101977,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,39380.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0032478489878788024,0.0,0.0,0.003247848987878802,0.0017071177827994034,0.0012518479008269416,0.00028891367785189535,0.0,0.0,0.0017071177827994034,0.0012518479008269416,0.00028891367785189535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038703998554990595,9.905700840754198e-05,0.00038703998554990595,0.00020343397875102322,0.00014918033296960046,3.442929339334803e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020343397875102325,0.0001491803329696005,3.442929339334804e-05,0.0,0.0 +101978,50.0,the Greater Atlanta and Macon Area,G1301210011616,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,Electricity,488808.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,2015986.1613818365,0.0,0.0,0.07747528312595851,0.0,0.0,0.07747528312595851,0.04637287024101982,0.017484021275710984,0.013152214370789408,0.0,0.00046617723843829967,0.04637287024101982,0.017484021275710984,0.013152214370789408,0.0,0.00046617723843829967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009232578262514614,0.0024609108213217447,0.009232578262514614,0.0055261644292616905,0.0020835366875527656,0.0015673237141484834,0.0,5.5553431551674484e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0055261644292616905,0.0020835366875527656,0.0015673237141484834,0.0,5.5553431551674484e-05 +101979,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,55013.0,,4143.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.006188704502758204,0.0015397073670074814,0.0,0.007728411869765684,0.0043028574661947054,0.000699254055391006,0.0024380895721632214,0.0,0.00028821077601675173,0.003398353010082977,0.000699254055391006,0.0020910974372842198,0.0,0.0,0.0009045044561117284,0.0003469921348790013,0.00028821077601675173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010287418493315906,0.0,0.0,0.0007374969729783993,0.00032120123677935157,0.0008403711579115583,0.00040497571938217787,8.332886938839928e-05,0.000249192384207822,0.0,0.0,6.043366465911848e-05,2.3183972369550013e-05,1.9256547904490563e-05,0.0,0.0,0.0,0.0004678836185401272,7.60354067699434e-05,0.00026511270250313695,0.0,3.133943009835082e-05 +101980,85.0,Rural Climate Zone 3A,G1301470960500,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,29434.0,,1968.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00697909418664463,0.001526409001984598,0.0,0.008505503188629228,0.0040535510552252955,0.0008909241078490387,0.0023270116151460915,0.00041999090725793314,0.0008139446423678003,0.0040535510552252955,0.0008909241078490387,0.0016145472555292935,0.00041999090725793314,0.0,0.0,0.0007124643596167978,0.0008139446423678003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010198687647708272,0.0,0.0,0.0008316806732415321,0.0003811725654982757,0.0009336675497186148,0.0004830512356574904,0.00010616913055005446,0.00019240143671201099,5.0049234350788065e-05,0.0,0.0,4.760324037927509e-05,5.438363609780764e-05,0.0,0.0,0.0,0.0004449670992365421,9.779867343682867e-05,0.0002554411167330782,4.61033136531937e-05,8.934847039527296e-05 +101981,50.0,the Greater Atlanta and Macon Area,G1301210006300,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,166686.0,,40261.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01621521338490219,0.006846809557051849,0.0,0.023062005211592622,0.012792260730592477,0.0033858961989418034,0.0032512341039565027,0.0,0.0036326141781018386,0.01070766667771403,0.0033858961989418034,0.001565732756282023,0.0,0.0005559177519643357,0.0020845940528784477,0.0016855013476744795,0.0030766964261375023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000457463346285196,0.0,0.0,0.0019323349254008007,0.0010439456786092557,0.002389798271685997,0.0012760114714347305,0.00040349055690435054,0.00018658527747928634,0.0,6.624761958243358e-05,0.00013928025354434026,0.00011261523783456623,0.00020556667026833543,0.0,0.0,0.0,0.0013255968986408608,0.00035086319728485206,0.0003369088494775018,0.0,0.0003764293262827822 +101982,50.0,the Greater Atlanta and Macon Area,G1300670031207,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,140395.0,,,,9.325022323477118,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.03494895216224828,0.0,0.0,0.03494895216224828,0.014354913030495485,0.004309523162601541,0.015790536909782115,0.0,0.0004939790593691425,0.014354913030495485,0.004309523162601541,0.015790536909782115,0.0,0.0004939790593691425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004164796340779981,0.0012604299701137617,0.004164796340779981,0.0017106461156281042,0.000513557208089836,0.0018817265260344536,0.0,5.886649102758659e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0017106461156281042,0.000513557208089836,0.0018817265260344536,0.0,5.886649102758659e-05 +101983,50.0,the Greater Atlanta and Macon Area,G1300890023213,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,23067.0,,1048.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.005375877085981243,0.0008315369193749967,0.0,0.00620749671242998,0.0028992137628576823,0.0009574997926799621,0.0021403763612995374,0.0,0.00021048950266653736,0.0022780836390754837,0.0009574997926799621,0.0021403763612995374,0.0,0.0,0.0006211301237821987,0.0,0.00021048950266653736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5561198833711925e-05,0.0,0.0,0.0006406329344723311,0.0002326112718847156,0.000696194133306043,0.0002714748464915751,0.00011410340901223371,0.0002550645350114535,0.0,0.0,4.1502347646824804e-05,0.0,1.4064377464869389e-05,0.0,0.0,0.0,0.00032515774174474415,0.0001073872076276289,0.00024005126943037132,0.0,2.360719041308763e-05 +101984,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4614.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001203387922906923,0.0,0.0,0.0012033879229069232,0.0006870476615524268,0.0002989860715675964,0.0001746773397374173,0.0,4.251143590200402e-05,0.0006870476615524268,0.0002989860715675964,0.0001746773397374173,0.0,4.251143590200402e-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.00014340413163028436,3.2966391756209235e-05,0.00014340413163028436,8.187341040912523e-05,3.5629273941132515e-05,2.0815774983035095e-05,0.0,5.0659603888636544e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.187341040912522e-05,3.562927394113251e-05,2.0815774983035092e-05,0.0,5.065960388863654e-06 +101985,81.0,the Columbus-Albany Area,G1300950010401,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,50456.0,,761.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005653393755312425,0.00022388067794174178,0.0,0.005877274433254167,0.0016240939652744312,0.0017008179810186882,0.0025523317973547496,0.0,0.0,0.0014002132873326895,0.0017008179810186882,0.0025523317973547496,0.0,0.0,0.00022388067794174178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4959386420476164e-05,0.0,0.0,0.0006737022464738462,0.00019640328943091223,0.0006886616328943224,0.00016686027509266082,0.00020268266182214272,0.0003041556523475338,0.0,0.0,1.4959386420476164e-05,0.0,0.0,0.0,0.0,0.0,0.0001903010000301166,0.00019929103215550004,0.0002990660046958556,0.0,0.0 +101986,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,113630.0,,9797.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010124316979974363,0.0028839023037951304,0.0,0.013008219283769495,0.004963828991409341,0.0031549835962227392,0.004889376006531114,0.0,0.0,0.0020799266876142105,0.0031549835962227392,0.004889376006531114,0.0,0.0,0.0028839023037951304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001926858860354441,0.0,0.0,0.0012064943455264937,0.0005485465057788553,0.001399180231561938,0.0002478606500250597,0.00037597300406542745,0.0005826570342177923,0.0,0.0,0.0001926858860354441,0.0,0.0,0.0,0.0,0.0,0.0005339156148989356,0.00033935395632859094,0.0005259073593222194,0.0,0.0 +101987,50.0,the Greater Atlanta and Macon Area,G1300890022302,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,20673.0,,2287.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004642017220692369,0.001814179662471708,0.0,0.0064561968831640774,0.0037439011069572295,0.0010243271082613227,0.0014960055497965927,0.0,0.0001918804110751932,0.0021216845626344538,0.0010243271082613227,0.0014960055497965927,0.0,0.0,0.0016222165443227755,0.0,0.0001918804110751932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012121074612887761,0.0,0.0,0.0005531804497024616,0.0002606228636916087,0.0006743911958313392,0.000252837153479978,0.00012206713233733007,0.0001782761638851535,0.0,0.0,0.00010838511851250538,0.0,1.2820101710462553e-05,0.0,0.0,0.0,0.0003910744963771567,0.00010699753987741813,0.00015626738000022115,0.0,2.00431402919346e-05 +101988,50.0,the Greater Atlanta and Macon Area,G1300590150700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6875.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001297591279895994,0.0,0.0,0.0012975912798959943,0.0008484918694915549,0.0002528355244210628,0.00015441410667128697,0.0,4.176707223835025e-05,0.0008484918694915549,0.0002528355244210628,0.00015441410667128697,0.0,4.176707223835025e-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.00015462888343780368,4.689183532135213e-05,0.00015462888343780368,0.0001011114612268741,3.0129421675655933e-05,1.8400925832008382e-05,0.0,4.977218824405052e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010111146122687409,3.012942167565593e-05,1.840092583200838e-05,0.0,4.977218824405051e-06 +101989,85.0,Rural Climate Zone 3A,G1300910960300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,46773.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.00396648835057601,0.0,0.0,0.00396648835057601,0.002708930213054772,0.0009699505244451667,0.00028757723947663423,0.0,0.0,0.002708930213054772,0.0009699505244451667,0.00028757723947663423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004726791512523155,0.0001471487315007023,0.0004726791512523155,0.000322818251495063,0.00011558722732285355,3.427005286818994e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000322818251495063,0.00011558722732285355,3.427005286818994e-05,0.0,0.0 +101990,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,8316.0,,178.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017758035802566696,0.00014109826779925845,0.0,0.0019169018480559282,0.0011380493346528702,0.0003542343968254537,0.0003868209838787408,0.0,3.7797132698863485e-05,0.0010347481995524753,0.0003542343968254537,0.0003868209838787408,0.0,0.0,0.00010330113510039496,0.0,3.7797132698863485e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.424713179018752e-06,0.0,0.0,0.00021161920998080439,8.003732342175046e-05,0.00022104392315982317,0.0001233090184933093,4.221345425680151e-05,4.6096737230693594e-05,0.0,0.0,6.900039132822053e-06,0.0,2.5246740461966995e-06,0.0,0.0,0.0,0.00013123201374980225,4.084787172168627e-05,4.460553258051055e-05,0.0,4.358505107824099e-06 +101991,50.0,the Greater Atlanta and Macon Area,G1301350050542,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,303588.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.024902037583656805,0.0,0.0,0.024902037583656805,0.00797147178779681,0.00652663581290726,0.010403899293346435,0.0,0.0,0.00797147178779681,0.00652663581290726,0.010403899293346435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029675265241792545,0.0009739889625514979,0.0029675265241792545,0.0009499445130770657,0.0007777662700650533,0.001239812083817504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009499445130770657,0.0007777662700650533,0.001239812083817504,0.0,0.0 +101992,50.0,the Greater Atlanta and Macon Area,G1300770170603,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,67846.0,,2509.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0060418014126161525,0.0007386374443731105,0.0,0.006780438856989262,0.0029366884266271796,0.0016143653600780594,0.002229415759890321,0.0,0.0,0.0021980509822540685,0.0016143653600780594,0.002229415759890321,0.0,0.0,0.0007386374443731105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9352146759273094e-05,0.0,0.0,0.0007199888429182351,0.00027588700679025114,0.0007693409896775081,0.00026193714015223304,0.00019238054485253014,0.0002656748151296923,0.0,0.0,4.9352146759273094e-05,0.0,0.0,0.0,0.0,0.0,0.00033321070039396365,0.00018317360719849167,0.0002529601642744184,0.0,0.0 +101993,50.0,the Greater Atlanta and Macon Area,G1300670030414,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,63301.0,,4313.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006092285814975873,0.00126941418529188,0.0,0.007361730689874051,0.0037079489224947477,0.0013436523429260236,0.002310129424453279,0.0,0.0,0.002438534737202868,0.0013436523429260236,0.002310129424453279,0.0,0.0,0.00126941418529188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.48149656497752e-05,0.0,0.0,0.0007260076065367362,0.00030425467461686905,0.0008108225721865114,0.00029059614433410403,0.00016012082346945233,0.00027529429596271417,0.0,0.0,8.48149656497752e-05,0.0,0.0,0.0,0.0,0.0,0.00040839427704259467,0.00014799015268437512,0.00025443814245954156,0.0,0.0 +101994,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,Electricity,77392.0,,13769.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.009570799240788996,0.00405299216609982,0.0,0.013623822096495113,0.005548588749805769,0.003239656219998101,0.004835546437084943,0.0,0.0,0.0014955965837059498,0.003239656219998101,0.004835546437084943,0.0,0.0,0.00405299216609982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000270798232807625,0.0,0.0,0.0011405345095687027,0.0005930539657142845,0.0014113327423763277,0.0001782274889687344,0.00038606386207533995,0.000576243158524628,0.0,0.0,0.000270798232807625,0.0,0.0,0.0,0.0,0.0,0.000574795011349745,0.0003356057400736837,0.0005009288117241984,0.0,0.0 +101995,50.0,the Greater Atlanta and Macon Area,G1301210009602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,1325011.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,2015986.1613818365,0.0,0.0,0.21001205430502906,0.0,0.0,0.21001205430502906,0.09578689320100037,0.019743116500746335,0.09393490462393718,0.0,0.0005471399793451971,0.09578689320100037,0.019743116500746335,0.09393490462393718,0.0,0.0005471399793451971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.025026731586968956,0.008761063211155048,0.025026731586968956,0.01141473937590873,0.002352749126660984,0.011194041468002102,0.0,6.520161639714071e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.01141473937590873,0.002352749126660984,0.011194041468002102,0.0,6.520161639714071e-05 +101996,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,211595.0,,3339.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,306613.1346040191,0.0,0.0,0.023803466710580635,0.0012410732649960397,0.0,0.025044539975576673,0.012450914765412048,0.003747360062998126,0.008468390518541149,0.0,0.00037787462862535137,0.012450914765412048,0.003747360062998126,0.007227317253545109,0.0,0.00037787462862535137,0.0,0.0012410732649960397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.292190777900327e-05,0.0,0.0,0.0028366135376932475,0.0008638860923428707,0.0029195354454722502,0.001483751665656899,0.0004465657214789876,0.0008612655547982556,0.0,4.503059575910545e-05,0.0,8.292190777900327e-05,0.0,0.0,0.0,0.0,0.001451449578296248,0.0004368437408528698,0.000987191871325747,0.0,4.405025499738586e-05 +101997,50.0,the Greater Atlanta and Macon Area,G1300210013504,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,78054.0,,7925.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004017841740675325,0.0013477556929838935,0.0,0.005365597433659219,0.002620139619571143,0.0010823321825257032,0.0006440908393062582,0.0,0.0010190170618946945,0.002318936239767286,0.0010823321825257032,0.0004383654557493855,0.0,0.00017819013227153067,0.000301203379803857,0.00020572538355687268,0.000840826929623164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.004901950528352e-05,0.0,0.0,0.00047879793625569585,0.00019000610131323463,0.0005688469557609794,0.0002763428620567068,0.00012897930002821038,5.2239109722453866e-05,0.0,2.1234551557622607e-05,2.012461840392239e-05,1.3745346558789234e-05,5.61790545425719e-05,0.0,0.0,0.0,0.00027778052019182434,0.00011474609766465498,6.828486812567857e-05,0.0,0.0001080335900511224 +101998,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,113896.0,,5930.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.01161770391202688,0.0017454713581818457,0.0,0.013363205959815019,0.008504857145250884,0.0020099850748617463,0.002848333050096093,0.0,0.0,0.006759385787069037,0.0020099850748617463,0.002848333050096093,0.0,0.0,0.0017454713581818457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011662280420574328,0.0,0.0,0.0013844605771863904,0.0005817155269290758,0.0015010833813921336,0.0008055036708676477,0.00023952625389242103,0.0003394306524263213,0.0,0.0,0.00011662280420574328,0.0,0.0,0.0,0.0,0.0,0.0009553470746646314,0.00022578078956458412,0.00031995206981217533,0.0,0.0 +101999,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,142522.0,,5822.0,,9.325022323477118,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.03510123806657697,0.004935636538262841,0.0,0.04003687460483982,0.022390358760061704,0.011711342863071787,0.005227392644002248,0.0,0.000707780337704078,0.01816250255950294,0.011711342863071787,0.005227392644002248,0.0,0.0,0.0042278562005587635,0.0,0.000707780337704078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032977117759063564,0.0,0.0,0.004182946774994086,0.0016296722592905387,0.0045127179525847215,0.002164390366031993,0.0013956181194241671,0.0006229382895379265,0.0,0.0,0.000282481318697922,0.0,4.728985889271368e-05,0.0,0.0,0.0,0.0025237078303092307,0.0013200327874911169,0.0005892005523065139,0.0,7.977678247786017e-05 +102000,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,148773.0,,9481.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008382382968558364,0.0016123813371781816,0.0,0.009994782036097966,0.0036163199759568095,0.002681309366470325,0.002752851374800238,0.0,0.0009442835885091722,0.0030771928762572645,0.002681309366470325,0.001679597137321602,0.0,0.0009442835885091722,0.0005391270996995454,0.0010732542374786362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010773001341926522,0.0,0.0,0.0009989132917094512,0.0003962402176205849,0.0011066433051287164,0.000366703463296389,0.0003195267473937542,0.0002001545278330611,0.0,0.00011252855318624691,3.602136067077489e-05,7.170865274849035e-05,0.0,0.0,0.0,0.0,0.0004004065597570794,0.0002968802169638651,0.0003048014987154649,0.0,0.0001045530665493697 +102001,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,144301.0,,9720.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007032694666179685,0.0016529484041072624,0.0,0.008685643070286946,0.0037128086028047373,0.0020185661869501718,0.0017168840873879733,0.0,0.0012373487324212249,0.0037128086028047373,0.0020185661869501718,0.0010960732126262442,0.0,0.00020521120307569115,0.0,0.0006208108747617289,0.0010321375293455336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011044091787288453,0.0,0.0,0.0008380716863880993,0.00032206616522160314,0.0009485126042609838,0.00044244772660933656,0.00024054836000754405,0.00013061677910289479,0.0,2.4454594887282294e-05,0.0,4.1479166962373344e-05,6.896175091051119e-05,0.0,0.0,0.0,0.0004054559608851808,0.00022043681226173366,0.00018749172441975663,0.0,0.00013512423421851592 +102002,35.0,Eastern Counties in South Carolina and Georgia,G1300730030307,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,14444.0,,1294.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006836827363572361,0.0002200869763071154,0.0,0.0009037697126643515,0.0003622490141730988,0.0001768958158878668,0.00022655855822543468,0.0,0.00013804859401653113,0.0002909197701802264,0.0001768958158878668,0.00016996324457262617,0.0,4.5886175355096655e-05,7.132924399287242e-05,5.659531365280853e-05,9.216241866143446e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4704998564797217e-05,0.0,0.0,8.147330652047495e-05,3.579912352983495e-05,9.617830508527218e-05,3.466841321026849e-05,2.108037290339156e-05,2.025423019463882e-05,0.0,5.468177315222749e-06,4.765826893271507e-06,3.7813868862348115e-06,6.1577847852909e-06,0.0,0.0,0.0,3.8550192282133604e-05,1.882508288379653e-05,2.411014424066874e-05,0.0,1.4690998830634439e-05 +102003,50.0,the Greater Atlanta and Macon Area,G1300670031114,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,22804.0,,3111.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005570661067157014,0.0024131283491140728,0.0,0.007983870277054156,0.003408362867121513,0.0005004473864111183,0.002978992109027631,0.0004141689308769991,0.0006818181228338258,0.002389597861241132,0.0005004473864111183,0.002266527749410833,0.0004141689308769991,0.0,0.001018765005880381,0.0007124643596167978,0.0006818181228338258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016123195059145973,0.0,0.0,0.0006638487390652675,0.0003419958588195704,0.0008250806896567272,0.00028476540000082427,5.963769154727604e-05,0.0002700992881031099,4.935599549283371e-05,0.0,6.806826879006137e-05,4.760294597263518e-05,4.555533315642491e-05,0.0,0.0,0.0,0.0003522319736440681,5.1717958883137707e-05,0.0003078593186643523,4.280164572619669e-05,7.046143630677283e-05 +102004,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4169.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,9713.774621698478,0.0,0.0,0.0003714976842336922,0.0,0.0,0.0003714976842336922,0.00019451072471484023,8.884641023184956e-05,8.81098596807047e-05,0.0,0.0,0.00019451072471484023,8.884641023184956e-05,8.81098596807047e-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,4.426896708016039e-05,1.828930829085509e-05,4.426896708016039e-05,2.3178580202730818e-05,1.0587249871711222e-05,1.0499479924588227e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3178580202730818e-05,1.0587249871711222e-05,1.0499479924588227e-05,0.0,0.0 +102005,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,15358.0,,1495.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014166322267019605,0.0004400582647027601,0.0,0.0018566904914047206,0.0006439293193383997,0.0006862809760292297,0.0005264801960370913,0.0,0.0,0.00020387105463563957,0.0006862809760292297,0.0005264801960370913,0.0,0.0,0.0004400582647027601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9401924078976552e-05,0.0,0.0,0.00016881840271255349,7.726047009968088e-05,0.00019822032679153002,2.4295074723125925e-05,8.17832998582782e-05,6.274002813114937e-05,0.0,0.0,2.9401924078976552e-05,0.0,0.0,0.0,0.0,0.0,6.874591144878234e-05,7.326737545599423e-05,5.620703988675346e-05,0.0,0.0 +102006,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,27335.0,,314.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.003008698860630912,0.00011674900082528543,0.0,0.003125447861456197,0.0019082823739275331,0.00026058314986725673,0.0008916399794193971,0.0,6.494235824201075e-05,0.0019082823739275331,0.00026058314986725673,0.0007748909785941116,0.0,6.494235824201075e-05,0.0,0.00011674900082528543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.799727581407492e-06,0.0,0.0,0.000358541123848862,0.00011328334702399704,0.0003663408514302695,0.00022740650981118078,3.105321593730082e-05,9.234233640358987e-05,0.0,7.739061696790509e-06,0.0,7.799727581407492e-06,0.0,0.0,0.0,0.0,0.00022367411667788143,3.054354358874985e-05,0.00010451114966850897,0.0,7.61204149512933e-06 +102007,50.0,the Greater Atlanta and Macon Area,G1301350050425,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,54240.0,,6908.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004622836775835566,0.0020333091756479997,0.0,0.006656145951483566,0.0027878438360833206,0.0016388863555099242,0.002229415759890321,0.0,0.0,0.0007545346604353208,0.0016388863555099242,0.002229415759890321,0.0,0.0,0.0020333091756479997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013585421941041313,0.0,0.0,0.0005508939372310215,0.0002882231150572356,0.0006867481566414347,8.991634141989681e-05,0.00019530271148236107,0.0002656748843287637,0.0,0.0,0.00013585421941041313,0.0,0.0,0.0,0.0,0.0,0.00028763591264216183,0.00016909217312766105,0.00023002007087161174,0.0,0.0 +102008,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,17881.0,,1918.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00513495138017864,0.0015216447426557778,0.0,0.006656596122834418,0.003497103198919136,0.0017002920219326822,0.0012109142666172,0.0,0.00024836934243914016,0.002223827798702498,0.0017002920219326822,0.0012109142666172,0.0,0.0,0.0012732754002166375,0.0,0.00024836934243914016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010166775675035033,0.0,0.0,0.0006119263937574615,0.00026886253282356915,0.0007135941505078118,0.0002650110632888353,0.00020262189226018582,0.00014430329431760775,0.0,0.0,8.507311203237545e-05,0.0,1.6594644717974893e-05,0.0,0.0,0.0,0.00037489316467772247,0.00018227310454425226,0.00012981129115830322,0.0,2.6625456413386e-05 +102009,35.0,Eastern Counties in South Carolina and Georgia,G1300510010101,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,63768.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005622090356888768,0.0,0.0,0.005622090356888768,0.0018001909262106502,0.001457971126384966,0.00236395899389945,0.0,0.0,0.0018001909262106502,0.001457971126384966,0.00236395899389945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006699752480994566,0.00022199468034085732,0.0006699752480994566,0.00021452578771462692,0.00017374401781442903,0.0002817090998002366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021452578771462692,0.00017374401781442903,0.0002817090998002366,0.0,0.0 +102010,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010702,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,64241.0,,6004.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,364853.82094078336,0.0,0.0,0.017198978728460892,0.005310514935448793,0.0,0.022509493663909683,0.016074850417155895,0.002219023753480896,0.002112051740264013,0.0006216365009439687,0.001481746817559366,0.012800215771180472,0.002219023753480896,0.0010473113397449418,0.0006216365009439687,0.0005106991458578399,0.0032746346459754223,0.0010647404005190713,0.0009710476717015263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003548163730344974,0.0,0.0,0.002049567708145972,0.0009164678284004453,0.0024043840811804693,0.0015253759723825185,0.0002644365982741295,0.0001248059862277891,7.407917171449558e-05,6.0858990202473896e-05,0.00021879120993375246,7.113949056308379e-05,6.487951114059177e-05,0.0,0.0,0.0,0.0017170583677915438,0.00023702822765779154,0.00022560185754255072,6.640100081623956e-05,0.00015827492673421405 +102011,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,23752.0,,307.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.002672052554899057,0.00011419160485632795,0.0,0.002786244159755385,0.0015645838550691592,0.00033071779689472665,0.0008023248626247462,0.0,8.861764516675335e-05,0.0015645838550691592,0.00033071779689472665,0.0006881332577684182,0.0,8.861764516675335e-05,0.0,0.00011419160485632795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.6288938749692305e-06,0.0,0.0,0.00031842273621147233,0.00010745101903612886,0.00032605163008644157,0.0001864480813635179,3.941092610920861e-05,8.200335521657125e-05,0.0,1.0560373522174586e-05,0.0,7.6288938749692305e-06,0.0,0.0,0.0,0.0,0.00018309060050107558,3.870123025599782e-05,9.388959269838205e-05,0.0,1.0370206630986177e-05 +102012,50.0,the Greater Atlanta and Macon Area,G1300670031313,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,56491.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.005033248880854745,0.0,0.0,0.005033248880854745,0.0015823561007095555,0.0013560509438702952,0.002094872525881192,0.0,0.0,0.0015823561007095555,0.0013560509438702952,0.002094872525881192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000599804238288309,0.00021396711577164595,0.000599804238288309,0.0001885668517797946,0.00016159842732238176,0.00024964261641754814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001885668517797946,0.00016159842732238176,0.00024964261641754814,0.0,0.0 +102013,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,3856.0,,311.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00019845593537465105,5.287193775459745e-05,0.0,0.0002513278731292485,0.00011088568032101024,5.336838787435894e-05,1.8936025996616392e-05,0.0,6.813777893726293e-05,9.361630829787881e-05,5.336838787435894e-05,1.8936025996616392e-05,0.0,3.255294356721695e-05,1.7269372023131427e-05,0.0,3.5584835370045975e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5321796432775776e-06,0.0,0.0,2.365063241084716e-05,1.0069577377293821e-05,2.7182812054124734e-05,1.1156556698764675e-05,6.360082511985165e-06,2.256667150431945e-06,0.0,3.879439033888626e-06,1.1537032101114556e-06,0.0,2.3772919329504024e-06,0.0,0.0,0.0,1.1993037501692846e-05,5.7721526830980915e-06,2.0480594902155353e-06,0.0,7.369562379118261e-06 +102014,50.0,the Greater Atlanta and Macon Area,G1301210011416,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13026.0,,372.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029657929572178246,0.00029476801080689167,0.0,0.003260560968024717,0.0011700569721899822,0.00046812203736448,0.0015507576326120143,0.0,7.162432585824023e-05,0.0008752889613830903,0.00046812203736448,0.0015507576326120143,0.0,7.162432585824023e-05,0.00029476801080689167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.969276475100909e-05,0.0,0.0,0.00035343228936689767,0.00012104557863735884,0.00037312505411790675,0.00010430781445020436,5.5785904732888286e-05,0.00018480312963633486,0.0,8.535440547470187e-06,1.969276475100909e-05,0.0,0.0,0.0,0.0,0.0,0.00013389645994992837,5.35699415647554e-05,0.00017746226225073567,0.0,8.19639035248731e-06 +102015,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,14163.0,,934.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034008321650865823,0.0007407245524092372,0.0,0.004141639424569558,0.0023703020262948113,0.0007450253202436813,0.0009564246007213512,0.0,6.988747730971476e-05,0.001699464951195289,0.0007450253202436813,0.0009564246007213512,0.0,0.0,0.0006708370750995224,0.0,6.988747730971476e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9493639818535984e-05,0.0,0.0,0.000405271116621986,0.00017988655715286972,0.000454764756440522,0.00020252221368098855,8.878334148522215e-05,0.0001139754175105583,0.0,0.0,4.482390716482195e-05,0.0,4.669732653714035e-06,0.0,0.0,0.0,0.00026026645808029634,8.180607328892527e-05,0.00010501836495483262,0.0,7.67386011646779e-06 +102016,50.0,the Greater Atlanta and Macon Area,G1301210001001,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,30118.0,,3545.0,,8.53126424238864,Food Service,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,63984.48181791479,0.0,0.0,0.007074348189099355,0.00274942834589608,0.0,0.009823776534995438,0.0033384991505503044,0.0010865263420918073,0.0031468590946778945,0.00042896645417853975,0.001823006354279958,0.0031958607292174213,0.0010865263420918073,0.002363075524394655,0.00042896645417853975,0.0,0.00014263842133288294,0.0007837835702832394,0.001823006354279958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018369871136134262,0.0,0.0,0.0008430380660383868,0.0004043012799688045,0.0010267367773997295,0.00038084529860135284,0.00012947949996979934,0.0002816036992719666,5.111920423753707e-05,0.0,9.530160779995542e-06,5.236726102068979e-05,0.00012180128956065732,0.0,0.0,0.0,0.000348924860716953,0.0001135588285284399,0.0003288955071698516,4.4833637370199726e-05,0.00019053239481831342 +102017,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,130716.0,,4253.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.011490403425104007,0.0012518290408832964,0.0,0.012742232465987305,0.004876332923854591,0.0027074370675833396,0.005158462474549373,0.0,0.0,0.0036245038829712944,0.0027074370675833396,0.005158462474549373,0.0,0.0,0.0012518290408832964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.364016664057956e-05,0.0,0.0,0.0013692880256243733,0.0004945835401462602,0.0014529281922649531,0.000431924762096568,0.0003226397733498097,0.0006147234901779956,0.0,0.0,8.364016664057956e-05,0.0,0.0,0.0,0.0,0.0,0.0005560219999791975,0.00030871447799867084,0.0005881917142870845,0.0,0.0 +102018,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,6813.0,,281.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013792231616766909,0.00022314368494865137,0.0,0.001602366846625342,0.0008642889205757627,0.00032876061811374697,0.0003643246598216492,0.0,4.499264811418324e-05,0.0006411452356271112,0.00032876061811374697,0.0003643246598216492,0.0,4.499264811418324e-05,0.00022314368494865137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4911115365632396e-05,0.0,0.0,0.000164358707636362,6.689588301010249e-05,0.00017926982300199443,7.640373600366265e-05,3.917761230837963e-05,4.341569363985215e-05,0.0,5.361665684467552e-06,1.4911115365632396e-05,0.0,0.0,0.0,0.0,0.0,9.669503718234966e-05,3.678112658371672e-05,4.075996543428232e-05,0.0,5.0336938016457614e-06 +102019,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,Electricity,83395.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0069287951301405075,0.0,0.0,0.0069287951301405075,0.004990260893224874,0.0013985220125118452,0.000539981850804352,0.0,0.0,0.004990260893224874,0.0013985220125118452,0.000539981850804352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008256916203162683,0.000254012052644118,0.0008256916203162683,0.0005946801031544135,0.00016665926540902892,6.434863218751013e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005946801031544135,0.00016665926540902892,6.434863218751013e-05,0.0,0.0 +102020,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,64004.0,,1601.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005123054269966724,0.0004665081137644302,0.0,0.005589562383731155,0.003648841247656002,0.001357062049279314,0.0005836287131964013,0.0,0.0,0.003182333133891572,0.001357062049279314,0.0005836287131964013,0.0,0.0,0.0004665081137644302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.117014981369277e-05,0.0,0.0,0.0006105040029254316,0.00015400419307757588,0.0006416741527391244,0.00037923219519118187,0.00016171833629796624,6.954985187594666e-05,0.0,0.0,3.117014981369277e-05,0.0,0.0,0.0,0.0,0.0,0.0004188820081665,0.00015578887592707235,6.699978179768337e-05,0.0,0.0 +102021,35.0,Eastern Counties in South Carolina and Georgia,G1301830970100,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,4973.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001193959316500642,0.0,0.0,0.001193959316500642,0.0005308139992588751,0.0002736777070033683,0.0003482794875162236,0.0,4.118812272217509e-05,0.0005308139992588751,0.0002736777070033683,0.0003482794875162236,0.0,4.118812272217509e-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.00014228633144840134,4.540920520793735e-05,0.00014228633144840134,6.325808224133001e-05,3.2614676556023834e-05,4.1505108182960525e-05,0.0,4.908464468086995e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.325808224133001e-05,3.2614676556023834e-05,4.1505108182960525e-05,0.0,4.908464468086995e-06 +102022,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,48768.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0041475150032250115,0.0,0.0,0.004147515003225011,0.0025732209707668968,0.0011378254085376211,0.00043646862392049363,0.0,0.0,0.0025732209707668968,0.0011378254085376211,0.00043646862392049363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004942510846423549,0.0001507730868222789,0.0004942510846423549,0.00030664560702904186,0.00013559238287650865,5.2013094736804384e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003066456070290419,0.00013559238287650868,5.20130947368044e-05,0.0,0.0 +102023,50.0,the Greater Atlanta and Macon Area,G1301350050434,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,218781.0,,18020.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01126179366317494,0.003064497937480506,0.0,0.014326291600655445,0.008093892257892686,0.0022450892844527665,0.00257544137843119,0.0,0.0014118509495173845,0.006376937249059032,0.0022450892844527665,0.0023661521922288867,0.0,0.00027359720707283483,0.001716955008833653,0.00020928918620230323,0.0011382537424445497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020475161927305035,0.0,0.0,0.0013420456034240742,0.0005912916997923833,0.0015467972226971248,0.0007599269578517711,0.00026754283497011823,0.000281969661457798,0.0,3.2604036252399975e-05,0.0001147167743133458,1.3983465039135184e-05,7.605137992056935e-05,0.0,0.0,0.0,0.0008738904954821233,0.0002424003340641017,0.0002780681618398973,0.0,0.00015243631697932738 +102024,50.0,the Greater Atlanta and Macon Area,G1301210009801,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5716.0,,770.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001372606595777546,0.0006107917395647853,0.0,0.0019833156282685924,0.0014656520537342668,0.00028740708124409326,0.00017980517830925433,0.0,5.053402205471683e-05,0.0008548603141694816,0.00028740708124409326,0.00017980517830925433,0.0,5.053402205471683e-05,0.0006107917395647853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.080705548646832e-05,0.0,0.0,0.00016356619708177503,8.033632862226937e-05,0.00020437325256824338,0.00010186913792704428,3.4248766863049415e-05,2.1426422779933652e-05,0.0,6.021869511747682e-06,4.080705548646832e-05,0.0,0.0,0.0,0.0,0.0,0.0001510299586639633,2.961622404815036e-05,1.852825067069896e-05,0.0,5.207341839833055e-06 +102025,50.0,the Greater Atlanta and Macon Area,G1301510070404,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,14793.0,,1119.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0035521861100295147,0.0008875296082965079,0.0,0.004439715718326021,0.0021613839580293206,0.0014181781934079042,0.0007494915022256038,0.0,0.00011074477173693264,0.001273854349732813,0.0014181781934079042,0.0007494915022256038,0.0,0.00011074477173693264,0.0008875296082965079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.929888939399999e-05,0.0,0.0,0.0004233053799005471,0.00015426526305444224,0.00048260426929454714,0.00015180212487434462,0.0001690008463329689,8.931507957481564e-05,0.0,1.3197185119253827e-05,5.929888939399999e-05,0.0,0.0,0.0,0.0,0.0,0.00023494592715116248,0.00015415826016381524,8.147093681719797e-05,0.0,1.2038135554869574e-05 +102026,50.0,the Greater Atlanta and Macon Area,G1301350050430,ComStock 90.1-2007,gen1_t12_incandescent,_1000,NaturalGas,3508.0,,51.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000511708665225095,4.027834491104271e-05,0.0,0.0005519043030623985,0.00020271503773504248,0.0001338200453101994,0.00020420376506235003,0.0,1.11654549548065e-05,0.00017360214777880628,0.0001338200453101994,0.00020420376506235003,0.0,0.0,2.911288995623621e-05,0.0,1.11654549548065e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6897677832391057e-06,0.0,0.0,6.097645054305415e-05,2.068364293993091e-05,6.366621832629327e-05,2.0686854645202954e-05,1.5946322446850107e-05,2.4333417874705144e-05,0.0,0.0,1.9441442704315506e-06,0.0,7.456235128075548e-07,0.0,0.0,0.0,2.338466973141687e-05,1.5437125918169112e-05,2.355640537203927e-05,0.0,1.2880173046680037e-06 +102027,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,51227.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.01216157895092272,0.0,0.0,0.012161578950922718,0.008431324511132475,0.0016526527474588408,0.001961646374948894,0.0,0.00011612073152998763,0.008431324511132475,0.0016526527474588408,0.001961646374948894,0.0,0.00011612073152998763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001449271114629856,0.0004615940361835966,0.001449271114629856,0.0010047441307880413,0.0001969433326931652,0.00023376548717928604,0.0,1.383787604349935e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0010047441307880415,0.00019694333269316521,0.00023376548717928607,0.0,1.3837876043499351e-05 +102028,50.0,the Greater Atlanta and Macon Area,G1301210011412,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,120399.0,,4092.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006210679650023196,0.0006958989553756525,0.0,0.006906578605398849,0.0024351764892371524,0.002425761667323104,0.0012612492596154562,0.0,0.0007843911892231361,0.002127909325827637,0.002425761667323104,0.0008725997372878988,0.0,0.0007843911892231361,0.00030726716340951504,0.0003886495223275574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.649642420650599e-05,0.0,0.0,0.0007401141297908453,0.000262110424558712,0.0007866105539973513,0.00025357864963343647,0.0002890731106190808,0.00010398594543773343,0.0,9.347431120929245e-05,2.0530027045243156e-05,2.596758181371783e-05,0.0,0.0,0.0,0.0,0.0002773494137578908,0.0002762771319951368,0.00014364738831167904,0.0,8.933661993264472e-05 +102029,50.0,the Greater Atlanta and Macon Area,G1301350050435,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,48529.0,,9219.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009596849321598915,0.006341479837200328,0.0,0.015938329158799242,0.004807963416944533,0.0015584032501982125,0.005864828909830579,0.00036613045203469445,0.003341003129791225,0.0037772039935081714,0.0015584032501982125,0.00352639925486658,0.00036613045203469445,0.00036878409096227204,0.001030759423436362,0.002338429654963998,0.002972219038828953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042369989811547553,0.0,0.0,0.0011436403054566413,0.000716975891055312,0.0015673402035721168,0.00045012301268350244,0.00018571228007822552,0.00042023503608846574,4.363114684519957e-05,4.3947376508915995e-05,6.88692030730108e-05,0.00015623993641772314,0.00019858596672360935,0.0,0.0,0.0,0.0004728045383929603,0.0001532499450273074,0.0005767343644283234,3.6004462670366994e-05,0.00032854689305315886 +102030,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,19539.0,,1359.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0016625173523591552,0.00040000832848425806,0.0,0.0020625256808434133,0.0007139630009097575,0.0007907177062603121,0.0005578756632796413,0.0,0.0,0.0003139546724254995,0.0007907177062603121,0.0005578756632796413,0.0,0.0,0.00040000832848425806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6725294532267413e-05,0.0,0.0,0.00019811900786421386,8.991066158563085e-05,0.00022484430239648129,3.7413376845065857e-05,9.422831421438141e-05,6.648097402635458e-05,0.0,0.0,2.6725294532267413e-05,0.0,0.0,0.0,0.0,0.0,7.783200682902925e-05,8.619934903498705e-05,6.0816292131107894e-05,0.0,0.0 +102031,50.0,the Greater Atlanta and Macon Area,G1301350050321,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,5622.0,,402.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010084473501033753,0.000319083890486248,0.0,0.0013275312405896234,0.0007934089583811761,0.00024109111995008114,0.00026135435301621147,0.0,3.159410216841543e-05,0.0005060018771370829,0.00024109111995008114,0.00026135435301621147,0.0,0.0,0.00028740708124409326,0.0,3.159410216841543e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1318460099564498e-05,0.0,0.0,0.0001201761339958772,5.2016762751222166e-05,0.0001414945940954417,6.0299974394060263e-05,2.873070045091299e-05,3.114545915090396e-05,0.0,0.0,1.920208627423189e-05,0.0,2.110848045109807e-06,0.0,0.0,0.0,8.456530067644209e-05,2.569663832709567e-05,2.785639009043647e-05,0.0,3.367449688147699e-06 +102032,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock 90.1-2007,gen4_led,200001_500000,Electricity,274205.0,,236.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,1133273.7058648225,0.0,0.0,0.024977227119086176,6.938919983910598e-05,0.0,0.02504661631892528,0.0073818016923927485,0.005879606843332792,0.011785269162412336,0.0,0.0,0.007312412492553644,0.005879606843332792,0.011785269162412336,0.0,0.0,6.938919983910598e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.636159629625109e-06,0.0,0.0,0.0029764879306763076,0.0009601520788870773,0.002981124090305933,0.0008714060782023624,0.000700661395392803,0.0014044277715233985,0.0,0.0,4.636159629625109e-06,0.0,0.0,0.0,0.0,0.0,0.0008786043821186855,0.0006998086040445685,0.0014027184096823571,0.0,0.0 +102033,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,43723.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0061174206025336915,0.0,0.0,0.0061174206025336915,0.002412663399093904,0.0014215118741032955,0.0022832453293364914,0.0,0.0,0.002412663399093904,0.0014215118741032955,0.0022832453293364914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007290008181627367,0.00025196543237998077,0.0007290008181627367,0.0002875122876400354,0.00016939873626151247,0.00027208979426118876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002875122876400354,0.00016939873626151247,0.00027208979426118876,0.0,0.0 +102034,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,36217.0,,1629.0,,9.325022323477118,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,163187.89066084955,0.0,0.0,0.009161636671502452,0.0013811792379247786,0.0,0.010542815909427228,0.005779616863529605,0.0016892864129043515,0.0028689497704638333,0.0,0.00020496286252944017,0.004603400488134267,0.0016892864129043515,0.0028689497704638333,0.0,0.0,0.0011762163753953386,0.0,0.00020496286252944017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.228184286826872e-05,0.0,0.0,0.0010917755431425957,0.0004294800498924802,0.0011840573860108644,0.0005485788455100858,0.00020130918274775879,0.0003418875148847512,0.0,0.0,7.858749375381841e-05,0.0,1.369434911445032e-05,0.0,0.0,0.0,0.0006491053333726439,0.00018972275258061143,0.00032221004283820685,0.0,2.3019257219402388e-05 +102035,85.0,Rural Climate Zone 3A,G1302850960902,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,48772.0,,830.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005486621812431834,0.0003085149500733231,0.0,0.005795136762505159,0.002644928658258599,0.0009343794908400046,0.0020842389662765613,0.0,0.0001315508987062211,0.002644928658258599,0.0009343794908400046,0.0017757240162032382,0.0,0.0001315508987062211,0.0,0.0003085149500733231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.061201695830345e-05,0.0,0.0,0.0006538318213940044,0.0002153918221013145,0.0006744438383523078,0.0003151918577963597,0.00011134848824186437,0.00021161015056232553,0.0,1.5676707206648813e-05,0.0,2.061201695830345e-05,0.0,0.0,0.0,0.0,0.00030781945440625153,0.00010874402384377667,0.00024256582477120766,0.0,1.5310025750585625e-05 +102036,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,66286.0,,9551.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0034121016731206424,0.001624278409691037,0.0,0.005036380082811679,0.001972680011595075,0.0007142676098068272,0.0013930213056892883,0.0,0.0009564111557204883,0.0016021509186388114,0.0007142676098068272,0.0009600990708958593,0.0,0.0001355840737791438,0.00037052909295626343,0.0004329222347934292,0.0008208270819413445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010852494062151882,0.0,0.0,0.000406613666073283,0.00021300869463421667,0.0005151386066948018,0.00019092527745065573,8.511791242004014e-05,0.0001144131800309091,0.0,1.6157296171677967e-05,2.4756622738876763e-05,2.892537359628452e-05,5.484294428635754e-05,0.0,0.0,0.0,0.0002017726255601528,7.305779454153115e-05,0.00014248310149545676,0.0,9.782508509766098e-05 +102037,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,257317.0,,15935.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012030067953867248,0.0027098729787180297,0.0,0.014739940932585278,0.007705420039179327,0.002796361681725048,0.002420247524921468,0.0,0.0018179116867594336,0.007280441006302082,0.002796361681725048,0.0016381790130443588,0.0,0.00031508625279575835,0.0004249790328772456,0.0007820685118771092,0.0015028254339636753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018105815670402205,0.0,0.0,0.0014336000387707767,0.0004918839451603369,0.0016146581954747984,0.000867596139018301,0.00033323703828700595,0.00019521863929778606,0.0,3.754822216768357e-05,2.8394659430499646e-05,5.2253328583583346e-05,0.00010041016868993909,0.0,0.0,0.0,0.0008440752695509258,0.0003063220081789779,0.0002651213135157817,0.0,0.00019913960422911293 +102038,50.0,the Greater Atlanta and Macon Area,G1300570090100,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,14431.0,,1575.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034589752379253153,0.0012491249346847598,0.0,0.004708017465536336,0.0029274168750027863,0.0007816645539101945,0.0008886875073288584,0.0,0.00011024852929449681,0.001678291940318026,0.0007816645539101945,0.0008886875073288584,0.0,0.00011024852929449681,0.0012491249346847598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.345717123669416e-05,0.0,0.0,0.0004121959811720319,0.00020611804636608738,0.0004956531524087259,0.00019999715101962767,9.314868294335214e-05,0.00010590229586565643,0.0,1.3137995382868311e-05,8.345717123669416e-05,0.0,0.0,0.0,0.0,0.0,0.00030819414182957724,8.229249426278667e-05,9.355971334817933e-05,0.0,1.1606802968182693e-05 +102039,85.0,Rural Climate Zone 3A,G1302090950200,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,46661.0,,3730.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0028878858073753603,0.0006343391405252291,0.0,0.003522224947900589,0.0017530540246848804,0.0005483291572765531,0.0006998528259723242,0.0,0.0005209889399668315,0.0017530540246848804,0.0005483291572765531,0.0004910246291669423,0.0,9.547799624698436e-05,0.0,0.0002088281968053819,0.00042551094371984715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2383119451942374e-05,0.0,0.0,0.0003441441442429182,0.00012687122893922107,0.00038652726369486055,0.0002089082870229868,6.53433969281087e-05,5.8514519644539945e-05,0.0,1.1377940647282718e-05,0.0,1.3952773594906708e-05,2.8430345857035662e-05,0.0,0.0,0.0,0.0001923793015192265,6.017337674373794e-05,7.68015109237801e-05,0.0,5.717307450811599e-05 +102040,35.0,Eastern Counties in South Carolina and Georgia,G1302450010710,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,28552.0,,1476.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002503289806491021,0.0004344727563565782,0.0,0.0029377932524538965,0.0010462700579012831,0.0008036994097242405,0.0010877930952220751,0.0,0.0,0.000611797301544705,0.0008036994097242405,0.0010877930952220751,0.0,0.0,0.0004344727563565782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9029391869656817e-05,0.0,0.0,0.00029831361713344794,0.00011857712595418376,0.00032734300900310475,7.290704636076996e-05,9.577575771737365e-05,0.0001296308130553043,0.0,0.0,2.9029391869656817e-05,0.0,0.0,0.0,0.0,0.0,0.00011658042603821163,8.95520414492751e-05,0.00012120712193254758,0.0,0.0 +102041,50.0,the Greater Atlanta and Macon Area,G1301510070404,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,39367.0,,1652.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.0035816538957126392,0.0004965509618217249,0.0,0.004078204857534365,0.0012125307551155687,0.0005127527193011717,0.0016297651827390741,0.0,0.0007231562003785501,0.0012125307551155687,0.0005127527193011717,0.001133214220917349,0.0,0.0007231562003785501,0.0,0.0004965509618217249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.317668987060743e-05,0.0,0.0,0.00042682003590777275,0.00020283448546548044,0.00045999672577838016,0.00014449537434569254,6.110393143399725e-05,0.00013504334828167547,0.0,8.617738184640755e-05,0.0,3.317668987060743e-05,0.0,0.0,0.0,0.0,0.00013676610095451748,5.7835390877127436e-05,0.00018382760896931238,0.0,8.156762497742286e-05 +102042,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960900,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,20065.0,,326.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0022439599690650867,0.00012101132744021452,0.0,0.0023649712965053008,0.0011041750838092714,0.0003634989634059087,0.0008371596955958487,0.0,6.0137553694272496e-05,0.0011041750838092714,0.0003634989634059087,0.0007161483681556341,0.0,6.0137553694272496e-05,0.0,0.00012101132744021452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.084303941427767e-06,0.0,0.0,0.0002674097567490463,8.841206984571455e-05,0.0002754940606904741,0.00013158309178430393,4.331769315091785e-05,8.534245867341046e-05,0.0,7.166513140414081e-06,0.0,8.084303941427767e-06,0.0,0.0,0.0,0.0,0.00012862468056223993,4.234377205061667e-05,9.752022120814127e-05,0.0,7.00538686947629e-06 +102043,50.0,the Greater Atlanta and Macon Area,G1302170100700,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,24442.0,,1517.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0021777651524912873,0.00044644170281268235,0.0,0.0026242375449102673,0.000867441722004569,0.0007362743446881875,0.0010205214782175107,0.0,0.0,0.00042100001919188673,0.0007362743446881875,0.0010205214782175107,0.0,0.0,0.00044644170281268235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.982895833871061e-05,0.0,0.0,0.00025952139849545844,0.00010865113322083602,0.00028935035683416905,5.017001655220048e-05,8.77408417483483e-05,0.0001216141974347808,0.0,0.0,2.982895833871061e-05,0.0,0.0,0.0,0.0,0.0,9.564476062072749e-05,8.118214937385012e-05,0.00011252344683959143,0.0,0.0 +102044,50.0,the Greater Atlanta and Macon Area,G1300450910104,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,107425.0,,5655.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009571443722521247,0.0016645735559811007,0.0,0.011236017278502347,0.004234981531445197,0.002434575777990464,0.0045664599690666855,0.0,0.0,0.002570407975464097,0.002434575777990464,0.0045664599690666855,0.0,0.0,0.0016645735559811007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011121699525850603,0.0,0.0,0.0011406108483767755,0.0003933556062650469,0.0012518278436352815,0.0003063106576774866,0.0002901237915694267,0.0005441763991298622,0.0,0.0,0.00011121699525850605,0.0,0.0,0.0,0.0,0.0,0.00047182802116969673,0.00027124110534784755,0.0005087587171177372,0.0,0.0 +102045,50.0,the Greater Atlanta and Macon Area,G1300450910104,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,90695.0,,5786.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.008080788165429228,0.0017031810807036113,0.0,0.00978396924613284,0.003306283355270414,0.0022879408391000403,0.004189745051762384,0.0,0.0,0.0016031022745668026,0.0022879408391000403,0.004189745051762384,0.0,0.0,0.0017031810807036113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011379667171172412,0.0,0.0,0.0009629719195380505,0.00037428016545823294,0.0010767685912497745,0.00019103860204624108,0.0002726494911775274,0.0004992838263142821,0.0,0.0,0.00011379667171172412,0.0,0.0,0.0,0.0,0.0,0.00036387093838569133,0.0002517978922669161,0.0004610997605971669,0.0,0.0 +102047,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,196713.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.015733099278363315,0.0,0.0,0.015733099278363315,0.010853823517483987,0.0038360641145903044,0.0010432420198884618,0.0,0.0,0.010853823517483987,0.0038360641145903044,0.0010432420198884618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001874884493661267,0.00044070925305965105,0.001874884493661267,0.0012934301786204489,0.0004571367025584541,0.00012432123204832472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012934301786204489,0.0004571367025584541,0.00012432123204832472,0.0,0.0 +102048,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock 90.1-2007,gen3_t5_cfl,_1000,NaturalGas,1439.0,,401.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.00012815979589920684,0.0001181549842461557,0.0,0.0002463454697516603,0.00013917736456008209,7.850401290952372e-05,2.8664092282054403e-05,0.0,0.0,2.1022380313926408e-05,7.850401290952372e-05,2.8664092282054403e-05,0.0,0.0,0.0001181549842461557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.894953930685868e-06,0.0,0.0,1.5273708673684125e-05,1.4206738474569936e-05,2.316866260436999e-05,2.5053856421153316e-06,9.355878062089076e-06,3.416102466767474e-06,0.0,0.0,7.894953930685868e-06,0.0,0.0,0.0,0.0,0.0,1.3089558354406113e-05,7.383261360655092e-06,2.6958428893087792e-06,0.0,0.0 +102049,50.0,the Greater Atlanta and Macon Area,G1301210011900,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,153392.0,,8837.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007895897311914955,0.0015028254339636753,0.0,0.00939872274587863,0.005423753019116993,0.0021756039980475794,0.001113750382962037,0.0,0.0006856330761134418,0.004454576003174067,0.0021756039980475794,0.001113750382962037,0.0,0.00015198465809269265,0.0009691770159429262,0.0,0.0005336484180207493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010041004038545576,0.0,0.0,0.0009409387988578025,0.00036332910239664354,0.0010413488392432583,0.0005308431997364535,0.00025926251720928805,0.00013272347729121584,0.0,1.8111717513695587e-05,6.475476200507058e-05,0.0,3.565527838038518e-05,0.0,0.0,0.0,0.000600934729485054,0.00024105006172389705,0.00012340002996820274,0.0,7.59659825342333e-05 +102050,35.0,Eastern Counties in South Carolina and Georgia,G1300290920303,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,18282.0,,379.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0027965899889025314,0.00014069552671643258,0.0,0.002937285515618964,0.001420439718637011,0.00042479896981334367,0.0009885497872733759,0.0,0.00010345829147146106,0.001420439718637011,0.00042479896981334367,0.0008478542605569435,0.0,0.00010345829147146106,0.0,0.00014069552671643258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.399627122596487e-06,0.0,0.0,0.000333264875740687,0.00011271343948806262,0.00034266450286328347,0.0001692713870131781,5.062257122116514e-05,0.00010103735117124093,0.0,1.2328948751300822e-05,0.0,9.399627122596487e-06,0.0,0.0,0.0,0.0,0.00016570887216983595,4.955715984499732e-05,0.00011532447888037682,0.0,1.2069471566737464e-05 +102051,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950500,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,21145.0,,234.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006881145828036638,0.00018542925932352723,0.0,0.007066575087360165,0.004302504682992512,0.0010484775737932004,0.001530246278324666,0.0,0.00018542925932352723,0.004302504682992512,0.0010484775737932004,0.001530246278324666,0.0,0.0,0.0,0.0,0.00018542925932352723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2388879612461498e-05,0.0,0.0,0.0008200129782770961,0.0002141659206986134,0.0008324018578895575,0.0005127212483678027,0.0001249450657534195,0.00018235652019955566,0.0,0.0,0.0,0.0,1.2388879612461496e-05,0.0,0.0,0.0,0.000506810279014439,0.00012350462134649552,0.000180254200848218,0.0,2.1842499097487014e-05 +102052,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Electricity,3009.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000670175418509608,0.0,0.0,0.000670175418509608,0.0003424072852807327,0.00017500816803237452,0.00012678994404235827,0.0,2.5887314080403227e-05,0.0003424072852807327,0.00017500816803237452,0.00012678994404235827,0.0,2.5887314080403227e-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,7.986188464795126e-05,2.7584192622440133e-05,7.986188464795126e-05,4.0803184307357545e-05,2.0854960868204973e-05,1.5109005203666456e-05,0.0,3.0848784271021535e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.0803184307357545e-05,2.0854960868204973e-05,1.5109005203666456e-05,0.0,3.0848784271021535e-06 +102053,50.0,the Greater Atlanta and Macon Area,G1300150960102,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,93429.0,,10665.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004809289613743642,0.0018137095911028816,0.0,0.006622999204846524,0.003037069068363685,0.0010516054661847518,0.0011931114806781934,0.0,0.001341213189619894,0.002355372132485495,0.0010516054661847518,0.0011931114806781934,0.0,0.00020920053439520302,0.0006816969358781901,0.0,0.001132012655224691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012118111696457765,0.0,0.0,0.0005731135032264633,0.00025983663681814704,0.0006942946201910408,0.0002806850247473375,0.00012531773736705707,0.0001421807284130095,0.0,2.493001269905931e-05,4.554687063810273e-05,0.0,7.563424632647488e-05,0.0,0.0,0.0,0.00031837852460717397,0.00011024069234392788,0.00012507488778148396,0.0,0.00014060051545845495 +102054,50.0,the Greater Atlanta and Macon Area,G1300670031308,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,79422.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007754562178054667,0.0,0.0,0.007754562178054666,0.005757467641423046,0.0014910399963992372,0.0005060241666329453,0.0,0.0,0.005757467641423046,0.0014910399963992372,0.0005060241666329453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000924097434078457,0.00033555973373714285,0.000924097434078457,0.0006861072168955759,0.00017768459432567768,6.030200328917883e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000686107216895576,0.0001776845943256777,6.030200328917884e-05,0.0,0.0 +102055,35.0,Eastern Counties in South Carolina and Georgia,G1300510011200,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,299163.0,,3961.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01433700073895316,0.0006736828125163262,0.0,0.015010665821108065,0.007282497728226809,0.003819970907227537,0.002391098810746901,0.0,0.0015171161052682381,0.007282497728226809,0.003819970907227537,0.0017174159982305745,0.0,0.0015171161052682381,0.0,0.0006736828125163262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.501100028513717e-05,0.0,0.0,0.001708512278305417,0.00045830335434821805,0.0017535232785905542,0.0008678409809662395,0.0004552184460753729,0.00020466109846551758,0.0,0.00018079175279828706,0.0,4.501100028513717e-05,0.0,0.0,0.0,0.0,0.0008507303703191678,0.00044624322393100197,0.0002793245466939168,0.0,0.00017722720888047283 +102056,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,188821.0,,18094.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.01685341212562757,0.005326150483360019,0.0,0.02217956260898759,0.015152410006971092,0.002729779100968067,0.004297373501048428,0.0,0.0,0.009826259523611073,0.002729779100968067,0.004297373501048428,0.0,0.0,0.005326150483360019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035586124482058434,0.0,0.0,0.0020083898269984616,0.00099970092418554,0.0023642510718190463,0.0011709771005159206,0.00032530270638789845,0.0005121100200946425,0.0,0.0,0.00035586124482058434,0.0,0.0,0.0,0.0,0.0,0.001615185214928739,0.0002909833380879092,0.00045808251880239764,0.0,0.0 +102057,50.0,the Greater Atlanta and Macon Area,G1300890021305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,16240.0,,1491.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014633111178807663,0.0004389841284823406,0.0,0.0019022952463631068,0.0008831548004289929,0.0004926602498970229,0.0005264801960370913,0.0,0.0,0.0004441706719466523,0.0004926602498970229,0.0005264801960370913,0.0,0.0,0.0004389841284823406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9331015733748306e-05,0.0,0.0,0.00017437988215785976,8.747952996422483e-05,0.00020371089789160808,5.293093757410088e-05,5.8709344356874304e-05,6.27396002268846e-05,0.0,0.0,2.9331015733748306e-05,0.0,0.0,0.0,0.0,0.0,9.457430843957096e-05,5.2757458156876434e-05,5.6379131295160714e-05,0.0,0.0 +102058,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,14612.0,,152.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0015663275341389025,5.634020816460837e-05,0.0,0.0016226289938797388,0.0010087764644824036,0.0002002906024778959,0.00037702216330236547,0.0,3.657851204084615e-05,0.0010087764644824036,0.0002002906024778959,0.00032068195513775715,0.0,3.657851204084615e-05,0.0,5.634020816460837e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7636446654018595e-06,0.0,0.0,0.00018665496895905204,5.957302788423944e-05,0.00019041861362445388,0.00012021313266902413,2.3868083381969175e-05,3.821479165586707e-05,0.0,4.358961252191701e-06,0.0,3.7636446654018595e-06,0.0,0.0,0.0,0.0,0.00011838184609559254,2.350448499915947e-05,4.424427143389856e-05,0.0,4.292558297389542e-06 +102059,50.0,the Greater Atlanta and Macon Area,G1300210013603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,4630.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,3204.5843851935597,0.0,0.0,0.0002774020836649874,0.0,0.0,0.0002774020836649874,0.00017218793521261508,9.191051189863701e-05,1.3303636553735298e-05,0.0,0.0,0.00017218793521261508,9.191051189863701e-05,1.3303636553735298e-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,3.3057187447051796e-05,8.802222240418144e-06,3.3057187447051796e-05,2.051912795766305e-05,1.095270439228936e-05,1.585355097099385e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.051912795766305e-05,1.095270439228936e-05,1.585355097099385e-06,0.0,0.0 +102060,50.0,the Greater Atlanta and Macon Area,G1301530020109,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,435119.0,,31653.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.022397843603158864,0.005382866805682351,0.0,0.027780692678479796,0.012249179760296259,0.006263090598380872,0.004077805822997944,0.0,0.005190616496804718,0.011505550671977824,0.006263090598380872,0.0038638890124650075,0.0,0.0007653133203351592,0.0007436290883184345,0.00021391681053293705,0.004425303176469559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035965131179019723,0.0,0.0,0.0026691074872712502,0.0009245689168170507,0.0030287587990614475,0.0013710941101233369,0.0007463603329759348,0.0004604521433349487,0.0,9.120090083702983e-05,4.968489593997503e-05,1.4292655623752386e-05,0.0002956725755886228,0.0,0.0,0.0,0.0013354530576201906,0.0006828264139669799,0.00044457819717491946,0.0,0.0005659011302993574 +102061,50.0,the Greater Atlanta and Macon Area,G1301530021202,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,410484.0,,31880.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.021129750424035264,0.005421465802493805,0.0,0.026551216226529072,0.011875246437947346,0.006252877910202922,0.0032962337612405966,0.0,0.005126858117138208,0.011202999784706043,0.006252877910202922,0.002908204801562741,0.0,0.0007656679275635602,0.0006722466532413019,0.0003880289596778555,0.004361190189574648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003622305785656763,0.0,0.0,0.0025179909045050914,0.0008938753444446435,0.0028802214830707675,0.001335039505671316,0.0007451431933129719,0.00034656506072325554,0.0,9.124314479754832e-05,4.491558242983395e-05,2.5925821481654117e-05,0.0002913891746541882,0.0,0.0,0.0,0.0012882023789614857,0.0006782993718378312,0.0003575686782612376,0.0,0.0005561510540102129 +102062,35.0,Eastern Counties in South Carolina and Georgia,G1301030030203,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5576.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013388621096919085,0.0,0.0,0.0013388621096919087,0.0007071454804710785,0.00020180525992391008,0.00038855783242726626,0.0,4.1270829795914405e-05,0.0007071454804710785,0.00020180525992391008,0.00038855783242726626,0.0,4.1270829795914405e-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.00015955002383969528,4.631721261268015e-05,0.00015955002383969528,8.426937878857146e-05,2.404880517475021e-05,4.6303806029088736e-05,0.0,4.9181777795903106e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.426937878857145e-05,2.4048805174750208e-05,4.630380602908873e-05,0.0,4.9181777795903106e-06 +102063,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,61374.0,,3318.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005163741086832578,0.0009767887892432841,0.0,0.006140529876075861,0.0018662042693570085,0.001775823378810274,0.0024985022279085793,0.0,0.0,0.0008894154801137244,0.001775823378810274,0.0024985022279085793,0.0,0.0,0.0009767887892432841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.526313718405681e-05,0.0,0.0,0.0006153546220808989,0.0002460181130105293,0.0006806177592649557,0.00010599019537092977,0.00021162198215877575,0.00029774244455119337,0.0,0.0,6.526313718405681e-05,0.0,0.0,0.0,0.0,0.0,0.00020685051514677608,0.00019683267622314218,0.00027693456789503753,0.0,0.0 +102064,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,11653.0,,,2275.0,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027980630116745094,0.0,0.000583829233525771,0.0033818922452002807,0.0016974799814255454,0.0006141000225143576,0.000985454783603848,0.0,8.494016473026873e-05,0.0011136507478997743,0.0006141000225143576,0.000985454783603848,0.0,8.494016473026873e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000583829233525771,0.0,0.0,0.0,0.0,4.708386539641239e-05,0.00033343796422474433,0.00013329761149625182,0.0003805218296211567,0.00013271089203056906,7.318071840527109e-05,0.00011743410906381217,0.0,1.0122100714102818e-05,0.0,0.0,0.0,4.708386539641239e-05,0.0,0.0,0.0001909960878245199,6.909695732299066e-05,0.00011088084127992374,0.0,9.557249181240595e-06 +102065,50.0,the Greater Atlanta and Macon Area,G1300630040613,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,153982.0,,4491.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013486731625163275,0.001321893412060952,0.0,0.014808625037224224,0.003978569870827891,0.005725422261293133,0.005104632905103202,0.0,0.0,0.002656676458766939,0.005725422261293133,0.005104632905103202,0.0,0.0,0.001321893412060952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.832149395299797e-05,0.0,0.0,0.0016071862941704589,0.0005488361006779792,0.001695507788123457,0.0003165907138397472,0.0006822868907334217,0.0006083086895972899,0.0,0.0,8.832149395299797e-05,0.0,0.0,0.0,0.0,0.0,0.0004555248164245815,0.0006555300042992733,0.0005844529673996024,0.0,0.0 +102066,85.0,Rural Climate Zone 3A,G1300550010400,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,NaturalGas,88541.0,,9552.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004557678054831673,0.0016244379829438178,0.0,0.006182116037775492,0.0028468754814107784,0.00115171108676237,0.001110399344653647,0.0,0.0010731123945872756,0.0021029981680324625,0.00115171108676237,0.001110399344653647,0.0,0.00019255172502177345,0.0007438773133783153,0.0,0.0008805606695655023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010853488562673586,0.0,0.0,0.0005431299328950696,0.00024207305556788033,0.0006516648185218055,0.00025061034152490397,0.00013724724689683157,0.00013232420418750668,0.0,2.2946027391960696e-05,4.9701275133648067e-05,0.0,5.8833610493087775e-05,0.0,0.0,0.0,0.0003000928133039851,0.00012140334988189805,0.00011704862590719444,0.0,0.00011311816044848124 +102067,35.0,Eastern Counties in South Carolina and Georgia,G1300510003501,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,9311.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.001976781769443187,0.0,0.0,0.001976781769443186,0.0008848002748631107,0.000391452580008142,0.0006405662861109359,0.0,5.9962628460997896e-05,0.0008848002748631107,0.000391452580008142,0.0006405662861109359,0.0,5.9962628460997896e-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.0002355724657758983,7.209656250521406e-05,0.0002355724657758983,0.00010544137228026272,4.664928164166045e-05,7.633608415691109e-05,0.0,7.145727697063983e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010544137228026276,4.6649281641660474e-05,7.633608415691112e-05,0.0,7.145727697063987e-06 +102068,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,219657.0,,38742.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.019571160900926934,0.011404104252194864,0.0,0.030975265153121805,0.014945132406036406,0.006002917681436962,0.01002721506564843,0.0,0.0,0.0035410281538415427,0.006002917681436962,0.01002721506564843,0.0,0.0,0.011404104252194864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007619553092130875,0.0,0.0,0.002332257151866051,0.0013627236699024219,0.003094212461079139,0.0004219774329464958,0.0007153560162050192,0.001194923702714536,0.0,0.0,0.0007619553092130875,0.0,0.0,0.0,0.0,0.0,0.0014929142557662631,0.0005996495139239367,0.0010016486913889387,0.0,0.0 +102069,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,152892.0,,1981.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.007999034824295403,0.0003368414062581631,0.0,0.008335858500192144,0.005134677206524451,0.0008827946951044291,0.0012117283601692486,0.0,0.0011066759687554358,0.005134677206524451,0.0008827946951044291,0.0008748869539110854,0.0,0.0011066759687554358,0.0,0.0003368414062581631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2505500142568594e-05,0.0,0.0,0.0009532289227773511,0.00030365424467878986,0.0009757344229199198,0.0006118891753688366,0.00010520087169667739,0.00010425852205263805,0.0,0.0001318803536591989,0.0,2.2505500142568594e-05,0.0,0.0,0.0,0.0,0.0006010276327114619,0.00010333346857610788,0.00014183602951251987,0.0,0.00012953936750582297 +102070,50.0,the Greater Atlanta and Macon Area,G1301350050317,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,FuelOil,69383.0,22545.0,4988.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.0064163973702161285,0.001499336334326198,0.0023294178664646555,0.010245182909029186,0.0027060382173118304,0.0009151642624222048,0.004294531224808291,0.0,0.0023294178664646555,0.0027060382173118304,0.0009151642624222048,0.0027951948904820934,0.0,0.0,0.0,0.001499336334326198,0.0,0.0,0.0,0.0,0.0,0.0,0.0023294178664646555,0.0,0.00010017636876504367,0.0002069902010104658,0.0,0.0007646311016789414,0.0006017418130358983,0.001071797671454451,0.00032247394665626324,0.00010905856009499543,0.0003330985949276828,0.0,0.0,0.0,0.00010017636876504367,0.0,0.0,0.0002069902010104658,0.0,0.00028309162324720305,9.573971828243279e-05,0.0004492714876453209,0.0,0.00024369156385884303 +102071,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,251369.0,,30296.0,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,431997.0345818221,0.0,0.0,0.04194759859406682,0.01586383836141968,0.0,0.0578114369554865,0.04745361091464959,0.0034687320761979438,0.00675599405747038,0.0,0.00013309990716858818,0.03158977255322991,0.0034687320761979438,0.00675599405747038,0.0,0.00013309990716858818,0.01586383836141968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010599294707821323,0.0,0.0,0.004998813214479444,0.0028037696537375986,0.0060587426852615756,0.0037644913600327315,0.00041336201167996187,0.0008050985873647682,0.0,1.5861255401982264e-05,0.0010599294707821323,0.0,0.0,0.0,0.0,0.0,0.004973223866408262,0.00036352936720771104,0.000708040341721426,0.0,1.3949109924176457e-05 +102072,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,33011.0,,3573.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028496220135605967,0.001051671428609679,0.0,0.0039012934421702758,0.001578765416772724,0.0009656484621572181,0.0013568795632403334,0.0,0.0,0.0005270939881630453,0.0009656484621572181,0.0013568795632403334,0.0,0.0,0.001051671428609679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.026608671503878e-05,0.0,0.0,0.00033958356306418476,0.00017953757729167295,0.0004098496497792236,6.281270067340174e-05,0.00011507433052044171,0.00016169653187034133,0.0,0.0,7.026608671503878e-05,0.0,0.0,0.0,0.0,0.0,0.00016585690431630175,0.00010144601781218894,0.00014254672765073287,0.0,0.0 +102073,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,19546.0,,151.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004593881703776092,0.00012000796399573506,0.0,0.0047139723748455655,0.0019893532446515613,0.0010864401206395423,0.0015180056314112486,0.0,0.00012000796399573506,0.0019893532446515613,0.0010864401206395423,0.0015180056314112486,0.0,0.0,0.0,0.0,0.00012000796399573506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.020409179135496e-06,0.0,0.0,0.0005474476362222523,0.00020560032576707327,0.0005554680454013878,0.00023706895423544994,0.00012946982841378918,0.00018089899746549077,0.0,0.0,0.0,0.0,8.020409179135496e-06,0.0,0.0,0.0,0.00023441422022667523,0.00012802000569149817,0.00017887326312894015,0.0,1.4141064879595298e-05 +102074,50.0,the Greater Atlanta and Macon Area,G1300590000402,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,15203.0,,6646.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0031654326407450093,0.004571861272361141,0.0,0.007737365633077167,0.0020035691102921103,0.00031420519301939205,0.003405694543647306,0.0003668476517448506,0.0016471208543445233,0.0012679373675849876,0.00031420519301939205,0.0010251652656971444,0.0003668476517448506,0.0001913488826696503,0.0007356317427071225,0.0023805292779501617,0.001455771971674873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003054674266164488,0.0,0.0,0.0003772201815068317,0.000405089533991018,0.0006826876081232805,0.00015109832311172914,3.7443393492419564e-05,0.00012216751120306898,4.371672168768e-05,2.2802778780592423e-05,4.91509960594377e-05,0.00015905429084574983,9.726693165784014e-05,0.0,0.0,0.0,0.00017678003967753925,2.7723129790496115e-05,0.0003004931616597805,3.2367908897143946e-05,0.0001453296961352508 +102075,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,63641.0,,3219.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005611947726516777,0.0009379063770383383,0.0,0.006549884477154554,0.0037997372896627535,0.0021334112509082503,0.000616705562984113,0.0,0.0,0.0028618309126244145,0.0021334112509082503,0.000616705562984113,0.0,0.0,0.0009379063770383383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.266615735769214e-05,0.0,0.0,0.0006687664765352366,0.00021712827017564238,0.0007314326338929288,0.00034103962993671137,0.00025423507038902865,7.34917762094967e-05,0.0,0.0,6.266615735769214e-05,0.0,0.0,0.0,0.0,0.0,0.0004243207439112862,0.00023824032559220483,6.886817253696846e-05,0.0,0.0 +102076,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,97609.0,,10237.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009674652868500421,0.0030134431319777336,0.0,0.012688065310871854,0.005686784046964326,0.002434821294840846,0.0045664599690666855,0.0,0.0,0.002673340914986592,0.002434821294840846,0.0045664599690666855,0.0,0.0,0.0030134431319777336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020133965604165368,0.0,0.0,0.0011529095294877086,0.0005103883675032251,0.0013542491855293624,0.00031857682733945605,0.00029015290900630736,0.000544176135921367,0.0,0.0,0.00020133965604165368,0.0,0.0,0.0,0.0,0.0,0.0006069737564547275,0.00025987845070614526,0.00048739697836848987,0.0,0.0 +102077,50.0,the Greater Atlanta and Macon Area,G1300630040606,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,48302.0,,4094.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0024863285819340048,0.0006962358322426333,0.0,0.003182564414176638,0.0013930744967735487,0.0009933966896427187,0.0004641631316155624,0.0,0.0003319123657833885,0.0009511097776558925,0.0009933966896427187,0.0004641631316155624,0.0,7.764125265841123e-05,0.0004419647191176562,0.0,0.00025427111312497725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6518183668899755e-05,0.0,0.0,0.0002962918742843605,0.00012706735438865123,0.0003428100579532603,0.00011334225923294551,0.000118381524156059,5.5313591791273446e-05,0.0,9.25238620474374e-06,2.9529356328681478e-05,0.0,1.698882734021828e-05,0.0,0.0,0.0,0.00015005507723421798,0.00010700376565201434,4.9997350985294555e-05,0.0,3.575195425511723e-05 +102078,85.0,Rural Climate Zone 3A,G1300310110500,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4695.0,,150.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0010675829078269803,0.00011934630740582061,0.0,0.0011869292152328012,0.0005907766277198728,0.0002019706740713887,0.000352166719981971,0.0,4.2015193459568166e-05,0.0004714303203140523,0.0002019706740713887,0.000352166719981971,0.0,4.2015193459568166e-05,0.00011934630740582061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.975685066404543e-06,0.0,0.0,0.00012721991260837058,4.041297713061834e-05,0.00013519559767477516,5.617861030893339e-05,2.406809936393251e-05,4.1966407490427785e-05,0.0,5.00679544507687e-06,7.975685066404543e-06,0.0,0.0,0.0,0.0,0.0,6.729162805316135e-05,2.300520169478091e-05,4.0113083053389483e-05,0.0,4.785684873443366e-06 +102079,35.0,Eastern Counties in South Carolina and Georgia,G1301910110100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,36041.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0031781415771691616,0.0,0.0,0.0031781415771691616,0.0018492662281680825,0.0009479600384522344,0.0003809153105488456,0.0,0.0,0.0018492662281680825,0.0009479600384522344,0.0003809153105488456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003787329373201125,0.00011589979988630122,0.0003787329373201125,0.00022037345205521802,0.00011296655013867932,4.5392935126215234e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022037345205521802,0.00011296655013867932,4.5392935126215234e-05,0.0,0.0 +102080,81.0,the Columbus-Albany Area,G1302150002902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,27024.0,,1027.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00623371948831894,0.0007968021563572724,0.0,0.007030521644676213,0.002953682683927181,0.0006663737132677371,0.0025052287810291268,0.0004221741484007834,0.0004830623180513848,0.002156880527569909,0.0006663737132677371,0.0025052287810291268,0.0004221741484007834,0.0004830623180513848,0.0007968021563572724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.323934053488631e-05,0.0,0.0,0.0007428575303636887,0.00023988735856538037,0.0007960968708985751,0.0002570303243516971,7.941017106479478e-05,0.000298542157496599,5.0309489519390066e-05,5.756538793120787e-05,5.323934053488631e-05,0.0,0.0,0.0,0.0,0.0,0.0003344584742274877,7.545642482776847e-05,0.0002836780674692298,4.7804634634847615e-05,5.469926973924146e-05 +102081,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,26616.0,,4061.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0023714779474423874,0.0011952374068703324,0.0,0.00356671535431272,0.0018253870929810638,0.0007477215678372307,0.0009936066934944253,0.0,0.0,0.0006301496861107313,0.0007477215678372307,0.0009936066934944253,0.0,0.0,0.0011952374068703324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.985800166241467e-05,0.0,0.0,0.00028260602618687236,0.00016191784152174693,0.000362464027849287,7.509414071790987e-05,8.910503309069091e-05,0.00011840685237827157,0.0,0.0,7.985800166241467e-05,0.0,0.0,0.0,0.0,0.0,0.0001855032130068899,7.598648736024256e-05,0.00010097432748215451,0.0,0.0 +102082,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5232.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0009273944178388543,0.0,0.0,0.0009273944178388541,0.0004905356543478323,0.00019791802745816267,0.00019444433036111175,0.0,4.44964056717474e-05,0.0004905356543478323,0.00019791802745816267,0.00019444433036111175,0.0,4.44964056717474e-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.00011051541964618063,3.640588508265578e-05,0.00011051541964618063,5.845598447529627e-05,2.3585427558486596e-05,2.3171475215211863e-05,0.0,5.302532397185871e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.845598447529628e-05,2.3585427558486603e-05,2.3171475215211866e-05,0.0,5.302532397185872e-06 +102083,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,328595.0,,4043.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02791014072413873,0.0011900815530123186,0.0,0.029100222277151058,0.006146176763634638,0.008782904978308071,0.014171171224814642,0.0,0.0,0.004956095210622321,0.008782904978308071,0.014171171224814642,0.0,0.0,0.0011900815530123186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.951337253215044e-05,0.0,0.0,0.0033259990653580814,0.0010974659199729792,0.003405512437890232,0.0005906085605687742,0.0010466422952757407,0.0016887518667363262,0.0,0.0,7.951337253215044e-05,0.0,0.0,0.0,0.0,0.0,0.0007192687813406918,0.001027837239852328,0.001658410008210533,0.0,0.0 +102084,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,16274.0,,583.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001325807615457867,0.00016984916805590816,0.0,0.001495656783513775,0.0009101145335527956,0.0004536297076028235,0.0001319429159575939,0.0,0.0,0.0007402653654968875,0.0004536297076028235,0.0001319429159575939,0.0,0.0,0.00016984916805590816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1347662538448601e-05,0.0,0.0,0.0001579949818974343,5.354478794744983e-05,0.0001693426444358829,8.821657958314477e-05,5.405853504325731e-05,1.572348685824638e-05,0.0,0.0,1.13476625384486e-05,0.0,0.0,0.0,0.0,0.0,0.00010304583481330563,5.136128497319182e-05,1.493896363733145e-05,0.0,0.0 +102085,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,123858.0,,16884.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006225005782050599,0.0028713611105318708,0.0,0.00909636689258247,0.005672811405984475,0.0015494385541369945,0.0009467658391079797,0.0,0.0009273510933530216,0.0039400231844027135,0.0015494385541369945,0.0005588432615986444,0.0,0.00017670078191224623,0.0017327882215817604,0.00038792257750933524,0.0007506503114407755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019184764126927258,0.0,0.0,0.0007418222681281918,0.0004052934783958322,0.0009336699093974643,0.00046952517595388865,0.00018464368753992404,6.659630374041202e-05,0.0,2.1057100893967008e-05,0.00011577482606082282,2.591872935009457e-05,5.015408585835521e-05,0.0,0.0,0.0,0.0005822690942439257,0.00015903757747916827,9.717800366445009e-05,0.0,9.518523400992043e-05 +102086,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,31201.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002580197959873064,0.0,0.0,0.002580197959873064,0.0010276414668785778,0.0006127793689462315,0.0009398078136545523,0.0,0.0,0.0010276414668785778,0.0006127793689462315,0.0009398078136545523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030747806396308795,8.564547673542015e-05,0.00030747806396308795,0.0001224623899398625,7.30239372832383e-05,0.00011199539397128294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001224623899398625,7.30239372832383e-05,0.00011199539397128294,0.0,0.0 +102087,81.0,the Columbus-Albany Area,G1302150002200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5522.0,,307.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010133270674539947,0.00024340691801478167,0.0,0.0012567339854687764,0.0004781295932869362,0.00024969265561896914,0.0004227985609553396,0.0,0.00010603046853379211,0.0003407531438059466,0.00024969265561896914,0.0004227985609553396,0.0,0.0,0.0001373764494809896,0.0,0.00010603046853379211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6261888064258696e-05,0.0,0.0,0.00012075347237514276,5.029534523488333e-05,0.00013701536043940146,4.060596687770063e-05,2.975471213683937e-05,5.038293754339943e-05,0.0,0.0,9.17804827547866e-06,0.0,7.083839788780039e-06,0.0,0.0,0.0,5.212805519579993e-05,2.7222729395627052e-05,4.609559213992894e-05,0.0,1.1559966573432882e-05 +102088,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,36137.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003186615811412295,0.0,0.0,0.003186615811412295,0.0022793867698060856,0.0007151767723613043,0.00019202189564546704,0.0,0.0,0.0022793867698060856,0.0007151767723613043,0.00019202189564546704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003797425600173756,8.983695043078007e-05,0.0003797425600173756,0.00027162991036948315,8.522616922592909e-05,2.288286086156136e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027162991036948315,8.522616922592909e-05,2.288286086156136e-05,0.0,0.0 +102089,50.0,the Greater Atlanta and Macon Area,G1300670030507,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,20762.0,,2802.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2013 to 2018,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.001954866541951072,0.0008249059276759531,0.0,0.0027797417800207273,0.00111123995443352,0.0006614530845343881,0.001007079430659117,0.0,0.0,0.00028633402675756693,0.0006614530845343881,0.001007079430659117,0.0,0.0,0.0008249059276759531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.511448984131536e-05,0.0,0.0,0.0002329559098933274,0.00011709265525297774,0.0002880703997346427,3.412161511043901e-05,7.882349094054577e-05,0.0001200108038423426,0.0,0.0,5.511448984131536e-05,0.0,0.0,0.0,0.0,0.0,0.00011516009874571274,6.85477535492929e-05,0.00010436572786712047,0.0,0.0 +102090,35.0,Eastern Counties in South Carolina and Georgia,G1301270000600,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,13601.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003069424920613177,0.0,0.0,0.003069424920613177,0.0010213496536067076,0.0006810927522431967,0.0013033807750577457,0.0,6.35190326317881e-05,0.0010213496536067076,0.0006810927522431967,0.0013033807750577457,0.0,6.35190326317881e-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.00036577977969371947,0.00010737445092878181,0.00036577977969371947,0.00012171304428318986,8.116502710114735e-05,0.00015532236333782402,0.0,7.5694888662636485e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012171304428318986,8.116502710114735e-05,0.00015532236333782402,0.0,7.5694888662636485e-06 +102091,50.0,the Greater Atlanta and Macon Area,G1301350050608,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,45257.0,,23342.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009423430431683168,0.016056810550917032,0.0,0.025480240982600197,0.0065965877741028574,0.001522399824748376,0.012289432193438,0.00036620217200571006,0.004705619018305256,0.005170005830631338,0.001522399824748376,0.0018296481805792537,0.00036620217200571006,0.0005351744237184897,0.0014265819434715193,0.010459784012858747,0.004170444594586766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010728207034169169,0.0,0.0,0.0011229760153951894,0.0013304961542089818,0.0021957967188121065,0.0006161018101998418,0.00018142209479111122,0.00021803641872219525,4.3639761436067925e-05,6.377593024597314e-05,9.531573155352326e-05,0.0006988606365305384,0.00027864433533285516,0.0,0.0,0.0,0.0005684705179838128,0.00013119501272320687,0.001059059641737394,3.1558003248913845e-05,0.00040551354311877904 +102092,50.0,the Greater Atlanta and Macon Area,G1300890021417,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,505304.0,,19583.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.024015047598643303,0.0033303115158899374,0.0,0.02734537684489466,0.012481358843091851,0.008110771561964575,0.0032505780805839606,0.0,0.003502650628892851,0.009526700494608572,0.008110771561964575,0.002874924913177302,0.0,0.003502650628892851,0.002954658348483279,0.00037565316740665873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022251214584016429,0.0,0.0,0.0028618279795845692,0.000832756787080102,0.0030843401254247336,0.0011352789502750433,0.0009665453668873998,0.0003425993857368138,0.0,0.00041740427668531205,0.00019741317477619955,2.5098971063964742e-05,0.0,0.0,0.0,0.0,0.0014077976002280005,0.0009148302588264276,0.00036663924807615303,0.0,0.0003950710184509807 +102093,35.0,Eastern Counties in South Carolina and Georgia,G1300510002000,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,21504.0,,346.0,,4.088175128053588,Healthcare,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,30661.31346040191,0.0,0.0,0.0024255350828610665,0.00012860601849954277,0.0,0.002554102352936837,0.0012335173223604835,0.0003759759558605193,0.0008823791061378693,0.0,6.230746542550911e-05,0.0012335173223604835,0.0003759759558605193,0.0007537730876383264,0.0,6.230746542550911e-05,0.0,0.00012860601849954277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.59207650657895e-06,0.0,0.0,0.000289044154812948,8.895710613236073e-05,0.000297636231319527,0.00014699477010584193,4.480399115213244e-05,8.982500668684245e-05,0.0,7.42500440818602e-06,0.0,8.59207650657895e-06,0.0,0.0,0.0,0.0,0.00014374500171168662,4.3813462072265354e-05,0.00010282594644023772,0.0,7.260852005792299e-06 +102094,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010200,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,110120.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009509082442524314,0.0,0.0,0.009509082442524314,0.002473213992319272,0.002469377791532059,0.0045664599690666855,0.0,0.0,0.002473213992319272,0.002469377791532059,0.0045664599690666855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001133178039199882,0.00035012388144769075,0.001133178039199882,0.00029472788770922454,0.00029427073545375656,0.0005441757588188572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029472788770922454,0.00029427073545375656,0.0005441757588188572,0.0,0.0 +102095,85.0,Rural Climate Zone 3A,G1300690010802,ComStock 90.1-2004,gen3_t5_cfl,5001_10000,Electricity,25160.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0018339275604520172,0.0,0.0,0.0018339275604520172,0.0014029869316291943,0.00035087582070490904,8.003443451847605e-05,0.0,0.0,0.0014029869316291943,0.00035087582070490904,8.003443451847605e-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.0002185438981333941,7.884610888422078e-05,0.0002185438981333941,0.00016718993687672213,4.181286724253414e-05,9.537474479231082e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016718993687672213,4.181286724253414e-05,9.537474479231082e-06,0.0,0.0 +102096,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock 90.1-2004,gen4_led,_1000,Electricity,13202.0,,3475.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,7566.85751697572,0.0,0.0,0.0027489547690573565,0.002390139754066254,0.0,0.00513909452312361,0.0016403791770690558,0.0001267291887845847,0.0025117051049377143,0.0003677800113680534,0.0004925010409642011,0.0013722899254127018,0.0001267291887845847,0.0003896546025278148,0.0003677800113680534,0.0004925010409642011,0.00026808925165635407,0.0021220505024098996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015969290826374336,0.0,0.0,0.00032759153054319235,0.0002699116491187449,0.0004872844388069357,0.000163535086890173,1.5102252458186247e-05,4.643493922202937e-05,4.3828155407798e-05,5.869109656500565e-05,1.791190335143349e-05,0.00014178100491230985,0.0,0.0,0.0,0.0,0.00015553931594992996,1.2016350615754034e-05,0.00023815767680493606,3.4872578357434455e-05,4.6698517078881136e-05 +102097,46.0,the Tallahassee-Valdosta Area,G1301850011301,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,121219.0,,20328.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.012053449466242011,0.006110130879216841,0.0,0.01816358034545885,0.005365414119561967,0.0018050387409258152,0.007333473251992774,0.0,0.0036596228949560884,0.005365414119561967,0.0018050387409258152,0.004882965267732023,0.0,0.0,0.0,0.0024505079842607512,0.0036596228949560884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040824322259745135,0.0,0.0,0.001436386301868505,0.0009257914536480372,0.0018446295244659563,0.0006393860418774775,0.00021510298185339045,0.0005818935436460335,0.0,0.0,0.0,0.00016372861666485598,0.00024451460593259526,0.0,0.0,0.0,0.0005448926427330148,0.00018331340468065089,0.0007447618267006106,0.0,0.0003716584677720399 +102098,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970500,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,12322.0,,2439.0,,8.53126424238864,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005546968857717935,0.0018917380198882065,0.0,0.007438706877606142,0.003170470443333904,0.0005255950899454303,0.0027447384204781055,0.000406487156485489,0.0005914157673632119,0.003170470443333904,0.0005255950899454303,0.0014444161679531113,0.000406487156485489,0.0,0.0,0.0013003222525249946,0.0005914157673632119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001263924108627262,0.0,0.0,0.0006610224371034272,0.0003133080004336117,0.0007874148479661534,0.00037781933754702364,6.263423433537335e-05,0.00017212851198965758,4.844035323137259e-05,0.0,0.0,8.687823719100236e-05,3.9514173671723854e-05,0.0,0.0,0.0,0.00033560611315852016,5.563619922799309e-05,0.0002905407917838458,4.3028180541403274e-05,6.260356325439099e-05 +102099,50.0,the Greater Atlanta and Macon Area,G1300590150600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,18187.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015652006107891396,0.0,0.0,0.0015652006107891398,0.0006533510284717945,0.0004167648535228038,0.0004950847287945412,0.0,0.0,0.0006533510284717945,0.0004167648535228038,0.0004950847287945412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000186520818410862,6.69369351367351e-05,0.000186520818410862,7.785811460851436e-05,4.9664765671643815e-05,5.8997938130703815e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.785811460851436e-05,4.966476567164381e-05,5.899793813070381e-05,0.0,0.0 +102100,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,13435.0,,1947.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001197048093641897,0.0005731897768221949,0.0,0.0017702378704640919,0.0007212364376023131,0.0005036778185578981,0.0005453236143038808,0.0,0.0,0.00014804666078011824,0.0005036778185578981,0.0005453236143038808,0.0,0.0,0.0005731897768221949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8296463857208714e-05,0.0,0.0,0.00014265052549493088,8.359901264099277e-05,0.00018094698935213957,1.7642510831625347e-05,6.002257209134228e-05,6.498544257196325e-05,0.0,0.0,3.8296463857208714e-05,0.0,0.0,0.0,0.0,0.0,7.372204841657072e-05,5.148403296084247e-05,5.57409079747264e-05,0.0,0.0 +102101,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302670950400,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,32168.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0028365904514916426,0.0,0.0,0.0028365904514916426,0.0018810066395805324,0.0007207655146578507,0.00023481829725325933,0.0,0.0,0.0018810066395805324,0.0007207655146578507,0.00023481829725325933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033803148865649735,9.893429829252862e-05,0.00033803148865649735,0.00022415624864555327,8.589235705984241e-05,2.798288295110163e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022415624864555327,8.589235705984241e-05,2.798288295110163e-05,0.0,0.0 +102102,50.0,the Greater Atlanta and Macon Area,G1300590030200,ComStock 90.1-2004,gen5_led,10001_25000,Electricity,30231.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0024340491381431182,0.0,0.0,0.002434049138143118,0.0014767947782629311,0.0006245115780396153,0.0003327124082411335,0.0,0.0,0.0014767947782629311,0.0006245115780396153,0.0003327124082411335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029005924074136126,8.270209703788881e-05,0.00029005924074136126,0.00017598575369786392,7.442140395676315e-05,3.9648463544690605e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017598575369786397,7.442140395676317e-05,3.964846354469061e-05,0.0,0.0 +102103,50.0,the Greater Atlanta and Macon Area,G1301210008400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,36022.0,,1529.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003036859301582881,0.0004501551451747044,0.0,0.003487014446757586,0.001292370010802562,0.0009723081067238196,0.0012223363292312042,0.0,0.0,0.0008422148656278575,0.0009723081067238196,0.0012223363292312042,0.0,0.0,0.0004501551451747044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0075802297477666e-05,0.0,0.0,0.0003618975773044814,0.0001286677883302392,0.00039197337960195913,0.00010036537395119837,0.00011586837362977325,0.00014566382972350985,0.0,0.0,3.0075802297477666e-05,0.0,0.0,0.0,0.0,0.0,0.00014527460340795005,0.00010929662048326265,0.00013740215571074642,0.0,0.0 +102104,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,60012.0,,4414.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.005072470197703209,0.0012992444826132473,0.0,0.0063717146803164565,0.0023715393266549823,0.0015555026951990655,0.0024446726584624085,0.0,0.0,0.0010722948440417355,0.0015555026951990655,0.0024446726584624085,0.0,0.0,0.0012992444826132473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.680721775135735e-05,0.0,0.0,0.0006044777234218753,0.0002577563927968182,0.0006912849411732327,0.00012778356912907153,0.00018536663426751542,0.0002913275200252884,0.0,0.0,8.680721775135735e-05,0.0,0.0,0.0,0.0,0.0,0.0002572948580044194,0.00016876078780917502,0.00026522929535963824,0.0,0.0 +102105,46.0,the Tallahassee-Valdosta Area,G1301850010601,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,19938.0,,2455.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004533540663520077,0.0019043523020468968,0.0,0.006437892965566974,0.0024559845641403933,0.0005082908823687654,0.0024367396977700833,0.00042403394641135953,0.0006130055964425088,0.0024559845641403933,0.0005082908823687654,0.0011453121313826271,0.00042403394641135953,0.0,0.0,0.0012914275663874564,0.0006130055964425088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012723881773171112,0.0,0.0,0.0005402555546130573,0.0002657047039205912,0.0006674943723447685,0.0002926761666654013,6.057229722644165e-05,0.00013648520806797956,5.053151871706332e-05,0.0,0.0,8.628640643680345e-05,4.095781398769063e-05,0.0,0.0,0.0,0.00025464167917941714,5.270067478753551e-05,0.00025264633069080214,4.39647372869609e-05,6.355771803441086e-05 +102106,50.0,the Greater Atlanta and Macon Area,G1300670031312,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,244775.0,,5324.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.021584603583645643,0.001550997481689359,0.0,0.023135601065335,0.014521891253584086,0.0067463105447184936,0.0018673992670324197,0.0,0.0,0.012970893771894726,0.0067463105447184936,0.0018673992670324197,0.0,0.0,0.001550997481689359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010362880466498051,0.0,0.0,0.0025721950592170885,0.0007713962203011958,0.002675823863882069,0.0015457160815766156,0.0008039446535963743,0.00022253432404409818,0.0,0.0,0.00010362880466498051,0.0,0.0,0.0,0.0,0.0,0.0016795769885254086,0.0007802666849993766,0.0002159801903572839,0.0,0.0 +102107,50.0,the Greater Atlanta and Macon Area,G1301210011900,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,130083.0,,3411.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011470923937260792,0.0009937330528049261,0.0,0.012464656990065713,0.006962023847925408,0.00371614914401006,0.001786483998130249,0.0,0.0,0.005968290795120483,0.00371614914401006,0.001786483998130249,0.0,0.0,0.0009937330528049261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.639543304470531e-05,0.0,0.0,0.0013669694846299176,0.00040467246929467687,0.0014333649176746228,0.0007112305370473526,0.00044284684546591033,0.00021289210211665452,0.0,0.0,6.639543304470531e-05,0.0,0.0,0.0,0.0,0.0,0.0008005932892965838,0.0004273360924505086,0.00020543553592753102,0.0,0.0 +102108,50.0,the Greater Atlanta and Macon Area,G1301690030104,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,6166.0,,211.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014805393270073423,0.00016748182432209748,0.0,0.001648103858403179,0.00111894400061909,0.00032321924417321336,0.00016251939989773908,0.0,4.34212137131364e-05,0.0009514621762969926,0.00032321924417321336,0.00016251939989773908,0.0,4.34212137131364e-05,0.00016748182432209748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1192093433855764e-05,0.0,0.0,0.00017643457942344366,6.46499872230621e-05,0.00018762667285729943,0.00011338491713799762,3.85177552308149e-05,1.936729504312981e-05,0.0,5.174468141294224e-06,1.1192093433855766e-05,0.0,0.0,0.0,0.0,0.0,0.00012738501817064304,3.6796559317826366e-05,1.8501852369377897e-05,0.0,4.94324299945211e-06 +102109,50.0,the Greater Atlanta and Macon Area,G1301210010206,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11898.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0026069269642629697,0.0,0.0,0.0026069269642629697,0.001150951638156202,0.0004059263179125208,0.0009708156315519907,0.0,7.92333766422565e-05,0.001150951638156202,0.0004059263179125208,0.0009708156315519907,0.0,7.92333766422565e-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.00031065858026925827,0.00011283413146781078,0.00031065858026925827,0.00013715497471532355,4.837285253685024e-05,0.00011568878220813943,0.0,9.441970808945096e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013715497471532355,4.837285253685024e-05,0.00011568878220813943,0.0,9.441970808945096e-06 +102110,50.0,the Greater Atlanta and Macon Area,G1301210007705,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,262336.0,,67501.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.023100497826235557,0.011479256545991886,0.0,0.03457975437222745,0.012675914098954091,0.005439444388973739,0.008699774168338729,0.0,0.007764603985599462,0.011918703553787897,0.005439444388973739,0.004769431761271364,0.0,0.0009729003918411374,0.000757210545166195,0.003930342407067365,0.006791703593758326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000766977014423567,0.0,0.0,0.0027528417148711196,0.0014690478187542586,0.003519818729294686,0.0014203288854141864,0.0006482080833202849,0.000568363972387976,0.0,0.00011593866085574248,5.059239515161719e-05,0.0002626025712516552,0.0004537820480202946,0.0,0.0,0.0,0.0012902613296832159,0.0005536724764200046,0.0008855363091574289,0.0,0.0007903468092884749 +102111,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970100,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,118531.0,,4071.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005792119007980009,0.0006923174223688017,0.0,0.006484436430348812,0.0029424066687420225,0.0013897057281037387,0.0009374219386396116,0.0,0.001214902094863438,0.0026669123129972423,0.0013897057281037387,0.0005205988720155904,0.0,0.001214902094863438,0.0002754943557447804,0.0004168230666240213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.625675566401449e-05,0.0,0.0,0.0006902362895392691,0.00024369438774877016,0.0007364930452032836,0.0003178110907102687,0.00016560870451664303,6.20388208984138e-05,0.0,0.00014477767341394357,1.8406983110289062e-05,2.7849772553725423e-05,0.0,0.0,0.0,0.0,0.0003341943545850584,0.0001578407953599928,0.00010647104735236255,0.0,0.00013798684790586967 +102112,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970301,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,53940.0,,5114.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0043111679569956185,0.0014899161732200399,0.0,0.0058010841302156575,0.003937390442314645,0.0012848640034157778,0.0005787993108857987,0.0,0.0,0.002447474269094604,0.0012848640034157778,0.0005787993108857987,0.0,0.0,0.0014899161732200399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.95476428009083e-05,0.0,0.0,0.0005137549030219849,0.00020609046792730186,0.0006133025458228932,0.0002916615446928132,0.00015311516230774006,6.897457644878006e-05,0.0,0.0,9.954764280090829e-05,0.0,0.0,0.0,0.0,0.0,0.00041626901592280955,0.00013583846512872354,6.119185361195582e-05,0.0,0.0 +102113,50.0,the Greater Atlanta and Macon Area,G1301350050547,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,52202.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.00460324048918904,0.0,0.0,0.00460324048918904,0.0026579329395987864,0.0015592287271369901,0.00038610919605270113,0.0,0.0,0.0026579329395987864,0.0015592287271369901,0.00038610919605270113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005485602111899415,0.00019278762509596691,0.0005485602111899415,0.00031674127347882205,0.00018581059187771788,4.601196540273788e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031674127347882205,0.00018581059187771788,4.601196540273788e-05,0.0,0.0 +102114,50.0,the Greater Atlanta and Macon Area,G1301510070113,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,46544.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.003670102767262428,0.0,0.0,0.003670102767262428,0.002722507212003447,0.0007588540083527915,0.00018877192050562754,0.0,0.0,0.002722507212003447,0.0007588540083527915,0.00018877192050562754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004373574051437809,0.00013284198795127192,0.0004373574051437809,0.00032443469985316524,9.043082469968406e-05,2.249550014043133e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032443469985316524,9.043082469968406e-05,2.249550014043133e-05,0.0,0.0 +102115,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6515.0,,129.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0012777415821985606,0.00010272218558421982,0.0,0.0013804637677827802,0.000749822330520561,0.00033562530523410957,0.00024042946336016668,0.0,5.450396159420359e-05,0.0006471001449363413,0.00033562530523410957,0.00024042946336016668,0.0,5.450396159420359e-05,0.00010272218558421982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.865460873500336e-06,0.0,0.0,0.0001522654402189932,5.0770286358475686e-05,0.00015913090109249357,7.711339272919948e-05,3.999567327391251e-05,2.8651410105289223e-05,0.0,6.4951081043638104e-06,6.865460873500336e-06,0.0,0.0,0.0,0.0,0.0,8.643465036873445e-05,3.8688706286821576e-05,2.771514765297938e-05,0.0,6.282862849437018e-06 +102116,50.0,the Greater Atlanta and Macon Area,G1300670030215,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,84640.0,,10188.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004697020965231869,0.0017326463786903998,0.0,0.006429667343922268,0.002601682313332868,0.0013557698163457576,0.0018271314746978614,0.0,0.0006451014699072012,0.0020313320471726094,0.0013557698163457576,0.001184547716112308,0.0,0.00012537138560119338,0.0005703502661602585,0.0006425837585855536,0.0005197300843060077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011576581755975571,0.0,0.0,0.0005597340912364013,0.00025656185518586476,0.000675499908796157,0.00024206955979967843,0.0001615642322432286,0.00014116005534404652,0.0,1.494024384944772e-05,3.810764023722623e-05,4.293388141872523e-05,3.472548054817871e-05,0.0,0.0,0.0,0.0002733323625263705,0.0001424369781985433,0.00019195816494047138,0.0,6.7774265879944e-05 +102117,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2004,gen1_t12_incandescent,200001_500000,NaturalGas,334934.0,,4385.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02984223557821691,0.0012908662200939744,0.0,0.031133101798310886,0.005862819628687948,0.012982716220936103,0.012287565948686836,0.0,0.0,0.004571953408593974,0.012982716220936103,0.012287565948686836,0.0,0.0,0.0012908662200939744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.624718888262436e-05,0.0,0.0,0.003556241764938848,0.001044826309664111,0.003642488953821472,0.0005448308862913916,0.001547125299183121,0.0014642855794643357,0.0,0.0,8.624718888262436e-05,0.0,0.0,0.0,0.0,0.0,0.0006859340863011014,0.0015189427873815089,0.001437612080138862,0.0,0.0 +102118,35.0,Eastern Counties in South Carolina and Georgia,G1302450000300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,64817.0,,7976.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0030956324521341193,0.0013563371879111992,0.0,0.004451969640045319,0.001561991650022392,0.0007466609801212637,0.0017369371261540527,0.0,0.0004063798837476102,0.0014630030422142371,0.0007466609801212637,0.00047958854605100826,0.0,0.0004063798837476102,9.89886078081548e-05,0.0012573485801030443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.062257007141164e-05,0.0,0.0,0.0003688998617603741,0.00018703882091287332,0.0004595224318317858,0.00017434292616223552,8.8977983209444e-05,5.71515356153175e-05,0.0,4.842741677337709e-05,6.613843613018526e-06,8.400872645839311e-05,0.0,0.0,0.0,0.0,0.00016122531363711785,7.706869028328214e-05,0.0001792827976565219,0.0,4.194563025486385e-05 +102119,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,165954.0,,6089.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014634060956307702,0.001773970075161895,0.0,0.016408031031469598,0.011589350601468585,0.0032561106069258715,0.001562539449475705,0.0,0.0,0.00981538052630669,0.0032561106069258715,0.001562539449475705,0.0,0.0,0.001773970075161895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001185265875822779,0.0,0.0,0.0017439111834069803,0.0006045369638359785,0.0018624377709892579,0.0011696788690663026,0.0003880240569437137,0.0001862046378370964,0.0,0.0,0.0001185265875822779,0.0,0.0,0.0,0.0,0.0,0.0013154804656338428,0.00036959360749784894,0.00017736025022032555,0.0,0.0 +102120,81.0,the Columbus-Albany Area,G1300950011400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,39103.0,,6034.0,,9.325022323477118,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,163187.89066084955,0.0,0.0,0.012866347040533938,0.00511487961079829,0.0,0.017981226651332227,0.013152446560157826,0.001058135140233919,0.0036281696881558948,0.0,0.00014247526278458718,0.008037566949359537,0.001058135140233919,0.0036281696881558948,0.0,0.00014247526278458718,0.00511487961079829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034174765439672056,0.0,0.0,0.0015332557250630036,0.0008675435896937357,0.0018750033794597244,0.000957820079145889,0.00012609575635903829,0.00043236140983449054,0.0,1.6978479723585843e-05,0.00034174765439672056,0.0,0.0,0.0,0.0,0.0,0.0013714793894015137,0.00011033768731882887,0.000378329607787999,0.0,1.4856694951382571e-05 +102121,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,11530.0,,4333.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0022565254480641705,0.0029809688752928574,0.0,0.005237494323357028,0.0016881446777654528,0.0002016765584958983,0.0023916458734575814,0.00037315900919422434,0.0005827964844728554,0.0010008521955228522,0.0002016765584958983,0.0005898967616034009,0.00037315900919422434,9.08692032767792e-05,0.0006872924822426006,0.001801749111854181,0.0004919272811960762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019917082907795224,0.0,0.0,0.0002689025613414013,0.00028067621314549794,0.0004680733904193536,0.00011926819577024619,2.403311834510443e-05,7.029601649661589e-05,4.446810624095958e-05,1.0828577860329767e-05,4.5920846286546443e-05,0.00012038229160081602,3.28676911905898e-05,0.0,0.0,0.0,0.00015086901370302416,1.8023777148989035e-05,0.00021374071713632195,3.334911540049429e-05,5.2084357436943424e-05 +102122,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,50522.0,,4837.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004213972438794813,0.0014090616515167445,0.0,0.0056230340903115576,0.003534393524974553,0.001324228188287104,0.0007644123770499001,0.0,0.0,0.0021253318734578085,0.001324228188287104,0.0007644123770499001,0.0,0.0,0.0014090616515167445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.414448668934354e-05,0.0,0.0,0.0005021722929035299,0.00020769384158067915,0.0005963167795928735,0.00025327236843070177,0.00015780613549285774,9.109378897997042e-05,0.0,0.0,9.414448668934354e-05,0.0,0.0,0.0,0.0,0.0,0.0003748186709837201,0.0001404329897352122,8.106511887394112e-05,0.0,0.0 +102123,50.0,the Greater Atlanta and Macon Area,G1302970110800,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,54678.0,,7624.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002595388035028749,0.001296550409202781,0.0,0.0038919384442315315,0.001594633245396709,0.000818929933269399,0.001140062239309395,0.0,0.0003383130262560275,0.0013445110368440242,0.000818929933269399,0.00035269234936769037,0.0,7.925471554763602e-05,0.0002501222085526848,0.0007873698899417048,0.0002590583107083915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.662794725915417e-05,0.0,0.0,0.0003092868719181517,0.00016524350802848612,0.0003959148191773058,0.00016022252057593106,9.759013833868872e-05,4.20295971211829e-05,0.0,9.444615882349061e-06,1.6711709268726413e-05,5.26074704193381e-05,1.7308767571089653e-05,0.0,0.0,0.0,0.00016221709105936725,8.330720053648131e-05,0.00011597499338563579,0.0,3.441553419582141e-05 +102124,50.0,the Greater Atlanta and Macon Area,G1301510070104,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,19282.0,,1239.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0009590352492106561,0.00021072534547732753,0.0,0.0011697428643265635,0.00029831333089238844,0.00018912976526770325,0.0005535596138954685,0.0,0.00012877561499384353,0.00029831333089238844,0.00018912976526770325,0.000342834268418141,0.0,0.00012877561499384353,0.0,0.00021072534547732753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4079275634169748e-05,0.0,0.0,0.00011428551027104754,4.049338490425522e-05,0.0001283647859052173,3.554915345369523e-05,2.2538057645798928e-05,4.085458729156915e-05,0.0,1.5345824756861127e-05,0.0,1.4079275634169748e-05,0.0,0.0,0.0,0.0,3.273619187642528e-05,2.075464836527955e-05,6.0746308860259936e-05,0.0,1.4131528178215561e-05 +102125,50.0,the Greater Atlanta and Macon Area,G1300890022900,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,31867.0,,4891.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0028220934367115575,0.0014397108106378325,0.0,0.00426180424734939,0.0022598905389439395,0.0008872058284602898,0.0011147078799451605,0.0,0.0,0.0008201797283061068,0.0008872058284602898,0.0011147078799451605,0.0,0.0,0.0014397108106378325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.619257780622991e-05,0.0,0.0,0.0003363046372298542,0.00020213277193397648,0.00043249721503608416,9.773958664978743e-05,0.00010572698635953994,0.00013283806422052682,0.0,0.0,9.619257780622991e-05,0.0,0.0,0.0,0.0,0.0,0.00022933863398055798,9.00355876766293e-05,0.00011312299337889686,0.0,0.0 +102126,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,23052.0,,5856.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005411688767644288,0.00454211190652534,0.0,0.009953881534952698,0.0029001528455358163,0.0004566208419879762,0.0056473979502890456,0.0004105301956389153,0.0005392605622840115,0.0029001528455358163,0.0004566208419879762,0.0011052860437637058,0.0004105301956389153,0.0005392605622840115,0.0,0.00454211190652534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003034783220501575,0.0,0.0,0.0006449039742286904,0.0004832212319496825,0.000948382296278848,0.0003456074760136003,5.441491710948533e-05,0.0001317155130103692,4.8922354199549665e-05,6.426298604624714e-05,0.0,0.0003034783220501575,0.0,0.0,0.0,0.0,0.00027631970558929936,4.350575412543282e-05,0.0005380707231936165,3.9114346324565677e-05,5.137947127014547e-05 +102127,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10315.0,,771.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002470046757224416,0.0006118669315233962,0.0,0.003081913688747813,0.0017514877005773133,0.0009316951856732981,0.00032834708274505044,0.0,7.038371975215063e-05,0.001139620769053917,0.0009316951856732981,0.00032834708274505044,0.0,7.038371975215063e-05,0.0006118669315233962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.087961950117897e-05,0.0,0.0,0.00029435397092616034,0.00013263389576751594,0.00033523359042733934,0.00013580791446146203,0.00011102954905351404,3.912892230292505e-05,0.0,8.38758510825925e-06,4.087961950117897e-05,0.0,0.0,0.0,0.0,0.0,0.0001905171817749447,0.00010134466887164149,3.571578654420033e-05,0.0,7.655953236552767e-06 +102128,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,NaturalGas,76896.0,,8488.0,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,215998.51729091106,0.0,0.0,0.012159369862270973,0.0044444886967164735,0.0,0.016603858558987446,0.012785015857411262,0.0012638485852964792,0.002398145866363648,0.0,0.0001567936560246863,0.008497320816719474,0.0012638485852964792,0.002398145866363648,0.0,0.0,0.004287695040691788,0.0,0.0001567936560246863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002969554788630074,0.0,0.0,0.0014490058274891663,0.000782380339780841,0.0017459613063521737,0.0010126073572016435,0.0001506101044628069,0.00028578185998867037,0.0,0.0,0.00028647941774896055,0.0,1.0476061114046889e-05,0.0,0.0,0.0,0.0013443949133170824,0.00013289867046122048,0.000252174509604753,0.0,1.6487472205815343e-05 +102129,50.0,the Greater Atlanta and Macon Area,G1301210002400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6883.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013845164143960064,0.0,0.0,0.0013845164143960061,0.0005818442637560277,0.0004402497535143335,0.0003230538300257348,0.0,3.920315295243172e-05,0.0005818442637560277,0.0004402497535143335,0.0003230538300257348,0.0,3.920315295243172e-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.00016498588658831668,5.671418665221291e-05,0.00016498588658831668,6.933546667555603e-05,5.2462358083011336e-05,3.849670687060722e-05,0.0,4.671643383683519e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.933546667555603e-05,5.246235808301134e-05,3.8496706870607226e-05,0.0,4.67164338368352e-06 +102130,50.0,the Greater Atlanta and Macon Area,G1301170130306,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,9943.0,,842.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.00044465973405350426,0.00014326132027402662,0.0,0.000587921054327531,0.00030824233328761796,0.00014985701472228628,3.1950111278935154e-05,0.0,9.785386467727141e-05,0.00021425368739991807,0.00014985701472228628,3.1950111278935154e-05,0.0,4.8581190290944685e-05,9.39886458876999e-05,0.0,4.927267438632674e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.572110502081056e-06,0.0,0.0,5.2988421841549974e-05,2.2450906339284548e-05,6.256053234363103e-05,2.553180308358746e-05,1.7857894708911053e-05,3.807374144043744e-06,0.0,5.789237044772397e-06,6.279920516278675e-06,0.0,3.292189985802384e-06,0.0,0.0,0.0,3.279998958937318e-05,1.5946247455241996e-05,3.399803350017284e-06,0.0,1.0412605265674464e-05 +102131,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,131532.0,,1799.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.014796783088997713,0.0006685265553397444,0.0,0.015465270895913683,0.008398410865208768,0.0018535695995613524,0.00500486265967353,0.0,0.0002085052683175775,0.008398410865208768,0.0018535695995613524,0.004336336104333785,0.0,0.0002085052683175775,0.0,0.0006685265553397444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4665935041068045e-05,0.0,0.0,0.001763302512384955,0.000540641729618301,0.0018079684474260232,0.001000821522461531,0.00022088611505139655,0.000516752344163429,0.0,2.4847148279362087e-05,0.0,4.4665935041068045e-05,0.0,0.0,0.0,0.0,0.0009818167399078248,0.00021669166829793357,0.0005850937777482648,0.0,2.43753212457392e-05 +102132,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,372411.0,,91232.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.01916992492446973,0.015514775457003003,0.0,0.034684700381472734,0.017566586071615778,0.003908941860833362,0.0031243024465503447,0.0,0.010084870002473253,0.011294718944331978,0.003908941860833362,0.002717904832441314,0.0,0.0012483592868630779,0.006271867127283798,0.00040639761410903025,0.008836510715610176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010366062366708767,0.0,0.0,0.0022844428303678754,0.001545802030081578,0.0033210490670387526,0.0013459697841833426,0.0004658210318240276,0.0003238874556137318,0.0,0.00014876455874677336,0.0004190493505839839,2.7153103344685005e-05,0.0005904037827422079,0.0,0.0,0.0,0.0016819950480344438,0.0003742799441036471,0.00029915096890401174,0.0,0.0009656231059966501 +102133,35.0,Eastern Counties in South Carolina and Georgia,G1300250960200,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,123312.0,,5347.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.03301414536180753,0.004729730677483341,0.0,0.03774378382203809,0.02887783270591956,0.004536166663912449,0.0010378129627093048,0.0006640564372196289,0.002628007269529924,0.02591636785036184,0.004536166663912449,0.0010378129627093048,0.0006640564372196289,0.000859741447604305,0.0029614648555577223,0.0,0.0017682658219256187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031601047574590066,0.0,0.0,0.00393423080405633,0.001138807443317299,0.00425024127980223,0.0030884026107215966,0.0005405660642102626,0.00012367413064895904,7.913430023130923e-05,0.00010245369824420164,0.00019786621728058365,0.0,0.00011814425846531702,0.0,0.0,0.0,0.0032518667767023747,0.0005108073662653355,0.00011686574710205503,7.477787852158327e-05,0.00029593389558506874 +102134,50.0,the Greater Atlanta and Macon Area,G1300670031405,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,30131.0,,2979.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028404458212775837,0.0008768634311379638,0.0,0.0037173092524155475,0.0017351596504658175,0.0007597825831122277,0.0012223363292312042,0.0,0.0,0.0008582962193278538,0.0007597825831122277,0.0012223363292312042,0.0,0.0,0.0008768634311379638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.858685332183853e-05,0.0,0.0,0.00033849168203359427,0.00016249367347629377,0.00039707853535543276,0.00010228187729793992,9.054215454875739e-05,0.00014566399295239563,0.0,0.0,5.858685332183853e-05,0.0,0.0,0.0,0.0,0.0,0.00018534768183924846,8.115906824128963e-05,0.00013056850704779762,0.0,0.0 +102135,85.0,Rural Climate Zone 3A,G1301050000500,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,19770.0,,,10639.0,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0017433231133292038,0.0,0.0010027843854373763,0.00274610749876658,0.0019354665033724217,0.0006212919764992136,0.0001893490188949449,0.0,0.0,0.0009326821179350452,0.0006212919764992136,0.0001893490188949449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010027843854373763,0.0,0.0,0.0,0.0,8.087309648997658e-05,0.00020774762785592983,0.0001279252657682865,0.00028862072434590635,0.00011114548763976646,7.403787246137438e-05,2.256426775478895e-05,0.0,0.0,0.0,0.0,0.0,8.087309648997658e-05,0.0,0.0,0.00020342093104566754,6.529887863750555e-05,1.9900914662733302e-05,0.0,0.0 +102136,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,252011.0,,2766.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,555209.9800789288,0.0,0.005519810641855591,0.07377597499304743,0.001861688031630685,0.0,0.08115747366653371,0.04828173155171343,0.012098691842993345,0.016503791077977614,0.0010343724781328749,0.003238956880719697,0.042761920909857844,0.012098691842993345,0.014642103046346932,0.0010343724781328749,0.003238956880719697,0.0,0.001861688031630685,0.0,0.005519810641855591,0.0,0.0,0.0,0.0,0.0,0.0,0.0001243881657458307,0.0,0.0,0.0087917399950847,0.0028575922881784654,0.00891612816083053,0.0050958552613540545,0.0014417776650769262,0.0017448710501874248,0.00012326416406794588,0.00038598021582583893,0.0,0.0001243881657458307,0.0,0.0,0.0,0.0,0.005304331035619808,0.0013291873462419833,0.001813140672606951,0.00011363830297334205,0.00035583851186103764 +102137,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,98901.0,,5839.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.008811998725078292,0.0017187714007028444,0.0,0.010530770125781139,0.004335397923251281,0.003320124367710678,0.0028752478348191787,0.0,0.0,0.002616626522548437,0.003320124367710678,0.0028752478348191787,0.0,0.0,0.0017187714007028444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011483739241085754,0.0,0.0,0.0010501089024098867,0.0004461121031807471,0.0011649462948207445,0.00031181833898705257,0.0003956528211606162,0.0003426377422622182,0.0,0.0,0.00011483739241085754,0.0,0.0,0.0,0.0,0.0,0.0004795950995930129,0.00036728240520982053,0.00031806879001791086,0.0,0.0 +102138,46.0,the Tallahassee-Valdosta Area,G1301850011401,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,5762.0,,76.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0004093686584050574,2.2495481416216134e-05,0.0,0.0004318641398212735,0.00018665418550262833,0.0001334384081824117,0.00011177154613623354,0.0,0.0,0.0001641587040864122,0.0001334384081824117,0.00011177154613623354,0.0,0.0,2.2495481416216134e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5028289839203257e-06,0.0,0.0,4.878363781910642e-05,1.8908195571348442e-05,5.028646680302675e-05,1.956246185579131e-05,1.5901586118710152e-05,1.3319589844604963e-05,0.0,0.0,1.5028289839203255e-06,0.0,0.0,0.0,0.0,0.0,2.1734102550881804e-05,1.55376320110546e-05,1.3014732241090353e-05,0.0,0.0 +102139,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301610960100,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Electricity,5724.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00047394964562667944,0.0,0.0,0.00047394964562667944,0.00032903720270916544,0.00012158551854932056,2.3326924368193402e-05,0.0,0.0,0.00032903720270916544,0.00012158551854932056,2.3326924368193402e-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,5.6480066628684044e-05,1.944488195653693e-05,5.6480066628684044e-05,3.921100754861152e-05,1.4489214734338775e-05,2.7798443457337447e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.921100754861152e-05,1.4489214734338775e-05,2.7798443457337447e-06,0.0,0.0 +102140,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,143768.0,,2.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.01229284456097004,4.910337007632444e-07,0.0,0.012293335594670805,0.00544946132146419,0.002385012063819674,0.004458831519780642,0.0,0.0,0.005448970287763428,0.002385012063819674,0.004458831519780642,0.0,0.0,4.910337007632444e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328548577005561e-08,0.0,0.0,0.0014649142033522093,0.000494855166886136,0.0014649474888379793,0.000649343114085462,0.00028421721515529394,0.0005313502168911952,0.0,0.0,3.328548577005561e-08,0.0,0.0,0.0,0.0,0.0,0.0006493904454914084,0.00028421232031244155,0.0005313410658768563,0.0,0.0 +102141,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,8052.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017456154983418225,0.0,0.0,0.0017456154983418227,0.0013684712420905807,0.000189399198863014,0.0001482937832145782,0.0,3.936856709991033e-05,0.0013684712420905807,0.000189399198863014,0.0001482937832145782,0.0,3.936856709991033e-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.00020802508151483864,8.350642231251163e-05,0.00020802508151483864,0.0001630807826563309,2.2570711488154104e-05,1.767217716081236e-05,0.0,4.691554003651245e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001630807826563309,2.25707114881541e-05,1.7672177160812356e-05,0.0,4.691554003651245e-06 +102142,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6333.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001200741296547265,0.0,0.0,0.001200741296547265,0.0005538892728321419,0.00022033164444151498,0.0003856630848463905,0.0,4.094000150095717e-05,0.0005538892728321419,0.00022033164444151498,0.0003856630848463905,0.0,4.094000150095717e-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.00014309330066840045,4.6322709626836325e-05,0.00014309330066840045,6.600742764680246e-05,2.6257098290440755e-05,4.5959778276398357e-05,0.0,4.87885272288595e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.600742764680246e-05,2.6257098290440755e-05,4.5959778276398357e-05,0.0,4.87885272288595e-06 +102143,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,FuelOil,67132.0,,3820.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007151537576341085,0.00112446717474783,0.0,0.008276004751088915,0.0021511879534374763,0.0033034292218847277,0.002821418265373008,0.0,0.0,0.0010267207786896465,0.0033034292218847277,0.002821418265373008,0.0,0.0,0.00112446717474783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.51293239748809e-05,0.0,0.0,0.000852236220441973,0.0003241348712932902,0.000927365544416854,0.0001223525188169928,0.00039366388059964457,0.0003362234782520227,0.0,0.0,7.51293239748809e-05,0.0,0.0,0.0,0.0,0.0,0.00024105080260134447,0.000370164896098277,0.00031615328463302674,0.0,0.0 +102144,50.0,the Greater Atlanta and Macon Area,G1301170130104,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,11582.0,,1785.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0009781698215266808,0.0005253753702103739,0.0,0.0015035145021307572,0.000685421667052894,0.00035443426313216947,0.0004636892615519913,0.0,0.0,0.00016004629684252005,0.00035443426313216947,0.0004636892615519913,0.0,0.0,0.0005253753702103739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5101567678996626e-05,0.0,0.0,0.00011656561252787649,7.261718362634186e-05,0.0001516671802068731,1.9072245139549965e-05,4.223688573665629e-05,5.525648165167025e-05,0.0,0.0,3.5101567678996626e-05,0.0,0.0,0.0,0.0,0.0,6.914198123615161e-05,3.575359278661749e-05,4.677470200129912e-05,0.0,0.0 +102145,50.0,the Greater Atlanta and Macon Area,G1301210008602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,18399.0,,3056.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0026547430135701834,0.0008995430501919661,0.0,0.0035542860637621503,0.0014255629021345919,0.0008929447848379601,0.0012358090663958955,0.0,0.0,0.0005260198519426257,0.0008929447848379601,0.0012358090663958955,0.0,0.0,0.0008995430501919661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.010125463851443e-05,0.0,0.0,0.0003163617825292418,0.00014933298578400698,0.00037646303716775624,6.26850045958083e-05,0.00010641090395097072,0.00014726953121727002,0.0,0.0,6.010125463851443e-05,0.0,0.0,0.0,0.0,0.0,0.00015099283799436546,9.457896739110154e-05,0.00013089448236544118,0.0,0.0 +102146,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,17616.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015182148235473565,0.0,0.0,0.0015182148235473565,0.0006432848376061481,0.00039868867541345684,0.0004762413105277518,0.0,0.0,0.0006432848376061481,0.00039868867541345684,0.0004762413105277518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018092108573145247,6.559618584168175e-05,0.00018092108573145247,7.665831570683194e-05,4.751052809252677e-05,5.6752241932093785e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.665831570683194e-05,4.751052809252677e-05,5.6752241932093785e-05,0.0,0.0 +102147,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,15203.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034492985102978165,0.0,0.0,0.0034492985102978157,0.001765961438481692,0.0007024311772679381,0.0008876950224439865,0.0,9.312816503046016e-05,0.001765961438481692,0.0007024311772679381,0.0008876950224439865,0.0,9.312816503046016e-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.00041104751974582103,0.0001252254541456785,0.00041104751974582103,0.00021044686827988897,8.370762702796447e-05,0.00010578523029449458,0.0,1.1097938070586127e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00021044686827988903,8.370762702796449e-05,0.0001057852302944946,0.0,1.109793807058613e-05 +102148,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970600,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,112643.0,,1114.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00516414506720458,0.0001894489117732642,0.0,0.0053535939789778435,0.0026450330470048976,0.001076197477474365,0.0007567850164921137,0.0,0.0008755607076450475,0.0026450330470048976,0.001076197477474365,0.0005673361047188496,0.0,0.0008755607076450475,0.0,0.0001894489117732642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2657298517225912e-05,0.0,0.0,0.0006154017079049013,0.00016982996377195192,0.0006280590064221272,0.00031520374300268174,0.00012824848199688145,6.760840434505606e-05,0.0,0.0001043389656655903,0.0,1.2657298517225913e-05,0.0,0.0,0.0,0.0,0.0003103031036680832,0.00012625453500409107,8.878253513426503e-05,0.0,0.00010271675257128777 +102149,50.0,the Greater Atlanta and Macon Area,G1301510070404,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,18336.0,,1835.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004402828363438292,0.0014553963765905926,0.0,0.005858142032955145,0.0032223502999571565,0.0016347053124574113,0.0007687622504068625,0.0,0.00023232417013371452,0.0019992780935002784,0.0016347053124574113,0.0007687622504068625,0.0,0.0,0.0012230722064568782,0.0,0.00023232417013371452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.724007296150713e-05,0.0,0.0,0.0005246718577274363,0.00023448150631471778,0.0006219119306889434,0.00023824797717333503,0.00019480293173503358,9.161109286502085e-05,0.0,0.0,8.171769045603045e-05,0.0,1.5522382505476703e-05,0.0,0.0,0.0,0.00034209107343741244,0.00017354354525013366,8.161331915507172e-05,0.0,2.466399284632559e-05 +102150,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,7246.0,,90.0,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0017398260031800709,7.14589117107616e-05,0.0,0.0018112849148908328,0.0009191237104649233,0.000489377755315482,0.00033132453739966554,0.0,7.14589117107616e-05,0.0009191237104649233,0.000489377755315482,0.00033132453739966554,0.0,0.0,0.0,0.0,7.14589117107616e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.775036186074457e-06,0.0,0.0,0.0002073323087180863,6.0191786323106176e-05,0.00021210734490416074,0.00010953051658034288,5.8318371871311874e-05,3.9483420266431534e-05,0.0,0.0,0.0,0.0,4.775036186074457e-06,0.0,0.0,0.0,0.0001076323709552483,5.730772419168579e-05,3.879917916374739e-05,0.0,8.368070593479215e-06 +102151,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,87161.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006999353001634405,0.0,0.0,0.006999353001634405,0.005007543471304955,0.0014125849890515238,0.0005792245412779272,0.0,0.0,0.005007543471304955,0.0014125849890515238,0.0005792245412779272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008340989140379697,0.00022134131649483653,0.0008340989140379697,0.0005967389515056712,0.00016833493111135926,6.902503142093925e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005967389515056712,0.00016833493111135926,6.902503142093925e-05,0.0,0.0 +102152,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,87148.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.00708859063678252,0.0,0.0,0.007088590636782521,0.004745935659347599,0.0019174549589058348,0.0004252303921285255,0.0,0.0,0.004745935659347599,0.0019174549589058348,0.0004252303921285255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008447339347473764,0.00025093083352911244,0.0008447339347473764,0.0005655641733316784,0.00022849947967549546,5.0673901304581676e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005655641733316783,0.0002284994796754954,5.067390130458166e-05,0.0,0.0 +102153,50.0,the Greater Atlanta and Macon Area,G1300770170304,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,28969.0,,3136.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001491176586510701,0.000533276080430928,0.0,0.002024452666941629,0.0006394100238913642,0.0004502093371779809,0.000657459531816978,0.0,0.0002773915044167261,0.0005114854662456832,0.0004502093371779809,0.0004704396795582611,0.0,5.9059833890195886e-05,0.00012792455764568095,0.00018701985225871696,0.00021833167052653024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.563066092685935e-05,0.0,0.0,0.00017770099695630452,7.939761121641251e-05,0.0002133316578831639,6.0952859710063523e-05,5.3650686832984384e-05,5.606150258898765e-05,0.0,7.038060721513505e-06,8.547236047055565e-06,1.2495668166921985e-05,1.4587756712881811e-05,0.0,0.0,0.0,6.737939725206288e-05,4.7441911516634255e-05,6.928140835492731e-05,0.0,2.9230809139797678e-05 +102154,50.0,the Greater Atlanta and Macon Area,G1300670031110,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,103313.0,,2573.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005737704528781868,0.0004376207805697433,0.0,0.006175343039713031,0.002685316428151257,0.0017895253781259294,0.0010468537293241778,0.0,0.0006536297737502466,0.002247695647581514,0.0017895253781259294,0.0010468537293241778,0.0,0.0006536297737502466,0.0004376207805697433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.923960170314998e-05,0.0,0.0,0.0006837517138320236,0.00021395096626366478,0.0007129913155351736,0.0002678537633817337,0.00021325445360625365,0.00012475163682031145,0.0,7.789186002372477e-05,2.923960170314998e-05,0.0,0.0,0.0,0.0,0.0,0.000310040637487363,0.0002066146034849065,0.00012086739357534268,0.0,7.546663387963023e-05 +102155,50.0,the Greater Atlanta and Macon Area,G1302970110300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,60323.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01333690496721789,0.0,0.0,0.01333690496721789,0.004761001383387823,0.0033098126599946493,0.0052660909238354155,0.0,0.0,0.004761001383387823,0.0033098126599946493,0.0052660909238354155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015893322099744013,0.0005068798873725601,0.0015893322099744013,0.0005673589838834554,0.00039442373492505124,0.0006275494911658944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005673589838834554,0.00039442373492505124,0.0006275494911658944,0.0,0.0 +102156,50.0,the Greater Atlanta and Macon Area,G1300670030506,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,7240.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017177432144916758,0.0,0.0,0.0017177432144916758,0.0009819810865067972,0.00044231743035781613,0.0002418354836137349,0.0,5.152650693958852e-05,0.0009819810865067972,0.00044231743035781613,0.0002418354836137349,0.0,5.152650693958852e-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.00020469933322608832,6.279477839457435e-05,0.00020469933322608832,0.00011702032757443051,5.270990582565942e-05,2.8818953746115956e-05,0.0,6.14029007654933e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011702032757443051,5.270990582565942e-05,2.8818953746115956e-05,0.0,6.14029007654933e-06 +102157,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,Electricity,247776.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02730168858968048,0.0,0.0,0.027301688589680483,0.005413769309339962,0.011483989297387786,0.010403960672559031,0.0,0.0,0.005413769309339962,0.011483989297387786,0.010403960672559031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032534893458295074,0.0008352266998738991,0.0032534893458295074,0.0006451484021165622,0.001368524760069008,0.0012398198408648743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006451484021165621,0.0013685247600690078,0.0012398198408648741,0.0,0.0 +102158,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,7124.0,,92.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014615994071210407,7.303034611180845e-05,0.0,0.0015347124603065886,0.0009765224196400028,0.0002698731816113601,0.0002595347973939467,0.0,2.8782061661278978e-05,0.0009321914281157341,0.0002698731816113601,0.0002595347973939467,0.0,0.0,4.433099152426878e-05,0.0,2.8782061661278978e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.881389324703384e-06,0.0,0.0,0.00017418090868045127,5.842527411941323e-05,0.00017906229800515464,0.00011109059652203296,3.2161176155744254e-05,3.092913600267406e-05,0.0,0.0,2.9631083556523373e-06,0.0,1.9238091562817412e-06,0.0,0.0,0.0,0.00011393557623123848,3.148740452634293e-05,3.028117542251429e-05,0.0,3.358141825058946e-06 +102159,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,27747.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.00439792010737488,0.0,0.0,0.00439792010737488,0.003240693391930843,0.0003475447124836884,0.0007807472405323953,0.0,2.898935631932745e-05,0.003240693391930843,0.0003475447124836884,0.0007807472405323953,0.0,2.898935631932745e-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.0005240928013531383,0.00019588685697528177,0.0005240928013531383,0.00038618802448356186,4.1416323515201395e-05,9.304034599291473e-05,0.0,3.454613224406525e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00038618802448356186,4.1416323515201395e-05,9.304034599291473e-05,0.0,3.454613224406525e-06 +102160,81.0,the Columbus-Albany Area,G1301450120198,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,Electricity,316215.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02695397535032751,0.0,0.0,0.02695397535032751,0.004615931614418583,0.011301539587947943,0.011036473458354684,0.0,0.0,0.004615931614418583,0.011301539587947943,0.011036473458354684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032120528402449057,0.0008885535923829476,0.0032120528402449057,0.0005500715964811961,0.0013467825009407135,0.0013151950856022778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005500715964811961,0.0013467825009407135,0.0013151950856022778,0.0,0.0 +102161,50.0,the Greater Atlanta and Macon Area,G1301350050728,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,73777.0,,5899.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006573468152117554,0.0017362951658988323,0.0,0.008309763318016387,0.004345126528447652,0.0016006777956692842,0.00236395899389945,0.0,0.0,0.00260883136254882,0.0016006777956692842,0.00236395899389945,0.0,0.0,0.0017362951658988323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011600839066085668,0.0,0.0,0.0007833477898092584,0.000346304345806725,0.0008993561804701151,0.00031088950833044947,0.00019074975103216505,0.00028170853044664395,0.0,0.0,0.00011600839066085668,0.0,0.0,0.0,0.0,0.0,0.0004702680748814493,0.00017323952721436727,0.0002558485783742984,0.0,0.0 +102162,35.0,Eastern Counties in South Carolina and Georgia,G1300730030201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,114390.0,,12910.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005404214160832094,0.0021954442724766176,0.0,0.007599658433308712,0.003229408029048418,0.001671157485285657,0.001398907785680746,0.0,0.001300185133293892,0.0027832944053584694,0.001671157485285657,0.0007496396808398325,0.0,0.00020014031970955608,0.0004461136236899485,0.0006492681048409134,0.0011000448135843359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014668667573644533,0.0,0.0,0.0006440096721575839,0.00029628182836879204,0.0007906963478940293,0.0003316797714095321,0.00019914858149455684,8.93331001929877e-05,0.0,2.3850331953132575e-05,2.980668891494946e-05,4.3380276673285405e-05,7.349852550972572e-05,0.0,0.0,0.0,0.00033599946061214144,0.00017387335654187315,0.00014554749886261855,0.0,0.00013527603187739616 +102163,50.0,the Greater Atlanta and Macon Area,G1300350150300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,289648.0,,14055.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.025807319590226436,0.004137173756174418,0.0,0.029944493346400855,0.00894362644648914,0.00808542229598018,0.012915413914325236,0.0,0.0,0.004806452690314721,0.00808542229598018,0.012915413914325236,0.0,0.0,0.004137173756174418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002764220489769727,0.0,0.0,0.0030754090771329336,0.0011569664600844852,0.0033518311261099064,0.0005727758042025396,0.0009635243611633157,0.0015391052545452016,0.0,0.0,0.0002764220489769727,0.0,0.0,0.0,0.0,0.0,0.0010011031129115815,0.0009050401957349116,0.0014456843822282114,0.0,0.0 +102164,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,94386.0,,4766.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008409719365728006,0.0014027605246553986,0.0,0.009812449200777106,0.002672481606010256,0.0027887952138785496,0.0043511723808883004,0.0,0.0,0.0012697210813548572,0.0027887952138785496,0.0043511723808883004,0.0,0.0,0.0014027605246553986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.372349503981847e-05,0.0,0.0,0.0010021694899940512,0.00039625803412133827,0.0010958929850338696,0.0001513101297674441,0.0003323351654967591,0.0005185205375106525,0.0,0.0,9.372349503981847e-05,0.0,0.0,0.0,0.0,0.0,0.00029847327458538525,0.0003114636365550297,0.0004859560738934546,0.0,0.0 +102165,35.0,Eastern Counties in South Carolina and Georgia,G1302450010510,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,14492.0,,621.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011596640265333646,0.0001810570262484386,0.0,0.001340721052781803,0.000900273487334964,0.0003075934415061127,0.00013285412394072648,0.0,0.0,0.0007192164610865254,0.0003075934415061127,0.00013285412394072648,0.0,0.0,0.0001810570262484386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2097277284171818e-05,0.0,0.0,0.0001381958527482872,4.740142552539371e-05,0.00015029313003245902,8.570821365182537e-05,3.665556314253286e-05,1.5832075953928978e-05,0.0,0.0,1.2097277284171818e-05,0.0,0.0,0.0,0.0,0.0,0.00010091951641698388,3.4480834775802826e-05,1.489277883967232e-05,0.0,0.0 +102166,50.0,the Greater Atlanta and Macon Area,G1301210007500,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,8424.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0025310018705702857,0.0,0.0,0.0025310018705702857,0.0017236154167271666,0.0003420764569857755,0.0003980691459072866,0.0,6.724085095005695e-05,0.0017236154167271666,0.0003420764569857755,0.0003980691459072866,0.0,6.724085095005695e-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.0003016128267053788,7.199928365400454e-05,0.0003016128267053788,0.0002053987095137603,4.076435041021654e-05,4.7436851674171235e-05,0.0,8.012915107230671e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002053987095137603,4.076435041021654e-05,4.7436851674171235e-05,0.0,8.012915107230671e-06 +102167,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,52214.0,,5159.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.004698363896934212,0.0015186444780355241,0.0,0.006217008374969737,0.004275307674120379,0.0008001087257874091,0.0011416226646682457,0.0,0.0,0.002756663196084855,0.0008001087257874091,0.0011416226646682457,0.0,0.0,0.0015186444780355241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010146648828084293,0.0,0.0,0.0005598967556315475,0.000286440175622733,0.0006613632439123904,0.0003285072875823723,9.534771881189912e-05,0.0001360454064701713,0.0,0.0,0.00010146648828084293,0.0,0.0,0.0,0.0,0.0,0.00045480578142112515,8.511529508305447e-05,0.00012144543215812756,0.0,0.0 +102168,50.0,the Greater Atlanta and Macon Area,G1301210008903,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,56762.0,,1389.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004660676965725828,0.0004046674653091674,0.0,0.005065344431034996,0.002565840186103523,0.001797843724319968,0.0007017212678103803,0.0,0.0,0.002161172720794356,0.001797843724319968,0.0007017212678103803,0.0,0.0,0.0004046674653091674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.703657010447881e-05,0.0,0.0,0.0005554056418854845,0.00015536062464661682,0.0005824422119899632,0.00025754359957690304,0.0002142462468561616,8.362303460184657e-05,0.0,0.0,2.703657010447881e-05,0.0,0.0,0.0,0.0,0.0,0.0002950349485516654,0.00020672633220940415,8.068791628852129e-05,0.0,0.0 +102169,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9861.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.000771762788113836,0.0,0.0,0.0007717627881138362,0.0004649286865936672,0.00024107525873743623,6.57588427827327e-05,0.0,0.0,0.0004649286865936672,0.00024107525873743623,6.57588427827327e-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,9.196833700535267e-05,2.6744558190174424e-05,9.196833700535267e-05,5.540396452205651e-05,2.872811566025756e-05,7.836256823038631e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5403964522056494e-05,2.872811566025755e-05,7.836256823038628e-06,0.0,0.0 +102170,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,85380.0,,11146.0,,3.3063363735822096,Lodging,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,123987.61400933286,0.0,0.0,0.007767974929850663,0.0033503479538252202,0.0,0.01111829154565368,0.003872408065720968,0.0008840769443958779,0.004285067142102695,0.0,0.0020767080554119324,0.003872408065720968,0.0008840769443958779,0.003011458581711612,0.0,0.0,0.0,0.001273608560391084,0.0020767080554119324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022384998777041416,0.0,0.0,0.0009256939125629774,0.0005685558701090046,0.0011495439003333917,0.0004614670626217622,0.00010535366721121425,0.00035886944824107067,0.0,0.0,0.0,8.509482137290621e-05,0.0001387530725803929,0.0,0.0,0.0,0.000400376537462856,9.140660277549087e-05,0.0004430422403924814,0.0,0.00021471527959754095 +102171,50.0,the Greater Atlanta and Macon Area,G1300570090502,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,59769.0,,3674.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006264676378434064,0.001070396017785812,0.0,0.007335042022620439,0.00414860845280477,0.0024795184165014323,0.0007069151533142359,0.0,0.0,0.0030782124350189582,0.0024795184165014323,0.0007069151533142359,0.0,0.0,0.001070396017785812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.151744096979249e-05,0.0,0.0,0.0007465476824455257,0.00023351061572152054,0.0008180651234153182,0.0003668237943382519,0.000295478747121307,8.42415214310373e-05,0.0,0.0,7.151744096979249e-05,0.0,0.0,0.0,0.0,0.0,0.0004626874495714371,0.00027653659422133086,7.88410796225501e-05,0.0,0.0 +102172,50.0,the Greater Atlanta and Macon Area,G1301210011900,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,49316.0,,2623.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.00253852676595464,0.0004460958933285284,0.0,0.0029846226592831686,0.0008644437710346744,0.00032240889206224015,0.0015057864043208245,0.0,0.00029196586150400945,0.0006482752046013906,0.00032240889206224015,0.0015057864043208245,0.0,6.205626497018481e-05,0.00021616856643328378,0.0,0.00022990959653382463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9805040733976312e-05,0.0,0.0,0.00030251224241082146,0.0001000292286776664,0.00033231728314479775,7.725393660348153e-05,3.842096062133052e-05,0.0001794421976841035,0.0,7.3951475019058975e-06,1.4442887783332244e-05,0.0,1.5360968330583102e-05,0.0,0.0,0.0,9.624989092948908e-05,3.589802105757008e-05,0.00016765899880973685,0.0,3.250839819374211e-05 +102173,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,100642.0,,3297.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.00551343318717962,0.0005606340281020697,0.0,0.0060740494849202695,0.0034546900012516085,0.0009184504519201553,0.0009820137976110446,0.0,0.000718912964498881,0.0030467498456990334,0.0009184504519201553,0.0008293376554229699,0.0,0.000718912964498881,0.00040794015555257486,0.00015267614218807466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.745799522789446e-05,0.0,0.0,0.0006570245441954174,0.0002532235454821147,0.0006944825394233119,0.0003630749409102525,0.00010944985983363398,9.883047033297096e-05,0.0,8.567138600942755e-05,2.725596313103718e-05,1.0200847467027168e-05,0.0,0.0,0.0,0.0,0.00039499544594524073,0.00010501195351923783,0.00011227953239544616,0.0,8.219763478204159e-05 +102174,50.0,the Greater Atlanta and Macon Area,G1300670031308,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,84598.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.008097024511715317,0.0,0.0,0.008097024511715317,0.005065344431034996,0.0025444571720993456,0.000487222908580977,0.0,0.0,0.005065344431034996,0.0025444571720993456,0.000487222908580977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009649075728288484,0.00030916973710289275,0.0009649075728288484,0.0006036278133307377,0.00030321829834466186,5.806146115344889e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006036278133307377,0.00030321829834466186,5.806146115344889e-05,0.0,0.0 +102175,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,7854.0,,676.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.000622538663748901,0.00019899140723430482,0.0,0.0008215607605895034,0.00037794250155620974,0.00020718553211579148,0.00023640203731120456,0.0,0.0,0.00017895109432190492,0.00020718553211579148,0.00023640203731120456,0.0,0.0,0.00019899140723430482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3295890846022134e-05,0.0,0.0,7.418842762244395e-05,3.815219325761894e-05,8.748431846846608e-05,2.1325744218213985e-05,2.4690464623077106e-05,2.817221878115286e-05,0.0,0.0,1.3295890846022134e-05,0.0,0.0,0.0,0.0,0.0,4.0245400894253265e-05,2.2062257526358406e-05,2.5173392049405843e-05,0.0,0.0 +102176,50.0,the Greater Atlanta and Macon Area,G1301210011427,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,39491.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.009482531418359077,0.0,0.0,0.009482531418359077,0.0054142531681962815,0.0021399628259308402,0.0017676982870302178,0.0,0.00016061713720173502,0.0054142531681962815,0.0021399628259308402,0.0017676982870302178,0.0,0.00016061713720173502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001130011189789,0.00036950943284082385,0.001130011189789,0.0006452039433865722,0.00025501438722918553,0.00021065248891742223,0.0,1.9140370255819676e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0006452039433865722,0.00025501438722918553,0.00021065248891742223,0.0,1.9140370255819676e-05 +102177,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,41362.0,,8025.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0029382754945311506,0.0013647236488628842,0.0,0.0043029991433940346,0.0016193316388548426,0.0007782210234489577,0.0016222926092119914,0.0,0.00028315387187824323,0.0015787823022871818,0.0007782210234489577,0.0002981182969167678,0.0,0.00028315387187824323,4.054933656766075e-05,0.0013241743122952233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.118274379191153e-05,0.0,0.0,0.00035014952890334464,0.00018593199935029289,0.0004413322726952562,0.00018814092838323327,9.273933817659669e-05,3.552627431197705e-05,0.0,3.374298803153761e-05,2.7092662827831475e-06,8.847347750912838e-05,0.0,0.0,0.0,0.0,0.00016608493020973359,7.981736493376428e-05,0.00016638861880774545,0.0,2.9041358744012925e-05 +102178,50.0,the Greater Atlanta and Macon Area,G1301210008201,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,26376.0,,2826.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002305955637996792,0.0008318724683055314,0.0,0.0031378281063023233,0.0011971708520670877,0.0008663368961778518,0.0010743510476636812,0.0,0.0,0.0003652983837615563,0.0008663368961778518,0.0010743510476636812,0.0,0.0,0.0008318724683055314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5581819712240944e-05,0.0,0.0,0.0002747948504819672,0.0001349862577308918,0.0003303766701942082,4.3531676452485505e-05,0.00010323915773983139,0.0001280276734917382,0.0,0.0,5.5581819712240944e-05,0.0,0.0,0.0,0.0,0.0,0.00012604811556282878,9.121516199397815e-05,0.00011311662389468962,0.0,0.0 +102179,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,26078.0,,443.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005773367282372354,0.00035158777046579587,0.0,0.006124955052838151,0.0030339435859790148,0.0012279519238074974,0.0017472696398166088,0.0,0.00011587261030876971,0.002682355815513219,0.0012279519238074974,0.0017472696398166088,0.0,0.00011587261030876971,0.00035158777046579587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3491030767523843e-05,0.0,0.0,0.0006879989322209256,0.00018458346962153935,0.0007114899629884494,0.00031965018794913064,0.00014633221326099967,0.00020821811391876337,0.0,1.3808273104240625e-05,2.3491030767523843e-05,0.0,0.0,0.0,0.0,0.0,0.00035243040823573096,0.00014264193961987563,0.00020296717292446237,0.0,1.3460049667100812e-05 +102180,50.0,the Greater Atlanta and Macon Area,G1300670031101,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,36106.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003390270795642421,0.0,0.0,0.003390270795642421,0.002274132137103355,0.0009324087555401054,0.00018369952939952303,0.0,0.0,0.002274132137103355,0.0009324087555401054,0.00018369952939952303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004040106455729349,9.893818622460841e-05,0.0004040106455729349,0.000271003010735957,0.00011111297178614712,2.189104349998755e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000271003010735957,0.00011111297178614712,2.189104349998755e-05,0.0,0.0 +102181,50.0,the Greater Atlanta and Macon Area,G1300590002100,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,NaturalGas,6369.0,,638.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012539219449616398,0.0005059191700633435,0.0,0.0017598411150249833,0.001137222263915477,0.00020577519946339686,0.0003833472867816899,0.0,3.357907193815881e-05,0.0006647994587165531,0.00020577519946339686,0.0003833472867816899,0.0,0.0,0.00047242280519892393,0.0,3.357907193815881e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.380505238059318e-05,0.0,0.0,0.00014942274376967166,8.301561607048666e-05,0.00018322779615026483,7.92203690007665e-05,2.4521059725542055e-05,4.5681315043363107e-05,0.0,0.0,3.1566856170990396e-05,0.0,2.2437226199968665e-06,0.0,0.0,0.0,0.00011840314865429746,2.1424511552864877e-05,3.991262501910318e-05,0.0,3.4961220620832554e-06 +102182,50.0,the Greater Atlanta and Macon Area,G1301210011900,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4439.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001065928766352194,0.0,0.0,0.001065928766352194,0.0006044232948868586,0.00020569249238965758,0.00020858723997053337,0.0,4.7225739105144535e-05,0.0006044232948868586,0.00020569249238965758,0.00020858723997053337,0.0,4.7225739105144535e-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.00012702422576985224,4.1904674286658305e-05,0.00012702422576985224,7.202770343932962e-05,2.451189086666842e-05,2.4856851132182454e-05,0.0,5.6277803316717594e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.202770343932962e-05,2.451189086666842e-05,2.4856851132182454e-05,0.0,5.6277803316717594e-06 +102183,50.0,the Greater Atlanta and Macon Area,G1301210007802,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,32321.0,,14593.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0028113970282092533,0.00248161230579627,0.0,0.005293009334005524,0.0016445087520713176,0.0005587014187072839,0.0026971780399412727,0.0,0.0003925856625628091,0.001365663358018147,0.0005587014187072839,0.000801465527270647,0.0,8.554899385175477e-05,0.0002788453940531704,0.0018957125126706253,0.00030703666871105436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001658063633590891,0.0,0.0,0.00033502870469471915,0.00025521949281210525,0.0005008350680538082,0.00016274344082140992,6.657935920912246e-05,9.550908490146181e-05,0.0,1.0194706870109353e-05,1.863076702972475e-05,0.00012666007376175623,2.0514337931820656e-05,0.0,0.0,0.0,0.0001556066881400028,5.286543918641986e-05,0.00025521234933567844,0.0,3.714723602760015e-05 +102184,50.0,the Greater Atlanta and Macon Area,G1301390000201,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,20527.0,,1426.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0047156265163203525,0.001131350061679986,0.0,0.005846976578000338,0.00309059793149044,0.001743299700277122,0.0008518001524411271,0.0,0.0001612787937916495,0.0019592478698104536,0.001743299700277122,0.0008518001524411271,0.0,0.0001612787937916495,0.001131350061679986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.559029447316247e-05,0.0,0.0,0.0005619505079378132,0.00022900686912389796,0.0006375408024109757,0.00023347912134381326,0.00020774506816180062,0.00010150709066317414,0.0,1.9219227769025114e-05,7.559029447316247e-05,0.0,0.0,0.0,0.0,0.0,0.0003369916501095317,0.0001900853671860605,9.287831846708591e-05,0.0,1.7585466648297656e-05 +102185,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,24842.0,,3639.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002227850589969138,0.001071282087033911,0.0,0.0032991326770030493,0.001435138059299475,0.0007224026426416258,0.0011416226646682457,0.0,0.0,0.0003638559722655641,0.0007224026426416258,0.0011416226646682457,0.0,0.0,0.001071282087033911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.157581702289371e-05,0.0,0.0,0.0002654897239689146,0.00015533357324024486,0.0003370655409918083,4.3360188549522e-05,8.608767529244253e-05,0.00013604551736282633,0.0,0.0,7.157581702289371e-05,0.0,0.0,0.0,0.0,0.0,0.00014662507807813887,7.380637925029e-05,0.00011663721915678396,0.0,0.0 +102186,50.0,the Greater Atlanta and Macon Area,G1301130140206,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,23522.0,,351.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.002493267327614667,0.00013038844599305856,0.0,0.002623655773607726,0.0013131840816358858,0.00026771285984131997,0.0009764990274802584,0.0,6.625980465026159e-05,0.0013131840816358858,0.00026771285984131997,0.0008461105814871998,0.0,6.625980465026159e-05,0.0,0.00013038844599305856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.712061115237586e-06,0.0,0.0,0.00029711800565638164,8.512544854815409e-05,0.00030583006677161915,0.00015648969168847266,3.1902840952365226e-05,0.00010082941598434608,0.0,7.89605703119765e-06,0.0,8.712061115237586e-06,0.0,0.0,0.0,0.0,0.00015307312011357514,3.12063200609233e-05,0.00011382696075486005,0.0,7.723665842260653e-06 +102187,50.0,the Greater Atlanta and Macon Area,G1301350050219,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5603.0,,358.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010528610487013834,0.0002843469195157389,0.0,0.0013372079682171223,0.0008824017697246708,0.0002601137469101218,0.0001495343893206678,0.0,4.499264811418324e-05,0.000598054850208932,0.0002601137469101218,0.0001495343893206678,0.0,4.499264811418324e-05,0.0002843469195157389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.899642074599669e-05,0.0,0.0,0.00012546655198076732,5.769439059296508e-05,0.00014446297272676398,7.126854967579958e-05,3.099703896147001e-05,1.7819601412508038e-05,0.0,5.361649982524543e-06,1.899642074599669e-05,0.0,0.0,0.0,0.0,0.0,9.53287639795797e-05,2.8100943173285053e-05,1.615469165573907e-05,0.0,4.8607036840276846e-06 +102188,81.0,the Columbus-Albany Area,G1302150000300,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6272.0,,157.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001186184851569147,0.00012422602475643975,0.0,0.0013104108763255869,0.0006928371567141783,0.00023662493796815855,0.00033769298207759216,0.0,4.325579956565778e-05,0.0005686111319577385,0.00023662493796815855,0.00033769298207759216,0.0,4.325579956565778e-05,0.00012422602475643975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.30210567926895e-06,0.0,0.0,0.0001413540493273468,4.572772358646861e-05,0.00014965615500661574,6.775966316591194e-05,2.8197875828025323e-05,4.024184795729722e-05,0.0,5.154662376112283e-06,8.30210567926895e-06,0.0,0.0,0.0,0.0,0.0,7.912582747351805e-05,2.7023873988508436e-05,3.856640247993006e-05,0.0,4.940051064659179e-06 +102189,50.0,the Greater Atlanta and Macon Area,G1301210006700,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,12507.0,,1559.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004862018036838926,0.0012366361665501245,0.0,0.006098571496315311,0.0025986562568890387,0.0016016224829616882,0.0016445474542323888,0.0,0.00025382800930593444,0.0016158480996448488,0.0016016224829616882,0.0016445474542323888,0.0,0.0,0.0009828081572441898,0.0,0.00025382800930593444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.26231403151963e-05,0.0,0.0,0.0005793928719098713,0.0002654227424002004,0.0006620160122250675,0.00019255602589907724,0.00019086079958722586,0.00019597604642356822,0.0,0.0,6.566417712449689e-05,0.0,1.69589631906994e-05,0.0,0.0,0.0,0.00028209098694158453,0.0001738603425246272,0.00017851996130956293,0.0,2.7553699520169415e-05 +102190,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock 90.1-2004,gen4_led,50001_100000,DistrictHeating,80947.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,431997.0345818221,0.0238769659555476,0.0023825866073222007,0.012830001223903023,0.0,0.0,0.03908955378677283,0.027399527608639812,0.0019958980747237145,0.009547980256202442,0.0,0.0001462024410982277,0.0012861774868682398,0.0019958980747237145,0.009547980256202442,0.0,0.0,0.0,0.0,0.0,0.002236384166223973,0.0,0.0001462024410982277,0.0238769659555476,0.0,0.0,0.0,0.0,0.0,0.0,0.0015289237424834176,0.0005481350083941941,0.0015289237424834176,0.00015327101396193674,0.0002378468950054946,0.0011378123393529895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010716875542297621,7.806627751925441e-05,0.0003734535775491649,0.0,5.718468535697455e-06 +102191,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,77691.0,,12596.0,,9.525004485617233,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.03586773318891544,0.010906591002224245,0.0,0.04677432419113968,0.01697988181583606,0.0024971343784115645,0.01715150337958734,0.0006350268697667007,0.00951086802716124,0.015386627025156117,0.0024971343784115645,0.012406586942112467,0.0006350268697667007,0.004942448253091813,0.001593254790679945,0.004744916437474873,0.004568419774069427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007287139415119557,0.0,0.0,0.004274290161509789,0.001928895888866772,0.005003004103021744,0.0018335953422551395,0.00029757879733840955,0.0014784695822644103,7.567495518721519e-05,0.0005889822429171574,0.00010645186732613459,0.00031702726897818353,0.00030523480520763764,0.0,0.0,0.0,0.0018161762860818419,0.0002670946883152671,0.0018345330106836974,6.792277793237847e-05,0.0010172869963602702 +102192,35.0,Eastern Counties in South Carolina and Georgia,G1302450001200,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,2992.0,,182.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.0001457449403077905,5.355336298949135e-05,0.0,0.00019929830329728186,9.664157023146608e-05,7.291850456334181e-05,2.9738228502473994e-05,0.0,0.0,4.3088207241974705e-05,7.291850456334181e-05,2.9738228502473994e-05,0.0,0.0,5.355336298949135e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5787182028234654e-06,0.0,0.0,1.736635312973852e-05,1.005950063356464e-05,2.0945071332561985e-05,5.134209263877213e-06,8.688661831176821e-06,3.543482034684486e-06,0.0,0.0,3.5787182028234654e-06,0.0,0.0,0.0,0.0,0.0,1.0156456671733554e-05,7.663302969844053e-06,3.12531169098438e-06,0.0,0.0 +102193,50.0,the Greater Atlanta and Macon Area,G1301210007200,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,51798.0,,7630.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.007414301985462015,0.002246018836897378,0.0,0.009660320822359394,0.0034972033960484227,0.002188629273120674,0.003974488153190296,0.0,0.0,0.0012511845591510447,0.002188629273120674,0.003974488153190296,0.0,0.0,0.002246018836897378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015006510454683712,0.0,0.0,0.0008835495221352239,0.0004190153697685246,0.001033614626682061,0.00014910149620402726,0.0002608151586202803,0.0004736328673109165,0.0,0.0,0.00015006510454683712,0.0,0.0,0.0,0.0,0.0,0.00037418639081543187,0.00023417433754850664,0.0004252538983181224,0.0,0.0 +102194,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,28672.0,,1147.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007705900767365013,0.0009095296899111637,0.0,0.008615430457276177,0.00453193410554535,0.0016943371126234522,0.002206790141512201,0.0,0.00018245180466891213,0.0038048562203030984,0.0016943371126234522,0.002206790141512201,0.0,0.0,0.0007270778852422515,0.0,0.00018245180466891213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.076673455546197e-05,0.0,0.0,0.0009182979960338442,0.00037878282133823953,0.0009790647305893063,0.00045341770518230953,0.00020191103183124935,0.00026297911506987186,0.0,0.0,4.857691765727617e-05,0.0,1.2189816898185784e-05,0.0,0.0,0.0,0.0005150127861976905,0.00019254588809281667,0.0002507814793562694,0.0,2.0733975843637284e-05 +102195,46.0,the Tallahassee-Valdosta Area,G1301850010202,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,80177.0,,6987.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004292024049675023,0.0011882356312876788,0.0,0.005480259680962701,0.003008469995393139,0.000974442933284682,0.0008336638636094627,0.0,0.0006637006190368367,0.0027209899153284034,0.000974442933284682,0.000477141756175041,0.0,0.00011946717524831576,0.00028748008006473615,0.0003565221074344217,0.0005442334437885209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.93907605907373e-05,0.0,0.0,0.0005114730769578411,0.00023171078307160082,0.0005908638375485784,0.00032425565846250313,0.00011612267770136978,5.686015720121476e-05,0.0,1.4236696489234327e-05,1.9207690469854134e-05,2.3820663622044336e-05,3.636240649883882e-05,0.0,0.0,0.0,0.0003243634845995983,0.00010506127894500394,8.988293591068142e-05,0.0,7.155804972339986e-05 +102196,50.0,the Greater Atlanta and Macon Area,G1300570091006,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,95085.0,,6750.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005933961899340433,0.0011478281376113783,0.0,0.0070817900369518115,0.0027746065282626426,0.0010832541613195461,0.00247487476845665,0.0,0.0007490723092743909,0.0023416665631077935,0.0010832541613195461,0.0023649287972909027,0.0,0.0001441123776221892,0.0004329399651548493,0.00010994597116574744,0.0006049599316522015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.669157073791095e-05,0.0,0.0,0.0007071381091599943,0.00024214522668948747,0.0007838296798979051,0.00027905161741993673,0.00012908918398352748,0.0002818237303141751,0.0,1.717357744235484e-05,2.8926670182555986e-05,7.3459858220177615e-06,4.042009937868827e-05,0.0,0.0,0.0,0.00030710017319672534,0.00011989719521261644,0.00027392513579543425,0.0,8.290913813249016e-05 +102197,35.0,Eastern Counties in South Carolina and Georgia,G1302450000700,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,17227.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003949097356904451,0.0,0.0,0.003949097356904451,0.002350948571039814,0.0010466580181709352,0.0004704378354291806,0.0,8.088751811704266e-05,0.002350948571039814,0.0010466580181709352,0.0004704378354291806,0.0,8.088751811704266e-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.0004706028592703456,0.0001395445547504185,0.0004706028592703456,0.0002801559494588166,0.00012472730133337987,5.6060757801996435e-05,0.0,9.639138735997276e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002801559494588166,0.00012472730133337987,5.6060757801996435e-05,0.0,9.639138735997276e-06 +102198,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,82536.0,,7854.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.00410301839693726,0.0013356281257725774,0.0,0.0054386465227098365,0.002608437581033908,0.0007307391155660562,0.0013016922140145963,0.0,0.000797795342456696,0.002262535960090098,0.0007307391155660562,0.0003119479788244091,0.0,0.000797795342456696,0.0003459016209438101,0.0009897442351901875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.923910004261417e-05,0.0,0.0,0.0004889478260032687,0.00023047026299116797,0.000578186926045883,0.0002696215156544393,8.708059954064056e-05,3.717416577663004e-05,0.0,9.507154503155877e-05,2.3111185486942256e-05,6.61290991979133e-05,0.0,0.0,0.0,0.0,0.00027730511634889313,7.768546847205477e-05,0.00013838395577581337,0.0,8.4814270378235e-05 +102199,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,183488.0,,7018.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,306613.1346040191,0.0,0.0,0.02064159533077868,0.002608311397793981,0.0,0.02324990672857266,0.010349626492675769,0.004509851545985172,0.007890302784285446,0.0,0.0005001259056262726,0.009381497124730282,0.004509851545985172,0.006750207911639455,0.0,0.0,0.0009681293679454884,0.0011400948726459916,0.0005001259056262726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017427294021863524,0.0,0.0,0.002459817865579625,0.0007087646476538047,0.00263409080579826,0.001117974355348671,0.0005374300399826571,0.0008044088526756951,0.0,0.0,6.468504934133466e-05,7.617483317070599e-05,3.341564666194143e-05,0.0,0.0,0.0,0.001172557649631353,0.0005109421999614145,0.0008939293504136412,0.0,5.6661605791851204e-05 +102200,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,67078.0,,47.0,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,349688.3371303919,0.0,0.0,0.01721228447625412,3.994963944083957e-05,0.0,0.017252145731536907,0.011349498119994804,0.002707471913697431,0.0028540128477525456,0.0,0.00034125123425018055,0.011309548480553964,0.002707471913697431,0.0028540128477525456,0.0,0.00034125123425018055,3.994963944083957e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.666768538302961e-06,0.0,0.0,0.0020511528549833546,0.0006667717821957874,0.0020538196235216576,0.0013477358386949794,0.00032264390896102115,0.0003401068933588069,0.0,4.0666213968547084e-05,2.666768538302961e-06,0.0,0.0,0.0,0.0,0.0,0.001351125959558593,0.00032231694729546826,0.00033976223501184887,0.0,4.062500354218663e-05 +102201,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,57669.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.004662620876089844,0.0,0.0,0.004662620876089845,0.003477200037233266,0.0009411259785787402,0.00024429486027783794,0.0,0.0,0.003477200037233266,0.0009411259785787402,0.00024429486027783794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005556360711125929,0.00018786787698528692,0.0005556360711125929,0.000414371620276601,0.00011215227552406498,2.9112175311926897e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041437162027660094,0.00011215227552406497,2.911217531192689e-05,0.0,0.0 +102202,50.0,the Greater Atlanta and Macon Area,G1301530021105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,19611.0,,2788.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004603808684006627,0.0021621364784693634,0.0,0.006765945162475991,0.002662907308012756,0.0006590153820085012,0.0023509464069343755,0.00042718751695103204,0.0006658885485693258,0.002662907308012756,0.0006590153820085012,0.0008546984770343383,0.00042718751695103204,0.0,0.0,0.0014962479299000374,0.0006658885485693258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014446216701766845,0.0,0.0,0.0005486236471494507,0.00029769097730420315,0.0006930858141671192,0.0003173315877391009,7.853311186911432e-05,0.00010185214631368568,5.09068012275498e-05,0.0,0.0,9.997112601424649e-05,4.449104100342195e-05,0.0,0.0,0.0,0.00027278129445409055,6.750782065470782e-05,0.0002408248316214693,4.3759977486971945e-05,6.821188994987959e-05 +102203,50.0,the Greater Atlanta and Macon Area,G1300670030312,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,19862.0,,3048.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004850757515497911,0.0023638841322253397,0.0,0.00721472250850632,0.0034685232897244977,0.000731304922071765,0.001877587382851214,0.0004176459445489458,0.0007196609693098969,0.0018243001268090542,0.000731304922071765,0.001877587382851214,0.0004176459445489458,0.0,0.001644223162915443,0.0,0.0007196609693098969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015794255086550921,0.0,0.0,0.0005780595361285062,0.0003185810254801136,0.0007360020869940154,0.00021739987655395533,8.714881802907551e-05,0.00022375006132630836,4.977041631138599e-05,0.0,0.00010985851506120493,0.0,4.808403580430431e-05,0.0,0.0,0.0,0.0003538376392182405,7.46032779832094e-05,0.00019154003922712537,4.260569778673999e-05,7.341543277870008e-05 +102204,81.0,the Columbus-Albany Area,G1302150001000,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,78873.0,,8533.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004060022270493631,0.0014510350482557013,0.0,0.005511057318749332,0.002574306635300307,0.00108449528661895,0.0010958249875663633,0.0,0.0007564126789022925,0.0021149661619909985,0.00108449528661895,0.0006951897409188504,0.0,0.00016535335060341243,0.00045934047330930785,0.00040063524664751306,0.0005910593282988802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.694979681066717e-05,0.0,0.0,0.0004838245425287947,0.0002163970564510447,0.000580774339339462,0.00025203618788641836,0.00012923708318950973,8.284433827252864e-05,0.0,1.9704820289464202e-05,3.0690482361391924e-05,2.676813754730428e-05,3.949117690197095e-05,0.0,0.0,0.0,0.00027128936407306713,0.00011428787566045807,0.00011548183885156146,0.0,7.971339226737829e-05 +102205,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,141322.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012461984113315196,0.0,0.0,0.012461984113315193,0.006348720128078325,0.005336489553215806,0.0007767744320210651,0.0,0.0,0.006348720128078325,0.005336489553215806,0.0007767744320210651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014850705790400655,0.00034179963154064183,0.0014850705790400655,0.0007565647164238309,0.0006359391537313712,9.256670888486346e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007565647164238311,0.0006359391537313714,9.256670888486348e-05,0.0,0.0 +102206,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,36276.0,,6676.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,166687.57849830156,0.0,0.0,0.009507979079218033,0.005780784834361868,0.0,0.015288763913579901,0.00360432367764654,0.0014966555938288836,0.0071818343071951675,0.0006275336610390015,0.0023783263942470808,0.00360432367764654,0.0014966555938288836,0.002478175657534253,0.0006275336610390015,0.0013012904891693525,0.0,0.004703658649660914,0.0010770359050777283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038623661925379004,0.0,0.0,0.0011330459523228172,0.00074293592618674,0.0015192825715766073,0.0004295197033768161,0.00017835331235800165,0.00029531900254717975,7.478187201112736e-05,0.00015507206202969211,0.0,0.00031426964798447196,7.196093933810775e-05,0.0,0.0,0.0,0.0003581706262666119,0.00014872639620899442,0.0007136767731223135,6.235958378867897e-05,0.00023634022087886043 +102207,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970302,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,64137.0,,4470.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0030253492994650297,0.0007601892458847638,0.0,0.0037855208149883738,0.0013655037847653667,0.0008372276662548932,0.0010967824270830462,0.0,0.00048600693688506745,0.0013655037847653667,0.0008372276662548932,0.0003365931811982824,0.0,0.00048600693688506745,0.0,0.0007601892458847638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0791251727465155e-05,0.0,0.0,0.0003605239979650093,0.00013289933587532803,0.00041131524969247453,0.0001627239815934689,9.97705175724677e-05,4.0111044167635054e-05,0.0,5.7916341744576735e-05,0.0,5.0791251727465155e-05,0.0,0.0,0.0,0.0,0.00014836862815889994,9.096885829595861e-05,0.00011917074555971418,0.0,5.280701767790178e-05 +102208,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,63428.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005340482529501048,0.0,0.0,0.005340482529501048,0.0016271322362979039,0.001510849318035908,0.0022025009751672356,0.0,0.0,0.0016271322362979039,0.001510849318035908,0.0022025009751672356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006364167285355985,0.00019157592444393938,0.0006364167285355985,0.00019390273612902777,0.00018004548745981697,0.0002624685049467537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019390273612902777,0.00018004548745981697,0.0002624685049467537,0.0,0.0 +102209,50.0,the Greater Atlanta and Macon Area,G1301210011412,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,53120.0,,4986.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004582664081191873,0.001467546283549849,0.0,0.006050210364741723,0.002485489834838353,0.0014429332192990919,0.0021217873106042775,0.0,0.0,0.0010179435512885034,0.0014429332192990919,0.0021217873106042775,0.0,0.0,0.001467546283549849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.805317321928182e-05,0.0,0.0,0.000546106397186825,0.00025757511257475373,0.0006441595704061068,0.00012130618249224696,0.00017195130339286614,0.00025284891130171184,0.0,0.0,9.805317321928182e-05,0.0,0.0,0.0,0.0,0.0,0.00026462750346476025,0.00015362759088263244,0.00022590447605871407,0.0,0.0 +102210,85.0,Rural Climate Zone 3A,G1302610950300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,195398.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,431997.0345818221,0.0,0.0,0.03206621344324643,0.0,0.0,0.03206621344324643,0.01805862198241705,0.006400314855172041,0.007483348472239494,0.0,0.00012398272730921401,0.01805862198241705,0.006400314855172041,0.007483348472239494,0.0,0.00012398272730921401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038212711156693025,0.0012884436819034,0.0038212711156693025,0.00215201245049826,0.0007627136372227047,0.0008917767423979851,0.0,1.477479140301755e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00215201245049826,0.0007627136372227047,0.0008917767423979851,0.0,1.477479140301755e-05 +102211,35.0,Eastern Counties in South Carolina and Georgia,G1301270000401,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,15032.0,,371.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001261719320644211,0.00010809964039895874,0.0,0.0013698189610431694,0.0007860080062501416,0.0004108333059950312,0.0001730080223974344,0.0,0.0,0.000677908365851183,0.0004108333059950312,0.0001730080223974344,0.0,0.0,0.00010809964039895874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.221772070890811e-06,0.0,0.0,0.0001503581147113874,4.2606741993174454e-05,0.00015757988678227823,8.078581517196569e-05,4.895868703866697e-05,2.0617232099086728e-05,0.0,0.0,7.221772070890811e-06,0.0,0.0,0.0,0.0,0.0,9.04200161899775e-05,4.726103790809321e-05,1.990232677247515e-05,0.0,0.0 +102212,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,146984.0,,2430.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,140298.9118897092,0.0,0.0,0.013386334220332767,0.0004132238032557506,0.0,0.01379955802358852,0.0072918948197794355,0.002322269547714256,0.0016184805815066799,0.0,0.0025669130745881448,0.0072918948197794355,0.002322269547714256,0.0012052567782509294,0.0,0.0025669130745881448,0.0,0.0004132238032557506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.760978103286782e-05,0.0,0.0,0.0015952235038559845,0.0004956190208427748,0.0016228332848888525,0.000868960972638011,0.00027674036101503355,0.00014362811425455566,0.0,0.0003058940559483839,0.0,2.760978103286782e-05,0.0,0.0,0.0,0.0,0.0008575296109642652,0.0002730997842157304,0.00019033393345827524,0.0,0.0003018699562505812 +102213,50.0,the Greater Atlanta and Macon Area,G1300890020900,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,29532.0,,5014.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.006849636072951917,0.00388908022246391,0.0,0.01073871629541583,0.0016599101548307375,0.00017376982281426615,0.008250872582746434,0.0004215272621362352,0.00023271733367122283,0.001441343458196507,0.00017376982281426615,0.004813076390587976,0.0004215272621362352,0.0,0.00021856669663423045,0.0034377961921584566,0.00023271733367122283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000259845178296002,0.0,0.0,0.0008162591535851373,0.00046926394623686684,0.0010761043318811394,0.0001717623795895958,2.0707845932007938e-05,0.0005735658973526794,5.023266674897969e-05,0.0,1.4603324952887836e-05,0.00022969306710026873,1.554878624284543e-05,0.0,0.0,0.0,0.0001663361298509546,1.7413111021517023e-05,0.0008268027093594945,4.224036656824953e-05,2.3320117971114926e-05 +102214,50.0,the Greater Atlanta and Macon Area,G1300590150700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,10144.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00222118117234284,0.0,0.0,0.00222118117234284,0.0014478700328803158,0.00034191104283829696,0.00038872324657474494,0.0,4.275955712322194e-05,0.0014478700328803158,0.00034191104283829696,0.00038872324657474494,0.0,4.275955712322194e-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.0002646974375191754,8.347572049562317e-05,0.0002646974375191754,0.00017254220067063915,4.074542771463626e-05,4.63240228008685e-05,0.0,5.095642508095535e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017254220067063915,4.074542771463626e-05,4.63240228008685e-05,0.0,5.095642508095535e-06 +102215,50.0,the Greater Atlanta and Macon Area,G1300130180103,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,6407.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0015032837722856519,0.0,0.0,0.001503283772285652,0.0006665363072650785,0.00022397075568604454,0.000570347980506264,0.0,4.226331468078609e-05,0.0006665363072650785,0.00022397075568604454,0.000570347980506264,0.0,4.226331468078609e-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.0001791450213668017,5.402474805930366e-05,0.0001791450213668017,7.943055277261526e-05,2.6690400410502813e-05,6.796787342349607e-05,0.0,5.036482499913934e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.943055277261526e-05,2.6690400410502806e-05,6.796787342349605e-05,0.0,5.0364824999139334e-06 +102216,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,251552.0,,40847.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.0,0.06593220191728591,0.035370021626074395,0.0,0.10130231382298353,0.028149096242022685,0.00516164717828282,0.04855247165018503,0.0006661733397794263,0.018772925412713574,0.024880071085034875,0.00516164717828282,0.025802457995527682,0.0006661733397794263,0.009421852318661104,0.003269025156987807,0.02275001365465735,0.009351073094052472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023632206487838366,0.0,0.0,0.007857016200171549,0.004535990377742608,0.010220236848955386,0.0029649111646806317,0.0006151037629566145,0.0030748302738233847,7.938662096157096e-05,0.001122784377749347,0.0002184173884330426,0.001520024573272151,0.0006247847190418702,0.0,0.0,0.0,0.0028399196407322383,0.000520750757825474,0.004898385250451214,6.720921821097303e-05,0.0018939719817354862 +102217,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,89174.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007863481905638445,0.0,0.0,0.007863481905638446,0.006166691146647876,0.0012787589099287893,0.00041806222266121615,0.0,0.0,0.006166691146647876,0.0012787589099287893,0.00041806222266121615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009370750565528453,0.00030618687591340047,0.0009370750565528453,0.0007348719720262157,0.00015238708401932598,4.981962006702936e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007348719720262156,0.00015238708401932592,4.981962006702935e-05,0.0,0.0 +102218,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010601,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,11091.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00266308506733196,0.0,0.0,0.00266308506733196,0.001702194284628686,0.00041452785358140877,0.00047548296692727837,0.0,7.087996219458645e-05,0.001702194284628686,0.00041452785358140877,0.00047548296692727837,0.0,7.087996219458645e-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.00031735407916287693,9.749392840641262e-05,0.00031735407916287693,0.00020284680590239353,4.9398386433253795e-05,5.666227526033043e-05,0.0,8.446611566899143e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00020284680590239353,4.9398386433253795e-05,5.666227526033043e-05,0.0,8.446611566899143e-06 +102219,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,7838.0,,970.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006817961865792152,0.0002825959691688429,0.0,0.0009643617821486202,0.0006930040447717455,0.0002176268399714918,5.3761271004820726e-05,0.0,0.0,0.0004104080756029026,0.0002176268399714918,5.3761271004820726e-05,0.0,0.0,0.0002825959691688429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8880883204668362e-05,0.0,0.0,8.124669054237e-05,4.135076312562099e-05,0.00010012757374703836,4.8906547984519234e-05,2.5933645375153967e-05,6.406497182696793e-06,0.0,0.0,1.8880883204668362e-05,0.0,0.0,0.0,0.0,0.0,7.195309362558827e-05,2.2595718610945824e-05,5.581915134874266e-06,0.0,0.0 +102220,50.0,the Greater Atlanta and Macon Area,G1300770170501,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,46500.0,,,12918.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004041177031593443,0.0,0.0012175864806611575,0.0052587635122545995,0.0032224262851494037,0.0012883265937516813,0.0007480106333535141,0.0,0.0,0.002004839804488247,0.0012883265937516813,0.0007480106333535141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012175864806611575,0.0,0.0,0.0,0.0,9.819638155034603e-05,0.00048157874982447283,0.00022710135407765305,0.0005797751313748189,0.00023891263339757642,0.00015352722870938401,8.913888771751225e-05,0.0,0.0,0.0,0.0,0.0,9.819638155034603e-05,0.0,0.0,0.00035527032513716766,0.0001420371382750804,8.246766796257084e-05,0.0,0.0 +102221,50.0,the Greater Atlanta and Macon Area,G1301350050430,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,34643.0,,5506.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0029609332156023647,0.0016206874189753863,0.0,0.00458162063457775,0.002525140806174985,0.0009013844265698285,0.0011550647122266396,0.0,0.0,0.0009044533871995987,0.0009013844265698285,0.0011550647122266396,0.0,0.0,0.0016206874189753863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001082846795619382,0.0,0.0,0.00035284756582586396,0.0002068862416490568,0.0004611322453878021,0.0001077816191174755,0.00010741589817445534,0.0001376463913245029,0.0,0.0,0.0001082846795619382,0.0,0.0,0.0,0.0,0.0,0.00025415108380730234,9.072279390501066e-05,0.00011625527881934174,0.0,0.0 +102222,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,78750.0,,,,9.325022323477118,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.028084331374436056,0.0,0.0,0.028084331374436056,0.011020267131240095,0.004190646470017627,0.012433706586854932,0.0,0.00043971118632340014,0.011020267131240095,0.004190646470017627,0.012433706586854932,0.0,0.00043971118632340014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033467559040357285,0.0010829073673468122,0.0033467559040357285,0.001313264097115051,0.0004993913021559199,0.0014817009660583478,0.0,5.239953870640953e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.001313264097115051,0.0004993913021559199,0.0014817009660583478,0.0,5.239953870640953e-05 +102223,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,12740.0,,1544.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0011675860715961023,0.0004543903108437874,0.0,0.0016219763824398897,0.0006602561898887777,0.00044150067619875226,0.0005201888267460621,0.0,0.0,0.0002058658790449903,0.00044150067619875226,0.0005201888267460621,0.0,0.0,0.0004543903108437874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0359987724577213e-05,0.0,0.0,0.00013913849781494234,7.266527121492908e-05,0.00016949848553951956,2.4532554694247164e-05,5.2612601644519934e-05,6.19896842676639e-05,0.0,0.0,3.0359987724577213e-05,0.0,0.0,0.0,0.0,0.0,6.899756708287873e-05,4.613735242420254e-05,5.4360358931616364e-05,0.0,0.0 +102224,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,66941.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003282209045357335,0.0,0.0,0.003282209045357335,0.0019386022569457333,0.0005759885210918353,0.0004891274804949967,0.0,0.00027850851718618945,0.0019386022569457333,0.0005759885210918353,0.0004891274804949967,0.0,0.00027850851718618945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000391135205242024,0.00012097883722423054,0.000391135205242024,0.00023101989580025936,6.863956113123732e-05,5.828848035853734e-05,0.0,3.318938084865714e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00023101989580025936,6.863956113123732e-05,5.828848035853734e-05,0.0,3.318938084865714e-05 +102225,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8325.0,,709.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021131657340393043,0.0005623253943535511,0.0,0.002675573835466595,0.001594344260472629,0.0005370997368630625,0.0004734152900837957,0.0,7.063184097336853e-05,0.001032018866119078,0.0005370997368630625,0.0004734152900837957,0.0,7.063184097336853e-05,0.0005623253943535511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.757282708529655e-05,0.0,0.0,0.0002518256824217664,9.180993765939905e-05,0.00028939850950706296,0.00012298555245631316,6.400610495682785e-05,5.641683781534995e-05,0.0,8.41718719327548e-06,3.757282708529655e-05,0.0,0.0,0.0,0.0,0.0,0.00017244930657705262,5.809440249579189e-05,5.1206091759456835e-05,0.0,7.639762816662497e-06 +102226,35.0,Eastern Counties in South Carolina and Georgia,G1301890950300,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,Electricity,25678.0,,1011.0,,8.53126424238864,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005994775874351441,0.0007837835702832394,0.0,0.006778559444634681,0.003385883569428463,0.00047901927889795835,0.001989983871316468,0.0004237913640621539,0.0004998813609296385,0.003385883569428463,0.00047901927889795835,0.0012062003010332282,0.0004237913640621539,0.0004998813609296385,0.0,0.0007837835702832394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.236641566525948e-05,0.0,0.0,0.0007143854394813308,0.00025025562447931516,0.0007667518551465902,0.00040348896647290515,5.7083768475759795e-05,0.0001437404750764532,5.050236843036075e-05,5.956986102585196e-05,0.0,5.236641566525948e-05,0.0,0.0,0.0,0.0,0.00038299177419245115,5.418391971714661e-05,0.00022509558815647846,4.793685402389693e-05,5.654371905661721e-05 +102227,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,6634.0,,183.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015930209472928,0.0001453163285599631,0.0,0.0017383372758527633,0.0006509046703283494,0.0006438745690605083,0.0003961668832112826,0.0,4.7308446178883846e-05,0.0005055883417683862,0.0006438745690605083,0.0003961668832112826,0.0,4.7308446178883846e-05,0.0001453163285599631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.710900248701178e-06,0.0,0.0,0.00018983639125810009,7.073674869673896e-05,0.00019954729150680126,6.0249720147487974e-05,7.672894999970454e-05,4.721023384696016e-05,0.0,5.637631265231986e-06,9.710900248701178e-06,0.0,0.0,0.0,0.0,0.0,7.471867847361908e-05,7.391167876964735e-05,4.547680684734885e-05,0.0,5.430633302021616e-06 +102228,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,22968.0,,797.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005494139006643619,0.0002961542028900287,0.0,0.005790293209533648,0.002786980379807055,0.0008585875739418104,0.0020135230928925102,0.0,0.00013120216289227234,0.002786980379807055,0.0008585875739418104,0.0017173688900024816,0.0,0.00013120216289227234,0.0,0.0002961542028900287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9786595235205018e-05,0.0,0.0,0.000654726059060259,0.0002152982966952249,0.000674512654295464,0.0003321191325051776,0.0001023162424476847,0.00020465557277388915,0.0,1.563511133350756e-05,0.0,1.9786595235205018e-05,0.0,0.0,0.0,0.0,0.0003246560174807522,0.00010001707383160939,0.0002345557913433411,0.0,1.528377163976124e-05 +102229,46.0,the Tallahassee-Valdosta Area,G1301850011301,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,31516.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.002574466288343845,0.0,0.0,0.0025744662883438445,0.0015321051028390777,0.0006659715412721465,0.00037642001783205834,0.0,0.0,0.0015321051028390777,0.0006659715412721465,0.00037642001783205834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000306795385623413,8.18474725213733e-05,0.000306795385623413,0.00018257872630505188,7.936285541740151e-05,4.485742347842091e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001825787263050519,7.936285541740152e-05,4.485742347842092e-05,0.0,0.0 +102230,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970500,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,146304.0,,596.0,,7.614023970037612,Education,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,285525.89887641044,0.0,0.0,0.02918585950061209,0.0004127232030087471,0.0,0.02959858270362083,0.02534015102620518,0.0016267890264422414,0.0014209686776083638,0.0007647539398992296,0.0004459200334658242,0.02534015102620518,0.0016267890264422414,0.0010082454745996166,0.0007647539398992296,0.0004459200334658242,0.0,0.0004127232030087471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7575005568515043e-05,0.0,0.0,0.00347802493028084,0.0011076623817780648,0.003505599935849355,0.0030197389596963854,0.00019386144136528688,0.0001201507495925128,9.113431346588347e-05,5.313946616077134e-05,0.0,2.7575005568515043e-05,0.0,0.0,0.0,0.0,0.0030012393735667237,0.00019267380346690442,0.0001682968321472517,9.057600458427761e-05,5.281392208419849e-05 +102231,50.0,the Greater Atlanta and Macon Area,G1301390001403,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,22607.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0053071357751366816,0.0014962479299000374,0.0,0.006803464565819788,0.002675925894086789,0.000959008887192739,0.0022242375598659925,0.00040802351136379097,0.0005361878525274075,0.002675925894086789,0.000959008887192739,0.0007279896299659553,0.00040802351136379097,0.0005361878525274075,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99716943603331e-05,0.0,0.0,0.00063244475688154,0.0002734958810668463,0.000732416451241873,0.00031888675421633635,0.00011428389402610066,8.675361702504083e-05,4.8623653394241475e-05,6.38968382198207e-05,0.0,9.99716943603331e-05,0.0,0.0,0.0,0.0,0.0002880726618287492,0.0001032406179339729,0.00023944685307839738,4.392513980563468e-05,5.772247365262854e-05 +102232,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,118062.0,,8560.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,149297.12424180118,0.0,0.0,0.028737194555507144,0.006639074593841471,0.0,0.03537626914934861,0.021381531702112377,0.0025259291414946694,0.007998586939572627,0.00042047607195634423,0.0030497452942125926,0.01474245710827091,0.0025259291414946694,0.007998586939572627,0.00042047607195634423,0.0030497452942125926,0.006639074593841471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044358387082632283,0.0,0.0,0.003424553508586541,0.0014370689327026925,0.003868137379412864,0.0017568288761729744,0.0003010098806700968,0.0009531754714170122,5.0107285341075075e-05,0.0003634319949853822,0.00044358387082632283,0.0,0.0,0.0,0.0,0.0,0.0023379147658809845,0.0002761919548020989,0.00087458722661867,4.597599606155689e-05,0.00033346743604955383 +102233,50.0,the Greater Atlanta and Macon Area,G1301210010604,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,32608.0,,17821.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.010432458703901798,0.012259166365669412,0.0,0.022691553349600196,0.006006619292528442,0.0015074103508061132,0.0111298637020576,0.00037201148965797454,0.0036756485145500663,0.004405184059720863,0.0015074103508061132,0.0037461492460584126,0.00037201148965797454,0.00040163183768742193,0.001601435232807579,0.007383714455999187,0.0032740166768626443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000819083503081742,0.0,0.0,0.0012432119891720892,0.0011414027346772924,0.0020622954922538315,0.000524955601837799,0.00017963460713468885,0.00044641994644905334,4.4331749319993864e-05,4.7861537727388795e-05,0.00010699823636620753,0.0004933352335695192,0.0002187500331460152,0.0,0.0,0.0,0.0005459046236199849,0.00013699924035826252,0.0010115247461698052,3.380983251205193e-05,0.00033405704959372693 +102234,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,5853.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0014052758899045724,0.0,0.0,0.0014052758899045724,0.0008206195856414082,0.0002641663935233479,0.0002801288587550342,0.0,4.044375905852133e-05,0.0008206195856414082,0.0002641663935233479,0.0002801288587550342,0.0,4.044375905852133e-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.0001674651766599761,5.084721849587692e-05,0.0001674651766599761,9.77923302230759e-05,3.148041752998432e-05,3.338264689231587e-05,0.0,4.8196381252856395e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.77923302230759e-05,3.148041752998432e-05,3.338264689231587e-05,0.0,4.8196381252856395e-06 +102235,50.0,the Greater Atlanta and Macon Area,G1301350050308,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,35699.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007776946143707078,0.0,0.0,0.0077769461437070765,0.004415482545720405,0.001075853615200911,0.0021572486043423557,0.0,0.00012836137844340513,0.004415482545720405,0.001075853615200911,0.0021572486043423557,0.0,0.00012836137844340513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009267593881202264,0.00029437717437522576,0.0009267593881202264,0.000526182106280703,0.00012820680762169414,0.00025707396703541276,0.0,1.5296507182416156e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005261821062807032,0.0001282068076216942,0.0002570739670354128,0.0,1.529650718241616e-05 +102236,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970400,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,92288.0,,40028.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010174851586680021,0.006807129008193772,0.0,0.016981962864512378,0.007552672975545574,0.0025606187962840254,0.002601664582971448,0.0,0.004267006509711327,0.0060802728417787095,0.0025606187962840254,0.0010117476137124733,0.0,0.0005221946045433952,0.0014724001337668648,0.001589916969258975,0.003744811905167932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000454812032666854,0.0,0.0,0.0012125171023686092,0.0007115478065150713,0.001667329135035463,0.0007245741861606496,0.0003051439184828419,0.00012056797826053463,0.0,6.222890657219679e-05,9.83770539578986e-05,0.00010622883269727717,0.0002502061460116782,0.0,0.0,0.0,0.0007415392319481267,0.00025140758797003674,0.0002554375600386605,0.0,0.0004189447550786388 +102237,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,32650.0,,6115.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0025873561813054653,0.0010399920794546171,0.0,0.0036273305303986627,0.0011731470937192136,0.0005469639194472088,0.0012094056828232218,0.0,0.000697813834409018,0.0009462161979039579,0.0005469639194472088,0.0009820847190567248,0.0,0.00011207361453615377,0.00022693089581525582,0.000227320963766497,0.0005857402198728643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.948598922022965e-05,0.0,0.0,0.00030832950422655215,0.00015133422926592483,0.00037781549344678185,0.00011275848810412264,6.518047856398297e-05,0.00011703286030856809,0.0,1.3355564361986982e-05,1.5162151800834001e-05,1.5188213785334227e-05,3.9135623634061415e-05,0.0,0.0,0.0,0.0001221926550075019,5.6970667931058646e-05,0.00012596927713201214,0.0,7.268289337620913e-05 +102238,50.0,the Greater Atlanta and Macon Area,G1300890023507,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,13139.0,,4137.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0028357876622132684,0.003208636732942249,0.0,0.006044424395155518,0.0025927201483092735,0.0005139511371835624,0.0020015469632952672,0.0004093172838928875,0.0005268888624745267,0.0014072202077415885,0.0005139511371835624,0.0005052990333952298,0.0004093172838928875,0.0,0.001185499940567685,0.0014962479299000374,0.0005268888624745267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021438159104391727,0.0,0.0,0.00033793668769048187,0.00030210075914611655,0.0005523182787343992,0.00016769638368626906,6.124680886685779e-05,6.021575025314573e-05,4.877774488420928e-05,0.0,7.920789562498099e-05,9.997018625227807e-05,3.520350916665822e-05,0.0,0.0,0.0,0.00023691366388864057,4.696305038910304e-05,0.0001828943339020559,3.740197625387659e-05,4.814525430072298e-05 +102239,81.0,the Columbus-Albany Area,G1300950011300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,62285.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006942817563910408,0.0,0.0,0.006942817563910407,0.0017500134199139059,0.002775015580650881,0.002417788563345621,0.0,0.0,0.0017500134199139059,0.002775015580650881,0.002417788563345621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008273603998084491,0.00023374569542749767,0.0008273603998084491,0.0002085452756668178,0.0003306925436463357,0.0002881225804952956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020854527566681785,0.0003306925436463358,0.0002881225804952957,0.0,0.0 +102240,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,144506.0,,10778.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.012694540817800675,0.0031725073614187267,0.0,0.015867048179219398,0.00949539487811554,0.00223570712918135,0.0041359154823162134,0.0,0.0,0.006322887516696811,0.00223570712918135,0.0041359154823162134,0.0,0.0,0.0031725073614187267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002119687943488499,0.0,0.0,0.0015127822081742281,0.0006748379661263917,0.001724751002523078,0.0007534854451870614,0.00026642460064181994,0.0004928685051283547,0.0,0.0,0.0002119687943488499,0.0,0.0,0.0,0.0,0.0,0.001032151138031521,0.00024302176869001158,0.0004495747598357988,0.0,0.0 +102241,50.0,the Greater Atlanta and Macon Area,G1301210010601,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,19229.0,,2494.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0025677537228681016,0.0007264757513521481,0.0,0.0032942294742202487,0.002075093939987767,0.0009856536753544843,0.00023345148527856053,0.0,0.0,0.0013486181886356188,0.0009856536753544843,0.00023345148527856053,0.0,0.0,0.0007264757513521481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.853847426018673e-05,0.0,0.0,0.00030599356336623806,0.00013287157907425581,0.00035453203762642483,0.0001607118632468368,0.00011745818054149905,2.7819900022864066e-05,0.0,0.0,4.853847426018673e-05,0.0,0.0,0.0,0.0,0.0,0.00022332605805618563,0.0001060781614189505,2.5124549279407527e-05,0.0,0.0 +102242,50.0,the Greater Atlanta and Macon Area,G1301390001403,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,91786.0,,1593.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.01032544747624199,0.0005919209215423366,0.0,0.010917407146208098,0.0048130579620017195,0.0018045915919134394,0.004070483168833525,0.0,0.0002292744234594139,0.0048130579620017195,0.0018045915919134394,0.0034785622472911885,0.0,0.0002292744234594139,0.0,0.0005919209215423366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.954992960672704e-05,0.0,0.0,0.001230464550546191,0.0003939371416393302,0.001270014480152918,0.0005735632490111381,0.0002150498549503411,0.0004145338535698913,0.0,2.73222105930853e-05,0.0,3.954992960672704e-05,0.0,0.0,0.0,0.0,0.0005598997292759721,0.00020992690130534295,0.00047351651325313444,0.0,2.6671336318468493e-05 +102243,50.0,the Greater Atlanta and Macon Area,G1300590002100,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,88856.0,,3334.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.0044894338937258894,0.0005670524189361287,0.0,0.0050564863126620185,0.00288455249942839,0.0005601375779823082,0.0008673870110304032,0.0,0.000744391493859497,0.00288455249942839,0.0005601375779823082,0.0003003345920942744,0.0,0.000744391493859497,0.0,0.0005670524189361287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7887377609620505e-05,0.0,0.0,0.0005349976812233163,0.00022136629317793898,0.0005728850588329369,0.00034374688103054954,6.675057757401884e-05,3.579032772620615e-05,0.0,8.870778199758189e-05,0.0,3.7887377609620505e-05,0.0,0.0,0.0,0.0,0.00032681133224936,6.346194362543356e-05,9.827240263673824e-05,0.0,8.433737152349337e-05 +102244,50.0,the Greater Atlanta and Macon Area,G1300890023108,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,149045.0,,14346.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013150766227765094,0.004179468029833526,0.0,0.017330234257598623,0.013207564858713688,0.0029069053341900385,0.0012157336910954544,0.0,0.0,0.009028096828880164,0.0029069053341900385,0.0012157336910954544,0.0,0.0,0.004179468029833526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002792468410351354,0.0,0.0,0.001567151640816217,0.0007622024058837988,0.0018463984818513528,0.001075861019334056,0.0003464103448630405,0.00014487665705541046,0.0,0.0,0.0002792468410351354,0.0,0.0,0.0,0.0,0.0,0.0014071608808974838,0.00030970761942128596,0.00012952674546738824,0.0,0.0 +102245,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6707.0,,533.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001309914633883151,0.0004228812680290788,0.0,0.0017327959019122297,0.0011725381844021614,0.0003003920918211646,0.00021768501808185712,0.0,4.209790053330748e-05,0.0007918375239801293,0.0003003920918211646,0.00021768501808185712,0.0,0.0,0.00038070066042203204,0.0,4.209790053330748e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8253223073224994e-05,0.0,0.0,0.00015609949948958894,7.584354089279099e-05,0.00018435272256281393,9.436144766468775e-05,3.579703132631564e-05,2.5941020498585557e-05,0.0,0.0,2.5435084257002667e-05,0.0,2.812613053837575e-06,0.0,0.0,0.0,0.00012474672081394747,3.195881286564557e-05,2.31595802484524e-05,0.0,4.47880940215132e-06 +102246,50.0,the Greater Atlanta and Macon Area,G1300890023113,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,15158.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003482050511498582,0.0,0.0,0.003482050511498582,0.0015393440564359898,0.0007533787346913511,0.001118695879397872,0.0,7.063184097336853e-05,0.0015393440564359898,0.0007533787346913511,0.001118695879397872,0.0,7.063184097336853e-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.00041494788103942825,0.00012997877586035756,0.00041494788103942825,0.00018344005990132865,8.977839596180971e-05,0.00013331239255455463,0.0,8.417032621735153e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00018344005990132865,8.977839596180971e-05,0.00013331239255455463,0.0,8.417032621735153e-06 +102247,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,20389.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0018166712447925165,0.0,0.0,0.0018166712447925165,0.0007137788632719714,0.000488517153046833,0.0006143752284737121,0.0,0.0,0.0007137788632719714,0.000488517153046833,0.0006143752284737121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021648808741349658,7.49859305543964e-05,0.00021648808741349658,8.505921001880401e-05,5.821534547593612e-05,7.321353191875646e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.505921001880401e-05,5.821534547593612e-05,7.321353191875646e-05,0.0,0.0 +102248,50.0,the Greater Atlanta and Macon Area,G1301390000500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,169951.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.013054542664746297,0.0,0.0,0.013054542664746295,0.006456424911684591,0.005175418355397409,0.0014226993976642953,0.0,0.0,0.006456424911684591,0.005175418355397409,0.0014226993976642953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015556843067561484,0.0003675352473657468,0.0015556843067561484,0.0007693995240431787,0.0006167444791560557,0.00016954030355691377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007693995240431788,0.0006167444791560558,0.0001695403035569138,0.0,0.0 +102249,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,53624.0,,3820.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0027603158569580806,0.0006497113638764148,0.0,0.003410027220834496,0.0018408015833527222,0.0005999422393703266,0.0005304924136879798,0.0,0.00043877325406204673,0.0013985886391751853,0.0005999422393703266,0.00032301172435052195,0.0,0.00043877325406204673,0.0004422129441775369,0.00020748068933745787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.340944727659458e-05,0.0,0.0,0.00032894212503403476,0.00013904088882364356,0.0003723515723106293,0.00016666741882421135,7.149409174268631e-05,3.849275536744567e-05,0.0,5.228785909969141e-05,2.954576532380596e-05,1.3862497326457531e-05,0.0,0.0,0.0,0.0,0.0002010029009989973,6.550957563043546e-05,5.7926131242800164e-05,0.0,4.791102840459812e-05 +102250,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,18436.0,,10152.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004182524004219598,0.007873899612080956,0.0,0.012056423616300556,0.004794316688916078,0.0004741676319138467,0.005816073543769995,0.000415058399490753,0.0005567264914268135,0.002411187690320429,0.0004741676319138467,0.0008820294217115006,0.000415058399490753,0.0,0.0023831289985956493,0.004934044122058494,0.0005567264914268135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005260878801624162,0.0,0.0,0.0004984208070740986,0.0006837248425620161,0.0010245086872365148,0.0002873351386397786,5.650535742257156e-05,0.0001051092153419868,4.9461459694757825e-05,0.0,0.00015922672942148716,0.0003296639455269315,3.719720521399767e-05,0.0,0.0,0.0,0.00040740266379796366,4.0292948685487846e-05,0.0004942276466748096,3.527007257888969e-05,4.730848425981989e-05 +102251,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,116604.0,,5292.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006002206060446216,0.0008999576849590403,0.0,0.006902163745405256,0.0028536662098346583,0.001644402369902797,0.0013610002729646732,0.0,0.0010431126230645465,0.0023567019095919986,0.001644402369902797,0.000957989157886873,0.0,0.0010431126230645465,0.00049696430024266,0.0004030111150778001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0130021951922026e-05,0.0,0.0,0.0007152709674432437,0.0002699813346563506,0.0007754009893951657,0.00028084348285834957,0.00019596016233719502,0.00011416166403839544,0.0,0.00012430565820930356,3.320431036073963e-05,2.692689623245965e-05,0.0,0.0,0.0,0.0,0.0003205857878962023,0.0001847350007358481,0.00015289711996856368,0.0,0.00011718507265395888 +102252,81.0,the Columbus-Albany Area,G1300950011300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,23605.0,,252.0,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006909514354329221,0.00019982029015416672,0.0,0.007109334644483389,0.0041460228994777415,0.0017227056389160342,0.0010407858159354447,0.0,0.00019982029015416672,0.0041460228994777415,0.0017227056389160342,0.0010407858159354447,0.0,0.0,0.0,0.0,0.00019982029015416672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.334812119786813e-05,0.0,0.0,0.0008233957482935145,0.00025802103872418785,0.0008367438694913827,0.0004940749020397595,0.00020529206915330747,0.00012402877710044753,0.0,0.0,0.0,0.0,1.334812119786813e-05,0.0,0.0,0.0,0.0004879724218075515,0.0002027564398617465,0.00012249685722887408,0.0,2.3518150593210405e-05 +102253,50.0,the Greater Atlanta and Macon Area,G1302250040200,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,121938.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010864550283874954,0.0,0.0,0.010864550283874954,0.002497336022869266,0.0028858357489918857,0.005481347822407503,0.0,0.0,0.002497336022869266,0.0028858357489918857,0.005481347822407503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012947057561956629,0.0003967223090916587,0.0012947057561956629,0.0002976023157408065,0.0003438990163449659,0.000653200766893633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002976023157408065,0.0003438990163449659,0.000653200766893633,0.0,0.0 +102254,81.0,the Columbus-Albany Area,G1302150000900,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,11350.0,,655.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0024889039700369785,0.0005197312513778078,0.0,0.0030087179284885254,0.001750329801544963,0.00046588894637351874,0.0007109500058630866,0.0,8.13837605594785e-05,0.0012305985501671552,0.00046588894637351874,0.0007109500058630866,0.0,8.13837605594785e-05,0.0005197312513778078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.472785599268272e-05,0.0,0.0,0.00029659860401029195,0.00011502266325505483,0.0003313264600029747,0.00014664841089519602,5.5519221625958676e-05,8.472274615599872e-05,0.0,9.698369266810463e-06,3.472785599268272e-05,0.0,0.0,0.0,0.0,0.0,0.0001927500652329142,5.1304688251051645e-05,7.829133680206638e-05,0.0,8.962153956867533e-06 +102255,35.0,Eastern Counties in South Carolina and Georgia,G1302450010106,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,166014.0,,19432.0,,9.525004485617233,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.04351261168363313,0.016826316176729837,0.0,0.06033883758073974,0.03095191742467508,0.0058547238457833835,0.014009501652477517,0.0006504646853382255,0.008872320252088752,0.022848147605103238,0.0058547238457833835,0.009549868824394566,0.0006504646853382255,0.004609497002636936,0.008103769819571846,0.004459632828082952,0.004262823249451816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001124233534595541,0.0,0.0,0.005185312887557978,0.0028094857160334656,0.006309546422153519,0.0027227690926704814,0.0006976959974584261,0.00113803920228138,7.751460519788375e-05,0.0005493047483960512,0.0005414452986688463,0.00029796591985165006,0.0002848162841320542,0.0,0.0,0.0,0.003236597980269801,0.0006122201450173604,0.0014649536612180067,6.801816694962422e-05,0.0009277659091105164 +102256,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4288.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010297030680543775,0.0,0.0,0.0010297030680543775,0.0005210545645576367,0.0003133771023982358,0.00015416598545006907,0.0,4.110541564843579e-05,0.0005210545645576367,0.0003133771023982358,0.00015416598545006907,0.0,4.110541564843579e-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.0001227063038660543,4.4509651111508016e-05,0.0001227063038660543,6.209234653462986e-05,3.734411127297025e-05,1.837144983183335e-05,0.0,4.8983962266208015e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.209234653462986e-05,3.734411127297025e-05,1.837144983183335e-05,0.0,4.8983962266208015e-06 +102257,50.0,the Greater Atlanta and Macon Area,G1300570090902,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,8573.0,,374.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0020565940956016183,0.0002966702735028957,0.0,0.0023532643691045138,0.0009986879154021372,0.0007281530772008626,0.0005549644647907527,0.0,7.137620463702231e-05,0.0007020176418992414,0.0007281530772008626,0.0005549644647907527,0.0,7.137620463702231e-05,0.0002966702735028957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9823217473618405e-05,0.0,0.0,0.00024507818372440133,9.035379220025575e-05,0.0002649014011980197,8.365734832513145e-05,8.677183019020468e-05,6.613345985645993e-05,0.0,8.505689397336056e-06,1.9823217473618405e-05,0.0,0.0,0.0,0.0,0.0,0.00011241993531318626,8.196646877824362e-05,6.247103651772087e-05,0.0,8.03465044929853e-06 +102258,50.0,the Greater Atlanta and Macon Area,G1300670031001,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,27406.0,,4068.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002560771439086618,0.0011975698169489578,0.0,0.0037583412560355765,0.0018411001714054877,0.0007487036352387571,0.0011685374493913313,0.0,0.0,0.0006435303544565298,0.0007487036352387571,0.0011685374493913313,0.0,0.0,0.0011975698169489578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.001554306439124e-05,0.0,0.0,0.0003051613834445893,0.0001632159678528719,0.0003851769265089806,7.668806761004295e-05,8.922133136604548e-05,0.0001392519844685009,0.0,0.0,8.001554306439124e-05,0.0,0.0,0.0,0.0,0.0,0.00018868677884912384,7.673155401315571e-05,0.00011975859364670098,0.0,0.0 +102259,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,76795.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006771915489044519,0.0,0.0,0.006771915489044521,0.004313992701743328,0.0018903009610084847,0.0005675914526932683,0.0,0.0,0.004313992701743328,0.0018903009610084847,0.0005675914526932683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008069960365173452,0.00017589250684288114,0.0008069960365173452,0.0005140901444360499,0.0002252634997921409,6.763877272621092e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005140901444360496,0.00022526349979214085,6.76387727262109e-05,0.0,0.0 +102260,50.0,the Greater Atlanta and Macon Area,G1301210011419,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,196364.0,,26561.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.057087090329233606,0.02349308288198836,0.0,0.08058017321122196,0.0579434197384853,0.014516932148805886,0.002066496417394065,0.0006495783285342404,0.005403838795255246,0.038204316782387324,0.014516932148805886,0.002066496417394065,0.0006495783285342404,0.0016498588693648634,0.019739102956097977,0.0,0.0037539799258903828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001569669251691241,0.0,0.0,0.006802963046165849,0.003170885146356158,0.008372632297857091,0.004552737821733083,0.00172995597397702,0.0002462605587618618,7.740904886066109e-05,0.00019661063219280066,0.0013188504515049976,0.0,0.0002508188001862436,0.0,0.0,0.0,0.006020574642834962,0.0015083727191339074,0.00021471801260995505,6.749402832899831e-05,0.0005614824767250102 +102261,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,34016.0,,3270.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029561456370199232,0.0009625488119211501,0.0,0.003918694448941073,0.0015045886383511765,0.0010437841997911694,0.0013703523004050247,0.0,0.0,0.0005420398264300265,0.0010437841997911694,0.0013703523004050247,0.0,0.0,0.0009625488119211501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.43114221613671e-05,0.0,0.0,0.00035227995977478855,0.00017032901648076498,0.0004165913819361556,6.459416811534315e-05,0.00012438638046489278,0.0001633030684342828,0.0,0.0,6.43114221613671e-05,0.0,0.0,0.0,0.0,0.0,0.00015995088881337293,0.00011096335983828229,0.00014568039585719268,0.0,0.0 +102262,50.0,the Greater Atlanta and Macon Area,G1302270050100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,37028.0,,2047.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,14029.891188970922,0.0,0.0,0.002190745726700304,0.0003481356464827367,0.0,0.0025388813731830407,0.0012341040762813553,0.0004575142460830425,0.0005579390131662215,0.0,0.00028932403765242164,0.0012341040762813553,0.0004575142460830425,0.00020980336668348482,0.0,0.00028932403765242164,0.0,0.0003481356464827367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3260648120200657e-05,0.0,0.0,0.00026106618120881907,0.00011126453333236874,0.00028432682932901974,0.00014706537343988415,5.452093121433783e-05,2.500178960855912e-05,0.0,3.4478086946038e-05,0.0,2.3260648120200657e-05,0.0,0.0,0.0,0.0,0.0001382061024108349,5.123657069434492e-05,6.248304164508005e-05,0.0,3.2401114578759895e-05 +102263,50.0,the Greater Atlanta and Macon Area,G1301350050319,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,35397.0,,3950.0,,9.325022323477118,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,349688.3371303919,0.0,0.0,0.009082798002517432,0.003348698980386127,0.0,0.012431585367061614,0.00782182121954739,0.0017955241708864074,0.002501271672955221,0.0,0.0003128799195145401,0.004473122239161263,0.0017955241708864074,0.002501271672955221,0.0,0.0003128799195145401,0.003348698980386127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022374285855067134,0.0,0.0,0.0010823812888817155,0.0004884754534414968,0.001306124147432387,0.0005330542210899004,0.00021396950210316793,0.00029807220819688164,0.0,3.728535749176542e-05,0.00022374285855067134,0.0,0.0,0.0,0.0,0.0,0.0008217994141614982,0.00018864669369579923,0.0002627960340433727,0.0,3.2872719452775255e-05 +102264,81.0,the Columbus-Albany Area,G1301770020300,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,272058.0,,6890.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.06563147988493208,0.006094361584020776,0.0,0.07172584146895286,0.04543119844771546,0.018808538658363877,0.0025076637546609312,0.0006730015107386267,0.004305439097473967,0.03933683686369468,0.018808538658363877,0.0025076637546609312,0.0006730015107386267,0.004305439097473967,0.006094361584020776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040718869478658987,0.0,0.0,0.007821180377750838,0.0023310265651193076,0.008228369072537427,0.004687697079823862,0.0022413782798570803,0.00029883358696676087,8.020032794040455e-05,0.0005130711031627307,0.00040718869478658987,0.0,0.0,0.0,0.0,0.0,0.005211854759449639,0.002157710451721876,0.00028767850555098305,7.720655071198744e-05,0.0004939188051029419 +102265,50.0,the Greater Atlanta and Macon Area,G1301130140304,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,16749.0,,89.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0036782316904082186,7.03010126784113e-05,0.0,0.00374853270308663,0.0028812663278562525,0.000398978923718419,0.0003979864388335473,0.0,7.03010126784113e-05,0.0028812663278562525,0.000398978923718419,0.0003979864388335473,0.0,0.0,0.0,0.0,7.03010126784113e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.694695607133414e-06,0.0,0.0,0.00043832756947095804,0.00016325473500319374,0.0004430222650780915,0.00034335478914531884,4.754552638967243e-05,4.7427253935966776e-05,0.0,0.0,0.0,0.0,4.694695607133414e-06,0.0,0.0,0.0,0.00034052394255732133,4.715352926189161e-05,4.703623192541925e-05,0.0,8.308561333459343e-06 +102266,81.0,the Columbus-Albany Area,G1302150003400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5084.0,,298.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012207564083921776,0.0002362941096732013,0.0,0.001457050518065379,0.0010904927672527685,0.00021206093706758425,0.0001291057421070589,0.0,2.5391071637967373e-05,0.0008795897292175346,0.00021206093706758425,0.0001291057421070589,0.0,0.0,0.00021090303803523392,0.0,2.5391071637967373e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.578759587283457e-05,0.0,0.0,0.0001454760497012067,5.974050598518993e-05,0.0001612636455740413,0.00010481963337210932,2.5271042780074123e-05,1.5385373549023283e-05,0.0,0.0,1.4091133873198513e-05,0.0,1.6964619996360562e-06,0.0,0.0,0.0,0.00012069371441753616,2.347051071418754e-05,1.4289183785041634e-05,0.0,2.8102366572759643e-06 +102267,85.0,Rural Climate Zone 3A,G1302850961000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7531.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015148627626091547,0.0,0.0,0.001514862762609155,0.0009154845992203938,0.00029344469762706274,0.0002571362922555068,0.0,4.8631759358712767e-05,0.0009154845992203938,0.00029344469762706274,0.0002571362922555068,0.0,4.8631759358712767e-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.00018052165669652653,5.5962000187486634e-05,0.00018052165669652653,0.00010909555677952893,3.4968925418174066e-05,3.0642161534696496e-05,0.0,5.7953010557740555e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010909555677952892,3.496892541817406e-05,3.064216153469649e-05,0.0,5.795301055774055e-06 +102268,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,25637.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.002136782720445841,0.0,0.0,0.002136782720445841,0.0014499445163599588,0.0005862104691486102,0.00010062773493727179,0.0,0.0,0.0014499445163599588,0.0005862104691486102,0.00010062773493727179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025463566085364033,6.50434499039182e-05,0.00025463566085364033,0.00017278667437342185,6.985740233795677e-05,1.1991584142261696e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017278667437342185,6.985740233795677e-05,1.1991584142261696e-05,0.0,0.0 +102269,35.0,Eastern Counties in South Carolina and Georgia,G1301890950400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,74879.0,,4764.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0036843336423641325,0.0008100824829207924,0.0,0.004494416125284926,0.0023183688682018445,0.0007876358453630056,0.0009170497533679711,0.0,0.00047134392799068374,0.0016666185127621233,0.0007876358453630056,0.0007587353562483197,0.0,0.00047134392799068374,0.0006517503554397209,0.00015831439711965146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4124772417180326e-05,0.0,0.0,0.00043905581706513364,0.00018419401042260589,0.0004931805894823139,0.00019860811313144702,9.386123332026502e-05,9.041721084740114e-05,0.0,5.616925976602043e-05,4.3545985013529114e-05,1.0577602769003548e-05,0.0,0.0,0.0,0.0,0.00025439890147794137,8.64287372787276e-05,0.00010062956462936654,0.0,5.172144051094467e-05 +102270,35.0,Eastern Counties in South Carolina and Georgia,G1302450010706,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,26910.0,,707.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002389431367126543,0.00020813690991102022,0.0,0.0025975682770375636,0.0006187945317805811,0.0008909806500349072,0.0010877930952220751,0.0,0.0,0.00041065762186956093,0.0008909806500349072,0.0010877930952220751,0.0,0.0,0.00020813690991102022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.390680135459063e-05,0.0,0.0,0.00028474519877786937,9.80989540470119e-05,0.00029865200013246,4.893749524578939e-05,0.0001061769196603959,0.0001296307838716841,0.0,0.0,1.390680135459063e-05,0.0,0.0,0.0,0.0,0.0,7.114508835858684e-05,0.00010243932972407347,0.00012506758204979966,0.0,0.0 +102271,81.0,the Columbus-Albany Area,G1300950000502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,64825.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007127924448054409,0.0,0.0,0.00712792444805441,0.0044224264517361035,0.002263197641305764,0.00044230035501254206,0.0,0.0,0.0044224264517361035,0.002263197641305764,0.00044230035501254206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008494212299778954,0.00019769963002255143,0.0008494212299778954,0.0005270121679173818,0.0002697009680967847,5.270809396372905e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005270121679173816,0.0002697009680967846,5.2708093963729034e-05,0.0,0.0 +102272,50.0,the Greater Atlanta and Macon Area,G1301530021000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,368658.0,,9418.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.018976770367159675,0.0016016899292418897,0.0,0.020578460296401566,0.010991848910554635,0.0065953753017540815,0.0014445634663373822,0.0,0.001546654887394046,0.010991848910554635,0.0065953753017540815,0.0010921725331138328,0.0,0.0002973558913757056,0.0,0.00035239093322354944,0.0012492989960183403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010701497730109833,0.0,0.0,0.0022614255964227615,0.0008404174499930198,0.00236844057372386,0.0013098777082404236,0.0007859583183454811,0.00013015212147835997,0.0,3.5435335465081815e-05,0.0,2.3544574409530307e-05,8.347040289156803e-05,0.0,0.0,0.0,0.0012650869192848378,0.000759082761227871,0.0001662594127895424,0.0,0.00017800943977781084 +102273,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,30648.0,,2422.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002584341056723254,0.0007129195542956356,0.0,0.003297291300625188,0.0012975258646605759,0.0008446700341316738,0.0011550647122266396,0.0,0.0,0.0005846063103649402,0.0008446700341316738,0.0011550647122266396,0.0,0.0,0.0007129195542956356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.763386803042383e-05,0.0,0.0,0.0003079716016491166,0.0001320416169681864,0.00035560546967954037,6.96665563041245e-05,0.00010065791533195542,0.0001376471300130366,0.0,0.0,4.763386803042383e-05,0.0,0.0,0.0,0.0,0.0,0.00013993525365395832,9.109576826126199e-05,0.00012457113795912933,0.0,0.0 +102274,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,9799.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,9613.75315558068,0.0,0.0,0.0008482435114980951,0.0,0.0,0.0008482435114980951,0.0006105397222982494,0.00019132330285839873,4.635011274200928e-05,0.0,0.0,0.0006105397222982494,0.00019132330285839873,4.635011274200928e-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.00010108302646233603,2.6719617714532167e-05,0.00010108302646233603,7.275646918463912e-05,2.279951243192089e-05,5.523425301017825e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.275646918463912e-05,2.279951243192089e-05,5.523425301017825e-06,0.0,0.0 +102275,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,12070.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002539851527460392,0.0,0.0,0.0025398515274603914,0.0013250500283774442,0.00048201682575268367,0.0006518971552132211,0.0,8.088751811704266e-05,0.0013250500283774442,0.00048201682575268367,0.0006518971552132211,0.0,8.088751811704266e-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.0003026705655862152,8.571474687701183e-05,0.0003026705655862152,0.00015790436455946963,5.7441273119817054e-05,7.768567514248421e-05,0.0,9.63925276444425e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015790436455946966,5.744127311981706e-05,7.768567514248422e-05,0.0,9.639252764444251e-06 +102276,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,121115.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.010497011558853665,0.0,0.0,0.010497011558853665,0.002868526811039982,0.0029544270190672516,0.004674119107959026,0.0,0.0,0.002868526811039982,0.0029544270190672516,0.004674119107959026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012509099424846213,0.00038014181560503833,0.0012509099424846213,0.00034183716842600844,0.00035207374134777283,0.0005570063471609448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034183716842600844,0.00035207374134777283,0.0005570063471609448,0.0,0.0 +102277,46.0,the Tallahassee-Valdosta Area,G1301850011301,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11096.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002440106796530787,0.0,0.0,0.002440106796530787,0.0013849299497647029,0.000513031978404924,0.00046828745151195864,0.0,7.385741684920153e-05,0.0013849299497647029,0.000513031978404924,0.00046828745151195864,0.0,7.385741684920153e-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.00029078431288752696,8.27968852322609e-05,0.00029078431288752696,0.000165040277914166,6.113734511206758e-05,5.580519877874038e-05,0.0,8.801491082553013e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.000165040277914166,6.113734511206758e-05,5.580519877874038e-05,0.0,8.801491082553013e-06 +102278,35.0,Eastern Counties in South Carolina and Georgia,G1302450010106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,72975.0,,2322.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006435011524080977,0.0006766023010753594,0.0,0.007111613825156337,0.004552334336531368,0.0018404275107316962,0.0007188519778932724,0.0,0.0,0.003875732035456008,0.0018404275107316962,0.0007188519778932724,0.0,0.0,0.0006766023010753594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5206281173951574e-05,0.0,0.0,0.0007668481170512759,0.00023364558479301167,0.0008120543982252275,0.0004618636349698242,0.00021932025543272487,8.566422664872674e-05,0.0,0.0,4.5206281173951574e-05,0.0,0.0,0.0,0.0,0.0,0.0005198177531934187,0.00021015303859971986,8.208360643208901e-05,0.0,0.0 +102279,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,16951.0,,,943.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016805712568908084,0.0,8.884277835542407e-05,0.0017694140352462323,0.0010153286820051679,0.0005867875675379274,0.00016726741210369928,0.0,0.0,0.0009264859036497438,0.0005867875675379274,0.00016726741210369928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.884277835542407e-05,0.0,0.0,0.0,0.0,7.16519139053678e-06,0.00020026903009383513,5.776263466427577e-05,0.00020743422148437188,0.00011040676350898703,6.992585202210014e-05,1.9932795024882524e-05,0.0,0.0,0.0,0.0,0.0,7.16519139053678e-06,0.0,0.0,0.00011903031766851914,6.879103467267326e-05,1.9609308346312525e-05,0.0,0.0 +102280,50.0,the Greater Atlanta and Macon Area,G1302250040101,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,67035.0,,2023.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.01395806903908721,0.001391797757528948,0.0,0.015349866796616157,0.00613671931995076,0.0006357258230823763,0.004531124328824276,0.00037817940716531706,0.003668189637564443,0.00613671931995076,0.0006357258230823763,0.0031393265712953275,0.00037817940716531706,0.003668189637564443,0.0,0.001391797757528948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.299408901938058e-05,0.0,0.0,0.001663354924459951,0.0005498012239814233,0.001756349013479332,0.000731300459417712,7.57581636449319e-05,0.0003741072133422789,4.5066876906557525e-05,0.0004371307578727085,0.0,9.299408901938058e-05,0.0,0.0,0.0,0.0,0.0007021703228050883,7.274046328924563e-05,0.0005184563390893458,4.327171287502168e-05,0.00041971838170033364 +102281,50.0,the Greater Atlanta and Macon Area,G1301210011621,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,14083.0,,1850.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001241854986611921,0.0005388884012245928,0.0,0.0017807433878365136,0.0012161892950870207,0.0004587324723083658,0.00010585199404056511,0.0,0.0,0.000677300893862428,0.0004587324723083658,0.00010585199404056511,0.0,0.0,0.0005388884012245928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.60057281430668e-05,0.0,0.0,0.00014798887215507133,7.306129100681828e-05,0.00018399460029813814,8.071231864662566e-05,5.466604549621001e-05,1.2614127561033693e-05,0.0,0.0,3.60057281430668e-05,0.0,0.0,0.0,0.0,0.0,0.0001256622738373772,4.739834973566864e-05,1.093711506513972e-05,0.0,0.0 +102282,81.0,the Columbus-Albany Area,G1302150010205,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13905.0,,1780.0,,8.72605822017302,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.00327338056445431,0.0014120578699511955,0.0,0.004685521141479244,0.0030019359484419017,0.0006361001041290134,0.0009716427022893835,0.0,7.58423866189449e-05,0.0015898780784907062,0.0006361001041290134,0.0009716427022893835,0.0,7.58423866189449e-05,0.0014120578699511955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.434806360144399e-05,0.0,0.0,0.0003900862156473361,0.0002270142756890979,0.0004844342792487801,0.00018946453391754857,7.580355461477742e-05,0.0001157899050337284,0.0,9.038078218924834e-06,9.434806360144399e-05,0.0,0.0,0.0,0.0,0.0,0.000310369035508256,6.576615197525891e-05,0.0001004577757645744,0.0,7.841316000690731e-06 +102283,85.0,Rural Climate Zone 3A,G1302370960202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,26017.0,,3383.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023180780324843844,0.0009959391035730507,0.0,0.0033140171360574347,0.0014301356534729497,0.000809530434920804,0.0010743510476636812,0.0,0.0,0.000434196549899899,0.000809530434920804,0.0010743510476636812,0.0,0.0,0.0009959391035730507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.654279375290146e-05,0.0,0.0,0.00027624163755582496,0.00014488310421067896,0.0003427844313087265,5.174250576754282e-05,9.647044226295196e-05,0.00012802868952533015,0.0,0.0,6.654279375290146e-05,0.0,0.0,0.0,0.0,0.0,0.000147925679483138,8.373355307738656e-05,0.00011112519874820196,0.0,0.0 +102284,50.0,the Greater Atlanta and Macon Area,G1301170130105,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,12303.0,,2370.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010536048738064344,0.0006977588887845704,0.0,0.0017513637625910046,0.0008790423931851006,0.0004023714281691812,0.00046998063084302045,0.0,0.0,0.00018128350440053031,0.0004023714281691812,0.00046998063084302045,0.0,0.0,0.0006977588887845704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6620358688164705e-05,0.0,0.0,0.00012555547639956502,8.754936380599084e-05,0.0001721758350877297,2.1603105038951105e-05,4.7949603887876755e-05,5.600642467690829e-05,0.0,0.0,4.66203586881647e-05,0.0,0.0,0.0,0.0,0.0,8.641828805470484e-05,3.9556965914367755e-05,4.620359820094789e-05,0.0,0.0 +102285,35.0,Eastern Counties in South Carolina and Georgia,G1302450000300,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12761.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002897311500161678,0.0,0.0,0.002897311500161678,0.0019310447576653495,0.0005096409883816122,0.00038318187263421127,0.0,7.344388148050498e-05,0.0019310447576653495,0.0005096409883816122,0.00038318187263421127,0.0,7.344388148050498e-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.0003452665696806947,0.00010600463928478147,0.0003452665696806947,0.00023011857694341754,6.0732853825823995e-05,4.5662984708705395e-05,0.0,8.752154202747763e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00023011857694341754,6.0732853825823995e-05,4.5662984708705395e-05,0.0,8.752154202747763e-06 +102286,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,35992.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.009235071853731068,0.0,0.0,0.009235071853731068,0.006575460483496159,0.001657284343588242,0.0008436121521409357,0.0,0.00015871487450573094,0.006575460483496159,0.001657284343588242,0.0008436121521409357,0.0,0.00015871487450573094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011005248599783553,0.0003477329331772068,0.0011005248599783553,0.0007835843448223105,0.00019749522787252625,0.000100531556258098,0.0,1.8913731025420597e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0007835843448223105,0.00019749522787252625,0.000100531556258098,0.0,1.8913731025420597e-05 +102287,50.0,the Greater Atlanta and Macon Area,G1301350050725,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,318811.0,,32703.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.015619029982152916,0.005561500196989382,0.0,0.021180530179142294,0.010953409486995958,0.00436837098594977,0.0027955638154611453,0.0,0.003063168160374002,0.00872716757673271,0.00436837098594977,0.002080923868064497,0.0,0.00044254982104451794,0.0022262419102632497,0.0007146399473966482,0.002620618339329484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037158734590164776,0.0,0.0,0.0018612892257270392,0.0009139506743595142,0.002232876571628687,0.0010399994750152797,0.0005205702184717982,0.0002479796235497593,0.0,5.273779579774201e-05,0.0001487446360637636,4.7748116861016216e-05,0.00017509459297686793,0.0,0.0,0.0,0.0011547213981949098,0.0004605188419841877,0.00029471164768968353,0.0,0.0003229228146042106 +102288,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13859.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003327884526048513,0.0,0.0,0.0033278845260485126,0.0015228853487618676,0.0007032582480053311,0.0009995976932132696,0.0,0.00010214323606804467,0.0015228853487618676,0.0007032582480053311,0.0009995976932132696,0.0,0.00010214323606804467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003965771212268215,0.00012453397284465948,0.0003965771212268215,0.00018147909966323192,8.380583199024936e-05,0.00011911999123064257,0.0,1.2172198342697631e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00018147909966323195,8.380583199024937e-05,0.00011911999123064258,0.0,1.2172198342697633e-05 +102289,50.0,the Greater Atlanta and Macon Area,G1302550160400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,30810.0,,10883.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006415279687375394,0.007486202294580497,0.0,0.013901481981955888,0.004603489779579026,0.000551526577110049,0.00680945264807719,0.0003732307291652399,0.0015637105280533676,0.0027435040512601696,0.000551526577110049,0.002558466526039893,0.0003732307291652399,0.00018848008382902585,0.0018599857283188562,0.004250986122037298,0.0013752304442243416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000500186417121134,0.0,0.0,0.0007644934411318128,0.0007198415859412016,0.001264679858252947,0.0003269367751860304,6.572409487309684e-05,0.0003048862986226247,4.4477007765877244e-05,2.2460717987841156e-05,0.0001242739056113611,0.00028402725894179835,9.188525256797446e-05,0.0,0.0,0.0,0.00041880001063654697,5.0174834184415016e-05,0.0006194862980025075,3.3954465161989047e-05,0.00014225772558163857 +102290,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,73469.0,,,,9.325022323477118,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,699376.6742607838,0.0,0.0,0.01885216414480575,0.0,0.0,0.018852164144805752,0.009599491790506698,0.004920611231393499,0.003915683354308664,0.0,0.00041646615275494703,0.009599491790506698,0.004920611231393499,0.003915683354308664,0.0,0.00041646615275494703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002246576061058698,0.0005068431053320598,0.002246576061058698,0.001143952932365265,0.0005863797553062895,0.0004666244373275115,0.0,4.962946862937574e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.001143952932365265,0.0005863797553062893,0.0004666244373275114,0.0,4.962946862937573e-05 +102291,35.0,Eastern Counties in South Carolina and Georgia,G1300510011103,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,365783.0,,3900.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01738671155500934,0.0006632928207241753,0.0,0.018049986645372097,0.00965419952358017,0.004303406941706696,0.002824552956382932,0.0,0.0012678449540637158,0.009212429838438134,0.004303406941706696,0.002603029820800792,0.0,0.0012678449540637158,0.0004417696851420356,0.00022152313558213973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.431722107595597e-05,0.0,0.0,0.002071939941710979,0.0004893542175134209,0.002116257162786935,0.0010978269974790374,0.0005128284724657701,0.0003101979024681091,0.0,0.000151086569298062,2.9516382794133095e-05,1.4800838281822882e-05,0.0,0.0,0.0,0.0,0.0011318993910717971,0.0005045497231494528,0.00033116259546646154,0.0,0.00014864753188216555 +102292,50.0,the Greater Atlanta and Macon Area,G1300450910104,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,42334.0,,3661.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.008814814757644692,0.0025181599023291197,0.0,0.011332974659973813,0.003204089705122424,0.00029276092168572436,0.005991558098615162,0.0003734458890782867,0.0014711200454722137,0.003204089705122424,0.00029276092168572436,0.0034733981962860433,0.0003734458890782867,0.0014711200454722137,0.0,0.0025181599023291197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016824874264083592,0.0,0.0,0.0010504415506409235,0.0004627026311379769,0.0012186902932817595,0.0003818241279911742,3.488765731303801e-05,0.00041391701216816044,4.450270250587675e-05,0.00017531005066267406,0.0,0.00016824874264083592,0.0,0.0,0.0,0.0,0.00034455146504719494,3.148201634745719e-05,0.000644301599138393,4.015846622273629e-05,0.00015819674652597788 +102293,50.0,the Greater Atlanta and Macon Area,G1301210009602,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,97696.0,,6011.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008614955129327861,0.0017511898755835811,0.0,0.010366114631312005,0.008621060222814851,0.0013291487113960198,0.0004159056971011357,0.0,0.0,0.006869870347231269,0.0013291487113960198,0.0004159056971011357,0.0,0.0,0.0017511898755835811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011700344469635845,0.0,0.0,0.0010266271267748842,0.0004344501711200116,0.0011436305714712428,0.0008186688322826207,0.00015839201738750055,4.9562657543122596e-05,0.0,0.0,0.00011700344469635845,0.0,0.0,0.0,0.0,0.0,0.0009511092998648316,0.00014663691792415648,4.588435368225491e-05,0.0,0.0 +102294,50.0,the Greater Atlanta and Macon Area,G1301170130613,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4605.0,,649.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007977924332893594,0.0005149342411009279,0.0,0.0013128093814640269,0.000690107823280781,0.0003876480546161339,0.00019088792619032153,0.0,4.4082870303050854e-05,0.0001751735821798531,0.0003876480546161339,0.00019088792619032153,0.0,4.4082870303050854e-05,0.0005149342411009279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.440684159373385e-05,0.0,0.0,9.507307457949128e-05,6.545580525368635e-05,0.00012947991617322512,2.08754687911427e-05,4.6196091701645825e-05,2.274815012745862e-05,0.0,5.2533639592441265e-06,3.440684159373385e-05,0.0,0.0,0.0,0.0,0.0,6.806403455864614e-05,3.8232997360543446e-05,1.882691655816818e-05,0.0,4.347810452991178e-06 +102295,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,157766.0,,9118.0,,3.3063363735822096,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.01581689522875981,0.0027406980698694086,0.0,0.01855759329862922,0.005099699029294601,0.0018204257098279589,0.00831388327664362,0.0,0.0033235539448408357,0.005099699029294601,0.0018204257098279589,0.005573185206774214,0.0,0.0033235539448408357,0.0,0.0027406980698694086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018311809344149395,0.0,0.0,0.001884869014125993,0.0009136857049462716,0.002067987107567487,0.0006077213348551395,0.00021693663410844242,0.0006641457728779397,0.0,0.000396061537792578,0.0,0.00018311809344149395,0.0,0.0,0.0,0.0,0.0005682909241164727,0.0002028612674945672,0.0009264673038820139,0.0,0.000370364119885287 +102296,50.0,the Greater Atlanta and Macon Area,G1300670030507,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,32316.0,,2561.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0030779219948092076,0.0007539515579156642,0.0,0.0038319042423311696,0.001775393724322106,0.0008745310210593385,0.001181979496949725,0.0,0.0,0.0010214421664064418,0.0008745310210593385,0.001181979496949725,0.0,0.0,0.0007539515579156642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.037564818458633e-05,0.0,0.0,0.00036679135627279056,0.0001613284459075297,0.0004171670044573769,0.00012172373380556065,0.00010421655255004826,0.00014085472715161983,0.0,0.0,5.037564818458633e-05,0.0,0.0,0.0,0.0,0.0,0.00019328136479144044,9.520735991524436e-05,0.00012867827975069208,0.0,0.0 +102297,46.0,the Tallahassee-Valdosta Area,G1300270960500,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,42617.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0035583582949309392,0.0,0.0,0.003558358294930939,0.0024201380296006276,0.0009366610594613908,0.00020152883226948328,0.0,0.0,0.0024201380296006276,0.0009366610594613908,0.00020152883226948328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004240430082748592,0.00012147086016786876,0.0004240430082748592,0.0002884033943333291,0.00011162017438034116,2.4015819995251424e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028840339433332913,0.00011162017438034117,2.4015819995251428e-05,0.0,0.0 +102298,50.0,the Greater Atlanta and Macon Area,G1301210010604,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,82848.0,,4795.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012566864152173755,0.001396912211741644,0.0,0.013963776363915395,0.009251555399943703,0.0037966695561195397,0.000915551407852153,0.0,0.0,0.007854643188202061,0.0037966695561195397,0.000915551407852153,0.0,0.0,0.001396912211741644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.333290536534578e-05,0.0,0.0,0.001497570656869305,0.0003664788057346497,0.0015909035622346506,0.0009360237380138375,0.0004524423000220093,0.00010910461883345806,0.0,0.0,9.333290536534578e-05,0.0,0.0,0.0,0.0,0.0,0.0010540366773572909,0.0004325574231528864,0.00010430946172447343,0.0,0.0 +102299,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,25107.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0022139924102166056,0.0,0.0,0.0022139924102166056,0.0015286425125031736,0.0005662246407185695,0.00011912525699486263,0.0,0.0,0.0015286425125031736,0.0005662246407185695,0.00011912525699486263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002638376673034645,6.82846006185981e-05,0.0002638376673034645,0.00018216569884279155,6.747601648838262e-05,1.4195951972290343e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018216569884279155,6.747601648838262e-05,1.4195951972290343e-05,0.0,0.0 +102300,81.0,the Columbus-Albany Area,G1302150010106,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,154912.0,,16823.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00763256598410433,0.0028609533883783,0.0,0.01049351937248263,0.004009597122615001,0.002042289410530202,0.0025464522375094035,0.0,0.001895180601828024,0.0035875967904563243,0.002042289410530202,0.0017270613148430835,0.0,0.00027561846827472086,0.00042200033215867677,0.0008193909226663201,0.0016195621335533031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019115182001038468,0.0,0.0,0.0009095587964826621,0.0004197286536333712,0.001100710616493047,0.0004275272858155892,0.00024337585841770096,0.00020581070825354645,0.0,3.284494399582556e-05,2.8195542040215708e-05,5.474680811085788e-05,0.00010820946985931109,0.0,0.0,0.0,0.0004205839779831797,0.00021422456626104077,0.0002671083849684592,0.0,0.0001987936872803673 +102301,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950600,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,20797.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,24034.3828889517,0.0,0.0,0.0017533160275442238,0.0,0.0,0.0017533160275442243,0.0011798928437589072,0.0004252303921285255,0.0001482231652562289,0.0,0.0,0.0011798928437589072,0.0004252303921285255,0.0001482231652562289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020893968031635628,6.413606569210925e-05,0.00020893968031635628,0.00014060581761055307,5.067398050115181e-05,1.7663501774687203e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014060581761055302,5.0673980501151795e-05,1.76635017746872e-05,0.0,0.0 +102302,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7047.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014007270008489104,0.0,0.0,0.0014007270008489104,0.0006812581663906752,0.00031023423359614216,0.00035820433636494045,0.0,5.1030264497152686e-05,0.0006812581663906752,0.00031023423359614216,0.00035820433636494045,0.0,5.1030264497152686e-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.0001669189465781288,5.0155738082819794e-05,0.0001669189465781288,8.118276824303536e-05,3.696935336647149e-05,4.2685755646544396e-05,0.0,6.0810693220775564e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.118276824303536e-05,3.696935336647149e-05,4.2685755646544396e-05,0.0,6.0810693220775564e-06 +102303,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,68329.0,,3295.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006088050649306789,0.0009697608694011103,0.0,0.007057780829101602,0.0020540246598989495,0.002720541529472459,0.002283214639730194,0.0,0.0,0.0010842637904978395,0.002720541529472459,0.002283214639730194,0.0,0.0,0.0009697608694011103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.479326551086777e-05,0.0,0.0,0.0007254994523616729,0.0002558736798199499,0.0007902927178725407,0.00012920930385349922,0.00032420088193323366,0.0002720856093628299,0.0,0.0,6.479326551086777e-05,0.0,0.0,0.0,0.0,0.0,0.00022999874469825272,0.0003046317548636019,0.0002556622183106861,0.0,0.0 +102304,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,37349.0,,3882.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0031474946153364704,0.0011309002278658135,0.0,0.004278364469602847,0.0030376940533689972,0.0009290676596019529,0.000311602756631896,0.0,0.0,0.0019067938255031835,0.0009290676596019529,0.000311602756631896,0.0,0.0,0.0011309002278658135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.555928633927419e-05,0.0,0.0,0.00037508013763777034,0.00017440486133105283,0.00045063942397704463,0.00022722850327740087,0.0001107149870695011,3.713302773460219e-05,0.0,0.0,7.555928633927419e-05,0.0,0.0,0.0,0.0,0.0,0.000319959813651821,9.785854336004942e-05,3.282106696517415e-05,0.0,0.0 +102305,46.0,the Tallahassee-Valdosta Area,G1300270960500,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,18928.0,,412.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0009204362523992013,6.99817365249484e-05,0.0,0.0009904179889241498,0.0005491092931790354,0.0002463456415702137,8.033626759425925e-05,0.0,0.00011462678658064138,0.00047912755665408696,0.0002463456415702137,8.033626759425925e-05,0.0,0.00011462678658064138,6.99817365249484e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6761928159965e-06,0.0,0.0,0.00010968663325149349,3.34424564411119e-05,0.00011436282606748997,5.709671739940108e-05,2.9356540411770666e-05,9.573519836313003e-06,0.0,1.3659855604008734e-05,4.6761928159965e-06,0.0,0.0,0.0,0.0,0.0,6.340524030272403e-05,2.8445347393156206e-05,9.276368867021069e-06,0.0,1.323586950458866e-05 +102306,81.0,the Columbus-Albany Area,G1302150010302,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,148674.0,,10562.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007591573388501168,0.0017962097243812893,0.0,0.009387783112882457,0.005569372477459885,0.0010992292169590137,0.002064789239172249,0.0,0.0006543921792913089,0.005569372477459885,0.0010992292169590137,0.0007812706456132067,0.0,0.000141701048469062,0.0,0.0012835185935590422,0.0005126911308222468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012001264322780114,0.0,0.0,0.0009046728795849054,0.0004227593938364402,0.0010246855228127065,0.0006636911716214488,0.00013099298526659018,9.310248726207767e-05,0.0,1.68862354347886e-05,0.0,8.575750200779563e-05,3.42551412200055e-05,0.0,0.0,0.0,0.0006079023428836362,0.0001199819223907066,0.0002253737240835804,0.0,7.142753345478328e-05 +102307,81.0,the Columbus-Albany Area,G1303210950100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,71747.0,,,1542.0,3.20458438519356,Mercantile,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,120171.9144447585,0.0,0.0,0.0060574980566691595,0.0,0.0001453680469090802,0.006202866103578239,0.0036058626044515834,0.001984459119265515,0.0006125443798611412,0.0,0.0,0.003460494557542503,0.001984459119265515,0.0006125443798611412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001453680469090802,0.0,0.0,0.0,0.0,1.1724606324106785e-05,0.0007218598893889851,0.0001958824781966595,0.000733584495713092,0.0004123801931374269,0.00023648401153885935,7.299568471269884e-05,0.0,0.0,0.0,0.0,0.0,1.1724606324106785e-05,0.0,0.0,0.00042644881513263284,0.00023469286906416573,7.244281151629344e-05,0.0,0.0 +102308,50.0,the Greater Atlanta and Macon Area,G1301990970500,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,38816.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,14029.891188970922,0.0,0.0,0.0019094003516869065,0.0,0.0,0.0019094003516869065,0.0011939802683877758,0.0002490229261446416,0.00018801275249823995,0.0,0.0002783844046562491,0.0011939802683877758,0.0002490229261446416,0.00018801275249823995,0.0,0.0002783844046562491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022753971319285733,6.871960790760078e-05,0.00022753971319285733,0.00014228442326768445,2.967560215611036e-05,2.2405132450223874e-05,0.0,3.317455531883865e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00014228442326768445,2.967560215611036e-05,2.2405132450223874e-05,0.0,3.317455531883865e-05 +102309,50.0,the Greater Atlanta and Macon Area,G1301350050220,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,5498.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013200876039530858,0.0,0.0,0.0013200876039530858,0.0006517317410657426,0.0002373693016318123,0.000391452580008142,0.0,3.953398124738895e-05,0.0006517317410657426,0.0002373693016318123,0.000391452580008142,0.0,3.953398124738895e-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.00015731509882317533,6.171310586618543e-05,0.00015731509882317533,7.76669994816504e-05,2.828734625791073e-05,4.664948078003188e-05,0.0,4.711272303582345e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.76669994816504e-05,2.828734625791073e-05,4.664948078003188e-05,0.0,4.711272303582345e-06 +102310,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,13038.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031305454481065256,0.0,0.0,0.003130545448106525,0.0012982529364859087,0.0009702366820358154,0.0007639652401299827,0.0,9.80905894548186e-05,0.0012982529364859087,0.0009702366820358154,0.0007639652401299827,0.0,9.80905894548186e-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.0003730619504253098,0.0001167369422099122,0.0003730619504253098,0.00015471066645071695,0.00011562150908666372,9.104048072913758e-05,0.0,1.1689294158791507e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00015471066645071697,0.00011562150908666374,9.104048072913758e-05,0.0,1.1689294158791508e-05 +102311,35.0,Eastern Counties in South Carolina and Georgia,G1300510002700,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,209564.0,,14343.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.010534050978688871,0.002439165820556664,0.0,0.012973199068884115,0.00625885304200148,0.003508554839245729,0.0018290995448154873,0.0,0.00137667391246,0.00571818340085839,0.003508554839245729,0.0010328999348865962,0.0,0.0002743773429753171,0.00054066964114309,0.000796199609928891,0.0011022965694846827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001629702289765221,0.0,0.0,0.0012553221723268567,0.0005211830871057994,0.0014182924013033788,0.0006814246886644897,0.00041810759141380636,0.00012308865722040542,0.0,3.2697009243438855e-05,3.612425792258533e-05,5.3197216707274113e-05,7.364875434666263e-05,0.0,0.0,0.0,0.0006842478607790898,0.0003835720581821333,0.0001999659430079503,0.0,0.00015050460096597876 +102312,85.0,Rural Climate Zone 3A,G1301750950800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,11414.0,,515.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.001068209118626294,0.00014989371322530524,0.0,0.001218102831851599,0.0009366306858619529,0.00021583479760466448,6.566772198441944e-05,0.0,0.0,0.0007867369726366478,0.00021583479760466448,6.566772198441944e-05,0.0,0.0,0.00014989371322530524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0014199594233723e-05,0.0,0.0,0.00012729796278933994,4.33554885685715e-05,0.00013731216238357366,9.375506361197314e-05,2.572092819190337e-05,7.825590592583038e-06,0.0,0.0,1.0014199594233723e-05,0.0,0.0,0.0,0.0,0.0,0.00010558286334087026,2.433024700522827e-05,7.4024759393897435e-06,0.0,0.0 +102313,35.0,Eastern Counties in South Carolina and Georgia,G1300510003501,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,13247.0,,154.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.001448106093210278,5.715392506382211e-05,0.0,0.0015052600182741001,0.0009400755091345004,0.00014604280919698005,0.00038171072257878755,0.0,3.746972578760406e-05,0.0009400755091345004,0.00014604280919698005,0.00032455679751496546,0.0,3.746972578760406e-05,0.0,5.715392506382211e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.818455383072846e-06,0.0,0.0,0.00017256939804314607,5.741170766154681e-05,0.00017638785342621893,0.00011202788627648416,1.7403779867939035e-05,3.867711864522615e-05,0.0,4.465230865560373e-06,0.0,3.818455383072846e-06,0.0,0.0,0.0,0.0,0.00011015897526124273,1.7113440408871193e-05,4.4729238914245184e-05,0.0,4.390739420371038e-06 +102314,50.0,the Greater Atlanta and Macon Area,G1300670030412,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,15095.0,,1770.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013960088112699044,0.0005209560669035047,0.0,0.001916964878173409,0.0007416450257902856,0.0006613917053217927,0.0005139281470613308,0.0,0.0,0.00022068895888678074,0.0006613917053217927,0.0005139281470613308,0.0,0.0,0.0005209560669035047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.480789535041074e-05,0.0,0.0,0.00016635976424262726,8.306015342455822e-05,0.000201167659593038,2.629909129152156e-05,7.881681496642763e-05,6.124385798467805e-05,0.0,0.0,3.480789535041074e-05,0.0,0.0,0.0,0.0,0.0,7.782875721187514e-05,6.940691660486307e-05,5.393198577629979e-05,0.0,0.0 +102315,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,14162.0,,1523.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0012964210388338587,0.00044819101037165136,0.0,0.0017446120492055103,0.0007895821908272973,0.0004285496623411217,0.0005264801960370913,0.0,0.0,0.0003413911804556458,0.0004285496623411217,0.0005264801960370913,0.0,0.0,0.00044819101037165136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9944882219926378e-05,0.0,0.0,0.0001544924238871003,7.85866372796098e-05,0.00018443730610702669,4.0683041529249905e-05,5.106957856116915e-05,6.273980379668124e-05,0.0,0.0,2.9944882219926378e-05,0.0,0.0,0.0,0.0,0.0,8.347323537779623e-05,4.530551379102715e-05,5.5658556938203293e-05,0.0,0.0 +102316,85.0,Rural Climate Zone 3A,G1301750950300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,152543.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,240343.828889517,0.0,0.0,0.01680142989138736,0.0,0.0,0.016801429891387363,0.01182857307064032,0.0038614260701208265,0.0011114307506262149,0.0,0.0,0.01182857307064032,0.0038614260701208265,0.0011114307506262149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002002194127824619,0.0007136422842463316,0.002002194127824619,0.0014095883324026337,0.0004601587277156688,0.00013244706770631676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014095883324026334,0.0004601587277156687,0.00013244706770631674,0.0,0.0 +102317,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,113731.0,,6952.0,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,215998.51729091106,0.0,0.0,0.018026138617049818,0.0036403206767848485,0.0,0.021666459293834664,0.011242793020001317,0.0011094024666008532,0.00923766857763548,0.0,7.654063570564425e-05,0.007602472343216468,0.0011094024666008532,0.00923766857763548,0.0,7.654063570564425e-05,0.0036403206767848485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024322626563046674,0.0,0.0,0.0021481385422270154,0.000994811293763568,0.002391364807857482,0.0009059712789089273,0.00013220525193858969,0.0011008343125226588,0.0,9.121193013035914e-06,0.00024322626563046674,0.0,0.0,0.0,0.0,0.0,0.001240886625979879,0.00012244668039205147,0.0010195775527335196,0.0,8.447923129258214e-06 +102318,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,63159.0,,5767.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005167490845944155,0.0016802067736975553,0.0,0.006847727993241149,0.004487152592137952,0.0019918702775283265,0.00036870512357486935,0.0,0.0,0.002806945818440397,0.0019918702775283265,0.00036870512357486935,0.0,0.0,0.0016802067736975553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011226227577433256,0.0,0.0,0.0006158014316325655,0.00024848265331387767,0.0007280637074068981,0.0003344991418547585,0.00023736792286550956,4.3937986484460284e-05,0.0,0.0,0.00011226227577433256,0.0,0.0,0.0,0.0,0.0,0.0004770827572527649,0.0002117795070660322,3.920144308810084e-05,0.0,0.0 +102319,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302670950100,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,38941.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00476561775178326,0.0,0.0,0.004765617751783261,0.003215258115682095,0.0012682192709238896,0.00028217073877671444,0.0,0.0,0.003215258115682095,0.0012682192709238896,0.00028217073877671444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005679096123504097,0.00017238702414575286,0.0005679096123504097,0.00038315620034784785,0.00015113128077806889,3.362575078862528e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038315620034784774,0.00015113128077806886,3.362575078862527e-05,0.0,0.0 +102320,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970302,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,55443.0,,8310.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004772602054568356,0.002446084380352102,0.0,0.0072186864349204575,0.003289342692594082,0.001646098412989884,0.0022832453293364914,0.0,0.0,0.0008432583122419794,0.001646098412989884,0.0022832453293364914,0.0,0.0,0.002446084380352102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016343370808629063,0.0,0.0,0.0005687409552185216,0.00032248941280061094,0.0007321746633048122,0.00010048932060895181,0.0001961620879099737,0.0002720895466995959,0.0,0.0,0.00016343370808629063,0.0,0.0,0.0,0.0,0.0,0.0003336304187966511,0.00016695995347119333,0.00023158429103696778,0.0,0.0 +102321,50.0,the Greater Atlanta and Macon Area,G1300670031108,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,41747.0,,1275.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.01070940815020796,0.0010114248047579902,0.0,0.01172083295496595,0.00663616747562081,0.00312277098317503,0.0018040893994755128,0.0,0.00015780509669459857,0.00562474267086282,0.00312277098317503,0.0018040893994755128,0.0,0.00015780509669459857,0.0010114248047579902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.757642492031296e-05,0.0,0.0,0.0012762178116577955,0.000490915412695498,0.0013437942365781086,0.0006702888415367173,0.0003721340987810526,0.00021498956741031072,0.0,1.880530392971498e-05,6.757642492031296e-05,0.0,0.0,0.0,0.0,0.0,0.0007608370190898473,0.0003580258899232943,0.0002068389632888423,0.0,1.809236427612484e-05 +102322,50.0,the Greater Atlanta and Macon Area,G1300670030106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,57163.0,,5716.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005093185681954159,0.0016824349068463645,0.0,0.006775620588800523,0.002608248260029164,0.0016688701008627797,0.0024985022279085793,0.0,0.0,0.0009258133531827999,0.0016688701008627797,0.0024985022279085793,0.0,0.0,0.0016824349068463645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011241083311782262,0.0,0.0,0.000606944410396242,0.00027980765180448514,0.0007193552435140648,0.00011032726369577503,0.00019887580046118442,0.0002977413462392826,0.0,0.0,0.00011241083311782262,0.0,0.0,0.0,0.0,0.0,0.0002769129465926258,0.0001771808858045889,0.0002652614111168501,0.0,0.0 +102323,50.0,the Greater Atlanta and Macon Area,G1301210007200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,135096.0,,41804.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.06265535248618344,0.03697570632369032,0.0,0.09963105880987375,0.08100252822892312,0.011290988212294701,0.0020747037528908775,0.0006506849355675185,0.004612153680197544,0.04402682190523279,0.011290988212294701,0.0020747037528908775,0.0006506849355675185,0.004612153680197544,0.03697570632369032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002470502875704471,0.0,0.0,0.0074665133128086186,0.004075236551591297,0.009937016188513089,0.005246588500935568,0.0013455245315307117,0.00024723830569000027,7.754082518217806e-05,0.0005496211494701607,0.002470502875704471,0.0,0.0,0.0,0.0,0.0,0.00807904125416689,0.0011261421286708603,0.00020692708704609652,6.489810321794191e-05,0.000460007615411302 +102324,50.0,the Greater Atlanta and Macon Area,G1300630040204,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,12729.0,,1294.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004278519631608112,0.0010263947851048049,0.0,0.005304997123786658,0.0028417323466088636,0.0009358305393602634,0.001269801703119587,0.0,0.00025763253469794265,0.002072970096202001,0.0009358305393602634,0.001269801703119587,0.0,0.0,0.0007687622504068624,0.0,0.00025763253469794265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.857963435044921e-05,0.0,0.0,0.0005098672536026787,0.00019449640136038306,0.0005784468879531278,0.00024703394182013763,0.00011152206557990971,0.00015132110232862165,0.0,0.0,5.136564877416805e-05,0.0,1.7213985576281177e-05,0.0,0.0,0.0,0.0003098571392095899,0.00010204119823500421,0.00013845678448979408,0.0,2.8091766018739565e-05 +102325,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,31767.0,,1878.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00679132594595575,0.0014897198121924052,0.0,0.008281045758148156,0.004971604909543508,0.0017943299647742747,0.001311486068284198,0.0,0.00020362481554617488,0.0036855099128972786,0.0017943299647742747,0.001311486068284198,0.0,0.0,0.0012860949966462302,0.0,0.00020362481554617488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.953587257877601e-05,0.0,0.0,0.000809307809570071,0.00030035782414592166,0.000908843682148847,0.0004391943456243462,0.0002138264699697087,0.0001562869939760162,0.0,0.0,8.593064726848582e-05,0.0,1.3605225310290171e-05,0.0,0.0,0.0,0.0005456329845458111,0.00019692747749532318,0.0001439354233990938,0.0,2.2347796708618838e-05 +102326,85.0,Rural Climate Zone 3A,G1300430950200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,38735.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004059218949659466,0.0,0.0,0.004059218949659466,0.0029504914493832116,0.0009033108472787393,0.00020541665299751556,0.0,0.0,0.0029504914493832116,0.0009033108472787393,0.00020541665299751556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00048372877121040825,9.47856937041375e-05,0.00048372877121040825,0.0003516039959846685,0.00010764569529116785,2.4479079934571888e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003516039959846685,0.00010764569529116785,2.4479079934571888e-05,0.0,0.0 +102327,50.0,the Greater Atlanta and Macon Area,G1300670030312,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,4635.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010674174936795016,0.0,0.0,0.0010674174936795016,0.00037830215528359215,0.00030378308184447614,0.00034248999235447205,0.0,4.2924971270700556e-05,0.00037830215528359215,0.00030378308184447614,0.00034248999235447205,0.0,4.2924971270700556e-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.00012720549226043085,3.676235375950192e-05,0.00012720549226043085,4.508274613352012e-05,3.620221393712711e-05,4.081496539984846e-05,0.0,5.115423096479438e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.508274613352012e-05,3.620221393712711e-05,4.081496539984846e-05,0.0,5.115423096479438e-06 +102328,50.0,the Greater Atlanta and Macon Area,G1300890021102,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,28562.0,,10031.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005947235156527514,0.006900608731238033,0.0,0.012847772167794534,0.0027790054369128967,0.000712322752127049,0.006790662015671101,0.00036964473061445937,0.002196208952440041,0.0019492770922332927,0.000712322752127049,0.002637788813983159,0.00036964473061445937,0.0002782017675695553,0.000829728344679604,0.004152873201687942,0.0019180071848704861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004610569307195016,0.0,0.0,0.000708716397099858,0.0006509364596995095,0.0011697733278193596,0.00023229023258658084,8.488563192354101e-05,0.00031433836654409125,4.404959191843841e-05,3.315257412720656e-05,5.543742861368081e-05,0.0002774698648497341,0.0001281496372560866,0.0,0.0,0.0,0.0002530249132308306,6.48560812999022e-05,0.0006182811463671605,3.3655682946002406e-05,0.00019996203398767667 +102329,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,15422.0,,1762.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013740964323733446,0.0005186850360374747,0.0,0.0018927814684108189,0.0009930542805810668,0.00036698631210792997,0.0005327408757218226,0.0,0.0,0.00047436924454359196,0.00036698631210792997,0.0005327408757218226,0.0,0.0,0.0005186850360374747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.465509699794022e-05,0.0,0.0,0.0001637483779427034,8.360374920531777e-05,0.00019840347494064363,5.652965287578431e-05,4.3733039340663054e-05,6.348568572625604e-05,0.0,0.0,3.465509699794022e-05,0.0,0.0,0.0,0.0,0.0,0.00010409306270173245,3.846791655192894e-05,5.58424956869823e-05,0.0,0.0 +102330,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,5938.0,,750.0,,8.72605822017302,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0012206737013184382,0.0005947465672593597,0.0,0.0018155029756515373,0.0011659216185030165,0.00024597083730070027,0.0003683773064348753,0.0,3.523321341294496e-05,0.0006063255575828628,0.00024597083730070027,0.0003683773064348753,0.0,0.0,0.0005595960609201539,0.0,3.523321341294496e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.973948445092158e-05,0.0,0.0,0.00014546953227321757,9.069165003130316e-05,0.00018520901672413917,7.225673427027293e-05,2.9312716917172505e-05,4.390008108577214e-05,0.0,0.0,3.739081515713188e-05,0.0,2.3541955744809615e-06,0.0,0.0,0.0,0.00011894180259487902,2.5092780089179986e-05,3.758010844559773e-05,0.0,3.5943255944824055e-06 +102331,50.0,the Greater Atlanta and Macon Area,G1300210013800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,11623.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,24284.436554246196,0.0,0.0,0.000986394636014465,0.0,0.0,0.0009863946360144653,0.0005684942670586464,0.00021648448282399546,0.0002014158861318233,0.0,0.0,0.0005684942670586464,0.00021648448282399546,0.0002014158861318233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011754590710627306,4.806840036817035e-05,0.00011754590710627306,6.774588168496943e-05,2.57978541030973e-05,2.4002171318206337e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.77458816849694e-05,2.5797854103097293e-05,2.400217131820633e-05,0.0,0.0 +102332,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,33913.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029517671405595975,0.0,0.0,0.0029517671405595975,0.0021000914123250366,0.0006377240937950373,0.00021389088724064836,0.0,0.0,0.0021000914123250366,0.0006377240937950373,0.00021389088724064836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003517564441208355,8.12029162173056e-05,0.0003517564441208355,0.00025026387663767784,7.599636044494929e-05,2.5488967910713137e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025026387663767784,7.599636044494929e-05,2.5488967910713137e-05,0.0,0.0 +102333,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock 90.1-2004,gen3_t5_cfl,50001_100000,Electricity,39995.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.00482250335440842,0.0,0.0,0.00482250335440842,0.0013506495731618994,0.0014039267296947113,0.0020679577411581067,0.0,0.0,0.0013506495731618994,0.0014039267296947113,0.0020679577411581067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005746886818432027,0.00016969116772490498,0.0005746886818432027,0.00016095437696750215,0.0001673033158090287,0.0002464346462895069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016095437696750215,0.0001673033158090287,0.0002464346462895069,0.0,0.0 +102334,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,3654.0,,286.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000555791535528146,0.00022694821034065953,0.0,0.0007827397458688054,0.0005927615974896162,0.0001050379836489204,7.35265885542443e-05,0.0,1.1496283249763732e-05,0.00037730967039872047,0.0001050379836489204,7.35265885542443e-05,0.0,0.0,0.0002154519270908958,0.0,1.1496283249763732e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5165839173894192e-05,0.0,0.0,6.62284939141131e-05,3.681734398052834e-05,8.139433308800729e-05,4.496047458871785e-05,1.2516396915316014e-05,8.761477840721211e-06,0.0,0.0,1.4397598778423604e-05,0.0,7.682403954705879e-07,0.0,0.0,0.0,6.163917849130898e-05,1.092252779181839e-05,7.645769454272874e-06,0.0,1.195457766191147e-06 +102335,50.0,the Greater Atlanta and Macon Area,G1300890023113,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,5265.0,,656.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.000915236477999176,0.000520310200893983,0.0,0.0014355466788931591,0.0008298827779002106,0.00021354966439489178,0.00028691083880165745,0.0,0.00010512069072265973,0.00041477597480262673,0.00021354966439489178,0.00028691083880165745,0.0,0.0,0.0004151068030975839,0.0,0.00010512069072265973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4762819159161784e-05,0.0,0.0,0.00010906814595440417,6.260889711698901e-05,0.00014383096511356595,4.942858774275591e-05,2.544857697942089e-05,3.4190981232227364e-05,0.0,0.0,2.773399926241185e-05,0.0,7.023294094944305e-06,0.0,0.0,0.0,8.314800391481941e-05,2.1396067979675474e-05,2.8746305120640677e-05,0.0,1.053230147256682e-05 +102336,50.0,the Greater Atlanta and Macon Area,G1301530021202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,31074.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027686014529346614,0.0,0.0,0.0027686014529346614,0.0008627155226347229,0.0008181235246841608,0.0010877930952220751,0.0,0.0,0.0008627155226347229,0.0008181235246841608,0.0010877930952220751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032993034233740385,0.00011313691124805832,0.00032993034233740385,0.00010280859580600089,9.749463010908086e-05,0.00012963077365955327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010280859580600089,9.749463010908086e-05,0.00012963077365955327,0.0,0.0 +102337,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,NaturalGas,285702.0,,42573.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.0,0.06970029283146312,0.036864420229322646,0.0,0.10656471306078578,0.039951170827018594,0.0049289063096080174,0.04377704070006,0.0006846806625406111,0.01722300484118177,0.03631470760350385,0.0049289063096080174,0.018953304099917707,0.0006846806625406111,0.008818784435516156,0.0036364632235147435,0.024823736600142293,0.008404220405665616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024630664878984424,0.0,0.0,0.008306048497565423,0.004623645403340228,0.010769114985463863,0.004327553160486185,0.0005873681900670577,0.00225862843106964,8.159206450048659e-05,0.0010509174098893765,0.00024296735563983894,0.0016585779280910704,0.0005615212041675335,0.0,0.0,0.0,0.004037347261420948,0.0004981007059106859,0.004423978364708424,6.919180441106751e-05,0.001740505972404667 +102338,50.0,the Greater Atlanta and Macon Area,G1301350050524,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,41528.0,,1332.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.009971661052453338,0.001056996402388349,0.0,0.011028657454841688,0.006347106252901929,0.0021541884426140015,0.0022471511934969825,0.0,0.00028021156582877353,0.005570404123416095,0.0021541884426140015,0.0022471511934969825,0.0,0.0,0.0007767021294858358,0.0,0.00028021156582877353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.062125353839857e-05,0.0,0.0,0.0011883081730901773,0.0004638301531412812,0.0012589294266285758,0.0006638168618499125,0.0002567114665519862,0.0002677897007685427,0.0,0.0,5.189391173545389e-05,0.0,1.8721815883262466e-05,0.0,0.0,0.0,0.0007245268853833648,0.00024590220813498634,0.00025651397508360505,0.0,3.198635802661958e-05 +102339,81.0,the Columbus-Albany Area,G1302150000200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,43788.0,,13648.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.008436850510392422,0.009388287645885517,0.0,0.017825066436306925,0.005912666130497991,0.0011181143481333762,0.005884336741946825,0.00037875316693344196,0.004531196048795289,0.004431218409199528,0.0011181143481333762,0.001959389608146494,0.00037875316693344196,0.0005493749779795806,0.0014814477212984618,0.003924947133800331,0.003981821070815709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006272682109355577,0.0,0.0,0.0010054020343746397,0.0008561925802338762,0.0016326702453101974,0.0005280591374565363,0.00013324337546244885,0.00023349640908493281,4.5135231931827606e-05,6.546788043889403e-05,9.89813155267672e-05,0.00026224106668851,0.00026604103682855286,0.0,0.0,0.0,0.000541565109797004,0.00010241263523896231,0.0005389703060176975,3.4691541160805644e-05,0.0004150306530957279 +102340,50.0,the Greater Atlanta and Macon Area,G1300590130500,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,26782.0,,3193.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023482152258687285,0.0009398078136545523,0.0,0.0032880230395232815,0.0013180572112737393,0.0008417852111396897,0.0011281499275035544,0.0,0.0,0.00037824939761918675,0.0008417852111396897,0.0011281499275035544,0.0,0.0,0.0009398078136545523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.279308251730014e-05,0.0,0.0,0.0002798316170112157,0.0001420676191899019,0.0003426246995285158,4.5075144477072895e-05,0.00010031368258512232,0.00013443913273648682,0.0,0.0,6.279308251730014e-05,0.0,0.0,0.0,0.0,0.0,0.00013734665193816103,8.771727009434243e-05,0.0001175575795205085,0.0,0.0 +102341,50.0,the Greater Atlanta and Macon Area,G1302230120204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,31479.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002775843252616139,0.0,0.0,0.002775843252616139,0.0015145491623640571,0.0010108030156889428,0.00025052144816257706,0.0,0.0,0.0015145491623640571,0.0010108030156889428,0.00025052144816257706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003307907290488142,8.395859326980086e-05,0.0003307907290488142,0.00018048527096279761,0.00012045502431355166,2.985405332306182e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018048527096279761,0.00012045502431355166,2.985405332306182e-05,0.0,0.0 +102342,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,19504.0,,3509.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0009318546051537152,0.0005966621225076169,0.0,0.0015285167276613322,0.0006598176698858451,0.00019347370381561616,0.00046646807860016917,0.0,0.0002087572753597017,0.000623878227287398,0.00019347370381561616,6.191442207882438e-05,0.0,5.258825197187662e-05,3.5939442598447024e-05,0.00040455365652134476,0.0001561690233878251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.986562840131253e-05,0.0,0.0,0.00011104666420497602,6.809534356129664e-05,0.00015091229260628854,7.434592867516205e-05,2.3055752798004037e-05,7.378178956252758e-06,0.0,6.266803775557183e-06,2.4012726961090126e-06,2.7030014359703673e-05,1.0434341345499847e-05,0.0,0.0,0.0,6.514459113376123e-05,1.9101891182125073e-05,4.6054953730803564e-05,0.0,2.0610856559598665e-05 +102343,46.0,the Tallahassee-Valdosta Area,G1301850010202,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,95000.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007834566238973707,0.0,0.0,0.007834566238973705,0.00497504371990656,0.0020684724953103366,0.0007910196501573708,0.0,0.0,0.00497504371990656,0.0020684724953103366,0.0007910196501573708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009336290131511045,0.00022956634289285333,0.0009336290131511045,0.000592865643983427,0.00024649557813678893,9.426417147202533e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005928656439834271,0.000246495578136789,9.426417147202534e-05,0.0,0.0 +102344,50.0,the Greater Atlanta and Macon Area,G1300570090502,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,19801.0,,10826.0,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,43199.70345818221,0.0,0.0,0.003326132831930367,0.00566897508633266,0.0,0.008995107918263029,0.008336596400515895,0.0003149521593337101,0.00030632632449669746,0.0,3.723303391672565e-05,0.002704799754208586,0.0003149521593337101,0.00030632632449669746,0.0,0.0,0.005631796646307308,0.0,3.723303391672565e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037876825385744443,0.0,0.0,0.00039637125661752326,0.0005090228241876134,0.0007751395104749677,0.0003223277396447858,3.7532470733303105e-05,3.650454035093843e-05,0.0,0.0,0.00037628420469598364,0.0,2.487696810743335e-06,0.0,0.0,0.0,0.0007183932990735142,2.7140515136377414e-05,2.6397197162456874e-05,0.0,3.208499102619067e-06 +102345,50.0,the Greater Atlanta and Macon Area,G1300670030104,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,220540.0,,14743.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012623077621922335,0.0025072149476868264,0.0,0.015130274839247745,0.008725802338903367,0.0032630070639394176,0.0017146500618490466,0.0,0.001426797644194489,0.0075737189145511745,0.0032630070639394176,0.0015079495084140708,0.0,0.0002783844046562491,0.0011520834243521907,0.00020670055343497556,0.00114841323953824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016751686674909905,0.0,0.0,0.0015042671104526673,0.0006078836902967228,0.0016717839772017662,0.000902545053449304,0.0003888460765649081,0.00017969935048098927,0.0,3.317451706548006e-05,7.697521333745584e-05,1.381047488516206e-05,7.67299938914764e-05,0.0,0.0,0.0,0.0009641369171013433,0.00036053825756289526,0.00018945620818939285,0.0,0.0001576506352737322 +102346,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,191335.0,,10021.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.016872170004477886,0.002919358509959516,0.0,0.019791498140837964,0.013315573378314334,0.005538170253482478,0.0009377848826405877,0.0,0.0,0.01039621486835482,0.005538170253482478,0.0009377848826405877,0.0,0.0,0.002919358509959516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001950536886430386,0.0,0.0,0.002010622893242654,0.0008652975727910599,0.002205676581885692,0.0012388962185561328,0.0006599727181134413,0.00011175395657307979,0.0,0.0,0.0001950536886430386,0.0,0.0,0.0,0.0,0.0,0.0014839628696084637,0.0006172050416636654,0.00010451205561941301,0.0,0.0 +102347,50.0,the Greater Atlanta and Macon Area,G1300450911000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,19620.0,,10236.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004085241269020221,0.007041108154457615,0.0,0.011126349423477835,0.0037947753864069965,0.0005532478564144236,0.004181202590239109,0.0003727286893681307,0.0022243949010491764,0.0020595106876842868,0.0005532478564144236,0.0008239190270273399,0.0003727286893681307,0.00027583500852604016,0.0017352646987227093,0.003357283563211769,0.0019485598925231364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004704477468854162,0.0,0.0,0.00048682647308520864,0.0006201282170451124,0.0009572742199706249,0.00024542597568713424,6.592895864502554e-05,9.818406493570827e-05,4.4417007788202976e-05,3.2870466029137707e-05,0.00011594075106587872,0.00022431504435399253,0.0001301919514655449,0.0,0.0,0.0,0.00032648989436923564,4.7599611520558735e-05,0.0003597368099607278,3.20683408182971e-05,0.00019137956330180568 +102348,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,7672.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0023157153576268685,0.0,0.0,0.002315715357626868,0.0013345613418574646,0.00036018930613468386,0.0005515734747674413,0.0,6.930852779353962e-05,0.0013345613418574646,0.00036018930613468386,0.0005515734747674413,0.0,6.930852779353962e-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.0002759565549256422,7.247258433324174e-05,0.0002759565549256422,0.00015903550020644178,4.292263283335733e-05,6.572928550302183e-05,0.0,8.25928043957599e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001590355002064418,4.2922632833357345e-05,6.572928550302184e-05,0.0,8.259280439575992e-06 +102349,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,9912.0,,713.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032634557156055923,0.0005653028490081662,0.0,0.0038287585646137588,0.002346234267836673,0.0004024526208154699,0.0010107631481680761,0.0,6.922582071980031e-05,0.001850157239548307,0.0004024526208154699,0.0010107631481680761,0.0,0.0,0.0004960770282883658,0.0,6.922582071980031e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7771395154176444e-05,0.0,0.0,0.00038889968316469057,0.00016515249195928213,0.000426671078318867,0.00022047964702707,4.795949765014406e-05,0.0001204506824460359,0.0,0.0,3.3145988022640857e-05,0.0,4.625407131535579e-06,0.0,0.0,0.0,0.0002614608072440675,4.484871291771125e-05,0.00011263792037964431,0.0,7.714421025919506e-06 +102350,50.0,the Greater Atlanta and Macon Area,G1300150960102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,218888.0,,15194.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011267325535937995,0.0025838101090214544,0.0,0.01385113564495945,0.007560208379149096,0.003416232847331514,0.001368376103315415,0.0,0.001506336045524846,0.006400146292157881,0.003416232847331514,0.001176285367690563,0.0,0.00027467875911945804,0.001160062086991215,0.00019209073562485203,0.0012316572864053878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017263491611834334,0.0,0.0,0.001342705337637888,0.0005008982772256189,0.001515340253756231,0.0007626930242437805,0.0004071058446030814,0.000140175646540595,0.0,3.273293514322383e-05,7.750849041907506e-05,1.2834367322862674e-05,8.229205837640562e-05,0.0,0.0,0.0,0.0008271009957135768,0.0003737422896186549,0.00014970291568738834,0.0,0.00016479599247145056 +102351,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,11736.0,,572.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0006041088743040391,9.733968419608988e-05,0.0,0.000701448558500129,0.00038884455630317806,0.0001501938915892673,3.285435971135784e-05,0.0,0.0001295557508963258,0.00036762131368337484,0.0001501938915892673,3.285435971135784e-05,0.0,5.3439309320039154e-05,2.122324261980321e-05,0.0,7.611644157628667e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.503594359091318e-06,0.0,0.0,7.199039074125816e-05,2.8313340138873432e-05,7.849398510034949e-05,4.380866287946839e-05,1.7898291851643517e-05,3.915185314732078e-06,0.0,6.368250695414185e-06,1.417996802883845e-06,0.0,5.085597556207473e-06,0.0,0.0,0.0,4.351275434092728e-05,1.680710145556495e-05,3.676491441053223e-06,0.0,1.4497637862804045e-05 +102352,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,10108.0,,100.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0025671448617943637,7.939879078973511e-05,0.0,0.0026465436525840986,0.0010523648062589477,0.0005710923441699178,0.0009436877113654977,0.0,7.939879078973511e-05,0.0010523648062589477,0.0005710923441699178,0.0009436877113654977,0.0,0.0,0.0,0.0,7.939879078973511e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.306412283764523e-06,0.0,0.0,0.0003059181851204343,9.41512953005596e-05,0.0003112245974041988,0.00012540684260035456,6.805519083271363e-05,0.00011245615168736605,0.0,0.0,0.0,0.0,5.306412283764523e-06,0.0,0.0,0.0,0.00012375454787246556,6.715853136272985e-05,0.00011097448846469913,0.0,9.33702970430422e-06 +102353,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,261603.0,,2.0,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,863994.0691636442,0.0,0.0,0.03899084803116954,1.0918778274699604e-06,0.0,0.03899193990899701,0.021561911991854414,0.00594161697985191,0.011286358945317368,0.0,0.0002020519919733162,0.021560820114026946,0.00594161697985191,0.011286358945317368,0.0,0.0002020519919733162,1.0918778274699604e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.384459315580962e-08,0.0,0.0,0.00464646260196731,0.0014270498083189867,0.004646536446560466,0.0025693604880685068,0.000708050798741957,0.001344973177035651,0.0,2.4078138121194704e-05,7.384459315580962e-08,0.0,0.0,0.0,0.0,0.0,0.0025694594873071,0.0007080422239267495,0.0013449568888025574,0.0,2.4077846524058882e-05 +102354,50.0,the Greater Atlanta and Macon Area,G1301430010302,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,12498.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011135723645121455,0.0,0.0,0.0011135723645121455,0.00038340525147720085,0.0002470513306965074,0.00048311578233843714,0.0,0.0,0.00038340525147720085,0.0002470513306965074,0.00048311578233843714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013270090596372478,4.4357529989845565e-05,0.00013270090596372478,4.568919438348666e-05,2.9440327766514667e-05,5.757138381372344e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.568919438348666e-05,2.9440327766514667e-05,5.757138381372344e-05,0.0,0.0 +102355,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,99206.0,,19185.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,357187.66821064625,0.0,0.0,0.028384545499394242,0.016612263190062673,0.0,0.04499680868945692,0.02173779851905537,0.0035032104996342134,0.014143296054097402,0.000636651902984756,0.004975941993308396,0.014797823322480762,0.0035032104996342134,0.006888606090959422,0.000636651902984756,0.0025583439629583123,0.006939975196574611,0.007254689963137978,0.002417598030350083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011099367957620062,0.0,0.0,0.0033825276120550835,0.0021013905191400854,0.004492464407817089,0.001763426016022419,0.0004174703535805038,0.0008209009480788883,7.586849122383549e-05,0.00030487256158551483,0.0004636896095507118,0.00048471705750177045,0.00016153012870952384,0.0,0.0,0.0,0.0021702936051559776,0.00034975921495484553,0.0014120613435223447,6.356308586386894e-05,0.0004967961718035828 +102356,50.0,the Greater Atlanta and Macon Area,G1301390000400,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,20854.0,,4254.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00481619831798735,0.0033747794368587,0.0,0.00819097775484605,0.005835480294750574,0.0013560651810296846,0.0008485745765652941,0.0,0.00015085770250049675,0.0024607008578918744,0.0013560651810296846,0.0008485745765652941,0.0,0.00015085770250049675,0.0033747794368587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022548391799123458,0.0,0.0,0.0005739353382554084,0.0003817898052396355,0.0007994192562466429,0.00029323609327817885,0.00016159918611821124,0.00010112269148407218,0.0,1.7977367374946163e-05,0.00022548391799123458,0.0,0.0,0.0,0.0,0.0,0.0005695285052277771,0.00013234862196999028,8.281878881508296e-05,0.0,1.4723340233792528e-05 +102357,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,77206.0,,3060.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,70149.4559448546,0.0,0.0,0.004252893142020966,0.0005204392987628099,0.0,0.004773332440783776,0.0024356729393569137,0.0017570433560043924,0.00045723056030032164,0.0,0.00012338558512214743,0.0020386192257162514,0.0017570433560043924,0.00045723056030032164,0.0,0.0,0.0003970537136406624,0.0,0.00012338558512214743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.47724209180745e-05,0.0,0.0,0.000506809007508377,0.00018966877555060745,0.0005415814284264515,0.0002429382897642661,0.0002093834407940514,5.448727695005951e-05,0.0,0.0,2.6528586312791206e-05,0.0,8.243834605283292e-06,0.0,0.0,0.0,0.0002763510076117753,0.00019935381881673765,5.187729600643839e-05,0.0,1.3999305991500104e-05 +102358,50.0,the Greater Atlanta and Macon Area,G1300890023410,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,25464.0,,4703.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0051007960586012735,0.0032354313324562452,0.0,0.00833622739105752,0.002732028855897672,0.00028458484498994466,0.0034969223467791635,0.00036749313148399105,0.0014551982119067482,0.0017206338246355249,0.00028458484498994466,0.001272886045585065,0.00036749313148399105,0.0014551982119067482,0.001011395031262147,0.0022240363011940983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021617123003381743,0.0,0.0,0.0006078504181735462,0.00036798098290479435,0.0008240216482073637,0.0002050440711238811,3.3913337260621074e-05,0.00015168697321106422,4.379333168433024e-05,0.0001734127048936496,6.757507283953036e-05,0.00014859615719428707,0.0,0.0,0.0,0.0,0.00027005632346375905,2.8130719331745885e-05,0.00034566472106281897,3.632605994351459e-05,0.0001438438244055252 +102359,50.0,the Greater Atlanta and Macon Area,G1301350050606,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,6239.0,,241.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001497990519566336,0.0001908879261903215,0.0,0.0016888784457566575,0.0008351760306195264,0.00043057302588683446,0.0003855803777726512,0.0,3.763171855138487e-05,0.0006819198229805898,0.00043057302588683446,0.0003855803777726512,0.0,0.0,0.00015325620763893664,0.0,3.763171855138487e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2753278139211732e-05,0.0,0.0,0.0001785167054649384,6.426062828561404e-05,0.00019126998360415013,8.126492030468295e-05,5.131172530093139e-05,4.5949916126189426e-05,0.0,0.0,1.0239092024245815e-05,0.0,2.5141861149659176e-06,0.0,0.0,0.0,9.458591059915319e-05,4.876354234295816e-05,4.3668005071623307e-05,0.0,4.261892386870142e-06 +102360,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6027.0,,228.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011626960426271836,0.00018079766319412598,0.0,0.00134349370582131,0.0004897912906841785,0.0002465497868168754,0.0005668742834092132,0.0,4.0278344911042716e-05,0.0003089936274900525,0.0002465497868168754,0.0005668742834092132,0.0,4.0278344911042716e-05,0.00018079766319412598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2078349078609104e-05,0.0,0.0,0.00013856102438884084,5.418920115399738e-05,0.00015063937346744996,3.6823444808415805e-05,2.938187606367439e-05,6.755564526683137e-05,0.0,4.800058249919299e-06,1.2078349078609104e-05,0.0,0.0,0.0,0.0,0.0,5.49179001276926e-05,2.7644420851173868e-05,6.356083881715723e-05,0.0,4.516213671426258e-06 +102361,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,8656.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018031796216643804,0.0,0.0,0.0018031796216643804,0.00116435018410197,0.00019651200720459443,0.0003956706407688467,0.0,4.656408251523008e-05,0.00116435018410197,0.00019651200720459443,0.0003956706407688467,0.0,4.656408251523008e-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.0002148801617541404,7.476793028813426e-05,0.0002148801617541404,0.0001387525418390418,2.3417817829916415e-05,4.715102714575762e-05,0.0,5.548918955489453e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001387525418390418,2.3417817829916415e-05,4.715102714575762e-05,0.0,5.548918955489453e-06 +102362,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7979.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005729675797937504,0.0,0.0,0.0005729675797937504,0.0003353549113922179,0.00020307788584080869,3.453478256072383e-05,0.0,0.0,0.0003353549113922179,0.00020307788584080869,3.453478256072383e-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,6.827985208757616e-05,1.8313570154760802e-05,6.827985208757616e-05,3.996383836402292e-05,2.420054553952153e-05,4.115468184031706e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.996383836402292e-05,2.420054553952153e-05,4.115468184031706e-06,0.0,0.0 +102363,35.0,Eastern Counties in South Carolina and Georgia,G1301270000501,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,63224.0,,6794.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003084426863716646,0.0011553458108534806,0.0,0.0042397726745701265,0.001708107558485047,0.0007616254051597882,0.0012638378923827836,0.0,0.0005061840881810873,0.0016282677410105492,0.0007616254051597882,0.0005942153326316497,0.0,0.00010030065455323872,7.983981747449777e-05,0.0006696225597511341,0.00040588343362784875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.719342110278317e-05,0.0,0.0,0.00036756590945082686,0.00017713571736816582,0.00044475933055361,0.00019403790055596125,9.07616056653985e-05,7.081163172246405e-05,0.0,1.1952658609953425e-05,5.334427660689246e-06,4.474024638268948e-05,2.7118747059404444e-05,0.0,0.0,0.0,0.00017918337433088838,7.9895794263506e-05,0.00013257873430712753,0.0,5.309956770716156e-05 +102364,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,69455.0,,3162.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005928045775865461,0.0009212312709470128,0.0,0.006849246673213037,0.004067298327109909,0.002279842373797652,0.0005020755987060376,0.0,0.0,0.0031460670561628957,0.002279842373797652,0.0005020755987060376,0.0,0.0,0.0009212312709470128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.15504316538486e-05,0.0,0.0,0.0007064329126331902,0.00026170253740809144,0.0007679833442870388,0.00037491028204822023,0.0002716840843273194,5.9831307140029166e-05,0.0,0.0,6.15504316538486e-05,0.0,0.0,0.0,0.0,0.0,0.00045605269024449256,0.00025563117437776107,5.6296073973679597e-05,0.0,0.0 +102365,50.0,the Greater Atlanta and Macon Area,G1300590150500,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,53569.0,,4672.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.012066207771051848,0.0036233716893007283,0.0,0.015689579460352574,0.007256284951003542,0.002137554800416531,0.0037457949148664797,0.00042290189544840016,0.00212712375940069,0.007256284951003542,0.002137554800416531,0.002249546984966442,0.00042290189544840016,0.0,0.0,0.0014962479299000374,0.00212712375940069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002420933904556198,0.0,0.0,0.001437909204571384,0.0006664094093826316,0.0016800025950270037,0.0008647189837947946,0.00025472872514002313,0.0002680746409455436,5.039649073131534e-05,0.0,0.0,9.997090151731285e-05,0.00014212248893830692,0.0,0.0,0.0,0.0007769856151177808,0.00022888424898748067,0.0004010907490106319,4.528332219423204e-05,0.0002277673180958829 +102366,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,12267.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005864671646910865,0.0,0.0,0.0005864671646910865,0.0002959197321006813,0.00014125778943356067,3.6311780188268135e-05,0.0,0.0001129601326071564,0.0002959197321006813,0.00014125778943356067,3.6311780188268135e-05,0.0,0.0001129601326071564,0.0,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.988742161555896e-05,1.7039496532872534e-05,6.988742161555896e-05,3.526381070724912e-05,1.6833240257918137e-05,4.327159037054894e-06,0.0,1.3461098742713249e-05,0.0,0.0,0.0,0.0,0.0,0.0,3.526381070724912e-05,1.6833240257918137e-05,4.327159037054894e-06,0.0,1.3461098742713249e-05 +102367,46.0,the Tallahassee-Valdosta Area,G1301850010302,ComStock 90.1-2004,gen5_led,_1000,Electricity,11659.0,,2800.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0022767504798905727,0.0019261832615662662,0.0,0.004202933741456839,0.000735560022736107,0.00014351166200223775,0.0024108668256897655,0.00038492108444078453,0.0005280741465879442,0.000735560022736107,0.00014351166200223775,0.00048468356412349945,0.00038492108444078453,0.0005280741465879442,0.0,0.0019261832615662662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001286978333550786,0.0,0.0,0.0002713174560531689,0.00021085630035278031,0.00040001528940824746,8.765575143428258e-05,1.710210204953193e-05,5.7759123263736505e-05,4.587055557213286e-05,6.292992373348504e-05,0.0,0.0001286978333550786,0.0,0.0,0.0,0.0,7.000711252467467e-05,1.3658758986142167e-05,0.00022945486422747068,3.663496225818341e-05,5.0259591411776486e-05 +102368,81.0,the Columbus-Albany Area,G1302150001800,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,52504.0,,1485.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004524077622769558,0.00043708137289188303,0.0,0.0049611589956614415,0.001291418633007333,0.0014941541722099576,0.0021755861904441502,0.0,0.0,0.0008543372601154501,0.0014941541722099576,0.0021755861904441502,0.0,0.0,0.00043708137289188303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.920245382553129e-05,0.0,0.0,0.0005391267149380077,0.00017972515585151932,0.000568329168763539,0.00010180993318439402,0.0001780558375966451,0.00025926094415696857,0.0,0.0,2.920245382553129e-05,0.0,0.0,0.0,0.0,0.0,0.00014793939860920547,0.00017116391541558405,0.0002492258547387494,0.0,0.0 +102369,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,257286.0,,6512.0,,7.614023970037612,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.05390580713345179,0.004507840907980134,0.0,0.058413648041431926,0.03784886107647728,0.011573714103746253,0.005740237155187752,0.0007895072286965718,0.0024614006443467984,0.03784886107647728,0.011573714103746253,0.0023440570653833043,0.0007895072286965718,0.001349667659148381,0.0,0.003396180089804448,0.0011117329851984177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030118937105692086,0.0,0.0,0.006423851255839284,0.002183474830031052,0.006725040626896205,0.0045103759072987705,0.001379217227858516,0.00027933676766852774,9.408405647282082e-05,0.00016083729654064856,0.0,0.00022691425143984842,7.427994142437029e-05,0.0,0.0,0.0,0.004357459890889235,0.0013324573992805394,0.0006608614488394213,9.089430922798645e-05,0.0002833758870967947 +102370,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,157959.0,,8368.0,,9.729435225087556,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.03644001630233096,0.007401541142080523,0.0,0.043841649661664255,0.0317478180467263,0.004707782971323326,0.004501308542364188,0.0006673762583194631,0.0022172716256782053,0.026102646700963655,0.004707782971323326,0.0027448465287935354,0.0006673762583194631,0.0022172716256782053,0.005645171345762644,0.0017564620135706525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004945291635287596,0.0,0.0,0.004342490705719713,0.0014214823557446826,0.004837019869248472,0.0031106051038283784,0.0005610179651925504,0.00032709838659294153,7.953001927677198e-05,0.00026422824146617467,0.00037717845648721124,0.0001173568684773901,0.0,0.0,0.0,0.0,0.0035027155201137325,0.0005194065448753489,0.0004966263592966941,7.363117598603162e-05,0.0002446300947088772 +102371,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,280123.0,,11538.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01441937599811072,0.0019622013679958233,0.0,0.016381577366106546,0.007390777045419071,0.004489575736617251,0.003105295499108048,0.0,0.0013959290849621772,0.006708122670024198,0.004489575736617251,0.0018257485065070974,0.0,0.0013959290849621772,0.0006826543753948729,0.0012795469926009505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001311029907220156,0.0,0.0,0.0017183298041356086,0.0005720865147118281,0.0018494327948576242,0.0007993943091025988,0.0005350142611694356,0.0002175710012692833,0.0,0.00016635023259429114,4.5611032437078544e-05,8.549195828493708e-05,0.0,0.0,0.0,0.0,0.0008343973929860732,0.0005068601403108018,0.00035057889758873456,0.0,0.00015759636397201472 +102372,50.0,the Greater Atlanta and Macon Area,G1300890020100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,6741.0,,53.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013142981087913342,4.218060760704678e-05,0.0,0.0013563960093246417,0.0005701825663587853,0.000333061385948191,0.0004109714494106186,0.0,4.218060760704678e-05,0.0005701825663587853,0.000333061385948191,0.0004109714494106186,0.0,0.0,0.0,0.0,4.218060760704678e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8158971389509482e-06,0.0,0.0,0.00015661763365136476,5.5792075964041586e-05,0.0001594335307903157,6.794550162938195e-05,3.968908254446202e-05,4.897319373315911e-05,0.0,0.0,0.0,0.0,2.8158971389509486e-06,0.0,0.0,0.0,6.702041227246563e-05,3.914870905442691e-05,4.830641551811456e-05,0.0,4.957993945308598e-06 +102373,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,27048.0,,3033.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002409932024133409,0.0008927606472001739,0.0,0.0033027233609398804,0.0014106477534739084,0.0008042518226375991,0.0010877930952220751,0.0,0.0,0.0005178871062737345,0.0008042518226375991,0.0010877930952220751,0.0,0.0,0.0008927606472001739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.964991991068619e-05,0.0,0.0,0.0002871880279854705,0.0001417394005299053,0.0003468379478961567,6.171583898651167e-05,9.584149786551255e-05,0.00012963069113344625,0.0,0.0,5.964991991068619e-05,0.0,0.0,0.0,0.0,0.0,0.0001481402220378457,8.445910276784042e-05,0.00011423540019866074,0.0,0.0 +102374,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen4_led,_1000,Electricity,3189.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0004285053490433517,0.0,0.0,0.0004285053490433517,0.00020924889656044778,0.00011827111544720962,7.145891171076161e-05,0.0,2.952642532493275e-05,0.00020924889656044778,0.00011827111544720962,7.145891171076161e-05,0.0,2.952642532493275e-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,5.1068959940453325e-05,1.725185964101779e-05,5.1068959940453325e-05,2.4938133304255344e-05,1.4095466650231282e-05,8.516421808251626e-06,0.0,3.518938177715082e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.4938133304255344e-05,1.4095466650231282e-05,8.516421808251626e-06,0.0,3.518938177715082e-06 +102375,85.0,Rural Climate Zone 3A,G1301070970600,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,46121.0,,1477.0,,3.3063363735822096,Lodging,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,57860.88653768867,0.0,0.0,0.004196161173110065,0.00044387174649687043,0.0,0.004640032919606935,0.0016933186917687027,0.0009072044047823993,0.001354617347788317,0.0,0.0006848611372453127,0.0016933186917687027,0.0009072044047823993,0.0009107456012914467,0.0,0.0006848611372453127,0.0,0.00044387174649687043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9657950035844262e-05,0.0,0.0,0.0005000470660013727,0.0002160492692856793,0.0005297050160372169,0.00020178897060730528,0.00010810950346283597,0.00010853149986655633,0.0,8.161335758322629e-05,0.0,2.9657950035844262e-05,0.0,0.0,0.0,0.0,0.00019330884507074632,0.0001035662315570388,0.00015464278300751525,0.0,7.818357886101509e-05 +102376,50.0,the Greater Atlanta and Macon Area,G1301210010206,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,67053.0,,2805.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0033126520759155656,0.00047696445256084044,0.0,0.0037896165284764067,0.0016624341474669908,0.0011184666590997709,0.0006695870990282942,0.0,0.00033914635324277007,0.001388482333165755,0.0011184666590997709,0.0004665567304072696,0.0,0.00033914635324277007,0.0002739518143012358,0.00020303036862102464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.186856922626332e-05,0.0,0.0,0.0003947621585553296,0.00014214129251887035,0.00042663072778159297,0.00016546267775645042,0.00013328544697721145,5.559863751558833e-05,0.0,4.04153963060794e-05,1.8304199216199936e-05,1.3565554671199631e-05,0.0,0.0,0.0,0.0,0.00018715494955579644,0.00012591570708686623,7.538135566620436e-05,0.0,3.818071153669158e-05 +102377,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,51163.0,,6320.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026336324246118035,0.0010747081271150806,0.0,0.0037083405517268843,0.001698018982837037,0.0005228506279159372,0.0011134489668178959,0.0,0.0003740219741560139,0.0013916915285827846,0.0005228506279159372,0.0006394986756984646,0.0,7.959159241461703e-05,0.0003063274542542522,0.0004739502911194314,0.00029443038174139683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.180610602332092e-05,0.0,0.0,0.00031384385015752056,0.0001412193696440097,0.00038564995618084143,0.00016584464235794275,6.230689316737214e-05,7.620756969584518e-05,0.0,9.484744936360457e-06,2.04671213542237e-05,3.166676048618127e-05,1.967222418291595e-05,0.0,0.0,0.0,0.0001765859788741346,5.437400339378459e-05,0.00011579344973129903,0.0,3.889652418162317e-05 +102378,35.0,Eastern Counties in South Carolina and Georgia,G1300290920305,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,14580.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0017088187043679175,0.0,0.0,0.0017088187043679175,0.0010989472012572987,0.0004525362580230644,0.0001573048714881167,0.0,0.0,0.0010989472012572987,0.0004525362580230644,0.0001573048714881167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020363601632627276,6.223422316714404e-05,0.00020363601632627276,0.00013095902429258576,5.392771075800103e-05,1.8745661723316154e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013095902429258576,5.392771075800103e-05,1.8745661723316154e-05,0.0,0.0 +102379,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,49987.0,,5050.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004133736520269077,0.0014865124602418296,0.0,0.005620248980510906,0.0021643844841454886,0.001468620419770269,0.001987244076595148,0.0,0.0,0.0006778720239036592,0.001468620419770269,0.001987244076595148,0.0,0.0,0.0014865124602418296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.931974159191563e-05,0.0,0.0,0.0004926091396327155,0.00025057205879728785,0.0005919288812246312,8.078065760575687e-05,0.00017501256741515249,0.0002368159146118061,0.0,0.0,9.931974159191563e-05,0.0,0.0,0.0,0.0,0.0,0.00022795461387615005,0.0001546762154190611,0.00020929805192941995,0.0,0.0 +102380,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6492.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013342305135625072,0.0,0.0,0.0013342305135625072,0.0006401527507422395,0.00030130186963229697,0.00034464037627169404,0.0,4.813551691627692e-05,0.0006401527507422395,0.00030130186963229697,0.00034464037627169404,0.0,4.813551691627692e-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.00015900125571553924,5.385468107004125e-05,0.00015900125571553924,7.628748569540503e-05,3.590637085120937e-05,4.107105334531689e-05,0.0,5.736345823607974e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.628748569540503e-05,3.590637085120937e-05,4.107105334531689e-05,0.0,5.736345823607974e-06 +102381,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,10871.0,,148.0,,4.088175128053588,Healthcare,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,12264.525384160763,0.0,0.0,0.0011462946204495253,5.513900702767381e-05,0.0,0.0012014723759009708,0.000593858342730941,0.00020056184144430053,0.000370241189142251,0.0,3.6811002583478655e-05,0.000593858342730941,0.00020056184144430053,0.0003151021821145772,0.0,3.6811002583478655e-05,0.0,5.513900702767381e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.684926613294368e-06,0.0,0.0,0.00013660260384835174,4.2622531962189637e-05,0.00014028753046164608,7.076941170874621e-05,2.3900722628505176e-05,3.755036252221871e-05,0.0,4.38672459371714e-06,0.0,3.684926613294368e-06,0.0,0.0,0.0,0.0,6.934068732399745e-05,2.3418204201292623e-05,4.323047549137383e-05,0.0,4.298163444982224e-06 +102382,50.0,the Greater Atlanta and Macon Area,G1300570090904,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,NaturalGas,6221.0,,970.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001493689751731892,0.0007692584928492981,0.0,0.0022629482445811902,0.0014587046595401648,0.0004009638934881624,0.0003289260322612256,0.0,7.427095221789804e-05,0.0007637998259825041,0.0004009638934881624,0.0003289260322612256,0.0,0.0,0.0006949048335576608,0.0,7.427095221789804e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.139505960953852e-05,0.0,0.0,0.00017800410796990707,9.542011682863205e-05,0.0002293991675794456,9.102258787940708e-05,4.77831625381013e-05,3.919835755239869e-05,0.0,0.0,4.642740467039487e-05,0.0,4.962129182815352e-06,0.0,0.0,0.0,0.00014787153680781702,4.064643706096826e-05,3.334382842233307e-05,0.0,7.528981122266806e-06 +102383,81.0,the Columbus-Albany Area,G1302150010602,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,76081.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006778750928642889,0.0,0.0,0.0067787509286428875,0.0029798993922943453,0.001542551681341435,0.0022563305446134064,0.0,0.0,0.0029798993922943453,0.001542551681341435,0.0022563305446134064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008078097395252382,0.0002576942353118027,0.0008078097395252382,0.00035510845246273593,0.00018382269610223173,0.00026888224817723133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035510845246273604,0.00018382269610223175,0.0002688822481772314,0.0,0.0 +102384,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,21045.0,,204.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005053154084250466,0.0001617750362340853,0.0,0.00521501182755829,0.002577565953085516,0.0008411309399287564,0.0016344571912361935,0.0,0.0001617750362340853,0.002577565953085516,0.0008411309399287564,0.0016344571912361935,0.0,0.0,0.0,0.0,0.0001617750362340853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0810124658392832e-05,0.0,0.0,0.0006021784836094426,0.00017363803127983668,0.0006129886082678355,0.00030716553090476257,0.00010023659391308952,0.0001947763587915905,0.0,0.0,0.0,0.0,1.0810124658392832e-05,0.0,0.0,0.0,0.00030297506861843963,9.88691303657799e-05,0.00019211914988087934,0.0,1.9015537757666224e-05 +102385,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,4810.0,,367.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011789893361538275,0.00029121160663610137,0.0,0.0014702009427899287,0.0010288759973169845,0.00023306853379736833,0.00018179014807899772,0.0,2.6548970670317677e-05,0.0007642133613512007,0.00023306853379736833,0.00018179014807899772,0.0,0.0,0.00026466263596578376,0.0,2.6548970670317677e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.945456130486609e-05,0.0,0.0,0.00014050267284609774,6.462202202670843e-05,0.00015995723415096385,9.107293560841412e-05,2.7775274084903784e-05,2.1664319531092447e-05,0.0,0.0,1.7680941827768105e-05,0.0,1.7736194770979876e-06,0.0,0.0,0.0,0.00011194126872400938,2.5357756854040064e-05,1.977869040638043e-05,0.0,2.8885166608044207e-06 +102386,46.0,the Tallahassee-Valdosta Area,G1301850011500,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,65768.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005514277769964938,0.0,0.0,0.005514277769964938,0.001418228086229441,0.0013822905572548308,0.0027137591264806667,0.0,0.0,0.001418228086229441,0.0013822905572548308,0.0027137591264806667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006571267567113089,0.00019303575534132666,0.0006571267567113089,0.00016900773980900945,0.00016472512786154232,0.00032339388904075724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016900773980900945,0.00016472512786154232,0.00032339388904075724,0.0,0.0 +102387,35.0,Eastern Counties in South Carolina and Georgia,G1301270000600,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,18628.0,,1611.0,,8.53126424238864,Food Service,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.004288855933954712,0.001249541680757959,0.0,0.005538397614712671,0.002172567519485204,0.00042694493460182655,0.00198602169294611,0.0004157861465383697,0.0005369964603580928,0.002172567519485204,0.00042694493460182655,0.001273557333329312,0.0004157861465383697,0.0,0.0,0.0007124643596167978,0.0005369964603580928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.348601160556077e-05,0.0,0.0,0.0005110978892604205,0.0002243210792398972,0.0005945839008659813,0.0002589023018221904,5.0878522912802045e-05,0.0001517683211887561,4.954874333667198e-05,0.0,0.0,4.760209980305416e-05,3.5878509226203926e-05,0.0,0.0,0.0,0.0002332396047547514,4.5835384587802865e-05,0.0002132126668297398,4.463741430880347e-05,5.7650149440833106e-05 +102388,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,105057.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009040390775145797,0.0,0.0,0.009040390775145797,0.002201150632490137,0.0027033553499457453,0.0041359154823162134,0.0,0.0,0.002201150632490137,0.0027033553499457453,0.0041359154823162134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001077325538019815,0.00031843581385183575,0.001077325538019815,0.0002623067794734624,0.0003221535251380852,0.0004928688906281198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002623067794734624,0.0003221535251380852,0.0004928688906281198,0.0,0.0 +102389,81.0,the Columbus-Albany Area,G1302150002500,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,8334.0,,913.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.000674680304848698,0.0002688409511678764,0.0,0.0009435212560165745,0.0005153091793447275,0.00022679619054002354,0.0002014158861318233,0.0,0.0,0.00024646822817685107,0.00022679619054002354,0.0002014158861318233,0.0,0.0,0.0002688409511678764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7961977822854435e-05,0.0,0.0,8.040191785626363e-05,4.6935265156597224e-05,9.836389567911807e-05,2.937171589809194e-05,2.702739141911336e-05,2.4002810539058314e-05,0.0,0.0,1.7961977822854435e-05,0.0,0.0,0.0,0.0,0.0,5.372196761475642e-05,2.3643936672803875e-05,2.0997991391557754e-05,0.0,0.0 +102390,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,43989.0,,10755.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0022601246309369707,0.001828993162646967,0.0,0.004089117793583938,0.0018468476365969602,0.000254182461317877,0.0014568506068014784,0.0,0.000531219358506202,0.0017522738887823985,0.000254182461317877,0.00015345627809055701,0.0,0.00010021200274613845,9.457374781456164e-05,0.0013033943287109214,0.0004310073557600636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012220266576869887,0.0,0.0,0.0002693350619388015,0.00021367731338838816,0.00039153772770750034,0.00020881538562468477,3.0290475147127677e-05,1.828711372756627e-05,0.0,1.1942087439422826e-05,6.318866757243782e-06,8.70852142966826e-05,2.8797400075335425e-05,0.0,0.0,0.0,0.00017683778349201468,2.433826276260786e-05,0.00013949511972762273,0.0,5.086486402277441e-05 +102391,50.0,the Greater Atlanta and Macon Area,G1301210007500,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,5197.0,,3301.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.0018548655028089581,0.002559890670383451,0.0,0.00441475617319241,0.0016697751703650978,0.0003139015598720247,0.0017610669944494659,0.0004223358699669204,0.00024767657853890044,0.0008538090084205844,0.0003139015598720247,0.00026481906454942837,0.0004223358699669204,0.0,0.0008159661619445134,0.0014962479299000374,0.00024767657853890044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017103524909968304,0.0,0.0,0.0002210428530956939,0.0002442899912253364,0.0003920781021953769,0.00010174774339933875,3.740740031027872e-05,3.1558278211273265e-05,5.0329431174803136e-05,0.0,5.4517553182920634e-05,9.996955743699967e-05,1.654813847976275e-05,0.0,0.0,0.0,0.00014829409693452994,2.787785396125159e-05,0.00015640179840857764,3.750799362174576e-05,2.1996359269271923e-05 +102392,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,11686.0,,153.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0011766346362630659,5.676644082610127e-05,0.0,0.0012334010770891674,0.0006242371069682537,0.00018978977963566153,0.0003834544016485313,0.0,3.588104041294866e-05,0.0006242371069682537,0.00018978977963566153,0.00032668796082243,0.0,3.588104041294866e-05,0.0,5.676644082610127e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.793579101372313e-06,0.0,0.0,0.00014021771575963612,4.014821010085583e-05,0.00014401129486100843,7.43893631327056e-05,2.261695224233346e-05,3.8930895131709554e-05,0.0,4.275887663617963e-06,0.0,3.793579101372313e-06,0.0,0.0,0.0,0.0,7.288561340237019e-05,2.2159760052440052e-05,4.477194476907855e-05,0.0,4.189452390477641e-06 +102393,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock 90.1-2004,gen5_led,5001_10000,Electricity,5243.0,,929.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0004548813445445507,0.00027338301289993636,0.0,0.0007282336678381894,0.00036014252990354214,0.00014519252739443185,0.000222929300146513,0.0,0.0,8.675951700360577e-05,0.00014519252739443185,0.000222929300146513,0.0,0.0,0.00027338301289993636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8265111441189256e-05,0.0,0.0,5.420637605769429e-05,3.333805791380557e-05,7.247148749888354e-05,1.0338781886054632e-05,1.73020081722407e-05,2.6565585999398952e-05,0.0,0.0,1.8265111441189256e-05,0.0,0.0,0.0,0.0,0.0,3.584023371399546e-05,1.4449096352868557e-05,2.218521156356736e-05,0.0,0.0 +102394,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,229752.0,,10508.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.02047061188230001,0.003093144039532868,0.0,0.023563755921832873,0.006928516207375678,0.00572895156601737,0.010906257458833531,0.0,0.0,0.0038353721678428105,0.00572895156601737,0.010906257458833531,0.0,0.0,0.003093144039532868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020666618902935967,0.0,0.0,0.002439442278930315,0.0008721381645194789,0.002646108467959675,0.00045705370584248214,0.0006827078127630728,0.0012996771031051537,0.0,0.0,0.00020666618902935967,0.0,0.0,0.0,0.0,0.0,0.0007780425780826276,0.0006433366268797376,0.0012247258166864852,0.0,0.0 +102395,50.0,the Greater Atlanta and Macon Area,G1300670031312,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,24586.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.005903465509364285,0.0,0.0,0.005903465509364286,0.0022037299797838467,0.0012597941471971306,0.0022820535786149706,0.0,0.00015780509669459857,0.0022037299797838467,0.0012597941471971306,0.0022820535786149706,0.0,0.00015780509669459857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007035016093577714,0.00022126140209447617,0.0007035016093577714,0.00026261313543862004,0.00015012660082571063,0.00027194676798732983,0.0,1.8805249105531508e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00026261313543862004,0.00015012660082571063,0.00027194676798732983,0.0,1.8805249105531504e-05 +102396,50.0,the Greater Atlanta and Macon Area,G1301210011620,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,27718.0,,2146.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0024442242939547647,0.0006253012916249967,0.0,0.0030695255855797614,0.0019536299158361974,0.0008581149313153646,0.000257750364828762,0.0,0.0,0.0013283286242112007,0.0008581149313153646,0.000257750364828762,0.0,0.0,0.0006253012916249967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.177937141690201e-05,0.0,0.0,0.00029127185587122514,0.00010439605738838729,0.00033305122728812713,0.00015829346944050467,0.00010225932587824153,3.071544100958366e-05,0.0,0.0,4.177937141690201e-05,0.0,0.0,0.0,0.0,0.0,0.00021197374740668657,9.310762300581015e-05,2.796656126388592e-05,0.0,0.0 +102397,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970100,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,40284.0,,8593.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.008407373602305005,0.005911016571164631,0.0,0.014318390173469637,0.003979310871830164,0.0006464120987637024,0.008159867982330132,0.0003837018449335192,0.0011490973756121204,0.003979310871830164,0.0006464120987637024,0.0022488514111655,0.0003837018449335192,0.0011490973756121204,0.0,0.005911016571164631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039494138813067083,0.0,0.0,0.0010018892723652419,0.0006848785923412848,0.001396830660495913,0.0004742062221191136,7.703158892580869e-05,0.000267990957767409,4.5724952929443766e-05,0.00013693555062346688,0.0,0.00039494138813067083,0.0,0.0,0.0,0.0,0.0003882017018726189,6.30607371310272e-05,0.0007960359820642947,3.7432036353156064e-05,0.00011210020307481615 +102398,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,10522.0,,478.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0010578319689778602,0.00017770027141877166,0.0,0.0012355709888204039,0.0006077302784413466,0.00021102391586276287,0.00038240819420668506,0.0,3.436985188583743e-05,0.0005151990424736128,0.00021102391586276287,0.0003316090106414845,0.0,0.0,9.253123596773367e-05,5.079918356520053e-05,3.436985188583743e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1874087724710754e-05,0.0,0.0,0.0001260612796605747,4.175497759827929e-05,0.00013793536738528544,6.139599906106232e-05,2.5147609122032597e-05,3.9517671477479794e-05,0.0,0.0,6.183018204668398e-06,3.3944459239197112e-06,2.296623596122642e-06,0.0,0.0,0.0,6.784515012609583e-05,2.3558064753042447e-05,4.2690881573223634e-05,0.0,3.836945177368463e-06 +102399,50.0,the Greater Atlanta and Macon Area,G1301210006500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,10899.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001439925637881917,0.0,0.0,0.001439925637881917,0.0005083733283214468,0.00043017621147489987,0.0005013760980855704,0.0,0.0,0.0005083733283214468,0.00043017621147489987,0.0005013760980855704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017159248517331847,5.944888526669008e-05,0.00017159248517331847,6.0581630403376475e-05,5.1263067513681115e-05,5.974778725626086e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0581630403376475e-05,5.1263067513681115e-05,5.974778725626086e-05,0.0,0.0 +102400,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970400,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,5840.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013316665942765889,0.0,0.0,0.0013316665942765887,0.000806311261884508,0.00021694065441820338,0.00026515887840821963,0.0,4.3338506639397086e-05,0.000806311261884508,0.00021694065441820338,0.00026515887840821963,0.0,4.3338506639397086e-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.0001586915530913786,5.305749523042042e-05,0.0001586915530913786,9.608620278789204e-05,2.585230381707261e-05,3.1598355332647656e-05,0.0,5.164547159796434e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.608620278789206e-05,2.5852303817072614e-05,3.1598355332647656e-05,0.0,5.1645471597964345e-06 +102401,35.0,Eastern Counties in South Carolina and Georgia,G1300510010102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,30894.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.00684624344291865,0.0,0.0,0.006846243442918651,0.004024526208154699,0.0012287789945448905,0.0014520880936410203,0.0,0.00014093285365177985,0.004024526208154699,0.0012287789945448905,0.0014520880936410203,0.0,0.00014093285365177985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008158521611960485,0.0002265597423133223,0.0008158521611960485,0.00047959416460852317,0.00014643095979426286,0.0001730422266344398,0.0,1.6794666183578373e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004795941646085231,0.00014643095979426283,0.0001730422266344398,0.0,1.679466618357837e-05 +102402,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,464837.0,,4580.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,280597.8237794184,0.0,0.0,0.02392758372575818,0.0007788415860986595,0.0,0.02470642531185684,0.011162131301632822,0.00792797153572383,0.002439077168749564,0.0,0.0031772453057506227,0.011162131301632822,0.00792797153572383,0.0016602355826509044,0.0,0.0031772453057506227,0.0,0.0007788415860986595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.203757326825954e-05,0.0,0.0,0.0028514048896494423,0.0008775943137474046,0.0029034424629177016,0.0013301700722134413,0.0009447613708537229,0.000197847133776596,0.0,0.00037862631280568204,0.0,5.203757326825955e-05,0.0,0.0,0.0,0.0,0.0013117480812681705,0.0009316770399227559,0.00028663475726219226,0.0,0.0003733825844645828 +102403,50.0,the Greater Atlanta and Macon Area,G1300570090601,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,10071.0,,1826.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0008256759271158455,0.0005319935941522232,0.0,0.0013576695212680688,0.0011220615104294276,0.00018366915580008528,5.1969228637993375e-05,0.0,0.0,0.0005900679162772047,0.00018366915580008528,5.1969228637993375e-05,0.0,0.0,0.0005319935941522232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5544376576087896e-05,0.0,0.0,9.839418030798394e-05,6.571193951276256e-05,0.00013393855688407182,7.031723590506196e-05,2.1887492948880922e-05,6.1930710162948995e-06,0.0,0.0,3.5544376576087896e-05,0.0,0.0,0.0,0.0,0.0,0.00011069505287392067,1.8119565392469236e-05,5.126935073013868e-06,0.0,0.0 +102404,50.0,the Greater Atlanta and Macon Area,G1300630040513,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,14857.0,,3541.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.003419359933618833,0.002745951332224133,0.0,0.006165230405059899,0.0016183477123335145,0.0004143306524431361,0.003436017254930949,0.0003165699657132861,0.0003799648196390119,0.0016183477123335145,0.0004143306524431361,0.0006900659227068157,0.0003165699657132861,0.0003799648196390119,0.0,0.002745951332224133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018346591104370958,0.0,0.0,0.00040747712091636633,0.00031345531579236115,0.000590943031960076,0.00019285470943836537,4.937481418817747e-05,8.223354103862343e-05,3.772490194120117e-05,4.527951831972013e-05,0.0,0.00018346591104370958,0.0,0.0,0.0,0.0,0.00015512012383302458,3.971397594286089e-05,0.0003293454293013247,3.0343523773672987e-05,3.6419979109192694e-05 +102405,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,62262.0,,14190.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003121731544144437,0.002413119919630606,0.0,0.005534851463775044,0.0015811227099946285,0.0006821047341908516,0.0027440748458973123,0.0,0.0005275491736922511,0.0014961765484311556,0.0006821047341908516,0.0008496743799717705,0.0,9.377588155065927e-05,8.494616156347298e-05,0.0018944004659255417,0.0004337732921415918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016123044866175868,0.0,0.0,0.00037201131916361833,0.00026471081476366943,0.0005332417678253771,0.00017829675730047045,8.12852349363797e-05,0.00010125421820647209,0.0,1.1175108720296121e-05,5.675601792334266e-06,0.0001265726724070037,2.8982174462420752e-05,0.0,0.0,0.0,0.00015232941200762353,6.571571733813231e-05,0.0002643711997419022,0.0,5.0825438737719016e-05 +102406,50.0,the Greater Atlanta and Macon Area,G1300150960802,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,112182.0,,4843.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012179139569637051,0.001425532212528294,0.0,0.013604671782165345,0.005461921301621057,0.00422212258640646,0.003920658583744126,0.0,0.0,0.004036389089092763,0.00422212258640646,0.003920658583744126,0.0,0.0,0.001425532212528294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.52455067790383e-05,0.0,0.0,0.001451366296347874,0.000508689735207129,0.0015466118031269122,0.0004810092740426748,0.0005031428029806267,0.00046721787655010753,0.0,0.0,9.524550677903829e-05,0.0,0.0,0.0,0.0,0.0,0.0006209243477605543,0.0004799810484913905,0.00044570989574321015,0.0,0.0 +102407,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,159474.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.014208950130167113,0.0,0.0,0.014208950130167113,0.007095713182485563,0.0027620338771869525,0.0043512030704945985,0.0,0.0,0.007095713182485563,0.0027620338771869525,0.0043512030704945985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016932537120548353,0.000547001133517158,0.0016932537120548353,0.0008455827190505314,0.000329146353004549,0.0005185246399997551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008455827190505314,0.000329146353004549,0.0005185246399997551,0.0,0.0 +102408,35.0,Eastern Counties in South Carolina and Georgia,G1300510004001,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,10408.0,,210.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021536094930978255,0.00016657204651096514,0.0,0.002320181539608791,0.00118825252841263,0.00047631003766467143,0.0004889642199467854,0.0,0.00016657204651096514,0.00118825252841263,0.00047631003766467143,0.0004889642199467854,0.0,0.0,0.0,0.0,0.00016657204651096514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.113086688063033e-05,0.0,0.0,0.00025663689515289997,7.294953828281206e-05,0.0002677677620335304,0.00014159922703105786,5.675993237780065e-05,5.8267879878026995e-05,0.0,0.0,0.0,0.0,1.113086688063033e-05,0.0,0.0,0.0,0.00013713397629970883,5.49700403361887e-05,5.643043557345851e-05,0.0,1.9223764757264113e-05 +102409,50.0,the Greater Atlanta and Macon Area,G1301210011419,ComStock 90.1-2007,gen4_led,_1000,Electricity,2311.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0004882198562831317,0.0,0.0,0.0004882198562831317,0.00027078295942249247,0.0001271207723373155,6.368444677926672e-05,0.0,2.67143848177963e-05,0.00027078295942249247,0.0001271207723373155,6.368444677926672e-05,0.0,2.67143848177963e-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,5.817840562753802e-05,2.1652612767873046e-05,5.817840562753802e-05,3.226767745630348e-05,1.5148265195582914e-05,7.588916200779989e-06,0.0,3.1834025101973204e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.226767745630348e-05,1.5148265195582914e-05,7.588916200779989e-06,0.0,3.1834025101973204e-06 +102410,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,39921.0,,12411.0,,7.56685751697572,Food Service,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,56751.431377317895,0.014553703398371856,0.0,0.008312272920738306,0.008537545349698339,0.0,0.03140344994883749,0.01982461922822216,0.000853897974911865,0.006028422163717186,0.00037681672771602045,0.004319693854270253,0.005270915829850303,0.000853897974911865,0.0013050165926000589,0.00037681672771602045,0.0005055540756890423,0.0,0.004723405571117128,0.0038141397785812106,0.0,0.0,0.0,0.014553703398371856,0.0,0.0,0.0,0.0005704274828267339,0.0,0.0,0.00099055573240858,0.0009004878089195762,0.0015609832152353137,0.0006281237322315443,0.00010175718988133245,0.00015551602780788896,4.4904441091594215e-05,6.024579468112822e-05,0.0,0.000315589579901595,0.00025483790292513885,0.0,0.0,0.0,0.0009854298783765199,4.244503099285081e-05,0.00029965707039342134,1.8730572218750057e-05,0.00021472066325377157 +102411,35.0,Eastern Counties in South Carolina and Georgia,G1301270000404,ComStock DOE Ref 1980-2004,gen5_led,_1000,NaturalGas,15435.0,,5094.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.003213915341151562,0.0035039509039386935,0.0,0.006717794525119241,0.0009862930414066833,0.0001336143060020834,0.004746714561697202,0.00038147852583203523,0.00046962237021022115,0.0008499533765060066,0.0001336143060020834,0.0017710529642594997,0.00038147852583203523,7.774444858092237e-05,0.0001363396649006766,0.0029756615974377023,0.00039187792162929876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023411276483964916,0.0,0.0,0.00038299235399128905,0.0003309156059772663,0.0006171051188309382,0.00010128631587857642,1.5922403719668205e-05,0.00021105090577213455,4.545961641702372e-05,9.264565556693684e-06,9.109390166206259e-06,0.00019881567490578523,2.618290787383009e-05,0.0,0.0,0.0,9.060212875573108e-05,1.2273979484578752e-05,0.00043603921535553407,3.504310084727557e-05,4.3140106100387364e-05 +102412,50.0,the Greater Atlanta and Macon Area,G1301210004100,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,19321.0,,15191.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56751.431377317895,0.0,0.0,0.006591208776276687,0.010450030096800624,0.0,0.017041238873077312,0.00675064227184439,0.0008249948265925739,0.005293794500604282,0.0003672779715709442,0.003804529302465119,0.0032915163497904535,0.0008249948265925739,0.0016903679968669372,0.0003672779715709442,0.0004170516314557783,0.0034591259220539358,0.0036034265037373455,0.0033874776710093404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006982099641560022,0.0,0.0,0.00078546036611496,0.0009415280304911554,0.0014836703302709624,0.00039224302020064825,9.831288319536446e-05,0.00020143756794154094,4.376773666378001e-05,4.969915811362639e-05,0.00023111858661419664,0.00024075990850816036,0.0002263314690336451,0.0,0.0,0.0,0.0005877347136323454,7.182695788486447e-05,0.0004608964109708438,3.197651493770243e-05,0.00033123573284520605 +102414,35.0,Eastern Counties in South Carolina and Georgia,G1301030030305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5814.0,,33.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013960126976457698,2.6466263596578373e-05,0.0,0.0014225616683160877,0.0007386568755657546,0.00027756493946911573,0.00037987358968463904,0.0,2.6466263596578373e-05,0.0007386568755657546,0.00027756493946911573,0.00037987358968463904,0.0,0.0,0.0,0.0,2.6466263596578373e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7707423448665186e-06,0.0,0.0,0.00016636102681369942,5.507423134712652e-05,0.0001681317691585659,8.802478407921972e-05,3.307705468255083e-05,4.5269044146887944e-05,0.0,0.0,0.0,0.0,1.7707423448665186e-06,0.0,0.0,0.0,8.730144362529955e-05,3.2805245191636466e-05,4.489704742705194e-05,0.0,3.1280329145779697e-06 +102415,50.0,the Greater Atlanta and Macon Area,G1301350050606,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,30144.0,,3383.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0026581759283942886,0.0009854714337578579,0.0,0.003643647362152146,0.0024952823146096254,0.0009176471862133582,0.00023071786132916283,0.0,0.0,0.0015098108808517677,0.0009176471862133582,0.00023071786132916283,0.0,0.0,0.0009854714337578579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.584398900011204e-05,0.0,0.0,0.00031676922270966755,0.00015152138424854168,0.0003826132117097796,0.00017992098042017638,0.00010935408104237485,2.7494161247116348e-05,0.0,0.0,6.584398900011204e-05,0.0,0.0,0.0,0.0,0.0,0.0002620253514191573,9.63605701200879e-05,2.422729017053447e-05,0.0,0.0 +102416,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,232420.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.020708364262288313,0.0,0.0,0.020708364262288313,0.005616075194054418,0.005065074002585463,0.01002721506564843,0.0,0.0,0.005616075194054418,0.005065074002585463,0.01002721506564843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00246777417925799,0.00075389197427316,0.00246777417925799,0.0006692564017669704,0.0006035946963891251,0.0011949230811018942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006692564017669704,0.0006035946963891251,0.0011949230811018942,0.0,0.0 +102417,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,179189.0,,4252.0,,9.729435225087556,Education,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,729707.6418815667,0.0,0.0,0.03990747722385509,0.0037606195680900518,0.0,0.04366809679194514,0.032127937562657326,0.004655956875264803,0.003569729854849581,0.0006600910953503822,0.0026541969693175053,0.032127937562657326,0.004655956875264803,0.001599969335614576,0.0006600910953503822,0.0008634301377152319,0.0,0.001969760519235005,0.0017907668316022736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002512613812557693,0.0,0.0,0.004755702112361788,0.0014598866542982851,0.005006963493617557,0.0038286283965157488,0.0005548419866923185,0.00019066546117197264,7.866186576766455e-05,0.00010289341285032736,0.0,0.00013160723647923572,0.000119647983389058,0.0,0.0,0.0,0.003683774249834533,0.0005338498312252672,0.00040930355060963956,7.568573534652025e-05,0.0003043289794277097 +102418,50.0,the Greater Atlanta and Macon Area,G1302970110700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,46477.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.009103696717880727,0.0,0.0,0.009103696717880728,0.006405123902234229,0.0019272352579247907,0.0007713071841222698,0.0,0.0,0.006405123902234229,0.0019272352579247907,0.0007713071841222698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001084869806926522,0.0002488857731836242,0.001084869806926522,0.0007632861403993377,0.00022966487207996272,9.19151748845341e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007632861403993376,0.00022966487207996266,9.191517488453408e-05,0.0,0.0 +102419,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,112010.0,,4379.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005528769949807966,0.0007446574492807976,0.0,0.006273427399088763,0.003367456623064949,0.001205770958732111,0.0009351347220164251,0.0,0.0007650650952752784,0.0028298543344475275,0.001205770958732111,0.0007280795613530483,0.0,0.0007650650952752784,0.000537602288617421,0.0002070551606633766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9753411526898485e-05,0.0,0.0,0.0006588535961478603,0.0002367125459732669,0.0007086070076747588,0.0003372286641968387,0.0001436895619646641,8.676393513097325e-05,0.0,9.117143485538416e-05,3.5919264527895634e-05,1.3834146999002844e-05,0.0,0.0,0.0,0.0,0.0003803667770971903,0.00013619632405922056,0.0001056269523796637,0.0,8.641695413868433e-05 +102420,50.0,the Greater Atlanta and Macon Area,G1301130140304,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,31968.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007410553807041946,0.0,0.0,0.007410553807041946,0.00287324374170354,0.001354576453702377,0.002998462251344851,0.0,0.00018427136029117695,0.00287324374170354,0.001354576453702377,0.002998462251344851,0.0,0.00018427136029117695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008830982138305532,0.0002622012435023363,0.0008830982138305532,0.0003423976779963551,0.0001614216802021964,0.0003573196723684472,0.0,2.195918326355438e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003423976779963551,0.0001614216802021964,0.0003573196723684472,0.0,2.195918326355438e-05 +102421,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,8138.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0016393369085868125,0.0,0.0,0.0016393369085868123,0.0007179801071309278,0.000271196494791189,0.0006057466080666876,0.0,4.44964056717474e-05,0.0007179801071309278,0.000271196494791189,0.0006057466080666876,0.0,4.44964056717474e-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.00019535596951696552,6.025023976371594e-05,0.00019535596951696552,8.556002075459249e-05,3.2317856013628466e-05,7.218541550589049e-05,0.0,5.302533252617298e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.55600207545925e-05,3.231785601362847e-05,7.21854155058905e-05,0.0,5.3025332526172985e-06 +102422,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,58488.0,,2147.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004995193769045594,0.0006320524417011888,0.0,0.00562727690035308,0.0016735349210200304,0.001670496649996558,0.002283214639730194,0.0,0.0,0.0010414824793188418,0.001670496649996558,0.002283214639730194,0.0,0.0,0.0006320524417011888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2230999305572326e-05,0.0,0.0,0.0005952689703678272,0.00020641663090035305,0.0006374999696733997,0.0001241117425638349,0.00019907031975585396,0.0002720869080481384,0.0,0.0,4.2230999305572326e-05,0.0,0.0,0.0,0.0,0.0,0.00018959053913460418,0.000189246341093594,0.0002586596126973125,0.0,0.0 +102423,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,110285.0,,32429.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.03336245377424878,0.02244675858377998,0.0,0.05580921235802876,0.04342224807510685,0.005807568987397433,0.0030157155459572525,0.0007396398159882234,0.002823967766556266,0.022271104050448402,0.005807568987397433,0.0030157155459572525,0.0007396398159882234,0.0015283532074347346,0.02115114402465845,0.0,0.0012956145591215312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014997617744509383,0.0,0.0,0.00397573786378067,0.002442073636603413,0.005475499638231609,0.002654003576616735,0.0006920765503626162,0.0003593768780792927,8.81414191498677e-05,0.00018213083957028958,0.0014131963497398324,0.0,8.656542471110599e-05,0.0,0.0,0.0,0.004260201740550932,0.0005697866095206605,0.0002958749762488426,7.256682855303888e-05,0.00027706240297677474 +102424,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,61734.0,,3088.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005341341838477384,0.0009090568281442541,0.0,0.006250429356227935,0.0028526602845840693,0.0011952680964766303,0.0022025009751672356,0.0,0.0,0.001943603456439815,0.0011952680964766303,0.0022025009751672356,0.0,0.0,0.0009090568281442541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0738868466164096e-05,0.0,0.0,0.0006365183227676431,0.0002548839266958207,0.0006972571912338072,0.0002316158092160465,0.00014243799910845182,0.00026246817166960905,0.0,0.0,6.0738868466164096e-05,0.0,0.0,0.0,0.0,0.0,0.0003182242025648112,0.0001333363243103075,0.00024569666435868845,0.0,0.0 +102425,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,71266.0,,7018.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.004398193453858299,0.0011935547397136945,0.0,0.005591730463210573,0.0027405287736133018,0.0012118524726991893,0.0009857549038706755,0.0,0.0006535943130274065,0.00241742839745568,0.0012118524726991893,0.0006397823614811854,0.0,0.00012911249186082452,0.0003231003761576222,0.0003459725423894903,0.0005244818211665819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.974580308389825e-05,0.0,0.0,0.0005241232535798011,0.00021455122455252444,0.0006038690566636993,0.00028807974234493433,0.00014441385253134657,7.624148787460106e-05,0.0,1.538605793988596e-05,2.158753018699404e-05,2.3115704139758255e-05,3.5042568757145955e-05,0.0,0.0,0.0,0.000295958565272367,0.00013087186771950686,0.0001064548600506433,0.0,7.058376362118217e-05 +102426,50.0,the Greater Atlanta and Macon Area,G1301530021201,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,70021.0,,16946.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.014579666027879511,0.011657220648935387,0.0,0.026236886676814897,0.008438930389551874,0.0006375905423287823,0.013340775248555842,0.00037868144696242634,0.0034409090494159716,0.008438930389551874,0.0006375905423287823,0.0016835545996204539,0.00037868144696242634,0.0034409090494159716,0.0,0.011657220648935387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007788672069200049,0.0,0.0,0.001737430513146903,0.0012842645628022122,0.002516297720066908,0.001005650961352136,7.598042787932256e-05,0.00020062593521251042,4.512673331865277e-05,0.0004100464553842811,0.0,0.0007788672069200049,0.0,0.0,0.0,0.0,0.0008093514127877687,6.114931423688663e-05,0.001279472017978825,3.63181528875997e-05,0.00033000682217582784 +102427,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,16293.0,,2044.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015123531087444953,0.0006015776626475699,0.0,0.0021139307713920657,0.001050842809239641,0.00045500410296974136,0.0006080838591826829,0.0,0.0,0.00044926514659207107,0.00045500410296974136,0.0006080838591826829,0.0,0.0,0.0006015776626475699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.019406400235569e-05,0.0,0.0,0.00018022412067850328,0.00010413551611102671,0.00022041818468085896,5.353803653914669e-05,5.422193658920614e-05,7.246414755015046e-05,0.0,0.0,4.019406400235569e-05,0.0,0.0,0.0,0.0,0.0,0.00010957069528109769,4.7442981461918584e-05,6.340450793784264e-05,0.0,0.0 +102429,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300830040101,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,105276.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00928335655855503,0.0,0.0,0.00928335655855503,0.007249722581799795,0.0016735853290201256,0.00036004864773511003,0.0,0.0,0.007249722581799795,0.0016735853290201256,0.00036004864773511003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011062793557943653,0.00027141492107532646,0.0011062793557943653,0.000863935191640393,0.00019943787443444562,4.290628971952664e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000863935191640393,0.00019943787443444562,4.290628971952664e-05,0.0,0.0 +102430,50.0,the Greater Atlanta and Macon Area,G1300770170405,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,46254.0,,844.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004018761315208381,0.0002459350346474765,0.0,0.004264696349855858,0.002698846178041438,0.001121940016031677,0.00044387978218330516,0.0,0.0,0.0024529111433939615,0.001121940016031677,0.00044387978218330516,0.0,0.0,0.0002459350346474765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.643243281795633e-05,0.0,0.0,0.00047890836846477465,0.00014258976836339118,0.0004953408012827311,0.00029230889359522843,0.0001336995209344034,5.289633436935869e-05,0.0,0.0,1.643243281795633e-05,0.0,0.0,0.0,0.0,0.0,0.00031346865490554,0.000130312364806717,5.155625370310689e-05,0.0,0.0 +102431,50.0,the Greater Atlanta and Macon Area,G1300670031406,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,12512.0,,3090.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030351014850113645,0.0024513549585593324,0.0,0.005486456443570696,0.004038420996542902,0.00034298623479690787,0.0009662667424963287,0.0,0.00013878246973455786,0.0017257658006443887,0.00034298623479690787,0.0009662667424963287,0.0,0.0,0.0023126551958985143,0.0,0.00013878246973455786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016378692707276086,0.0,0.0,0.00036168319191326735,0.00028394813097979674,0.0005254701189860283,0.0002056539085609787,4.0872556254307424e-05,0.000115146871164474,0.0,0.0,0.00015451972248755155,0.0,9.272730646381214e-06,0.0,0.0,0.0,0.0003867832695647882,3.2849803778266096e-05,9.254503437219264e-05,0.0,1.3292011270781411e-05 +102432,35.0,Eastern Counties in South Carolina and Georgia,G1300510004001,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,77056.0,,5643.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0037629146041778063,0.0009595848904146777,0.0,0.004722499494592485,0.0014408400904391706,0.0004826913592995175,0.0021033882359837042,0.0,0.0006955975392315115,0.0014046701531422632,0.0004826913592995175,0.0017652879740647173,0.0,0.00011026511767130838,3.6169937296907717e-05,0.00033810026191898686,0.0005853324215602031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.411423690428787e-05,0.0,0.0,0.000448419399007584,0.00018034333824788737,0.0005125336359118719,0.00016739187893783552,5.7521414119504625e-05,0.00021036602093668232,0.0,1.3140085013561537e-05,2.416678244761687e-06,2.2590018357529708e-05,3.9108724948194884e-05,0.0,0.0,0.0,0.00015637460865077413,5.238657149424931e-05,0.00022828106632037117,0.0,7.54933137254771e-05 +102433,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,31604.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028444268401465827,0.0,0.0,0.0028444268401465822,0.0019020859175903325,0.0006790625626298174,0.00026327835992643277,0.0,0.0,0.0019020859175903325,0.0006790625626298174,0.00026327835992643277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003389651398975457,9.021765684450394e-05,0.0003389651398975457,0.00022666809708487106,8.092264258381843e-05,3.13744002288562e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022666809708487109,8.092264258381844e-05,3.137440022885621e-05,0.0,0.0 +102434,50.0,the Greater Atlanta and Macon Area,G1300450911000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,47871.0,,5073.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.002464165630158939,0.000862653004531249,0.0,0.0033268186346901876,0.0012846887974127658,0.0004354576764764968,0.0012047071370469078,0.0,0.00040198275411543714,0.0010402757652373381,0.0004354576764764968,0.0005864671646910865,0.0,0.00040198275411543714,0.0002444130321754279,0.0006182399723558212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.763759205639169e-05,0.0,0.0,0.0002936495043354801,0.0001371131524868801,0.00035128709639187185,0.0001239675040895905,5.1892587613177365e-05,6.988807493815421e-05,0.0,4.790345058493311e-05,1.6330295689919836e-05,4.1307296366471867e-05,0.0,0.0,0.0,0.0,0.0001356535017281828,4.5981064665169275e-05,0.0001272080382630127,0.0,4.2446363928693726e-05 +102435,50.0,the Greater Atlanta and Macon Area,G1300890020500,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,41786.0,,12619.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,32736.412774265485,0.0,0.0,0.0020457468310071127,0.002145958833753251,0.0,0.0041917056647603635,0.0015878602473342488,0.0004420888316475966,0.0011973135763347457,0.0,0.0009644252790823522,0.0009279007345570434,0.0004420888316475966,0.0005453681869194042,0.0,0.00013037134752164826,0.0006599595127772055,0.0006519453894153416,0.0008340539315607039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014338088243221129,0.0,0.0,0.00024378745538477666,0.00020168360229540512,0.0003871683378169879,0.00011057602802980473,5.268281963723681e-05,6.499040864770061e-05,0.0,1.5536086179217227e-05,4.4094777506066686e-05,4.3559318921553704e-05,5.572678600459091e-05,0.0,0.0,0.0,0.0001466632587813673,4.083368723987909e-05,0.00011059028096662369,0.0,8.907947315817691e-05 +102436,50.0,the Greater Atlanta and Macon Area,G1300210011800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5867.0,,297.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011253951523707562,0.0002357978672307654,0.0,0.001361110312527782,0.000730965117707999,0.000224632412275959,0.00037292619549053716,0.0,3.258658705328712e-05,0.00052783654460426,0.000224632412275959,0.00037292619549053716,0.0,0.0,0.00020312857310373898,0.0,3.258658705328712e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.575249787294002e-05,0.0,0.0,0.00013410716923857938,5.942649753558589e-05,0.00014985966711151942,6.289938664515422e-05,2.676821280605436e-05,4.443956978737079e-05,0.0,0.0,1.3570022720428162e-05,0.0,2.176949898961196e-06,0.0,0.0,0.0,8.048002296479363e-05,2.4732263223849235e-05,4.105956365108107e-05,0.0,3.587817271795507e-06 +102437,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,92200.0,,12328.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008217448982272897,0.0036287390486403766,0.0,0.011846188030913274,0.005168620734233912,0.0027030484538827677,0.003974488153190296,0.0,0.0,0.001539881685593535,0.0027030484538827677,0.003974488153190296,0.0,0.0,0.0036287390486403766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002424520102751824,0.0,0.0,0.000979255739582784,0.0005158968647705747,0.0012217077498579663,0.0001835043919528898,0.0003221164766030507,0.00047363121381239923,0.0,0.0,0.0002424520102751824,0.0,0.0,0.0,0.0,0.0,0.0005330443844561639,0.0002787677551405184,0.00040989244521529993,0.0,0.0 +102438,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,60172.0,,15388.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003097370027553284,0.002616894963431273,0.0,0.0057142649909845585,0.001756475984438951,0.0008308447361436745,0.0027261494505016384,0.0,0.0004007948199002936,0.0014505385981359398,0.0008308447361436745,0.000727299425450566,0.0,8.868726782310412e-05,0.00030593738630301106,0.0019988500250510727,0.00031210755207718946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017484554500382088,0.0,0.0,0.0003691071948158231,0.0002652128947844954,0.000543952739819644,0.00017285769157938385,9.901005277297589e-05,8.66707717615764e-05,0.0,1.056867870188701e-05,2.044093851403803e-05,0.00013355141375361298,2.085319273616989e-05,0.0,0.0,0.0,0.00016720259310171632,7.908983417869329e-05,0.00025950782210796327,0.0,3.8152490431271044e-05 +102439,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,297369.0,,10839.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,480687.657779034,0.0,0.0,0.02622243960259428,0.003157700144747554,0.0,0.0293801093737424,0.016625050399452335,0.010131053345263246,0.002624036002626256,0.0,0.0,0.013467350254704783,0.010131053345263246,0.002624036002626256,0.0,0.0,0.003157700144747554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021097850891947548,0.0,0.0,0.003124876013414002,0.0009980407425839158,0.0033358545223334778,0.0016048773650720288,0.001207297492873193,0.00031270115546878083,0.0,0.0,0.00021097850891947548,0.0,0.0,0.0,0.0,0.0,0.0018876291049004627,0.0011502925223281172,0.00029793634376152977,0.0,0.0 +102440,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,NaturalGas,12645.0,,93.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030362593840437147,7.402283099668014e-05,0.0,0.0031102822150403946,0.001901849160635374,0.00035588853830023984,0.0007785216851081008,0.0,7.402283099668014e-05,0.001901849160635374,0.00035588853830023984,0.0007785216851081008,0.0,0.0,0.0,0.0,7.402283099668014e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.944068622630465e-06,0.0,0.0,0.00036182893294497585,0.00012297534826930998,0.0003667730015676064,0.00022664205042275393,4.2410991214138304e-05,9.277589130808362e-05,0.0,0.0,0.0,0.0,4.944068622630465e-06,0.0,0.0,0.0,0.0002242712644537337,4.1967351639244015e-05,9.180541040674039e-05,0.0,8.728975067888307e-06 +102441,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,26829.0,,,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0069922744942848,0.0,0.0,0.0069922744942847994,0.004144195993045115,0.0006743789307915214,0.0012560105434034415,0.00041036847407277836,0.0005073205529719431,0.004144195993045115,0.0006743789307915214,0.0012560105434034415,0.00041036847407277836,0.0005073205529719431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008332585074018429,0.0002839547034972285,0.0008332585074018429,0.0004938574093977524,8.036469131094526e-05,0.00014967682855310705,4.8902974628662735e-05,6.045660351137536e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004938574093977525,8.036469131094528e-05,0.00014967682855310705,4.890297462866274e-05,6.0456603511375374e-05 +102442,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,110395.0,,6408.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009836110887232637,0.0018862445822694083,0.0,0.011722355469502045,0.003530808514944407,0.0029253946515096245,0.0052660909238354155,0.0,0.0,0.0016445639326749992,0.0029253946515096245,0.0052660909238354155,0.0,0.0,0.0018862445822694083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012602809183488448,0.0,0.0,0.0011721489581344592,0.00048684131771034627,0.0012981770499693435,0.00019597927701004754,0.0003486132204294278,0.0006275491462613707,0.0,0.0,0.00012602809183488448,0.0,0.0,0.0,0.0,0.0,0.000391014808744055,0.00032396903579432076,0.0005831864080696911,0.0,0.0 +102443,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,126679.0,,,,9.729435225087556,Education,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,729707.6418815667,0.048958877235300464,0.0,0.03625825609711503,0.0,0.0,0.08521722554966828,0.0741396280602907,0.0068769171910539354,0.0011197018831718834,0.0006399877342458302,0.0024408062464003795,0.025180750824990224,0.0068769171910539354,0.0011197018831718834,0.0006399877342458302,0.0024408062464003795,0.0,0.0,0.0,0.0,0.0,0.0,0.048958877235300464,0.0,0.0,0.0,0.0,0.0,0.0,0.0043208306634331395,0.0014261880927317646,0.0043208306634331395,0.003000744437390196,0.0008195097577062071,0.0001334328440329444,7.626617835518318e-05,0.0002908664565857332,0.0,0.0,0.0,0.0,0.0,0.0,0.003759155220463277,0.0003486853095408245,5.67730549722378e-05,3.244976128375312e-05,0.00012375796565682672 +102444,50.0,the Greater Atlanta and Macon Area,G1300890022009,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,6864.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001648103858403179,0.0,0.0,0.001648103858403179,0.0006525588118031355,0.00034133209332212175,0.0006085586485738239,0.0,4.56543047040977e-05,0.0006525588118031355,0.00034133209332212175,0.0006085586485738239,0.0,4.56543047040977e-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.00019639896644995405,6.549961855656235e-05,0.00019639896644995405,7.776322804687798e-05,4.067539190741007e-05,7.251987730911636e-05,0.0,5.4404691865496385e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.776322804687798e-05,4.067539190741007e-05,7.251987730911636e-05,0.0,5.4404691865496385e-06 +102445,50.0,the Greater Atlanta and Macon Area,G1300210013502,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,12002.0,,403.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002882010691519907,0.00031966284000242316,0.0,0.0032016735315223296,0.0015834269267390407,0.0005653028490081663,0.0009115973667546465,0.0,0.00014126368194673704,0.0014050277686833545,0.0005653028490081663,0.0009115973667546465,0.0,0.0,0.0001783991580556861,0.0,0.00014126368194673704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.135782299365972e-05,0.0,0.0,0.0003434402723668196,0.0001155539682099356,0.00036479809536047933,0.00016743279994741234,6.73653866046953e-05,0.00010863222986934184,0.0,0.0,1.191948879620285e-05,0.0,9.438334197456869e-06,0.0,0.0,0.0,0.00018041537381303447,6.441050300402668e-05,0.00010386723688520584,0.0,1.6095558029389543e-05 +102446,50.0,the Greater Atlanta and Macon Area,G1300670030345,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,347320.0,,50546.0,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,863994.0691636442,0.0,0.0,0.05504494610402586,0.026467719070676948,0.0,0.0815126651747028,0.06589078693985047,0.006648826248704203,0.00870030090484614,0.0,0.0002727510813019961,0.039695818950475525,0.006648826248704203,0.00870030090484614,0.0,0.0,0.02619496798937495,0.0,0.0002727510813019961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017684165311712171,0.0,0.0,0.006559600121398213,0.004019274430972156,0.00832801665256943,0.0047304742258162825,0.0007923278076380189,0.0010367980879439124,0.0,0.0,0.0017501929162166648,0.0,1.8223614954552187e-05,0.0,0.0,0.0,0.006731954717832961,0.0006792997824396215,0.0008888956171734905,0.0,2.7866535123357583e-05 +102447,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10720.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002574174963062204,0.0,0.0,0.0025741749630622045,0.0011438388298146219,0.0004995507253854167,0.0008613941729948869,0.0,6.939123486727895e-05,0.0011438388298146219,0.0004995507253854167,0.0008613941729948869,0.0,6.939123486727895e-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.0003067584904032908,8.00062538320278e-05,0.0003067584904032908,0.00013630863392486548,5.9530307223874705e-05,0.00010265035591666477,0.0,8.269193337885911e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013630863392486545,5.953030722387469e-05,0.00010265035591666474,0.0,8.26919333788591e-06 +102448,85.0,Rural Climate Zone 3A,G1300310110401,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,221182.0,,9024.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.011360179438694811,0.0015345627809055698,0.0,0.012894759949961802,0.00580598415061049,0.002795971613773807,0.0031797630170722693,0.0,0.0011130234381438147,0.004767392769708057,0.002795971613773807,0.0026837916170691324,0.0,0.0011130234381438147,0.0010385913809024328,0.000495971400003137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010253083370555179,0.0,0.0,0.0013537712751858567,0.0005052308298778072,0.0014563021088914085,0.0005681212540689424,0.00033319069275167197,0.00031982241296271463,0.0,0.00013263691540252773,6.939282086620574e-05,3.313801283934604e-05,0.0,0.0,0.0,0.0,0.0006557134057194447,0.0003157700781821356,0.0003591145244662713,0.0,0.00012570209810064785 +102449,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,32003.0,,1034.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.008513508406153012,0.0008015729425583154,0.0,0.009315081348711327,0.004405861487054872,0.0008669893160607545,0.003154621729852473,0.00041214741130028595,0.00047554226522601175,0.004405861487054872,0.0008669893160607545,0.0023530487872941573,0.00041214741130028595,0.00047554226522601175,0.0,0.0008015729425583154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.355416198831224e-05,0.0,0.0,0.0010145388945822216,0.00038213124644323004,0.001068093056570534,0.0005250382838088779,0.00010331749736632202,0.0002804084287782103,4.911483716434839e-05,5.666948349294347e-05,0.0,5.355416198831224e-05,0.0,0.0,0.0,0.0,0.00050518829480602,9.941139899260642e-05,0.00036171767477136303,4.725796499396708e-05,5.452699472817743e-05 +102451,50.0,the Greater Atlanta and Macon Area,G1302470060307,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,362157.0,,51853.0,,9.729435225087556,Education,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.08953179415516678,0.04586342071146332,0.0,0.13539521486663011,0.10188171308105583,0.018575321226100516,0.008829709735778674,0.0006509615873258381,0.005457509236369234,0.06500301930728289,0.018575321226100516,0.003639077228935008,0.0006509615873258381,0.001663507022775293,0.03687869377377294,0.005190632506843667,0.0037940022135939406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003064324247375036,0.0,0.0,0.01066933552832725,0.006156910131331668,0.013733659775702286,0.007746287560615272,0.00221358609617775,0.0004336619894125323,7.75738681076242e-05,0.00019823700337065202,0.0024640175937475457,0.000346807560430366,0.00025349293178222534,0.0,0.0,0.0,0.010334255802165654,0.0018841666021575177,0.0008956315741944108,6.602954894817019e-05,0.0005535762482365293 +102452,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,30531.0,,18.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.0027306077203381055,5.278612283204878e-06,0.0,0.002735855643015012,0.0007693270506708133,0.0007845797850007716,0.001181979496949725,0.0,0.0,0.0007640484383876084,0.0007845797850007716,0.001181979496949725,0.0,0.0,5.278612283204878e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.519241294103097e-07,0.0,0.0,0.0003254003158651115,0.00011208529903522747,0.0003257522399945219,9.104991586150957e-05,9.34965897734372e-05,0.0001408538102301647,0.0,0.0,3.519241294103097e-07,0.0,0.0,0.0,0.0,0.0,9.160205900637914e-05,9.341816812262976e-05,0.00014073566700860404,0.0,0.0 +102453,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,13611.0,,1604.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011912477580516311,0.00047228235131534804,0.0,0.0016635301093669793,0.0008723520590122016,0.0002960933215602365,0.0004950847287945412,0.0,0.0,0.00040006970769685345,0.0002960933215602365,0.0004950847287945412,0.0,0.0,0.00047228235131534804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.155524655985825e-05,0.0,0.0,0.00014195741706494872,7.667817253888348e-05,0.00017351266362480695,4.7675105339516474e-05,3.528455172719048e-05,5.899775999824177e-05,0.0,0.0,3.155524655985825e-05,0.0,0.0,0.0,0.0,0.0,9.098971429822225e-05,3.088368561299027e-05,5.163926371359442e-05,0.0,0.0 +102454,50.0,the Greater Atlanta and Macon Area,G1301530020400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,89908.0,,10088.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004628032128946443,0.0017156252317271493,0.0,0.0063436573606735925,0.002197642837292705,0.002103601000320745,0.0011146014403101991,0.0,0.0009278298131113631,0.0018816700664259442,0.002103601000320745,0.0004668581465514104,0.0,0.00017590291564834385,0.00031597277086676097,0.0006477432937587889,0.0007519268974630192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001146279773314454,0.0,0.0,0.0005515137799409178,0.0002332289256133659,0.0006661417572723633,0.00022423504029832542,0.000250682127273498,5.563459671992242e-05,0.0,2.0962015649172086e-05,2.111144027638627e-05,4.327839333467367e-05,5.023932835874897e-05,0.0,0.0,0.0,0.0002307724989320259,0.00022089725016370798,0.00011704329535662431,0.0,9.74305746693203e-05 +102455,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,27747.0,,3208.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024722319249177453,0.0009443498753866122,0.0,0.0034166124899106553,0.001347058889225068,0.0007933877020082122,0.0012761658986773748,0.0,0.0,0.00040270901383845594,0.0007933877020082122,0.0012761658986773748,0.0,0.0,0.0009443498753866122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.309612577964875e-05,0.0,0.0,0.0002946129231647773,0.00015331553261716376,0.0003577090489444261,4.799035177725071e-05,9.454706402571901e-05,0.00015207916460550344,0.0,0.0,6.309612577964875e-05,0.0,0.0,0.0,0.0,0.0,0.00014103301312623682,8.306530552341999e-05,0.00013361073029476925,0.0,0.0 +102456,50.0,the Greater Atlanta and Macon Area,G1301350050422,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,111922.0,,5335.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.010279124642522284,0.0015541563360308849,0.0,0.01183328097855317,0.009274396346720892,0.0020373395558866414,0.0005215450759456366,0.0,0.0,0.007720240010690008,0.0020373395558866414,0.0005215450759456366,0.0,0.0,0.0015541563360308849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010384008504926422,0.0,0.0,0.0012249432661727696,0.00048477232533674546,0.0013287833512220337,0.000920005967746666,0.00024278578737794038,6.215151104816349e-05,0.0,0.0,0.00010384008504926422,0.0,0.0,0.0,0.0,0.0,0.0010414409562734782,0.00022877703044107573,5.856536450747975e-05,0.0,0.0 +102457,50.0,the Greater Atlanta and Macon Area,G1301170130606,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,9236.0,,954.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.000421415230231815,0.000162179615909223,0.0,0.000583594846141038,0.0003268237520558333,0.00010189638708104348,3.966281849665812e-05,0.0,0.00011521188850750315,0.00016464413614661032,0.00010189638708104348,3.966281849665812e-05,0.0,0.00011521188850750315,0.000162179615909223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0835602708760623e-05,0.0,0.0,5.0220185709451815e-05,2.383667511896374e-05,6.105578841821245e-05,1.9620693558480712e-05,1.2143024540231387e-05,4.726630571863165e-06,0.0,1.3729837038876557e-05,1.0835602708760623e-05,0.0,0.0,0.0,0.0,0.0,3.419235448618897e-05,1.0660416710905878e-05,4.1495305693921086e-06,0.0,1.2053486651725494e-05 +102458,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,66641.0,,2760.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005876471404020159,0.000803928429918415,0.0,0.006680399833938574,0.003592376726301221,0.002580176525038142,0.0005078769561986482,0.0,0.0,0.002788448296382806,0.002580176525038142,0.0005078769561986482,0.0,0.0,0.000803928429918415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.371388713930616e-05,0.0,0.0,0.0007002879182705409,0.0001949503664723909,0.0007540018054098471,0.00033229407895069083,0.0003074747281597221,6.0522730724192595e-05,0.0,0.0,5.371388713930616e-05,0.0,0.0,0.0,0.0,0.0,0.00040546353581750945,0.00029121876033097823,5.7322937461674055e-05,0.0,0.0 +102459,50.0,the Greater Atlanta and Macon Area,G1300890021417,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,613646.0,,50007.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.030010516121749903,0.008504137360429865,0.0,0.03851465348217976,0.022960002442343058,0.006128676728455452,0.004179188029597806,0.0,0.005246804012144865,0.018933011835174984,0.006128676728455452,0.004179188029597806,0.0,0.0007696572588830722,0.004026990607168072,0.0,0.004477146753261794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005681963575753835,0.0,0.0,0.003576295300753839,0.0016466074926023387,0.004144491658329223,0.002256210489035234,0.0007303425804106636,0.0004980257737182107,0.0,9.171857048268963e-05,0.0002690597879603771,0.0,0.0002991365696150064,0.0,0.0,0.0,0.0024706840122951535,0.0006594957316552887,0.0004497148062171058,0.0,0.0005645990160935495 +102460,50.0,the Greater Atlanta and Macon Area,G1301490970200,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,12547.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0011179609782127169,0.0,0.0,0.0011179609782127169,0.000639479326425233,0.0002528516662867732,0.00022562998550071085,0.0,0.0,0.000639479326425233,0.0002528516662867732,0.00022562998550071085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001332249116163053,4.7168015538749926e-05,0.0001332249116163053,7.620532237149868e-05,3.013176805772316e-05,2.688782118708347e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.620532237149868e-05,3.013176805772316e-05,2.688782118708347e-05,0.0,0.0 +102461,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,11709.0,,849.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0011596944001328023,0.00024733222022161304,0.0,0.0014070266203544152,0.0007936621533084551,0.0005116736561283673,0.00010166043731815536,0.0,0.0,0.000546329933086842,0.0005116736561283673,0.00010166043731815536,0.0,0.0,0.00024733222022161304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6525188872914167e-05,0.0,0.0,0.00013819925455690974,4.760788826776877e-05,0.0001547244434298239,6.510541870865445e-05,6.097547581953594e-05,1.2114740446870877e-05,0.0,0.0,1.6525188872914167e-05,0.0,0.0,0.0,0.0,0.0,8.727548801531171e-05,5.626647038292925e-05,1.1179144982290407e-05,0.0,0.0 +102462,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,93016.0,,1130.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00845547756871788,0.0003327674010859913,0.0,0.008788244969803872,0.0037151916695810057,0.0027090943063234154,0.00236395899389945,0.0,0.0,0.0033824242684950146,0.0027090943063234154,0.00236395899389945,0.0,0.0,0.0003327674010859913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.223424524185855e-05,0.0,0.0,0.0010076224849121288,0.0003090849259878091,0.0010298567301539874,0.00040307678883297294,0.000322837393229915,0.0002817083028492409,0.0,0.0,2.223424524185855e-05,0.0,0.0,0.0,0.0,0.0,0.0004353673751558402,0.0003174671408882315,0.0002770222141099157,0.0,0.0 +102463,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock DOE Ref 1980-2004,gen5_led,_1000,Electricity,7851.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,1870.6521585294563,0.0,0.0,0.0003560611180375004,0.0,0.0,0.00035606111803750037,0.00022845570689738041,4.748190788290141e-05,1.1808420705755167e-05,0.0,6.833281291288351e-05,0.00022845570689738041,4.748190788290141e-05,1.1808420705755167e-05,0.0,6.833281291288351e-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,4.243214635150247e-05,1.5019152477370095e-05,4.243214635150247e-05,2.7225286611846894e-05,5.6584646912321286e-06,1.4072208679464516e-06,0.0,8.143287124723162e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.7225286611846897e-05,5.658464691232129e-06,1.4072208679464518e-06,0.0,8.143287124723164e-06 +102464,50.0,the Greater Atlanta and Macon Area,G1302470060404,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Propane,46795.0,,912.0,8369.0,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.0048709868555409834,0.00033900995958195223,0.001006257816937218,0.006216254632060153,0.0031169619566501112,0.0006669378699650889,0.0022587618669460217,0.0,0.00017359293849893091,0.0022842583297880523,0.0006669378699650889,0.0019197519073640699,0.0,0.0,0.0,0.00033900995958195223,0.0,0.0,0.0,0.0,0.0,0.0008327036268620591,0.00017359293849893091,0.0,2.264947526194229e-05,0.0,8.115471105898605e-05,0.0005804660341077396,0.00024733786254342664,0.000684270220428668,0.0002722106244366735,7.947768939973918e-05,0.00022877310269699505,0.0,0.0,0.0,2.264947526194229e-05,0.0,6.715756250366246e-05,1.400027361639869e-05,0.0,0.00034310760600839315,7.341490178660711e-05,0.00024863902334689103,0.0,1.9108689286776664e-05 +102465,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock 90.1-2004,gen5_led,_1000,Electricity,4188.0,,413.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,4088.1751280535877,0.0,0.0,0.0003150634336908052,0.00015340500971367573,0.0,0.000468468443404481,0.00029716166190810287,4.955923400449388e-05,0.0001024120840296148,0.0,1.9335463462269312e-05,0.0001582873111089582,4.955923400449388e-05,8.788142511508377e-05,0.0,1.9335463462269312e-05,0.0001388743507991447,1.4530658914531043e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0250281290458315e-05,0.0,0.0,3.7544696326582886e-05,2.0356678392882288e-05,4.77949776170412e-05,1.8862388942822665e-05,5.905751642073484e-06,1.0472435280862131e-05,0.0,2.3041204608246046e-06,9.279365532963527e-06,9.709157574947886e-07,0.0,0.0,0.0,0.0,3.0317591674531748e-05,5.056226333514944e-06,1.0448480218514463e-05,0.0,1.9726793904800294e-06 +102466,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,8001.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0019212026158903722,0.0,0.0,0.0019212026158903722,0.0009886803594796809,0.0004997161395328954,0.0003555577100052826,0.0,7.708299272503453e-05,0.0009886803594796809,0.0004997161395328954,0.0003555577100052826,0.0,7.708299272503453e-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.0002289411332287322,6.265700888604058e-05,0.0002289411332287322,0.0001178166217493764,5.9548939987429493e-05,4.237022393345902e-05,0.0,9.185635893459832e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001178166217493764,5.9548939987429493e-05,4.237022393345902e-05,0.0,9.185635893459832e-06 +102467,50.0,the Greater Atlanta and Macon Area,G1300130180402,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,6976.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00029304741355063276,0.0,0.0,0.00029304741355063276,0.00016810155662352064,4.0779831266121445e-05,1.7996316841353594e-05,0.0,6.61874391810571e-05,0.00016810155662352064,4.0779831266121445e-05,1.7996316841353594e-05,0.0,6.61874391810571e-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,3.492278100850786e-05,9.73463398426911e-06,3.492278100850786e-05,2.00328464872739e-05,4.85977712485286e-06,2.1446407746633277e-06,0.0,7.887629568293793e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.00328464872739e-05,4.85977712485286e-06,2.1446407746633277e-06,0.0,7.887629568293793e-06 +102468,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,38285.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0033759648303072396,0.0,0.0,0.00337596483030724,0.002201964464839256,0.0009020047825029158,0.0002720259565645053,0.0,0.0,0.002201964464839256,0.0009020047825029158,0.0002720259565645053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000402308626743407,0.00013020898565045295,0.000402308626743407,0.0002624047774533957,0.0001074905467340749,3.241692213187779e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002624047774533957,0.00010749054673407489,3.241692213187779e-05,0.0,0.0 +102469,50.0,the Greater Atlanta and Macon Area,G1301350050545,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,124620.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011103499558508867,0.0,0.0,0.011103499558508869,0.004268279754278206,0.002268759835163976,0.0045664599690666855,0.0,0.0,0.004268279754278206,0.002268759835163976,0.0045664599690666855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001323182975440724,0.0004392768752537617,0.001323182975440724,0.0005086428000036497,0.00027036380498184347,0.0005441763704552309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005086428000036497,0.0002703638049818434,0.0005441763704552308,0.0,0.0 +102470,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000300,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,411808.0,,32822.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.02078383107273004,0.0055817660000925026,0.0,0.02636559707282254,0.011227077615514475,0.005466039931103819,0.006861543487391914,0.0,0.0028109537691737513,0.008783904733276879,0.005466039931103819,0.003722932639175588,0.0,0.0028109537691737513,0.002443172882237596,0.003138610848216327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037294134489918875,0.0,0.0,0.002476769414174226,0.0011099343381912802,0.002849710759073415,0.0010467611338963161,0.000651377528552759,0.00044365476506588204,0.0,0.00033497598665926834,0.00016323869193151709,0.00020970383760795104,0.0,0.0,0.0,0.0,0.0012134723816614415,0.0005907938575473315,0.0007416260760514454,0.0,0.00030382036018935724 +102471,50.0,the Greater Atlanta and Macon Area,G1300210010800,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,10229.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0008111269729851623,0.0,0.0,0.0008111269729851623,0.0006355675682349569,0.00014266479655912031,3.292498179052297e-05,0.0,0.0,0.0006355675682349569,0.00014266479655912031,3.292498179052297e-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,9.666211839074995e-05,3.687948873239061e-05,9.666211839074995e-05,7.57406787989681e-05,1.700138438799298e-05,3.923674830015838e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.57406787989681e-05,1.700138438799298e-05,3.923674830015838e-06,0.0,0.0 +102472,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,136378.0,,3317.0,,9.325022323477118,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.034994558387804645,0.002812118756834497,0.0,0.03780667714463914,0.02082383794269568,0.003929913203755511,0.012510600804362743,0.0,0.0005424135779832577,0.018011719185861183,0.003929913203755511,0.012510600804362743,0.0,0.0005424135779832577,0.002812118756834497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001878893212319537,0.0,0.0,0.004170238350142706,0.0015407109803766074,0.00435812767137466,0.0021464240602349157,0.00046832066212742254,0.0014908657134493613,0.0,6.463844691156873e-05,0.0001878893212319537,0.0,0.0,0.0,0.0,0.0,0.0024004475192327787,0.0004530168947105179,0.0014421472519900232,0.0,6.252619383857612e-05 +102473,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,11431.0,,,3148.0,3.20458438519356,Mercantile,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,24034.3828889517,0.0,0.0,0.0009381493658338405,0.0,0.0002966893193079598,0.0012348386851418003,0.0008196315808277329,0.00032025923247165525,9.491749824297445e-05,0.0,0.0,0.0005229422615197732,0.00032025923247165525,9.491749824297445e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002966893193079598,0.0,0.0,0.0,0.0,2.392753847442978e-05,0.00011179636181794556,5.515877208862468e-05,0.00013572390029237535,6.231741384464561e-05,3.8164303396523395e-05,1.1311025048760965e-05,0.0,0.0,0.0,0.0,0.0,2.392753847442978e-05,0.0,0.0,9.008755256154836e-05,3.5200413348488645e-05,1.0432595951633822e-05,0.0,0.0 +102474,35.0,Eastern Counties in South Carolina and Georgia,G1300730030302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,19910.0,,5374.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004483568699583726,0.004167726480918056,0.0,0.008651295180501783,0.0026474628984466666,0.000782489797754143,0.004104574209341538,0.00043001764435843053,0.0006867506306010061,0.0020165062081629447,0.000782489797754143,0.0012545550493082082,0.00043001764435843053,0.0,0.0006309566902837219,0.0028500191600333287,0.0006867506306010061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027846280991807476,0.0,0.0,0.0005342957445428616,0.0004280148008742184,0.0008127585544609363,0.00024030203573455997,9.324736545847048e-05,0.00014950220885482792,5.124413449500321e-05,0.0,4.215679069090717e-05,0.00019042140775236632,4.5884611474801304e-05,0.0,0.0,0.0,0.0002487197666287084,7.351214628954556e-05,0.0003856102157490569,4.0398635317536774e-05,6.451779047608871e-05 +102475,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,59397.0,,6569.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002857744192961271,0.0011171014212704269,0.0,0.003974845614231697,0.0014931091959054868,0.0006893919127344932,0.0013285537115659766,0.0,0.00046379079402574116,0.0014931091959054868,0.0006893919127344932,0.0005804565721696887,0.0,9.478651215160228e-05,0.0,0.0007480971393962879,0.00036900428187413886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.463766235721264e-05,0.0,0.0,0.00034055215794637125,0.000154271556297076,0.00041518982030358396,0.00017793109683070777,8.215357558271482e-05,6.917194993639518e-05,0.0,1.1295535596553503e-05,0.0,4.9983126542939016e-05,2.4654535814273614e-05,0.0,0.0,0.0,0.00015596171497127533,7.200996771853333e-05,0.00013877318273538964,0.0,4.844495487838573e-05 +102476,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,291815.0,,34311.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014003315337027764,0.0058348314486409165,0.0,0.01983814678566868,0.009061260776970767,0.0026145900164466665,0.004682499799228845,0.0,0.003479813923383823,0.006646030944331173,0.0026145900164466665,0.004228868502296794,0.0,0.0005138436043145503,0.0024152298326395928,0.0004536312969320509,0.002965970319069273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038984903440820274,0.0,0.0,0.0016687485868450563,0.0008197415986488611,0.002058597621253259,0.0007919949297403422,0.00031157574403738625,0.0005039462561056054,0.0,6.123376985533751e-05,0.00016137141688090195,3.0308968586829216e-05,0.0001981686489404716,0.0,0.0,0.0,0.0009402838925712048,0.00027131510047591394,0.00048590138244036845,0.0,0.00036109908563923597 +102477,85.0,Rural Climate Zone 3A,G1300910960400,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,67895.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005765625645543124,0.0,0.0,0.005765625645543124,0.0011733864071863682,0.0024435678326356915,0.0021486714057210653,0.0,0.0,0.0011733864071863682,0.0024435678326356915,0.0021486714057210653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006870800254013649,0.00018823471948257157,0.0006870800254013649,0.00013983050791347047,0.000291195917274843,0.00025605360021305147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013983050791347047,0.000291195917274843,0.00025605360021305147,0.0,0.0 +102478,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,33300.0,,,6746.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029364284728435326,0.0,0.0006358713042293345,0.0035722694034734295,0.0024247851903146035,0.0009507544096005075,0.0001967601771577563,0.0,0.0,0.001788913886085269,0.0009507544096005075,0.0001967601771577563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006358713042293345,0.0,0.0,0.0,0.0,5.1281519892956863e-05,0.0003499269415278183,0.0001372551763883111,0.0004012084614207752,0.00021318045734935832,0.0001132990589664943,2.3447425211965692e-05,0.0,0.0,0.0,0.0,0.0,5.1281519892956863e-05,0.0,0.0,0.0002723322979325346,0.00010678106009976197,2.2098514705969524e-05,0.0,0.0 +102479,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,NaturalGas,21349.0,,16210.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004270852554008622,0.011150805933594158,0.0,0.015421658487602782,0.0031037534656715837,0.0003659152921216476,0.009491707844090029,0.00037409136881742723,0.002086118796931078,0.0025469196107063795,0.0003659152921216476,0.0007161956305618919,0.00037409136881742723,0.000267730651801276,0.0005568338549652042,0.008775512213528135,0.0018183881451298023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007450304313021223,0.0,0.0,0.0005089485263735426,0.0008869289983119625,0.001253978957675665,0.00030351105927181387,4.360535662324832e-05,8.534752866322181e-05,4.457968250624525e-05,3.1904899309013324e-05,3.7204321337752066e-05,0.0005863274536636613,0.00012149386439945464,0.0,0.0,0.0,0.0002523750307980061,2.9753614177175048e-05,0.0007717977880564591,3.0418434250910437e-05,0.00016962825863808123 +102480,46.0,the Tallahassee-Valdosta Area,G1301850011500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,50362.0,,810.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.004384562672540201,0.00023839686172055522,0.0,0.0046229288446544585,0.00024008479006692887,0.001749706523850929,0.002633168220342899,0.0,0.0,1.687928346373653e-06,0.001749706523850929,0.002633168220342899,0.0,0.0,0.00023839686172055522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5927661701336582e-05,0.0,0.0,0.0005224985404365795,0.0002016263523352745,0.0005384262021379162,2.0114665092261298e-07,0.00020850861834638065,0.0003137887754392763,0.0,0.0,1.5927661701336582e-05,0.0,0.0,0.0,0.0,0.0,2.7962347258770663e-05,0.00020378592666039778,0.0003066815025952349,0.0,0.0 +102481,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,21923.0,,1919.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005146546259962585,0.0014885661555085273,0.0,0.006635112415471113,0.0024077915374315505,0.0006348380078710113,0.0024897035106799695,0.0004162713112367808,0.0006864271874687319,0.001605733430174824,0.0006348380078710113,0.0024897035106799695,0.0004162713112367808,0.0,0.0008020581072567266,0.0,0.0006864271874687319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.945658497225578e-05,0.0,0.0,0.0006133039571792153,0.000259895285978867,0.0007127605421514712,0.00019135214513904593,7.565241673313777e-05,0.00029669314879802723,4.960624650900435e-05,0.0,5.35884549046556e-05,0.0,4.586272746099621e-05,0.0,0.0,0.0,0.0002586510512777171,6.819590299833285e-05,0.0002674502424300941,4.471691614258279e-05,7.373774303309736e-05 +102482,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,16485.0,,1505.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014687738678017578,0.00044309653572623277,0.0,0.001911901093134288,0.000781971168465467,0.0005218153758798404,0.0006080838591826829,0.0,0.0,0.00033887463273923413,0.0005218153758798404,0.0006080838591826829,0.0,0.0,0.00044309653572623277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9605354754014293e-05,0.0,0.0,0.0001750324682893061,8.807436369421785e-05,0.0002046378230433204,4.0383386925145064e-05,6.218427167979003e-05,7.246480968437099e-05,0.0,0.0,2.9605354754014293e-05,0.0,0.0,0.0,0.0,0.0,8.369725723368013e-05,5.585182357709038e-05,6.508545741083743e-05,0.0,0.0 +102483,50.0,the Greater Atlanta and Macon Area,G1301210000600,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,28448.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.00621692531883626,0.0,0.0,0.00621692531883626,0.0029406500068010753,0.001048973816235636,0.0020447669840568975,0.0,0.0001826172188163908,0.0029406500068010753,0.001048973816235636,0.0020447669840568975,0.0,0.0001826172188163908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007408609456722541,0.00020563782987707748,0.0007408609456722541,0.00035043251015561135,0.00012500451487283418,0.0002436715777971363,0.0,2.1762198915021518e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00035043251015561135,0.00012500451487283418,0.0002436715777971363,0.0,2.1762198915021518e-05 +102484,50.0,the Greater Atlanta and Macon Area,G1300670031001,ComStock 90.1-2007,gen5_led,100001_200000,NaturalGas,122192.0,,7101.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011771520218790962,0.002090238395330239,0.0,0.013861758614121204,0.004390117491280086,0.003182788379528458,0.006288852743312659,0.0,0.0,0.002299879095949847,0.003182788379528458,0.006288852743312659,0.0,0.0,0.002090238395330239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013965666157289932,0.0,0.0,0.0014027897982079502,0.0005847323711981979,0.0015424464597808495,0.00027407224155806895,0.00037928687082660484,0.0007494306858232768,0.0,0.0,0.00013965666157289932,0.0,0.0,0.0,0.0,0.0,0.0004885037585020917,0.00035416001713044773,0.0006997826841483101,0.0,0.0 +102485,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,101362.0,,8045.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00903127596207538,0.002368194159568533,0.0,0.011399470121643914,0.003912679286106723,0.003027959315756547,0.004458831519780642,0.0,0.0,0.0015444851265381903,0.003027959315756547,0.004458831519780642,0.0,0.0,0.002368194159568533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001582296680268131,0.0,0.0,0.00107623874677964,0.0004497021349669434,0.0012344684148064531,0.00018405314420524868,0.00036083573937659765,0.0005313498631977937,0.0,0.0,0.0001582296680268131,0.0,0.0,0.0,0.0,0.0,0.0004237108343128555,0.00032790297239547244,0.000482854608098125,0.0,0.0 +102486,50.0,the Greater Atlanta and Macon Area,G1301210001001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,96864.0,,10619.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004448317185592788,0.0018059436928008978,0.0,0.006254260878393685,0.002653011709643921,0.0016593313342184819,0.0012794228800710103,0.0,0.0006624949544602729,0.0022082810541447363,0.0016593313342184819,0.0004545710060873138,0.0,0.00012613379114225566,0.00044473065549918445,0.0008248518739836964,0.0005363611633180174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012066266392669505,0.0,0.0,0.0005300982658024233,0.00024374314976471673,0.0006507609297291182,0.00026315703407972594,0.0001977396453449218,5.4170440631210574e-05,0.0,1.5031145746564944e-05,2.971431824608558e-05,5.5111809330797484e-05,3.583653634981202e-05,0.0,0.0,0.0,0.0002760480255491894,0.00017265477452581344,0.00013312499096864623,0.0,6.893313868546932e-05 +102487,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,7702.0,,775.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005915728509945188,0.00022817722282342015,0.0,0.0008197500738179392,0.0003520711634472463,0.00023130756266578588,0.00023640203731120456,0.0,0.0,0.00012389394062382614,0.00023130756266578588,0.00023640203731120456,0.0,0.0,0.00022817722282342015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5244927381216569e-05,0.0,0.0,7.049635883122066e-05,3.803746149220689e-05,8.574128621243722e-05,1.47641523449698e-05,2.7564383508555204e-05,2.8171480186599544e-05,0.0,0.0,1.5244927381216569e-05,0.0,0.0,0.0,0.0,0.0,3.6824680297595734e-05,2.419348111950654e-05,2.472633475700662e-05,0.0,0.0 +102488,35.0,Eastern Counties in South Carolina and Georgia,G1300730030505,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,12633.0,,417.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.001292724913884226,0.00015514868878341946,0.0,0.0014478736026676453,0.0009440665967830253,0.00015979849963606942,0.0003101036354479786,0.0,3.386612237680036e-05,0.0008330136142522358,0.00015979849963606942,0.0002660079291953484,0.0,3.386612237680036e-05,0.00011105298253078927,4.40957062526302e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0366745272890336e-05,0.0,0.0,0.00015405015378647485,4.540795575353435e-05,0.0001644168990593652,9.926773593014917e-05,1.9042708297326967e-05,3.169936771608867e-05,0.0,4.035724309375309e-06,7.420352635390536e-06,2.9463926374998004e-06,0.0,0.0,0.0,0.0,0.00010720583762464205,1.8146317286325057e-05,3.521459195985923e-05,0.0,3.845752014609142e-06 +102489,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,26572.0,,4758.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002367549677836281,0.0014004894937893685,0.0,0.00376803917162565,0.0021592593198937722,0.0006286152057958462,0.0009801646459360316,0.0,0.0,0.0007587698261044037,0.0006286152057958462,0.0009801646459360316,0.0,0.0,0.0014004894937893685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.357199896743533e-05,0.0,0.0,0.00028213586113043083,0.00017662495167683554,0.00037570786009786617,9.04209868505901e-05,7.491073748829627e-05,0.00011680413679154451,0.0,0.0,9.357199896743533e-05,0.0,0.0,0.0,0.0,0.0,0.00021529784100510403,6.267866734852536e-05,9.773135174423681e-05,0.0,0.0 +102490,50.0,the Greater Atlanta and Macon Area,G1301130140405,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,29037.0,,15669.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.0057974121370759045,0.010778722723965167,0.0,0.016576063141070057,0.005549691357187984,0.0007140440314314236,0.0059491715957449365,0.0003705053702666467,0.003992650786439066,0.003467373718720732,0.0007140440314314236,0.0008016141160414849,0.0003705053702666467,0.00044380318064460116,0.0020823176384672506,0.005147557479703452,0.0035488476057944653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007201693213445497,0.0,0.0,0.0006908630241581183,0.0008827847533647113,0.001411032345502668,0.0004131982057791076,8.509083143872906e-05,9.552633818709068e-05,4.415219317120072e-05,5.288690889341658e-05,0.00013912792071221218,0.0003439287818859822,0.0002371126187463554,0.0,0.0,0.0,0.0004724157929361829,6.078278152588053e-05,0.0005064214270361381,3.153915722807341e-05,0.00033987318677639305 +102491,50.0,the Greater Atlanta and Macon Area,G1301350050540,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,327418.0,,31775.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.016853931924698175,0.005403664519628073,0.0,0.022257596444326247,0.011206829542772776,0.004679733862847316,0.003243929195051441,0.0,0.003127121574016133,0.009148671458771627,0.004679733862847316,0.002449502621264555,0.0,0.0005760417121760954,0.0020581580840011494,0.0007944265737868858,0.002551079861840037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003610416241587856,0.0,0.0,0.002008450976494101,0.000864662869542453,0.0023694926006528868,0.0010902297580819642,0.0005576749739207532,0.0002919025633652997,0.0,6.864579401949446e-05,0.0001375142247865629,5.307899101305758e-05,0.0001704484083591651,0.0,0.0,0.0,0.0011930533355117667,0.0004981937195589731,0.00034534125209533326,0.0,0.00033290618102037084 +102492,50.0,the Greater Atlanta and Macon Area,G1300890023108,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,26968.0,,2471.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0022628939053113864,0.0007200061746719067,0.0,0.0029829000799832936,0.0019755292810308164,0.0006946138455419464,0.00031272657981109273,0.0,0.0,0.0012555231063589092,0.0006946138455419464,0.00031272657981109273,0.0,0.0,0.0007200061746719067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.81076058476258e-05,0.0,0.0,0.00026966336157463916,0.00011634203529956834,0.000317770967422265,0.00014961752320809217,8.277538073944891e-05,3.7266838081829804e-05,0.0,0.0,4.81076058476258e-05,0.0,0.0,0.0,0.0,0.0,0.00021045487075372976,7.399782351542942e-05,3.331503742686e-05,0.0,0.0 +102493,50.0,the Greater Atlanta and Macon Area,G1300670030507,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2606.0,,305.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005596787679938934,0.00024208360483495283,0.0,0.0008017623728288463,0.0006061601434353841,0.00011074477173693263,5.7564123322557956e-05,0.0,2.729333433397145e-05,0.0003640765386004313,0.00011074477173693263,5.7564123322557956e-05,0.0,2.729333433397145e-05,0.00024208360483495283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.617673207281528e-05,0.0,0.0,6.669655049452033e-05,3.7265134117457405e-05,8.287328256733561e-05,4.338676153049778e-05,1.3197381574133693e-05,6.859878697234541e-06,0.0,3.2525286926543085e-06,1.617673207281528e-05,0.0,0.0,0.0,0.0,0.0,6.265507405983109e-05,1.1447011074650542e-05,5.950052059713799e-06,0.0,2.8211453731401638e-06 +102494,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,59059.0,,3981.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011551433691687362,0.002738627093231108,0.0,0.014290060784918469,0.004824243850365078,0.000683921643604867,0.00509039666280401,0.00038169368574508204,0.0033098049423994345,0.004824243850365078,0.000683921643604867,0.002351769569572902,0.00038169368574508204,0.0033098049423994345,0.0,0.002738627093231108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018297908022938411,0.0,0.0,0.001376563167220608,0.000526911138490641,0.0015595422474499918,0.00057489629178082,8.150168792718202e-05,0.0002802560663611814,4.5485736487884095e-05,0.0003944233846635406,0.0,0.00018297908022938414,0.0,0.0,0.0,0.0,0.0005264926587705961,7.463961932708547e-05,0.0005555391800921999,4.16560459373688e-05,0.0003612147433227419 +102495,50.0,the Greater Atlanta and Macon Area,G1300670031507,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,136383.0,,9966.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007466290654707077,0.0016947920570585871,0.0,0.009161082711765663,0.00451939820452578,0.0021089378391081805,0.0011861257182786925,0.0,0.0013466209498530102,0.003972629319054191,0.0021089378391081805,0.0011861257182786925,0.0,0.00019859777826601146,0.0005467688854715883,0.0,0.001148023171586999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011323647597686235,0.0,0.0,0.0008897428338374319,0.00031971550014869415,0.0010029793098142942,0.0004734102423259621,0.0002513178787343525,0.00014134821515465734,0.0,2.3666497622459813e-05,3.653202261996381e-05,0.0,7.670445335689853e-05,0.0,0.0,0.0,0.0004947955426851052,0.0002308920337105323,0.00012986014772514349,0.0,0.00014743158569351317 +102496,50.0,the Greater Atlanta and Macon Area,G1301170130608,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5419.0,,47.0,1696.0,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009610561968507522,3.746630440390626e-05,0.000435287329089975,0.0014338098303446334,0.0008828153050933674,0.0002783093031327695,0.000235136210640851,0.0,3.746630440390626e-05,0.00044752797600339244,0.0002783093031327695,0.000235136210640851,0.0,0.0,0.0,0.0,3.746630440390626e-05,0.0,0.0,0.0,0.0,0.000435287329089975,0.0,0.0,2.5037263596960704e-06,0.0,3.510741336490379e-05,0.00011452296850104976,6.623573147316365e-05,0.00015213410822564964,5.33290690670551e-05,3.316435361497698e-05,2.801969014186613e-05,0.0,0.0,0.0,0.0,2.5037263596960704e-06,3.510741336490379e-05,0.0,0.0,9.367094319338856e-05,2.9529953517496028e-05,2.4949081084767072e-05,0.0,3.975354812310757e-06 +102497,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,24544.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.007750397173036759,0.0,0.0,0.007750397173036758,0.0036036299098953636,0.00166232947508634,0.0022778355178542657,0.0,0.00020660227020078995,0.0036036299098953636,0.00166232947508634,0.0022778355178542657,0.0,0.00020660227020078995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009235997358183765,0.00029249381620981524,0.0009235997358183765,0.00042943755764486314,0.00019809656586041414,0.00027144522216835,0.0,2.462039014474922e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00042943755764486324,0.00019809656586041417,0.00027144522216835006,0.0,2.4620390144749225e-05 +102498,50.0,the Greater Atlanta and Macon Area,G1301350050308,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,36823.0,,5614.0,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,163187.89066084955,0.0,0.0,0.009699277504950742,0.004758779837994876,0.0,0.014458057342945616,0.00886413559548947,0.0007287273831631024,0.004716267057970444,0.0,0.00014892730632259886,0.004105355757494596,0.0007287273831631024,0.004716267057970444,0.0,0.00014892730632259886,0.004758779837994876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003179523139199895,0.0,0.0,0.0011558455668358382,0.0007086054778130735,0.0014737978807558274,0.0004892279090027141,8.684113995408679e-05,0.0005620291169302639,0.0,1.7747400948773346e-05,0.0003179523139199895,0.0,0.0,0.0,0.0,0.0,0.000903575352171282,7.428362244520667e-05,0.0004807578383624832,0.0,1.5181067776855457e-05 +102499,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302670950300,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,3981.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00021453737318263892,0.0,0.0,0.00021453737318263892,9.23751829984751e-05,5.4822277510803275e-05,1.1524734923034321e-05,0.0,5.583290811174628e-05,9.23751829984751e-05,5.4822277510803275e-05,1.1524734923034321e-05,0.0,5.583290811174628e-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,2.556604311684741e-05,6.680240014619234e-06,2.556604311684741e-05,1.1008188813121901e-05,6.5330748196109255e-06,1.3733824814835384e-06,0.0,6.653509898756404e-06,0.0,0.0,0.0,0.0,0.0,0.0,1.1008188813121901e-05,6.5330748196109255e-06,1.3733824814835384e-06,0.0,6.653509898756404e-06 +102500,50.0,the Greater Atlanta and Macon Area,G1301210007706,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2555.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0006134383659244431,0.0,0.0,0.0006134383659244432,0.0003276027190813967,0.0001137222263915477,0.00014597798514987762,0.0,2.6135435301621144e-05,0.0003276027190813967,0.0001137222263915477,0.00014597798514987762,0.0,2.6135435301621144e-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,7.310207879469286e-05,2.3308786709301773e-05,7.310207879469286e-05,3.903968371387063e-05,1.355202350582482e-05,1.73958701729315e-05,0.0,3.1145014020659222e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.9039683713870625e-05,1.3552023505824818e-05,1.7395870172931495e-05,0.0,3.114501402065922e-06 +102501,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,164111.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013296620252265176,0.0,0.0,0.013296620252265176,0.007739982850324546,0.0037163921328055615,0.0018402148955356317,0.0,0.0,0.007739982850324546,0.0037163921328055615,0.0018402148955356317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015845318976843673,0.0004249373822937813,0.0015845318976843673,0.0009223584250125445,0.0004428750890836684,0.00021929476402647306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009223584250125445,0.0004428750890836684,0.00021929476402647306,0.0,0.0 +102502,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,92295.0,,2095.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007893857773469919,0.0006166155697334443,0.0,0.008510473343203363,0.0019676947973835115,0.0035598715721083312,0.002982876284105222,0.0,0.0,0.0013510792276500672,0.0035598715721083312,0.002982876284105222,0.0,0.0,0.0006166155697334443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.119842649859225e-05,0.0,0.0,0.0009406946028483603,0.00032492734570557026,0.0009818930293469526,0.0001610052998094839,0.0004242224867504291,0.0003554631590719333,0.0,0.0,4.119842649859225e-05,0.0,0.0,0.0,0.0,0.0,0.00022702213232077406,0.00041071899776468437,0.0003441483584583823,0.0,0.0 +102503,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,46668.0,,1422.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.0038106270067591688,0.00024178893868526008,0.0,0.004052398215083008,0.0016453420790580602,0.0007499056362611332,0.0010206482551453396,0.0,0.0006365022446184757,0.0016453420790580602,0.0007499056362611332,0.0007788593164600796,0.0,0.0006365022446184757,0.0,0.00024178893868526008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.615463954382112e-05,0.0,0.0,0.00045410412565859886,0.00016699391048873428,0.00047025876520241996,0.00019607183408260087,8.936462232508892e-05,9.281496936981929e-05,0.0,7.585058699251372e-05,0.0,1.615463954382112e-05,0.0,0.0,0.0,0.0,0.00019093299655339443,8.702246911814713e-05,0.00011844067702532543,0.0,7.386262250555301e-05 +102504,50.0,the Greater Atlanta and Macon Area,G1300670030410,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,33442.0,,3572.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003103455747248896,0.0010514566013655948,0.0,0.004154912348614491,0.0016046060652753899,0.0014624824985107283,0.0010877930952220751,0.0,0.0,0.000553149463909795,0.0014624824985107283,0.0010877930952220751,0.0,0.0,0.0010514566013655948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.025310907011304e-05,0.0,0.0,0.00036983206926673466,0.00019044899609568347,0.00044008517833684773,6.591761813677886e-05,0.0001742808574506247,0.00012962993646571942,0.0,0.0,7.025310907011304e-05,0.0,0.0,0.0,0.0,0.0,0.00016995866269780318,0.00015490504183228676,0.00011521822318683435,0.0,0.0 +102505,46.0,the Tallahassee-Valdosta Area,G1301850010604,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,43550.0,,5652.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002135090122202759,0.0009611451622196425,0.0,0.003096235284422401,0.001338074915648545,0.000506698268662269,0.0006406156884679278,0.0,0.0006108641420050793,0.0010709315601326094,0.000506698268662269,0.00044659234344829004,0.0,0.00011086794995959019,0.00026714335551593555,0.0001940233450196378,0.000499996192045489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.421814954526732e-05,0.0,0.0,0.0002544345887607172,0.00012185992782771171,0.0003186527383059845,0.00012762085696508952,6.0382259405445724e-05,5.3219551749750414e-05,0.0,1.3211920640431528e-05,1.78489708203166e-05,1.2963515476652587e-05,3.340684788829416e-05,0.0,0.0,0.0,0.00013770957203257213,5.2147455206800836e-05,6.592972580575691e-05,0.0,6.286781000209635e-05 +102506,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960202,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,44354.0,,8372.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002663064824569091,0.0014238012131145002,0.0,0.004086866037683593,0.0016096331311580738,0.0005023188693915159,0.0015631618538761152,0.0,0.0004117521832578862,0.001478091579782702,0.0005023188693915159,0.00027090219213698677,0.0,0.0004117521832578862,0.00013154155137537173,0.0012922596617391284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.512948691139302e-05,0.0,0.0,0.00031735330371999185,0.00017735124329599283,0.0004124827906313849,0.00017614188048187807,5.98605603782413e-05,3.228299396488472e-05,0.0,4.906786889498775e-05,8.78878327578826e-06,8.634070363560475e-05,0.0,0.0,0.0,0.0,0.00016245846076450702,5.0698478277221174e-05,0.00015776816703803786,0.0,4.155768455161863e-05 +102507,50.0,the Greater Atlanta and Macon Area,G1300450910600,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13894.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0033360725263487045,0.0,0.0,0.0033360725263487045,0.0015715998151943197,0.0008370782933155304,0.0008184692017241861,0.0,0.00010892521611466789,0.0015715998151943197,0.0008370782933155304,0.0008184692017241861,0.0,0.00010892521611466789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039755822814508437,0.0001266515026447195,0.00039755822814508437,0.0001872868269340761,9.975423510155688e-05,9.753659821806212e-05,0.0,1.2980567891389234e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0001872868269340761,9.975423510155688e-05,9.753659821806212e-05,0.0,1.2980567891389234e-05 +102508,35.0,Eastern Counties in South Carolina and Georgia,G1300730030105,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,4906.0,,236.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003200925936850401,6.941988944540369e-05,0.0,0.0003895124831304437,0.0001345125444028313,0.0001432283925913789,0.00011177154613623354,0.0,0.0,6.509265495742761e-05,0.0001432283925913789,0.00011177154613623354,0.0,0.0,6.941988944540369e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.637738269904184e-06,0.0,0.0,3.8145550814739226e-05,1.865744210304996e-05,4.278328908464341e-05,7.757115367024152e-06,1.7068579640689162e-05,1.3319855807025909e-05,0.0,0.0,4.637738269904184e-06,0.0,0.0,0.0,0.0,0.0,1.4774594709895372e-05,1.5731926422788437e-05,1.2276767951959605e-05,0.0,0.0 +102509,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Propane,212241.0,,8689.0,42098.0,3.3063363735822096,Lodging,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,247975.22801866572,0.0,0.0,0.020623897130669443,0.002611742108500119,0.00409384253061414,0.027329450431761496,0.009253334506273893,0.005764127776062933,0.008218176956832732,0.0,0.00409384253061414,0.009253334506273893,0.005764127776062933,0.005606434848332613,0.0,0.0,0.0,0.002611742108500119,0.0,0.0,0.0,0.0,0.0,0.0,0.00409384253061414,0.0,0.0001745007713971975,0.0,0.00033016202737621935,0.002457709842639598,0.0014247547539785051,0.002962372641413015,0.0011027019359734255,0.0006868999335918588,0.0006681079730743132,0.0,0.0,0.0,0.0001745007713971975,0.0,0.0,0.00033016202737621935,0.0,0.0010030141312820386,0.0006248019684132775,0.0008908083475736032,0.0,0.000443751591025414 +102510,85.0,Rural Climate Zone 3A,G1302330010100,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,43855.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003600273862155037,0.0,0.0,0.003600273862155036,0.0020658907393581285,0.0013049409526441316,0.00022944217015277726,0.0,0.0,0.0020658907393581285,0.0013049409526441316,0.00022944217015277726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042903743660205904,0.00010484555387649513,0.00042903743660205904,0.00024618806819978956,0.0001555072038059803,2.7342164596289252e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002461880681997896,0.00015550720380598033,2.734216459628926e-05,0.0,0.0 +102511,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,34905.0,,6787.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0019117584897557734,0.0011542642588068574,0.0,0.0030660227485626306,0.0009610919711353823,0.0004570709870475412,0.001290344782705763,0.0,0.0003574795469511046,0.0007494978379484721,0.0004570709870475412,0.0006370341554610771,0.0,6.812004857584287e-05,0.0002115941331869101,0.0006533106272446856,0.00028935949837526173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.712113957780509e-05,0.0,0.0,0.00022781985186395617,0.00013922668254125434,0.0003049409914417613,8.931592945905509e-05,5.4468095796862726e-05,7.591389169034797e-05,0.0,8.11770914510053e-06,1.4137473767246678e-05,4.365036835107578e-05,1.933329745948264e-05,0.0,0.0,0.0,9.558844228475996e-05,4.545944090430629e-05,0.00012833532221000795,0.0,3.555425918432147e-05 +102512,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,13249.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006859724695938158,0.0,0.0,0.006859724695938157,0.0037096603784291565,0.001704344668545908,0.0012308466713883731,0.0,0.00021487297757472068,0.0037096603784291565,0.001704344668545908,0.0012308466713883731,0.0,0.00021487297757472068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008174615923801817,0.0002484877169358064,0.0008174615923801817,0.00044207384619035804,0.00020310382245211482,0.00014667788061010204,0.0,2.5606043127606848e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004420738461903581,0.00020310382245211485,0.00014667788061010207,0.0,2.560604312760685e-05 +102513,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,52882.0,,4050.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004711713875673713,0.001192291204665753,0.0,0.0059040050803394655,0.001958242398643819,0.0016356332572423674,0.002310129424453279,0.0,0.0,0.0007659511939780661,0.0016356332572423674,0.002310129424453279,0.0,0.0,0.001192291204665753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.966092469421373e-05,0.0,0.0,0.0005614875068858827,0.0002314429329933893,0.0006411484315800964,9.127719501887513e-05,0.0001949158340302095,0.000275294477836798,0.0,0.0,7.966092469421373e-05,0.0,0.0,0.0,0.0,0.0,0.0002126563282821466,0.0001776224246509103,0.0002508696786470396,0.0,0.0 +102514,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Propane,7385.0,,,224.0,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001499644661041122,0.0,5.756412332255797e-05,0.0015572087843636802,0.0006891980454696488,0.0005409042622550705,0.0002782265960590301,0.0,4.887988057993068e-05,0.0006805138027270215,0.0005409042622550705,0.0002782265960590301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.68424274262728e-06,4.887988057993068e-05,0.0,0.0,0.0,4.641940630077014e-06,0.00017870643736368722,5.790291169254454e-05,0.00018334837799376423,8.1094008748534e-05,6.445731857260724e-05,3.315511004254598e-05,0.0,0.0,0.0,0.0,0.0,7.002927674685151e-07,3.941647862608498e-06,0.0,8.114733555460151e-05,6.368697642230815e-05,3.2758866771352386e-05,0.0,5.7551992455021585e-06 +102515,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,64151.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005715724345703059,0.0,0.0,0.005715724345703059,0.0018474222303028148,0.001638917045116222,0.002229415759890321,0.0,0.0,0.0018474222303028148,0.001638917045116222,0.002229415759890321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006811330549107207,0.00021717724267333914,0.0006811330549107207,0.00022015413468673005,0.00019530692982499867,0.0002656756476266727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022015413468673005,0.00019530692982499867,0.0002656756476266727,0.0,0.0 +102516,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,8621.0,,3530.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010187107914459463,0.0010391807588465138,0.0,0.00205789155029246,0.0011789105363199546,0.0003587921872264432,0.0005201888267460621,0.0,0.0,0.00013972977747344077,0.0003587921872264432,0.0005201888267460621,0.0,0.0,0.0010391807588465138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.943225467791092e-05,0.0,0.0,0.00012139895100817638,0.00010654151339635514,0.0001908312056860873,1.6651485929391665e-05,4.2756978256208646e-05,6.199048682257605e-05,0.0,0.0,6.943225467791092e-05,0.0,0.0,0.0,0.0,0.0,0.0001093220480982083,3.3271309010156534e-05,4.823784857772246e-05,0.0,0.0 +102517,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,DistrictHeating,92466.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,215998.51729091106,0.0,0.0019435425328965291,0.014655675545324171,0.0,0.0,0.0165992180782207,0.010988385486200816,0.001522186879275872,0.003985135694699862,0.0,0.00010345542415277874,0.009148298377457063,0.001522186879275872,0.003985135694699862,0.0,0.0,0.0,0.0,0.0,0.001840087108743751,0.0,0.00010345542415277874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017464903396042938,0.0005642169936144262,0.0017464903396042938,0.00109018616648783,0.00018139625645410086,0.0004749014108070994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011561453683579105,0.000160157223502945,0.00041929691868664276,0.0,1.0885084948643594e-05 +102518,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,127879.0,,1763.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.01376909739371453,0.000655352091257236,0.0,0.014424449484971765,0.007353133385533063,0.0023845005020864314,0.0044963670945124875,0.0,0.00019044850283978692,0.007353133385533063,0.0023845005020864314,0.0038410150032552512,0.0,0.00019044850283978692,0.0,0.000655352091257236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.378626825190676e-05,0.0,0.0,0.0016408386657508003,0.0004628293817404702,0.0016846249340027072,0.0008762597306424341,0.0002841566524260095,0.0004577268758333557,0.0,2.269540684900121e-05,0.0,4.378626825190676e-05,0.0,0.0,0.0,0.0,0.0008587691237175133,0.0002784847355971478,0.0005251286801438627,0.0,2.2242394544183774e-05 +102519,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,9971.0,,2076.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.000464695042458164,0.00035302922623467133,0.0,0.0008177242686928354,0.00030551185762892985,0.00013228622655501397,0.00021482105896535972,0.0,0.00016510512554353168,0.00020008712862529588,0.00013228622655501397,8.615182614003657e-05,0.0,4.615213077639746e-05,0.00010542472900363396,0.00012866923282532316,0.00011895299476713425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3587916946488028e-05,0.0,0.0,5.537648698357842e-05,3.771066591483637e-05,7.896440393006645e-05,2.3843857286034657e-05,1.5764201968197128e-05,1.026648671270203e-05,0.0,5.499828136069848e-06,7.044033657968853e-06,8.597132905462488e-06,7.947935050674911e-06,0.0,0.0,0.0,2.950207381003848e-05,1.2774358580273759e-05,2.0744421466103313e-05,0.0,1.5943550073650878e-05 +102520,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,18218.0,,1847.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001600708485275582,0.0005435436171386139,0.0,0.0021442214128078985,0.0011022172101819952,0.00047160717997679863,0.0005704277122554017,0.0,0.0,0.0005586735930433814,0.00047160717997679863,0.0005704277122554017,0.0,0.0,0.0005435436171386139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.63159038100788e-05,0.0,0.0,0.00019075181806833412,9.759341228646639e-05,0.00022706772187841296,6.65755223765473e-05,5.620006879589113e-05,6.797622689589565e-05,0.0,0.0,3.63159038100788e-05,0.0,0.0,0.0,0.0,0.0,0.00011672206491187951,4.994202899904922e-05,6.040687792056537e-05,0.0,0.0 +102521,35.0,Eastern Counties in South Carolina and Georgia,G1300510004100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,112025.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.009282111240978082,0.0,0.0,0.00928211124097808,0.0067879223759482145,0.0019417842120554737,0.0005524046529743924,0.0,0.0,0.0067879223759482145,0.0019417842120554737,0.0005524046529743924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011061307194172808,0.0003553959401414171,0.0011061307194172808,0.0008089031973576178,0.00023139855919327598,6.582896286638684e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008089031973576179,0.000231398559193276,6.582896286638685e-05,0.0,0.0 +102522,50.0,the Greater Atlanta and Macon Area,G1301350050714,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,36836.0,,3026.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0030609906041377533,0.0008815026028824333,0.0,0.003942493207020187,0.0026358817064069786,0.0010011138374683,0.0003054976631449078,0.0,0.0,0.0017543791035245452,0.0010011138374683,0.0003054976631449078,0.0,0.0,0.0008815026028824333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.889691343247886e-05,0.0,0.0,0.0003647717156836214,0.00015062636273959493,0.0004236686291161003,0.00020906561251350466,0.00011930059883042095,3.640550433969581e-05,0.0,0.0,5.889691343247886e-05,0.0,0.0,0.0,0.0,0.0,0.0002832574034819215,0.0001075818028941962,3.282942273998256e-05,0.0,0.0 +102523,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,98665.0,,7748.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00879094565515807,0.002280698092013782,0.0,0.01107167443677815,0.0039033496457922217,0.002601834132312945,0.0045664599690666855,0.0,0.0,0.0016226515537784392,0.002601834132312945,0.0045664599690666855,0.0,0.0,0.002280698092013782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015238318286555058,0.0,0.0,0.0010476018632114977,0.0004682662967097669,0.0011999850460770482,0.00019336859284119405,0.00031005609540755383,0.0005441771749627498,0.0,0.0,0.00015238318286555058,0.0,0.0,0.0,0.0,0.0,0.0004230580687056256,0.00028199547132429345,0.0004949281798051196,0.0,0.0 +102524,85.0,Rural Climate Zone 3A,G1300550010400,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,16072.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014319770298508118,0.0,0.0,0.001431977029850812,0.0003638559722655641,0.0004597916815521831,0.0006083293760330645,0.0,0.0,0.0003638559722655641,0.0004597916815521831,0.0006083293760330645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001706476891738994,5.859055516866151e-05,0.0001706476891738994,4.336045869793723e-05,5.4793049275682834e-05,7.249418120027934e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.336045869793722e-05,5.479304927568283e-05,7.249418120027932e-05,0.0,0.0 +102525,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,NaturalGas,40709.0,,3004.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003993208813031895,0.0008841982470431148,0.0,0.004877437749681308,0.0028459392608048725,0.0008629917290914023,0.0011685374493913313,0.0,0.0,0.0019617410137617573,0.0008629917290914023,0.0011685374493913313,0.0,0.0,0.0008841982470431148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.907762348463718e-05,0.0,0.0,0.00047586474150497406,0.00020358424125609104,0.0005349423649896113,0.00023377775220942047,0.00010284143787942967,0.00013925286588538992,0.0,0.0,5.907762348463718e-05,0.0,0.0,0.0,0.0,0.0,0.00031213386145035254,9.465027750621584e-05,0.00012816159197463281,0.0,0.0 +102526,50.0,the Greater Atlanta and Macon Area,G1301510070113,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,28748.0,,1772.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0064502419738548455,0.0014056067181995296,0.0,0.007855848692054376,0.0041996997903345525,0.0017060815170944336,0.001764307297006906,0.0,0.00018576008761848445,0.002979853159753507,0.0017060815170944336,0.001764307297006906,0.0,0.0,0.001219846630581045,0.0,0.00018576008761848445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.391463289189553e-05,0.0,0.0,0.0007686583764574917,0.0002880615845186107,0.0008625730093493872,0.00035510126614505855,0.00020330924860640785,0.0002102478617060254,0.0,0.0,8.150320214901836e-05,0.0,1.241143074287716e-05,0.0,0.0,0.0,0.00046112747693025335,0.0001873279293024,0.00019372112603639695,0.0,2.0396477080336935e-05 +102527,50.0,the Greater Atlanta and Macon Area,G1301210001002,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,28270.0,,2188.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0024720170976736617,0.0006441748361887813,0.0,0.0031161612442561454,0.0012606676474970348,0.0007677311911433327,0.0010877930952220751,0.0,0.0,0.0006164928113082535,0.0007677311911433327,0.0010877930952220751,0.0,0.0,0.0006441748361887813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.303929069150218e-05,0.0,0.0,0.0002945841329851957,0.00013218600253983042,0.00033762342367669784,7.346591594441408e-05,9.148861774519429e-05,0.00012962959929558728,0.0,0.0,4.303929069150218e-05,0.0,0.0,0.0,0.0,0.0,0.0001365882231065354,8.318055867454817e-05,0.00011785796698990087,0.0,0.0 +102528,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,34369.0,,10882.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007156290427908686,0.0074858436947254185,0.0,0.014642134122634105,0.007351297029100134,0.0011872524001924254,0.0020507608512203824,0.0003710074100637559,0.0036818881520284236,0.0039996076236275815,0.0011872524001924254,0.0012015963943955478,0.0003710074100637559,0.0003968983196003916,0.0033516894054725515,0.0008491644568248347,0.0032849898324280326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005001608270494131,0.0,0.0,0.0008528028706298173,0.0007387479017226187,0.0013529636976792304,0.00047662638865528527,0.00014148283461185994,0.0001431921838279027,4.42123174729462e-05,4.7297692807903404e-05,0.00022394052205967107,5.6736263051516164e-05,0.00021948404193822594,0.0,0.0,0.0,0.0006792751608424944,0.00010970459524474781,0.00018949457511346617,3.42818576296412e-05,0.0003402141359236207 +102529,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010601,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,11665.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0028010404663291245,0.0,0.0,0.0028010404663291245,0.0013860878487970533,0.0005270094738668669,0.0007984540898792739,0.0,8.940634671219132e-05,0.0013860878487970533,0.0005270094738668669,0.0007984540898792739,0.0,8.940634671219132e-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.00033379321736384956,9.38597180845695e-05,0.00033379321736384956,0.00016517673634513702,6.280244429806152e-05,9.514984263237381e-05,0.0,1.0654338086347221e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00016517673634513702,6.280244429806152e-05,9.514984263237381e-05,0.0,1.0654338086347221e-05 +102530,50.0,the Greater Atlanta and Macon Area,G1300630040621,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,27098.0,,2708.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006361398664784147,0.002100601422554213,0.0,0.008462000087338361,0.004294920492684851,0.0007466684708547852,0.002345286152119579,0.0004151392602738215,0.0006599048506222548,0.0028542239207528922,0.0007466684708547852,0.002345286152119579,0.0004151392602738215,0.0,0.0014406965719319586,0.0,0.0006599048506222548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014035043129651963,0.0,0.0,0.0007580739640415141,0.0003822083856458439,0.0008984243953380339,0.00034013162134379074,8.897884841884989e-05,0.00027948262069962343,4.947123757660553e-05,0.0,9.625928225460353e-05,0.0,4.409114904191612e-05,0.0,0.0,0.0,0.00045599873633173435,7.927501329732155e-05,0.0002490028682776169,4.4076014540659403e-05,7.006317776905362e-05 +102531,50.0,the Greater Atlanta and Macon Area,G1300670031312,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,13553.0,,1930.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001207574628602009,0.0005681566813893715,0.0,0.0017757313099913809,0.0007537981098841756,0.00048290095509435324,0.0005390322450128517,0.0,0.0,0.00018564142849480413,0.00048290095509435324,0.0005390322450128517,0.0,0.0,0.0005681566813893715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.796106091876001e-05,0.0,0.0,0.00014390502506247943,8.4983219486609e-05,0.00018186608598123947,2.212263638820113e-05,5.754664962280455e-05,6.423573905147374e-05,0.0,0.0,3.796106091876001e-05,0.0,0.0,0.0,0.0,0.0,7.720217078638812e-05,4.945754243643909e-05,5.520637275841224e-05,0.0,0.0 +102532,50.0,the Greater Atlanta and Macon Area,G1300890021218,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,111543.0,,9252.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005741693860101379,0.0015733213509698054,0.0,0.007315015211071184,0.003689351334646007,0.0015850588502298807,0.0009628118161931272,0.0,0.0010778109403635897,0.0030009168614281976,0.0015850588502298807,0.0009628118161931272,0.0,0.00019292406261159456,0.0006884344732178101,0.0,0.0008848868777519952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010512021467238516,0.0,0.0,0.0006842263281175058,0.00025860658829785616,0.000789346542789891,0.00035761334113426093,0.00018888833563198676,0.00011473638436904378,0.0,2.2990379874400407e-05,4.5997201759143647e-05,0.0,5.9123012913241504e-05,0.0,0.0,0.0,0.00039810945529307343,0.0001710400713389987,0.00010389481860804094,0.0,0.00011630411079248294 +102533,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10709.0,,831.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013444873791120843,0.00024210796111831978,0.0,0.0015865953402304043,0.0009082617439870927,0.0005902805314732689,8.805306477004254e-05,0.0,0.0,0.000666153782868773,0.0005902805314732689,8.805306477004254e-05,0.0,0.0,0.00024210796111831978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6175834418981566e-05,0.0,0.0,0.00016022092024627578,6.602211595372141e-05,0.00017639675466525737,7.938473337493101e-05,7.034301059677227e-05,1.049317627457254e-05,0.0,0.0,1.6175834418981566e-05,0.0,0.0,0.0,0.0,0.0,0.00010098001674621317,6.562704897321027e-05,9.789688945833929e-06,0.0,0.0 +102534,50.0,the Greater Atlanta and Macon Area,G1300670030215,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,17832.0,,14609.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004301874520028745,0.01133045550591131,0.0,0.01563233002594006,0.003538548727861842,0.00041368376617858794,0.010801464263077003,0.0004114196642526692,0.00046729446535302184,0.0027750612141288033,0.00041368376617858794,0.0007017907362517523,0.0004114196642526692,0.0,0.0007634875137330389,0.010099673526825252,0.00046729446535302184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007570352455937748,0.0,0.0,0.0005126500654241122,0.0008942040068306136,0.001269685311017887,0.0003307012574066297,4.9298278880279656e-05,8.363169710749552e-05,4.902846812800291e-05,0.0,5.1011802408572634e-05,0.0006748015403977482,3.122190278745406e-05,0.0,0.0,0.0,0.00028740714497658715,3.36001223395311e-05,0.0008773139058320763,3.341622800303641e-05,3.795447752153053e-05 +102535,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,3984.0,,834.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009080409625838564,0.0006618220040619379,0.0,0.0015699456737195334,0.000892161204425909,0.0003549787604891075,0.00027739952532163705,0.0,4.532347640914047e-05,0.00027566267677311165,0.0003549787604891075,0.00027739952532163705,0.0,0.0,0.0006164985276527974,0.0,4.532347640914047e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.421918280168747e-05,0.0,0.0,0.00010821434281722791,8.235035760723249e-05,0.00015243352561891536,3.285166268419897e-05,4.230403127530214e-05,3.305864885772677e-05,0.0,0.0,4.119092584401129e-05,0.0,3.028256957676173e-06,0.0,0.0,0.0,8.662419349126751e-05,3.4466583708586286e-05,2.693404514412823e-05,0.0,4.40067285002453e-06 +102536,50.0,the Greater Atlanta and Macon Area,G1300670031002,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,14730.0,,2298.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035584718476337025,0.0018230293193618142,0.0,0.005381501166995516,0.0035913892629819456,0.0007379952189758401,0.0009370711454663531,0.0,0.00011488012542389799,0.0018833227761177692,0.0007379952189758401,0.0009370711454663531,0.0,0.0,0.0017080664868641766,0.0,0.00011488012542389799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012180236606194646,0.0,0.0,0.0004240608891224338,0.00024173861349755405,0.0005458632551843803,0.00022443441037087595,8.794643378592623e-05,0.00011167018881480939,0.0,0.0,0.00011412133490206505,0.0,7.675505238183632e-06,0.0,0.0,0.0,0.0003642863529880177,7.48572675244014e-05,9.505018951602239e-05,0.0,1.165266665823081e-05 +102537,50.0,the Greater Atlanta and Macon Area,G1300890021813,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,12818.0,,906.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.002803025436098868,0.000718641763720842,0.0,0.0035216671998197103,0.001828736107449826,0.0006431302053968546,0.0009710637527732086,0.0,7.873713419982066e-05,0.0011100943437289841,0.0006431302053968546,0.0009710637527732086,0.0,7.873713419982066e-05,0.000718641763720842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.801394417154109e-05,0.0,0.0,0.00033403151575243847,0.00014433375508152038,0.00038204545992397956,0.00013228795268446574,7.664067352662835e-05,0.00011571992642440116,0.0,9.382963116943182e-06,4.801394417154109e-05,0.0,0.0,0.0,0.0,0.0,0.0001983890832404676,6.976950437691087e-05,0.00010534513257321382,0.0,8.541739733387236e-06 +102538,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,23470.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003148508089293924,0.0,0.0,0.003148508089293924,0.0011488961013608014,0.000844547275706483,0.0011550647122266396,0.0,0.0,0.0011488961013608014,0.000844547275706483,0.0011550647122266396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037520225907712145,0.00012923985310061046,0.00037520225907712145,0.00013691195971236663,0.00010064323697309054,0.00013764706239166423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013691195971236663,0.00010064323697309054,0.00013764706239166423,0.0,0.0 +102539,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,56860.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.004794514433464916,0.0,0.0,0.004794514433464915,0.0013776871163101757,0.0012681559114336746,0.0021487020953273625,0.0,0.0,0.0013776871163101757,0.0012681559114336746,0.0021487020953273625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005713528718740841,0.00016739644431471633,0.0005713528718740841,0.00016417626881120627,0.00015112365017078402,0.0002560566101122228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001641762688112063,0.00015112365017078404,0.0002560566101122228,0.0,0.0 +102540,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,53018.0,,6943.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0026687030795006675,0.0011807356884069962,0.0,0.003849438767907664,0.0016321329598001208,0.0003592171223702698,0.0014739958662946695,0.0,0.00038409281944260383,0.0009907194050682907,0.0003592171223702698,0.0012486075119229583,0.0,7.015904013914894e-05,0.0006414135547318301,0.0002253883543717112,0.0003139337793034549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.888977439863988e-05,0.0,0.0,0.0003180237949993019,0.00016853977786395827,0.0003969135693979418,0.00011806197077504052,4.2807157290160895e-05,0.00014879396005368757,0.0,8.360706880412965e-06,4.285545963067538e-05,1.505911661944785e-05,2.0975198148516653e-05,0.0,0.0,0.0,0.00016828835522909467,3.7038685072093875e-05,0.00015198292422425726,0.0,3.960360487249603e-05 +102541,35.0,Eastern Counties in South Carolina and Georgia,G1300510011200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,176814.0,,21854.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.016970009093776675,0.006568856848238386,0.0,0.023538865942015066,0.007186591941922822,0.0036993908451329115,0.00876026206491681,0.0,0.0038926524280647255,0.007186591941922822,0.0036993908451329115,0.006084026306720943,0.0,0.0,0.0,0.0026762357581958654,0.0038926524280647255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004388931618464123,0.0,0.0,0.0020222840103427944,0.0012034647684669843,0.002461177172189207,0.0008564126213897333,0.00044084943695547885,0.0007250219519975824,0.0,0.0,0.0,0.00017881065167008612,0.00026008460400238587,0.0,0.0,0.0,0.0007514158106371883,0.0003868009750969095,0.0009159556399055063,0.0,0.000407008023191097 +102542,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,99867.0,,14054.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00846081756021368,0.004136744101686252,0.0,0.012597561661899934,0.005541346002719513,0.0028664399178117378,0.004189745051762384,0.0,0.0,0.0014046019010332611,0.0028664399178117378,0.004189745051762384,0.0,0.0,0.004136744101686252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002763927874466395,0.0,0.0,0.0010082586071466346,0.0005456854615707556,0.001284651394593274,0.00016738358276283935,0.0003415878782912069,0.0004992834888739474,0.0,0.0,0.0002763927874466395,0.0,0.0,0.0,0.0,0.0,0.0005650853761523769,0.00029230863374708906,0.00042725425508455587,0.0,0.0 +102543,50.0,the Greater Atlanta and Macon Area,G1301350050525,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,92551.0,,17573.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008246205143373845,0.0051728252102966965,0.0,0.013418999664064244,0.006450464210076361,0.0027249915223856256,0.004243574621208555,0.0,0.0,0.0012776389997796649,0.0027249915223856256,0.004243574621208555,0.0,0.0,0.0051728252102966965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034561700950722204,0.0,0.0,0.000982682676113873,0.000604717981245577,0.001328299685621095,0.00015225351414156708,0.0003247314267651035,0.0005056977352072025,0.0,0.0,0.00034561700950722204,0.0,0.0,0.0,0.0,0.0,0.000638508815623556,0.0002697373480229075,0.0004200565598310604,0.0,0.0 +102544,35.0,Eastern Counties in South Carolina and Georgia,G1302450000200,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,23650.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0019378052705291283,0.0,0.0,0.0019378052705291283,0.0011420777124589061,0.0005634910167691719,0.0002322061677016127,0.0,0.0,0.0011420777124589061,0.0005634910167691719,0.0002322061677016127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002309235473876945,6.41147842349858e-05,0.0002309235473876945,0.0001360986270211869,6.714985581492673e-05,2.7671445003509848e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001360986270211869,6.714985581492673e-05,2.7671445003509848e-05,0.0,0.0 +102545,50.0,the Greater Atlanta and Macon Area,G1300130180503,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,77962.0,,5386.0,,7.56685751697572,Food Service,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,56751.431377317895,0.014608138856372707,0.0,0.017177435098035956,0.0037051254226374815,0.0,0.03549069937704615,0.021260022728128602,0.0011435032178729026,0.009435335946871758,0.00036555669226656954,0.0032862090719352984,0.006651883871755894,0.0011435032178729026,0.005730210524234276,0.00036555669226656954,0.0032862090719352984,0.0,0.0037051254226374815,0.0,0.0,0.0,0.0,0.014608138856372707,0.0,0.0,0.0,0.0002475567990861131,0.0,0.0,0.0020469992334989093,0.0008758691610307182,0.002294556032585022,0.0007926911735713647,0.00013626890144716693,0.0006828572766510472,4.356263112620484e-05,0.00039161070398326575,0.0,0.0002475567990861131,0.0,0.0,0.0,0.0,0.0013745097803080334,7.393013530039463e-05,0.0006100163534777543,2.3634088034753604e-05,0.00021246103860161076 +102546,85.0,Rural Climate Zone 3A,G1300550010500,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,79224.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00698604936508067,0.0,0.0,0.00698604936508067,0.003923023729780588,0.002581269974617901,0.00048172528708274393,0.0,0.0,0.003923023729780588,0.002581269974617901,0.00048172528708274393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008325146223183974,0.00018832387229916701,0.0008325146223183974,0.00046749950480870717,0.00030760518366248715,5.740631428135938e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046749950480870717,0.00030760518366248715,5.740631428135938e-05,0.0,0.0 +102547,50.0,the Greater Atlanta and Macon Area,G1301710970100,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,14324.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0012630861326189096,0.0,0.0,0.0012630861326189094,0.000610600469497125,0.0005449631211121432,0.00010752254200964145,0.0,0.0,0.000610600469497125,0.0005449631211121432,0.00010752254200964145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001505191646996144,4.189982811196787e-05,0.0001505191646996144,7.276389967431402e-05,6.49420428770105e-05,1.2813222148289887e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.276389967431403e-05,6.494204287701051e-05,1.2813222148289888e-05,0.0,0.0 +102548,50.0,the Greater Atlanta and Macon Area,G1300670030901,ComStock 90.1-2004,gen2_t8_halogen,_1000,NaturalGas,2204.0,,206.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0004624979563502071,0.00016318105648765354,0.0,0.0006256790128378607,0.000326610234196525,0.00020015111844912396,8.758679108992656e-05,0.0,1.1413576176024422e-05,0.0001748427538848959,0.00020015111844912396,8.758679108992656e-05,0.0,0.0,0.0001517674803116291,0.0,1.1413576176024422e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0903155075770158e-05,0.0,0.0,5.511203638513926e-05,3.017233963013553e-05,6.601519146090941e-05,2.0834557388802645e-05,2.385034478756027e-05,1.0436989723151374e-05,0.0,0.0,1.014054210037417e-05,0.0,7.626129753959866e-07,0.0,0.0,0.0,3.446054079036764e-05,2.111788015008602e-05,9.241254164851692e-06,0.0,1.204242752360277e-06 +102549,50.0,the Greater Atlanta and Macon Area,G1300570090702,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,26640.0,,7232.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0026326771866421357,0.0021286617824149627,0.0,0.004761338969057099,0.0027048284510480347,0.0008745310210593385,0.001181979496949725,0.0,0.0,0.000576166668633072,0.0008745310210593385,0.001181979496949725,0.0,0.0,0.0021286617824149627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014222461016785432,0.0,0.0,0.0003137296016028242,0.00023028806213171434,0.00045595421177067847,6.86603508870118e-05,0.00010421568972388882,0.00014085356099192357,0.0,0.0,0.00014222461016785432,0.0,0.0,0.0,0.0,0.0,0.0002590191398653436,8.374663198051662e-05,0.00011318843992481812,0.0,0.0 +102550,35.0,Eastern Counties in South Carolina and Georgia,G1300510011600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,7783.0,,554.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005908363004433739,0.00016293111983450406,0.0,0.0007537674202778781,0.0003184967341575595,0.000236555485342693,0.00019871520077762553,0.0,0.0,0.00015556561432305543,0.000236555485342693,0.00019871520077762553,0.0,0.0,0.00016293111983450406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0887125131043772e-05,0.0,0.0,7.040775550820735e-05,3.277571631448753e-05,8.129488063925112e-05,1.853817331555699e-05,2.8189433796865895e-05,2.3680148395784474e-05,0.0,0.0,1.0887125131043772e-05,0.0,0.0,0.0,0.0,0.0,3.435032251431734e-05,2.5512843123950473e-05,2.143171500098331e-05,0.0,0.0 +102551,50.0,the Greater Atlanta and Macon Area,G1300890021218,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,90594.0,,1606.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.01019137792999058,0.0005969969650564794,0.0,0.010788374895047062,0.004798178567273241,0.0016340597788925032,0.004153094808315606,0.0,0.00020300299214194174,0.004798178567273241,0.0016340597788925032,0.003556097843259126,0.0,0.00020300299214194174,0.0,0.0005969969650564794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.98875154179893e-05,0.0,0.0,0.0012144871034130442,0.0004403763954448285,0.0012543746188310334,0.0005717898040732961,0.00019472779258150326,0.0004237734091289009,0.0,2.4191480053460802e-05,0.0,3.98875154179893e-05,0.0,0.0,0.0,0.0,0.0005578887895497397,0.0001899936860032954,0.00048288428682078223,0.0,2.3603351141098495e-05 +102552,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5780.0,,257.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010711393119977703,0.00020354210847243554,0.0,0.001274681420470206,0.0005427238178773352,0.0002500234839139264,0.0003760690642926309,0.0,0.0001059477614600528,0.00044504676379121327,0.0002500234839139264,0.0003760690642926309,0.0,0.0,9.767705408612205e-05,0.0,0.0001059477614600528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3602016162736376e-05,0.0,0.0,0.00012764391442844587,4.940739136830516e-05,0.00014124593059118226,5.30346616894037e-05,2.9794421536344066e-05,4.481483120269813e-05,0.0,0.0,6.5274201902444776e-06,0.0,7.080123000595408e-06,0.0,0.0,0.0,6.013858010247456e-05,2.77048045793631e-05,4.167176527368971e-05,0.0,1.1739945308026503e-05 +102553,50.0,the Greater Atlanta and Macon Area,G1300890023113,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,23633.0,,7686.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005404168714818915,0.005961380370944139,0.0,0.011365549085763054,0.00378088849471822,0.0008956140332670133,0.005621279917357911,0.00041166224660187475,0.0006561852546011026,0.003017805284900524,0.0008956140332670133,0.0010791680108325713,0.00041166224660187475,0.0,0.0007630832098176963,0.00454211190652534,0.0006561852546011026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039830372492959175,0.0,0.0,0.0006440083793557321,0.0005778319924389038,0.0010423121042853237,0.00035962827833458435,0.00010672926263588479,0.00012860317254771746,4.905730192120707e-05,0.0,5.098464885465462e-05,0.0003034767082191013,4.3842367855835776e-05,0.0,0.0,0.0,0.00034673783142905127,8.213499766688423e-05,0.0005155165012465201,3.7752733217958435e-05,6.017745630794198e-05 +102554,35.0,Eastern Counties in South Carolina and Georgia,G1301910110100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,30601.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027265566923068084,0.0,0.0,0.0027265566923068084,0.0007780122092530634,0.0008338366031085846,0.0011147078799451605,0.0,0.0,0.0007780122092530634,0.0008338366031085846,0.0011147078799451605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003249184606801272,9.530714962245046e-05,0.0003249184606801272,9.271420254496026e-05,9.936668703982367e-05,0.00013283757109534323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.271420254496026e-05,9.936668703982367e-05,0.00013283757109534323,0.0,0.0 +102555,50.0,the Greater Atlanta and Macon Area,G1301350050609,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,33147.0,,3139.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029230033418920463,0.0009145187054712694,0.0,0.0038375220473633167,0.0029016810750867443,0.0006639061365103793,0.0002719348357661921,0.0,0.0,0.001987162369615475,0.0006639061365103793,0.0002719348357661921,0.0,0.0,0.0009145187054712694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.11037117684847e-05,0.0,0.0,0.0003483272027016031,0.00014836078069127491,0.00040943091447008783,0.0002368053089785388,7.91160803933251e-05,3.240581332973921e-05,0.0,0.0,6.11037117684847e-05,0.0,0.0,0.0,0.0,0.0,0.0003095846542144533,7.083312961824209e-05,2.9013130637392327e-05,0.0,0.0 +102556,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,3807.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005936713753007486,0.0,0.0,0.0005936713753007487,0.00036027201320842315,0.00010718836756614242,9.842141774977584e-05,0.0,2.7872283850146604e-05,0.00036027201320842315,0.00010718836756614242,9.842141774977584e-05,0.0,2.7872283850146604e-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,7.074654885889487e-05,2.443883030213598e-05,7.074654885889487e-05,4.2932845754993886e-05,1.2773408654378347e-05,1.1728669983572709e-05,0.0,3.3214804911462215e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.293284575499387e-05,1.2773408654378343e-05,1.1728669983572707e-05,0.0,3.321480491146221e-06 +102557,50.0,the Greater Atlanta and Macon Area,G1301130140403,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,86108.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004458653986300678,0.0,0.0,0.004458653986300678,0.0017076465690881255,0.0012901852094529824,0.0011652925436101305,0.0,0.00029552966414944014,0.0017076465690881255,0.0012901852094529824,0.0011652925436101305,0.0,0.00029552966414944014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005313281652914843,0.00013431605616159002,0.0005313281652914843,0.0002034965532888752,0.00015374858473680937,0.00013886539550424397,0.0,3.52176317615559e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002034965532888752,0.00015374858473680937,0.00013886539550424397,0.0,3.52176317615559e-05 +102558,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,26197.0,,2119.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023050349498078605,0.000623766248000809,0.0,0.00292880119780867,0.0009584057150709602,0.0008691296503509428,0.0011012658323867666,0.0,0.0,0.00033463946707015113,0.0008691296503509428,0.0011012658323867666,0.0,0.0,0.000623766248000809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1677429452604935e-05,0.0,0.0,0.00027468575390780504,0.00012190298186892322,0.00031636318336041,3.9878221502512465e-05,0.00010357219671232144,0.00013123533569297114,0.0,0.0,4.1677429452604935e-05,0.0,0.0,0.0,0.0,0.0,0.00010352504744859999,9.388162745346797e-05,0.00011895650845834199,0.0,0.0 +102559,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,301546.0,,13368.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.014851766322061548,0.0022733514805563303,0.0,0.017125117802617877,0.008341124417533902,0.0030018211098606197,0.0035973484892373535,0.0,0.0021848237859860065,0.007522460439685803,0.0030018211098606197,0.002142660986529121,0.0,0.0021848237859860065,0.000818663977848098,0.0014546875027082321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015189252144700286,0.0,0.0,0.0017698560006636575,0.0006528795051082007,0.0019217485221106605,0.0008964369261019215,0.0003577211618468421,0.0002553367271045299,0.0,0.0002603611856103643,5.469850873334838e-05,9.719401271365446e-05,0.0,0.0,0.0,0.0,0.0009360252996149621,0.0003368587210905711,0.00040368768392659446,0.0,0.00024517681747853343 +102560,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,9848.0,,975.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002401565300168269,0.0007733938465362637,0.0,0.0031749591467045337,0.0015821863206329511,0.0005402426056651562,0.0009687479547085079,0.0,8.37822656979184e-05,0.0008925747397946058,0.0005402426056651562,0.0009687479547085079,0.0,0.0,0.0006896115808383452,0.0,8.37822656979184e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.16753779722369e-05,0.0,0.0,0.00028619048533184375,0.00013137667664636955,0.00033786586330408064,0.00010636662594969379,6.437979991691992e-05,0.00011544405946523012,0.0,0.0,4.6077350179928484e-05,0.0,5.598027792308413e-06,0.0,0.0,0.0,0.00016836964585305466,5.749035685897299e-05,0.00010309010255498324,0.0,8.91575803706975e-06 +102561,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001100,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,5229.0,,46.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012506963690858068,3.6721940740252485e-05,0.0,0.0012874183098260591,0.0006621528323568953,0.00019891051234303432,0.0003896330243858773,0.0,3.6721940740252485e-05,0.0006621528323568953,0.00019891051234303432,0.0003896330243858773,0.0,0.0,0.0,0.0,3.6721940740252485e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4530400536341553e-06,0.0,0.0,0.00014904005690118485,5.042443103399432e-05,0.00015149309695481903,7.890587855778905e-05,2.3703302264736776e-05,4.6430876078659034e-05,0.0,0.0,0.0,0.0,2.4530400536341553e-06,0.0,0.0,0.0,7.791685302712844e-05,2.3406199291811626e-05,4.584890015123683e-05,0.0,4.321144484642146e-06 +102562,50.0,the Greater Atlanta and Macon Area,G1302970110300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,4214.0,,688.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001119192121840308,0.0005461148079006469,0.0,0.001665306929740955,0.0011457410925106257,0.0003205726178135556,0.00015449681374502626,0.0,4.44964056717474e-05,0.0005996262846099788,0.0003205726178135556,0.00015449681374502626,0.0,4.44964056717474e-05,0.0005461148079006469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6488903507252915e-05,0.0,0.0,0.0001333746430074646,7.420666189724971e-05,0.0001698635465147175,7.145774178274596e-05,3.820278719309288e-05,1.8411456779333715e-05,0.0,5.3026572522920455e-06,3.6488903507252915e-05,0.0,0.0,0.0,0.0,0.0,0.00011686713235005618,3.269883815699255e-05,1.5758882785671333e-05,0.0,4.538693221997418e-06 +102563,35.0,Eastern Counties in South Carolina and Georgia,G1302450001602,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,258925.0,,48435.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011864342265674016,0.008236781240576889,0.0,0.0201011235062509,0.008094246865121085,0.0020094173204574244,0.007382621079165845,0.0,0.002614873702229387,0.007651892078052188,0.0020094173204574244,0.0018111209583355535,0.0,0.00039192963919026724,0.0004423547870688973,0.005571500120830292,0.00222294406303912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005503336794908997,0.0,0.0,0.001413850482816627,0.0008728269275430699,0.001964184162307527,0.0009118610258164364,0.00023945833532874937,0.0002158277453601903,0.0,4.6705489203773025e-05,2.9555566731427416e-05,0.0003722551409615654,0.00014852415643724047,0.0,0.0,0.0,0.0007909304916878979,0.00019635050125837663,0.000721393876093836,0.0,0.00025551275831702766 +102564,50.0,the Greater Atlanta and Macon Area,G1301350050430,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,7824.0,,1435.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0006019459379231425,0.00042241174108158106,0.0,0.0010243883686110213,0.0005166288324155286,0.0002686568135300901,0.00023907203305910464,0.0,0.0,9.421709133394755e-05,0.0002686568135300901,0.00023907203305910464,0.0,0.0,0.00042241174108158106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8223895074309664e-05,0.0,0.0,7.173396671723888e-05,5.160612871392428e-05,9.995786179154854e-05,1.1227861620369293e-05,3.201586339567192e-05,2.8490241701197647e-05,0.0,0.0,2.8223895074309664e-05,0.0,0.0,0.0,0.0,0.0,5.041165539407795e-05,2.6215019087546534e-05,2.3328192676717786e-05,0.0,0.0 +102565,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,33924.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0030225886346544493,0.0,0.0,0.0030225886346544493,0.001285219332535197,0.0007302898714601354,0.001007079430659117,0.0,0.0,0.001285219332535197,0.0007302898714601354,0.001007079430659117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000360196827978071,0.00011815245550180497,0.000360196827978071,0.00015315743648595942,8.702742152490306e-05,0.00012001196996720855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015315743648595942,8.702742152490306e-05,0.00012001196996720855,0.0,0.0 +102566,50.0,the Greater Atlanta and Macon Area,G1300670030410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,6675.0,,701.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.001567877996876051,0.0005563704850443208,0.0,0.0021242484819203717,0.001082056645731359,0.0005406561410338527,0.0003577080939225046,0.0,0.00014382760123265558,0.0006695137619196935,0.0005406561410338527,0.0003577080939225046,0.0,0.0,0.0004125428838116654,0.0,0.00014382760123265558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.717503728652924e-05,0.0,0.0,0.00018684293418106895,8.261234283282459e-05,0.00022401797146759817,7.978549096353604e-05,6.442961759464302e-05,4.2627825622889856e-05,0.0,0.0,2.7564900547823384e-05,0.0,9.610136738705866e-06,0.0,0.0,0.0,0.00011411100765887663,5.7016254457393305e-05,3.772300757659874e-05,0.0,1.5167701774729527e-05 +102567,50.0,the Greater Atlanta and Macon Area,G1301390001501,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,30349.0,,3826.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002638999245539462,0.0011262164823067989,0.0,0.003765215727846261,0.00158002369063093,0.0009493829708194356,0.0012358090663958955,0.0,0.0,0.0004538072083241311,0.0009493829708194356,0.0012358090663958955,0.0,0.0,0.0011262164823067989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.524710182964265e-05,0.0,0.0,0.0003144837623049073,0.00017092788821250598,0.00038973086413454996,5.4079211457177176e-05,0.00011313589006747654,0.0001472686607802536,0.0,0.0,7.524710182964265e-05,0.0,0.0,0.0,0.0,0.0,0.000163545475959989,9.826896315014879e-05,0.0001279164250244122,0.0,0.0 +102568,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,42085.0,,4497.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,71543.06474093779,0.0,0.0,0.00511669061067976,0.0016711807688661584,0.0,0.006787910127969691,0.003407032657007923,0.001209415802774248,0.001983105580231425,0.0,0.0001883560879560944,0.0022150148965073405,0.001209415802774248,0.0016922599113981718,0.0,0.0,0.0011920177605005825,0.00029084566883325345,0.0001883560879560944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011165947682050913,0.0,0.0,0.0006097471618058913,0.0002792620122544318,0.0007214066386264004,0.0002639594904730211,0.000144123987415925,0.00020166368391694517,0.0,0.0,7.964433410070537e-05,1.943277221857084e-05,1.2584959466356624e-05,0.0,0.0,0.0,0.00036209318191394806,0.0001285344933171625,0.000210760823833111,0.0,2.0018139562178868e-05 +102569,50.0,the Greater Atlanta and Macon Area,G1300790070100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13900.0,,,3075.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0012256962317110372,0.0,0.0002898248858350279,0.0015155211175460648,0.0009884176729033198,0.0004426952118052328,8.440823283751231e-05,0.0,0.0,0.0006985927870682919,0.0004426952118052328,8.440823283751231e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002898248858350279,0.0,0.0,0.0,0.0,2.337513557685398e-05,0.00014606289332164804,5.826495569765131e-05,0.000169438028898502,8.324940641319088e-05,5.275478689009813e-05,1.005870001835902e-05,0.0,0.0,0.0,0.0,0.0,2.337513557685398e-05,0.0,0.0,0.00011050690108255276,4.949413322101304e-05,9.43699459493621e-06,0.0,0.0 +102570,50.0,the Greater Atlanta and Macon Area,G1301510070108,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,42835.0,,6163.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002204947746197767,0.0010481480457078414,0.0,0.003253095791905608,0.0013870639042521508,0.0007627424179292516,0.0006754203879354915,0.0,0.00042785135142729415,0.0010587685321984531,0.0007627424179292516,0.0002890226215082807,0.0,9.439644420036113e-05,0.0003282953720536977,0.0003863977664272107,0.0003334549072269331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.003152426713659e-05,0.0,0.0,0.00026275842395314725,0.00013587501743228238,0.00033278994822028387,0.00012617094955260684,9.089421550370249e-05,3.444214432985085e-05,0.0,1.1249001681622354e-05,2.1934902620784577e-05,2.5816987082240135e-05,2.227963456411188e-05,0.0,0.0,0.0,0.0001418958906844548,7.802813873470313e-05,6.909514207582187e-05,0.0,4.3768962918875866e-05 +102571,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,94705.0,,9721.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,153306.56730200956,0.0,0.0,0.010653801619286618,0.0036126705419663673,0.0,0.014266472161252984,0.008490050887429743,0.0015383124237516867,0.00404397924697342,0.0,0.00019420709994567894,0.0054553130860239924,0.0015383124237516867,0.0034660465064128053,0.0,0.00019420709994567894,0.0030347378014057517,0.0005779327405606146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002413774989326753,0.0,0.0,0.0012695948599267756,0.0006013845460617732,0.0015109723588594508,0.000650100095797645,0.0001833179944538349,0.0004130426852366633,0.0,2.314331960208112e-05,0.00020276341612403406,3.861408280864117e-05,0.0,0.0,0.0,0.0,0.0008991874144651768,0.00016292377858428768,0.00042830075949494155,0.0,2.0568614062076822e-05 +102572,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,11434.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027453786057025703,0.0,0.0,0.0027453786057025707,0.001276831804387428,0.001006214259112414,0.00037846756943107077,0.0,8.386497277165772e-05,0.001276831804387428,0.001006214259112414,0.00037846756943107077,0.0,8.386497277165772e-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.00032716348541828467,9.505163155988918e-05,0.00032716348541828467,0.00015215851924707717,0.00011990934999092763,4.510152766385705e-05,0.0,9.994088516422868e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015215851924707714,0.0001199093499909276,4.510152766385704e-05,0.0,9.994088516422866e-06 +102573,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,8829.0,,1429.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0018675257250335617,0.0011332523243759904,0.0,0.0030007780494095524,0.0020991055315036223,0.0004387610261870259,0.00038359540800290786,0.0,7.931608371599582e-05,0.001045251997917367,0.0004387610261870259,0.00038359540800290786,0.0,0.0,0.001053853533586255,0.0,7.931608371599582e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.571587822022013e-05,0.0,0.0,0.0002225534194254923,0.00012744814845978023,0.0002982692976457124,0.00012456289259076046,5.228724048061278e-05,4.5713142572871275e-05,0.0,0.0,7.041101447102938e-05,0.0,5.299337849451985e-06,0.0,0.0,0.0,0.00020864546536156166,4.361167036024762e-05,3.812835572682912e-05,0.0,7.883806197073981e-06 +102574,50.0,the Greater Atlanta and Macon Area,G1301210011506,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,9502.0,,972.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0022815573361725347,0.0007711607555453023,0.0,0.0030527180917178367,0.0017557884684117572,0.00047970102768798306,0.0006648821657902923,0.0,0.00015234642982780424,0.001136974142694259,0.00047970102768798306,0.0006648821657902923,0.0,0.0,0.000618814325717498,0.0,0.00015234642982780424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.152481325122362e-05,0.0,0.0,0.00027188829674273197,0.00012106764056250576,0.00032341310999395556,0.00013549077123621895,5.716494312723284e-05,7.923258237928014e-05,0.0,0.0,4.134584435281585e-05,0.0,1.0178968898407753e-05,0.0,0.0,0.0,0.00018601292094450508,5.08208083978581e-05,7.04393928811002e-05,0.0,1.6139987770492173e-05 +102575,50.0,the Greater Atlanta and Macon Area,G1301350050607,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,37491.0,,12363.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.008801211072310832,0.009588309934699881,0.0,0.01838944014622765,0.006355657549186281,0.0014638227558895578,0.008443563828798736,0.00041942488177645345,0.001707051991359689,0.004471924746821859,0.0014638227558895578,0.0024460386878229646,0.00041942488177645345,0.0,0.001883732802364422,0.005997525140975771,0.001707051991359689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006406326547548199,0.0,0.0,0.0010488190152515915,0.0009057968911719429,0.0016894516700064115,0.0005329084452930252,0.0001744402138206935,0.0002914885084282152,4.998184770965792e-05,0.0,0.00012585958883745962,0.00040071821615999387,0.00011405484975736649,0.0,0.0,0.0,0.0005838990298279575,0.00013448249538136788,0.0007757165469931953,3.8532878724142695e-05,0.00015682814782058533 +102576,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13287.0,,907.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028846573178795644,0.0007195515415319746,0.0,0.0036042915664852783,0.002068586621293818,0.000542392989582378,0.0009260711046590251,0.0,6.715814387631764e-05,0.0013490350797618433,0.000542392989582378,0.0009260711046590251,0.0,6.715814387631764e-05,0.0007195515415319746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8076627502889424e-05,0.0,0.0,0.0003437639592005452,0.00013298225728447212,0.00039184058670343455,0.000160764204900513,6.463684971721931e-05,0.00011035968378830508,0.0,8.003220794507792e-06,4.8076627502889424e-05,0.0,0.0,0.0,0.0,0.0,0.00022488641120814155,5.896625823449651e-05,0.00010067782760775502,0.0,7.301098152853184e-06 +102577,81.0,the Columbus-Albany Area,G1302150000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,20131.0,,674.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0017381058526703972,0.00019846968392724389,0.0,0.0019365448469913435,0.0009897398031009149,0.00045804237399321403,0.0004887933595035122,0.0,0.0,0.000791270119173671,0.00045804237399321403,0.0004887933595035122,0.0,0.0,0.00019846968392724389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3260103030195019e-05,0.0,0.0,0.00020712528028152022,7.397145711944778e-05,0.00022038538331171527,9.429347755801954e-05,5.4583646300021e-05,5.8248156423479694e-05,0.0,0.0,1.3260103030195017e-05,0.0,0.0,0.0,0.0,0.0,0.00011263575239382606,5.212677843342181e-05,5.5626345065936964e-05,0.0,0.0 +102578,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7554.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015341335107904132,0.0,0.0,0.0015341335107904132,0.001050297129415465,0.0002675573835466595,0.00017211342045149876,0.0,4.4082870303050854e-05,0.001050297129415465,0.0002675573835466595,0.00017211342045149876,0.0,4.4082870303050854e-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.0001828182863096963,6.384342301156586e-05,0.0001828182863096963,0.0001251608937326451,3.188404529688218e-05,2.051026221416131e-05,0.0,5.253229101464668e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001251608937326451,3.188404529688218e-05,2.051026221416131e-05,0.0,5.253229101464668e-06 +102579,50.0,the Greater Atlanta and Macon Area,G1301350050544,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4684.0,,196.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011247334957808419,0.00015540659155615863,0.0,0.001280057380263261,0.0005549644647907528,0.00028740708124409326,0.00038930219609092004,0.0,4.8383638137494846e-05,0.0003995578732345942,0.00028740708124409326,0.00038930219609092004,0.0,4.8383638137494846e-05,0.00015540659155615863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0381366658686192e-05,0.0,0.0,0.0001340283967474533,5.410869797323169e-05,0.0001444097634061395,4.7613146899547525e-05,3.424874466485771e-05,4.639103342085907e-05,0.0,5.765616008328565e-06,1.0381366658686192e-05,0.0,0.0,0.0,0.0,0.0,6.260835513699012e-05,3.2423850089573866e-05,4.391915463931632e-05,0.0,5.458403540259199e-06 +102580,50.0,the Greater Atlanta and Macon Area,G1301210004300,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,263631.0,,2414.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012569230514289632,0.0004104401365128023,0.0,0.012979670650802433,0.004907959075046237,0.0028071062807455997,0.0028569817874202082,0.0,0.00240762350759039,0.004907959075046237,0.0028071062807455997,0.002446541650907406,0.0,0.00240762350759039,0.0,0.0004104401365128023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7423008170058205e-05,0.0,0.0,0.0014978517040117655,0.00042065956650541824,0.0015252747121818236,0.0005848723082467463,0.00033451760799332875,0.00029154979507944233,0.0,0.00028691199269224816,0.0,2.7423008170058205e-05,0.0,0.0,0.0,0.0,0.0005767469812593834,0.00032987032873313583,0.00033573132868719343,0.0,0.0002829260735021112 +102581,50.0,the Greater Atlanta and Macon Area,G1300210012300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,13897.0,,2004.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001144384729235039,0.0005898849226481451,0.0,0.0017342696518831842,0.0008026252735038209,0.00043023759068749526,0.0005013760980855704,0.0,0.0,0.00021274035085567568,0.00043023759068749526,0.0005013760980855704,0.0,0.0,0.0005898849226481451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9413615467596576e-05,0.0,0.0,0.00013637257135637438,7.926878967893275e-05,0.00017578618682397094,2.5351569219941197e-05,5.12700012830865e-05,5.9747343673713114e-05,0.0,0.0,3.9413615467596576e-05,0.0,0.0,0.0,0.0,0.0,8.13543823041464e-05,4.3609034738723205e-05,5.081965907172559e-05,0.0,0.0 +102582,50.0,the Greater Atlanta and Macon Area,G1301210005200,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,177317.0,,10015.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,140298.9118897092,0.0,0.0,0.008436815178117925,0.0017031785180102721,0.0,0.010140011426489619,0.0070008863977921105,0.0022640253104493826,0.0006724594175783427,0.0,0.00020264030066978345,0.005500330450090201,0.0022640253104493826,0.0006724594175783427,0.0,0.0,0.0015005559477019087,0.0,0.00020264030066978345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011379688226323494,0.0,0.0,0.0010053996114882857,0.00036578719317564693,0.0011191964937515208,0.0006554641746711237,0.00026979969567535764,8.013574114180443e-05,0.0,0.0,0.00010025877305540391,0.0,1.3539293851618906e-05,0.0,0.0,0.0,0.0007727178185512341,0.0002498901709913415,7.422222625684153e-05,0.0,2.2366277952103823e-05 +102583,50.0,the Greater Atlanta and Macon Area,G1302190030200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,38627.0,,7280.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.009007001765220237,0.005646508481675292,0.0,0.01465351024689553,0.0038396742840090398,0.000694836708907859,0.00925338457123004,0.00041796938768121994,0.0004476452950673696,0.0038396742840090398,0.000694836708907859,0.0036068760895547488,0.00041796938768121994,0.0004476452950673696,0.0,0.005646508481675292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003772688389134559,0.0,0.0,0.0010733454378221376,0.0006844469387355421,0.0014506142767355935,0.0004575659007171642,8.280222775323981e-05,0.0004298238299966269,4.980853197445555e-05,5.334494738065117e-05,0.0,0.00037726883891345595,0.0,0.0,0.0,0.0,0.000380105943255341,6.878488723582491e-05,0.0009160325096844943,4.1376595149770623e-05,4.431434141016254e-05 +102584,50.0,the Greater Atlanta and Macon Area,G1300210013502,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,31613.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007590855227793636,0.0,0.0,0.007590855227793636,0.00523064346449502,0.0010617934126652287,0.0011354027082932123,0.0,0.00016309834941391425,0.00523064346449502,0.0010617934126652287,0.0011354027082932123,0.0,0.00016309834941391425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009045886966599679,0.00029637923463142463,0.0009045886966599679,0.0006233264648383782,0.00012653202972020774,0.00013530391836726996,0.0,1.943613978877159e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0006233264648383782,0.00012653202972020774,0.00013530391836726996,0.0,1.943613978877159e-05 +102585,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,15355.0,,484.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033470725671560326,0.00038425706459282224,0.0,0.003731329631748855,0.0015663065624750042,0.0005237011909172947,0.0015466222789250487,0.0,9.453418528402837e-05,0.0012766663902399494,0.0005237011909172947,0.0015466222789250487,0.0,0.0,0.0002896401722350546,0.0,9.453418528402837e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.567238147463459e-05,0.0,0.0,0.0003988626562609694,0.00016026749489616026,0.00042453503773560395,0.00015213728933367076,6.240822208219769e-05,0.00018430728884035003,0.0,0.0,1.9350985777910106e-05,0.0,6.3158700011853925e-06,0.0,0.0,0.0,0.00017820779218966792,5.958452530071693e-05,0.0001759681969556864,0.0,1.0755703161516018e-05 +102586,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,9176.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,24284.436554246196,0.0,0.0,0.0006966233733515556,0.0,0.0,0.0006966233733515555,0.0002578847617195965,0.00022384998833544412,0.0002148579336902172,0.0,0.0,0.0002578847617195965,0.00022384998833544412,0.0002148579336902172,0.0,0.0,0.0,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.301555986902437e-05,3.0744137157803347e-05,8.301555986902437e-05,3.073173926513995e-05,2.6675866500051267e-05,2.560429686959952e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0731739265139957e-05,2.667586650005127e-05,2.5604296869599525e-05,0.0,0.0 +102587,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,36364.0,,3301.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0032479117240921834,0.0009716943145978654,0.0,0.0042196060386900484,0.0020478253594268135,0.0009090568281442541,0.0012626931615126835,0.0,0.0,0.0010761310448289482,0.0009090568281442541,0.0012626931615126835,0.0,0.0,0.0009716943145978654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.492311559699143e-05,0.0,0.0,0.00038704675140599514,0.00018625318976426102,0.0004519698670029866,0.00012824025416041822,0.0001083303741190859,0.00015047246591120056,0.0,0.0,6.492311559699143e-05,0.0,0.0,0.0,0.0,0.0,0.0002193463908381393,9.737077109740472e-05,0.00013524941784651498,0.0,0.0 +102588,35.0,Eastern Counties in South Carolina and Georgia,G1301270000300,ComStock 90.1-2004,gen3_t5_cfl,10001_25000,Electricity,28834.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00647861050014743,0.0,0.0,0.006478610500147429,0.00316222225734868,0.0011560794767280394,0.002005481124030726,0.0,0.00015482764203998347,0.00316222225734868,0.0011560794767280394,0.002005481124030726,0.0,0.00015482764203998347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007720473034848679,0.00019796527571507271,0.0007720473034848679,0.00037683777512945453,0.00013776843701311705,0.00023899048939004586,0.0,1.8450601952250325e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003768377751294546,0.00013776843701311707,0.0002389904893900459,0.0,1.8450601952250325e-05 +102589,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,610092.0,,19601.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,2590979.907035001,0.30701272531634793,0.11281318670458186,0.10735091136540359,0.013191301273836182,0.0,0.5403681948251726,0.4474534522215333,0.017359663787804295,0.05729302292103952,0.0009986584914709815,0.017263327238321424,0.027627540200603554,0.017359663787804295,0.05451743572188199,0.0009986584914709815,0.006847613163642767,0.0,0.0027755871991575263,0.010415714074678657,0.11281318670458186,0.0,0.0,0.30701272531634793,0.0,0.0,0.0,0.0008813643400882672,0.0,0.0,0.012792802481411172,0.004890832138260402,0.01367416682149944,0.0032923210463536925,0.0020687178819113095,0.006496738389198527,0.00011900821954167001,0.0008160169444059723,0.0,0.00018544823815031417,0.0006959161019379531,0.0,0.0,0.0,0.01132293352778217,0.0004392910997960916,0.001449815811946062,2.527132969863131e-05,0.00043685327673164824 +102590,50.0,the Greater Atlanta and Macon Area,G1301210009300,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,131444.0,,15112.0,,9.729435225087556,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.03216095133915012,0.013366060834196669,0.0,0.04552710439059956,0.031480295796431315,0.006127467577766346,0.004459534126857941,0.0006505927183147453,0.002809306388481985,0.02138481204908805,0.006127467577766346,0.003096378696364877,0.0006505927183147453,0.0009017925148688723,0.010095483747343266,0.0013631554304930635,0.0019075138736131122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008930448472808084,0.0,0.0,0.003832563860127352,0.0018478465726301046,0.00472560870740816,0.0025483903430176527,0.0007301995063828222,0.0003689899892516634,7.752998701999835e-05,0.00010746502382261713,0.0006745233209103463,9.107836245441185e-05,0.000127449325353099,0.0,0.0,0.0,0.0032675822879286174,0.0006360170392438284,0.0004628893838725025,6.75300275692323e-05,0.000291599540732685 +102591,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11594.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002664408380511789,0.0,0.0,0.002664408380511789,0.0016574497577357208,0.0004624152492764677,0.000470272421281702,0.0,7.427095221789806e-05,0.0016574497577357208,0.0004624152492764677,0.000470272421281702,0.0,7.427095221789806e-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.0003175099751490582,9.606077400556565e-05,0.0003175099751490582,0.00019751357758768047,5.5104711192251554e-05,5.60410280520734e-05,0.0,8.850658317052745e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019751357758768047,5.5104711192251554e-05,5.60410280520734e-05,0.0,8.850658317052745e-06 +102592,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,31918.0,,3833.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002935092034468272,0.0011165638889311946,0.0,0.004051686296998905,0.003202653071915428,0.0006636631477148773,0.00018537007736859937,0.0,0.0,0.002086089182984233,0.0006636631477148773,0.00018537007736859937,0.0,0.0,0.0011165638889311946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.460320225653014e-05,0.0,0.0,0.0003497702683110854,0.00018229971965413047,0.0004243734705676155,0.0002485959433927712,7.908768601406575e-05,2.20902584779791e-05,0.0,0.0,7.460320225653014e-05,0.0,0.0,0.0,0.0,0.0,0.00033544576246179024,6.951205316467932e-05,1.9415654941145896e-05,0.0,0.0 +102593,35.0,Eastern Counties in South Carolina and Georgia,G1302450000600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,42168.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.009435967335843844,0.0,0.0,0.009435967335843844,0.005200124554285216,0.002578475730896648,0.0014434865579721324,0.0,0.0002139631997635883,0.005200124554285216,0.002578475730896648,0.0014434865579721324,0.0,0.0002139631997635883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001124466027888025,0.00031404839877000946,0.001124466027888025,0.0006196888134476742,0.00030727197964253405,0.0001720175090037576,0.0,2.549758183651641e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0006196888134476742,0.00030727197964253405,0.0001720175090037576,0.0,2.549758183651641e-05 +102594,50.0,the Greater Atlanta and Macon Area,G1301350050209,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,DistrictHeating,220990.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.07768918199235987,0.015634653205433738,0.035026567202974354,0.0,0.0,0.12835040240076795,0.105885234476139,0.007082083370644284,0.014975541154881495,0.0,0.0004075433991031627,0.012968942677448575,0.007082083370644284,0.014975541154881495,0.0,0.0,0.0,0.0,0.0,0.015227109806330574,0.0,0.0004075433991031627,0.07768918199235987,0.0,0.0,0.0,0.0,0.0,0.0,0.0041740489936787735,0.0012941894404814604,0.0041740489936787735,0.0015454840840721927,0.0008439583244080145,0.0017846065851985663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003443465296123797,0.00023031453282151986,0.00048701555521538553,0.0,1.3253609518070393e-05 +102595,46.0,the Tallahassee-Valdosta Area,G1301730950200,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,26066.0,,2258.0,,1.8706521585294562,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,14029.891188970922,0.0,0.0,0.0012492280745726606,0.0003840750890811838,0.0,0.0016333031636538444,0.0005701020411003777,0.0002445903357896284,0.0005608645228005303,0.0,0.00025772853360188754,0.0005701020411003777,0.0002445903357896284,0.00017678943371934652,0.0,0.00025772853360188754,0.0,0.0003840750890811838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5661889297954572e-05,0.0,0.0,0.00014886832699263278,6.150381140017716e-05,0.00017453021629058735,6.793806415432267e-05,2.9147402967247665e-05,2.1067687929425627e-05,0.0,3.071305904544487e-05,0.0,2.5661889297954572e-05,0.0,0.0,0.0,0.0,6.091951252844195e-05,2.6136240446907283e-05,5.993241711178094e-05,0.0,2.7540151586534565e-05 +102596,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,55188.0,,2967.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004782729624646597,0.0008733341264137281,0.0,0.005656063751060324,0.001598406764803254,0.0016398991125177484,0.002417788563345621,0.0,0.0,0.000725072638389526,0.0016398991125177484,0.002417788563345621,0.0,0.0,0.0008733341264137281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8350564762929547e-05,0.0,0.0,0.000569948006581601,0.00022077304761278308,0.0006282985713445305,8.640540806391669e-05,0.0001954233886352065,0.00028812286709944496,0.0,0.0,5.835056476292954e-05,0.0,0.0,0.0,0.0,0.0,0.0001775575260383246,0.0001821666648207261,0.0002685777896117983,0.0,0.0 +102597,81.0,the Columbus-Albany Area,G1302150010607,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,50771.0,,5338.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002613455273315783,0.0009077945047067036,0.0,0.0035212497780224864,0.0014978432024046406,0.0007891606564451303,0.000642016387020112,0.0,0.0005922472625140237,0.0012639974656355644,0.0007891606564451303,0.00045036891043076125,0.0,0.00010992824080432739,0.00023384573676907638,0.00019164747658935075,0.0004823190217096963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.065381151064168e-05,0.0,0.0,0.0003114407875921733,0.00012918296062292892,0.00037209459910281494,0.00015062831579000025,9.404286305929473e-05,5.3669657025975534e-05,0.0,1.3099951716902814e-05,1.5624279687770565e-05,1.2804825168330583e-05,3.2225891299296586e-05,0.0,0.0,0.0,0.00015827885013900656,8.339153329036855e-05,6.784262554638938e-05,0.0,6.258346371516278e-05 +102598,50.0,the Greater Atlanta and Macon Area,G1302970110504,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,11304.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0024512722514855936,0.0,0.0,0.0024512722514855936,0.0011796509927437418,0.000505009392252211,0.0006780325905148423,0.0,8.849656890105894e-05,0.0011796509927437418,0.000505009392252211,0.0006780325905148423,0.0,8.849656890105894e-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.00029211073224927266,9.955572422521266e-05,0.00029211073224927266,0.00014057545630850177,6.01804484484128e-05,8.079910192926436e-05,0.0,1.0545869610186979e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00014057545630850177,6.01804484484128e-05,8.079910192926436e-05,0.0,1.0545869610186979e-05 +102599,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,34278.0,,3694.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003148132460924663,0.00107622774887786,0.0,0.004224329836203086,0.002933421486499196,0.0010479195542018756,0.00024298879550201457,0.0,0.0,0.0018571937376213356,0.0010479195542018756,0.00024298879550201457,0.0,0.0,0.00107622774887786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.190628740203776e-05,0.0,0.0,0.00037515587442030625,0.00017149210751331317,0.000447062161822344,0.00022131760631209424,0.0001248782195661716,2.8956428988416935e-05,0.0,0.0,7.190628740203776e-05,0.0,0.0,0.0,0.0,0.0,0.00031044492313345905,0.00011090165765523688,2.5715581033648156e-05,0.0,0.0 +102600,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2004,gen5_led,10001_25000,Electricity,29608.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.007109334644483388,0.0,0.0,0.007109334644483389,0.003845961635951535,0.0008409655257812779,0.002282467113983667,0.0,0.00014002307584064748,0.003845961635951535,0.0008409655257812779,0.002282467113983667,0.0,0.00014002307584064748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008472099425139036,0.00023056887141402802,0.0008472099425139036,0.00045831812672280693,0.00010021674184463775,0.00027199856655059677,0.0,1.668636348770375e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004583181267228069,0.00010021674184463774,0.0002719985665505967,0.0,1.6686363487703748e-05 +102601,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,39353.0,,1149.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.009387004748190174,0.0009115973667546463,0.0,0.010298602114944821,0.006571655958104149,0.0017027732341448614,0.0018231120264355536,0.0,0.00020106089626025636,0.005660058591349503,0.0017027732341448614,0.0018231120264355536,0.0,0.00020106089626025636,0.0009115973667546463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0909018925330056e-05,0.0,0.0,0.0011186269493904698,0.000412204764883258,0.0011795359683158,0.0006744956719696274,0.0002029154218530093,0.00021725590848581134,0.0,2.395994708202184e-05,6.0909018925330056e-05,0.0,0.0,0.0,0.0,0.0,0.0007526754104551796,0.000195024747353301,0.00020880758237365525,0.0,2.302822813366402e-05 +102602,85.0,Rural Climate Zone 3A,G1302770960300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,72396.0,,1277.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006383983877025555,0.0003721373403113353,0.0,0.006756121217336889,0.003938332023897214,0.001868735705407681,0.0009490534880319936,0.0,0.0,0.003566194683585879,0.001868735705407681,0.0009490534880319936,0.0,0.0,0.0003721373403113353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4863840111320922e-05,0.0,0.0,0.0007607671034477227,0.00019979922508063522,0.0007856309435590436,0.00042497657450638277,0.00022269364664729202,0.00011309688229404773,0.0,0.0,2.4863840111320922e-05,0.0,0.0,0.0,0.0,0.0,0.0004579662508191025,0.0002173046557741629,0.00011036003696577806,0.0,0.0 +102603,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,156058.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.0139045399253002,0.0,0.0,0.0139045399253002,0.005677393027437229,0.0032839413218856864,0.004943205575977285,0.0,0.0,0.005677393027437229,0.0032839413218856864,0.004943205575977285,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.853539085413672e-11,0.0,0.0,0.00165697900002952,0.0005860556038280205,0.0016569790185649107,0.000676564709937672,0.00039134137748727307,0.0005890729126045751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006765647175058978,0.00039134138186491774,0.0005890729191940952,0.0,0.0 +102604,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7340.0,,131.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0009892085104775015,4.882301395282431e-05,0.0,0.001038031524430326,0.0005258936074347076,0.00014309792899030172,0.00033401141291535365,0.0,3.502857508996284e-05,0.0005258936074347076,0.00014309792899030172,0.0002851883989625293,0.0,3.502857508996284e-05,0.0,4.882301395282431e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.261409388749175e-06,0.0,0.0,0.00011788361360343481,3.318012348818743e-05,0.00012114502299218398,6.267054737066932e-05,1.7052927456519436e-05,3.39857963931717e-05,0.0,4.174342383074349e-06,0.0,3.261409388749175e-06,0.0,0.0,0.0,0.0,6.137520071857556e-05,1.6700458020461208e-05,3.898130195948434e-05,0.0,4.088062293662858e-06 +102605,85.0,Rural Climate Zone 3A,G1302770960300,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,52894.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004712757322287835,0.0,0.0,0.004712757322287835,0.0012707031487563837,0.0014278953122132173,0.002014128171711936,0.0,0.0,0.0012707031487563837,0.0014278953122132173,0.002014128171711936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005616095323705321,0.0001628784898068569,0.0005616095323705321,0.00015142706325654707,0.00017015932791057518,0.0002400194839865699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015142706325654707,0.00017015932791057518,0.0002400194839865699,0.0,0.0 +102606,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,68477.0,,8325.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005806258684281283,0.0024505343732652693,0.0,0.008256793057546553,0.00495729210526793,0.001231543211120515,0.0020679577411581067,0.0,0.0,0.002506757732002661,0.001231543211120515,0.0020679577411581067,0.0,0.0,0.0024505343732652693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001637308577932948,0.0,0.0,0.0006919212831464325,0.0003779983194886702,0.0008556521409397274,0.00029872575797563203,0.0001467607637247847,0.00024643476144601574,0.0,0.0,0.0001637308577932948,0.0,0.0,0.0,0.0,0.0,0.0005137245869640954,0.00012762492385490117,0.00021430263012073075,0.0,0.0 +102607,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,182654.0,,61662.0,,9.729435225087556,Education,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.060227641089676834,0.054539773155880204,0.0,0.11476741424555706,0.09071982902264358,0.014712617159190563,0.004027865166626712,0.0006491172422703746,0.004657985654825812,0.03618005586676338,0.014712617159190563,0.004027865166626712,0.0006491172422703746,0.004657985654825812,0.054539773155880204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003644028786415054,0.0,0.0,0.0071772128539602156,0.005485413019386618,0.010821241640375269,0.004311508093722124,0.0017532744613575357,0.00047999299200324967,7.735406087071006e-05,0.000555083246006597,0.003644028786415054,0.0,0.0,0.0,0.0,0.0,0.008553832094945537,0.001387229872595095,0.00037978116479700497,6.120425887188329e-05,0.00043919424916574745 +102608,81.0,the Columbus-Albany Area,G1302150001600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,20392.0,,1671.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001788283358967141,0.0004917702513143893,0.0,0.002280053610281531,0.0013788533213494882,0.0004186676091132613,0.00048253267981878084,0.0,0.0,0.0008870830700350988,0.0004186676091132613,0.00048253267981878084,0.0,0.0,0.0004917702513143893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2857402112988354e-05,0.0,0.0,0.00021310635484436398,9.434368448639396e-05,0.00024596375695735235,0.00010571201624809233,4.9891829291004174e-05,5.750250930526746e-05,0.0,0.0,3.2857402112988354e-05,0.0,0.0,0.0,0.0,0.0,0.00014874560040295154,4.516431437817589e-05,5.2053842176224874e-05,0.0,0.0 +102609,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,525572.0,,33580.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.024709865001972326,0.005710523884724926,0.0,0.030420388886697257,0.012472263167683365,0.008056357082766433,0.006920053680078088,0.0,0.00297171495616937,0.01166783667005557,0.008056357082766433,0.00438861905869147,0.0,0.0005970521904588581,0.0008044264976277955,0.0025314346213866183,0.002374662765710512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038154391909626343,0.0,0.0,0.0029446261313764532,0.0011184291047620747,0.003326170050472717,0.0013904332036025152,0.0009600602669306472,0.0005229831227264148,0.0,7.114953811687659e-05,5.374708953600229e-05,0.00016913570556343816,0.000158661123996823,0.0,0.0,0.0,0.0013637191938760385,0.000880883335989489,0.0007566397452730998,0.0,0.00032492777533408955 +102610,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,22000.0,,919.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007181327005099018,0.0007124643596167978,0.0,0.007893791364715817,0.003117021465725608,0.001187602320927467,0.0027615574633563598,0.00043616306387163866,0.0003915279116178113,0.003117021465725608,0.001187602320927467,0.0020490931037395617,0.00043616306387163866,0.0003915279116178113,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.0008557845049263341,0.00031206850604589647,0.0009033897836214078,0.00037144926975149847,0.00014152421461140026,0.000244186363618676,5.197668779287077e-05,4.665760517113093e-05,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.00035672153181698824,0.00013591286546114207,0.00031604113714365936,4.9915843691523145e-05,4.480765946502689e-05 +102611,81.0,the Columbus-Albany Area,G1302150000900,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,363894.0,,,,9.325022323477118,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,1398753.3485215676,0.0,0.0,0.0909696598305364,0.0,0.0,0.0909696598305364,0.05193665249288477,0.006411033288674202,0.03176482448416049,0.0,0.0008570611806588968,0.05193665249288477,0.006411033288674202,0.03176482448416049,0.0,0.0008570611806588968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010840682598825289,0.003480785812821984,0.010840682598825289,0.006189192814062347,0.0007639907321022053,0.003785354157437302,0.0,0.00010213436265020245,0.0,0.0,0.0,0.0,0.0,0.0,0.006189192814062347,0.0007639907321022053,0.003785354157437302,0.0,0.00010213436265020245 +102612,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,9552.0,,1619.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.00044254982104451794,0.00027537024321484,0.0,0.0007179200642593581,0.00038737293630531364,0.00014882865375992322,5.219818402063545e-05,0.0,0.0001295557508963258,0.00019186024092639138,0.00014882865375992322,5.219818402063545e-05,0.0,4.969820306040801e-05,0.00019551269537892226,0.0,7.985754783591782e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.83986816955505e-05,0.0,0.0,5.2738607969873734e-05,3.2521507809346035e-05,7.113728966542422e-05,2.2863961411939248e-05,1.7735892439868596e-05,6.220451196446646e-06,0.0,5.9225287716168305e-06,1.3063052157416481e-05,0.0,5.335629538134019e-06,0.0,0.0,0.0,3.838402372404209e-05,1.4747139103790247e-05,5.1722155732140205e-06,0.0,1.2837424997783574e-05 +102613,50.0,the Greater Atlanta and Macon Area,G1301350050714,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,32407.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007565629570303146,0.0,0.0,0.0075656295703031475,0.003835954080029078,0.0009483193074948989,0.0026275210256240574,0.0,0.00015383515715511182,0.003835954080029078,0.0009483193074948989,0.0026275210256240574,0.0,0.00015383515715511182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009015787190838327,0.0002450348771053619,0.0009015787190838327,0.00045712184740211165,0.00011300903627237198,0.0003131156526545426,0.0,1.8332182754806548e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00045712184740211154,0.00011300903627237195,0.00031311565265454254,0.0,1.8332182754806544e-05 +102614,50.0,the Greater Atlanta and Macon Area,G1300570090100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,4869.0,,425.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009618832675881455,0.0003370313254876777,0.0,0.0012989145930758232,0.0007573486742308381,0.0002891439297926187,0.00021280530073123797,0.0,3.953398124738894e-05,0.0004598513299905493,0.0002891439297926187,0.00021280530073123797,0.0,0.0,0.00029749734424028875,0.0,3.953398124738894e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2517101224223165e-05,0.0,0.0,0.00011462730308822349,5.175220856865479e-05,0.00013714440431244665,5.48003271857715e-05,3.4457184144146965e-05,2.5359935584350727e-05,0.0,0.0,1.9875831436449256e-05,0.0,2.641269787773907e-06,0.0,0.0,0.0,7.996378925750231e-05,3.052892947954877e-05,2.2468803075194217e-05,0.0,4.1741499688856724e-06 +102615,50.0,the Greater Atlanta and Macon Area,G1301210008602,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,64130.0,,7253.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01078402075694978,0.0021349838413122894,0.0,0.01291900459826207,0.006036492110726649,0.0026927674357730383,0.004189745051762384,0.0,0.0,0.003901508269414359,0.0026927674357730383,0.004189745051762384,0.0,0.0,0.0021349838413122894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014264673168959394,0.0,0.0,0.001285112523259788,0.000523181634369611,0.0014277592549493822,0.0004649357831952256,0.0003208922935082397,0.0004992844465563229,0.0,0.0,0.00014264673168959394,0.0,0.0,0.0,0.0,0.0,0.0006671301502345103,0.0002975944159326694,0.00046303468878220263,0.0,0.0 +102616,50.0,the Greater Atlanta and Macon Area,G1301510070203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,275560.0,,7917.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.022962638603279774,0.0023304459438223584,0.0,0.02529308454710213,0.006651665268964101,0.006981731984695894,0.011659687293442135,0.0,0.0,0.004321219325141743,0.006981731984695894,0.011659687293442135,0.0,0.0,0.0023304459438223584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015570581861281774,0.0,0.0,0.0027364147292401756,0.0008785965628363084,0.002892120547852993,0.0005149516313820413,0.0008319999529932207,0.0013894631448649135,0.0,0.0,0.00015570581861281774,0.0,0.0,0.0,0.0,0.0,0.000760580140630386,0.0007983213947250607,0.0013332190124975465,0.0,0.0 +102617,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,27774.0,,1775.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.001405556671213266,0.0003017707513692987,0.0,0.0017073274225825644,0.0007062357560835433,0.00024395204277850654,0.0005156875619022357,0.0,0.0002414697921796991,0.0006289668410149532,0.00024395204277850654,0.0002911857256015272,0.0,0.0002414697921796991,7.726891506859011e-05,0.00022450183630070859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.016275676462572e-05,0.0,0.0,0.00016749690943995411,6.590487307157073e-05,0.00018765966620457982,7.4952511106705e-05,2.9071195814319054e-05,3.4699923603355025e-05,0.0,2.8775391801381725e-05,5.162708224455869e-06,1.5000048540169853e-05,0.0,0.0,0.0,0.0,7.762539539598339e-05,2.681381339760332e-05,5.668142762332236e-05,0.0,2.6540978607599358e-05 +102618,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,5728.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016057578366486535,0.0,0.0,0.0016057578366486538,0.0009530336106980395,0.00032363277954190994,0.0002861664751380037,0.0,4.2842264196961245e-05,0.0009530336106980395,0.00032363277954190994,0.0002861664751380037,0.0,4.2842264196961245e-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.00019135533820178544,5.552027980332119e-05,0.00019135533820178544,0.00011357133979393118,3.8566749337295206e-05,3.410195571352962e-05,0.0,5.10543730046484e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011357133979393117,3.85667493372952e-05,3.410195571352962e-05,0.0,5.1054373004648395e-06 +102619,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2004,gen5_led,10001_25000,Electricity,27580.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002432044480580226,0.0,0.0,0.002432044480580226,0.0016811483552801256,0.0005882151267115019,0.00016268099858859878,0.0,0.0,0.0016811483552801256,0.0005882151267115019,0.00016268099858859878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002898231505104197,6.59539791556753e-05,0.0002898231505104197,0.00020033996774863834,7.009672831343169e-05,1.9386454448349693e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020033996774863834,7.009672831343169e-05,1.9386454448349693e-05,0.0,0.0 +102620,50.0,the Greater Atlanta and Macon Area,G1301390001502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,32822.0,,1263.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003974641601221785,0.00037180458029666916,0.0,0.004346446181518455,0.0021479348551699203,0.0009627022599526387,0.0012358090663958955,0.0,0.0,0.001776130274873251,0.0009627022599526387,0.0012358090663958955,0.0,0.0,0.00037180458029666916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.484164236695463e-05,0.0,0.0,0.00047364888261814856,0.00017435847820914082,0.0004984905249851031,0.00021165735290934926,0.00011472301039177138,0.00014726851931702793,0.0,0.0,2.484164236695463e-05,0.0,0.0,0.0,0.0,0.0,0.00024634497446219183,0.00011041157187421588,0.00014173397864869535,0.0,0.0 +102621,50.0,the Greater Atlanta and Macon Area,G1300590000600,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,8295.0,,709.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0006722558259511795,0.0002085665643991881,0.0,0.0008808223903503676,0.0004434341213955075,0.00021982964991044504,0.00021755861904441503,0.0,0.0,0.00023486755699631944,0.00021982964991044504,0.00021755861904441503,0.0,0.0,0.0002085665643991881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3935916949766577e-05,0.0,0.0,8.011000855055305e-05,4.240649922922072e-05,9.404592550031962e-05,2.798821709369471e-05,2.6196210511189753e-05,2.5925580945668592e-05,0.0,0.0,1.3935916949766577e-05,0.0,0.0,0.0,0.0,0.0,4.734572236347577e-05,2.3471341220124367e-05,2.322886191671948e-05,0.0,0.0 +102622,35.0,Eastern Counties in South Carolina and Georgia,G1301270001000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,87021.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007087314945606135,0.0,0.0,0.007087314945606135,0.004616027774552334,0.001944973439996438,0.0005263137310573636,0.0,0.0,0.004616027774552334,0.001944973439996438,0.0005263137310573636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008445805184330085,0.00023282724270834107,0.0008445805184330085,0.0005500823881616216,0.00023177842227951596,6.271970799187089e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005500823881616216,0.00023177842227951596,6.271970799187089e-05,0.0,0.0 +102623,85.0,Rural Climate Zone 3A,G1300930970300,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8149.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00166232947508634,0.0,0.0,0.0016623294750863402,0.0009111838313859501,0.0003767307208825453,0.0003187530621912908,0.0,5.56618606265539e-05,0.0009111838313859501,0.0003767307208825453,0.0003187530621912908,0.0,5.56618606265539e-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.00019810123574318556,6.318588059195606e-05,0.00019810123574318556,0.00010858656222611452,4.48953245838206e-05,3.7986077046332515e-05,0.0,6.6332718869179495e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010858656222611451,4.489532458382059e-05,3.798607704633251e-05,0.0,6.633271886917949e-06 +102624,50.0,the Greater Atlanta and Macon Area,G1300450910502,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,98089.0,,17191.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005049163673395537,0.002923435182022566,0.0,0.007972598855418105,0.0034078641167412486,0.0014199005336020887,0.0018767942170354291,0.0,0.0012680577184007564,0.0028927261960430346,0.0014199005336020887,0.000542247643309475,0.0,0.00019428930044093864,0.000515137920698214,0.0013345465737259544,0.0010737684179598177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019532741564078432,0.0,0.0,0.0006016991135745545,0.00037178462638746084,0.0007970265292153388,0.00034472061128540827,0.00016920681279041717,6.461860763919095e-05,0.0,2.3153081859538127e-05,3.4418604307462545e-05,8.916685921451087e-05,7.174313676134919e-05,0.0,0.0,0.0,0.0003406866641933072,0.00014194849316403126,0.00018762448832335246,0.0,0.0001267686560518256 +102625,50.0,the Greater Atlanta and Macon Area,G1300130180203,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,18530.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,56663.68529324113,0.0,0.0,0.0016187539737786312,0.0,0.0,0.0016187539737786312,0.000599828355088601,0.0004924454226529389,0.0005264801960370913,0.0,0.0,0.000599828355088601,0.0004924454226529389,0.0005264801960370913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001929029322528405,6.870800211685787e-05,0.0001929029322528405,7.14800707329801e-05,5.868351061557423e-05,6.273935090428618e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.14800707329801e-05,5.868351061557423e-05,6.273935090428618e-05,0.0,0.0 +102626,85.0,Rural Climate Zone 3A,G1303170010302,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,120444.0,,11274.0,,9.729435225087556,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.028284967987840824,0.00997191262862721,0.0,0.03825688061646804,0.02670159775772542,0.004581260900518531,0.0034625734071271523,0.0006468118109510452,0.002864636740145889,0.02028309253020694,0.004581260900518531,0.0018674915859095546,0.0006468118109510452,0.0009063111602547581,0.006418505227518483,0.0015950818212175975,0.001958325579891131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006662644866840516,0.0,0.0,0.0033706695995082084,0.0014007294186043726,0.004036934086192261,0.002417100256396631,0.0005459407573461494,0.00022254566873360716,7.707941931250411e-05,0.00010800349771931715,0.00042884672679690535,0.00010657397536573769,0.00013084378452140862,0.0,0.0,0.0,0.002817600086755537,0.0004834227984359519,0.0003653769044399671,6.825273270858445e-05,0.0003022815638522194 +102627,85.0,Rural Climate Zone 3A,G1302330010400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,2922.0,,512.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0002520844261293307,0.00015080872534691146,0.0,0.0004028931514762422,0.00019408107022667238,0.00011643636629348436,9.240640456238307e-05,0.0,0.0,4.327234487976092e-05,0.00011643636629348436,9.240640456238307e-05,0.0,0.0,0.00015080872534691146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0075611625187043e-05,0.0,0.0,3.0041006055851603e-05,2.1283645291322458e-05,4.011661768103865e-05,5.156783362399653e-06,1.3875770267336375e-05,1.1012109719280396e-05,0.0,0.0,1.0075611625187043e-05,0.0,0.0,0.0,0.0,0.0,1.9324915464266327e-05,1.1593726956266045e-05,9.201031066240657e-06,0.0,0.0 +102628,35.0,Eastern Counties in South Carolina and Georgia,G1300250960200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,16824.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004039827016796471,0.0,0.0,0.004039827016796471,0.0029318830569847088,0.0004751521386323211,0.0005680321824415635,0.0,6.475963873787772e-05,0.0029318830569847088,0.0004751521386323211,0.0005680321824415635,0.0,6.475963873787772e-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.00048141677957213783,0.0001397325379122149,0.00048141677957213783,0.00034938567753204454,5.6622774053473886e-05,6.769107261954025e-05,0.0,7.717255367079209e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00034938567753204454,5.6622774053473886e-05,6.769107261954025e-05,0.0,7.717255367079209e-06 +102629,50.0,the Greater Atlanta and Macon Area,G1300670030505,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,31799.0,,5256.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002941743852745139,0.0015312242684553826,0.0,0.004472937747601084,0.00313331014439904,0.0009755088931422752,0.00036417945725864437,0.0,0.0,0.0016020858759436577,0.0009755088931422752,0.00036417945725864437,0.0,0.0,0.0015312242684553826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010230682609104478,0.0,0.0,0.00035056105660992675,0.0002050320608294705,0.00045286788270097153,0.0001909170021470615,0.00011624921999691301,4.339845402008242e-05,0.0,0.0,0.00010230682609104478,0.0,0.0,0.0,0.0,0.0,0.0003172356985519171,9.876655386725272e-05,3.6871780703937485e-05,0.0,0.0 +102630,85.0,Rural Climate Zone 3A,G1300690010400,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,18888.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004535242388494922,0.0,0.0,0.004535242388494922,0.0016500061210991833,0.001678209233244287,0.0010809814537727478,0.0,0.0001260455803787045,0.0016500061210991833,0.001678209233244287,0.0010809814537727478,0.0,0.0001260455803787045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005404530404261078,0.00016973096754044033,0.0005404530404261078,0.0001966269382055412,0.0001999878297307587,0.0001288177484885425,0.0,1.5020524001265398e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0001966269382055412,0.0001999878297307587,0.0001288177484885425,0.0,1.5020524001265398e-05 +102631,50.0,the Greater Atlanta and Macon Area,G1300770170304,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,3425.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008226045554111516,0.0,0.0,0.0008226045554111516,0.0003323997293582765,0.0003323170222845372,0.00011893277203712407,0.0,3.8872324657474485e-05,0.0003323997293582765,0.0003323170222845372,0.00011893277203712407,0.0,3.8872324657474485e-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,9.802918213798017e-05,3.375390724946641e-05,9.802918213798017e-05,3.9611832195107805e-05,3.960197605373058e-05,1.4173131300464053e-05,0.0,4.63238644730049e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.9611832195107805e-05,3.960197605373058e-05,1.4173131300464053e-05,0.0,4.63238644730049e-06 +102632,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock 90.1-2007,gen1_t12_incandescent,_1000,NaturalGas,9406.0,,3733.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.001958528968494306,0.0025681487221270003,0.0,0.004526677690621308,0.0008963561977531069,0.0002538169774242476,0.0024530381686469448,0.00037201148965797454,0.000551526577110049,0.0006733788078655722,0.0002538169774242476,0.0005731142883857479,0.00037201148965797454,8.627912513178009e-05,0.00022297738988753474,0.0018799238802611968,0.0004652474519782689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017159000187106805,0.0,0.0,0.0002333926226617152,0.00023287158984654896,0.00040498262453278326,8.02447390570838e-05,3.0246685645225225e-05,6.829648629301914e-05,4.433160735851461e-05,1.028165098366938e-05,1.4898160070854294e-05,0.0001256064881882383,3.1085353611975494e-05,0.0,0.0,0.0,8.019318146604228e-05,2.2707926804954686e-05,0.0002194629049194306,3.328228774718845e-05,4.9342740076321416e-05 +102633,35.0,Eastern Counties in South Carolina and Georgia,G1300510010808,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,54393.0,,1260.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004846349178501735,0.00037094527132033346,0.0,0.005217294449822068,0.0013520306054452963,0.0015551651095297911,0.002310129424453279,0.0,0.0,0.0009810853341249625,0.0015551651095297911,0.002310129424453279,0.0,0.0,0.00037094527132033346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.478358870557028e-05,0.0,0.0,0.000577530810397445,0.000180226413594622,0.0006023143991030153,0.00011691419400807726,0.00018532625960852444,0.0002752940140066319,0.0,0.0,2.478358870557028e-05,0.0,0.0,0.0,0.0,0.0,0.00015608616870674077,0.00017953718109284716,0.00026669459228762237,0.0,0.0 +102634,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,66215.0,,6446.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.006195454945315428,0.0018779692796367573,0.0,0.008073424224952185,0.00499165807879901,0.002338676035908577,0.0007430597366451606,0.0,0.0,0.0031136887991622527,0.002338676035908577,0.0007430597366451606,0.0,0.0,0.0018779692796367573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001254757528322863,0.0,0.0,0.0007383000592473181,0.00033026786557448077,0.0008637758120796044,0.0003710521091977954,0.0002786953776779789,8.854895281003254e-05,0.0,0.0,0.0001254757528322863,0.0,0.0,0.0,0.0,0.0,0.0005340575932220221,0.0002502149937649294,7.949997542066879e-05,0.0,0.0 +102635,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,69339.0,,4861.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005530212370429788,0.0014161387001857407,0.0,0.006946320697016092,0.004585168197523576,0.0018865346346782037,0.0004746482384137477,0.0,0.0,0.003169029497337836,0.0018865346346782037,0.0004746482384137477,0.0,0.0,0.0014161387001857407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.46172891673676e-05,0.0,0.0,0.0006590240928112752,0.00023834960750766936,0.0007536413819786428,0.0003776467610434517,0.0002248144723742736,5.656285939354982e-05,0.0,0.0,9.46172891673676e-05,0.0,0.0,0.0,0.0,0.0,0.000497468033468508,0.00020467966154228968,5.149698235290625e-05,0.0,0.0 +102636,85.0,Rural Climate Zone 3A,G1301050000400,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,16609.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,43199.70345818221,0.005514255998180166,0.0018245278497023034,0.002610352322132435,0.0,0.0,0.009949136170014907,0.007736991691560765,0.00043527709592089967,0.0016931203531662942,0.0,8.380162325831946e-05,0.0003982078436782946,0.00043527709592089967,0.0016931203531662942,0.0,8.380162325831946e-05,0.0,0.0,0.0,0.0018245278497023034,0.0,0.0,0.005514255998180166,0.0,0.0,0.0,0.0,0.0,0.0,0.000311073510903155,0.00010729721084632322,0.000311073510903155,4.745409688642682e-05,5.1871608784683437e-05,0.00020176774153259596,0.0,9.986569607988095e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002419077524113072,1.3609540781231537e-05,5.293775094046579e-05,0.0,2.620173723716344e-06 +102637,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,114389.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010087011626078503,0.0,0.0,0.010087011626078503,0.006626638562933752,0.0026678651066149315,0.0007925079565298208,0.0,0.0,0.006626638562933752,0.0026678651066149315,0.0007925079565298208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001202047935384497,0.000320706649272464,0.001202047935384497,0.0007896825639141793,0.0003179238670648342,9.444150440548365e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007896825639141793,0.0003179238670648342,9.444150440548365e-05,0.0,0.0 +102638,50.0,the Greater Atlanta and Macon Area,G1301350050208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5189.0,,830.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.0004623082292685947,0.0002442585765234164,0.0,0.0007065668057920112,0.0004855709508422534,0.00013506495731618995,8.596158723986551e-05,0.0,0.0,0.000241312374318837,0.00013506495731618995,8.596158723986551e-05,0.0,0.0,0.0002442585765234164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6319721491652342e-05,0.0,0.0,5.5092710389464823e-05,3.509103619716701e-05,7.141243188111717e-05,2.8756902668106874e-05,1.609552697982174e-05,1.0243937984658191e-05,0.0,0.0,1.6319721491652342e-05,0.0,0.0,0.0,0.0,0.0,4.9076466890632664e-05,1.3650962633401238e-05,8.688104143639371e-06,0.0,0.0 +102639,50.0,the Greater Atlanta and Macon Area,G1301170130304,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,16881.0,,5336.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004070450958886618,0.004138212295098044,0.0,0.008208663253984661,0.004974474513592757,0.00045387157536364627,0.0018116858446503641,0.0004170799190674661,0.0005514705405273592,0.0021715163293053123,0.00045387157536364627,0.0010279022743671247,0.0004170799190674661,0.0,0.0028029581842874455,0.0007837835702832394,0.0005514705405273592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002764887440835584,0.0,0.0,0.0004850681696546733,0.00042252780698853645,0.0007615569137382317,0.0002587756152501291,5.408704257676317e-05,0.00012249322737142588,4.970264842525288e-05,0.0,0.00018727564775020947,5.2367379807373074e-05,3.68457165259759e-05,0.0,0.0,0.0,0.00046150577028510064,4.210783479267008e-05,0.00016807875263313255,3.869449703555892e-05,5.116255715054514e-05 +102640,85.0,Rural Climate Zone 3A,G1300310110500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,8717.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0010067329533642842,0.0,0.0,0.0010067329533642842,0.0007795991767687761,0.00019603121077125027,3.1102565824257865e-05,0.0,0.0,0.0007795991767687761,0.00019603121077125027,3.1102565824257865e-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.00011996985475628377,4.19793012006893e-05,0.00011996985475628377,9.290288918478009e-05,2.336055038760161e-05,3.7064151839020832e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.290288918478009e-05,2.336055038760161e-05,3.7064151839020832e-06,0.0,0.0 +102641,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,7887.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,9613.75315558068,0.0,0.0,0.0005586312408591315,0.0,0.0,0.0005586312408591314,0.0003441328816297282,0.00015694038829486365,5.7527597335101955e-05,0.0,0.0,0.0003441328816297282,0.00015694038829486365,5.7527597335101955e-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,6.657085031229095e-05,1.9688732310255173e-05,6.657085031229095e-05,4.100955491726058e-05,1.870223921072245e-05,6.855436629593249e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1009554917260586e-05,1.8702239210722453e-05,6.855436629593251e-06,0.0,0.0 +102642,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,13022.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003126906336861996,0.0,0.0,0.003126906336861996,0.001054846018471127,0.00044752797600339255,0.0015423215110906049,0.0,8.221083129687158e-05,0.001054846018471127,0.00044752797600339255,0.0015423215110906049,0.0,8.221083129687158e-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.00037262311954793073,0.0001232358576591835,0.00037262311954793073,0.00012570252246182743,5.333043351426597e-05,0.00018379336983441723,0.0,9.796793737420136e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012570252246182743,5.333043351426597e-05,0.00018379336983441723,0.0,9.796793737420136e-06 +102643,85.0,Rural Climate Zone 3A,G1300810010300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,62227.0,,3426.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002993505570354615,0.000582619676262935,0.0,0.00357610751625613,0.0015541016391904681,0.0007866961362077428,0.0006645516763849992,0.0,0.0005707757948343399,0.001442187597907095,0.0007866961362077428,0.0006645516763849992,0.0,0.00010007015985477804,0.00011191404128337329,0.0,0.0004707056349795618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.892678552189483e-05,0.0,0.0,0.0003567293783605391,0.00012650112900221893,0.00039565616388243397,0.0001718622775837134,9.374882292094125e-05,7.919314022762678e-05,0.0,1.1925137628257666e-05,7.477354540906883e-06,0.0,3.144943098098795e-05,0.0,0.0,0.0,0.00017194390550350082,8.70390987905619e-05,7.352518507480396e-05,0.0,6.314993617907978e-05 +102644,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,120890.0,,11569.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.012106159685861114,0.0034054414732182913,0.0,0.015511570469473109,0.007853009907487678,0.0026615254165619764,0.0049970044558171585,0.0,0.0,0.004447568434269386,0.0026615254165619764,0.0049970044558171585,0.0,0.0,0.0034054414732182913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022753113826468217,0.0,0.0,0.0014426665268563936,0.0006570980584131728,0.0016701976651210758,0.000530007721070891,0.0003171685925583728,0.000595482898790698,0.0,0.0,0.00022753113826468217,0.0,0.0,0.0,0.0,0.0,0.0008455674322255855,0.0002865779158306727,0.0005380490125826005,0.0,0.0 +102645,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,268419.0,,66.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,1133273.7058648225,0.0,0.0,0.022944807942020806,1.954927921163667e-05,0.0,0.022964326531626146,0.006735693411007212,0.006075836186000305,0.010152796934618631,0.0,0.0,0.006716144131795575,0.006075836186000305,0.010152796934618631,0.0,0.0,1.954927921163667e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.305232849738394e-06,0.0,0.0,0.002734288068931022,0.000812985528621759,0.00273559330178076,0.0008003498140055639,0.0007240455633422418,0.0012098890343626135,0.0,0.0,1.305232849738394e-06,0.0,0.0,0.0,0.0,0.0,0.0008023800633832626,0.0007237754937097485,0.0012094377446877488,0.0,0.0 +102646,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,30660.0,,4881.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0021704090021515037,0.0008301355216868722,0.0,0.003000544523838376,0.0011021724569547423,0.0007388773514578604,0.0008818372555877461,0.0,0.0002776574598380269,0.0010513572411248709,0.0007388773514578604,0.000309270694249981,0.0,7.090371531879116e-05,5.081521582987133e-05,0.0005725665613377652,0.00020675374451923574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.546467170444019e-05,0.0,0.0,0.00025864324585811595,0.00012582444567603174,0.00031410791756255615,0.00012528811349907443,8.805051779764456e-05,3.685516238198147e-05,0.0,8.449452179415464e-06,3.3951676442743612e-06,3.8255460131385886e-05,1.3814043928779946e-05,0.0,0.0,0.0,0.00011537942280089567,7.734836938985772e-05,9.231393228166831e-05,0.0,2.906619309013443e-05 +102647,50.0,the Greater Atlanta and Macon Area,G1301170130602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,10130.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002442753422890445,0.0,0.0,0.002442753422890445,0.0017656306101867347,0.00035977577076598733,0.00027566267677311165,0.0,4.168436516461094e-05,0.0017656306101867347,0.00035977577076598733,0.00027566267677311165,0.0,4.168436516461094e-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.0002910950064620471,9.342274606634882e-05,0.0002910950064620471,0.000210404475976021,4.28733122772949e-05,3.2849827544879055e-05,0.0,4.967390663852098e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.000210404475976021,4.28733122772949e-05,3.2849827544879055e-05,0.0,4.967390663852098e-06 +102648,50.0,the Greater Atlanta and Macon Area,G1300670031405,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,90744.0,,4571.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005038117658230845,0.0007772635839322748,0.0,0.005815381242163119,0.0025191652112839425,0.0011238921496943071,0.0010845130169803699,0.0,0.0010878108642044997,0.0019350207239388826,0.0011238921496943071,0.0008913939203931547,0.0,0.0010878108642044997,0.0005841444873450596,0.00019311909658721512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.193234335764438e-05,0.0,0.0,0.0006003834603326123,0.00020183323725852015,0.0006523158036902567,0.00023059295492152077,0.00013393221509461003,0.00010622581740836622,0.0,0.00012963247290811525,3.902922086456845e-05,1.290312249307593e-05,0.0,0.0,0.0,0.0,0.0002825767066676394,0.00012606785013054663,0.00012165066241142087,0.0,0.00012202058448064977 +102649,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970300,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,25316.0,,2867.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004816457501967772,0.0008440255523994219,0.0,0.005660483054367195,0.001540065823231321,0.001406658104655207,0.0027137591264806667,0.0,0.0,0.0006960402708318991,0.001406658104655207,0.0027137591264806667,0.0,0.0,0.0008440255523994219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.639262073956866e-05,0.0,0.0,0.0005739697339921972,0.00022637347154123126,0.000630362354731766,8.294603428640721e-05,0.000167629254035162,0.00032339444567062813,0.0,0.0,5.639262073956866e-05,0.0,0.0,0.0,0.0,0.0,0.0001715047124865106,0.00015664817059541695,0.0003022094716498384,0.0,0.0 +102650,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,97077.0,,15441.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004997054141182002,0.00262583106558698,0.0,0.0076228852067689815,0.0030862353605814914,0.0012646889497309466,0.0019628751217297857,0.0,0.0013090857747267586,0.002381276190520192,0.0012646889497309466,0.0011498316684518443,0.0,0.0002012396021175993,0.0007049591700612993,0.0008130434532779413,0.0011078461726091592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017544308746925743,0.0,0.0,0.0005954886001956614,0.0003321102773242428,0.000770931687664919,0.00028377175538000225,0.0001507103647630407,0.000137023060259473,0.0,2.3981306902669483e-05,4.7101359625232434e-05,5.432293629211919e-05,7.401997619374746e-05,0.0,0.0,0.0,0.000312122847258868,0.00012790285566959353,0.00019851310746840257,0.0,0.00013239287726805502 +102651,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,187490.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.00965107897997024,0.0,0.0,0.00965107897997024,0.005157903979984721,0.002126242671854152,0.0010095490488963865,0.0,0.0013574187399578227,0.005157903979984721,0.002126242671854152,0.0010095490488963865,0.0,0.0013574187399578227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011501012758607736,0.0003313184117091163,0.0011501012758607736,0.0006146579009931677,0.00025338041630000433,0.00012030609754510006,0.0,0.00016176108681141777,0.0,0.0,0.0,0.0,0.0,0.0,0.0006146579009931677,0.00025338041630000433,0.00012030609754510006,0.0,0.00016176108681141777 +102652,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302670950400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,176211.0,,3941.0,,9.729435225087556,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1459415.2837631335,0.0,0.0,0.047176502173700556,0.0034856277203204455,0.0,0.05066203767676823,0.03402023558956286,0.008903022451733347,0.0020036964682555334,0.0006784423286522441,0.005056640838564245,0.03402023558956286,0.008903022451733347,0.0020036964682555334,0.0006784423286522441,0.001571013118243799,0.0,0.0,0.0034856277203204455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000232886817528825,0.0,0.0,0.00562192933546327,0.001389447782723834,0.005854816152992095,0.004054123380239839,0.0010609553652663627,0.0002387764975193439,8.084861433403043e-05,0.0001872144887582632,0.0,0.0,0.00023288681752882498,0.0,0.0,0.0,0.003931587318480616,0.0010288879415673914,0.000231559467127696,7.840496132448728e-05,0.0005843764644919037 +102653,50.0,the Greater Atlanta and Macon Area,G1301350050320,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,29816.0,,3160.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0026565230107354508,0.0009301405876707758,0.0,0.003586694288012524,0.0014226166999300122,0.0009147957845219246,0.0012492511139542896,0.0,0.0,0.0004924761122592366,0.0009147957845219246,0.0012492511139542896,0.0,0.0,0.0009301405876707758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.214738852740799e-05,0.0,0.0,0.00031657326090805716,0.00015480676289457516,0.0003787206494354652,5.8687528076057264e-05,0.00010901463431738736,0.00014887109851461253,0.0,0.0,6.214738852740799e-05,0.0,0.0,0.0,0.0,0.0,0.00015021473179242735,9.659369486072e-05,0.00013190898225310215,0.0,0.0 +102654,81.0,the Columbus-Albany Area,G1300950010700,ComStock DOE Ref 1980-2004,gen3_t5_cfl,200001_500000,NaturalGas,255618.0,,2.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,1133273.7058648225,0.0,0.0,0.029122349483291697,6.137921259540556e-07,0.0,0.029122963275417652,0.007410404405462206,0.008294725410930515,0.013417833459024928,0.0,0.0,0.007409790613336254,0.008294725410930515,0.013417833459024928,0.0,0.0,6.137921259540556e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1785782690079566e-08,0.0,0.0,0.0034704539786820573,0.0011093362354293967,0.0034704957644647472,0.0008830103948174706,0.0009884663605508395,0.001598977223313747,0.0,0.0,4.1785782690079566e-08,0.0,0.0,0.0,0.0,0.0,0.0008830755599597779,0.0009884574290670162,0.0015989627754379528,0.0,0.0 +102655,50.0,the Greater Atlanta and Macon Area,G1301350050549,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,34045.0,,1210.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.00807634575064337,0.0009598155907446625,0.0,0.009036161341388032,0.004536400287527273,0.0019476688794869506,0.0022486399208242903,0.0,0.00030345225354951895,0.0038800369503321297,0.0019476688794869506,0.0022486399208242903,0.0,0.0,0.0006563633371951437,0.0,0.00030345225354951895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.412759022948488e-05,0.0,0.0,0.000962441227960506,0.00034526154635268675,0.0010265688181899909,0.00046237588660840985,0.00023209962598302053,0.0002679657153690756,0.0,0.0,4.3853214654131155e-05,0.0,2.027437557535373e-05,0.0,0.0,0.0,0.0005153656410132518,0.00022126830899781336,0.00025546064737494374,0.0,3.447422080398222e-05 +102656,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,32081.0,,5179.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.0029259495810375086,0.0015088085520703217,0.0,0.00443475813310783,0.003229685575415027,0.0009238434004986593,0.0002812291571941441,0.0,0.0,0.0017208770233447053,0.0009238434004986593,0.0002812291571941441,0.0,0.0,0.0015088085520703217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010080941300931222,0.0,0.0,0.0003486786502517005,0.00019359716312183383,0.00044948806326101275,0.00020507293824804424,0.00011009228320865052,3.351342879500576e-05,0.0,0.0,0.00010080941300931222,0.0,0.0,0.0,0.0,0.0,0.0003273470774871754,9.363680461996318e-05,2.850418115387425e-05,0.0,0.0 +102657,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,42582.0,,4679.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.003811372895718006,0.0013771960826094122,0.0,0.005188568978327418,0.0013891650290655162,0.0015430734046484962,0.0022563305446134064,0.0,0.0,1.1968946456104085e-05,0.0015430734046484962,0.0022563305446134064,0.0,0.0,0.0013771960826094122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.201658549395564e-05,0.0,0.0,0.00045419434206823875,0.00022214123847569473,0.0005462109275621944,1.4263174739442723e-06,0.00018388523741004622,0.00026888278718424836,0.0,0.0,9.201658549395564e-05,0.0,0.0,0.0,0.0,0.0,0.0001462401525800736,0.00016244239195241584,0.00023752838302970494,0.0,0.0 +102658,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Propane,31242.0,,,3181.0,3.20458438519356,Mercantile,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,56080.226740887294,0.0,0.0,0.0026955658293021613,0.0,0.00029978742645061054,0.0029953532557527715,0.001958793427740615,0.0008058723402824314,0.00023068748772972508,0.0,0.0,0.0016590060012900045,0.0008058723402824314,0.00023068748772972508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029978742645061054,0.0,0.0,0.0,0.0,2.4177541948944515e-05,0.00032122438141112984,0.00011100517599519445,0.0003454019233600744,0.00019769993028131554,9.603395368406926e-05,2.7490497445744992e-05,0.0,0.0,0.0,0.0,0.0,2.4177541948944515e-05,0.0,0.0,0.00022587353131297034,9.2927221783156e-05,2.660117026394805e-05,0.0,0.0 +102659,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,105019.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011971156107757518,0.0,0.0,0.011971156107757518,0.005414505859891107,0.0023130756266578592,0.004243574621208555,0.0,0.0,0.005414505859891107,0.0023130756266578592,0.004243574621208555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014265799851515058,0.0004730490986909306,0.0014265799851515058,0.0006452364015369212,0.0002756448385961285,0.0005056987450184565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006452364015369212,0.0002756448385961285,0.0005056987450184565,0.0,0.0 +102660,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,17028.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005295651224454115,0.0,0.0,0.005295651224454115,0.0028374315787744204,0.0010517031496690334,0.0012771626326823853,0.0,0.0001293538633282768,0.0028374315787744204,0.0010517031496690334,0.0012771626326823853,0.0,0.0001293538633282768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006310771763697554,0.0001334104603726182,0.0006310771763697554,0.00033813373142977716,0.00012533035616232974,0.00015219812518549035,0.0,1.54149635921582e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00033813373142977716,0.00012533035616232974,0.00015219812518549035,0.0,1.54149635921582e-05 +102661,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,97003.0,,7369.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009645037398423137,0.0021691106835153347,0.0,0.011814117392332176,0.003810759103592051,0.003221641421101349,0.004781747557245071,0.0,0.0,0.0016416484200767172,0.003221641421101349,0.004781747557245071,0.0,0.0,0.0021691106835153347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014492655267965869,0.0,0.0,0.0011493798455931026,0.00045934996404289,0.0012943063982727612,0.00019563196384229914,0.00038391657452227154,0.0005698313072285319,0.0,0.0,0.00014492655267965869,0.0,0.0,0.0,0.0,0.0,0.0004174911867099452,0.00035294986208435553,0.0005238687117062485,0.0,0.0 +102662,50.0,the Greater Atlanta and Macon Area,G1300890023315,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,59989.0,,12654.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004994672045738532,0.003724736137139591,0.0,0.008719408182878126,0.004750873813309582,0.001443117356936878,0.0025254170126316642,0.0,0.0,0.0010261376761699903,0.001443117356936878,0.0025254170126316642,0.0,0.0,0.003724736137139591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002488657040636282,0.0,0.0,0.0005952041318025214,0.0004118690433267238,0.0008440698358661495,0.00012228258012970424,0.00017197313570520046,0.00030094841596761673,0.0,0.0,0.0002488657040636282,0.0,0.0,0.0,0.0,0.0,0.0004599015432831076,0.00013969891133175865,0.0002444693812512832,0.0,0.0 +102663,50.0,the Greater Atlanta and Macon Area,G1300970080508,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,23754.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,24034.3828889517,0.0,0.0,0.0022114410278638347,0.0,0.0,0.0022114410278638347,0.001645368255142454,0.0004514731820427431,0.00011459959067863763,0.0,0.0,0.001645368255142454,0.0004514731820427431,0.00011459959067863763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026353270844459625,9.252831277220482e-05,0.00026353270844459625,0.00019607502402417624,5.380109573564002e-05,1.3656588684779993e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019607502402417624,5.380109573564002e-05,1.3656588684779993e-05,0.0,0.0 +102664,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,30023.0,,5843.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.0027040704371447317,0.0017021061388921743,0.0,0.004406176576036905,0.003225402897894304,0.0009325302499378565,0.0002482738018041834,0.0,0.0,0.0015232967590021295,0.0009325302499378565,0.0002482738018041834,0.0,0.0,0.0017021061388921743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011372396756910464,0.0,0.0,0.00032223872328059446,0.00019312887383257283,0.0004359626908496991,0.00018152826052734986,0.0001111277846289419,2.958629768604557e-05,0.0,0.0,0.00011372396756910464,0.0,0.0,0.0,0.0,0.0,0.0003191327678713166,9.226784039311392e-05,2.4565087856599348e-05,0.0,0.0 +102665,50.0,the Greater Atlanta and Macon Area,G1301530021103,ComStock 90.1-2007,gen4_led,10001_25000,DistrictHeating,33665.0,,45263.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,129548.99535175005,0.016828865538104438,0.0018933324481032077,0.0068576467591096625,0.030461224022464508,0.0,0.05604113893278509,0.01905358729662832,0.0014331201916879643,0.0339868049415218,0.0008099847976913518,0.0007575715402523842,0.0010889608506730577,0.0014331201916879643,0.00352558091905729,0.0008099847976913518,0.0,0.0,0.030461224022464508,0.0,0.0011357609078508236,0.0,0.0007575715402523842,0.016828865538104438,0.0,0.0,0.0,0.002035242284716846,0.0,0.0,0.0008172162059272781,0.002298737485848691,0.002852458490644124,0.00012976994675443395,0.00017078293572547125,0.0004201385640831214,9.652475936425167e-05,0.0,0.0,0.002035242284716846,0.0,0.0,0.0,0.0,0.0009698155300998171,7.294491041298881e-05,0.0017299068536345246,4.122771338103025e-05,3.855991176151971e-05 +102666,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,37625.0,,834.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.009646456838510382,0.0006619874182094166,0.0,0.010308444256719798,0.005706043724348559,0.0009237553065943245,0.0035500357261122923,0.0,0.00012852679259088375,0.005044056306139143,0.0009237553065943245,0.0035500357261122923,0.0,0.00012852679259088375,0.0006619874182094166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.422957271055393e-05,0.0,0.0,0.0011495459812752892,0.00041922057380877213,0.0011937755539858433,0.0006010885398771891,0.00011008178631328519,0.00042304955805579195,0.0,1.5316241018071915e-05,4.422957271055393e-05,0.0,0.0,0.0,0.0,0.0,0.0006607918070334675,0.00010697603589970862,0.00041111401100574744,0.0,1.4884122104767414e-05 +102667,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,39261.0,,4860.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004753328981813397,0.0014307187559926056,0.0,0.006184047737806004,0.00228539360177733,0.0014808655726830525,0.002417788563345621,0.0,0.0,0.0008546748457847248,0.0014808655726830525,0.002417788563345621,0.0,0.0,0.0014307187559926056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.559180197435325e-05,0.0,0.0,0.0005664443349048669,0.0002565826465286595,0.0006620361368792202,0.0001018498249190726,0.00017647167229774895,0.0002881228376880455,0.0,0.0,9.559180197435325e-05,0.0,0.0,0.0,0.0,0.0,0.0002446638861015556,0.00015853475984393788,0.00025883749093372677,0.0,0.0 +102668,50.0,the Greater Atlanta and Macon Area,G1302550160500,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,NaturalGas,179786.0,,11641.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.009254557177172182,0.0019797189650788355,0.0,0.011234276142251016,0.005794087078097635,0.0020977499810521274,0.0012391572292860702,0.0,0.0021032818538151837,0.005794087078097635,0.0020977499810521274,0.0010540877167835591,0.0,0.0003086324012388591,0.0,0.00018506951250251113,0.0017946494525763244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001322735345984805,0.0,0.0,0.0011028469683818307,0.0004974547508156532,0.001235120502980311,0.0006904697054962535,0.0002499846467784526,0.00012561351349481707,0.0,3.677910261230729e-05,0.0,1.2365289718861687e-05,0.00011990824487961881,0.0,0.0,0.0,0.0006370144062328293,0.00023063114871991092,0.00013623561330768847,0.0,0.0002312393347198823 +102669,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,91779.0,,12611.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.007980463842442035,0.003712122708951235,0.0,0.011692555861786975,0.005057278842585846,0.0023379342077589982,0.004297373501048428,0.0,0.0,0.0013451561336346107,0.0023379342077589982,0.004297373501048428,0.0,0.0,0.003712122708951235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002480213399526602,0.0,0.0,0.0009510152152365868,0.0005038439023604988,0.0011990365551892471,0.0001602994481538654,0.0002786067386179066,0.0005121090284648151,0.0,0.0,0.0002480213399526602,0.0,0.0,0.0,0.0,0.0,0.0005186087861134968,0.00023974814504773524,0.00044068277115514866,0.0,0.0 +102670,50.0,the Greater Atlanta and Macon Area,G1301510070404,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,95029.0,,5872.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008466986171079518,0.0017285613851118114,0.0,0.01019554755619133,0.003009177276702353,0.00251225117152995,0.004674119107959026,0.0,0.0,0.0012806158915905416,0.00251225117152995,0.004674119107959026,0.0,0.0,0.0017285613851118114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001154916890738632,0.0,0.0,0.0010089943746326069,0.0004174492813971363,0.00112448606370647,0.00015260852026586377,0.0002993801157247797,0.0005570057386419634,0.0,0.0,0.0001154916890738632,0.0,0.0,0.0,0.0,0.0,0.0003318878061452577,0.00027708089392415044,0.0005155173636370618,0.0,0.0 +102671,50.0,the Greater Atlanta and Macon Area,G1301210001500,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,73402.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005853174853251402,0.0,0.0,0.005853174853251404,0.0037835785347618694,0.001597408341630244,0.0004722183504587276,0.0,0.0,0.0037835785347618694,0.001597408341630244,0.0004722183504587276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006975123013807343,0.0001515466353229931,0.0006975123013807343,0.0004508822369744343,0.00019036027396248997,5.627341001093e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004508822369744342,0.00019036027396248991,5.627341001092999e-05,0.0,0.0 +102672,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,35862.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.009175274639417547,0.0,0.0,0.009175274639417549,0.005201530574538783,0.0018605783308394599,0.001962142617391329,0.0,0.00015094040957423606,0.005201530574538783,0.0018605783308394599,0.001962142617391329,0.0,0.00015094040957423606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010934028103458762,0.0003518324812668878,0.0010934028103458762,0.0006198580829251062,0.00022172214519538866,0.000233825398853814,0.0,1.7987327301812957e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000619858082925106,0.00022172214519538863,0.00023382539885381394,0.0,1.7987327301812954e-05 +102673,85.0,Rural Climate Zone 3A,G1300310110500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2659.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005567013133392783,0.0,0.0,0.0005567013133392783,0.00034720429555761256,9.825600360229721e-05,8.568452839392249e-05,0.0,2.5473778711706688e-05,0.00034720429555761256,9.825600360229721e-05,8.568452839392249e-05,0.0,2.5473778711706688e-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,6.633868378277381e-05,2.1810822465134e-05,6.633868378277381e-05,4.1374208070135856e-05,1.170856579021472e-05,1.0210500133554251e-05,0.0,3.035554093759372e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.1374208070135856e-05,1.170856579021472e-05,1.0210500133554251e-05,0.0,3.035554093759372e-06 +102674,50.0,the Greater Atlanta and Macon Area,G1300590001900,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,7183.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001427193264445489,0.0,0.0,0.001427193264445489,0.0007544539266499624,0.00024266255435112798,0.00038971573145961657,0.0,4.0361051984782014e-05,0.0007544539266499624,0.00024266255435112798,0.00038971573145961657,0.0,4.0361051984782014e-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.00017007243868675896,4.9137768962896824e-05,0.00017007243868675896,8.990500612544133e-05,2.8917045381719444e-05,4.644073545966668e-05,0.0,4.8096517199315225e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.990500612544133e-05,2.8917045381719444e-05,4.644073545966668e-05,0.0,4.8096517199315225e-06 +102675,50.0,the Greater Atlanta and Macon Area,G1300890023315,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,173854.0,,12079.0,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,431997.0345818221,0.0,0.0,0.029090791769499413,0.006324866097293865,0.0,0.03541565786679328,0.017149579097156933,0.002462184500944761,0.015643060664705256,0.0,0.00016088819787769866,0.01082471299986307,0.002462184500944761,0.015643060664705256,0.0,0.00016088819787769866,0.006324866097293865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004225890050203845,0.0,0.0,0.0034666941163995204,0.001599440302345451,0.0038892831214199044,0.0012899603821606277,0.00029341382629071604,0.0018641536744170802,0.0,1.9172739380903327e-05,0.00042258900502038457,0.0,0.0,0.0,0.0,0.0,0.0018833355792203838,0.00027039262287218454,0.0017178924655139997,0.0,1.7668449215173564e-05 +102676,85.0,Rural Climate Zone 3A,G1301330950303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,63866.0,,,,9.325022323477118,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.0163878370499175,0.0,0.0,0.0163878370499175,0.009057608517471769,0.002949467738451897,0.0040092821776888605,0.0,0.00037147861630497505,0.009057608517471769,0.002949467738451897,0.0040092821776888605,0.0,0.00037147861630497505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019529107477765095,0.0006667517409451438,0.0019529107477765095,0.0010793798454941145,0.0003514830681497277,0.0004777793574483218,0.0,4.426847668434585e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0010793798454941145,0.0003514830681497277,0.0004777793574483218,0.0,4.426847668434585e-05 +102677,50.0,the Greater Atlanta and Macon Area,G1300670030334,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,296345.0,,45515.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.017637223831513265,0.007740189277924051,0.0,0.025377413109437315,0.010007547896320402,0.005338292677072338,0.003991653996857908,0.0,0.006039918539186667,0.008119158022916259,0.005338292677072338,0.0033246732609583615,0.0,0.0008550998705663068,0.0018883898734041436,0.0006669807358995463,0.0051848186686203595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005171540423971398,0.0,0.0,0.0021017939551811757,0.0010795829755224735,0.002618947997578315,0.0009675444058965593,0.0006361540448112523,0.0003961949017367108,0.0,0.00010190060273665342,0.0001261711337522615,4.4563740160109045e-05,0.0003464191684847691,0.0,0.0,0.0,0.0010327785346249789,0.0005509115864889498,0.00041193852962928296,0.0,0.0006233193468351036 +102678,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5998.0,,384.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012340722472642062,0.00030494098087682645,0.0,0.0015390959352147718,0.0009140785789668257,0.0003206553248872949,0.00026044457520507907,0.0,4.3834749081832933e-05,0.0006529723471718321,0.0003206553248872949,0.00026044457520507907,0.0,0.0,0.0002611062317949935,0.0,4.3834749081832933e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.037662597461939e-05,0.0,0.0,0.00014706598003491606,5.966365725423479e-05,0.00016744260600953548,7.781555608710288e-05,3.821290829001873e-05,3.103751565779442e-05,0.0,0.0,1.7447520532105616e-05,0.0,2.929105442513772e-06,0.0,0.0,0.0,9.944519757200206e-05,3.488500099408722e-05,2.833450299984025e-05,0.0,4.768906506800677e-06 +102679,50.0,the Greater Atlanta and Macon Area,G1300890023214,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,177900.0,,6.0,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,699376.6742607838,0.0,0.0,0.045285921367565526,4.861128693022514e-06,0.0,0.045290870880416605,0.027217724704707225,0.005025169690372511,0.012528807940922064,0.0,0.0005192569285728596,0.027212863576014202,0.005025169690372511,0.012528807940922064,0.0,0.0005192569285728596,4.861128693022514e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2683800252148514e-07,0.0,0.0,0.005396639549709608,0.0018023037635484095,0.0053969663877121285,0.0032429066562031403,0.0005988401842363605,0.0014930348859617463,0.0,6.187888846187946e-05,3.2683800252148514e-07,0.0,0.0,0.0,0.0,0.0,0.0032433279052892375,0.0005988110050499593,0.0014929621360956088,0.0,6.187587334087012e-05 +102680,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Propane,2910.0,,,683.0,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00035588853830023984,0.0,0.0001751735821798531,0.0005310621204800929,0.000341414800395861,0.00012406061060896115,5.293252719315675e-05,0.0,1.2654182282114036e-05,0.00017889540049812193,0.00012406061060896115,5.293252719315675e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016251939989773908,1.2654182282114036e-05,0.0,0.0,0.0,1.4128657259027324e-05,4.2413754030460245e-05,2.5169845143174254e-05,5.6542411289487577e-05,2.132023006457948e-05,1.4785180349916426e-05,6.308343615964341e-06,0.0,0.0,0.0,0.0,0.0,1.3108031876293054e-05,1.0206253827342685e-06,0.0,3.6350579941287135e-05,1.3208786315874691e-05,5.635748828106534e-06,0.0,1.3472962042192183e-06 +102681,50.0,the Greater Atlanta and Macon Area,G1300130180206,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,12760.0,,96.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0027764764654285502,7.633862906138073e-05,0.0,0.002852815094489931,0.001466975366914096,0.00037838486235733143,0.000931116236157123,0.0,7.633862906138073e-05,0.001466975366914096,0.00037838486235733143,0.000931116236157123,0.0,0.0,0.0,0.0,7.633862906138073e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.097829956329275e-06,0.0,0.0,0.000330871854128495,0.00010596059484019001,0.0003359696840848243,0.00017481900734814167,4.50920087172435e-05,0.0001109608380631098,0.0,0.0,0.0,0.0,5.097829956329275e-06,0.0,0.0,0.0,0.00017276242387187342,4.4561543057665936e-05,0.00010965548671982581,0.0,8.990230435459158e-06 +102682,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock 90.1-2004,gen5_led,50001_100000,Electricity,43589.0,,4685.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0038837389873679893,0.0013791295278061673,0.0,0.005262899204780455,0.002131423846981756,0.0011173164964804652,0.002014158861318234,0.0,0.0,0.0007522943191755884,0.0011173164964804652,0.002014158861318234,0.0,0.0,0.0013791295278061673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.214612959797894e-05,0.0,0.0,0.00046281922060637453,0.0002198811168874626,0.0005549653502043535,8.964976060438298e-05,0.00013314889382465508,0.00024002422341066595,0.0,0.0,9.214612959797895e-05,0.0,0.0,0.0,0.0,0.0,0.0002247556595041201,0.00011781945969916201,0.00021239023100107137,0.0,0.0 +102683,50.0,the Greater Atlanta and Macon Area,G1300670030319,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4179.0,,1761.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0009473268226100273,0.0013970878896043808,0.0,0.002344332005140669,0.0018682700886972152,0.00018402323906995902,0.0002539934234534131,0.0,3.804525392008141e-05,0.0004711821990928344,0.00018402323906995902,0.0002539934234534131,0.0,3.804525392008141e-05,0.0013970878896043808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.334271810519955e-05,0.0,0.0,0.00011288701993889604,0.0001206164641675745,0.00020622973804409556,5.614783940910518e-05,2.1928899892093914e-05,3.0266809693761984e-05,0.0,4.533615258590202e-06,9.334271810519956e-05,0.0,0.0,0.0,0.0,0.0,0.00016435080446915062,1.6188434191148796e-05,2.2343677034165373e-05,0.0,3.346822349630762e-06 +102684,85.0,Rural Climate Zone 3A,G1300310110900,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,39411.0,,4600.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.008206199083606217,0.003164500281121806,0.0,0.011370699364728024,0.002546345850938255,0.0005424181407910664,0.006411119929056487,0.00038054616620883223,0.0014901975577623664,0.002546345850938255,0.0005424181407910664,0.0032466196479346812,0.00038054616620883223,0.0014901975577623664,0.0,0.003164500281121806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021143117281327385,0.0,0.0,0.0009779204122461638,0.0004571792304652328,0.0011893515850594377,0.000303444208323613,6.463915467416307e-05,0.0003868947843170717,4.5349114729751316e-05,0.00017758460344040195,0.0,0.00021143117281327385,0.0,0.0,0.0,0.0,0.0002663424980979941,5.673581323555457e-05,0.000670589856001515,3.980434021259454e-05,0.000155871575751468 +102685,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock 90.1-2007,gen4_led,50001_100000,FuelOil,35436.0,,1340.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004339234124038494,0.00039445350974437384,0.0,0.004733687633782868,0.0011898974153745324,0.0013681733383578878,0.0021755861904441502,0.0,0.0,0.0007954439056301584,0.0013681733383578878,0.0021755861904441502,0.0,0.0,0.00039445350974437384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.63558423764663e-05,0.0,0.0,0.0005170977017411226,0.00017201046527497008,0.0005434535441175888,9.47914317844004e-05,0.00016304243297890947,0.0002592601797598729,0.0,0.0,2.63558423764663e-05,0.0,0.0,0.0,0.0,0.0,0.000136606810070584,0.00015707387289169258,0.00024976933781862426,0.0,0.0 +102686,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7119.0,,375.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001468712215462621,0.0002973319300928102,0.0,0.0017661268526291706,0.0010540189477337338,0.000287324374170354,0.000378798397726028,0.0,4.598513299905493e-05,0.0007566870176409236,0.000287324374170354,0.000378798397726028,0.0,4.598513299905493e-05,0.0002973319300928102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9868628346330808e-05,0.0,0.0,0.00017502710786192283,7.938642033699763e-05,0.00019489573620825364,9.017473869966957e-05,3.4240577357378084e-05,4.5141578669197365e-05,0.0,5.48006937556195e-06,1.9868628346330808e-05,0.0,0.0,0.0,0.0,0.0,0.00011631316204167765,3.170683654525959e-05,4.180118347072219e-05,0.0,5.074554150594224e-06 +102687,81.0,the Columbus-Albany Area,G1302150000200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,26914.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0023779534543712025,0.0,0.0,0.0023779534543712025,0.001456037681188211,0.00042053967509742126,0.0005013760980855704,0.0,0.0,0.001456037681188211,0.00042053967509742126,0.0005013760980855704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002833748733460543,9.399246562745519e-05,0.0002833748733460543,0.000173512434709491,5.0114680314142045e-05,5.9747758322421264e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000173512434709491,5.0114680314142045e-05,5.9747758322421264e-05,0.0,0.0 +102688,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,41581.0,,810.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003362691567352942,0.00023600286763133163,0.0,0.003598694434984274,0.0021486891714254394,0.0012612637166526444,0.00018877192050562754,0.0,0.0,0.001912686303794108,0.0012612637166526444,0.00018877192050562754,0.0,0.0,0.00023600286763133163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5769301873493505e-05,0.0,0.0,0.0004007251390963343,0.00010328707953389556,0.00041649444096982777,0.00022793095048526671,0.00015030224097854124,2.249556719281478e-05,0.0,0.0,1.5769301873493505e-05,0.0,0.0,0.0,0.0,0.0,0.0002486782669211735,0.00014597219521503106,2.184749411827617e-05,0.0,0.0 +102689,50.0,the Greater Atlanta and Macon Area,G1301710970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,66989.0,,17676.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.0139483868430001,0.01215933216601568,0.0,0.02610771900901578,0.010974231364953724,0.001118401228017439,0.009446954582176287,0.00037222664957102134,0.004195833464326292,0.006228162282995665,0.001118401228017439,0.005773457666756689,0.00037222664957102134,0.00045606729568827063,0.0047460690819580605,0.0036734969154195983,0.0037397661686380227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008124148047744631,0.0,0.0,0.0016622004446688518,0.0012482371703181202,0.0024746152494433153,0.0007421972327545871,0.0001332775638827157,0.0006880110229933699,4.4357480861311675e-05,5.434859745608495e-05,0.0003171043223444169,0.0002454413810424033,0.000249869101387643,0.0,0.0,0.0,0.001040190461574046,0.00010600745062762262,0.0008954278181781743,3.5281433163868235e-05,0.0003977012879356036 +102690,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock 90.1-2007,gen4_led,_1000,Electricity,3172.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007437020070638524,0.0,0.0,0.0007437020070638524,0.0005466110503430828,0.0001200906710694744,4.9872365464802375e-05,0.0,2.7127920186492836e-05,0.0005466110503430828,0.0001200906710694744,4.9872365464802375e-05,0.0,2.7127920186492836e-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,8.86245024766691e-05,2.8981172741493428e-05,8.86245024766691e-05,6.513782660901981e-05,1.4310807117006624e-05,5.943124443219691e-06,0.0,3.232744307422983e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.513782660901981e-05,1.4310807117006624e-05,5.943124443219691e-06,0.0,3.232744307422983e-06 +102691,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,117932.0,,4128.0,,9.325022323477118,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,699376.6742607838,0.0,0.0,0.028051187315165448,0.0034993055857117706,0.0,0.03155049290087722,0.017643775935878403,0.004856090796013382,0.00831986595018706,0.0,0.0007308486029564212,0.014875318953123056,0.004856090796013382,0.00831986595018706,0.0,0.0,0.002768456982755349,0.0,0.0007308486029564212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023380388358824376,0.0,0.0,0.0033428094791764823,0.0010419579548169575,0.0035766133627647264,0.001772664972915071,0.0005786915955560671,0.0009914634432863015,0.0,0.0,0.000184972697656965,0.0,4.883118593127873e-05,0.0,0.0,0.0,0.002000126114674261,0.00055049406950271,0.000943153053974093,0.0,8.285014398045079e-05 +102692,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,139521.0,,33960.0,,7.4027997343857175,Healthcare,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,277604.9900394644,0.0,0.0,0.028555191708770338,0.022854565853500798,0.0,0.05140975756227113,0.03708388818563963,0.0018778961473849048,0.009479011281090684,0.0010180240323721258,0.001950937915783787,0.01692639489264281,0.0018778961473849048,0.007880722671716871,0.0010180240323721258,0.0008521539646536268,0.020157493292996823,0.0015982886093738131,0.0010987839511301602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015270077519317178,0.0,0.0,0.00340286908911958,0.0025740994275977973,0.004929876841051298,0.00201708699972465,0.00022378539138121652,0.000939131064256617,0.00012131603062135964,0.00010154960313573734,0.0013468052167441573,0.00010678825018958448,7.341428499797591e-05,0.0,0.0,0.0,0.0035561148352251486,0.00018007859141678696,0.0009089783808863491,9.762218961538488e-05,0.0001870828439076282 +102693,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,36046.0,,,1569.0,3.20458438519356,Mercantile,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,56080.226740887294,0.0,0.0,0.0030937637179310877,0.0,0.00014785868206297587,0.003241592026394626,0.0015761771956232554,0.001290331251314573,0.000375113953056235,0.0,0.0,0.0014283185135602796,0.001290331251314573,0.000375113953056235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014785868206297587,0.0,0.0,0.0,0.0,1.1924038730826822e-05,0.0003686760868743702,9.851141780742805e-05,0.000380600125605197,0.0001702091460112438,0.0001537655489813856,4.470139188174079e-05,0.0,0.0,0.0,0.0,0.0,1.1924038730826822e-05,0.0,0.0,0.0001850613012820967,0.00015149970518308888,4.404268534935144e-05,0.0,0.0 +102694,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,9772.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002125240966805244,0.0,0.0,0.002125240966805243,0.0012592979047546947,0.00049797929098437,0.0002995650210837715,0.0,6.831604290866793e-05,0.0012592979047546947,0.00049797929098437,0.0002995650210837715,0.0,6.831604290866793e-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.00025325910433186035,7.556356742984318e-05,0.00025325910433186035,0.0001500670580073515,5.934281861698828e-05,3.5698337324486224e-05,0.0,8.14103440917328e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015006705800735157,5.9342818616988306e-05,3.5698337324486245e-05,0.0,8.141034409173284e-06 +102695,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,28643.0,,2095.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00668752856841292,0.0016617505255701645,0.0,0.008349279093983083,0.0037089987218392414,0.0008083789387279907,0.003616118678029999,0.0,0.00021586546245959236,0.0022631136587286695,0.0008083789387279907,0.003616118678029999,0.0,0.0,0.001445885063110572,0.0,0.00021586546245959236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011102724259240903,0.0,0.0,0.000796940119270149,0.0003436164164659751,0.000907967361862558,0.0002696909703874581,9.633298777791233e-05,0.0004309260171501824,0.0,0.0,9.660453190326968e-05,0.0,1.442271068913934e-05,0.0,0.0,0.0,0.0004033461747669779,8.790958885433029e-05,0.0003932456562194628,0.0,2.3474936250235528e-05 +102696,50.0,the Greater Atlanta and Macon Area,G1300630040512,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,100392.0,,10595.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0045571993350733316,0.001801847979312866,0.0,0.006359047314386197,0.0031793374883981886,0.0011138744954919772,0.0008566246816484311,0.0,0.001209210648847601,0.0027116814755828757,0.0011138744954919772,0.0005430455095733772,0.0,0.0001885978544251017,0.0004676560128153127,0.00031357917207505383,0.0010206127944224993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012038851302679126,0.0,0.0,0.0005430727755448258,0.0002398439256608819,0.0006634612885716169,0.0003231459229804755,0.00013273830469074418,6.471370033376489e-05,0.0,2.2474847539841235e-05,3.124592786809e-05,2.0951451329808907e-05,6.819113382889234e-05,0.0,0.0,0.0,0.00033171122065480584,0.0001162143590934265,8.937460078696986e-05,0.0,0.0001261611080364148 +102697,50.0,the Greater Atlanta and Macon Area,G1300670031408,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,13013.0,,1650.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011593919467146158,0.00048566301966114646,0.0,0.0016450856559820596,0.000655990334613397,0.0004249282887979927,0.0005641363429643725,0.0,0.0,0.00017032731495225043,0.0004249282887979927,0.0005641363429643725,0.0,0.0,0.00048566301966114646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.244994330808134e-05,0.0,0.0,0.00013816353786877628,7.97847995610134e-05,0.00017061348117685765,2.0297729767899524e-05,5.063826421015078e-05,6.722754389072595e-05,0.0,0.0,3.244994330808134e-05,0.0,0.0,0.0,0.0,0.0,6.803341467344476e-05,4.4069738459345784e-05,5.8507145194257856e-05,0.0,0.0 +102698,50.0,the Greater Atlanta and Macon Area,G1300670031118,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,13367.0,,2150.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0012039225654525826,0.0006330038194964175,0.0,0.0018369263849490002,0.0008535086407454121,0.000406729352263455,0.0005767190815464307,0.0,0.0,0.00022050482124899454,0.000406729352263455,0.0005767190815464307,0.0,0.0,0.0006330038194964175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2293754299037446e-05,0.0,0.0,0.00014346800091527025,8.69999942358134e-05,0.0001857617552143077,2.6276927440827367e-05,4.846877096357482e-05,6.872595970327458e-05,0.0,0.0,4.2293754299037446e-05,0.0,0.0,0.0,0.0,0.0,8.631225752677488e-05,4.113107579743079e-05,5.832152541955175e-05,0.0,0.0 +102699,50.0,the Greater Atlanta and Macon Area,G1302230120101,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8141.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00195494710197601,0.0,0.0,0.0019549471019760095,0.0012640949150315745,0.00025118138294627664,0.00038591120606760846,0.0,5.367689085681052e-05,0.0012640949150315745,0.00025118138294627664,0.00038591120606760846,0.0,5.367689085681052e-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.00023296309688160575,6.454682878756931e-05,0.00023296309688160575,0.00015063705092602535,2.993226404490572e-05,4.5987469224079715e-05,0.0,6.396456820923218e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015063705092602537,2.9932264044905726e-05,4.598746922407973e-05,0.0,6.3964568209232195e-06 +102700,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,29203.0,,1466.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002719257236863608,0.0004271743024925416,0.0,0.0031464315393561495,0.001831285057300933,0.0009730182579883797,0.0003421585976662743,0.0,0.0,0.0014041107548083914,0.0009730182579883797,0.0003421585976662743,0.0,0.0,0.0004271743024925416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8541014492748175e-05,0.0,0.0,0.0003240500206953892,9.87579325223493e-05,0.0003525910351881374,0.00016732588332800665,0.00011595320308931151,4.077455385675337e-05,0.0,0.0,2.8541014492748175e-05,0.0,0.0,0.0,0.0,0.0,0.00020521491918760491,0.00010903701877819484,3.834250090639503e-05,0.0,0.0 +102701,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,7921.0,,398.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0019020145747828529,0.0003155274863154578,0.0,0.002217459354024571,0.0014606069222361689,0.0003455501540828264,0.0003747457511128019,0.0,3.647381951903457e-05,0.001181635962513485,0.0003455501540828264,0.0003747457511128019,0.0,0.0,0.00027897095972268383,0.0,3.647381951903457e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1079245337502778e-05,0.0,0.0,0.00022665461664048346,0.00010053768162343211,0.0002477338619779862,0.00014081030168902844,4.117767484123754e-05,4.4656784276124296e-05,0.0,0.0,1.8637036572318963e-05,0.0,2.4366834059865593e-06,0.0,0.0,0.0,0.00016317854621354056,3.8604754591176245e-05,4.1866477513791185e-05,0.0,4.074843651198834e-06 +102702,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,22002.0,,934.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.00501204866860203,0.0007406418453354979,0.0,0.0057526905139375275,0.0025298439715379355,0.0023638508745431456,0.0007401456028930621,0.0,0.00011893277203712407,0.0017892021262024375,0.0023638508745431456,0.0007401456028930621,0.0,0.00011893277203712407,0.0007406418453354979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.948542597463396e-05,0.0,0.0,0.0005972738780184705,0.00021499229154588455,0.0006467593039931045,0.00021321494724708864,0.0002816944671228697,8.820138505589589e-05,0.0,1.4172934597203967e-05,4.948542597463396e-05,0.0,0.0,0.0,0.0,0.0,0.00028442345755935706,0.00026576130641114114,8.32125513828523e-05,0.0,1.3371287170470623e-05 +102703,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,105959.0,,20946.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.0054542669711209035,0.003562135991457128,0.0,0.009016402962578031,0.0032157201900321368,0.001549580397028355,0.0019568645292083876,0.0,0.0022942378463091523,0.002735989801089768,0.001549580397028355,0.0008797628033016,0.0,0.00028893396970118047,0.00047973038894236864,0.0010771017259067876,0.0020053038766079715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023800109450912313,0.0,0.0,0.0006499750969313161,0.00041997065252428204,0.0008879761914404393,0.00032604293951547287,0.00018466068384518137,0.00010483973673826395,0.0,3.443173683239786e-05,3.2052778981878816e-05,7.196563811103064e-05,0.00013398267741621366,0.0,0.0,0.0,0.0003166986855993849,0.00015260969424225578,0.00019272087982572954,0.0,0.00022594693177306916 +102704,50.0,the Greater Atlanta and Macon Area,G1300890021812,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,76885.0,,2944.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007119252110515901,0.0008664596546030425,0.0,0.007985711765118943,0.004294826263725719,0.0015960129755120333,0.002094872525881192,0.0,0.0,0.003428366609122676,0.0015960129755120333,0.002094872525881192,0.0,0.0,0.0008664596546030425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.789202163483829e-05,0.0,0.0,0.0008483887186700659,0.00032033643058067214,0.0009062807403049043,0.00040855240262506357,0.0001901940516020484,0.00024964226444295403,0.0,0.0,5.789202163483829e-05,0.0,0.0,0.0,0.0,0.0,0.00048741031986299294,0.00018112797750868167,0.00023774244293322971,0.0,0.0 +102705,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,29607.0,,4118.0,,8.72605822017302,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.006998424458598976,0.0032665158773339466,0.0,0.010264940335932924,0.006293181240823901,0.001294365704020161,0.0025019716876877886,0.0,0.00017542170340107102,0.0032020870668910263,0.001294365704020161,0.0025019716876877886,0.0,0.0,0.003091094173932875,0.0,0.00017542170340107102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000218249310815662,0.0,0.0,0.000833989695102963,0.00045565402843483126,0.001052239005918625,0.00038158697466946737,0.0001542472402515023,0.0002981554801819934,0.0,0.0,0.0002065286679940385,0.0,1.1720642821623472e-05,0.0,0.0,0.0,0.0006451017303753718,0.00013268290288309328,0.0002564722361096777,0.0,1.7982136550481847e-05 +102706,50.0,the Greater Atlanta and Macon Area,G1301210011618,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,15320.0,,1916.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001303510337888628,0.0005640442741454794,0.0,0.0018675546120341072,0.0007760173848437126,0.0005085574659592329,0.000582979761231162,0.0,0.0,0.00021197311069823314,0.0005085574659592329,0.000582979761231162,0.0,0.0,0.0005640442741454794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.76854901790685e-05,0.0,0.0,0.00015533647283741492,8.64547774105011e-05,0.00019302196301648343,2.5260371471677378e-05,6.060367969555029e-05,6.947242167018727e-05,0.0,0.0,3.76854901790685e-05,0.0,0.0,0.0,0.0,0.0,8.020563253799814e-05,5.256219001768438e-05,6.025414046080094e-05,0.0,0.0 +102707,33.0,Rural Lower Plains-Upper South Appalachia,G1300110970300,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,Propane,137187.0,,,17593.0,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011259037707583035,0.0,0.001658185914105185,0.012917253995287658,0.008356658039709221,0.0034846719426949537,0.001075893639284045,0.0,0.0,0.006698472125604036,0.0034846719426949537,0.001075893639284045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001658185914105185,0.0,0.0,0.0,0.0,0.00013373075943111452,0.0013417195300875222,0.0005076943654791351,0.0014754502895186366,0.0007982450282244542,0.00041526216741532884,0.0001282123344477392,0.0,0.0,0.0,0.0,0.0,0.00013373075943111452,0.0,0.0,0.0009545243539064307,0.00039803043499821205,0.00012289203124379324,0.0,0.0 +102708,50.0,the Greater Atlanta and Macon Area,G1300890020500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,93405.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.007380997278569757,0.0,0.0,0.007380997278569759,0.004648679393947916,0.002037825533477645,0.0006944619775447578,0.0,0.0,0.004648679393947916,0.002037825533477645,0.0006944619775447578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008795802155585113,0.0002653761325287952,0.0008795802155585113,0.0005539747908135575,0.00024284401610756738,8.275778906998483e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005539747908135573,0.00024284401610756733,8.275778906998482e-05,0.0,0.0 +102709,50.0,the Greater Atlanta and Macon Area,G1300570090902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13383.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033019972119681094,0.0,0.0,0.0033019972119681094,0.0018683527957709545,0.0009941390263464754,0.00036589609422269605,0.0,7.360929562798359e-05,0.0018683527957709545,0.0009941390263464754,0.00036589609422269605,0.0,7.360929562798359e-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.0003934962559795653,0.00013176492152598842,0.0003934962559795653,0.0002226500456511968,0.00011847071928850756,4.360353262332424e-05,0.0,8.771958416536746e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002226500456511968,0.00011847071928850756,4.360353262332424e-05,0.0,8.771958416536746e-06 +102710,50.0,the Greater Atlanta and Macon Area,G1300670030330,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,8837.0,,1578.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021192860574960133,0.0012516888539706784,0.0,0.003370974911466692,0.0022231661421125834,0.0004701897142079627,0.0006039270524444228,0.0,7.360929562798359e-05,0.000971477288141905,0.0004701897142079627,0.0006039270524444228,0.0,7.360929562798359e-05,0.0012516888539706784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.363021261848977e-05,0.0,0.0,0.00025255477780989076,0.00014464879275914288,0.00033618499042838054,0.00011577070013093104,5.6032388067796954e-05,7.196983248391439e-05,0.0,8.772000946409724e-06,8.363021261848977e-05,0.0,0.0,0.0,0.0,0.0,0.00022171481777110918,4.689169416029597e-05,6.022922616683926e-05,0.0,7.341004011022587e-06 +102711,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,9499.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.00228089567958262,0.0,0.0,0.0022808956795826204,0.001308591320703322,0.0005791976373963699,0.000322557587583299,0.0,7.046642682588993e-05,0.001308591320703322,0.0005791976373963699,0.000322557587583299,0.0,7.046642682588993e-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.00027180692602547866,7.60697931900738e-05,0.00027180692602547866,0.0001559405752257279,6.902110025949767e-05,3.8438139513357274e-05,0.0,8.39725509368728e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015594057522572786,6.902110025949767e-05,3.843813951335727e-05,0.0,8.397255093687279e-06 +102712,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,117939.0,,16560.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005590028348514248,0.002816148765069826,0.0,0.008406177113584073,0.003279815446565628,0.0015758390622914531,0.002018300231528871,0.0,0.001532204642836703,0.0025038993701012773,0.0015758390622914531,0.001300486549438033,0.0,0.0002097856363220648,0.0007759160764643508,0.0007178136820908377,0.0013224190065146382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018815824566572936,0.0,0.0,0.0006661529630315515,0.00034629489593711207,0.0008543112086972809,0.0002983848883287197,0.00018778972040192282,0.00015497648925538642,0.0,2.499975215233861e-05,5.184207934688004e-05,4.796002427582008e-05,8.835614204302928e-05,0.0,0.0,0.0,0.00033332429957151296,0.0001601509170967977,0.00020511779457098238,0.0,0.00015571639553943568 +102713,46.0,the Tallahassee-Valdosta Area,G1301850010900,ComStock 90.1-2007,gen4_led,_1000,Electricity,2819.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0003409185579534252,0.0,0.0,0.0003409185579534252,0.00012769972185349066,8.23762454443502e-05,0.00010503798364892044,0.0,2.5804607006663916e-05,0.00012769972185349066,8.23762454443502e-05,0.00010503798364892044,0.0,2.5804607006663916e-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,4.0625614217251745e-05,1.3676118689664472e-05,4.0625614217251745e-05,1.5217357678660041e-05,9.816378398928369e-06,1.2516868038794205e-05,0.0,3.075010100869128e-06,0.0,0.0,0.0,0.0,0.0,0.0,1.5217357678660041e-05,9.816378398928369e-06,1.2516868038794205e-05,0.0,3.075010100869128e-06 +102714,50.0,the Greater Atlanta and Macon Area,G1300630040611,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,118384.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009494969425837847,0.0,0.0,0.009494969425837845,0.00559882633155967,0.002756404148975978,0.0011397085717027616,0.0,0.0,0.00559882633155967,0.002756404148975978,0.0011397085717027616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011314986389913074,0.00025767470848646454,0.0011314986389913074,0.0006672021878100412,0.0003284757857765403,0.0001358170458368388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006672021878100413,0.00032847578577654035,0.00013581704583683882,0.0,0.0 +102715,46.0,the Tallahassee-Valdosta Area,G1301850010302,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,8152.0,,17.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016834197788898634,1.372937424072503e-05,0.0,0.0016971491531305883,0.0011061244041894976,0.0003124673245871035,0.0002304219074377105,0.0,4.813551691627692e-05,0.0010923950299487725,0.0003124673245871035,0.0002304219074377105,0.0,4.813551691627692e-05,1.372937424072503e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.186348142450913e-07,0.0,0.0,0.00020061195937330737,6.0390931821641965e-05,0.00020153059418755244,0.00013017995280547527,3.7236512848204544e-05,2.745921778589144e-05,0.0,5.736275933736114e-06,9.186348142450913e-07,0.0,0.0,0.0,0.0,0.0,0.00013134844866785218,3.710441446591488e-05,2.7361804844372377e-05,0.0,5.7159262094130364e-06 +102716,35.0,Eastern Counties in South Carolina and Georgia,G1301270000900,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,26834.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0013100254838820215,0.0,0.0,0.0013100254838820213,0.0007842493463317758,0.00025590230637562216,0.00014272940943142506,0.0,0.0001271266913817786,0.0007842493463317758,0.00025590230637562216,0.00014272940943142506,0.0,0.0001271266913817786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015611296569869514,4.043104483605806e-05,0.00015611296569869514,9.345733560870373e-05,3.0495336517462945e-05,1.700876179349939e-05,0.0,1.5149418889365293e-05,0.0,0.0,0.0,0.0,0.0,0.0,9.345733560870375e-05,3.0495336517462952e-05,1.700876179349939e-05,0.0,1.5149418889365294e-05 +102717,50.0,the Greater Atlanta and Macon Area,G1300890021911,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,39926.0,,2101.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0034229038592016843,0.0006185797045364971,0.0,0.004041452874131884,0.001197753954586744,0.0015810364476387543,0.0012626931615126835,0.0,0.0,0.0005791742500502469,0.0015810364476387543,0.0012626931615126835,0.0,0.0,0.0006185797045364971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1329129401397384e-05,0.0,0.0,0.0004078994317659793,0.00015385216056385226,0.0004492285611673767,6.901883815810174e-05,0.0001884084085094811,0.00015047218509839648,0.0,0.0,4.1329129401397384e-05,0.0,0.0,0.0,0.0,0.0,0.000133136597755607,0.00017574044548979213,0.0001403549292317489,0.0,0.0 +102718,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,6408.0,,416.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012443279244078803,0.00033033205251479386,0.0,0.0015746599769226738,0.000859243789077665,0.0002844296265894782,0.0003842570645928223,0.0,4.6812203736448e-05,0.0005757239402993191,0.0002844296265894782,0.0003842570645928223,0.0,0.0,0.0002835198487783458,0.0,4.6812203736448e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2069104336183937e-05,0.0,0.0,0.00014828812039317544,6.889578671133658e-05,0.00017035722472935938,6.860974450361545e-05,3.389583556212232e-05,4.579239663321323e-05,0.0,0.0,1.894163486841225e-05,0.0,3.1274694677716847e-06,0.0,0.0,0.0,9.295872722902018e-05,3.077149513337187e-05,4.157149357070245e-05,0.0,5.064456599444163e-06 +102719,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,11590.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003118635629488065,0.0,0.0,0.0031186356294880648,0.0013270349981471875,0.0006648821657902924,0.0010352444419949112,0.0,9.147402355567401e-05,0.0013270349981471875,0.0006648821657902924,0.0010352444419949112,0.0,9.147402355567401e-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.00037163917538484933,0.000107877407172272,0.00037163917538484933,0.00015813908741214912,7.92321672612195e-05,0.00012336721453025062,0.0,1.0900706181230099e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00015813908741214915,7.923216726121951e-05,0.00012336721453025062,0.0,1.09007061812301e-05 +102720,50.0,the Greater Atlanta and Macon Area,G1300890023306,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,64388.0,,4800.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005564393897049087,0.001412826715521045,0.0,0.006977220612570132,0.0024282230294868394,0.0018621225517194142,0.002686875031363879,0.0,0.0,0.0010153963139657943,0.0018621225517194142,0.002686875031363879,0.0,0.0,0.001412826715521045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.439700466151936e-05,0.0,0.0,0.0006630988504834894,0.000295290557755576,0.0007574958551450087,0.00012100295935788437,0.00022190580795499582,0.00032019008317060927,0.0,0.0,9.439700466151938e-05,0.0,0.0,0.0,0.0,0.0,0.0002636248704663484,0.00020216504436713123,0.0002917059403115292,0.0,0.0 +102721,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,7122.0,,161.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014270278502980102,0.00012786513600096926,0.0,0.0015548929862989798,0.0009417027415957542,0.00034488849749291195,0.00022148954347386528,0.0,4.6812203736448e-05,0.0008138376055947849,0.00034488849749291195,0.00022148954347386528,0.0,4.6812203736448e-05,0.00012786513600096926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.544486804153479e-06,0.0,0.0,0.0001700584410926942,6.148204652670158e-05,0.00017860292789684766,9.69847606556225e-05,4.110024918027906e-05,2.639483628412166e-05,0.0,5.57859497267097e-06,8.544486804153479e-06,0.0,0.0,0.0,0.0,0.0,0.00010816877324646313,3.961564943243908e-05,2.5441417069561595e-05,0.0,5.377088148383817e-06 +102722,50.0,the Greater Atlanta and Macon Area,G1300850970201,ComStock 90.1-2004,gen5_led,10001_25000,Electricity,31677.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027933384458922843,0.0,0.0,0.0027933384458922843,0.0018419158171041458,0.0007021464982025088,0.00024924575698619144,0.0,0.0,0.0018419158171041458,0.0007021464982025088,0.00024924575698619144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003328763238398458,9.582136602430493e-05,0.0003328763238398458,0.00021949727105991264,8.367333556103032e-05,2.9702097660328535e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021949727105991264,8.367333556103032e-05,2.9702097660328535e-05,0.0,0.0 +102723,50.0,the Greater Atlanta and Macon Area,G1301130140304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,14722.0,,493.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031970419353929283,0.00039145258000814197,0.0,0.0035884945154010697,0.0016788708898342014,0.0008567625768654856,0.0009610561968507522,0.0,9.180485185063123e-05,0.0013792231616766904,0.0008567625768654856,0.0009610561968507522,0.0,0.0,0.00029964772815751074,0.0,9.180485185063123e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6154101000813298e-05,0.0,0.0,0.0003809884812065098,0.00015486694591469345,0.00040714258220732314,0.00016436072726942847,0.00010209959065627306,0.00011452816328080828,0.0,0.0,2.0020348177888564e-05,0.0,6.133752822924734e-06,0.0,0.0,0.0,0.00019048094579668235,9.720637063440723e-05,0.00010903929209111034,0.0,1.0415973685123276e-05 +102724,35.0,Eastern Counties in South Carolina and Georgia,G1300730030201,ComStock 90.1-2007,gen4_led,_1000,Electricity,3284.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0004564603399672377,0.0,0.0,0.0004564603399672377,0.00017004574360801608,0.0001257147520837473,0.00012968469162323405,0.0,3.101515265224029e-05,0.00017004574360801608,0.0001257147520837473,0.00012968469162323405,0.0,3.101515265224029e-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,5.439691472942588e-05,1.8953918685971158e-05,5.439691472942588e-05,2.0264550948305784e-05,1.4981574631043186e-05,1.545467698781297e-05,0.0,3.696112162263944e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.0264550948305784e-05,1.4981574631043186e-05,1.545467698781297e-05,0.0,3.696112162263944e-06 +102725,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,33179.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.004531412438674709,0.0,0.0,0.004531412438674709,0.0018679228873096799,0.0014814793648090063,0.001181979496949725,0.0,0.0,0.0018679228873096799,0.0014814793648090063,0.001181979496949725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005399989558031226,0.00018594992515441112,0.0005399989558031226,0.00022259646905214967,0.00017654480161922979,0.00014085402791546033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022259646905214967,0.00017654480161922979,0.00014085402791546033,0.0,0.0 +102726,85.0,Rural Climate Zone 3A,G1301750950800,ComStock 90.1-2007,gen4_led,_1000,Electricity,11425.0,,9146.0,,7.56685751697572,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.002464441644038427,0.006291491017402448,0.0,0.008755932661440877,0.000991313439377776,0.00011288723437857181,0.006845240913613982,0.0002911113623523653,0.0005153079917471653,0.000991313439377776,0.00011288723437857181,0.000553749896211533,0.0002911113623523653,0.0005153079917471653,0.0,0.006291491017402448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042036209051102974,0.0,0.0,0.00029368028095441495,0.0004926646662898428,0.0007140423714654447,0.00011813191442150992,1.3452440551255725e-05,6.598875063293865e-05,3.469088703783162e-05,6.140774165233312e-05,0.0,0.00042036209051102974,0.0,0.0,0.0,0.0,8.084116524057317e-05,9.205903204215177e-06,0.0005582263185661457,2.3740000702610797e-05,4.2023135020512085e-05 +102727,85.0,Rural Climate Zone 3A,G1300930970100,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,134509.0,,,,7.614023970037612,Education,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,571051.7977528209,0.0,0.0,0.028182016214399173,0.0,0.0,0.028182016214399173,0.01984881793242277,0.004121097833155185,0.001552096157913818,0.0007782491731502588,0.0018817551177571395,0.01984881793242277,0.004121097833155185,0.001552096157913818,0.0007782491731502588,0.0018817551177571395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033583937982852854,0.0007868116351319967,0.0033583937982852854,0.0023653434353459566,0.0004911028827640737,0.0001849601558463696,9.274237786056865e-05,0.00022424494646831663,0.0,0.0,0.0,0.0,0.0,0.0,0.0023653434353459566,0.0004911028827640737,0.0001849601558463696,9.274237786056865e-05,0.00022424494646831663 +102728,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010702,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,317642.0,,6645.0,,9.729435225087556,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.08504136724862983,0.005877743257256589,0.0,0.09091911050588643,0.0596616115921551,0.017802171778850222,0.007405506483949769,0.0006635031337029898,0.0053864097344811165,0.0596616115921551,0.017802171778850222,0.0052639452227983404,0.0006635031337029898,0.001650227738375956,0.0,0.0021415612611514288,0.00373618199610516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003927192879073129,0.0,0.0,0.010134214813001594,0.003945667916195676,0.010526934100908908,0.007109758550765862,0.0021214502868629457,0.0006272941437518036,7.906838170166124e-05,0.00019665443927049727,0.0,0.00014308764038833234,0.00024963164751898054,0.0,0.0,0.0,0.006907831038931879,0.0020611980047570253,0.0008574355633994639,7.682272434666764e-05,0.0006236574467114463 +102729,50.0,the Greater Atlanta and Macon Area,G1300630040417,ComStock 90.1-2004,gen3_t5_cfl,10001_25000,Electricity,38245.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0032174450148416125,0.0,0.0,0.0032174450148416134,0.002297307193474359,0.000684620931326926,0.0002355168900403276,0.0,0.0,0.002297307193474359,0.000684620931326926,0.0002355168900403276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038341542233260906,0.00011104164594548103,0.00038341542233260906,0.0002737647430649481,8.15846804876569e-05,2.8065998780004065e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000273764743064948,8.158468048765687e-05,2.806599878000406e-05,0.0,0.0 +102730,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,3872.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008868679517065936,0.0,0.0,0.0008868679517065936,0.00039699395394867564,0.00021032408851905877,0.000241587362392517,0.0,3.78798397726028e-05,0.00039699395394867564,0.00021032408851905877,0.000241587362392517,0.0,3.78798397726028e-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.00010568595036700082,3.0056636996181058e-05,0.00010568595036700082,4.730882791770996e-05,2.506382279057009e-05,2.8789392989089755e-05,0.0,4.514050663814825e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.730882791770996e-05,2.506382279057009e-05,2.8789392989089755e-05,0.0,4.514050663814825e-06 +102731,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000800,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,56001.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006974598518092638,0.0,0.0,0.006974598518092638,0.004863876345964388,0.0014916778419874297,0.0006190747037402576,0.0,0.0,0.004863876345964388,0.0014916778419874297,0.0006190747037402576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008311504055227023,0.0002530198736770075,0.0008311504055227023,0.0005796194271073434,0.00017776057504398626,7.377402293878212e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005796194271073434,0.00017776057504398626,7.377402293878212e-05,0.0,0.0 +102732,50.0,the Greater Atlanta and Macon Area,G1300630040408,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6160.0,,167.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011636885275120555,0.00013208319676167392,0.0,0.0012957717242737296,0.0008326948184073472,0.00023976780677025222,0.00017980517830925433,0.0,4.35039207868757e-05,0.0007006116216456733,0.00023976780677025222,0.00017980517830925433,0.0,4.35039207868757e-05,0.00013208319676167392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.823280865418136e-06,0.0,0.0,0.00013867401651420378,4.967677424694478e-05,0.00014749729737962192,8.349023410744991e-05,2.857256388590453e-05,2.1426958912713503e-05,0.0,5.184259608135833e-06,8.823280865418136e-06,0.0,0.0,0.0,0.0,0.0,9.478539541826983e-05,2.7292695800314283e-05,2.0467168220035618e-05,0.0,4.952037941002177e-06 +102733,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,54453.0,,5842.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0028029751065347277,0.0009934853414498186,0.0,0.003796460447984546,0.002068814031214601,0.0007666608278030832,0.0005750842726594126,0.0,0.0003859013163074492,0.0015580909705099801,0.0007666608278030832,0.0003876211613651944,0.0,9.060214685646983e-05,0.000510723060704621,0.00018746311129421827,0.0002952991694509794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.637887230013826e-05,0.0,0.0,0.00033402591054281216,0.00014932456345860076,0.0004004047828429504,0.00018567512566194168,9.136170367243259e-05,4.619217311948941e-05,0.0,1.0796908088948443e-05,3.4123523934208103e-05,1.2525187243755677e-05,1.973016112217448e-05,0.0,0.0,0.0,0.0002181935105765925,8.08581220525176e-05,6.065294146099465e-05,0.0,4.0700208752845644e-05 +102734,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,13932.0,,823.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030163269792725413,0.0006528069330243533,0.0,0.0036690512052231557,0.0017020288704812075,0.0010302820175705526,0.0008460106572793756,0.0,9.064695281828094e-05,0.001049221937456854,0.0010302820175705526,0.0008460106572793756,0.0,9.064695281828094e-05,0.0006528069330243533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.361573797446964e-05,0.0,0.0,0.000359445379856816,0.0001353881267543352,0.0004030611178312856,0.00012503219327840879,0.00012277518773996045,0.00010081619935715304,0.0,1.0802087642530036e-05,4.361573797446964e-05,0.0,0.0,0.0,0.0,0.0,0.0001869752207711561,0.00011318092838069351,9.29379237702588e-05,0.0,9.9579591799984e-06 +102735,46.0,the Tallahassee-Valdosta Area,G1300270960500,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,147982.0,,,,9.729435225087556,Education,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,729707.6418815667,0.0,0.0,0.0343717677571342,0.0,0.0,0.0343717677571342,0.02327517351368535,0.007157903160253796,0.0009991739337973447,0.0006682984308471948,0.002271126501297739,0.02327517351368535,0.007157903160253796,0.0009991739337973447,0.0006682984308471948,0.002271126501297739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0040960180635263395,0.0009444485115949265,0.0040960180635263395,0.0027736580736083087,0.0008529936792467239,0.00011906965362842381,7.963985047025263e-05,0.0002706458172183499,0.0,0.0,0.0,0.0,0.0,0.0,0.0027736580736083087,0.0008529936792467239,0.00011906965362842381,7.963985047025263e-05,0.0002706458172183499 +102736,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,27419.0,,2409.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023610434813011684,0.0007092061119336135,0.0,0.0030702495932347818,0.0011136951229373361,0.0008283738531875936,0.0011281499275035544,0.0,0.0,0.0004044890110037227,0.0008283738531875936,0.0011281499275035544,0.0,0.0,0.0007092061119336135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7384066348348316e-05,0.0,0.0,0.00028136147223442224,0.00012530572305965545,0.0003287455385827706,4.820225656154946e-05,9.8715880812545e-05,0.00013443967763297104,0.0,0.0,4.7384066348348316e-05,0.0,0.0,0.0,0.0,0.0,0.00011924838417494813,8.869774272231806e-05,0.00012079612561027016,0.0,0.0 +102737,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,56514.0,,5495.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,32736.412774265485,0.0,0.0,0.0027489506952878264,0.0009344964290053028,0.0,0.003683464854654549,0.001848904358521686,0.0007747636029720473,0.0007414837145866082,0.0,0.0003182954482127879,0.0015001658797506678,0.0007747636029720473,0.00040090120206881394,0.0,7.312001049629778e-05,0.00034873847877101857,0.0003405825125177943,0.00024517543771649015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.243815537883656e-05,0.0,0.0,0.0003275876802291098,0.00015110511589437275,0.00039002583560794634,0.00017877216253779613,9.232723302699534e-05,4.777470000167956e-05,0.0,8.713584662638828e-06,2.330087804322727e-05,2.2755939108869423e-05,1.638133822673988e-05,0.0,0.0,0.0,0.00019577232194311906,8.203629831460288e-05,7.851243782220043e-05,0.0,3.370290013831044e-05 +102738,50.0,the Greater Atlanta and Macon Area,G1300770170404,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,25233.0,,1337.0,,8.53126424238864,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005616670852723006,0.0010372012644200054,0.0,0.006653872117143011,0.002299518948902792,0.0008238096579021607,0.0025066034143412914,0.00031600394023180645,0.0007079361557649603,0.0019702538402477467,0.0008238096579021607,0.0025066034143412914,0.00031600394023180645,0.0,0.00032926510865504495,0.0,0.0007079361557649603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.930000028659809e-05,0.0,0.0,0.000669329719481849,0.00027066386053056286,0.0007386297197684471,0.00023479201199082549,9.817208479695193e-05,0.0002987079364566855,3.7657686237385956e-05,0.0,2.199965706455347e-05,0.0,4.7300343222044614e-05,0.0,0.0,0.0,0.0002552638534266855,9.144905192738843e-05,0.00027825178255762794,3.5078807904616605e-05,7.858622395212853e-05 +102739,85.0,Rural Climate Zone 3A,G1303030950400,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,67883.0,,2613.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0032764821386186576,0.0004443937786322035,0.0,0.003720875917250862,0.0014936588371095082,0.0005770523427770385,0.0011011263656309591,0.0,0.0005490561020947751,0.0014936588371095082,0.0005770523427770385,0.0011011263656309591,0.0,0.00010466232346257169,0.0,0.0,0.0004443937786322035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9691594273515157e-05,0.0,0.0,0.0003904524535899674,0.00012464849246851095,0.0004201440478634825,0.00017799662354381677,6.876628455607067e-05,0.00013121923849536695,0.0,1.2472419889832395e-05,0.0,0.0,2.9691594273515157e-05,0.0,0.0,0.0,0.00016865702697603318,6.515807366739047e-05,0.00012433408120935346,0.0,6.199686804086772e-05 +102740,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5188.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009148229426304793,0.0,0.0,0.0009148229426304796,0.0003275200120076574,0.0002636701510809121,0.00028037697997625215,0.0,4.317309249191848e-05,0.0003275200120076574,0.0002636701510809121,0.00028037697997625215,0.0,4.317309249191848e-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.0001090167322253832,2.851722850188402e-05,0.0001090167322253832,3.90295868016018e-05,3.1420788566542056e-05,3.341169173167427e-05,0.0,5.144809169302056e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.9029586801601784e-05,3.142078856654205e-05,3.341169173167426e-05,0.0,5.1448091693020545e-06 +102742,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12244.0,,269.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026742505222867663,0.00021354966439489175,0.0,0.0028878001866816582,0.0020257443570968563,0.00044306179402146985,0.0003542343968254537,0.0,6.475963873787772e-05,0.001812194692701965,0.00044306179402146985,0.0003542343968254537,0.0,6.475963873787772e-05,0.00021354966439489175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4269091055067054e-05,0.0,0.0,0.00031868303999571003,0.00010570010577338034,0.00033295213105077713,0.00021595423051110293,5.27984488543644e-05,4.2213133552966724e-05,0.0,7.717227077275961e-06,1.4269091055067054e-05,0.0,0.0,0.0,0.0,0.0,0.00023356044638064735,5.108330181117576e-05,4.084184835864585e-05,0.0,7.466534500308125e-06 +102743,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,51294.0,,,6931.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004234353124017543,0.0,0.0006532753767071663,0.00488762850072471,0.003677453178326364,0.0009960414463621955,0.00021413387603615034,0.0,0.0,0.0030241778016191984,0.0009960414463621955,0.00021413387603615034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006532753767071663,0.0,0.0,0.0,0.0,5.268628253809275e-05,0.0005046007547685576,0.00016354110917256212,0.0005572870373066502,0.0003603861927801377,0.00011869658738765294,2.551797460076703e-05,0.0,0.0,0.0,0.0,0.0,5.2686282538092745e-05,0.0,0.0,0.00041930293725874433,0.00011356857146477365,2.4415528583132203e-05,0.0,0.0 +102744,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970100,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,95930.0,,8021.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.00458005377094378,0.0013640853558517622,0.0,0.005944139126795543,0.002490778902650438,0.001239653679405832,0.0011297254386015046,0.0,0.001083981106137768,0.0022035647780070024,0.001239653679405832,0.0009434502615224297,0.0,0.00019338505200851595,0.0002872141246434354,0.00018627517707907475,0.0008905960541292522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.114012352253692e-05,0.0,0.0,0.0005457965710152164,0.0002389397848954971,0.0006369366945377533,0.00026259475543194264,0.00014772724542198498,0.00011242922974597366,0.0,2.3045340415315162e-05,1.9189950749874257e-05,1.2445806690424033e-05,5.9504366082238645e-05,0.0,0.0,0.0,0.0002668962565036394,0.0001328335188813075,0.00012105429756082597,0.0,0.00011615262159198038 +102745,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,74005.0,,1847.0,,4.088175128053588,Healthcare,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,153306.56730200956,0.0,0.0,0.012218927952288586,0.0006863120818511304,0.0,0.012905201285715944,0.006000425911649653,0.002039174549429629,0.004610636196216359,0.0,0.0002549646284203047,0.006000425911649653,0.002039174549429629,0.003924324114365229,0.0,0.0002549646284203047,0.0,0.0006863120818511304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.585502038457306e-05,0.0,0.0,0.0014561037945523608,0.00040969157361607673,0.001501958814936934,0.0007150580618037687,0.00024300411711838824,0.00046765340267926515,0.0,3.0383595383251517e-05,0.0,4.585502038457306e-05,0.0,0.0,0.0,0.0,0.0006983535081590323,0.00023732726998228828,0.0005366042360795518,0.0,2.967380071606158e-05 +102746,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2004,gen5_led,50001_100000,Electricity,69325.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005850758613412952,0.0,0.0,0.005850758613412952,0.002186787896742812,0.0012730969380476047,0.0023908737786225353,0.0,0.0,0.002186787896742812,0.0012730969380476047,0.0023908737786225353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006972222286281922,0.0002625035472272775,0.0006972222286281922,0.00026059477610456105,0.0001517122040157955,0.0002849152485078356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026059477610456105,0.0001517122040157955,0.0002849152485078356,0.0,0.0 +102747,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001300,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,4367.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000739318532155669,0.0,0.0,0.0007393185321556689,0.0004641520978249933,0.0001228200045028715,0.0001246395601251363,0.0,2.7706869702667985e-05,0.0004641520978249933,0.0001228200045028715,0.0001246395601251363,0.0,2.7706869702667985e-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,8.809977837623455e-05,3.372534206881301e-05,8.809977837623455e-05,5.530998503718854e-05,1.4635660687851917e-05,1.4852485290634913e-05,0.0,3.301647360559187e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.5309985037188544e-05,1.463566068785192e-05,1.4852485290634915e-05,0.0,3.3016473605591876e-06 +102748,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030700,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6446.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005684115398780877,0.0,0.0,0.0005684115398780877,0.00038018634416233955,0.0001558469387151046,3.234788340120569e-05,0.0,0.0,0.00038018634416233955,0.0001558469387151046,3.234788340120569e-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,6.773589932242294e-05,1.9437633428272647e-05,6.773589932242294e-05,4.530566697759794e-05,1.8571812515942724e-05,3.8548002980859475e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.530566697759794e-05,1.8571812515942724e-05,3.8548002980859475e-06,0.0,0.0 +102749,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,15795.0,,2521.0,,8.53126424238864,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0037081137899565454,0.0019549711522477953,0.0,0.00566308494220434,0.0015627154935823671,0.0006189084336065114,0.0026722871588487048,0.0003164891049302176,0.0004926847512365395,0.0015627154935823671,0.0006189084336065114,0.0007173160066009097,0.0003164891049302176,0.0004926847512365395,0.0,0.0019549711522477953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013062173891129392,0.0,0.0,0.000441884788479316,0.00024400376829570276,0.00057250652739061,0.00018622411405101096,7.375346005104203e-05,8.54803951022725e-05,3.771505652466402e-05,5.871176275032649e-05,0.0,0.00013062173891129392,0.0,0.0,0.0,0.0,0.00015798188260656714,6.256821533015963e-05,0.0002701534335290195,3.199529589786318e-05,4.980770002700059e-05 +102750,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,56658.0,,3660.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004727027989216267,0.001077358629080856,0.0,0.0058043866182971235,0.001960083775021681,0.0014803745389822894,0.00236395899389945,0.0,0.0,0.0008827251459408252,0.0014803745389822894,0.00236395899389945,0.0,0.0,0.001077358629080856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.19826540615757e-05,0.0,0.0,0.0005633122745255541,0.000244208188202742,0.0006352949285871298,0.00010519292690358518,0.00017641383774461074,0.00028170916710806794,0.0,0.0,7.19826540615757e-05,0.0,0.0,0.0,0.0,0.0,0.00021453279455091047,0.00016202822087355592,0.0002587372721655216,0.0,0.0 +102751,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,22214.0,,1883.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.0050227178811144005,0.0014933589234369345,0.0,0.006516076804551336,0.0033942155991874374,0.0013401854228717377,0.0016530662828275378,0.0,0.00012860949966462303,0.001900856675750503,0.0013401854228717377,0.0016530662828275378,0.0,0.00012860949966462303,0.0014933589234369345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.977837298581151e-05,0.0,0.0,0.0005985487390405976,0.0002711557213695275,0.0006983271120264091,0.0002265218539638403,0.00015970761526476384,0.00019699309468630184,0.0,1.5326175125691667e-05,9.977837298581151e-05,0.0,0.0,0.0,0.0,0.0,0.0003637576486698204,0.00014362749918481857,0.00017715890065458958,0.0,1.3783063517180503e-05 +102752,81.0,the Columbus-Albany Area,G1302150000400,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,36832.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0030696358011088275,0.0,0.0,0.0030696358011088275,0.0013655954114288808,0.0007104336961855217,0.0009936066934944253,0.0,0.0,0.0013655954114288808,0.0007104336961855217,0.0009936066934944253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003658009538849836,0.00013057922176920817,0.0003658009538849836,0.00016273464882745912,8.466063747459044e-05,0.00011840566758293404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016273464882745912,8.466063747459044e-05,0.00011840566758293404,0.0,0.0 +102753,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,120633.0,,89.0,,9.325022323477118,Office,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,699376.6742607838,0.0,0.0,0.02991450213528,7.583360761115122e-05,0.0,0.02999033574289116,0.014272715763504376,0.0034166663979303884,0.011912681975120973,0.0,0.0003883599904934715,0.014196882155893226,0.0034166663979303884,0.011912681975120973,0.0,0.0003883599904934715,7.583360761115122e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.065199591027643e-06,0.0,0.0,0.003564856732131773,0.0011184467933155124,0.0035699219317228007,0.0016918165878157844,0.00040715791140465043,0.0014196126127959485,0.0,4.628015269451934e-05,5.065199591027643e-06,0.0,0.0,0.0,0.0,0.0,0.0016989633415977234,0.00040670542710557144,0.0014180349634366409,0.0,4.6228720456887005e-05 +102754,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,34428.0,,4767.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0030359323846016074,0.001388680966294013,0.0,0.004424643724495059,0.003188438227378559,0.001023772542648863,0.00021243295446763625,0.0,0.0,0.0017997572610845465,0.001023772542648863,0.00021243295446763625,0.0,0.0,0.001388680966294013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.27842799569159e-05,0.0,0.0,0.0003617868905975727,0.0001761029154861493,0.0004545711705544886,0.00021447400693794662,0.00012200122992288164,2.531527330684846e-05,0.0,0.0,9.27842799569159e-05,0.0,0.0,0.0,0.0,0.0,0.0003275680907903049,0.0001051785210450018,2.1824558719181824e-05,0.0,0.0 +102755,50.0,the Greater Atlanta and Macon Area,G1300890022403,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,248294.0,,33374.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011550408486370558,0.0056756305334502615,0.0,0.01722603901982082,0.008692256495096626,0.0019140279760175404,0.0031709155667236635,0.0,0.0034488389819829902,0.007286504789907739,0.0019140279760175404,0.0018770956331795703,0.0,0.000472797817627128,0.0014057517051888865,0.001293819933544093,0.0029760411643558627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037921193009447855,0.0,0.0,0.0013764402693191252,0.0006753798052991514,0.0017556521994136038,0.0008683189540223107,0.00022809108317707355,0.00022368992593813547,0.0,5.634241907514305e-05,9.392398152355062e-05,8.644536519816528e-05,0.0001988413987352963,0.0,0.0,0.0,0.0008859018150327115,0.0001950748760041597,0.00032317498424725734,0.0,0.00035150052412947526 +102756,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,29878.0,,2731.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002662108519081633,0.0008039756161809199,0.0,0.003466084135262553,0.001531411354255369,0.000819964901062023,0.0011147078799451605,0.0,0.0,0.000727435738074449,0.000819964901062023,0.0011147078799451605,0.0,0.0,0.0008039756161809199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.371649033637722e-05,0.0,0.0,0.0003172390132146893,0.00013712126814949813,0.00037095550355106653,8.66872984589855e-05,9.771384382682253e-05,0.0001328378709288812,0.0,0.0,5.371649033637722e-05,0.0,0.0,0.0,0.0,0.0,0.0001638983498069614,8.775623467219227e-05,0.00011930091907191284,0.0,0.0 +102757,81.0,the Columbus-Albany Area,G1302150010302,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,11308.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0024711219491830275,0.0,0.0,0.0024711219491830275,0.001439268497211428,0.00043363318761518885,0.0005244455545809483,0.0,7.369200270172292e-05,0.001439268497211428,0.00043363318761518885,0.0005244455545809483,0.0,7.369200270172292e-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.00029447849141286747,8.686181069457804e-05,0.00029447849141286747,0.00017151464982819196,5.167517004075454e-05,6.249709197566746e-05,0.0,8.781723537347375e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017151464982819196,5.167517004075454e-05,6.249709197566746e-05,0.0,8.781723537347375e-06 +102758,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,12963.0,,139.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0014176498321254209,5.172914573573052e-05,0.0,0.0014693789778611516,0.0009130678577653589,0.00013608446428755474,0.0003843456153952892,0.0,3.584229198917658e-05,0.0009130678577653589,0.00013608446428755474,0.0003326164696595587,0.0,3.584229198917658e-05,0.0,5.172914573573052e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.456296578014758e-06,0.0,0.0,0.0001689377303373204,5.4725779599050675e-05,0.00017239402691533514,0.00010880797785132613,1.6216840019260624e-05,3.963706000151857e-05,0.0,4.271234913956742e-06,0.0,3.456296578014758e-06,0.0,0.0,0.0,0.0,0.0001071251509779003,1.596602997090417e-05,4.5093123941172684e-05,0.0,4.205175889261491e-06 +102759,50.0,the Greater Atlanta and Macon Area,G1301350050209,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,49291.0,,6054.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004391774730020162,0.0017818999208572188,0.0,0.006173674650877379,0.0030315806892996762,0.001181764669705641,0.001960329291872063,0.0,0.0,0.0012496807684424574,0.001181764669705641,0.001960329291872063,0.0,0.0,0.0017818999208572188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011905579907462214,0.0,0.0,0.0005233584620341113,0.00027826012558251445,0.0006424142611087335,0.00014892180159765354,0.0001408283844332231,0.0002336082760032347,0.0,0.0,0.00011905579907462214,0.0,0.0,0.0,0.0,0.0,0.000315457288995814,0.00012297092412951558,0.00020398604798340403,0.0,0.0 +102760,35.0,Eastern Counties in South Carolina and Georgia,G1300510010801,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,65032.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007876876662990492,0.0,0.0,0.007876876662990494,0.005365860823872113,0.0020038071021073636,0.0005072087370110176,0.0,0.0,0.005365860823872113,0.0020038071021073636,0.0005072087370110176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009386729177491513,0.0001901357977411157,0.0009386729177491513,0.0006394397743264475,0.00023879001025610712,6.044313316659692e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006394397743264474,0.00023879001025610706,6.044313316659691e-05,0.0,0.0 +102761,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,39736.0,,1843.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0035935380702169116,0.000542500170524492,0.0,0.004136038240741404,0.0018444760280982345,0.0010423110986888795,0.0012492511139542896,0.0,0.0,0.0013019758575737428,0.0010423110986888795,0.0012492511139542896,0.0,0.0,0.000542500170524492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.624667206523365e-05,0.0,0.0,0.00042823405701492007,0.00018015360573822603,0.00046448072908015375,0.0001551536098212615,0.00012420992952949988,0.00014887051766415875,0.0,0.0,3.624667206523365e-05,0.0,0.0,0.0,0.0,0.0,0.00020713627883391195,0.00011705245233916495,0.0001402919979070768,0.0,0.0 +102762,50.0,the Greater Atlanta and Macon Area,G1300590150700,ComStock 90.1-2004,gen3_t5_cfl,1001_5000,Electricity,7795.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015979006646434193,0.0,0.0,0.0015979006646434195,0.0011513651735248988,0.00021404590683732762,0.00019121875448527875,0.0,4.118812272217509e-05,0.0011513651735248988,0.00021404590683732762,0.00019121875448527875,0.0,4.118812272217509e-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.0001904140182867102,6.078369429209076e-05,0.0001904140182867102,0.0001372025646257398,2.5506805348136957e-05,2.278660508689824e-05,0.0,4.908187427887251e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001372025646257398,2.5506805348136953e-05,2.2786605086898235e-05,0.0,4.90818742788725e-06 +102763,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,129906.0,,15038.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006067170104689289,0.0025574273312284164,0.0,0.008624597435917704,0.0030516256950895485,0.0015336939931959875,0.002937956348025589,0.0,0.0011013213996065798,0.0025702286521736943,0.0015336939931959875,0.0008619260597130268,0.0,0.0011013213996065798,0.00048139704291585365,0.002076030288312562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017087228779239297,0.0,0.0,0.0007230135029701849,0.00031601572240149247,0.0008938857907625779,0.00030628942145633273,0.00018276749248350764,0.0001027141433289876,0.0,0.00013124244570135693,3.2164125664526215e-05,0.00013870816212786672,0.0,0.0,0.0,0.0,0.00031628199087952786,0.00015895782708493859,0.0003045008712457484,0.0,0.00011414510155236308 +102764,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030600,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,193552.0,,1380.0,,7.614023970037612,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1142103.5955056418,0.0,0.0,0.04055238208209254,0.0009554913809819569,0.0,0.04150787346307451,0.03165620885577775,0.0051092808754350915,0.0018577956662098579,0.0007622280941035823,0.002122432138570948,0.03165620885577775,0.0051092808754350915,0.0018577956662098579,0.0007622280941035823,0.0011669407575889913,0.0,0.0,0.0009554913809819569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.38388192201684e-05,0.0,0.0,0.004832549966002792,0.0010726356927719116,0.00489638878522296,0.0037724099837114214,0.000608863249288277,0.0002213899633665938,9.083326702707392e-05,0.00013906210261577215,0.0,0.0,6.38388192201684e-05,0.0,0.0,0.0,0.0037342579393279504,0.0006027055469678477,0.00021915094911711204,8.991463017421968e-05,0.0002503682326665216 +102765,35.0,Eastern Counties in South Carolina and Georgia,G1300510003602,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,54676.0,,2189.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00465070293835388,0.0006444510426454607,0.0,0.005295123291393042,0.001478655921029618,0.001587051610473104,0.002229415759890321,0.0,0.0,0.0008342048783841571,0.001587051610473104,0.002229415759890321,0.0,0.0,0.0006444510426454607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.305804920612805e-05,0.0,0.0,0.0005542135819147837,0.00019295415275552864,0.0005972716311209117,9.941027836615844e-05,0.00018912529339817346,0.00026567435294059356,0.0,0.0,4.305804920612805e-05,0.0,0.0,0.0,0.0,0.0,0.00016678728430280087,0.0001790139439436861,0.0002514704028744249,0.0,0.0 +102766,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,Electricity,100885.0,,7.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,485688.7310849239,0.0,0.0,0.011032944153630448,1.9641348030529778e-06,0.0,0.011034908288433502,0.002304574605713395,0.004648217080243765,0.00408211660247634,0.0,0.0,0.002302610470910342,0.004648217080243765,0.00408211660247634,0.0,0.0,1.9641348030529778e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3093251979517497e-07,0.0,0.0,0.0013147750971995195,0.0003666090124353645,0.0013149060297193147,0.0002743977367734241,0.0005539192420792766,0.0004864581183468187,0.0,0.0,1.3093251979517497e-07,0.0,0.0,0.0,0.0,0.0,0.0002746102609812203,0.00055387580091293,0.00048641996782516423,0.0,0.0 +102767,50.0,the Greater Atlanta and Macon Area,G1301210001500,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,166820.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.014695233385575334,0.0,0.0,0.014695233385575334,0.012316707187204427,0.001587111691420846,0.0007913841333506237,0.0,0.0,0.012316707187204427,0.001587111691420846,0.0007913841333506237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017512015541097938,0.0005800451497137347,0.0017512015541097938,0.0014677573470129144,0.0001891329241011026,9.430766343471625e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014677573470129144,0.0001891329241011026,9.430766343471625e-05,0.0,0.0 +102768,50.0,the Greater Atlanta and Macon Area,G1301210009102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,117738.0,,254.0,,9.325022323477118,Office,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,699376.6742607838,0.0,0.0,0.03021156129050271,0.00021495027238965005,0.0,0.030426511562892358,0.01992877157407315,0.004914335956171597,0.0050843870762693295,0.0,0.0004990169563782749,0.019713821301683504,0.004914335956171597,0.0050843870762693295,0.0,0.0004990169563782749,0.00021495027238965005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4361779957206624e-05,0.0,0.0,0.003600252363350243,0.0012012859095167467,0.0036146141433074496,0.002349257327338524,0.0005856317543597386,0.0006058964120229186,0.0,5.946686962906162e-05,1.4361779957206624e-05,0.0,0.0,0.0,0.0,0.0,0.0023675017571925887,0.000583814158761669,0.0006040159220338074,0.0,5.928230531938389e-05 +102769,50.0,the Greater Atlanta and Macon Area,G1301210011621,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,109676.0,,,,9.325022323477118,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.02814284168706844,0.0,0.0,0.028142841687068435,0.01826741455511417,0.004826570487223028,0.004476480837167352,0.0,0.0005723758075638874,0.01826741455511417,0.004826570487223028,0.004476480837167352,0.0,0.0005723758075638874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033537326180497584,0.0010047892512668568,0.0033537326180497584,0.0021768954507914518,0.0005751738597084914,0.0005334542959313605,0.0,6.820901161845464e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0021768954507914518,0.0005751738597084915,0.0005334542959313606,0.0,6.820901161845465e-05 +102770,50.0,the Greater Atlanta and Macon Area,G1300670030409,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,9122.0,,644.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021888427065107703,0.000510633473266484,0.0,0.002699476179777255,0.0012736889355853343,0.0004218887831442072,0.000937815509130007,0.0,6.608295191770663e-05,0.0008291384142365569,0.0004218887831442072,0.000937815509130007,0.0,0.0,0.00044455052134877735,0.0,6.608295191770663e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.41171361211074e-05,0.0,0.0,0.00026084008990713927,0.00011857236133807486,0.0002949572260282467,9.880679770712533e-05,5.02756583644934e-05,0.00011175763383552063,0.0,0.0,2.9701912317938496e-05,0.0,4.415223803168904e-06,0.0,0.0,0.0,0.00013916913143279512,4.609751554796675e-05,0.00010247005073483532,0.0,7.220528312649565e-06 +102771,50.0,the Greater Atlanta and Macon Area,G1300450910104,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,119161.0,,3520.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010617069298690277,0.0010359890397915528,0.0,0.011653058338481832,0.004721166274413405,0.0025268594241276564,0.004405001950334471,0.0,0.0,0.003685177234621852,0.0025268594241276564,0.004405001950334471,0.0,0.0,0.0010359890397915528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.92191101138279e-05,0.0,0.0,0.0012652154735336486,0.00045258611796957036,0.0013344345836474763,0.0004391553948444775,0.0003011209169789464,0.0005249355044896046,0.0,0.0,6.92191101138279e-05,0.0,0.0,0.0,0.0,0.0,0.0005406381199450974,0.0002893599693426737,0.0005044329799799763,0.0,0.0 +102772,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,65426.0,,18423.0,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.02091708614302251,0.016295065216778235,0.0,0.037212151359800744,0.027312075971083837,0.0050417938608677635,0.0012837563758553608,0.0006220975872078344,0.002952335347533178,0.013044591491029385,0.0050417938608677635,0.0012837563758553608,0.0006220975872078344,0.000924846828062166,0.01426748448005445,0.0,0.0020274885194710122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010887401606544153,0.0,0.0,0.002492647274930029,0.0016879467057720485,0.0035813874355844445,0.0015544978497655773,0.0006008204795887979,0.000152982676940275,7.413412388758673e-05,0.0001102121447477924,0.0009532691731085975,0.0,0.0001354648261328216,0.0,0.0,0.0,0.0026285802392020377,0.0004852344335464748,0.00012355181807108585,5.987217618759751e-05,0.0002841398933658367 +102773,50.0,the Greater Atlanta and Macon Area,G1300210011900,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,6240.0,,458.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011752675178355585,0.0003634975890842561,0.0,0.0015387651069198147,0.0009212740943821454,0.00036291863956808106,0.0002136323714686311,0.0,4.0940001500957166e-05,0.0005987165067988464,0.00036291863956808106,0.0002136323714686311,0.0,0.0,0.0003225575875832989,0.0,4.0940001500957166e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.428799588476394e-05,0.0,0.0,0.00014005427248427798,6.91027726060574e-05,0.0001643422683690419,7.134784507485491e-05,4.324828625341392e-05,2.545814115600915e-05,0.0,0.0,2.1552487815831484e-05,0.0,2.735508068932457e-06,0.0,0.0,0.0,9.839336347018316e-05,3.876021895207503e-05,2.2816236452417914e-05,0.0,4.3724494943658005e-06 +102774,50.0,the Greater Atlanta and Macon Area,G1301210002800,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,245073.0,,11936.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011571667189713203,0.0020298072360904846,0.0,0.013601474425803688,0.006029759042092977,0.00418381565392844,0.0020794345177052127,0.0,0.0013084829424384768,0.005505525445986276,0.00418381565392844,0.0016125409104309626,0.0,0.0002698029097289435,0.0005242335961067011,0.0004668936072742503,0.0010386800327095332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013561984002406096,0.0,0.0,0.0013789722979486772,0.0004894010152265226,0.001514592137972738,0.0006560823908257229,0.0004985768940555176,0.0001921632560232964,0.0,3.215186993563905e-05,3.5026220803195355e-05,3.119509833295712e-05,6.939852088790849e-05,0.0,0.0,0.0,0.0006714437974237797,0.0004658887777743886,0.00023155542357749563,0.0,0.00014570611356140892 +102775,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,47253.0,,3259.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.003976605736024838,0.0009593570928661889,0.0,0.0049359628288910265,0.00166098287204427,0.001260851785134821,0.002014158861318234,0.0,0.0,0.0007016257791780809,0.001260851785134821,0.002014158861318234,0.0,0.0,0.0009593570928661889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.40991202060021e-05,0.0,0.0,0.0004738836516784994,0.00018834869741088798,0.0005379827718845015,8.361125251532974e-05,0.00015025302678417493,0.00024002302959413407,0.0,0.0,6.40991202060021e-05,0.0,0.0,0.0,0.0,0.0,0.00018103462293613326,0.00013742334815247217,0.00021952814573183603,0.0,0.0 +102776,35.0,Eastern Counties in South Carolina and Georgia,G1301030030202,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,132706.0,,3169.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006214367565198567,0.000538967526446765,0.0,0.0067533528220067515,0.0030525654042448114,0.0017267598986989428,0.0009664288099228179,0.0,0.0010075809787787608,0.0030525654042448114,0.0017267598986989428,0.0004274612834760531,0.0,0.0010075809787787608,0.0,0.000538967526446765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.601124587627528e-05,0.0,0.0,0.0007405548415915277,0.0002488158218943985,0.000776566087467803,0.00036376864832520764,0.00020577482580992745,5.093978103965028e-05,0.0,0.00012007158641674254,0.0,3.601124587627528e-05,0.0,0.0,0.0,0.0,0.00035101361282195953,0.00019855962125350324,0.00011112936929525307,0.0,0.00011586144528795647 +102777,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3635.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.00044132494547294445,0.0,0.0,0.0004413249454729444,0.00023993322091773084,0.00012918844918079819,4.606784007279424e-05,0.0,2.6052728227881836e-05,0.00023993322091773084,0.00012918844918079819,4.606784007279424e-05,0.0,2.6052728227881836e-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,5.258990487991567e-05,1.7645639741973526e-05,5.258990487991567e-05,2.8591325722757747e-05,1.5394571106152223e-05,5.48961338420409e-06,0.0,3.1045389874762804e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.859132572275775e-05,1.5394571106152223e-05,5.489613384204091e-06,0.0,3.104538987476281e-06 +102778,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,20490.0,,2479.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0063663770010831885,0.0019662779710782944,0.0,0.008332654972161482,0.004209872760404487,0.0014510956087561487,0.0024846032022025344,0.0,0.00018708340079831337,0.0022435947893261923,0.0014510956087561487,0.0024846032022025344,0.0,0.00018708340079831337,0.0019662779710782944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013137495602729674,0.0,0.0,0.0007586703544376307,0.00034831731715126186,0.0008900453104649275,0.00026736538752620474,0.00017292460368442003,0.00029608595151232045,0.0,2.2294411714685555e-05,0.00013137495602729674,0.0,0.0,0.0,0.0,0.0,0.00044967390592437923,0.00015499751830893763,0.00026539073511078914,0.0,1.998315112082171e-05 +102779,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,31301.0,,2993.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028675411493187114,0.0008718437982612282,0.0,0.0037394153211793785,0.0025554827886952493,0.0009185887677959283,0.00026531339108876216,0.0,0.0,0.0016836389904340211,0.0009185887677959283,0.00026531339108876216,0.0,0.0,0.0008718437982612282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.825226968983964e-05,0.0,0.0,0.000341720128808076,0.00013871039016134277,0.0003999723984979157,0.00020063646961582544,0.00010946670185620697,3.161695733604365e-05,0.0,0.0,5.825226968983964e-05,0.0,0.0,0.0,0.0,0.0,0.00027333753876587655,9.8253368810797e-05,2.8378242124204338e-05,0.0,0.0 +102780,85.0,Rural Climate Zone 3A,G1302770960600,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,35977.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003172552834872616,0.0,0.0,0.0031725528348726154,0.0016382000856751445,0.001349438275820438,0.0001849144733770331,0.0,0.0,0.0016382000856751445,0.001349438275820438,0.0001849144733770331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003780653860926194,0.00010984091344591737,0.0003780653860926194,0.00019522030999133972,0.00016080926916279303,2.2035806938486627e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019522030999133974,0.00016080926916279306,2.203580693848663e-05,0.0,0.0 +102781,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,168350.0,,3283.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.014521186184639942,0.0009665077711335536,0.0,0.015487693955773495,0.006863914586119013,0.004487863887338269,0.0041359154823162134,0.0,0.0,0.00589740681498546,0.004487863887338269,0.0041359154823162134,0.0,0.0,0.0009665077711335536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.457652108702126e-05,0.0,0.0,0.001730463155464622,0.0005802331830141354,0.0017950396765516433,0.0007027831663582068,0.0005348105178896353,0.00049286947121678,0.0,0.0,6.457652108702126e-05,0.0,0.0,0.0,0.0,0.0,0.0007955347680377016,0.000520148045521807,0.0004793568629921348,0.0,0.0 +102782,50.0,the Greater Atlanta and Macon Area,G1301390001501,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,250027.0,,2435.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011395711082980597,0.0004140925909653331,0.0,0.01180978594358451,0.006185857144035123,0.002162022541199819,0.0016535335060341245,0.0,0.0018083727523154453,0.006185857144035123,0.002162022541199819,0.0012394409150687912,0.0,0.0018083727523154453,0.0,0.0004140925909653331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.766695756736981e-05,0.0,0.0,0.0013580041376749365,0.00034246758857202244,0.001385671095242306,0.0007371562454941246,0.0002576439096530606,0.00014770169924550145,0.0,0.00021550017039047894,0.0,2.766695756736981e-05,0.0,0.0,0.0,0.0,0.0007258017617536891,0.00025367539741313926,0.00019401313413058472,0.0,0.00021218080194489302 +102783,50.0,the Greater Atlanta and Macon Area,G1301350050540,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,10201.0,,979.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0024493699887895896,0.0007768675436333146,0.0,0.003226320239496643,0.0017446230134569507,0.0003799562967583783,0.0010348309066262145,0.0,6.674460850762109e-05,0.0009677554698236362,0.0003799562967583783,0.0010348309066262145,0.0,6.674460850762109e-05,0.0007768675436333146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1907344096576024e-05,0.0,0.0,0.0002918913682079395,0.0001314266004735301,0.00034379871230451553,0.00011532739825767685,4.527938360787689e-05,0.0001233207766002951,0.0,7.953953541914812e-06,5.1907344096576024e-05,0.0,0.0,0.0,0.0,0.0,0.00018590812472381887,4.0488381766437096e-05,0.00011027223175047037,0.0,7.112347428279219e-06 +102784,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,71435.0,,5642.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005955072585218844,0.001660768044800186,0.0,0.007615871319625328,0.003041278604889751,0.0018336732866814436,0.002740888738447836,0.0,0.0,0.0013805105600895643,0.0018336732866814436,0.002740888738447836,0.0,0.0,0.001660768044800186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011096333052302171,0.0,0.0,0.0007096556733670722,0.00034061367368406077,0.000820619003890094,0.0001645130495205729,0.0002185156658249719,0.0003266269580215274,0.0,0.0,0.00011096333052302171,0.0,0.0,0.0,0.0,0.0,0.00032770131145278626,0.00019758043207726214,0.00029533395351922685,0.0,0.0 +102785,50.0,the Greater Atlanta and Macon Area,G1300670031110,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12242.0,,656.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002983823099292994,0.000520062079672765,0.0,0.003503885178965759,0.00207313551034948,0.0004446332284225167,0.0009175522760638766,0.0,6.856416412988585e-05,0.0015530734306767149,0.0004446332284225167,0.0009175522760638766,0.0,6.856416412988585e-05,0.000520062079672765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.474811704659346e-05,0.0,0.0,0.00035557784033503624,0.00014604851049375796,0.0003903259573816297,0.0001850774921920146,5.2986292364696476e-05,0.00010934336448920066,0.0,8.170691289124512e-06,3.474811704659346e-05,0.0,0.0,0.0,0.0,0.0,0.00023094324200939291,4.9531272203083706e-05,0.00010221352935658682,0.0,7.637913812566293e-06 +102786,50.0,the Greater Atlanta and Macon Area,G1300570090602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,20794.0,,2148.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.00198027753596557,0.0006324207169767611,0.0,0.002612728942548629,0.001616268115668517,0.00046365857194569364,0.0005327408757218226,0.0,0.0,0.0009838473986917558,0.00046365857194569364,0.0005327408757218226,0.0,0.0,0.0006324207169767611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2254846631115e-05,0.0,0.0,0.00023598759061124858,0.00011395683037394393,0.0002782424372423635,0.00011724405944604354,5.525370422705178e-05,6.348616969005771e-05,0.0,0.0,4.2254846631115e-05,0.0,0.0,0.0,0.0,0.0,0.00017212439163400139,4.937729628418291e-05,5.673421274802298e-05,0.0,0.0 +102787,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,131176.0,,13600.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011687645524779341,0.004003336383110136,0.0,0.01569101259749578,0.0072916049394838,0.00334854294314235,0.0050508340252633285,0.0,0.0,0.0032882685563736624,0.00334854294314235,0.0050508340252633285,0.0,0.0,0.004003336383110136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002674799636671034,0.0,0.0,0.001392795923508565,0.000691664933664585,0.0016602758871756683,0.00039185711365121996,0.0003990399050873071,0.0006018989047700379,0.0,0.0,0.0002674799636671034,0.0,0.0,0.0,0.0,0.0,0.0007715292932572134,0.00035431142962429095,0.0005344319170076672,0.0,0.0 +102788,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000100,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,106660.0,,14748.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009357322339382175,0.004341044810810058,0.0,0.013698336460585936,0.005982785299705669,0.002987694552293961,0.0047279179877989,0.0,0.0,0.0016417404888956107,0.002987694552293961,0.0047279179877989,0.0,0.0,0.004341044810810058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002900426049077175,0.0,0.0,0.001115092995885803,0.000594598369193818,0.0014051356007935205,0.00019564286168969385,0.0003560374590375749,0.0005634163323762495,0.0,0.0,0.0002900426049077175,0.0,0.0,0.0,0.0,0.0,0.0006136967536685094,0.00030646903671874997,0.00048497610650776314,0.0,0.0 +102789,50.0,the Greater Atlanta and Macon Area,G1300770170402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,58403.0,,6039.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002989994958793445,0.0010269602638108782,0.0,0.004016955222604323,0.0014813007751997317,0.000919709307580979,0.0010783073904833513,0.0,0.000537620018978841,0.0013374543529988431,0.000919709307580979,0.0006378674824478196,0.0,9.494608540438275e-05,0.0001438464222008884,0.0004404399080355316,0.0004426739335744583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.861568608358923e-05,0.0,0.0,0.00035631177631898826,0.00016065046210172906,0.00042492746240257746,0.00015938178586591458,0.00010959993632013471,7.601340432320262e-05,0.0,1.131453691768818e-05,9.611005700802118e-06,2.942770770536489e-05,2.9576972677422218e-05,0.0,0.0,0.0,0.00015669713615888974,9.729004197488723e-05,0.00011406709752442002,0.0,5.687131116522459e-05 +102790,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,31074.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,100799.30806909183,0.0,0.0,0.004996705907959407,0.0,0.0,0.004996705907959407,0.003406604227814903,0.0007192199249544627,0.0008204915934523019,0.0,5.039016173773868e-05,0.003406604227814903,0.0007192199249544627,0.0008204915934523019,0.0,5.039016173773868e-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.0005954478588821627,0.00021025323395223037,0.0005954478588821627,0.0004059584916294789,8.57080589228474e-05,9.777640940879566e-05,0.0,6.004898921040547e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0004059584916294789,8.57080589228474e-05,9.777640940879566e-05,0.0,6.004898921040547e-06 +102791,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,26229.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0030145189969979927,0.0,0.0,0.0030145189969979927,0.0016231651539534574,0.0010542980100838033,0.00033705583296073197,0.0,0.0,0.0016231651539534574,0.0010542980100838033,0.00033705583296073197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035923485959909947,0.00010077055737344566,0.00035923485959909947,0.00019342970031613612,0.00012563881601185254,4.0166343271110824e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019342970031613612,0.00012563881601185254,4.0166343271110824e-05,0.0,0.0 +102792,50.0,the Greater Atlanta and Macon Area,G1300570091006,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,50233.0,,3633.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005211380697131707,0.0010584288196073377,0.0,0.006269809516739045,0.003685593302975682,0.0019295436514820598,0.0006547029358807405,0.0,0.0,0.0026271644833683445,0.0019295436514820598,0.0006547029358807405,0.0,0.0,0.0010584288196073377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.071822076208474e-05,0.0,0.0,0.0006210312909731676,0.00021157512426355814,0.0006917495117352523,0.0003130746812650029,0.0002299404043785402,7.801982489932522e-05,0.0,0.0,7.071822076208474e-05,0.0,0.0,0.0,0.0,0.0,0.0004066323483961525,0.00021288699046136022,7.223352400388214e-05,0.0,0.0 +102793,50.0,the Greater Atlanta and Macon Area,G1301210011800,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,57484.0,,3661.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,70149.4559448546,0.0,0.0,0.0029590022870311927,0.000622583910903734,0.0,0.003581586197934926,0.002124185949929426,0.0010975625629855287,0.00030776361352927655,0.0,5.207407149069508e-05,0.0015016020390256923,0.0010975625629855287,0.00030776361352927655,0.0,5.207407149069508e-05,0.000622583910903734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1596981439537624e-05,0.0,0.0,0.00035261918549650225,0.00011960200950075503,0.0003942161669360399,0.00017894331824676446,0.000130794632598853,3.6675657603846184e-05,0.0,6.205577047038612e-06,4.1596981439537624e-05,0.0,0.0,0.0,0.0,0.0,0.0002338037943979657,0.00012080594536636426,3.3874765353364955e-05,0.0,5.73166181834502e-06 +102794,50.0,the Greater Atlanta and Macon Area,G1301210011423,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,197863.0,,27139.0,,9.729435225087556,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.05803157943213645,0.02400442754861561,0.0,0.0820359147634993,0.06513387558896805,0.008428288034457047,0.002416921977932128,0.000653082584139621,0.005403746578002473,0.044883427966242805,0.008428288034457047,0.002416921977932128,0.000653082584139621,0.0016498588693648634,0.020250447622725223,0.0,0.0037538877086376096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001603833089362463,0.0,0.0,0.006915507104257432,0.0030194228582129594,0.008519340193619895,0.005348668225150729,0.0010043822061947592,0.0002880197518727126,7.782654365914573e-05,0.0001966103773800871,0.001353014476431505,0.0,0.00025081245152256326,0.0,0.0,0.0,0.006764081876468901,0.0008752685116312428,0.00025099470897351357,6.782191342479388e-05,0.0005611731831214448 +102795,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000102,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,118416.0,,2360.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006095503222238533,0.000401273539658635,0.0,0.006496794492258588,0.002481647766519111,0.0016378066754545375,0.0013637307486233615,0.0,0.0010136093016615787,0.002481647766519111,0.0016378066754545375,0.0009624572089647264,0.0,0.0010136093016615787,0.0,0.000401273539658635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6811337408625678e-05,0.0,0.0,0.0007263898423406648,0.00020432943409919076,0.0007532011797492904,0.0002957333732988941,0.0001951743915789459,0.0001146942450508257,0.0,0.00012078994530636854,0.0,2.6811337408625678e-05,0.0,0.0,0.0,0.0,0.00028770804243410383,0.00018987793466817277,0.00015810313993269148,0.0,0.00011751206271432239 +102796,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,58541.0,,2832.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.008976266108921839,0.0010524071896497685,0.0,0.010028673298571607,0.003997093654209201,0.0015858954881438044,0.00412693962226945,0.0,0.00031878328237292506,0.0035319963236728905,0.0015858954881438044,0.0035396297631559905,0.0,0.00031878328237292506,0.00046509733053630973,0.0005873098591134588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.031638338063919e-05,0.0,0.0,0.0010696837003101192,0.00035890021053708174,0.0011400000836907585,0.00042090094602174785,0.00018898799717809915,0.000421810607755624,0.0,3.7988766926901424e-05,3.107538842849088e-05,3.924099495214831e-05,0.0,0.0,0.0,0.0,0.00045436589314035207,0.00018027519048469126,0.00046912601245510476,0.0,3.623739230154307e-05 +102797,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,39747.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0037984008512874927,0.0,0.0,0.003798400851287492,0.002597732465513163,0.0009381189922344028,0.00026254939353992677,0.0,0.0,0.002597732465513163,0.0009381189922344028,0.00026254939353992677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045264798459975023,0.00014042999749079807,0.00045264798459975023,0.0003095666863715315,0.0001117938015956682,3.128749663255054e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030956668637153155,0.00011179380159566823,3.128749663255055e-05,0.0,0.0 +102798,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,29989.0,,2639.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002683560553883727,0.0007767539353948573,0.0,0.003460314489278584,0.0012003318815157512,0.0012663759142684076,0.0009936066934944253,0.0,0.0,0.00042357794612089383,0.0012663759142684076,0.0009936066934944253,0.0,0.0,0.0007767539353948573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.189815148680356e-05,0.0,0.0,0.0003197960134065911,0.00015259051406469397,0.00037169416489339467,5.0477168603620355e-05,0.0001509121783263143,0.00011840666647665646,0.0,0.0,5.189815148680356e-05,0.0,0.0,0.0,0.0,0.0,0.0001289352044958001,0.0001360294098566858,0.00010672955054090876,0.0,0.0 +102799,81.0,the Columbus-Albany Area,G1302150000800,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7653.0,,709.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,9613.75315558068,0.0,0.0,0.000588670730703068,0.00020660122337558788,0.0,0.0007952719540786559,0.00048181640788105715,0.00027895113723631275,3.450440896128607e-05,0.0,0.0,0.00027521518450546927,0.00027895113723631275,3.450440896128607e-05,0.0,0.0,0.00020660122337558788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.380482657933745e-05,0.0,0.0,7.015039463877948e-05,3.689185985859942e-05,8.395522121811694e-05,3.2796693969453635e-05,3.324189795998921e-05,4.111802709336644e-06,0.0,0.0,1.380482657933745e-05,0.0,0.0,0.0,0.0,0.0,5.086436520578196e-05,2.9448296668341524e-05,3.642559343993463e-06,0.0,0.0 +102800,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,83348.0,,6133.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006763866485193516,0.0017866966133263129,0.0,0.00855056309851983,0.005036519885168569,0.002697661607663366,0.0008163816056878935,0.0,0.0,0.0032498232718422564,0.002697661607663366,0.0008163816056878935,0.0,0.0,0.0017866966133263129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001193772172761904,0.0,0.0,0.0008060363195484089,0.0003226179617114958,0.0009254135368245992,0.0003872748811574977,0.00032147488990031607,9.728654849059511e-05,0.0,0.0,0.0001193772172761904,0.0,0.0,0.0,0.0,0.0,0.0005450943553680229,0.0002919635281021253,8.835565335445104e-05,0.0,0.0 +102801,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030402,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,19398.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004657814271776576,0.0,0.0,0.004657814271776577,0.003359726749438146,0.0004068360957236533,0.0008176421309867933,0.0,7.360929562798359e-05,0.003359726749438146,0.0004068360957236533,0.0008176421309867933,0.0,7.360929562798359e-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.0005550640102674686,0.00020417654923765121,0.0005550640102674686,0.00040037307074391586,4.848198353082868e-05,9.743705817966503e-05,0.0,8.771897813059059e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0004003730707439158,4.8481983530828665e-05,9.743705817966502e-05,0.0,8.771897813059057e-06 +102802,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,8803.0,,1641.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0021018348649370195,0.0013018093406566987,0.0,0.0034036442055937186,0.0023644298240593207,0.00043669334934354323,0.0005343704034296653,0.0,6.798521461371071e-05,0.001062620483402622,0.00043669334934354323,0.0005343704034296653,0.0,6.798521461371071e-05,0.0013018093406566987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.69801084366411e-05,0.0,0.0,0.0002504677251112065,0.00014106480383572126,0.0003374478335478476,0.0001266284709490726,5.2039097650303805e-05,6.367890339367667e-05,0.0,8.101541338740479e-06,8.69801084366411e-05,0.0,0.0,0.0,0.0,0.0,0.00023441689950831935,4.3295131852662873e-05,5.297913767046493e-05,0.0,6.740264845244106e-06 +102803,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,79166.0,,10772.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.007544886260258741,0.003170850122678651,0.0,0.010715736382937392,0.006395407056378282,0.0017949123139274447,0.0025254170126316642,0.0,0.0,0.0032245569336996315,0.0017949123139274447,0.0025254170126316642,0.0,0.0,0.003170850122678651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021185833601811718,0.0,0.0,0.0008991100242616031,0.00046719191271581064,0.00111096836027972,0.00038426443592168497,0.00021389635290107223,0.00030094923543884584,0.0,0.0,0.00021185833601811718,0.0,0.0,0.0,0.0,0.0,0.0006630524153299753,0.00018608994463740553,0.0002618260003123391,0.0,0.0 +102804,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,25154.0,,1508.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,56080.226740887294,0.0,0.0,0.0034094061632882044,0.00043920224786989136,0.0,0.0038486084111580957,0.0025719452795905113,0.0010392934519615543,0.0002373696796060305,0.0,0.0,0.00213274303172062,0.0010392934519615543,0.0002373696796060305,0.0,0.0,0.00043920224786989136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9344996807998837e-05,0.0,0.0,0.0004062913773241834,0.00016607358185292333,0.0004356363741321822,0.00025415426098737796,0.00012385029762315553,2.8286818713649948e-05,0.0,0.0,2.9344996807998837e-05,0.0,0.0,0.0,0.0,0.0,0.0002911267648895564,0.00011764097115185882,2.6868638090767064e-05,0.0,0.0 +102806,50.0,the Greater Atlanta and Macon Area,G1301210006900,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,52281.0,,4203.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0044715063271815935,0.0012371900986792922,0.0,0.005708696425860885,0.001955081369195156,0.0013079296411954973,0.002445685415470233,0.0,0.0,0.0007178912705158636,0.0013079296411954973,0.002445685415470233,0.0,0.0,0.0012371900986792922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.266207852518083e-05,0.0,0.0,0.0005328611622982832,0.0002273230765361869,0.000615523240823464,8.554977871450053e-05,0.00015586356315212824,0.00029144782043165454,0.0,0.0,8.266207852518083e-05,0.0,0.0,0.0,0.0,0.0,0.00021080084325189922,0.00014102362982041348,0.0002636987677511514,0.0,0.0 +102807,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302050090300,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,134531.0,,839.0,,7.614023970037612,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,571051.7977528209,0.0,0.0,0.023393301253943077,0.0005806558649079173,0.0,0.023973957118850992,0.01797427951693891,0.0031150895362602854,0.0008116625046755342,0.0007760841624682755,0.0012967692314852556,0.01797427951693891,0.0031150895362602854,0.0008116625046755342,0.0007760841624682755,0.0007161133665773384,0.0,0.0,0.0005806558649079173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.879775934343202e-05,0.0,0.0,0.0027877340048570835,0.0007162555992015448,0.0028265317642005156,0.002141959772083508,0.0003712191338083818,9.672423486488754e-05,9.248443333662314e-05,8.533783076058316e-05,0.0,0.0,3.879775934343202e-05,0.0,0.0,0.0,0.0021191692193900727,0.00036726934476932717,9.569508445779273e-05,9.150039461715151e-05,0.0001528892124675093 +102808,85.0,Rural Climate Zone 3A,G1302930010500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,50194.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,100799.30806909183,0.0,0.0,0.007540890433747162,0.0,0.0,0.007540890433747162,0.005948113652925357,0.0008802173106149084,0.0006636979374276156,0.0,4.886153277928073e-05,0.005948113652925357,0.0008802173106149084,0.0006636979374276156,0.0,4.886153277928073e-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.0008986327179762544,0.00026774451360144256,0.0008986327179762544,0.0007088247184761043,0.00010489372325418742,7.909154584141642e-05,0.0,5.822730404546161e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0007088247184761043,0.00010489372325418742,7.909154584141642e-05,0.0,5.822730404546161e-06 +102809,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,102860.0,,8557.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004706293944254556,0.001455237143912254,0.0,0.006161531088166809,0.002785670273788756,0.0015302897638033374,0.0006272647263186281,0.0,0.0012183063242560883,0.002352730308633907,0.0015302897638033374,0.0006272647263186281,0.0,0.00019600914549868374,0.0004329399651548493,0.0,0.0010222971787574044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.723048495216351e-05,0.0,0.0,0.0005608401185980774,0.00021904385086397307,0.0006580706035502409,0.00028037040630120096,0.00018236172725008746,7.474994712780353e-05,0.0,2.3358037918985466e-05,2.8926531282737077e-05,0.0,6.830395366942643e-05,0.0,0.0,0.0,0.0002975182129462466,0.00016343968634789993,6.699381551884512e-05,0.0,0.00013011888873724927 +102810,35.0,Eastern Counties in South Carolina and Georgia,G1302450000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,20545.0,,6657.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004655721306736621,0.0051627992773593595,0.0,0.00981852058409598,0.003291357314021353,0.0007222485143680898,0.004578175815773904,0.0004251659973743189,0.000801492081775247,0.002581642221028885,0.0007222485143680898,0.0009266645739653279,0.0004251659973743189,0.0,0.000709715092992468,0.0036515112418085763,0.000801492081775247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003449456903871981,0.0,0.0,0.0005548155830526429,0.0005036455087401359,0.0008997612734398411,0.00030765057436340436,8.606931218761324e-05,0.00011042927873601071,5.066641776561469e-05,0.0,4.741868695226847e-05,0.00024397095424296913,5.3550646584355136e-05,0.0,0.0,0.0,0.00030161731829602876,6.618626884385144e-05,0.00041954032348871264,3.8961867619902696e-05,7.344808517468154e-05 +102811,85.0,Rural Climate Zone 3A,G1301750950201,ComStock 90.1-2007,gen5_led,_1000,NaturalGas,11326.0,,2130.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0024405588936902284,0.0014651672878779182,0.0,0.0039057261815681472,0.0009632709307106722,0.00013497698545138,0.0018595554084927634,0.00037810768719430144,0.0005697434497480141,0.0009632709307106722,0.00013497698545138,0.000882514243347094,0.00037810768719430144,8.161732701576538e-05,0.0,0.0009770411651456692,0.00048812612273224876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.789517160763785e-05,0.0,0.0,0.0002908340222114837,0.00018425830099908075,0.0003887291938191215,0.0001147900835264756,1.6084799136090167e-05,0.00010516655333134406,4.50579495459444e-05,9.726090019591185e-06,0.0,6.528101829804934e-05,3.2614153309588484e-05,0.0,0.0,0.0,9.587244853253187e-05,1.3433992118101777e-05,0.0001850778680330196,3.763230948280157e-05,5.6705437505951376e-05 +102812,85.0,Rural Climate Zone 3A,G1302770960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,275669.0,,48883.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,283757.1568865895,0.0,0.0,0.05456311954925657,0.033626482170437365,0.0,0.08818952999972293,0.04558241649865277,0.005203212177211566,0.01702101384125091,0.0003861403239480499,0.019996818878630637,0.03442687704697159,0.005203212177211566,0.012229904617495043,0.0003861403239480499,0.0023169853836303308,0.011155539451681188,0.0047911092237558645,0.017679833495000307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002246723318265702,0.0,0.0,0.006502180067654129,0.004203822712231206,0.00874890338591983,0.004102583495511449,0.0006200566020771306,0.0014574137749107296,4.6015585956846696e-05,0.0002761106091979735,0.0007453473868271461,0.00032011367584663947,0.001181262255591916,0.0,0.0,0.0,0.004522035189945157,0.0005161882667365228,0.0016885814634455614,3.830731820024313e-05,0.0019837982626217283 +102813,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,37061.0,,11683.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007384646815622392,0.008036796512067342,0.0,0.015421443327689736,0.0045264625307082605,0.0006253981472561284,0.005752085115394037,0.00036907097084633447,0.004148354843513958,0.0045264625307082605,0.0006253981472561284,0.0014067872314712107,0.00036907097084633447,0.00045685621536944245,0.0,0.004345297883922826,0.003691498628144516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005369726399473499,0.0,0.0,0.0008800137353209124,0.0007589573199656949,0.0014169863752682623,0.0005394095748779561,7.452745857328565e-05,0.00016764404815538967,4.3981456630519256e-05,5.444265035686119e-05,0.0,0.0002903278778533446,0.0002466447620940053,0.0,0.0,0.0,0.00041591021008127423,5.74641837958695e-05,0.0005285255124766427,3.391177635476426e-05,0.00038116810263037694 +102814,50.0,the Greater Atlanta and Macon Area,G1300890020900,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,25653.0,,2537.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00215057233459058,0.000739202289516566,0.0,0.002889744250507709,0.001940812256873466,0.0007149034099663646,0.00023402858366787779,0.0,0.0,0.0012016099673569,0.0007149034099663646,0.00023402858366787779,0.0,0.0,0.000739202289516566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.938863357908172e-05,0.0,0.0,0.0002562781378913175,0.00010592460007618099,0.0003056667714703992,0.00014319274918250964,8.519318868351984e-05,2.7888580482071652e-05,0.0,0.0,4.938863357908171e-05,0.0,0.0,0.0,0.0,0.0,0.00020529215223266304,7.56199159144291e-05,2.475470332330697e-05,0.0,0.0 +102815,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,81450.0,,1286.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006837613593521882,0.0003784949144695684,0.0,0.007216108507991451,0.0034251748900677144,0.001373206433790711,0.0024177578737393226,0.0,0.0,0.0030466799755981466,0.001373206433790711,0.0024177578737393226,0.0,0.0,0.0003784949144695684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5288116380746666e-05,0.0,0.0,0.0008148249916200498,0.0002514277607877624,0.0008401131080007963,0.0003630668729127547,0.000163642315495308,0.0002881194604321345,0.0,0.0,2.528811638074667e-05,0.0,0.0,0.0,0.0,0.0,0.00039876538984334276,0.00015987131065739937,0.00028147998044252047,0.0,0.0 +102816,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,125811.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.010660310953963742,0.0,0.0,0.010660310953963742,0.0031759445973240704,0.0029178756979666874,0.0045664599690666855,0.0,0.0,0.0031759445973240704,0.0029178756979666874,0.0045664599690666855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012703680788490916,0.0003424212483266992,0.0012703680788490916,0.00037847100840276797,0.00034771745034023894,0.0005441759628866693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037847100840276797,0.00034771745034023894,0.0005441759628866693,0.0,0.0 +102817,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,100854.0,,3443.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00898597810317997,0.0010135856271942297,0.0,0.009999533040767901,0.0025422656064891034,0.0028908074652121136,0.0045664599690666855,0.0,0.0,0.0015286799792948735,0.0028908074652121136,0.0045664599690666855,0.0,0.0,0.0010135856271942297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.772093415740774e-05,0.0,0.0,0.0010708399553571977,0.000357152977310508,0.0011385608895146057,0.00018216955149315026,0.00034449139553306067,0.0005441753511156831,0.0,0.0,6.772093415740774e-05,0.0,0.0,0.0,0.0,0.0,0.00028946593590977734,0.0003291514019293256,0.000519943551675503,0.0,0.0 +102818,50.0,the Greater Atlanta and Macon Area,G1301130140306,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,53019.0,,4333.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004681361855045285,0.001275398658519932,0.0,0.0059567605135652174,0.002102606306668213,0.0013287371942653395,0.0025254170126316642,0.0,0.0,0.0008272076481482808,0.0013287371942653395,0.0025254170126316642,0.0,0.0,0.001275398658519932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.521464099164654e-05,0.0,0.0,0.000557867470972299,0.00025099064204764815,0.0006430821119639456,9.857649396277245e-05,0.0001583426535064256,0.00030094832350310093,0.0,0.0,8.521464099164654e-05,0.0,0.0,0.0,0.0,0.0,0.00022699393424356807,0.00014344829193439868,0.0002726398857859787,0.0,0.0 +102819,50.0,the Greater Atlanta and Macon Area,G1300150960803,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,9284.0,,1211.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0007530615593330308,0.0003565518459667109,0.0,0.0011096134052997419,0.0003590990832894202,0.0003119598480161488,0.00043858516360047054,0.0,0.0,2.5472373227093312e-06,0.0003119598480161488,0.00043858516360047054,0.0,0.0,0.0003565518459667109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3823406292557742e-05,0.0,0.0,8.97412015661958e-05,5.192820984571374e-05,0.00011356460785875355,3.035504006029119e-07,3.71757809895012e-05,5.2265527409833913e-05,0.0,0.0,2.3823406292557742e-05,0.0,0.0,0.0,0.0,0.0,3.675239176223241e-05,3.1927874734047736e-05,4.48874823240803e-05,0.0,0.0 +102820,50.0,the Greater Atlanta and Macon Area,G1301350050535,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,102046.0,,8003.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.005252850065389104,0.0013610002729646732,0.0,0.006613868068715197,0.003464016171358556,0.0016458385291778215,0.0009989108320443548,0.0,0.0005051202664958842,0.002313351175919969,0.0016458385291778215,0.0007885578241568484,0.0,0.0005051202664958842,0.0011506649954385866,0.00021035300788750647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.093444257007777e-05,0.0,0.0,0.0006259729463085167,0.0002554029202767061,0.0007169073888785944,0.0002756780097300621,0.0001961316962092275,9.397105540371657e-05,0.0,6.0194297861640944e-05,7.688101319567106e-05,1.4054614018204592e-05,0.0,0.0,0.0,0.0,0.00037548054521811873,0.0001783999605389569,0.00010827651064146137,0.0,5.47522943549689e-05 +102821,50.0,the Greater Atlanta and Macon Area,G1301210007706,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,74034.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006528471089550937,0.0,0.0,0.006528471089550939,0.004366751643966704,0.0014743345167084736,0.0006873545552763238,0.0,0.0,0.004366751643966704,0.0014743345167084736,0.0006873545552763238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007779849439409792,0.0002074476877943139,0.0007779849439409792,0.0005203771275594784,0.00017569351852802492,8.191067829190777e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005203771275594783,0.00017569351852802487,8.191067829190774e-05,0.0,0.0 +102822,50.0,the Greater Atlanta and Macon Area,G1301210012000,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,87066.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006876704407104763,0.0,0.0,0.006876704407104762,0.004674284338273942,0.0014089705307184317,0.0007934495381123908,0.0,0.0,0.004674284338273942,0.0014089705307184317,0.0007934495381123908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008194818622755568,0.00020483390844908643,0.0008194818622755568,0.0005570242673767791,0.0001679039443969123,9.455365050186556e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005570242673767792,0.00016790394439691232,9.455365050186558e-05,0.0,0.0 +102823,35.0,Eastern Counties in South Carolina and Georgia,G1302450000300,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,Electricity,32978.0,,1498.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002864813368677959,0.0004408255048602027,0.0,0.0033056695631444605,0.0010465155747516647,0.0009829574001091223,0.0012761658986773748,0.0,0.0,0.0006056900698914621,0.0009829574001091223,0.0012761658986773748,0.0,0.0,0.0004408255048602027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.945387044163068e-05,0.0,0.0,0.000341395291777895,0.000134178041689595,0.0003708491622195257,7.217913054943369e-05,0.0001171374833992608,0.0001520786778292005,0.0,0.0,2.945387044163068e-05,0.0,0.0,0.0,0.0,0.0,0.0001174041799196552,0.000110273855678787,0.00014316768368325582,0.0,0.0 +102824,50.0,the Greater Atlanta and Macon Area,G1300570090905,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,4821.0,,792.0,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.001114064283268471,0.0006281602250500398,0.0,0.0017422245083185109,0.0009573343785324834,0.0002820311214510383,0.00038955031731213795,0.0,0.00011339139809659047,0.00044256555157903393,0.0002820311214510383,0.00038955031731213795,0.0,0.0,0.0005147688269534493,0.0,0.00011339139809659047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.197005924990345e-05,0.0,0.0,0.00013275892746911563,8.257904079960753e-05,0.00017472898671901907,5.273890281271252e-05,3.36086074736217e-05,4.642127307940123e-05,0.0,0.0,3.439389713909138e-05,0.0,7.576162110812065e-06,0.0,0.0,0.0,9.601177409317092e-05,2.8285110121616667e-05,3.906828993337668e-05,0.0,1.1372107324556142e-05 +102825,50.0,the Greater Atlanta and Macon Area,G1300210012102,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7495.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006609295237654797,0.0,0.0,0.0006609295237654797,0.000466659981761619,0.00015372078675446197,4.0548755249398684e-05,0.0,0.0,0.000466659981761619,0.00015372078675446197,4.0548755249398684e-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,7.876156970381163e-05,2.259740501187906e-05,7.876156970381163e-05,5.5610880373592e-05,1.8318580159512438e-05,4.832109170707194e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5610880373592e-05,1.8318580159512438e-05,4.832109170707194e-06,0.0,0.0 +102826,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,28795.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.00686791269623835,0.0,0.0,0.0068679126962383485,0.003538539442862529,0.0014287646988465357,0.001723036467210992,0.0,0.00017765479439203237,0.003538539442862529,0.0014287646988465357,0.001723036467210992,0.0,0.00017765479439203237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008184357920073105,0.00021909504005049972,0.0008184357920073105,0.00042168085990005623,0.00017026310898404708,0.00020533090300808415,0.0,2.1170776156164007e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00042168085990005634,0.0001702631089840471,0.0002053309030080842,0.0,2.1170776156164014e-05 +102827,50.0,the Greater Atlanta and Macon Area,G1301350050539,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,69477.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005810499946041362,0.0,0.0,0.005810499946041361,0.003543839714399694,0.0016417841704087996,0.0006249064348323061,0.0,0.0,0.003543839714399694,0.0016417841704087996,0.0006249064348323061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006924269374279697,0.0002088220624019649,0.0006924269374279697,0.00042231307167452526,0.0001956484976492232,7.446898767200929e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004223130716745253,0.00019564849764922322,7.44689876720093e-05,0.0,0.0 +102828,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,98475.0,,1755.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.008736164707916669,0.0005165367635966355,0.0,0.009252701471513304,0.002226807143355016,0.0027285515167161595,0.004297373501048428,0.0,0.0,0.0017102703797583808,0.0027285515167161595,0.004297373501048428,0.0,0.0,0.0005165367635966355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4512739238679227e-05,0.0,0.0,0.0010410706221317082,0.0003110015561809954,0.0010755833613703876,0.00020380937262492302,0.00032515582294962423,0.0005121090837738677,0.0,0.0,3.4512739238679227e-05,0.0,0.0,0.0,0.0,0.0,0.00025885593734406424,0.0003171813789796726,0.0004995496125701468,0.0,0.0 +102829,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,82891.0,,11615.0,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,699376.6742607838,0.0,0.0,0.031879812273789984,0.00984608359148002,0.0,0.041725984249428055,0.03211597474411282,0.0031250870605070923,0.0058851475482472205,0.0,0.0005997748965609233,0.022869577665035667,0.0031250870605070923,0.0058851475482472205,0.0,0.0,0.009246397079077151,0.0,0.0005997748965609233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006578606956125402,0.0,0.0,0.0037990596243382326,0.0018524295628358058,0.004456920319950773,0.0027253262468027546,0.0003724109782125425,0.0007013223993229354,0.0,0.0,0.000617792968933865,0.0,4.0073632017905575e-05,0.0,0.0,0.0,0.003430436525509264,0.0003338031270473915,0.0006286162966677303,0.0,6.40643707263872e-05 +102830,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7606.0,,,861.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005516453129884485,0.0,8.112788409823512e-05,0.0006327731970866837,0.00046122310746226145,0.00014333301574675085,2.8247447477109195e-05,0.0,0.0,0.00038009522336402633,0.00014333301574675085,2.8247447477109195e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.112788409823512e-05,0.0,0.0,0.0,0.0,6.541707391197636e-06,6.574011574872547e-05,2.443747629998109e-05,7.22818231399231e-05,4.5296322457854344e-05,1.7081136781094346e-05,3.366276161563412e-06,0.0,0.0,0.0,0.0,0.0,6.541707391197636e-06,0.0,0.0,5.268561822011868e-05,1.637296229046691e-05,3.226712212361565e-06,0.0,0.0 +102831,50.0,the Greater Atlanta and Macon Area,G1301530020400,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,195157.0,,16819.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.010045739094819197,0.0028602264435600776,0.0,0.012905983268740696,0.007507531475370117,0.0022817202111465955,0.0017315648266437768,0.0,0.0013851490252187848,0.006567680477215959,0.0022817202111465955,0.0009302056815416503,0.0,0.00026613272491499254,0.0009398509981541589,0.0008013591451021265,0.0011190163003037923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019110407775882758,0.0,0.0,0.0011971316741574952,0.0005192545295429746,0.0013882357519163229,0.0007826580255379949,0.00027190826981935264,0.00011085084674646447,0.0,3.171453205368313e-05,6.279550300549184e-05,5.354226436272289e-05,7.476631039061285e-05,0.0,0.0,0.0,0.0008075497531435159,0.0002454338818690287,0.00018625626184793853,0.0,0.00014899394788448305 +102832,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8899.0,,124.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0019712403955026527,9.833871067603651e-05,0.0,0.002069661813252429,0.0010930566865386868,0.0003209034461085128,0.0006059120222141662,0.0,4.9789658391063064e-05,0.0009947179758626505,0.0003209034461085128,0.0006059120222141662,0.0,4.9789658391063064e-05,9.833871067603651e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.572075854153538e-06,0.0,0.0,0.00023491265743324783,8.905535625241122e-05,0.00024148473328740137,0.00011854051065493297,3.824205382399101e-05,7.220651709138096e-05,0.0,5.9334320623821095e-06,6.572075854153538e-06,0.0,0.0,0.0,0.0,0.0,0.0001275360547924511,3.744248581981767e-05,7.069681729793409e-05,0.0,5.809375377198515e-06 +102833,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,100281.0,,10937.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008884886540035337,0.0032193703902353194,0.0,0.01210425693027066,0.004576434091113439,0.002961362870090532,0.0045664599690666855,0.0,0.0,0.0013570637008781194,0.002961362870090532,0.0045664599690666855,0.0,0.0,0.0032193703902353194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021509915596706013,0.0,0.0,0.0010587957224998464,0.0004914857895235185,0.0012738948784669067,0.00016171880588177428,0.0003529002115551217,0.0005441767050629505,0.0,0.0,0.00021509915596706013,0.0,0.0,0.0,0.0,0.0,0.0004816401356890565,0.0003116643190261522,0.00048059042375169766,0.0,0.0 +102834,50.0,the Greater Atlanta and Macon Area,G1300670031312,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,7893.0,,834.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007032216387055616,0.00024554753998792,0.0,0.0009487691786934814,0.0004668196013943571,0.0002590202771526115,0.000222929300146513,0.0,0.0,0.00022127206140643707,0.0002590202771526115,0.000222929300146513,0.0,0.0,0.00024554753998792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6405288134931675e-05,0.0,0.0,8.380293903890751e-05,4.55089834662522e-05,0.00010020822717383919,2.636899670378472e-05,3.0867452452141895e-05,2.656648988298089e-05,0.0,0.0,1.6405288134931675e-05,0.0,0.0,0.0,0.0,0.0,4.930510572671093e-05,2.7357510507753613e-05,2.354561093937467e-05,0.0,0.0 +102835,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,14136.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032492300989224315,0.0,0.0,0.0032492300989224315,0.002452264736370465,0.00036142991224077345,0.0003587832858811156,0.0,7.675216443007729e-05,0.002452264736370465,0.00036142991224077345,0.0003587832858811156,0.0,7.675216443007729e-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.0003872001570745042,0.00013464700968294975,0.0003872001570745042,0.0002922283932510067,4.30704242329477e-05,4.2755034398747624e-05,0.0,9.146305191802165e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002922283932510067,4.30704242329477e-05,4.2755034398747624e-05,0.0,9.146305191802165e-06 +102836,50.0,the Greater Atlanta and Macon Area,G1301130140206,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,129130.0,,5848.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.014728392121039983,0.0021735153346474395,0.0,0.016901907455687423,0.007813387163097861,0.003388665904139956,0.0053647967680924055,0.0,0.00033501887193342777,0.006782640342336688,0.003388665904139956,0.004557047126139568,0.0,0.0,0.001030746820761174,0.0008077496419528379,0.00033501887193342777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014522183947841618,0.0,0.0,0.0017551525736434464,0.0006657005415744379,0.0019003744131218627,0.0008082734731066838,0.0004038204329427558,0.0005430540500230495,0.0,0.0,6.886859593826945e-05,5.396920232055808e-05,2.2384041219588657e-05,0.0,0.0,0.0,0.0008785020911689812,0.00038100634474123163,0.000603193606189759,0.0,3.766801432349592e-05 +102837,50.0,the Greater Atlanta and Macon Area,G1301350050718,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,72340.0,,4094.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005878263446386985,0.0011927105027216384,0.0,0.007070973949108625,0.004652020489886068,0.0019217072628271202,0.0004972461963954351,0.0,0.0,0.0034593099871644303,0.0019217072628271202,0.0004972461963954351,0.0,0.0,0.0011927105027216384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.969038249996431e-05,0.0,0.0,0.0007005010460035122,0.00023781908216511456,0.0007801914285034765,0.00041223913942620345,0.00022900605935760607,5.925584721970268e-05,0.0,0.0,7.969038249996431e-05,0.0,0.0,0.0,0.0,0.0,0.0005132908899896582,0.000212035788187227,5.486475032659112e-05,0.0,0.0 +102838,46.0,the Tallahassee-Valdosta Area,G1301850011301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,150468.0,,13239.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007506396732239236,0.002251330371672625,0.0,0.00975772710391186,0.005374728569790547,0.0018728758071615977,0.0010915874311869709,0.0,0.0014185175654113243,0.004525408797047177,0.0018728758071615977,0.0008717664103011563,0.0,0.00023632798736788376,0.0008493197727433693,0.00021982102088581462,0.0011821895780434405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001504203957663478,0.0,0.0,0.0008945232598408251,0.0004089044778542379,0.001044943655607173,0.0005392845027576105,0.00022318710721801142,0.00010388677270588356,0.0,2.8162764265309177e-05,5.674645443233044e-05,1.4687122501190615e-05,7.898681883282669e-05,0.0,0.0,0.0,0.0005755734362935486,0.00020056409362474337,0.00011689682941656287,0.0,0.00015190739754851882 +102839,50.0,the Greater Atlanta and Macon Area,G1300670030336,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,30403.0,,505.0,,8.53126424238864,Food Service,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.0075776257029178725,0.0003918513547500854,0.0,0.007969477057667956,0.002584634070002421,0.0004423084833848468,0.004067297388346946,0.00041101536033732647,0.00046430261637948634,0.002584634070002421,0.0004423084833848468,0.00367544603359686,0.00041101536033732647,0.00046430261637948634,0.0,0.0003918513547500854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.618320783262974e-05,0.0,0.0,0.0009030101306778545,0.00026952189585278263,0.0009291933385104841,0.00030800554696289634,5.270899580424987e-05,0.0004379953739097575,4.897985844113383e-05,5.5329991573675096e-05,0.0,2.618320783262974e-05,0.0,0.0,0.0,0.0,0.0003013528670645622,5.1570522551719285e-05,0.00047422253827266543,4.79219316508938e-05,5.4134906854108246e-05 +102840,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12388.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002657957228760123,0.0,0.0,0.0026579572287601227,0.001232997055305595,0.0007870405137032496,0.0005227087060324229,0.0,0.00011521095371885525,0.001232997055305595,0.0007870405137032496,0.0005227087060324229,0.0,0.00011521095371885525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003167458897925316,9.278718508775349e-05,0.0003167458897925316,0.0001469349262540704,9.37907672547447e-05,6.229063146805238e-05,0.0,1.3729564815664078e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00014693492625407042,9.379076725474472e-05,6.22906314680524e-05,0.0,1.372956481566408e-05 +102841,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,116160.0,,6005.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010349732138230988,0.001767629253928787,0.0,0.012117361392159777,0.0035398926384085276,0.003310978865033963,0.005266520578323584,0.0,0.0,0.0017722633844797402,0.003310978865033963,0.005266520578323584,0.0,0.0,0.001767629253928787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011810204834781695,0.0,0.0,0.0012333594368926708,0.0005308614916777653,0.0013514614852404877,0.00021119752093227043,0.0003945635475392903,0.000627602025647697,0.0,0.0,0.00011810204834781695,0.0,0.0,0.0,0.0,0.0,0.00039480778099024416,0.00036927679795321417,0.0005873803291396405,0.0,0.0 +102842,35.0,Eastern Counties in South Carolina and Georgia,G1301030030305,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,81817.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007214762568846941,0.0,0.0,0.007214762568846941,0.0039782429335584206,0.002794188906676541,0.00044230035501254206,0.0,0.0,0.0039782429335584206,0.002794188906676541,0.00044230035501254206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008597691971761057,0.0002455784573427624,0.0008597691971761057,0.000474079458681851,0.00033297804745854767,5.270807147304576e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000474079458681851,0.00033297804745854767,5.270807147304576e-05,0.0,0.0 +102843,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,17259.0,,2417.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015377334131526958,0.0007114771427996436,0.0,0.00224921055595234,0.0013083286060773674,0.0004520885903714597,0.0004887933595035122,0.0,0.0,0.0005968514632777238,0.0004520885903714597,0.0004887933595035122,0.0,0.0,0.0007114771427996436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.753775118352022e-05,0.0,0.0,0.00018324829796629758,0.00010633869318346798,0.0002307860491498178,7.112547197638119e-05,5.3874399819213855e-05,5.824842617070254e-05,0.0,0.0,4.753775118352022e-05,0.0,0.0,0.0,0.0,0.0,0.00013424443042347255,4.6387715619342127e-05,5.015390310700306e-05,0.0,0.0 +102844,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,5452.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010162218150348702,0.0,0.0,0.0010162218150348702,0.00040766316646104634,0.00020412105798861072,0.0003652344376327816,0.0,3.928586002617103e-05,0.00040766316646104634,0.00020412105798861072,0.0003652344376327816,0.0,3.928586002617103e-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.00012110382108690716,4.217059606424596e-05,0.00012110382108690716,4.85814872741406e-05,2.4325240534100015e-05,4.3525227795213e-05,0.0,4.681721739747775e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.85814872741406e-05,2.4325240534100015e-05,4.3525227795213e-05,0.0,4.681721739747775e-06 +102845,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,20386.0,,3355.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0018163643487295394,0.0009874687722348846,0.0,0.002803833120964424,0.001259010408756959,0.0005512467083193373,0.0009936066934944253,0.0,0.0,0.00027154163652207423,0.0005512467083193373,0.0009936066934944253,0.0,0.0,0.0009874687722348846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.597656672004048e-05,0.0,0.0,0.00021645292040408667,0.00012980412746224984,0.0002824294871241271,3.2359135587317035e-05,6.569109328880973e-05,0.00011840634875395301,0.0,0.0,6.597656672004048e-05,0.0,0.0,0.0,0.0,0.0,0.0001268198386596052,5.5526958414679905e-05,0.00010008578140706361,0.0,0.0 +102846,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001200,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,88973.0,,18649.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.0340142414681326,0.016494992220790473,0.0,0.050509233688923086,0.03998410976090959,0.005951424842222356,0.0010320032757845947,0.0006422009483123865,0.002899494861694149,0.025463857791003873,0.005951424842222356,0.0010320032757845947,0.0006422009483123865,0.0009247546108093928,0.014520251969905718,0.0,0.0019747402508847565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001102099809058838,0.0,0.0,0.004053407076422248,0.0020898432983556003,0.005155506885481087,0.003034475469922377,0.0007092190367631812,0.00012298170414516886,7.652976388767365e-05,0.00011020110170384711,0.0009701591070379069,0.0,0.00013194070202093107,0.0,0.0,0.0,0.00408120135917659,0.0006074653981382693,0.00010533717511761271,6.554982463757081e-05,0.00029595312841104265 +102847,85.0,Rural Climate Zone 3A,G1300930970300,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,11561.0,,,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,5611.956475588368,0.0,0.0,0.000521485390086593,0.0,0.0,0.000521485390086593,0.0002624448097396216,0.0001179246338047712,5.320881462157846e-05,0.0,8.790713192062179e-05,0.0002624448097396216,0.0001179246338047712,5.320881462157846e-05,0.0,8.790713192062179e-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,6.21444837313793e-05,2.020546779134364e-05,6.21444837313793e-05,3.12750798378851e-05,1.4052868261165638e-05,6.340799526651343e-06,0.0,1.0475736105677225e-05,0.0,0.0,0.0,0.0,0.0,0.0,3.12750798378851e-05,1.4052868261165638e-05,6.340799526651343e-06,0.0,1.0475736105677225e-05 +102848,81.0,the Columbus-Albany Area,G1302150010501,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,3666.0,,349.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003266294798264507,0.0001025953538532204,0.0,0.0004292248336796711,0.00021982964991044499,0.0001223901499152387,8.703572346028511e-05,0.0,0.0,0.00011723429605722464,0.0001223901499152387,8.703572346028511e-05,0.0,0.0,0.0001025953538532204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.853828785426235e-06,0.0,0.0,3.8925499467769e-05,1.9601004024759453e-05,4.577932825319523e-05,1.3971193081544452e-05,1.458563298670138e-05,1.0372330779911013e-05,0.0,0.0,6.853828785426235e-06,0.0,0.0,0.0,0.0,0.0,2.344611241796349e-05,1.3053622270394865e-05,9.282866790080201e-06,0.0,0.0 +102849,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,62619.0,,1118.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.005275911597850681,0.00032911533793656463,0.0,0.005605026935787245,0.0016041764107872223,0.0015292937714208273,0.002471587443185494,0.0,0.0,0.0012750610728506574,0.0015292937714208273,0.002471587443185494,0.0,0.0,0.00032911533793656463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1988808796772042e-05,0.0,0.0,0.0006287216688155858,0.00019962458265988244,0.0006507104776123577,0.00015194692153125517,0.00018224341220362427,0.00029453499231038674,0.0,0.0,2.1988808796772042e-05,0.0,0.0,0.0,0.0,0.0,0.00018623539376287016,0.0001775419622084441,0.00028693668452282813,0.0,0.0 +102850,85.0,Rural Climate Zone 3A,G1300690010100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,77297.0,,2504.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.0037982866752108114,0.00042590101167108837,0.0,0.004224187686881899,0.0020134421124997763,0.0007271575825592055,0.0009479715036845432,0.0,0.0005356164881383751,0.0020134421124997763,0.0007271575825592055,0.0005220704920134548,0.0,0.0005356164881383751,0.0,0.00042590101167108837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8456377472315503e-05,0.0,0.0,0.0004526341453608919,0.00015400640763483088,0.0004810905228332074,0.00023993782664505787,8.665389926264861e-05,6.221408523819099e-05,0.0,6.382833421499444e-05,0.0,2.8456377472315507e-05,0.0,0.0,0.0,0.0,0.0002293098674580736,8.281559615874139e-05,0.0001079639779631149,0.0,6.100108125327756e-05 +102851,50.0,the Greater Atlanta and Macon Area,G1300670031307,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,24278.0,,2428.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002226293717988895,0.0007072796365074889,0.0,0.002933603728095822,0.002001468334950656,0.0007600689523303016,0.00017206644081486412,0.0,0.0,0.0012941886984431672,0.0007600689523303016,0.00017206644081486412,0.0,0.0,0.0007072796365074889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.725674750372316e-05,0.0,0.0,0.0002653044647474236,0.00011384476907247772,0.00031256121225114677,0.00015422674786721107,9.05764072996102e-05,2.0504929162096065e-05,0.0,0.0,4.725674750372316e-05,0.0,0.0,0.0,0.0,0.0,0.00021324671872452285,8.098165095018529e-05,1.8332842576438613e-05,0.0,0.0 +102852,50.0,the Greater Atlanta and Macon Area,G1301350050423,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,19830.0,,919.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.004573949299004918,0.000728814733790777,0.0,0.005302846739869435,0.0025957615093081636,0.00164678054522335,0.0008788453655538807,0.0,0.00018154202685777976,0.0020484060953014274,0.00164678054522335,0.0008788453655538807,0.0,0.0,0.0005473554140067366,0.0,0.00018154202685777976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.869708760651048e-05,0.0,0.0,0.0005450706559451905,0.00018434877443642363,0.000593767743551701,0.00024410547232147506,0.0001962443598091367,0.00010473067989211427,0.0,0.0,3.6572551722638036e-05,0.0,1.2130062108067462e-05,0.0,0.0,0.0,0.00029065132933074644,0.00018439250018494475,9.840564044825592e-05,0.0,2.0327534423482183e-05 +102853,35.0,Eastern Counties in South Carolina and Georgia,G1301790010101,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,24666.0,,1752.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005790440675537271,0.0013584611555512661,0.0,0.007148901831088538,0.0031635972767730795,0.000698232861796737,0.0022090357326491096,0.0004319583031520752,0.0006459967959344681,0.0031635972767730795,0.000698232861796737,0.0014965713730323116,0.0004319583031520752,0.0,0.0,0.0007124643596167978,0.0006459967959344681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.076663771685746e-05,0.0,0.0,0.0006900316399338632,0.0002800111868003451,0.0007807982776507207,0.00037699759643586745,8.320658023780071e-05,0.00017834248836609331,5.147533892650045e-05,0.0,0.0,4.7603859816858985e-05,4.316277789999846e-05,0.0,0.0,0.0,0.00034552597912913466,7.62605262698108e-05,0.00024126940557787625,4.7178197027600386e-05,7.055533808564198e-05 +102854,35.0,Eastern Counties in South Carolina and Georgia,G1301790010501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,97449.0,,2564.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008600025614380061,0.0007546881084668091,0.0,0.00935471372284687,0.0023871296466542154,0.0027240094549840993,0.004243574621208555,0.0,0.0,0.0016324415381874066,0.0027240094549840993,0.004243574621208555,0.0,0.0,0.0007546881084668091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0424086949382505e-05,0.0,0.0,0.0010248475030158136,0.0003218824344878162,0.001075271589965196,0.0001945347269004916,0.00032461464806150613,0.0005056981280538159,0.0,0.0,5.04240869493825e-05,0.0,0.0,0.0,0.0,0.0,0.0002743870915410323,0.00031310952579846537,0.0004877749726256985,0.0,0.0 +102855,50.0,the Greater Atlanta and Macon Area,G1302970110602,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,27874.0,,10157.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003504494586480537,0.001727256348818704,0.0,0.00523175093529924,0.0024786513354391215,0.0011104879964607473,0.0012362849107360216,0.0,0.00040632669266335006,0.001941563227302882,0.0011104879964607473,0.00036760358332195474,0.0,8.485750975637271e-05,0.0005370881081362393,0.000868681327414067,0.00032146918290697733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011540486460859333,0.0,0.0,0.0004176239166028605,0.00023290565321107347,0.0005330287812114539,0.0002313723760471338,0.00013233473043773423,4.380661588589768e-05,0.0,1.0112307125351193e-05,3.588499208281332e-05,5.8040053548968584e-05,2.1478634340865195e-05,0.0,0.0,0.0,0.00025253352399920567,0.00011314033688218098,0.00012595695921867144,0.0,4.139796111139579e-05 +102856,50.0,the Greater Atlanta and Macon Area,G1301210011621,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,84807.0,,16966.0,,9.729435225087556,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,729707.6418815667,0.0,0.0,0.022705270891547134,0.015006144674767578,0.0,0.03771141556631471,0.026477509833486602,0.003932881396270341,0.003835315542836323,0.0006564946224922285,0.0028092141712292118,0.015490193034573968,0.003932881396270341,0.0017240015405944953,0.0006564946224922285,0.0009017002976160993,0.010987316798912636,0.002111314002241828,0.0019075138736131122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010026236750444205,0.0,0.0,0.0027057413451037978,0.0016599449549117395,0.003708365020148218,0.00184593506668485,0.0004686735450154814,0.00020544578700207338,7.823314028712279e-05,0.00010745380611426978,0.0007341088725025043,0.00014106577338680979,0.00012744902915510635,0.0,0.0,0.0,0.002603675036129849,0.0003867412447743836,0.00037714707302022635,6.455662449701832e-05,0.000276245041726741 +102857,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,1897.0,,500.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00045555056215610534,0.00039691124687493625,0.0,0.0008524618090310417,0.000646769316641384,0.00013555689385872486,4.375204200809363e-05,0.0,2.6383556522839068e-05,0.00024985806976644776,0.00013555689385872486,4.375204200809363e-05,0.0,2.6383556522839068e-05,0.00039691124687493625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6518828576272317e-05,0.0,0.0,5.42883601512567e-05,4.1260026810994134e-05,8.080718872752902e-05,2.9775805377078157e-05,1.6154433966577654e-05,5.213969230213288e-06,0.0,3.144151577387597e-06,2.6518828576272317e-05,0.0,0.0,0.0,0.0,0.0,6.130903423394554e-05,1.284980909327836e-05,4.147375845237494e-06,0.0,2.5009695550676e-06 +102858,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,25212.0,,2660.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0022621308802036723,0.0007831066838984819,0.0,0.003045237564102154,0.0011825012202567858,0.0008018580333463784,0.0010608783104989897,0.0,0.0,0.00039939453635830403,0.0008018580333463784,0.0010608783104989897,0.0,0.0,0.0007831066838984819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2323399834898704e-05,0.0,0.0,0.00026957396291903265,0.00013605827541300294,0.00032189736275393136,4.7595109936620416e-05,9.555594224865669e-05,0.00012642291073375553,0.0,0.0,5.23233998348987e-05,0.0,0.0,0.0,0.0,0.0,0.00012499649575490267,8.476054192946194e-05,0.00011214032506956673,0.0,0.0 +102859,50.0,the Greater Atlanta and Macon Area,G1302470060406,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,52024.0,,818.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005594187436823136,0.0003038651392206732,0.0,0.005898013827620037,0.0027507893520039295,0.0009565048408138636,0.002057657547568912,0.0,0.00013313958408087644,0.0027507893520039295,0.0009565048408138636,0.001753792408348239,0.0,0.00013313958408087644,0.0,0.0003038651392206732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0301698924879206e-05,0.0,0.0,0.0006666471921099264,0.00021588930727269368,0.0006869488910348056,0.0003278056050693749,0.00011398460876924564,0.00020899564016628832,0.0,1.5865955670695887e-05,0.0,2.0301698924879206e-05,0.0,0.0,0.0,0.0,0.00032038780342974574,0.00011140528979255499,0.0002396578936136945,0.0,1.5506930351517885e-05 +102860,50.0,the Greater Atlanta and Macon Area,G1300630040512,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,NaturalGas,13641.0,,1419.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031909216119362202,0.0011257259806657135,0.0,0.004316647592601933,0.002451520372706811,0.0007174011576147526,0.0009737103791328663,0.0,0.0001739329760737635,0.0014997273681148615,0.0007174011576147526,0.0009737103791328663,0.0,0.0,0.0009517930045919498,0.0,0.0001739329760737635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.521641847051546e-05,0.0,0.0,0.00038025453481416296,0.00020647701403563753,0.00045547095328467844,0.00017871894144229586,8.549098869853164e-05,0.00011603474866818227,0.0,0.0,6.359492643881359e-05,0.0,1.1621492031701857e-05,0.0,0.0,0.0,0.00025867210542441664,7.569656362644277e-05,0.00010274102416118409,0.0,1.8352533237999668e-05 +102861,81.0,the Columbus-Albany Area,G1302150002200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,102117.0,,3232.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004887746463027376,0.0005495702825759565,0.0,0.005437334475964753,0.0022983512901586047,0.0015406797555954884,0.0010759315220530642,0.0,0.0005223719081575957,0.0022983512901586047,0.0015406797555954884,0.0005263612394771076,0.0,0.0005223719081575957,0.0,0.0005495702825759565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.671956240020892e-05,0.0,0.0,0.0005824643712412791,0.0001712796978972273,0.000619183933641488,0.0002738905852094146,0.00018360016664433675,6.272556703113441e-05,0.0,6.225016525318429e-05,0.0,3.671956240020892e-05,0.0,0.0,0.0,0.0,0.00026172791080281875,0.00017544702386221292,0.00012252318026388935,0.0,5.948581871256708e-05 +102862,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7007.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016825927081524702,0.0,0.0,0.0016825927081524704,0.0010288759973169843,0.00022736174570935614,0.00038574579192012984,0.0,4.060917320599995e-05,0.0010288759973169843,0.00022736174570935614,0.00038574579192012984,0.0,4.060917320599995e-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.00020051050843369688,6.780986855614721e-05,0.00020051050843369688,0.00012260866717042808,2.7094150004140425e-05,4.596839418672642e-05,0.0,4.839297072401946e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012260866717042808,2.709415000414042e-05,4.5968394186726416e-05,0.0,4.839297072401945e-06 +102863,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,172584.0,,19101.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008883797589517456,0.0032483617854064534,0.0,0.012132159374923911,0.006201566244253289,0.0026892702987479293,0.0017584085938337369,0.0,0.001482896507727536,0.005223612699407437,0.0026892702987479293,0.0007046222931943186,0.0,0.0002662922981677731,0.0009779535448458524,0.0010537863006394182,0.001216604209559763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021703636923866228,0.0,0.0,0.0010586645536429366,0.000483435960198029,0.0012757009228815989,0.0006224875737091311,0.0003204750121511747,8.396844232376799e-05,0.0,3.173352545886292e-05,6.534108596246307e-05,7.040778329301865e-05,8.128631534503922e-05,0.0,0.0,0.0,0.0006520969216294119,0.0002827777393925245,0.0001848972962383872,0.0,0.00015592710126739346 +102864,85.0,Rural Climate Zone 3A,G1300550010500,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,34833.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003103547816067789,0.0,0.0,0.0031035478160677896,0.0010041025388482397,0.0008905203059404417,0.0012088942816728106,0.0,0.0,0.0010041025388482397,0.0008905203059404417,0.0012088942816728106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003698440397804735,0.00012415733435603004,0.0003698440397804735,0.00011965703811581013,0.00010612165398271481,0.00014406169045845952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011965703811581012,0.0001061216539827148,0.0001440616904584595,0.0,0.0 +102865,50.0,the Greater Atlanta and Macon Area,G1300630040606,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,19947.0,,7860.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004153231801543021,0.005406968614866916,0.0,0.009560200416409939,0.002928541576480446,0.000473710408558111,0.0037837305108705914,0.0003715094498608652,0.0020027084706399235,0.001969573844030711,0.000473710408558111,0.0010834018821618205,0.0003715094498608652,0.0002550362169315129,0.0009589677324497353,0.0027003286287087713,0.0017476722537084102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036126090809234987,0.0,0.0,0.0004949367108442553,0.0004869143336584412,0.0008561976189366051,0.0002347122546271726,5.645162194350284e-05,0.00012910797896722998,4.427243022972667e-05,3.039242507662318e-05,6.407241812047766e-05,0.0001804196106988336,0.00011676887927303865,0.0,0.0,0.0,0.00026227591635374903,4.242481393766102e-05,0.0003388653912050237,3.327184499577351e-05,0.00017935965244439766 +102866,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,73669.0,,9766.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009118557202386047,0.0028745419738743314,0.0,0.01199306848665408,0.004492006984188459,0.0026117161855408045,0.004889376006531114,0.0,0.0,0.0016174650103141276,0.0026117161855408045,0.004889376006531114,0.0,0.0,0.0028745419738743314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019205911548717065,0.0,0.0,0.0010866406656509398,0.0005135392303557492,0.0012786997811381105,0.00019275014856680802,0.0003112331206964164,0.0005826573963877153,0.0,0.0,0.00019205911548717067,0.0,0.0,0.0,0.0,0.0,0.00047893734234441375,0.000278460922537231,0.0005213047883792672,0.0,0.0 +102868,50.0,the Greater Atlanta and Macon Area,G1302470060309,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,408028.0,,,,1.8706521585294562,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,140298.9118897092,0.0,0.0,0.020322575720387363,0.0,0.0,0.02032257572038736,0.008494882111768597,0.004773545205120817,0.004891593951455529,0.0,0.0021625721824038405,0.008494882111768597,0.004773545205120817,0.004891593951455529,0.0,0.0021625721824038405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00242180237637988,0.0006241407137339281,0.00242180237637988,0.0010123188107848756,0.0005688542279569877,0.0005829218706778495,0.0,0.0002577095798533365,0.0,0.0,0.0,0.0,0.0,0.0,0.0010123188107848758,0.0005688542279569877,0.0005829218706778496,0.0,0.0002577095798533366 +102869,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,32208.0,,11647.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007561130103171893,0.009032958076585232,0.0,0.016594088179757122,0.005154147173571027,0.0006348380078710113,0.009641758912308179,0.00041643303280291795,0.0007469110532039908,0.0033161815744233913,0.0006348380078710113,0.003193677488074572,0.00041643303280291795,0.0,0.0018379655991476351,0.006448081424233607,0.0007469110532039908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006035309756209129,0.0,0.0,0.0009010453956614537,0.0008600097588725511,0.001504576371282367,0.00039518300810061037,7.56524297529417e-05,0.0003805844307122896,4.9625527095611997e-05,0.0,0.00012280242660337793,0.0004308241929007113,4.990435611682368e-05,0.0,0.0,0.0,0.0004673235412191395,5.756039475551786e-05,0.0008742127003252062,3.775774206991683e-05,6.772199291258674e-05 +102870,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,26858.0,,758.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0062464146312607004,0.0005878578929081966,0.0,0.006834191663385828,0.0028036859313350627,0.00041344118382938234,0.0026186764596742708,0.00041344118382938234,0.0005850277655007983,0.0028036859313350627,0.00041344118382938234,0.0020308185667660744,0.00041344118382938234,0.0005850277655007983,0.0,0.0005878578929081966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9274811748944617e-05,0.0,0.0,0.0007443700548838422,0.0002533523315185115,0.0007836448666327868,0.00033410844040683324,4.926878135148785e-05,0.00024200771438345734,4.926878135148785e-05,6.971633739057591e-05,0.0,3.9274811748944617e-05,0.0,0.0,0.0,0.0,0.00032148558248844766,4.740737124746727e-05,0.0003002714097103907,4.740737124746727e-05,6.708240386767568e-05 +102871,50.0,the Greater Atlanta and Macon Area,G1300210012500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,23798.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.0021223704131239337,0.0,0.0,0.0021223704131239337,0.0011700412400999186,0.00043210965667165517,0.0005201888267460621,0.0,0.0,0.0011700412400999186,0.00043210965667165517,0.0005201888267460621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002529187665688492,9.276725301007123e-05,0.0002529187665688492,0.0001394315457145783,5.14936698665249e-05,6.198989376687479e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001394315457145783,5.14936698665249e-05,6.198989376687479e-05,0.0,0.0 +102872,50.0,the Greater Atlanta and Macon Area,G1300450911000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6076.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014588700736876438,0.0,0.0,0.0014588700736876438,0.0006926717425666998,0.00034596368945152297,0.0003776404986936777,0.0,4.259414297574332e-05,0.0006926717425666998,0.00034596368945152297,0.0003776404986936777,0.0,4.259414297574332e-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.00017384726922870387,6.0326041060636395e-05,0.00017384726922870387,8.254271102615765e-05,4.122700420566178e-05,4.5001793259156514e-05,0.0,5.075760737727903e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.254271102615765e-05,4.122700420566178e-05,4.5001793259156514e-05,0.0,5.075760737727903e-06 +102873,50.0,the Greater Atlanta and Macon Area,G1300890022004,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,49089.0,,6401.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.00410056105586126,0.0018841883786474619,0.0,0.005984749434508722,0.002585537951368864,0.0014119674065447097,0.001987244076595148,0.0,0.0,0.0007013495727214016,0.0014119674065447097,0.001987244076595148,0.0,0.0,0.0018841883786474619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001258906480175281,0.0,0.0,0.0004886566564359324,0.00026336456550067654,0.0006145473044534605,8.357859632621103e-05,0.00016826167504381558,0.0002368163850659057,0.0,0.0,0.0001258906480175281,0.0,0.0,0.0,0.0,0.0,0.000265497393995124,0.0001449886537713378,0.00020406125668699868,0.0,0.0 +102874,50.0,the Greater Atlanta and Macon Area,G1301350050511,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,133960.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011104174729847418,0.0,0.0,0.011104174729847417,0.0031008471307135913,0.0032215800418887537,0.004781747557245071,0.0,0.0,0.0031008471307135913,0.0032215800418887537,0.004781747557245071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013232615021294633,0.0004102630756098122,0.0013232615021294633,0.00036952152968492465,0.0003839090206317916,0.0005698309518127468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003695215296849247,0.00038390902063179167,0.0005698309518127468,0.0,0.0 +102875,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Propane,64379.0,,16946.0,23637.0,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012796492388518372,0.011657220648935387,0.00526051643405304,0.029714229471506797,0.009334927987449903,0.001037787980595892,0.013709631059489127,0.0003714377298898497,0.00526051643405304,0.009334927987449903,0.001037787980595892,0.0020524104105537418,0.0003714377298898497,0.0,0.0,0.011657220648935387,0.0,0.0,0.0,0.0,0.0,0.0,0.00526051643405304,0.0,0.0007788672069200049,0.0,0.00042425303555943434,0.0015249325128465765,0.0016571561024389895,0.002728052755326016,0.0011124247771144118,0.00012367112682159788,0.00024458166110944487,4.426349452723259e-05,0.0,0.0,0.0007788672069200049,0.0,0.0,0.00042425303555943434,0.0,0.0008570363919869557,9.527894245494898e-05,0.0012586763127142894,3.4101564821988996e-05,0.00048296612793266054 +102876,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,43479.0,,3979.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005135021468145199,0.0011592691697406739,0.0,0.006294290637885871,0.0038617905533140802,0.0020122205891516206,0.00042024912182073425,0.0,0.0,0.002702521383573406,0.0020122205891516206,0.00042024912182073425,0.0,0.0,0.0011592691697406739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.745544453123244e-05,0.0,0.0,0.0006119291073564606,0.00021676608951750874,0.000689384551887693,0.0003220534730226096,0.00023979185998780422,5.008015479163851e-05,0.0,0.0,7.745544453123244e-05,0.0,0.0,0.0,0.0,0.0,0.00042296406429919066,0.0002203892176191932,4.602794328939542e-05,0.0,0.0 +102877,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,85420.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.008429068700768821,0.0,0.0,0.008429068700768821,0.005128430397067207,0.0027078671370744504,0.0005927711666271645,0.0,0.0,0.005128430397067207,0.0027078671370744504,0.0005927711666271645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010044761820915094,0.0002923276441058814,0.0010044761820915094,0.0006111453552274702,0.000322691407558645,7.063941930539433e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006111453552274702,0.000322691407558645,7.063941930539433e-05,0.0,0.0 +102878,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,7470.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0017745629741505802,0.0,0.0,0.0017745629741505804,0.0007197996627531925,0.0006369271748664065,0.0003738359733016696,0.0,4.4000163229311556e-05,0.0007197996627531925,0.0006369271748664065,0.0003738359733016696,0.0,4.4000163229311556e-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.000211470353026465,7.021723975006181e-05,0.000211470353026465,8.577677490628843e-05,7.590106211114872e-05,4.454912358685784e-05,0.0,5.243392422169994e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.577677490628843e-05,7.590106211114871e-05,4.454912358685783e-05,0.0,5.243392422169993e-06 +102879,50.0,the Greater Atlanta and Macon Area,G1300890021805,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,190088.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01613904243484887,0.0,0.0,0.01613904243484887,0.011112576211094195,0.003808029282309259,0.0012184976886442898,0.0,0.0,0.011112576211094195,0.003808029282309259,0.0012184976886442898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019232597509583772,0.0006424444050196318,0.0019232597509583772,0.0013242650945700387,0.0004537957861317746,0.0001452061093875747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013242650945700387,0.0004537957861317746,0.0001452061093875747,0.0,0.0 +102880,85.0,Rural Climate Zone 3A,G1300810010201,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,43171.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003587676355414051,0.0,0.0,0.003587676355414051,0.0013729302273340317,0.0009251074922379526,0.0012896079462357687,0.0,0.0,0.0013729302273340317,0.0009251074922379526,0.0012896079462357687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004275346790633654,0.00013846272755384346,0.0004275346790633654,0.00016360876120664073,0.00011024281334524717,0.00015367944730562073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016360876120664073,0.00011024281334524717,0.00015367944730562073,0.0,0.0 +102881,85.0,Rural Climate Zone 3A,G1302850960501,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,5787.0,,88.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00023388119749191653,1.4911233954264407e-05,0.0,0.000248792431446181,0.0001326940248676752,5.193222859933466e-05,1.5762291302426943e-05,0.0,4.8403886676744143e-05,0.0001326940248676752,5.193222859933466e-05,1.5762291302426943e-05,0.0,3.349265272247974e-05,0.0,0.0,1.4911233954264407e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.96669562264359e-07,0.0,0.0,2.787105351696447e-05,9.517642607785149e-06,2.886772307922883e-05,1.581282423781079e-05,6.188637385428621e-06,1.8783539213540605e-06,0.0,3.9912379723710005e-06,0.0,0.0,9.96669562264359e-07,0.0,0.0,0.0,1.539666758302085e-05,6.025766882772323e-06,1.8289200268981202e-06,0.0,5.616368586537534e-06 +102882,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,7730.0,,896.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0006887054549267483,0.00026380785573505304,0.0,0.0009525133106618012,0.0004153838212394071,0.0003303429221884728,0.00020678656723392133,0.0,0.0,0.00015157596550435405,0.0003303429221884728,0.00020678656723392133,0.0,0.0,0.00026380785573505304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7625354050309186e-05,0.0,0.0,8.207276965203367e-05,4.139293421285867e-05,9.969812370234285e-05,1.806325071571651e-05,3.9366841608417196e-05,2.4642677327899946e-05,0.0,0.0,1.7625354050309186e-05,0.0,0.0,0.0,0.0,0.0,4.347759462290848e-05,3.457649268718042e-05,2.164403639225396e-05,0.0,0.0 +102883,50.0,the Greater Atlanta and Macon Area,G1301210006200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,22207.0,,1561.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003371287295993826,0.00045475353078202024,0.0,0.0038260408267758454,0.0022004457848673682,0.0013042119862576255,0.00032138305565085205,0.0,0.0,0.0017456922540853483,0.0013042119862576255,0.00032138305565085205,0.0,0.0,0.00045475353078202024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0384655672928802e-05,0.0,0.0,0.0004017487014517902,0.00014754218359512586,0.000432133357124719,0.00020803020764401851,0.00015542000010485628,3.829849370291541e-05,0.0,0.0,3.0384655672928802e-05,0.0,0.0,0.0,0.0,0.0,0.00024853002548511023,0.00014730462364112785,3.629870799848096e-05,0.0,0.0 +102884,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,68283.0,,19.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.005879852360183174,5.646887558777312e-06,0.0,0.005885529937348249,0.0016118795019679458,0.0015598606192933394,0.0027137591264806667,0.0,0.0,0.0016062326144091683,0.0015598606192933394,0.0027137591264806667,0.0,0.0,5.646887558777312e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7767565675185593e-07,0.0,0.0,0.0007006919526918397,0.0002365187789082122,0.0007010696283485916,0.00019141199440467197,0.00018588592303118697,0.0003233940352559809,0.0,0.0,3.7767565675185593e-07,0.0,0.0,0.0,0.0,0.0,0.00019200306096761187,0.00018580670156888177,0.0003232562101428363,0.0,0.0 +102885,50.0,the Greater Atlanta and Macon Area,G1301130140207,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,497934.0,,115726.0,,7.614023970037612,Education,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,2664908.3895131643,0.0,0.0,0.10700868397197871,0.08010380755888147,0.0,0.18711249153086018,0.15543744708214915,0.01333610496590338,0.01228095092652746,0.0008075489843797658,0.005250511738923134,0.08500618558014168,0.01333610496590338,0.004914862916192992,0.0008075489843797658,0.002944053692383606,0.07043126150200747,0.007366088010334467,0.0023064580465395274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00535206827094055,0.0,0.0,0.012752021384482188,0.00806642229302367,0.018104089655422737,0.010130025490408654,0.0015892382692551522,0.0005856948677688947,9.623407685795154e-05,0.0003508372801984034,0.004705805272616113,0.0004921589512719188,0.00015410404705251815,0.0,0.0,0.0,0.015039367253153904,0.0012903362997388292,0.0011882447548459403,7.813449061975433e-05,0.0005080138395925135 +102886,50.0,the Greater Atlanta and Macon Area,G1300890023412,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,78447.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006243840089219767,0.0,0.0,0.006243840089219766,0.004036286882083965,0.0013942089613916842,0.0008133442457441182,0.0,0.0,0.004036286882083965,0.0013942089613916842,0.0008133442457441182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007440655932103048,0.00021275809198974217,0.0007440655932103048,0.00048099601373040063,0.0001661450170237557,9.692456245614853e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004809960137304007,0.00016614501702375573,9.692456245614855e-05,0.0,0.0 +102887,50.0,the Greater Atlanta and Macon Area,G1302230120501,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,151832.0,,25914.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.007815596505043536,0.004406881330954123,0.0,0.01222247783599766,0.004857569387890446,0.002384715880635682,0.002789677335469688,0.0,0.002190532962363263,0.0038716903714898308,0.002384715880635682,0.001211905663783449,0.0,0.00034730231949599435,0.0009858790164006162,0.0015777716716862387,0.001843230642867269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029444202833787394,0.0,0.0,0.0009313689514354998,0.0005117879243993905,0.001225810979773374,0.00046138157199522903,0.0002841818059294589,0.00014442036594242616,0.0,4.1387320459975486e-05,6.58706680494836e-05,0.00010541747244297886,0.00012315388784541153,0.0,0.0,0.0,0.0004871730569353168,0.00023916679983773046,0.0002797810029789714,0.0,0.0002196918982263963 +102888,50.0,the Greater Atlanta and Macon Area,G1301210011619,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,2647.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006356865687603168,0.0,0.0,0.0006356865687603168,0.00044471593549625597,0.00010512069072265974,5.839119405995104e-05,0.0,2.7458748481450068e-05,0.00044471593549625597,0.00010512069072265974,5.839119405995104e-05,0.0,2.7458748481450068e-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,7.575297301467303e-05,2.642738414567592e-05,7.575297301467303e-05,5.299554201143597e-05,1.2526935818585665e-05,6.958313680504705e-06,0.0,3.2721815041466883e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.299554201143597e-05,1.2526935818585665e-05,6.958313680504705e-06,0.0,3.2721815041466883e-06 +102889,50.0,the Greater Atlanta and Macon Area,G1301210011622,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,2155.0,,350.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005174981603868465,0.00027756493946911573,0.0,0.0007950630998559621,0.0004960770282883658,0.0001360531363011607,0.0001473012983297065,0.0,1.5548929862989793e-05,0.00023406101868224,0.0001360531363011607,0.0001473012983297065,0.0,0.0,0.0002620160096061259,0.0,1.5548929862989793e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8547887513640136e-05,0.0,0.0,6.166617727135813e-05,3.6397410933910534e-05,8.021406478499825e-05,2.7891206916724234e-05,1.6212379992230163e-05,1.7552734812256483e-05,0.0,0.0,1.7508852098692474e-05,0.0,1.0390354149476592e-06,0.0,0.0,0.0,5.004930412778732e-05,1.3726426357154075e-05,1.4861255527107239e-05,0.0,1.5687344408176088e-06 +102890,46.0,the Tallahassee-Valdosta Area,G1301850010202,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,53852.0,,949.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0046388567503229654,0.0002792447277027976,0.0,0.004918101478025764,0.0012462742221434125,0.001550070634884372,0.0021217873106042775,0.0,0.0,0.0009670294944406149,0.001550070634884372,0.0021217873106042775,0.0,0.0,0.0002792447277027976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8657090188794e-05,0.0,0.0,0.0005528032956175118,0.00017344711379157357,0.0005714603858063059,0.00011523897379432767,0.00018471882222798795,0.00025284915681429487,0.0,0.0,1.8657090188794e-05,0.0,0.0,0.0,0.0,0.0,0.0001448112347800558,0.0001801109568389041,0.00024654176017603776,0.0,0.0 +102891,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080200,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,16891.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015530168370889515,0.0,0.0,0.0015530168370889515,0.0006123190248517659,0.00042676966517585496,0.0005139281470613308,0.0,0.0,0.0006123190248517659,0.00042676966517585496,0.0005139281470613308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018507128808865564,6.676028411135454e-05,0.00018507128808865564,7.296937672802264e-05,5.085766603748411e-05,6.12442453231489e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.296937672802264e-05,5.085766603748411e-05,6.12442453231489e-05,0.0,0.0 +102892,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,9821.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0008107273295664144,0.0,0.0,0.0008107273295664144,0.0002448416790430728,0.0003375856692747306,0.0002283306708549087,0.0,0.0,0.0002448416790430728,0.0003375856692747306,0.0002283306708549087,0.0,0.0,0.0,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.661240839896068e-05,3.489983584179408e-05,9.661240839896068e-05,2.9177188712075865e-05,4.02292649577381e-05,2.720961193505195e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9177188712075865e-05,4.02292649577381e-05,2.720961193505195e-05,0.0,0.0 +102893,50.0,the Greater Atlanta and Macon Area,G1300670030326,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,34602.0,,992.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008825589131647753,0.0007865442712608134,0.0,0.00961213340290857,0.004728280698602466,0.0011960269933441246,0.003516787482469091,0.0,0.00017120364264036636,0.00411285736290828,0.0011960269933441246,0.003516787482469091,0.0,0.0,0.0006154233356941865,0.0,0.00017120364264036636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2553005621597544e-05,0.0,0.0,0.001051728870847807,0.0003235900963932581,0.0011042818764694048,0.0004901214826258307,0.00014252828909773441,0.00041908895517078803,0.0,0.0,4.1119549403817807e-05,0.0,1.1438982296183695e-05,0.0,0.0,0.0,0.0005432045585995355,0.0001374045570485382,0.0004040231775299698,0.0,1.966858675682692e-05 +102894,50.0,the Greater Atlanta and Macon Area,G1301210011900,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,241024.0,,27061.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01240676721259769,0.0046019862280203844,0.0,0.017008753440618075,0.010120277534229099,0.0017183379770244174,0.002226596517491651,0.0,0.002943541411872906,0.008044779156759139,0.0017183379770244174,0.002226596517491651,0.0,0.000417035830961062,0.0020754983774699605,0.0,0.0025265055809118443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003074782863720245,0.0,0.0,0.0014784900356108219,0.0007270414814764516,0.0017859683219828462,0.0009586805021924532,0.0002047709555042362,0.0002653391256583345,0.0,4.9697339363515874e-05,0.00013867288011135568,0.0,0.00016880659090157734,0.0,0.0,0.0,0.0010626584216715553,0.00018043045918326734,0.00023379907645559403,0.0,0.00030908036467242934 +102895,81.0,the Columbus-Albany Area,G1301450120198,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,15346.0,,,1152.0,3.20458438519356,Mercantile,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,24034.3828889517,0.0,0.0,0.0013078568181901556,0.0,0.00010861599158940052,0.0014164424361801185,0.0008043232867111059,0.0004353144271418592,0.00017680472232715338,0.0,0.0,0.0006957072951217054,0.0004353144271418592,0.00017680472232715338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010861599158940052,0.0,0.0,0.0,0.0,8.759103102149345e-06,0.0001558535019289276,5.232938295844224e-05,0.00016461260503107696,8.2905419579695e-05,5.1875157101776426e-05,2.1069305713748293e-05,0.0,0.0,0.0,0.0,0.0,8.759103102149345e-06,0.0,0.0,9.347485512347105e-05,5.0590295820761586e-05,2.0547454086844344e-05,0.0,0.0 +102896,50.0,the Greater Atlanta and Macon Area,G1300670031004,ComStock 90.1-2004,gen5_led,25001_50000,NaturalGas,72994.0,,6333.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006896963597929744,0.0018449531770479211,0.0,0.008741916774977666,0.006811401168313597,0.0012587730814987486,0.0006717425251653193,0.0,0.0,0.004966447991265676,0.0012587730814987486,0.0006717425251653193,0.0,0.0,0.0018449531770479211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012326936965310065,0.0,0.0,0.0008218981584234089,0.00038085599542802667,0.0009451675280765094,0.0005918422505741748,0.00015000561665532512,8.005029119390901e-05,0.0,0.0,0.00012326936965310065,0.0,0.0,0.0,0.0,0.0,0.0007364420607869329,0.00013609731966962845,7.262814761994796e-05,0.0,0.0 +102897,50.0,the Greater Atlanta and Macon Area,G1301210010510,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,158222.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01433459337834991,0.0,0.0,0.01433459337834991,0.002755681128683328,0.005987910463957385,0.005591001785709196,0.0,0.0,0.002755681128683328,0.005987910463957385,0.005591001785709196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017082247894187879,0.0005216307511455222,0.0017082247894187879,0.0003283890021505638,0.000713567299844093,0.0006662684874241309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003283890021505638,0.000713567299844093,0.0006662684874241309,0.0,0.0 +102898,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,75932.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009681343202673321,0.0,0.0,0.009681343202673321,0.002921926725997984,0.002569671424912952,0.004189745051762384,0.0,0.0,0.002921926725997984,0.002569671424912952,0.004189745051762384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011537071670605049,0.00038267242749621483,0.0011537071670605049,0.000348200423726189,0.00030622283270507556,0.0004992839106292402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000348200423726189,0.00030622283270507556,0.0004992839106292402,0.0,0.0 +102899,50.0,the Greater Atlanta and Macon Area,G1301210009601,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12909.0,,512.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029758832202140205,0.0004063398532812173,0.0,0.003382223073495238,0.0013598697064216925,0.0009698231466671189,0.0009320260139682553,0.0,0.00012050420643817092,0.0009535298531404754,0.0009698231466671189,0.0009320260139682553,0.0,0.00012050420643817092,0.0004063398532812173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7146838365330345e-05,0.0,0.0,0.00035463222671694406,0.00014694736228455687,0.0003817790650822743,0.00011363094249241677,0.00011557259360448253,0.0001110683572683706,0.0,1.4360333351674147e-05,2.7146838365330345e-05,0.0,0.0,0.0,0.0,0.0,0.00015349956932759703,0.00010947183736378805,0.00010520536715440283,0.0,1.3602291236486372e-05 +102900,50.0,the Greater Atlanta and Macon Area,G1301390001403,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,227867.0,,39368.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01172952059743593,0.006694966741850518,0.0,0.01842448733928645,0.006675498805011301,0.002952140637161632,0.004539007984256357,0.0,0.004257839912857159,0.005959724114483769,0.002952140637161632,0.0022858691157188874,0.0,0.0005318044604330638,0.0007157746905275315,0.0022531388685374703,0.003726035452424096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004473182078421115,0.0,0.0,0.001397784532749978,0.0008039804002525769,0.0018451027405920895,0.0007102089226479978,0.00035180095272003154,0.00027240264998905323,0.0,6.337412028615049e-05,4.782384500643815e-05,0.00015054145592588927,0.00024895172227156246,0.0,0.0,0.0,0.0006685114713440155,0.00029563931304756497,0.00045455463248971617,0.0,0.00042639732371079283 +102901,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000201,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,45949.0,,1189.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002365230213435044,0.0002021793112728621,0.0,0.002567427255069326,0.0015518321529287016,0.0007771217410409144,0.00016962636770564518,0.0,6.884699339406502e-05,0.0014184821046884844,0.0007771217410409144,0.00016962636770564518,0.0,0.0,0.0001333500482402171,0.0,6.884699339406502e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3509005144613189e-05,0.0,0.0,0.00028186043998670315,9.374024114479584e-05,0.0002953694451313163,0.00016903808680851734,9.260826900012894e-05,2.0214084178056893e-05,0.0,0.0,8.910043645763025e-06,0.0,4.600146187541261e-06,0.0,0.0,0.0,0.00017853039498683275,8.940390306970522e-05,1.951465071110814e-05,0.0,7.92049636367021e-06 +102902,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5517.0,,530.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0013247192000824868,0.00042064817703811754,0.0,0.0017453673771206045,0.0008646197488707196,0.0002503543122088836,0.0005985510926513678,0.0,3.175951631589404e-05,0.0004758137952222356,0.0002503543122088836,0.0005985510926513678,0.0,0.0,0.0003888059536484841,0.0,3.175951631589404e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8102989837658283e-05,0.0,0.0,0.00015786533938794462,8.20215875673795e-05,0.00018596832922560292,5.6702209995557564e-05,2.9834449792552192e-05,7.132867959983488e-05,0.0,0.0,2.5975649867642854e-05,0.0,2.1218144116517457e-06,0.0,0.0,0.0,9.212495444839372e-05,2.6675170950381466e-05,6.377542522891003e-05,0.0,3.383966185975051e-06 +102904,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,5616.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0009740412074278235,0.0,0.0,0.0009740412074278233,0.000501204866860203,0.000193699966697458,0.00023885802895911985,0.0,4.0278344911042716e-05,0.000501204866860203,0.000193699966697458,0.00023885802895911985,0.0,4.0278344911042716e-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.00011607366241530792,3.0583847020020476e-05,0.00011607366241530792,5.97271286606747e-05,2.3082662594603988e-05,2.8464017751159826e-05,0.0,4.799853408869403e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.972712866067471e-05,2.3082662594603994e-05,2.8464017751159833e-05,0.0,4.799853408869404e-06 +102905,50.0,the Greater Atlanta and Macon Area,G1300890023114,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,47045.0,,2840.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0022440963842132434,0.00048297504508223836,0.0,0.002727071429295481,0.0012139978464310154,0.0007878486097000464,0.00046317023137603926,0.0,0.00026205474178838046,0.0009449041511588741,0.0007878486097000464,0.0002493066119273625,0.0,0.00026205474178838046,0.0002690936952721413,0.00021386361944867685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.226903860086706e-05,0.0,0.0,0.00026742485970271255,9.248294464571508e-05,0.00029969389830357954,0.00011260249864212644,9.388647715765463e-05,2.9709412744768356e-05,0.0,3.122858405288929e-05,1.7978972057465468e-05,1.4288881923776005e-05,0.0,0.0,0.0,0.0,0.00013341335442139613,8.658131157754838e-05,5.090049740835593e-05,0.0,2.8798734896279177e-05 +102907,50.0,the Greater Atlanta and Macon Area,G1302170100501,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,60589.0,,3309.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0053984245061911105,0.0009740881038890863,0.0,0.006372512610080198,0.002940493937808095,0.0011488040325419082,0.0022832453293364914,0.0,0.0,0.0019664058339190077,0.0011488040325419082,0.0022832453293364914,0.0,0.0,0.0009740881038890863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.508264941565688e-05,0.0,0.0,0.0006433210404837328,0.0002638200894025964,0.0007084036898993896,0.0002343332291929387,0.0001369010170799275,0.0002720904514389027,0.0,0.0,6.508264941565688e-05,0.0,0.0,0.0,0.0,0.0,0.0003268815431412423,0.00012770739979967564,0.00025381815858457153,0.0,0.0 +102908,50.0,the Greater Atlanta and Macon Area,G1301430010400,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,43547.0,,6444.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0022415786728915955,0.0010957895268435232,0.0,0.003337368199735119,0.0014185352957727445,0.0005975663709400396,0.0007460404174715618,0.0,0.0005752261155507731,0.0009890172903719654,0.0005975663709400396,0.0005557759090729752,0.0,9.92191025066155e-05,0.0004295180054007791,0.0001902645083985866,0.0004760070130441576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.3214219993051e-05,0.0,0.0,0.000267124474137521,0.0001439641595892578,0.0003403386941305721,0.00011785922430405978,7.121079644896517e-05,6.623071018868536e-05,0.0,1.1823743195810733e-05,2.8697870319105233e-05,1.2712356920302093e-05,3.180399275364368e-05,0.0,0.0,0.0,0.00014465963035775867,6.093872362007275e-05,7.60798348444293e-05,0.0,5.8660505308311426e-05 +102909,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010300,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,56427.0,,4379.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,32736.412774265485,0.0,0.0,0.002739447221566678,0.0007447106403650577,0.0,0.003484157861931736,0.00131300418460059,0.0007436113579570145,0.001093910108532998,0.0,0.00033366767156397365,0.0009363403865929884,0.0007436113579570145,0.0009839641373672505,0.0,7.5549070010845e-05,0.0003766637980076017,0.00010994597116574744,0.0002581186015531287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9757315422742766e-05,0.0,0.0,0.0003264545617634072,0.00012803165669546737,0.00037621187718615,0.00011158185058655026,8.86147095928786e-05,0.00011725707972261307,0.0,9.003034753821072e-06,2.5166525614036175e-05,7.345962405038521e-06,1.724601204524283e-05,0.0,0.0,0.0,0.0001417753697210452,8.029355613607146e-05,0.00011811806230155465,0.0,3.602871800011275e-05 +102910,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,8453.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017835780451881645,0.0,0.0,0.0017835780451881647,0.0011357335365881696,0.0003360388406028061,0.0002548204941908062,0.0,5.698517380638282e-05,0.0011357335365881696,0.0003360388406028061,0.0002548204941908062,0.0,5.698517380638282e-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.00021254145933464168,7.073056445352214e-05,0.00021254145933464168,0.0001353405666396151,4.004432873993273e-05,3.036588157709395e-05,0.0,6.790682377999913e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001353405666396151,4.004432873993272e-05,3.0365881577093947e-05,0.0,6.790682377999912e-06 +102911,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8759.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007803753089379863,0.0,0.0,0.0007803753089379866,0.0003208598338424826,0.0002580995889636804,0.0002014158861318233,0.0,0.0,0.0003208598338424826,0.0002580995889636804,0.0002014158861318233,0.0,0.0,0.0,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.299620264881068e-05,3.5881145445087124e-05,9.299620264881068e-05,3.8236404699280934e-05,3.075735662562915e-05,2.4002441323900596e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.823640469928093e-05,3.075735662562914e-05,2.400244132390059e-05,0.0,0.0 +102912,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,7307.0,,190.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014763212662466374,0.00015077499542675744,0.0,0.001627096261673395,0.0008667701327879419,0.00027806118191155154,0.00037540740770271644,0.0,0.00010669212512370656,0.0008227699695586303,0.00027806118191155154,0.00037540740770271644,0.0,0.0,4.400016322931154e-05,0.0,0.00010669212512370656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.007169091566728e-05,0.0,0.0,0.0001759296814375684,6.77730344632382e-05,0.00018600137235323568,9.804753338604654e-05,3.31358873385493e-05,4.473640470841026e-05,0.0,0.0,2.939187913952272e-06,0.0,7.1269782124030656e-06,0.0,0.0,0.0,9.908475485497433e-05,3.1786540631910655e-05,4.291466624873364e-05,0.0,1.2196501313255427e-05 +102913,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,109814.0,,13668.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.005652705176134134,0.002324308539277562,0.0,0.007977013715411697,0.003799935598822877,0.001068467039895222,0.002062111954597821,0.0,0.0010464813917343563,0.0029339138256218177,0.001068467039895222,0.0015010523978216703,0.0,0.00014925418243400449,0.000866021773201059,0.0005610595567761508,0.0008972272093003518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015529684230524565,0.0,0.0,0.0006736212301830994,0.0003503798883722988,0.0008289180724883449,0.0003496284661741706,0.00012732701589728817,0.00017887732179257935,0.0,1.778631342841877e-05,5.786256190734307e-05,3.7486751883464994e-05,5.9947528514437564e-05,0.0,0.0,0.0,0.0003948639684636094,0.00011102796996777696,0.00021428092361906894,0.0,0.00010874336801696144 +102914,50.0,the Greater Atlanta and Macon Area,G1300890021908,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,94096.0,,1544.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.009794129089479188,0.0005738641560645462,0.0,0.010367993245543735,0.004028053644803095,0.0021602246252936156,0.003967024877362064,0.0,0.00021269009808496243,0.004028053644803095,0.0021602246252936156,0.0033931607212975175,0.0,0.00021269009808496243,0.0,0.0005738641560645462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.834188772811711e-05,0.0,0.0,0.001167146040951598,0.00032763231956801534,0.0012054879286797153,0.0004800147947123478,0.0002574294861690112,0.0004043559224095809,0.0,2.5345837660658335e-05,0.0,3.834188772811711e-05,0.0,0.0,0.0,0.0,0.0004683423233296875,0.0002511695992999796,0.00046124650056919466,0.0,2.4729505480853592e-05 +102915,50.0,the Greater Atlanta and Macon Area,G1300670031110,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,4813.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011182823440291758,0.0,0.0,0.0011182823440291758,0.0004464527840447815,0.000404354883511474,0.00022297827080117283,0.0,4.44964056717474e-05,0.0004464527840447815,0.000404354883511474,0.00022297827080117283,0.0,4.44964056717474e-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.00013326470300932249,4.0499994923992666e-05,0.00013326470300932249,5.320337747535853e-05,4.818660846184288e-05,2.6572120354495483e-05,0.0,5.302596717625582e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.320337747535853e-05,4.818660846184288e-05,2.6572120354495483e-05,0.0,5.302596717625582e-06 +102916,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock 90.1-2004,gen5_led,100001_200000,Electricity,161154.0,,,,9.325022323477118,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,1398753.3485215676,0.0,0.0,0.04006020802256632,0.0,0.0,0.04006020802256632,0.017875695966614612,0.005516143688367784,0.015811749107715305,0.0,0.000856619259868622,0.017875695966614612,0.005516143688367784,0.015811749107715305,0.0,0.000856619259868622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0047738957376967615,0.00139951715643551,0.0047738957376967615,0.002130211324297509,0.0006573479305845824,0.0018842548602925869,0.0,0.00010208162252208384,0.0,0.0,0.0,0.0,0.0,0.0,0.002130211324297509,0.0006573479305845824,0.0018842548602925869,0.0,0.00010208162252208384 +102917,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,80354.0,,,,9.325022323477118,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,349688.3371303919,0.0,0.0,0.02061887508016624,0.0,0.0,0.02061887508016624,0.006027446042715698,0.0031698978286409545,0.0111960632216114,0.0,0.00022564475551429964,0.006027446042715698,0.0031698978286409545,0.0111960632216114,0.0,0.00022564475551429964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024571104587974174,0.000895498517724064,0.0024571104587974174,0.0007182787932810173,0.00037775043875042065,0.0013342126538048108,0.0,2.688963809089151e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0007182787932810173,0.00037775043875042065,0.0013342126538048108,0.0,2.688963809089151e-05 +102918,50.0,the Greater Atlanta and Macon Area,G1301210010113,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,103492.0,,1743.0,,4.088175128053588,Healthcare,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,153306.56730200956,0.0,0.0,0.011642390154983766,0.0006477574001979078,0.0,0.012290147555181674,0.005520100450570915,0.0017798313491230787,0.0046142010512033906,0.0,0.00037605345270806347,0.005520100450570915,0.0017798313491230787,0.003966443651005483,0.0,0.00037605345270806347,0.0,0.0006477574001979078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3278362886637706e-05,0.0,0.0,0.0013874027590753347,0.00043588943276652993,0.0014306811219619725,0.0006578204727331409,0.0002120993105015538,0.0004726739777541431,0.0,4.4813615666679285e-05,0.0,4.3278362886637706e-05,0.0,0.0,0.0,0.0,0.0006425881764646434,0.0002071880016113327,0.0005371335297036794,0.0,4.377592483917846e-05 +102919,85.0,Rural Climate Zone 3A,G1302870970200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7333.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005368533700622635,0.0,0.0,0.0005368533700622635,0.00029520101293550996,0.00020392834662506573,3.778475770056327e-05,0.0,0.0,0.00029520101293550996,0.00020392834662506573,3.778475770056327e-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,6.397462377054012e-05,1.560835570913281e-05,6.397462377054012e-05,3.5177899203727265e-05,2.4301308288283245e-05,4.5026552741472095e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5177899203727265e-05,2.4301308288283245e-05,4.5026552741472095e-06,0.0,0.0 +102920,50.0,the Greater Atlanta and Macon Area,G1301210010511,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,57185.0,,5076.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008708973716736904,0.0014942462410288506,0.0,0.010203219957765757,0.003266417556689698,0.002529774936725938,0.004407027464350119,0.0,0.0,0.0017721713156608474,0.002529774936725938,0.004407027464350119,0.0,0.0,0.0014942462410288506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.983637713482682e-05,0.0,0.0,0.0010378329613877097,0.0003850107331885858,0.0011376693385225366,0.00021118651455843097,0.000301468795247485,0.0005251776515817938,0.0,0.0,9.983637713482682e-05,0.0,0.0,0.0,0.0,0.0,0.0003642088592071576,0.0002820724624960558,0.000491388016819323,0.0,0.0 +102921,50.0,the Greater Atlanta and Macon Area,G1300670030318,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,10737.0,,1218.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002556144820987035,0.0009661840354225893,0.0,0.003522328856409624,0.0019815787797200666,0.00048193411867894433,0.0009839660562765405,0.0,7.493260880781252e-05,0.0010903273531052897,0.00048193411867894433,0.0009839660562765405,0.0,0.0,0.0008912514266147767,0.0,7.493260880781252e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.455729636023109e-05,0.0,0.0,0.0003046066673484177,0.00014781776877388045,0.0003691639637086488,0.00012993042437242573,5.7430371146030864e-05,0.0001172557277371425,0.0,0.0,5.955054148072678e-05,0.0,5.006754879504311e-06,0.0,0.0,0.0,0.00020768290143926736,5.050996563657126e-05,0.00010312631906268891,0.0,7.853445832629752e-06 +102922,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9112.0,,77.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,9613.75315558068,0.0,0.0,0.0006839223385398578,2.2476463583936345e-05,0.0,0.0007063988021237942,0.0004516857972388074,0.00019518074998699323,5.953225489799358e-05,0.0,0.0,0.00042920933365487104,0.00019518074998699323,5.953225489799358e-05,0.0,0.0,2.2476463583936345e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5019217135324035e-06,0.0,0.0,8.150030810871965e-05,2.1943596524165733e-05,8.300222982225205e-05,5.114717119884165e-05,2.325891459371286e-05,7.094222316165143e-06,0.0,0.0,1.5019217135324035e-06,0.0,0.0,0.0,0.0,0.0,5.307331812730406e-05,2.293384051415882e-05,6.995071180789183e-06,0.0,0.0 +102923,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,42667.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0035637040484319833,0.0,0.0,0.0035637040484319833,0.002289744167214359,0.0009157032758493421,0.0003582869789677205,0.0,0.0,0.002289744167214359,0.0009157032758493421,0.0003582869789677205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042468070997421834,0.00011762676434590547,0.00042468070997421834,0.00027286502060118494,0.00010912284298257666,4.2696465962003255e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027286502060118494,0.00010912284298257666,4.2696465962003255e-05,0.0,0.0 +102924,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960100,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,18996.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0015716515293070304,0.0,0.0,0.0015716515293070304,0.0008930749442682168,0.0005680166830853968,0.00011055990195341663,0.0,0.0,0.0008930749442682168,0.0005680166830853968,0.00011055990195341663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018729022473540718,4.498672434783041e-05,0.00018729022473540718,0.00010642575908115293,6.768928750728296e-05,1.3175178146971284e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010642575908115293,6.768928750728296e-05,1.3175178146971284e-05,0.0,0.0 +102925,50.0,the Greater Atlanta and Macon Area,G1300890021414,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,31980.0,,12124.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.006658912428915424,0.008339885109579314,0.0,0.014998797538494741,0.007709036244526,0.0008202613085055436,0.002338716534848061,0.0003682103311941472,0.003762429679478955,0.004321486853545644,0.0008202613085055436,0.0007448118989971208,0.0003682103311941472,0.00040407031670195267,0.0033875493909803563,0.0015939046358509398,0.003358359362777003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005572215757141298,0.0,0.0,0.0007935285348344956,0.0007982083360581161,0.0013507501105486255,0.0005149824641498021,9.774880827286178e-05,8.875766144213254e-05,4.387884774616355e-05,4.8152206506015856e-05,0.00022633592485385342,0.00010649523837046215,0.00022438562058743974,0.0,0.0,0.0,0.0006942544249158449,7.387045863503385e-05,0.0002106183252277537,3.3160001279379544e-05,0.00033883398268723223 +102926,50.0,the Greater Atlanta and Macon Area,G1300670030330,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,34380.0,,12360.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007563516423335325,0.008502259123958657,0.0,0.016065775547293985,0.005082005426195183,0.0014807305215883057,0.0051029476577317415,0.0003669193717158662,0.004033100850091871,0.0034130099806908985,0.0014807305215883057,0.0018588382087826075,0.0003669193717158662,0.00044387490061561683,0.0016689954455042847,0.003244109448949134,0.0035892259494762547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005680735699001702,0.0,0.0,0.0009013292825385529,0.0007819198943456573,0.001469402852438723,0.0004067216444063063,0.00017645572561176344,0.00022151407034804254,4.3725055324507514e-05,5.2895693393936074e-05,0.00011151297402863703,0.0002167533133186085,0.00023981207448167847,0.0,0.0,0.0,0.0004648087636589725,0.00013543010393179622,0.0004667241753778568,3.3559062855520175e-05,0.00036887418698540285 +102927,50.0,the Greater Atlanta and Macon Area,G1300970080201,ComStock 90.1-2004,gen5_led,25001_50000,NaturalGas,47298.0,,6973.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004496416539966466,0.0020315381983940306,0.0,0.006527954738360497,0.004771206494079807,0.0013136581756827662,0.00044302932139904806,0.0,0.0,0.002739668295685776,0.0013136581756827662,0.00044302932139904806,0.0,0.0,0.0020315381983940306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001357351848579607,0.0,0.0,0.0005358289073989409,0.0002566830299176993,0.0006715640922569016,0.0003264807556116178,0.00015654600029049625,5.27949123754261e-05,0.0,0.0,0.0001357351848579607,0.0,0.0,0.0,0.0,0.0,0.0004908384151835694,0.00013514273545803124,4.557669224025073e-05,0.0,0.0 +102928,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,14616.0,,2096.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0012303463164749047,0.0006169224657964213,0.0,0.0018472687822713258,0.0009279309360173414,0.000392888339823191,0.0005264801960370913,0.0,0.0,0.0003110084702209201,0.000392888339823191,0.0005264801960370913,0.0,0.0,0.0006169224657964213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1218818371083394e-05,0.0,0.0,0.00014661910730176138,8.470809971710407e-05,0.0001878379256728448,3.70625600747331e-05,4.682010006677847e-05,6.274010440912238e-05,0.0,0.0,4.1218818371083394e-05,0.0,0.0,0.0,0.0,0.0,9.435585328023884e-05,3.995051044098483e-05,5.35346825976484e-05,0.0,0.0 +102929,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,FuelOil,31609.0,,2801.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002816354480333887,0.0008245683420066783,0.0,0.003640922822340566,0.001713646236451128,0.000826041443108968,0.0011012658323867666,0.0,0.0,0.0008890778944444497,0.000826041443108968,0.0011012658323867666,0.0,0.0,0.0008245683420066783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.509256957778271e-05,0.0,0.0,0.00033562099661934273,0.00015816757662171185,0.0003907135661971254,0.00010595016042522376,9.843819530567216e-05,0.00013123629812560335,0.0,0.0,5.509256957778271e-05,0.0,0.0,0.0,0.0,0.0,0.00018389426662268168,8.864389986059851e-05,0.00011817869306723573,0.0,0.0 +102930,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,124531.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.01671438820909897,0.0,0.0,0.01671438820909897,0.005392624170600845,0.006055703804269011,0.0052660909238354155,0.0,0.0,0.005392624170600845,0.006055703804269011,0.0052660909238354155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019918221205952043,0.0006507131130292508,0.0019918221205952043,0.0006426288522610638,0.0007216468016788854,0.0006275501238777591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006426288522610638,0.0007216468016788854,0.0006275501238777591,0.0,0.0 +102931,50.0,the Greater Atlanta and Macon Area,G1300890023111,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,29810.0,,1160.0,,3.20458438519356,Mercantile,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,56080.226740887294,0.0,0.0,0.002497621081766332,0.0003380581617421778,0.0,0.00283567924350851,0.0016924169606715314,0.0009035538360742414,0.0002397084467627374,0.0,0.0,0.0013543587989293538,0.0009035538360742414,0.0002397084467627374,0.0,0.0,0.0003380581617421778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.258770872366084e-05,0.0,0.0,0.00029763623956553093,8.90112609616625e-05,0.00032022394828919176,0.00016139608320840358,0.00010767460603910272,2.856555031802469e-05,0.0,0.0,2.258770872366084e-05,0.0,0.0,0.0,0.0,0.0,0.0001911190916738835,0.00010203536861296999,2.7069488002338278e-05,0.0,0.0 +102932,50.0,the Greater Atlanta and Macon Area,G1300210011800,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,13353.0,,1235.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006512361749585395,0.00021003386138194547,0.0,0.000861252305979065,0.0005655630685768443,0.00012177212223292266,5.8049203289252876e-05,0.0,0.0001159033726028852,0.0003555292071948988,0.00012177212223292266,5.8049203289252876e-05,0.0,0.0001159033726028852,0.00021003386138194547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4032768621926777e-05,0.0,0.0,7.76059921507264e-05,3.635742437343409e-05,9.163876077265317e-05,4.236742049023593e-05,1.4511242964638958e-05,6.917561075455437e-06,0.0,1.3811880497938973e-05,1.4032768621926777e-05,0.0,0.0,0.0,0.0,0.0,6.017690563306414e-05,1.2956768069718621e-05,6.176537370451188e-06,0.0,1.2332322782724321e-05 +102933,50.0,the Greater Atlanta and Macon Area,G1301210010001,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,18072.0,,6206.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0037629317192760647,0.004268772674849169,0.0,0.00803177611409625,0.0022257575804984736,0.00027246416988830637,0.003703475863304123,0.0003691426908173501,0.001460935809587997,0.0022257575804984736,0.00027246416988830637,0.0007068003143588468,0.0003691426908173501,0.0001887669637130883,0.0,0.0029966755489452762,0.0012721688458749087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002852155279996815,0.0,0.0,0.00044842397934789254,0.0003991320803697418,0.000733639507347574,0.0002652408137511674,3.246922251210559e-05,8.422853062827074e-05,4.399028382990457e-05,2.2495128626444305e-05,0.0,0.00020022110897867425,8.499921094856099e-05,0.0,0.0,0.0,0.00020330542978733984,2.4887456588325834e-05,0.00033828335964937337,3.371827824693685e-05,0.0001334449830755981 +102934,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,276715.0,,26094.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014243969532582142,0.004437537125849395,0.0,0.018681506658431532,0.006730551577220565,0.004312697651090804,0.005883306256763341,0.0,0.0017549511733568265,0.006264455836210217,0.004312697651090804,0.0019118648719242941,0.0,0.0017549511733568265,0.00046609574101034805,0.003971441384839047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029649053316172755,0.0,0.0,0.001697425629874024,0.0006734790499107168,0.0019939161630357512,0.0007465227912257059,0.0005139356350147976,0.00022783314911175732,0.0,0.00020913405452176328,3.114181827382838e-05,0.0002653487148878992,0.0,0.0,0.0,0.0,0.0007183658053569747,0.00046030321376221617,0.0006279375455060159,0.0,0.00018730959841054503 +102935,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2004,gen5_led,5001_10000,Electricity,8589.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027270176353324446,0.0,0.0,0.0027270176353324446,0.0019006085545292845,0.000395753347842586,0.00035903140710233356,0.0,7.162432585824023e-05,0.0019006085545292845,0.000395753347842586,0.00035903140710233356,0.0,7.162432585824023e-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.00032497434655637323,0.0001063675452406162,0.00032497434655637323,0.00022649249314161883,4.71612958956765e-05,4.278520072792722e-05,0.0,8.53535679115065e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00022649249314161883,4.71612958956765e-05,4.278520072792722e-05,0.0,8.53535679115065e-06 +102936,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,7006.0,,43.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013238094222713546,3.448884974929119e-05,0.0,0.0013582982720206458,0.0008074691609168584,0.0002549859083382848,0.00026135435301621147,0.0,3.448884974929119e-05,0.0008074691609168584,0.0002549859083382848,0.00026135435301621147,0.0,0.0,0.0,0.0,3.448884974929119e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3026285209742695e-06,0.0,0.0,0.0001577588990569316,4.028420056036338e-05,0.0001600615275779059,9.622642330956037e-05,3.0386772822224174e-05,3.1145702925147065e-05,0.0,0.0,0.0,0.0,2.3026285209742695e-06,0.0,0.0,0.0,9.515196332844762e-05,3.0047475462624606e-05,3.0797931385628856e-05,0.0,4.064157401204819e-06 +102937,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,121522.0,,1893.0,,4.088175128053588,Healthcare,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.012476566221949164,0.0007035551304297071,0.0,0.013180121352378872,0.005967179764053206,0.0022295068069981,0.004709328431563854,0.0,0.0002741063497637137,0.005967179764053206,0.0022295068069981,0.004005773301134146,0.0,0.0002741063497637137,0.0,0.0007035551304297071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7006790211385865e-05,0.0,0.0,0.0014868086583214647,0.0004511935902683596,0.0015338154485328506,0.0007110974591187554,0.00026568608425287963,0.000477360382772749,0.0,3.266473217708072e-05,0.0,4.700679021138586e-05,0.0,0.0,0.0,0.0,0.0006944209587740615,0.0002594552729642071,0.0005480405306923749,0.0,3.1898686102207246e-05 +102938,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,153169.0,,3630.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013247352696041196,0.0010685200224671177,0.0,0.014315872718508309,0.002955317017649885,0.005986836327736967,0.00537371937312146,0.0,0.0,0.0018867969951827672,0.005986836327736967,0.00537371937312146,0.0,0.0,0.0010685200224671177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.13931420105028e-05,0.0,0.0,0.001578661570009394,0.0005010573649084935,0.001650054712019897,0.00022484597300669403,0.000713439783282805,0.0006403758137198946,0.0,0.0,7.13931420105028e-05,0.0,0.0,0.0,0.0,0.0,0.00034063133043794614,0.0006900457755469352,0.000619377606035016,0.0,0.0 +102939,50.0,the Greater Atlanta and Macon Area,G1301350050427,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,2983.0,,537.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.00014580631952038593,0.0001579287140079785,0.0,0.0003037350335283645,0.0001935900365259091,7.755263511429493e-05,3.259236188816036e-05,0.0,0.0,3.566132251793063e-05,7.755263511429493e-05,3.259236188816036e-05,0.0,0.0,0.0001579287140079785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.055189357468767e-05,0.0,0.0,1.7376683288149674e-05,1.7507370160294957e-05,2.792857686283735e-05,4.249990734756877e-06,9.242449730405015e-06,3.8842428229877824e-06,0.0,0.0,1.055189357468767e-05,0.0,0.0,0.0,0.0,0.0,1.7800693427379806e-05,7.131000680245525e-06,2.9968827552120097e-06,0.0,0.0 +102940,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,21865.0,,11006.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004448216042330229,0.007571047020291964,0.0,0.012019263062622193,0.002188965235367465,0.00029283264165674,0.008104428444735063,0.0003692861307593813,0.0010638223300745585,0.0015062628312698635,0.00029283264165674,0.0012160838285407009,0.0003692861307593813,0.0010638223300745585,0.0006827024040976016,0.006888344616194362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005058512841723907,0.0,0.0,0.0005300890958745417,0.0006240206504698797,0.0010359403800469322,0.0001794997128689356,3.489654926406362e-05,0.00014491939488647137,4.4007428890684185e-05,0.0001267745567557814,4.561401968509139e-05,0.00046023726448729925,0.0,0.0,0.0,0.0,0.00018866693124373408,2.5239247739856702e-05,0.000698520752841427,3.182877458058343e-05,9.169085518620973e-05 +102941,50.0,the Greater Atlanta and Macon Area,G1301390000101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,130813.0,,6172.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006422220592125847,0.001049637396067126,0.0,0.007471857988192973,0.0032416242480668342,0.0016247925901722187,0.0013268161361468117,0.0,0.001278607283445688,0.0023895917300261965,0.0016247925901722187,0.001129228988481743,0.0,0.001278607283445688,0.0008520325180406374,0.00019758714766506842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.013024109909901e-05,0.0,0.0,0.0007653234753289492,0.00026822943122551947,0.0008354537164280482,0.0002847629758596633,0.00019362335721135885,0.0001345680114081803,0.0,0.0001523691308497467,5.6927512432723017e-05,1.320154403392499e-05,0.0,0.0,0.0,0.0,0.0003624569724946932,0.00018167355563089652,0.0001483558003527634,0.0,0.00014296540545800885 +102942,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,530980.0,,2426.0,,7.614023970037612,Education,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,2664908.3895131643,0.16255831154923764,0.0,0.11124950689584757,0.001679470953037168,0.0,0.27548728939812234,0.24966239248022118,0.01610731863884199,0.005220129422352635,0.0007760841624682755,0.003721364694238338,0.0871040809309835,0.01610731863884199,0.005220129422352635,0.0007760841624682755,0.0020418937412011702,0.0,0.0,0.001679470953037168,0.0,0.0,0.0,0.16255831154923764,0.0,0.0,0.0,0.00011221349820051907,0.0,0.0,0.013257386511190636,0.004044112152775647,0.013369600009391155,0.010380023245273193,0.0019194777110693312,0.0006220726304464214,9.24844342608015e-05,0.00024332849014088872,0.0,0.0,0.00011221349820051905,0.0,0.0,0.0,0.012116298839560667,0.0007816999756889544,0.0002533367057572294,3.7663933056560477e-05,0.00018060055532774757 +102943,35.0,Eastern Counties in South Carolina and Georgia,G1300510003800,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,223189.0,,4944.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.018043102636402655,0.0014403464589376293,0.0,0.01948344909534028,0.015171886281551973,0.0025195204469609512,0.0017920423668273578,0.0,0.0,0.013731539822614346,0.0025195204469609512,0.0017920423668273578,0.0,0.0,0.0014403464589376293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.623530050419325e-05,0.0,0.0,0.0021501624184626215,0.0005857244212211473,0.0022463977189668147,0.001636361631875903,0.0003002464868028747,0.0002135542997838436,0.0,0.0,9.623530050419325e-05,0.0,0.0,0.0,0.0,0.0,0.0017492842549861173,0.0002904950225828832,0.0002066184413978145,0.0,0.0 +102944,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,61260.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004998600315344638,0.0,0.0,0.004998600315344638,0.0017745957945583656,0.0012367604441911244,0.001987244076595148,0.0,0.0,0.0017745957945583656,0.0012367604441911244,0.001987244076595148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005956726539457247,0.00018915508563364743,0.0005956726539457247,0.00021147483694195328,0.0001473821329192684,0.000236815684084503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021147483694195328,0.0001473821329192684,0.000236815684084503,0.0,0.0 +102945,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,140807.0,,2857.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006920301905137969,0.0004858650939937069,0.0,0.0074061847294930976,0.004362413584512632,0.0017234088603905523,0.0006960230679055929,0.0,0.0006243037559614792,0.003876548490518925,0.0017234088603905523,0.0006960230679055929,0.0,0.0006243037559614792,0.0004858650939937069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2463123939277004e-05,0.0,0.0,0.0008246796053421437,0.00028339044279285865,0.0008571427292814207,0.0004619611287301336,0.00020537545302392395,8.294378436340326e-05,0.0,7.43971263302372e-05,3.2463123939277004e-05,0.0,0.0,0.0,0.0,0.0,0.0005048768323578429,0.000199455918022186,8.055309634549988e-05,0.0,7.225277856687884e-05 +102946,35.0,Eastern Counties in South Carolina and Georgia,G1300730030105,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,27448.0,,1189.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002353555217364529,0.0003499842702190025,0.0,0.0027035701771898294,0.0008880344478303278,0.0007546267292542138,0.0010608783104989897,0.0,0.0,0.0005380501776113252,0.0007546267292542138,0.0010608783104989897,0.0,0.0,0.0003499842702190025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.338474720263848e-05,0.0,0.0,0.00028047007708973694,0.00010440802008025242,0.00030385482429237545,6.411873138960304e-05,8.992787395271214e-05,0.00012642347174742172,0.0,0.0,2.3384747202638475e-05,0.0,0.0,0.0,0.0,0.0,9.980637950058093e-05,8.481265778061184e-05,0.0001192323377998369,0.0,0.0 +102947,50.0,the Greater Atlanta and Macon Area,G1301350050607,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,35100.0,,2630.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008428016228182907,0.002085955106779072,0.0,0.010514054042035717,0.0066714006890337555,0.0015400884200996434,0.0021550982204251333,0.0,0.00014746671247718512,0.004732912294731868,0.0015400884200996434,0.0021550982204251333,0.0,0.0,0.0019384883943018875,0.0,0.00014746671247718512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013937351679868662,0.0,0.0,0.0010043534485648068,0.00047122625219838386,0.0011437269653634932,0.0005640137199870568,0.0001835299166427083,0.00025681966800703774,0.0,0.0,0.00012952049826444697,0.0,9.853018534239653e-06,0.0,0.0,0.0,0.0007257201488870352,0.00016753201458444988,0.00023443325836566297,0.0,1.6041543526345206e-05 +102948,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,120574.0,,1677.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,140298.9118897092,0.0,0.0,0.005725399657956352,0.0002852460545258095,0.0,0.006010645712482161,0.0027207239599071026,0.002430229718400957,0.0006837181970800762,0.0,0.00017593837637118394,0.002611434012113897,0.002430229718400957,0.0006837181970800762,0.0,0.0,0.00010928994779320547,0.0,0.00017593837637118394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9058143494815923e-05,0.0,0.0,0.0006822844066383806,0.00020546339651857922,0.0007013425501331966,0.00031119935932409615,0.00028960560667759706,8.147732774503888e-05,0.0,0.0,7.3019888427427485e-06,0.0,1.175497003350686e-05,0.0,0.0,0.0,0.00031746330952215463,0.00028356745508611043,7.977856071549904e-05,0.0,2.0529087131888828e-05 +102949,35.0,Eastern Counties in South Carolina and Georgia,G1300730030202,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,20066.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,24034.3828889517,0.0,0.0,0.001658945254091129,0.0,0.0,0.001658945254091129,0.001120087226465974,0.00043473732875254177,0.00010412069887261326,0.0,0.0,0.001120087226465974,0.00043473732875254177,0.00010412069887261326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019769163718729357,6.482503844647756e-05,0.00019769163718729357,0.0001334775074985504,5.1806371581927796e-05,1.2407758106815381e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001334775074985504,5.1806371581927796e-05,1.2407758106815381e-05,0.0,0.0 +102950,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,15058.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.005238169808205297,0.0,0.0,0.005238169808205297,0.0027095664427734508,0.0011297786272789394,0.0012718693799630694,0.0,0.0001270380652635762,0.0027095664427734508,0.0011297786272789394,0.0012718693799630694,0.0,0.0001270380652635762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006242226858711661,0.0001943889990790721,0.0006242226858711661,0.00032289385498824127,0.00013463355999937044,0.00015156624346049184,0.0,1.513888346698631e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00032289385498824127,0.00013463355999937044,0.00015156624346049184,0.0,1.513888346698631e-05 +102951,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,92844.0,,5058.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009261110423638877,0.001488967628745646,0.0,0.010750078052384522,0.003040419295913415,0.002658824731207778,0.00505080333565703,0.0,0.0,0.0015514516671677689,0.002658824731207778,0.00505080333565703,0.0,0.0,0.001488967628745646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.948365059278945e-05,0.0,0.0,0.0011036300107632713,0.00042011118974475233,0.0012031136613560606,0.00018488372795605766,0.0003168474008506124,0.0006018952247309576,0.0,0.0,9.948365059278945e-05,0.0,0.0,0.0,0.0,0.0,0.0003402738076262259,0.0002975669889725013,0.0005652694300767273,0.0,0.0 +102953,81.0,the Columbus-Albany Area,G1300950001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,15910.0,,2584.0,,8.53126424238864,Food Service,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.004653295483244567,0.002003891926004254,0.0,0.006657187409248821,0.0020220856021946733,0.0008430545242724701,0.002818968619335014,0.00041966746412565895,0.0005534111993210039,0.0020220856021946733,0.0008430545242724701,0.0008150766933307597,0.00041966746412565895,0.0005534111993210039,0.0,0.002003891926004254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013388845047417305,0.0,0.0,0.0005545227468904116,0.00029651400874260896,0.0006884111973645846,0.00024096738894275154,0.00010046490970996628,9.713085458243433e-05,5.0010826912979575e-05,6.594876674227982e-05,0.0,0.00013388845047417305,0.0,0.0,0.0,0.0,0.00020910127430791298,8.717918526549767e-05,0.00029150592333836373,4.339727330979599e-05,5.7227541143014214e-05 +102954,50.0,the Greater Atlanta and Macon Area,G1300770170404,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,12121.0,,1272.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026041149237558334,0.0010092744208407684,0.0,0.003613472051670341,0.002638355652283907,0.0005021146446713354,0.00039550522662136814,0.0,7.741382101999174e-05,0.0016290812314431384,0.0005021146446713354,0.00039550522662136814,0.0,7.741382101999174e-05,0.0010092744208407684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.743637145622965e-05,0.0,0.0,0.0003103299457713267,0.00016390252811018804,0.0003777663172275563,0.00019413609038486385,5.9836533722217004e-05,4.7131988841976895e-05,0.0,9.225332822269001e-06,6.743637145622965e-05,0.0,0.0,0.0,0.0,0.0,0.0002758238846317017,5.249300324761947e-05,4.134764314447641e-05,0.0,8.093139686999145e-06 +102955,50.0,the Greater Atlanta and Macon Area,G1301350050209,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,99754.0,,7108.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008887986190271405,0.0020922025301332915,0.0,0.010980188720404696,0.003487843066127623,0.002764396976871876,0.0047279179877989,0.0,0.0,0.001395640535994332,0.002764396976871876,0.0047279179877989,0.0,0.0,0.0020922025301332915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013978929293498681,0.0,0.0,0.0010591624615219094,0.000431479553724579,0.0011989517544568964,0.00016631552230825133,0.0003294273240266964,0.0005634159579716765,0.0,0.0,0.00013978929293498681,0.0,0.0,0.0,0.0,0.0,0.00038084550911524843,0.00030185078688827117,0.0005162521073855355,0.0,0.0 +102956,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,30382.0,,2698.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002726710140338297,0.0007941242525593571,0.0,0.003520865082503952,0.0017018000484202145,0.0008254276509830141,0.0009936066934944253,0.0,0.0,0.0009076757958608576,0.0008254276509830141,0.0009936066934944253,0.0,0.0,0.0007941242525593571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.305959072703228e-05,0.0,0.0,0.00032493758791394785,0.00015678623952367912,0.00037799717864098013,0.00010816624009705253,9.836486318806886e-05,0.0001184064846288265,0.0,0.0,5.3059590727032274e-05,0.0,0.0,0.0,0.0,0.0,0.00018270385312703965,8.861723352998738e-05,0.00010667279717306925,0.0,0.0 +102957,50.0,the Greater Atlanta and Macon Area,G1301210009000,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,31832.0,,2179.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002665374471461036,0.0006348386018484508,0.0,0.003300182699710049,0.0019943305390827844,0.0008982384561726345,0.000407674451653505,0.0,0.0,0.001359491937234334,0.0008982384561726345,0.000407674451653505,0.0,0.0,0.0006348386018484508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.241543064335498e-05,0.0,0.0,0.00031762667002949515,0.00012346371805049258,0.0003600421006728502,0.00016200759089546993,0.00010704105287320386,4.858164581422725e-05,0.0,0.0,4.241543064335498e-05,0.0,0.0,0.0,0.0,0.0,0.00021757672894608834,9.799568390378725e-05,4.4476315198208936e-05,0.0,0.0 +102958,85.0,Rural Climate Zone 3A,G1303190960300,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,5735.0,,152.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00022748053701927755,2.5833136589016934e-05,0.0,0.0002533136736082944,0.00010842116008362288,5.5549222329025436e-05,2.512392213221482e-05,0.0,6.42016387020112e-05,8.258802349460595e-05,5.5549222329025436e-05,2.512392213221482e-05,0.0,6.42016387020112e-05,2.5833136589016934e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.725651133273886e-06,0.0,0.0,2.7108045897065017e-05,9.018563939292985e-06,2.88336970303389e-05,9.841720794117599e-06,6.619603101754066e-06,2.993928373822378e-06,0.0,7.650680763310396e-06,1.725651133273886e-06,0.0,0.0,0.0,0.0,0.0,1.2341153310038663e-05,6.322949030310898e-06,2.859757030306588e-06,0.0,7.307819482526575e-06 +102959,50.0,the Greater Atlanta and Macon Area,G1300130180203,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,28726.0,,3460.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024411740433444703,0.001018403895382969,0.0,0.003459547249121142,0.001475310753943168,0.0009099161371205899,0.0010743510476636812,0.0,0.0,0.00045690685856019904,0.0009099161371205899,0.0010743510476636812,0.0,0.0,0.001018403895382969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.804329931121967e-05,0.0,0.0,0.0002909087425101148,0.00015563291042511936,0.00035895204182133454,5.444847327882164e-05,0.00010843248147795428,0.00012802778775333886,0.0,0.0,6.804329931121967e-05,0.0,0.0,0.0,0.0,0.0,0.0001530737317096631,9.441011548218925e-05,0.00011147137888916991,0.0,0.0 +102960,50.0,the Greater Atlanta and Macon Area,G1300350150100,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8260.0,,599.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0004251917972142863,0.00010189638708104346,0.0,0.0005270881842953297,0.00029301195282779266,0.00010863392442066353,3.4396901154902436e-05,0.0,9.104540589197114e-05,0.00019111556574674917,0.00010863392442066353,3.4396901154902436e-05,0.0,9.104540589197114e-05,0.00010189638708104346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.808324504607071e-06,0.0,0.0,5.066988048140719e-05,2.1569991813895904e-05,5.7478204986014254e-05,2.2775140390687968e-05,1.2945847033467406e-05,4.09906042841958e-06,0.0,1.0849832628832237e-05,6.808324504607071e-06,0.0,0.0,0.0,0.0,0.0,3.1952530126442136e-05,1.1846372509059114e-05,3.750932375971059e-06,0.0,9.928369974541953e-06 +102961,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3068.0,,483.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.00015289561857515527,0.00014227701479615007,0.0,0.00029517263337130534,0.00017084903825931137,9.102537227898645e-05,3.3298222833007524e-05,0.0,0.0,2.8572023463161288e-05,9.102537227898645e-05,3.3298222833007524e-05,0.0,0.0,0.00014227701479615007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.5055145757677e-06,0.0,0.0,1.82216989908504e-05,1.704059967670661e-05,2.77272135666181e-05,3.4051388519634125e-06,1.0848165236222859e-05,3.968394902664128e-06,0.0,0.0,9.5055145757677e-06,0.0,0.0,0.0,0.0,0.0,1.6048804109519956e-05,8.55052146377514e-06,3.1278879933230034e-06,0.0,0.0 +102962,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001200,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,39305.0,,10348.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0027944645330531025,0.0017597561013016605,0.0,0.0045542206343547635,0.002579927159870463,0.0005920167678155631,0.0006711473708332587,0.0,0.0007111647965583179,0.001822645693258588,0.0005920167678155631,0.0002599448287793942,0.0,0.000119874973560977,0.0007572814666118752,0.0004112025420538646,0.0005912898229973408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011757695413713677,0.0,0.0,0.0003330113436649166,0.0002209270197263627,0.00045058829780205334,0.00021720142952538304,7.054958006821669e-05,3.097716062833558e-05,0.0,1.4285286338461007e-05,5.059726640690017e-05,2.7474229180043285e-05,3.9506643192707114e-05,0.0,0.0,0.0,0.00025525442896861704,5.857332112283173e-05,6.64023936646466e-05,0.0,7.036166248088593e-05 +102963,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,18075.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004248827792135701,0.0,0.0,0.004248827792135701,0.002291564892094991,0.0015582012692485516,0.0003343846991280199,0.0,6.46769316641384e-05,0.002291564892094991,0.0015582012692485516,0.0003343846991280199,0.0,6.46769316641384e-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.0005063271791339702,0.00017540110678888817,0.0005063271791339702,0.00027308275232159376,0.00018568878094845436,3.9848181601624264e-05,0.0,7.707464262297842e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00027308275232159376,0.00018568878094845436,3.9848181601624264e-05,0.0,7.707464262297842e-06 +102964,50.0,the Greater Atlanta and Macon Area,G1300890021303,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,81300.0,,5562.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.007471047067506466,0.00163719842716355,0.0,0.00910824549467002,0.001650763233147135,0.002891022292456198,0.0045664599690666855,0.0,0.0,1.3564805983584631e-05,0.002891022292456198,0.0045664599690666855,0.0,0.0,0.00163719842716355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001093887602290871,0.0,0.0,0.0008903103239829586,0.0003540955305009443,0.0009996990842120457,1.6164918653152033e-06,0.0003445175717113638,0.0005441762604062798,0.0,0.0,0.0001093887602290871,0.0,0.0,0.0,0.0,0.0,0.00018118379586867887,0.00031731164249979157,0.0005012036458435752,0.0,0.0 +102965,46.0,the Tallahassee-Valdosta Area,G1301850010800,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,149570.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012859650899682313,0.0,0.0,0.01285965089968231,0.002258969850755009,0.005657475472950019,0.004943205575977285,0.0,0.0,0.002258969850755009,0.005657475472950019,0.004943205575977285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015324606006929004,0.000411203693547031,0.0015324606006929004,0.0002691972217162359,0.0006741907948602647,0.0005890725841163997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000269197221716236,0.0006741907948602648,0.0005890725841163999,0.0,0.0 +102966,50.0,the Greater Atlanta and Macon Area,G1300630040616,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,14154.0,,1245.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0012481423216955357,0.00036284301888338326,0.0,0.0016109549669794812,0.0011847829932683854,0.0003152172149649884,0.00011098513234554515,0.0,0.0,0.000821939974385002,0.0003152172149649884,0.00011098513234554515,0.0,0.0,0.00036284301888338326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4242097245801854e-05,0.0,0.0,0.00014873850181612848,5.800888623017601e-05,0.0001729805990619303,9.794886227937246e-05,3.7563774167079095e-05,1.3225865369676914e-05,0.0,0.0,2.4242097245801854e-05,0.0,0.0,0.0,0.0,0.0,0.00012721924332758996,3.3847291697739595e-05,1.1917325483093126e-05,0.0,0.0 +102967,50.0,the Greater Atlanta and Macon Area,G1302230120603,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,82857.0,,4774.0,,3.3063363735822096,Lodging,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,123987.61400933286,0.0,0.0,0.00823638434773323,0.001434842684630451,0.0,0.009671227032363686,0.00280071038238999,0.000852895612302939,0.004200485820174211,0.0,0.0018171038794743393,0.00280071038238999,0.000852895612302939,0.00276564313554376,0.0,0.0018171038794743393,0.0,0.001434842684630451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.586770774289537e-05,0.0,0.0,0.0009815127697898015,0.00048265820301826134,0.0010773804775326967,0.00033375482356590104,0.00010163779389477081,0.00032957593278958383,0.0,0.00021654048505270393,0.0,9.586770774289537e-05,0.0,0.0,0.0,0.0,0.0003120008122146872,9.501308148319842e-05,0.0004679366334452142,0.0,0.0002024264593151741 +102968,35.0,Eastern Counties in South Carolina and Georgia,G1302450000600,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,59901.0,,1903.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005016829941485474,0.000560054625326778,0.0,0.0055768845668122515,0.0016680414814927416,0.0014103408574109315,0.0024985022279085793,0.0,0.0,0.0011079868561659637,0.0014103408574109315,0.0024985022279085793,0.0,0.0,0.000560054625326778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.742039416688478e-05,0.0,0.0,0.0005978460460523746,0.00020043898544229422,0.0006352664402192594,0.00013203667829344147,0.00016806762737099697,0.00029774174038793615,0.0,0.0,3.742039416688478e-05,0.0,0.0,0.0,0.0,0.0,0.00019000765775068756,0.00016065281704321545,0.00028460596542535647,0.0,0.0 +102969,50.0,the Greater Atlanta and Macon Area,G1301350050731,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,15750.0,,1901.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0017717716769784857,0.0007066550043314737,0.0,0.00247842668130996,0.001288540084116841,0.0002773224689367965,0.0008349510354408399,0.0,7.761309281548183e-05,0.0007815169590591378,0.0002773224689367965,0.0007129322489825513,0.0,0.0,0.0005070231250577032,0.0001220187864582887,7.761309281548183e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.721502118487126e-05,0.0,0.0,0.0002111374637741498,9.964350870571208e-05,0.00025835248495902107,9.313136154971737e-05,3.304780378855309e-05,8.495829843587932e-05,0.0,0.0,3.387665472413448e-05,8.152662264142107e-06,5.185704196594679e-06,0.0,0.0,0.0,0.00013431808784633508,2.8908238248518077e-05,8.703572974417598e-05,0.0,8.090429119991857e-06 +102970,50.0,the Greater Atlanta and Macon Area,G1300890023108,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,65898.0,,5745.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005333361072473719,0.0016737068234178763,0.0,0.007007067895891595,0.004590635445422373,0.0019361043489606142,0.00048032810150860726,0.0,0.0,0.002916928622004496,0.0019361043489606142,0.00048032810150860726,0.0,0.0,0.0016737068234178763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011182765249188714,0.0,0.0,0.0006355673743463527,0.0002544012599478387,0.0007473950268382398,0.0003476053168444574,0.00023072219203015826,5.7239865471736865e-05,0.0,0.0,0.00011182765249188714,0.0,0.0,0.0,0.0,0.0,0.000489651042763224,0.00020651073792241702,5.1233246152598754e-05,0.0,0.0 +102971,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,115067.0,,16347.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005581712809008243,0.0027799610974114986,0.0,0.008361673906419741,0.0035433063476290323,0.0013260714609671692,0.0025420196471543904,0.0,0.00095029418103057,0.0029812184298905185,0.0013260714609671692,0.0010833960042109065,0.0,0.00019104464430106898,0.0005620879177385138,0.0014586236429434839,0.000759249536729501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018574062174646347,0.0,0.0,0.0006651627272420161,0.00036765139357284015,0.0008509033489884797,0.0003552664655425861,0.0001580255630621472,0.0001291063631365999,0.0,2.276644839612569e-05,3.755540299255942e-05,9.745663800356085e-05,5.072858075034319e-05,0.0,0.0,0.0,0.0003605750799938375,0.0001349441104452428,0.000258681820789198,0.0,9.670414204294203e-05 +102972,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,14554.0,,160.0,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003289260322612256,0.00012662452989487964,0.0,0.0034158848525071357,0.0015562162994788087,0.0009321087210419947,0.0008009353020914531,0.0,0.00012662452989487964,0.0015562162994788087,0.0009321087210419947,0.0008009353020914531,0.0,0.0,0.0,0.0,0.00012662452989487964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.458801842980032e-06,0.0,0.0,0.0003919754031491767,0.00012657083507774437,0.00040043420499215673,0.00018545157620454894,0.00011107776699751627,9.544605994711159e-05,0.0,0.0,0.0,0.0,8.458801842980032e-06,0.0,0.0,0.0,0.00018243069177822384,0.00010926838309633197,9.389130629147105e-05,0.0,1.4843823826129922e-05 +102973,81.0,the Columbus-Albany Area,G1300950000100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,120045.0,,3327.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.007812298657819406,0.0005657758329138849,0.0,0.00837807449073329,0.004272307887775923,0.0017392598035000798,0.0010639457977331085,0.0,0.001302561001724179,0.0038931441088080935,0.0017392598035000798,0.0008773337437870529,0.0,0.001302561001724179,0.0003791637789678291,0.00018661205394605575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.780169968963482e-05,0.0,0.0,0.0009309776213868336,0.00027640916007501696,0.0009687793210764685,0.00046393900193595337,0.00020726447179736924,0.00010455028893906342,0.0,0.0001552238587144475,2.533341735703041e-05,1.2468282332604402e-05,0.0,0.0,0.0,0.0,0.0004940184692231043,0.00020111529605926472,0.00012302691850378,0.0,0.0001506186372903194 +102974,50.0,the Greater Atlanta and Macon Area,G1301350050538,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,21121.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.005071515054620592,0.0,0.0,0.0050715150546205914,0.0030813347392316375,0.0007145891171076162,0.001178410386637652,0.0,9.718081164368624e-05,0.0030813347392316375,0.0007145891171076162,0.001178410386637652,0.0,9.718081164368624e-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.0006043591668452162,0.00022100630669863843,0.0006043591668452162,0.00036719459090959366,8.515571358865389e-05,0.00014042807953832642,0.0,1.1580782808642168e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003671945909095937,8.515571358865391e-05,0.00014042807953832645,0.0,1.158078280864217e-05 +102975,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,10289.0,,1334.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002240865455892795,0.0010582370084944383,0.0,0.003299102464387234,0.002094887470742917,0.0004379339554496329,0.0006154233356941866,0.0,0.00015085770250049672,0.0011875081647489758,0.0004379339554496329,0.0006154233356941866,0.0,0.0,0.0009073793059939415,0.0,0.00015085770250049672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.070623662709465e-05,0.0,0.0,0.0002670404439362608,0.000155739261314139,0.00033774668056335555,0.00014151349723321889,5.21879069403743e-05,7.333903976266763e-05,0.0,0.0,6.0626660573337666e-05,0.0,1.0079576053756989e-05,0.0,0.0,0.0,0.00021446478156858357,4.4833630163277296e-05,6.300416280357815e-05,0.0,1.544410602791648e-05 +102976,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,17125.0,,953.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0009096030015715488,0.00016209096410212272,0.0,0.0010716939656736715,0.0005818927314447129,0.00023409396182895716,9.792478612295163e-05,0.0,0.00015780021663846993,0.0005317335389873836,0.00023409396182895716,9.792478612295163e-05,0.0,4.586844499367661e-05,5.0159192457329376e-05,0.0,0.00011193177164479333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0830146886782539e-05,0.0,0.0,0.00010839610088380322,3.953904003156412e-05,0.00011922624777058576,6.336593242963742e-05,2.7896645744198163e-05,1.1669558012967237e-05,0.0,5.466077599048751e-06,3.351398549847714e-06,0.0,7.478748336934825e-06,0.0,0.0,0.0,6.473572605358438e-05,2.6043017492473098e-05,1.0894159328253346e-05,0.0,1.7555317403848407e-05 +102977,50.0,the Greater Atlanta and Macon Area,G1300630040513,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,6428.0,,687.0,,8.72605822017302,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0012464783083251023,0.0005449569088682966,0.0,0.0017913525101196591,0.001165838911429277,0.0002620160096061259,0.00032991851714609733,0.0,3.366177901189812e-05,0.000654543781572879,0.0002620160096061259,0.00032991851714609733,0.0,0.0,0.0005112951298563984,0.0,3.366177901189812e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.640831620341135e-05,0.0,0.0,0.00014853904839017272,7.879216443883309e-05,0.00018494736459358409,7.800000192155974e-05,3.1223655052754765e-05,3.93153914158582e-05,0.0,0.0,3.415938849134754e-05,0.0,2.248927712063806e-06,0.0,0.0,0.0,0.0001203665012840464,2.7051722195506464e-05,3.406228530235962e-05,0.0,3.475394865394928e-06 +102978,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9238.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0019069769992072114,0.0,0.0,0.0019069769992072114,0.0011875908718227152,0.00041171581307427235,0.00025589568614941714,0.0,5.185733523454576e-05,0.0011875908718227152,0.00041171581307427235,0.00025589568614941714,0.0,5.185733523454576e-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.00022725530294858358,7.242651593826393e-05,0.00022725530294858358,0.00014152573600376074,4.90643578122934e-05,3.0495203509689788e-05,0.0,6.1798618618537494e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014152573600376074,4.90643578122934e-05,3.0495203509689788e-05,0.0,6.1798618618537494e-06 +102979,50.0,the Greater Atlanta and Macon Area,G1301170130613,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,27735.0,,3777.0,,7.56685751697572,Food Service,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,22700.572550927158,0.0,0.0,0.005767289749249347,0.002597840790127463,0.0,0.00836513053937681,0.0027740567589128197,0.00032130547014993756,0.0035449030073886074,0.0002744723290767435,0.0014502495339066713,0.0022352963366435497,0.00032130547014993756,0.0014858226395304144,0.0002744723290767435,0.0014502495339066713,0.0005387604222692702,0.002059080367858193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017357111864140336,0.0,0.0,0.0006872782256119779,0.0003639702736916869,0.0008608493442533812,0.00026637650729535305,3.828943281943022e-05,0.0001770629865446732,3.2708406116062375e-05,0.00017282379933966486,3.599652816614826e-05,0.00013757459047525512,0.0,0.0,0.0,0.0,0.0002854761118897813,3.306530627126401e-05,0.00036480332434592986,2.824574265627842e-05,0.00014924409779268515 +102980,50.0,the Greater Atlanta and Macon Area,G1300670031001,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,21821.0,,2720.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002060346718796276,0.0008005997594881724,0.0,0.002860946478284449,0.0011404871492352309,0.0006864958032733135,0.0010339942153822022,0.0,0.0,0.00033988738974705834,0.0006864958032733135,0.0010339942153822022,0.0,0.0,0.0008005997594881724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3492127632440954e-05,0.0,0.0,0.00024552636393997503,0.0001233531425721169,0.0002990184915724159,4.050352991189728e-05,8.180798741302303e-05,0.00012321850381865853,0.0,0.0,5.3492127632440954e-05,0.0,0.0,0.0,0.0,0.0,0.00011920067348709661,7.175070946754383e-05,0.00010807031621353154,0.0,0.0 +102981,35.0,Eastern Counties in South Carolina and Georgia,G1300730030202,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,45280.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003925753058389545,0.0,0.0,0.003925753058389545,0.0019876123518707206,0.0008234328265736634,0.0011147078799451605,0.0,0.0,0.0019876123518707206,0.0008234328265736634,0.0011147078799451605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046782283444395724,0.00015548876055227024,0.00046782283444395724,0.00023685912750952086,9.812656913777433e-05,0.00013283713779666204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023685912750952086,9.812656913777433e-05,0.00013283713779666204,0.0,0.0 +102982,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,127230.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010403009294763801,0.0,0.0,0.0104030092947638,0.003517918880299372,0.0025338873439698308,0.0043512030704945985,0.0,0.0,0.003517918880299372,0.0025338873439698308,0.0043512030704945985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012397069122436655,0.0003622994241287318,0.0012397069122436655,0.00041922372931212955,0.00030195855508340807,0.0005185246278481278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004192237293121296,0.0003019585550834081,0.0005185246278481279,0.0,0.0 +102983,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302530200200,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,66286.0,,3802.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0031653305028763474,0.0006466085506279056,0.0,0.0038119390535042517,0.001532860666209245,0.0007949052935452273,0.0009759854747282265,0.0,0.0005081876190215534,0.001532860666209245,0.0007949052935452273,0.00032937692410032094,0.0,0.0005081876190215534,0.0,0.0006466085506279056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.320266932022755e-05,0.0,0.0,0.00037720607266350086,0.0001307498568316069,0.00042040874198372846,0.00018266792403375583,9.472726580846896e-05,3.925118588816113e-05,0.0,6.055969693311484e-05,0.0,4.320266932022755e-05,0.0,0.0,0.0,0.0,0.00016905517514110218,8.766801613691715e-05,0.0001076388735144367,0.0,5.604667719127248e-05 +102984,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5620.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001121590626978748,0.0,0.0,0.0011215906269787482,0.0004369414705647611,0.000274422070667022,0.0003609336697983376,0.0,4.921070887488792e-05,0.0004369414705647611,0.000274422070667022,0.0003609336697983376,0.0,4.921070887488792e-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.00013366004476622948,4.257991894471141e-05,0.00013366004476622948,5.207035001106041e-05,3.270290012051835e-05,4.301249431161606e-05,0.0,5.864444114438946e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.2070350011060406e-05,3.270290012051834e-05,4.3012494311616054e-05,0.0,5.864444114438944e-06 +102985,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302050090300,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,136005.0,,4145.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.0064837981373376905,0.0007049059789770393,0.0,0.007188721846676149,0.002995597753002181,0.00144053867429503,0.001272206622973049,0.0,0.0014803787964058888,0.0026570542320476934,0.00144053867429503,0.0009058264345890778,0.0,0.0014803787964058888,0.0003385435209544882,0.0003663801883839711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.70981860022527e-05,0.0,0.0,0.0007726621143086371,0.00022118029339150038,0.0008197603003108899,0.0003166361902823931,0.00017166630333762794,0.00010794564440799139,0.0,0.00017641397628062464,2.2619733972055562e-05,2.447963668160449e-05,0.0,0.0,0.0,0.0,0.00034160065808459746,0.00016427070645326977,0.00014507509200513825,0.0,0.00016881384376788444 +102986,35.0,Eastern Counties in South Carolina and Georgia,G1302450010706,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,26588.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006335858090873384,0.0,0.0,0.006335858090873385,0.0025719418720712432,0.0012384557221723892,0.002327377055024111,0.0,0.0001980834416056413,0.0025719418720712432,0.0012384557221723892,0.002327377055024111,0.0,0.0001980834416056413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007550327964822762,0.0002528199669762221,0.0007550327964822762,0.00030649368028887224,0.00014758453769320423,0.00027734933155381113,0.0,2.3605246946388687e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003064936802888722,0.0001475845376932042,0.0002773493315538111,0.0,2.3605246946388684e-05 +102987,50.0,the Greater Atlanta and Macon Area,G1301350050211,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,13698.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032890949084647776,0.0,0.0,0.0032890949084647776,0.002035503791798095,0.00046845286565943715,0.000717235743467274,0.0,6.781980046623209e-05,0.002035503791798095,0.00046845286565943715,0.000717235743467274,0.0,6.781980046623209e-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.000391951429464566,0.0001234172695337182,0.000391951429464566,0.00024256479155482886,5.582410220497137e-05,8.547080055111437e-05,0.0,8.081879203403342e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00024256479155482886,5.582410220497137e-05,8.547080055111437e-05,0.0,8.081879203403342e-06 +102988,35.0,Eastern Counties in South Carolina and Georgia,G1300510004208,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,13751.0,,4204.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.003805676822001369,0.0028921795511755314,0.0,0.0066978563731769,0.0021769880002078584,0.0003101171546715022,0.002273881681049948,0.00038255432539726936,0.0015543869318213382,0.0021769880002078584,0.0003101171546715022,0.000735918622591185,0.00038255432539726936,0.00020017043910457047,0.0,0.0015379630584587633,0.0013542164927167679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019323879036085563,0.0,0.0,0.00045351747525693387,0.0003345016800662295,0.0006467562656177894,0.00025942878171134265,3.6956251305259456e-05,8.769844926995079e-05,4.558849316888388e-05,2.3854046575619598e-05,0.0,0.00010275783912359738,9.048095123725825e-05,0.0,0.0,0.0,0.0002102136192331258,2.9945433536404952e-05,0.00021956983586302468,3.6940088455870486e-05,0.00015009421393027392 +102989,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,44279.0,,6909.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0039452409583885855,0.00203370814052987,0.0,0.0059789184093121586,0.0026917546787652126,0.0012461514637182214,0.0020410429564350213,0.0,0.0,0.000658046538235343,0.0012461514637182214,0.0020410429564350213,0.0,0.0,0.00203370814052987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013587989946865428,0.0,0.0,0.0004701455086658705,0.0002621682751566757,0.0006060254081345247,7.841792876722904e-05,0.00014850107254889166,0.00024322650734974978,0.0,0.0,0.00013587989946865428,0.0,0.0,0.0,0.0,0.0,0.00027283726187933934,0.00012631037885063763,0.0002068808781145304,0.0,0.0 +102990,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,56800.0,,4131.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0029238252499738074,0.0007025301105467521,0.0,0.003626337630159139,0.0018496313033399081,0.0009628295465545474,0.00044884409934863663,0.0,0.00036505041127746717,0.001349510998764479,0.0009628295465545474,0.00024643429337731394,0.0,0.00036505041127746717,0.0005001203045754293,0.00020240980597132277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.693881407862571e-05,0.0,0.0,0.0003484257506994727,0.00012621968580114364,0.00039536456477809847,0.00016081822360140062,0.00011473825515287085,2.9367026524192546e-05,0.0,4.350224542100873e-05,3.341501473174154e-05,1.352379934688416e-05,0.0,0.0,0.0,0.0,0.00020165763638860018,0.00010497331562928054,4.893561220453809e-05,0.0,3.979993362351313e-05 +102991,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,50695.0,,3550.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0045168962548958955,0.0010449810944367797,0.0,0.005561846659726377,0.0019115328178587155,0.0014747276514235118,0.0021755861904441502,0.0,0.0,0.0008665517234219358,0.0014747276514235118,0.0021755861904441502,0.0,0.0,0.0010449810944367797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.981881832740482e-05,0.0,0.0,0.0005382688476140648,0.00022775299886744813,0.0006080876659414696,0.0001032651119800974,0.00017574013408342613,0.00025925994433592236,0.0,0.0,6.981881832740482e-05,0.0,0.0,0.0,0.0,0.0,0.00020899165343753138,0.0001612348830015364,0.00023786112950240182,0.0,0.0 +102992,50.0,the Greater Atlanta and Macon Area,G1301950020600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,54517.0,,4950.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004620044021662475,0.0014569890589834393,0.0,0.006077033080645914,0.0022338657528034878,0.0016137822575584034,0.002229415759890321,0.0,0.0,0.0007768766938200483,0.0016137822575584034,0.002229415759890321,0.0,0.0,0.0014569890589834393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.734724423665136e-05,0.0,0.0,0.0005505626629141026,0.0002466462146910231,0.0006479099071507538,9.257905320814657e-05,0.0001923116431183211,0.0002656756238149877,0.0,0.0,9.734724423665136e-05,0.0,0.0,0.0,0.0,0.0,0.00023816617966021037,0.00017205526097696774,0.00023769173852142937,0.0,0.0 +102993,50.0,the Greater Atlanta and Macon Area,G1300130180402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,79870.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006707704490063705,0.0,0.0,0.006707704490063707,0.0018326298400673218,0.0019460279353373338,0.002929046714659051,0.0,0.0,0.0018326298400673218,0.0019460279353373338,0.002929046714659051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000799344505005833,0.00026512197910623245,0.000799344505005833,0.00021839104488540452,0.00023190448222696982,0.0003490489778934588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021839104488540447,0.00023190448222696976,0.00034904897789345867,0.0,0.0 +102994,50.0,the Greater Atlanta and Macon Area,G1300670030328,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,31534.0,,18331.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.006888129456281318,0.012610092183848797,0.0,0.019498221640130115,0.0072029801290398494,0.0008118700718967171,0.006088523499428268,0.0003704336502956311,0.0050245577294116784,0.004089042427484048,0.0008118700718967171,0.0010293967439870654,0.0003704336502956311,0.0005875300025598857,0.0031139377015558,0.005059126755441202,0.004437027726851792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008425307821937432,0.0,0.0,0.0008208490521969748,0.001042459843765599,0.001663379834390718,0.0004872856444259627,9.674945618447922e-05,0.00012267181489539135,4.4144076077105576e-05,7.001515415753125e-05,0.00020805465409322926,0.00033802052834622486,0.000296455599754289,0.0,0.0,0.0,0.0006144812647684102,6.926007564499764e-05,0.0005194077386687971,3.160143910834035e-05,0.000428641552962654 +102995,81.0,the Columbus-Albany Area,G1302150001600,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,119864.0,,3371.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009758247785764278,0.000982160711419143,0.0,0.010740378123583985,0.007110429254778264,0.0028228312109463416,0.0008071480314588169,0.0,0.0,0.006128268543359121,0.0028228312109463416,0.0008071480314588169,0.0,0.0,0.000982160711419143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.562143921370859e-05,0.0,0.0,0.0011628703001751895,0.00035137827698442916,0.0012284917393888984,0.0007302931465797008,0.00033639098429185565,9.61861693036333e-05,0.0,0.0,6.562143921370859e-05,0.0,0.0,0.0,0.0,0.0,0.0008132957240884754,0.00032287734979479047,9.232213965855107e-05,0.0,0.0 +102996,50.0,the Greater Atlanta and Macon Area,G1301530020105,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,128007.0,,3869.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.0065892051359799034,0.0006579914426595796,0.0,0.007247214309000903,0.0026345544034056456,0.002296365489679559,0.0011307537995638673,0.0,0.0011855228859904109,0.0025570372632771747,0.002296365489679559,0.0005502794970327588,0.0,0.0011855228859904109,7.751714012847084e-05,0.0005804743025311087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.39634075156722e-05,0.0,0.0,0.0007852236713728084,0.00028777529168380763,0.0008291870788884807,0.0003047175108791006,0.00027365372657378134,6.557581347434971e-05,0.0,0.00014127662044557675,5.179273467665081e-06,3.878413404800711e-05,0.0,0.0,0.0,0.0,0.0003014314710163264,0.0002627377239393669,0.00012937473628148738,0.0,0.00013564111903920624 +102997,50.0,the Greater Atlanta and Macon Area,G1301350050545,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,4875.0,,879.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.00043434999793138753,0.000258652001877039,0.0,0.0006930019998084266,0.0004271379404514273,0.0001411721889694328,0.00012469187038756643,0.0,0.0,0.00016848593857438828,0.0001411721889694328,0.00012469187038756643,0.0,0.0,0.000258652001877039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.728174796338081e-05,0.0,0.0,5.176038437204573e-05,3.660496947208307e-05,6.904213233542653e-05,2.0078040712395325e-05,1.6823130651551635e-05,1.4859213008098762e-05,0.0,0.0,1.728174796338081e-05,0.0,0.0,0.0,0.0,0.0,4.255473175875587e-05,1.406464765701085e-05,1.2422752919659803e-05,0.0,0.0 +102998,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,24284.0,,4432.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0056398778974636726,0.0034371493058939087,0.0,0.009076946342574515,0.0021713546077391757,0.0006066984553631637,0.005418561934205112,0.0003134163951736135,0.0005670766716595851,0.0021713546077391757,0.0006066984553631637,0.001981412628311204,0.0003134163951736135,0.0005670766716595851,0.0,0.0034371493058939087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022964759173948435,0.0,0.0,0.0006720925063071144,0.0004090151657311604,0.0009017400980465988,0.00025875580764846227,7.229899172481332e-05,0.00023612081743633556,3.734917925168285e-05,6.757734625697933e-05,0.0,0.00022964759173948435,0.0,0.0,0.0,0.0,0.00021571103793936356,6.027184737865581e-05,0.0005383015813262834,3.113603631076502e-05,5.6335661157738667e-05 +102999,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,10541.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0022952867104132596,0.0,0.0,0.002295286710413259,0.00180681873290891,0.00021809855345055368,0.00023141439232258218,0.0,3.8872324657474485e-05,0.00180681873290891,0.00021809855345055368,0.00023141439232258218,0.0,3.8872324657474485e-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.00027352440362233687,0.0001020768583978838,0.00027352440362233687,0.00021531472043577297,2.5990337718078065e-05,2.75771577304446e-05,0.0,4.632331713119714e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.000215314720435773,2.5990337718078068e-05,2.7577157730444608e-05,0.0,4.632331713119715e-06 +103000,81.0,the Columbus-Albany Area,G1300950000700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12783.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003746961268685584,0.0,0.0,0.003746961268685584,0.001659103899210507,0.0011043048485672327,0.0009116800738283857,0.0,7.170703293197954e-05,0.001659103899210507,0.0011043048485672327,0.0009116800738283857,0.0,7.170703293197954e-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.00044651879030636736,0.0001458859407602738,0.00044651879030636736,0.0001977124963258372,0.0001315980683421026,0.00010864331241274693,0.0,8.545201112387879e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001977124963258372,0.0001315980683421026,0.00010864331241274693,0.0,8.545201112387879e-06 +103001,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,125068.0,,1026.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006437894231621173,0.00017443129565047945,0.0,0.006612325527271652,0.003007494825515037,0.003110295461028503,0.0004274790138374731,0.0,6.707395725205976e-05,0.002833063529864557,0.003110295461028503,0.0004274790138374731,0.0,6.707395725205976e-05,0.00017443129565047945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1653914551352482e-05,0.0,0.0,0.0007671922816565677,0.00022714178285269598,0.0007788461962079202,0.0003376110876253823,0.00037064831845981386,5.0941905565243315e-05,0.0,7.993082901423288e-06,1.1653914551352482e-05,0.0,0.0,0.0,0.0,0.0,0.00035424388822156034,0.0003663524699311569,5.035148413562833e-05,0.0,7.900442326216589e-06 +103002,85.0,Rural Climate Zone 3A,G1302330010600,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,75797.0,,2305.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003901690143012559,0.00039198283027452733,0.0,0.0042936729732870865,0.0023473580091236306,0.0009795315470122372,0.0006627609098815739,0.0,0.0003040225072696454,0.002110391728744625,0.0009795315470122372,0.0005077266296246322,0.0,0.0003040225072696454,0.00023696628037900565,0.00015503428025694167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6190349965255948e-05,0.0,0.0,0.00046495703946323276,0.00015938711221684805,0.0004911473894284887,0.0002514913933035087,0.00011672892297080194,6.050482275987193e-05,0.0,3.6229787535393345e-05,1.5832912397577606e-05,1.0358622222552831e-05,0.0,0.0,0.0,0.0,0.00026851107790645427,0.00011204727634615364,7.581231563948926e-05,0.0,3.4776719536391705e-05 +103003,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,117944.0,,5650.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.010623606184831689,0.0016631004548788113,0.0,0.012286706639710498,0.0033381698562137264,0.0034671889610892698,0.005481347822407503,0.0,0.0,0.0016750694013349156,0.0034671889610892698,0.005481347822407503,0.0,0.0,0.0016631004548788113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011111938996859491,0.0,0.0,0.0012659950445784267,0.00047728767539353105,0.0013771144345470214,0.0001996148505996744,0.00041317834706855537,0.0006532018469101969,0.0,0.0,0.00011111938996859491,0.0,0.0,0.0,0.0,0.0,0.0003741476075536865,0.0003886082825633922,0.0006143585444299429,0.0,0.0 +103004,50.0,the Greater Atlanta and Macon Area,G1301210006300,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,10465.0,,2843.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013732678130033065,0.0008367214261005686,0.0,0.0022099585494975774,0.0010673231278215073,0.0006475506928815287,0.0004950847287945412,0.0,0.0,0.00023060170172093874,0.0006475506928815287,0.0004950847287945412,0.0,0.0,0.0008367214261005686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.590407959523919e-05,0.0,0.0,0.00016364804429125674,0.00010057717313041531,0.00021955212388649593,2.7480085923179282e-05,7.7166597415369e-05,5.899770376799681e-05,0.0,0.0,5.590407959523919e-05,0.0,0.0,0.0,0.0,0.0,0.0001060350474173664,6.433203463414892e-05,4.9185041834980586e-05,0.0,0.0 +103005,33.0,Rural Lower Plains-Upper South Appalachia,G1302810960100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3278.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0002890655458490841,0.0,0.0,0.00028906554584908406,0.00019642606756394102,7.690595377638762e-05,1.5703150909317694e-05,0.0,0.0,0.00019642606756394102,7.690595377638762e-05,1.5703150909317694e-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,3.4446408635933836e-05,1.0124066930498565e-05,3.4446408635933836e-05,2.3407053131090058e-05,9.164474799430962e-06,1.8712612445915515e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3407053131090064e-05,9.164474799430963e-06,1.871261244591552e-06,0.0,0.0 +103006,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,187539.0,,29698.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010437739655455145,0.00505035160761068,0.0,0.015488091263065825,0.005408699942271368,0.0038170808583160684,0.0034258604335826027,0.0,0.0028364322985343668,0.004912834924436752,0.0038170808583160684,0.0012684300559905775,0.0,0.0004393583559889084,0.0004958650178346167,0.0021574303775920255,0.0023970739425454583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033743497156118145,0.0,0.0,0.0012438450824155797,0.0006935913615391713,0.001581280053976761,0.0005854529585135263,0.00045487408304131034,0.0001511563364877968,0.0,5.235747858774958e-05,3.313080181171162e-05,0.00014414688613183647,0.000160158468256737,0.0,0.0,0.0,0.0005522093840610541,0.00038971063142333976,0.00034976839168366443,0.0,0.00028958983660069295 +103007,50.0,the Greater Atlanta and Macon Area,G1301210011621,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,232837.0,,1242.0,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,1398753.3485215676,0.0,0.0,0.05974574639367224,0.0010529204749086766,0.0,0.06079866686858093,0.023568696355250357,0.007291516271217662,0.02888553376720422,0.0,0.0010529204749086766,0.023568696355250357,0.007291516271217662,0.02888553376720422,0.0,0.0,0.0,0.0,0.0010529204749086766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.03494595000692e-05,0.0,0.0,0.00711978557345978,0.0024182347847800743,0.007190135032959849,0.002808636169505415,0.0008689159561987001,0.0034422334477556644,0.0,0.0,0.0,0.0,7.03494595000692e-05,0.0,0.0,0.0,0.002787266860824082,0.000862304870901235,0.003416043459213555,0.0,0.0001245198420209752 +103008,50.0,the Greater Atlanta and Macon Area,G1301170130509,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,41616.0,,9980.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0020476617100404783,0.001697132464766034,0.0,0.0037447941748065122,0.001369688150060499,0.0006591439161518831,0.001349564189848739,0.0,0.0003663979187453911,0.0009634855699270894,0.0006591439161518831,0.0003454938226311489,0.0,7.953840133035687e-05,0.00040620258013340967,0.00100407036721759,0.00028685951741503425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000113392072835933,0.0,0.0,0.00024401557740119854,0.00017968644055025903,0.0003574076502371315,0.00011481656687267644,7.854880642716586e-05,4.117177862168478e-05,0.0,9.478425479671454e-06,2.7139986718114746e-05,6.708587725215354e-05,1.9166208865664706e-05,0.0,0.0,0.0,0.00013072468082870275,6.290948640778572e-05,0.00012880402591497247,0.0,3.496945708567062e-05 +103009,50.0,the Greater Atlanta and Macon Area,G1301350050540,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,109877.0,,4331.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.012360669686446866,0.001609648271916091,0.0,0.013970279209939183,0.006029177242088537,0.002919073756446085,0.004764002457506263,0.0,0.00025798700547452724,0.005132654961273858,0.002919073756446085,0.004050915214828623,0.0,0.00025798700547452724,0.0008965222808146793,0.0007130872426776395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010754629432481016,0.0,0.0,0.0014729950201043617,0.00048568340648866347,0.001580541314429172,0.0006116477011079813,0.00034785988264673126,0.00048273904971752295,0.0,3.07437690639278e-05,5.989982455388971e-05,4.764388085167621e-05,0.0,0.0,0.0,0.0,0.0006821169126210006,0.0003302522879175212,0.0005389801157856409,0.0,2.918761426387629e-05 +103010,50.0,the Greater Atlanta and Macon Area,G1301210011800,ComStock 90.1-2007,gen1_t12_incandescent,200001_500000,NaturalGas,360505.0,,6056.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.032120601260152065,0.0017825137129831726,0.0,0.033903114973135244,0.005904526803646526,0.014706428648252874,0.013292190210842136,0.0,0.0,0.004122013090663354,0.014706428648252874,0.013292190210842136,0.0,0.0,0.0017825137129831726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011909692638695739,0.0,0.0,0.0038277515046186514,0.0012496421050755685,0.003946848431005608,0.0004912125299914058,0.001752537380293431,0.0015840052515563472,0.0,0.0,0.00011909692638695739,0.0,0.0,0.0,0.0,0.0,0.00068737850103948,0.0017120563960582016,0.0015474171066541045,0.0,0.0 +103011,50.0,the Greater Atlanta and Macon Area,G1300210011000,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,65753.0,,,,9.325022323477118,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,349688.3371303919,0.0,0.0,0.0168720938519006,0.0,0.0,0.016872093851900603,0.0067619183961523735,0.003884218594041099,0.005884705627456945,0.0,0.0003411628500921256,0.0067619183961523735,0.003884218594041099,0.005884705627456945,0.0,0.0003411628500921256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020106185934803482,0.0006503491703938655,0.0020106185934803482,0.0008058062605767962,0.0004628756925413492,0.0007012703139030097,0.0,4.065579387010736e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0008058062605767961,0.0004628756925413491,0.0007012703139030096,0.0,4.065579387010735e-05 +103012,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,79719.0,,28954.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.022522311862045154,0.02560928439862717,0.0,0.04813168847792509,0.0381415168332488,0.004471245717960133,0.002061793337502633,0.0006359301751238106,0.0028211101968369508,0.014448599164500964,0.004471245717960133,0.002061793337502633,0.0006359301751238106,0.0009046512497048408,0.02369291766874783,0.0,0.0019164589471321102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017110654679342097,0.0,0.0,0.0026839418824541566,0.0023400054277088124,0.004395007350388366,0.001721812604226807,0.000532830009755814,0.00024570006513468823,7.578261245052374e-05,0.00010780560152836977,0.0015830248368742367,0.0,0.00012804679248777033,0.0,0.0,0.0,0.0034827834247695717,0.000408279003235883,0.00018826675647295869,5.8068143511831244e-05,0.00025760160184366897 +103013,85.0,Rural Climate Zone 3A,G1300310110300,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,21108.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,24034.3828889517,0.0,0.0,0.0018612941735454318,0.0,0.0,0.0018612941735454318,0.001423367616851926,0.000321869033241856,0.00011608789705108745,0.0,0.0,0.001423367616851926,0.000321869033241856,0.00011608789705108745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022180822965386593,7.334025674691824e-05,0.00022180822965386593,0.00016962103880612702,3.835675276830967e-05,1.3834057665422249e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016962103880612702,3.835675276830967e-05,1.3834057665422249e-05,0.0,0.0 +103014,85.0,Rural Climate Zone 3A,G1301330950303,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,28628.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0014736235287048486,0.0,0.0,0.0014736235287048484,0.0007846039535601766,0.0004669999894427708,8.161285361650306e-05,0.0,0.00014040673208539817,0.0007846039535601766,0.0004669999894427708,8.161285361650306e-05,0.0,0.00014040673208539817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017560807175587504,4.162529209612062e-05,0.00017560807175587504,9.349931287934477e-05,5.565123388613083e-05,9.725601943044925e-06,0.0,1.6731923047354503e-05,0.0,0.0,0.0,0.0,0.0,0.0,9.349931287934478e-05,5.565123388613085e-05,9.725601943044926e-06,0.0,1.6731923047354503e-05 +103015,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11753.0,,383.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026472053091740125,0.0003036176676969975,0.0,0.00295090568394475,0.002138308684456054,0.000418084257752199,0.0003253696280904354,0.0,6.90604065723217e-05,0.0018346910167590567,0.000418084257752199,0.0003253696280904354,0.0,6.90604065723217e-05,0.0003036176676969975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0288205264652758e-05,0.0,0.0,0.00031546547601063625,0.00011961748906306242,0.000335753681275289,0.00021863875572043442,4.982278817864112e-05,3.877405513249736e-05,0.0,8.229876979063371e-06,2.0288205264652758e-05,0.0,0.0,0.0,0.0,0.0,0.00024329649585726394,4.756957478759454e-05,3.702051576941581e-05,0.0,7.857684460463194e-06 +103016,50.0,the Greater Atlanta and Macon Area,G1300890022500,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,19497.0,,8151.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0038242522944944126,0.00560692389405844,0.0,0.009431247908523871,0.0032256774163981223,0.00029218716191759946,0.0035093299017648644,0.00036942957070141256,0.002034552137770854,0.001872321563333542,0.00029218716191759946,0.0010369990609147201,0.00036942957070141256,0.00025331493762713824,0.0013533558530645804,0.0024723308408501443,0.0017812372001437158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037462336362229187,0.0,0.0,0.00045573253303853695,0.0004922365259504373,0.0008303558966608287,0.0002231227918589709,3.4819668046941225e-05,0.00012357819840223933,4.402457292827546e-05,3.0187301802110058e-05,9.042368532774757e-05,0.00016518734926434096,0.0001190123290302034,0.0,0.0,0.0,0.0002839985004541214,2.57250509349451e-05,0.00030897213237550283,3.2525708729971084e-05,0.00017912818972079587 +103017,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,157833.0,,4378.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013917942602363828,0.0012753266931923234,0.0,0.01519329966915559,0.008749176065243287,0.00514270598880295,0.0013013872415099147,0.0,0.0,0.007473849372050964,0.00514270598880295,0.0013013872415099147,0.0,0.0,0.0012753266931923234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.521043336494764e-05,0.0,0.0,0.0016585760713485511,0.0004928786915835029,0.0017437865047134986,0.0008906451250375032,0.0006128469802397948,0.00015508396607125327,0.0,0.0,8.521043336494764e-05,0.0,0.0,0.0,0.0,0.0,0.001004172594640959,0.0005902457988892075,0.00014936462510236533,0.0,0.0 +103018,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,293484.0,,8632.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02445808173895423,0.002540945953418302,0.0,0.026999027692372533,0.006653475955735666,0.007806883429222229,0.012538698997020937,0.0,0.0,0.004112530002317364,0.007806883429222229,0.012538698997020937,0.0,0.0,0.002540945953418302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016977217375628543,0.0,0.0,0.0029146210017038173,0.0010463905699426884,0.003084393175460102,0.0004900820286245289,0.0009303307856897177,0.001494211844608972,0.0,0.0,0.00016977217375628543,0.0,0.0,0.0,0.0,0.0,0.0007600990696697052,0.0008918653754893653,0.0014324322363092224,0.0,0.0 +103019,35.0,Eastern Counties in South Carolina and Georgia,G1300510003800,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,62340.0,,645.0,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.004897712535738044,0.00018789108612193275,0.0,0.0050856339954594145,0.003279832388086755,0.0013739497705667037,0.00043185183680595544,0.0,0.0,0.003091941301964822,0.0013739497705667037,0.00043185183680595544,0.0,0.0,0.00018789108612193275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2554591582730337e-05,0.0,0.0,0.000583651973219686,0.00016358391951482642,0.0005962065648024163,0.00036846132328165985,0.00016373122939424426,5.1463040113349517e-05,0.0,0.0,1.2554591582730338e-05,0.0,0.0,0.0,0.0,0.0,0.0003845061604855545,0.00016107291119494792,5.062749312191377e-05,0.0,0.0 +103020,50.0,the Greater Atlanta and Macon Area,G1300450910600,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,14408.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.0022836624761534224,0.0,0.0,0.0022836624761534224,0.0015064638385603045,0.0003491279353335199,0.000401428883269331,0.0,2.664181899026703e-05,0.0015064638385603045,0.0003491279353335199,0.000401428883269331,0.0,2.664181899026703e-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.0002721403556852116,8.524655349529757e-05,0.0002721403556852116,0.00017952285380773918,4.1605010150775246e-05,4.783762934146214e-05,0.0,3.1748623852350763e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017952285380773918,4.1605010150775246e-05,4.783762934146214e-05,0.0,3.1748623852350763e-06 +103021,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,44361.0,,4312.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.003952514395081141,0.0012691379788352007,0.0,0.005221652373916343,0.0012778538270237483,0.0017144134766085707,0.002229415759890321,0.0,0.0,8.715848188547591e-06,0.0017144134766085707,0.002229415759890321,0.0,0.0,0.0012691379788352007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.479591246396425e-05,0.0,0.0,0.00047101502300590553,0.0002263265571898841,0.0005558109354698698,1.0386541387815605e-06,0.00020430400054490956,0.0002656760255550975,0.0,0.0,8.479591246396425e-05,0.0,0.0,0.0,0.0,0.0,0.00013601922918877205,0.00018248816466142405,0.00023730680832866993,0.0,0.0 +103022,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7568.0,,536.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015422388040168657,0.0004255278943887366,0.0,0.001967683991331863,0.0015202387224022098,0.00022124142225264738,0.00018435406736491623,0.0,4.184977931208955e-05,0.0010947108280134731,0.00022124142225264738,0.00018435406736491623,0.0,4.184977931208955e-05,0.0004255278943887366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8428688260444107e-05,0.0,0.0,0.00018378246431883513,8.318981338838786e-05,0.00021221115257927923,0.00013045233537427477,2.6364460344982247e-05,2.1968740975314178e-05,0.0,4.987071751237762e-06,2.8428688260444107e-05,0.0,0.0,0.0,0.0,0.0,0.00016395499119665973,2.38604864507407e-05,1.988225207428075e-05,0.0,4.513422857598053e-06 +103023,50.0,the Greater Atlanta and Macon Area,G1300890021907,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11076.0,,2224.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0023398658231587465,0.0017646381253018629,0.0,0.00410450394846061,0.002910379217812489,0.0005153477764696247,0.0006039270524444228,0.0,7.484990173407321e-05,0.0012205909942446989,0.0005153477764696247,0.0006039270524444228,0.0,0.0,0.0016897882235677897,0.0,7.484990173407321e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011790242196060316,0.0,0.0,0.0002788399525327326,0.00017473283500022687,0.00039674237449333576,0.00014545685976027952,6.141358538869102e-05,7.19695073837621e-05,0.0,0.0,0.00011290140528107814,0.0,5.0010166795250225e-06,0.0,0.0,0.0,0.00028131798045511494,4.9813644497309436e-05,5.837573938683251e-05,0.0,7.235010154078802e-06 +103024,50.0,the Greater Atlanta and Macon Area,G1301510070404,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,260406.0,,22716.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.02320192546358296,0.006686497972111993,0.0,0.029888423435694953,0.011783335717215576,0.006194175307884246,0.01191091241059513,0.0,0.0,0.005096837745103584,0.006194175307884246,0.01191091241059513,0.0,0.0,0.006686497972111993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004467533198841566,0.0,0.0,0.0027649272126334737,0.0013910847127692463,0.0032116805325176304,0.0006073799953341508,0.000738147525535009,0.001419399691764314,0.0,0.0,0.0004467533198841566,0.0,0.0,0.0,0.0,0.0,0.0012661862213148546,0.000665599250965332,0.0012798950602374438,0.0,0.0 +103025,50.0,the Greater Atlanta and Macon Area,G1301350050605,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13286.0,,3225.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,24034.3828889517,0.0,0.0,0.0011716008511124011,0.0009395769250074149,0.0,0.0021111777761198157,0.0016350108577341802,0.00031129902063751846,0.00016489827134755466,0.0,0.0,0.0006954339327267658,0.00031129902063751846,0.00016489827134755466,0.0,0.0,0.0009395769250074149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.277698328915782e-05,0.0,0.0,0.0001396180764347712,0.00010384761431957244,0.00020239505972392905,8.28739138270428e-05,3.7097079962148916e-05,1.9650702226022682e-05,0.0,0.0,6.277698328915782e-05,0.0,0.0,0.0,0.0,0.0,0.00015674573877363574,2.984371310962276e-05,1.5808519706521804e-05,0.0,0.0 +103026,50.0,the Greater Atlanta and Macon Area,G1301350050419,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6914.0,,784.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0004974891851909371,0.00022850058857020695,0.0,0.000725989773761144,0.0004690594961172014,0.00022658705180562863,3.0373599437751822e-05,0.0,0.0,0.0002405589075469944,0.00022658705180562863,3.0373599437751822e-05,0.0,0.0,0.00022850058857020695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.526732277781443e-05,0.0,0.0,5.928600300126914e-05,3.025151670623956e-05,7.455332577908356e-05,2.8667509846147602e-05,2.7002477708618834e-05,3.6196350815842936e-06,0.0,0.0,1.526732277781443e-05,0.0,0.0,0.0,0.0,0.0,4.816864739379079e-05,2.326867250907721e-05,3.1191250012167836e-06,0.0,0.0 +103027,50.0,the Greater Atlanta and Macon Area,G1301510070307,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7546.0,,628.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018119465714807469,0.0004983928263530664,0.0,0.0023103393978338134,0.0014779754077214235,0.0004458738345286063,0.00034339977016560445,0.0,4.300767834443987e-05,0.000979582581368357,0.0004458738345286063,0.00034339977016560445,0.0,4.300767834443987e-05,0.0004983928263530664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.330164567550999e-05,0.0,0.0,0.00021592573449861368,0.00010979095439413304,0.00024922738017412366,0.00011673472701303544,5.313381571489988e-05,4.092220420112489e-05,0.0,5.1251315473470485e-06,3.330164567550999e-05,0.0,0.0,0.0,0.0,0.0,0.0001594362885269417,4.809854680742825e-05,3.704417850944947e-05,0.0,4.639444321992708e-06 +103028,33.0,Rural Lower Plains-Upper South Appalachia,G1300110970400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,20814.0,,919.0,,8.53126424238864,Food Service,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.004806364945593288,0.0007124643596167978,0.0,0.005518910165993156,0.0017359192909151536,0.0008911666901982442,0.0020948603069563484,0.00040883211919447626,0.0003880508979458647,0.0017359192909151536,0.0008911666901982442,0.0013823959473395504,0.00040883211919447626,0.0003880508979458647,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.0005727673151067262,0.0002093824038336632,0.0006203725938017997,0.00020686690310752355,0.00010619900033296147,0.00016473805550243259,4.8719911594542533e-05,4.624344456926614e-05,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.00019513214035833434,0.000100174740026514,0.00023548017329343062,4.595621863479311e-05,4.3620232046750825e-05 +103029,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,3446.0,,671.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00030704951100851637,0.00019764106455720594,0.0,0.0005046598859594245,0.0002627030299083359,0.00015065527731542296,9.13322683419635e-05,0.0,0.0,6.50619653511299e-05,0.00015065527731542296,9.13322683419635e-05,0.0,0.0,0.00019764106455720594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3204233728909866e-05,0.0,0.0,3.658940346458259e-05,2.6898423919833233e-05,4.979363719349246e-05,7.753076995993511e-06,1.7952761779873655e-05,1.0883564688715424e-05,0.0,0.0,1.3204233728909866e-05,0.0,0.0,0.0,0.0,0.0,2.5920307369027948e-05,1.4864811784411e-05,9.011546113344297e-06,0.0,0.0 +103030,50.0,the Greater Atlanta and Macon Area,G1300670031211,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,446992.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,863994.0691636442,0.0,0.0,0.07084753011932449,0.0,0.0,0.07084753011932447,0.025065747940205524,0.010664752898138721,0.0348468441125728,0.0,0.00027018516840744174,0.025065747940205524,0.010664752898138721,0.0348468441125728,0.0,0.00027018516840744174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008442766166608462,0.0029372204284689846,0.008442766166608462,0.0029870377738486606,0.0012708984320553708,0.004152632505200932,0.0,3.2197455503499045e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.002987037773848661,0.001270898432055371,0.004152632505200933,0.0,3.219745550349905e-05 +103031,50.0,the Greater Atlanta and Macon Area,G1301210010114,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6692.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016068330286072646,0.0,0.0,0.0016068330286072646,0.0006686039841085612,0.00029782817253524605,0.0006016939614534615,0.0,3.8624203436256564e-05,0.0006686039841085612,0.00029782817253524605,0.0006016939614534615,0.0,3.8624203436256564e-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.00019147932913014053,6.321782348302671e-05,0.00019147932913014053,7.967463952481243e-05,3.549089274231193e-05,7.17012620661814e-05,0.0,4.6026789532517824e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.967463952481243e-05,3.549089274231193e-05,7.17012620661814e-05,0.0,4.6026789532517824e-06 +103032,81.0,the Columbus-Albany Area,G1302150003301,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,15078.0,,651.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013434068260756418,0.00019162590172285614,0.0,0.0015350327277984979,0.0004731416602916838,0.0004789113062756519,0.000582979761231162,0.0,0.0,0.00028151575856882763,0.0004789113062756519,0.000582979761231162,0.0,0.0,0.00019162590172285614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.280297328610564e-05,0.0,0.0,0.0001600917748956554,6.132419362669296e-05,0.00017289474818176105,3.354781036957662e-05,5.707114148231147e-05,6.94728230437673e-05,0.0,0.0,1.280297328610564e-05,0.0,0.0,0.0,0.0,0.0,5.329118182890579e-05,5.394103213595868e-05,6.566253421689657e-05,0.0,0.0 +103033,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,56918.0,,11.0,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,100799.30806909183,0.0,0.0,0.008933034663771362,5.7869524855907895e-06,0.0,0.008938821616256951,0.0029596440391400753,0.0019130245476187441,0.004022532510290708,0.0,4.356592531605142e-05,0.002953857086654484,0.0019130245476187441,0.004022532510290708,0.0,4.356592531605142e-05,5.7869524855907895e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.872337832119562e-07,0.0,0.0,0.0010645339753795285,0.0003541866740282753,0.0010649212091627407,0.0003520059358900718,0.00022797175913066947,0.0004793581000686869,0.0,5.1916744324155774e-06,3.8723378321195625e-07,0.0,0.0,0.0,0.0,0.0,0.00035259543641862366,0.00022790704433603242,0.00047922202373571545,0.0,5.190200661515193e-06 +103034,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,8296.0,,666.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006574973070290137,0.00019393543241004538,0.0,0.0008514327394390591,0.0005342412405106168,0.00027360538373526845,4.358611519317387e-05,0.0,0.0,0.00034030580810057143,0.00027360538373526845,4.358611519317387e-05,0.0,0.0,0.00019393543241004538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2957293996943035e-05,0.0,0.0,7.835403627540136e-05,3.471848007290379e-05,9.131133027234439e-05,4.0554285694534895e-05,3.260558778439578e-05,5.194162796470686e-06,0.0,0.0,1.2957293996943035e-05,0.0,0.0,0.0,0.0,0.0,5.7294341758000335e-05,2.9342624967654052e-05,4.674363546690005e-06,0.0,0.0 +103035,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,7283.0,,1077.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0017294876189626576,0.0008545294858745242,0.0,0.0025840171048371816,0.0015752389264388489,0.0003519185987607531,0.0005872202235490827,0.0,6.963935608849685e-05,0.0007207094405643249,0.0003519185987607531,0.0005872202235490827,0.0,6.963935608849685e-05,0.0008545294858745242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.709491812349361e-05,0.0,0.0,0.00020609825532603247,0.00010632219939053814,0.0002631931734495261,8.58849503568001e-05,4.193716591326422e-05,6.997740963200376e-05,0.0,8.298729423964388e-06,5.709491812349361e-05,0.0,0.0,0.0,0.0,0.0,0.00016044480944594548,3.5844411645095985e-05,5.981088664634113e-05,0.0,7.0930657121435535e-06 +103036,50.0,the Greater Atlanta and Macon Area,G1302230120303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,28303.0,,2670.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002521795639088536,0.000785868748465275,0.0,0.0033076643875538103,0.0013942288141046374,0.0008122004306687042,0.0011012658323867666,0.0,0.0,0.0006083600656393623,0.0008122004306687042,0.0011012658323867666,0.0,0.0,0.000785868748465275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.250746006454577e-05,0.0,0.0,0.00030051699332087875,0.00013442422449054094,0.00035302445338542454,7.249696801304326e-05,9.678818839051557e-05,0.00013123549413207106,0.0,0.0,5.250746006454577e-05,0.0,0.0,0.0,0.0,0.0,0.00014880495942863882,8.668552170985972e-05,0.00011753724772479147,0.0,0.0 +103037,50.0,the Greater Atlanta and Macon Area,G1300670031114,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,363863.0,,81266.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,280597.8237794184,0.0,0.0,0.022778709496823018,0.013820072051751515,0.0,0.03659878154857453,0.014163987872216283,0.009178334353427376,0.00603055690835688,0.0,0.007225884684212581,0.009180550648604882,0.009178334353427376,0.0034721544072503605,0.0,0.0009476523571789821,0.0049834372236114005,0.0025584025011065187,0.006278232327033598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009233768844840916,0.0,0.0,0.0027144941905842207,0.0018286363035435434,0.003637871075068312,0.0010940282374415399,0.0010937641258866337,0.00041376983927061544,0.0,0.00011292987509299269,0.0003329643087480976,0.00017093758425294498,0.0004194749914830492,0.0,0.0,0.0,0.0014078818913565957,0.0009123144446031358,0.0005994294786657821,0.0,0.0007182434980680363 +103038,50.0,the Greater Atlanta and Macon Area,G1300970080508,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,27334.0,,2666.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002630774431051678,0.0007847025434259623,0.0,0.0034154769744776403,0.0012315739007268125,0.0010019542664074003,0.001181979496949725,0.0,0.0,0.0004468713573008502,0.0010019542664074003,0.001181979496949725,0.0,0.0,0.0007847025434259623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.242964229187498e-05,0.0,0.0,0.0003135043042712407,0.00014847118734510458,0.00036593394656311574,5.325279595078901e-05,0.00011940095338241598,0.00014085421215910226,0.0,0.0,5.242964229187498e-05,0.0,0.0,0.0,0.0,0.0,0.00013195073523984718,0.00010734930486196188,0.00012663719454342076,0.0,0.0 +103039,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960102,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Propane,4711.0,,,3844.0,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011311846475325078,0.0,0.0009866126826361982,0.002117797330168706,0.0014257872441919206,0.00029245221274219106,0.00035911411417607284,0.0,4.044375905852133e-05,0.00047961832061424383,0.00029245221274219106,0.00035911411417607284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000946168923577677,4.044375905852133e-05,0.0,0.0,0.0,7.956851239019895e-05,0.0001348027438453554,0.00011747444689142086,0.00021437125623555438,5.715589029459794e-05,3.485139301288124e-05,4.279546053787622e-05,0.0,0.0,0.0,0.0,0.0,7.630679702773711e-05,3.26171536246184e-06,0.0,0.00014432344318693747,2.9603091542955566e-05,3.635085505642338e-05,0.0,4.093866449237916e-06 +103040,50.0,the Greater Atlanta and Macon Area,G1300590150600,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,6358.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011934630740582063,0.0,0.0,0.0011934630740582063,0.0007157470161399665,0.00019518869402476553,0.00024315879679356382,0.0,3.9451274173649644e-05,0.0007157470161399665,0.00019518869402476553,0.00024315879679356382,0.0,3.9451274173649644e-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.0001422215291904602,4.7908931490813915e-05,0.0001422215291904602,8.529349366696066e-05,2.32600699161113e-05,2.897652777685051e-05,0.0,4.701293792366563e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.529349366696066e-05,2.32600699161113e-05,2.897652777685051e-05,0.0,4.701293792366563e-06 +103041,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,85135.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007477369126403794,0.0,0.0,0.007477369126403794,0.0036113073522632817,0.0015559016600809358,0.002310129424453279,0.0,0.0,0.0036113073522632817,0.0015559016600809358,0.002310129424453279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008910637788750784,0.0002934190938593689,0.0008910637788750784,0.0004303525908095312,0.00018541382528436344,0.0002752937055594929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004303525908095312,0.00018541382528436344,0.0002752937055594929,0.0,0.0 +103042,50.0,the Greater Atlanta and Macon Area,G1300670030506,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,4954.0,,522.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0004194897818347904,0.00015220210678257436,0.0,0.0005716615150179272,0.0003748102170618575,0.00015599880671229337,4.0882864843213956e-05,0.0,0.0,0.00022260811027928314,0.00015599880671229337,4.0882864843213956e-05,0.0,0.0,0.00015220210678257436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0168336846515656e-05,0.0,0.0,4.9988267248856207e-05,2.3410865292661478e-05,6.015660409537187e-05,2.652697202714265e-05,1.858951130186992e-05,4.871783919843636e-06,0.0,0.0,1.0168336846515656e-05,0.0,0.0,0.0,0.0,0.0,3.944171375255772e-05,1.6415935318730667e-05,4.302151273172016e-06,0.0,0.0 +103043,50.0,the Greater Atlanta and Macon Area,G1300670031308,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5833.0,,1247.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005025919498964794,0.0003632075020766363,0.0,0.0008657994519731156,0.0006323479666945551,0.00019624382596731453,3.717728571180823e-05,0.0,0.0,0.0002691404646179189,0.00019624382596731453,3.717728571180823e-05,0.0,0.0,0.0003632075020766363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.426664026350969e-05,0.0,0.0,5.9892913428287965e-05,3.945977329334732e-05,8.415955369179764e-05,3.207295013525471e-05,2.338599828731302e-05,4.430345442450261e-06,0.0,0.0,2.4266640263509692e-05,0.0,0.0,0.0,0.0,0.0,6.146703204032749e-05,1.9075771843631106e-05,3.6137973590163243e-06,0.0,0.0 +103044,35.0,Eastern Counties in South Carolina and Georgia,G1300250960200,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,24901.0,,2148.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0012817810181398775,0.0003652099845302476,0.0,0.001646991002670125,0.0006592325679589832,0.00033705417059520375,0.0003688447086213585,0.0,0.00028185955549457945,0.0006031691651487762,0.00033705417059520375,0.0002838630863350454,0.0,5.769459606085181e-05,5.606340281020696e-05,8.498162228631307e-05,0.00022416495943372762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4400955670823043e-05,0.0,0.0,0.0001527470828859901,5.879828870605468e-05,0.00017714803855681317,7.187837014231662e-05,4.0166019471631706e-05,3.382735253765512e-05,0.0,6.875340734386616e-06,3.745791913348017e-06,5.6779192412008376e-06,1.4977244516274193e-05,0.0,0.0,0.0,7.090612892078747e-05,3.625307309604825e-05,3.9672418706843335e-05,0.0,3.0316417833134095e-05 +103045,50.0,the Greater Atlanta and Macon Area,G1300210010800,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,DistrictHeating,45523.0,,,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,431997.0345818221,0.022351175879441076,0.006127399992195923,0.00700319519760958,0.0,0.0,0.03548177106924658,0.0296317626391194,0.0027548623525980834,0.0029577332529420026,0.0,0.0001374128245870945,0.0012905995920694934,0.0027548623525980834,0.0029577332529420026,0.0,0.0,0.0,0.0,0.0,0.00598998716760883,0.0,0.0001374128245870945,0.022351175879441076,0.0,0.0,0.0,0.0,0.0,0.0,0.0008345585031233864,0.0002841491904394963,0.0008345585031233864,0.0001537984924448218,0.0003282921204423922,0.00035246789023617224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006969618124402175,6.479647807907594e-05,6.956815744614847e-05,0.0,3.2320551579444348e-06 +103046,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,77374.0,,1622.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0038493678464619836,0.0002758844236960215,0.0,0.0041252522701580065,0.0018094720347234887,0.000740721309045546,0.0010236978773095888,0.0,0.0005513610490793819,0.0016892069932112706,0.000740721309045546,0.0008680784951257852,0.0,0.0005513610490793819,0.00012026504151221816,0.00015561938218380342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.84326992688411e-05,0.0,0.0,0.0004587218643018636,0.00015286292424952438,0.0004771545635707047,0.00020129959308249032,8.827035330639851e-05,0.00010344726758458652,0.0,6.570465032838821e-05,8.035282721114988e-06,1.0397416547726115e-05,0.0,0.0,0.0,0.0,0.0002092957672595405,8.567683375436601e-05,0.00011840781651329274,0.0,6.377414604350527e-05 +103047,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,210870.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,1133273.7058648225,0.0,0.0,0.024203020421014024,0.0,0.0,0.024203020421014024,0.009335103064422638,0.004966284159913157,0.009901663886284526,0.0,0.0,0.009335103064422638,0.004966284159913157,0.009901663886284526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002884228284095419,0.0008823277556387034,0.002884228284095419,0.0011124466213306423,0.0005918227143435373,0.0011799626056437252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011124466213306423,0.0005918227143435373,0.0011799626056437252,0.0,0.0 +103048,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,72259.0,,9038.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0039815476908484785,0.001537027301142957,0.0,0.005518574991991435,0.0023516132958644434,0.0011585550062705103,0.0013872766685891916,0.0,0.0006211300212672897,0.0019432121509149471,0.0011585550062705103,0.0007529552584253826,0.0,0.00012682527523763773,0.00040840114494949617,0.0006343214101638089,0.000494304746029652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010269517125433167,0.0,0.0,0.0004744738266715109,0.00021408881544103558,0.0005771689979258425,0.00023156907234802234,0.00013806290164452656,8.972831434335907e-05,0.0,1.5113538335602876e-05,2.7286974987279537e-05,4.2381645269814746e-05,3.30265509972374e-05,0.0,0.0,0.0,0.00024594724026634647,0.00012116932957901469,0.0001450905506978689,0.0,6.496187738261241e-05 +103049,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,7464.0,,425.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017921795808570524,0.0003368659113401991,0.0,0.0021290454921972517,0.001255576086436426,0.00023571516015702615,0.0005280019587517385,0.0,0.00010975228685206095,0.0010285451690220271,0.00023571516015702615,0.0005280019587517385,0.0,0.0,0.00022703091741439884,0.0,0.00010975228685206095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2504800148136367e-05,0.0,0.0,0.0002135741845713331,9.451174272296389e-05,0.00023607898471946948,0.00012257181038945493,2.809019456496836e-05,6.292203582552913e-05,0.0,0.0,1.5167119176684098e-05,0.0,7.332155609274972e-06,0.0,0.0,0.0,0.00013922442184081526,2.6137250658475957e-05,5.8547441474986126e-05,0.0,1.2169870745192138e-05 +103050,50.0,the Greater Atlanta and Macon Area,G1300670030223,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,175287.0,,3055.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00902294546594203,0.0005195350503303871,0.0,0.00954248051627242,0.005408699942271368,0.0018458901970802774,0.0009559324359621469,0.0,0.0013319402105972068,0.005408699942271368,0.0018458901970802774,0.0004363973856317597,0.0,0.0013319402105972068,0.0,0.0005195350503303871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4712308184114475e-05,0.0,0.0,0.0010752470391612915,0.00037027058701747924,0.0011099593473454061,0.0006445443586676888,0.0002199711808654051,5.200463624317028e-05,0.0,0.0001587247504919936,0.0,3.4712308184114475e-05,0.0,0.0,0.0,0.0,0.0006291275153953144,0.0002147096947097415,0.00011119185843947892,0.0,0.0001549282164460825 +103051,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,NaturalGas,4589.0,,719.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00023623933556078355,0.00012235722415978437,0.0,0.00035861429008198804,0.00020416511175190801,7.613417193770673e-05,1.2783590583858072e-05,0.0,6.553141580851515e-05,0.00011467997766490155,7.613417193770673e-05,1.2783590583858072e-05,0.0,3.264159537431721e-05,8.948513408700649e-05,0.0,3.288982043419794e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175714323528207e-06,0.0,0.0,2.8152985424412796e-05,1.6790231192059234e-05,3.6328699747941e-05,1.3666579835267338e-05,9.073020069981128e-06,1.523439094191056e-06,0.0,3.889946424973279e-06,5.979253758998242e-06,0.0,2.1976452789660657e-06,0.0,0.0,0.0,2.0682536220584424e-05,7.712619238488018e-06,1.2950159457265629e-06,0.0,6.638528343141991e-06 +103052,46.0,the Tallahassee-Valdosta Area,G1301850011301,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,15978.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003631998436187946,0.0,0.0,0.003631998436187947,0.0015436448242704339,0.0005452877371632539,0.0014748325389193299,0.0,6.815062876118932e-05,0.0015436448242704339,0.0005452877371632539,0.0014748325389193299,0.0,6.815062876118932e-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.00043281565651998,0.0001211165226069973,0.00043281565651998,0.00018395207481188022,6.498049878025753e-05,0.00017575189659480538,0.0,8.12133034960294e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00018395207481188016,6.498049878025751e-05,0.00017575189659480535,0.0,8.121330349602939e-06 +103053,50.0,the Greater Atlanta and Macon Area,G1300590140400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,30646.0,,2085.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027104753386068122,0.0006137614363477579,0.0,0.0033242367749545705,0.0011257868278186313,0.0009626408807400434,0.0012358090663958955,0.0,0.0,0.0005120253914708732,0.0009626408807400434,0.0012358090663958955,0.0,0.0,0.0006137614363477579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.100740635344512e-05,0.0,0.0,0.0003230020496295693,0.00014010983222315174,0.00036400945598301447,6.1017065365546874e-05,0.00011471603268527384,0.00014726895157874856,0.0,0.0,4.100740635344512e-05,0.0,0.0,0.0,0.0,0.0,0.00012327553014111154,0.00010541077757915781,0.0001353231482627451,0.0,0.0 +103054,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,28331.0,,2595.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002459495738304199,0.0007637108527183336,0.0,0.0032232065910225323,0.001245138706710397,0.0008364452196438893,0.0011416226646682457,0.0,0.0,0.0004814278539920635,0.0008364452196438893,0.0011416226646682457,0.0,0.0,0.0007637108527183336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.102671464804459e-05,0.0,0.0,0.0002930946117335092,0.00013354016863306115,0.0003441213263815538,5.737107316184672e-05,9.967798808096721e-05,0.00013604555049069524,0.0,0.0,5.102671464804459e-05,0.0,0.0,0.0,0.0,0.0,0.00013293556313629385,8.930195142659197e-05,0.00012188381181866795,0.0,0.0 +103055,50.0,the Greater Atlanta and Macon Area,G1300590140300,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,84572.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.007251094659170833,0.0,0.0,0.007251094659170833,0.0026596533505778164,0.002442739213265653,0.0021487020953273625,0.0,0.0,0.0026596533505778164,0.002442739213265653,0.0021487020953273625,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.343704135180828e-10,0.0,0.0,0.0008640985367216185,0.0002716008754787018,0.0008640994710920323,0.000316945602897955,0.0002910963763389535,0.00025605655748470993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003169459456188155,0.0002910966911084272,0.00025605683436478945,0.0,0.0 +103056,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,324670.0,,4645.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.01671246137092757,0.0007899939834318725,0.0,0.01750245535435944,0.007867386890751511,0.0050714861984233845,0.0025566649256873538,0.0,0.002006917339497197,0.0074986662946600925,0.0050714861984233845,0.0021353915383468995,0.0,0.002006917339497197,0.00036872059609141804,0.00042127338734045453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2783224630756026e-05,0.0,0.0,0.0019915909013529113,0.0005841779181470728,0.002044374125983667,0.0008936012017180154,0.000604358959757242,0.0002544703777742609,0.0,0.0002391603621033932,2.463596237142478e-05,2.814726225933125e-05,0.0,0.0,0.0,0.0,0.0009189500486027163,0.0005923748956604317,0.0002986312215664824,0.0,0.00023441796015403728 +103057,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,67081.0,,1643.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.016893333346622238,0.0013034634821314848,0.0,0.018196714121679985,0.013108244116942834,0.0012130646505344221,0.0036707880537716815,0.0,0.00020461730043104653,0.01180478063481135,0.0012130646505344221,0.0036707880537716815,0.0,0.00020461730043104653,0.0013034634821314848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.708713639120671e-05,0.0,0.0,0.0020131439206632937,0.0007351104816503669,0.0021002310570545,0.0014067515203851652,0.00014455842884809935,0.0004374402909637412,0.0,2.4383824433776344e-05,8.708713639120671e-05,0.0,0.0,0.0,0.0,0.0,0.0015129292691945409,0.0001400096762652302,0.0004236755615790353,0.0,2.3616550015693694e-05 +103058,50.0,the Greater Atlanta and Macon Area,G1300590001200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4641.0,,650.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007901006754316038,0.000515513190617103,0.0,0.0013056965731224463,0.0006982131165072333,0.00029088077834114423,0.0002856702326955678,0.0,3.101515265224028e-05,0.0002136323714686311,0.00029088077834114423,0.0002856702326955678,0.0,0.0,0.0004845807450386022,0.0,3.101515265224028e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.444617208658496e-05,0.0,0.0,9.415940535326661e-05,6.277089987428432e-05,0.00012860557743985156,2.545941003114076e-05,3.4665406534851736e-05,3.4044445314580005e-05,0.0,0.0,3.237929123300198e-05,0.0,2.072407272977597e-06,0.0,0.0,0.0,6.877103216236314e-05,2.8650523586239183e-05,2.8137306928311094e-05,0.0,3.0548610590957326e-06 +103059,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,86061.0,,16007.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005352069167895719,0.0027221778495435467,0.0,0.008074229287077846,0.0033668892514995066,0.0010811265179491397,0.0020667395789284553,0.0,0.0015594739387007443,0.0024610982776332693,0.0010811265179491397,0.0015794737863825642,0.0,0.00023035285556932604,0.0009057909738662374,0.0004872657925458912,0.0013291210831314181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018187959945578677,0.0,0.0,0.0006377952433214574,0.000329616652888775,0.0008196748427772442,0.0002932840973425392,0.00012883565756452247,0.00018822269225302342,0.0,2.74506832701108e-05,6.051952099495725e-05,3.255617820548116e-05,8.880390025534835e-05,0.0,0.0,0.0,0.0003417978756545862,0.00010975316369086989,0.00020981004863595925,0.0,0.00015831375479582888 +103060,46.0,the Tallahassee-Valdosta Area,G1301850010900,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,48810.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004235841430389993,0.0,0.0,0.004235841430389993,0.0033129699850733426,0.0007186089890977703,0.00020423208261944323,0.0,0.0,0.0033129699850733426,0.0007186089890977703,0.00020423208261944323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005047777924076779,0.00014981538578058004,0.0005047777924076779,0.00039480082124421017,8.563537258940505e-05,2.433797900550148e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039480082124421017,8.563537258940505e-05,2.433797900550148e-05,0.0,0.0 +103061,81.0,the Columbus-Albany Area,G1300950000900,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,3384.0,,520.0,,8.72605822017302,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0008914168407622553,0.0004125428838116654,0.0,0.0013039597245739205,0.0008322812830386506,0.00019576764354094065,0.0002477076858492257,0.0,2.8285819218843137e-05,0.00044802421844582826,0.00019576764354094065,0.0002477076858492257,0.0,0.0,0.00038425706459282224,0.0,2.8285819218843137e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7562508744267736e-05,0.0,0.0,0.00010623108797727846,5.826588552968158e-05,0.0001337935967215462,5.3391520093980094e-05,2.3329837190779192e-05,2.9519586981995643e-05,0.0,0.0,2.5672697599412166e-05,0.0,1.8898111448555667e-06,0.0,0.0,0.0,8.539673752435111e-05,2.008686055054547e-05,2.5416200823356014e-05,0.0,2.9022840339191173e-06 +103062,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,4647.0,,587.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1870.6521585294563,0.0,0.0,0.00019976798211973496,9.976874371063711e-05,0.0,0.00029951899546895204,0.00015145274725009101,5.9095294613035996e-05,1.5212650098405305e-05,0.0,7.37760338688397e-05,9.18432721558735e-05,5.9095294613035996e-05,1.5212650098405305e-05,0.0,3.361676525242012e-05,5.9609475094217505e-05,0.0,4.015926861641959e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.665471266998998e-06,0.0,0.0,2.3805318559495023e-05,1.3781391744021271e-05,3.0470789826494024e-05,1.0944488341012174e-05,7.042081011697604e-06,1.8128129337043336e-06,0.0,4.005936273080905e-06,3.9824621289587035e-06,0.0,2.6830091380402924e-06,0.0,0.0,0.0,1.540765327046184e-05,6.011906854419261e-06,1.5476195862861465e-06,0.0,7.505413867758339e-06 +103063,50.0,the Greater Atlanta and Macon Area,G1302230120204,ComStock 90.1-2007,gen1_t12_incandescent,_1000,NaturalGas,1715.0,,383.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.0004117985201480117,0.0003041139101394334,0.0,0.0007159124302874452,0.00042552789438873666,0.00017203071337775942,6.22784265256985e-05,0.0,5.6075395995250426e-05,0.00017748938024455375,0.00017203071337775942,6.22784265256985e-05,0.0,0.0,0.0002480385141441829,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.031990683474037e-05,0.0,0.0,4.906986908660419e-05,3.418487051011743e-05,6.938977592134457e-05,2.1149616200010563e-05,2.0499162020513496e-05,7.421090866080128e-06,0.0,0.0,1.6573130431706924e-05,0.0,3.7467764030334433e-06,0.0,0.0,0.0,4.124426953735186e-05,1.6674068151154882e-05,6.036333325874821e-06,0.0,5.435104906962986e-06 +103064,50.0,the Greater Atlanta and Macon Area,G1301350050605,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,68027.0,,6738.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005998755515356548,0.0019630153580624623,0.0,0.007961770873419012,0.00526687326330448,0.002194492559377569,0.0005003746771375235,0.0,0.0,0.003303857905242017,0.002194492559377569,0.0005003746771375235,0.0,0.0,0.0019630153580624623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013115741927290705,0.0,0.0,0.0007148594280216374,0.00030104373301734395,0.0008460168472945446,0.0003937139905702084,0.0002615131908240715,5.962862706762288e-05,0.0,0.0,0.00013115741927290705,0.0,0.0,0.0,0.0,0.0,0.0005596573405794721,0.00023318652420584917,5.316975501407833e-05,0.0,0.0 +103065,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,50244.0,,4792.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006040914071376146,0.0013960617509573869,0.0,0.007436975822333535,0.004942513594908727,0.0019171208493120192,0.0005773413781127866,0.0,0.0,0.0035464518439513406,0.0019171208493120192,0.0005773413781127866,0.0,0.0,0.0013960617509573869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.327588167288816e-05,0.0,0.0,0.0007198841313650848,0.00028063397579468916,0.000813160013037973,0.00042262385707622256,0.0002284596107513383,6.880066353752399e-05,0.0,0.0,9.327588167288817e-05,0.0,0.0,0.0,0.0,0.0,0.0005404151519770925,0.00020961827119841028,6.312658986247003e-05,0.0,0.0 +103066,81.0,the Columbus-Albany Area,G1302150010402,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,144287.0,,6878.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006716704164951504,0.0011696719428808833,0.0,0.007886376107832386,0.0036496707857879298,0.0010547969312403613,0.0018115642173710548,0.0,0.0013703796341558811,0.003105827409950649,0.0010547969312403613,0.0011857356503274512,0.0,0.0013703796341558811,0.0005438433758372795,0.0006258285670436037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.815069273969204e-05,0.0,0.0,0.0008004171931634397,0.0002832770171527084,0.0008785678859031316,0.0003701156991392851,0.00012569819636635963,0.00014130192096614052,0.0,0.00016330560248030684,3.633645897232945e-05,4.181423376736259e-05,0.0,0.0,0.0,0.0,0.00040658516695996663,0.00011750780044798885,0.00020181413146816096,0.0,0.00015266473746659257 +103067,50.0,the Greater Atlanta and Macon Area,G1300150960401,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,26601.0,,377.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0029925020194941816,0.00014007555193607928,0.0,0.003132577571430261,0.001684936459305248,0.00042948752908976564,0.0009480189360077777,0.0,7.013464702746985e-05,0.001684936459305248,0.00042948752908976564,0.0008079433840716983,0.0,7.013464702746985e-05,0.0,0.00014007555193607928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.358396211653865e-06,0.0,0.0,0.00035661076097893345,0.00011728267645539588,0.00036596915719058727,0.00020079066581734766,5.118121009841508e-05,9.628107287640319e-05,0.0,8.35781218676753e-06,0.0,9.358396211653865e-06,0.0,0.0,0.0,0.0,0.0001968458120735676,5.017567337465328e-05,0.00011075406214221106,0.0,8.193609600155398e-06 +103068,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5914.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00041676485352280384,0.0,0.0,0.0004167648535228038,0.00017376455085759315,0.0001355253014106555,0.00010747500125455515,0.0,0.0,0.00017376455085759315,0.0001355253014106555,0.00010747500125455515,0.0,0.0,0.0,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.9664593274011465e-05,1.995500734369764e-05,4.9664593274011465e-05,2.0706990214834528e-05,1.615013578041492e-05,1.2807467278762013e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0706990214834528e-05,1.6150135780414923e-05,1.2807467278762014e-05,0.0,0.0 +103069,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,22428.0,,8699.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004524956411316933,0.0059837406217744605,0.0,0.010508697033091393,0.003859179920379015,0.000473710408558111,0.004149789242934271,0.00038327152510742545,0.001642745936112571,0.002616416262620507,0.000473710408558111,0.0008506705762161628,0.00038327152510742545,0.00020095935878574215,0.001242763657758508,0.003299118666718108,0.001441786577326829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039979876783607633,0.0,0.0,0.0005392276963416173,0.0005655921687043151,0.0009390264641776936,0.00031179175791286594,5.6450880212013916e-05,0.00010137227709230841,4.567350550386106e-05,2.394782230947206e-05,8.30342440438145e-05,0.00022042793317263772,9.633179870803341e-05,0.0,0.0,0.0,0.00034484504252503014,4.2329378094330395e-05,0.00037081304253081763,3.4248023699636886e-05,0.0001467909773278785 +103070,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,20644.0,,1329.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0018204113087022177,0.00038723301923189793,0.0,0.0022076443279341156,0.001650744382242936,0.0004069151116675612,0.00014995446042418076,0.0,0.0,0.001263511363011038,0.0004069151116675612,0.00014995446042418076,0.0,0.0,0.00038723301923189793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5872868598109192e-05,0.0,0.0,0.0002169358177264921,7.147557869424288e-05,0.00024280868632460127,0.00015057084595729208,4.849149314382178e-05,1.786985904687976e-05,0.0,0.0,2.5872868598109192e-05,0.0,0.0,0.0,0.0,0.0,0.00018155781247842592,4.475472903829897e-05,1.6492804154816898e-05,0.0,0.0 +103071,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9809.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.002092075430235781,0.0,0.0,0.002092075430235781,0.0009842141774977582,0.00042296397510281815,0.0006297316594510867,0.0,5.5165618184118056e-05,0.0009842141774977582,0.00042296397510281815,0.0006297316594510867,0.0,5.5165618184118056e-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.0002493119962120452,7.997376691022672e-05,0.0002493119962120452,0.0001172885058281612,5.0404488975228276e-05,7.504493137610248e-05,0.0,6.574070032553239e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001172885058281612,5.0404488975228276e-05,7.504493137610248e-05,0.0,6.574070032553239e-06 +103072,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,4978.0,,747.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009840487633502796,0.000592430769194659,0.0,0.0015764795325449387,0.0010133270674539945,0.00026185059545864734,0.0002620160096061259,0.0,3.9203152952431716e-05,0.0004600994512117672,0.00026185059545864734,0.0002620160096061259,0.0,0.0,0.0005532276162422272,0.0,3.9203152952431716e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.958344974671687e-05,0.0,0.0,0.00011726655260355535,7.368284284929205e-05,0.0001568500023502722,5.4828864694366996e-05,3.120405997166383e-05,3.12237719489043e-05,0.0,0.0,3.6964078648023045e-05,0.0,2.6193710986938147e-06,0.0,0.0,0.0,0.00010081980110149178,2.6052521244476256e-05,2.60689789331967e-05,0.0,3.900472226747234e-06 +103073,50.0,the Greater Atlanta and Macon Area,G1301350050715,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,13192.0,,892.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0010368028168076585,0.0002598157695905291,0.0,0.0012966185863981876,0.0010713375993683823,0.00014907362604048592,7.617698738988158e-05,0.0,0.0,0.0008115218297778533,0.00014907362604048592,7.617698738988158e-05,0.0,0.0,0.0002598157695905291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7359739859013845e-05,0.0,0.0,0.00012355427239686028,4.373353570845367e-05,0.00014091401225587414,9.670786728868649e-05,1.7764885569760953e-05,9.077899961075893e-06,0.0,0.0,1.7359739859013845e-05,0.0,0.0,0.0,0.0,0.0,0.0001164309082032653,1.6201034743185135e-05,8.278768365099495e-06,0.0,0.0 +103074,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,95254.0,,608.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0046088833386127865,0.00010331481599464769,0.0,0.0047121981546074335,0.0019483007646425021,0.000705473350542481,0.0012767810562194224,0.0,0.0007816429832030278,0.0019483007646425021,0.000705473350542481,0.0011734662402247747,0.0,0.0007816429832030278,0.0,0.00010331481599464769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.902445258216956e-06,0.0,0.0,0.0005492323720088794,0.00015007825181481406,0.0005561348172670962,0.0002321755123169145,8.406999553694964e-05,0.000139839869929314,0.0,9.314699422570119e-05,0.0,6.902445258216957e-06,0.0,0.0,0.0,0.0,0.00022993894869772686,8.326014314723442e-05,0.00015068602297558365,0.0,9.224970244655129e-05 +103075,50.0,the Greater Atlanta and Macon Area,G1302230120501,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,615441.0,,67156.0,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,2664908.3895131643,0.0,0.0,0.12894543820610616,0.04648458351774948,0.0,0.17543002172385566,0.13771806148950244,0.0271853174634368,0.0047722608792730254,0.0007874143850373213,0.004966895339583323,0.09123347797175296,0.0271853174634368,0.0047722608792730254,0.0007874143850373213,0.004966895339583323,0.04648458351774948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003105826981736459,0.0,0.0,0.015366182794021901,0.006780070695103143,0.01847200977575836,0.01087212016921076,0.0032396226130076778,0.0005687012587018097,9.383467568496623e-05,0.0005918954774097516,0.003105826981736459,0.0,0.0,0.0,0.0,0.0,0.014501106213946542,0.0028624943724407715,0.000502498082985833,8.291127182824862e-05,0.0005229922356868492 +103076,50.0,the Greater Atlanta and Macon Area,G1301210008601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,195950.0,,15378.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.017207038938279098,0.004479923675471767,0.0,0.021686962613750867,0.016323410183436023,0.0038381295193520714,0.001525422910962772,0.0,0.0,0.011843486507964254,0.0038381295193520714,0.001525422910962772,0.0,0.0,0.004479923675471767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002993226610642418,0.0,0.0,0.002050530775777581,0.0009111753576124616,0.002349853436841823,0.0014113662242642708,0.0004573827448802733,0.00018178180663303698,0.0,0.0,0.0002993226610642418,0.0,0.0,0.0,0.0,0.0,0.0017686949622076104,0.0004158739055682649,0.00016528456906594757,0.0,0.0 +103077,50.0,the Greater Atlanta and Macon Area,G1301210007500,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,3355.0,,709.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00035492529683293266,0.0002086279436117835,0.0,0.0005635532404447162,0.00036959492864323463,0.0001069225883411965,8.703572346028511e-05,0.0,0.0,0.00016096698503145112,0.0001069225883411965,8.703572346028511e-05,0.0,0.0,0.0002086279436117835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3938826652479383e-05,0.0,0.0,4.229642786397858e-05,2.937636548055077e-05,5.623525451645796e-05,1.9182426644752934e-05,1.2741958899965533e-05,1.037204231926012e-05,0.0,0.0,1.3938826652479382e-05,0.0,0.0,0.0,0.0,0.0,3.688074770689447e-05,1.0669478120968226e-05,8.685028688595262e-06,0.0,0.0 +103078,50.0,the Greater Atlanta and Macon Area,G1300890021410,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,192229.0,,13853.0,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1398753.3485215676,0.0,0.0,0.04315400709112196,0.011743779849077953,0.0,0.054897786940199915,0.027620933233753926,0.013068128073373398,0.013266727276522883,0.0,0.0009419099723916534,0.015877153384675973,0.013068128073373398,0.013266727276522883,0.0,0.0009419099723916534,0.011743779849077953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007846530867919048,0.0,0.0,0.005142576192158209,0.0021385260759803635,0.005927229278950113,0.001892048421433301,0.001557302527301808,0.0015809691947271892,0.0,0.00011224551613363927,0.0007846530867919047,0.0,0.0,0.0,0.0,0.0,0.0029821895070809993,0.0014109456073692623,0.0014323880566426011,0.0,0.00010169656515619407 +103079,81.0,the Columbus-Albany Area,G1302150010203,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,26481.0,,1415.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023051270186267535,0.0004165193366724222,0.0,0.0027216463552991762,0.0008208242100383586,0.000772672217757263,0.0011281499275035544,0.0,0.0,0.0004043048733659365,0.000772672217757263,0.0011281499275035544,0.0,0.0,0.0004165193366724222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7830305426453832e-05,0.0,0.0,0.000274696033773239,0.00010930936994157303,0.0003025263391996928,4.8179967633617595e-05,9.207735274871642e-05,0.00013443871339090501,0.0,0.0,2.7830305426453832e-05,0.0,0.0,0.0,0.0,0.0,9.12392394059175e-05,8.588687394461921e-05,0.00012540022584915607,0.0,0.0 +103080,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300050970202,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,56162.0,,2520.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002712124734618377,0.00042856056588409623,0.0,0.0031406853005024734,0.0011306119566725072,0.0009019080247152461,0.0008110931135217356,0.0,0.0002970722055929847,0.0011306119566725072,0.0009019080247152461,0.0005996940143104461,0.0,7.989300855875793e-05,0.0,0.00021139909921128957,0.00021717919703422679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.863437373079521e-05,0.0,0.0,0.00032319871402132044,0.0001078552721639117,0.00035183308775211565,0.00013473286305362364,0.00010747865318756925,7.146438796027276e-05,0.0,9.520696926617657e-06,0.0,1.4124679905352338e-05,1.451087848365854e-05,0.0,0.0,0.0,0.00012665601857719016,0.00010103561956787226,9.086214226531187e-05,0.0,3.3279307341741356e-05 +103081,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,54686.0,,4428.0,,5.759960461090961,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,100799.30806909183,0.0,0.0,0.007533192695063498,0.002318820942197955,0.0,0.009852013637261455,0.007486678699613278,0.0011280735774505896,0.0011843598794566664,0.0,5.290148074091958e-05,0.005167857757415323,0.0011280735774505896,0.0011843598794566664,0.0,5.290148074091958e-05,0.002318820942197955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015492951774536646,0.0,0.0,0.0008977144211684826,0.0003915882057130601,0.001052643938913849,0.0006158425282840909,0.00013443010946475985,0.00014113762738849638,0.0,6.304156031135474e-06,0.00015492951774536646,0.0,0.0,0.0,0.0,0.0,0.0007999183969800053,0.00012052965593359669,0.0001265435975329549,0.0,5.652288467292029e-06 +103082,50.0,the Greater Atlanta and Macon Area,G1301350050721,ComStock 90.1-2004,gen3_t5_cfl,5001_10000,Electricity,67246.0,,4540.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.01333216885203397,0.003123117857845798,0.0,0.016455286709879766,0.005398649098229106,0.0006634097318944023,0.005799994056032465,0.0003688558109332877,0.004224306292819491,0.005398649098229106,0.0006634097318944023,0.002676876198186667,0.0003688558109332877,0.004224306292819491,0.0,0.003123117857845798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020866714359559738,0.0,0.0,0.0015887727357936055,0.0006398820939426217,0.0017974398793892028,0.0006433481748226274,7.90574516713514e-05,0.00031899895418178585,4.395594312927138e-05,0.0005034036652370374,0.0,0.00020866714359559738,0.0,0.0,0.0,0.0,0.0005897039264687753,7.246541063097713e-05,0.0006335435413759048,4.029076831082329e-05,0.0004614283985042759 +103083,50.0,the Greater Atlanta and Macon Area,G1300670031409,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,224862.0,,5643.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01290369605211751,0.0009597267333060381,0.0,0.01386342278542355,0.006547237370498638,0.0031728127153956088,0.0019141875492703206,0.0,0.0022291851502589787,0.005587510637192599,0.0031728127153956088,0.0019141875492703206,0.0,0.0022291851502589787,0.0009597267333060381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.412315539218018e-05,0.0,0.0,0.001537709427976219,0.0004325829238925946,0.0016018325833683992,0.0006658532370125474,0.0003780981825642142,0.00022811016545485352,0.0,0.0002656478429446038,6.412315539218018e-05,0.0,0.0,0.0,0.0,0.0,0.0007564927012208657,0.00036659884554555777,0.00022117250801318797,0.0,0.0002575685285887875 +103084,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,145667.0,,16972.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007498258496347432,0.002886290074847555,0.0,0.010384548571194988,0.003810573815674909,0.0013973475138757813,0.0032404717745745304,0.0,0.001936155467069766,0.003054586665446697,0.0013973475138757813,0.002798755280516755,0.0,0.00024758676686961734,0.0007559871502282113,0.0004417164940577754,0.0016885687002001488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019284503968452832,0.0,0.0,0.0008935534464834312,0.00041678371410907656,0.0010863984861679598,0.0003640093821547759,0.0001665192907882519,0.0003335224343076012,0.0,2.9504452126824302e-05,5.051064453196132e-05,2.9512915409370804e-05,0.00011282029510403559,0.0,0.0,0.0,0.0003986501287368051,0.0001461860583844831,0.0003390078640618907,0.0,0.00020255443498478072 +103085,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,26521.0,,5067.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001513321807924347,0.000861677834653146,0.0,0.002374999642577493,0.0009360744311716876,0.00026691286081747493,0.0007751359405618684,0.0,0.000396894140387882,0.0006401901597938465,0.00026691286081747493,0.00020934237728656346,0.0,0.000396894140387882,0.00029588427137784115,0.000565793563275305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.757234286122135e-05,0.0,0.0,0.00018034045804162237,0.00010806449276315844,0.00023791280090284373,7.629057220110668e-05,3.18076349160955e-05,2.494704035168989e-05,0.0,4.729732347527553e-05,1.9769280389885843e-05,3.7803062471335515e-05,0.0,0.0,0.0,0.0,9.377015717438191e-05,2.6737682471884566e-05,7.764833282222994e-05,0.0,3.975840455248678e-05 +103086,50.0,the Greater Atlanta and Macon Area,G1301210007808,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,52682.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.007688226236882617,0.0,0.0,0.007688226236882617,0.0049730694359431055,0.002001377214152343,0.0007137795867871679,0.0,0.0,0.0049730694359431055,0.002001377214152343,0.0007137795867871679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009161915035541283,0.00030997434777167395,0.0009161915035541283,0.0005926313590952877,0.00023850036959327365,8.505977486556687e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005926313590952877,0.00023850036959327365,8.505977486556687e-05,0.0,0.0 +103087,50.0,the Greater Atlanta and Macon Area,G1300210012000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,8817.0,,251.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018870445944360382,0.00019891051234303432,0.0,0.0020860378138528118,0.0015301635712509267,0.00033198619398958,0.00019543681524598344,0.0,2.836852629258244e-05,0.0013596215852004748,0.00033198619398958,0.00019543681524598344,0.0,0.0,0.0001705419860504519,0.0,2.836852629258244e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3291321698609744e-05,0.0,0.0,0.00022487901187107876,8.537976497253138e-05,0.0002381703335696885,0.00016202603769936287,3.956277847346205e-05,2.3290195698253815e-05,0.0,0.0,1.1395719477144822e-05,0.0,1.895602221464924e-06,0.0,0.0,0.0,0.00017470420035575323,3.790404087497937e-05,2.231371414737824e-05,0.0,3.238935231718466e-06 +103088,35.0,Eastern Counties in South Carolina and Georgia,G1300730030506,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,15126.0,,220.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003631998436187946,0.00017434651144246003,0.0,0.003806344947630406,0.002651919612377153,0.0007585892803369279,0.0003295876888511401,0.0,6.616565899144594e-05,0.0025437387599261388,0.0007585892803369279,0.0003295876888511401,0.0,0.0,0.00010818085245101409,0.0,6.616565899144594e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1648968936172252e-05,0.0,0.0,0.00043281790502732923,0.00015374507116023458,0.00044446687396350147,0.0003031322012802418,9.039954968599227e-05,3.92762980264587e-05,0.0,0.0,7.228107859826045e-06,0.0,4.420861076346206e-06,0.0,0.0,0.0,0.0003096646353214921,8.858046516868535e-05,3.8485952212953664e-05,0.0,7.726163555925453e-06 +103089,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,95104.0,,10099.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00829850023250513,0.00297274871402698,0.0,0.01127124894653211,0.004234521187350732,0.002470237100508395,0.0045664599690666855,0.0,0.0,0.0012617724733237524,0.002470237100508395,0.0045664599690666855,0.0,0.0,0.00297274871402698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019862203967900305,0.0,0.0,0.0009889148639820155,0.0004796095203140336,0.0011875369036610185,0.00015036277867965206,0.0002943729731649529,0.0005441754549214093,0.0,0.0,0.00019862203967900308,0.0,0.0,0.0,0.0,0.0,0.00044614844398948894,0.00026026376771217335,0.0004811214585075701,0.0,0.0 +103090,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,43423.0,,749.0,,4.088175128053588,Healthcare,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.004884897539675161,0.00027832992795487067,0.0,0.005163227467630032,0.0023047949943872563,0.0008238302378182521,0.001911537241524388,0.0,0.00012306499390013492,0.0023047949943872563,0.0008238302378182521,0.0016332073135695174,0.0,0.00012306499390013492,0.0,0.00027832992795487067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.859662975528646e-05,0.0,0.0,0.0005821240160612092,0.00015648197377707415,0.0006007206458164957,0.00027465806753025596,9.817429387133322e-05,0.00019462623170983604,0.0,1.4665422949783845e-05,0.0,1.859662975528646e-05,0.0,0.0,0.0,0.0,0.0002681535814920148,9.584931820416144e-05,0.00022239963151534227,0.0,1.4318114604977032e-05 +103091,35.0,Eastern Counties in South Carolina and Georgia,G1300730030506,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,75865.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0066898763969631524,0.0,0.0,0.0066898763969631524,0.0038765521226408277,0.002284094677718937,0.00052919922300395,0.0,0.0,0.0038765521226408277,0.002284094677718937,0.00052919922300395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007972200887110566,0.00020253939249710096,0.0007972200887110566,0.0004619614838485898,0.0002721913012357219,6.306368406156891e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004619614838485898,0.0002721913012357219,6.306368406156891e-05,0.0,0.0 +103092,50.0,the Greater Atlanta and Macon Area,G1301170130605,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,4465.0,,750.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0007156643090662272,0.0005952428097017955,0.0,0.0013108244116942834,0.000834845202324569,0.00022554219008709132,0.00022107600810516873,0.0,2.936101117745413e-05,0.00026896340380022773,0.00022554219008709132,0.00022107600810516873,0.0,0.0,0.0005658817985243413,0.0,2.936101117745413e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.976862763426587e-05,0.0,0.0,8.528193591479293e-05,6.101154763418401e-05,0.0001250505635490588,3.205094829480025e-05,2.687667158669135e-05,2.6344460268143006e-05,0.0,0.0,3.7806996008565666e-05,0.0,1.961631625700206e-06,0.0,0.0,0.0,7.96429041872799e-05,2.151636613024691e-05,2.1090299474202418e-05,0.0,2.8009937573295387e-06 +103093,50.0,the Greater Atlanta and Macon Area,G1300670031116,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,27655.0,,9791.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006028422163717186,0.006734935598191971,0.0,0.012763357761909159,0.00287209795929116,0.0004798783260654536,0.0071397948345750945,0.00037057709023766237,0.0019010095517397862,0.0021148785053083387,0.0004798783260654536,0.002829352856565856,0.00037057709023766237,0.00023373538553987642,0.0007572194539828213,0.0043104419780092395,0.00166727416619991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044998875032188466,0.0,0.0,0.0007183921400801467,0.0006274128057717703,0.0011683808904020313,0.00025202483405726455,5.718591171585584e-05,0.00033716697312666455,4.416075412282576e-05,2.785366705753612e-05,5.059294641341829e-05,0.00028799835881728104,0.00011139744509118536,0.0,0.0,0.0,0.0002629170500111808,4.3928931269660166e-05,0.0006535897529257118,3.39232981423306e-05,0.0001740218580531478 +103094,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5467.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.000652212300726845,0.0,0.0,0.000652212300726845,0.00037502283225792173,0.0002018629418632986,7.532652660562452e-05,0.0,0.0,0.00037502283225792173,0.0002018629418632986,7.532652660562452e-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,7.772431893799231e-05,2.2841324277580395e-05,7.772431893799231e-05,4.469157388010017e-05,2.4056062201923193e-05,8.976682855968934e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.469157388010017e-05,2.4056062201923193e-05,8.976682855968934e-06,0.0,0.0 +103095,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030500,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,11735.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.001034767785645329,0.0,0.0,0.001034767785645329,0.0008471804355177739,0.00014743345167084735,4.015389845670791e-05,0.0,0.0,0.0008471804355177739,0.00014743345167084735,4.015389845670791e-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.0001233127314449941,3.892312880450302e-05,0.0001233127314449941,0.0001009580458337377,1.7569566702888386e-05,4.785118908368035e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001009580458337377,1.7569566702888386e-05,4.785118908368035e-06,0.0,0.0 +103096,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen4_led,100001_200000,FuelOil,102041.0,,7068.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010218656829733502,0.0020806325485590578,0.0,0.012299289378292558,0.005742639130426145,0.0023130756266578592,0.004243543931602257,0.0,0.0,0.003662006581867087,0.0023130756266578592,0.004243543931602257,0.0,0.0,0.0020806325485590578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013901566318236724,0.0,0.0,0.0012177366141114595,0.0005642861442148616,0.0013567522772938267,0.00043639389893994547,0.00027564453222405966,0.0005056945257293007,0.0,0.0,0.00013901566318236724,0.0,0.0,0.0,0.0,0.0,0.0006334787708656986,0.00025515869474213184,0.00046811142627144474,0.0,0.0 +103097,50.0,the Greater Atlanta and Macon Area,G1300670031113,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,145758.0,,10881.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01385819773226977,0.0031698495845226553,0.0,0.017028047316792427,0.012238586289450532,0.0038608793453309477,0.0009285816820109487,0.0,0.0,0.009068736704927876,0.0038608793453309477,0.0009285816820109487,0.0,0.0,0.0031698495845226553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021179138484336043,0.0,0.0,0.0016514542878475554,0.0007148002900004472,0.001863245672690916,0.0010807035955216308,0.00046009343154786614,0.0001106572607780586,0.0,0.0,0.00021179138484336046,0.0,0.0,0.0,0.0,0.0,0.001339172514583344,0.00042246574719553425,0.00010160741091203788,0.0,0.0 +103098,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,19517.0,,1584.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016520200734193218,0.0004613446018600123,0.0,0.0021133950488787714,0.0015256355261588363,0.00041523747791350515,0.0001724916712069926,0.0,0.0,0.001064290924298824,0.00041523747791350515,0.0001724916712069926,0.0,0.0,0.0004613446018600123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.082533261416854e-05,0.0,0.0,0.00019686854973284757,9.224717036843725e-05,0.00022769388234701612,0.00012682982133919798,4.948317601393195e-05,2.055555237971762e-05,0.0,0.0,3.082533261416854e-05,0.0,0.0,0.0,0.0,0.0,0.00016436958919816434,4.473703744705458e-05,1.8583983297624386e-05,0.0,0.0 +103099,35.0,Eastern Counties in South Carolina and Georgia,G1302450001200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,29303.0,,334.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0032749780287926653,0.0001241886981895253,0.0,0.0033991667269821905,0.002036927140850848,0.00035811293250158913,0.0009431753830362673,0.0,6.091252216971415e-05,0.002036927140850848,0.00035811293250158913,0.0008189866848467419,0.0,6.091252216971415e-05,0.0,0.0001241886981895253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.297809783968796e-06,0.0,0.0,0.0003902729266083114,0.00011886675821380032,0.0003985707363922802,0.00024273674802051268,4.267563965160513e-05,9.759709150360594e-05,0.0,7.258829856343136e-06,0.0,8.297809783968796e-06,0.0,0.0,0.0,0.0,0.0002388407559011147,4.199068380075526e-05,0.00011059242960335249,0.0,7.142323624192519e-06 +103100,35.0,Eastern Counties in South Carolina and Georgia,G1300510010901,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,307486.0,,53353.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,280597.8237794184,0.0,0.0,0.022482204662795477,0.009073228770929299,0.0,0.03155541570336336,0.01261151742627646,0.008440042103896374,0.0033109854219420805,0.0,0.0071929062119712815,0.0105634301875619,0.008440042103896374,0.0025477465538930677,0.0,0.0009310035478055527,0.002048087238714559,0.0007632388680490129,0.006261902664165729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006062196647029117,0.0,0.0,0.0026791604568233963,0.0014439884945598232,0.003285380121526308,0.0012588233614723879,0.0010057833472223209,0.0003036099850338098,0.0,0.00011094587598744777,0.0001368411169256439,5.0995122283190574e-05,0.0004183834254940774,0.0,0.0,0.0,0.0013130433471093543,0.0008787317782041052,0.0003447219897265522,0.0,0.000748886698465987 +103101,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,NaturalGas,38051.0,,2922.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003390311497313524,0.000860229664524609,0.0,0.004250510472231835,0.0019009142140797104,0.001302190684817827,0.001047436262940596,0.0,0.0,0.0010406845495551013,0.001302190684817827,0.001047436262940596,0.0,0.0,0.000860229664524609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.747522383256088e-05,0.0,0.0,0.00040401552469651413,0.00017835172206355214,0.00046149074852907504,0.00012401595389250386,0.0001551790309528998,0.0001248205398511105,0.0,0.0,5.747522383256088e-05,0.0,0.0,0.0,0.0,0.0,0.00020638799251906795,0.00014138277220821074,0.00011372331586496271,0.0,0.0 +103102,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6059.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014364564567042914,0.0,0.0,0.0014364564567042912,0.0009052289220767198,0.0002763243333630261,0.0002084218258230547,0.0,4.639866836775146e-05,0.0009052289220767198,0.0002763243333630261,0.0002084218258230547,0.0,4.639866836775146e-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.000171177711478175,5.1682519638654715e-05,0.000171177711478175,0.00010787310295535613,3.2928646594229765e-05,2.4836931881909313e-05,0.0,5.529174121329811e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010787310295535614,3.292864659422977e-05,2.4836931881909316e-05,0.0,5.529174121329812e-06 +103103,81.0,the Columbus-Albany Area,G1301770020403,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,14149.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.001127559131927661,0.0,0.0,0.0011275591319276608,0.0006348082282490131,0.0003870811512347092,0.00010570012604337633,0.0,0.0,0.0006348082282490131,0.0003870811512347092,0.00010570012604337633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001343703586962144,3.7799150184654415e-05,0.0001343703586962144,7.564961066591816e-05,4.612816451322781e-05,1.2596203115664842e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.564961066591818e-05,4.612816451322782e-05,1.2596203115664846e-05,0.0,0.0 +103104,50.0,the Greater Atlanta and Macon Area,G1300890021209,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,69123.0,,1658.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00562191026713236,0.00048315284625631826,0.0,0.0061050631133886795,0.004767227552553462,0.0009701327660417932,0.0003676724211939858,0.0,0.0,0.004284074706297144,0.0009701327660417932,0.0003676724211939858,0.0,0.0,0.00048315284625631826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.228089744696719e-05,0.0,0.0,0.0006699515943592259,0.00016255336354254474,0.0007022324918061931,0.0005105244558273257,0.00011560874550944219,4.3814773462485836e-05,0.0,0.0,3.228089744696719e-05,0.0,0.0,0.0,0.0,0.0,0.0005483484807708367,0.00011158914118124869,4.229137614273686e-05,0.0,0.0 +103105,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,2717.0,,391.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,3237.924873899493,0.0,0.0,0.0001245691119623756,0.00011502464440379004,0.0,0.00023959375636616563,0.00014279873810321104,6.889816613834275e-05,2.7927541730909537e-05,0.0,0.0,2.7774093699421017e-05,6.889816613834275e-05,2.7927541730909537e-05,0.0,0.0,0.00011502464440379004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.684900355054876e-06,0.0,0.0,1.4845674104251536e-05,1.394771193338893e-05,2.2530574459306414e-05,3.310011102327578e-06,8.211022016271176e-06,3.3282984564840847e-06,0.0,0.0,7.684900355054876e-06,0.0,0.0,0.0,0.0,0.0,1.3428303184213235e-05,6.47894705535326e-06,2.6262101649761546e-06,0.0,0.0 +103106,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,234085.0,,20999.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,1133273.7058648225,0.0,0.0,0.02085668712952511,0.006181254983632913,0.0,0.027037942113158023,0.010563945590188953,0.0061956790985928335,0.010278348113982533,0.0,0.0,0.004382690606556041,0.0061956790985928335,0.010278348113982533,0.0,0.0,0.006181254983632913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000412996314073332,0.0,0.0,0.0024854512156172698,0.0010645645882936667,0.002898447529690602,0.0005222767943964994,0.0007383271394704328,0.0012248509389715828,0.0,0.0,0.000412996314073332,0.0,0.0,0.0,0.0,0.0,0.001132447205912477,0.0006641722473890829,0.0011018313662922892,0.0,0.0 +103107,50.0,the Greater Atlanta and Macon Area,G1301210010114,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,40251.0,,13387.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.008381052372942276,0.009208844278404458,0.0,0.01758996837131775,0.006112406249776468,0.0010380748604799544,0.005444047839881988,0.00037057709023766237,0.004624790610970662,0.004070753834875067,0.0010380748604799544,0.002365396364065868,0.00037057709023766237,0.0005362502232837238,0.0020416524149014,0.00307865147581612,0.004088540387686938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006152826732023216,0.0,0.0,0.0009987570829019456,0.0008484951262981849,0.0016140397561042671,0.00048510545506881455,0.00012370577981757997,0.0002818806359101565,4.41611002015639e-05,6.39041119038307e-05,0.00013641161883216893,0.00020569800646326212,0.00027317304790689046,0.0,0.0,0.0,0.0005608689273532971,9.525282020171804e-05,0.0004995409577899552,3.40038221626556e-05,0.00042436664763628474 +103108,50.0,the Greater Atlanta and Macon Area,G1300670031312,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,122785.0,,7852.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010940016025761005,0.0023112649398862937,0.0,0.013251311655253596,0.006454730065351742,0.0026606354179793427,0.0041359154823162134,0.0,0.0,0.004143465125465449,0.0026606354179793427,0.0041359154823162134,0.0,0.0,0.0023112649398862937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015442586731069904,0.0,0.0,0.001303701951853873,0.0005493645525985445,0.0014581278191645721,0.0004937692558025296,0.00031706311758806843,0.0004928695784632751,0.0,0.0,0.00015442586731069904,0.0,0.0,0.0,0.0,0.0,0.0007102558386932161,0.0002927669819064409,0.0004551016215883663,0.0,0.0 +103109,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,94192.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.008117646382592767,0.0,0.0,0.00811764638259277,0.003405380094005696,0.0025097960030261335,0.0022025009751672356,0.0,0.0,0.003405380094005696,0.0025097960030261335,0.0022025009751672356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009673649328932843,0.0003012237372432387,0.0009673649328932843,0.00040581285890674236,0.00029908775618133583,0.00026246797502893043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040581285890674225,0.0002990877561813358,0.0002624679750289304,0.0,0.0 +103110,50.0,the Greater Atlanta and Macon Area,G1302230120101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,300836.0,,35892.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.015485609012467018,0.0061038010313831164,0.0,0.021589427774211554,0.011725247580333699,0.003386055772194584,0.0025276935151269876,0.0,0.003950413176194864,0.00898526844792442,0.003386055772194584,0.0025276935151269876,0.0,0.000586591277221027,0.0027399791324092797,0.0,0.003363821898973837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004078208574725216,0.0,0.0,0.0018453905816723968,0.0009181888208436745,0.0022532114391449185,0.0010707573563460582,0.00040350982812460115,0.00030122043004020163,0.0,6.990296716153583e-05,0.0001830696370164546,0.0,0.00022475122045606706,0.0,0.0,0.0,0.0012237221963970744,0.00035339054278246825,0.00026380634088596426,0.0,0.00041229050862493953 +103111,50.0,the Greater Atlanta and Macon Area,G1300890023603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,164523.0,,5507.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013006734619231273,0.0016043031487026134,0.0,0.014611037767933887,0.00954490362331351,0.003780510801218656,0.0012855929698022837,0.0,0.0,0.007940600474610897,0.003780510801218656,0.0012855929698022837,0.0,0.0,0.0016043031487026134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001071903254949133,0.0,0.0,0.0015499874645396817,0.00039646670728041007,0.001657177790034595,0.0009462660350098046,0.0004505161766568056,0.00015320163330984082,0.0,0.0,0.0001071903254949133,0.0,0.0,0.0,0.0,0.0,0.0010825789751423393,0.00042878395321890704,0.0001458114167124094,0.0,0.0 +103112,50.0,the Greater Atlanta and Macon Area,G1300890023414,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,NaturalGas,30210.0,,1873.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0015323287553666433,0.00031845502146556835,0.0,0.0018507837768322116,0.0007950294060751678,0.00019258718574461357,0.0006391795291929034,0.0,0.000223969925458107,0.0007950294060751678,0.00019258718574461357,0.0004669645287199306,0.0,7.774763482693155e-05,0.0,0.00017221500047297287,0.00014622229063117548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1276990105951396e-05,0.0,0.0,0.0001826047360671545,7.528934647182653e-05,0.0002038817261731059,9.474215918322699e-05,2.2950252744161722e-05,5.5647284710273164e-05,0.0,9.265039429492649e-06,0.0,1.1506230438121817e-05,9.769575046143377e-06,0.0,0.0,0.0,8.758017532789262e-05,2.121534041952653e-05,7.041180465143907e-05,0.0,2.467245260352229e-05 +103113,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050500,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,8327.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,24284.436554246196,0.0,0.0,0.0007419519218532624,0.0,0.0,0.0007419519218532624,0.0003021698636071816,0.00020611139589537188,0.0002337013519570067,0.0,0.0,0.0003021698636071816,0.00020611139589537188,0.0002337013519570067,0.0,0.0,0.0,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.84172126121226e-05,3.513263166120737e-05,8.84172126121226e-05,3.600909477907674e-05,2.4561962272626383e-05,2.7849812791252224e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.600909477907674e-05,2.4561962272626383e-05,2.7849812791252224e-05,0.0,0.0 +103114,50.0,the Greater Atlanta and Macon Area,G1302970110300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5055.0,,162.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014333962949759369,0.00012844408551714444,0.0,0.0015618403804930814,0.0007300553398968666,0.00046613706759473665,0.00023728659455807299,0.0,0.00012844408551714444,0.0007300553398968666,0.00046613706759473665,0.00023728659455807299,0.0,0.0,0.0,0.0,0.00012844408551714444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.583196438274478e-06,0.0,0.0,0.00017081650539603447,6.853366982841955e-05,0.00017939970183430897,8.700001691366893e-05,5.554912148243323e-05,2.8277223125106625e-05,0.0,0.0,0.0,0.0,8.583196438274478e-06,0.0,0.0,0.0,8.385729549308648e-05,5.354250791877597e-05,2.7255758555530207e-05,0.0,1.4753639957036742e-05 +103115,50.0,the Greater Atlanta and Macon Area,G1301430010302,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,14628.0,,442.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003512321300487169,0.00035034716435970617,0.0,0.003862751171920613,0.0018365932794550605,0.0003923623578192744,0.0015559681782575906,0.0,7.774464931494897e-05,0.0014862461150953546,0.0003923623578192744,0.0015559681782575906,0.0,7.774464931494897e-05,0.00035034716435970617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3408474885866884e-05,0.0,0.0,0.0004185612842996119,0.00016215779970678664,0.00044196975918547876,0.0001771150841562631,4.6757593724947814e-05,0.0001854238218270327,0.0,9.26478459136824e-06,2.340847488586688e-05,0.0,0.0,0.0,0.0,0.0,0.00021014004094879973,4.4893468173516446e-05,0.00017803136946635008,0.0,8.895417386826612e-06 +103116,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,13081.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0029326274206483626,0.0,0.0,0.0029326274206483626,0.0013652456662147478,0.0005930097187108343,0.0009093642757636851,0.0,6.500775995909564e-05,0.0013652456662147478,0.0005930097187108343,0.0009093642757636851,0.0,6.500775995909564e-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.00034948013756649904,0.00010258416459571587,0.00034948013756649904,0.0001626958269166394,7.066875137773699e-05,0.0001083686082842703,0.0,7.74695098785234e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001626958269166394,7.066875137773699e-05,0.0001083686082842703,0.0,7.74695098785234e-06 +103117,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000500,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,87081.0,,1210.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004482536783133489,0.0002057431139182927,0.0,0.004688279897051782,0.0015275060970603893,0.0005516447348621028,0.002008601723832102,0.0,0.0006005273412971884,0.0015275060970603893,0.0005516447348621028,0.0018028586099138092,0.0,0.0006005273412971884,0.0,0.0002057431139182927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3746900912125502e-05,0.0,0.0,0.0005341742388762299,0.00014635002894468208,0.0005479211397883555,0.0001820296065045664,6.573831306500805e-05,0.00021484277148060778,0.0,7.156354782604773e-05,0.0,1.3746900912125502e-05,0.0,0.0,0.0,0.0,0.00017852024625520068,6.447093998674503e-05,0.00023474608386649944,0.0,7.018386967991045e-05 +103118,50.0,the Greater Atlanta and Macon Area,G1300630980000,ComStock 90.1-2004,gen5_led,25001_50000,NaturalGas,18755.0,,3083.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002530265970426701,0.0009076451062545597,0.0,0.0034379110766812617,0.0014362121955198948,0.0006851761502025122,0.0013165227309588539,0.0,0.0,0.000528567089265335,0.0006851761502025122,0.0013165227309588539,0.0,0.0,0.0009076451062545597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.064362832332366e-05,0.0,0.0,0.0003015256170683682,0.00014845928906380025,0.00036216924539169185,6.298804932585182e-05,8.165076869586994e-05,0.00015688679904664644,0.0,0.0,6.064362832332366e-05,0.0,0.0,0.0,0.0,0.0,0.00015129881939119453,7.218038039505552e-05,0.00013869004560544172,0.0,0.0 +103119,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,33454.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.011223432613497756,0.0,0.0,0.011223432613497758,0.0064450314282092705,0.0024271217859537157,0.002127556764869944,0.0,0.0002237226344648266,0.0064450314282092705,0.0024271217859537157,0.002127556764869944,0.0,0.0002237226344648266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013374704791432946,0.00042819593049670354,0.0013374704791432946,0.0007680394732368985,0.000289234483761646,0.00025353601377647996,0.0,2.666050836827004e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0007680394732368984,0.00028923448376164595,0.0002535360137764799,0.0,2.6660508368270032e-05 +103120,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock 90.1-2004,gen5_led,1001_5000,Electricity,6718.0,,601.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012583881269435625,0.00047664086595962857,0.0,0.001734946285829452,0.0012244782267104462,0.00018576008761848447,0.0002832717275571279,0.0,4.151895101713233e-05,0.0007478373607508177,0.00018576008761848447,0.0002832717275571279,0.0,4.151895101713233e-05,0.00047664086595962857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.184496084229254e-05,0.0,0.0,0.00014995525293851945,6.648333509517866e-05,0.00018180021378081193,8.911570141768602e-05,2.213601696351723e-05,3.375594750669925e-05,0.0,4.947587050616942e-06,3.184496084229254e-05,0.0,0.0,0.0,0.0,0.0,0.00012830968036539638,1.9465284843004412e-05,2.9683259388820177e-05,0.0,4.350655828667951e-06 +103121,50.0,the Greater Atlanta and Macon Area,G1301350050428,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,6639.0,,1209.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0004916781824954962,0.0003559380538407568,0.0,0.0008476162363362531,0.00043345999934875406,0.00017766213085740142,0.00023649410613009762,0.0,0.0,7.752194550799723e-05,0.00017766213085740142,0.00023649410613009762,0.0,0.0,0.0003559380538407568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3780844724886295e-05,0.0,0.0,5.8593839211439686e-05,4.215439737847709e-05,8.237468393632598e-05,9.238376995699187e-06,2.1172194943825256e-05,2.818326727191525e-05,0.0,0.0,2.3780844724886295e-05,0.0,0.0,0.0,0.0,0.0,4.2125349792413493e-05,1.7265905547173727e-05,2.2983428596738768e-05,0.0,0.0 +103122,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,54526.0,,13383.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004535893121194174,0.003939379243585724,0.0,0.008475272364779898,0.004602550946072784,0.0015894453997643248,0.0022832453293364914,0.0,0.0,0.0006631717024870595,0.0015894453997643248,0.0022832453293364914,0.0,0.0,0.003939379243585724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002632072835180786,0.0,0.0,0.0005405335161226893,0.0004154377201956631,0.0008037407996407679,7.902887536380621e-05,0.0001894111011137437,0.0002720898824247514,0.0,0.0,0.0002632072835180786,0.0,0.0,0.0,0.0,0.0,0.00043647658960869063,0.00015073286870410745,0.00021652843092136054,0.0,0.0 +103123,50.0,the Greater Atlanta and Macon Area,G1301390001403,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,18156.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,56663.68529324113,0.0,0.0,0.0016177105271645092,0.0,0.0,0.0016177105271645092,0.0006446044906769493,0.0004340431018684104,0.0005390322450128517,0.0,0.0,0.0006446044906769493,0.0004340431018684104,0.0005390322450128517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019278002884132853,6.902357808834837e-05,0.00019278002884132853,7.681650716693095e-05,5.172423637697126e-05,6.423562806512928e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.681650716693095e-05,5.172423637697126e-05,6.423562806512928e-05,0.0,0.0 +103124,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,21319.0,,1182.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001177952021664048,0.0002010622985033988,0.0,0.0013790143201674468,0.0005394107854822665,0.00028593753862119154,0.0003227812296520613,0.0,0.00023088476641192765,0.0005394107854822665,0.00028593753862119154,0.00012171893114866252,0.0,0.00023088476641192765,0.0,0.0002010622985033988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3433887307696964e-05,0.0,0.0,0.0001403744081413988,4.9668118388313394e-05,0.00015380829544909573,6.428060597085624e-05,3.4074658399631804e-05,1.4505024487720742e-05,0.0,2.7514119283190023e-05,0.0,1.3433887307696964e-05,0.0,0.0,0.0,0.0,6.016315584874501e-05,3.189202952939258e-05,3.600138882511267e-05,0.0,2.5751721245845496e-05 +103125,85.0,Rural Climate Zone 3A,G1301330950301,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,105420.0,,2118.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005073436538179588,0.00036026321369405284,0.0,0.005433699751873642,0.0023721450543888645,0.0014050070300092442,0.001090878216730169,0.0,0.0005656694507453646,0.0023721450543888645,0.0014050070300092442,0.0007306150030361161,0.0,0.0005656694507453646,0.0,0.00036026321369405284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.407039031868128e-05,0.0,0.0,0.000604591368469464,0.0001817622927429699,0.0006286617587881452,0.0002826838206900358,0.00016743190076194412,8.706594064709102e-05,0.0,6.740970637039316e-05,0.0,2.407039031868128e-05,0.0,0.0,0.0,0.0,0.0002744496291828572,0.00016255483941503214,0.00012621113599749215,0.0,6.544615419276385e-05 +103126,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970600,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,42710.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003589066003962506,0.0,0.0,0.0035890660039625067,0.0024583783912927575,0.000683770470542669,0.00044691714212708036,0.0,0.0,0.0024583783912927575,0.000683770470542669,0.00044691714212708036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042770336964192995,0.00012472598146790959,0.00042770336964192995,0.00029296109925255187,8.148385512828888e-05,5.3258415261089326e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002929610992525518,8.148385512828885e-05,5.325841526108931e-05,0.0,0.0 +103127,50.0,the Greater Atlanta and Macon Area,G1301210011622,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,11028.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0026479496728376664,0.0,0.0,0.002647949672837667,0.0014251255876020063,0.0006425512558806795,0.0005065808266532579,0.0,7.377470977546223e-05,0.0014251255876020063,0.0006425512558806795,0.0005065808266532579,0.0,7.377470977546223e-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.0003155503531510385,9.105990021397343e-05,0.0003155503531510385,0.00016982908967845905,7.657142346421848e-05,6.036812571995597e-05,0.0,8.791570308930734e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016982908967845902,7.657142346421847e-05,6.0368125719955966e-05,0.0,8.791570308930734e-06 +103128,50.0,the Greater Atlanta and Macon Area,G1300890021415,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,3996.0,,288.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000649994892517217,0.00022835423059422772,0.0,0.0008783491231114447,0.0005458666866794289,0.00012877491381210166,0.00019030897667414638,0.0,1.3315838872028494e-05,0.00033082829495722967,0.00012877491381210166,0.00019030897667414638,0.0,0.0,0.00021503839172219927,0.0,1.3315838872028494e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5257269415285742e-05,0.0,0.0,7.746312795344978e-05,4.1730206165251654e-05,9.272039736873553e-05,3.942645525051522e-05,1.534674770626305e-05,2.268006838285888e-05,0.0,0.0,1.4367584382377014e-05,0.0,8.896850329087306e-07,0.0,0.0,0.0,5.762284582237801e-05,1.3593753173551904e-05,2.00894194298927e-05,0.0,1.4056482086974032e-06 +103129,35.0,Eastern Counties in South Carolina and Georgia,G1300510010801,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,27527.0,,518.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003283629088016473,0.00015101753640450204,0.0,0.0034346466244209763,0.002109993205741744,0.0009579833262666927,0.0003666397188131023,0.0,0.0,0.0019589756693372414,0.0009579833262666927,0.0003666397188131023,0.0,0.0,0.00015101753640450204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0089442185197442e-05,0.0,0.0,0.000391303636023996,9.83042044192603e-05,0.0004013930782091935,0.00023344728705557084,0.00011416099345281423,4.369173595335829e-05,0.0,0.0,1.0089442185197442e-05,0.0,0.0,0.0,0.0,0.0,0.00024658626067417986,0.00011195558619311962,4.284768170377764e-05,0.0,0.0 +103130,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,32391.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.002886019886629672,0.0,0.0,0.0028860198866296717,0.001257966962142837,0.0006478882785508035,0.0009801646459360316,0.0,0.0,0.001257966962142837,0.0006478882785508035,0.0009801646459360316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003439216477116284,0.00010756982734864282,0.0003439216477116284,0.00014990959431405743,7.720764687885014e-05,0.00011680440651872083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014990959431405746,7.720764687885015e-05,0.00011680440651872084,0.0,0.0 +103131,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,63168.0,,2858.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006640094067484676,0.0008325099869893396,0.0,0.007472604054474016,0.003974719596023641,0.002700425605212201,0.000797458853238174,0.0,0.0,0.0031422096090343017,0.002700425605212201,0.000797458853238174,0.0,0.0,0.0008325099869893396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.562356313281025e-05,0.0,0.0,0.000791286440275446,0.00025769276351829846,0.0008469100034082564,0.000374450697665179,0.0003218042007628472,9.503154184741982e-05,0.0,0.0,5.562356313281025e-05,0.0,0.0,0.0,0.0,0.0,0.00045047613416634964,0.0003060536115445216,9.038025769738509e-05,0.0,0.0 +103132,50.0,the Greater Atlanta and Macon Area,G1300890022900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,77700.0,,35531.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.01639009325622658,0.02444130548246805,0.0,0.04083147045866565,0.02203359433550298,0.0027348259347672807,0.007129897478574941,0.0003721549296000057,0.008560997780220443,0.010093868720737099,0.0027348259347672807,0.002250716130411906,0.0003721549296000057,0.0009385992606813017,0.01193972561476588,0.004879181348163035,0.0076223985195391425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016330267736158702,0.0,0.0,0.0019531796007798167,0.002167377820502012,0.003586206374395687,0.0012028692070317176,0.0003259045658841371,0.00026821402199139803,4.434907144584043e-05,0.00011185128117396678,0.0007977434598379323,0.00032599869841620386,0.0005092846153617344,0.0,0.0,0.0,0.0019351988936283761,0.00024019831002788662,0.0006262151105318967,3.268616990282974e-05,0.0007519078903046978 +103133,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,NaturalGas,118979.0,,5306.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010600926565777689,0.0015617940644900945,0.0,0.01216272063026778,0.00316004738126186,0.004759098627797366,0.004243574621208555,0.0,0.0,0.0015982533167717655,0.004759098627797366,0.004243574621208555,0.0,0.0,0.0015617940644900945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010435006524131828,0.0,0.0,0.0012632903142186153,0.0004235461533649394,0.0013676403794599334,0.00019046051514624645,0.0005671318599938309,0.0005056979390785377,0.0,0.0,0.00010435006524131828,0.0,0.0,0.0,0.0,0.0,0.0003553323743098412,0.0005351381200856159,0.0004771698850644763,0.0,0.0 +103134,50.0,the Greater Atlanta and Macon Area,G1301170130202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,44256.0,,3490.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026568060069878125,0.0005934529270905872,0.0,0.0032502589340784,0.001301231224617675,0.0007354022006195302,0.0006311476754696197,0.0,0.0005825132940944148,0.0008932201476194201,0.0007354022006195302,0.00044570582537728737,0.0,0.0005825132940944148,0.0004080110769982551,0.00018544185009233225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9650519825034276e-05,0.0,0.0,0.0003166070554248905,0.00010685917454231035,0.0003562575752499248,0.00010644352656541846,8.763663010349484e-05,5.31140055341913e-05,0.0,6.941711901584539e-05,2.7260546808093247e-05,1.2389973016941041e-05,0.0,0.0,0.0,0.0,0.00014262663077741156,8.06066870793664e-05,6.917945463664696e-05,0.0,6.384868957025589e-05 +103135,50.0,the Greater Atlanta and Macon Area,G1300630040510,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,11231.0,,1919.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,56663.68529324113,0.0,0.0,0.0009693925941255378,0.0005648115143029219,0.0,0.0015341734188221619,0.000568923921546814,0.00040740452360200446,0.0005578756632796413,0.0,0.0,4.112407243892173e-06,0.00040740452360200446,0.0005578756632796413,0.0,0.0,0.0005648115143029219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.77366601449689e-05,0.0,0.0,0.0001155198503378685,7.671865403340375e-05,0.0001532565104828374,4.90064265212726e-07,4.8549277020141335e-05,6.648050905251444e-05,0.0,0.0,3.77366601449689e-05,0.0,0.0,0.0,0.0,0.0,5.6832750376692125e-05,4.0697743081809694e-05,5.5729082767693925e-05,0.0,0.0 +103136,50.0,the Greater Atlanta and Macon Area,G1301390001002,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,3318.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.00045017460236305035,0.0,0.0,0.00045017460236305035,0.00024009863506520944,9.718081164368621e-05,8.57672354676618e-05,0.0,2.7045213112753528e-05,0.00024009863506520944,9.718081164368621e-05,8.57672354676618e-05,0.0,2.7045213112753528e-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,5.364836332071659e-05,1.8148155081431312e-05,5.364836332071659e-05,2.8613117530780862e-05,1.1581265276840342e-05,1.0221082631560371e-05,0.0,3.2230414855547167e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.8613117530780862e-05,1.1581265276840342e-05,1.0221082631560371e-05,0.0,3.2230414855547167e-06 +103137,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300190970500,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,31161.0,,5043.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.00642775896233211,0.0034688081181410437,0.0,0.009896495360502139,0.0033884100306325444,0.0006979070379529111,0.0038815565513358853,0.0003817654057160977,0.0015467846148936835,0.0033884100306325444,0.0006979070379529111,0.00041274843319484165,0.0003817654057160977,0.0015467846148936835,0.0,0.0034688081181410437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023176408942411107,0.0,0.0,0.0007659798905269296,0.0004509035587573031,0.0009977439799510408,0.00040378831246381825,8.316782873500721e-05,4.918619405713355e-05,4.5494024494547675e-05,0.00018432643739881827,0.0,0.00023176408942411107,0.0,0.0,0.0,0.0,0.0003416124179840778,7.036152903805822e-05,0.0003913304195939522,3.8488790367853665e-05,0.00015594359230950588 +103138,50.0,the Greater Atlanta and Macon Area,G1300210013410,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,4151.0,,231.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009967029456323937,0.0001831961683325659,0.0,0.0011798991139649597,0.0006051676585505124,0.00017310590533637044,0.0003598584778397266,0.0,4.168436516461094e-05,0.0004219714902179465,0.00017310590533637044,0.0003598584778397266,0.0,4.168436516461094e-05,0.0001831961683325659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2239539233463258e-05,0.0,0.0,0.00011878001146232252,4.382511431768564e-05,0.00013101955069578578,5.028757932792047e-05,2.0629538128839187e-05,4.2885389583649934e-05,0.0,4.967647977513116e-06,1.2239539233463258e-05,0.0,0.0,0.0,0.0,0.0,6.719963917293316e-05,1.9222201009833144e-05,3.99597690366861e-05,0.0,4.628757433805974e-06 +103139,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,237309.0,,11825.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.021144003223684205,0.003480845835891747,0.0,0.024624849059575953,0.013923720929236267,0.005540640141774666,0.005160487988565021,0.0,0.0,0.010442875093344519,0.005540640141774666,0.005160487988565021,0.0,0.0,0.003480845835891747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023257008219590243,0.0,0.0,0.0025196883824727847,0.0009247279673099387,0.0027522584646686873,0.0012444564434629208,0.0006602669536606053,0.0006149649853492585,0.0,0.0,0.00023257008219590243,0.0,0.0,0.0,0.0,0.0,0.0015562198450216607,0.0006192636427126606,0.000576774976934366,0.0,0.0 +103140,50.0,the Greater Atlanta and Macon Area,G1301210005800,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,17876.0,,2815.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0025672677452770972,0.0008200871848192992,0.0,0.003387354930096396,0.002382383645499502,0.0007057913301350391,0.0002991799544618555,0.0,0.0,0.0015622964606802029,0.0007057913301350391,0.0002991799544618555,0.0,0.0,0.0008200871848192992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.479383964256819e-05,0.0,0.0,0.0003059355094795669,0.00013659982287950634,0.00036072934912213507,0.00018617534713144356,8.410756165513169e-05,3.565260069299166e-05,0.0,0.0,5.479383964256819e-05,0.0,0.0,0.0,0.0,0.0,0.00025370701315193987,7.516178622841077e-05,3.186054974178449e-05,0.0,0.0 +103141,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,79501.0,,6274.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007504951937875222,0.0018277009725672778,0.0,0.0093326529104425,0.006917192415155287,0.0019210997908383654,0.000494330330849411,0.0,0.0,0.005089491442588009,0.0019210997908383654,0.000494330330849411,0.0,0.0,0.0018277009725672778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012211722130606506,0.0,0.0,0.0008943494750414342,0.0003949914592968831,0.0010164666963474991,0.0006065040839149122,0.0002289334566911209,5.890831487688331e-05,0.0,0.0,0.00012211722130606506,0.0,0.0,0.0,0.0,0.0,0.0007533866082564405,0.0002092367493451289,5.3840030602728454e-05,0.0,0.0 +103142,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13530.0,,169.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029248529557168675,0.000133985459457678,0.0,0.0030588384151745453,0.0021134138552605227,0.0004909491897165288,0.00038475330703525816,0.0,6.980477023597545e-05,0.001979428395802845,0.0004909491897165288,0.00038475330703525816,0.0,6.980477023597545e-05,0.000133985459457678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.95229011642001e-06,0.0,0.0,0.00034855004289440834,0.0001090862108843013,0.0003575023330108284,0.00023588531208550723,5.850562873603686e-05,4.5850435458228365e-05,0.0,8.318522684166965e-06,8.95229011642001e-06,0.0,0.0,0.0,0.0,0.0,0.0002470056542133274,5.7379781763797246e-05,4.4968117379579655e-05,0.0,8.158446059407829e-06 +103143,50.0,the Greater Atlanta and Macon Area,G1301210000500,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,69136.0,,17995.0,,9.525004485617233,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,166687.57849830156,0.0,0.0,0.017371785660257055,0.015581811570569195,0.0,0.03295359723082625,0.02050367606956564,0.0017437509225965064,0.007350296084133562,0.0006591315291678536,0.0026965620661162336,0.010255765198393121,0.0017437509225965064,0.00318479426851861,0.0006591315291678536,0.0015282534619577356,0.010247910871172519,0.004165501815614952,0.001168308604158498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010410855670768774,0.0,0.0,0.0020701575150521095,0.0016440799321200206,0.003111243082128987,0.0012221569971724627,0.0002077989647921313,0.00037952493300398734,7.854725560172667e-05,0.00018211860605753035,0.0006847055011767291,0.00027831448225572656,7.805955168771906e-05,0.0,0.0,0.0,0.0019358105241990388,0.0001646324969284208,0.0006939624127580242,6.223048718997672e-05,0.000254590113940202 +103144,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,13006.0,,840.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0031230191043962485,0.0006659573577489033,0.0,0.003788976462145152,0.0021106018147533856,0.0006141000225143576,0.000986529975562459,0.0,7.78273563886883e-05,0.0014446444570044826,0.0006141000225143576,0.000986529975562459,0.0,7.78273563886883e-05,0.0006659573577489033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.449371356701582e-05,0.0,0.0,0.0003721674156145441,0.00014642696504678425,0.0004166611291815599,0.00017215699810750108,7.318175479178997e-05,0.00011756390183925535,0.0,9.274617004589142e-06,4.449371356701582e-05,0.0,0.0,0.0,0.0,0.0,0.000232095856011181,6.753053532203532e-05,0.0001084854175516818,0.0,8.558415318253904e-06 +103145,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Electricity,5502.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0010186203201733102,0.0,0.0,0.0010186203201733102,0.000644618932724162,0.0001615269150128674,0.00018394053199621973,0.0,2.8616647513800372e-05,0.000644618932724162,0.0001615269150128674,0.00018394053199621973,0.0,2.8616647513800372e-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.00012139018120444426,4.0558182690650883e-05,0.00012139018120444426,7.681999612759325e-05,1.9249352378392306e-05,2.1920409467252683e-05,0.0,3.4102795304269015e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.681999612759325e-05,1.9249352378392306e-05,2.1920409467252683e-05,0.0,3.4102795304269015e-06 +103146,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,21106.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0018339188035318254,0.0,0.0,0.0018339188035318254,0.0007182288561851384,0.0005515536043823145,0.0005641363429643725,0.0,0.0,0.0007182288561851384,0.0005515536043823145,0.0005641363429643725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002185449561869158,7.781594744153477e-05,0.0002185449561869158,8.559010006597371e-05,6.572769638019396e-05,6.722715974074812e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.559010006597371e-05,6.572769638019396e-05,6.722715974074812e-05,0.0,0.0 +103147,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,79474.0,,10140.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006958837538397809,0.002984809729301977,0.0,0.009943647267699786,0.0066047715505412104,0.00124403388088368,0.002094872525881192,0.0,0.0,0.003619961821239234,0.00124403388088368,0.002094872525881192,0.0,0.0,0.002984809729301977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019942666765802386,0.0,0.0,0.0008292723148829381,0.0004693550607947879,0.001028698982540962,0.00043138442343605514,0.00014824930895437148,0.00024964223971840827,0.0,0.0,0.0001994266676580239,0.0,0.0,0.0,0.0,0.0,0.0006832826618888032,0.0001286988921729482,0.00021672060340747597,0.0,0.0 +103148,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,265757.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.021703965780192087,0.0,0.0,0.021703965780192087,0.005622612080195829,0.005802974896407428,0.010278378803588829,0.0,0.0,0.005622612080195829,0.005802974896407428,0.010278378803588829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025864180238196746,0.0006755779761420328,0.0025864180238196746,0.0006700353922616635,0.0006915288669289659,0.0012248537646290451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006700353922616635,0.0006915288669289659,0.0012248537646290451,0.0,0.0 +103149,50.0,the Greater Atlanta and Macon Area,G1301210007400,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,5561.0,,642.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006453782408533508,0.00018713174613598895,0.0,0.0008325099869893396,0.0006180723749588118,0.00017246129760755487,4.1945940823535275e-05,0.0,0.0,0.00043094062882282285,0.00017246129760755487,4.1945940823535275e-05,0.0,0.0,0.00018713174613598895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2503068329391928e-05,0.0,0.0,7.690770150625157e-05,3.1474227073912554e-05,8.941076983564349e-05,5.135384360743115e-05,2.0551672117493243e-05,4.998566254712604e-06,0.0,0.0,1.2503068329391926e-05,0.0,0.0,0.0,0.0,0.0,6.638037707999232e-05,1.8522177063256008e-05,4.504953597104006e-06,0.0,0.0 +103150,81.0,the Columbus-Albany Area,G1300950010700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,116357.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01297676243731435,0.0,0.0,0.01297676243731435,0.0032289455474002033,0.005127527351401287,0.004620289538512857,0.0,0.0,0.0032289455474002033,0.005127527351401287,0.004620289538512857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015464161755612302,0.00044285686308438146,0.0015464161755612302,0.00038478731876511786,0.0006110377126145969,0.0005505911441815149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038478731876511786,0.0006110377126145969,0.0005505911441815149,0.0,0.0 +103151,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,585282.0,,15196.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.02764562278518183,0.0025842710984183763,0.0,0.030229893883600208,0.016962973647431497,0.0065012093522521805,0.00309589840755542,0.0,0.0036698302067225295,0.014797280921417725,0.0065012093522521805,0.002677320035150813,0.0,0.0036698302067225295,0.0021656927260137694,0.00041857837240460646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001726657009595428,0.0,0.0,0.003294476646536369,0.000999425898095203,0.0034671423474959117,0.001763364016309254,0.0007747368381485269,0.00031905117130644054,0.0,0.0004373267336658261,0.0001446987712817783,2.7966929677764493e-05,0.0,0.0,0.0,0.0,0.0019455259915541136,0.0007456400059465092,0.00035507635302033704,0.0,0.0004209020305145717 +103152,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970900,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,11580.0,,2456.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0023041475088185362,0.0016895073572147491,0.0,0.003993654866033287,0.0007548526949393063,0.0001887669637130883,0.002234435696991362,0.0003659870120926632,0.00044961249829686563,0.0007548526949393063,0.0001887669637130883,0.0005449283397766127,0.0003659870120926632,0.00044961249829686563,0.0,0.0016895073572147491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011288479140402735,0.0,0.0,0.00027458040253689934,0.00018655565911458133,0.0003874651939409267,8.99542047717143e-05,2.2494961231273355e-05,6.493796179149503e-05,4.361390089786776e-05,5.357937384454888e-05,0.0,0.00011288479140402735,0.0,0.0,0.0,0.0,7.323595945385123e-05,1.8314208577913202e-05,0.00021678539826933352,3.5508133120475336e-05,4.36214945193533e-05 +103153,50.0,the Greater Atlanta and Macon Area,G1300670031406,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5163.0,,399.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001193959316500642,0.00031627184997911153,0.0,0.0015101484594060143,0.0010995905453640921,0.0002185120888192502,0.00014978251054188576,0.0,4.23460217545254e-05,0.0007833186953849807,0.0002185120888192502,0.00014978251054188576,0.0,4.23460217545254e-05,0.00031627184997911153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.112920090072867e-05,0.0,0.0,0.00014227819700126976,6.546204548344895e-05,0.00016340739790199848,9.334419533104919e-05,2.6038999478896833e-05,1.78488372658146e-05,0.0,5.046164925509151e-06,2.112920090072867e-05,0.0,0.0,0.0,0.0,0.0,0.00011898249384451883,2.364435868651514e-05,1.620739348269452e-05,0.0,4.582101304881057e-06 +103154,50.0,the Greater Atlanta and Macon Area,G1300670031106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,5490.0,,929.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00128973410789076,0.0007365891987222718,0.0,0.0020263233066130314,0.0013004033204031308,0.00032115156732973076,0.0002990687786413356,0.0,0.00010569964023883487,0.0006695137619196935,0.00032115156732973076,0.0002990687786413356,0.0,0.0,0.0006308895584834369,0.0,0.00010569964023883487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921377157398618e-05,0.0,0.0,0.00015369426007116814,0.00010092450060560757,0.00020290803164515431,7.97842141385216e-05,3.82707972204916e-05,3.5639248712154925e-05,0.0,0.0,4.21516561381503e-05,0.0,7.062115435835879e-06,0.0,0.0,0.0,0.00013021726455333723,3.2158852525638144e-05,2.9947569078729716e-05,0.0,1.0584345487449273e-05 +103155,50.0,the Greater Atlanta and Macon Area,G1300970080201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,16204.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0040174961068868585,0.0,0.0,0.0040174961068868585,0.0024453173421763634,0.0005297388073002642,0.000967176520307461,0.0,7.509802295529114e-05,0.0024453173421763634,0.0005297388073002642,0.000967176520307461,0.0,7.509802295529114e-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.00047875591360167205,0.00014769070301237395,0.00047875591360167205,0.00029140293034579586,6.312777409405475e-05,0.00011525623579326716,0.0,8.949261339172788e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00029140293034579586,6.312777409405475e-05,0.00011525623579326716,0.0,8.949261339172788e-06 +103156,50.0,the Greater Atlanta and Macon Area,G1301210011416,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,6052.0,,464.0,,8.72605822017302,Office,Residential Style Central Systems,2013 to 2018,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.001150951638156202,0.0003681291852136573,0.0,0.0015190808233698594,0.0006971379245486222,0.000324459850279303,0.0004213925407017713,0.0,7.609050784016281e-05,0.0004050992471751277,0.000324459850279303,0.0004213925407017713,0.0,0.0,0.0002920386773734945,0.0,7.609050784016281e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.459747252331271e-05,0.0,0.0,0.00013715457957778543,5.925008797946285e-05,0.00016175205210109813,4.8274154266455376e-05,3.8664660511903725e-05,5.021576479942633e-05,0.0,0.0,1.951329487302116e-05,0.0,5.08417765029155e-06,0.0,0.0,0.0,7.423139582730746e-05,3.454855449407132e-05,4.4869968174176233e-05,0.0,8.102133605543107e-06 +103157,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,21545.0,,880.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0018532451696944275,0.00025647467365237637,0.0,0.002109719843346804,0.0009309204491676557,0.0007579124267702213,0.000420886967408927,0.0,0.0,0.0006744457755152791,0.0007579124267702213,0.000420886967408927,0.0,0.0,0.00025647467365237637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.713565863888153e-05,0.0,0.0,0.00022084871238622813,8.413041056397771e-05,0.00023798437102510967,8.037278797895919e-05,9.031939556131363e-05,5.015652884595531e-05,0.0,0.0,1.713565863888153e-05,0.0,0.0,0.0,0.0,0.0,0.0001050113446428625,8.549538591384214e-05,4.7477640468405016e-05,0.0,0.0 +103158,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8848.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001924428191766205,0.0,0.0,0.001924428191766205,0.0010779212920443936,0.0004446332284225167,0.0003310764161784476,0.0,7.079725512084716e-05,0.0010779212920443936,0.0004446332284225167,0.0003310764161784476,0.0,7.079725512084716e-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.00022932640996235187,6.618600966768627e-05,0.00022932640996235187,0.0001284515687226806,5.2985163312601156e-05,3.945305222104584e-05,0.0,8.436625706024291e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001284515687226806,5.2985163312601156e-05,3.945305222104584e-05,0.0,8.436625706024291e-06 +103159,85.0,Rural Climate Zone 3A,G1303190960400,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,21465.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0018133342600332215,0.0,0.0,0.0018133342600332217,0.001164007451252963,0.0005596031960411396,8.97236127391189e-05,0.0,0.0,0.001164007451252963,0.0005596031960411396,8.97236127391189e-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.0002160912006603184,5.919657607966949e-05,0.0002160912006603184,0.00013871230101514853,6.668672687167227e-05,1.0692172773497608e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001387123010151485,6.668672687167226e-05,1.0692172773497608e-05,0.0,0.0 +103160,81.0,the Columbus-Albany Area,G1302150010502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,2642.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,3204.5843851935597,0.0,0.0,0.00023296550768755645,0.0,0.0,0.0002329655076875565,0.00013692418626538522,8.613952800546416e-05,9.901793416707094e-06,0.0,0.0,0.00013692418626538522,8.613952800546416e-05,9.901793416707094e-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,2.776257265599671e-05,7.797893467371042e-06,2.776257265599671e-05,1.631729824422858e-05,1.026527458310387e-05,1.1799998286642673e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6317298244228576e-05,1.0265274583103866e-05,1.1799998286642669e-06,0.0,0.0 +103161,50.0,the Greater Atlanta and Macon Area,G1300590140400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,24971.0,,3491.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0022019485622538767,0.0010276721564848753,0.0,0.0032296207187387524,0.0014764769589824809,0.0006917744155565185,0.0010614000338060507,0.0,0.0,0.00044880480249760544,0.0006917744155565185,0.0010614000338060507,0.0,0.0,0.0010276721564848753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.866222255014545e-05,0.0,0.0,0.000262402759700434,0.0001462990357547489,0.0003310649822505794,5.3483365034483356e-05,8.243767308823097e-05,0.00012648537881001143,0.0,0.0,6.866222255014545e-05,0.0,0.0,0.0,0.0,0.0,0.00015135208149451583,7.09130590099331e-05,0.00010880298770500582,0.0,0.0 +103162,35.0,Eastern Counties in South Carolina and Georgia,G1302450010509,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,84444.0,,948.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007140954722213204,0.00027612639248860175,0.0,0.007417081114701808,0.0035852996776322248,0.0031719453628838608,0.0006598360741857207,0.0,0.0,0.0033091732851436234,0.0031719453628838608,0.0006598360741857207,0.0,0.0,0.00027612639248860175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8450060733448813e-05,0.0,0.0,0.0008509727099479414,0.00022931270733785934,0.0008694227706813901,0.00039434729216056844,0.0003779941263124978,7.863129147487531e-05,0.0,0.0,1.8450060733448813e-05,0.0,0.0,0.0,0.0,0.0,0.0004202652136662555,0.00037181223761759347,7.734531939754098e-05,0.0,0.0 +103163,35.0,Eastern Counties in South Carolina and Georgia,G1301790010202,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,18840.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0022050625719819065,0.0,0.0,0.0022050625719819065,0.0017818064638168351,0.00034173336727414576,8.15227408909259e-05,0.0,0.0,0.0017818064638168351,0.00034173336727414576,8.15227408909259e-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.000262772479266526,5.7222958698312e-05,0.000262772479266526,0.0002123339754705669,4.0723617237770806e-05,9.714886558188326e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002123339754705669,4.0723617237770806e-05,9.714886558188326e-06,0.0,0.0 +103164,85.0,Rural Climate Zone 3A,G1302850961000,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,75415.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006478790716689142,0.0,0.0,0.006478790716689142,0.0015850567860637534,0.0017222700158207828,0.0031714332251983083,0.0,0.0,0.0015850567860637534,0.0017222700158207828,0.0031714332251983083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007720637638700487,0.0002611132599434217,0.0007720637638700487,0.000188887859125279,0.0002052392690181911,0.00037793297851121453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000188887859125279,0.0002052392690181911,0.00037793297851121453,0.0,0.0 +103165,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,49074.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.004013051078514083,0.0,0.0,0.004013051078514083,0.0025730387291702703,0.0011877292324138473,0.00025231349052940436,0.0,0.0,0.0025730387291702703,0.0011877292324138473,0.00025231349052940436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004782270910271103,0.00014092366095860913,0.0004782270910271103,0.00030662376393345296,0.00014153926392470746,3.006768272868619e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030662376393345296,0.00014153926392470746,3.006768272868619e-05,0.0,0.0 +103166,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300010950300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,69934.0,,7640.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.004444629270417417,0.001299192233054369,0.0,0.005743821503471786,0.0027091460338998083,0.0010987150364778321,0.0012602563593759333,0.0,0.0006756686129953723,0.0027091460338998083,0.0010987150364778321,0.0005293222098342563,0.0,0.00010741052948267987,0.0,0.0007309341495416767,0.0005682580835126923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.680483864890337e-05,0.0,0.0,0.0005296569829071524,0.00025390939878280704,0.0006164618215560557,0.00032284315007345715,0.0001309315256435139,6.307819788538379e-05,0.0,1.2799883526149094e-05,0.0,4.883697677654099e-05,3.796786187236237e-05,0.0,0.0,0.0,0.0002907620123483601,0.00011792077319059393,0.00013525836944252236,0.0,7.251686071435505e-05 +103167,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,126856.0,,1308.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.010886677490015597,0.00038493973179208596,0.0,0.011271586532201385,0.0028392489266319734,0.0033815035803060837,0.00505080333565703,0.0,0.0,0.002454309194839887,0.0033815035803060837,0.00505080333565703,0.0,0.0,0.00038493973179208596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5718601067901218e-05,0.0,0.0,0.0012973427569662587,0.00039493442220368184,0.0013230613580341598,0.0002924749318790242,0.0004029667620436953,0.0006018937486101906,0.0,0.0,2.5718601067901218e-05,0.0,0.0,0.0,0.0,0.0,0.00033327167652352394,0.00039692164952783826,0.0005928644296299193,0.0,0.0 +103168,85.0,Rural Climate Zone 3A,G1302770960400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,7481.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,17279.881383272885,0.0,0.0,0.0011856701328496302,0.0,0.0,0.00118567013284963,0.0008192359339507112,0.00018654732682324275,0.0001682583732131209,0.0,1.1628498862555079e-05,0.0008192359339507112,0.00018654732682324275,0.0001682583732131209,0.0,1.1628498862555079e-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.0001412939131813233,3.946534814256651e-05,0.0001412939131813233,9.762669035817925e-05,2.223046787644266e-05,2.00510102414973e-05,0.0,1.385744705204064e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.762669035817926e-05,2.2230467876442663e-05,2.0051010241497305e-05,0.0,1.3857447052040642e-06 +103169,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,51736.0,,3452.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0026631180156533514,0.000586981345172268,0.0,0.003250099360825619,0.0010414282387296414,0.0009678295084750022,0.0006588247696463221,0.0,0.0005820345743360734,0.000865649435611238,0.0009678295084750022,0.00024762222759245743,0.0,0.0005820345743360734,0.00017577880311840348,0.0004112025420538646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.921840097210015e-05,0.0,0.0,0.00031735940448541486,0.00012925635240038387,0.000356577805457515,0.00010315802295052235,0.0001153346545844625,2.950873458261465e-05,0.0,6.936010526589512e-05,1.1744433856020085e-05,2.7473967116080066e-05,0.0,0.0,0.0,0.0,0.00011425810557784512,0.0001061833759141981,7.228157187227079e-05,0.0,6.385669734245744e-05 +103170,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2004,gen5_led,5001_10000,Electricity,9604.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0020044886391458543,0.0,0.0,0.0020044886391458543,0.001044094098885017,0.0003591968212498122,0.0005373478580842804,0.0,6.393256800048464e-05,0.001044094098885017,0.0003591968212498122,0.0005373478580842804,0.0,6.393256800048464e-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.0002388689777234229,6.67606083935568e-05,0.0002388689777234229,0.00012442160318453917,4.2804421944744436e-05,6.403415366682121e-05,0.0,7.618654884477883e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012442160318453917,4.2804421944744436e-05,6.403415366682121e-05,0.0,7.618654884477883e-06 +103171,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,2915.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00036821189228739665,0.0,0.0,0.00036821189228739665,0.00018948190593675332,0.00010272218558421982,4.9706951317323766e-05,0.0,2.6383556522839068e-05,0.00018948190593675332,0.00010272218558421982,4.9706951317323766e-05,0.0,2.6383556522839068e-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,4.38782378973767e-05,1.5871490550316233e-05,4.38782378973767e-05,2.257974910666892e-05,1.2240963941720992e-05,5.923364999174168e-06,0.0,3.1440156983969377e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.257974910666892e-05,1.2240963941720992e-05,5.923364999174168e-06,0.0,3.1440156983969377e-06 +103172,46.0,the Tallahassee-Valdosta Area,G1301850011100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,37030.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0032064193982457084,0.0,0.0,0.0032064193982457093,0.002122932359102226,0.0008683508343258869,0.00021513620481759615,0.0,0.0,0.002122932359102226,0.0008683508343258869,0.00021513620481759615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038210302609906254,0.00011297836058969944,0.00038210302609906254,0.0002529858941910074,0.00010347975118074097,2.5637380727314288e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025298589419100727,0.00010347975118074094,2.563738072731428e-05,0.0,0.0 +103173,81.0,the Columbus-Albany Area,G1302150011200,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,8916.0,,201.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.001864879098673904,0.0001597900664643419,0.0,0.0020246691651382457,0.0007106191775681294,0.00043338506639397094,0.0008069729184744226,0.0,7.369200270172292e-05,0.0005508291111037875,0.00043338506639397094,0.0008069729184744226,0.0,7.369200270172292e-05,0.0001597900664643419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0674816843409186e-05,0.0,0.0,0.0002222351410677901,7.493913959336003e-05,0.00023290995791119926,6.564156641438185e-05,5.164591711882296e-05,9.616588040617472e-05,0.0,8.781777128410545e-06,1.0674816843409186e-05,0.0,0.0,0.0,0.0,0.0,8.174682836491112e-05,4.9854909291449516e-05,9.283098281615896e-05,0.0,8.47723743867968e-06 +103174,81.0,the Columbus-Albany Area,G1302150000300,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,141528.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,240343.828889517,0.0,0.0,0.011118833172578373,0.0,0.0,0.011118833172578372,0.007533503121346709,0.002603351581409146,0.0009819784698225163,0.0,0.0,0.007533503121346709,0.002603351581409146,0.0009819784698225163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001325010336673762,0.00035636455113896364,0.001325010336673762,0.0008977533300676097,0.00031023648811192634,0.00011702051849422572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008977533300676098,0.0003102364881119264,0.00011702051849422573,0.0,0.0 +103176,81.0,the Columbus-Albany Area,G1302150000300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,14110.0,,678.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011893450024611737,0.0001996051993602589,0.0,0.0013889502018214325,0.00041326623840486564,0.0004429123980884466,0.0005327408757218226,0.0,0.0,0.00021366103904460677,0.0004429123980884466,0.0005327408757218226,0.0,0.0,0.0001996051993602589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3336108651144475e-05,0.0,0.0,0.000141732427322552,5.713276307270774e-05,0.00015506853597369646,2.546165967434605e-05,5.2781193970146845e-05,6.34859164445523e-05,0.0,0.0,1.3336108651144475e-05,0.0,0.0,0.0,0.0,0.0,4.613886838618137e-05,4.944869660993388e-05,5.947754465436822e-05,0.0,0.0 +103177,50.0,the Greater Atlanta and Macon Area,G1300890023507,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,30131.0,,6050.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.00680225165407376,0.004692512963032801,0.0,0.011494683756323492,0.004461493705806017,0.0014638227558895578,0.003787357357363702,0.00031543791475032676,0.0014665720225138874,0.0032700909280743307,0.0014638227558895578,0.0017529000553595444,0.00031543791475032676,0.0,0.0011914027777316877,0.0020344573020041577,0.0014665720225138874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031352413976090936,0.0,0.0,0.0008106080818726247,0.0005205647438796389,0.001124132221633534,0.0003896889250146905,0.00017444026135706196,0.00020888891264974805,3.758998285112405e-05,0.0,7.960202431825957e-05,0.00013592961394376344,9.798709889101897e-05,0.0,0.0,0.0,0.0004363155122517145,0.00014315577196724586,0.00037038778364922165,3.084851496681357e-05,0.00014342463879853822 +103178,50.0,the Greater Atlanta and Macon Area,G1301210000500,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,459690.0,,20542.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.0218258976044708,0.003493342189147323,0.0,0.025319239793618123,0.010740467846341126,0.0083134473233572,0.0037438899263740897,0.0,0.002521452427907129,0.009551274775536764,0.0083134473233572,0.0035305582177680146,0.0,0.00043061728780882246,0.0011891930708043614,0.0002133317086060753,0.0020908351400983063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002334050968349474,0.0,0.0,0.0026009500526929354,0.0007895081361909289,0.002834355149527883,0.0011382069631641794,0.0009906974570116486,0.0004207298022262413,0.0,5.131583029086615e-05,7.945506303643557e-05,1.4253601682610858e-05,0.00013969761675699824,0.0,0.0,0.0,0.001202338640368215,0.0009306465132189927,0.00041910870067902545,0.0,0.0002822632800819527 +103179,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,50998.0,,2240.0,,4.088175128053588,Healthcare,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.0052971420201863495,0.0008326648784382868,0.0,0.006129806898624636,0.0030695338859530823,0.0006975491247450344,0.0022033516209519436,0.0,0.00015941101539834857,0.002725602876552076,0.0006975491247450344,0.001874028767313012,0.0,0.0,0.0003439310094010068,0.00032932285363893157,0.00015941101539834857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.563355727675275e-05,0.0,0.0,0.0006312514477898151,0.00022115662408890024,0.0006868850050665679,0.0003248054810248518,8.312574841713057e-05,0.00022332483593190218,0.0,0.0,2.2979359411254943e-05,2.2003332090610158e-05,1.0650865774887657e-05,0.0,0.0,0.0,0.0003439613732820779,7.81649474459266e-05,0.00024689997814785706,0.0,1.7863048205340623e-05 +103180,50.0,the Greater Atlanta and Macon Area,G1301210001001,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,638081.0,,80671.0,,9.525004485617233,Lodging,Zone-by-Zone,2013 to 2018,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.16374448606562614,0.06985349735207642,0.0,0.23359798341770252,0.07162117237482764,0.028242625931684084,0.09133255447096814,0.0004234114329266174,0.041978219207296066,0.07162117237482764,0.028242625931684084,0.042904668700834016,0.0004234114329266174,0.02055260762535375,0.0,0.04842788577013411,0.021425611581942314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004667201748605655,0.0,0.0,0.01951311461291803,0.011324780687075212,0.024180316361523686,0.008534956985980304,0.003365619264601373,0.005112866624730884,5.0457123886331256e-05,0.002449214613719135,0.0,0.0032356678150049166,0.0014315339336007388,0.0,0.0,0.0,0.007413688170029433,0.0029234654337197546,0.009454063039855605,4.382838520033133e-05,0.004345271332718563 +103181,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,11082.0,,,,9.325022323477118,Office,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,27975.06697043135,0.0,0.0,0.00262094382296163,0.0,0.0,0.00262094382296163,0.0014246642436878166,0.000252248387088841,0.0008856092637106472,0.0,5.842192847432513e-05,0.0014246642436878166,0.000252248387088841,0.0008856092637106472,0.0,5.842192847432513e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6682350631849297e-09,0.0,0.0,0.0003123319051755129,0.00011075926355051961,0.00031233457341057607,0.00016977399269994242,3.005986569673278e-05,0.00010553603864094689,0.0,6.962008137890808e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016977544307024604,3.006012249658677e-05,0.00010553694022978255,0.0,6.9620676139607056e-06 +103182,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,77867.0,,9261.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.007599298932224567,0.002726157727424938,0.0,0.01032542597004321,0.00379863670910446,0.002388848264606887,0.004137940996331862,0.0,0.0,0.0010724789816795215,0.002388848264606887,0.004137940996331862,0.0,0.0,0.002726157727424938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001821453494252418,0.0,0.0,0.0009055919881725157,0.0004215835389894919,0.0010877373375977573,0.00012780499648117963,0.0002846738717191822,0.0004931094627582674,0.0,0.0,0.00018214534942524176,0.0,0.0,0.0,0.0,0.0,0.0004001693482138346,0.0002516544555941109,0.0004359135337898118,0.0,0.0 +103183,50.0,the Greater Atlanta and Macon Area,G1301210011423,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,52232.0,,14902.0,,7.56685751697572,Food Service,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,132420.00654707509,0.013458037401166367,0.0,0.01184039345490926,0.010251294057116365,0.0,0.035549796633163,0.01789212460920652,0.0024635092844152236,0.0062558461918076885,0.0002777714477434616,0.008660401660048079,0.004434087208040153,0.0024635092844152236,0.003767306637508017,0.0002777714477434616,0.0008976471572313877,0.0,0.002488539554299672,0.007762754502816692,0.0,0.0,0.0,0.013458037401166367,0.0,0.0,0.0,0.0006849305684475985,0.0,0.0,0.001410998951798228,0.001133092595454836,0.0020959295202458263,0.0005284024071119463,0.00029357208705035567,0.0004489433342624556,3.310153696311473e-05,0.00010697103966701365,0.0,0.00016626942920904445,0.000518661139238554,0.0,0.0,0.0,0.001054876137135758,0.00014524251392731907,0.0003688294715952236,1.637672876766447e-05,0.0005105962119498547 +103184,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,24455.0,,2655.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005688556088870926,0.002059200701623127,0.0,0.007747756790494055,0.0037442585599881772,0.001011730117753419,0.002106423398935148,0.0004199100464748646,0.0004655155281255142,0.002397522217981848,0.001011730117753419,0.0013939590393183497,0.0004199100464748646,0.0004655155281255142,0.0013467363420063296,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013758370133016147,0.0,0.0,0.0006778908321576862,0.0003331677308219713,0.0008154745334878476,0.0002857066549179161,0.00012056531758289935,0.00016611457079696308,5.003961750383603e-05,5.5474307330942424e-05,8.998101569362444e-05,4.760268563653706e-05,0.0,0.0,0.0,0.0,0.00039409439209688133,0.0001064876154608828,0.00022170735156297935,4.4196786052458795e-05,4.899689915347685e-05 +103185,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,11966.0,,1509.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010661876123884925,0.0004441706719466523,0.0,0.001510358284335145,0.0006563586098889694,0.00039657109257891537,0.0004573978922609623,0.0,0.0,0.00021218793794231704,0.00039657109257891537,0.0004573978922609623,0.0,0.0,0.0004441706719466523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9676213118053104e-05,0.0,0.0,0.00012705620909993486,6.95980451853551e-05,0.00015673242221798795,2.5286164178260544e-05,4.725886802306665e-05,5.450751965762151e-05,0.0,0.0,2.9676213118053104e-05,0.0,0.0,0.0,0.0,0.0,6.811143808623782e-05,4.115285000001707e-05,4.746494941961419e-05,0.0,0.0 +103186,35.0,Eastern Counties in South Carolina and Georgia,G1301270000101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,45539.0,,4181.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0022843974957210233,0.0007110229536669574,0.0,0.0029954204493879808,0.0011505940739929069,0.0004205641728836525,0.0010911796328743099,0.0,0.0003330825696371119,0.001008697991548224,0.0004205641728836525,0.0007884869027111682,0.0,6.664842857797847e-05,0.00014189608244468256,0.00030269273016314145,0.00026643414105913347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.75067433498675e-05,0.0,0.0,0.0002722264266936933,0.0001237860938966263,0.0003197331700435609,0.00012020423344301042,5.011767093684778e-05,9.396218146005725e-05,0.0,7.942340853777858e-06,9.480735799436178e-06,2.022430608121635e-05,1.7801701469214977e-05,0.0,0.0,0.0,0.00012281517634235716,4.489129939348339e-05,0.00011647323940021707,0.0,3.5553454907503326e-05 +103187,50.0,the Greater Atlanta and Macon Area,G1300670030319,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,23853.0,,1665.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005928470032235249,0.0012914275663874564,0.0,0.007219897598622706,0.0029890997069111965,0.0006349188686540798,0.0025606992782141362,0.0004172416406336032,0.0006180998257758261,0.0029890997069111965,0.0006349188686540798,0.0012692717118266798,0.0004172416406336032,0.0006180998257758261,0.0,0.0012914275663874564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.628317177909942e-05,0.0,0.0,0.0007064884701250945,0.0002912380656778426,0.0007927716419041938,0.00035620732963220314,7.566249938516635e-05,0.00015125754621102342,4.972217229081232e-05,7.365819476569174e-05,0.0,8.628317177909942e-05,0.0,0.0,0.0,0.0,0.0003282142786783266,6.97164560997192e-05,0.00028117431632270856,4.581468587296882e-05,6.78696625606538e-05 +103188,85.0,Rural Climate Zone 3A,G1302330010700,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,54743.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004877560508106499,0.0,0.0,0.004877560508106499,0.0016962145400740327,0.0011941325810436152,0.001987244076595148,0.0,0.0,0.0016962145400740327,0.0011941325810436152,0.001987244076595148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005812488493173197,0.00020100246012622045,0.0005812488493173197,0.0002021343964825728,0.00014230232254635258,0.00023681578750562758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002021343964825728,0.00014230232254635258,0.00023681578750562758,0.0,0.0 +103189,50.0,the Greater Atlanta and Macon Area,G1300570090701,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,6617.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013578847366519492,0.0,0.0,0.0013578847366519495,0.0005362726661256693,0.0002393542714015557,0.0005406561410338527,0.0,4.151895101713233e-05,0.0005362726661256693,0.0002393542714015557,0.0005406561410338527,0.0,4.151895101713233e-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.00016181780456077293,4.8861975465523134e-05,0.00016181780456077293,6.390709250652038e-05,2.8523615933662866e-05,6.442946695174642e-05,0.0,4.947773047235231e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.390709250652037e-05,2.852361593366286e-05,6.442946695174642e-05,0.0,4.94777304723523e-06 +103190,50.0,the Greater Atlanta and Macon Area,G1301170130204,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,14295.0,,702.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00342258412548002,0.0005571975557817141,0.0,0.003979781681261734,0.0025327387191188115,0.00044314450109520913,0.0009344245191066953,0.0,6.955664901475753e-05,0.0019755411633370972,0.00044314450109520913,0.0009344245191066953,0.0,6.955664901475753e-05,0.0005571975557817141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7226516735214316e-05,0.0,0.0,0.00040786549257491487,0.00016860185826705947,0.0004450920093101292,0.000235423013765512,5.280903071906611e-05,0.00011135431673460415,0.0,8.288987464489472e-06,3.7226516735214316e-05,0.0,0.0,0.0,0.0,0.0,0.00028325718741254157,4.9560526733383323e-05,0.00010450444774799644,0.0,7.779097234560538e-06 +103191,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,9609.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007615932698837923,0.0,0.0,0.0007615932698837923,0.00020384036502934188,0.00024330719872818767,0.0003144457061262627,0.0,0.0,0.00020384036502934188,0.00024330719872818767,0.0003144457061262627,0.0,0.0,0.0,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.075642131599965e-05,3.4012988103880454e-05,9.075642131599965e-05,2.4290947388010543e-05,2.8994072702822584e-05,3.747140122516652e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4290947388010543e-05,2.8994072702822584e-05,3.747140122516652e-05,0.0,0.0 +103192,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,170411.0,,1665.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012365278166874766,0.000283065220071143,0.0,0.01264834338694591,0.0061406269920525666,0.004040341569317373,0.0013220821296476574,0.0,0.0011452926959283109,0.005857561771981423,0.004040341569317373,0.0013220821296476574,0.0,0.0011452926959283109,0.000283065220071143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8913019410129333e-05,0.0,0.0,0.0014735453462810712,0.0003835503185168443,0.0014924583656912007,0.0006980338633043991,0.0004814793841680564,0.0001575498701486999,0.0,0.00013648222865991565,1.8913019410129333e-05,0.0,0.0,0.0,0.0,0.0,0.0007245715778349812,0.0004767455619208684,0.00015600086700365317,0.0,0.00013514035893169777 +103193,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,62634.0,,9853.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.00778042898859361,0.0029004440015895916,0.0,0.0106808729901832,0.00717578236531627,0.0013564192191458677,0.0021486714057210653,0.0,0.0,0.004275338363726678,0.0013564192191458677,0.0021486714057210653,0.0,0.0,0.0029004440015895916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019379041802704053,0.0,0.0,0.0009271789587104334,0.000497555840427739,0.0011209693767374738,0.000509483960078068,0.00016164190445362784,0.0002560530941787377,0.0,0.0,0.00019379041802704053,0.0,0.0,0.0,0.0,0.0,0.0007531062576107241,0.00014235769005756094,0.00022550542906918898,0.0,0.0 +103194,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001300,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,14760.0,,293.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003485937743964329,0.00023232417013371452,0.0,0.003718261914098044,0.0013060274014174034,0.0007480854819720356,0.001562832865377953,0.0,0.00010115075118317298,0.0010737032312836889,0.0007480854819720356,0.001562832865377953,0.0,0.00010115075118317298,0.00023232417013371452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5522526839707417e-05,0.0,0.0,0.0004154082500758747,0.00015497736457568428,0.0004309307769155821,0.00012794984109530715,8.914699681921531e-05,0.00018623788301778797,0.0,1.205381725924824e-05,1.5522526839707417e-05,0.0,0.0,0.0,0.0,0.0,0.00015136303352701375,8.669993276244945e-05,0.00018112569701263072,0.0,1.172294281575187e-05 +103195,50.0,the Greater Atlanta and Macon Area,G1301210006300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6083.0,,1204.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0004263797314294298,0.00020478567440160989,0.0,0.0006311654058310396,0.0002785971689932897,0.0001413287108792409,7.092144568021121e-05,0.0,0.00014031808027829788,0.0001630129428959655,0.0001413287108792409,7.092144568021121e-05,0.0,5.111663197401223e-05,0.00011558422609732421,0.0,8.920144830428564e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3682596351050876e-05,0.0,0.0,5.081054225109266e-05,2.743548616085162e-05,6.449313860214352e-05,1.942582025351572e-05,1.68417678095251e-05,8.451520667181081e-06,0.0,6.0914335208707646e-06,7.722670615800921e-06,0.0,5.959925735249951e-06,0.0,0.0,0.0,2.8467348920037117e-05,1.444111488841188e-05,7.246827192779766e-06,0.0,1.4337847600914769e-05 +103196,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,134424.0,,10432.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006598424923918332,0.001773975851160543,0.0,0.008372400775078873,0.0035588026835101584,0.0019345242738191214,0.001335486282881217,0.0,0.001543587534868377,0.0033106130843522596,0.0019345242738191214,0.0011121901111570721,0.0,0.000241079724228458,0.0002481895991578991,0.00022329617172414497,0.001302507810639919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011852686060454232,0.0,0.0,0.0007863217187394064,0.0003366182705253074,0.0009048485793439488,0.0003945194498057846,0.00023053356967335875,0.00013253757523252598,0.0,2.8729011134368322e-05,1.6582601168804365e-05,1.4919365560788841e-05,8.702607851569556e-05,0.0,0.0,0.0,0.0003846181804775421,0.00020907402642286028,0.0001443328978463786,0.0,0.00016682347459716785 +103197,50.0,the Greater Atlanta and Macon Area,G1300570090100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,34888.0,,2560.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003516503474905717,0.000745823734193996,0.0,0.004262327209099713,0.0027337758173948527,0.00108312255595023,0.00044539846215519276,0.0,0.0,0.001987952083200857,0.00108312255595023,0.00044539846215519276,0.0,0.0,0.000745823734193996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9831869753424804e-05,0.0,0.0,0.0004190557950977145,0.0001674312467143124,0.0004688876648511393,0.00023690090079158213,0.00012907389033197582,5.3077384403479907e-05,0.0,0.0,4.9831869753424804e-05,0.0,0.0,0.0,0.0,0.0,0.0003007356536373319,0.00011915152945622196,4.899714043595174e-05,0.0,0.0 +103198,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,57322.0,,7477.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004833152647793723,0.0022009358052460528,0.0,0.007034119142646072,0.0029764314667827044,0.0016398991125177484,0.002417788563345621,0.0,0.0,0.0007754956615366516,0.0016398991125177484,0.002417788563345621,0.0,0.0,0.0022009358052460528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014705418833692703,0.0,0.0,0.0005759588749320436,0.000303478094879815,0.0007230130632689707,9.24145462149272e-05,0.00019542408789404548,0.00028812389805312426,0.0,0.0,0.00014705418833692703,0.0,0.0,0.0,0.0,0.0,0.00030593721669593257,0.00016855962441766415,0.0002485162221553742,0.0,0.0 +103199,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,18903.0,,3418.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0009128121969885786,0.0005812898991564311,0.0,0.0014941020961450097,0.0007239129264193359,0.00029187720969690926,0.0002521080090317308,0.0,0.0002261862206356136,0.0004698723079928194,0.00029187720969690926,9.781840395443131e-05,0.0,5.324427534441857e-05,0.00025404061842651657,0.0001542896050772995,0.00017294194529119503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.883847850181348e-05,0.0,0.0,0.00010877787428362586,6.9938586775844e-05,0.00014761635278543936,5.599367648331233e-05,3.4782381882505856e-05,1.1656809673538134e-05,0.0,6.345006244269534e-06,1.697354643812669e-05,1.0308752170894644e-05,1.1554995251080943e-05,0.0,0.0,0.0,7.152214444245389e-05,2.8837285797146042e-05,2.4908113640482295e-05,0.0,2.2347057156736244e-05 +103200,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,167343.0,,18276.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.008419971334768874,0.0031080259747667356,0.0,0.011527997309535612,0.004617234338841631,0.0021890790727268194,0.0023953186367648735,0.0,0.0023263652612022876,0.0037314077519343724,0.0021890790727268194,0.002169451562634821,0.0,0.00033001521711144283,0.0008858265869072581,0.00022586707413005258,0.0019963500440908447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002076601853330089,0.0,0.0,0.001003390920467703,0.000488970209310074,0.0012110511058007118,0.00044466429991195757,0.0002608681168176735,0.00025852914621614945,0.0,3.9327244630683655e-05,5.9185770873061595e-05,1.509112177802549e-05,0.000133384477321358,0.0,0.0,0.0,0.00048505448098690006,0.00022996940062764521,0.00025163549278413305,0.0,0.0002443917314020335 +103201,50.0,the Greater Atlanta and Macon Area,G1301210007704,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,300698.0,,8768.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.015478499137537577,0.0014910879347036004,0.0,0.016969587072241176,0.007113828800037845,0.0028021772402708257,0.004239276224450366,0.0,0.0028143048074821416,0.005622740865334245,0.0028021772402708257,0.004239276224450366,0.0,0.0028143048074821416,0.0014910879347036004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.962556517934909e-05,0.0,0.0,0.001844543536133925,0.00055196920758668,0.001944169101313274,0.0006700514194787946,0.00033393017434799104,0.0005051865486578522,0.0,0.000335375393649287,9.962556517934909e-05,0.0,0.0,0.0,0.0,0.0,0.0008150160688170162,0.00032103942092082593,0.0004856847613570064,0.0,0.00032242885021842565 +103202,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,82666.0,,1996.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.007094178702170678,0.0005874604437506267,0.0,0.007681639145921305,0.0027403977047470722,0.0019583958466753075,0.002982876284105222,0.0,0.0,0.0021529372609964455,0.0019583958466753075,0.002982876284105222,0.0,0.0,0.0005874604437506267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.92503140375521e-05,0.0,0.0,0.000845401287436043,0.00029979900723452006,0.0008846516014735952,0.000256561895129384,0.0002333787235416151,0.00035546432599356374,0.0,0.0,3.92503140375521e-05,0.0,0.0,0.0,0.0,0.0,0.00031559634241166913,0.00022553754337711202,0.00034352125003586116,0.0,0.0 +103203,85.0,Rural Climate Zone 3A,G1302850961000,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,33769.0,,19688.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.006756523309467671,0.013543384166674943,0.0,0.020299907476142614,0.004469732033634912,0.0005875300025598857,0.011528626740904397,0.00037258524942609944,0.0033414334496173186,0.0033379191710375543,0.0005875300025598857,0.0020946534734819365,0.00037258524942609944,0.0003638354129621949,0.0011318128625973577,0.009433973267422461,0.0029775980366551235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009048876305738569,0.0,0.0,0.0008051615376056307,0.00108647767874481,0.0017100491681794874,0.00039777323470340485,7.001478994199292e-05,0.00024961571716868226,4.4400248260333645e-05,4.3357547531217046e-05,7.562094133080929e-05,0.0006303214626267868,0.00019894522661626066,0.0,0.0,0.0,0.0003765269154593704,4.94930921896467e-05,0.0009711629765655223,3.13863054107928e-05,0.0002814798785541552 +103204,81.0,the Columbus-Albany Area,G1302150002200,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,267416.0,,25564.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013002791042094184,0.004347466889835527,0.0,0.01735025793192971,0.006015415179704154,0.0046475887175927615,0.004250162666362276,0.0,0.0024370913682705176,0.005673981609838198,0.0046475887175927615,0.0023094327660461377,0.0,0.0003717879486170873,0.0003414335698659568,0.0019407299003161393,0.0020653034196534306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029047229245299217,0.0,0.0,0.001549518130120431,0.0007085444109907595,0.0018399904225734234,0.0006761577069070702,0.0005538443981710941,0.0002752107551138747,0.0,4.430526992839198e-05,2.2812592774714705e-05,0.00012966821311391813,0.00013799148656435932,0.0,0.0,0.0,0.000637933243521954,0.0004928755965462395,0.0004507286653124664,0.0,0.0002584529171927632 +103205,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,3864.0,,692.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009278906602812899,0.0005489268484077833,0.0,0.0014769002157628127,0.001040372280566748,0.00016673746065844376,0.0002305046145114498,0.0,3.920315295243172e-05,0.0004914454321589647,0.00016673746065844376,0.0002305046145114498,0.0,3.920315295243172e-05,0.0005489268484077833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.667853431568226e-05,0.0,0.0,0.00011057829257763139,7.362773233985187e-05,0.00014725682689331366,5.8566379757223085e-05,1.9870383976870032e-05,2.7469623087071817e-05,0.0,4.671905756466467e-06,3.667853431568226e-05,0.0,0.0,0.0,0.0,0.0,0.00010373207288407863,1.6624839727665358e-05,2.2982851349704046e-05,0.0,3.908816483587987e-06 +103206,50.0,the Greater Atlanta and Macon Area,G1301210002100,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,9334.0,,247.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002025165407580682,0.00019593305768841925,0.0,0.002221098465269101,0.0015020431661795619,0.0002449783524158286,0.00044198660206285883,0.0,3.2090344610851275e-05,0.0013381177460282548,0.0002449783524158286,0.00044198660206285883,0.0,0.0,0.0001639254201513073,0.0,3.2090344610851275e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3093735462787818e-05,0.0,0.0,0.00024133504467055474,8.835206803090808e-05,0.00025442878013334254,0.00015946090368883868,2.9193596435276605e-05,5.267068850442882e-05,0.0,0.0,1.0954741953248398e-05,0.0,2.1445206245511498e-06,0.0,0.0,0.0,0.00017206036402910566,2.8062485449821654e-05,5.062995349218329e-05,0.0,3.675977162231871e-06 +103207,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,32124.0,,,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00763212587070606,0.0,0.0,0.00763212587070606,0.003964927636982189,0.0008154001364630337,0.0019565075071260973,0.0004192631602103164,0.00047610829070749143,0.003964927636982189,0.0008154001364630337,0.0019565075071260973,0.0004192631602103164,0.00047610829070749143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009095029867856732,0.00028771141754347214,0.0009095029867856732,0.00047249135946060534,9.716936959662161e-05,0.000233152525462104,4.9962632026823e-05,5.6736736234124176e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00047249135946060534,9.716936959662161e-05,0.000233152525462104,4.9962632026823e-05,5.6736736234124176e-05 +103208,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock DOE Ref 1980-2004,gen3_t5_cfl,_1000,Electricity,3790.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007398974816718442,0.0,0.0,0.0007398974816718443,0.0004773025225495431,0.0001517674803116291,8.154917470695713e-05,0.0,2.927830410371483e-05,0.0004773025225495431,0.0001517674803116291,8.154917470695713e-05,0.0,2.927830410371483e-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,8.817686163728896e-05,3.29151694775933e-05,8.817686163728896e-05,5.6882256707891186e-05,1.808680316391965e-05,9.718576522956285e-06,0.0,3.48922524252183e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.688225670789118e-05,1.8086803163919648e-05,9.718576522956283e-06,0.0,3.4892252425218298e-06 +103209,50.0,the Greater Atlanta and Macon Area,G1300670030319,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,57563.0,,3668.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005427336989134122,0.0010686343490184222,0.0,0.0064960017117519815,0.004461000923022047,0.00146789531362767,0.0005671054751022643,0.0,0.0,0.003392366574003626,0.00146789531362767,0.0005671054751022643,0.0,0.0,0.0010686343490184222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.140061516913743e-05,0.0,0.0,0.0006467667716424645,0.0002372655227515809,0.0007181673868116019,0.0004042627133138778,0.00017492665648084917,6.75810214193415e-05,0.0,0.0,7.140061516913743e-05,0.0,0.0,0.0,0.0,0.0,0.000493187273897259,0.0001622835997093145,6.269651320502838e-05,0.0,0.0 +103210,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,8510.0,,46.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0016741565866310608,3.622569829781665e-05,0.0,0.0017103822849288775,0.0011990044479987397,0.0002374520087055516,0.00023753471577929092,0.0,3.622569829781665e-05,0.0011990044479987397,0.0002374520087055516,0.00023753471577929092,0.0,0.0,0.0,0.0,3.622569829781665e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.419156029110124e-06,0.0,0.0,0.0001995048252362589,4.912348530766607e-05,0.00020192398126536902,0.0001428821979769808,2.829652965385334e-05,2.8306385637710482e-05,0.0,0.0,0.0,0.0,2.419156029110124e-06,0.0,0.0,0.0,0.0001415518354160568,2.8033063356521978e-05,2.8042827572250478e-05,0.0,4.276726489082768e-06 +103211,50.0,the Greater Atlanta and Macon Area,G1300890023801,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,68739.0,,3945.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005550532308453644,0.0011493977499234043,0.0,0.006699930058377048,0.004664473665655546,0.0015708314421222112,0.0004646249505992896,0.0,0.0,0.0035150759157321428,0.0015708314421222112,0.0004646249505992896,0.0,0.0,0.0011493977499234043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.679595328121544e-05,0.0,0.0,0.0006614472849782681,0.00023443616397613682,0.0007382432382594836,0.00041888548552585067,0.00018719325189185348,5.536854756056389e-05,0.0,0.0,7.679595328121544e-05,0.0,0.0,0.0,0.0,0.0,0.0005139629986740148,0.00017308474573434935,5.1195493851119396e-05,0.0,0.0 +103212,50.0,the Greater Atlanta and Macon Area,G1300670031308,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,43017.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.011017326585739402,0.0,0.0,0.011017326585739402,0.006385647749264447,0.0016975626884992848,0.002771265919782974,0.0,0.00016285022819269632,0.006385647749264447,0.0016975626884992848,0.002771265919782974,0.0,0.00016285022819269632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013129167896513603,0.00031455109796891064,0.0013129167896513603,0.0007609671981277707,0.00020229576911165288,0.00033024722707060433,0.0,1.9406595341332256e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0007609671981277707,0.00020229576911165288,0.00033024722707060433,0.0,1.9406595341332256e-05 +103213,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Propane,61008.0,,,12387.0,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0054370934101262165,0.0,0.0011796163972648019,0.006616709807391017,0.003224741071337417,0.001377840564341664,0.002014158861318234,0.0,0.0,0.0020451246740726156,0.001377840564341664,0.002014158861318234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011796163972648019,0.0,0.0,0.0,0.0,9.513534415187614e-05,0.0006479275878245239,0.0003013337043874869,0.0007430629319764,0.00024371343232845524,0.0001641945145908301,0.00024002329812446946,0.0,0.0,0.0,0.0,0.0,9.513534415187614e-05,0.0,0.0,0.00036214155147866754,0.00015473283238024154,0.00022619199459005822,0.0,0.0 +103214,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000102,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,38014.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0033521215547486043,0.0,0.0,0.0033521215547486043,0.002214842871000863,0.0006923965727829905,0.00044491248456418874,0.0,0.0,0.002214842871000863,0.0006923965727829905,0.00044491248456418874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039946707646098346,0.00013407603695733285,0.00039946707646098346,0.0002639393566279905,8.251181532764223e-05,5.3019524079632544e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002639393566279905,8.251181532764223e-05,5.3019524079632544e-05,0.0,0.0 +103215,50.0,the Greater Atlanta and Macon Area,G1300890023113,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,29331.0,,1633.0,,8.53126424238864,Food Service,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.006819636722433493,0.0012666033059854185,0.0,0.00808632088920198,0.0021972300583211046,0.0005097463764639989,0.00409891395452674,0.00040567854865480375,0.000874751951235333,0.0021972300583211046,0.0005097463764639989,0.003707062599776655,0.00040567854865480375,0.0,0.0,0.0003918513547500854,0.000874751951235333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.462766665817642e-05,0.0,0.0,0.0008126871799222203,0.00030506886626916266,0.0008973148465803967,0.0002618410294295157,6.0745808321630545e-05,0.00044176579671718793,4.834418152754132e-05,0.0,0.0,2.618141423809518e-05,5.844625242008124e-05,0.0,0.0,0.0,0.00024382004865983138,5.656503097749888e-05,0.0004548442235533623,4.501693534487816e-05,9.706860804482596e-05 +103216,50.0,the Greater Atlanta and Macon Area,G1300670030410,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,28572.0,,1558.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0071883198999044265,0.0012363053382551674,0.0,0.008424707945233333,0.0036366300323173472,0.0011774179017527806,0.0033627042040927616,0.0,0.00024795580707044363,0.0026482805011326235,0.0011774179017527806,0.0033627042040927616,0.0,0.0,0.0009883495311847237,0.0,0.00024795580707044363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.260415514323228e-05,0.0,0.0,0.0008566224198926093,0.00034140751600914514,0.0009392265750358417,0.00031559202748681264,0.0001403113086602831,0.00040072893983631575,0.0,0.0,6.603690486764958e-05,0.0,1.656725027558271e-05,0.0,0.0,0.0,0.0004054288400416834,0.00013126415662573131,0.0003748902837938314,0.0,2.7643294574595564e-05 +103217,50.0,the Greater Atlanta and Macon Area,G1300770170405,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,45752.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003973170542452316,0.0,0.0,0.0039731705424523155,0.0030015798436375104,0.0007427863742502209,0.0002288346981640222,0.0,0.0,0.0030015798436375104,0.0007427863742502209,0.0002288346981640222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00047347585104525245,0.00014523694522115927,0.00047347585104525245,0.00035769307049915086,8.85165655325407e-05,2.7269834582791306e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035769307049915097,8.851656553254072e-05,2.7269834582791313e-05,0.0,0.0 +103218,50.0,the Greater Atlanta and Macon Area,G1301210006200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,10338.0,,1045.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015178465482717843,0.00030769399274076806,0.0,0.0018255405410125523,0.0007880477105124122,0.0004921692161962594,0.0005453236143038808,0.0,0.0,0.000480353717771644,0.0004921692161962594,0.0005453236143038808,0.0,0.0,0.00030769399274076806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0558780988884517e-05,0.0,0.0,0.00018087929210050405,7.951557314456196e-05,0.00020143807308938856,5.724296736538253e-05,5.865100099914641e-05,6.49853237359751e-05,0.0,0.0,2.0558780988884517e-05,0.0,0.0,0.0,0.0,0.0,8.695660750435949e-05,5.430808920271878e-05,6.0173376382310296e-05,0.0,0.0 +103219,50.0,the Greater Atlanta and Macon Area,G1301350050723,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,27373.0,,11479.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0056995860966106105,0.007896368808818777,0.0,0.013596026625400404,0.0034015347853284007,0.00048281884487709356,0.007556918186001891,0.0003692144107883657,0.001785325238491606,0.0022928157533980698,0.00048281884487709356,0.002348470450906184,0.0003692144107883657,0.00020612319669886616,0.0011087190319303312,0.005208447735095705,0.0015792020417927397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005275915227414774,0.0,0.0,0.0006792091281739057,0.0006976134133195941,0.0012068006509153833,0.00027323061052713716,5.7536628298310466e-05,0.00027986287784138094,4.399859811047271e-05,2.4563319924145022e-05,7.407845004596275e-05,0.00034799956007748926,0.00010551351261802534,0.0,0.0,0.0,0.00030192456267896876,4.285561600646912e-05,0.0006707616892087988,3.277194165200581e-05,0.00015846774350104518 +103220,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,27819.0,,4052.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023511921176796054,0.001192690169547623,0.0,0.003543851597620931,0.0017594965082598957,0.0007638336111435246,0.0010205214782175107,0.0,0.0,0.0005668063387122726,0.0007638336111435246,0.0010205214782175107,0.0,0.0,0.001192690169547623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.968777983401217e-05,0.0,0.0,0.000280185493041863,0.0001597618701318711,0.00035987327287587514,6.754484768691809e-05,9.10240789474094e-05,0.00012161290920640461,0.0,0.0,7.968777983401217e-05,0.0,0.0,0.0,0.0,0.0,0.00017867445901691874,7.756625637466146e-05,0.00010363255748429497,0.0,0.0 +103221,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,119542.0,,6654.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010785401789233177,0.001958549294706796,0.0,0.01274395108393997,0.003703867204857153,0.0031277312258303795,0.005912321963646144,0.0,0.0,0.0017453179101503576,0.0031277312258303795,0.005912321963646144,0.0,0.0,0.001958549294706796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000130859570576869,0.0,0.0,0.0012852745827815922,0.0005411370270791321,0.0014161341533584612,0.00020798601597105915,0.00037272542320538926,0.0007045594863866461,0.0,0.0,0.000130859570576869,0.0,0.0,0.0,0.0,0.0,0.0004115813701539206,0.0003475599507758587,0.0006569894221362744,0.0,0.0 +103222,50.0,the Greater Atlanta and Macon Area,G1301350050607,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,111492.0,,12090.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009933826593684521,0.003558797435887912,0.0,0.013492624029572433,0.005577130083662633,0.0030799475088248564,0.004835546437084943,0.0,0.0,0.002018332647774721,0.0030799475088248564,0.004835546437084943,0.0,0.0,0.003558797435887912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002377772951490606,0.0,0.0,0.00118379623650077,0.000578994519089535,0.0014215735316498305,0.00024052106908745057,0.0003670318014092141,0.0005762433660041051,0.0,0.0,0.0002377772951490606,0.0,0.0,0.0,0.0,0.0,0.0005876025665671826,0.0003245011383864221,0.0005094698266962257,0.0,0.0 +103223,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13684.0,,1143.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0010911108126023588,0.00033286427623832225,0.0,0.001423975088840681,0.0008140428385311866,0.00043920224786989136,0.00017076037603904072,0.0,0.0,0.0004811785622928644,0.00043920224786989136,0.00017076037603904072,0.0,0.0,0.00033286427623832225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.223932900838956e-05,0.0,0.0,0.0001300269975374419,5.322232117547636e-05,0.0001522663265458315,5.7341750271084116e-05,5.233945896476936e-05,2.0349407904559706e-05,0.0,0.0,2.223932900838956e-05,0.0,0.0,0.0,0.0,0.0,8.704598391183888e-05,4.696410310679415e-05,1.8259487390483864e-05,0.0,0.0 +103224,50.0,the Greater Atlanta and Macon Area,G1301210000500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,18294.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004175549324802675,0.0,0.0,0.004175549324802675,0.002846446649812004,0.000548844141334044,0.0006982958235809726,0.0,8.196271007565366e-05,0.002846446649812004,0.000548844141334044,0.0006982958235809726,0.0,8.196271007565366e-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.0004975951023917797,0.00015448625872445992,0.0004975951023917797,0.000339207563362427,6.540508456744146e-05,8.321505862008865e-05,0.0,9.767395841822557e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.000339207563362427,6.540508456744146e-05,8.321505862008865e-05,0.0,9.767395841822557e-06 +103225,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,63091.0,,1665.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.014811107913096089,0.0012914275663874564,0.0,0.016102535479483548,0.0089112625980671,0.0017161083990633644,0.0036672790945069395,0.0004220124268346463,0.0013859538217945654,0.0089112625980671,0.0017161083990633644,0.0023758515281194826,0.0004220124268346463,0.0013859538217945654,0.0,0.0012914275663874564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.628317177909942e-05,0.0,0.0,0.0017650145310401744,0.0006815744538172208,0.0018512977028192737,0.0010619400025838708,0.00020450571820550327,0.0002831261844373603,5.02905029126194e-05,0.00016516175894276615,0.0,8.628317177909942e-05,0.0,0.0,0.0,0.0,0.0010245218834040448,0.00019729983150931484,0.0004216246175584016,4.851848563573076e-05,0.00015934218122177146 +103226,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,11072.0,,775.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002266835477046938,0.000614761679104272,0.0,0.0028815971561512096,0.0016525700403851014,0.0007886119481042963,0.000363745710305474,0.0,7.658675028259868e-05,0.0010378083612808296,0.0007886119481042963,0.000363745710305474,0.0,7.658675028259868e-05,0.000614761679104272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.107630872288272e-05,0.0,0.0,0.0002701314183375987,0.00010588014956540471,0.00031120772706048146,0.00012367225033932386,9.397632347668577e-05,4.334639440487299e-05,0.0,9.126594183472578e-06,4.107630872288272e-05,0.0,0.0,0.0,0.0,0.0,0.00017847483121596625,8.51687861290345e-05,3.92839351227576e-05,0.0,8.271242365546507e-06 +103227,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,16771.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001494215551422553,0.0,0.0,0.0014942155514225534,0.0006028666261120736,0.00041513830438902555,0.0004762413105277518,0.0,0.0,0.0006028666261120736,0.00041513830438902555,0.0004762413105277518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017806437071879168,6.531878681981786e-05,0.00017806437071879168,7.184309272099788e-05,4.9471671514810535e-05,5.675326373673615e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.184309272099785e-05,4.947167151481052e-05,5.6753263736736135e-05,0.0,0.0 +103228,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,91284.0,,11358.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004698864922819554,0.0019315101123777124,0.0,0.006630375035197265,0.0029024247037398036,0.0015619561892995517,0.0014620633330589743,0.0,0.0007039485394603563,0.0023775350842605604,0.0015619561892995517,0.0006246406328284602,0.0,0.00013473301643098125,0.0005248896194792431,0.0008374227002305138,0.0005692155230293751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001290524762021447,0.0,0.0,0.000559954088706121,0.00024414061802896349,0.0006890065649082656,0.0002833259762391935,0.0001861351132548194,7.443714217568859e-05,0.0,1.605585703641946e-05,3.5070127095120996e-05,5.5951802892503025e-05,3.803173085602501e-05,0.0,0.0,0.0,0.00030161034095549545,0.00016231330246230482,0.00015193276842436144,0.0,7.315199554640884e-05 +103229,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,50569.0,,9249.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026030652815236324,0.0015729490133799843,0.0,0.004176032025265036,0.0019800203812229762,0.0008191958886906997,0.0006606155361497475,0.0,0.0007162002192016129,0.0014153615610785549,0.0008191958886906997,0.0002494129940958828,0.0,0.00011909483765849467,0.0005646588201444216,0.0004112025420538646,0.0005971053815431182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010509562964925007,0.0,0.0,0.00031020330922649857,0.0001826027036555138,0.0004152989388757486,0.00016866647299047569,9.762232141479636e-05,2.972216512654893e-05,0.0,1.4192349694677555e-05,3.772733492013376e-05,2.7474247227925464e-05,3.989523214448283e-05,0.0,0.0,0.0,0.00019690949645484798,8.146757047032741e-05,6.569703716542063e-05,0.0,7.122483478515259e-05 +103230,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,38520.0,,3858.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0037137799476913112,0.0011356995706527891,0.0,0.0048494795183441014,0.0018209984792804921,0.00104123696246846,0.001987244076595148,0.0,0.0,0.0006852989086277032,0.00104123696246846,0.001987244076595148,0.0,0.0,0.0011356995706527891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.588024179747972e-05,0.0,0.0,0.0004425634216754415,0.00020389847779030693,0.0005184436634729212,8.166564366886159e-05,0.00012408204023274232,0.0002368157377738376,0.0,0.0,7.588024179747972e-05,0.0,0.0,0.0,0.0,0.0,0.00019467761833112413,0.0001113155965137249,0.00021245044862807204,0.0,0.0 +103231,50.0,the Greater Atlanta and Macon Area,G1301170130602,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,20968.0,,2002.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0019792647789577456,0.0005892711305221912,0.0,0.002568535909479937,0.0009095785514513151,0.0005846063103649403,0.0010743510476636812,0.0,0.0,0.00032030742092912395,0.0005846063103649403,0.0010743510476636812,0.0,0.0,0.0005892711305221912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9371712382413245e-05,0.0,0.0,0.00023586378430112844,0.00011240495088097014,0.0002752354966835417,3.817019392416042e-05,6.966599828124286e-05,0.00012802759209572516,0.0,0.0,3.9371712382413245e-05,0.0,0.0,0.0,0.0,0.0,9.74673172593831e-05,6.26444067235977e-05,0.0001151237727005609,0.0,0.0 +103232,81.0,the Columbus-Albany Area,G1302150010602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,68948.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006143169182217465,0.0,0.0,0.006143169182217464,0.0016751000909412134,0.0017812247495186697,0.002686875031363879,0.0,0.0,0.0016751000909412134,0.0017812247495186697,0.002686875031363879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007320693294624402,0.00022051668857142167,0.0007320693294624402,0.0001996183669998097,0.0002122650328069502,0.0003201895868754047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019961836699980973,0.00021226503280695022,0.00032018958687540474,0.0,0.0 +103233,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950600,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5652.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001026063956809848,0.0,0.0,0.001026063956809848,0.0004280918136746553,0.00022686550326692025,0.0003289260322612256,0.0,4.218060760704679e-05,0.0004280918136746553,0.00022686550326692025,0.0003289260322612256,0.0,4.218060760704679e-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.00012227606635559495,3.69052308503185e-05,0.00012227606635559495,5.101571170857323e-05,2.703556746843438e-05,3.919812315784306e-05,0.0,5.026664020744271e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.101571170857323e-05,2.703556746843438e-05,3.919812315784306e-05,0.0,5.026664020744271e-06 +103234,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,107823.0,,7286.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.011692586551393273,0.0021446817569023635,0.0,0.013837268308295634,0.0045769558144204995,0.0036713055325752913,0.005589006961299845,0.0,0.0,0.0024322740575181364,0.0036713055325752913,0.005589006961299845,0.0,0.0,0.0021446817569023635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014329536220741997,0.0,0.0,0.0013933827056037149,0.000567189983455,0.0015366780678111348,0.0002898493495975454,0.00043750231085251933,0.0006660310451536501,0.0,0.0,0.00014329536220741997,0.0,0.0,0.0,0.0,0.0,0.0005082872905733906,0.0004077115920893072,0.0006206791851484372,0.0,0.0 +103235,50.0,the Greater Atlanta and Macon Area,G1300130180108,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,135912.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012020934649172393,0.0,0.0,0.012020934649172395,0.0021261452346985513,0.003821408396977355,0.00607335032789019,0.0,0.0,0.0021261452346985513,0.003821408396977355,0.00607335032789019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014325113641445652,0.0004645801650077692,0.0014325113641445652,0.0002533685856729267,0.0004553897941774778,0.0007237493270735648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002533685856729267,0.00045538979417747774,0.0007237493270735647,0.0,0.0 +103236,50.0,the Greater Atlanta and Macon Area,G1302970110507,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,13374.0,,1076.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006884167428563902,0.00018297732985494492,0.0,0.0008713940727113352,0.0005705630304972993,0.0002350159406227999,3.120543609929293e-05,0.0,3.460966549194307e-05,0.0004221953661342974,0.0002350159406227999,3.120543609929293e-05,0.0,0.0,0.00014836766436300184,0.0,3.460966549194307e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2225659258547092e-05,0.0,0.0,8.203783799769295e-05,3.1164965846929055e-05,9.426349725624004e-05,5.031254020143366e-05,2.800658157105674e-05,3.718716225202555e-06,0.0,0.0,9.913208980186246e-06,0.0,2.312450278360845e-06,0.0,0.0,0.0,6.172094617587655e-05,2.542296897331397e-05,3.375663930066585e-06,0.0,3.743918176982939e-06 +103237,50.0,the Greater Atlanta and Macon Area,G1301510070310,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,206988.0,,30473.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.05541639036074201,0.026952797554279543,0.0,0.08236909569776878,0.06005593256501319,0.012712886032804275,0.0036253368582718055,0.0006528981496340747,0.005322042092045441,0.03679514494276045,0.012712886032804275,0.0036253368582718055,0.0006528981496340747,0.0016300321600186305,0.023260787622252737,0.0,0.00369200993202681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018008255526918936,0.0,0.0,0.006603862420946039,0.003590923431117058,0.008404687973637932,0.004384805170076488,0.001514969664882406,0.00043202427451088834,7.780459042904608e-05,0.00019424773169827945,0.001554147417964077,0.0,0.0002466781347278168,0.0,0.0,0.0,0.0061279217636044745,0.0012971836032070706,0.0003699181693690579,6.661970948879326e-05,0.0005430447279685362 +103238,85.0,Rural Climate Zone 3A,G1303030950400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,32809.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.002757338367423404,0.0,0.0,0.002757338367423404,0.0009727991404245828,0.000763987059175013,0.0010205214782175107,0.0,0.0,0.0009727991404245828,0.000763987059175013,0.0010205214782175107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003285871727099555,0.00010629806430216245,0.0003285871727099555,0.0001159267658054913,9.104299665473848e-05,0.0001216137530232192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001159267658054913,9.104299665473848e-05,0.0001216137530232192,0.0,0.0 +103239,85.0,Rural Climate Zone 3A,G1302930010201,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,16736.0,,4638.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.003752182916728894,0.0035967684916711827,0.0,0.007348870547617007,0.002325070956352447,0.0004422276226017783,0.003651753824157781,0.0004148158171415473,0.0005151640489295902,0.002325070956352447,0.0004422276226017783,0.0005701493814161893,0.0004148158171415473,0.0,0.0,0.003081604442741592,0.0005151640489295902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024031317494592602,0.0,0.0,0.000447136249182122,0.0003614727156442397,0.0006874494241280479,0.0002770716485783836,5.269892349152048e-05,6.794297120839476e-05,4.943234183790456e-05,0.0,0.0,0.00020589319253589713,3.441998241002887e-05,0.0,0.0,0.0,0.00021749855023907546,4.136814256303483e-05,0.00034160297792817983,3.880390772506284e-05,4.819097390182755e-05 +103240,35.0,Eastern Counties in South Carolina and Georgia,G1302450010510,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,25561.0,,4391.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006030597201250799,0.003405451878931046,0.0,0.009436049080181846,0.0020592815624061963,0.0006548106212889376,0.006066903692848569,0.000322230220528083,0.0003329038438931287,0.0020592815624061963,0.0006548106212889376,0.0026614518139175224,0.000322230220528083,0.0003329038438931287,0.0,0.003405451878931046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022753176955671935,0.0,0.0,0.0007186512386862078,0.00042768570771023245,0.0009461830082429272,0.00024539945153689537,7.803214978386847e-05,0.0003171585796475978,3.839937230040946e-05,3.9671321395429307e-05,0.0,0.00022753176955671937,0.0,0.0,0.0,0.0,0.0002064907894161929,6.565996829985196e-05,0.0006083479577142002,3.2311061209546806e-05,3.3381339774078845e-05 +103241,50.0,the Greater Atlanta and Macon Area,G1300670030332,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,16148.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003999962207254125,0.0,0.0,0.003999962207254125,0.001842796309985509,0.000531310241701311,0.0015504268043170571,0.0,7.534614417650906e-05,0.001842796309985509,0.000531310241701311,0.0015504268043170571,0.0,7.534614417650906e-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.00047666353873725256,0.0001525812932784096,0.00047666353873725256,0.00021960052739914245,6.331465320282264e-05,0.00018475972741907116,0.0,8.97877476148372e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00021960052739914245,6.331465320282264e-05,0.00018475972741907116,0.0,8.97877476148372e-06 +103242,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,NaturalGas,11225.0,,2268.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0025157010619285144,0.001798961560903676,0.0,0.004314662622832189,0.003026417242268737,0.0008283940505729033,0.00037176829645818685,0.0,8.816574060610171e-05,0.0013155387148974236,0.0008283940505729033,0.00037176829645818685,0.0,0.0,0.0017108785273713134,0.0,8.816574060610171e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012019759377175677,0.0,0.0,0.00029979017834482396,0.00021942678212880445,0.0004199877721165807,0.00015676965436278292,9.871777053298343e-05,4.430275344905755e-05,0.0,0.0,0.00011431232700853112,0.0,5.890792835303788e-06,0.0,0.0,0.0,0.000294590410927962,8.063559127280466e-05,3.618779780064466e-05,0.0,8.582022793211837e-06 +103243,50.0,the Greater Atlanta and Macon Area,G1300570091007,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,118714.0,,8565.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007457372282912789,0.0014565137299344974,0.0,0.008913886012847287,0.004665390000458494,0.0016092607935682525,0.001111161750194709,0.0,0.0015280734686258309,0.003433608601523166,0.0016092607935682525,0.0008864294191955399,0.0,0.0015280734686258309,0.0012317813989353283,0.00022473233099916924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.731592738346765e-05,0.0,0.0,0.0008886813587309565,0.0003383850806934105,0.0009859972861144242,0.0004091768308715923,0.00019177265319817165,0.00010563416586761779,0.0,0.0001820977087935748,8.230059676573562e-05,1.501533061773205e-05,0.0,0.0,0.0,0.0,0.0005160557216557999,0.00017800617742045894,0.00012290963431067903,0.0,0.00016902575272748627 +103244,50.0,the Greater Atlanta and Macon Area,G1300670030342,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,10040.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0024374601701711287,0.0,0.0,0.0024374601701711287,0.0012447414597765766,0.000708386086577168,0.00040443759058521333,0.0,7.981232615843167e-05,0.0012447414597765766,0.000708386086577168,0.00040443759058521333,0.0,7.981232615843167e-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.00029046370763416006,9.503630672629702e-05,0.00029046370763416006,0.00014833153947589524,8.441592263196299e-05,4.819543043436066e-05,0.0,9.510959175696941e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014833153947589524,8.441592263196299e-05,4.819543043436066e-05,0.0,9.510959175696941e-06 +103245,50.0,the Greater Atlanta and Macon Area,G1300630980000,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,110131.0,,19662.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.018117294086663602,0.005909943593377952,0.0,0.024027206342019346,0.006813324759451469,0.005394339114056221,0.00813441042348155,0.0,0.003685132045030111,0.006813324759451469,0.005394339114056221,0.00590959887513371,0.0,0.0,0.0,0.002224811548347841,0.003685132045030111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003948676352351145,0.0,0.0,0.0021590012076544147,0.0012267723556517553,0.002553868842889529,0.0008119300991325006,0.0006428324564382876,0.0007042349175950511,0.0,0.0,0.0,0.00014864880875077133,0.0002462188264843432,0.0,0.0,0.0,0.0007241931322336372,0.0005733681392362263,0.0008646122666152372,0.0,0.00039169530480442883 +103246,50.0,the Greater Atlanta and Macon Area,G1301210008500,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,167136.0,,3009.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.008000666017546048,0.0005117514216669841,0.0,0.00851239970885161,0.005025529101622608,0.001128874381253342,0.0012222247341299199,0.0,0.0011357714918457426,0.004732552609517655,0.001128874381253342,0.0010034498045678884,0.0,0.0011357714918457426,0.0002929764921049525,0.0002187749295620315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.41918219612436e-05,0.0,0.0,0.0009534231830258591,0.00028182512801600213,0.0009876150049871028,0.0005639687199675922,0.0001345256761687733,0.00011957908311378728,0.0,0.00013534759088440653,1.9574738110646475e-05,1.4617083850597123e-05,0.0,0.0,0.0,0.0,0.0005830656593346729,0.00013097285322633657,0.00014180343125075442,0.0,0.00013177306117533914 +103247,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5391.0,,130.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014911258324459735,0.00010346654924787357,0.0,0.001594592381693847,0.001152853900852206,0.00025730170640298546,0.00014192533853665153,0.0,4.251143590200402e-05,0.0010493873516043326,0.00025730170640298546,0.00014192533853665153,0.0,4.251143590200402e-05,0.00010346654924787357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.911532440214728e-06,0.0,0.0,0.00017769751629231748,5.795906353141606e-05,0.0001846090487325322,0.0001250555264694062,3.0662653124710184e-05,1.691324743233772e-05,0.0,5.066089265863397e-06,6.911532440214728e-06,0.0,0.0,0.0,0.0,0.0,0.00013346812916404388,2.9788316940192315e-05,1.6430971349845708e-05,0.0,4.921631278450288e-06 +103248,50.0,the Greater Atlanta and Macon Area,G1300630040622,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,6420.0,,869.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005720235717828822,0.0002559206269165435,0.0,0.0008279441986994255,0.0003818093919497203,0.0002232055066031924,0.000222929300146513,0.0,0.0,0.00012588876503317683,0.0002232055066031924,0.000222929300146513,0.0,0.0,0.0002559206269165435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7100101516040117e-05,0.0,0.0,6.816551170843625e-05,3.8766879215981535e-05,8.526561322447636e-05,1.5001605720693468e-05,2.659841014300429e-05,2.65654958447385e-05,0.0,0.0,1.7100101516040117e-05,0.0,0.0,0.0,0.0,0.0,3.932053873992551e-05,2.298675976653632e-05,2.2958314718014544e-05,0.0,0.0 +103249,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,19880.0,,2510.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004445078966843108,0.0019470467955070795,0.0,0.006392125762350187,0.002664039358975715,0.0004133603230463138,0.0024694883149128373,0.0004296133404430879,0.0004156244249722326,0.0020084201298560924,0.0004133603230463138,0.0011780607485253807,0.0004296133404430879,0.0004156244249722326,0.0006556192291196229,0.0012914275663874564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013008832799317623,0.0,0.0,0.0005297160620140603,0.0002695888037574905,0.0006598043900072365,0.00023934162024858525,4.9259777869021966e-05,0.00014038843970535622,5.119663533218187e-05,4.952958885891489e-05,4.380398535523372e-05,8.62843426379425e-05,0.0,0.0,0.0,0.0,0.00027498596391163193,4.2667645465800475e-05,0.0002549041260808972,4.4345305234702256e-05,4.29013493142047e-05 +103250,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,9444.0,,424.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0022695648104803356,0.0003363696688977633,0.0,0.002605851772304359,0.0011620343860372691,0.0007365064916485326,0.0006378369526775389,0.0,6.947394194101824e-05,0.000825664717139506,0.0007365064916485326,0.0006378369526775389,0.0,6.947394194101824e-05,0.0003363696688977633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.247263046767843e-05,0.0,0.0,0.00027045628276666764,9.259456860315138e-05,0.000292928913234346,9.839164282860109e-05,8.776696177388487e-05,7.600884999440766e-05,0.0,8.27897225042822e-06,2.2472630467678435e-05,0.0,0.0,0.0,0.0,0.0,0.00013062656650720668,8.279214055136482e-05,7.170050397890236e-05,0.0,7.809702196872144e-06 +103251,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,137073.0,,5147.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011712258589030099,0.0015151458629175862,0.0,0.01322737376234139,0.004707570778823523,0.003415200768020961,0.005104632905103202,0.0,0.0,0.0031924249159059363,0.003415200768020961,0.005104632905103202,0.0,0.0,0.0015151458629175862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010123230468193025,0.0,0.0,0.0013957256789119898,0.0004918879997386729,0.00149695798359392,0.00038043468723459505,0.00040698242566394166,0.0006083085660134531,0.0,0.0,0.00010123230468193025,0.0,0.0,0.0,0.0,0.0,0.0005327615131551192,0.00038650242649226473,0.0005776975171266234,0.0,0.0 +103252,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,81939.0,,16191.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003933108343448893,0.0027534010160042595,0.0,0.006686509359453153,0.0026738626146739033,0.0006822465770822118,0.00257565414276823,0.0,0.0007547460249288076,0.0025088284105760517,0.0006822465770822118,0.0006231690128305959,0.0,0.00011886434296003401,0.00016503420409785146,0.0019524851299376346,0.0006358816819687736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018396563845292805,0.0,0.0,0.0004687018898440051,0.0003058159120941111,0.0006526675282969332,0.00029897285166067953,8.130217428427968e-05,7.426200056055452e-05,0.0,1.416486333849141e-05,1.1026589496756804e-05,0.0001304532726657022,4.248577629046906e-05,0.0,0.0,0.0,0.0002609946700003596,6.659381797226812e-05,0.00025140857998376886,0.0,7.367046034053662e-05 +103253,50.0,the Greater Atlanta and Macon Area,G1301350050545,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,72207.0,,9071.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.006367308770934228,0.0026426550190815972,0.0,0.009009963790015826,0.005925494393512689,0.0027018835379852136,0.00038252511131904647,0.0,0.0,0.003282839374431092,0.0027018835379852136,0.00038252511131904647,0.0,0.0,0.0026426550190815972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017656681628795722,0.0,0.0,0.0007587784035536085,0.00039450292474795375,0.0009353452198415656,0.0003912088622157823,0.0003219776127237183,4.5584689501911176e-05,0.0,0.0,0.00017656681628795722,0.0,0.0,0.0,0.0,0.0,0.0006151393041459,0.0002804887911562459,3.97108182319348e-05,0.0,0.0 +103254,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,203030.0,,12339.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.00972740818588357,0.002098352813340409,0.0,0.011825743268862557,0.005990876359498802,0.0032507199234753214,0.0013557520859843375,0.0,0.0012284126302655183,0.0053946574960266865,0.0032507199234753214,0.0008341603137292242,0.0,0.0002478704526523382,0.0005962188634721156,0.0005215917722551132,0.0009805421776131803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014019916065755568,0.0,0.0,0.0011591956947427753,0.00042301742414617503,0.001299394855400331,0.0006428704979278048,0.0003873817637853014,9.940520906724629e-05,0.0,2.953822396242276e-05,3.983571480237626e-05,3.484958688126519e-05,6.551385897391425e-05,0.0,0.0,0.0,0.0006582684693797645,0.0003571842081193318,0.00014896799682475754,0.0,0.0001349761292618803 +103255,50.0,the Greater Atlanta and Macon Area,G1301210001500,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,98528.0,,37098.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.020624440344988254,0.025519471806745738,0.0,0.046143912151733996,0.026038867836840795,0.0016081051901120312,0.007323111080490997,0.0003721549296000057,0.010801673114690165,0.015224930607106963,0.0016081051901120312,0.002220665462556365,0.0003721549296000057,0.001198584155612892,0.010813937229733832,0.005102445617934631,0.009603088959077272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017050604588081505,0.0,0.0,0.0024577745206917348,0.002411306937972661,0.0041628349794998855,0.0018143254265098243,0.00019163477392538863,0.0002646323925185892,4.434898055030067e-05,0.00014283294718763246,0.0007225234485291562,0.0003409152952789381,0.000641621715000056,0.0,0.0,0.0,0.002349074987429346,0.00014507388350820877,0.0006606484266957752,3.3573650054593486e-05,0.000974464031811962 +103256,50.0,the Greater Atlanta and Macon Area,G1301530021000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,19764.0,,149.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,24034.3828889517,0.0,0.0,0.0017428371357381999,4.340387359654735e-05,0.0,0.0017862410093347468,0.0011899161315733653,0.0004213121978010555,0.00017504305355976375,0.0,0.0,0.0011465122579768182,0.0004213121978010555,0.00017504305355976375,0.0,0.0,4.340387359654735e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9007773253219475e-06,0.0,0.0,0.00020768919609677613,6.0998181627606084e-05,0.00021058997342209804,0.00013662677039151286,5.0206637139393186e-05,2.085940810571141e-05,0.0,0.0,2.9007773253219475e-06,0.0,0.0,0.0,0.0,0.0,0.00014028588819371378,4.9670858564810186e-05,2.0636807577608038e-05,0.0,0.0 +103257,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,31985.0,,3207.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0031105450463036655,0.0009440429793236351,0.0,0.004054588025627301,0.0020321122810023893,0.0009077678646797506,0.0011147078799451605,0.0,0.0,0.0010880693016787546,0.0009077678646797506,0.0011147078799451605,0.0,0.0,0.0009440429793236351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.307602508094378e-05,0.0,0.0,0.0003706772723403904,0.00017880596609670584,0.0004337532974213341,0.00012966298666623453,0.00010817683428105578,0.0001328374513931001,0.0,0.0,6.307602508094378e-05,0.0,0.0,0.0,0.0,0.0,0.00021739209928209777,9.711154428249146e-05,0.00011924965385674479,0.0,0.0 +103258,50.0,the Greater Atlanta and Macon Area,G1301990970800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,25784.0,,759.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.001327259395182313,0.00012902384005372426,0.0,0.001456283235236037,0.0008264476065115013,0.00037130922885874576,0.00011393530248525933,0.0,0.00014459109738053063,0.0008003485145011835,0.00037130922885874576,0.00011393530248525933,0.0,4.166634933712409e-05,2.6099092010317726e-05,0.0,0.00010292474804340652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.620598644315963e-06,0.0,0.0,0.000158166637747101,5.7010319775814435e-05,0.00016678723639141694,9.537580522995722e-05,4.424811947553753e-05,1.3577424111823334e-05,0.0,4.965288929782887e-06,1.7437846921029404e-06,0.0,6.876813952213023e-06,0.0,0.0,0.0,9.465254352805412e-05,4.252582095950633e-05,1.304894114629872e-05,0.0,1.6559930757557743e-05 +103259,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,NaturalGas,9591.0,,4227.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0017571392898824707,0.0029075276249728717,0.0,0.004664666914855343,0.0009182307889128684,0.00025417557727932556,0.002524829859633571,0.0003704336502956311,0.0005970687587049619,0.0006472727384158897,0.00025417557727932556,0.0003935992009336735,0.0003704336502956311,9.172984292896655e-05,0.0002709580504969785,0.002131230658699898,0.0005053389157759953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001942620607917647,0.0,0.0,0.0002093954708013937,0.00024767369449897337,0.0004036575315931584,7.713445404010522e-05,3.028969585796487e-05,4.69045854595122e-05,4.4143983946497895e-05,1.093129825122378e-05,1.8103652335256216e-05,0.00014239495309541393,3.376345536109457e-05,0.0,0.0,0.0,7.945921551333344e-05,2.199511519013151e-05,0.0002184864659010693,3.205552199690442e-05,5.166741928833092e-05 +103260,50.0,the Greater Atlanta and Macon Area,G1300210013410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,48180.0,,1252.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004248537594954974,0.0003646046876507728,0.0,0.004613142282605748,0.0029651011507127703,0.0013224361459202767,0.00032557461237326177,0.0,0.0,0.002600496463061998,0.0013224361459202767,0.00032557461237326177,0.0,0.0,0.0003646046876507728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4360587285754506e-05,0.0,0.0,0.000506291341782903,0.00016411714396714322,0.0005306519290686575,0.0003098969502232464,0.00015759257292091434,3.8798199066108104e-05,0.0,0.0,2.4360587285754506e-05,0.0,0.0,0.0,0.0,0.0,0.00034107698161450756,0.00015212045259231156,3.7451000972392276e-05,0.0,0.0 +103261,50.0,the Greater Atlanta and Macon Area,G1300670030209,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,99333.0,,24946.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.022267688320897934,0.017160007145079162,0.0,0.039427623746006085,0.018642602385913875,0.0029481211285677083,0.0059662409488466525,0.0003711508500057872,0.01149950843267206,0.013067665598928396,0.0029481211285677083,0.00458627698653528,0.0003711508500057872,0.0012944020368897483,0.005574936786985478,0.001379963962311372,0.010205106395782312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00114652955066728,0.0,0.0,0.002653593370125077,0.0019050453145940734,0.003800122920792357,0.0015572461001164951,0.0003513213661137442,0.0005465369386190727,4.422926262926644e-05,0.00015425115592908228,0.00037248409720003434,9.22009791877973e-05,0.0006818444742794484,0.0,0.0,0.0,0.001796815884373603,0.0002841465350819484,0.0005750397012698176,3.57723524314962e-05,0.0011083484476354915 +103262,50.0,the Greater Atlanta and Macon Area,G1300670031508,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,31802.0,,1429.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002804364062488188,0.00041627018029438874,0.0,0.0032206342427825766,0.0016834871224368324,0.0012864130569871031,0.00025073406335864127,0.0,0.0,0.0012672169421424435,0.0012864130569871031,0.00025073406335864127,0.0,0.0,0.00041627018029438874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7811735591433626e-05,0.0,0.0,0.0003341920642840979,0.00012694272698793015,0.0003620037998755315,0.00015101243503121278,0.00015330000864976768,2.9879620603117412e-05,0.0,0.0,2.7811735591433626e-05,0.0,0.0,0.0,0.0,0.0,0.00018922631054096997,0.00014459462942196266,2.8182859912598907e-05,0.0,0.0 +103263,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12559.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030157480297563666,0.0,0.0,0.003015748029756367,0.002100263430535973,0.00040749775231356766,0.00043272340980405645,0.0,7.526343710276975e-05,0.002100263430535973,0.00040749775231356766,0.00043272340980405645,0.0,7.526343710276975e-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.00035938078526969505,0.00012799885281399175,0.00035938078526969505,0.00025028427888924766,4.85607089110547e-05,5.156680110059634e-05,0.0,8.968996368796382e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002502842788892476,4.856070891105469e-05,5.1566801100596335e-05,0.0,8.96899636879638e-06 +103264,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300750960300,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,25630.0,,,2477.0,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006154067942794387,0.0,0.0006357692758340562,0.0067898372186284426,0.004134030373785543,0.0013105762904730655,0.0011873427506014973,0.0,0.00015788780376833789,0.0034982610979514867,0.0013105762904730655,0.0011873427506014973,0.0,0.00015788780376833789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006357692758340562,0.0,0.0,0.0,0.0,5.127349013016603e-05,0.0007333712681963546,0.00022755930081014655,0.0007846447583265206,0.0004168826541622032,0.00015617945806686693,0.00014149389751406924,0.0,1.881525845321526e-05,0.0,0.0,0.0,5.127349013016602e-05,0.0,0.0,0.00047773535051090586,0.00015145235203656797,0.00013721128144875486,0.0,1.8245774330292078e-05 +103265,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,56249.0,,2025.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004701402167957685,0.0005959921543013879,0.0,0.005297363632652775,0.0015150537940986934,0.001256923515528715,0.0025254170126316642,0.0,0.0,0.0009190616397973052,0.001256923515528715,0.0025254170126316642,0.0,0.0,0.0005959921543013879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9820045600853234e-05,0.0,0.0,0.0005602560481006889,0.0002058597297386597,0.0006000760937015421,0.00010952261131437235,0.0001497848889368362,0.0003009485478494803,0.0,0.0,3.9820045600853234e-05,0.0,0.0,0.0,0.0,0.0,0.00017162264582074163,0.00014238209901825698,0.00028607482532750636,0.0,0.0 +103266,50.0,the Greater Atlanta and Macon Area,G1301390001301,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,51007.0,,6307.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004544639658989018,0.0018565984225858273,0.0,0.006401268771181146,0.002787475560807748,0.0013305478810369043,0.002283214639730194,0.0,0.0,0.0009308771382219209,0.0013305478810369043,0.002283214639730194,0.0,0.0,0.0018565984225858273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012404789311420747,0.0,0.0,0.0005415775390602901,0.00027641778887562893,0.0006656254321744976,0.00011093116011707358,0.00015855929206368605,0.00027208708687953065,0.0,0.0,0.00012404789311420747,0.0,0.0,0.0,0.0,0.0,0.0002898510734608869,0.00013835483870498912,0.00023741632880025547,0.0,0.0 +103267,50.0,the Greater Atlanta and Macon Area,G1301510070502,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6094.0,,1462.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.001463253548595827,0.0011594704667513504,0.0,0.0026227240153471774,0.0019569320717457523,0.0002964221522816778,0.0003209034461085128,0.0,4.8383638137494846e-05,0.0007974616049944021,0.0002964221522816778,0.0003209034461085128,0.0,4.8383638137494846e-05,0.0011594704667513504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.746764589397692e-05,0.0,0.0,0.00017437110659992774,0.00013492151405437516,0.0002518387524939047,9.503087326681567e-05,3.53236517100464e-05,3.824100687359934e-05,0.0,5.7657188198596956e-06,7.746764589397692e-05,0.0,0.0,0.0,0.0,0.0,0.00018790819345836706,2.8462996718430656e-05,3.08137352866939e-05,0.0,4.6458853460608075e-06 +103268,85.0,Rural Climate Zone 3A,G1300930970300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,23942.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0018652731150717772,0.0,0.0,0.0018652731150717772,0.0013251697698696743,0.00041377954514049305,0.00012632380006160983,0.0,0.0,0.0013251697698696743,0.00041377954514049305,0.00012632380006160983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022227946435854343,5.2618384174900554e-05,0.00022227946435854343,0.00015791683493997642,4.930896977669207e-05,1.5053659641874943e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015791683493997642,4.930896977669207e-05,1.5053659641874943e-05,0.0,0.0 +103269,50.0,the Greater Atlanta and Macon Area,G1300670030322,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,7288.0,,604.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017221266893998593,0.0004789566640243292,0.0,0.0022010833534241883,0.0016986378804578958,0.00025051972635636215,0.0002139631997635883,0.0,3.796254684634211e-05,0.0012196812164335666,0.00025051972635636215,0.0002139631997635883,0.0,3.796254684634211e-05,0.0004789566640243292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2003356887062375e-05,0.0,0.0,0.0002052211363808327,9.497207476335731e-05,0.00023722449326789508,0.00014534608098204494,2.985375190171656e-05,2.5497410422496122e-05,0.0,4.5238930745750745e-06,3.2003356887062375e-05,0.0,0.0,0.0,0.0,0.0,0.00018307280812896064,2.7000074779560896e-05,2.306014970443184e-05,0.0,4.091460654941715e-06 +103270,50.0,the Greater Atlanta and Macon Area,G1300210011000,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,63420.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005592478249277179,0.0,0.0,0.0055924782492771784,0.0035422906608283686,0.001262053430238026,0.000788164531810222,0.0,0.0,0.0035422906608283686,0.001262053430238026,0.000788164531810222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006664438023561575,0.00016854598359603224,0.0006664438023561575,0.00042212728451081346,0.00015039623747006454,9.392389993287058e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004221272845108135,0.00015039623747006457,9.392389993287059e-05,0.0,0.0 +103271,50.0,the Greater Atlanta and Macon Area,G1301350050219,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,31830.0,,2972.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027705962773440116,0.0008748992963349109,0.0,0.003645495573678923,0.0013717333326884213,0.000822665586416221,0.0014510659649679832,0.0,0.0,0.0004968340363535104,0.000822665586416221,0.0014510659649679832,0.0,0.0,0.0008748992963349109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.845610047991974e-05,0.0,0.0,0.0003301664553827674,0.00016303698183806395,0.00038862255586268713,5.920672529510648e-05,9.803542394592777e-05,0.00017292064892230678,0.0,0.0,5.845610047991974e-05,0.0,0.0,0.0,0.0,0.0,0.000146231562468595,8.769902372716645e-05,0.00015468869804774615,0.0,0.0 +103272,50.0,the Greater Atlanta and Macon Area,G1301210000500,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,323230.0,,29627.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.015112349443852067,0.005038383613652144,0.0,0.02015073305750421,0.009974728997331886,0.0042628221444161955,0.003240010785177609,0.0,0.002673188860939941,0.00829045104459539,0.0042628221444161955,0.002112891709704852,0.0,0.00044620227549704877,0.001684277952736496,0.0011271190754727567,0.0022269865854428923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003366349790035529,0.0,0.0,0.001800910402527002,0.0007462811943696409,0.0021375453815305552,0.0009879575365382108,0.0005079925376609586,0.0002517893510574238,0.0,5.3173090164399215e-05,0.00011253348627906655,7.53074270244464e-05,0.00014879406570003997,0.0,0.0,0.0,0.0010580972830824878,0.00045219078437891777,0.0003436932080933125,0.0,0.00028356598677352617 +103273,50.0,the Greater Atlanta and Macon Area,G1300890021410,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,129979.0,,21443.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.030565961735185297,0.01896595350884768,0.0,0.04953182302678021,0.038940855980286675,0.004224841218550212,0.0028837257114699365,0.0006457974211705402,0.0028366949125556173,0.02241856745267533,0.004224841218550212,0.0023674935304457065,0.0006457974211705402,0.0009092621123434995,0.016522288527611333,0.0005162321810242303,0.001927432800212118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012671919001630621,0.0,0.0,0.0036424834571177544,0.002050905235921794,0.0049096753572808165,0.0026715750607201817,0.0005034657303062632,0.0002821293860861897,7.695836445922122e-05,0.00010835491554589765,0.0011039207801800753,3.4491555517746365e-05,0.00012877956446524056,0.0,0.0,0.0,0.003859881371506685,0.00041877317553859055,0.000285839611740238,6.401249723439885e-05,0.0002811778419859122 +103274,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,325098.0,,17072.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.016734517940534117,0.0029031871092808654,0.0,0.019637705049814984,0.010443413371109562,0.003289336650648196,0.0037948115243724816,0.0,0.002110143503684744,0.009030409948099874,0.003289336650648196,0.0023046278381013037,0.0,0.002110143503684744,0.001413003423009688,0.0014901836862711779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019397379660675854,0.0,0.0,0.0019942196541283485,0.0008010349092676955,0.0021881934507351074,0.0010761362273673087,0.00039198379188913645,0.00027463797562167817,0.0,0.0002514616592502253,9.44085338844823e-05,9.956526272227627e-05,0.0,0.0,0.0,0.0,0.0011636903947794396,0.00036652474909633847,0.0004228488870436623,0.0,0.00023512941981566692 +103275,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,42058.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.00946747873093852,0.0,0.0,0.009467478730938521,0.004470565456830784,0.0013348094630786826,0.0035296897859724233,0.0,0.0001324140250566312,0.004470565456830784,0.0013348094630786826,0.0035296897859724233,0.0,0.0001324140250566312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011282245961338263,0.0003167371930224042,0.0011282245961338263,0.0005327502760096246,0.00015906715084304906,0.00042062759752951265,0.0,1.577957175164022e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005327502760096245,0.00015906715084304903,0.0004206275975295126,0.0,1.577957175164022e-05 +103276,50.0,the Greater Atlanta and Macon Area,G1301170130503,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6422.0,,609.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012273729742913223,0.0004829266035638159,0.0,0.001710299577855138,0.0010297857751281167,0.0003379411032988102,0.0002860010609905251,0.0,5.6571638437686274e-05,0.0005468591715643008,0.0003379411032988102,0.0002860010609905251,0.0,5.6571638437686274e-05,0.0004829266035638159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.226624575030472e-05,0.0,0.0,0.00014625989752726346,7.5594420062893e-05,0.00017852614327756817,6.516647186322547e-05,4.0270750761212833e-05,3.408131574456044e-05,0.0,6.741359158264703e-06,3.226624575030472e-05,0.0,0.0,0.0,0.0,0.0,0.00010749209390923166,3.52752948127155e-05,2.9853639124417568e-05,0.0,5.905115431203474e-06 +103277,50.0,the Greater Atlanta and Macon Area,G1300670031116,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5568.0,,323.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012844408551714443,0.00025622651444437433,0.0,0.0015406673696158188,0.0006662054789701213,0.0003860766202150871,0.0004386783191132866,0.0,4.9624244243584455e-05,0.0004099789645257469,0.0003860766202150871,0.0004386783191132866,0.0,4.9624244243584455e-05,0.00025622651444437433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7121828419600575e-05,0.0,0.0,0.00015306000951505625,6.837173743790357e-05,0.00017018183793465684,4.885502042280321e-05,4.600670472738459e-05,5.227497041003596e-05,0.0,5.913458191180538e-06,1.7121828419600575e-05,0.0,0.0,0.0,0.0,0.0,7.358893625529637e-05,4.264595337550881e-05,4.845632748579665e-05,0.0,5.481485009705503e-06 +103278,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5278.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010730415746937748,0.0,0.0,0.0010730415746937746,0.0003764825996613274,0.00025920396909898954,0.0003894676102383987,0.0,4.788739569505899e-05,0.0003764825996613274,0.00025920396909898954,0.0003894676102383987,0.0,4.788739569505899e-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.0001278716827258024,3.8688778161828776e-05,0.0001278716827258024,4.486449050160724e-05,3.0888689198602187e-05,4.64118817601205e-05,0.0,5.70662126547245e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.486449050160725e-05,3.088868919860219e-05,4.641188176012051e-05,0.0,5.7066212654724505e-06 +103279,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,44764.0,,88.0,,5.759960461090961,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,100799.30806909183,0.0,0.0,0.006810642542735252,4.6295619884726316e-05,0.0,0.006856992756511351,0.005178667347907277,0.0006284302836003357,0.0010035449112276407,0.0,4.6295619884726316e-05,0.005178667347907277,0.0006284302836003357,0.0010035449112276407,0.0,0.0,0.0,0.0,4.6295619884726316e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0948188311733205e-06,0.0,0.0,0.0008116129076952272,0.00030072270249109623,0.0008147077265264005,0.0006171331468136839,7.488898830854872e-05,0.00011959077257299475,0.0,0.0,0.0,0.0,3.0948188311733205e-06,0.0,0.0,0.0,0.000615298929321985,7.466640636978818e-05,0.00011923532984879218,0.0,5.5005744593502194e-06 +103280,50.0,the Greater Atlanta and Macon Area,G1301510070305,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,35274.0,,21451.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007344627071795679,0.014756025436606892,0.0,0.022100652508402575,0.005301540257473969,0.0006473444583869054,0.011905228308707369,0.0003753106083246927,0.003871157155538622,0.0037702471563196577,0.0006473444583869054,0.0021180341840330253,0.0003753106083246927,0.00043369066473140005,0.0015312931011543115,0.009787194124674345,0.003437466490807222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009859099887830338,0.0,0.0,0.0008752490983825872,0.0011797559877039666,0.0018611590871656207,0.000449295163932878,7.71431480465323e-05,0.000252403218270573,4.472524858492175e-05,5.168231954768235e-05,0.00010231191120322029,0.0006539221886767015,0.00022967109700056885,0.0,0.0,0.0,0.00044645785107116844,5.451472624145517e-05,0.0010025732879654985,3.1605978553238975e-05,0.00032600120359060317 +103281,50.0,the Greater Atlanta and Macon Area,G1300210012800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,25774.0,,2636.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005927742285187633,0.002044322317538518,0.0,0.007972064602726148,0.003177424470677798,0.0007630832098176964,0.0029803667423397955,0.0004199100464748646,0.000631280133415996,0.0024769275069551422,0.0007630832098176964,0.002267902382722998,0.0004199100464748646,0.0,0.0007004969637226558,0.0007124643596167978,0.000631280133415996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013658827124367565,0.0,0.0,0.0007064011708460506,0.00033243497773734204,0.0008429894420897262,0.0002951721594553967,9.093561206517951e-05,0.0002702629131707205,5.004012222681754e-05,0.0,4.6802634039394125e-05,4.7602217305910384e-05,4.217801730873253e-05,0.0,0.0,0.0,0.00033599016256127194,8.06906518409651e-05,0.00031515270165882075,4.440251722052896e-05,6.675340880813971e-05 +103282,50.0,the Greater Atlanta and Macon Area,G1300890022005,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,37043.0,,566.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008516099261715268,0.00044876858210948203,0.0,0.00896486784382475,0.004343444684493469,0.0017832472168932073,0.0026706941181159757,0.0,0.0001674818243220975,0.0038946761023839864,0.0017832472168932073,0.0026706941181159757,0.0,0.0001674818243220975,0.00044876858210948203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9981642500832556e-05,0.0,0.0,0.0010148489115022338,0.0002827937095127064,0.0010448305540030664,0.00046412185693125155,0.00021250650578243183,0.00031826202765272975,0.0,1.995852113582044e-05,2.9981642500832556e-05,0.0,0.0,0.0,0.0,0.0,0.0005062164657683157,0.00020783253138911289,0.00031126201340781243,0.0,1.9519543437825407e-05 +103283,46.0,the Tallahassee-Valdosta Area,G1301850010800,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,241225.0,,1668.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.011575816094285494,0.00028368578272084484,0.0,0.01185950187700634,0.006601137669215599,0.0028830631490691064,0.0013894043119595978,0.0,0.000985896746762036,0.0063174518864947534,0.0028830631490691064,0.0013894043119595978,0.0,0.000985896746762036,0.00028368578272084484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8954448665950816e-05,0.0,0.0,0.001379466811928367,0.00042019224592318487,0.0013984212605943178,0.0007528380843641653,0.0003435688592874108,0.00016557252819907858,0.0,0.00011748734007771226,1.8954448665950816e-05,0.0,0.0,0.0,0.0,0.0,0.0007783776550209807,0.00033995835955902417,0.00016383255802445055,0.0,0.00011625268798986222 +103284,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,32409.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003011117153860965,0.0,0.0,0.003011117153860965,0.002113638037674274,0.0006745672699130302,0.00022288147267422286,0.0,0.0,0.002113638037674274,0.0006745672699130302,0.00022288147267422286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035882874841096797,0.0001007944208766956,0.00035882874841096797,0.00025187797514951616,8.038681884945113e-05,2.6560334851513904e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025187797514951616,8.038681884945113e-05,2.6560334851513904e-05,0.0,0.0 +103285,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,29353.0,,93.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.002607511709478019,2.7283059998657768e-05,0.0,0.002634794769476677,0.0009830801585343134,0.0005773942528849802,0.0010743510476636812,0.0,0.0,0.0009557970985356555,0.0005773942528849802,0.0010743510476636812,0.0,0.0,2.7283059998657768e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.822756838138431e-06,0.0,0.0,0.00031073163032532857,0.00010516980498270179,0.000312554387163467,0.00011390030948227525,6.880684634599045e-05,0.0001280281317122402,0.0,0.0,1.822756838138431e-06,0.0,0.0,0.0,0.0,0.0,0.00011661857691644252,6.849380033421627e-05,0.00012744565048899268,0.0,0.0 +103286,85.0,Rural Climate Zone 3A,G1300310110401,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,55436.0,,1989.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026454053845947185,0.00033822437444892725,0.0,0.0029836297590436454,0.0012341572673656154,0.0005293044794728363,0.0008273873156667641,0.0,0.00039278069653842976,0.0012341572673656154,0.0005293044794728363,0.0004891629412178368,0.0,0.00039278069653842976,0.0,0.00033822437444892725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2598172658655557e-05,0.0,0.0,0.0003152481179234087,0.00010377337426102276,0.00033784629058206426,0.0001470722627330378,6.307624605814613e-05,5.829265241343226e-05,0.0,4.680695671879246e-05,0.0,2.2598172658655557e-05,0.0,0.0,0.0,0.0,0.00013974771953877363,5.9934901251181756e-05,9.368780916110264e-05,0.0,4.447586063100625e-05 +103287,50.0,the Greater Atlanta and Macon Area,G1300210013407,ComStock 90.1-2007,gen1_t12_incandescent,200001_500000,NaturalGas,435751.0,,33149.0,,7.614023970037612,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,2664908.3895131643,0.0,0.0,0.091297201452826,0.022945216209795265,0.0,0.11424241766262128,0.07505630165490565,0.0264560696987221,0.008405004469595514,0.0008301372624951248,0.0034949767439256194,0.05825906627873832,0.0264560696987221,0.0038598532108625357,0.0008301372624951248,0.0018921471690306595,0.016797235376167327,0.004545151258732978,0.0016028295748949596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015330652080624214,0.0,0.0,0.010879714988816193,0.003697442008175218,0.012412780196878614,0.006942622846492581,0.0031527198365995826,0.0004599714138505125,9.89258890066831e-05,0.00022548360287457395,0.00112229307021497,0.00030368043588841924,0.00010709170195903197,0.0,0.0,0.0,0.008155091549132956,0.0028745310609001964,0.0009132288616560569,9.019689519370137e-05,0.00037973967115845984 +103288,81.0,the Columbus-Albany Area,G1302150002901,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,10995.0,,757.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0023175349132491334,0.0006002052341261538,0.0,0.0029177401473752876,0.0015845021186976515,0.0006319647504420481,0.0006138519012931397,0.0,8.742137694244795e-05,0.0010717182615139456,0.0006319647504420481,0.0006138519012931397,0.0,0.0,0.0005127838571837059,0.0,8.742137694244795e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.010257863845064e-05,0.0,0.0,0.00027617238195990797,0.0001008750100021789,0.00031627496059835863,0.0001277128484149919,7.530898863551111e-05,7.315054490940498e-05,0.0,0.0,3.426153886707923e-05,0.0,5.841039771371412e-06,0.0,0.0,0.0,0.00017175564644093637,6.85032307367781e-05,6.653984799481313e-05,0.0,9.476235425830972e-06 +103289,50.0,the Greater Atlanta and Macon Area,G1301530021105,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,26099.0,,1156.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001343429484797401,0.00019666516887122568,0.0,0.0015400946536686265,0.0007095867943919332,0.0003355470898744993,0.00028755100151041634,0.0,0.0002074452286146178,0.0006175662186218592,0.0003355470898744993,0.00018290640840926473,0.0,0.0002074452286146178,9.202057577007402e-05,0.00010464459310115162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.313955013902566e-05,0.0,0.0,0.0001600942525802043,5.302745084396838e-05,0.00017323380271922997,7.359433696213667e-05,3.9986587436721215e-05,2.1796651836048407e-05,0.0,2.4720902140535703e-05,6.1480585306115355e-06,6.99149160841412e-06,0.0,0.0,0.0,0.0,7.981614536421338e-05,3.774319859618046e-05,3.234447528839391e-05,0.0,2.3333972183636005e-05 +103290,50.0,the Greater Atlanta and Macon Area,G1301510070113,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,10611.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0008179002856597809,0.0,0.0,0.0008179002856597809,0.000559420954444513,0.0001942695420038606,6.420978921140735e-05,0.0,0.0,0.000559420954444513,0.0001942695420038606,6.420978921140735e-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,9.746617497984514e-05,3.013299362401277e-05,9.746617497984514e-05,6.666414181442321e-05,2.315038826392935e-05,7.651644901492597e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.666414181442321e-05,2.315038826392935e-05,7.651644901492597e-06,0.0,0.0 +103291,50.0,the Greater Atlanta and Macon Area,G1300590150500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7204.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001379388575824169,0.0,0.0,0.0013793885758241692,0.0006443708115029441,0.00029319657640584484,0.00039261047904049233,0.0,4.921070887488792e-05,0.0006443708115029441,0.00029319657640584484,0.00039261047904049233,0.0,4.921070887488792e-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.00016438197430832102,5.0804565336510587e-05,0.00016438197430832102,7.678978065931941e-05,3.494028654053233e-05,4.678745845074949e-05,0.0,5.864448657719811e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.67897806593194e-05,3.4940286540532324e-05,4.678745845074948e-05,0.0,5.86444865771981e-06 +103292,50.0,the Greater Atlanta and Macon Area,G1300890021410,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,22214.0,,1736.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.005093680550382726,0.0013774036060544257,0.0,0.0064710841564371525,0.0036720286598777713,0.0009538606814354324,0.0016983897592366779,0.0,0.00014680505588727068,0.0022946250538233453,0.0009538606814354324,0.0016983897592366779,0.0,0.00014680505588727068,0.0013774036060544257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.20309645730543e-05,0.0,0.0,0.0006070072558700958,0.00023648888835317797,0.0006990382204431501,0.0002734474695448705,0.00011367033110802305,0.0002023948885201815,0.0,1.7494566697020804e-05,9.20309645730543e-05,0.0,0.0,0.0,0.0,0.0,0.00039667052966136653,0.00010304070495482993,0.0001834683843100176,0.0,1.5858601516936026e-05 +103293,85.0,Rural Climate Zone 3A,G1301470960500,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Propane,34256.0,,,10341.0,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.0029051740390220863,0.0,0.0009746584323580184,0.0038798020977806667,0.0021381495324205397,0.0013017820983026054,0.00043987046705752186,0.0,0.0,0.0011634911000625212,0.0013017820983026054,0.00043987046705752186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009746584323580184,0.0,0.0,0.0,0.0,7.860452641064665e-05,0.0003462027314658988,0.00017566895282444906,0.00042480725787654545,0.0001386504875327526,0.0001551302993047106,5.2418325078299035e-05,0.0,0.0,0.0,0.0,0.0,7.860452641064665e-05,0.0,0.0,0.00023411025018960527,0.00014253471429613313,4.816229339080706e-05,0.0,0.0 +103294,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,15716.0,,1688.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001454994234574089,0.0004969567947787011,0.0,0.0019519510293527901,0.0010097187368007193,0.0004283348350970378,0.0005139281470613308,0.0,0.0,0.0005127619420220181,0.0004283348350970378,0.0005139281470613308,0.0,0.0,0.0004969567947787011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.320370065917008e-05,0.0,0.0,0.00017338736172943647,9.313881791824094e-05,0.00020659106238860654,6.11043248212492e-05,5.104339606955801e-05,6.124329802828819e-05,0.0,0.0,3.320370065917008e-05,0.0,0.0,0.0,0.0,0.0,0.0001068668544510093,4.533420526952788e-05,5.439325080199998e-05,0.0,0.0 +103295,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,29526.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.007089650360933432,0.0,0.0,0.007089650360933432,0.0025836862765422244,0.0031034175279200326,0.0012581400057223445,0.0,0.00014440655074883076,0.0025836862765422244,0.0031034175279200326,0.0012581400057223445,0.0,0.00014440655074883076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008448553087540663,0.0002642145114941767,0.0008448553087540663,0.00030789121547093187,0.00036982624533806385,0.00014992929254277715,0.0,1.7208555402293514e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00030789121547093187,0.00036982624533806385,0.00014992929254277715,0.0,1.7208555402293514e-05 +103296,50.0,the Greater Atlanta and Macon Area,G1301350050220,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,64880.0,,12212.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.005721231937293809,0.0035577508229421837,0.0,0.009278982760235994,0.0058200068826653765,0.0030764507662515692,0.00038252511131904647,0.0,0.0,0.0022622560597231932,0.0030764507662515692,0.00038252511131904647,0.0,0.0,0.0035577508229421837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023770838510440932,0.0,0.0,0.0006817893386261043,0.0004145417627354882,0.0009194977237305136,0.00026958915136922985,0.00036661532974497106,4.5584857511903454e-05,0.0,0.0,0.00023770838510440932,0.0,0.0,0.0,0.0,0.0,0.0005767316546421335,0.0003048598698620028,3.790619922637715e-05,0.0,0.0 +103297,50.0,the Greater Atlanta and Macon Area,G1300890023214,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,123147.0,,18478.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009685411894312549,0.005383234522750505,0.0,0.015068646417063054,0.0113124344953946,0.002546947807253241,0.0012092337408157758,0.0,0.0,0.005929199972644096,0.002546947807253241,0.0012092337408157758,0.0,0.0,0.005383234522750505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035967656953131264,0.0,0.0,0.001154190150642421,0.0006194690730680303,0.0015138667201737338,0.0007065702816039979,0.0003035144096513052,0.00014410183982920032,0.0,0.0,0.0003596765695313126,0.0,0.0,0.0,0.0,0.0,0.0011365000964738989,0.0002558782930266439,0.00012148527919928386,0.0,0.0 +103298,50.0,the Greater Atlanta and Macon Area,G1301390000500,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,3158.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.00043032490466561656,0.0,0.0,0.0004303249046656165,0.000203128573103739,0.00012736889355853344,7.261681074311192e-05,0.0,2.729333433397145e-05,0.000203128573103739,0.00012736889355853344,7.261681074311192e-05,0.0,2.729333433397145e-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,5.12790592128008e-05,1.8589145779752057e-05,5.12790592128008e-05,2.4205529392012062e-05,1.5177734227890301e-05,8.653279644212782e-06,0.0,3.2523716202622066e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.4205529392012062e-05,1.5177734227890303e-05,8.653279644212783e-06,0.0,3.252371620262207e-06 +103299,50.0,the Greater Atlanta and Macon Area,G1300630040411,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,97648.0,,13682.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004636099443392567,0.002326702138069269,0.0,0.006962801581461836,0.0028457052775570546,0.0013209296561553542,0.0010440700625812295,0.0,0.0017521143155296178,0.00236393589705138,0.0013209296561553542,0.0007035052804248552,0.0,0.0002477463401223978,0.00048176938050567477,0.0003405647821563742,0.0015043679754072198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001554568289932547,0.0,0.0,0.0005524753762899866,0.00028172921436282457,0.0007079322052832412,0.0002817058585984864,0.0001574127383909174,8.383542011348599e-05,0.0,2.9523472081398748e-05,3.218905375726579e-05,2.275457620232449e-05,0.00010051319903366442,0.0,0.0,0.0,0.0002893327332622577,0.00013430350320420357,0.00010615422732154912,0.0,0.00017814354420262 +103300,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,32059.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027812762603356125,0.0,0.0,0.0027812762603356125,0.0008896303073578082,0.0008038528577557289,0.0010877930952220751,0.0,0.0,0.0008896303073578082,0.0008038528577557289,0.0010877930952220751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033143848564907264,0.0001106276467421678,0.00033143848564907264,0.00010601525855709527,9.579335129660538e-05,0.00012962987579537196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010601525855709527,9.579335129660538e-05,0.00012962987579537196,0.0,0.0 +103301,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,228585.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.018690031614513592,0.0,0.0,0.018690031614513592,0.0044450211969466755,0.004971317255345981,0.009273723851827233,0.0,0.0,0.0044450211969466755,0.004971317255345981,0.009273723851827233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022272559107360517,0.0006502323618969022,0.0022272559107360517,0.0005297048147611801,0.0005924225260547598,0.0011051322271427657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005297048147611801,0.0005924225260547598,0.0011051322271427657,0.0,0.0 +103302,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4712.0,,621.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003082157160478291,0.00018275660550282004,0.0,0.0004909723215506492,0.00024585443605089694,0.00014411839117401228,0.00010103018393203756,0.0,0.0,6.309783054807692e-05,0.00014411839117401228,0.00010103018393203756,0.0,0.0,0.00018275660550282004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2210147748980048e-05,0.0,0.0,3.6730688843410456e-05,2.5442322532009e-05,4.894083659239051e-05,7.519495794289743e-06,1.7174879499019767e-05,1.2039970892413343e-05,0.0,0.0,1.2210147748980048e-05,0.0,0.0,0.0,0.0,0.0,2.4507128512416567e-05,1.4365931281276774e-05,1.007083598338227e-05,0.0,0.0 +103303,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,5949.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011277109504354568,0.0,0.0,0.0011277109504354568,0.0004090691867146145,0.0003075876072364843,0.00037234724597436206,0.0,3.878961758373519e-05,0.0004090691867146145,0.0003075876072364843,0.00037234724597436206,0.0,3.878961758373519e-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.00013438881847679273,4.4572758641554944e-05,0.00013438881847679273,4.8748595246513885e-05,3.6655080008448265e-05,4.437245770315518e-05,0.0,4.62254168431359e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.8748595246513885e-05,3.6655080008448265e-05,4.437245770315518e-05,0.0,4.62254168431359e-06 +103304,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010601,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,153600.0,,5983.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.007906570989489827,0.00101743905972831,0.0,0.008924027779579556,0.003711372443529713,0.002349113314904216,0.0016819198146676292,0.0,0.001181622206477999,0.003431144081285778,0.002349113314904216,0.0009447091171832536,0.0,0.001181622206477999,0.0002802283622439345,0.0007372106974843753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.79799071609571e-05,0.0,0.0,0.0009422117016040014,0.00030545916565956447,0.0010101916087649585,0.00040888320709119095,0.0002799395662972901,0.00011257926931981956,0.0,0.000140811771790662,1.872337990866665e-05,4.925652725229045e-05,0.0,0.0,0.0,0.0,0.00042012389383573324,0.0002659174329538088,0.0001903917519486702,0.0,0.00013375853002674625 +103305,50.0,the Greater Atlanta and Macon Area,G1302970110504,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,73248.0,,4005.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.003917718389736287,0.0006811118339513284,0.0,0.004598830223687616,0.0022711706461016642,0.0011001157350300163,0.0007079201404184481,0.0,0.0005196414324989075,0.0019956053689112034,0.0011001157350300163,0.00030237358365758053,0.0,0.0005196414324989075,0.00027556527719046066,0.00040554655676086767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.550804782860252e-05,0.0,0.0,0.00046686619130938665,0.000202860519561383,0.000512374239137989,0.0002378120592794448,0.00013109845887814372,3.603321865211635e-05,0.0,6.192456738924743e-05,1.8411716239805814e-05,2.7096331588796696e-05,0.0,0.0,0.0,0.0,0.00025304028962733915,0.0001225683348335806,7.887224047738605e-05,0.0,5.7895349610820505e-05 +103306,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970701,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,20186.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.001780014421450008,0.0,0.0,0.0017800144214500076,0.0013343122233004376,0.0003540043014469975,9.166752310313502e-05,0.0,0.0,0.0013343122233004376,0.0003540043014469975,9.166752310313502e-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.0002121213137638169,5.695243126141757e-05,0.0002121213137638169,0.00015900773519972146,4.218609500916807e-05,1.0923863984356007e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001590077351997215,4.218609500916808e-05,1.092386398435601e-05,0.0,0.0 +103307,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,60419.0,,3461.0,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.015503465164419621,0.0029337353583181146,0.0,0.01843720052273774,0.01029790340745695,0.0021085808587170568,0.0056936190777421335,0.0,0.0003371855629796525,0.007701353612118488,0.0021085808587170568,0.0056936190777421335,0.0,0.0,0.002596549795338462,0.0,0.0003371855629796525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001960170781579891,0.0,0.0,0.00184751737455063,0.0007688417074110814,0.0020435344527086194,0.0009177551247447078,0.0002512754233205312,0.0006784973590512345,0.0,0.0,0.00017348807646568263,0.0,2.2529001692306462e-05,0.0,0.0,0.0,0.001141394561384253,0.0002337099727150114,0.000631066887384345,0.0,3.737282751007119e-05 +103308,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,27577.0,,2849.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027090517074525233,0.0008299282310371307,0.0,0.003538979938489654,0.002140761661972186,0.0011977525202283054,0.0002004961298885998,0.0,0.0,0.0013108334309350554,0.0011977525202283054,0.0002004961298885998,0.0,0.0,0.0008299282310371307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.545062721420774e-05,0.0,0.0,0.00032283376651612896,0.0001302001751371622,0.0003782843937303367,0.00015621012054508387,0.00014273443227228114,2.3892833276597043e-05,0.0,0.0,5.545062721420774e-05,0.0,0.0,0.0,0.0,0.0,0.0002288277247951582,0.00012802872404722222,2.1431191546272603e-05,0.0,0.0 +103309,35.0,Eastern Counties in South Carolina and Georgia,G1300730030302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,47016.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003909234115635848,0.0,0.0,0.003909234115635848,0.002600617957459749,0.0010165739995821159,0.00029207253219342154,0.0,0.0,0.002600617957459749,0.0010165739995821159,0.00029207253219342154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046585491975262397,0.00011839065619092879,0.00046585491975262397,0.00030990998084098843,0.00012114291060332212,3.480564786403972e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030990998084098843,0.00012114291060332212,3.480564786403972e-05,0.0,0.0 +103310,50.0,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,60708.0,,16496.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003124958469922887,0.0028052977838807546,0.0,0.005930238523442221,0.002483509454468216,0.0010123327156393348,0.001689969398752333,0.0,0.0007444446849437569,0.0017596674494945604,0.0010123327156393348,0.00022772876207915817,0.0,0.00012522954270983294,0.0007238420049736556,0.0014622406366731748,0.000619215142233924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001874334708858998,0.0,0.0,0.000372394348042699,0.0002940750806679825,0.0005598278189285989,0.0002096956548170242,0.00012063743735196194,2.7137929896115297e-05,0.0,1.4923325977597504e-05,4.836285835492895e-05,9.769830474927975e-05,4.137230778169108e-05,0.0,0.0,0.0,0.00023444886334461824,9.556647915360298e-05,0.0001595369020688957,0.0,7.027724814737158e-05 +103312,50.0,the Greater Atlanta and Macon Area,G1301210009403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,16011.0,,1282.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001411856022665018,0.00037350415228603413,0.0,0.001785360174951052,0.0011039588451645277,0.0005381594348380867,0.0001432418949484376,0.0,0.0,0.0007304546928784936,0.0005381594348380867,0.0001432418949484376,0.0,0.0,0.00037350415228603413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.495517475845126e-05,0.0,0.0,0.00016824773248005039,7.711615125120102e-05,0.00019320290723850165,8.704665616274189e-05,6.413125925782614e-05,1.706981705948234e-05,0.0,0.0,2.4955174758451265e-05,0.0,0.0,0.0,0.0,0.0,0.00011946500283243587,5.823697023565451e-05,1.5500934170411258e-05,0.0,0.0 +103313,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,25129.0,,3490.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029091226069489938,0.0010166347467809912,0.0,0.003925757353729986,0.0027421589308396725,0.0009074416568022734,0.0002761567660880396,0.0,0.0,0.001725524184058681,0.0009074416568022734,0.0002761567660880396,0.0,0.0,0.0010166347467809912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.79265390662941e-05,0.0,0.0,0.00034667301186093225,0.00015677007220363796,0.00041459955092722634,0.00020562648837749338,0.00010813759842925529,3.2908925054183594e-05,0.0,0.0,6.79265390662941e-05,0.0,0.0,0.0,0.0,0.0,0.0002895996259720456,9.5834986603392e-05,2.916493835178873e-05,0.0,0.0 +103314,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,59314.0,,2890.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0050735443339236285,0.000850715886572321,0.0,0.005924260220495949,0.0028016541589172875,0.0011622767697066,0.001960329291872063,0.0,0.0,0.0019509382723449664,0.0011622767697066,0.001960329291872063,0.0,0.0,0.000850715886572321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.684016386655899e-05,0.0,0.0,0.0006046034464657858,0.0002513086387726792,0.0006614436103323447,0.00023248914874260526,0.00013850604123297064,0.00023360825649021002,0.0,0.0,5.684016386655899e-05,0.0,0.0,0.0,0.0,0.0,0.00031280466637263006,0.00012976819284548412,0.00021887075111423068,0.0,0.0 +103315,50.0,the Greater Atlanta and Macon Area,G1301390001202,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,97667.0,,16821.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0048940230109700755,0.002860634241872739,0.0,0.0077546749832042355,0.003014746543335838,0.0017909615374009536,0.0018217946359104255,0.0,0.0011271722665570168,0.0023950349509821527,0.0017909615374009536,0.0005155989100951356,0.0,0.00019244534285325313,0.0006197115923536854,0.00130619572581529,0.0009347269237037636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019113144884893706,0.0,0.0,0.000583211435037346,0.00034313307246737896,0.0007743428838862831,0.00028541177015226787,0.00021342548778030014,6.144294368584737e-05,0.0,2.293334631245486e-05,4.1405634030829406e-05,8.727263272634479e-05,6.245318209176287e-05,0.0,0.0,0.0,0.0003010374435561813,0.00017883642123031076,0.00018191525954019296,0.0,0.00011255375955959792 +103316,81.0,the Columbus-Albany Area,G1302150001800,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,12940.0,,563.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.002959341805466159,0.0004464527840447814,0.0,0.0034057945895109407,0.001640329393471684,0.0010913198379901615,0.000532964383176097,0.0,0.00014109826779925845,0.0013349748772261611,0.0010913198379901615,0.000532964383176097,0.0,0.0,0.0003053545162455229,0.0,0.00014109826779925845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9828943516987558e-05,0.0,0.0,0.00035265608136966005,0.0001360672157459191,0.0003824850248866476,0.00015908503980849287,0.0001300493835743178,6.351180202750312e-05,0.0,0.0,2.0401715351003714e-05,0.0,9.427228165983841e-06,0.0,0.0,0.0,0.00018421587456171547,0.00012255979755164805,5.985413682628419e-05,0.0,1.584592759553706e-05 +103317,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,129024.0,,20673.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.01703525485600532,0.006213765718645331,0.0,0.02324902057465065,0.007168384551022322,0.0038555482097752387,0.008526292391142052,0.0,0.003698732746666629,0.007168384551022322,0.0038555482097752387,0.0060112907571855554,0.0,0.0,0.0,0.002515001633956498,0.003698732746666629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041516647407840583,0.0,0.0,0.002030059477033147,0.0011923630398259905,0.0024452259511115533,0.0008542429870188214,0.00045945847294754234,0.0007163542825732581,0.0,0.0,0.0,0.0001680372913864515,0.000247127088873685,0.0,0.0,0.0,0.0007539379938791384,0.00040550897651935904,0.0008967565474271085,0.0,0.0003890158413054464 +103318,81.0,the Columbus-Albany Area,G1300950000501,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,21305.0,,396.0,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,43199.70345818221,0.0,0.0,0.004294082525982486,0.00020756597500203944,0.0,0.004501648500984526,0.0022113801639749107,0.000318118605033373,0.00193589938810424,0.0,3.625034387200268e-05,0.002040064532844874,0.000318118605033373,0.00193589938810424,0.0,0.0,0.00017131563113003678,0.0,3.625034387200268e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3868746140405947e-05,0.0,0.0,0.0005117190402491067,0.00019120410949047994,0.0005255877863895126,0.0002431112719601884,3.790969229586861e-05,0.00023069807599304974,0.0,0.0,1.14466400285623e-05,0.0,2.4221061118436477e-06,0.0,0.0,0.0,0.0002581886180129473,3.7141783369413034e-05,0.00022602499369819566,0.0,4.2323913089566235e-06 +103319,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,31445.0,,8786.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007825059699107568,0.00681429991075097,0.0,0.014639359609858538,0.004588606856789744,0.0004063254349193519,0.008665445817538777,0.0004241956679774966,0.0005546241110670317,0.0025505108195475025,0.0004063254349193519,0.0044439469158801485,0.0004241956679774966,0.0,0.0020380960372422415,0.004221498901658628,0.0005546241110670317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004552909004528004,0.0,0.0,0.0009324942955777419,0.0007095411448553173,0.0013877851960305424,0.0003039384850071626,4.842086383745456e-05,0.0005295748924932991,5.0550418247022216e-05,0.0,0.00013617342825508868,0.0002820553925377272,3.7056677024465514e-05,0.0,0.0,0.0,0.00043499175072990643,3.8518926946231164e-05,0.0008214688171528085,4.0212993186055466e-05,5.2577377099343195e-05 +103320,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,26463.0,,111.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.006468520237151233,8.783491231114448e-05,0.0,0.006556437856536116,0.0026026261964285265,0.0014801257916386458,0.00231554994347939,0.0,0.0001581359249895558,0.0025147912841173817,0.0014801257916386458,0.00231554994347939,0.0,0.0001581359249895558,8.783491231114448e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.869665078709495e-06,0.0,0.0,0.0007708456675172142,0.00026499680627544304,0.0007767153325959235,0.0002996846102356274,0.00017638478539685549,0.0002759412626707512,0.0,1.884486531508648e-05,5.869665078709495e-06,0.0,0.0,0.0,0.0,0.0,0.00030832286006746975,0.00017534466454072195,0.0002743140686827555,0.0,1.873373930497655e-05 +103321,50.0,the Greater Atlanta and Macon Area,G1300150960102,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,19696.0,,2890.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0010138752570828795,0.0004914324274796035,0.0,0.001505307684562483,0.0006889663840604118,0.00021443099101411863,0.0003282953720536977,0.0,0.0002736149374342549,0.0005198541968359482,0.00021443099101411863,0.0002227465305201234,0.0,5.684353871268929e-05,0.00016911218722446362,0.00010554884153357432,0.00021677139872156555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.283448022336669e-05,0.0,0.0,0.00012082182152114015,5.945523071962136e-05,0.00015365630174450686,6.195015663745919e-05,2.555338316416888e-05,2.6544332122660298e-05,0.0,6.77394959685178e-06,1.1299032087544523e-05,7.052121830273909e-06,1.4483326305548262e-05,0.0,0.0,0.0,7.032716811764484e-05,2.1888331134252838e-05,3.351119061367831e-05,0.0,2.792961187893086e-05 +103322,50.0,the Greater Atlanta and Macon Area,G1301170130604,ComStock 90.1-2004,gen5_led,25001_50000,Electricity,30505.0,,2541.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025962793135730603,0.0007479363950813144,0.0,0.003344215708654375,0.0013912212326874624,0.000636471745008058,0.0013165227309588539,0.0,0.0,0.0006432848376061481,0.000636471745008058,0.0013165227309588539,0.0,0.0,0.0007479363950813144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.997211244631814e-05,0.0,0.0,0.0003093938955714889,0.0001344118745672559,0.0003593660080178071,7.665908703602898e-05,7.584718315157695e-05,0.00015688762538388295,0.0,0.0,4.997211244631814e-05,0.0,0.0,0.0,0.0,0.0,0.0001494992142303153,6.839460433959473e-05,0.00014147218944789698,0.0,0.0 +103323,50.0,the Greater Atlanta and Macon Area,G1301210005300,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,57967.0,,11880.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0047528361429821945,0.002020321492730757,0.0,0.006773157635712952,0.0032344611820531327,0.0016171685347615959,0.0008114831814729767,0.0,0.001110062467786666,0.00247476838628813,0.0016171685347615959,0.00046960635257151855,0.0,0.00019129286936094968,0.0007596927957650024,0.0003418768289014581,0.0009187695984257162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001349865294127882,0.0,0.0,0.0005663859013778832,0.0002590322993373726,0.0007013724307906714,0.00029491315942775247,0.00019271471405411935,5.5962042303253034e-05,0.0,2.2795985592758324e-05,5.075840369425904e-05,2.2842288609067213e-05,6.138702175258034e-05,0.0,0.0,0.0,0.0003349341656531344,0.0001674606567907728,8.403051606749434e-05,0.0,0.00011494892828949671 +103324,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,41758.0,,1182.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.009961736203604622,0.000937650094982528,0.0,0.010899386298587152,0.0053360949835126355,0.0017199763054826375,0.0036150434860713885,0.0,0.00022827152352048846,0.004626716412050596,0.0017199763054826375,0.0036150434860713885,0.0,0.0,0.0007093785714620397,0.0,0.00022827152352048846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.264873902579439e-05,0.0,0.0,0.0011871189110696236,0.00044763899005008324,0.0012497676500954182,0.0005513559520793202,0.00020496591729574995,0.0004307970416945535,0.0,0.0,4.739686289355549e-05,0.0,1.5251876132238912e-05,0.0,0.0,0.0,0.0006118582005938259,0.00019721942929956304,0.0004145154854421331,0.0,2.6174534759895837e-05 +103325,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,19708.0,,321.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,22700.572550927158,0.0,0.0,0.005576801506231884,0.00022096923069909763,0.0,0.005797770736930981,0.0024881092344735786,0.00031312939345415786,0.0011171102685391576,0.00037129428994781845,0.0015081275505162695,0.002267140003774481,0.00031312939345415786,0.0011171102685391576,0.00037129428994781845,0.0015081275505162695,0.00022096923069909763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4766049397399357e-05,0.0,0.0,0.0006645755818706738,0.00019293910457179918,0.000679341631268073,0.00027017025538869145,3.7314964253804904e-05,0.0001331236562568175,4.424635133805497e-05,0.000179720354633305,1.4766049397399357e-05,0.0,0.0,0.0,0.0,0.0,0.0002915389833119162,3.669028021272414e-05,0.00013089505373188072,4.350563001861496e-05,0.0001767116839929371 +103326,50.0,the Greater Atlanta and Macon Area,G1300890022900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,8867.0,,820.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0006824447752420169,0.00024146582235032546,0.0,0.0009239105975923424,0.0003640094202970527,0.00033424050218828106,0.00022562998550071085,0.0,0.0,0.00012254359794672723,0.00033424050218828106,0.00022562998550071085,0.0,0.0,0.00024146582235032546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6132849619903407e-05,0.0,0.0,8.132620709852758e-05,4.37583225702503e-05,9.7459056718431e-05,1.4603388269299842e-05,3.983107979988595e-05,2.6888081782091767e-05,0.0,0.0,1.6132849619903407e-05,0.0,0.0,0.0,0.0,0.0,3.839767054433848e-05,3.5257485026421924e-05,2.3800663843012942e-05,0.0,0.0 +103327,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,78215.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006968903729263454,0.0,0.0,0.006968903729263454,0.0027559880247463053,0.0017681816668421457,0.0024446726584624085,0.0,0.0,0.0027559880247463053,0.0017681816668421457,0.0024446726584624085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008304703929894419,0.0002598500840453369,0.0008304703929894419,0.000328425609952738,0.00021071069149269497,0.00029132677710535626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000328425609952738,0.00021071069149269497,0.00029132677710535626,0.0,0.0 +103328,50.0,the Greater Atlanta and Macon Area,G1301210010603,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,25084.0,,1845.0,,9.325022323477118,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.009720754855358095,0.0015640460609404802,0.0,0.011284800916298576,0.006153481852102064,0.001968138431567734,0.002677332915800691,0.0,0.00048575933267003165,0.005075195123831615,0.001968138431567734,0.002677332915800691,0.0,0.0,0.0010782867282704484,0.0,0.00048575933267003165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010449922757122257,0.0,0.0,0.0011584068080920805,0.00043415676054571847,0.001262906035663303,0.0006048028853028509,0.00023453990891860065,0.0003190534812718811,0.0,0.0,7.204399730836998e-05,0.0,3.245523026285258e-05,0.0,0.0,0.0,0.000688649221993832,0.00022025855154058567,0.00029962601236156906,0.0,5.4362358508490146e-05 +103329,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,270180.0,,20641.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.012960149522878956,0.0035102214932192133,0.0,0.016470388746459588,0.008733710080096711,0.0019437263313961286,0.0042498080591338765,0.0,0.0015431442758328758,0.008190575918716232,0.0019437263313961286,0.0012827029969337202,0.0,0.0015431442758328758,0.0005431341613804775,0.0029671050622001563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023453305948553893,0.0,0.0,0.0015444370605132106,0.0006188445928128769,0.0017789701199987494,0.0009760557911373821,0.00023163027374060034,0.0001528573449402404,0.0,0.00018389365069498766,3.6289139253960106e-05,0.0001982451048736072,0.0,0.0,0.0,0.0,0.0009433298453604326,0.00020994228601627768,0.00045902265388569983,0.0,0.0001666753347363397 +103330,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,57156.0,,756.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006167586611802417,0.0002810423176189164,0.0,0.006448628929421334,0.0035752008161787628,0.0008280538160094093,0.0019269591141856768,0.0,0.00011845393147125707,0.0035752008161787628,0.0008280538160094093,0.0016459167965667608,0.0,0.00011845393147125707,0.0,0.0002810423176189164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8776363002886676e-05,0.0,0.0,0.0007349809126009349,0.00022789724458683133,0.0007537572756038215,0.0004260506619523181,9.867777911843928e-05,0.00019614113353364277,0.0,1.411595558095783e-05,0.0,1.8776363002886676e-05,0.0,0.0,0.0,0.0,0.0004178924941152233,9.67882623174301e-05,0.00022523539003489924,0.0,1.3845658301562176e-05 +103331,50.0,the Greater Atlanta and Macon Area,G1301210009602,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11900.0,,1455.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001049377486974888,0.00042386358015382664,0.0,0.0014732410671287144,0.0009527894407628368,0.00045080496285511255,6.964666351076493e-05,0.0,0.0,0.0005289258606090102,0.00045080496285511255,6.964666351076493e-05,0.0,0.0,0.00042386358015382664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.832071905862394e-05,0.0,0.0,0.00012505069826583456,5.8040644213868584e-05,0.00015337141732445848,6.303027177635366e-05,5.3720873647906345e-05,8.299552841574534e-06,0.0,0.0,2.832071905862394e-05,0.0,0.0,0.0,0.0,0.0,9.918992227550177e-05,4.6930945405113244e-05,7.250549643843462e-06,0.0,0.0 +103332,50.0,the Greater Atlanta and Macon Area,G1301350050218,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,24513.0,,2229.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005395313248309981,0.0017679464082514353,0.0,0.007163259656561415,0.0041911809617394035,0.00102341733045019,0.001799292389198633,0.0,0.0001493689751731892,0.0024232345534879684,0.00102341733045019,0.001799292389198633,0.0,0.0001493689751731892,0.0017679464082514353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011812572808258004,0.0,0.0,0.0006429476790343619,0.00027802883327864995,0.000761073407116942,0.00028877156157874374,0.00012195840482526279,0.00021441773856259837,0.0,1.779997406775696e-05,0.00011812572808258004,0.0,0.0,0.0,0.0,0.0,0.00044529956016223335,0.00010873481514449878,0.00019116905636565147,0.0,1.5869975444558334e-05 +103333,35.0,Eastern Counties in South Carolina and Georgia,G1300510004210,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,NaturalGas,161374.0,,1168.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,70149.4559448546,0.0,0.0,0.008454935607489219,0.00019854458718175126,0.0,0.00865349792503239,0.004964448006530525,0.0032737162022371297,0.00034026336601223337,0.0,7.505261989108352e-05,0.004840956039239857,0.0032737162022371297,0.00034026336601223337,0.0,0.0,0.00012349196729066777,0.0,7.505261989108352e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3266015789085654e-05,0.0,0.0,0.0010075588905201372,0.0003289177941919201,0.0010208249063092228,0.000576887692868155,0.0003901226476145041,4.054855003747826e-05,0.0,0.0,8.251277011161064e-06,0.0,5.014738777924592e-06,0.0,0.0,0.0,0.000585639728009129,0.000386189615388299,4.0139758712497617e-05,0.0,8.853712606430222e-06 +103334,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,30520.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.002719313945220551,0.0,0.0,0.0027193139452205504,0.0006339551972916464,0.000876433776649796,0.0012088942816728106,0.0,0.0,0.0006339551972916464,0.000876433776649796,0.0012088942816728106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003240546461648778,0.0001061189879208473,0.0003240546461648778,7.554704285020235e-05,0.00010444268043356144,0.00014406126566840884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.554704285020236e-05,0.00010444268043356145,0.00014406126566840886,0.0,0.0 +103335,50.0,the Greater Atlanta and Macon Area,G1301990970500,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,9500.0,,572.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007297864736908631,0.00016678143451269523,0.0,0.0008965679082035585,0.0006116331718780085,0.00023090010292578937,5.4034633399760496e-05,0.0,0.0,0.0004448517373653132,0.00023090010292578937,5.4034633399760496e-05,0.0,0.0,0.00016678143451269523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.114291296143958e-05,0.0,0.0,8.696748705486668e-05,3.520667388357465e-05,9.811040001630625e-05,5.3012270171289685e-05,2.7515996029096284e-05,6.439220854480702e-06,0.0,0.0,1.114291296143958e-05,0.0,0.0,0.0,0.0,0.0,6.693031794594344e-05,2.526713398346636e-05,5.912948086896429e-06,0.0,0.0 +103336,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,41156.0,,4215.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.003981945727520638,0.0012406887137972305,0.0,0.005222665130924166,0.001916228327622264,0.001346076821823542,0.001960329291872063,0.0,0.0,0.0006755396138250336,0.001346076821823542,0.001960329291872063,0.0,0.0,0.0012406887137972305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.28962841406143e-05,0.0,0.0,0.0004745223391855709,0.00021695913058913488,0.0005574186233261852,8.050301528453235e-05,0.000160409901571637,0.00023360942232940164,0.0,0.0,8.28962841406143e-05,0.0,0.0,0.0,0.0,0.0,0.00020452036069424002,0.00014366770032207533,0.0002092272867871887,0.0,0.0 +103337,50.0,the Greater Atlanta and Macon Area,G1300890023000,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,9106.0,,,5898.0,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0018945709381463151,0.0,0.0015137875706505437,0.003408441215870598,0.0024096705933947223,0.0004954153716984516,0.00042106171240681407,0.0,8.221083129687158e-05,0.0008958830227441782,0.0004954153716984516,0.00042106171240681407,0.0,8.221083129687158e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015137875706505437,0.0,0.0,0.0,0.0,0.00012208825156473051,0.00022577660898922815,0.00018051839364607018,0.00034786486055395863,0.0001067626589501602,5.903880420157493e-05,5.017805545746542e-05,0.0,9.797090380027623e-06,0.0,0.0,0.0,0.00012208825156473051,0.0,0.0,0.000245930521274407,5.0561998367382796e-05,4.297347807818794e-05,0.0,8.390421765806092e-06 +103338,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,18492.0,,309.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0019647000789396857,0.00011469533436536504,0.0,0.002079356664881279,0.0009761890400900818,0.0002390002778262066,0.000803642309032997,0.0,6.0525037931993315e-05,0.0009761890400900818,0.0002390002778262066,0.000688946974667632,0.0,6.0525037931993315e-05,0.0,0.00011469533436536504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.66270078723064e-06,0.0,0.0,0.00023412802130948584,6.174611093598382e-05,0.00024179072209671651,0.00011632982093818785,2.848101994787213e-05,8.209995698332791e-05,0.0,7.212605894710809e-06,0.0,7.66270078723064e-06,0.0,0.0,0.0,0.0,0.00011351273059244878,2.7791311963411418e-05,9.344873704947355e-05,0.0,7.037942491382724e-06 +103339,50.0,the Greater Atlanta and Macon Area,G1301530021107,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,3845.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0009231763570781495,0.0,0.0,0.0009231763570781495,0.0004562949258197591,0.0002084218258230547,0.0002159481695333317,0.0,4.251143590200402e-05,0.0004562949258197591,0.0002084218258230547,0.0002159481695333317,0.0,4.251143590200402e-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.00011001272492944543,3.064512185645171e-05,0.00011001272492944543,5.4375578161239066e-05,2.4837131949668737e-05,2.5734028381184557e-05,0.0,5.065986437353069e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.4375578161239066e-05,2.4837131949668737e-05,2.5734028381184557e-05,0.0,5.065986437353069e-06 +103340,50.0,the Greater Atlanta and Macon Area,G1300630040621,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,38697.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.003412352402433666,0.0,0.0,0.0034123524024336667,0.0022903820128025516,0.0008990889169568917,0.00022288147267422286,0.0,0.0,0.0022903820128025516,0.0008990889169568917,0.00022288147267422286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004066449738032553,8.22146909937569e-05,0.0004066449738032553,0.0002729414268383572,0.00010714309249595145,2.6560454468946715e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027294142683835715,0.00010714309249595142,2.6560454468946708e-05,0.0,0.0 +103341,50.0,the Greater Atlanta and Macon Area,G1300890023505,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,57492.0,,4954.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004662377887294343,0.00144317120368534,0.0,0.006105579464579122,0.0037678146366536755,0.0018901490930112955,0.0004476157349141486,0.0,0.0,0.002324643432968336,0.0018901490930112955,0.0004476157349141486,0.0,0.0,0.00144317120368534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.642507673773375e-05,0.0,0.0,0.0005556078258521748,0.00023071438692655414,0.0006520329025899085,0.0002770238952944685,0.00022524592675474966,5.334162337433306e-05,0.0,0.0,9.642507673773375e-05,0.0,0.0,0.0,0.0,0.0,0.00040237607719472844,0.0002018546161906017,4.7802209204578134e-05,0.0,0.0 +103342,50.0,the Greater Atlanta and Macon Area,G1301210011419,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,61732.0,,4348.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006025474542065773,0.0012799714098582899,0.0,0.0073054459519240654,0.003403937682509704,0.0014837503956750364,0.002417788563345621,0.0,0.0,0.002123966272651414,0.0014837503956750364,0.002417788563345621,0.0,0.0,0.0012799714098582899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.55204308333918e-05,0.0,0.0,0.0007180434391813147,0.0003312355997603321,0.0008035638700147064,0.0002531087031357491,0.00017681549055750868,0.0002881229027054761,0.0,0.0,8.55204308333918e-05,0.0,0.0,0.0,0.0,0.0,0.00037441675093441575,0.00016320539744332327,0.0002659450973458518,0.0,0.0 +103343,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,405560.0,,135204.0,,7.614023970037612,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,2664908.3895131643,0.0,0.0,0.1025382977487969,0.09358612291284145,0.0,0.19612442066163832,0.16709249342051527,0.020651603893302176,0.003959588036279232,0.0007853937084008036,0.0036352694361181364,0.07517768658714218,0.020651603893302176,0.003959588036279232,0.0007853937084008036,0.0019639533566497723,0.0919148068333731,0.0,0.0016713160794683643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006252875432708414,0.0,0.0,0.0122192916673077,0.009361877933152352,0.018472167100016115,0.008958780274782889,0.0024610119039442254,0.000471856488355306,9.359385719596106e-05,0.00023404054302406368,0.006141207902006976,0.0,0.00011166753070143806,0.0,0.0,0.0,0.015737767123591196,0.0019450911656665412,0.0003729376056618795,7.397306144710364e-05,0.00034239134652898573 +103344,50.0,the Greater Atlanta and Macon Area,G1301350050211,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,143346.0,,17960.0,,3.3063363735822096,Lodging,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,247975.22801866572,0.0,0.0,0.013041819348532662,0.005398413056942735,0.0,0.0184402637434976,0.005626961252876206,0.0034601563836278923,0.005792582700224127,0.0,0.003560532068747171,0.005626961252876206,0.0034601563836278923,0.003954701712028563,0.0,0.0,0.0,0.0018378809881955636,0.003560532068747171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000360691081194359,0.0,0.0,0.0015541698994142182,0.0009421812927259225,0.0019148609806085772,0.0006705547416874966,0.00041234054505635126,0.00047127461267037005,0.0,0.0,0.0,0.00012279669483354372,0.00023789438636081533,0.0,0.0,0.0,0.000584310977999348,0.0003593071410461303,0.0006015093245897151,0.0,0.00036973028279238296 +103345,50.0,the Greater Atlanta and Macon Area,G1301210001300,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,49662.0,,2274.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0041065106439840465,0.0006625696981351181,0.0,0.004769080342119165,0.0037257775750318277,0.0006765111802770465,0.00036676121321085333,0.0,0.0,0.0030632078768967094,0.0006765111802770465,0.00036676121321085333,0.0,0.0,0.0006625696981351181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.426958757693114e-05,0.0,0.0,0.0004893644765054634,0.0001636640189225103,0.0005336340640823945,0.0003650362190832285,8.061845403259015e-05,4.3706183829907336e-05,0.0,0.0,4.426958757693114e-05,0.0,0.0,0.0,0.0,0.0,0.00041689417803932727,7.56979091629229e-05,4.103857824012454e-05,0.0,0.0 +103346,81.0,the Columbus-Albany Area,G1300950011200,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,67702.0,,622.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007747437661823579,0.000182971432746904,0.0,0.007930409094570483,0.0026323396009728614,0.002153765880366484,0.0031443036132311384,0.0,0.0,0.002449368168225957,0.002153765880366484,0.0031443036132311384,0.0,0.0,0.000182971432746904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.222595616349042e-05,0.0,0.0,0.0009232462455807179,0.00032662746117791423,0.0009354722017442084,0.0002918861776071726,0.00025665985964708833,0.00037470020832645705,0.0,0.0,1.222595616349042e-05,0.0,0.0,0.0,0.0,0.0,0.0003105111593734148,0.0002540585341968554,0.0003709025081739383,0.0,0.0 +103347,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,32140.0,,2464.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027044601757724627,0.0007252874656336098,0.0,0.0034297169517997746,0.0014731317918960315,0.0008284352324001891,0.0011281499275035544,0.0,0.0,0.0007478443262624215,0.0008284352324001891,0.0011281499275035544,0.0,0.0,0.0007252874656336098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.845874915060861e-05,0.0,0.0,0.0003222840422970566,0.00013536026901191472,0.00037074279144766513,8.911881736544007e-05,9.872264264456211e-05,0.00013443892508016976,0.0,0.0,4.845874915060861e-05,0.0,0.0,0.0,0.0,0.0,0.0001592414185699018,8.955152711143371e-05,0.00012194984576632966,0.0,0.0 +103348,85.0,Rural Climate Zone 3A,G1301670960100,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,33061.0,,14955.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.002033583803072956,0.0025432075813695337,0.0,0.00457679138444249,0.0009087519442233864,0.0004058657032664287,0.0030206507536887158,0.0,0.00024148752254111918,0.0009087519442233864,0.0004058657032664287,0.0004774431723191818,0.0,0.00024148752254111918,0.0,0.0025432075813695337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016992262661162416,0.0,0.0,0.00024233844670354718,0.00023206166161414567,0.0004122610733151713,0.00010829430007710545,4.8366270399676524e-05,5.6896025919465696e-05,0.0,2.877762451808983e-05,0.0,0.00016992262661162416,0.0,0.0,0.0,0.0,8.185713973686352e-05,3.6558937560318076e-05,0.00027208946557167224,0.0,2.175233627065363e-05 +103349,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,53028.0,,2224.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004724726268743939,0.0006545172335111071,0.0,0.005379243502255046,0.0015562699353565083,0.0015397282375620462,0.0022832453293364914,0.0,0.0,0.000901752701845401,0.0015397282375620462,0.0022832453293364914,0.0,0.0,0.0006545172335111071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.373046089489377e-05,0.0,0.0,0.0005630375126577476,0.0001950208552681954,0.0006067679735526414,0.00010746032032336442,0.00018348676891207552,0.0002720904234223076,0.0,0.0,4.373046089489377e-05,0.0,0.0,0.0,0.0,0.0,0.00017554415496924588,0.0001736782843415901,0.0002575455342418054,0.0,0.0 +103350,50.0,the Greater Atlanta and Macon Area,G1300630040302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,161581.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.012495455819895597,0.0,0.0,0.012495455819895597,0.007552638488992494,0.00381531894617432,0.0011274983847287855,0.0,0.0,0.007552638488992494,0.00381531894617432,0.0011274983847287855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014890610140721084,0.0003988962825327357,0.0014890610140721084,0.0009000343556441117,0.00045466470218341577,0.00013436195624458118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009000343556441117,0.00045466470218341577,0.00013436195624458118,0.0,0.0 +103351,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,113857.0,,20848.0,,3.3063363735822096,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.012627154638729881,0.006266382257925777,0.0,0.018893568234677863,0.0051536631035298186,0.0017846376884710377,0.008010374531598283,0.0,0.003944861573056521,0.0051536631035298186,0.0017846376884710377,0.005688822508706821,0.0,0.0,0.0,0.0023215520228914615,0.003944861573056521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004186836630181276,0.0,0.0,0.001504755228059574,0.0010030194582441073,0.0019234388910777018,0.0006141527304107104,0.00021267205231511016,0.0006779267108382081,0.0,0.0,0.0,0.00015511276919022166,0.0002635729876545173,0.0,0.0,0.0,0.0005246629922794186,0.0001816830729828908,0.0008154873507639021,0.0,0.00040160228471867814 +103352,85.0,Rural Climate Zone 3A,G1300550010200,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,18081.0,,1792.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0016109588137790142,0.0005273701946197245,0.0,0.002138329008398739,0.0012824879575747017,0.0003607870116357939,0.0004950847287945412,0.0,0.0,0.0007551177629549771,0.0003607870116357939,0.0004950847287945412,0.0,0.0,0.0005273701946197245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.523534953038283e-05,0.0,0.0,0.00019197533074382197,9.275632869032695e-05,0.0002272106802742048,8.998615051725484e-05,4.299439892220475e-05,5.89984385346212e-05,0.0,0.0,3.523534953038283e-05,0.0,0.0,0.0,0.0,0.0,0.00013627227622106243,3.8335851043451854e-05,5.260581397013995e-05,0.0,0.0 +103353,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,28449.0,,,9459.0,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.002398147543607695,0.0,0.0008915258906968915,0.003289673434304587,0.002289288563222792,0.0006561912422531904,0.0003441936288286036,0.0,0.0,0.001397762672525901,0.0006561912422531904,0.0003441936288286036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008915258906968915,0.0,0.0,0.0,0.0,7.190103129393693e-05,0.0002857814268559534,0.00015272260900429363,0.00035768245814989027,0.0001665679878726378,7.819671896391638e-05,4.10167200193992e-05,0.0,0.0,0.0,0.0,0.0,7.190103129393693e-05,0.0,0.0,0.00024891174673119347,7.134692887689835e-05,3.742378254179837e-05,0.0,0.0 +103354,50.0,the Greater Atlanta and Macon Area,G1301350050529,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,NaturalGas,178321.0,,4686.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.015588048968366984,0.001379405734262847,0.0,0.01696745470262983,0.006901417285014807,0.005284289860369954,0.004781747557245071,0.0,0.0,0.00552201155075196,0.005284289860369954,0.004781747557245071,0.0,0.0,0.001379405734262847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.21648514758477e-05,0.0,0.0,0.0018575964618286103,0.0006153446596188921,0.0019497613133044578,0.000658047016638809,0.0006297182006433207,0.0005698312445464807,0.0,0.0,9.21648514758477e-05,0.0,0.0,0.0,0.0,0.0,0.0007930545072978423,0.0006072274314920934,0.0005494793745145225,0.0,0.0 +103355,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,54936.0,,2044.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004822472664802123,0.0006017004210727607,0.0,0.005424142396268585,0.0015425823709477326,0.0014627893945737055,0.002418770630747148,0.0,0.0,0.0009408819498749719,0.0014627893945737055,0.002418770630747148,0.0,0.0,0.0006017004210727607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.020175491903262e-05,0.0,0.0,0.0005746830464760178,0.00021309496149496542,0.0006148848013950505,0.00011212275173168479,0.00017431726918060617,0.00028823936835348056,0.0,0.0,4.020175491903262e-05,0.0,0.0,0.0,0.0,0.0,0.00017486828064252312,0.00016582288971321864,0.00027419363103930886,0.0,0.0 +103356,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010500,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,154375.0,,4590.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.007469021130365763,0.0007805082400721444,0.0,0.008249529370437905,0.00359975981839048,0.0010503820712467683,0.00177628079814515,0.0,0.0018231066826555095,0.002819251578318336,0.0010503820712467683,0.00177628079814515,0.0,0.0018231066826555095,0.0007805082400721444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.21485205731625e-05,0.0,0.0,0.0008900695452487372,0.00028516040127248135,0.0009422180658218997,0.00033596503831723694,0.00012517210437269904,0.00021167612390483282,0.0,0.00021725627865396853,5.21485205731625e-05,0.0,0.0,0.0,0.0,0.0,0.00041114572495027415,0.00011996914237200854,0.00020287749553112537,0.0,0.000208225702968492 +103357,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,35613.0,,3638.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002909638958139436,0.0010598563787809119,0.0,0.003969525710519786,0.0027701026423224036,0.0009627216077789817,0.00023670146041839996,0.0,0.0,0.0017102462635414917,0.0009627216077789817,0.00023670146041839996,0.0,0.0,0.0010598563787809119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.081361489540555e-05,0.0,0.0,0.0003467376063547925,0.00014651535650748987,0.0004175512212501981,0.00020380765594257843,0.00011472618791191088,2.8207382079679503e-05,0.0,0.0,7.081361489540555e-05,0.0,0.0,0.0,0.0,0.0,0.0002913848720578415,0.00010126791268456866,2.4898436507787846e-05,0.0,0.0 +103358,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6945.0,,430.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016675400207319163,0.0003410839721009038,0.0,0.00200862399283282,0.0012640949150315745,0.00040865565134591797,0.00028252736389347414,0.0,5.326335548811399e-05,0.0009230109429306709,0.00040865565134591797,0.00028252736389347414,0.0,5.326335548811399e-05,0.0003410839721009038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2789795881612142e-05,0.0,0.0,0.0001987172059238535,7.777921406208636e-05,0.0002215070018054656,0.0001099932555356713,4.869862684603512e-05,3.366818646145638e-05,0.0,6.3472810542089904e-06,2.2789795881612142e-05,0.0,0.0,0.0,0.0,0.0,0.00013940183709111159,4.506572082355289e-05,3.115654772986373e-05,0.0,5.873775391695621e-06 +103359,50.0,the Greater Atlanta and Macon Area,G1300890022500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,9746.0,,1149.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007756202352424304,0.00033477781300290054,0.0,0.0011103676746458933,0.0008674396263427543,0.00019290273002916185,5.0025318273977245e-05,0.0,0.0,0.0005326618133398537,0.00019290273002916185,5.0025318273977245e-05,0.0,0.0,0.00033477781300290054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.236729846280021e-05,0.0,0.0,9.242762689979335e-05,5.1259387645122265e-05,0.00011479492536259354,6.347522293787893e-05,2.2987463128155846e-05,5.961321330825487e-06,0.0,0.0,2.236729846280021e-05,0.0,0.0,0.0,0.0,0.0,8.967990462648218e-05,1.994317288010044e-05,5.171847856010929e-06,0.0,0.0 +103360,50.0,the Greater Atlanta and Macon Area,G1300670030506,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,10076.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002475091888722514,0.0,0.0,0.0024750918887225136,0.0011774179017527806,0.0003133771023982358,0.0009124244374920396,0.0,7.187244707945816e-05,0.0011774179017527806,0.0003133771023982358,0.0009124244374920396,0.0,7.187244707945816e-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.0002949557944380286,0.0001002208674976713,0.0002949557944380286,0.00014031246038962025,3.734503458951047e-05,0.00010873328624742136,0.0,8.56501321147654e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014031246038962027,3.734503458951048e-05,0.00010873328624742137,0.0,8.565013211476541e-06 +103361,50.0,the Greater Atlanta and Macon Area,G1300670031208,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,161717.0,,4268.0,,9.325022323477118,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,699376.6742607838,0.0,0.0,0.041496362206801286,0.0036180938941376296,0.0,0.045114456100938914,0.01893772000980295,0.005141129705740611,0.020560364767533867,0.0,0.0004752416178614921,0.015319626115665319,0.005141129705740611,0.020560364767533867,0.0,0.0004752416178614921,0.0036180938941376296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024173920949987514,0.0,0.0,0.004945043294940266,0.0017098956993350227,0.005186782504440141,0.001825610978300312,0.0006126587398936856,0.00245013992861657,0.0,5.663364812969929e-05,0.00024173920949987514,0.0,0.0,0.0,0.0,0.0,0.0021772585399469696,0.0005910726608590971,0.0023638130541250774,0.0,5.463824950899748e-05 +103362,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302290960300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,15624.0,,1372.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0007556502733612304,0.00023338474737215502,0.0,0.0009890350207333854,0.0004213974998703949,0.00018058373106323778,0.00020074315199783784,0.0,0.00018631063780191482,0.0004103160239828619,0.00018058373106323778,7.526538422812415e-05,0.0,8.948513408700649e-05,1.1081475887533001e-05,0.00012547776776971367,9.682550371490833e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5593465577895526e-05,0.0,0.0,9.004904238680303e-05,4.281835516035179e-05,0.00010564250796469856,4.889638280849844e-05,2.1519732905736614e-05,8.969196483539708e-06,0.0,1.0663730189028246e-05,7.404023388425666e-07,8.383723763182149e-06,6.4693394758708085e-06,0.0,0.0,0.0,4.50110337886234e-05,1.928881975584337e-05,2.144212246201852e-05,0.0,1.9900531958213264e-05 +103363,50.0,the Greater Atlanta and Macon Area,G1300150960803,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,16403.0,,1594.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014922821062257978,0.0004693054595044709,0.0,0.0019615568761239713,0.0009792132681408028,0.00044328067336401895,0.0005390322450128517,0.0,0.0,0.0005099078086363318,0.00044328067336401895,0.0005390322450128517,0.0,0.0,0.0004693054595044709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.135550960081518e-05,0.0,0.0,0.00017783131578266213,8.82603163261847e-05,0.00020918682538347734,6.0764366308050004e-05,5.2824586635779356e-05,6.423504844024017e-05,0.0,0.0,3.135550960081518e-05,0.0,0.0,0.0,0.0,0.0,0.00010442649786455052,4.7272897331481104e-05,5.748415734769692e-05,0.0,0.0 +103364,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,45125.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006312852015437462,0.0,0.0,0.006312852015437462,0.0016697294098391156,0.001929332789511383,0.0027137591264806667,0.0,0.0,0.0016697294098391156,0.001929332789511383,0.0027137591264806667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007522886235962862,0.00026148548098843137,0.0007522886235962862,0.00019897796375305374,0.00022991432479826994,0.0003233926778324026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019897796375305374,0.00022991432479826994,0.0003233926778324026,0.0,0.0 +103365,46.0,the Tallahassee-Valdosta Area,G1301850011301,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,5891.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010773423425282185,0.0,0.0,0.0010773423425282185,0.0004122120555167082,0.0002592039690989895,0.0003644900739691278,0.0,4.143624394339302e-05,0.0004122120555167082,0.0002592039690989895,0.0003644900739691278,0.0,4.143624394339302e-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.00012838622580658022,3.58556631734367e-05,0.00012838622580658022,4.912305768616581e-05,3.088917792705531e-05,4.3436058431567557e-05,0.0,4.937931761791547e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.912305768616581e-05,3.088917792705531e-05,4.3436058431567557e-05,0.0,4.937931761791547e-06 +103366,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,67498.0,,4537.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005813255914517159,0.0013356116660760249,0.0,0.0071488675805931835,0.0022889535961078643,0.002630467534988701,0.002229415759890321,0.0,0.0,0.0009533419300318393,0.002630467534988701,0.002229415759890321,0.0,0.0,0.0013356116660760249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.92376016387237e-05,0.0,0.0,0.0006927550424106615,0.0002847820524275058,0.0007819926440493851,0.00011360800881340923,0.0003134679903236844,0.00026567538604948816,0.0,0.0,8.92376016387237e-05,0.0,0.0,0.0,0.0,0.0,0.0002503815960426861,0.00028773875576545527,0.00024386893519957216,0.0,0.0 +103367,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,7524.0,,1367.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0006703223807544243,0.0004024328073817766,0.0,0.0010727858777424984,0.000564504618239945,0.0002503044289640639,0.00025791545132589425,0.0,0.0,0.0001620718108581684,0.0002503044289640639,0.00025791545132589425,0.0,0.0,0.0004024328073817766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6888777477761358e-05,0.0,0.0,7.988277815315474e-05,5.24461715554402e-05,0.0001067715556309161,1.931420892898133e-05,2.9828950582232852e-05,3.073596134049595e-05,0.0,0.0,2.6888777477761358e-05,0.0,0.0,0.0,0.0,0.0,5.618365929382856e-05,2.4912141198242126e-05,2.566964622732061e-05,0.0,0.0 +103368,50.0,the Greater Atlanta and Macon Area,G1301170130602,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,38856.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.00378178811524702,0.0,0.0,0.003781788115247021,0.001431639444181537,0.0013161544556832816,0.0010339635257759043,0.0,0.0,0.001431639444181537,0.0013161544556832816,0.0010339635257759043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004506673473074519,0.00017621625149403424,0.0004506673473074519,0.00017060531445661523,0.0001568432231298935,0.00012321515250826007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001706053144566152,0.00015684322312989348,0.00012321515250826004,0.0,0.0 +103369,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8827.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002114158218924176,0.0,0.0,0.0021141582189241766,0.0010496354728255506,0.0005657163843768628,0.0004315655107717061,0.0,6.732355802379624e-05,0.0010496354728255506,0.0005657163843768628,0.0004315655107717061,0.0,6.732355802379624e-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.00025193849221896855,7.615891076804274e-05,0.00025193849221896855,0.00012508220815080705,6.741488485946894e-05,5.142848964864165e-05,0.0,8.022765537369548e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012508220815080702,6.741488485946893e-05,5.142848964864164e-05,0.0,8.022765537369548e-06 +103370,50.0,the Greater Atlanta and Macon Area,G1300630040416,ComStock 90.1-2004,gen3_t5_cfl,1001_5000,NaturalGas,6677.0,,428.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013265387557047515,0.0003397606589210749,0.0,0.0016662994146258265,0.000996041289042479,0.000227609866930574,0.00039922704493963696,0.0,4.3338506639397086e-05,0.0006997018438345408,0.000227609866930574,0.00039922704493963696,0.0,0.0,0.0002963394452079384,0.0,4.3338506639397086e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.269812952554784e-05,0.0,0.0,0.00015808597250369617,7.201770844956127e-05,0.000180784102029244,8.338470773622232e-05,2.7124670885352697e-05,4.7576593882121174e-05,0.0,0.0,1.9797321833017986e-05,0.0,2.8952823445440767e-06,0.0,0.0,0.0,0.00010806487024064054,2.469438868240827e-05,4.3313885962930505e-05,0.0,4.7019838915632025e-06 +103371,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,63997.0,,5117.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005702036781294284,0.0015063379459101455,0.0,0.0072083747272044295,0.0025245577036553286,0.0018623987581760939,0.002821418265373008,0.0,0.0,0.0010182197577451831,0.0018623987581760939,0.002821418265373008,0.0,0.0,0.0015063379459101455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010064445721368955,0.0,0.0,0.0006795005729024572,0.00030672861144479305,0.0007801450301161468,0.00012133925740328278,0.00022193841809386387,0.00033622289740531066,0.0,0.0,0.00010064445721368954,0.0,0.0,0.0,0.0,0.0,0.00027322679803467453,0.00020156293065649855,0.0003053553014249738,0.0,0.0 +103372,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,38286.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0031222541542036985,0.0,0.0,0.0031222541542036985,0.0020266784224839906,0.0009253013332716716,0.00017027439844803673,0.0,0.0,0.0020266784224839906,0.0009253013332716716,0.00017027439844803673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003720732715138552,8.577571088110975e-05,0.0003720732715138552,0.00024151553131730133,0.00011026645404346597,2.029128615308792e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024151553131730133,0.00011026645404346597,2.029128615308792e-05,0.0,0.0 +103373,50.0,the Greater Atlanta and Macon Area,G1302070050301,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,8459.0,,235.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018379165926348895,0.00018658715835587753,0.0,0.0020245037509907674,0.0012411023485320472,0.0003228884158782561,0.0004184150860471562,0.0,4.218060760704679e-05,0.0010545151901761695,0.0003228884158782561,0.0004184150860471562,0.0,4.218060760704679e-05,0.00018658715835587753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2466134441746117e-05,0.0,0.0,0.00021902366314394275,8.891278206892914e-05,0.00023148979758568888,0.00012566608338967104,3.847846192574711e-05,4.986233065634085e-05,0.0,5.026643335586842e-06,1.2466134441746117e-05,0.0,0.0,0.0,0.0,0.0,0.0001419125705764706,3.6920343564610225e-05,4.784324233948851e-05,0.0,4.823098160335866e-06 +103374,81.0,the Columbus-Albany Area,G1300950000502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,115088.0,,,,9.325022323477118,Office,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,699376.6742607838,0.0,0.0,0.037179149622448955,0.0,0.0,0.03717923800660702,0.02683935212407396,0.006183532465840747,0.0037745338538948997,0.0,0.00038173117863934985,0.02683935212407396,0.006183532465840747,0.0037745338538948997,0.0,0.00038173117863934985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.046280285275545e-09,0.0,0.0,0.004430571193217746,0.0011927694872118917,0.004430572239498032,0.003198396455354884,0.0007368802431925048,0.0004498042889822921,0.0,4.549020568806537e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0031983896072830436,0.0007368786654616283,0.0004498033259084117,0.0,4.549010828919661e-05 +103375,50.0,the Greater Atlanta and Macon Area,G1301210000600,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,9925.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002005315709883248,0.0,0.0,0.002005315709883248,0.0011652599619131022,0.0003426554065019506,0.00043015949051813793,0.0,6.724085095005695e-05,0.0011652599619131022,0.0003426554065019506,0.00043015949051813793,0.0,6.724085095005695e-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.0002389672021267409,6.034224851832158e-05,0.0002389672021267409,0.0001388603856621155,4.083317324140425e-05,5.1260761290983236e-05,0.0,8.012881932237911e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001388603856621155,4.083317324140425e-05,5.1260761290983236e-05,0.0,8.012881932237911e-06 +103376,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,151895.0,,3678.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013031666142980935,0.0010827599997892518,0.0,0.014114426142770189,0.0031143505574845803,0.005787814230896362,0.005212292043995544,0.0,0.0,0.002031590557695329,0.005787814230896362,0.005212292043995544,0.0,0.0,0.0010827599997892518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.23432235901701e-05,0.0,0.0,0.0015529587086663009,0.0004982618709250029,0.0016253019322564712,0.0002421007578310705,0.0006897227426942995,0.0006211388653625667,0.0,0.0,7.23432235901701e-05,0.0,0.0,0.0,0.0,0.0,0.00035862315106565524,0.0006664773727152814,0.0006002049424397149,0.0,0.0 +103377,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,126126.0,,8196.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011129708482287106,0.002412417882243522,0.0,0.013542126364530628,0.006272525872762281,0.0028645678518275774,0.004405001950334471,0.0,0.0,0.003860107990518759,0.0028645678518275774,0.004405001950334471,0.0,0.0,0.002412417882243522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016118356727938592,0.0,0.0,0.001326307155362613,0.0005485154499801267,0.001487490722641999,0.0004600020617292353,0.0003413653506690848,0.0005249360857396231,0.0,0.0,0.00016118356727938592,0.0,0.0,0.0,0.0,0.0,0.0006889851558100707,0.0003146491170790171,0.0004838530787531567,0.0,0.0 +103378,50.0,the Greater Atlanta and Macon Area,G1302230120204,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,57464.0,,,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.013490085300105552,0.0,0.0,0.013490085300105554,0.006477919053185894,0.0010435084054993503,0.00413958692841021,0.0004182119700304255,0.0014107780821966036,0.006477919053185894,0.0010435084054993503,0.00413958692841021,0.0004182119700304255,0.0014107780821966036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016075894992055666,0.000436276737917802,0.0016075894992055666,0.0007719621051264833,0.00012435304282326325,0.0004933072200150438,4.983757748794403e-05,0.0001681199177169682,0.0,0.0,0.0,0.0,0.0,0.0,0.0007719621051264832,0.00012435304282326325,0.0004933072200150437,4.9837577487944025e-05,0.0001681199177169682 +103379,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030201,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,302808.0,,9142.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01558713306195824,0.0015545980893102297,0.0,0.01714173115126847,0.007066754690467606,0.0023362410725132577,0.004332325161182803,0.0,0.0034064102271048045,0.007066754690467606,0.0023362410725132577,0.0027777270718725724,0.0,0.0034064102271048045,0.0,0.0015545980893102297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010386932154847378,0.0,0.0,0.001857489234287406,0.0005754491919291951,0.0019613585558358798,0.0008421318215939135,0.00027840544015656556,0.00033101649362219363,0.0,0.00040593547891473335,0.0,0.00010386932154847376,0.0,0.0,0.0,0.0,0.0008085787632433096,0.0002673129321439621,0.0004957050689084083,0.0,0.0003897617915401998 +103380,46.0,the Tallahassee-Valdosta Area,G1301850010700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,77479.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.0064910972488145206,0.0,0.0,0.0064910972488145206,0.002321392509964536,0.001751946865110661,0.0024177578737393226,0.0,0.0,0.002321392509964536,0.001751946865110661,0.0024177578737393226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007735328057796676,0.00025132593380563134,0.0007735328057796676,0.00027663632090502404,0.0002087764706334422,0.00028812001424120115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027663632090502404,0.0002087764706334422,0.00028812001424120115,0.0,0.0 +103381,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,238345.0,,11849.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.023955692883860836,0.003487689618096135,0.0,0.02744338250195697,0.009106618945536238,0.007053821869889198,0.011282941686531536,0.0,0.0,0.005618929327440105,0.007053821869889198,0.011282941686531536,0.0,0.0,0.003487689618096135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023302676020408428,0.0,0.0,0.0028547532422985075,0.0010168276809925164,0.0030877800025025915,0.0006695968592318424,0.0008405902075672682,0.0013445661754993973,0.0,0.0,0.00023302676020408428,0.0,0.0,0.0,0.0,0.0,0.0010246271890293722,0.0007936576371191175,0.001269495176354102,0.0,0.0 +103382,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,58730.0,,12983.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004085004349734485,0.0022078377951092352,0.0,0.00629284214484372,0.0025240942517587173,0.0015403074180056673,0.0008346213031261455,0.0,0.0013938369023146107,0.0018989394384490755,0.0015403074180056673,0.00043678745358300075,0.0,0.0002089877700581624,0.0006251548133096417,0.00039783384954314476,0.0011848491322564484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001475145537589036,0.0,0.0,0.0004868027487620679,0.00025771072619605834,0.0006343173025209715,0.0002262932568063953,0.00018355571275523833,5.205118889109856e-05,0.0,2.4904703205170642e-05,4.1769116155129426e-05,2.6580885115539127e-05,7.916455248823501e-05,0.0,0.0,0.0,0.00025442822499467633,0.00015526269751466357,8.412967009816238e-05,0.0,0.00014049849713055972 +103383,50.0,the Greater Atlanta and Macon Area,G1301210010604,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,12646.0,,2242.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00436915069154176,0.0017391537222378945,0.0,0.006108385274562723,0.00242266992151616,0.0006589345212254326,0.00216836275876564,0.00041069191720505244,0.00044780701663350663,0.00242266992151616,0.0006589345212254326,0.0008769351923781834,0.00041069191720505244,0.0,0.0,0.0012914275663874564,0.00044780701663350663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011620188126307001,0.0,0.0,0.0005206663557336237,0.0002613713734926293,0.0006368682369966937,0.00028870661788416523,7.85244227208058e-05,0.00010450329665077172,4.89416545587155e-05,0.0,0.0,8.628697441196258e-05,2.992030957945331e-05,0.0,0.0,0.0,0.00025259073427573984,6.870137490781362e-05,0.00022607633691593202,4.281927637216658e-05,4.668894517603042e-05 +103384,50.0,the Greater Atlanta and Macon Area,G1300890021705,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,NaturalGas,33774.0,,4120.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.00289178953261364,0.0012128839304915116,0.0,0.004104673463105152,0.0019273072754957348,0.0011428809385264514,0.0010344852490829655,0.0,0.0,0.000714423345004223,0.0011428809385264514,0.0010344852490829655,0.0,0.0,0.0012128839304915116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.103736071891828e-05,0.0,0.0,0.000344608485659612,0.00017007588099132313,0.00042564584637853035,8.51363296896867e-05,0.00013619472132153152,0.0001232774346483938,0.0,0.0,8.103736071891828e-05,0.0,0.0,0.0,0.0,0.0,0.00019985763639509903,0.00011851430540371794,0.00010727390457971337,0.0,0.0 +103385,46.0,the Tallahassee-Valdosta Area,G1300270960400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,32163.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006614415515227371,0.0,0.0,0.006614415515227371,0.004388602746755131,0.0013399373016505195,0.0007636344118350255,0.0,0.00012224105498669636,0.004388602746755131,0.0013399373016505195,0.0007636344118350255,0.0,0.00012224105498669636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007882224716933492,0.00016846965482929658,0.0007882224716933492,0.0005229782278364532,0.0001596767982582333,9.100030111217013e-05,0.0,1.4567144486492735e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005229782278364532,0.0001596767982582333,9.100030111217013e-05,0.0,1.4567144486492735e-05 +103386,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,36096.0,,11324.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.008439359068079173,0.008782532231422004,0.0,0.017221810438718108,0.002786705166890672,0.0006429240861778641,0.012929477491091449,0.0003180254598085196,0.0005446782347496029,0.002786705166890672,0.0006429240861778641,0.004146945259669446,0.0003180254598085196,0.0005446782347496029,0.0,0.008782532231422004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005867956075257718,0.0,0.0,0.0010056978278735855,0.0008496710461410804,0.0015924934353993574,0.00033208485510072315,7.661569459727389e-05,0.0004941813479337431,3.7898318054468384e-05,6.490797620516123e-05,0.0,0.0005867956075257718,0.0,0.0,0.0,0.0,0.0002576854332741797,5.9450914893160846e-05,0.0011955832460805726,2.9407678062482906e-05,5.036616308896133e-05 +103387,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,NaturalGas,10803.0,,198.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0023857682490840623,0.00015714344010468408,0.0,0.002542911689188746,0.0010636956753612328,0.0004219714902179465,0.0009806577733269682,0.0,7.666945735633798e-05,0.0009832216926128866,0.0004219714902179465,0.0009806577733269682,0.0,0.0,8.047398274834611e-05,0.0,7.666945735633798e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0498804315133151e-05,0.0,0.0,0.000284311880092831,8.968360140543564e-05,0.00029481068440796417,0.000117170478768064,5.028632088447701e-05,0.0001168649366380329,0.0,0.0,5.376492946644503e-06,0.0,5.122311368488648e-06,0.0,0.0,0.0,0.00012331881259906418,4.8920968966676426e-05,0.00011369187162639795,0.0,8.88861980245179e-06 +103388,50.0,the Greater Atlanta and Macon Area,G1300770170200,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,62103.0,,6691.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0031967841640355202,0.0011379168655775687,0.0,0.00433470102961309,0.0019629460431754655,0.0007443205724138167,0.0010206482551453394,0.0,0.0006067506981556269,0.0017831069872918698,0.0007443205724138167,0.0005650843488185028,0.0,0.00010425452514991049,0.00017983905588359555,0.0004555639063268366,0.0005024961730057166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.602890501298217e-05,0.0,0.0,0.00038095379175266106,0.00019455823988765342,0.0004569826967656432,0.00021248896799213316,8.869905811301559e-05,6.733986853549118e-05,0.0,1.2423784223547684e-05,1.2015786839101234e-05,3.043809790435444e-05,3.3573835631171076e-05,0.0,0.0,0.0,0.0002069421559382242,7.846945385992948e-05,0.00010760109841464601,0.0,6.396625013198301e-05 +103389,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,124277.0,,1480.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.013439890785346915,0.0005499951270209431,0.0,0.013989885912367859,0.00838729006758618,0.0015722947913998035,0.0038305141804130163,0.0,0.00019978687296885885,0.00838729006758618,0.0015722947913998035,0.003280519053392073,0.0,0.00019978687296885885,0.0,0.0005499951270209431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6748703176078286e-05,0.0,0.0,0.001601603806897329,0.0005105443200502057,0.0016383525100734074,0.0009994958974252886,0.00018736709722494714,0.00039093262649428183,0.0,2.3808185752811383e-05,0.0,3.6748703176078286e-05,0.0,0.0,0.0,0.0,0.0009822337237786513,0.00018413110258375337,0.00044859068627595735,0.0,2.3396997435045278e-05 +103390,50.0,the Greater Atlanta and Macon Area,G1300670031116,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,16876.0,,693.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.004174556839917803,0.0005500020403663943,0.0,0.004724558880284197,0.001361027605454043,0.00094699599431507,0.002213324000337606,0.0,0.00020321128017747832,0.001014236845265127,0.00094699599431507,0.002213324000337606,0.0,0.0,0.00034679076018891597,0.0,0.00020321128017747832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.674686467048404e-05,0.0,0.0,0.000497471838917571,0.0001875438449691349,0.000534218703588055,0.00012086415106086644,0.00011285122153200039,0.00026375646632470414,0.0,0.0,2.3169865197494674e-05,0.0,1.3576999472989365e-05,0.0,0.0,0.0,0.0001538950876382087,0.00010707940893640554,0.00025026655568097364,0.0,2.297765133246711e-05 +103391,50.0,the Greater Atlanta and Macon Area,G1301350050319,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,52796.0,,5369.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0047040414740992876,0.0015805147243316935,0.0,0.006284556198430981,0.0024851522491690786,0.0015430734046484962,0.0022563305446134064,0.0,0.0,0.000904637524837385,0.0015430734046484962,0.0022563305446134064,0.0,0.0,0.0015805147243316935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001056012669659911,0.0,0.0,0.0005605714515271505,0.0002538910518306004,0.0006661727184931416,0.00010780389016470605,0.00018388504927507619,0.00026888251208736824,0.0,0.0,0.0001056012669659911,0.0,0.0,0.0,0.0,0.0,0.0002634299984637956,0.0001635681776647646,0.00023917454236458148,0.0,0.0 +103392,50.0,the Greater Atlanta and Macon Area,G1300890023410,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,81735.0,,1455.0,,9.325022323477118,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.022657102149071556,0.0012330473890246744,0.0,0.02389014953809623,0.014829977880040868,0.0025374207935996975,0.006204656279615883,0.0,0.00031791781652367243,0.013596930491016193,0.0025374207935996975,0.006204656279615883,0.0,0.00031791781652367243,0.0012330473890246744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.238466477523465e-05,0.0,0.0,0.002699998806524357,0.001003767681644581,0.002782383471299591,0.001620317367004621,0.00030237905400669313,0.0007393957285284706,0.0,3.7885591879273926e-05,8.238466477523465e-05,0.0,0.0,0.0,0.0,0.0,0.0017271840541376712,0.00029552254014088086,0.0007226297621104874,0.0,3.702652746130999e-05 +103393,50.0,the Greater Atlanta and Macon Area,G1300890022500,ComStock 90.1-2004,gen5_led,5001_10000,Electricity,12663.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002778792263493251,0.0,0.0,0.002778792263493251,0.001904330372847553,0.0003713547610894903,0.0004238737529139506,0.0,7.92333766422565e-05,0.001904330372847553,0.0003713547610894903,0.0004238737529139506,0.0,7.92333766422565e-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.00033114129230232375,0.0001096593531676712,0.00033114129230232375,0.00022693399176323002,4.425336039161359e-05,5.0511909132966525e-05,0.0,9.442031014513546e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00022693399176323002,4.425336039161359e-05,5.0511909132966525e-05,0.0,9.442031014513546e-06 +103394,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Electricity,1889.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00045348288531262264,0.0,0.0,0.00045348288531262253,0.00019659471427833374,0.000141511803167955,8.824844767984103e-05,0.0,2.7127920186492836e-05,0.00019659471427833374,0.000141511803167955,8.824844767984103e-05,0.0,2.7127920186492836e-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,5.403823836832232e-05,1.7049040198256388e-05,5.403823836832232e-05,2.34267540765096e-05,1.686292647240552e-05,1.0515922002370949e-05,0.0,3.232635817036243e-06,0.0,0.0,0.0,0.0,0.0,0.0,2.3426754076509604e-05,1.6862926472405527e-05,1.0515922002370953e-05,0.0,3.2326358170362437e-06 +103395,35.0,Eastern Counties in South Carolina and Georgia,G1302450010106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,225893.0,,29390.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01162789016577619,0.004998082502144364,0.0,0.01662597266792056,0.00722338470325235,0.003405151371443981,0.0024187227138393434,0.0,0.0035787138793848777,0.006385873351214737,0.003405151371443981,0.001340752200222973,0.0,0.0004961132428944974,0.0008375113520376141,0.00107797051361637,0.00308260063649038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003339430271464603,0.0,0.0,0.0013856736604029422,0.0006358685037277721,0.0017196166875494026,0.000760992439324151,0.0004057854432597243,0.0001597749017654442,0.0,5.912087605362268e-05,5.5957674978148515e-05,7.202376838262074e-05,0.000205961583785691,0.0,0.0,0.0,0.0007471113494772396,0.00035219323638519906,0.00025016737512735976,0.0,0.00037014472655960343 +103396,50.0,the Greater Atlanta and Macon Area,G1301210011800,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,98768.0,,20430.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00880015253704738,0.006013566974822263,0.0,0.014813719511869649,0.007705699797258703,0.002864445093402387,0.004243543931602257,0.0,0.0,0.0016921328224364385,0.002864445093402387,0.004243543931602257,0.0,0.0,0.006013566974822263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004017921824661704,0.0,0.0,0.001048697306385469,0.000693051230110396,0.0014504894888516392,0.00020164822433077102,0.0003413504301310707,0.0005056949947020821,0.0,0.0,0.0004017921824661704,0.0,0.0,0.0,0.0,0.0,0.0007545057506465029,0.0002804729423993548,0.00041550779082439774,0.0,0.0 +103397,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,5604.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013537493829649837,0.0,0.0,0.001353749382964984,0.0007598298864430174,0.00026383556522839065,0.0002841815053682603,0.0,4.581971885157631e-05,0.0007598298864430174,0.00026383556522839065,0.0002841815053682603,0.0,4.581971885157631e-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.00016132323347147954,4.757058542776575e-05,0.00016132323347147954,9.054719855220446e-05,3.1440683942694265e-05,3.386526333137853e-05,0.0,5.460231631427155e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.054719855220445e-05,3.144068394269426e-05,3.386526333137852e-05,0.0,5.460231631427154e-06 +103398,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,17974.0,,71.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0008758089327049281,1.20211850427958e-05,0.0,0.0008878301177477242,0.0006392504506385837,0.0001371443455841084,3.156004332769399e-05,0.0,7.989300855875793e-05,0.0006272292655957879,0.0001371443455841084,3.156004332769399e-05,0.0,7.989300855875793e-05,1.20211850427958e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.029552959376818e-07,0.0,0.0,0.00010436946112833182,3.03742746069753e-05,0.0001051724164242695,7.474641786533053e-05,1.634338371179137e-05,3.7609855212655007e-06,0.0,9.520786943158622e-06,8.029552959376818e-07,0.0,0.0,0.0,0.0,0.0,7.572565207014842e-05,1.624612855057963e-05,3.7386048894675816e-06,0.0,9.464131253899394e-06 +103399,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6675.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013081777853346254,0.0,0.0,0.0013081777853346257,0.000866273890345506,0.00028757249539157194,0.00011661697397242347,0.0,3.7631718551384876e-05,0.000866273890345506,0.00028757249539157194,0.00011661697397242347,0.0,3.7631718551384876e-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.00015588853101836946,5.051986294254677e-05,0.00015588853101836946,0.00010322921375016766,3.426847204595503e-05,1.3896619380154325e-05,0.0,4.4843700836668205e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010322921375016764,3.426847204595502e-05,1.3896619380154323e-05,0.0,4.48437008366682e-06 +103400,50.0,the Greater Atlanta and Macon Area,G1300450910104,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,185357.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.016515059216195397,0.0,0.0,0.016515059216195397,0.008470945130291924,0.003154768768978655,0.004889376006531114,0.0,0.0,0.008470945130291924,0.003154768768978655,0.004889376006531114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019680677998101313,0.0006331836593417716,0.0019680677998101313,0.001009466216659839,0.0003759477183094152,0.0005826575220621533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001009466216659839,0.0003759477183094152,0.0005826575220621533,0.0,0.0 +103401,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7686.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001628171453632006,0.0,0.0,0.0016281714536320057,0.0009014243966847116,0.00039087363049196687,0.000289474758087576,0.0,4.631596129401216e-05,0.0009014243966847116,0.00039087363049196687,0.000289474758087576,0.0,4.631596129401216e-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.00019402178720603222,6.594648650564998e-05,0.00019402178720603222,0.00010741864567502516,4.657863285257077e-05,3.4495390390181486e-05,0.0,5.5192624624290385e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010741864567502517,4.6578632852570777e-05,3.449539039018149e-05,0.0,5.519262462429039e-06 +103402,35.0,Eastern Counties in South Carolina and Georgia,G1300730030603,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,5610.0,,55.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,4088.1751280535877,0.0,0.0,0.0004986147170991614,2.030417405657138e-05,0.0,0.0005189188911557327,0.0002961929513138008,6.86622069241307e-05,0.0001344182820653552,0.0,1.9645450852445972e-05,0.0002961929513138008,6.86622069241307e-05,0.00011411410800878383,0.0,1.9645450852445972e-05,0.0,2.030417405657138e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3567360341382e-06,0.0,0.0,5.9419431407331836e-05,2.093938316025463e-05,6.077616744147003e-05,3.529702624165717e-05,8.182408490347529e-06,1.3598867383788642e-05,0.0,2.3411292915384855e-06,0.0,1.3567360341382e-06,0.0,0.0,0.0,0.0,3.469033930126918e-05,8.041768869943615e-06,1.574316941864244e-05,0.0,2.3008898516147926e-06 +103403,35.0,Eastern Counties in South Carolina and Georgia,G1302450000700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6241.0,,138.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001193132245763249,0.00010958687270458232,0.0,0.0013027191184678312,0.0005407388481075919,0.0003308282949572296,0.00038797888291109117,0.0,4.317309249191848e-05,0.00043115197540300956,0.0003308282949572296,0.00038797888291109117,0.0,4.317309249191848e-05,0.00010958687270458232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.322400418049804e-06,0.0,0.0,0.00014218120406347696,4.9280633290567694e-05,0.00014950360448152676,5.137880332614067e-05,3.94235974111956e-05,4.623402386397966e-05,0.0,5.1447794621610266e-06,7.322400418049804e-06,0.0,0.0,0.0,0.0,0.0,6.205666726558452e-05,3.796675880427319e-05,4.452551638771139e-05,0.0,4.954662023957651e-06 +103404,50.0,the Greater Atlanta and Macon Area,G1301430010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,4039.0,,352.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0009699058537408582,0.00027930178801764113,0.0,0.0012492076417584992,0.0007316267742979134,0.00022206849299004043,0.0002630912015647369,0.0,3.250387997954781e-05,0.0004848288662598201,0.00022206849299004043,0.0002630912015647369,0.0,0.0,0.00024679790803809333,0.0,3.250387997954781e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8659673851480734e-05,0.0,0.0,0.00011558410907762024,4.399035656885234e-05,0.00013424378292910098,5.7777270181036045e-05,2.6464000415571785e-05,3.135269471952843e-05,0.0,0.0,1.6488145328048124e-05,0.0,2.171528523432611e-06,0.0,0.0,0.0,7.862291471072744e-05,2.3864178837701017e-05,2.8272608149991408e-05,0.0,3.4929691930042824e-06 +103405,50.0,the Greater Atlanta and Macon Area,G1301210011000,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,39361.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.00541539585847374,0.0,0.0,0.00541539585847374,0.002135382806194159,0.001212055311121474,0.0020679577411581067,0.0,0.0,0.002135382806194159,0.001212055311121474,0.0020679577411581067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006453438375212715,0.00021480708914598182,0.0006453438375212715,0.00025447006474512237,0.00014443864238349908,0.00024643513039264995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025447006474512237,0.00014443864238349908,0.00024643513039264995,0.0,0.0 +103406,50.0,the Greater Atlanta and Macon Area,G1300590150700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,120627.0,,11059.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005519408318978178,0.001880748087632101,0.0,0.00740015640661028,0.003119674822219711,0.0015910517123898583,0.0014097587668698184,0.0,0.0012796533747694708,0.003119674822219711,0.0015910517123898583,0.000618151320548721,0.0,0.0001905127334584674,0.0,0.0007916074463210974,0.0010891406413110034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012566025923744638,0.0,0.0,0.0006577374269341728,0.0002966842142275733,0.0007833976861716192,0.00037176573499421656,0.00018960261661167608,7.366392111916594e-05,0.0,2.2703041315552954e-05,0.0,5.289044161370981e-05,7.276981762373656e-05,0.0,0.0,0.0,0.000330255997718061,0.00016843241704354007,0.0001492403261962748,0.0,0.00013546706823664323 +103407,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,31069.0,,306.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007419155342710835,0.0002429933826460852,0.0,0.007662148725356918,0.0046274607757142506,0.0012059518421928418,0.0015857427248037413,0.0,0.0002429933826460852,0.0046274607757142506,0.0012059518421928418,0.0015857427248037413,0.0,0.0,0.0,0.0,0.0002429933826460852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6233856395851886e-05,0.0,0.0,0.0008841298711518705,0.00029173070392081424,0.0009003637275477224,0.0005514477201791129,0.00014371151399341639,0.00018897063697934105,0.0,0.0,0.0,0.0,1.6233856395851886e-05,0.0,0.0,0.0,0.0005437636337330268,0.00014170898201003155,0.0001863374468197198,0.0,2.8553664984944282e-05 +103408,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,12935.0,,1377.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004387362140649041,0.0010923123228750331,0.0,0.0054796744635240745,0.002776972707870986,0.0012647565716214892,0.0012758393195025563,0.0,0.00016218857160278183,0.001684660384995953,0.0012647565716214892,0.0012758393195025563,0.0,0.00016218857160278183,0.0010923123228750331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.298115259733055e-05,0.0,0.0,0.0005228359817597797,0.00019739655248899804,0.0005958171343571103,0.00020075868781391888,0.00015071932122590444,0.00015204003722409115,0.0,1.9327791585404037e-05,7.298115259733055e-05,0.0,0.0,0.0,0.0,0.0,0.0003019463896998571,0.0001375197817277286,0.00013872483343787216,0.0,1.7635122414862392e-05 +103409,35.0,Eastern Counties in South Carolina and Georgia,G1302450010504,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,71834.0,,2860.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00572797487636899,0.0008332085797764079,0.0,0.0065611530825459615,0.004214428042786379,0.0019061863535144287,0.0004405690598445902,0.0,0.0,0.0033812194630099706,0.0019061863535144287,0.0004405690598445902,0.0,0.0,0.0008332085797764079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5669280331402506e-05,0.0,0.0,0.0006825906699492875,0.00019182427231026762,0.0007382599502806901,0.00040293278310686294,0.0002271562023537383,5.250168448868629e-05,0.0,0.0,5.5669280331402506e-05,0.0,0.0,0.0,0.0,0.0,0.00047420680453346553,0.00021448379954964024,4.957276383038867e-05,0.0,0.0 +103410,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,110344.0,,7250.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.011038069317882166,0.0021341552219422515,0.0,0.013172224539824416,0.004681668751108262,0.003278294434326909,0.005212261354389245,0.0,0.0,0.0025475135291660104,0.003278294434326909,0.005212261354389245,0.0,0.0,0.0021341552219422515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014259152310446994,0.0,0.0,0.0013153868799576514,0.0005283966624001829,0.0014579784030621214,0.00030358260817866666,0.0003906684550862358,0.0006211358166927488,0.0,0.0,0.00014259152310446994,0.0,0.0,0.0,0.0,0.0,0.0005181943193247181,0.00036286068990675586,0.0005769233938306475,0.0,0.0 +103411,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,137553.0,,9009.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0070806021027366665,0.0015321337213910226,0.0,0.00861273582412769,0.0033498326438134163,0.0023112235325495633,0.0015758036015686128,0.0,0.0013758937765575177,0.002825776351320916,0.0023112235325495633,0.0005677261726700909,0.0,0.0013758937765575177,0.0005240562924925007,0.001008077428898522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010236854233083139,0.0,0.0,0.0008437808596009171,0.000327635326101287,0.0009461494019317483,0.00033674198382591716,0.00027542377762913633,6.765476594262504e-05,0.0,0.0001639624450941176,3.5014488626391675e-05,6.735405370443972e-05,0.0,0.0,0.0,0.0,0.0003679948180503396,0.000253898738763862,0.00017310941211145798,0.0,0.00015114838076940067 +103412,50.0,the Greater Atlanta and Macon Area,G1301350050542,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,43626.0,,2345.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.009815528735122446,0.001818397289645052,0.0,0.0116339260247675,0.005828283522013343,0.001601124365539918,0.0026885401762454793,0.0004101258917235727,0.0011058520692451854,0.005828283522013343,0.001601124365539918,0.0019760758166286812,0.0004101258917235727,0.0,0.0,0.0007124643596167978,0.0011058520692451854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012149376747038924,0.0,0.0,0.0011697022178774393,0.0004228269138913049,0.0012911959853478287,0.0006945480316025479,0.00019080365123563432,0.00023548606781962687,4.887410328100283e-05,0.0,0.0,4.760234725994305e-05,7.388601760605847e-05,0.0,0.0,0.0,0.0006468544040138785,0.00017770143530451468,0.0002983887188747946,4.551798797356185e-05,0.00012273343918107885 +103413,50.0,the Greater Atlanta and Macon Area,G1301130140203,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,3256.0,,163.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000620633881339763,0.00012894032795958025,0.0,0.0007496569163730825,0.00036688857910756773,0.00012894032795958028,0.00019766990623694473,0.0,5.6075395995250426e-05,0.0002940236471432379,0.00012894032795958028,0.00019766990623694473,0.0,0.0,7.286493196432983e-05,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.616261191479791e-06,0.0,0.0,7.396253404919902e-05,3.475787827465112e-05,8.257879524067882e-05,3.5039553377518994e-05,1.536615013095699e-05,2.355683054072303e-05,0.0,0.0,4.869099493068439e-06,0.0,3.7471616984113527e-06,0.0,0.0,0.0,4.041477666456876e-05,1.420347989631711e-05,2.1774417544706793e-05,0.0,6.177010500130211e-06 +103414,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,16682.0,,2395.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0008586991339345774,0.0004073727839871331,0.0,0.0012660719179217103,0.0004909182469984221,0.00010099213864862077,0.0005021592961387355,0.0,0.0001720199664973523,0.00047935805135254764,0.00010099213864862077,0.00010632897743605667,0.0,0.0001720199664973523,1.1560195645874426e-05,0.00039583031870267884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7218734941916782e-05,0.0,0.0,0.00010232938141959274,5.617338604613423e-05,0.00012954811636150954,5.7124097294297236e-05,1.2035022125622024e-05,1.2671002051853104e-05,0.0,2.0499259947820374e-05,7.72397944904672e-07,2.644752165643682e-05,0.0,0.0,0.0,0.0,5.023216555544242e-05,1.0333805800483963e-05,5.138238200163392e-05,0.0,1.7601577225473213e-05 +103415,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2004,gen5_led,10001_25000,Electricity,33782.0,,,11383.0,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.0026981779588538075,0.0,0.00107285627934027,0.0037710342381940764,0.002759502256118629,0.0006603524253761625,0.00035117955669928657,0.0,0.0,0.0016866459767783588,0.0006603524253761625,0.00035117955669928657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00107285627934027,0.0,0.0,0.0,0.0,8.652517654898115e-05,0.00032153702035683253,0.0001607918847946019,0.00040806219690581365,0.00020099457116628858,7.869301227672033e-05,4.184943691382367e-05,0.0,0.0,0.0,0.0,0.0,8.652517654898115e-05,0.0,0.0,0.00029860470148835726,7.145648763987999e-05,3.800100777757657e-05,0.0,0.0 +103416,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301090970200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,175695.0,,10262.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.01280667551442698,0.0017451817442143771,0.0,0.014551839528279934,0.007811288027218463,0.0038275063108310593,0.0014738185626804693,0.0,0.0014392620882727862,0.007612725709675292,0.0038275063108310593,0.0010757187577160239,0.0,0.00029074246656602586,0.0001985623175431713,0.0003980998049644455,0.0011485196217067603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011660240320403176,0.0,0.0,0.001526146429510201,0.0005592557521811781,0.0016427488327142327,0.0009071936075504837,0.0004561164280005533,0.00012819129674957762,0.0,3.464721010201865e-05,1.3266723358786046e-05,2.659860162289696e-05,7.673707822234874e-05,0.0,0.0,0.0,0.0008818118330517741,0.0004320849959968804,0.00016637853370845212,0.0,0.00016247747309782492 +103417,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030700,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,2382.0,,620.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00021003344011205386,0.00018069254305518555,0.0,0.0003907563567666772,0.0003061962559319761,7.350411063935942e-05,1.1055990195341666e-05,0.0,0.0,0.00012550371287679054,7.350411063935942e-05,1.1055990195341666e-05,0.0,0.0,0.00018069254305518555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2073717513447035e-05,0.0,0.0,2.5031053952657732e-05,1.859902468304595e-05,3.710477146610477e-05,1.4957095434906977e-05,8.759963928478917e-06,1.3176144090769944e-06,0.0,0.0,1.2073717513447033e-05,0.0,0.0,0.0,0.0,0.0,2.907525854254194e-05,6.9796771821199796e-06,1.04983574144284e-06,0.0,0.0 +103418,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,19227.0,,8328.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004367210032748116,0.006458674186815584,0.0,0.010825884219563701,0.004838143233339221,0.00046826479474984425,0.004458097552917139,0.0004176459445489458,0.0006437326940085494,0.002817270542890575,0.00046826479474984425,0.0006640287505587499,0.0004176459445489458,0.0,0.0020208726904486453,0.00379406880235839,0.0006437326940085494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004315289964346383,0.0,0.0,0.0005204343981111102,0.0005870872382641538,0.0009519633945457485,0.00033573024615507024,5.58024699487389e-05,7.913139064393781e-05,4.977029136336322e-05,0.0,0.00013502231863803593,0.0002534964073629675,4.301027043363492e-05,0.0,0.0,0.0,0.0004254373280092003,4.1176400422864964e-05,0.0003920183879319311,3.672528202108401e-05,5.660599616066791e-05 +103419,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950500,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,50398.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.006094035122534842,0.0,0.0,0.00609403512253484,0.0019075738586463117,0.0021454183074535085,0.0020410429564350213,0.0,0.0,0.0019075738586463117,0.0021454183074535085,0.0020410429564350213,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.723811614843853e-11,0.0,0.0,0.0007262148206324101,0.0001974189569837494,0.0007262149178705261,0.00022732202551265903,0.00025566550569547207,0.00024322728942427892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022732205595043712,0.0002556655399283622,0.00024322732199172695,0.0,0.0 +103420,50.0,the Greater Atlanta and Macon Area,G1300670030224,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,6572.0,,1380.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.000585557688160169,0.00040614624974379853,0.0,0.0009917039379039678,0.000522674684856176,0.00025417131935757443,0.0002148579336902172,0.0,0.0,0.00011652843511237748,0.00025417131935757443,0.0002148579336902172,0.0,0.0,0.00040614624974379853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7136082765370545e-05,0.0,0.0,6.977986935203864e-05,5.0793198448726764e-05,9.691595211740917e-05,1.3886486579124254e-05,3.0289144547881762e-05,2.560423822503263e-05,0.0,0.0,2.7136082765370545e-05,0.0,0.0,0.0,0.0,0.0,5.10792715390108e-05,2.4839323990727937e-05,2.0997356587670408e-05,0.0,0.0 +103421,81.0,the Columbus-Albany Area,G1302150002400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,14424.0,,771.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012036770486022008,0.00022691894896521435,0.0,0.0014305959975674152,0.0004418689514743246,0.00048109026832278884,0.0005076367777703017,0.0,0.0,0.0002149500025091103,0.00048109026832278884,0.0005076367777703017,0.0,0.0,0.00022691894896521435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5160961086310132e-05,0.0,0.0,0.00014343981360293267,5.954424969365734e-05,0.0001586007746892428,2.5615166734018524e-05,5.733057591697235e-05,6.0494070951941805e-05,0.0,0.0,1.5160961086310132e-05,0.0,0.0,0.0,0.0,0.0,4.8987106167021725e-05,5.333531575734357e-05,5.6278352764877516e-05,0.0,0.0 +103422,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,24463.0,,965.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.005734081422346184,0.0007653712603835507,0.0,0.006499369975655995,0.002858356468430465,0.0013130575026852446,0.0021393011693409264,0.0,0.00018873754227309952,0.0022817227503200135,0.0013130575026852446,0.0021393011693409264,0.0,0.0,0.0005766337181104513,0.0,0.00018873754227309952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.113554748687034e-05,0.0,0.0,0.0006833181571013733,0.0002381720833397558,0.0007344537045882436,0.0002719079953571713,0.00015647424004242607,0.0002549359217017759,0.0,0.0,3.852572261491896e-05,0.0,1.2609824871951387e-05,0.0,0.0,0.0,0.00032300523052784574,0.00014838052777372914,0.00024174922722318458,0.0,2.1328065279645367e-05 +103423,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,50947.0,,3656.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0026224977576400103,0.0006216973928327313,0.0,0.0032441774201113216,0.0013323657392712877,0.001002971084809547,0.0005874423345691895,0.0,0.0003213982614612972,0.0011476685643585977,0.001002971084809547,0.00039251474111712904,0.0,7.932563699331624e-05,0.00018469717491269001,0.00019492759345206048,0.00024207262446798093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.153769057678675e-05,0.0,0.0,0.00031251721912007105,0.00011806611187160075,0.0003540549096968578,0.00013676510767644565,0.00011952183118912973,4.6775107814753116e-05,0.0,9.453059552046499e-06,1.2340238499269552e-05,1.3023767117305315e-05,1.617368496021189e-05,0.0,0.0,0.0,0.00014540839492209272,0.00010945974614687331,6.41108101636651e-05,0.0,3.5075958464226645e-05 +103424,50.0,the Greater Atlanta and Macon Area,G1300670031208,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,109493.0,,17273.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009655250910070863,0.005032146086849533,0.0,0.014687396996920397,0.01098619166383371,0.002696993388475735,0.0010042119446109507,0.0,0.0,0.005954045576984177,0.002696993388475735,0.0010042119446109507,0.0,0.0,0.005032146086849533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003362182074732797,0.0,0.0,0.0011505976358652643,0.0005714205583477285,0.0014868158433385438,0.000709532132154787,0.00032139550236728686,0.00011967000134319031,0.0,0.0,0.0003362182074732797,0.0,0.0,0.0,0.0,0.0,0.0011121401448579858,0.00027301859548058897,0.00010165710299996883,0.0,0.0 +103425,46.0,the Tallahassee-Valdosta Area,G1301850011600,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,26678.0,,2533.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0012573663104644647,0.00043075913070018284,0.0,0.0016881254411646475,0.0009440353634492915,0.0002169841630586062,0.0002922850080095704,0.0,0.00023480317628575927,0.0008924045509940977,0.0002169841630586062,9.507019793432312e-05,0.0,5.290739847743756e-05,5.163081245519376e-05,0.00019721481007524733,0.0001818957778083217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8780340761460857e-05,0.0,0.0,0.00014983790575045356,5.9360605493528527e-05,0.00017861824651191444,0.0001063461203710281,2.5857582077021413e-05,1.1329331189490832e-05,0.0,6.3048721129132125e-06,3.4496131836745834e-06,1.317652728091085e-05,1.2153015676963446e-05,0.0,0.0,0.0,9.988709200912051e-05,2.295879783651898e-05,3.092627736027254e-05,0.0,2.4844203280684825e-05 +103426,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,51492.0,,3586.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005070107098018287,0.001055569008609487,0.0,0.0061256761066277735,0.001869979090931626,0.0017841095725106538,0.002471587443185494,0.0,0.0,0.0008144100823221388,0.0017841095725106538,0.002471587443185494,0.0,0.0,0.001055569008609487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.052672837206199e-05,0.0,0.0,0.0006041939732426961,0.00024191609633539025,0.0006747207016147581,9.70515324379346e-05,0.00021260857620480426,0.0002945338645999572,0.0,0.0,7.052672837206199e-05,0.0,0.0,0.0,0.0,0.0,0.00020597132174082517,0.0001965131099927974,0.0002722362698811356,0.0,0.0 +103427,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,44372.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,121422.18277123098,0.0,0.0,0.0039534964624826675,0.0,0.0,0.0039534964624826675,0.001346782682768389,0.0014247035931582563,0.001181979496949725,0.0,0.0,0.001346782682768389,0.0014247035931582563,0.001181979496949725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004711301601784856,0.00016321982828144076,0.0004711301601784856,0.0001604933625411239,0.00016977903949609414,0.0001408541009230892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001604933625411239,0.00016977903949609414,0.0001408541009230892,0.0,0.0 +103428,35.0,Eastern Counties in South Carolina and Georgia,G1300730030505,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,39610.0,,5231.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.00376792709969297,0.001572197235950402,0.0,0.005340124335643372,0.0015209282316247256,0.0009466589747371833,0.0018872070351445946,0.0,0.0009853614321590721,0.0015209282316247256,0.0009466589747371833,0.001300371231353265,0.0,0.0,0.0,0.0005868358037913299,0.0009853614321590721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010504398757861649,0.0,0.0,0.0004490183611282188,0.0002730502694035845,0.0005540623487068353,0.0001812467927029221,0.00011281196534254778,0.00015496333758901684,0.0,0.0,0.0,3.920854933120398e-05,6.583543824741252e-05,0.0,0.0,0.0,0.00015780326735163986,9.82202027519077e-05,0.0001958063701642821,0.0,0.00010223575990228527 +103429,50.0,the Greater Atlanta and Macon Area,G1300890023113,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,16487.0,,1235.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0037460514908744516,0.000979830702589575,0.0,0.004725964900537765,0.0034354864289833516,0.0005257688677607773,0.0006616565899144593,0.0,0.00010288759973169843,0.0024556557263937765,0.0005257688677607773,0.0006616565899144593,0.0,0.00010288759973169843,0.000979830702589575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.546865260145732e-05,0.0,0.0,0.0004464112197933018,0.00020092829553847806,0.0005118798723947591,0.00029263673253886744,6.265507085479035e-05,7.884860261732307e-05,0.0,1.2260957706993738e-05,6.546865260145732e-05,0.0,0.0,0.0,0.0,0.0,0.0003721052508624894,5.6947206888459844e-05,7.166551126438236e-05,0.0,1.1143987001611458e-05 +103430,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,209212.0,,1819.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.010673163394390606,0.00030941253714134145,0.0,0.010982575931531947,0.005469125013990907,0.0018747374951107033,0.0023764535322139376,0.0,0.0012622598902163992,0.005469125013990907,0.0018747374951107033,0.002067040995072596,0.0,0.0012622598902163992,0.0,0.00030941253714134145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.067294187969682e-05,0.0,0.0,0.0012718998814370958,0.00038588209025779846,0.0012925728233167929,0.0006517448669918782,0.00022340877860168142,0.0002463252083201674,0.0,0.00015042102752336862,0.0,2.067294187969682e-05,0.0,0.0,0.0,0.0,0.0006436779863374586,0.00022064356778775122,0.00027969205683301486,0.0,0.00014855921235856835 +103431,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Electricity,2659.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006384986092674534,0.0,0.0,0.0006384986092674533,0.00036333217493677753,0.00011860194374216685,0.00013067717650810573,0.0,2.5887314080403227e-05,0.00036333217493677753,0.00011860194374216685,0.00013067717650810573,0.0,2.5887314080403227e-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,7.608991652154096e-05,2.6991810625279856e-05,7.608991652154096e-05,4.3298316486933867e-05,1.4133800555944266e-05,1.5572806749227297e-05,0.0,3.084992729435534e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.329831648693387e-05,1.413380055594427e-05,1.5572806749227297e-05,0.0,3.084992729435535e-06 +103432,81.0,the Columbus-Albany Area,G1300950010700,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,112065.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.012508316286786211,0.0,0.0,0.012508316286786211,0.0057159698625534406,0.0023873444738982995,0.004405001950334471,0.0,0.0,0.0057159698625534406,0.0023873444738982995,0.004405001950334471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014905922764141123,0.00042163304346977106,0.0014905922764141123,0.0006811612637536769,0.0002844953031521899,0.0005249357095082456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006811612637536769,0.0002844953031521899,0.0005249357095082456,0.0,0.0 +103433,50.0,the Greater Atlanta and Macon Area,G1301210010211,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,17337.0,,336.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004215414134345021,0.0002665648986617878,0.0,0.004481979033006809,0.002756295939436159,0.0006901905303545204,0.0009704020961832941,0.0,6.492505288535632e-05,0.002489731040774371,0.0006901905303545204,0.0009704020961832941,0.0,6.492505288535632e-05,0.0002665648986617878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7810176723844472e-05,0.0,0.0,0.0005023421052398187,0.00018699280483881127,0.0005201522819636632,0.00029669605230800227,8.224856514335047e-05,0.00011564079266949444,0.0,7.736983060219307e-06,1.7810176723844472e-05,0.0,0.0,0.0,0.0,0.0,0.00031987959160600536,8.009947764364505e-05,0.00011261919367200569,0.0,7.534822043170925e-06 +103434,85.0,Rural Climate Zone 3A,G1300930970300,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,32148.0,,1665.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0015265841182665462,0.0002831361415168232,0.0,0.0018097202597833696,0.0007578665685387371,0.0002666469053961741,0.0004347130012968546,0.0,0.0003505115149130238,0.0007578665685387371,0.0002666469053961741,0.0004347130012968546,0.0,6.737537339620066e-05,0.0,0.0,0.0002831361415168232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8917061721012797e-05,0.0,0.0,0.00018192027137134748,6.438067762633042e-05,0.0002008373330923603,9.031358977348291e-05,3.1775829978556274e-05,5.180396299050752e-05,0.0,8.029001523938684e-06,0.0,0.0,1.8917061721012797e-05,0.0,0.0,0.0,8.410576145254533e-05,2.959167477271264e-05,4.824314662393566e-05,0.0,3.8898717905562606e-05 +103435,50.0,the Greater Atlanta and Macon Area,G1301210004200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5701.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001742472629539729,0.0,0.0,0.001742472629539729,0.0010199436333531392,0.00029435447543819514,0.00038880595364848417,0.0,3.920315295243172e-05,0.0010199436333531392,0.00029435447543819514,0.00038880595364848417,0.0,3.920315295243172e-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.00020764387432271078,7.33555758212858e-05,0.00020764387432271078,0.00012154282599903498,3.507710977380518e-05,4.633253527582415e-05,0.0,4.671691495584057e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012154282599903498,3.507710977380518e-05,4.633253527582415e-05,0.0,4.671691495584057e-06 +103436,50.0,the Greater Atlanta and Macon Area,G1301210011405,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7712.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018413902897319405,0.0,0.0,0.0018413902897319405,0.0010985980604792207,0.00043570086445867144,0.00025515132248576336,0.0,5.1940042308285064e-05,0.0010985980604792207,0.00043570086445867144,0.00025515132248576336,0.0,5.1940042308285064e-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.0002194392209178186,7.555234882457052e-05,0.0002194392209178186,0.0001309203724151718,5.1922647134165836e-05,3.0406485650892487e-05,0.0,6.1897157175884875e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001309203724151718,5.1922647134165836e-05,3.0406485650892487e-05,0.0,6.1897157175884875e-06 +103437,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,58202.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005633844476100789,0.0,0.0,0.005633844476100789,0.001980062708721486,0.0013436523429260236,0.002310129424453279,0.0,0.0,0.001980062708721486,0.0013436523429260236,0.002310129424453279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006713753007639413,0.00021656292357335335,0.0006713753007639413,0.0002359605775840323,0.0001601206777504937,0.00027529404542941526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002359605775840323,0.0001601206777504937,0.00027529404542941526,0.0,0.0 +103438,50.0,the Greater Atlanta and Macon Area,G1301350050318,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,52039.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,215998.51729091106,0.0,0.0,0.0076814697040339195,0.0,0.0,0.0076814697040339195,0.004598225094824245,0.0010602133704733317,0.001937755580410939,0.0,8.522106443403042e-05,0.004598225094824245,0.0010602133704733317,0.001937755580410939,0.0,8.522106443403042e-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.0009153876650967054,0.0003107151607317094,0.0009153876650967054,0.0005479626549760139,0.00012634382209334634,0.0002309190330268401,0.0,1.0155649139429128e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005479626549760139,0.00012634382209334634,0.0002309190330268401,0.0,1.0155649139429128e-05 +103439,81.0,the Columbus-Albany Area,G1300950001100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,215784.0,,6859.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.024337256758960178,0.0020188850606880798,0.0,0.026356141819648255,0.011532049220849987,0.005550307367758441,0.009273785231039826,0.0,0.0,0.009513164160161909,0.005550307367758441,0.009273785231039826,0.0,0.0,0.0020188850606880798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013488958537507433,0.0,0.0,0.002900224166278496,0.0009728207472095538,0.0030351137516535704,0.0011336655099765177,0.0006614194737588978,0.0011051391825430805,0.0,0.0,0.00013488958537507433,0.0,0.0,0.0,0.0,0.0,0.0013280047365982323,0.0006391608579533966,0.0010679481571019413,0.0,0.0 +103440,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,60516.0,,8043.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003115082658611917,0.0013677910013885535,0.0,0.0044828913903618905,0.002784198653790892,0.00047747863304202194,0.0006428851747296945,0.0,0.0005783466591607023,0.0017475930733675048,0.00047747863304202194,0.0003116820234031082,0.0,0.0005783466591607023,0.001036605580423387,0.0003312031513265863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.138835128172533e-05,0.0,0.0,0.00037121899803741593,0.00018840785150636767,0.0004626073493191413,0.0002082576357577915,5.690030062352076e-05,3.714260618866957e-05,0.0,6.892056836385533e-05,6.926034374268991e-05,2.2129192185298e-05,0.0,0.0,0.0,0.0,0.00028731250593696633,4.927291463339809e-05,6.634187195292912e-05,0.0,5.968188646219133e-05 +103441,50.0,the Greater Atlanta and Macon Area,G1301210012000,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,FuelOil,58187.0,,3810.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004945783502906293,0.0011214902829369529,0.0,0.006067273785843245,0.0022873577365803838,0.0015235855046494549,0.0022563305446134064,0.0,0.0,0.001165867453643431,0.0015235855046494549,0.0022563305446134064,0.0,0.0,0.0011214902829369529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.49312549655376e-05,0.0,0.0,0.0005893807514764476,0.00023560088660989364,0.0006643120064419852,0.00013893447530538157,0.00018156313739597433,0.0002688831387750917,0.0,0.0,7.49312549655376e-05,0.0,0.0,0.0,0.0,0.0,0.00025044513583412093,0.00016681893372625091,0.0002470479368816133,0.0,0.0 +103442,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890101,ComStock 90.1-2004,gen5_led,5001_10000,NaturalGas,35909.0,,5680.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.00804289864869418,0.00440537632235646,0.0,0.012448274971050643,0.0054302058869669795,0.0010063124452878275,0.004331793009764099,0.00041586700732143826,0.0012641774824933628,0.003945521049045743,0.0010063124452878275,0.0026752790078222407,0.00041586700732143826,0.0,0.0014846848379212376,0.0016565140019418592,0.0012641774824933628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002943411556404083,0.0,0.0,0.0009584541883612032,0.0005368942156347309,0.0012527953440016114,0.0004701788919519892,0.00011991999652298447,0.00031880699758641564,4.955793829792763e-05,0.0,9.919784803350776e-05,0.00011067845513939545,8.446485246750507e-05,0.0,0.0,0.0,0.000546496335274011,0.00010127536136527536,0.0004359519794053168,4.185288738462125e-05,0.00012722691840777144 +103443,50.0,the Greater Atlanta and Macon Area,G1301390000500,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,10129.0,,144.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,9613.75315558068,0.0,0.0,0.0008533766498030753,4.2037061621848524e-05,0.0,0.0008954137114249237,0.0006555533966649976,0.00020805915614859999,3.177078501188841e-05,0.0,0.0,0.0006135163350431491,0.00020805915614859999,3.177078501188841e-05,0.0,0.0,4.2037061621848524e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8080488835421973e-06,0.0,0.0,0.00010169473616371329,4.295143374354879e-05,0.0001045027850472555,7.31111893426411e-05,2.4793883211896212e-05,3.786044064181524e-06,0.0,0.0,2.8080488835421973e-06,0.0,0.0,0.0,0.0,0.0,7.650894198354532e-05,2.4282363554060384e-05,3.7079346390579808e-06,0.0,0.0 +103444,50.0,the Greater Atlanta and Macon Area,G1300150960803,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,43061.0,,2592.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004419297970994014,0.0007550573084230724,0.0,0.005174355279417086,0.0035086670862507774,0.0014397997341477496,0.0002258884590185603,0.0,0.0,0.0027536097778277048,0.0014397997341477496,0.0002258884590185603,0.0,0.0,0.0007550573084230724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.044944388965336e-05,0.0,0.0,0.0005266378174619101,0.00021820940880899715,0.0005770872613515634,0.0003281414951096362,0.00017157770183196279,2.6918620520311104e-05,0.0,0.0,5.044944388965336e-05,0.0,0.0,0.0,0.0,0.0,0.00039131582012801687,0.00016057847608168827,2.5192965141858437e-05,0.0,0.0 +103445,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,40042.0,,786.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0020611545150811383,0.0001337223858300382,0.0,0.0021948769009111765,0.000945241028025855,0.0005025493640899767,0.0004315569969640852,0.0,0.0003155117814698396,0.0008115186421958167,0.0005025493640899767,0.0004315569969640852,0.0,0.0003155117814698396,0.0001337223858300382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.933973841231616e-06,0.0,0.0,0.0002456240824259741,8.427335147248366e-05,0.0002545580562672057,9.670721937752115e-05,5.9887905309951067e-05,5.142787239783406e-05,0.0,3.759897244533513e-05,8.933973841231616e-06,0.0,0.0,0.0,0.0,0.0,0.0001096274322712071,5.828481280565529e-05,5.0051239898731637e-05,0.0,3.659251495472183e-05 +103446,50.0,the Greater Atlanta and Macon Area,G1301390001605,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,96971.0,,3752.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0045263130454796,0.0006380270557006,0.0,0.00516435783154162,0.0022059761071601303,0.0011740336117902165,0.0008656317052498179,0.0,0.0009186986769800361,0.0017749864817614863,0.0011740336117902165,0.0006585942749478613,0.0,0.0009186986769800361,0.0004309896253986435,0.00020703743030195656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.262954010425109e-05,0.0,0.0,0.000539392600584289,0.00017917337002279428,0.0005820221406885402,0.00021152195280780447,0.0001399074780453659,7.848349752318346e-05,0.0,0.00010947967220793518,2.879641130621469e-05,1.3833128798036404e-05,0.0,0.0,0.0,0.0,0.0002486130857074721,0.0001323133636869743,9.755652775651594e-05,0.0,0.00010353716532923423 +103447,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,3193.0,,798.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00028446196077340713,0.000234806177783724,0.0,0.0005192681385571311,0.0002987633173081366,0.000129172552907031,9.13322683419635e-05,0.0,0.0,6.395713952441261e-05,0.000129172552907031,9.13322683419635e-05,0.0,0.0,0.000234806177783724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5687370433949937e-05,0.0,0.0,3.389961822753886e-05,2.7561194078255182e-05,4.958698866148879e-05,7.6218367014986505e-06,1.539362316535883e-05,1.0884158360681374e-05,0.0,0.0,1.5687370433949937e-05,0.0,0.0,0.0,0.0,0.0,2.85301025188885e-05,1.2335203030508646e-05,8.72168311209165e-06,0.0,0.0 +103448,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,11473.0,,960.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005905628781791187,0.00016319024651016597,0.0,0.0007537531246892847,0.00043019175913474114,0.0001515059383343512,5.0691103299930966e-05,0.0,0.00012138205428168147,0.00033318895180563224,0.0001515059383343512,5.0691103299930966e-05,0.0,5.517688473920431e-05,9.700280732910886e-05,0.0,6.620516954247716e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.090344943934053e-05,0.0,0.0,7.037642495554606e-05,3.2686745154577485e-05,8.12798743948866e-05,3.970558958102022e-05,1.805471812312781e-05,6.04077695892597e-06,0.0,6.575340292472058e-06,6.481179039833988e-06,0.0,4.423455041992346e-06,0.0,0.0,0.0,4.638910407515839e-05,1.633742300301811e-05,5.4662015641461424e-06,0.0,1.3089057680358336e-05 +103449,35.0,Eastern Counties in South Carolina and Georgia,G1301890950400,ComStock 90.1-2004,gen4_led,_1000,NaturalGas,3049.0,,145.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0003945954488102357,0.0001149628324976373,0.0,0.0005094755742341337,0.0002424971402036494,0.00010048909459325853,0.00011049665051571471,0.0,5.6075395995250426e-05,0.0001836097037012625,0.00010048909459325853,0.00011049665051571471,0.0,0.0,5.888743650238689e-05,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.680085119691463e-06,0.0,0.0,4.702008863072027e-05,2.2254547732382115e-05,5.470017375041173e-05,2.1878976474575355e-05,1.197430469216624e-05,1.3166807463978678e-05,0.0,0.0,3.933971658431887e-06,0.0,3.746113461259577e-06,0.0,0.0,0.0,2.6035861921462216e-05,1.078907647836855e-05,1.1863544177037351e-05,0.0,6.020571071879732e-06 +103450,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,24248.0,,301.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.0027278115367070843,0.00011202169312509133,0.0,0.002839833229832176,0.0015068874520725276,0.0004905937933783402,0.0007776421166819295,0.0,6.463237085183409e-05,0.0015068874520725276,0.0004905937933783402,0.000665620423556838,0.0,6.463237085183409e-05,0.0,0.00011202169312509133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.484591460132791e-06,0.0,0.0,0.00032506940524915524,0.00011032875768218065,0.000332553996709288,0.0001795736256816159,5.846336174123633e-05,7.932103530455393e-05,0.0,7.702147333100244e-06,0.0,7.484591460132791e-06,0.0,0.0,0.0,0.0,0.0001764615751071443,5.745017877630061e-05,9.106450026550641e-05,0.0,7.5686674195458015e-06 +103451,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,123181.0,,9551.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01097533976260966,0.002811352074507361,0.0,0.013786661147510725,0.004974785180857621,0.0030076121067811705,0.005804325239084527,0.0,0.0,0.0021634331063502604,0.0030076121067811705,0.005804325239084527,0.0,0.0,0.002811352074507361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018783741038782488,0.0,0.0,0.0013079092050944637,0.0005834859613380897,0.0014957466154822887,0.0002578119799116646,0.0003584110965943632,0.0006916897858072051,0.0,0.0,0.00018783741038782488,0.0,0.0,0.0,0.0,0.0,0.0005397259000858782,0.00032630276332088924,0.0006297246112476381,0.0,0.0 +103452,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,115713.0,,18514.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.006028127848842333,0.0031485575809729765,0.0,0.00917668542981531,0.0041257841810006055,0.002188298936824337,0.0013662839206678489,0.0,0.0014963183913225162,0.0028981162259147306,0.002188298936824337,0.0007107569982456567,0.0,0.0002309556878576078,0.001227667955085876,0.0006555269224221921,0.0012653627034649082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002103680542406093,0.0,0.0,0.0007183603377796416,0.00040833631122592446,0.0009287283920202509,0.00034536290589334156,0.00026077535228816564,8.469953692787852e-05,0.0,2.7522542670255834e-05,8.202553465296784e-05,4.3798444089333296e-05,8.454407549830815e-05,0.0,0.0,0.0,0.00041755086164268763,0.000221467257257547,0.00013827505349178274,0.0,0.0001514352196282332 +103453,50.0,the Greater Atlanta and Macon Area,G1300670031508,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,6047.0,,1012.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,24284.436554246196,0.0,0.0,0.00053878672816247,0.0002978119395129078,0.0,0.000836598667675378,0.000300880900142678,0.0003181591484882848,0.00021755861904441503,0.0,0.0,3.068960629770278e-06,0.0003181591484882848,0.00021755861904441503,0.0,0.0,0.0002978119395129078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.989797353363774e-05,0.0,0.0,6.420781927942211e-05,3.979257505218814e-05,8.410579281305984e-05,3.6573148370598154e-07,3.791538291579911e-05,2.5926704879917034e-05,0.0,0.0,1.989797353363774e-05,0.0,0.0,0.0,0.0,0.0,3.024846635140273e-05,3.198550088382214e-05,2.1871825577834965e-05,0.0,0.0 +103454,50.0,the Greater Atlanta and Macon Area,G1300630040522,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12913.0,,802.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002745213191555092,0.0006359346899815346,0.0,0.0033810651744628872,0.0017785329136900667,0.0005878818801389972,0.0009387252869411393,0.0,7.600780076642353e-05,0.001142598223708532,0.0005878818801389972,0.0009387252869411393,0.0,7.600780076642353e-05,0.0006359346899815346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2488918148547456e-05,0.0,0.0,0.0003271369555136443,0.00013825662380556895,0.0003696258736621917,0.00013615922633227872,7.005572064928247e-05,0.00011186443857194091,0.0,9.057569960142176e-06,4.2488918148547456e-05,0.0,0.0,0.0,0.0,0.0,0.00019443333628257756,6.426860836572551e-05,0.00010262362196834336,0.0,8.309348774353089e-06 +103455,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,36208.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.008272609636626746,0.0,0.0,0.008272609636626746,0.003985984711792181,0.002425633058626408,0.0016997957794902463,0.0,0.00016111337964417086,0.003985984711792181,0.002425633058626408,0.0016997957794902463,0.0,0.00016111337964417086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009858331089644457,0.000272689690943085,0.0009858331089644457,0.000475003157808029,0.0002890586507074299,0.00020256183133316626,0.0,1.9199613051625527e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000475003157808029,0.0002890586507074299,0.00020256183133316626,0.0,1.9199613051625527e-05 +103456,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,7591.0,,1304.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0005805552823336436,0.0003837428371464756,0.0,0.0009643288090864168,0.0004944095574559919,0.00024965994723181214,0.0002202593043986129,0.0,0.0,0.00011066672030951624,0.00024965994723181214,0.0002202593043986129,0.0,0.0,0.0003837428371464756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5640438006852256e-05,0.0,0.0,6.918415199684222e-05,4.867649870210024e-05,9.482459000369447e-05,1.3188034683121692e-05,2.9751708859455062e-05,2.62480657018204e-05,0.0,0.0,2.5640438006852256e-05,0.0,0.0,0.0,0.0,0.0,4.8616388038938265e-05,2.45496161822944e-05,2.1658585782461822e-05,0.0,0.0 +103457,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,3895.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005860623245167323,0.0,0.0,0.0005860623245167323,0.00035076069972840275,0.00015019604591058228,5.830848698621174e-05,0.0,2.6797091891535604e-05,0.00035076069972840275,0.00015019604591058228,5.830848698621174e-05,0.0,2.6797091891535604e-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,6.984483922341444e-05,2.1963395627552518e-05,6.984483922341444e-05,4.1802422120589985e-05,1.7899834607637686e-05,6.94899966871397e-06,0.0,3.1935828264728023e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.1802422120589985e-05,1.7899834607637686e-05,6.94899966871397e-06,0.0,3.1935828264728023e-06 +103458,50.0,the Greater Atlanta and Macon Area,G1300590150500,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,19157.0,,4772.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004323626070674179,0.0037009171802634467,0.0,0.008024462390154558,0.0027737674415997072,0.0004523352204853442,0.0037623713753955268,0.000416756475935192,0.0006193127375218539,0.0027737674415997072,0.0004523352204853442,0.0006807669326539352,0.000416756475935192,0.0,0.0,0.003081604442741592,0.0006193127375218539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002472723205697644,0.0,0.0,0.0005152355840166889,0.0004007376754237293,0.0007625079045864534,0.0003305428509168595,5.3903644230210535e-05,8.11252736457173e-05,4.966381522390152e-05,0.0,0.0,0.00020589368648897113,4.137863408079323e-05,0.0,0.0,0.0,0.0002635715013505825,4.2982216673619174e-05,0.000357511540866433,3.9601420224496465e-05,5.884890909961552e-05 +103459,35.0,Eastern Counties in South Carolina and Georgia,G1300730030105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,32200.0,,1349.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002805459670098203,0.00039706212627967856,0.0,0.0032025217963778806,0.0010148745906587333,0.001019140445934114,0.0011685374493913313,0.0,0.0,0.0006178124643790548,0.001019140445934114,0.0011685374493913313,0.0,0.0,0.00039706212627967856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6529844793074938e-05,0.0,0.0,0.00033432211096724675,0.0001254849532135553,0.0003608519557603217,7.362371645351526e-05,0.00012144932571597707,0.00013925272602871428,0.0,0.0,2.6529844793074938e-05,0.0,0.0,0.0,0.0,0.0,0.00011435347022613922,0.0001148341358755823,0.00013166780768485522,0.0,0.0 +103460,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,38938.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.003309383005506481,0.0,0.0,0.003309383005506482,0.0008830627316101,0.0013250544415096155,0.0011012658323867666,0.0,0.0,0.0008830627316101,0.0013250544415096155,0.0011012658323867666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000394371796856523,0.00011129402745458598,0.000394371796856523,0.00010523261756727561,0.00015790378453064196,0.00013123539475860558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010523261756727558,0.0001579037845306419,0.00013123539475860555,0.0,0.0 +103461,35.0,Eastern Counties in South Carolina and Georgia,G1301030030304,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,15356.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0036871640543720643,0.0,0.0,0.0036871640543720643,0.0022196924450155323,0.0007400628958193228,0.0006537167108354859,0.0,7.360929562798359e-05,0.0022196924450155323,0.0007400628958193228,0.0006537167108354859,0.0,7.360929562798359e-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.0004393900617974696,0.00014849496044087474,0.0004393900617974696,0.0002645151629286128,8.819143296390297e-05,7.790177538519099e-05,0.0,8.77183452591346e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002645151629286128,8.819143296390297e-05,7.790177538519099e-05,0.0,8.77183452591346e-06 +103462,85.0,Rural Climate Zone 3A,G1302770960300,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Propane,10377.0,,,1457.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0009150654302611493,0.0,0.00013728866945863824,0.0010523540997197875,0.0006708616907816244,0.00028709126188563027,9.443152065197042e-05,0.0,0.0,0.0005335730213229862,0.00028709126188563027,9.443152065197042e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013728866945863824,0.0,0.0,0.0,0.0,1.107232939669974e-05,0.00010904699166017009,3.532129588795141e-05,0.00012011932105686982,6.35851064657685e-05,3.4212240354895204e-05,1.1253264416353064e-05,0.0,0.0,0.0,0.0,0.0,1.107232939669974e-05,0.0,0.0,7.657446371065556e-05,3.276958532137079e-05,1.0778738972084402e-05,0.0,0.0 +103463,50.0,the Greater Atlanta and Macon Area,G1301350050212,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,210998.0,,46712.0,,7.614023970037612,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.044207786117553126,0.03233320769603393,0.0,0.07654099381358706,0.05948568916412732,0.0060155543469132934,0.007205949386890437,0.000777527502922931,0.003056273412733073,0.030734924643571138,0.0060155543469132934,0.005006587202086351,0.000777527502922931,0.0016731924220594165,0.02875076452055618,0.0021993621848040877,0.001383080990673656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002160318369043703,0.0,0.0,0.0052681539499896705,0.0034689807009970616,0.007428472319033375,0.003662619843326054,0.0007168616476246848,0.0005966250396367691,9.265640615562592e-05,0.00019939101324653675,0.0019209601874863214,0.0001469486904200715,9.240949113731035e-05,0.0,0.0,0.0,0.005773217374346429,0.0005838228212520786,0.000699353286204248,7.546075958743097e-05,0.00029661807764318746 +103464,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,15643.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0054711556349289255,0.0,0.0,0.0054711556349289255,0.0034849452590794577,0.0008932363963845202,0.0009481538933474203,0.0,0.000144737379043788,0.0034849452590794577,0.0008932363963845202,0.0009481538933474203,0.0,0.000144737379043788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006519841632470413,0.00019923711643662602,0.0006519841632470413,0.0004152923569194318,0.00010644478485688872,0.00011298916792586782,0.0,1.724799754625512e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004152923569194318,0.00010644478485688872,0.00011298916792586782,0.0,1.724799754625512e-05 +103465,50.0,the Greater Atlanta and Macon Area,G1301210009602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,750293.0,,140584.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.19665348516257908,0.12173322451622957,0.0,0.31838670967880867,0.1748986237947341,0.025023705965586316,0.07559961481111979,0.0006659927805329758,0.04219868204721222,0.11243523584063357,0.025023705965586316,0.0373586108868579,0.0006659927805329758,0.02116993968896829,0.062463387954100516,0.03824100392426189,0.021028742358243934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008133502822524648,0.0,0.0,0.02343481683708768,0.015163572568494332,0.031568319659612334,0.01339869037043334,0.0029820268143421844,0.004451953662035281,7.936507615773971e-05,0.0025227809141191346,0.004173438633931819,0.0025550404549802507,0.0014050177016556218,0.0,0.0,0.0,0.01734135092996921,0.0024811222484339623,0.007495767674814594,6.603376443717923e-05,0.004184036090654085 +103466,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,18299.0,,384.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0015330770580210854,0.0001118963403286777,0.0,0.0016449733983497634,0.0011008303644224394,0.00043315790158177873,0.00011098513234554515,0.0,0.0,0.0009889340240937616,0.00043315790158177873,0.00011098513234554515,0.0,0.0,0.0001118963403286777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.475543558565623e-06,0.0,0.0,0.00018269409354556405,5.5201200069872814e-05,0.0001901696371041297,0.00011784952632543528,5.161866442234198e-05,1.3225902797786801e-05,0.0,0.0,7.475543558565623e-06,0.0,0.0,0.0,0.0,0.0,0.00012726315886046332,5.007587419664672e-05,1.283060404701964e-05,0.0,0.0 +103467,50.0,the Greater Atlanta and Macon Area,G1300150960300,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,153941.0,,3226.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007479428852519335,0.0005486837645049539,0.0,0.008028112617024288,0.003231943470731485,0.0015134991115385475,0.0021882102850172367,0.0,0.0010944597497370195,0.003231943470731485,0.0015134991115385475,0.0016395265205122827,0.0,0.0010944597497370195,0.0,0.0005486837645049539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.665961849565226e-05,0.0,0.0,0.000891309485625284,0.00025304279068476146,0.0009279691041209363,0.0003851446319323389,0.00018036084588803295,0.00019537929546245878,0.0,0.0001304247123424533,0.0,3.665961849565226e-05,0.0,0.0,0.0,0.0,0.00037358017135238853,0.00017494528061850304,0.0002529351087464348,0.0,0.00012650854340361 +103468,50.0,the Greater Atlanta and Macon Area,G1301170130406,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,15267.0,,2220.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001351508882138235,0.0006534124076843899,0.0,0.0020049519794289226,0.0010591290029400206,0.00042560346013654213,0.0005201888267460621,0.0,0.0,0.0004057165952556308,0.00042560346013654213,0.0005201888267460621,0.0,0.0,0.0006534124076843899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.365806394428583e-05,0.0,0.0,0.00016105816425913765,9.432192197879598e-05,0.00020471622820342347,4.834890166460329e-05,5.071880244211183e-05,6.199046015242252e-05,0.0,0.0,4.365806394428583e-05,0.0,0.0,0.0,0.0,0.0,0.0001081426871502885,4.345637000956799e-05,5.311403747203471e-05,0.0,0.0 +103469,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,72051.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.005691982161035254,0.0,0.0,0.005691982161035254,0.0032196622876005687,0.0018765417204631828,0.0005957477793720643,0.0,0.0,0.0032196622876005687,0.0018765417204631828,0.0005957477793720643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006783014397395298,0.00017408979287157573,0.0006783014397395298,0.00038368032494981105,0.00022362349612317902,7.099399910912618e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038368032494981105,0.00022362349612317902,7.099399910912618e-05,0.0,0.0 +103470,50.0,the Greater Atlanta and Macon Area,G1300210013603,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,50779.0,,709.0,,4.088175128053588,Healthcare,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.0051450157084571525,0.00026360552692147914,0.0,0.005408621235378632,0.002893848532570459,0.0005714617537906771,0.0018272594198201083,0.0,0.00011609027762116004,0.002893848532570459,0.0005714617537906771,0.0015636538928986289,0.0,0.00011609027762116004,0.0,0.00026360552692147914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.761288906215877e-05,0.0,0.0,0.0006131229635005679,0.00017923156398405354,0.0006307358525627266,0.0003448551158541416,6.810014660119279e-05,0.00018633803335669466,0.0,1.3834285273743796e-05,0.0,1.761288906215877e-05,0.0,0.0,0.0,0.0,0.0003374712226914604,6.664201481265694e-05,0.00021308906241663023,0.0,1.3538071357385419e-05 +103471,50.0,the Greater Atlanta and Macon Area,G1301210006601,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,38787.0,,2471.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006310182019689563,0.0007274050484681512,0.0,0.007037587068157715,0.002714863952307383,0.0015551344199234932,0.002767588695926837,0.0,0.0,0.001987458903839232,0.0015551344199234932,0.002767588695926837,0.0,0.0,0.0007274050484681512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.860169920269397e-05,0.0,0.0,0.0007519714260446023,0.0002930631307038148,0.0008005731252472963,0.00023684139402979594,0.00018532217355886124,0.0003298078584559451,0.0,0.0,4.860169920269397e-05,0.0,0.0,0.0,0.0,0.0,0.00030883413560223405,0.00017690705787085992,0.00031483193177420213,0.0,0.0 +103472,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen4_led,_1000,Electricity,10997.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.002407387233516208,0.0014962479299000374,0.0,0.0039036351634162457,0.0013153623581757408,0.00017934921684599454,0.001796484017433481,0.00042621718755420974,0.0001862223834068194,0.0013153623581757408,0.00017934921684599454,0.0003002360875334435,0.00042621718755420974,0.0001862223834068194,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.997169436033309e-05,0.0,0.0,0.0002868831294860783,0.00018494925548130975,0.0003868548238464114,0.00015674888712044995,2.137265824264818e-05,3.5778485146507076e-05,5.079138034129782e-05,2.2191718635175278e-05,0.0,9.997169436033309e-05,0.0,0.0,0.0,0.0,0.0001303539526785478,1.777371777469841e-05,0.00017803367348984426,4.223862325988969e-05,1.8454856643431216e-05 +103473,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,144187.0,,6582.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012231296625585471,0.0019175157061047101,0.0,0.014148812331690179,0.008390068999090748,0.004820958449958845,0.0009377848826405877,0.0,0.0,0.006472553292986037,0.004820958449958845,0.0009377848826405877,0.0,0.0,0.0019175157061047101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012811732561010409,0.0,0.0,0.0014575814692915456,0.0004980650917940186,0.00158569879490165,0.0007713224548183855,0.00057450488823773,0.00011175412623542997,0.0,0.0,0.00012811732561010409,0.0,0.0,0.0,0.0,0.0,0.0009402995805663229,0.0005402989187472998,0.00010510029558802741,0.0,0.0 +103474,35.0,Eastern Counties in South Carolina and Georgia,G1302450001601,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,222516.0,,40815.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011454043972052573,0.00694099323691517,0.0,0.018395037208967742,0.00716567237683008,0.002393847016767009,0.006435660206082245,0.0,0.002399857609288407,0.006326778056601702,0.002393847016767009,0.0023692904662002364,0.0,0.00036412843248362445,0.0008388943202283784,0.00406636973988201,0.0020357291768047826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004637562505347913,0.0,0.0,0.0013649572049487069,0.0007859247625138827,0.0018287134554834982,0.0007539504225355557,0.00028527031510038444,0.0002823439564530292,0.0,4.339251085973749e-05,5.604997314720766e-05,0.00027169085453452126,0.0001360154228530624,0.0,0.0,0.0,0.0007123639568778524,0.00023798050529610847,0.0006397909544887914,0.0,0.00023857803882074583 +103475,50.0,the Greater Atlanta and Macon Area,G1301210009601,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,74673.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006219358968072939,0.0,0.0,0.006219358968072938,0.003558449415729253,0.001878273015631135,0.0007826365367125513,0.0,0.0,0.003558449415729253,0.001878273015631135,0.0007826365367125513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007411478230944879,0.0001942388967395593,0.0007411478230944879,0.0004240528729083416,0.00022382981330686377,9.326513687928264e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042405287290834165,0.0002238298133068638,9.326513687928266e-05,0.0,0.0 +103476,81.0,the Columbus-Albany Area,G1303210950200,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,229946.0,,11788.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011100447374252458,0.00200473650504253,0.0,0.013105183879294989,0.007330050557555388,0.002829889795170368,0.0015231621585124761,0.0,0.001422081368056755,0.006696402901125542,0.002829889795170368,0.0013032879465424013,0.0,0.0002708490010527266,0.000633647656429847,0.0002198742119700748,0.0011512323670040284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013394501612944119,0.0,0.0,0.0013228192182270194,0.00045899457672936625,0.0014567642343564604,0.0007979976078393481,0.00033723258894941444,0.0001553103478125374,0.0,3.2276560732243916e-05,4.23367087631688e-05,1.4690736061672625e-05,7.691875594584337e-05,0.0,0.0,0.0,0.0008148039422126573,0.00031456882091426987,0.00016931377507428983,0.0,0.00015807769615524333 +103477,50.0,the Greater Atlanta and Macon Area,G1300210013504,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,60647.0,,866.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0053479404002038395,0.00025234386412884214,0.0,0.005600314637932119,0.004221444344256499,0.0009579225790678172,0.00042091734100836476,0.0,0.0,0.003969100480127657,0.0009579225790678172,0.00042091734100836476,0.0,0.0,0.00025234386412884214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6860664428457103e-05,0.0,0.0,0.0006373052641274695,0.0001484587375748438,0.0006541659285559265,0.0004729911780130923,0.00011415405868083587,5.0160027433541225e-05,0.0,0.0,1.6860664428457103e-05,0.0,0.0,0.0,0.0,0.0,0.0004931017697833122,0.0001118937691779349,4.9166841691541046e-05,0.0,0.0 +103478,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,13389.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0029336199055332345,0.0,0.0,0.0029336199055332345,0.0018559467347100587,0.0006491678217798241,0.0003867382768050015,0.0,4.184977931208955e-05,0.0018559467347100587,0.0006491678217798241,0.0003867382768050015,0.0,4.184977931208955e-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.0003495969171204354,9.55475175616401e-05,0.0003495969171204354,0.0002211715483558661,7.736076127652376e-05,4.608726203707798e-05,0.0,4.98720158057345e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002211715483558661,7.736076127652376e-05,4.608726203707798e-05,0.0,4.98720158057345e-06 +103479,50.0,the Greater Atlanta and Macon Area,G1301210010510,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,145737.0,,11499.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.013189103823288154,0.003384818057786235,0.0,0.01657392188107439,0.007718251846234463,0.003159034624254036,0.0056966354105858884,0.0,0.0,0.004333433788448228,0.003159034624254036,0.0056966354105858884,0.0,0.0,0.003384818057786235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022615414859092936,0.0,0.0,0.001571719033672489,0.0007164322004656091,0.0017978731822634185,0.0005164066078877478,0.0003764558163689277,0.0006788566094158132,0.0,0.0,0.00022615414859092936,0.0,0.0,0.0,0.0,0.0,0.0008372452885846794,0.0003426795222966113,0.0006179483713821275,0.0,0.0 +103480,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,49460.0,,3779.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004361436264065097,0.0011008303644224392,0.0,0.005462266628487536,0.003368006947254548,0.0016783539841318527,0.0004159056971011357,0.0,0.0,0.0022671765828321095,0.0016783539841318527,0.0004159056971011357,0.0,0.0,0.0011008303644224392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.355096160119903e-05,0.0,0.0,0.0005197452359893649,0.00018771720588640578,0.0005932961975905639,0.0002701757303625816,0.0002000067030082549,4.956280261852858e-05,0.0,0.0,7.355096160119903e-05,0.0,0.0,0.0,0.0,0.0,0.00036582354014784175,0.00018229813824963747,4.517451919308478e-05,0.0,0.0 +103481,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,12418.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002709318321552233,0.0,0.0,0.0027093183215522324,0.001851232431506918,0.0003390162952574211,0.0004483550467407856,0.0,7.071454804710786e-05,0.001851232431506918,0.0003390162952574211,0.0004483550467407856,0.0,7.071454804710786e-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.00032286057125960186,9.375820203970892e-05,0.00032286057125960186,0.00022060529234091422,4.039945911206752e-05,5.3428999230670426e-05,0.0,8.42682057594968e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00022060529234091425,4.039945911206753e-05,5.342899923067043e-05,0.0,8.426820575949682e-06 +103483,35.0,Eastern Counties in South Carolina and Georgia,G1302450000600,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7442.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0014137947184997212,0.0,0.0,0.001413794718499721,0.0007938224937498726,0.00021876021004046814,0.00035679831611137223,0.0,4.44964056717474e-05,0.0007938224937498726,0.00021876021004046814,0.00035679831611137223,0.0,4.44964056717474e-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.0001684823866067762,4.508837211825077e-05,0.0001684823866067762,9.4600090479223e-05,2.6069726955359954e-05,4.251977394533945e-05,0.0,5.302651456326524e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.460009047922301e-05,2.6069726955359957e-05,4.2519773945339454e-05,0.0,5.302651456326525e-06 +103484,50.0,the Greater Atlanta and Macon Area,G1301210001001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,29701.0,,3176.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.00257129797404673,0.0009348360974343243,0.0,0.003506134071481054,0.0014190873952057766,0.0009319819640486382,0.0011550647122266396,0.0,0.0,0.0004842512977714522,0.0009319819640486382,0.0011550647122266396,0.0,0.0,0.0009348360974343243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.24595960246553e-05,0.0,0.0,0.00030641625047425077,0.00015044184343511257,0.000368875846498906,5.770722352994846e-05,0.00011106235909483968,0.0001376466678494626,0.0,0.0,6.24595960246553e-05,0.0,0.0,0.0,0.0,0.0,0.00014930035574519163,9.8052621177984e-05,0.00012152286957573047,0.0,0.0 +103486,50.0,the Greater Atlanta and Macon Area,G1300970080303,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,42108.0,,1381.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.004162891646251894,0.0004066065938382642,0.0,0.004569498240090159,0.0014514342402435557,0.001707354867160099,0.001410709132686504,0.0,0.0,0.0010448276464052914,0.001707354867160099,0.001410709132686504,0.0,0.0,0.0004066065938382642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7167607330376774e-05,0.0,0.0,0.0004960826058542321,0.00018863034194395044,0.0005232502131846089,0.00012450980365149718,0.00020346170969433815,0.00016811109250839683,0.0,0.0,2.7167607330376774e-05,0.0,0.0,0.0,0.0,0.0,0.00016620277232361877,0.00019550807359664825,0.00016153936726434186,0.0,0.0 +103487,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,189807.0,,3713.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,240343.828889517,0.0,0.0,0.016634557336076352,0.0010817253703760933,0.0,0.017716282706452445,0.010486697821079879,0.005381169117988739,0.0018484461409832627,0.0,0.0,0.009404972450703788,0.005381169117988739,0.0018484461409832627,0.0,0.0,0.0010817253703760933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.227408323749812e-05,0.0,0.0,0.001982308398500513,0.00068646569337107,0.002054582481738011,0.0011207725880545485,0.0006412636369472978,0.00022027579306244823,0.0,0.0,7.227408323749812e-05,0.0,0.0,0.0,0.0,0.0,0.0012161572487564619,0.0006240618296897308,0.0002143669257613083,0.0,0.0 +103488,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,33757.0,,3092.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0029490870275714516,0.0009101923435772692,0.0,0.0038592793711487204,0.001902724900851275,0.0008283738531875936,0.0011281499275035544,0.0,0.0,0.0009925325572740056,0.0008283738531875936,0.0011281499275035544,0.0,0.0,0.0009101923435772692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.081436050054122e-05,0.0,0.0,0.0003514371124751569,0.00016101405394023941,0.0004122514729756981,0.00011827822397401552,9.871574229326946e-05,0.00013443948898564704,0.0,0.0,6.081436050054122e-05,0.0,0.0,0.0,0.0,0.0,0.00020325067651425272,8.848759271073258e-05,0.0001205099254611192,0.0,0.0 +103489,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,106365.0,,1875.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.014743310264192237,0.0006968516531171368,0.0,0.015440161917309373,0.007985275170950821,0.0021405791744411695,0.00508022834391023,0.0,0.00023404047958338,0.007985275170950821,0.0021405791744411695,0.004383376690793093,0.0,0.00023404047958338,0.0,0.0006968516531171368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.655911089056403e-05,0.0,0.0,0.0017569335701581163,0.0005166407384252716,0.0018034926810486802,0.000951590773265345,0.0002550889416124682,0.0005223590578167163,0.0,2.789017988413569e-05,0.0,4.655911089056403e-05,0.0,0.0,0.0,0.0,0.0009327224289548876,0.0002500309838060698,0.0005933975748030736,0.0,2.733716746354581e-05 +103490,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,14549.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004007240429743184,0.0,0.0,0.004007240429743184,0.00251859580950939,0.0005194831301565899,0.0008915822549097341,0.0,7.766194224120967e-05,0.00251859580950939,0.0005194831301565899,0.0008915822549097341,0.0,7.766194224120967e-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.00047753738192549426,0.00016557820870263625,0.00047753738192549426,0.0003001376308929671,6.190609679622772e-05,0.00010624864248739609,0.0,9.254867838187841e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0003001376308929671,6.190609679622772e-05,0.00010624864248739609,0.0,9.254867838187841e-06 +103491,50.0,the Greater Atlanta and Macon Area,G1301210009102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,16346.0,,2423.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014564059564637832,0.0007131957607523149,0.0,0.0021696017172160983,0.0010928568802611959,0.0004937343861174424,0.000582979761231162,0.0,0.0,0.00037966111950888114,0.0004937343861174424,0.000582979761231162,0.0,0.0,0.0007131957607523149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.765212927082135e-05,0.0,0.0,0.0001735567807660279,9.765379449803778e-05,0.00022120891003684926,4.524340304400985e-05,5.8837270080998337e-05,6.947245042632051e-05,0.0,0.0,4.765212927082135e-05,0.0,0.0,0.0,0.0,0.0,0.0001114258333179461,5.034032031505525e-05,5.943962734365922e-05,0.0,0.0 +103492,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,39623.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.004081533499956685,0.0,0.0,0.004081533499956685,0.001832967425736596,0.0008917478901923498,0.0013568795632403334,0.0,0.0,0.001832967425736596,0.0008917478901923498,0.0013568795632403334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000486390114021564,0.00016915986870671341,0.000486390114021564,0.0002184319288844002,0.00010626823422954858,0.00016169726537464403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002184319288844002,0.00010626823422954858,0.00016169726537464403,0.0,0.0 +103493,85.0,Rural Climate Zone 3A,G1302770960600,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,127553.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011364790866527509,0.0,0.0,0.011364790866527509,0.0025021236014517076,0.003434872805657789,0.005427794459418012,0.0,0.0,0.0025021236014517076,0.003434872805657789,0.005427794459418012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013543212646828261,0.0004475155324277975,0.0013543212646828261,0.0002981734763189909,0.0004093274866926337,0.0006468203016712015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002981734763189909,0.0004093274866926337,0.0006468203016712015,0.0,0.0 +103494,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,117966.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006072347370223944,0.0,0.0,0.006072347370223944,0.002520033998993525,0.002134363177384536,0.000659516253741704,0.0,0.0007584162097427587,0.002520033998993525,0.002134363177384536,0.000659516253741704,0.0,0.0007584162097427587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007236291621912352,0.00015987461287415012,0.0007236291621912352,0.00030030727496372804,0.00025434767540408925,7.85931971689905e-05,0.0,9.037890176367904e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00030030727496372804,0.00025434767540408925,7.85931971689905e-05,0.0,9.037890176367904e-05 +103495,50.0,the Greater Atlanta and Macon Area,G1302250040301,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,286405.0,,,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,1459415.2837631335,0.10299440645301695,0.0,0.0766783690291362,0.0,0.0,0.17967286769940594,0.1629157018289813,0.008943044739436908,0.0026895161771296316,0.0006634109164502165,0.0044610096029023116,0.059921295375964356,0.008943044739436908,0.0026895161771296316,0.0006634109164502165,0.0044610096029023116,0.0,0.0,0.0,0.0,0.0,0.0,0.10299440645301695,0.0,0.0,0.0,0.0,0.0,0.0,0.009137617619184765,0.0035557195254003436,0.009137617619184765,0.007140708537811144,0.0010657258913421216,0.000320504605384654,7.905743634963828e-05,0.0005316101589399156,0.0,0.0,0.0,0.0,0.0,0.0,0.008285398939392969,0.0004548161568665524,0.00013678064318724863,3.373906898985313e-05,0.0002268734309680491 +103496,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6216.0,,253.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.001152274951336031,0.00020081277503903837,0.0,0.0013530877263750695,0.0006768746914824918,0.00020982784607662296,0.00042858805611709105,0.0,3.78798397726028e-05,0.0004760619164434534,0.00020982784607662296,0.00042858805611709105,0.0,3.78798397726028e-05,0.00020081277503903837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3415929533345106e-05,0.0,0.0,0.0001373166903938253,5.2465073818895786e-05,0.00015073261992717044,5.6732333470202276e-05,2.5005199793937324e-05,5.107487005604383e-05,0.0,4.514143281680447e-06,1.3415929533345108e-05,0.0,0.0,0.0,0.0,0.0,7.540316390488769e-05,2.3374612271102166e-05,4.774428095737146e-05,0.0,4.219776279134723e-06 +103497,85.0,Rural Climate Zone 3A,G1300810010400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,77445.0,,3293.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003788198099562802,0.0005599602743681075,0.0,0.004348158373930909,0.0018679822274096627,0.0011284665829406806,0.001029903503806607,0.0,0.00032180605977395835,0.0017704297788765325,0.0011284665829406806,0.0005674956779716301,0.0,0.00032180605977395835,9.755244853313052e-05,0.00046240782583497703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.741374784142869e-05,0.0,0.0,0.00045143134176689676,0.00016056951358710638,0.0004888450896083254,0.00021097827240728056,0.00013447691231744443,6.76272276740792e-05,0.0,3.834892936809251e-05,6.517967216247885e-06,3.089578062518081e-05,0.0,0.0,0.0,0.0,0.0002100093558734173,0.00012686873393687553,0.000115787703047973,0.0,3.6179296750059564e-05 +103498,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen3_t5_cfl,100001_200000,Electricity,105482.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.010344514905160382,0.0,0.0,0.010344514905160378,0.003388316672904174,0.0027664531804938225,0.004189745051762384,0.0,0.0,0.003388316672904174,0.0027664531804938225,0.004189745051762384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012327354454082836,0.00040544052259653123,0.0012327354454082836,0.0004037790173102449,0.000329672771021479,0.0004992836570765596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004037790173102451,0.0003296727710214791,0.0004992836570765597,0.0,0.0 +103499,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,27365.0,,9004.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005441681080838473,0.006193664976937153,0.0,0.011635274337804613,0.00263793225392519,0.00029964603890322297,0.0066631439072053445,0.00038126336591898837,0.0016532887718518658,0.00209572927304717,0.00029964603890322297,0.002450599689632414,0.00038126336591898837,0.00021437099336566143,0.0005422029808780195,0.0042125442175729305,0.0014389177784862044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004138231601802461,0.0,0.0,0.0006484712117988327,0.0005703580744828667,0.001062294371979079,0.0002497426955211757,3.5708051808202054e-05,0.00029203169512552804,4.5434179849785095e-05,2.554604280869218e-05,3.622671743492469e-05,0.0002814566766213937,9.613976612392778e-05,0.0,0.0,0.0,0.00024084181478230247,2.7357524323984118e-05,0.0006083415024700201,3.480914296464805e-05,0.00015094438743812395 +103500,50.0,the Greater Atlanta and Macon Area,G1300630040417,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,26511.0,,4841.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0053759138674171585,0.0033303885740809144,0.0,0.008706302441498072,0.0023258786600362665,0.0005655119714580931,0.003977517872554773,0.0003735176090493024,0.0014639480483706528,0.0023258786600362665,0.0005655119714580931,0.0006471292984738585,0.0003735176090493024,0.0014639480483706528,0.0,0.0033303885740809144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002225182366782275,0.0,0.0,0.0006406341885841193,0.00040017621271493,0.0008631524252623469,0.0002771691334469494,6.739064499627493e-05,7.711677740030293e-05,4.451115778574507e-05,0.00017445502164412986,0.0,0.0002225182366782275,0.0,0.0,0.0,0.0,0.0002305901753087733,5.606548049058517e-05,0.00039433550824697055,3.7030947672158225e-05,0.00014513742394087821 +103501,50.0,the Greater Atlanta and Macon Area,G1301510070205,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,51044.0,,4620.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004501185195078194,0.0013458238174873455,0.0,0.005847009012565539,0.003995920368431193,0.0013784754368829288,0.00047261320725141843,0.0,0.0,0.0026500965509438463,0.0013784754368829288,0.00047261320725141843,0.0,0.0,0.0013458238174873455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.992003826940259e-05,0.0,0.0,0.0005363966497229594,0.00019772215250142013,0.000626316687992362,0.0003158063598278487,0.0001642699809103391,5.632030898477164e-05,0.0,0.0,8.992003826940259e-05,0.0,0.0,0.0,0.0,0.0,0.0004280327951023473,0.00014765877190405012,5.062512098596466e-05,0.0,0.0 +103502,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,60618.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.005401002433120118,0.0,0.0,0.005401002433120117,0.0014614390518966067,0.0014938472761469807,0.002445685415470233,0.0,0.0,0.0014614390518966067,0.0014938472761469807,0.002445685415470233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006436258319170608,0.00020981876859480007,0.0006436258319170608,0.00017415654542292903,0.00017801856373386168,0.0002914470655459605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017415654542292906,0.0001780185637338617,0.00029144706554596055,0.0,0.0 +103503,50.0,the Greater Atlanta and Macon Area,G1300130180206,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,154153.0,,2299.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.007878858434590283,0.0003909190085893241,0.0,0.008269759712818188,0.0044656574790616,0.002517729052008918,0.00078912519572229,0.0,0.0004972302556639608,0.00441532098299007,0.002517729052008918,0.0004485426832044958,0.0,0.0004972302556639608,5.033649607152991e-05,0.0003405825125177943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.611856416935325e-05,0.0,0.0,0.0009389073361126249,0.000306207682880102,0.0009650259002819782,0.0005261647098545643,0.000300032586814461,5.345190795298791e-05,0.0,5.925390570928899e-05,3.363144216110028e-06,2.2755419953243226e-05,0.0,0.0,0.0,0.0,0.0005211124964613726,0.00029380221789455203,9.208565652236835e-05,0.0,5.8023460388552324e-05 +103504,50.0,the Greater Atlanta and Macon Area,G1301210011410,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,149393.0,,12654.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007395138714328404,0.0021518985048289683,0.0,0.009547054949518791,0.003778286827528992,0.0022207454982230332,0.001473073887500827,0.0,0.002074948736265939,0.003412651314324663,0.0022207454982230332,0.001473073887500827,0.0,0.00028868574464129974,0.0003656355132043288,0.0,0.0017862629916246392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014377745517080983,0.0,0.0,0.0008812653490919986,0.00036913218556406806,0.0010250428042628084,0.0004066795050132764,0.0002646422376018593,0.00017554355960780894,0.0,3.4402159764261154e-05,2.4429657574751503e-05,0.0,0.00011934779759605831,0.0,0.0,0.0,0.00040566496636690644,0.00023843574852025782,0.0001581601652566452,0.0,0.00022278192411899893 +103505,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,12073.0,,990.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0026695362190836255,0.0007857172005234203,0.0,0.003455253419607046,0.0017644727111543845,0.0008092887165391231,0.0008018450799025854,0.0,7.972961908469235e-05,0.0010584024226419169,0.0008092887165391231,0.0008018450799025854,0.0,0.0,0.0007060702885124674,0.0,7.972961908469235e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.249745130411955e-05,0.0,0.0,0.00031811966002322987,0.00014823722982297658,0.0003706171113273494,0.00012612625985430095,9.644021666596352e-05,9.55531835029654e-05,0.0,0.0,4.7175867556133556e-05,0.0,5.327109795491711e-06,0.0,0.0,0.0,0.0001892607284644104,8.680586050549618e-05,8.600744175787283e-05,0.0,8.551951918988076e-06 +103506,85.0,Rural Climate Zone 3A,G1302850960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Propane,6641.0,,,1139.0,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012723656224055055,0.0,0.0002923695056684517,0.001564652421000218,0.0009292966805348582,0.00040518195424886705,0.00018435406736491623,0.0,4.5737011777837006e-05,0.0006827468937179828,0.00040518195424886705,0.00018435406736491623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002465497868168754,4.5737011777837006e-05,0.0,0.0,0.0,2.3577643363823775e-05,0.00015162157063256621,6.525329916346278e-05,0.00017519921399638999,8.135959864611505e-05,4.828354618622867e-05,2.196857000389951e-05,0.0,0.0,0.0,0.0,0.0,1.988258977865875e-05,3.6883838133506498e-06,0.0,0.00010405636792808108,4.536953955853232e-05,2.0642723755045628e-05,0.0,5.121321775029267e-06 +103507,50.0,the Greater Atlanta and Macon Area,G1301350050314,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,45453.0,,7842.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.003903564473036306,0.002308288048075417,0.0,0.006211852521111723,0.003168640471025217,0.0010290224991619744,0.002014158861318234,0.0,0.0,0.0008603524229497997,0.0010290224991619744,0.002014158861318234,0.0,0.0,0.002308288048075417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001542261239146358,0.0,0.0,0.0004651791481020105,0.00027964962964471655,0.0006194052720166463,0.00010252629614286537,0.00012262633622281074,0.00024002285852380166,0.0,0.0,0.0001542261239146358,0.0,0.0,0.0,0.0,0.0,0.0003159560865632195,0.00010260738786673592,0.00020083873742003815,0.0,0.0 +103508,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,9267.0,,1570.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007455119161837961,0.000462277539662297,0.0,0.001207789455846093,0.0006058742075292484,0.0003332277451804568,0.0002686875031363879,0.0,0.0,0.00014359666786695132,0.0003332277451804568,0.0002686875031363879,0.0,0.0,0.000462277539662297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.088692217090663e-05,0.0,0.0,8.883978995011083e-05,6.267083326800942e-05,0.00011972671212101744,1.7111863048599068e-05,3.970946975458189e-05,3.2018457146929866e-05,0.0,0.0,3.088692217090663e-05,0.0,0.0,0.0,0.0,0.0,6.005957948654876e-05,3.3032464495235865e-05,2.6634668139232823e-05,0.0,0.0 +103509,35.0,Eastern Counties in South Carolina and Georgia,G1300330950500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,34654.0,,1580.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,22700.572550927158,0.00850175708416155,0.0,0.0074289697577100385,0.001086772720799554,0.0,0.01701749956267114,0.011926098820272913,0.0005607067334000473,0.002834731854392027,0.0003743065287304741,0.0013215839059046647,0.0034243417361113655,0.0005607067334000473,0.0017479591335924727,0.0003743065287304741,0.0013215839059046647,0.0,0.001086772720799554,0.0,0.0,0.0,0.0,0.00850175708416155,0.0,0.0,0.0,7.261140426842051e-05,0.0,0.0,0.0008852980373873383,0.00035924201383126053,0.0009579094416557588,0.000408073140313525,6.68184939255883e-05,0.0002083013985615807,4.460548986923066e-05,0.00015749096796710354,0.0,7.261140426842051e-05,0.0,0.0,0.0,0.0,0.0006713161719197865,3.156199722208526e-05,0.00015956612179622917,2.1069591136104243e-05,7.439152248802314e-05 +103510,50.0,the Greater Atlanta and Macon Area,G1300590000600,ComStock 90.1-2007,gen3_t5_cfl,_1000,Electricity,10815.0,,3618.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.002074715321539596,0.0024884678343286564,0.0,0.0045631114358972375,0.0007983149973747666,0.00013540730527747364,0.0028213919397831228,0.0003724418094840682,0.00043562710394882156,0.0007983149973747666,0.00013540730527747364,0.00033292410545446646,0.0003724418094840682,0.00043562710394882156,0.0,0.0024884678343286564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016626262295928954,0.0,0.0,0.00024723577003790833,0.00023391949825427228,0.0004134983929971978,9.513209887624302e-05,1.6135962867518356e-05,3.9673273109650534e-05,4.438244447617734e-05,5.1911990708319125e-05,0.0,0.00016626262295928954,0.0,0.0,0.0,0.0,7.234142167188181e-05,1.227029055040094e-05,0.000255667881335923,3.374979810817378e-05,3.947550042538947e-05 +103511,50.0,the Greater Atlanta and Macon Area,G1300890021502,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,17082.0,,2271.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014769373030769466,0.0006685423835891573,0.0,0.002145479686666104,0.0008993282229478824,0.0007259626369721595,0.0005201888267460621,0.0,0.0,0.00023078583935872495,0.0007259626369721595,0.0005201888267460621,0.0,0.0,0.0006685423835891573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.466805654360232e-05,0.0,0.0,0.00017600227609677194,9.582414236404438e-05,0.00022067033264037427,2.7502069948004673e-05,8.651083306117696e-05,6.198937308759031e-05,0.0,0.0,4.466805654360232e-05,0.0,0.0,0.0,0.0,0.0,9.24991550114224e-05,7.466787850788961e-05,5.350329912106229e-05,0.0,0.0 +103512,50.0,the Greater Atlanta and Macon Area,G1300890023000,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,75133.0,,6569.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006821667444923557,0.001913840500572742,0.0,0.0087355079454963,0.00650900161231134,0.0014372179781955406,0.0007892883549894188,0.0,0.0,0.004595161111738597,0.0014372179781955406,0.0007892883549894188,0.0,0.0,0.001913840500572742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012787214006007173,0.0,0.0,0.000812923995710625,0.00038436338997122017,0.0009407961357706968,0.0005475958425191859,0.00017127029292688675,9.405786026455216e-05,0.0,0.0,0.00012787214006007173,0.0,0.0,0.0,0.0,0.0,0.0007010060093580323,0.00015478540327396132,8.500472313870323e-05,0.0,0.0 +103513,50.0,the Greater Atlanta and Macon Area,G1300150960802,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,109943.0,,6907.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011929203415948561,0.002033002279585023,0.0,0.013962205695533584,0.004874430168264132,0.00360639701525565,0.005481347822407503,0.0,0.0,0.00284142788867911,0.00360639701525565,0.005481347822407503,0.0,0.0,0.002033002279585023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000135833832376772,0.0,0.0,0.0014215803802438347,0.0005273667513933625,0.0015574142126206065,0.000338607532924083,0.00042976744225881714,0.0006532017478391848,0.0,0.0,0.000135833832376772,0.0,0.0,0.0,0.0,0.0,0.0005437183055475028,0.0004022755494648251,0.0006114169343361916,0.0,0.0 +103514,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,15078.0,,2049.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,24034.3828889517,0.0,0.0,0.0013296043153875861,0.000596993096949012,0.0,0.001926597412336598,0.0015526072824595598,0.0002928014985799276,8.121900489654837e-05,0.0,0.0,0.0009556141855105478,0.0002928014985799276,8.121900489654837e-05,0.0,0.0,0.000596993096949012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9887550292919284e-05,0.0,0.0,0.00015844608481727337,8.735666396478487e-05,0.00019833363511019265,0.00011387848590567801,3.4892524446339584e-05,9.678694021733615e-06,0.0,0.0,3.9887550292919284e-05,0.0,0.0,0.0,0.0,0.0,0.0001598332086698363,3.0142460073502404e-05,8.361093178064878e-06,0.0,0.0 +103515,50.0,the Greater Atlanta and Macon Area,G1300570090701,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,15720.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.0014103069690936925,0.0,0.0,0.0014103069690936925,0.0008618508840462079,0.0003893287975931028,0.0001591272874543818,0.0,0.0,0.0008618508840462079,0.0003893287975931028,0.0001591272874543818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016806356326261397,4.971166356529899e-05,0.00016806356326261397,0.00010270510870900827,4.6395562411702833e-05,1.8962892141902883e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010270510870900827,4.6395562411702833e-05,1.8962892141902883e-05,0.0,0.0 +103516,50.0,the Greater Atlanta and Macon Area,G1301350050523,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,175489.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01547486293594355,0.0,0.0,0.01547486293594355,0.011217304381955562,0.0028089504760032886,0.001448547330785822,0.0,0.0,0.011217304381955562,0.0028089504760032886,0.001448547330785822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018441092096723789,0.0006387580169152518,0.0018441092096723789,0.0013367442674025402,0.000334737145249903,0.00017262055789482182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013367442674025402,0.000334737145249903,0.00017262055789482182,0.0,0.0 +103517,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300490010100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9603.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0008468159523245209,0.0,0.0,0.0008468159523245207,0.0005874861603249958,0.00019029060047751515,6.906956512144766e-05,0.0,0.0,0.0005874861603249958,0.00019029060047751515,6.906956512144766e-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.00010091353346649318,3.242936203540957e-05,0.00010091353346649318,7.000966873417901e-05,2.2676588492380902e-05,8.230895807130757e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.000966873417904e-05,2.267658849238091e-05,8.230895807130759e-06,0.0,0.0 +103518,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,33315.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002886008297776865,0.0,0.0,0.002886008297776865,0.0016301207082247027,0.0010802066904042058,0.00017568089914795653,0.0,0.0,0.0016301207082247027,0.0010802066904042058,0.00017568089914795653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003439205962047969,9.319673781598484e-05,0.0003439205962047969,0.00019425865348006406,0.00012872635510937408,2.0935587615358778e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019425865348006406,0.00012872635510937408,2.0935587615358778e-05,0.0,0.0 +103519,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,3139.0,,384.0,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0007825743317213268,0.0003044447384343906,0.0,0.0010870190701557174,0.0006621528323568953,0.0002207451798102115,0.00017054198605045192,0.0,3.366177901189812e-05,0.0003913698729344027,0.0002207451798102115,0.00017054198605045192,0.0,0.0,0.0002707829594224925,0.0,3.366177901189812e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0338682459741802e-05,0.0,0.0,9.326268373857912e-05,4.5729433405263456e-05,0.00011360136619832092,4.664119842009685e-05,2.630713410465733e-05,2.032420776463223e-05,0.0,0.0,1.8089879481987145e-05,0.0,2.2488029777546632e-06,0.0,0.0,0.0,6.919976700781841e-05,2.3069470165359396e-05,1.782287279167144e-05,0.0,3.517899721731463e-06 +103520,50.0,the Greater Atlanta and Macon Area,G1302550161200,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,47394.0,,725.0,2644.0,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.005331550620495959,0.0002693790420635195,0.00031796956547371134,0.0059188992280331905,0.003127462779492346,0.0006062965867617794,0.002063896043796218,0.0,0.00012124381798284703,0.002809493214018635,0.0006062965867617794,0.0017945170017326984,0.0,0.00012124381798284703,0.0,0.0002693790420635195,0.0,0.0,0.0,0.0,0.0,0.00031796956547371134,0.0,0.0,1.7997500513540414e-05,0.0,2.5644139939848975e-05,0.0006353507665723193,0.00018421420037145072,0.0006789924070257088,0.00033480197305909117,7.225121331276858e-05,0.00021384918456834786,0.0,1.444839563211177e-05,0.0,1.7997500513540414e-05,0.0,2.5644139939848975e-05,0.0,0.0,0.00035877000075847787,6.955191547561582e-05,0.00023676188572206816,0.0,1.3908605069546995e-05 +103521,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,98672.0,,2857.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.0084886223435194,0.0008408645229507584,0.0,0.00932948686647016,0.0023621483071278853,0.0027237946277400152,0.004243543931602257,0.0,0.0,0.0015212837841771269,0.0027237946277400152,0.004243543931602257,0.0,0.0,0.0008408645229507584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.618102465198834e-05,0.0,0.0,0.0010115727400865835,0.000325940773704886,0.0010677537647385718,0.0001812884522049919,0.00032458934836694864,0.0005056949395146427,0.0,0.0,5.6181024651988346e-05,0.0,0.0,0.0,0.0,0.0,0.0002703463527958128,0.0003117365413307536,0.0004856708706120052,0.0,0.0 +103522,85.0,Rural Climate Zone 3A,G1300310110401,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9905.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007539942324427512,0.0,0.0,0.0007539942324427513,0.0004883163581607359,0.00022272960467703413,4.2948269604981084e-05,0.0,0.0,0.0004883163581607359,0.00022272960467703413,4.2948269604981084e-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,8.985285484556773e-05,2.6783812484809064e-05,8.985285484556773e-05,5.8192247315186594e-05,2.6542498573257665e-05,5.118108957123461e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.819224731518659e-05,2.6542498573257662e-05,5.1181089571234605e-06,0.0,0.0 +103523,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300490010100,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,48963.0,,6827.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,32736.412774265485,0.0,0.0,0.0025203886062219257,0.0011609840657850574,0.0,0.0036813726720069835,0.001394617038217093,0.0005507404864296803,0.001205097204998149,0.0,0.0005309002120006411,0.001204512103071287,0.0005507404864296803,0.00023421807435889755,0.0,0.0005309002120006411,0.0001901049351458061,0.0009708791306392514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.756981191662021e-05,0.0,0.0,0.00030035018461441936,0.0001482393985694484,0.0003779199965310396,0.00014353954451098183,6.563075486273819e-05,2.7911347361302283e-05,0.0,6.326642498406313e-05,1.2701642079566308e-05,6.486816983705392e-05,0.0,0.0,0.0,0.0,0.0001431677021598026,5.653756391024054e-05,0.00012371209657624198,0.0,5.45008137326744e-05 +103524,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,47221.0,,2862.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.0040633193855835635,0.0008337856781657252,0.0,0.0048971050637492885,0.0032154707308781586,0.0012661538661621226,0.000415510840308445,0.0,0.0,0.0023816850527124335,0.0012661538661621226,0.000415510840308445,0.0,0.0,0.0008337856781657252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5708901225546883e-05,0.0,0.0,0.0004842188139310078,0.00020167093088258842,0.0005399277151565546,0.00028382132979093807,0.0001508853883114413,4.951571539846752e-05,0.0,0.0,5.570890122554689e-05,0.0,0.0,0.0,0.0,0.0,0.0003545200158614982,0.0001395991213368323,4.581192678328135e-05,0.0,0.0 +103525,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,20463.0,,2201.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004542024368541546,0.0017457809124893009,0.0,0.0062878052810308475,0.0039664658423897055,0.001122169576494923,0.0010628686046238395,0.0,0.00013630125752237863,0.0022206849299004046,0.001122169576494923,0.0010628686046238395,0.0,0.00013630125752237863,0.0017457809124893009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011664474861052675,0.0,0.0,0.0005412616374712985,0.0002333765366694114,0.0006579063860818252,0.0002646334462207398,0.0001337261302913593,0.0001266593823978669,0.0,1.6242678561332555e-05,0.00011664474861052675,0.0,0.0,0.0,0.0,0.0,0.0004150197232977596,0.00011741497989290633,0.00011121019358812936,0.0,1.4261489303029896e-05 +103526,35.0,Eastern Counties in South Carolina and Georgia,G1300510003602,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,80884.0,,1473.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006573272148721622,0.00042923970725430876,0.0,0.007002542229575369,0.004420543288570963,0.0019325202642269598,0.0006494786767774472,0.0,0.0,0.003991303581316654,0.0019325202642269598,0.0006494786767774472,0.0,0.0,0.00042923970725430876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8680015028867185e-05,0.0,0.0,0.0007833256469970278,0.0002061346813534674,0.000812005662025895,0.00047563685018038793,0.00023029514860492347,7.739726778183226e-05,0.0,0.0,2.8680015028867185e-05,0.0,0.0,0.0,0.0,0.0,0.0005126004330812665,0.0002240925288396621,7.531270010496651e-05,0.0,0.0 +103527,85.0,Rural Climate Zone 3A,G1301330950303,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,23811.0,,2091.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0012256821546068302,0.00035561785900199906,0.0,0.0015813000136088292,0.0007843202677774558,0.0004466100738097101,0.0001501584308664272,0.0,0.00020021124115523624,0.0005747828565152718,0.0004466100738097101,0.0001501584308664272,0.0,5.414852377684126e-05,0.00020953741126218399,0.0,0.00014606271737839497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.375996894197314e-05,0.0,0.0,0.0001460625595431522,6.788436175659108e-05,0.00016982252848512532,6.849594316813361e-05,5.322180000191615e-05,1.7894137290731184e-05,0.0,6.452791980858783e-06,1.3999866029627486e-05,0.0,9.75891829007203e-06,0.0,0.0,0.0,8.423148666907367e-05,4.796335377763126e-05,1.6126152016465887e-05,0.0,2.150153602195451e-05 +103528,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5098.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012241473984154893,0.0,0.0,0.001224147398415489,0.0007518900073640438,0.0002587077266565536,0.0001696322082393195,0.0,4.4000163229311556e-05,0.0007518900073640438,0.0002587077266565536,0.0001696322082393195,0.0,4.4000163229311556e-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.0001458767811738448,5.012606248859195e-05,0.0001458767811738448,8.959974445317363e-05,3.082917177973019e-05,2.0214396202118477e-05,0.0,5.2433246121536e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.959974445317365e-05,3.082917177973019e-05,2.021439620211848e-05,0.0,5.243324612153601e-06 +103529,50.0,the Greater Atlanta and Macon Area,G1300670031004,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,5206.0,,426.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012115759232071144,0.0003376102750038529,0.0,0.0015491861982109675,0.0008300481920476892,0.00030891092041631323,0.00038086607456951066,0.0,2.936101117745413e-05,0.0005217989282212905,0.00030891092041631323,0.00038086607456951066,0.0,0.0,0.0003082492638263987,0.0,2.936101117745413e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2556907131765265e-05,0.0,0.0,0.00014438380956061927,7.40283042717049e-05,0.00016694071669238455,6.218291040466564e-05,3.681299260761233e-05,4.53879065483413e-05,0.0,0.0,2.0595196687919924e-05,0.0,1.9617104438453377e-06,0.0,0.0,0.0,8.944621390874865e-05,3.3288322932361127e-05,4.1042229478854875e-05,0.0,3.1639503724198654e-06 +103530,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen1_t12_incandescent,200001_500000,NaturalGas,372335.0,,1981.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.03188066991811663,0.0005831332092626505,0.0,0.03246380312737927,0.005974253589154908,0.013950850541203434,0.012538698997020937,0.0,0.0,0.0053911203798922575,0.013950850541203434,0.012538698997020937,0.0,0.0,0.0005831332092626505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.896186368181972e-05,0.0,0.0,0.0037991583394785576,0.001175587805230234,0.003838120203160377,0.0006424494843742746,0.0016624961242208132,0.0014942127308834692,0.0,0.0,3.896186368181972e-05,0.0,0.0,0.0,0.0,0.0,0.0007063221554593602,0.0016493767259297184,0.0014824213217712989,0.0,0.0 +103531,50.0,the Greater Atlanta and Macon Area,G1300670031312,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,NaturalGas,27680.0,,3475.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002466278141295991,0.0010228845779024338,0.0,0.0034891627191984253,0.001428447725126576,0.0008652627599574323,0.0011954215445081188,0.0,0.0,0.0004055631472241423,0.0008652627599574323,0.0011954215445081188,0.0,0.0,0.0010228845779024338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.834312320049605e-05,0.0,0.0,0.0002939009698121048,0.00015284865781373753,0.0003622440930126009,4.8330072871095354e-05,0.0001031114698848023,0.00014245576984297438,0.0,0.0,6.834312320049605e-05,0.0,0.0,0.0,0.0,0.0,0.00014830112329162568,8.983138618721869e-05,0.00012410839734569562,0.0,0.0 +103532,50.0,the Greater Atlanta and Macon Area,G1301350050719,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,17335.0,,7485.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.003894174451797228,0.005805076477272675,0.0,0.009699250929069904,0.004178238382716965,0.0007027610656485747,0.0037665761361150903,0.0004123899936494915,0.0006394470725059173,0.0020941325599087316,0.0007027610656485747,0.0006849716933734985,0.0004123899936494915,0.0,0.002084105822808234,0.003081604442741592,0.0006394470725059173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000387863722812805,0.0,0.0,0.0004640601391501961,0.000529369321433161,0.0008519238619630012,0.0002495531361471745,8.374647873407576e-05,8.16265586648666e-05,4.9143601604393784e-05,0.0,0.00013924864665177024,0.00020589609388915045,4.272438495081085e-05,0.0,0.0,0.0,0.00036699132801460766,6.172630499641887e-05,0.00033083339236430635,3.6221856573666575e-05,5.616518466363828e-05 +103533,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,50003.0,,7254.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004165807158850176,0.002135382806194159,0.0,0.006301189965044335,0.0028951960789126846,0.0013918657144197143,0.002014128171711936,0.0,0.0,0.0007598132727185255,0.0013918657144197143,0.002014128171711936,0.0,0.0,0.002135382806194159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014267470963346657,0.0,0.0,0.0004964300331571468,0.00028586921581620834,0.0006391047427906135,9.054526860840313e-05,0.0001658655613214681,0.0002400192032272756,0.0,0.0,0.00014267470963346657,0.0,0.0,0.0,0.0,0.0,0.00029364827208932826,0.00014117142703965857,0.0002042850436616266,0.0,0.0 +103534,50.0,the Greater Atlanta and Macon Area,G1302210960201,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,12929.0,,1864.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011519343723842739,0.0005488222294218188,0.0,0.0017007566018060927,0.00071927230279926,0.0004487741128913078,0.0005327408757218226,0.0,0.0,0.00017045007337744124,0.0004487741128913078,0.0005327408757218226,0.0,0.0,0.0005488222294218188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.666907685855393e-05,0.0,0.0,0.0001372753690542684,7.749813657036412e-05,0.0001739444459128223,2.0312439049617868e-05,5.3480157764235164e-05,6.348642950347796e-05,0.0,0.0,3.666907685855393e-05,0.0,0.0,0.0,0.0,0.0,7.356339057452121e-05,4.589825747199828e-05,5.44859366379278e-05,0.0,0.0 +103535,35.0,Eastern Counties in South Carolina and Georgia,G1302450010508,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,30177.0,,11733.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006072243066007725,0.008071222098154836,0.0,0.014143465164162561,0.0026474710100702664,0.0004613745735434259,0.009046972303822226,0.0003835584049914879,0.0016040888717351568,0.0022601831665859666,0.0004613745735434259,0.001363038049151688,0.0003835584049914879,0.0016040888717351568,0.00038728784348429965,0.007683934254670538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005392732808252654,0.0,0.0,0.0007236181580740566,0.0007184515941032753,0.001262891438899322,0.0002693419156868852,5.4981168484284203e-05,0.0001624307643469332,4.5707957260057816e-05,0.00019115635229589626,2.5876377014487847e-05,0.0005133969038107777,0.0,0.0,0.0,0.0,0.00023639669872583505,4.119683488387324e-05,0.0008078178676754894,3.424851126363347e-05,0.00014323152635049106 +103536,35.0,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,124396.0,,13837.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005810469932049764,0.0023531558373079873,0.0,0.008163625769357754,0.003265524775261066,0.0015462293587199648,0.0018354824749267059,0.0,0.0015164246211728561,0.0029874063260261173,0.0015462293587199648,0.001044956580652232,0.0,0.00023191312737429068,0.00027811844923494823,0.0007905258942744741,0.0012845114937985653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015722364907125563,0.0,0.0,0.0006924231025914409,0.00033706097551149887,0.0008496467516626966,0.00035600376237358454,0.00018426133211314283,0.0001245255695511901,0.0,2.763666434317848e-05,1.858219365224057e-05,5.281816181173008e-05,8.5823293607285e-05,0.0,0.0,0.0,0.00033986645103072874,0.000160927116097492,0.0001910317506724677,0.0,0.00015782512451231767 +103537,50.0,the Greater Atlanta and Macon Area,G1301210010121,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13423.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.00328165127182824,0.0,0.0,0.00328165127182824,0.0017569463674441076,0.0005549644647907528,0.0008917476690572127,0.0,7.799277053616689e-05,0.0017569463674441076,0.0005549644647907528,0.0008917476690572127,0.0,7.799277053616689e-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.0003910694014371615,0.0001178785687006331,0.0003910694014371615,0.0002093726320562937,6.613427298864242e-05,0.00010626821629859054,0.0,9.29428009363484e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002093726320562937,6.613427298864242e-05,0.00010626821629859054,0.0,9.29428009363484e-06 +103538,85.0,Rural Climate Zone 3A,G1301750950500,ComStock DOE Ref 1980-2004,gen3_t5_cfl,200001_500000,Electricity,198423.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.021654095169958323,0.0,0.0,0.02165409516995832,0.005853766194830126,0.005898695778449963,0.009901663886284526,0.0,0.0,0.005853766194830126,0.005898695778449963,0.009901663886284526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025804773264068216,0.0007074015177397693,0.0025804773264068216,0.0006975821811664712,0.000702936354171896,0.001179962448290452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006975821811664713,0.0007029363541718961,0.0011799624482904522,0.0,0.0 +103539,50.0,the Greater Atlanta and Macon Area,G1300630040616,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,43265.0,,2184.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0038151974517765686,0.0006362054138231496,0.0,0.004451402865599719,0.003332348341514628,0.0006939759999537536,0.0004251088977307744,0.0,0.0,0.0026961429276914782,0.0006939759999537536,0.0004251088977307744,0.0,0.0,0.0006362054138231496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.25070877281862e-05,0.0,0.0,0.00045465076014881257,0.00015749494654928873,0.0004971578478769988,0.0003212948863168204,8.26999702877984e-05,5.0659523115722435e-05,0.0,0.0,4.25070877281862e-05,0.0,0.0,0.0,0.0,0.0,0.00037217550957852877,7.75071646023245e-05,4.747856599151495e-05,0.0,0.0 +103541,50.0,the Greater Atlanta and Macon Area,G1301530021202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,37333.0,,9187.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.008764257694448515,0.007125047900083322,0.0,0.015889305594531843,0.004549712820133782,0.0006831118953629224,0.009747363094995676,0.0004285621502631971,0.00048055563377626045,0.004549712820133782,0.0006831118953629224,0.0026223151949123545,0.0004285621502631971,0.00048055563377626045,0.0,0.007125047900083322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00047605278695073627,0.0,0.0,0.0010444182785935344,0.0007992769789025698,0.0015204710655442706,0.0005421797712211226,8.140501736885586e-05,0.0003124958230672343,5.107085606710891e-05,5.7266810869212884e-05,0.0,0.00047605278695073627,0.0,0.0,0.0,0.0,0.00043536872384970077,6.536798384605752e-05,0.0009327395374908858,4.10097436534215e-05,4.598507670420453e-05 +103542,50.0,the Greater Atlanta and Macon Area,G1300890023212,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,32310.0,,785.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007516915103870695,0.0006224534369620276,0.0,0.008139368540832722,0.004362467311453509,0.0021510455738119076,0.0014270278502980102,0.0,0.00019891051234303438,0.0037400138744914813,0.0021510455738119076,0.0014270278502980102,0.0,0.00019891051234303438,0.0006224534369620276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1587445555575785e-05,0.0,0.0,0.0008957803205777668,0.00031363215513661573,0.0009373677661333426,0.0004456922528940278,0.0002563371099793869,0.00017005692462259079,0.0,2.370388916873368e-05,4.1587445555575785e-05,0.0,0.0,0.0,0.0,0.0,0.0005024021480354966,0.0002477244732511887,0.00016434320445539864,0.0,2.2907465324865763e-05 +103543,81.0,the Columbus-Albany Area,G1300950001500,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8185.0,,133.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0010974328580729286,4.955923400449388e-05,0.0,0.0011469533436536505,0.000607497787898714,0.00013139590501113276,0.0003723336040259435,0.0,3.576479514163241e-05,0.000607497787898714,0.00013139590501113276,0.00032277437002144963,0.0,3.576479514163241e-05,0.0,4.955923400449388e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3102608946774325e-06,0.0,0.0,0.00013077801008218277,4.074906591323894e-05,0.0001340882709768602,7.239381548155008e-05,1.5658083192877688e-05,3.84641206124067e-05,0.0,4.261990795348305e-06,0.0,3.3102608946774325e-06,0.0,0.0,0.0,0.0,7.102148352618968e-05,1.536126104332882e-05,4.3528857966778705e-05,0.0,4.181198449717634e-06 +103544,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,NaturalGas,93464.0,,523.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.008625252470756772,0.00015403113400817023,0.0,0.008779283604764944,0.002865979573717272,0.0031726301198439187,0.0027406739112037517,0.0,0.0,0.0027119484397091016,0.0031726301198439187,0.0027406739112037517,0.0,0.0,0.00015403113400817023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0290493301873394e-05,0.0,0.0,0.001027855263772137,0.00032233929142755087,0.0010381457570740103,0.00032317784184108205,0.0003780764191819048,0.0003266010027491502,0.0,0.0,1.0290493301873394e-05,0.0,0.0,0.0,0.0,0.0,0.000338900606047232,0.000375161874927192,0.0003240832760995862,0.0,0.0 +103545,50.0,the Greater Atlanta and Macon Area,G1300630040613,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,10127.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021995119190231414,0.0,0.0,0.0021995119190231414,0.0012455685305139698,0.0004109714494106186,0.0004704378354291806,0.0,7.245139659563332e-05,0.0012455685305139698,0.0004109714494106186,0.0004704378354291806,0.0,7.245139659563332e-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.00026210708361266494,7.722472637331552e-05,0.00026210708361266494,0.00014842944570981178,4.897383238592661e-05,5.606020499318788e-05,0.0,8.63374465084961e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014842944570981178,4.897383238592661e-05,5.606020499318788e-05,0.0,8.63374465084961e-06 +103546,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,57913.0,,1440.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0048072199304721635,0.00042376208375867995,0.0,0.005230982014230844,0.0014991258884301853,0.001367927821507506,0.00236395899389945,0.0,0.0,0.0010753638046715056,0.001367927821507506,0.00236395899389945,0.0,0.0,0.00042376208375867995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.831353517292041e-05,0.0,0.0,0.0005728664817726898,0.00020806858637271723,0.00060118001694561,0.00012814888611666913,0.00016301313644059053,0.0002817081164324997,0.0,0.0,2.831353517292041e-05,0.0,0.0,0.0,0.0,0.0,0.00017228973920350578,0.00015721156537663492,0.0002716822394236744,0.0,0.0 +103547,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,13525.0,,1907.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011634736643522101,0.000561404968003877,0.0,0.0017248786323560872,0.0007476601886246352,0.0004695816659611503,0.0005076367777703017,0.0,0.0,0.00018625522062075823,0.0004695816659611503,0.0005076367777703017,0.0,0.0,0.000561404968003877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.751031218534504e-05,0.0,0.0,0.00013864835899791923,8.264385330513144e-05,0.00017615867118326428,2.2195586789015646e-05,5.5958918019233536e-05,6.049385418967008e-05,0.0,0.0,3.751031218534504e-05,0.0,0.0,0.0,0.0,0.0,7.635715513783155e-05,4.79575088565783e-05,5.184400718885443e-05,0.0,0.0 +103548,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,70929.0,,4610.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006254592343420731,0.0013429990727396345,0.0,0.0075975914161603665,0.004973433919136358,0.0020538627939807783,0.0005703250766426661,0.0,0.0,0.003630434846396724,0.0020538627939807783,0.0005703250766426661,0.0,0.0,0.0013429990727396345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.973129300634987e-05,0.0,0.0,0.0007453487843794439,0.00027834219925384514,0.0008350800773857938,0.0004326325443698945,0.000244755221878857,6.796463769919105e-05,0.0,0.0,8.973129300634987e-05,0.0,0.0,0.0,0.0,0.0,0.0005466489778894235,0.00022574784652003042,6.268659145380969e-05,0.0,0.0 +103549,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7579.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015535696731191503,0.0,0.0,0.0015535696731191506,0.0006102127900486101,0.0002723543938235393,0.0006194759823074126,0.0,5.160921401332783e-05,0.0006102127900486101,0.0002723543938235393,0.0006194759823074126,0.0,5.160921401332783e-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.00018513374713842391,5.991934693010606e-05,0.00018513374713842391,7.271703505043078e-05,3.245557013026139e-05,7.382089896011474e-05,0.0,6.150098925382056e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.271703505043077e-05,3.245557013026139e-05,7.382089896011473e-05,0.0,6.150098925382055e-06 +103550,81.0,the Columbus-Albany Area,G1302150000200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,11490.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,24284.436554246196,0.0,0.0,0.0009333629963320348,0.0,0.0,0.0009333629963320348,0.0002919195351037488,0.0003835280099023917,0.00025791545132589425,0.0,0.0,0.0002919195351037488,0.0003835280099023917,0.00025791545132589425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011122856556445543,3.7691423095911695e-05,0.00011122856556445543,3.47879563229244e-05,4.570490855420378e-05,3.073570068732725e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.47879563229244e-05,4.570490855420378e-05,3.073570068732725e-05,0.0,0.0 +103551,85.0,Rural Climate Zone 3A,G1301470960500,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,8194.0,,130.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001704344668545908,0.00010313572095291635,0.0,0.0018074803894988245,0.001345644089738532,0.0002252940688658734,0.00013340650994150285,0.0,0.00010313572095291635,0.001345644089738532,0.0002252940688658734,0.00013340650994150285,0.0,0.0,0.0,0.0,0.00010313572095291635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.893512624656398e-06,0.0,0.0,0.00020310006824730966,7.558810104003256e-05,0.00020999358087196607,0.00016035512740251995,2.684741038994863e-05,1.5897530454841094e-05,0.0,0.0,0.0,0.0,6.893512624656398e-06,0.0,0.0,0.0,0.00015633730945304697,2.6174728392753523e-05,1.5499205909512272e-05,0.0,1.1982337116653322e-05 +103552,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,128450.0,,5386.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.010254309411781641,0.0015689482789570702,0.0,0.011823288064338149,0.00706374503244244,0.003625666191284998,0.0011338768406107132,0.0,0.0,0.00549479675348537,0.003625666191284998,0.0011338768406107132,0.0,0.0,0.0015689482789570702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010482821078120729,0.0,0.0,0.001221988026186659,0.0003978911562650851,0.0013268162369678663,0.0006548052696141359,0.0004320642663278358,0.0001351221098131377,0.0,0.0,0.00010482821078120729,0.0,0.0,0.0,0.0,0.0,0.0007926975602594679,0.000406874360689246,0.0001272443160191527,0.0,0.0 +103553,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,44102.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003476987422037202,0.0,0.0,0.003476987422037202,0.002216817154964317,0.0010976107628820377,0.00016252913059141,0.0,0.0,0.002216817154964317,0.0010976107628820377,0.00016252913059141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004143442675123653,0.00011092800851164231,0.0004143442675123653,0.0002641727935111028,0.00013079964703857947,1.936820741354951e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002641727935111028,0.00013079964703857947,1.936820741354951e-05,0.0,0.0 +103554,85.0,Rural Climate Zone 3A,G1301050000400,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,229571.0,,2163.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,729707.6418815667,0.0,0.0,0.05767303875335436,0.0019127702570211835,0.0,0.05958571679312277,0.05063188263511141,0.00416204126941168,0.0013258996603727016,0.0006469040282038184,0.002818989200023168,0.05063188263511141,0.00416204126941168,0.0013258996603727016,0.0006469040282038184,0.0009062189430019851,0.0,0.0,0.0019127702570211835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012779777823187266,0.0,0.0,0.0068727796694470185,0.0024396407118424204,0.007000577447678891,0.006033699300787788,0.0004959820609096716,0.00015800478744509028,7.709024787364782e-05,0.00010799228308686205,0.0,0.0,0.00012779777823187266,0.0,0.0,0.0,0.005948613775001116,0.0004889878617742013,0.00015577664849643206,7.600314294077556e-05,0.0003311960194663675 +103555,50.0,the Greater Atlanta and Macon Area,G1300890021704,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,62493.0,,8600.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005575288707284773,0.002531524244284907,0.0,0.008106812951569679,0.004324625871440787,0.001606600889684741,0.0021755861904441502,0.0,0.0,0.0017931016271558805,0.001606600889684741,0.0021755861904441502,0.0,0.0,0.002531524244284907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001691413129309783,0.0,0.0,0.0006643961060764434,0.0003858211400958186,0.0008335374190074216,0.00021368036731893162,0.00019145544404378234,0.00025926029471372926,0.0,0.0,0.0001691413129309783,0.0,0.0,0.0,0.0,0.0,0.00044465531751975465,0.00016518969500875822,0.00022369240647890864,0.0,0.0 +103556,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,56193.0,,8264.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005484140576580595,0.0024324275055496248,0.0,0.00791656808213022,0.004246183237743859,0.0014947679643359118,0.0021755861904441502,0.0,0.0,0.0018137557321942345,0.0014947679643359118,0.0021755861904441502,0.0,0.0,0.0024324275055496248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016252137359462458,0.0,0.0,0.0006535332634427726,0.00037809524614059034,0.0008160546370373972,0.0002161413782518333,0.00017812829050987803,0.0002592599374665391,0.0,0.0,0.00016252137359462458,0.0,0.0,0.0,0.0,0.0,0.0004377045059074308,0.0001540834760639158,0.00022426349152406254,0.0,0.0 +103557,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,31444.0,,1034.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007369570908082551,0.0008015729425583154,0.0,0.008171143850640866,0.003011579004604247,0.0006741363484423159,0.003399629902550112,0.000415058399490753,0.0006707401955534377,0.003011579004604247,0.0006741363484423159,0.0025980569599917966,0.000415058399490753,0.0006707401955534377,0.0,0.0008015729425583154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.355416198831224e-05,0.0,0.0,0.0008782214192902802,0.00030657856090608677,0.0009317755812785926,0.0003588856421515179,8.033588225263681e-05,0.00030960680062099325,4.9461926784548966e-05,7.993116748058321e-05,0.0,5.355416198831224e-05,0.0,0.0,0.0,0.0,0.00034341774283675635,7.687342181371599e-05,0.000387668138816608,4.7330127644213046e-05,7.648615016729928e-05 +103558,50.0,the Greater Atlanta and Macon Area,G1300630040523,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,42074.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0034974896016576845,0.0,0.0,0.0034974896016576845,0.001976167126619009,0.001335982771269514,0.00018537007736859937,0.0,0.0,0.001976167126619009,0.001335982771269514,0.00018537007736859937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004167905590059854,0.00012847917124186788,0.0004167905590059854,0.0002354968549448751,0.00015920705119348212,2.2090272443647178e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002354968549448751,0.00015920705119348212,2.2090272443647178e-05,0.0,0.0 +103559,50.0,the Greater Atlanta and Macon Area,G1301350050524,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,53431.0,,4741.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004760633108112251,0.001395640535994332,0.0,0.006156273644106583,0.0022019178726475795,0.0016711411317288098,0.002283214639730194,0.0,0.0,0.0008062773366532475,0.0016711411317288098,0.002283214639730194,0.0,0.0,0.001395640535994332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.324830694412117e-05,0.0,0.0,0.0005673158052729246,0.0002550889855279842,0.0006605641122170458,9.608257265977924e-05,0.00019914678475346223,0.0002720864478596832,0.0,0.0,9.324830694412117e-05,0.0,0.0,0.0,0.0,0.0,0.00023626433924240823,0.00017931234410390332,0.0002449874288707343,0.0,0.0 +103560,50.0,the Greater Atlanta and Macon Area,G1300670031108,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,87910.0,,16262.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,70149.4559448546,0.0,0.0,0.004861026808367356,0.0027654399314084753,0.0,0.007626466739775832,0.003872133630525332,0.0011122078415184923,0.0014675420147377707,0.0,0.0011746009833556578,0.0026346962462970064,0.0011122078415184923,0.0009324397070805769,0.0,0.00018170074383270113,0.001237437384228325,0.0005351023076571935,0.0009929002395229567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001847708973110731,0.0,0.0,0.0005792786419499508,0.00034476264189087084,0.0007640495392610238,0.00031397137347164035,0.00013253953812637133,0.00011111693650569702,0.0,2.1652906737219683e-05,8.267849655793614e-05,3.575247916836475e-05,6.633992158477223e-05,0.0,0.0,0.0,0.0003879256302174545,0.00011142537139022256,0.000147024151348957,0.0,0.00011767616260197773 +103561,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,4582.0,,202.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00091713874069518,0.00015995548061182053,0.0,0.0010770942213070005,0.0005892051933188261,0.00025432425174837036,0.00018989544130544985,0.0,4.3669334934354324e-05,0.0004292497127070056,0.00025432425174837036,0.00018989544130544985,0.0,4.3669334934354324e-05,0.00015995548061182053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0686745580939499e-05,0.0,0.0,0.00010929252810849584,3.705855534991855e-05,0.00011997927368943536,5.115233302219258e-05,3.03070181200852e-05,2.262924019633028e-05,0.0,5.2039367698878e-06,1.0686745580939499e-05,0.0,0.0,0.0,0.0,0.0,6.563252290282866e-05,2.8329591230516303e-05,2.1152761452118837e-05,0.0,4.864398103971579e-06 +103562,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,24805.0,,2785.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005956067208262485,0.0022091059395769014,0.0,0.008165255854913126,0.004875664704005911,0.0019382402730806693,0.0011342448092608618,0.0,0.0002170233614919427,0.0028835821259209533,0.0019382402730806693,0.0011342448092608618,0.0,0.0,0.001992082578084958,0.0,0.0002170233614919427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014760137960289518,0.0,0.0,0.0007097773305676151,0.0003142847545783819,0.0008573787101705104,0.0003436329967817355,0.00023097775074085674,0.0001351665830450228,0.0,0.0,0.00013310096702041677,0.0,1.4500412582478358e-05,0.0,0.0,0.0,0.0005119608239378246,0.00020352160114303275,0.00011909943409752724,0.0,2.278816647746183e-05 +103563,50.0,the Greater Atlanta and Macon Area,G1300570090502,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,72171.0,,3693.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007634434592278359,0.001075772144886294,0.0,0.008710206737164652,0.006597722896269013,0.001502551590586145,0.0006099322503094944,0.0,0.0,0.0055219507513827185,0.001502551590586145,0.0006099322503094944,0.0,0.0,0.001075772144886294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.187713442507295e-05,0.0,0.0,0.0009097810223681005,0.00029478775490455306,0.0009816581567931733,0.000658040348546626,0.00017905620982422015,7.268446399725414e-05,0.0,0.0,7.187713442507295e-05,0.0,0.0,0.0,0.0,0.0,0.0007435768969465191,0.000169340644764258,6.874061508239633e-05,0.0,0.0 +103564,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,3115.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00041163310600053307,0.0,0.0,0.0004116331060005331,0.00016450436966748247,0.00010785002415605688,0.00011157184247432571,0.0,2.7706869702667985e-05,0.00016450436966748247,0.00010785002415605688,0.00011157184247432571,0.0,2.7706869702667985e-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,4.904964830322319e-05,1.640215025354986e-05,4.904964830322319e-05,1.9602119846315234e-05,1.285126409230521e-05,1.3294750966656236e-05,0.0,3.301513397946507e-06,0.0,0.0,0.0,0.0,0.0,0.0,1.960211984631523e-05,1.2851264092305209e-05,1.3294750966656232e-05,0.0,3.3015133979465067e-06 +103565,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,43283.0,,2994.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.003787956726112859,0.0008811599760196422,0.0,0.0046691167021325015,0.0008892006528696404,0.0015235855046494549,0.0022563305446134064,0.0,0.0,8.040676849998129e-06,0.0015235855046494549,0.0022563305446134064,0.0,0.0,0.0008811599760196422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8874777041580615e-05,0.0,0.0,0.0004514033374982265,0.00019649948099691492,0.0005102781145398071,9.581916131229165e-07,0.00018156268180720306,0.0002688824640779006,0.0,0.0,5.8874777041580615e-05,0.0,0.0,0.0,0.0,0.0,9.71789016082317e-05,0.00016650951095260104,0.0002465897019789743,0.0,0.0 +103566,50.0,the Greater Atlanta and Macon Area,G1302250040200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,127504.0,,3235.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006563283347583787,0.0005502263059484985,0.0,0.007113509653532284,0.0032135216252160504,0.0015770801875908567,0.001177207346484406,0.0,0.001145700494240972,0.0028935772533911974,0.0015770801875908567,0.0009469254123607601,0.0,0.001145700494240972,0.00031994437182485277,0.00023028193412364577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.676251884687818e-05,0.0,0.0,0.0007821344521588729,0.00023297431858929464,0.0008188969710057511,0.00034482230006017717,0.00018793775663914996,0.00011284336656054192,0.0,0.00013653102889900383,2.13765879093841e-05,1.538593093749408e-05,0.0,0.0,0.0,0.0,0.0003699359744095073,0.00018155119646320346,0.00013551841175939196,0.0,0.00013189138837364846 +103567,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,32526.0,,1332.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002868148621307467,0.00038814422721503047,0.0,0.0032562928485224967,0.0019204011980512967,0.0009557660535077365,0.0003801255969634641,0.0,0.0,0.0015322569708362663,0.0009557660535077365,0.0003801255969634641,0.0,0.0,0.00038814422721503047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5933697026255257e-05,0.0,0.0,0.0003417916182369273,0.00010773836383098052,0.00036772531526318254,0.00018259604321975526,0.00011389675683382637,4.5298818183345645e-05,0.0,0.0,2.5933697026255254e-05,0.0,0.0,0.0,0.0,0.0,0.00021686628593789627,0.00010793236041514221,4.292666891014412e-05,0.0,0.0 +103568,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,9301.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007358446902000197,0.0,0.0,0.0007358446902000197,0.00019757968534461054,0.0002615061352627254,0.0002767588695926837,0.0,0.0,0.00019757968534461054,0.0002615061352627254,0.0002767588695926837,0.0,0.0,0.0,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.768902554864648e-05,3.3679670084660726e-05,8.768902554864648e-05,2.354514520090862e-05,3.1163122438170604e-05,3.298075790956725e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.354514520090862e-05,3.1163122438170604e-05,3.298075790956725e-05,0.0,0.0 +103569,35.0,Eastern Counties in South Carolina and Georgia,G1301270000600,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,57740.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004837756088738379,0.0,0.0,0.004837756088738379,0.0012544376574186013,0.0013808174561525414,0.0022025009751672356,0.0,0.0,0.0012544376574186013,0.0013808174561525414,0.0022025009751672356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005765043998236222,0.00017105120236391607,0.0005765043998236222,0.0001494884850622676,0.00016454887849312797,0.0002624670362682265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001494884850622676,0.00016454887849312797,0.0002624670362682265,0.0,0.0 +103570,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,28554.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.009300823977353817,0.0,0.0,0.009300823977353817,0.004726874678348898,0.0020897596321710807,0.00224268501151506,0.0,0.00024150465531877767,0.004726874678348898,0.0020897596321710807,0.00224268501151506,0.0,0.00024150465531877767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011083651485626267,0.00038855804062857494,0.0011083651485626267,0.0005632945175461405,0.00024903349969971884,0.0002672573862293734,0.0,2.8779745087393798e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005632945175461405,0.00024903349969971884,0.0002672573862293734,0.0,2.8779745087393798e-05 +103571,50.0,the Greater Atlanta and Macon Area,G1300670031114,ComStock 90.1-2007,gen4_led,_1000,Electricity,2711.0,,468.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00021692824718442348,0.00013646858227381892,0.0,0.0003533968294582425,0.0002572947608371957,7.757417296401816e-05,1.8527895657028613e-05,0.0,0.0,0.00012082617856337674,7.757417296401816e-05,1.8527895657028613e-05,0.0,0.0,0.00013646858227381892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.117608598959693e-06,0.0,0.0,2.5851911428269717e-05,1.701187673058481e-05,3.496952002722941e-05,1.4399174413561598e-05,9.24471881655011e-06,2.208018198158013e-06,0.0,0.0,9.117608598959693e-06,0.0,0.0,0.0,0.0,0.0,2.545997457246758e-05,7.676162797554269e-06,1.8333826572075582e-06,0.0,0.0 +103573,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030700,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,5890.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001414290960942157,0.0,0.0,0.001414290960942157,0.000901258982537233,0.00023645952382067993,0.00023133168524884287,0.0,4.5240769335401165e-05,0.000901258982537233,0.00023645952382067993,0.00023133168524884287,0.0,4.5240769335401165e-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.00016853848433152414,5.771209119252479e-05,0.00016853848433152414,0.00010740139554155664,2.8178451854024998e-05,2.7567376647676785e-05,0.0,5.3912602882657145e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010740139554155664,2.8178451854024998e-05,2.7567376647676785e-05,0.0,5.3912602882657145e-06 +103574,50.0,the Greater Atlanta and Macon Area,G1301210005501,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,36922.0,,4872.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003690982527896653,0.0008284511373519672,0.0,0.00451943366524862,0.0026409018727940243,0.0008385574433613974,0.0006874061122554472,0.0,0.00035256823683775,0.0018124507354420575,0.0008385574433613974,0.0006874061122554472,0.0,0.00035256823683775,0.0008284511373519672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.535183198599618e-05,0.0,0.0,0.000439847295296948,0.00018940476174728594,0.0004951991272829442,0.00021598627135670768,9.99292791623753e-05,8.19168654852583e-05,0.0,4.201487929260668e-05,5.535183198599618e-05,0.0,0.0,0.0,0.0,0.0,0.000289366411704054,9.188162608120441e-05,7.531981484656508e-05,0.0,3.8631274651120616e-05 +103575,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,24647.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005803059121844766,0.0,0.0,0.005803059121844766,0.0038075028466627568,0.000820536878567669,0.0010565001599459132,0.0,0.00011860194374216685,0.0038075028466627568,0.000820536878567669,0.0010565001599459132,0.0,0.00011860194374216685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006915369486677715,0.0002047449962972807,0.0006915369486677715,0.0004537311864897886,9.778145584249703e-05,0.000125900646802949,0.0,1.4133515540584693e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004537311864897886,9.778145584249703e-05,0.000125900646802949,0.0,1.4133515540584693e-05 +103576,50.0,the Greater Atlanta and Macon Area,G1300150960102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,208112.0,,41099.0,,9.729435225087556,Education,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.05571729525654088,0.03635167217417425,0.0,0.09206896743071513,0.07070305991844558,0.00854918485284268,0.006652091528792935,0.0006497627630397869,0.005515052802099695,0.04103916734988748,0.00854918485284268,0.003800641855793609,0.0006497627630397869,0.0016786306522300937,0.029663892568558097,0.0028514496729993254,0.0038364221498696006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002428807833245448,0.0,0.0,0.006639723995283126,0.003862904225815344,0.009068531828528575,0.004890559438408834,0.001018790082077195,0.0004529152538937674,7.743099138485674e-05,0.00020003921887291336,0.0019819692004774177,0.00019051732389923414,0.00025632747029060956,0.0,0.0,0.0,0.006964050614853371,0.0008420704294779994,0.0006552121245471807,6.39997869211816e-05,0.0005432170390038697 +103577,50.0,the Greater Atlanta and Macon Area,G1301130140203,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,30857.0,,11911.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,22700.572550927158,0.008157357783344584,0.0,0.006187712219342859,0.00819336120879442,0.0,0.022538359491510854,0.011365248646930837,0.0002908244824683028,0.008187408451200126,0.0003691426908173501,0.0023256635001232193,0.0032078908635862513,0.0002908244824683028,0.0020325439785824173,0.0003691426908173501,0.0002872384839175223,0.0,0.006154864472617708,0.002038425016205697,0.0,0.0,0.0,0.008157357783344584,0.0,0.0,0.0,0.0005474307103902283,0.0,0.0,0.0007373785976153765,0.0007944713439395095,0.0012848093080056048,0.00038227861646507213,3.4657033396661315e-05,0.00024221463044670326,4.399007420286456e-05,3.4229696363410254e-05,0.0,0.00041123072018162143,0.00013619519831506262,0.0,0.0,0.0,0.000647881104872553,1.6578580273862712e-05,0.0004667268968936176,2.104314492467852e-05,0.00013257549261172532 +103578,35.0,Eastern Counties in South Carolina and Georgia,G1300730030505,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,24222.0,,3274.0,,8.53126424238864,Food Service,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.0056366434661409325,0.0025395946138332508,0.0,0.008176238079974184,0.002150007361009084,0.00041667561515212344,0.004787362661572184,0.00042007176804100167,0.00040212067419978845,0.002150007361009084,0.00041667561515212344,0.0026498887219387228,0.00042007176804100167,0.0,0.0,0.002137473939633462,0.00040212067419978845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016968100579982633,0.0,0.0,0.0006717121186931356,0.0003564307483647952,0.0008413931244929618,0.00025621382802449905,4.9654739020280704e-05,0.0003157840971150047,5.005945453335112e-05,0.0,0.0,0.00014281363095210015,2.6867374847726188e-05,0.0,0.0,0.0,0.00022125106845812545,4.2878888102776356e-05,0.0004926537104841595,4.322837642032276e-05,4.138108102757749e-05 +103579,46.0,the Tallahassee-Valdosta Area,G1300270960500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,36355.0,,191.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0018553050189943254,3.241110067585652e-05,0.0,0.0018877161196701822,0.0011474203392987173,0.00047318788557836923,0.00011031830875556853,0.0,0.00015678958603752692,0.0011150092386228608,0.00047318788557836923,0.00011031830875556853,0.0,0.00015678958603752692,3.241110067585652e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1650895770991838e-06,0.0,0.0,0.00022109362255402892,7.134354633798855e-05,0.0002232587121311281,0.00013287380200263015,5.638901566056885e-05,1.314644991906697e-05,0.0,1.868435497176297e-05,2.1650895770991838e-06,0.0,0.0,0.0,0.0,0.0,0.0001357045079795427,5.596356190926425e-05,1.304726027425967e-05,0.0,1.8543381968061437e-05 +103580,50.0,the Greater Atlanta and Macon Area,G1301390001502,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,9349.0,,1044.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0008389617673603009,0.00030732571746519566,0.0,0.0011462874848254968,0.0004504927308439792,0.0002635009596720761,0.00043229379430944134,0.0,0.0,0.0001431670133787835,0.0002635009596720761,0.00043229379430944134,0.0,0.0,0.00030732571746519566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.053346696830402e-05,0.0,0.0,9.997886007559242e-05,4.907110587689986e-05,0.00012051232704389644,1.706117650995496e-05,3.140134223247015e-05,5.151634133316732e-05,0.0,0.0,2.053346696830402e-05,0.0,0.0,0.0,0.0,0.0,4.7361528437722036e-05,2.770257396050694e-05,4.544822464566745e-05,0.0,0.0 +103581,35.0,Eastern Counties in South Carolina and Georgia,G1301790010204,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,5944.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006080794607437914,0.0,0.0,0.0006080794607437914,0.0003569505405924594,0.00022358006546129117,2.7548854690040904e-05,0.0,0.0,0.0003569505405924594,0.00022358006546129117,2.7548854690040904e-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,7.246544595754867e-05,1.9366680970043335e-05,7.246544595754867e-05,4.2538157886768836e-05,2.6644263121554236e-05,3.2830249492256076e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2538157886768836e-05,2.6644263121554236e-05,3.2830249492256076e-06,0.0,0.0 +103582,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,31667.0,,3907.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003160798251890206,0.0011383417597280625,0.0,0.004299140011618269,0.0030660629952438574,0.0009773920563074159,0.0002556849600669948,0.0,0.0,0.001927721235515795,0.0009773920563074159,0.0002556849600669948,0.0,0.0,0.0011383417597280625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.60572002105904e-05,0.0,0.0,0.00037666661078808103,0.00017517831196950197,0.0004527238109986714,0.00022972305299514854,0.00011647404355540491,3.0469514237527536e-05,0.0,0.0,7.60572002105904e-05,0.0,0.0,0.0,0.0,0.0,0.00032287381202230345,0.0001029249234441102,2.692507553225767e-05,0.0,0.0 +103583,50.0,the Greater Atlanta and Macon Area,G1300570090902,ComStock DOE Ref 1980-2004,gen3_t5_cfl,_1000,Electricity,3118.0,,207.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.0006891980454696488,0.000163842713077568,0.0,0.0008530407585472169,0.0004400843393668548,0.00017856457220316474,0.00020585790653713617,0.0,2.8533940440061064e-05,0.0002762416262892868,0.00017856457220316474,0.00020585790653713617,0.0,2.8533940440061064e-05,0.000163842713077568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0945748320743993e-05,0.0,0.0,8.21324134181012e-05,3.952513743160542e-05,9.307816173884521e-05,3.291998809749886e-05,2.127971685703594e-05,2.4532290531339717e-05,0.0,3.400417932226679e-06,1.0945748320743993e-05,0.0,0.0,0.0,0.0,0.0,4.801909042198907e-05,1.9483784292628156e-05,2.246185229474362e-05,0.0,3.113434729484351e-06 +103584,50.0,the Greater Atlanta and Macon Area,G1301390001002,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,12962.0,,352.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030052442313914744,0.00027897095972268383,0.0,0.003284215191114158,0.0017475177610378264,0.000508483089349262,0.0009283041956499866,0.0,9.982743800334403e-05,0.0015683742393184867,0.000508483089349262,0.0009283041956499866,0.0,0.0,0.00017914352171933987,0.0,9.982743800334403e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8641657435849813e-05,0.0,0.0,0.00035812763714778583,0.0001361623361696379,0.00037676929458363564,0.00018689933903658806,6.059469157817557e-05,0.00011062375053244023,0.0,0.0,1.1970895347183727e-05,0.0,6.670762088666092e-06,0.0,0.0,0.0,0.0002004774339635256,5.833381911154127e-05,0.00010649622409042603,0.0,1.1452329158690679e-05 +103585,50.0,the Greater Atlanta and Macon Area,G1302230120103,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,23726.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0056969459462372345,0.0,0.0,0.005696945946237235,0.0023220838023047955,0.001163605820438316,0.002078842298437492,0.0,0.0001324140250566312,0.0023220838023047955,0.001163605820438316,0.002078842298437492,0.0,0.0001324140250566312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006788919048061458,0.00023142858649336697,0.0006788919048061458,0.0002767173693665503,0.00013866422102927755,0.00024773084054096885,0.0,1.577947386934916e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002767173693665503,0.00013866422102927752,0.00024773084054096885,0.0,1.5779473869349158e-05 +103586,50.0,the Greater Atlanta and Macon Area,G1300130180104,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,38201.0,,5177.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.001865304942835235,0.0008803124445056216,0.0,0.0027455996569794366,0.0012502918962578634,0.0005364675454865377,0.000678594122629681,0.0,0.0002802638229667746,0.0009587515634279354,0.0005364675454865377,0.00028935949837526173,0.0,8.072633554550041e-05,0.0002915403328299282,0.0003892346242544192,0.00019953748742127422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.88170070300301e-05,0.0,0.0,0.00022228394681318996,0.00011390917581984906,0.00028110095384322,0.00011425214003247439,6.392955951034836e-05,3.448228215648892e-05,0.0,9.619965113878313e-06,1.94789133251719e-05,2.6006238778051376e-05,1.3331854926806821e-05,0.0,0.0,0.0,0.000128007826533308,5.4924809725573984e-05,6.947606314660718e-05,0.0,2.8694069713856222e-05 +103587,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,106575.0,,4504.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005485951126978538,0.0007659693437077011,0.0,0.00625192047068624,0.002243174405419401,0.0016413527477385482,0.0010965519323845856,0.0,0.0012708236547822847,0.002005303876607972,0.0016413527477385482,0.0005684531174883129,0.0,0.0012708236547822847,0.0002378705288114284,0.0005280988148962726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1177504246999334e-05,0.0,0.0,0.0006537499997983563,0.00022263544811170722,0.0007049275040453557,0.00023896811666460066,0.0001955967768699565,6.774143933142142e-05,0.0,0.0001514415540400995,1.589309036776332e-05,3.528441387923601e-05,0.0,0.0,0.0,0.0,0.00025292633554200585,0.00018506868427811584,0.0001236403470543717,0.0,0.00014329013800604877 +103588,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,15098.0,,93.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034886670773977267,7.410553807041945e-05,0.0,0.003562772615468146,0.00233705378265161,0.000486152179439649,0.0006653784082327283,0.0,7.410553807041945e-05,0.00233705378265161,0.000486152179439649,0.0006653784082327283,0.0,0.0,0.0,0.0,7.410553807041945e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.952748842066115e-06,0.0,0.0,0.0004157354727623443,0.00014417934302737558,0.0004206882216044104,0.00027850068167766445,5.79335034469799e-05,7.929143164868211e-05,0.0,0.0,0.0,0.0,4.952748842066115e-06,0.0,0.0,0.0,0.000275956707242283,5.740430778816361e-05,7.856714123099292e-05,0.0,8.75029938383712e-06 +103589,50.0,the Greater Atlanta and Macon Area,G1301210010400,ComStock 90.1-2007,gen3_t5_cfl,100001_200000,NaturalGas,141859.0,,10116.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.012833165769447395,0.002977597671822017,0.0,0.015810763441269415,0.004910735972514315,0.0043956723100199695,0.00650432446912883,0.0,0.0,0.0019331383006922981,0.0043956723100199695,0.00650432446912883,0.0,0.0,0.002977597671822017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019894592449881964,0.0,0.0,0.0015293040396691198,0.000716948855403777,0.0017282499641679393,0.00023036842705844137,0.0005238239372532237,0.0007751080181352439,0.0,0.0,0.00019894592449881964,0.0,0.0,0.0,0.0,0.0,0.0005367849123833752,0.0004804841044207086,0.0007109775927307167,0.0,0.0 +103590,85.0,Rural Climate Zone 3A,G1300690010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6643.0,,503.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005857548651570438,0.00014652224368771476,0.0,0.0007322771088447587,0.0004986433819695716,0.00019420879480498514,3.945530566963962e-05,0.0,0.0,0.0003521211382818569,0.00019420879480498514,3.945530566963962e-05,0.0,0.0,0.00014652224368771476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.788876986726959e-06,0.0,0.0,6.980437673791476e-05,2.7376489767267263e-05,7.959325372464173e-05,4.1962257688496025e-05,2.314385195033586e-05,4.701886719344116e-06,0.0,0.0,9.788876986726959e-06,0.0,0.0,0.0,0.0,0.0,5.4198948376019045e-05,2.1109098855836376e-05,4.288507884537293e-06,0.0,0.0 +103591,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,7254.0,,304.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017418109729498144,0.00024084299872886316,0.0,0.0019826539716786776,0.0008704092440324714,0.000658844549407323,0.0003456328611565657,0.0,0.00010776731708231756,0.0007373335623859258,0.000658844549407323,0.0003456328611565657,0.0,0.0,0.00013307568164654563,0.0,0.00010776731708231756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.609173524428867e-05,0.0,0.0,0.00020757176968890493,9.158656631938491e-05,0.0002236635049331936,8.786810668454833e-05,7.851456397634459e-05,4.118909902801205e-05,0.0,0.0,8.89134684342736e-06,0.0,7.200388400861311e-06,0.0,0.0,0.0,9.819100308346944e-05,7.432435676196481e-05,3.899089717653162e-05,0.0,1.2157247911227733e-05 +103592,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,157550.0,,18334.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009961253922652647,0.003117937246800545,0.0,0.013079191169453193,0.007084751007308959,0.003101997651883918,0.001574509285184949,0.0,0.001317915494713945,0.005510489947183892,0.003101997651883918,0.001122491451142123,0.0,0.00022627487244271388,0.0015742610601250679,0.00045201783404282616,0.0010916406222712311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002083226463007766,0.0,0.0,0.0011870636034710573,0.0004412054408087588,0.001395386249771834,0.0006566745616954638,0.0003696591352048886,0.00013376516221799044,0.0,2.6964744352714365e-05,0.00010518307587814624,3.0201233671259514e-05,7.293715211052708e-05,0.0,0.0,0.0,0.0007558543957783116,0.0003309443844182528,0.00016798046440489562,0.0,0.000140605113562383 +103593,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,49929.0,,10913.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004388644390177796,0.0032123731599994427,0.0,0.0076010175501772395,0.004045565281375775,0.0012991524137943545,0.0022563305446134064,0.0,0.0,0.0008331921213763329,0.0012991524137943545,0.0022563305446134064,0.0,0.0,0.0032123731599994427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021463106952718703,0.0,0.0,0.0005229865393105871,0.00037706601428566684,0.000737617608837774,9.928994591466584e-05,0.00015481756198974675,0.0002688826886291262,0.0,0.0,0.00021463106952718703,0.0,0.0,0.0,0.0,0.0,0.00039258956706078563,0.00012607229106535467,0.00021895872889105027,0.0,0.0 +103594,50.0,the Greater Atlanta and Macon Area,G1300670030904,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,11278.0,,1436.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,24034.3828889517,0.0,0.0,0.0010145693420192242,0.00041842670585446907,0.0,0.001432996047873693,0.0009797611970635606,0.00030777568310273924,0.00014548954130683123,0.0,0.0,0.0005613344912090914,0.00030777568310273924,0.00014548954130683123,0.0,0.0,0.00041842670585446907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7956576935225595e-05,0.0,0.0,0.00012090478856097889,5.7625844261619814e-05,0.00014886136549620448,6.689343464345869e-05,3.667719134474146e-05,1.7337782151515996e-05,0.0,0.0,2.7956576935225595e-05,0.0,0.0,0.0,0.0,0.0,0.00010177878011002921,3.1972110824159906e-05,1.5113629808321913e-05,0.0,0.0 +103595,81.0,the Columbus-Albany Area,G1302150010402,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,248064.0,,,5738.0,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,480687.657779034,0.0,0.0,0.01933328201972004,0.0,0.000540832311588609,0.019874144704908087,0.009563856749362666,0.007400709744604859,0.0029095478373411224,0.0,0.0,0.009023024437774058,0.007400709744604859,0.0029095478373411224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000540832311588609,0.0,0.0,0.0,0.0,4.361848211469766e-05,0.0023039116903767996,0.0005485462493452666,0.0023475301724914977,0.0010752572410384893,0.0008819289803091352,0.000346725469029175,0.0,0.0,0.0,0.0,0.0,4.361848211469766e-05,0.0,0.0,0.001129680930569593,0.0008741704199739095,0.00034367523422423717,0.0,0.0 +103596,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,62088.0,,1677.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.01378239703089828,0.0013003222525249946,0.0,0.015082719283423276,0.007099738474982873,0.0020756963013691073,0.00414613665183876,0.000428238707130923,0.0013330708696677484,0.007099738474982873,0.0020756963013691073,0.0028458143993137655,0.000428238707130923,0.0013330708696677484,0.0,0.0013003222525249946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.688009044401824e-05,0.0,0.0,0.0016424240822398464,0.0005182694427442694,0.0017293041726838647,0.0008460633823546636,0.00024735708782310444,0.00033913071090168825,5.103245567242545e-05,0.00015885971756336966,0.0,8.688009044401824e-05,0.0,0.0,0.0,0.0,0.0008140181580682082,0.00023798827039943175,0.0004753739214932163,4.909956681088394e-05,0.00015284279804460583 +103597,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,57059.0,,8244.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.002937105290677427,0.0014019574078449953,0.0,0.0043390626985224225,0.0016662284448108822,0.0005586659579844437,0.0016552356207304494,0.0,0.0004589326749966467,0.001472435594489705,0.0005586659579844437,0.0004470533328452114,0.0,0.0004589326749966467,0.0001937928503211771,0.001208182287885238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.367102152051019e-05,0.0,0.0,0.00035000927457806366,0.00018401515441987198,0.00044368029609857384,0.0001754673609850041,6.657516409311097e-05,5.327449895089341e-05,0.0,5.46901376554662e-05,1.2948163868158696e-05,8.07240422968042e-05,0.0,0.0,0.0,0.0,0.0001703761344617819,5.712502788750622e-05,0.00016925208998908348,0.0,4.6927043760202195e-05 +103598,50.0,the Greater Atlanta and Macon Area,G1301210006000,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,98708.0,,1695.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,140298.9118897092,0.0,0.0,0.009242518261767965,0.0002882247552443784,0.0,0.009530743017012344,0.0037300425141050283,0.004642606486033726,0.0010694954008575851,0.0,8.85808856545838e-05,0.0034418177588606503,0.004642606486033726,0.0010694954008575851,0.0,8.85808856545838e-05,0.0002882247552443784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9257214975960978e-05,0.0,0.0,0.001101413255608225,0.000269020200526179,0.001120670470584186,0.00041015485126796755,0.0005532505513613277,0.00012744972505915827,0.0,1.0556015026451504e-05,1.9257214975960978e-05,0.0,0.0,0.0,0.0,0.0,0.00043859628699667504,0.000545899935204797,0.00012575639821861542,0.0,1.0415765343173122e-05 +103599,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,6316.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012858468754250124,0.0,0.0,0.0012858468754250124,0.0007459350980548136,0.00021727148271316062,0.0002722716867498,0.0,5.028590083349892e-05,0.0007459350980548136,0.00021727148271316062,0.0002722716867498,0.0,5.028590083349892e-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.00015323488748727372,5.161875145517674e-05,0.00015323488748727372,8.889338459173613e-05,2.589232967318892e-05,3.244672603126681e-05,0.0,5.9925909559569324e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.889338459173613e-05,2.589232967318892e-05,3.244672603126681e-05,0.0,5.9925909559569324e-06 +103600,35.0,Eastern Counties in South Carolina and Georgia,G1300510004207,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,14122.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003087206941467128,0.0,0.0,0.003087206941467128,0.0016332992922038433,0.0006903559445019992,0.0006888672171746917,0.0,7.451907343911599e-05,0.0016332992922038433,0.0006903559445019992,0.0006888672171746917,0.0,7.451907343911599e-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.0003678935463753636,9.5345082291271e-05,0.0003678935463753636,0.00019463556551077457,8.226772662135079e-05,8.209031927988867e-05,0.0,8.880223036520552e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019463556551077457,8.226772662135079e-05,8.209031927988867e-05,0.0,8.880223036520552e-06 +103601,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,7818.0,,1550.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005950100868998616,0.0004562623768279473,0.0,0.0010512417741215113,0.0005538553248546421,0.00025828372660146665,0.00023907203305910464,0.0,0.0,9.759294802669486e-05,0.00025828372660146665,0.00023907203305910464,0.0,0.0,0.0004562623768279473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.048463899059415e-05,0.0,0.0,7.09045243524438e-05,5.334800567117696e-05,0.00010138916334303794,1.1629687819309433e-05,3.077844424129188e-05,2.848907802277373e-05,0.0,0.0,3.048463899059415e-05,0.0,0.0,0.0,0.0,0.0,5.341770978139211e-05,2.4910702361622208e-05,2.3057791278165037e-05,0.0,0.0 +103602,50.0,the Greater Atlanta and Macon Area,G1301350050308,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,62886.0,,650.0,,9.325022323477118,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,349688.3371303919,0.0,0.0,0.015027781625767855,0.0005509868413145881,0.0,0.015578856851240499,0.007013106173344554,0.004560092250687338,0.0034545832017359637,0.0,0.0005509868413145881,0.007013106173344554,0.004560092250687338,0.0034545832017359637,0.0,0.0,0.0,0.0,0.0005509868413145881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.681615693368838e-05,0.0,0.0,0.0017908359978410864,0.0005186636346802496,0.001827652154774775,0.0008357403178105637,0.0005434186867610806,0.00041167699326944215,0.0,0.0,0.0,0.0,3.681615693368838e-05,0.0,0.0,0.0,0.0008227509073207017,0.0005349726560506161,0.0004052785446833814,0.0,6.463967782725781e-05 +103603,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,179672.0,,10113.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.04709237930376239,0.008756942893606831,0.0,0.05584932219736921,0.029272265034568534,0.0023874446361928352,0.013947660110568194,0.0006359296659989537,0.009606022750040697,0.029272265034568534,0.0023874446361928352,0.00979335296823318,0.0006359296659989537,0.005003386998768883,0.0,0.004154307142335016,0.004602635751271813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005850888129845155,0.0,0.0,0.0056119036810214,0.002496814824313624,0.006196992494005916,0.0034883166730589206,0.0002845069529331457,0.0011670540835803285,7.57824532600143e-05,0.0005962435181889911,0.0,0.0002775670304366633,0.00030752178254785215,0.0,0.0,0.0,0.0032480252143564582,0.0002649087922330883,0.0015476203043017108,7.056220580411699e-05,0.0010658759773105422 +103604,50.0,the Greater Atlanta and Macon Area,G1301490970100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,46837.0,,1048.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,364853.82094078336,0.01480031576657785,0.0,0.01253951759759071,0.0009267833903704025,0.0,0.028266616754538964,0.021755248753477886,0.0023463757795606495,0.002276751753716903,0.0006433075553456646,0.0012450251296906275,0.00695493298690004,0.0023463757795606495,0.0013499683633465,0.0006433075553456646,0.0012450251296906275,0.0,0.0009267833903704025,0.0,0.0,0.0,0.0,0.01480031576657785,0.0,0.0,0.0,6.192418428691133e-05,0.0,0.0,0.0014943114271295283,0.00048266399957064716,0.0015562356114164398,0.0008288066710988681,0.0002796133194478792,0.00016087326612944123,7.666178731600397e-05,0.00014836737249904953,0.0,6.192418428691133e-05,0.0,0.0,0.0,0.0,0.0011977483240879494,0.00012918113184985056,0.0001253479391699796,3.54176849467284e-05,6.854560843832857e-05 +103605,85.0,Rural Climate Zone 3A,G1301750951000,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,148459.0,,11916.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.01650803129635322,0.003507545793370748,0.0,0.02001557708972397,0.003529795757936583,0.005830687610894255,0.01065509372089313,0.0,0.0,2.2249964565834523e-05,0.005830687610894255,0.01065509372089313,0.0,0.0,0.003507545793370748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002343542995432686,0.0,0.0,0.0019672288871360887,0.0008184791704871413,0.0022015831866793573,2.651483526163016e-06,0.0006948313153823243,0.0012697460882276014,0.0,0.0,0.0002343542995432686,0.0,0.0,0.0,0.0,0.0,0.0003882545558516529,0.0006413376818155709,0.0011719909490121331,0.0,0.0 +103606,50.0,the Greater Atlanta and Macon Area,G1301210011900,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,118933.0,,24554.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.0061221164947300325,0.004175606496590954,0.0,0.010297722991320988,0.0036143519058391836,0.001988016774223421,0.0032412696408384324,0.0,0.0014541024007813702,0.0032303477382036806,0.001988016774223421,0.0006801366640732255,0.0,0.00022363304859112601,0.00038400416763550353,0.002561132976765207,0.0012304693521902443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002789892321962818,0.0,0.0,0.0007295613775900511,0.0004824251594001244,0.0010085506097863327,0.00038495460646779283,0.00023690830740040112,8.105063698443151e-05,0.0,2.6649939632029064e-05,2.5656878342407717e-05,0.00017111969801839746,8.221265583547664e-05,0.0,0.0,0.0,0.00035398668440477155,0.00019470474507794923,0.0003174473109739559,0.0,0.0001424136058268251 +103607,50.0,the Greater Atlanta and Macon Area,G1301210004300,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,204224.0,,16122.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009536700418449482,0.0027416635167441844,0.0,0.012278363935193666,0.0070548576179547485,0.0018431065303373291,0.0020212789322474395,0.0,0.0013591031242927275,0.005086929343220249,0.0018431065303373291,0.0012475436902377555,0.0,0.0013591031242927275,0.0019679282747345006,0.0007737352420096842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018318201885905665,0.0,0.0,0.0011364692435386482,0.0004410123241559318,0.001319651262397705,0.0006061990509254134,0.0002196392664533507,0.00014866725090609763,0.0,0.0001619615623625822,0.00013148552772215415,5.1696491136902524e-05,0.0,0.0,0.0,0.0,0.0007582404146601966,0.00019809299287191606,0.00021724256657295002,0.0,0.0001460733826728091 +103608,35.0,Eastern Counties in South Carolina and Georgia,G1300510011600,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,17607.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,24034.3828889517,0.0,0.0,0.0014606967705609228,0.0,0.0,0.0014606967705609228,0.0008357599621291793,0.000524430567892223,0.00010047586694008302,0.0,0.0,0.0008357599621291793,0.000524430567892223,0.00010047586694008302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001740671407082272,4.934317044894191e-05,0.0001740671407082272,9.959517256300722e-05,6.249492111763638e-05,1.197342749085724e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.959517256300722e-05,6.249492111763638e-05,1.197342749085724e-05,0.0,0.0 +103609,50.0,the Greater Atlanta and Macon Area,G1300210013407,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,22190.0,,294.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.002496250956245117,0.0001094255487323618,0.0,0.0026056765049774786,0.001529555279979196,0.0002464399751904465,0.0007705124067078663,0.0,5.9168843099970426e-05,0.001529555279979196,0.0002464399751904465,0.0006610868579755044,0.0,5.9168843099970426e-05,0.0,0.0001094255487323618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.3103171634839944e-06,0.0,0.0,0.0002974751990812649,9.832410208720146e-05,0.00030478551624474884,0.00018227524771869628,2.9367952968812588e-05,7.87809191196402e-05,0.0,7.051079274115855e-06,0.0,7.3103171634839944e-06,0.0,0.0,0.0,0.0,0.00017891180840860747,2.8826039962475137e-05,9.012669884493995e-05,0.0,6.920969028726343e-06 +103610,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6044.0,,1151.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014051104757570937,0.0009130860940819538,0.0,0.0023181965698390477,0.0018326233399155738,0.00025879043373029295,0.00018882024934683886,0.0,3.78798397726028e-05,0.0009574170856062228,0.00025879043373029295,0.00018882024934683886,0.0,0.0,0.000875206254309351,0.0,3.78798397726028e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.100663198243445e-05,0.0,0.0,0.00016744068655114965,0.00011281335516435549,0.0002284473185335841,0.00011409108173030247,3.083889035367281e-05,2.2500858637722922e-05,0.0,0.0,5.847574090925012e-05,0.0,2.5308910731843282e-06,0.0,0.0,0.0,0.00018059637104667151,2.5502574465431683e-05,1.8607343401911324e-05,0.0,3.7328792282415186e-06 +103611,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950500,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,9125.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0029506575627235316,0.0,0.0,0.0029506575627235316,0.0014070127384530977,0.00048681383602956345,0.0009734622579116483,0.0,8.336873032922188e-05,0.0014070127384530977,0.00048681383602956345,0.0009734622579116483,0.0,8.336873032922188e-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.0003516220176798637,9.935092235198547e-05,0.0003516220176798637,0.00016766996761884292,5.801231068683927e-05,0.00011600490940946282,0.0,9.93482996471865e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016766996761884292,5.801231068683927e-05,0.00011600490940946282,0.0,9.93482996471865e-06 +103612,35.0,Eastern Counties in South Carolina and Georgia,G1302450000700,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,113400.0,,3011.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.009268807604424346,0.0008771591781628348,0.0,0.01014596678258718,0.007588448962729603,0.0019322772754314578,0.0006252405444261213,0.0,0.0,0.006711289784566767,0.0019322772754314578,0.0006252405444261213,0.0,0.0,0.0008771591781628348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.860660980131029e-05,0.0,0.0,0.0011045453999054759,0.0003419785413213601,0.001163152009706786,0.000799771079015317,0.00023026564656503692,7.450867432512197e-05,0.0,0.0,5.86066098013103e-05,0.0,0.0,0.0,0.0,0.0,0.0008699535343151977,0.00022151976685811124,7.16787085334772e-05,0.0,0.0 +103613,50.0,the Greater Atlanta and Macon Area,G1301210011625,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,76552.0,,14537.0,,7.614023970037612,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,285525.89887641044,0.0,0.0,0.016039048635336783,0.01006260881474465,0.0,0.026101585283058695,0.021890856007669404,0.001613365960213945,0.001422845020199416,0.0007127215165088979,0.00046172461144430225,0.012500338675635098,0.001613365960213945,0.0007508257045118038,0.0007127215165088979,0.00046172461144430225,0.009390517332034306,0.0006720193156876122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006723231870419866,0.0,0.0,0.0019113406337379901,0.0011487300172499648,0.0025836638207799765,0.0014896398027990773,0.00019226152292179717,8.947436412946762e-05,8.493356594988678e-05,5.502277794120855e-05,0.0006274180639314189,4.490030134281193e-05,0.0,0.0,0.0,0.0,0.0021668650413210326,0.0001596989307690911,0.00014084022718927357,7.054869566449917e-05,4.570378238775473e-05 +103614,50.0,the Greater Atlanta and Macon Area,G1300670031308,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,30188.0,,4117.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0028911143612750908,0.0012117791046647943,0.0,0.004102893465939885,0.0020803563421023788,0.0009077985542860485,0.0011147078799451605,0.0,0.0,0.0008685772374375844,0.0009077985542860485,0.0011147078799451605,0.0,0.0,0.0012117791046647943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.096430382253621e-05,0.0,0.0,0.00034452767211137216,0.0001923895536325128,0.00042549197593390835,0.00010350641872614041,0.00010818033587446942,0.00013283726029859625,0.0,0.0,8.096430382253621e-05,0.0,0.0,0.0,0.0,0.0,0.00021574406891040356,9.41435608357021e-05,0.00011560116351164202,0.0,0.0 +103615,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,82871.0,,1205.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.003990856130594005,0.00020483886548587,0.0,0.004195677265718455,0.0023104079359242405,0.0007287178543641703,0.0005568751914810184,0.0,0.0005996762839490259,0.0023104079359242405,0.0007287178543641703,0.00035203632599514837,0.0,0.0005996762839490259,0.0,0.00020483886548587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3685582427125797e-05,0.0,0.0,0.0004755818677043777,0.00013944487634403148,0.0004892674501315035,0.00027532641753295206,8.683976241369931e-05,4.195142293732359e-05,0.0,7.146215193080628e-05,0.0,1.3685582427125797e-05,0.0,0.0,0.0,0.0,0.00026942191402790745,8.497744318496943e-05,6.493848018378392e-05,0.0,6.992961273484271e-05 +103616,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010601,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,100160.0,,2182.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.005155740875891475,0.0003710787341602851,0.0,0.00552681961005176,0.002701025528369424,0.0012432884034969426,0.0006756863433567921,0.0,0.0009068193348286006,0.0025153886443014715,0.0012432884034969426,0.0004902444932644599,0.0,0.0009068193348286006,0.00018563688406795283,0.00018544185009233225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.47934912269262e-05,0.0,0.0,0.0006144002060055909,0.0002104299350620784,0.0006391936972325171,0.00029975426198581494,0.000148160404027443,5.8421539193959076e-05,0.0,0.00010806400079837389,1.2403261175685284e-05,1.2390230051240915e-05,0.0,0.0,0.0,0.0,0.0003123819150272024,0.00014379013020656228,7.814520510028066e-05,0.0,0.00010487644689847163 +103617,50.0,the Greater Atlanta and Macon Area,G1302230120400,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,12550.0,,1855.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0012126077240348324,0.0005459680960361325,0.0,0.0017585758200709648,0.0007963339042127919,0.00043576171982108176,0.0005264801960370913,0.0,0.0,0.00025036580817665934,0.00043576171982108176,0.0005264801960370913,0.0,0.0,0.0005459680960361325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.647752712726401e-05,0.0,0.0,0.00014450530503903842,8.061645321791242e-05,0.00018098283216630244,2.983585438622382e-05,5.1929308216473635e-05,6.274014243634096e-05,0.0,0.0,3.647752712726401e-05,0.0,0.0,0.0,0.0,0.0,8.195425166750229e-05,4.48461700102846e-05,5.4182410488515565e-05,0.0,0.0 +103618,50.0,the Greater Atlanta and Macon Area,G1302190030100,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,37331.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008812686828144425,0.0,0.0,0.008812686828144425,0.004231293892502968,0.0017251868511282136,0.002625949591223011,0.0,0.00023025649329023182,0.004231293892502968,0.0017251868511282136,0.002625949591223011,0.0,0.00023025649329023182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010501863310225152,0.0003358927857923554,0.0010501863310225152,0.0005042329422457545,0.00020558629676122346,0.0003129279889816791,0.0,2.743910303385809e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005042329422457545,0.00020558629676122346,0.0003129279889816791,0.0,2.743910303385809e-05 +103619,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,61978.0,,19310.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0029783283809790497,0.0032838402386079794,0.0,0.00626216861958703,0.0018673439343985414,0.0007331681750806034,0.0029349776473070206,0.0,0.0007266788628008642,0.0015039247163717191,0.0007331681750806034,0.0006174598364533389,0.0,0.00012377565307338862,0.0003634192180268223,0.0023175178108536818,0.0006029032097274754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021940728659957472,0.0,0.0,0.0003549209260423875,0.0003086886451432714,0.0005743282126419622,0.00017921944283968473,8.737005942873077e-05,7.358134796269858e-05,0.0,1.4750075811273479e-05,2.4281578497011413e-05,0.00015484318894305822,4.02825191595051e-05,0.0,0.0,0.0,0.00017126148613699416,6.724174852828875e-05,0.00026917838990306764,0.0,6.664658807361164e-05 +103620,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,3861.0,,267.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009272290036913754,0.00021206093706758423,0.0,0.0011392899407589598,0.0004404978747355514,0.00047316716886257776,0.00018642174420839894,0.0,3.912044587869241e-05,0.00022843693766796714,0.00047316716886257776,0.00018642174420839894,0.0,3.912044587869241e-05,0.00021206093706758423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.416699128170537e-05,0.0,0.0,0.00011049522973129767,4.790563020448293e-05,0.00012466222101300303,2.7222176836842764e-05,5.638597888616127e-05,2.221534633969717e-05,0.0,4.661871703050915e-06,1.416699128170537e-05,0.0,0.0,0.0,0.0,0.0,4.819970882869359e-05,5.177441498478333e-05,2.0398449812218428e-05,0.0,4.280597498304931e-06 +103621,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,22760.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.005465118018545956,0.0,0.0,0.005465118018545957,0.0025527538309637237,0.0010625377763288826,0.0016912769508950973,0.0,0.00015863216743199163,0.0025527538309637237,0.0010625377763288826,0.0016912769508950973,0.0,0.00015863216743199163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006512719677961167,0.00023179588790068565,0.0006512719677961167,0.00030420880302108326,0.00012662143179691747,0.00020154757210361679,0.0,1.8904016983458213e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00030420880302108326,0.00012662143179691744,0.00020154757210361673,0.0,1.890401698345821e-05 +103622,50.0,the Greater Atlanta and Macon Area,G1301210011000,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,34128.0,,4974.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004695724590792609,0.0014642318060696972,0.0,0.006159956396862308,0.002286283600359964,0.0013482557838706785,0.0025254170126316642,0.0,0.0,0.0008220517942902668,0.0013482557838706785,0.0025254170126316642,0.0,0.0,0.0014642318060696972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.78317110242217e-05,0.0,0.0,0.0005595808978943939,0.00025616303645697726,0.0006574126089186155,9.796240649773694e-05,0.0001606691720398185,0.00030094931935683845,0.0,0.0,9.783171102422171e-05,0.0,0.0,0.0,0.0,0.0,0.00024400037428935168,0.00014389068611192124,0.00026952154851734244,0.0,0.0 +103623,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,53119.0,,12642.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004588556485601032,0.003721114763596462,0.0,0.008309701938803793,0.0045088248884395995,0.0015983453855906587,0.0022025009751672356,0.0,0.0,0.0007877101248431373,0.0015983453855906587,0.0022025009751672356,0.0,0.0,0.003721114763596462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024862356447677994,0.0,0.0,0.0005468109901705942,0.0004087893520483077,0.0007954345546473742,9.387016476412827e-05,0.0001904722815709107,0.0002624685438355551,0.0,0.0,0.00024862356447677994,0.0,0.0,0.0,0.0,0.0,0.0004316009338880371,0.00015299936860828128,0.00021083131443156857,0.0,0.0 +103624,50.0,the Greater Atlanta and Macon Area,G1301350050511,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,130116.0,,4830.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011954399582718975,0.0014218494597725696,0.0,0.013376249042491548,0.003220751422518716,0.004028317722636468,0.006127179897336361,0.0,0.0,0.0017989019627461461,0.004028317722636468,0.006127179897336361,0.0,0.0,0.0014218494597725696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.499982702154575e-05,0.0,0.0,0.0014245826935477012,0.0005401316016542906,0.001519582520569247,0.0002143716700938886,0.00048004683732298046,0.0007301641861308324,0.0,0.0,9.499982702154573e-05,0.0,0.0,0.0,0.0,0.0,0.0003658871443863573,0.0004576291290011365,0.000696066247181753,0.0,0.0 +103625,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970500,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,28848.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0030043438411863454,0.0,0.0,0.0030043438411863454,0.0018933383209522598,0.0006647262236951986,0.0004462792965388876,0.0,0.0,0.0018933383209522598,0.0006647262236951986,0.0004462792965388876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003580236655477314,9.317527122233943e-05,0.0003580236655477314,0.00022562661320471366,7.921454126871193e-05,5.3182511074305895e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022562661320471366,7.921454126871193e-05,5.3182511074305895e-05,0.0,0.0 +103626,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,41507.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.006444699688858695,0.0,0.0,0.006444699688858694,0.003955600399466799,0.0004282344839337184,0.002032585169726705,0.0,2.8279635731471976e-05,0.003955600399466799,0.0004282344839337184,0.002032585169726705,0.0,2.8279635731471976e-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.000768001424887083,0.0002755169950408479,0.000768001424887083,0.00047138065227867983,5.103181059242238e-05,0.00024221893678817927,0.0,3.3700252278014787e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00047138065227867994,5.103181059242239e-05,0.0002422189367881793,0.0,3.370025227801479e-06 +103627,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,211872.0,,8438.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014087977812808516,0.0014348826890020331,0.0,0.015522860501810546,0.0063313524898480755,0.0030179202780300277,0.003856087653440184,0.0,0.002317482350130842,0.0063313524898480755,0.0030179202780300277,0.0024212049644381506,0.0,0.002317482350130842,0.0,0.0014348826890020331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.587062560569739e-05,0.0,0.0,0.0016788362212197669,0.0005457560234002277,0.0017747068468254644,0.0007544946500130735,0.0003596395410918372,0.0002885301671614106,0.0,0.00027616975006163356,0.0,9.587062560569739e-05,0.0,0.0,0.0,0.0,0.0007238546408433071,0.0003450345881784223,0.00044086108740855036,0.0,0.0002649545033078575 +103628,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960202,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,45623.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0047021673025577975,0.0,0.0,0.0047021673025577975,0.0025401441209791853,0.0012790322723237294,0.0008829909092548832,0.0,0.0,0.0025401441209791853,0.0012790322723237294,0.0008829909092548832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005603484216849228,0.000142543021924977,0.0005603484216849228,0.00030270419095225856,0.00015241986704531396,0.00010522436368735032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030270419095225856,0.00015241986704531396,0.00010522436368735032,0.0,0.0 +103629,50.0,the Greater Atlanta and Macon Area,G1300670031308,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,21006.0,,2269.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0011047256289992298,0.000385812664500349,0.0,0.001490538293499579,0.0009048335343495547,0.00032013940580047346,0.00010762329381972053,0.0,0.0001579420595298304,0.0005190208698492057,0.00032013940580047346,0.00010762329381972053,0.0,0.0001579420595298304,0.000385812664500349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5778060717609495e-05,0.0,0.0,0.00013164850164636905,5.815826329357376e-05,0.00015742656236397855,6.185094112530152e-05,3.8150534381800446e-05,1.2825307027997823e-05,0.0,1.8821719111269296e-05,2.5778060717609495e-05,0.0,0.0,0.0,0.0,0.0,9.556603372454015e-05,3.381224511453956e-05,1.1366876819077044e-05,0.0,1.6681406705821797e-05 +103630,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,7526.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018070668541301277,0.0,0.0,0.0018070668541301277,0.00110223717172375,0.0002616024742374294,0.00039608417613754324,0.0,4.706032495766592e-05,0.00110223717172375,0.0002616024742374294,0.00039608417613754324,0.0,4.706032495766592e-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.00021534318847536645,7.116707645585729e-05,0.00021534318847536645,0.00013135057315260236,3.117444757872599e-05,4.720026223664836e-05,0.0,5.608049532815393e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013135057315260236,3.117444757872599e-05,4.720026223664836e-05,0.0,5.608049532815393e-06 +103631,50.0,the Greater Atlanta and Macon Area,G1300890023214,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,65712.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005580352492323893,0.0,0.0,0.005580352492323892,0.0016901993772396827,0.0014993100260679718,0.0023908737786225353,0.0,0.0,0.0016901993772396827,0.0014993100260679718,0.0023908737786225353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006649995424796956,0.00022002614683227554,0.0006649995424796956,0.00020141770866803833,0.00017866980316062653,0.0002849156878705656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020141770866803835,0.00017866980316062655,0.00028491568787056563,0.0,0.0 +103632,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,12798.0,,932.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.00110402789695356,0.00027436508030146285,0.0,0.001378392977255023,0.0006443896634328653,0.0004276596637584882,0.00030634365006366917,0.0,0.0,0.0003700245831314024,0.0004276596637584882,0.00030634365006366917,0.0,0.0,0.00027436508030146285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.833123807657173e-05,0.0,0.0,0.00013156463897496292,6.282883260945591e-05,0.00014989587705153463,4.4095036752130084e-05,5.096328582076244e-05,3.6506316402070376e-05,0.0,0.0,1.833123807657173e-05,0.0,0.0,0.0,0.0,0.0,7.007533798929224e-05,4.650663594231497e-05,3.3313903119927385e-05,0.0,0.0 +103633,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000900,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,149521.0,,10300.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01234884245540957,0.0030006686356543774,0.0,0.015349541464663387,0.010440135093141806,0.003808849369494078,0.0011005266284280617,0.0,0.0,0.0074394664574874295,0.003808849369494078,0.0011005266284280617,0.0,0.0,0.0030006686356543774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002004877335183383,0.0,0.0,0.001471588907861457,0.0006189963402973179,0.0016720766413797954,0.0008865475738942664,0.0004538935940029926,0.000131147739964198,0.0,0.0,0.0002004877335183383,0.0,0.0,0.0,0.0,0.0,0.001137278664791353,0.0004149106392478724,0.00011988402864328676,0.0,0.0 +103634,85.0,Rural Climate Zone 3A,G1301750950500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,48883.0,,1065.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006766056016962237,0.000395970142526914,0.0,0.007162064907912923,0.0031637700525667875,0.0012592075273213743,0.002584984846683187,0.0,0.00015406373291780115,0.0031637700525667875,0.0012592075273213743,0.002189014704156273,0.0,0.00015406373291780115,0.0,0.000395970142526914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.645767047442623e-05,0.0,0.0,0.0008062989369961046,0.00028578673246472874,0.0008327566074705308,0.0003770208854153133,0.00015005753546695535,0.00026086101335922424,0.0,1.835950275461164e-05,0.0,2.645767047442623e-05,0.0,0.0,0.0,0.0,0.00036786184566430256,0.00014641215934736298,0.0003005646051752863,0.0,1.7913491878176915e-05 +103636,50.0,the Greater Atlanta and Macon Area,G1301350050308,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,242243.0,,17825.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012464727764079843,0.003031306700902167,0.0,0.015496034464982005,0.00687663202496038,0.004930848971639525,0.0019690984785882245,0.0,0.0017194549897938808,0.006021461232948393,0.004930848971639525,0.0011933951664609142,0.0,0.00031902239303101005,0.0008551707920119866,0.0007757033121273101,0.0014004325967628705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020253456051593668,0.0,0.0,0.0014853974089251393,0.0006654833032169588,0.001687931969441076,0.0007175658452116215,0.0005875996993196442,0.00014221458515870658,0.0,3.80172792351668e-05,5.713761674945842e-05,5.182805466886727e-05,9.3568889097611e-05,0.0,0.0,0.0,0.0007490488655819098,0.0005371011296163681,0.0002144874084074714,0.0,0.00018729456583532715 +103637,50.0,the Greater Atlanta and Macon Area,G1300590130700,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,48779.0,,5615.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0023224645816898766,0.0009548154231926835,0.0,0.0032772800048825605,0.0011776683358813273,0.0005334533840451287,0.0006732040927579848,0.0,0.0008929541921981193,0.0011776683358813273,0.0005334533840451287,0.0004865920388119291,0.0,0.00012475082295149154,0.0,0.00018661205394605575,0.0007682033692466278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.3795370852204e-05,0.0,0.0,0.00027676298445851054,0.00013352835201365767,0.0003405583553107145,0.00014034013948391249,6.3570463808923e-05,5.798610060066085e-05,0.0,1.4866280565014202e-05,0.0,1.2468362887533372e-05,5.1327007964670635e-05,0.0,0.0,0.0,0.00012237733454930193,5.543377643493544e-05,6.995596295602963e-05,0.0,9.279128137044748e-05 +103638,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301090970300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,42904.0,,2803.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0030373350237849856,0.00047660984533243937,0.0,0.0035139448691174245,0.0018756949346273864,0.0007777777644134564,0.0005037372983051202,0.0,0.00035675260213288246,0.0017027707196976113,0.0007777777644134564,0.00020005166790245578,0.0,0.00035675260213288246,0.000172924214929775,0.0003036856304026644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.184447889653671e-05,0.0,0.0,0.00036195298173995384,0.00013312933937903408,0.0003937974606364906,0.0002029156923380828,9.268618007429091e-05,2.383974672939167e-05,0.0,4.251347548897366e-05,1.155385598295906e-05,2.029062291357765e-05,0.0,0.0,0.0,0.0,0.00021020361152407992,8.716326521152106e-05,5.645235662170936e-05,0.0,3.998021426860773e-05 +103639,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,9402.0,,597.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002257572284788135,0.00047358070423127424,0.0,0.002731070281945671,0.0013341478064887678,0.0006250173562479461,0.0006965589750324472,0.0,7.534614417650905e-05,0.0009359132464340028,0.0006250173562479461,0.0006965589750324472,0.0,0.0,0.0003982345600547652,0.0,7.534614417650905e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.163949629526424e-05,0.0,0.0,0.0002690267553520081,0.00010160611389441724,0.00030066625164727235,0.00011152940956782401,7.448106646377218e-05,8.300642341642045e-05,0.0,0.0,2.6605688903544762e-05,0.0,5.033807391719475e-06,0.0,0.0,0.0,0.00014687766286066892,6.880878421908592e-05,7.668487239554608e-05,0.0,8.29493217197132e-06 +103640,50.0,the Greater Atlanta and Macon Area,G1300630040417,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,13683.0,,873.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003192658460484745,0.0006925890354929603,0.0,0.003885247495977705,0.0025831900340997885,0.0007857999075971598,0.00037242995304810134,0.0,0.0001437448941589163,0.002034345892765745,0.0007857999075971598,0.00037242995304810134,0.0,0.0,0.000548844141334044,0.0,0.0001437448941589163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6275798173569366e-05,0.0,0.0,0.0003804620072469678,0.00016959577382101324,0.00042673780542053723,0.00024242847500786666,9.364202711915033e-05,4.4381649101940215e-05,0.0,0.0,3.6671387231885156e-05,0.0,9.604410941684208e-06,0.0,0.0,0.0,0.000283725772239008,8.630866589961946e-05,4.090600174149947e-05,0.0,1.5788281373912077e-05 +103642,50.0,the Greater Atlanta and Macon Area,G1300150960300,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,101322.0,,20580.0,,7.614023970037612,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,285525.89887641044,0.0,0.0,0.01849835643602433,0.014244832116154496,0.0,0.03274318855217883,0.02837527950127755,0.0016053554206906068,0.0014228450201994158,0.0007317736105103508,0.0006079349995009068,0.015274294695437552,0.0016053554206906068,0.0005686039721115438,0.0007317736105103508,0.0003182565702515431,0.013100984805839997,0.0008542410480878718,0.0002896784292493637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000951757537599079,0.0,0.0,0.0022044099029603233,0.0015197447248087804,0.0031561674405594024,0.0018202053033092823,0.00019130680065444682,6.775932939340915e-05,8.720390913176404e-05,3.792596048038258e-05,0.0008753322564460884,5.7075460757599526e-05,1.935464217969118e-05,0.0,0.0,0.0,0.0027351378176254447,0.00015474273378217093,0.00013715026924024642,7.053680919537934e-05,5.85998107161613e-05 +103643,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300750960400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5904.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010879288479668499,0.0,0.0,0.0010879288479668497,0.0007159951373611844,0.00019907592649051297,0.0001341508736051566,0.0,3.8624203436256564e-05,0.0007159951373611844,0.00019907592649051297,0.0001341508736051566,0.0,3.8624203436256564e-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.0001296427436614018,4.2509609661828436e-05,0.0001296427436614018,8.53213647465984e-05,2.3722828340656386e-05,1.5986052168070064e-05,0.0,4.602642640251986e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.532136474659841e-05,2.372282834065639e-05,1.5986052168070064e-05,0.0,4.6026426402519875e-06 +103644,50.0,the Greater Atlanta and Macon Area,G1300670031408,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,17049.0,,1276.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015190741325236921,0.0003754566434460958,0.0,0.0018945307759697884,0.0006531055116214128,0.000708653699020255,0.0005327408757218226,0.0,0.0,0.0002776488681753171,0.000708653699020255,0.0005327408757218226,0.0,0.0,0.0003754566434460958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5086625349272738e-05,0.0,0.0,0.00018102412959603655,8.016091253293006e-05,0.00020611075494530927,3.3086696441378296e-05,8.444842572431373e-05,6.348535022945571e-05,0.0,0.0,2.508662534927274e-05,0.0,0.0,0.0,0.0,0.0,7.105298671663198e-05,7.709621334870305e-05,5.7958216080729986e-05,0.0,0.0 +103645,85.0,Rural Climate Zone 3A,G1302330010600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,4293.0,,965.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.00038988075840601616,0.00028406299589153695,0.0,0.0006739437542975531,0.00039816695210639593,0.0001511156214098885,0.00012469187038756643,0.0,0.0,0.00011410395621485894,0.0001511156214098885,0.00012469187038756643,0.0,0.0,0.00028406299589153695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8979150320418885e-05,0.0,0.0,4.646269977300971e-05,3.586699119309177e-05,6.544185009342859e-05,1.3597946926641222e-05,1.8008684956100425e-05,1.48597252186507e-05,0.0,0.0,1.8979150320418885e-05,0.0,0.0,0.0,0.0,0.0,3.8663140396727805e-05,1.4673755458107578e-05,1.2107934286411676e-05,0.0,0.0 +103646,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,NaturalGas,5347.0,,42.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009816502582118399,3.300012242198365e-05,0.0,0.0010147330877075627,0.0004747386032636246,0.00020106089626025634,0.00030585075868795885,0.0,3.300012242198365e-05,0.0004747386032636246,0.00020106089626025634,0.00030585075868795885,0.0,0.0,0.0,0.0,3.300012242198365e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.207520309890434e-06,0.0,0.0,0.00011698585514921672,4.2513579911543534e-05,0.00011919337545910716,5.6575853783511995e-05,2.3960958283574503e-05,3.6449043082130206e-05,0.0,0.0,0.0,0.0,2.207520309890434e-06,0.0,0.0,0.0,5.576411892862296e-05,2.361717301663457e-05,3.592608219478183e-05,0.0,3.876286315770132e-06 +103647,50.0,the Greater Atlanta and Macon Area,G1301350050522,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,39825.0,,2231.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003412686512027482,0.000649873533570138,0.0,0.00406256004559762,0.002481917930857015,0.0013564545772905587,0.00022415716385060846,0.0,0.0,0.0018320443972868767,0.0013564545772905587,0.00022415716385060846,0.0,0.0,0.000649873533570138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.341992816291034e-05,0.0,0.0,0.0004066837387131528,0.00016207206060430172,0.0004501036668760631,0.00021832144920175186,0.0001616462622461501,2.6712407697812042e-05,0.0,0.0,4.341992816291034e-05,0.0,0.0,0.0,0.0,0.0,0.0002749794092950718,0.0001502858228153245,2.4835069580086764e-05,0.0,0.0 +103648,50.0,the Greater Atlanta and Macon Area,G1300890020900,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,27219.0,,3215.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006393823838794626,0.002493746549833395,0.0,0.008887570388628021,0.003148638031905402,0.0004028484212474052,0.004230797891711508,0.00041530098183995847,0.0006900659227068157,0.003148638031905402,0.0004028484212474052,0.0017370513418781131,0.00041530098183995847,0.0006900659227068157,0.0,0.002493746549833395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016661746026496027,0.0,0.0,0.0007619401917573128,0.0004024638836294335,0.000928557652022273,0.0003752173857602945,4.8006703198792646e-05,0.00020700120395753994,4.949065187254096e-05,8.223388299849387e-05,0.0,0.00016661746026496027,0.0,0.0,0.0,0.0,0.00032896413869363937,4.208889131646193e-05,0.0004420262889321399,4.3389912846517154e-05,7.209686842526819e-05 +103649,50.0,the Greater Atlanta and Macon Area,G1301210010205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,43473.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.01122086869421184,0.0,0.0,0.011220868694211837,0.0058558262348904445,0.0016118781601053623,0.003587502030516199,0.0,0.00016574497577357208,0.0058558262348904445,0.0016118781601053623,0.003587502030516199,0.0,0.00016574497577357208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013371695818954305,0.0004449926455317236,0.0013371695818954305,0.0006978276755167707,0.00019208445479147965,0.0004275157940907805,0.0,1.9751513541080877e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0006978276755167708,0.00019208445479147968,0.00042751579409078055,0.0,1.975151354108088e-05 +103650,50.0,the Greater Atlanta and Macon Area,G1302550160500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,51294.0,,454.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.012316654714183922,0.00035985847783972656,0.0,0.012676595899097387,0.006624505778223568,0.0028600933169789897,0.002832221033128843,0.0,0.00035985847783972656,0.006624505778223568,0.0028600933169789897,0.002832221033128843,0.0,0.0,0.0,0.0,0.00035985847783972656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4046360920980724e-05,0.0,0.0,0.0014677562462185976,0.0005076078923993144,0.0014918026071395782,0.0007894318676402931,0.00034083279333386145,0.00033751129738656354,0.0,0.0,0.0,0.0,2.4046360920980724e-05,0.0,0.0,0.0,0.00077958271050265,0.000336580474828857,0.00033330041872818545,0.0,4.234873618404202e-05 +103651,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,38968.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0032917671714916006,0.0,0.0,0.0032917671714915997,0.0010590676237274253,0.000929618864363715,0.0013030806834004602,0.0,0.0,0.0010590676237274253,0.000929618864363715,0.0013030806834004602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039227329669421385,0.0001285362393783029,0.00039227329669421385,0.00012620696620940357,0.00011078081698829416,0.00015528551349651613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001262069662094036,0.00011078081698829419,0.00015528551349651616,0.0,0.0 +103652,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,17123.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,24034.3828889517,0.0,0.0,0.001409031277917307,0.0,0.0,0.0014090312779173073,0.000789774332580423,0.0005355473052864402,8.367926645100627e-05,0.0,0.0,0.000789774332580423,0.0005355473052864402,8.367926645100627e-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.00016791043460720028,4.3307296385978176e-05,0.00016791043460720028,9.411526451080885e-05,6.381971940060694e-05,9.971831156344833e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.411526451080883e-05,6.381971940060692e-05,9.971831156344831e-06,0.0,0.0 +103653,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9199.0,,,2629.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007109548420394569,0.0,0.0002477878242131794,0.0009587426662526361,0.0006952213175307015,0.0001969424187543828,6.657892996755199e-05,0.0,0.0,0.00044743349331752204,0.0001969424187543828,6.657892996755199e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002477878242131794,0.0,0.0,0.0,0.0,1.9983811765460378e-05,8.472433585754726e-05,4.461819995095211e-05,0.00010470814762300762,5.332055331813254e-05,2.3469585752139804e-05,7.9341967872749e-06,0.0,0.0,0.0,0.0,0.0,1.9983811765460378e-05,0.0,0.0,7.59279198778084e-05,2.150887467725587e-05,7.271353067943378e-06,0.0,0.0 +103654,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300830040101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,32672.0,,,2211.0,3.20458438519356,Mercantile,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,56080.226740887294,0.0,0.0,0.002881027027469074,0.0,0.00020839326574241524,0.0030894202932114888,0.0016847931872126562,0.0009673383948935201,0.000437288711105313,0.0,0.0,0.0014763999214702408,0.0009673383948935201,0.000437288711105313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020839326574241524,0.0,0.0,0.0,0.0,1.680766350355172e-05,0.0003433265694079406,0.00011002533437815444,0.0003601342329114923,0.00017593980038355325,0.00011527589620258813,5.2110872821799205e-05,0.0,0.0,0.0,0.0,0.0,1.680766350355172e-05,0.0,0.0,0.00019639661959383733,0.0001127627961712764,5.0974817146378615e-05,0.0,0.0 +103655,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,Electricity,210383.0,,15863.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.018828226911672144,0.004669362218982883,0.0,0.023497619820261325,0.01418037810670395,0.00485844088338303,0.004458831519780642,0.0,0.0,0.009511015887721068,0.00485844088338303,0.004458831519780642,0.0,0.0,0.004669362218982883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003119796672924482,0.0,0.0,0.0022437250776543727,0.0009850311221353371,0.002555704744946821,0.001133410222925431,0.000578971440034533,0.0005313507291419769,0.0,0.0,0.0003119796672924482,0.0,0.0,0.0,0.0,0.0,0.0015423204515886263,0.0005284254538835901,0.000484962177411512,0.0,0.0 +103656,50.0,the Greater Atlanta and Macon Area,G1300670031405,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,18233.0,,812.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004517708488862189,0.000644122690281726,0.0,0.005161831179143916,0.0035994945562083983,0.0003778886199148956,0.001107861252738023,0.0,7.642133613512006e-05,0.0030317932020617923,0.0003778886199148956,0.001107861252738023,0.0,0.0,0.000567701354146606,0.0,7.642133613512006e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.303434903066771e-05,0.0,0.0,0.0005383659515315888,0.00020858305861361237,0.0005814003005622565,0.0003612925083809651,4.503220314790161e-05,0.00013202152794181265,0.0,0.0,3.792857880669019e-05,0.0,5.105770223977526e-06,0.0,0.0,0.0,0.00040542728815064596,4.256329770823973e-05,0.00012478340398377571,0.0,8.607679378948022e-06 +103657,50.0,the Greater Atlanta and Macon Area,G1300630040204,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,9326.0,,359.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003097049083242106,0.000285173990253132,0.0,0.003382223073495238,0.0015187499950749023,0.0011577336182028255,0.0006286564674924756,0.0,7.708299272503452e-05,0.0013106589975468048,0.0011577336182028255,0.0006286564674924756,0.0,0.0,0.00020809099752809745,0.0,7.708299272503452e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.905271862264193e-05,0.0,0.0,0.0003690732213605488,0.00012706122108452854,0.0003881259399831907,0.00015619033645517859,0.00013796632357541427,7.491656132995595e-05,0.0,0.0,1.3902737834851246e-05,0.0,5.149980787790684e-06,0.0,0.0,0.0,0.0001742836757448851,0.0001328553555016556,7.214127426547249e-05,0.0,8.845634471177527e-06 +103658,81.0,the Columbus-Albany Area,G1300950000600,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,25909.0,,,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007633662225584362,0.0,0.0,0.007633662225584362,0.003196426754698902,0.0004364056462208443,0.003025001894593623,0.0004367290893531184,0.000539017979934806,0.003196426754698902,0.0004364056462208443,0.003025001894593623,0.0004367290893531184,0.000539017979934806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009096903274205224,0.0002448914969478478,0.0009096903274205224,0.00038091264914923205,5.200570623471808e-05,0.0003604842449955166,5.2044250393498665e-05,6.423384060786189e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00038091264914923205,5.200570623471808e-05,0.0003604842449955166,5.2044250393498665e-05,6.423384060786189e-05 +103659,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock 90.1-2004,gen5_led,5001_10000,Electricity,14264.0,,2449.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001208474400829832,0.000713506224392228,0.0,0.0019219806252220597,0.001453862710687429,0.0003595322965446683,0.00010855524439052501,0.0,0.0,0.0007403564862952008,0.0003595322965446683,0.00010855524439052501,0.0,0.0,0.000713506224392228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.767234832890602e-05,0.0,0.0,0.00014401001686731158,8.807620131010616e-05,0.00019168236519621763,8.822590698320355e-05,4.2844310193238166e-05,1.2936180166480797e-05,0.0,0.0,4.767234832890602e-05,0.0,0.0,0.0,0.0,0.0,0.00014499617706757728,3.585676154157255e-05,1.0826397376833683e-05,0.0,0.0 +103660,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,96587.0,,10245.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.008253447890460104,0.003015560714812275,0.0,0.01126897791566608,0.007039182927685194,0.001704439354561817,0.0025254170126316642,0.0,0.0,0.004023622212872919,0.001704439354561817,0.0025254170126316642,0.0,0.0,0.003015560714812275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020148179229695422,0.0,0.0,0.0009835461798308788,0.0004866629794385769,0.001185027972127833,0.0004794866713980323,0.00020311448478040007,0.0003009486808688527,0.0,0.0,0.0002014817922969542,0.0,0.0,0.0,0.0,0.0,0.0007402293919340418,0.00017923615851117558,0.0002655688762239571,0.0,0.0 +103661,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000600,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,4645.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.001198390509539655,0.0006373836817855894,0.0005547831241374868,0.0,0.0,0.0023905573154627316,0.001884963287452766,0.00018851270691268865,0.00030545282223472145,0.0,1.1628498862555079e-05,4.918909612752172e-05,0.00018851270691268865,0.00030545282223472145,0.0,1.1628498862555079e-05,0.0,0.0,0.0,0.0006373836817855894,0.0,0.0,0.001198390509539655,0.0,0.0,0.0,0.0,0.0,0.0,6.611427275555283e-05,2.4663429995062625e-05,6.611427275555283e-05,5.861932666084738e-06,2.2465320195328076e-05,3.640123559017104e-05,0.0,1.3857843039689778e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.213134866700858e-05,5.21358782828455e-06,8.447733535838998e-06,0.0,3.2160272442068035e-07 +103662,50.0,the Greater Atlanta and Macon Area,G1300970080602,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,11630.0,,90.0,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0026737542798443304,7.1293497563283e-05,0.0,0.002745047777407613,0.0013272831193684056,0.0004113849847793151,0.0009350861756966097,0.0,7.1293497563283e-05,0.0013272831193684056,0.0004113849847793151,0.0009350861756966097,0.0,0.0,0.0,0.0,7.1293497563283e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.762453860013136e-06,0.0,0.0,0.0003186275342538567,0.00011559645820073592,0.00032338998811386985,0.0001581704612009989,4.90241696170095e-05,0.0001114329034358483,0.0,0.0,0.0,0.0,4.762453860013136e-06,0.0,0.0,0.0,0.0001563652464372216,4.846465203008101e-05,0.00011016110893689102,0.0,8.398980709676283e-06 +103663,50.0,the Greater Atlanta and Macon Area,G1301210011416,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6007.0,,314.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00113565082951443,0.0002491137061027939,0.0,0.001384681828543485,0.0007735592606837422,0.0002509332617250587,0.00031726433486398327,0.0,4.300767834443987e-05,0.0005244455545809483,0.0002509332617250587,0.00031726433486398327,0.0,4.300767834443987e-05,0.0002491137061027939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6642872091584688e-05,0.0,0.0,0.00013533065911851147,6.144198077154083e-05,0.0001519735312100962,6.249593689246825e-05,2.9902645092532502e-05,3.780703578607604e-05,0.0,5.125041347434709e-06,1.6642872091584688e-05,0.0,0.0,0.0,0.0,0.0,8.490075483263824e-05,2.7540777308053502e-05,3.4820837756655655e-05,0.0,4.72023869485426e-06 +103664,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,65895.0,,783.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.007748483553279622,0.00029084566883325345,0.0,0.008039329222112878,0.005020013293368413,0.0009155477568867722,0.001983105580231425,0.0,0.00012066259162626582,0.005020013293368413,0.0009155477568867722,0.0016922599113981718,0.0,0.00012066259162626582,0.0,0.00029084566883325345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9431528126551278e-05,0.0,0.0,0.0009233716066563947,0.00029628503026174805,0.0009428031347829461,0.0005982251505421469,0.00010910403273546049,0.00020166329869882198,0.0,1.4379124679965463e-05,0.0,1.9431528126551278e-05,0.0,0.0,0.0,0.0,0.0005887163143688144,0.00010736981548934304,0.00023256643757106347,0.0,1.4150567353724997e-05 +103665,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010702,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,7494.0,,45.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017993750962723724,3.6060284150338035e-05,0.0,0.0018354353804227105,0.0008505595463350376,0.0003383546386675067,0.0006105436183435674,0.0,3.6060284150338035e-05,0.0008505595463350376,0.0003383546386675067,0.0006105436183435674,0.0,0.0,0.0,0.0,3.6060284150338035e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4077238856018165e-06,0.0,0.0,0.00021443090528256668,7.709612328621194e-05,0.0002168386291681685,0.00010136088572926621,4.032160477619876e-05,7.275827095035425e-05,0.0,0.0,0.0,0.0,2.4077238856018165e-06,0.0,0.0,0.0,0.00010048524073384305,3.9973271085390116e-05,7.212972064344898e-05,0.0,4.2601677323955235e-06 +103666,50.0,the Greater Atlanta and Macon Area,G1302470060406,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,22731.0,,345.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,30661.31346040191,0.0,0.0,0.002523723588699524,0.00012810228899050568,0.0,0.0026518258776900305,0.0013196938168295958,0.00038554681653222374,0.0008781942763704844,0.0,6.842971638149821e-05,0.0013196938168295958,0.00038554681653222374,0.0007500919873799787,0.0,6.842971638149821e-05,0.0,0.00012810228899050568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.558151733890116e-06,0.0,0.0,0.00030074938887869997,9.953741624381807e-05,0.00030930754061259005,0.00015726647351385308,4.594519383002049e-05,8.938764443834541e-05,0.0,8.154694703901125e-06,0.0,8.558151733890116e-06,0.0,0.0,0.0,0.0,0.00015392837526752474,4.4969972808499346e-05,0.00010243210690772155,0.0,7.981605224101494e-06 +103667,81.0,the Columbus-Albany Area,G1302150001200,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,142387.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,431997.0345818221,0.0,0.0,0.022967923070287485,0.0,0.0,0.022967923070287485,0.008689272938788692,0.00647865708929301,0.007675573563765582,0.0,0.00012447407233157548,0.008689272938788692,0.00647865708929301,0.007675573563765582,0.0,0.00012447407233157548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027370434831977125,0.0009111597512423196,0.0027370434831977125,0.001035484044336802,0.0007720491797127976,0.0009146834277622069,0.0,1.4833337235570729e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.001035484044336802,0.0007720491797127976,0.0009146834277622069,0.0,1.4833337235570729e-05 +103668,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,3118.0,,775.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1870.6521585294563,0.0,0.0,0.0001472683819549586,0.00013173658535099231,0.0,0.0002790049673059509,0.00015638178772486573,5.4113063054001157e-05,7.3226392664818075e-06,0.0,6.120520762202226e-05,8.585040999589567e-05,5.4113063054001157e-05,7.3226392664818075e-06,0.0,0.0,7.053137772897003e-05,0.0,6.120520762202226e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.80172137272587e-06,0.0,0.0,1.7550208692906455e-05,1.3714514344366244e-05,2.6351930065632324e-05,1.0230930711660614e-05,6.448740299873645e-06,8.726506369095069e-07,0.0,0.0,4.7124155613329085e-06,0.0,4.089305811392961e-06,0.0,0.0,0.0,1.4770209912231642e-05,5.1109615251849166e-06,6.916209403346562e-07,0.0,5.780812314855284e-06 +103669,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,16589.0,,4164.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0008754011343922671,0.0007080974440326486,0.0,0.001583498578424916,0.0004698900383542394,0.00013292451956613589,0.0008380078021573756,0.0,0.00014265848798574487,0.00034104350191471576,0.00013292451956613589,0.0002587568945642506,0.0,0.00014265848798574487,0.00012884653643952372,0.000579250907593125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.73114266226516e-05,0.0,0.0,0.00010431889918262446,7.131118788767641e-05,0.00015163032580527605,4.064112016239204e-05,1.584021200194713e-05,3.0835274637377136e-05,0.0,1.700017950749188e-05,8.60886238993438e-06,3.870256423271723e-05,0.0,0.0,0.0,0.0,4.499503856781352e-05,1.2728390466489246e-05,8.024471748808157e-05,0.0,1.366048148504368e-05 +103670,50.0,the Greater Atlanta and Macon Area,G1300150960401,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,111929.0,,5747.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009972771704076306,0.0016917645471608656,0.0,0.011664505561630874,0.005214378937223787,0.0022604122622510007,0.004189745051762384,0.0,0.0,0.0035226143900629206,0.0022604122622510007,0.004189745051762384,0.0,0.0,0.0016917645471608656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011303337287370373,0.0,0.0,0.0011884349529804733,0.0004687898334363784,0.001301468325854177,0.00041978280374267495,0.0002693687392349234,0.000499283410002875,0.0,0.0,0.00011303337287370373,0.0,0.0,0.0,0.0,0.0,0.0005817948296172007,0.00025220571477705626,0.00046747120565568374,0.0,0.0 +103671,50.0,the Greater Atlanta and Macon Area,G1301430010302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,1919.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.000460843814875421,0.0,0.0,0.000460843814875421,0.0002710310806437104,0.00011719592348859863,4.557159763035838e-05,0.0,2.696250603901422e-05,0.0002710310806437104,0.00011719592348859863,4.557159763035838e-05,0.0,2.696250603901422e-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,5.491409239447585e-05,2.0467076672421876e-05,5.491409239447585e-05,3.229603029014668e-05,1.3965051852651163e-05,5.430305977989265e-06,0.0,3.212848908937388e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.229603029014668e-05,1.3965051852651163e-05,5.430305977989265e-06,0.0,3.212848908937388e-06 +103672,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,11172.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0024535880495502936,0.0,0.0,0.002453588049550294,0.0014307496686162794,0.0006196413964548911,0.0003352944769391523,0.0,6.773709339249276e-05,0.0014307496686162794,0.0006196413964548911,0.0003352944769391523,0.0,6.773709339249276e-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.0002923853987858582,8.565247535822957e-05,0.0002923853987858582,0.0001704973711857535,7.384047083205184e-05,3.995585541285881e-05,0.0,8.071989537032895e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017049737118575344,7.384047083205182e-05,3.9955855412858805e-05,0.0,8.071989537032893e-06 +103673,50.0,the Greater Atlanta and Macon Area,G1301350050434,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5579.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013395237662818232,0.0,0.0,0.0013395237662818232,0.0007743036243473962,0.0003175124560852013,0.00019791802745816267,0.0,4.9789658391063064e-05,0.0007743036243473962,0.0003175124560852013,0.00019791802745816267,0.0,4.9789658391063064e-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.00015963270998319508,5.545177223984994e-05,0.00015963270998319508,9.227472405919193e-05,3.78383535209611e-05,2.3586137008507398e-05,0.0,5.933495394534664e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.227472405919193e-05,3.78383535209611e-05,2.3586137008507398e-05,0.0,5.933495394534664e-06 +103674,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,52572.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004635861734985185,0.0,0.0,0.004635861734985185,0.00243672201489364,0.0018218084942763547,0.0003773615994146286,0.0,0.0,0.00243672201489364,0.0018218084942763547,0.0003773615994146286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005524483363064165,0.00016200846040949858,0.0005524483363064165,0.0002903803219604677,0.00021710204688300225,4.4969587036919295e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002903803219604677,0.00021710204688300225,4.4969587036919295e-05,0.0,0.0 +103675,50.0,the Greater Atlanta and Macon Area,G1301350050535,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,33585.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00806443593202491,0.0,0.0,0.00806443593202491,0.00305594366759367,0.0025945209032020742,0.002254264001838563,0.0,0.00015970735939060265,0.00305594366759367,0.0025945209032020742,0.002254264001838563,0.0,0.00015970735939060265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009610207770446237,0.0002838272574173638,0.0009610207770446237,0.0003641699658587348,0.00030918324796309817,0.00026863559472369144,0.0,1.9031968499099218e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003641699658587348,0.00030918324796309817,0.00026863559472369144,0.0,1.9031968499099218e-05 +103676,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,26916.0,,5537.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002534347688064296,0.0016297715424395058,0.0,0.004164119230503802,0.0022505608986294373,0.0008122924994875972,0.0011012658323867666,0.0,0.0,0.0006207893561899318,0.0008122924994875972,0.0011012658323867666,0.0,0.0,0.0016297715424395058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010889126422223918,0.0,0.0,0.00030201271909478697,0.0001929546341655818,0.0004109039833170261,7.397812160146948e-05,9.679913597724413e-05,0.00013123546151607332,0.0,0.0,0.00010889126422223918,0.0,0.0,0.0,0.0,0.0,0.0002220792409521131,8.015481910627591e-05,0.00010866992325863704,0.0,0.0 +103677,35.0,Eastern Counties in South Carolina and Georgia,G1301270000404,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,389569.0,,58508.0,,7.614023970037612,Education,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,2664908.3895131643,0.0,0.0,0.08162133571290629,0.040498545483133884,0.0,0.12211988119604018,0.09469186603515307,0.011360893553707296,0.010298017642898966,0.0008335291125635653,0.0049357191857627635,0.06093805049662445,0.011360893553707296,0.005769176131303596,0.0008335291125635653,0.002719758585730137,0.033753815538528624,0.004528841511595371,0.0022159606000326263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027058747530933156,0.0,0.0,0.009726660749924877,0.005168196856358274,0.01243253550301819,0.007261872631284731,0.0013538562735802675,0.0006875018467368825,9.933009344038169e-05,0.0003241085048907069,0.0022552315446565966,0.00030259056864376547,0.00014805746156920508,0.0,0.0,0.0,0.009640199243554916,0.0011566070247459133,0.0010483998895357636,8.485825717525996e-05,0.0005024857820768445 +103678,50.0,the Greater Atlanta and Macon Area,G1301350050525,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4367.0,,370.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0010484775737932004,0.0002932792834795841,0.0,0.0013417568572727844,0.0005399117773701989,0.0003799562967583784,0.00037648259966132735,0.0,4.5488890556619085e-05,0.00024663249389061476,0.0003799562967583784,0.00037648259966132735,0.0,4.5488890556619085e-05,0.0002932792834795841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9593126145637607e-05,0.0,0.0,0.00012494953724222403,5.9809308794796804e-05,0.00014454266338786162,2.9391774083482843e-05,4.528028509038236e-05,4.4866316441319214e-05,0.0,5.421018023445863e-06,1.9593126145637607e-05,0.0,0.0,0.0,0.0,0.0,5.8162763150832814e-05,4.093133178843841e-05,4.055712283434297e-05,0.0,4.9003553512497e-06 +103679,50.0,the Greater Atlanta and Macon Area,G1301210000400,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,18072.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014350614526354604,0.0,0.0,0.0014350614526354604,0.0008822011956695018,0.0004475246141158353,0.00010536601644956108,0.0,0.0,0.0008822011956695018,0.0004475246141158353,0.00010536601644956108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017101454109241402,4.391252192234088e-05,0.00017101454109241402,0.00010513085161024331,5.333096807110775e-05,1.2556340996244931e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010513085161024331,5.333096807110775e-05,1.2556340996244931e-05,0.0,0.0 +103680,46.0,the Tallahassee-Valdosta Area,G1301850010202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,70898.0,,5983.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0034472077887323462,0.0010175277115354103,0.0,0.004464735500267756,0.001545289649564702,0.0010298148519995067,0.0014369748716495992,0.0,0.00045267385741536815,0.001545289649564702,0.0010298148519995067,0.0004194471601141892,0.0,0.00045267385741536815,0.0,0.0010175277115354103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.798478281071017e-05,0.0,0.0,0.0004107981309005697,0.0001849863793493503,0.00047878291371127984,0.00018414964767024213,0.00012272135661732547,4.998483408794582e-05,0.0,5.3944405423314234e-05,0.0,6.798478281071017e-05,0.0,0.0,0.0,0.0,0.00016571155915106288,0.00011043381078093091,0.00015409625406410466,0.0,4.854319105829599e-05 +103681,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,6107.0,,438.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001097936403889306,0.0003477832450737877,0.0,0.0014457196489630938,0.0008960484368916565,0.00030676053649909124,0.00019188041107519324,0.0,5.0947557423413375e-05,0.0005482651918178689,0.00030676053649909124,0.00019188041107519324,0.0,5.0947557423413375e-05,0.0003477832450737877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3237579876109445e-05,0.0,0.0,0.00013083613647994858,5.9771211672361545e-05,0.00015407371635605804,6.533429368930917e-05,3.6555271578465484e-05,2.2865524416834707e-05,0.0,6.071190965849215e-06,2.323757987610945e-05,0.0,0.0,0.0,0.0,0.0,9.549397271175816e-05,3.269218615358234e-05,2.0449143131925325e-05,0.0,5.4296000729594816e-06 +103682,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,138056.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.012173981643446432,0.0,0.0,0.012173981643446432,0.006650481838492388,0.004104961590412721,0.001418568588140761,0.0,0.0,0.006650481838492388,0.004104961590412721,0.001418568588140761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014507516637263563,0.0003451062934950603,0.0014507516637263563,0.0007925260505849886,0.0004891809459914805,0.00016904828671752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007925260505849886,0.0004891809459914805,0.00016904828671752,0.0,0.0 +103683,81.0,the Columbus-Albany Area,G1300950001500,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,62908.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006961173387141152,0.0,0.0,0.006961173387141153,0.004801306731122619,0.001488458240447028,0.000671408415571504,0.0,0.0,0.004801306731122619,0.001488458240447028,0.000671408415571504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008295484019499069,0.00023179994981059235,0.0008295484019499069,0.0005721616320362655,0.00017737644015775544,8.001032975588582e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005721616320362655,0.0001773764401577554,8.00103297558858e-05,0.0,0.0 +103684,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,398440.0,,39822.0,,7.614023970037612,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,2664908.3895131643,0.0,0.0,0.08348006955041168,0.02756383349767021,0.0,0.11104390304808189,0.07743788557211,0.011981602116231905,0.0161099888186831,0.0008363436264501436,0.004678155081629485,0.05548597626320866,0.011981602116231905,0.012792182115566446,0.0008363436264501436,0.0023839654289545295,0.02195190930890133,0.0033178067031166534,0.002294189652674956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018416564026990715,0.0,0.0,0.00994815725372861,0.004625615232861109,0.011789813656427683,0.0066121556943567585,0.0014278241818174754,0.0015244194211786227,9.966544061220966e-05,0.0002840925157635459,0.0014666999905374042,0.00022167671119581903,0.0001532845227501433,0.0,0.0,0.0,0.008221777295126489,0.001272117175084056,0.001710438492937034,8.879673028350456e-05,0.0004966916251529811 +103685,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,69937.0,,2685.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0034002400613306265,0.00045659226728919964,0.0,0.003856814598258407,0.0017568837827516119,0.000729622102796593,0.0008427772693793698,0.0,0.000527531443330831,0.0014934106120496275,0.000729622102796593,0.0006496581727921547,0.0,0.000527531443330831,0.00026347317070198463,0.00019311909658721512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.050648914837048e-05,0.0,0.0,0.00040519901201402136,0.0001307300081268597,0.00043570550116239185,0.00017796640637689483,8.694743602340761e-05,7.741831312322126e-05,0.0,6.286474360293664e-05,1.760354258872264e-05,1.2902946559647845e-05,0.0,0.0,0.0,0.0,0.00019847568752553822,8.242562764144786e-05,9.520880072612913e-05,0.0,5.95953852692765e-05 +103686,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,35975.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003181361178709564,0.0,0.0,0.003181361178709564,0.0023166551763162072,0.0006706187019861225,0.00019408730040723415,0.0,0.0,0.0023166551763162072,0.0006706187019861225,0.00019408730040723415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037911735017427266,0.00012307295869435763,0.00037911735017427266,0.00027607182032338937,7.991647945406064e-05,2.3129050396822662e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027607182032338937,7.991647945406064e-05,2.3129050396822662e-05,0.0,0.0 +103687,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,62098.0,,2306.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005467353361935751,0.000678700643273697,0.0,0.006146054005209447,0.00215167898713824,0.001603562618661268,0.0023908737786225353,0.0,0.0,0.0014729783438645427,0.001603562618661268,0.0023908737786225353,0.0,0.0,0.000678700643273697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.534599807430027e-05,0.0,0.0,0.0006515353173579045,0.0002467698586224593,0.0006968813154322047,0.0001755323552731405,0.00019109386397568264,0.0002849164125667558,0.0,0.0,4.534599807430027e-05,0.0,0.0,0.0,0.0,0.0,0.0002439719666754915,0.00018182281283623262,0.0002710934955121759,0.0,0.0 +103688,50.0,the Greater Atlanta and Macon Area,G1301210004400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,15991.0,,2006.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001328921331903126,0.0005904066459552061,0.0,0.0019192972882520342,0.00083162695145515,0.0005109819448567514,0.0005767190815464307,0.0,0.0,0.00024122030549994386,0.0005109819448567514,0.0005767190815464307,0.0,0.0,0.0005904066459552061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.944715515280696e-05,0.0,0.0,0.00015836324569596505,9.26998940380284e-05,0.00019781040084877201,2.874544157707e-05,6.089206135600708e-05,6.872574276288798e-05,0.0,0.0,3.944715515280696e-05,0.0,0.0,0.0,0.0,0.0,8.571077635075752e-05,5.266382855709325e-05,5.9438958933627405e-05,0.0,0.0 +103689,50.0,the Greater Atlanta and Macon Area,G1301530020109,ComStock 90.1-2007,gen3_t5_cfl,100001_200000,Electricity,350474.0,,4531.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,280597.8237794184,0.0,0.0,0.01804071366634941,0.0007705969680383348,0.0,0.018811328364749164,0.008453180301708637,0.005319179347461522,0.0031397101306243707,0.0,0.0018992585849546364,0.0076825833336703,0.005319179347461522,0.0031397101306243707,0.0,0.0018992585849546364,0.0007705969680383348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.148727900777522e-05,0.0,0.0,0.0021498776940249843,0.0006670433381917011,0.0022013649730327598,0.0009155189116688678,0.000633876532886624,0.00037415331235615603,0.0,0.0002263310500069408,5.148727900777522e-05,0.0,0.0,0.0,0.0,0.0,0.0009892196162915698,0.0006224682741025122,0.00036741944922850017,0.0,0.0002222576334101779 +103690,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,9415.0,,962.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001962638859833765,0.0007631381693925895,0.0,0.0027257770292263544,0.001637600060038287,0.0006285737604187363,0.0003807833674957713,0.0,7.873713419982066e-05,0.0008744618906456974,0.0006285737604187363,0.0003807833674957713,0.0,7.873713419982066e-05,0.0007631381693925895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0988578203604794e-05,0.0,0.0,0.00023388607381292215,0.00010617571668379015,0.000284874652016527,0.00010420891101660455,7.490662288150899e-05,4.537764365085097e-05,0.0,9.38304012936797e-06,5.0988578203604794e-05,0.0,0.0,0.0,0.0,0.0,0.00017114780198219603,6.569309571033786e-05,3.979618587505205e-05,0.0,8.228924620558112e-06 +103691,85.0,Rural Climate Zone 3A,G1301750951000,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,202458.0,,7184.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.012974723879966243,0.0012217460143715785,0.0,0.014196469894337819,0.007626803616642813,0.003428590909241291,0.0018532128363467591,0.0,0.0012878625321069551,0.0074566807988174074,0.003428590909241291,0.0018532128363467591,0.0,0.00023623933556078355,0.0001701228178254066,0.0,0.0010516231965461717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.16296548884249e-05,0.0,0.0,0.0015461724607062218,0.0005190769058284371,0.0016278021155946465,0.0008885980623611039,0.00040857847087458644,0.00022084374803620717,0.0,2.815217943432411e-05,1.136657434882431e-05,0.0,7.026308053960058e-05,0.0,0.0,0.0,0.000874508040012658,0.00039313065692461496,0.00021249393673955448,0.0,0.00014766948191781898 +103692,50.0,the Greater Atlanta and Macon Area,G1301510070311,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,11203.0,,398.0,,8.72605822017302,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0026900475733709736,0.00031610643583163296,0.0,0.003006154009202607,0.0014610204576048658,0.0010091917137670292,0.0004631596129401216,0.0,7.286493196432983e-05,0.0012177789537375625,0.0010091917137670292,0.0004631596129401216,0.0,0.0,0.00024324150386730308,0.0,7.286493196432983e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1117636516584308e-05,0.0,0.0,0.00032057269161343187,0.00011100925678825777,0.0003416903281300161,0.00014512259220034348,0.00012026527234641342,5.519468326011434e-05,0.0,0.0,1.6249861066267513e-05,0.0,4.86777545031679e-06,0.0,0.0,0.0,0.00016606486495217586,0.00011470837713820829,5.264439534289186e-05,0.0,8.282091481622807e-06 +103693,50.0,the Greater Atlanta and Macon Area,G1301350050542,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,111866.0,,4023.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.010453612094707715,0.001209146248717541,0.0,0.011662727005403054,0.003200426855601483,0.0028729131855479103,0.003978205228681532,0.0,0.0016112130735943307,0.003200426855601483,0.0028729131855479103,0.0027690589799639915,0.0,0.0016112130735943307,0.0,0.001209146248717541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.078739416537627e-05,0.0,0.0,0.0012457357627464428,0.0005388954925265013,0.001326523156911819,0.0003813883807775237,0.00034235924062216746,0.0003299831454662159,0.0,0.0001920049958805358,0.0,8.078739416537627e-05,0.0,0.0,0.0,0.0,0.0003640178093846351,0.00032676627573131645,0.000452482627463452,0.0,0.000183260008731387 +103694,50.0,the Greater Atlanta and Macon Area,G1300890023303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,11312.0,,453.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0024951897076411654,0.0003591141141760728,0.0,0.0028543038218172387,0.000987853288742288,0.0010613798772965322,0.00073443881480505,0.0,7.071454804710785e-05,0.000699453722613323,0.0010613798772965322,0.00073443881480505,0.0,0.0,0.00028839956612896494,0.0,7.071454804710785e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3991989778168918e-05,0.0,0.0,0.0002973455155601893,0.00011194273929768863,0.0003213375053383581,8.335215038922474e-05,0.00012648198485809637,8.752123630794793e-05,0.0,0.0,1.926763435202096e-05,0.0,4.724355426147956e-06,0.0,0.0,0.0,0.00011121251669790356,0.00011949013954991596,8.268311690199124e-05,0.0,7.961043350360643e-06 +103695,50.0,the Greater Atlanta and Macon Area,G1301350050534,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,8306.0,,1015.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007400184766565072,0.00029864055888294576,0.0,0.001038659035539453,0.0005477174035951015,0.00022225412880796355,0.0002686875031363879,0.0,0.0,0.0002490768447121558,0.00022225412880796355,0.0002686875031363879,0.0,0.0,0.00029864055888294576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9953794008845147e-05,0.0,0.0,8.818632596615369e-05,5.12458293370931e-05,0.00010814011997499883,2.9681923507705525e-05,2.648552119797972e-05,3.2018881260468446e-05,0.0,0.0,1.9953794008845147e-05,0.0,0.0,0.0,0.0,0.0,5.702566839598758e-05,2.3140017399212312e-05,2.7974434179798922e-05,0.0,0.0 +103696,50.0,the Greater Atlanta and Macon Area,G1301210012300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,4984.0,,1241.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005494360215477729,0.0003651756253363654,0.0,0.0009146116468841383,0.0004666047741502731,0.00022774756833525238,0.0002202593043986129,0.0,0.0,0.0001014291488139077,0.00022774756833525238,0.0002202593043986129,0.0,0.0,0.0003651756253363654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.439911391654103e-05,0.0,0.0,6.54749590850194e-05,4.477328394307871e-05,8.987407300156043e-05,1.208706584237218e-05,2.7140125753780318e-05,2.6247767488866908e-05,0.0,0.0,2.4399113916541027e-05,0.0,0.0,0.0,0.0,0.0,4.585079544714196e-05,2.2379554920628817e-05,2.1643722633789653e-05,0.0,0.0 +103697,85.0,Rural Climate Zone 3A,G1300810010300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,90643.0,,3510.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.004524256323554874,0.0005969458082903376,0.0,0.005121202131845212,0.0019036379842253892,0.0008063413766611615,0.0018101812491802909,0.0,0.0006010060610555298,0.0019036379842253892,0.0008063413766611615,0.0017047742505380773,0.0,0.000109467251407406,0.0,0.00010540699864221391,0.0004915388096481238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.988482692475988e-05,0.0,0.0,0.0005391458902548213,0.00018639453478716523,0.0005790307171795813,0.00022685244210957068,9.608996667715158e-05,0.00020315427890426415,0.0,1.304497678580267e-05,0.0,7.042749675291004e-06,3.284207724946888e-05,0.0,0.0,0.0,0.00021523557143001584,9.1169302362892e-05,0.00020466884921807151,0.0,6.79529847881382e-05 +103698,50.0,the Greater Atlanta and Macon Area,G1301210011410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,75195.0,,3102.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006159310361984503,0.0009036145832731167,0.0,0.00706292494525762,0.004210570595657784,0.0020693837032934696,0.0007829706463063664,0.0,0.0,0.0033069560123846673,0.0020693837032934696,0.0007829706463063664,0.0,0.0,0.0009036145832731167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.037482666018724e-05,0.0,0.0,0.0007339930454469881,0.00023135960167898042,0.0007943678721071754,0.0003940835210498128,0.0002466044341511885,9.330509024598694e-05,0.0,0.0,6.037482666018724e-05,0.0,0.0,0.0,0.0,0.0,0.0004735632942943182,0.00023274379123372382,8.80607865791333e-05,0.0,0.0 +103699,50.0,the Greater Atlanta and Macon Area,G1300210013504,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,182729.0,,33486.0,,7.614023970037612,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.03828482206080598,0.023178387860244867,0.0,0.06146320992105084,0.045859111931724504,0.008847893488106565,0.004116479143700288,0.00077593982842281,0.0018637855290966785,0.02351872753945264,0.008847893488106565,0.004116479143700288,0.00077593982842281,0.0010257820611236812,0.022340384392271866,0.0,0.0008380034679729973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001548644015323926,0.0,0.0,0.00456233277354936,0.002787873809291332,0.006110976788873285,0.0028026840839171906,0.0010543874116366397,0.0004905533498133451,9.246734133681189e-05,0.00012224058684537242,0.0014926535356010893,0.0,5.5990479722836404e-05,0.0,0.0,0.0,0.004559540071745068,0.0008797013987016623,0.0004092807474804164,7.714778136620042e-05,0.00018530678957993788 +103700,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970300,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,96482.0,,14040.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006102861322227855,0.0023876591206314106,0.0,0.008490520442859266,0.0029634526077476253,0.0017147919047404072,0.003252741184677207,0.0,0.0005595524760554464,0.0029050487972299716,0.0017147919047404072,0.0009234858745634502,0.0,0.0005595524760554464,5.840381051765392e-05,0.002329255310113757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015952887781640304,0.0,0.0,0.000727266531269251,0.00034662273204751705,0.0008867954090856539,0.00034618921361268814,0.00020434853334564857,0.00011005007867764157,0.0,6.668081852717078e-05,3.902187825546589e-06,0.00015562668999085646,0.0,0.0,0.0,0.0,0.0003095188552079508,0.0001791020466760618,0.00033973370288997143,0.0,5.844265616553619e-05 +103701,81.0,the Columbus-Albany Area,G1300950011400,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11638.0,,187.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034166292161707896,0.0001483764902883175,0.0,0.0035650057064591074,0.001965864435709598,0.0005987992138725857,0.0008518828595148665,0.0,0.0001483764902883175,0.001965864435709598,0.0005987992138725857,0.0008518828595148665,0.0,0.0,0.0,0.0,0.0001483764902883175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.913642559883612e-06,0.0,0.0,0.00040715148598727204,0.00013374069277170472,0.0004170651285471556,0.00023426733649071577,7.135746208055795e-05,0.00010151683141294849,0.0,0.0,0.0,0.0,9.913642559883612e-06,0.0,0.0,0.0,0.0002299837843457067,7.00526988372635e-05,9.96606074618528e-05,0.0,1.7358362115200376e-05 +103702,50.0,the Greater Atlanta and Macon Area,G1300890023213,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,10322.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0008019237723555235,0.0,0.0,0.0008019237723555237,0.000569474615858409,0.0001794168518788,5.3032304618314686e-05,0.0,0.0,0.000569474615858409,0.0001794168518788,5.3032304618314686e-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,9.556263499976657e-05,2.4940635152958865e-05,9.556263499976657e-05,6.786242874064936e-05,2.1380519844845893e-05,6.319686414271362e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.786242874064933e-05,2.1380519844845886e-05,6.3196864142713604e-06,0.0,0.0 +103703,50.0,the Greater Atlanta and Macon Area,G1300890021603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,26491.0,,4029.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0023229269902794213,0.001186091904193617,0.0,0.0035090495840793363,0.0015468789158294108,0.0008743775730278499,0.0010877930952220751,0.0,0.0,0.0003607870116357939,0.0008743775730278499,0.0010877930952220751,0.0,0.0,0.001186091904193617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.924839265185847e-05,0.0,0.0,0.0002768202356098288,0.0001583950626586914,0.00035606862826168727,4.299452629545319e-05,0.00010419845599555603,0.00012963091055991308,0.0,0.0,7.924839265185847e-05,0.0,0.0,0.0,0.0,0.0,0.00015696416948488787,8.872442966419214e-05,0.00011038002911260718,0.0,0.0 +103704,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,NaturalGas,16297.0,,750.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.00137188678071991,0.00022084240691826922,0.0,0.0015927291876381788,0.0005969128424903192,0.00047565820800809545,0.0005201888267460621,0.0,0.0,0.00037607043557204994,0.00047565820800809545,0.0005201888267460621,0.0,0.0,0.00022084240691826922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4754427903533266e-05,0.0,0.0,0.0001634868951495943,6.697698878979863e-05,0.00017824132305312753,4.4816080111921795e-05,5.668389306795136e-05,6.199057923103267e-05,0.0,0.0,1.4754427903533265e-05,0.0,0.0,0.0,0.0,0.0,6.68001413037753e-05,5.323061131450969e-05,5.82140048894083e-05,0.0,0.0 +103705,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,122782.0,,2080.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.010527854613182857,0.0006123804040643612,0.0,0.011140235017247216,0.0035687715579346656,0.003058833059692037,0.004512661089226813,0.0,0.0,0.002956391153870304,0.003058833059692037,0.004512661089226813,0.0,0.0,0.0006123804040643612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.091624052181925e-05,0.0,0.0,0.0012545849467879295,0.00037074803286188347,0.0012955011873097488,0.00035230766141263576,0.00036451547370549154,0.000537765468893377,0.0,0.0,4.091624052181925e-05,0.0,0.0,0.0,0.0,0.0,0.00041501348790073044,0.0003557125908455516,0.0005247786774667562,0.0,0.0 +103706,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,95770.0,,1577.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006913174299847108,0.0002682603682853989,0.0,0.007181416937771088,0.003293432364136228,0.0014266026102188686,0.0011055057649017124,0.0,0.001355893928875698,0.0030251719958508294,0.0014266026102188686,0.0011055057649017124,0.0,0.001355893928875698,0.0002682603682853989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7923281131557298e-05,0.0,0.0,0.000823829073929119,0.00023706120838271644,0.0008417523550606764,0.00036050366094099657,0.00017000536313216733,0.00013174089803325546,0.0,0.00016157915182269964,1.7923281131557298e-05,0.0,0.0,0.0,0.0,0.0,0.0003860316804840956,0.0001672157621947167,0.00012957917486239025,0.0,0.00015892781574075105 +103707,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Propane,6298.0,,,1199.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005553508921198544,0.0,0.00011298978990843681,0.0006683710556277288,0.0004343728455592888,0.00018834669011349905,4.562114635550323e-05,0.0,0.0,0.00032138305565085205,0.00018834669011349905,4.562114635550323e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011298978990843681,0.0,0.0,0.0,0.0,9.113546659697824e-06,6.618046890428135e-05,2.6870162366090793e-05,7.529401556397917e-05,3.8298815438427094e-05,2.2445038704629653e-05,5.4366147612245995e-06,0.0,0.0,0.0,0.0,0.0,9.113546659697824e-06,0.0,0.0,4.8933411341988914e-05,2.1217822790830938e-05,5.139359753560405e-06,0.0,0.0 +103708,46.0,the Tallahassee-Valdosta Area,G1300270960200,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,30526.0,,1078.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026530243956175126,0.0003174225979371399,0.0,0.0029704469935546525,0.0011676167612024002,0.0007419519218532626,0.0010608783104989897,0.0,0.0,0.0008501941632652603,0.0007419519218532626,0.0010608783104989897,0.0,0.0,0.0003174225979371399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1208539841331123e-05,0.0,0.0,0.0003161565495502028,0.00011252128057193785,0.00033736508939153395,0.00010131623876119783,8.841718905139223e-05,0.00012642312173761274,0.0,0.0,2.1208539841331123e-05,0.0,0.0,0.0,0.0,0.0,0.0001326107262216169,8.426633331056644e-05,0.00012048802985935059,0.0,0.0 +103709,50.0,the Greater Atlanta and Macon Area,G1301170130608,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,18226.0,,1470.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0019573766268467623,0.000546197781491279,0.0,0.002503535659914269,0.0012908649895431662,0.0002616681057328751,0.0008833865651559434,0.0,6.757725105851239e-05,0.0008737769560604668,0.0002616681057328751,0.0007543155655711357,0.0,6.757725105851239e-05,0.00041708803348269906,0.00012907099958480778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.649265467889568e-05,0.0,0.0,0.00023325478117242087,9.559458826357665e-05,0.00026974743585131655,0.00010412541453901,3.118221394154921e-05,8.988955409449702e-05,0.0,8.052981062351817e-06,2.7866553274945587e-05,8.623512537982513e-06,0.0,0.0,0.0,0.0,0.00013908630363644578,2.8193846684784718e-05,9.518189200647446e-05,0.0,7.28121851299638e-06 +103710,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,15623.0,,1338.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013919577832386075,0.00039377833840582437,0.0,0.001785736121644432,0.0008845358327123898,0.0004186676091132613,0.00048253267981878084,0.0,0.0,0.0004907574943065653,0.0004186676091132613,0.00048253267981878084,0.0,0.0,0.00039377833840582437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.63093619535979e-05,0.0,0.0,0.00016587647473442952,7.881410830835002e-05,0.00019218583668802742,5.848246554983382e-05,4.989167625732178e-05,5.7502332927273904e-05,0.0,0.0,2.63093619535979e-05,0.0,0.0,0.0,0.0,0.0,9.519618102019913e-05,4.505816048426744e-05,5.1931495183560844e-05,0.0,0.0 +103711,50.0,the Greater Atlanta and Macon Area,G1301990970500,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,4479.0,,312.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.000287776438253559,9.191537086161983e-05,0.0,0.00037969180911517886,0.0001588800918032073,0.00012410876786791007,9.670294944406145e-05,0.0,0.0,6.696472094158747e-05,0.00012410876786791007,9.670294944406145e-05,0.0,0.0,9.191537086161983e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.141821528890537e-06,0.0,0.0,3.429268838360952e-05,1.8618720047966395e-05,4.0434509912500054e-05,7.979806553592404e-06,1.4789339002166674e-05,1.152354282785044e-05,0.0,0.0,6.141821528890537e-06,0.0,0.0,0.0,0.0,0.0,1.6919613467265826e-05,1.3216711775472861e-05,1.0298184669761368e-05,0.0,0.0 +103712,50.0,the Greater Atlanta and Macon Area,G1301350050435,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,Electricity,48257.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.004105103117593319,0.0,0.0,0.004105103117593319,0.001654691502753241,0.0013760605671763973,0.0010743510476636812,0.0,0.0,0.001654691502753241,0.0013760605671763973,0.0010743510476636812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004891960396496139,0.00018030750844443021,0.0004891960396496139,0.0001971859187944875,0.00016398208778135336,0.00012802803307377308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001971859187944875,0.00016398208778135336,0.00012802803307377308,0.0,0.0 +103713,50.0,the Greater Atlanta and Macon Area,G1301350050421,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6706.0,,216.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013334034428251144,0.00017112093556662705,0.0,0.0015045243783917413,0.0008158225753645284,0.00030642970820413405,0.0003376102750038529,0.0,4.4579112745486695e-05,0.0006447016397979014,0.00030642970820413405,0.0003376102750038529,0.0,4.4579112745486695e-05,0.00017112093556662705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1434695367798559e-05,0.0,0.0,0.00015889713510349354,6.260420989021004e-05,0.00017033183047129212,7.682689294949337e-05,3.651618195995805e-05,4.0231863633076574e-05,0.0,5.3123406414082e-06,1.1434695367798559e-05,0.0,0.0,0.0,0.0,0.0,9.236178196739186e-05,3.469184937035553e-05,3.822189720102327e-05,0.0,5.04693841042419e-06 +103714,50.0,the Greater Atlanta and Macon Area,G1302190030200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,78112.0,,1981.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006637967915524034,0.0005770983893172845,0.0,0.00721506630484132,0.003931072733631592,0.0027163717449170213,0.0005676521998921438,0.0,0.0,0.003353974344314307,0.0027163717449170213,0.0005676521998921438,0.0,0.0,0.0005770983893172845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8559016522162485e-05,0.0,0.0,0.0007910327141154677,0.00027082537122913287,0.0008295917306376301,0.0003996860880348415,0.0003237043235631018,6.764592207566428e-05,0.0,0.0,3.8559016522162485e-05,0.0,0.0,0.0,0.0,0.0,0.00045199659913971573,0.0003123297058834765,6.526891798524344e-05,0.0,0.0 +103715,50.0,the Greater Atlanta and Macon Area,G1300630040522,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,59487.0,,1182.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.006504891640738398,0.00043932962872787463,0.0,0.0069442212694662735,0.004131705678393416,0.0008304949667070503,0.0018018404538256215,0.0,0.00018018017054018495,0.004131705678393416,0.0008304949667070503,0.0015426909956379321,0.0,0.0,0.0,0.00025914945818768963,0.00018018017054018495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9354410098638503e-05,0.0,0.0,0.0007751740606023862,0.00027533155968052775,0.0008045284707010247,0.000492366551946221,9.896831357194902e-05,0.00018383919508421626,0.0,0.0,0.0,1.7315425537104803e-05,1.2038984561533695e-05,0.0,0.0,0.0,0.00047868216202161435,9.621767791697621e-05,0.00020875370880498814,0.0,2.087492195744597e-05 +103716,50.0,the Greater Atlanta and Macon Area,G1300890020300,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,261851.0,,41524.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012729459790442653,0.007061559694571529,0.0,0.019791037215375604,0.00797155276409432,0.004300410510626707,0.004208123979435332,0.0,0.0033109145004964003,0.006368196180878946,0.004300410510626707,0.0015957325278047523,0.0,0.00046510284077082515,0.001603356583215375,0.00261239145163058,0.002845811659725575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00047181236740093287,0.0,0.0,0.0015169460194600823,0.0008654450496645426,0.0019887583868610156,0.0007588860805372239,0.0005124719126759295,0.00019016047389487994,0.0,5.542543945789434e-05,0.00010712696600104542,0.00017454481002536807,0.00019014059137451947,0.0,0.0,0.0,0.000801044040459949,0.0004321389211127212,0.0004228652478381052,0.0,0.00033270661407914495 +103717,35.0,Eastern Counties in South Carolina and Georgia,G1301030030204,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,72527.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006015126885453496,0.0,0.0,0.006015126885453495,0.003682343327835842,0.0015768454148108858,0.0007559077692073296,0.0,0.0,0.003682343327835842,0.0015768454148108858,0.0007559077692073296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007168112405091886,0.0001944603677030311,0.0007168112405091886,0.0004388178568917655,0.00018790967163390116,9.008009241939513e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043881785689176553,0.00018790967163390118,9.008009241939514e-05,0.0,0.0 +103718,50.0,the Greater Atlanta and Macon Area,G1301390000203,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,55546.0,,3408.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002765546313576996,0.000579587784460106,0.0,0.0033451340980371023,0.0013479684573209343,0.0009970136833724094,0.0005113081626314829,0.0,0.0004888615250736959,0.0009785741074955542,0.0009970136833724094,0.00030111472799675674,0.0,0.0004888615250736959,0.00036939434982538003,0.00021019343463472598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.872490058781309e-05,0.0,0.0,0.00032956470423248674,0.00012071943315548707,0.00036828960482029985,0.00011661474795163039,0.00011881215587070739,3.5883248740080794e-05,0.0,5.825666456229805e-05,2.4680919540105166e-05,1.404398104770792e-05,0.0,0.0,0.0,0.0,0.00014840743477167768,0.00010976832757321154,5.629355225772292e-05,0.0,5.382224227928206e-05 +103719,50.0,the Greater Atlanta and Macon Area,G1300670030311,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,24630.0,,1542.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0022553612526508234,0.0004491647884854739,0.0,0.00270449566753686,0.0014391922621589945,0.0008483042586969708,0.0004169991466808947,0.0,0.0,0.0009900274736735206,0.0008483042586969708,0.0004169991466808947,0.0,0.0,0.0004491647884854739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0010004429062296e-05,0.0,0.0,0.00026876544612006804,9.545751077176274e-05,0.0002987754505491303,0.00011797896027532012,0.00010109017890871042,4.9692687394381634e-05,0.0,0.0,3.0010004429062296e-05,0.0,0.0,0.0,0.0,0.0,0.00015899279178546336,9.371524981061155e-05,4.6067408953055445e-05,0.0,0.0 +103720,50.0,the Greater Atlanta and Macon Area,G1300670031408,ComStock 90.1-2004,gen5_led,50001_100000,NaturalGas,50263.0,,3068.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004478350109385981,0.0009031644237350952,0.0,0.005381514533121076,0.002585660709794055,0.0009162688856242145,0.0018796156273091047,0.0,0.0,0.0016824962860589598,0.0009162688856242145,0.0018796156273091047,0.0,0.0,0.0009031644237350952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0343985099713114e-05,0.0,0.0,0.0005336768957100529,0.00022449010221086723,0.000594020880809766,0.00020050004422515988,0.00010919010853813863,0.00022399040017171882,0.0,0.0,6.0343985099713114e-05,0.0,0.0,0.0,0.0,0.0,0.00028540970071789135,0.0001011393441655197,0.00020747522349817183,0.0,0.0 +103721,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,142536.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011595423257854745,0.0,0.0,0.011595423257854745,0.0041209082648366365,0.00312331192252351,0.0043512030704945985,0.0,0.0,0.0041209082648366365,0.00312331192252351,0.0043512030704945985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013818054699050143,0.000468847011500788,0.0013818054699050143,0.0004910811321588222,0.0003721993930526857,0.0005185249446935064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004910811321588222,0.0003721993930526857,0.0005185249446935064,0.0,0.0 +103722,50.0,the Greater Atlanta and Macon Area,G1301210011620,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,80631.0,,,27490.0,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.007110125518783887,0.0,0.0025910199000374196,0.009701145418821305,0.006860181169010627,0.001962741995667523,0.0008782222541431563,0.0,0.0,0.004269161268973208,0.001962741995667523,0.0008782222541431563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025910199000374196,0.0,0.0,0.0,0.0,0.00020896166342280906,0.0008472994585941434,0.00042803283850749213,0.0010562611220169525,0.0005087474225730377,0.00023389604387371275,0.00010465599214739294,0.0,0.0,0.0,0.0,0.0,0.00020896166342280906,0.0,0.0,0.0007469368147765734,0.00021370343120013363,9.56208760402455e-05,0.0,0.0 +103723,50.0,the Greater Atlanta and Macon Area,G1301350050719,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,Electricity,116729.0,,1653.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.012496289169649155,0.0006142400136350562,0.0,0.013110529183284212,0.007400948940467814,0.0012862151786905162,0.004198081728314994,0.0,0.00022532208423466142,0.007400948940467814,0.0012862151786905162,0.003583841714679937,0.0,0.00022532208423466142,0.0,0.0006142400136350562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.103935073530476e-05,0.0,0.0,0.0014891576910995336,0.0005325935396245572,0.0015301970418348386,0.000881956226085157,0.00015327568046424452,0.0004270792217309747,0.0,2.685118039102192e-05,0.0,4.103935073530476e-05,0.0,0.0,0.0,0.0,0.0008638026747168737,0.00015012076431702566,0.0004899796302836414,0.0,2.629849504439068e-05 +103724,81.0,the Columbus-Albany Area,G1302150010106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,63926.0,,1139.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005420521022725457,0.0003351918799835097,0.0,0.005755682213102668,0.001328491677414958,0.0018479746432161733,0.0025792158924715374,0.0,0.0,0.0009932997974314484,0.0018479746432161733,0.0025792158924715374,0.0,0.0,0.0003351918799835097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.239479270833199e-05,0.0,0.0,0.0006459520740951095,0.00020784385326904787,0.0006683468668034415,0.00011836944486684885,0.00022021924620457595,0.0003073597258079377,0.0,0.0,2.239479270833199e-05,0.0,0.0,0.0,0.0,0.0,0.0001542637722689881,0.00021458586784275368,0.0002994972266916998,0.0,0.0 +103725,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,393691.0,,34164.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.018165109882072497,0.005809920290845742,0.0,0.02397503017291824,0.010638128200224582,0.0041427521368795975,0.0039181971094946295,0.0,0.005275952726319432,0.009338758663556011,0.0041427521368795975,0.0039181971094946295,0.0,0.0007653842417808394,0.0012993695366685697,0.0,0.004510568484538592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003881852034146546,0.0,0.0,0.0021647005621699754,0.0008888148030870277,0.0025528857655846295,0.0011128815768365163,0.00049368365717868,0.000466923874431752,0.0,9.12093408305875e-05,8.681634216173901e-05,0.0,0.0003013700458929123,0.0,0.0,0.0,0.0011327587852421087,0.0004411244901177083,0.00041721364083547886,0.0,0.0005617888493893337 +103726,35.0,Eastern Counties in South Carolina and Georgia,G1302450010300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,60780.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.005107958591046162,0.0,0.0,0.005107958591046162,0.003324815688854065,0.001532621454029519,0.0002505518217620148,0.0,0.0,0.003324815688854065,0.001532621454029519,0.0002505518217620148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006087073529476393,0.000202942088011545,0.0006087073529476393,0.00039621303127804664,0.00018264007660289186,2.98578646405449e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039621303127804664,0.00018264007660289186,2.98578646405449e-05,0.0,0.0 +103727,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,4479.0,,489.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007372508553121865,0.0003875653475423946,0.0,0.001124816202854581,0.0006393256800048463,0.00020999326022410152,0.00024373774630973897,0.0,3.159410216841543e-05,0.00028343714170460654,0.00020999326022410152,0.00024373774630973897,0.0,0.0,0.0003558885383002398,0.0,3.159410216841543e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.589459217303911e-05,0.0,0.0,8.785365263675128e-05,4.895345152622671e-05,0.00011374824480979038,3.377546192350758e-05,2.5023606018029105e-05,2.9044729001627326e-05,0.0,0.0,2.3778154101704496e-05,0.0,2.1109121233676775e-06,0.0,0.0,0.0,6.465249502791761e-05,2.1235793645004244e-05,2.4648240989297957e-05,0.0,3.1949874645102875e-06 +103728,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen5_led,200001_500000,Electricity,203668.0,,4026.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.017485403188116158,0.001184956388760602,0.0,0.01867035957687676,0.004255881153333934,0.004889590833775198,0.009524887589767632,0.0,0.0,0.0030709247645733318,0.004889590833775198,0.009524887589767632,0.0,0.0,0.001184956388760602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.917245024849008e-05,0.0,0.0,0.002083702327357039,0.0006556469073960611,0.0021628747776055285,0.0003659562785162875,0.0005826832638943973,0.0011350627849463543,0.0,0.0,7.917245024849008e-05,0.0,0.0,0.0,0.0,0.0,0.0004930241415614196,0.0005664364761502189,0.0011034141598938907,0.0,0.0 +103729,50.0,the Greater Atlanta and Macon Area,G1301350050317,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,25318.0,,1665.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005878012903600488,0.0012914275663874564,0.0,0.007169440469987944,0.0028913390201813463,0.0008156427188122394,0.002482183457854596,0.000415058399490753,0.000565216873649009,0.0028913390201813463,0.0008156427188122394,0.0011907558914671396,0.000415058399490753,0.000565216873649009,0.0,0.0012914275663874564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.628317177909942e-05,0.0,0.0,0.0007004734909190404,0.00028648856756682454,0.0007867566626981399,0.00034455629310651815,9.719885137358976e-05,0.00014190049423292185,4.946185229509629e-05,6.73559999109143e-05,0.0,8.628317177909942e-05,0.0,0.0,0.0,0.0,0.0003172883919978501,8.950661437151648e-05,0.0002723886726838942,4.554748206295173e-05,6.202550158192725e-05 +103730,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,74295.0,,4184.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0066195946303830005,0.001231635279939408,0.0,0.00785122991032241,0.0025535286920003596,0.002933772914028898,0.00236395899389945,0.0,0.0,0.0013218934120609515,0.002933772914028898,0.00236395899389945,0.0,0.0,0.001231635279939408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.228997932174304e-05,0.0,0.0,0.0007888458857080614,0.00032654710510546687,0.0008711358650298045,0.0001575278000653855,0.000349612751543903,0.00028170899132720075,0.0,0.0,8.228997932174304e-05,0.0,0.0,0.0,0.0,0.0,0.0002833276380124258,0.00032551776402617457,0.0002622938681668306,0.0,0.0 +103731,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,33234.0,,1960.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0026803486559838475,0.0005711147902280476,0.0,0.0032514330726124575,0.0021084137785709806,0.0009035842096736791,0.00023946545796723538,0.0,0.0,0.001537298988342933,0.0009035842096736791,0.00023946545796723538,0.0,0.0,0.0005711147902280476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.815814368132293e-05,0.0,0.0,0.00031941056469935456,0.00010484507751522258,0.00035756870838067747,0.0001831961438606671,0.00010767791049159281,2.853651034709461e-05,0.0,0.0,3.815814368132293e-05,0.0,0.0,0.0,0.0,0.0,0.0002318678486375561,9.936954922667189e-05,2.633465078164245e-05,0.0,0.0 +103732,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,54985.0,,7214.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0030165550402006833,0.0012267282459306134,0.0,0.004243283286131297,0.0021230334764371227,0.0007365014830275734,0.0006420873084657921,0.0,0.0007416432878393887,0.0017099692464341526,0.0007365014830275734,0.00045875537138244626,0.0,0.00011131120899509147,0.00041306423000297005,0.00018333193708334596,0.0006303320788442971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.196330321450688e-05,0.0,0.0,0.00035947634195548076,0.0001582056328416162,0.0004414396451699876,0.0002037733379211358,8.776728932017937e-05,5.466888571872989e-05,0.0,1.3264716106600688e-05,2.759870317090198e-05,1.2249241996271044e-05,4.211535804733384e-05,0.0,0.0,0.0,0.00022086461858097348,7.662013856050658e-05,6.679798978863681e-05,0.0,7.715505370489009e-05 +103733,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,102341.0,,28808.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.03329605350353512,0.02548045689650304,0.0,0.058776510400038166,0.04922907378592587,0.004321484899456499,0.0021283741940048653,0.0006283683603964103,0.0024692091602545175,0.02374861688942283,0.004321484899456499,0.0021283741940048653,0.0006283683603964103,0.0024692091602545175,0.02548045689650304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017024564963049951,0.0,0.0,0.003967828960740422,0.0026022327153934714,0.005670285457045417,0.0028300786416437114,0.000514983342865105,0.00025363440641301314,7.488149243060102e-05,0.0002942510773879913,0.0017024564963049951,0.0,0.0,0.0,0.0,0.0,0.004749225485696238,0.0004169021401824095,0.00020532844085634441,6.061993050238867e-05,0.00023820945980803626 +103734,50.0,the Greater Atlanta and Macon Area,G1301210006000,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,27723.0,,4116.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,32736.412774265485,0.0,0.0,0.0023225177727741364,0.0006998882866951642,0.0,0.003022406059469301,0.0014802724142373685,0.0004679928896822938,0.0006910585667079781,0.0,0.0003830821888416608,0.0007803841275422042,0.0004679928896822938,0.0006910585667079781,0.0,0.0003830821888416608,0.0006998882866951642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.676283594650437e-05,0.0,0.0,0.00027676955639645485,0.00011420573686714141,0.0003235323923429592,9.299673454843132e-05,5.576972800485856e-05,8.235199540509063e-05,0.0,4.56510984380744e-05,4.6762835946504364e-05,0.0,0.0,0.0,0.0,0.0,0.00015845523932730458,5.0096134079678576e-05,7.397412092781027e-05,0.0,4.100689800816575e-05 +103735,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,78463.0,,4928.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004038887679680928,0.0008379900717959555,0.0,0.004876877751476884,0.0017296322172489914,0.0008561459618900897,0.0018038337797919122,0.0,0.0004872835229073111,0.0015070807207044883,0.0008561459618900897,0.0015798993150566453,0.0,9.57616820297052e-05,0.00022255149654450276,0.00022393446473526686,0.00039152184087760597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.598949001964472e-05,0.0,0.0,0.000481306883964229,0.00017657519442467552,0.0005372963739838736,0.0001795960628501919,0.00010202535396290842,0.00018827372202814176,0.0,1.14117451229869e-05,1.4869561363573633e-05,1.4961963035527005e-05,2.6159150257364004e-05,0.0,0.0,0.0,0.00019055739471266004,9.432348817543684e-05,0.00019873234445097888,0.0,5.368510003780583e-05 +103736,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,54126.0,,719.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005867790057077812,0.00026740287245114326,0.0,0.006135192929528956,0.00310894103292929,0.0008561076748203972,0.0020530852335638064,0.0,0.0001170589882154621,0.00310894103292929,0.0008561076748203972,0.001785682361112663,0.0,0.0001170589882154621,0.0,0.00026740287245114326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7866389400595676e-05,0.0,0.0,0.0006992548755065036,0.00022791033530972723,0.0007171212649070993,0.000370487381755554,0.00010202094140273714,0.0002127968255455661,0.0,1.3949726802646368e-05,0.0,1.7866389400595676e-05,0.0,0.0,0.0,0.0,0.00036339325456665155,0.00010006743483305832,0.0002399779593839773,0.0,1.36826161234122e-05 +103737,50.0,the Greater Atlanta and Macon Area,G1300670030601,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,290067.0,,4767.0,,9.325022323477118,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1398753.3485215676,0.0,0.0,0.07443095102281909,0.004041542395378918,0.0,0.07847249341819802,0.05333179642778222,0.013334959846541308,0.010584444847871115,0.0,0.0012213806801614204,0.05051163471256473,0.013334959846541308,0.010584444847871115,0.0,0.0,0.0028201617152174975,0.0,0.0012213806801614204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002700328623204874,0.0,0.0,0.00886979639252483,0.0031385729310126577,0.009139829254845315,0.006019376471713789,0.0015891020753591297,0.001261328378025734,0.0,0.0,0.0001884271561861069,0.0,8.160570613438046e-05,0.0,0.0,0.0,0.0062116480816583695,0.0015531462147899797,0.0012327888977774583,0.0,0.00014225635487776455 +103738,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,103575.0,,7722.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010312935300280043,0.002272964311226761,0.0,0.012585899611506805,0.004670374975990707,0.003079978198431154,0.004835546437084943,0.0,0.0,0.0023974106647639466,0.003079978198431154,0.004835546437084943,0.0,0.0,0.002272964311226761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001518658642531169,0.0,0.0,0.0012289739322650557,0.000510487793475437,0.0013808397965181724,0.0002856951126076707,0.00036703545669619316,0.000576243362961192,0.0,0.0,0.0001518658642531169,0.0,0.0,0.0,0.0,0.0,0.0005124019601756924,0.0003379143803843602,0.0005305234559581198,0.0,0.0 +103739,50.0,the Greater Atlanta and Macon Area,G1301390000701,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,17202.0,,1670.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0015326389385072771,0.0004917088721017939,0.0,0.0020243478106090713,0.0011143702942758855,0.00038975799998082527,0.0005201888267460621,0.0,0.0,0.0006226614221740917,0.00038975799998082527,0.0005201888267460621,0.0,0.0,0.0004917088721017939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.285277682222878e-05,0.0,0.0,0.00018264089539778304,8.852751203290368e-05,0.00021549367222001184,7.42010638110857e-05,4.6446523258947614e-05,6.198965112119387e-05,0.0,0.0,3.285277682222878e-05,0.0,0.0,0.0,0.0,0.0,0.00011862573499864842,4.149009486058866e-05,5.537457542417149e-05,0.0,0.0 +103740,50.0,the Greater Atlanta and Macon Area,G1300670031312,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,49960.0,,5159.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0044514046350565975,0.0015186444780355241,0.0,0.005970049113092122,0.0039595116253170175,0.0008285579908253797,0.001181979496949725,0.0,0.0,0.002440867147281493,0.0008285579908253797,0.001181979496949725,0.0,0.0,0.0015186444780355241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010146685570026712,0.0,0.0,0.0005304646352621072,0.00027885829244797165,0.0006319314909623743,0.0002908730630347368,9.873753307782613e-05,0.00014085403914954425,0.0,0.0,0.00010146685570026711,0.0,0.0,0.0,0.0,0.0,0.00041911549427329256,8.770311208041012e-05,0.00012511288460867158,0.0,0.0 +103741,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,233403.0,,21260.0,,1.8706521585294562,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,140298.9118897092,0.0,0.0,0.012014465235817602,0.0036154334578858078,0.0,0.015629898693703407,0.006314473185776185,0.0036515147433756148,0.001974719003158381,0.0,0.003689174031031807,0.006314473185776185,0.0036515147433756148,0.001554332133888929,0.0,0.0004941274424154516,0.0,0.00042038686926945196,0.003195046588616355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002415624497360127,0.0,0.0,0.0014317402859085014,0.000580080717449572,0.001673302735644514,0.0007524833995451259,0.0004351438586791114,0.0001852267154709916,0.0,5.888419932083573e-05,0.0,2.8087830452552374e-05,0.00021347461928346024,0.0,0.0,0.0,0.0006760136750067231,0.0003909231741724709,0.00021140909323009774,0.0,0.00039495489506154586 +103742,50.0,the Greater Atlanta and Macon Area,G1301350050536,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,76789.0,,4216.0,,3.3063363735822096,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.007041465561096289,0.0012672469418836803,0.0,0.00830871250297997,0.002426001650897256,0.0018041299382819008,0.002875827621612879,0.0,0.0012027532921879333,0.002426001650897256,0.0018041299382819008,0.002811333971917132,0.0,0.0,0.0,6.449364969574693e-05,0.0012027532921879333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.46698315480738e-05,0.0,0.0,0.0008391174826428784,0.0003919238831525987,0.000923787314190952,0.00028910180423738854,0.0002149945858623306,0.00033502109254315924,0.0,0.0,0.0,4.309078424401204e-06,8.03607531236726e-05,0.0,0.0,0.0,0.0002697300632921652,0.0002005885207291957,0.0003197430496834606,0.0,0.00013372568048613043 +103743,50.0,the Greater Atlanta and Macon Area,G1300630040513,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,9281.0,,573.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007482839957484538,0.00016684218171157073,0.0,0.0009151261774600246,0.0006229017772694143,0.00024824342820474563,4.398097198586464e-05,0.0,0.0,0.0004560595955578435,0.00024824342820474563,4.398097198586464e-05,0.0,0.0,0.00016684218171157073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1147489560933596e-05,0.0,0.0,8.917084192674978e-05,4.3078599551796634e-05,0.00010031833148768338,5.434730441346598e-05,2.9582452145937897e-05,5.241085367345904e-06,0.0,0.0,1.1147489560933596e-05,0.0,0.0,0.0,0.0,0.0,6.828399024691861e-05,2.721304136376369e-05,4.82129987700108e-06,0.0,0.0 +103744,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,53826.0,,4079.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004601998533159426,0.0012005467087598351,0.0,0.005802545241919261,0.0020226291926563993,0.001523554815043157,0.0022563305446134064,0.0,0.0,0.0008220824838965644,0.001523554815043157,0.0022563305446134064,0.0,0.0,0.0012005467087598351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.021398671253053e-05,0.0,0.0,0.0005484097843698243,0.0002286936018409987,0.000628623771082355,9.796571521686451e-05,0.000181558590593423,0.0002688818213483815,0.0,0.0,8.021398671253053e-05,0.0,0.0,0.0,0.0,0.0,0.00021912328772612382,0.00016505563220155516,0.000244441526369562,0.0,0.0 +103745,50.0,the Greater Atlanta and Macon Area,G1301210011416,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,13685.0,,782.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003055282011003756,0.0006206338813397629,0.0,0.0036759158923435186,0.0024440767360702736,0.0007310478247817384,0.0004124601767379261,0.0,8.833115475358033e-05,0.0018234428547305107,0.0007310478247817384,0.0004124601767379261,0.0,8.833115475358033e-05,0.0006206338813397629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.146507101672052e-05,0.0,0.0,0.000364093978671275,0.00014976465853506197,0.00040555904968799547,0.00021729731051583874,8.71180173107225e-05,4.915234215732243e-05,0.0,1.052630868739129e-05,4.146507101672052e-05,0.0,0.0,0.0,0.0,0.0,0.00026965182759207905,8.065556170980296e-05,4.550619824038774e-05,0.0,9.74546214572571e-06 +103746,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,14533.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003489576855208859,0.0,0.0,0.003489576855208859,0.0020589098936663187,0.00044455052134877735,0.0009163943770315263,0.0,6.963935608849685e-05,0.0020589098936663187,0.00044455052134877735,0.0009163943770315263,0.0,6.963935608849685e-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.0004158433999416292,0.00013682353980830475,0.0004158433999416292,0.00024535470226931446,5.2975878713648476e-05,0.0001092042299808791,0.0,8.298733000352004e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00024535470226931446,5.2975878713648476e-05,0.0001092042299808791,0.0,8.298733000352004e-06 +103747,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,12318.0,,1621.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027501756159794503,0.0012860949966462302,0.0,0.004036270612625681,0.003094733285177405,0.00047978373476172245,0.00038194126652812163,0.0,7.972961908469235e-05,0.0018883679076158672,0.00047978373476172245,0.00038194126652812163,0.0,0.0,0.0012063653775615376,0.0,7.972961908469235e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5928797735315e-05,0.0,0.0,0.0003277353297894323,0.00018446925775439886,0.0004136641275247474,0.0002250346761022591,5.7175287143886e-05,4.55155104344881e-05,0.0,0.0,8.060176487249546e-05,0.0,5.327032862819528e-06,0.0,0.0,0.0,0.0003171690570821072,4.91714602633306e-05,3.9143906825730156e-05,0.0,8.171226977047179e-06 +103748,50.0,the Greater Atlanta and Macon Area,G1302250040200,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,98829.0,,2754.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008805523218149479,0.0008107273295664143,0.0,0.009616219858109596,0.002460723322556107,0.0026428968255392702,0.004512661089226813,0.0,0.0,0.0016499959929896922,0.0026428968255392702,0.004512661089226813,0.0,0.0,0.0008107273295664143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4167262260895704e-05,0.0,0.0,0.0010493367164368863,0.00032242299764190555,0.001103503978697782,0.0001966267460233539,0.00031494876659648026,0.0005377648610364929,0.0,0.0,5.4167262260895704e-05,0.0,0.0,0.0,0.0,0.0,0.0002823789406837563,0.0003032841600237343,0.0005178479215278046,0.0,0.0 +103749,50.0,the Greater Atlanta and Macon Area,G1301210010604,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,46681.0,,6893.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006503772056215471,0.0020291046995852147,0.0,0.008532907445406983,0.00438483887899688,0.0017303106926707809,0.0024177578737393226,0.0,0.0,0.0023557341794116656,0.0017303106926707809,0.0024177578737393226,0.0,0.0,0.0020291046995852147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013557361265959805,0.0,0.0,0.0007750428219868938,0.00037444071592189677,0.0009106164346464918,0.00028072860648880465,0.0002061980141016844,0.0002881198586216065,0.0,0.0,0.00013557361265959805,0.0,0.0,0.0,0.0,0.0,0.0004679420668790595,0.00018465562457714157,0.0002580187431902908,0.0,0.0 +103750,50.0,the Greater Atlanta and Macon Area,G1300890021218,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,NaturalGas,12191.0,,123.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0029274168750027868,9.742893286490413e-05,0.0,0.0030247631007939515,0.0014810355694497778,0.0004906183614215716,0.0009557629441314365,0.0,9.742893286490413e-05,0.0014810355694497778,0.0004906183614215716,0.0009557629441314365,0.0,0.0,0.0,0.0,9.742893286490413e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.509058678825349e-06,0.0,0.0,0.0003488500950850326,0.00012323129151241996,0.0003553591537638579,0.00017648986163830137,5.84652850415147e-05,0.00011389494840521644,0.0,0.0,0.0,0.0,6.509058678825349e-06,0.0,0.0,0.0,0.00017399694756779508,5.763946462121854e-05,0.00011228618563095103,0.0,1.1446272643930451e-05 +103751,50.0,the Greater Atlanta and Macon Area,G1301350050436,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,17686.0,,1206.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015757578353555496,0.00035498667604552805,0.0,0.0019307445114010778,0.0008845051431060919,0.00045699892737909216,0.0005892711305221912,0.0,0.0,0.0005295184670605638,0.00045699892737909216,0.0005892711305221912,0.0,0.0,0.00035498667604552805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.371732033653265e-05,0.0,0.0,0.0001877804012101599,8.851787168748605e-05,0.00021149772154669256,6.31018218420508e-05,5.445979071809311e-05,7.022244587859149e-05,0.0,0.0,2.371732033653265e-05,0.0,0.0,0.0,0.0,0.0,9.689051107415479e-05,5.006060165869466e-05,6.454997061638549e-05,0.0,0.0 +103752,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,13404.0,,943.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011627678034073633,0.00027752610975012625,0.0,0.0014402939131574893,0.0005332932886351812,0.0004433113629703167,0.0004636892615519913,0.0,0.0,0.000255767178885055,0.0004433113629703167,0.0004636892615519913,0.0,0.0,0.00027752610975012625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.854187071770878e-05,0.0,0.0,0.000138566499072727,6.380136935286736e-05,0.00015710836979043578,3.047965591406531e-05,5.2829209224702835e-05,5.525763393395882e-05,0.0,0.0,1.854187071770878e-05,0.0,0.0,0.0,0.0,0.0,5.817204282560359e-05,4.8356745043209076e-05,5.057958192162311e-05,0.0,0.0 +103753,50.0,the Greater Atlanta and Macon Area,G1300670031209,ComStock 90.1-2007,gen4_led,_1000,Electricity,1885.0,,367.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00014053864459847768,0.0001069758172197619,0.0,0.00024751446181823963,0.00017856639109454297,5.534069817558382e-05,1.3607372548112817e-05,0.0,0.0,7.159057387478105e-05,5.534069817558382e-05,1.3607372548112817e-05,0.0,0.0,0.0001069758172197619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.146931186932068e-06,0.0,0.0,1.6748504048526025e-05,1.1804528811574571e-05,2.3895435235458094e-05,8.531710404663032e-06,6.59515331238695e-06,1.621640331476045e-06,0.0,0.0,7.146931186932068e-06,0.0,0.0,0.0,0.0,0.0,1.7239080101761946e-05,5.342677997178138e-06,1.3136771365180052e-06,0.0,0.0 +103754,50.0,the Greater Atlanta and Macon Area,G1301210002100,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,25315.0,,2001.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0012905398166813832,0.0003403342874579135,0.0,0.001630874104139297,0.0010091589809451454,0.00031599050122818113,0.00013182523715809258,0.0,0.0001738993848078779,0.0006688246934872319,0.00031599050122818113,0.00013182523715809258,0.0,0.0001738993848078779,0.0003403342874579135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.27391000250586e-05,0.0,0.0,0.00015379088453074298,7.388280977861009e-05,0.00017652998455580158,7.970241590213482e-05,3.765591581061044e-05,1.5709333074396173e-05,0.0,2.0723219743601568e-05,2.27391000250586e-05,0.0,0.0,0.0,0.0,0.0,0.00010923394937012196,3.420362010777648e-05,1.4269100858563465e-05,0.0,1.882331421933967e-05 +103755,81.0,the Columbus-Albany Area,G1302150001200,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,77815.0,,19294.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0036536246563846006,0.003281180684394972,0.0,0.006934805340779572,0.002304485995209943,0.0007839833909104748,0.003274638181030972,0.0,0.0005716977736281826,0.002069186368804422,0.0007839833909104748,0.0006983457452516197,0.0,0.00010210915141808409,0.00023529962640552078,0.0025762924357793523,0.00046958862221009855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021922972986846768,0.0,0.0,0.00043539566912591645,0.0003129170266738612,0.0006546253989943841,0.00024658109913329625,9.342584561131214e-05,8.322056632274355e-05,0.0,1.2168158058564505e-05,1.572137547327588e-05,0.00017213312800609437,3.137522638909741e-05,0.0,0.0,0.0,0.00021753675697574717,7.400574563525485e-05,0.00030911629389422283,0.0,5.396660248915931e-05 +103756,50.0,the Greater Atlanta and Macon Area,G1301210011306,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,4516.0,,378.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00027478995411334074,0.00011013467156128809,0.0,0.0003849246256746289,0.0002817455083845859,8.790119677285377e-05,1.5277920517189166e-05,0.0,0.0,0.0001716108368232978,8.790119677285377e-05,1.5277920517189166e-05,0.0,0.0,0.00011013467156128809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.357577540521336e-06,0.0,0.0,3.2747589440944307e-05,1.7206945526366673e-05,4.010516698146565e-05,2.0451407134004124e-05,1.047546411430229e-05,1.8207181926378892e-06,0.0,0.0,7.357577540521336e-06,0.0,0.0,0.0,0.0,0.0,2.935496953523833e-05,9.158396058104757e-06,1.5918013881225613e-06,0.0,0.0 +103757,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,22679.0,,2272.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0021906547871363225,0.0006686651420143481,0.0,0.0028593199291506704,0.0010305569794768592,0.0008351562561793857,0.0009936066934944253,0.0,0.0,0.0003618918374625112,0.0008351562561793857,0.0009936066934944253,0.0,0.0,0.0006686651420143481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4676840658734604e-05,0.0,0.0,0.0002610566168966352,0.0001253854885278971,0.0003057334575553697,4.312603671068102e-05,9.952415510581432e-05,0.00011840642508013982,0.0,0.0,4.4676840658734604e-05,0.0,0.0,0.0,0.0,0.0,0.00011019254800104448,8.929927959358021e-05,0.00010624162996074499,0.0,0.0 +103758,50.0,the Greater Atlanta and Macon Area,G1301210010510,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,112275.0,,3969.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.010118639402809288,0.0011682305533283542,0.0,0.011286869956137641,0.0027686935217535544,0.003305884390388544,0.005212292043995544,0.0,0.0,0.0016004629684252003,0.003305884390388544,0.005212292043995544,0.0,0.0,0.0011682305533283542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.805464659257703e-05,0.0,0.0,0.0012058185852597192,0.00041280602382715075,0.001283873231852296,0.00019072406037231118,0.0003939558155955007,0.0006211387092919072,0.0,0.0,7.805464659257703e-05,0.0,0.0,0.0,0.0,0.0,0.0003149368703277459,0.0003760419401403829,0.0005928944213841673,0.0,0.0 +103759,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7612.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.00152619363171144,0.0,0.0,0.0015261936317114396,0.0007566870176409237,0.0003383546386675067,0.00038855783242726626,0.0,4.259414297574332e-05,0.0007566870176409237,0.0003383546386675067,0.00038855783242726626,0.0,4.259414297574332e-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.00018187420442857322,5.695633268625218e-05,0.00018187420442857322,9.017325618148899e-05,4.032121445387163e-05,4.6303853704299405e-05,0.0,5.075880088913195e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.017325618148902e-05,4.0321214453871635e-05,4.630385370429942e-05,0.0,5.075880088913197e-06 +103761,50.0,the Greater Atlanta and Macon Area,G1300450910300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,125419.0,,6227.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006455979200269627,0.0010588926447283934,0.0,0.007514854114636601,0.003585025888050416,0.0016997920189790424,0.0009979179318048317,0.0,0.0012321182758023095,0.003043505189559164,0.0016997920189790424,0.0004805637159291112,0.0,0.0012321182758023095,0.0005415206984912527,0.0005173542158757207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.074851328617788e-05,0.0,0.0,0.0007693461471488019,0.0002340977849506295,0.0008400946604349798,0.00036268843482595737,0.00020256082000716383,5.726781822564299e-05,0.0,0.00014682907409003775,3.61809901340619e-05,3.456633852143907e-05,0.0,0.0,0.0,0.0,0.00040077439430345714,0.00019002181242787054,0.00011155845652794787,0.0,0.00013773999717570413 +103762,85.0,Rural Climate Zone 3A,G1300990090300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,280309.0,,6572.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012854512029538284,0.0011176333321130283,0.0,0.01397214536165131,0.006895018409752975,0.0031749580891274353,0.0022570040873270414,0.0,0.0016451647754438597,0.006895018409752975,0.0031749580891274353,0.001139370755214013,0.0,0.0016451647754438597,0.0,0.0011176333321130283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.467376169896029e-05,0.0,0.0,0.00153184743389947,0.0004034941230003174,0.0016065211955984303,0.0008216660603995775,0.0003783536388150954,0.00013577661786181216,0.0,0.00019605111682298486,0.0,7.467376169896029e-05,0.0,0.0,0.0,0.0,0.000792791152152771,0.0003650575722837378,0.00025951096349133957,0.0,0.00018916150767058211 +103763,50.0,the Greater Atlanta and Macon Area,G1300670030319,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,16882.0,,4171.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004042473127944907,0.0032349973482225887,0.0,0.007277470476167497,0.00294551574483726,0.0009593323303250132,0.0022299786754638585,0.00041166224660187475,0.0007309814789394907,0.0019377478054541993,0.0009593323303250132,0.0007337307455638207,0.00041166224660187475,0.0,0.001007767939383061,0.0014962479299000374,0.0007309814789394907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021614528379195952,0.0,0.0,0.0004817298041231092,0.0003509170120747505,0.0006978750879150688,0.00023091578873054615,0.00011432085284172922,8.743656597149787e-05,4.9056596579336095e-05,0.0,6.733368340288429e-05,9.99713133023326e-05,4.8840287086742684e-05,0.0,0.0,0.0,0.0002824610647498023,9.199544492249307e-05,0.00021384443527246413,3.947646747306239e-05,7.009767549724691e-05 +103764,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,86823.0,,14837.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.007783191053160403,0.00436746856183238,0.0,0.012150659614992784,0.00593641330458984,0.002185928587766476,0.00402828703303017,0.0,0.0,0.0015689447427574593,0.002185928587766476,0.00402828703303017,0.0,0.0,0.00436746856183238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029180950462838934,0.0,0.0,0.0009275071720179,0.0005417250615837862,0.0012193166766462896,0.00018696797900347422,0.0002604926987946806,0.0004800428370012915,0.0,0.0,0.00029180950462838934,0.0,0.0,0.0,0.0,0.0,0.000595718090301849,0.0002193575711505206,0.0004042379354970192,0.0,0.0 +103765,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300870970300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,31138.0,,,2653.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0026042020421934036,0.0,0.000250035470571573,0.0028542375127649767,0.0018909084329972396,0.0006650907068884517,0.00029823837287928516,0.0,0.0,0.001640872962425667,0.0006650907068884517,0.00029823837287928516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000250035470571573,0.0,0.0,0.0,0.0,2.0164552634996296e-05,0.00031033766700659405,0.00010326782088145473,0.00033050221964159033,0.00019553962356334029,7.925755950551546e-05,3.5540483937738334e-05,0.0,0.0,0.0,0.0,0.0,2.0164552634996296e-05,0.0,0.0,0.0002189549508229901,7.70131966616499e-05,3.453407215695029e-05,0.0,0.0 +103766,50.0,the Greater Atlanta and Macon Area,G1301210009602,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,NaturalGas,54321.0,,4271.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004790068499330651,0.0012441330065697525,0.0,0.0060342015059004035,0.004207016884523568,0.0014446898836572278,0.00038252511131904647,0.0,0.0,0.002962883877953815,0.0014446898836572278,0.00038252511131904647,0.0,0.0,0.0012441330065697525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.312603566467072e-05,0.0,0.0,0.0005708226700530188,0.00019550534763324227,0.0006539487057176896,0.0003530808142946126,0.00017216073985226713,4.558473546588707e-05,0.0,0.0,8.312603566467072e-05,0.0,0.0,0.0,0.0,0.0,0.000455929959229317,0.00015656637894131956,4.1455659246215176e-05,0.0,0.0 +103767,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030201,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5638.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013538320900387231,0.0,0.0,0.001353832090038723,0.0006881228535110377,0.00022967754377405672,0.00038930219609092004,0.0,4.664678958896939e-05,0.0006881228535110377,0.00022967754377405672,0.00038930219609092004,0.0,4.664678958896939e-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.0001613294874200271,5.319072684105095e-05,0.0001613294874200271,8.200020375921714e-05,2.7369539163382938e-05,4.639122104502826e-05,0.0,5.558667658677701e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.200020375921714e-05,2.7369539163382945e-05,4.6391221045028266e-05,0.0,5.558667658677702e-06 +103768,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,124404.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011084287864966506,0.0,0.0,0.011084287864966505,0.0027381880530936375,0.0030800395776437494,0.0052660909238354155,0.0,0.0,0.0027381880530936375,0.0030800395776437494,0.0052660909238354155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013208941118540499,0.00041237831567188677,0.0013208941118540499,0.000326304812771246,0.00036704262754180616,0.0006275503287646953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032630481277124606,0.0003670426275418062,0.0006275503287646954,0.0,0.0 +103769,81.0,the Columbus-Albany Area,G1302150002300,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,8563.0,,239.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0018282398650073908,0.00018923378471553536,0.0,0.0020174736497229257,0.0011921397608783773,0.00020866994704427265,0.0005820923849772456,0.0,3.45715568230305e-05,0.0010374775329858724,0.00020866994704427265,0.0005820923849772456,0.0,0.0,0.00015466222789250488,0.0,3.45715568230305e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2643542011464745e-05,0.0,0.0,0.00021786878754079185,8.390384648198993e-05,0.0002305123295522566,0.00012363474647870132,2.4866905721122724e-05,6.936713534096778e-05,0.0,0.0,1.033366414398561e-05,0.0,2.309877867479136e-06,0.0,0.0,0.0,0.00013621140155643943,2.384219273809468e-05,6.650866131221179e-05,0.0,3.950073945510731e-06 +103770,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,NaturalGas,86506.0,,7564.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004452944809923422,0.0012863022603019907,0.0,0.005739247070225412,0.002818471442415854,0.0010584139249700522,0.0010904349576946674,0.0,0.0007719444755062588,0.0023471275144251705,0.0010584139249700522,0.0008960215447237884,0.0,0.0001513995561658309,0.00047134392799068374,0.00019441341297087895,0.000620544919340428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.594329593574244e-05,0.0,0.0,0.0005306481760715809,0.00021795894742535985,0.0006165914720073233,0.0002797023066087718,0.00012612898717327242,0.00010677702480590491,0.0,1.8041970373943768e-05,3.149248193135272e-05,1.2989582620270932e-05,4.146123138411878e-05,0.0,0.0,0.0,0.00030280025136146304,0.00011370986333311864,0.00011715001767066135,0.0,8.29332444894433e-05 +103771,81.0,the Columbus-Albany Area,G1300950001100,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,81685.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.009105514119709524,0.0,0.0,0.009105514119709522,0.002309147357051753,0.0023375659324834258,0.004458831519780642,0.0,0.0,0.002309147357051753,0.0023375659324834258,0.004458831519780642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010850882471919237,0.000325175400275327,0.0010850882471919237,0.00027517706581197223,0.0002785636579140148,0.0005313511806928288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002751770658119723,0.00027856365791401484,0.0005313511806928289,0.0,0.0 +103772,46.0,the Tallahassee-Valdosta Area,G1301850010202,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,10566.0,,138.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0010736800743006423,5.1380409921781773e-05,0.0,0.0011250604842224239,0.0005748328666588483,0.00013166714397753727,0.0003824856910542292,0.0,3.611353095558116e-05,0.0005748328666588483,0.00013166714397753727,0.00033110528113244745,0.0,3.611353095558116e-05,0.0,5.1380409921781773e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4338203872243303e-06,0.0,0.0,0.0001279473323587157,4.0411203997756496e-05,0.00013138115274594002,6.850116119461355e-05,1.5690390680100894e-05,3.9456853549576867e-05,0.0,4.303544471410841e-06,0.0,3.4338203872243303e-06,0.0,0.0,0.0,0.0,6.712723957244775e-05,1.537568992700892e-05,4.4665519502502973e-05,0.0,4.217228667443296e-06 +103773,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,4999.0,,1220.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012003277611785687,0.000967507348602418,0.0,0.002167835109780987,0.0016462843027809139,0.000245640009005743,0.00023596328137824409,0.0,3.9947516616085484e-05,0.0006787769541784961,0.000245640009005743,0.00023596328137824409,0.0,3.9947516616085484e-05,0.000967507348602418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.464174346868377e-05,0.0,0.0,0.000143041409109269,9.775045770873667e-05,0.00020768315257795278,8.08889164583319e-05,2.9272582171468948e-05,2.8119419843501998e-05,0.0,4.7604906359661635e-06,6.464174346868377e-05,0.0,0.0,0.0,0.0,0.0,0.0001577174908269104,2.353282832232725e-05,2.2605777509629516e-05,0.0,3.827055919085543e-06 +103774,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,96261.0,,1065.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.004754290032618638,0.00018116883299009953,0.0,0.004935458865608738,0.002581859769265249,0.0006306866860726983,0.0010456657951090343,0.0,0.000677246615161757,0.0024006909362751495,0.0006306866860726983,0.0010456657951090343,0.0,0.000677246615161757,0.00018116883299009953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2104258056064505e-05,0.0,0.0,0.000566559710704682,0.0001624603875718369,0.0005786639687607465,0.00028608577790073227,7.515773416327141e-05,0.00012461000618518159,0.0,8.070619245549682e-05,1.2104258056064503e-05,0.0,0.0,0.0,0.0,0.0,0.0003027133366012688,7.394563924956897e-05,0.00012260037728437716,0.0,7.940461562553165e-05 +103775,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock 90.1-2004,gen3_t5_cfl,50001_100000,Electricity,162048.0,,11031.0,,3.3063363735822096,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.014888349630856518,0.0033156881012676416,0.0,0.01820403773212416,0.008818958180504823,0.001660351092410138,0.005540092255326832,0.0,0.0021846048658601624,0.007798310135344094,0.001660351092410138,0.0032450521992199196,0.0,0.0021846048658601624,0.0010206480451607296,0.0022950400561069124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022153559793999073,0.0,0.0,0.0017742146552957947,0.0007411215581756578,0.0019957502532357853,0.0009293089208486872,0.0001978606973996068,0.0003867063382984652,0.0,0.00026033496426001263,6.819395192343918e-05,0.00015334164601655157,0.0,0.0,0.0,0.0,0.0009668425368597923,0.00018202808420300878,0.0006073729731952155,0.0,0.00023950322331878646 +103776,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,27034.0,,,6116.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0026491245957618384,0.0,0.0005764301701296541,0.0032255547658914924,0.0020655262561648747,0.00094410259132364,0.00021586517120410223,0.0,0.0,0.001489096086035221,0.00094410259132364,0.00021586517120410223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005764301701296541,0.0,0.0,0.0,0.0,4.648876755951911e-05,0.00031568940755794157,0.00011632312728368532,0.0003621781751174607,0.0001774517748049215,0.00011250629291113644,2.5724100753448725e-05,0.0,0.0,0.0,0.0,0.0,4.648876755951911e-05,0.0,0.0,0.000231925539763153,0.00010600761061787667,2.4238203798257876e-05,0.0,0.0 +103777,50.0,the Greater Atlanta and Macon Area,G1300630040608,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,101217.0,,1484.0,,7.614023970037612,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.09183780462011722,0.03490964257461677,0.021206640465139953,0.0010272254015783367,0.0,0.14898124089442957,0.13859662282425125,0.004982194748402671,0.00235019126231559,0.0007712489719451795,0.002281055254537591,0.01184917562951726,0.004982194748402671,0.00235019126231559,0.0007712489719451795,0.001253829852959254,0.0,0.0,0.0010272254015783367,0.03490964257461677,0.0,0.0,0.09183780462011722,0.0,0.0,0.0,6.86322398744636e-05,0.0,0.0,0.002527151350615726,0.0008043312837849757,0.00259578359049019,0.0014120416784092382,0.0005937178125009201,0.00028006741720968417,9.190814001473607e-05,0.00014941630248114759,0.0,0.0,6.86322398744636e-05,0.0,0.0,0.0,0.0024148465744052027,8.680756916029695e-05,4.094869848449716e-05,1.3437902742241024e-05,3.974410310440295e-05 +103778,50.0,the Greater Atlanta and Macon Area,G1300890022009,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,122032.0,,5975.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006281601095703407,0.0010161802040674862,0.0,0.007297781299770892,0.003542047491968209,0.0014635881441410986,0.0013611421158560336,0.0,0.0009309858174441327,0.0030563774319501223,0.0014635881441410986,0.0008306497021680538,0.0,0.0009309858174441327,0.00048567006001808637,0.0005304924136879798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.789469781071402e-05,0.0,0.0,0.0007485668517794546,0.00027427326051808015,0.0008164615495901686,0.0003642228784074803,0.00017441310784774584,9.898699758391033e-05,0.0,0.00011094386794031813,3.2449384300788275e-05,3.544412887994981e-05,0.0,0.0,0.0,0.0,0.0003962773705078178,0.00016374338926335809,0.0001522819272700248,0.0,0.00010415687891068613 +103779,50.0,the Greater Atlanta and Macon Area,G1301350050721,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,129664.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,215998.51729091106,0.0,0.0,0.020728317864472476,0.0,0.0,0.020728317864472476,0.009420285144279832,0.001672593050009859,0.009539681984713671,0.0,9.575768546911552e-05,0.009420285144279832,0.001672593050009859,0.009539681984713671,0.0,9.575768546911552e-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.0024701522928741657,0.0008139479528935302,0.0024701522928741657,0.0011225965898831734,0.00019931957742738877,0.0011368248731953026,0.0,1.1411252368301068e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0011225965898831734,0.00019931957742738877,0.0011368248731953026,0.0,1.1411252368301068e-05 +103780,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,25287.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006098406082167833,0.0,0.0,0.006098406082167833,0.0024878287780783674,0.0014676370235040103,0.0019786840321391907,0.0,0.00016425624844626456,0.0024878287780783674,0.0014676370235040103,0.0019786840321391907,0.0,0.00016425624844626456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007267345042035476,0.00022483212241948086,0.0007267345042035476,0.00029646943631169337,0.0001748952841539561,0.0002357957045984359,0.0,1.9574079139462205e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00029646943631169337,0.0001748952841539561,0.0002357957045984359,0.0,1.9574079139462205e-05 +103781,50.0,the Greater Atlanta and Macon Area,G1301210011622,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,109820.0,,15252.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009784797865502877,0.004489521126078345,0.0,0.014274318991581221,0.007902696380083656,0.00223570712918135,0.0041359154823162134,0.0,0.0,0.0034131752540053125,0.00223570712918135,0.0041359154823162134,0.0,0.0,0.004489521126078345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029996328079697973,0.0,0.0,0.0011660363227233616,0.0006657003163601239,0.0014659996035203413,0.0004067418026101645,0.00026642509691364436,0.0004928694231995525,0.0,0.0,0.00029996328079697973,0.0,0.0,0.0,0.0,0.0,0.000811621890107482,0.0002296113577747917,0.00042476635563806753,0.0,0.0 +103782,81.0,the Columbus-Albany Area,G1302150000800,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,151732.0,,1999.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007146913654447665,0.00033990875878383225,0.0,0.007486822413231497,0.004327360659985188,0.0018710141192124921,0.000721235641844908,0.0,0.0005672297225503293,0.003987451901201356,0.0018710141192124921,0.000721235641844908,0.0,0.0005672297225503293,0.00033990875878383225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2710965336633747e-05,0.0,0.0,0.0008516839784078951,0.00022123678893634432,0.0008743949437445287,0.0004751769873156181,0.00022296516031316044,8.594826669464153e-05,0.0,6.759567697760389e-05,2.2710965336633747e-05,0.0,0.0,0.0,0.0,0.0,0.0005053976269241898,0.00021851797668163013,8.423397319575603e-05,0.0,6.624743769306817e-05 +103783,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,28613.0,,2578.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002446115069958401,0.0007588005157107013,0.0,0.0032049155856691013,0.001355130255681364,0.0007345557267355161,0.0011151989136459239,0.0,0.0,0.0005963297399706627,0.0007345557267355161,0.0011151989136459239,0.0,0.0,0.0007588005157107013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.069871247922224e-05,0.0,0.0,0.0002914970226036808,0.00012671313012136535,0.000342195735082903,7.106302799337707e-05,8.753505095061913e-05,0.00013289528646098176,0.0,0.0,5.0698712479222235e-05,0.0,0.0,0.0,0.0,0.0,0.00014469017407182482,7.843009594186808e-05,0.00011907218827389192,0.0,0.0 +103784,50.0,the Greater Atlanta and Macon Area,G1302970110602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,32909.0,,3416.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00754565256112181,0.0009952213591773761,0.0,0.008540873920299187,0.005079316286776361,0.002912463702887147,0.0005491243042351152,0.0,0.0,0.0040840949275989845,0.002912463702887147,0.0005491243042351152,0.0,0.0,0.0009952213591773761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.649448871375836e-05,0.0,0.0,0.000899202354758147,0.00033956491168490914,0.0009656968434719053,0.0004866945232642453,0.00034707325821988345,6.543819284328876e-05,0.0,0.0,6.649448871375836e-05,0.0,0.0,0.0,0.0,0.0,0.000574306534777128,0.0003293055290185212,6.208821394883453e-05,0.0,0.0 +103785,50.0,the Greater Atlanta and Macon Area,G1301350050209,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,13742.0,,2339.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001224423222459448,0.0006886133861078549,0.0,0.0019130366085673028,0.0009312761031037908,0.00044901962974168934,0.0005327408757218226,0.0,0.0,0.00024266271699593586,0.00044901962974168934,0.0005327408757218226,0.0,0.0,0.0006886133861078549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.600931214076265e-05,0.0,0.0,0.00014591173756700685,9.02184557575185e-05,0.00019192104970776948,2.8917565454603677e-05,5.3508650583825267e-05,6.348552152857787e-05,0.0,0.0,4.600931214076265e-05,0.0,0.0,0.0,0.0,0.0,9.342815839227183e-05,4.504687379921994e-05,5.3446017516277704e-05,0.0,0.0 +103786,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,449214.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.03863999432597307,0.0,0.0,0.03863999432597307,0.01594147047449133,0.0085273526266671,0.014171171224814642,0.0,0.0,0.01594147047449133,0.0085273526266671,0.014171171224814642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004604654511449368,0.0014620304800619297,0.004604654511449368,0.0018997146666287676,0.0010161883672096905,0.00168875147761091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018997146666287676,0.0010161883672096905,0.00168875147761091,0.0,0.0 +103787,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,298040.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.025287898003637815,0.0,0.0,0.025287898003637815,0.00896246986475593,0.006298213073233458,0.01002721506564843,0.0,0.0,0.00896246986475593,0.006298213073233458,0.01002721506564843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003013509298124314,0.0008780772261774266,0.003013509298124314,0.0010680399876540007,0.000750545721713477,0.0011949235887568368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010680399876540007,0.000750545721713477,0.0011949235887568368,0.0,0.0 +103788,85.0,Rural Climate Zone 3A,G1302850960800,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,25200.0,,11680.0,,8.53126424238864,Food Service,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.005915855750076558,0.009058833527167161,0.0,0.014974689277243722,0.003380708479312077,0.0004827388749191107,0.009951698293809846,0.0004191822994272478,0.00074036132977544,0.003380708479312077,0.0004827388749191107,0.0016332260964181235,0.0004191822994272478,0.0,0.0,0.008318472197391721,0.00074036132977544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006052563558571658,0.0,0.0,0.0007049806620623424,0.0007939471209835218,0.0013102370179195078,0.0004028722475111668,5.752702331176699e-05,0.00019462827752949236,4.9953113709916247e-05,0.0,0.0,0.0005557898987097213,4.946645714744453e-05,0.0,0.0,0.0,0.0002958010890496661,4.2238094707515286e-05,0.0008707415061714103,3.667709932391276e-05,6.477922866700333e-05 +103789,50.0,the Greater Atlanta and Macon Area,G1301210011503,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,9013.0,,2299.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021641959985364578,0.0018236082688779893,0.0,0.003987886974488186,0.002960168876203552,0.00043801666252337216,0.000528663615341653,0.0,6.095511334586957e-05,0.0011975157206714322,0.00043801666252337216,0.000528663615341653,0.0,0.0,0.0017626531555321198,0.0,6.095511334586957e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012184343548503022,0.0,0.0,0.0002579073782698333,0.00018402985467938903,0.00037975081375486356,0.0001427080265207672,5.2198474235374214e-05,6.300087751369182e-05,0.0,0.0,0.00011777075137452783,0.0,4.072684110502393e-06,0.0,0.0,0.0,0.00028188525572101793,4.1710606417772936e-05,5.034255970966854e-05,0.0,5.804516036612283e-06 +103790,50.0,the Greater Atlanta and Macon Area,G1300890022500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,55347.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004797692272789527,0.0,0.0,0.004797692272789527,0.0035692624171290927,0.0009354764890833183,0.0002929837401765541,0.0,0.0,0.0035692624171290927,0.0009354764890833183,0.0002929837401765541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005717303926374503,0.00020314324153567894,0.0005717303926374503,0.00042534111967644197,0.00011147866724176877,3.4914225274005706e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00042534111967644197,0.00011147866724176877,3.4914225274005706e-05,0.0,0.0 +103791,50.0,the Greater Atlanta and Macon Area,G1301210007200,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,35129.0,,5907.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004824528868424069,0.0017388424032215419,0.0,0.0065633405820393126,0.0029883390340262124,0.001318701693005991,0.0022563305446134064,0.0,0.0,0.0012494966308046712,0.001318701693005991,0.0022563305446134064,0.0,0.0,0.0017388424032215419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001161784052708917,0.0,0.0,0.0005749284019745376,0.0002887081830064128,0.0006911068072454292,0.0001488997414696275,0.00015714675519989252,0.00026888190530501753,0.0,0.0,0.0001161784052708917,0.0,0.0,0.0,0.0,0.0,0.00031466620129760853,0.00013885668515458026,0.0002375871523482021,0.0,0.0 +103792,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,56797.0,,4156.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0027342699560320228,0.0007068031276489848,0.0,0.0034410730836810077,0.0009925633626559761,0.0003426569648039405,0.0017549157126339862,0.0,0.00035095477394852517,0.0007809869598304858,0.0003426569648039405,0.0015431797365557157,0.0,6.746402520330092e-05,0.00021157640282549008,0.00021173597607827054,0.00028349074874522425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.722425790611479e-05,0.0,0.0,0.0003258379092532919,0.00012394553469776873,0.0003730621671594067,9.306877603063926e-05,4.083379870977421e-05,0.0001838978839130657,0.0,8.03956349429219e-06,1.4136239955691047e-05,1.4146901663526562e-05,1.894111628689719e-05,0.0,0.0,0.0,0.00010760824606473043,3.7148978464960975e-05,0.0001902582836854448,0.0,3.8048581172277626e-05 +103793,50.0,the Greater Atlanta and Macon Area,G1300150960803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,48117.0,,4663.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.00502956612809902,0.0013725312624521615,0.0,0.006402097390551182,0.002237855401622189,0.0017733682103064574,0.0023908737786225353,0.0,0.0,0.0008653241391700276,0.0017733682103064574,0.0023908737786225353,0.0,0.0,0.0013725312624521615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.170467458160974e-05,0.0,0.0,0.0005993630227824562,0.00026615907624294926,0.000691067697364066,0.00010311889306754209,0.0002113286323242606,0.0002849154973906535,0.0,0.0,9.170467458160973e-05,0.0,0.0,0.0,0.0,0.0,0.00024156295743255448,0.00019142437406276453,0.0002580803658687469,0.0,0.0 +103794,35.0,Eastern Counties in South Carolina and Georgia,G1300510003602,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,22500.0,,752.0,,4.088175128053588,Healthcare,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0025384479897329155,0.00027949238066803307,0.0,0.0028179403704009487,0.0015950013677302438,0.00030312891916900366,0.0008534340335801234,0.0,6.637604992157782e-05,0.0014407438926935824,0.00030312891916900366,0.0007281603795249797,0.0,6.637604992157782e-05,0.00015425747503666155,0.00012527365405514364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.86749218225347e-05,0.0,0.0,0.00030250209938521215,0.00010779552571660837,0.00032117702120774684,0.0001716907551302981,3.612330636825136e-05,8.677351058061863e-05,0.0,7.909909728852688e-06,1.0307065544920372e-05,8.37044534205666e-06,0.0,0.0,0.0,0.0,0.00018179156432504377,3.454936247879934e-05,9.727083070376525e-05,0.0,7.565263700138473e-06 +103795,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,107242.0,,3167.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.005520312567410601,0.0005386129192183639,0.0,0.006058925486628963,0.003995412833478959,0.0007553843179399296,0.0008895676931668892,0.0,0.0004185606420431865,0.0039828065465093015,0.0007553843179399296,0.00036357879127960275,0.0,0.0004185606420431865,1.2606286969657541e-05,0.0005259889018872864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.598671362168873e-05,0.0,0.0,0.0006578445663719146,0.00024877822824447243,0.0006938312799936034,0.00047462306047655977,9.001763269945221e-05,4.332695465531328e-05,0.0,4.9879031432165255e-05,8.422724795911742e-07,3.5143256511324584e-05,0.0,0.0,0.0,0.0,0.00045753036680732105,8.650201580461388e-05,0.00010186787947021611,0.0,4.7931017911452444e-05 +103796,50.0,the Greater Atlanta and Macon Area,G1301350050606,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,307319.0,,33609.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.015819312144753832,0.005715523846645381,0.0,0.02153483599139921,0.008793195442660986,0.004231262101088501,0.004539788120158841,0.0,0.003970608057852303,0.0070909743641673975,0.004231262101088501,0.003864793260897431,0.0,0.000632300148961923,0.0017022210784935893,0.0006749948592614102,0.003338307908890381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000381877645799181,0.0,0.0,0.0018851570112567453,0.0008519954710505066,0.0022670346570559264,0.0008450177806046462,0.0005042313688068427,0.00046055998175968644,0.0,7.534999297864871e-05,0.00011373238840852771,4.509918157940806e-05,0.00022304607581124519,0.0,0.0,0.0,0.0009256851931791032,0.0004454372362104833,0.0004779166652674451,0.0,0.0004179974289254769 +103797,46.0,the Tallahassee-Valdosta Area,G1301850010301,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10242.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0022719633156187747,0.0,0.0,0.0022719633156187747,0.0006500775995909564,0.000840469283338842,0.0007131830968540478,0.0,6.815062876118932e-05,0.0006500775995909564,0.000840469283338842,0.0007131830968540478,0.0,6.815062876118932e-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.0002707480324862215,8.307275653492456e-05,0.0002707480324862215,7.746922225488538e-05,0.00010015804536312279,8.498945337199448e-05,0.0,8.121455361071953e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.746922225488538e-05,0.00010015804536312279,8.498945337199448e-05,0.0,8.121455361071953e-06 +103798,85.0,Rural Climate Zone 3A,G1302770960400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,167122.0,,6809.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.03479795617700636,0.004683744427145495,0.0,0.03948170060415185,0.015093037580409254,0.0024660194834007702,0.011714955225602956,0.0003852796842958626,0.009822408630443013,0.015093037580409254,0.0024660194834007702,0.00703121079845746,0.0003852796842958626,0.009822408630443013,0.0,0.004683744427145495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031293950928696246,0.0,0.0,0.004146805650601415,0.0013720551541485059,0.004459745159888377,0.0017986083206960627,0.0002938708088556263,0.0008378958959917122,4.591304051804399e-05,0.0011705175845399694,0.0,0.00031293950928696246,0.0,0.0,0.0,0.0,0.0017048683381729812,0.00027855483140284244,0.0013232893737155215,4.352014176058835e-05,0.0011095124748364443 +103799,46.0,the Tallahassee-Valdosta Area,G1301850010800,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,33320.0,,6429.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0016252890402919805,0.0010932540851604556,0.0,0.002718560855813856,0.0009158618191528276,0.00044708879356805155,0.0010058079426367552,0.0,0.0003498023004562217,0.0008655962445269779,0.00044708879356805155,0.00024643429337731394,0.0,6.616970881963706e-05,5.02655746258497e-05,0.0007593736492594414,0.00028363259163658464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.30452895993082e-05,0.0,0.0,0.00019368345735693753,0.00012804607246634948,0.00026672874695624576,0.00010315191277303381,5.327895601156945e-05,2.9367235469733652e-05,0.0,7.885353102600617e-06,3.3584722026279405e-06,5.0737215508413414e-05,1.8950786534546437e-05,0.0,0.0,0.0,8.98588217678759e-05,4.3865648043727785e-05,9.868379133187614e-05,0.0,3.4320485812765914e-05 +103800,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,34289.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0030236310768293182,0.0,0.0,0.0030236310768293187,0.0014972969578834136,0.0011467248731728825,0.00037954849857414676,0.0,0.0,0.0014972969578834136,0.0011467248731728825,0.00037954849857414676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003603192925012529,0.00011168809261088788,0.0003603192925012529,0.00017842949977037973,0.000136652615513042,4.522993811121928e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001784294997703797,0.00013665261551304198,4.522993811121927e-05,0.0,0.0 +103801,85.0,Rural Climate Zone 3A,G1301330950303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,68807.0,,2554.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006130647822848001,0.0007517112166559318,0.0,0.006882359039503933,0.0032557682633043952,0.0014779193704784728,0.0021486714057210653,0.0,0.0,0.0025040570466484634,0.0014779193704784728,0.0021486714057210653,0.0,0.0,0.0007517112166559318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.022561207823786e-05,0.0,0.0,0.0007305773256175641,0.00027193551051732666,0.0007808029376958019,0.00029840358689604135,0.00017612076445470398,0.0002560529742668188,0.0,0.0,5.022561207823786e-05,0.0,0.0,0.0,0.0,0.0,0.00036936658053632457,0.00016766980326418676,0.0002437665538952906,0.0,0.0 +103802,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,34204.0,,1662.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029549180527680147,0.0004891923243853823,0.0,0.0034441103771533973,0.0015295699778775068,0.0007863904717723362,0.0011281499275035544,0.0,0.0,0.0010403776534921242,0.0007863904717723362,0.0011281499275035544,0.0,0.0,0.0004891923243853823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.268542652031837e-05,0.0,0.0,0.00035213282986577783,0.0001419301059757963,0.0003848182563860962,0.00012398013099216762,9.371288721366679e-05,0.00013443981165994344,0.0,0.0,3.268542652031837e-05,0.0,0.0,0.0,0.0,0.0,0.00017090231945290698,8.786518927891832e-05,0.0001260507476542709,0.0,0.0 +103803,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,539644.0,,37311.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.025024047006335665,0.0063450757895871955,0.0,0.03136914052628428,0.013424365845578781,0.006107666250172689,0.004569025486140506,0.0,0.007268065214030884,0.013424365845578781,0.006107666250172689,0.004569025486140506,0.0,0.0009229894244436888,0.0,0.0,0.0063450757895871955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004239413561614004,0.0,0.0,0.002982068368632268,0.0011275075460814574,0.003406009724793668,0.0015997562962902178,0.0007278390392326025,0.0005444821285000231,0.0,0.00010999090460942474,0.0,0.0,0.0004239413561614004,0.0,0.0,0.0,0.0014575955812661638,0.0006631603638120582,0.0004960972783294819,0.0,0.0007891545762524608 +103804,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,17354.0,,2574.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0011578635221751283,0.0004377448930996836,0.0,0.0015956084152748118,0.0009643011665524118,0.0003526214279220102,9.168369890309306e-05,0.0,0.000187037582620137,0.0006631509778328149,0.0003526214279220102,9.168369890309306e-05,0.0,5.042514787863017e-05,0.00030115018871959684,0.0,0.00013661243474150683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9247727793141294e-05,0.0,0.0,0.00013798052795032102,7.302878754254418e-05,0.00016722825574346227,7.902651761604047e-05,4.202126577048856e-05,1.0925782647787425e-05,0.0,6.009074811507916e-06,2.0121214166896385e-05,0.0,9.127698272354234e-06,0.0,0.0,0.0,0.00010106389547097755,3.69566027382794e-05,9.608939700303841e-06,0.0,1.9602534306421426e-05 +103805,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001300,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,279471.0,,22439.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013275537191818856,0.0038160347669922846,0.0,0.017091571958811145,0.00768288474981444,0.0044516150328169175,0.00206175734736942,0.0,0.002895297098448943,0.006334809910324985,0.0044516150328169175,0.00206175734736942,0.0,0.00042733717094611264,0.0013480748394894544,0.0,0.00246795992750283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002549654462216391,0.0,0.0,0.0015820199829468067,0.0006088176964215582,0.0018369854291684455,0.000754906993329023,0.0005304903173818673,0.00024569561867039886,0.0,5.092494067278347e-05,9.007059001757993e-05,0.0,0.00016489485620405913,0.0,0.0,0.0,0.0008257489348201111,0.00047845522759749144,0.0002215956621617884,0.0,0.00031118369894715865 +103806,50.0,the Greater Atlanta and Macon Area,G1301210009602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,11523.0,,1632.0,,8.72605822017302,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.00276696515194853,0.0012949446535363363,0.0,0.004061992512558606,0.0031741320759671393,0.0004869792501770422,0.0003343019920542806,0.0,6.641378021266387e-05,0.0018791874224308037,0.0004869792501770422,0.0003343019920542806,0.0,6.641378021266387e-05,0.0012949446535363363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.652272670707865e-05,0.0,0.0,0.00032973637313676044,0.00019623769936605474,0.00041625909984383913,0.0002239408200281074,5.8032813182760294e-05,3.983842236493157e-05,0.0,7.9144614445918e-06,8.652272670707865e-05,0.0,0.0,0.0,0.0,0.0,0.0003252741989657901,4.990396798974863e-05,3.425812476470176e-05,0.0,6.805857047514972e-06 +103807,85.0,Rural Climate Zone 3A,G1300910960300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,30882.0,,1034.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0071379856253742865,0.0008015729425583154,0.0,0.007939558567932603,0.0030667260586569834,0.0007106854223892904,0.0032346739050903156,0.00042435738954363367,0.000503034931469311,0.0030667260586569834,0.0007106854223892904,0.0024331009625319995,0.00042435738954363367,0.000503034931469311,0.0,0.0008015729425583154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.355416198831224e-05,0.0,0.0,0.000850621146663943,0.0002691539807051447,0.0009041753086522552,0.0003654563308793736,8.46911272504038e-05,0.0002899483466793321,5.0569921016056346e-05,5.994578480199818e-05,0.0,5.355416198831224e-05,0.0,0.0,0.0,0.0,0.00034924586258957744,8.093450103622307e-05,0.00036837215211651286,4.8326801847547925e-05,5.728678244923696e-05 +103808,50.0,the Greater Atlanta and Macon Area,G1300890021209,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,25625.0,,4333.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0059719731335261175,0.0033601698404126705,0.0,0.009332062113155718,0.004806688388725564,0.00041360290539551946,0.003321275803756708,0.0004168373367182605,0.0003737385393427353,0.002301540468479505,0.00041360290539551946,0.002466253883590096,0.0004168373367182605,0.0003737385393427353,0.002505147920246058,0.0008550219201666123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022450543870252356,0.0,0.0,0.0007116648788651706,0.0004327289452099902,0.0009361703175676942,0.00027426873532109333,4.9288008332480505e-05,0.00029389721488575854,4.967344730282248e-05,4.453747302301562e-05,0.00016737824561287166,5.712719308965188e-05,0.0,0.0,0.0,0.0,0.000482195568434819,4.149166160662302e-05,0.0003331825041701728,4.1816132078620075e-05,3.749256303925935e-05 +103809,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,35662.0,,3153.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.00712043044240088,0.002169027083425125,0.0,0.009289457525826009,0.002470896441429832,0.0005100007138920102,0.00467728962975409,0.00036935785073039694,0.0012618411700486608,0.002470896441429832,0.0005100007138920102,0.002508262546328965,0.00036935785073039694,0.0012618411700486608,0.0,0.002169027083425125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014492379571502998,0.0,0.0,0.0008485258194366755,0.00034958316703625016,0.0009934496151517054,0.0002944512195811117,6.077564792874971e-05,0.0002989040549869446,4.401555151639165e-05,0.00015037079871444556,0.0,0.00014492379571502998,0.0,0.0,0.0,0.0,0.0002642469823446353,5.454139938037565e-05,0.0005002069894516352,3.95005212781514e-05,0.00013494605269277583 +103811,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,7139.0,,1350.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0005447712013905221,0.0003972769535237624,0.0,0.0009420788445205822,0.0004977547245424413,0.00022673481132742815,0.00021755861904441503,0.0,0.0,0.00010047777101867891,0.00022673481132742815,0.00021755861904441503,0.0,0.0,0.0003972769535237624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6544632387421185e-05,0.0,0.0,6.491988642220081e-05,4.866006449163856e-05,9.1464518809622e-05,1.197384418603377e-05,2.7019780344049327e-05,2.5926261892117715e-05,0.0,0.0,2.6544632387421185e-05,0.0,0.0,0.0,0.0,0.0,4.8325993763991896e-05,2.2013221649199836e-05,2.1122323804978028e-05,0.0,0.0 +103812,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,10932.0,,855.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0024798888989993936,0.0006781980046623207,0.0,0.0031580869036617145,0.002194466787525044,0.0005092274530129158,0.00037019686205714,0.0,8.419580106661495e-05,0.0016004645839293378,0.0005092274530129158,0.00037019686205714,0.0,0.0,0.0005940022035957059,0.0,8.419580106661495e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.531258615648846e-05,0.0,0.0,0.00029552689751719625,0.0001344133049999069,0.00034083948367368477,0.00019072642055280366,6.06843352459104e-05,4.411614171848221e-05,0.0,0.0,3.968719436291465e-05,0.0,5.625391793573813e-06,0.0,0.0,0.0,0.00023683988111025241,5.4958849281868774e-05,3.9953842680793345e-05,0.0,9.086910600770247e-06 +103813,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,16771.0,,6716.0,,7.56685751697572,Food Service,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,22700.572550927158,0.0,0.0,0.004519720853432793,0.004620128812854648,0.0,0.009139777946316426,0.0024046989081824227,0.0004955849997178724,0.004101952022266858,0.00027612188841010253,0.001861420127739169,0.0024046989081824227,0.0004955849997178724,0.0011166082287420486,0.00027612188841010253,0.00022663510840933092,0.0,0.0029853437935248098,0.0016347850193298382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003086880294590414,0.0,0.0,0.0005386047272638735,0.00047425941280556706,0.0008472927567229148,0.00028656243197179283,5.9057723311911736e-05,0.00013306363158366918,3.290480966003765e-05,2.7007584032654287e-05,0.0,0.000199461947969273,0.00010922608148976837,0.0,0.0,0.0,0.00022292488712197093,4.594264576971634e-05,0.00038026681362563766,2.5597566745789854e-05,0.00017256084345979996 +103814,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,74244.0,,,7329.0,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006546907864409654,0.0,0.0006907563984133518,0.007237664262823006,0.0035420172984334287,0.00323815980965816,0.0004575175283308557,0.0,0.0,0.002851260900020077,0.00323815980965816,0.0004575175283308557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006907563984133518,0.0,0.0,0.0,0.0,5.570805235704411e-05,0.000780184069670538,0.00027850852370184064,0.000835892122027582,0.00033977999671616464,0.0003858860932313554,5.452159929410572e-05,0.0,0.0,0.0,0.0,0.0,5.5708052357044104e-05,0.0,0.0,0.0004090745644356681,0.00037398146369721746,5.2839601801607584e-05,0.0,0.0 +103815,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,118829.0,,1892.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.013367779968707071,0.0007031676461919863,0.0,0.014070908866475282,0.007037876209723397,0.0020744743634859967,0.004707081022985072,0.0,0.00025147727028081737,0.007037876209723397,0.0020744743634859967,0.004003913376793087,0.0,0.00025147727028081737,0.0,0.0007031676461919863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6980714044760535e-05,0.0,0.0,0.0015930108414852894,0.0005782711544618344,0.0016399915555300503,0.0008386892310739562,0.00024721084272425484,0.00047713812110390885,0.0,2.9968029013213552e-05,0.0,4.6980714044760535e-05,0.0,0.0,0.0,0.0,0.0008202780404833548,0.00024178398641940967,0.0005486193679559377,0.0,2.9310160671348204e-05 +103816,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,3925.0,,692.0,,8.72605822017302,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0009425298123331474,0.000548844141334044,0.0,0.0014914566607409307,0.0008015142516076282,0.00027309875748719313,0.00038293375141299337,0.0,3.374448608563743e-05,0.00028641459635922163,0.00027309875748719313,0.00038293375141299337,0.0,0.0,0.0005150996552484065,0.0,3.374448608563743e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.667189552150564e-05,0.0,0.0,0.00011232228355738229,7.070467312002433e-05,0.00014899417907888793,3.4132333095754204e-05,3.2545470367363664e-05,4.5634623804025976e-05,0.0,0.0,3.441720393428829e-05,0.0,2.2546915872173447e-06,0.0,0.0,0.0,8.007001549678384e-05,2.7282137155131593e-05,3.8254480626365614e-05,0.0,3.371021186945393e-06 +103817,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,317101.0,,26902.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.02661344347884819,0.007918900492208843,0.0,0.03453234397105705,0.01769872664149149,0.006304074788036318,0.010529481162316633,0.0,0.0,0.009779826149282645,0.006304074788036318,0.010529481162316633,0.0,0.0,0.007918900492208843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005290944430326875,0.0,0.0,0.0031714724682446777,0.0013695367303909259,0.0037005669112773654,0.0011654429236607618,0.000751244371811666,0.0012547778583304708,0.0,0.0,0.0005290944430326875,0.0,0.0,0.0,0.0,0.0,0.00189663702632352,0.0006755594287598245,0.0011283638786537468,0.0,0.0 +103818,35.0,Eastern Counties in South Carolina and Georgia,G1300510010808,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,33944.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029932574773915664,0.0,0.0,0.0029932574773915664,0.001862721732719006,0.0007982789404229935,0.00033228717784900496,0.0,0.0,0.001862721732719006,0.0007982789404229935,0.00033228717784900496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035669942844628174,9.5460571461286e-05,0.00035669942844628174,0.00022197615221338963,9.512901711272861e-05,3.959787867031622e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022197615221338963,9.512901711272861e-05,3.959787867031622e-05,0.0,0.0 +103819,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010400,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,34194.0,,7733.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.00200799889154382,0.0013150431761638963,0.0,0.0033230420677077166,0.00122898000183096,0.0005710240198942205,0.0012465153292753922,0.0,0.0002765227167071436,0.0007955435865563493,0.0005710240198942205,0.0003649085683861068,0.0,0.0002765227167071436,0.00043343641527461075,0.0008816067608892854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.786329038970182e-05,0.0,0.0,0.00023929016626860896,0.00014453746192834706,0.0003271534566583108,9.480371622846587e-05,6.804806179888054e-05,4.348559771107125e-05,0.0,3.295279053019131e-05,2.8959619205687696e-05,5.890367118401413e-05,0.0,0.0,0.0,0.0,0.00012099306827020882,5.621730876015791e-05,0.00012271942107291008,0.0,2.7223658555033938e-05 +103820,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,649366.0,,53258.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.03151725996558741,0.009057005490229952,0.0,0.04057424772545593,0.022508800204925555,0.0068507102365642615,0.004132628100508747,0.0,0.007082126913818791,0.020300660993672177,0.0068507102365642615,0.003365133945718922,0.0,0.0010007547896320403,0.002208139211253376,0.0007674941547898257,0.00608137212418675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006051356253184436,0.0,0.0,0.0037558507173221264,0.00171299973319138,0.004360986342640569,0.0024191903813481114,0.0008163858464936314,0.00040101648295928863,0.0,0.00011925800652109446,0.00014753482305309508,5.127942737674102e-05,0.00040632137488860753,0.0,0.0,0.0,0.0024192825692568665,0.0007363255131973978,0.00044418161064818033,0.0,0.0007611985552262977 +103821,50.0,the Greater Atlanta and Macon Area,G1300890023213,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,25720.0,,2834.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002106773604201342,0.0008254936855192188,0.0,0.0029322976633199987,0.0020633393570053567,0.0006488712047886923,0.00022008710152594972,0.0,0.0,0.001237845671486138,0.0006488712047886923,0.00022008710152594972,0.0,0.0,0.0008254936855192188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.515520753547978e-05,0.0,0.0,0.0002510615050176333,0.00011413267360123861,0.0003062167125531131,0.00014751247910222643,7.732514823234192e-05,2.6227497265905988e-05,0.0,0.0,5.515520753547978e-05,0.0,0.0,0.0,0.0,0.0,0.00021547232488950888,6.776092675932667e-05,2.2983460904277533e-05,0.0,0.0 +103822,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,91881.0,,9418.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.007868109193786147,0.002772314895296683,0.0,0.010640454778689128,0.004241150142311036,0.0022633584644555804,0.0041359154823162134,0.0,0.0,0.001468835247014353,0.0022633584644555804,0.0041359154823162134,0.0,0.0,0.002772314895296683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018523069670323003,0.0,0.0,0.0009376280062698198,0.00047097080143639243,0.0011228587029730498,0.00017503837710902242,0.0002697202380182279,0.0004928693911425695,0.0,0.0,0.00018523069670323003,0.0,0.0,0.0,0.0,0.0,0.00044755721883684617,0.00023884615861078482,0.00043645208693343765,0.0,0.0 +103823,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,19805.0,,663.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.002141857872425648,0.00024636247834290237,0.0,0.0023882203507685504,0.0010263295004511567,0.00043917463503278636,0.0008510703797300264,0.0,7.168458397835316e-05,0.0009609996579714253,0.00043917463503278636,0.0007417223278452088,0.0,0.0,6.532984247973156e-05,0.00010934805188481762,7.168458397835316e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6460229597980732e-05,0.0,0.0,0.0002552408169980013,7.453823334154423e-05,0.00027170104659598207,0.00011452036150169028,5.233554200476423e-05,8.838953106186668e-05,0.0,0.0,4.364886301068812e-06,7.305877308194656e-06,4.789465988717262e-06,0.0,0.0,0.0,0.00011676259241956999,4.996365094134505e-05,9.682386000315007e-05,0.0,8.155351530041322e-06 +103824,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,193299.0,,13207.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.015931803248507553,0.0038874831193363084,0.0,0.019819286367843865,0.007102219379020675,0.004071129723421763,0.008645906575795127,0.0,0.0,0.003214736259684367,0.004071129723421763,0.008645906575795127,0.0,0.0,0.0038874831193363084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025973992635763376,0.0,0.0,0.0018985620798342585,0.0007611436030608316,0.002158302006191892,0.00038309388234986547,0.00048514862971953603,0.0010303159105440234,0.0,0.0,0.00025973992635763376,0.0,0.0,0.0,0.0,0.0,0.0007734251400204612,0.00044334227209032146,0.0009415312520112884,0.0,0.0 +103825,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,30114.0,,1598.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0026457202693186597,0.00047044097493748586,0.0,0.0031161919338624426,0.001103905138528369,0.0008168652508259549,0.0011954215445081188,0.0,0.0,0.0006334641635908831,0.0008168652508259549,0.0011954215445081188,0.0,0.0,0.00047044097493748586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.143240043452272e-05,0.0,0.0,0.00031528678289462713,0.00012461615883328986,0.0003467191833291498,7.548903810191508e-05,9.734468907313957e-05,0.00014245671295701743,0.0,0.0,3.143240043452272e-05,0.0,0.0,0.0,0.0,0.0,0.00012282461935167295,9.088748660782538e-05,0.00013300707736965152,0.0,0.0 +103826,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,13987.0,,,2367.0,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00309175583052279,0.0,0.0006075661636889523,0.003699321994211742,0.002348467358827634,0.0007367546128697506,0.0005109643015614413,0.0,0.00010313572095291637,0.001740901195138682,0.0007367546128697506,0.0005109643015614413,0.0,0.00010313572095291637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006075661636889523,0.0,0.0,0.0,0.0,4.9002154985703975e-05,0.00036843802593580587,0.00016316863914301414,0.0004174401809215099,0.0002074595261870092,8.779749438329033e-05,6.0890538875164754e-05,0.0,1.2290466490341607e-05,0.0,0.0,0.0,4.9002154985703975e-05,0.0,0.0,0.0002650065716612922,8.313712063246314e-05,5.765841168246041e-05,0.0,1.163807694529429e-05 +103827,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6295.0,,689.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.00045396381719663874,0.0002006479978857885,0.0,0.0006546118150824274,0.00041116741558884637,0.00017568089914795653,6.77635003456243e-05,0.0,0.0,0.00021051941770305787,0.00017568089914795653,6.77635003456243e-05,0.0,0.0,0.0002006479978857885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3406181133169678e-05,0.0,0.0,5.40978075932172e-05,2.9121955352075845e-05,6.750398872638688e-05,2.5087107214544923e-05,2.0935482344384335e-05,8.07521803428794e-06,0.0,0.0,1.340618113316968e-05,0.0,0.0,0.0,0.0,0.0,4.239984666801684e-05,1.8116326595834338e-05,6.987815462535684e-06,0.0,0.0 +103828,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,39152.0,,,3541.0,3.20458438519356,Mercantile,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,56080.226740887294,0.0,0.0,0.003288762226321454,0.0,0.00033377548422145473,0.0036225377105429083,0.0027023391419767795,0.0006899970584274081,0.0002302015101387211,0.0,0.0,0.0023685636577553248,0.0006899970584274081,0.0002302015101387211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033377548422145473,0.0,0.0,0.0,0.0,2.6918779860254017e-05,0.0003919153815596949,0.00012382210360424914,0.0004188341614199489,0.00028225711249301854,8.222560398691865e-05,2.7432665079757734e-05,0.0,0.0,0.0,0.0,0.0,2.6918779860254017e-05,0.0,0.0,0.00031244172975980467,7.977676492023696e-05,2.661566673990738e-05,0.0,0.0 +103829,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,57611.0,,8908.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.0056268165562586145,0.0026221199620757255,0.0,0.008248967207940638,0.003476518601403771,0.002543002157040248,0.002229415759890321,0.0,0.0,0.0008543986393280456,0.002543002157040248,0.002229415759890321,0.0,0.0,0.0026221199620757255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017519531700481086,0.0,0.0,0.0006705379453477623,0.0003631160491621379,0.0008457332623525732,0.0001018172002578824,0.00030304514539398884,0.0002656755996958911,0.0,0.0,0.00017519531700481086,0.0,0.0,0.0,0.0,0.0,0.0003564333987852816,0.00026072373137487644,0.00022857298571114052,0.0,0.0 +103830,50.0,the Greater Atlanta and Macon Area,G1301210010122,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6861.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016475249088870039,0.0,0.0,0.0016475249088870037,0.0010072067439972857,0.00021561734123837442,0.0003858284989938691,0.0,3.878961758373519e-05,0.0010072067439972857,0.00021561734123837442,0.0003858284989938691,0.0,3.878961758373519e-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.0001963337154968327,6.95411241517835e-05,0.0001963337154968327,0.00012002771020684881,2.5694879332341508e-05,4.597875415626128e-05,0.0,4.622515691165389e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012002771020684884,2.569487933234151e-05,4.5978754156261284e-05,0.0,4.62251569116539e-06 +103831,50.0,the Greater Atlanta and Macon Area,G1300890023501,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,34650.0,,2863.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002966316094690281,0.0008341501613589783,0.0,0.0038004662560492597,0.002639951768731637,0.0008755190037931962,0.0002850258571238631,0.0,0.0,0.0018058016073726592,0.0008755190037931962,0.0002850258571238631,0.0,0.0,0.0008341501613589783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5732599483044126e-05,0.0,0.0,0.00035349140752168273,0.00015776070417220447,0.0004092240070047269,0.00021519464936245382,0.00010433427695612888,3.3966100779056846e-05,0.0,0.0,5.5732599483044126e-05,0.0,0.0,0.0,0.0,0.0,0.00028426292152443046,9.427353666691642e-05,3.069081936105269e-05,0.0,0.0 +103832,50.0,the Greater Atlanta and Macon Area,G1301130140208,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,70326.0,,2296.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006201408170805227,0.0006689177804176084,0.0,0.006870325951222836,0.003885238972080024,0.00226608313325235,0.000719003845890461,0.0,0.0,0.003216321191662416,0.00226608313325235,0.000719003845890461,0.0,0.0,0.0006689177804176084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4692691754679016e-05,0.0,0.0,0.0007390096548437106,0.00023389269231103787,0.0007837023465983896,0.0003832826913259484,0.00027004468469530305,8.568227882245919e-05,0.0,0.0,4.469269175467902e-05,0.0,0.0,0.0,0.0,0.0,0.0004431916216395351,0.0002584935098750013,8.201721508385314e-05,0.0,0.0 +103833,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,11414.0,,440.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.00301301869632297,0.00034885843703239873,0.0,0.0033617944262816285,0.0019793456887291054,0.0006070699212465166,0.0006735664085329197,0.0,0.00010189511484682675,0.0016304872516967066,0.0006070699212465166,0.0006735664085329197,0.0,0.00010189511484682675,0.00034885843703239873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.330761244231234e-05,0.0,0.0,0.0003590518673473936,0.00011242171075431669,0.00038235947978970593,0.00019429998662878165,7.234259418967524e-05,8.026676935704566e-05,0.0,1.2142517171890992e-05,2.330761244231234e-05,0.0,0.0,0.0,0.0,0.0,0.00022512429134566495,6.904614317554659e-05,7.660923569777267e-05,0.0,1.1589216402217084e-05 +103834,50.0,the Greater Atlanta and Macon Area,G1301350050218,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,60909.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.005115926680220757,0.0,0.0,0.005115926680220757,0.0017414510197568467,0.0011440471435657643,0.0022304285168981454,0.0,0.0,0.0017414510197568467,0.0011440471435657643,0.0022304285168981454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006096568202814579,0.00019915878207128388,0.0006096568202814579,0.0002075259396280184,0.00013633427282978413,0.0002657966078236553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002075259396280184,0.00013633427282978413,0.0002657966078236553,0.0,0.0 +103835,50.0,the Greater Atlanta and Macon Area,G1301170130613,ComStock 90.1-2004,gen5_led,10001_25000,Electricity,25241.0,,729.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.006074586444930911,0.0005782051525114982,0.0,0.00665279159744241,0.0026974085029337724,0.0015577877338798553,0.002274279113683475,0.0,0.00012339895401904666,0.002119203350422274,0.0015577877338798553,0.002274279113683475,0.0,0.00012339895401904666,0.0005782051525114982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.863239897298681e-05,0.0,0.0,0.0007238966771979249,0.0002648977880655015,0.0007625290761709119,0.00025254135035933985,0.00018563854092097589,0.0002710214280990175,0.0,1.4705213860052884e-05,3.863239897298681e-05,0.0,0.0,0.0,0.0,0.0,0.00030917132810659296,0.00017855037606204934,0.0002606731213673604,0.0,1.4143730346938022e-05 +103836,50.0,the Greater Atlanta and Macon Area,G1300570090902,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,14454.0,,167.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0035411860692221866,0.0001328275604253277,0.0,0.0036740963367212537,0.0011099289295815053,0.001534298924937892,0.0009573343785324835,0.0,7.25341036693726e-05,0.0009771013691561778,0.001534298924937892,0.0009573343785324835,0.0,7.25341036693726e-05,0.0001328275604253277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.877204770722061e-06,0.0,0.0,0.0004219994301560237,0.00014473100407329505,0.00043087663492674574,0.00011644014545644768,0.0001828407938346505,0.00011408453391386338,0.0,8.643813066303082e-06,8.877204770722061e-06,0.0,0.0,0.0,0.0,0.0,0.00013016600501354988,0.0001799336482120987,0.00011227060417524891,0.0,8.50637752584823e-06 +103837,50.0,the Greater Atlanta and Macon Area,G1300570091006,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13004.0,,,2899.0,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030546203544138412,0.0,0.0007439501282850702,0.0037985704826989115,0.0017375929121891097,0.0005262651102032131,0.0014628400132271303,0.0,7.187244707945816e-05,0.0009936427839040394,0.0005262651102032131,0.0014628400132271303,0.0,7.187244707945816e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007439501282850702,0.0,0.0,0.0,0.0,5.9999302048775056e-05,0.000364010027096643,0.000186689716805595,0.00042400932914541805,0.00011840945673351932,6.271344874274874e-05,0.00017432229575876113,0.0,8.56482586161381e-06,0.0,0.0,0.0,5.9999302048775056e-05,0.0,0.0,0.00019395601802856837,5.87434976779371e-05,0.00016328716696993137,0.0,8.022646468981195e-06 +103838,50.0,the Greater Atlanta and Macon Area,G1301350050436,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,22874.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00536980288201479,0.0014962479299000374,0.0,0.006866050811914828,0.003215671621069211,0.0006382341607598895,0.0021371504965011882,0.0004098833093743672,0.0004651112242101717,0.003215671621069211,0.0006382341607598895,0.000640902566601151,0.0004098833093743672,0.0004651112242101717,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99716943603331e-05,0.0,0.0,0.0006399090239040181,0.0002747429304444539,0.0007398807182643512,0.00038320536776615755,7.605713055165665e-05,7.63751193148905e-05,4.884500123734292e-05,5.54264050339705e-05,0.0,9.99716943603331e-05,0.0,0.0,0.0,0.0,0.00034651847093386935,6.877565608230313e-05,0.0002302978069498634,4.416873187396359e-05,5.0120052424351665e-05 +103839,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,17842.0,,1146.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014846403942576699,0.00033740153163694435,0.0,0.0018220419258946144,0.0006093114434345911,0.0006862809760292297,0.0005264801960370913,0.0,0.0,0.00027190991179764675,0.0006862809760292297,0.0005264801960370913,0.0,0.0,0.00033740153163694435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2543388919734187e-05,0.0,0.0,0.00017692262646942756,7.95779668346385e-05,0.00019946601538916174,3.240314351164066e-05,8.178319358998965e-05,6.273994660747127e-05,0.0,0.0,2.2543388919734184e-05,0.0,0.0,0.0,0.0,0.0,6.670369327162568e-05,7.512984733253217e-05,5.763583449555448e-05,0.0,0.0 +103840,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,40013.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0035650888051789414,0.0,0.0,0.0035650888051789414,0.0011247126915982118,0.0013660250659170484,0.0010743510476636812,0.0,0.0,0.0011247126915982118,0.0013660250659170484,0.0010743510476636812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004248455757520218,0.00013699100231081464,0.0004248455757520218,0.00013403010054714888,0.00016278688619990566,0.00012802858900496728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013403010054714888,0.00016278688619990566,0.00012802858900496728,0.0,0.0 +103841,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,7151.0,,146.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001483185953367,0.00011554178201381245,0.0,0.0015987277353808125,0.0008929055680895628,0.00025928667617272877,0.0004165128233511522,0.0,3.0022667767368593e-05,0.000807386453843119,0.00025928667617272877,0.0004165128233511522,0.0,0.0,8.551911424644387e-05,0.0,3.0022667767368593e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.720151912997261e-06,0.0,0.0,0.00017675082401803638,6.755679243095048e-05,0.00018447097593103363,9.621600089578269e-05,3.089911522313857e-05,4.96357078991151e-05,0.0,0.0,5.714128187572776e-06,0.0,2.0060237254244854e-06,0.0,0.0,0.0,0.00010302890099076248,2.9918081197299038e-05,4.805979486749536e-05,0.0,3.4641988754767305e-06 +103842,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,97314.0,,7031.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008670581019258479,0.0020696456695044802,0.0,0.010740226688762958,0.0034754137755770536,0.002536894925387005,0.0047279179877989,0.0,0.0,0.0014057681060725736,0.002536894925387005,0.0047279179877989,0.0,0.0,0.0020696456695044802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013828094176968655,0.0,0.0,0.0010332560975924497,0.00041439253079237476,0.0011715370393621364,0.00016752262209121228,0.00030231678186101995,0.0005634166936402175,0.0,0.0,0.00013828094176968655,0.0,0.0,0.0,0.0,0.0,0.00037909590581154516,0.0002767228715172526,0.0005157182620333387,0.0,0.0 +103843,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,253709.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,863994.0691636442,0.0,0.0,0.04021249553843431,0.0,0.0,0.04021249553843431,0.013663922914633206,0.005972189559021069,0.02029112998235351,0.0,0.00028525308242652715,0.013663922914633206,0.005972189559021069,0.02029112998235351,0.0,0.00028525308242652715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004792046256995191,0.00152199955877265,0.004792046256995191,0.0016283035852961713,0.0007116944183436512,0.0024180551885720136,0.0,3.399306478335521e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0016283035852961713,0.0007116944183436512,0.0024180551885720136,0.0,3.399306478335521e-05 +103844,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,Electricity,27399.0,,3669.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024411740433444703,0.0010799058664035654,0.0,0.0035211105993543336,0.0014379001238662684,0.0009281150736551277,0.0011550647122266396,0.0,0.0,0.00035799425746270295,0.0009281150736551277,0.0011550647122266396,0.0,0.0,0.0010799058664035654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.215399851679803e-05,0.0,0.0,0.0002909112927133179,0.00015650670397655443,0.00036306529123011596,4.266167441291428e-05,0.0001106021738187187,0.0001376474444816849,0.0,0.0,7.215399851679803e-05,0.0,0.0,0.0,0.0,0.0,0.00014826334263032102,9.56988881784767e-05,0.00011909989598483324,0.0,0.0 +103845,50.0,the Greater Atlanta and Macon Area,G1300670031313,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,101950.0,,5195.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00908363243041926,0.0015290482545704455,0.0,0.010612649995383408,0.003039621366149674,0.003060428919219517,0.004512661089226813,0.0,0.0,0.0015105731115792288,0.003060428919219517,0.004512661089226813,0.0,0.0,0.0015290482545704455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010216135544660726,0.0,0.0,0.0010824774339694922,0.0003936794992899301,0.0011846387894160996,0.0001800118309686077,0.0003647048984752747,0.0005377643617416552,0.0,0.0,0.00010216135544660727,0.0,0.0,0.0,0.0,0.0,0.0003392982315486954,0.0003416208780592364,0.0005037265312728007,0.0,0.0 +103846,50.0,the Greater Atlanta and Macon Area,G1301210008202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,55171.0,,5576.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005439886164299307,0.0016414029032263357,0.0,0.007081289067525643,0.002907318473400278,0.001701370393932047,0.002472600200193318,0.0,0.0,0.0012659155701739424,0.001701370393932047,0.002472600200193318,0.0,0.0,0.0016414029032263357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000109668057827309,0.0,0.0,0.0006482616592766298,0.0002999790201784198,0.0007579297171039389,0.00015085693031791322,0.0002027493152067801,0.0002946554137519365,0.0,0.0,0.000109668057827309,0.0,0.0,0.0,0.0,0.0,0.0003111782398745225,0.0001821023219170065,0.0002646491553124099,0.0,0.0 +103847,35.0,Eastern Counties in South Carolina and Georgia,G1302450010506,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,39057.0,,7303.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007969308019341653,0.005023768809730506,0.0,0.01299307682907216,0.0033464538475884115,0.0004907797616598266,0.007357393226636459,0.000382984645223363,0.0014153936279930844,0.0033464538475884115,0.0004907797616598266,0.0023336244169059523,0.000382984645223363,0.0014153936279930844,0.0,0.005023768809730506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003356580896763044,0.0,0.0,0.0009496871322474318,0.0006026043783040468,0.0012853452219237361,0.0003987904784206302,5.848528169379283e-05,0.0002780935402239706,4.563954467994354e-05,0.00016866974049788126,0.0,0.0003356580896763044,0.0,0.0,0.0,0.0,0.0003310492595381065,4.855058043333184e-05,0.0007278330109240603,3.788690625661142e-05,0.00014001836984536077 +103848,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,79562.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00675106890376236,0.0,0.0,0.00675106890376236,0.0021533669154846133,0.0018301132923509102,0.002767588695926837,0.0,0.0,0.0021533669154846133,0.0018301132923509102,0.002767588695926837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00080451368642199,0.0002721178414180313,0.00080451368642199,0.00025661316453609367,0.00021809156629679438,0.000329808955589102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025661316453609367,0.00021809156629679438,0.000329808955589102,0.0,0.0 +103849,81.0,the Columbus-Albany Area,G1302150001800,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,11013.0,,627.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0009146116468841383,0.00018462867148697992,0.0,0.0010992096287648207,0.0006058435179229506,0.00023548134912227347,0.00025791545132589425,0.0,0.0,0.00042121484643597073,0.00023548134912227347,0.00025791545132589425,0.0,0.0,0.00018462867148697992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2334919633251582e-05,0.0,0.0,0.00010899075002678152,4.9404898822125144e-05,0.00012132566966003311,5.019455218165146e-05,2.8061406112190278e-05,3.073479173293981e-05,0.0,0.0,1.2334919633251582e-05,0.0,0.0,0.0,0.0,0.0,6.687020255070813e-05,2.5991341075506995e-05,2.8467513410473193e-05,0.0,0.0 +103850,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,37556.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0032055293777950556,0.0,0.0,0.0032055293777950556,0.0012883803619838606,0.0007486422560261619,0.0011685374493913313,0.0,0.0,0.0012883803619838606,0.0007486422560261619,0.0011685374493913313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038199778898993065,0.00013435006682521324,0.00038199778898993065,0.00015353421904821716,8.921449559234437e-05,0.00013925273158047488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015353421904821716,8.921449559234437e-05,0.00013925273158047488,0.0,0.0 +103851,50.0,the Greater Atlanta and Macon Area,G1301210010513,ComStock 90.1-2007,gen3_t5_cfl,100001_200000,NaturalGas,83079.0,,8542.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2013 to 2018,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.007439651600263917,0.0025143687543644913,0.0,0.009954020354628411,0.003722434416667264,0.00231092735421702,0.003920658583744126,0.0,0.0,0.0012080656623027724,0.00231092735421702,0.003920658583744126,0.0,0.0,0.0025143687543644913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001679948415091,0.0,0.0,0.0008865691735137657,0.00040341217509393265,0.0010545640150228656,0.00014396289414145882,0.00027538883062828593,0.0004672174487440211,0.0,0.0,0.0001679948415091,0.0,0.0,0.0,0.0,0.0,0.00039436782769633694,0.0002448277924161673,0.00041536839491036125,0.0,0.0 +103852,50.0,the Greater Atlanta and Macon Area,G1300630040516,ComStock 90.1-2004,gen5_led,1001_5000,NaturalGas,8146.0,,289.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016945852338446697,0.00022959483670031739,0.0,0.0019241800705449873,0.0015778028457247677,0.00018063224904664741,0.00013828622729212202,0.0,2.745874848145006e-05,0.0013756667575059002,0.00018063224904664741,0.00013828622729212202,0.0,0.0,0.00020213608821886733,0.0,2.745874848145006e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5337896180094773e-05,0.0,0.0,0.0002019402115791267,7.6677420649153e-05,0.00021727810775922144,0.0001639353574696478,2.1525570896032642e-05,1.6479283213446235e-05,0.0,0.0,1.3503536838671335e-05,0.0,1.8343593414234383e-06,0.0,0.0,0.0,0.00017816524658167493,2.039696485476637e-05,1.5615258808227737e-05,0.0,3.1006375145523967e-06 +103853,35.0,Eastern Counties in South Carolina and Georgia,G1301270000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,395486.0,,15018.0,,3.3063363735822096,Lodging,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,495950.45603733143,0.0,0.0,0.03668610639724184,0.004514116746391429,0.0,0.04120022314363327,0.01225927759607761,0.007085432806248442,0.016356003224734513,0.0,0.005499509516572706,0.01225927759607761,0.007085432806248442,0.011841886478343083,0.0,0.005499509516572706,0.0,0.004514116746391429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003016062715507635,0.0,0.0,0.004371812130961231,0.0020045964160174752,0.004673418402511994,0.0014609143290110166,0.0008443572822924727,0.0014111746392192306,0.0,0.0006553658804385109,0.0,0.0003016062715507635,0.0,0.0,0.0,0.0,0.0013905927965311426,0.0008037139010398951,0.0018552920501313333,0.0,0.0006238196548096224 +103854,50.0,the Greater Atlanta and Macon Area,G1301210006500,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10582.0,,722.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,24034.3828889517,0.0,0.0,0.001456292598642449,0.00021021568170868034,0.0,0.001666508280351129,0.0011117344866205922,0.0004268098192992886,0.00012796397443124843,0.0,0.0,0.0009015188049119119,0.0004268098192992886,0.00012796397443124843,0.0,0.0,0.00021021568170868034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4045187550535534e-05,0.0,0.0,0.0001735436269616246,6.62868112330014e-05,0.00018758881451216012,0.00010743228615208733,5.086211667427415e-05,1.5249224135263093e-05,0.0,0.0,1.4045187550535534e-05,0.0,0.0,0.0,0.0,0.0,0.00012514126503679964,4.8043414466343604e-05,1.4404135009016909e-05,0.0,0.0 +103855,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,51068.0,,5511.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0045022573126918914,0.001622129830471378,0.0,0.006124417832769568,0.0024902160342081987,0.001324072374108089,0.002310129424453279,0.0,0.0,0.0008680862037368208,0.001324072374108089,0.002310129424453279,0.0,0.0,0.001622129830471378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001083820549490793,0.0,0.0,0.000536527059896441,0.00025479510865514894,0.0006449091148455203,0.00010344849400646699,0.000157787662639292,0.0002752945604837303,0.0,0.0,0.0001083820549490793,0.0,0.0,0.0,0.0,0.0,0.0002622229675125035,0.0001394265326262534,0.0002432596147067633,0.0,0.0 +103856,50.0,the Greater Atlanta and Macon Area,G1301350050545,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,24051.0,,1195.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005775021423847141,0.000947574943831245,0.0,0.006722596367678387,0.004331534865875009,0.0013570576659145562,0.0008484091624178156,0.0,0.00018559467347100585,0.0035695545955147694,0.0013570576659145562,0.0008484091624178156,0.0,0.0,0.0007619802703602392,0.0,0.00018559467347100585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.331095732668689e-05,0.0,0.0,0.000688199879768317,0.0002777288076473117,0.0007515108370950038,0.0004253779965760229,0.00016171834768691077,0.00010110353550538339,0.0,0.0,5.0910696504387394e-05,0.0,1.2400260822299503e-05,0.0,0.0,0.0,0.0004842169922041724,0.0001517038189888883,9.484262403632476e-05,0.0,2.074740186561832e-05 +103857,50.0,the Greater Atlanta and Macon Area,G1300450911000,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,18803.0,,299.0,,4.088175128053588,Healthcare,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,30661.31346040191,0.0,0.0,0.0021152764537179995,0.00011105298253078927,0.0,0.0022263294362487884,0.001035784115851545,0.0003195969992721389,0.0007802382610746591,0.0,9.074880847421789e-05,0.001035784115851545,0.0003195969992721389,0.0006691852785438698,0.0,9.074880847421789e-05,0.0,0.00011105298253078927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.419021702347656e-06,0.0,0.0,0.0002520755406603338,7.496586618111013e-05,0.0002594945623626815,0.00012343343611268334,3.808607912376687e-05,7.974619137578248e-05,0.0,1.081445166196193e-05,0.0,7.419021702347656e-06,0.0,0.0,0.0,0.0,0.00012072802051164093,3.72513079637879e-05,9.094232991741431e-05,0.0,1.0577420374780706e-05 +103859,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,23593.0,,2516.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0022328836854019615,0.0007405708895698658,0.0,0.002973485264578125,0.0010973682523869584,0.0008420921072026666,0.0010339942153822022,0.0,0.0,0.00035679736281709256,0.0008420921072026666,0.0010339942153822022,0.0,0.0,0.0007405708895698658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9481409899803806e-05,0.0,0.0,0.00026608896438834933,0.00012657789113390728,0.00031557037428815314,4.251893700920804e-05,0.00010035068919625488,0.00012321933818288639,0.0,0.0,4.9481409899803806e-05,0.0,0.0,0.0,0.0,0.0,0.00011646161972382304,8.9369644645859e-05,0.00010973585288852663,0.0,0.0 +103860,35.0,Eastern Counties in South Carolina and Georgia,G1301270000503,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,4393.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.000314415016519965,0.0,0.0,0.000314415016519965,0.0001589414710158027,7.48826393663948e-05,8.056021653146981e-05,0.0,0.0,0.0001589414710158027,7.48826393663948e-05,8.056021653146981e-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,3.746658585153899e-05,1.3419418644406146e-05,3.746658585153899e-05,1.8939916849694527e-05,8.923227865081029e-06,9.599784076162992e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8939916849694527e-05,8.923227865081029e-06,9.599784076162992e-06,0.0,0.0 +103861,50.0,the Greater Atlanta and Macon Area,G1300670030209,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,111079.0,,9131.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,153306.56730200956,0.0,0.0,0.013742399729735566,0.0033935869539590104,0.0,0.017135986683694572,0.010254499112315305,0.001964506336820825,0.004577893778128949,0.0,0.00033912620485326855,0.007880615678342424,0.001964506336820825,0.003897316462996087,0.0,0.0,0.0023738834339728796,0.000680577315132862,0.00033912620485326855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002267398147384008,0.0,0.0,0.0016376567482118264,0.000702941447665285,0.0018643965629502272,0.0009391186182553087,0.00023410664241109403,0.00046443610512451606,0.0,0.0,0.0001586091346212992,4.547223231405882e-05,2.2658447803042747e-05,0.0,0.0,0.0,0.0011156902285625967,0.00021373842836536422,0.0004980751667843073,0.0,3.689695506920586e-05 +103862,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010400,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,28739.0,,892.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.001656334903138493,0.00015177189375565196,0.0,0.001808106796894145,0.0009411630448992429,0.0003350151790318977,0.0003148380277358776,0.0,0.0002171082755885466,0.0007893911511435909,0.0003350151790318977,0.0003148380277358776,0.0,0.0002171082755885466,0.00015177189375565196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.014020934025011e-05,0.0,0.0,0.0001973819202281499,7.003159163611649e-05,0.00020752212956840003,9.407007056881637e-05,3.992304890610901e-05,3.751858054648202e-05,0.0,2.5872333096337912e-05,1.014020934025011e-05,0.0,0.0,0.0,0.0,0.0,0.00010802025615083459,3.8450750536340365e-05,3.613495513489261e-05,0.0,2.4918202715929496e-05 +103863,85.0,Rural Climate Zone 3A,G1300310110403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4154.0,,237.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009974473092960476,0.00018832400690440296,0.0,0.0011857713162004503,0.0007895217259154287,0.00023108356402762496,0.00012488768134635419,0.0,4.019563783730341e-05,0.0006011977190110257,0.00023108356402762496,0.00012488768134635419,0.0,4.019563783730341e-05,0.00018832400690440296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2580969203119635e-05,0.0,0.0,0.00011886604528390398,4.82976002367904e-05,0.00013144701448702362,7.164488251813417e-05,2.7538286113037128e-05,1.4882896217138887e-05,0.0,4.790124212933444e-06,1.2580969203119635e-05,0.0,0.0,0.0,0.0,0.0,8.752132247284144e-05,2.561644405919956e-05,1.3844248578880216e-05,0.0,4.455830999560124e-06 +103864,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,49745.0,,6038.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004432223631120533,0.0017772657903062656,0.0,0.0062094894214268,0.0025587152354646717,0.0014751573059116796,0.0021755861904441502,0.0,0.0,0.000781449445158406,0.0014751573059116796,0.0021755861904441502,0.0,0.0,0.0017772657903062656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001187474237954607,0.0,0.0,0.0005281779260294054,0.00026322338669271684,0.0006469253498248661,9.312353833920797e-05,0.00017579111327615396,0.00025925961720403925,0.0,0.0,0.00011874742379546071,0.0,0.0,0.0,0.0,0.0,0.0002665755002485933,0.00015368681567933808,0.00022665983655123636,0.0,0.0 +103865,46.0,the Tallahassee-Valdosta Area,G1301850010601,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7627.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0005715400206201761,0.0,0.0,0.000571540020620176,0.00033304651783494873,0.00019949380110715397,3.8969328078635594e-05,0.0,0.0,0.00033304651783494873,0.00019949380110715397,3.8969328078635594e-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,6.810917364714942e-05,2.033968445654688e-05,6.810917364714942e-05,3.9688424777647515e-05,2.3773239757372448e-05,4.643889556746171e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.968842477764753e-05,2.377323975737245e-05,4.643889556746172e-06,0.0,0.0 +103866,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen5_led,_1000,Electricity,3215.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007246793801038116,0.0,0.0,0.0007246793801038116,0.000486152179439649,9.527854894768216e-05,0.0001147974183501587,0.0,2.845123336632175e-05,0.000486152179439649,9.527854894768216e-05,0.0001147974183501587,0.0,2.845123336632175e-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,8.636298801387355e-05,3.101998745086266e-05,8.636298801387355e-05,5.7936731744527367e-05,1.1354732046562696e-05,1.368087506999047e-05,0.0,3.390649152793027e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.7936731744527367e-05,1.1354732046562696e-05,1.368087506999047e-05,0.0,3.390649152793027e-06 +103867,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,13173.0,,1891.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010898799884503188,0.0005566173894214353,0.0,0.0016464666882654566,0.000774605662954018,0.00040194177368101325,0.00046998063084302045,0.0,0.0,0.00021798827353258288,0.00040194177368101325,0.00046998063084302045,0.0,0.0,0.0005566173894214353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.718934721646957e-05,0.0,0.0,0.00012987790983001073,7.514627831591307e-05,0.00016706725704648028,2.597704484336909e-05,4.789826218690762e-05,5.600625999315138e-05,0.0,0.0,3.718934721646957e-05,0.0,0.0,0.0,0.0,0.0,7.85993693797305e-05,4.078510066427616e-05,4.768901516169545e-05,0.0,0.0 +103868,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010101,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,58697.0,,3073.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0052298771884041265,0.0009045454560184919,0.0,0.006134422644422619,0.0017554147906223016,0.0018536215307749504,0.0025254170126316642,0.0,0.0,0.0008508693346038097,0.0018536215307749504,0.0025254170126316642,0.0,0.0,0.0009045454560184919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.043616190470186e-05,0.0,0.0,0.000623233627818896,0.0002420388942079904,0.0006836697897235979,0.00010139633553551916,0.00022089223697059775,0.0003009487125295703,0.0,0.0,6.043616190470186e-05,0.0,0.0,0.0,0.0,0.0,0.0001956376549753363,0.0002065826102354121,0.00028145294481136815,0.0,0.0 +103869,85.0,Rural Climate Zone 3A,G1301630960300,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,8963.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0006817961865792152,0.0,0.0,0.0006817961865792151,0.0004517465444376829,0.0002034727426334995,2.6607273107470596e-05,0.0,0.0,0.0004517465444376829,0.0002034727426334995,2.6607273107470596e-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,8.124864450795939e-05,2.176596334372243e-05,8.124864450795939e-05,5.38339684486515e-05,2.4247546200330557e-05,3.1707494359590334e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3833968448651505e-05,2.424754620033056e-05,3.170749435959034e-06,0.0,0.0 +103870,50.0,the Greater Atlanta and Macon Area,G1301210007002,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,43136.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007007511253985965,0.0,0.0,0.007007511253985965,0.0033136488607818627,0.0014913307284305688,0.0022025009751672356,0.0,0.0,0.0033136488607818627,0.0014913307284305688,0.0022025009751672356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008350709698371814,0.000285881684342104,0.0008350709698371814,0.00039488084536417977,0.00017771887230721523,0.00026246759494735804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039488084536417977,0.00017771887230721523,0.00026246759494735804,0.0,0.0 +103871,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,13379.0,,680.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0037664801380880597,0.000539415534927763,0.0,0.0043058956730158224,0.0025219867995327017,0.0003942646205152785,0.0013116514824316763,0.0,7.80754776099062e-05,0.0019825712646049385,0.0003942646205152785,0.0013116514824316763,0.0,7.80754776099062e-05,0.000539415534927763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.604246756053361e-05,0.0,0.0,0.00044883997621784623,0.0001820329828865498,0.00048488244377837983,0.00023625698440750975,4.6983315033607234e-05,0.00015630551565302644,0.0,9.304017073993125e-06,3.604246756053361e-05,0.0,0.0,0.0,0.0,0.0,0.00028399831658664935,4.439772981236866e-05,0.00014770371241752767,0.0,8.791998519588002e-06 +103872,50.0,the Greater Atlanta and Macon Area,G1300970080103,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,90944.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.008103038129995061,0.0,0.0,0.008103038129995061,0.002879728517338643,0.0028054903597045,0.002417788563345621,0.0,0.0,0.002879728517338643,0.0028054903597045,0.002417788563345621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009656245221902176,0.00030577445792156317,0.0009656245221902176,0.00034317208298689886,0.0003343252548782676,0.0002881235270997066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034317208298689886,0.0003343252548782676,0.0002881235270997066,0.0,0.0 +103873,50.0,the Greater Atlanta and Macon Area,G1300670030339,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,22648.0,,2344.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.0019135975117772405,0.0006829200097584119,0.0,0.002596517521535652,0.0014452973556459828,0.0008559584057552842,0.00029526176013438545,0.0,0.0,0.0007623773458875708,0.0008559584057552842,0.00029526176013438545,0.0,0.0,0.0006829200097584119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.562877016614501e-05,0.0,0.0,0.0002280395850600945,0.00010316180801497539,0.0002736683552262395,9.085098227053699e-05,0.00010200284985521924,3.5185752934338246e-05,0.0,0.0,4.562877016614501e-05,0.0,0.0,0.0,0.0,0.0,0.00015233178549803927,9.021650233524387e-05,3.112006739295644e-05,0.0,0.0 +103874,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,9508.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0020351729635031375,0.0,0.0,0.0020351729635031375,0.0010560866245772165,0.00038227209482307893,0.0005254380394658201,0.0,7.137620463702231e-05,0.0010560866245772165,0.00038227209482307893,0.0005254380394658201,0.0,7.137620463702231e-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.00024252918302053767,7.148611770533979e-05,0.00024252918302053767,0.00012585260852559214,4.555491867846244e-05,6.261583694596969e-05,0.0,8.505818870513432e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012585260852559214,4.555491867846244e-05,6.261583694596969e-05,0.0,8.505818870513432e-06 +103875,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,52828.0,,3628.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004663807400242999,0.001067844851128568,0.0,0.005731652251371567,0.0023323793890191132,0.0014119980961510073,0.001987244076595148,0.0,0.0,0.0012645345378905456,0.0014119980961510073,0.001987244076595148,0.0,0.0,0.001067844851128568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.13469065436177e-05,0.0,0.0,0.0005557764916951844,0.00022654774739678052,0.000627123398238802,0.00015069202237201745,0.00016826495624973668,0.00023681585585514137,0.0,0.0,7.13469065436177e-05,0.0,0.0,0.0,0.0,0.0,0.0002551951207566352,0.0001544924579388154,0.0002174324616686325,0.0,0.0 +103876,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,146227.0,,9100.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.012945152142827715,0.0026786809064823914,0.0,0.015623833049310105,0.007567074845611978,0.0032750413360593525,0.004781716867638773,0.0,0.0,0.004888393939129588,0.0032750413360593525,0.004781716867638773,0.0,0.0,0.0026786809064823914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001789737048209236,0.0,0.0,0.001542647551649504,0.0006558817464507861,0.0017216212564704276,0.000582540000958944,0.0003902800401942035,0.0005698275104963563,0.0,0.0,0.00017897370482092363,0.0,0.0,0.0,0.0,0.0,0.0008338310363655298,0.00036088332243335524,0.0005269068976715425,0.0,0.0 +103877,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,135439.0,,1641.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.012428362792807313,0.0002791468101973113,0.0,0.012707491872643204,0.006071425391430103,0.0032799572894569883,0.0020846472439627083,0.0,0.0012714619477934065,0.0060293867045031575,0.0032799572894569883,0.001847539120692342,0.0,0.0012714619477934065,4.203868692694519e-05,0.00023710812327036614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.86507751572301e-05,0.0,0.0,0.001481063111437905,0.00044958350837412793,0.0014997138865951352,0.0007185099422589917,0.00039086594344654794,0.0002201675380911352,0.0,0.00015151757474955754,2.8087517719634506e-06,1.5842023385266652e-05,0.0,0.0,0.0,0.0,0.0007165380125527535,0.00038709428609017997,0.0002460260806582639,0.0,0.00015005550729393802 +103878,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7806.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0016328030497614072,0.0,0.0,0.0016328030497614072,0.0007544539266499624,0.0004409114101042479,0.00039476086295771437,0.0,4.267685004948262e-05,0.0007544539266499624,0.0004409114101042479,0.00039476086295771437,0.0,4.267685004948262e-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.00019457590635441993,6.664100446589013e-05,0.00019457590635441993,8.990585643627892e-05,5.254199963404988e-05,4.704238684174077e-05,0.0,5.085663442350353e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.990585643627892e-05,5.254199963404988e-05,4.704238684174077e-05,0.0,5.085663442350353e-06 +103879,50.0,the Greater Atlanta and Macon Area,G1301690030301,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,21116.0,,3790.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00478930332036583,0.002939046882191778,0.0,0.007728350202557608,0.002665252270721743,0.0005254333683792933,0.0036359051106763496,0.0004190205778611107,0.0004827388749191107,0.002665252270721743,0.0005254333683792933,0.000696858228484572,0.0004190205778611107,0.0004827388749191107,0.0,0.002939046882191778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019636999807353314,0.0,0.0,0.0005707289497053816,0.0003457580140134465,0.0007670989477789147,0.0003176112531232856,6.261454211932615e-05,8.304280147496964e-05,4.99336037645965e-05,5.752674922320363e-05,0.0,0.00019636999807353314,0.0,0.0,0.0,0.0,0.0002645470454689546,5.215335400798723e-05,0.00036089189950279247,4.159105578168511e-05,4.79155930174952e-05 +103880,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,20908.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.005020236668902221,0.0,0.0,0.00502023666890222,0.0035770809392250465,0.00040286615618416645,0.0009691614900772044,0.0,7.112808341580439e-05,0.0035770809392250465,0.00040286615618416645,0.0009691614900772044,0.0,7.112808341580439e-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.000598255678414774,0.00019604881254715908,0.000598255678414774,0.0004262765134753287,4.800908432689772e-05,0.0001154938308648301,0.0,8.47624974771752e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00042627651347532883,4.8009084326897726e-05,0.00011549383086483013,0.0,8.47624974771752e-06 +103881,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,249036.0,,23831.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.020078951126728726,0.007014692621859626,0.0,0.02709364374858835,0.010661753365459731,0.00615351157953979,0.010278378803588829,0.0,0.0,0.0036470607436001052,0.00615351157953979,0.010278378803588829,0.0,0.0,0.007014692621859626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046867992303453255,0.0,0.0,0.002392770595070199,0.0011313189692667535,0.0028614505181047316,0.0004346133247022314,0.000733302325953996,0.0012248549444139716,0.0,0.0,0.00046867992303453255,0.0,0.0,0.0,0.0,0.0,0.0011260235047967353,0.0006498929808344815,0.0010855340324735147,0.0,0.0 +103882,50.0,the Greater Atlanta and Macon Area,G1301510070309,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,NaturalGas,75696.0,,3007.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006674962959639216,0.0008760657285830757,0.0,0.007550998314622853,0.004356971344947747,0.0027555536881917206,0.0004384732814833853,0.0,0.0,0.0034809056163646714,0.0027555536881917206,0.0004384732814833853,0.0,0.0,0.0008760657285830757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8533460017883944e-05,0.0,0.0,0.0007954408048811438,0.0002405596955962699,0.0008539742648990277,0.0004148119445663659,0.00032837333433635994,5.2251906422694516e-05,0.0,0.0,5.8533460017883944e-05,0.0,0.0,0.0,0.0,0.0,0.0004927482759839179,0.0003116371951383308,4.9588793776779e-05,0.0,0.0 +103883,85.0,Rural Climate Zone 3A,G1300310110500,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,8092.0,,16.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0025253777895560127,1.3067717650810572e-05,0.0,0.0025384455072068233,0.001373102838219982,0.0005307312921851357,0.0005901149711299585,0.0,4.441369859800809e-05,0.0013600351205691713,0.0005307312921851357,0.0005901149711299585,0.0,4.441369859800809e-05,1.3067717650810572e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.72361201318899e-07,0.0,0.0,0.0003009420355137151,9.636159820639355e-05,0.00030181439671503395,0.0001620714885697102,6.32457274478126e-05,7.032231032260291e-05,0.0,5.292653208582728e-06,8.72361201318899e-07,0.0,0.0,0.0,0.0,0.0,0.00016325826320418986,6.310253433208565e-05,7.016309528742889e-05,0.0,5.280670240973976e-06 +103884,50.0,the Greater Atlanta and Macon Area,G1300970080602,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,103746.0,,12543.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.010353445580593012,0.00369202101682624,0.0,0.014045466597419252,0.006732501691952251,0.002854102696080061,0.004458831519780642,0.0,0.0,0.00304048067512601,0.002854102696080061,0.004458831519780642,0.0,0.0,0.00369202101682624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002466789503714832,0.0,0.0,0.0012337998037612989,0.0006131724716977666,0.0014804787541327822,0.0003623281187996188,0.0003401178205774159,0.0005313502071640728,0.0,0.0,0.0002466789503714832,0.0,0.0,0.0,0.0,0.0,0.0007096471767573558,0.0003008400165528154,0.0004699883259489397,0.0,0.0 +103885,50.0,the Greater Atlanta and Macon Area,G1300590150600,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,26654.0,,5116.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.001311532564602726,0.000870064295604831,0.0,0.002181596860207557,0.0008470680168430228,0.00020881046644396185,0.0007654197025036794,0.0,0.0003602809440554729,0.0007914478730683171,0.00020881046644396185,0.0002438811213328263,0.0,6.737537339620066e-05,5.562014377470564e-05,0.0005215385811708532,0.00029290557065927227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8132073030301084e-05,0.0,0.0,0.00015629282844654613,0.00010262699662563661,0.00021442490147684722,9.431533001036794e-05,2.488354409991718e-05,2.9062846997907853e-05,0.0,8.028994445078144e-06,3.7161785355407266e-06,3.4845837304090045e-05,1.957005719067032e-05,0.0,0.0,0.0,8.325666367088236e-05,2.0523573585598773e-05,7.523161006116148e-05,0.0,3.541131147655319e-05 +103886,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950203,ComStock 90.1-2007,gen4_led,25001_50000,FuelOil,61836.0,19437.0,3594.0,,3.3063363735822096,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.005625895760121271,0.001080158949326047,0.0020082971529406905,0.00871435186238801,0.0022407939396718603,0.0011976451945686882,0.0032675842371845654,0.0,0.0020082971529406905,0.0022407939396718603,0.0011976451945686882,0.0021874252878585185,0.0,0.0,0.0,0.001080158949326047,0.0,0.0,0.0,0.0,0.0,0.0,0.0020082971529406905,0.0,7.217007212107964e-05,0.00017845397854935057,0.0,0.0006704267811085778,0.0005086536405868184,0.000921050831779008,0.0002670309462096096,0.00014272099003262266,0.0002606711103767196,0.0,0.0,0.0,7.217007212107964e-05,0.0,0.0,0.00017845397854935057,0.0,0.0002368374785149606,0.00012658337878169402,0.00034536259576074655,0.0,0.0002122640664946191 +103887,81.0,the Columbus-Albany Area,G1302150010205,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,27412.0,,3055.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006532580942540219,0.002369059222341726,0.0,0.008901640164881945,0.003956437254759994,0.0005138702764004938,0.0036042885444965552,0.0004245191111097707,0.0004024441173320626,0.003956437254759994,0.0005138702764004938,0.00123522932215483,0.0004245191111097707,0.0004024441173320626,0.0,0.002369059222341726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015828699331883124,0.0,0.0,0.0007784751424755096,0.0004226450648965639,0.0009367621357943409,0.0004714810398349286,6.123693531752072e-05,0.00014719990934861473,5.0589128311091074e-05,4.7958493638914336e-05,0.0,0.00015828699331883124,0.0,0.0,0.0,0.0,0.00041635480026780246,5.407702498930869e-05,0.00037929650855601023,4.467417485348082e-05,4.2351117761099817e-05 +103888,35.0,Eastern Counties in South Carolina and Georgia,G1301030030305,ComStock 90.1-2004,gen5_led,10001_25000,NaturalGas,33506.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029545615117078706,0.0,0.0,0.0029545615117078706,0.0019110461294244692,0.0008125241585592991,0.0002309912237241026,0.0,0.0,0.0019110461294244692,0.0008125241585592991,0.0002309912237241026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003520896663852587,9.676401544187239e-05,0.0003520896663852587,0.00022773585572329408,9.682701097386822e-05,2.7526799688096433e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022773585572329408,9.682701097386822e-05,2.7526799688096433e-05,0.0,0.0 +103889,50.0,the Greater Atlanta and Macon Area,G1300130180401,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,9881.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002047661731637773,0.0,0.0,0.002047661731637773,0.0007751306950847893,0.0008277323939829887,0.0003710239327945331,0.0,7.360929562798359e-05,0.0007751306950847893,0.0008277323939829887,0.0003710239327945331,0.0,7.360929562798359e-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.00024401599986398814,6.132340803106406e-05,0.00024401599986398814,9.237086803155737e-05,9.863931362140696e-05,4.421422471079453e-05,0.0,8.771881407179474e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.237086803155737e-05,9.863931362140696e-05,4.421422471079453e-05,0.0,8.771881407179474e-06 +103890,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,35383.0,,897.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003000030790066185,0.00026133444956241665,0.0,0.0032613652396286017,0.0021745067309475283,0.0007639567730583338,0.00032287136202330187,0.0,0.0,0.0019131722813851117,0.0007639567730583338,0.00032287136202330187,0.0,0.0,0.00026133444956241665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7461623078942067e-05,0.0,0.0,0.0003575062697600663,0.00010834370049811568,0.0003749678928390083,0.00022798802198668693,9.103884436732631e-05,3.847578385912368e-05,0.0,0.0,1.7461623078942067e-05,0.0,0.0,0.0,0.0,0.0,0.0002500088603877093,8.783415544294983e-05,3.712138487430648e-05,0.0,0.0 +103891,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,55751.0,,7206.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.013087964625905765,0.005588854743347432,0.0,0.018676819369253198,0.011656971347942028,0.0015710441542384254,0.003175564672667222,0.0004190205778611107,0.0018542186165444094,0.007922335221139006,0.0015710441542384254,0.003175564672667222,0.0004190205778611107,0.0,0.0037346361268030216,0.0,0.0018542186165444094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037341510044245377,0.0,0.0,0.0015596664475653389,0.0008380589456496337,0.0019330815480077927,0.0009440887704050097,0.0001872181752508184,0.0003784256615600464,4.993384034946425e-05,0.0,0.00024952688671434184,0.0,0.00012388821372811185,0.0,0.0,0.0,0.001206515722664147,0.00016260565600711502,0.0003286761708122612,4.3369319544437186e-05,0.00019191467897983195 +103892,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12558.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002776145637133593,0.0,0.0,0.0027761456371335935,0.001181801376660964,0.0008109428580139093,0.0006826641866442435,0.0,0.00010073721581447645,0.001181801376660964,0.0008109428580139093,0.0006826641866442435,0.0,0.00010073721581447645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033082631453135565,0.00010114301980162394,0.00033082631453135565,0.0001408323067490479,9.663802699100107e-05,8.135137937620836e-05,0.0,1.200460141509835e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00014083230674904787,9.663802699100106e-05,8.135137937620835e-05,0.0,1.2004601415098346e-05 +103893,50.0,the Greater Atlanta and Macon Area,G1301350050511,ComStock 90.1-2004,gen3_t5_cfl,1001_5000,Electricity,6132.0,,247.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001158726103087697,0.0001961811789096372,0.0,0.0013549072819973344,0.000708882329019604,0.00023240687720745386,0.0003685427205823539,0.0,4.499264811418324e-05,0.0005127011501099667,0.00023240687720745386,0.0003685427205823539,0.0,4.499264811418324e-05,0.0001961811789096372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3108134609600475e-05,0.0,0.0,0.0001380820125528454,5.2227013787807315e-05,0.00015119014716244588,6.109710177124118e-05,2.769525019796543e-05,4.391816187976297e-05,0.0,5.361642742951314e-06,1.3108134609600475e-05,0.0,0.0,0.0,0.0,0.0,7.91021091032428e-05,2.5933604781252158e-05,4.112460601610663e-05,0.0,5.020598220996859e-06 +103895,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,7812.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0016543068889336271,0.0,0.0,0.0016543068889336271,0.0007030928338578523,0.0005550471718644922,0.000334963648644195,0.0,6.12859416408268e-05,0.0007030928338578523,0.0005550471718644922,0.000334963648644195,0.0,6.12859416408268e-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.00019714447740835778,6.376336172797217e-05,0.00019714447740835778,8.378788133428904e-05,6.614521487288717e-05,3.991776489870257e-05,0.0,7.303472540725583e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.378788133428904e-05,6.614521487288717e-05,3.991776489870257e-05,0.0,7.303472540725583e-06 +103896,50.0,the Greater Atlanta and Macon Area,G1301510070404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,14123.0,,8906.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0029407339715530998,0.006126176484211464,0.0,0.009066910455764564,0.0022373762158030028,0.0005001750778628715,0.003977804752438835,0.00037072053017969355,0.0019808338794801614,0.0014397784181383918,0.0005001750778628715,0.00038836364304953384,0.00037072053017969355,0.00024169630232260923,0.0007975977976646105,0.003589441109389302,0.0017391375771575522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004093156409835089,0.0,0.0,0.0003504432789253857,0.0005012562193697358,0.0007597589199088945,0.0001715764413439777,5.960518565045582e-05,4.62807686115885e-05,4.417826277992632e-05,2.8802620539437356e-05,5.329086660162499e-05,0.00023982567140348236,0.0001161991029784016,0.0,0.0,0.0,0.00018748023876949144,4.1912013885704355e-05,0.0003333189025154603,3.106441063596298e-05,0.0001659833541022754 +103897,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5124.0,,896.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008733866986870864,0.000710784591715608,0.0,0.0015841712904026944,0.0011095153942128093,0.00026300849449099764,0.00016756453139583685,0.0,4.4082870303050854e-05,0.0003987308024972011,0.00026300849449099764,0.00016756453139583685,0.0,4.4082870303050854e-05,0.000710784591715608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.749100799734657e-05,0.0,0.0,0.00010407812832348697,7.21154829976279e-05,0.00015156913632083353,4.7515213697682835e-05,3.13417090974137e-05,1.9968019695396273e-05,0.0,5.2531858329941814e-06,4.749100799734657e-05,0.0,0.0,0.0,0.0,0.0,0.00010615537035313678,2.516392677770965e-05,1.6032111840138287e-05,0.0,4.217727349848819e-06 +103898,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,67284.0,,3325.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006429227002518352,0.0009787836136526348,0.0,0.007408041305777284,0.002464436764918129,0.0017722633844797406,0.003171341156379415,0.0,0.0,0.001485653151265494,0.0017722633844797406,0.003171341156379415,0.0,0.0,0.0009787836136526348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.539728581276996e-05,0.0,0.0,0.0007661594983855332,0.00030637362898228,0.0008315567841983033,0.00017704263245061995,0.00021119746201653418,0.00037792306114394565,0.0,0.0,6.539728581276996e-05,0.0,0.0,0.0,0.0,0.0,0.00027663440665445446,0.0001989375571652193,0.00035598482037862956,0.0,0.0 +103899,50.0,the Greater Atlanta and Macon Area,G1301210009802,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,DistrictHeating,624535.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.0,0.04243839767751456,0.09587336992493597,0.0,0.0,0.13831176760245054,0.10709214163273295,0.01519691938440103,0.015613852932820433,0.0,0.00040885365249612667,0.0650625976077145,0.01519691938440103,0.015613852932820433,0.0,0.0,0.0,0.0,0.0,0.04202954402501844,0.0,0.00040885365249612667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01142504244882898,0.0035122746537601906,0.01142504244882898,0.007753382822375151,0.001810987234454716,0.0018606723919991118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008846190640891653,0.0012553194284760014,0.0012897596179956977,0.0,3.37727614656286e-05 +103900,35.0,Eastern Counties in South Carolina and Georgia,G1300730030105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,65592.0,,1080.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00606613827041023,0.0003179136316379031,0.0,0.006384051902048132,0.0026028468893207683,0.0016055881326769166,0.0021755861904441502,0.0,0.0,0.0022849332576828658,0.0016055881326769166,0.0021755861904441502,0.0,0.0,0.0003179136316379031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1240706236516903e-05,0.0,0.0,0.0007228895509468229,0.0002374384245203304,0.0007441302571833398,0.00027229092100436507,0.0001913347227671869,0.00025926024995634076,0.0,0.0,2.1240706236516903e-05,0.0,0.0,0.0,0.0,0.0,0.0003033899402568667,0.00018714865236544944,0.00025358808735567235,0.0,0.0 +103901,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock 90.1-2007,gen5_led,_1000,NaturalGas,3526.0,,542.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,4088.1751280535877,0.0,0.0,0.0003141722199440473,0.00020137555834351422,0.0,0.0005155090298637892,0.00032630047658470916,6.432238346165743e-05,0.0001107429951406126,0.0,1.4143174676810217e-05,0.00015522618563096365,6.432238346165743e-05,9.458490242765409e-05,0.0,0.0,0.0001710742909537455,1.6158092712958523e-05,1.4143174676810217e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3453579271942191e-05,0.0,0.0,3.743819773932973e-05,2.5445232269477694e-05,5.089177701127192e-05,1.8497461783886885e-05,7.664949216488325e-06,1.1271169299667472e-05,0.0,0.0,1.142920001647581e-05,1.0794963548970357e-06,9.448829005693478e-07,0.0,0.0,0.0,3.221284231899586e-05,6.349996229608496e-06,1.0932704351940408e-05,0.0,1.396234110727169e-06 +103902,85.0,Rural Climate Zone 3A,G1300170960500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,46410.0,,3276.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.009561061056062125,0.002253298049368468,0.0,0.011814359105430595,0.003908236380553693,0.0006297013455170651,0.005841735079163551,0.00038334324507844107,0.0010513430551178425,0.003908236380553693,0.0006297013455170651,0.0035884370297950834,0.00038334324507844107,0.0010513430551178425,0.0,0.002253298049368468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001505516980884407,0.0,0.0,0.0011393752575756526,0.00048232028229379506,0.0012899269556640935,0.0004657378304196206,7.504042998337895e-05,0.00042762788995311866,4.568235743293399e-05,0.00012528674978660046,0.0,0.0001505516980884407,0.0,0.0,0.0,0.0,0.00042671290176595156,6.875267057245986e-05,0.0006378180550646925,4.185455856603621e-05,0.00011478876969495321 +103903,35.0,Eastern Counties in South Carolina and Georgia,G1302450010106,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,3033.0,,124.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0002675002902482803,3.6144583330924666e-05,0.0,0.00030364487357920495,0.00021331378885133104,7.708819537301413e-05,1.3212515755422042e-05,0.0,0.0,0.00017716920552040638,7.708819537301413e-05,1.3212515755422042e-05,0.0,0.0,3.6144583330924666e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4158294204600556e-06,0.0,0.0,3.187632382760179e-05,1.1797897758844589e-05,3.429215324806184e-05,2.1112137718451373e-05,9.186114440155938e-06,1.5744522385610057e-06,0.0,0.0,2.4158294204600556e-06,0.0,0.0,0.0,0.0,0.0,2.409060640803624e-05,8.705960282442828e-06,1.4921563131846452e-06,0.0,0.0 +103904,50.0,the Greater Atlanta and Macon Area,G1300970080303,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,102179.0,,4628.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.009943800104729505,0.0013483448262406788,0.0,0.011292114557370746,0.006449742719808286,0.0036503903012273277,0.0011920119099345704,0.0,0.0,0.005101397893567607,0.0036503903012273277,0.0011920119099345704,0.0,0.0,0.0013483448262406788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.008805451651508e-05,0.0,0.0,0.0011849819948525245,0.00032625654849511275,0.0012750700493690398,0.0006079229860605337,0.0004350094265351621,0.00014204958225682863,0.0,0.0,9.008805451651508e-05,0.0,0.0,0.0,0.0,0.0,0.000728284656198033,0.0004121905882157421,0.00013459823464655402,0.0,0.0 +103905,50.0,the Greater Atlanta and Macon Area,G1302270050600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,71746.0,,,2844.0,3.20458438519356,Mercantile,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,120171.9144447585,0.0,0.0,0.00758753775474647,0.0,0.0002680470150381598,0.00785558476978463,0.004456718245501325,0.0027617499024770223,0.0006371166218062822,0.0,0.0,0.004188671230463166,0.0027617499024770223,0.0006371166218062822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002680470150381598,0.0,0.0,0.0,0.0,2.161729924182958e-05,0.0009041935516218064,0.00025643734534704516,0.0009258108508636358,0.0004991565958376075,0.00032911288664754933,7.592406913664952e-05,0.0,0.0,0.0,0.0,0.0,2.161729924182958e-05,0.0,0.0,0.0005252413705466504,0.0003254828382629642,7.508664205402124e-05,0.0,0.0 +103906,35.0,Eastern Counties in South Carolina and Georgia,G1302450010709,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,27613.0,,1283.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0023225780282065686,0.00037368639388266056,0.0,0.0026962644220892293,0.001597043858436991,0.0007134758507927903,0.00038577508645888593,0.0,0.0,0.0012233574645543301,0.0007134758507927903,0.00038577508645888593,0.0,0.0,0.00037368639388266056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4967448304636076e-05,0.0,0.0,0.0002767779825521008,9.097370162746442e-05,0.0003017454308567369,0.00014578559121256182,8.502379863403621e-05,4.597221227973155e-05,0.0,0.0,2.4967448304636076e-05,0.0,0.0,0.0,0.0,0.0,0.0001787290160464935,7.984679701278302e-05,4.3173016979964135e-05,0.0,0.0 +103907,35.0,Eastern Counties in South Carolina and Georgia,G1300510010809,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,70085.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006180207398397676,0.0,0.0,0.006180207398397676,0.0037528404521308643,0.0019696064291404546,0.00045779089072579544,0.0,0.0,0.0037528404521308643,0.0019696064291404546,0.00045779089072579544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007364849249464696,0.00017486736733101065,0.0007364849249464696,0.0004472196870675029,0.00023471468668117524,5.4554170768569736e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004472196870675029,0.00023471468668117524,5.4554170768569736e-05,0.0,0.0 +103908,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,NaturalGas,160079.0,,61746.0,,7.614023970037612,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.04272973332496313,0.04273925937196386,0.0,0.08546906486394971,0.06777912341657795,0.010780165521776646,0.003590670216069281,0.000783661699855217,0.0025353718426478935,0.0261837113549286,0.010780165521776646,0.003590670216069281,0.000783661699855217,0.0013914523653106583,0.04159541206164936,0.0,0.0011439194773372357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002855589449105793,0.0,0.0,0.005092023212056937,0.004106429458223363,0.007947612661162728,0.003120264406593047,0.0012846523672225593,0.0004278935220123342,9.338751392889028e-05,0.00016581680228961538,0.0027791642054604904,0.0,7.643006542723638e-05,0.0,0.0,0.0,0.00630265722791731,0.0010024279559707667,0.00033388988304385855,7.287127404227233e-05,0.00023575960950852846 +103909,50.0,the Greater Atlanta and Macon Area,G1301210008800,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,160292.0,,14279.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.008180700107405263,0.002428208457199071,0.0,0.010608908564604336,0.00683602949730846,0.001008361114681243,0.001980144493752917,0.0,0.0007843911892231361,0.005148099090119432,0.001008361114681243,0.0012398664437428724,0.0,0.0007843911892231361,0.0016879304071890267,0.0007402780500100445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016223871355510548,0.0,0.0,0.0009748792476491834,0.00043578307778887736,0.0011371179612042891,0.0006134896649317367,0.0001201645717277048,0.00014775264341585788,0.0,9.34744804690122e-05,0.0001127776558972928,4.94610576578127e-05,0.0,0.0,0.0,0.0,0.0007327211727177035,0.00010808138536603395,0.00021224217891166198,0.0,8.407512464118272e-05 +103910,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,1670.0,,250.0,,8.72605822017302,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,8726.05822017302,0.0,0.0,0.0003286779110400077,0.00019816614867938055,0.0,0.0005268440597193882,0.00028409879829452097,0.00012860949966462303,9.957931678212613e-05,0.0,1.4556444978118105e-05,0.00010048909459325853,0.00012860949966462303,9.957931678212613e-05,0.0,0.0,0.00018360970370126246,0.0,1.4556444978118105e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3242354877495645e-05,0.0,0.0,3.9166260121868236e-05,2.5037582867309598e-05,5.2408614999363884e-05,1.1974586323117744e-05,1.5325499368270032e-05,1.186617443048046e-05,0.0,0.0,1.2269627641085281e-05,0.0,9.727272364103645e-07,0.0,0.0,0.0,2.8261160521635e-05,1.2793625796548014e-05,9.905804153725921e-06,0.0,1.448024527454952e-06 +103911,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,21576.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0011106121089906875,0.0,0.0,0.0011106121089906875,0.0005238435281554601,0.00036997945175224183,7.560226109510514e-05,0.0,0.00014118686798788048,0.0005238435281554601,0.00036997945175224183,7.560226109510514e-05,0.0,0.00014118686798788048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001323485858109396,3.752516390010253e-05,0.0001323485858109396,6.242499030610659e-05,4.408943214478003e-05,9.00931320579585e-06,0.0,1.6824850154257123e-05,0.0,0.0,0.0,0.0,0.0,0.0,6.242499030610659e-05,4.408943214478003e-05,9.00931320579585e-06,0.0,1.6824850154257123e-05 +103912,85.0,Rural Climate Zone 3A,G1302710950100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,55417.0,,2617.0,,9.525004485617233,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,166687.57849830156,0.0,0.0,0.014237096582628481,0.002266379661447719,0.0,0.0165034762440762,0.005807327043590105,0.0015889213687651314,0.006226314774978683,0.0006445062302053564,0.002236316546913697,0.005807327043590105,0.0015889213687651314,0.004945246921411796,0.0006445062302053564,0.0012510950186560904,0.0,0.0012810678535668872,0.0009852215282576066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015142358533653467,0.0,0.0,0.0016966097231899682,0.0006500952910080915,0.0018480333085265028,0.0006920489350280143,0.0001893489608633065,0.0005893163652959852,7.680467225017869e-05,0.00014909078975248303,0.0,8.559196446484334e-05,6.582558902077768e-05,0.0,0.0,0.0,0.0006502953469523414,0.0001779249153742065,0.0006972129340120965,7.21707937986625e-05,0.0002504192090190039 +103913,50.0,the Greater Atlanta and Macon Area,G1301170130510,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,255316.0,,28142.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01314245309899994,0.004785743693777812,0.0,0.017928214523139172,0.009102377485103869,0.002997920430348208,0.002530796328375497,0.0,0.0032971202793115983,0.0075340560960545176,0.002997920430348208,0.0021400723537617935,0.0,0.00047042194919684103,0.0015683213890493506,0.0003907239746137036,0.0028266983301147575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003197558564657062,0.0,0.0,0.001566161541368277,0.0006883257167851212,0.001885917397833983,0.0008978193659332655,0.0003572565674554985,0.0002550284175229243,0.0,5.605930335057893e-05,0.00010478621110047339,2.6105927759300108e-05,0.00018886371760593265,0.0,0.0,0.0,0.0009575037178774204,0.000315359362172874,0.00026622131389032494,0.0,0.0003468330038933635 +103914,35.0,Eastern Counties in South Carolina and Georgia,G1301890950200,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,18063.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014938039939480726,0.0,0.0,0.0014938039939480726,0.0008936216690580964,0.0004351018119457949,0.00016508051294418115,0.0,0.0,0.0008936216690580964,0.0004351018119457949,0.00016508051294418115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017801349665432412,4.8898953912616945e-05,0.00017801349665432412,0.00010649102468568897,5.1850172618962466e-05,1.9672299349672665e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010649102468568897,5.1850172618962466e-05,1.9672299349672665e-05,0.0,0.0 +103915,81.0,the Columbus-Albany Area,G1300950000400,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,167756.0,,2566.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.010979455387922018,0.0004364151159931797,0.0,0.011415870503915198,0.006614222675943599,0.0036920463495818553,0.0009537338711460601,0.0,0.00015584987688226415,0.006177807559950419,0.0036920463495818553,0.0009537338711460601,0.0,0.00015584987688226415,0.0004364151159931797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9158951175887153e-05,0.0,0.0,0.001308399881649548,0.0004122746542244642,0.0013375588328254351,0.0007361970511929567,0.0004399738271309469,0.00011365457029001532,0.0,1.8572320143690113e-05,2.9158951175887153e-05,0.0,0.0,0.0,0.0,0.0,0.0007749660404301627,0.00043258455011297304,0.00011174576332822814,0.0,1.826040154775196e-05 +103916,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,28492.0,,3303.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005818354368612462,0.002272232121716589,0.0,0.008090658210300066,0.002289803514615414,0.0008848092824195935,0.0032149194207457808,0.00038169368574508204,0.0013193605868031808,0.002289803514615414,0.0008848092824195935,0.0009426872990291917,0.00038169368574508204,0.0013193605868031808,0.0,0.002272232121716589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015181955693893315,0.0,0.0,0.000693362438580184,0.0003407956605770843,0.0008451819955191172,0.0002728716142364906,0.0001054410719715471,0.00011233828726546285,4.548572465206887e-05,0.0001572257404546146,0.0,0.00015181955693893315,0.0,0.0,0.0,0.0,0.00023920188611670042,9.24306595991397e-05,0.0003358431342458487,3.987322447812446e-05,0.00013782559892889468 +103917,81.0,the Columbus-Albany Area,G1302150002800,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,110417.0,,7344.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005328204101424329,0.0012488734673442592,0.0,0.0065770775687685875,0.0030033991120270043,0.001681955275390469,0.0011782357074467688,0.0,0.0007135052042657649,0.002688649736098227,0.001681955275390469,0.0008168554809832527,0.0,0.00014076133931379922,0.00031474937592877733,0.0003613802264635162,0.0005727438649519656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.344224929845943e-05,0.0,0.0,0.0006349527070709323,0.00022889221217577114,0.0007183949563693917,0.00032040165800795053,0.00020043565054047528,9.734323030106825e-05,0.0,1.677428111740967e-05,2.1029669201502787e-05,2.414526350073399e-05,3.826731659622265e-05,0.0,0.0,0.0,0.0003280525053087488,0.0001837150579486982,0.00012869524204236468,0.0,7.793408770512755e-05 +103918,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,28207.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006772964975585624,0.0,0.0,0.006772964975585625,0.00318736520776543,0.0014599452656462546,0.00194295457628381,0.0,0.0001826172188163908,0.00318736520776543,0.0014599452656462546,0.00194295457628381,0.0,0.0001826172188163908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008071228410469364,0.00025448379641736636,0.0008071228410469364,0.00037983294926508215,0.00017397922103968105,0.00023153862795514317,0.0,2.176218672420212e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003798329492650821,0.00017397922103968105,0.00023153862795514314,0.0,2.1762186724202116e-05 +103919,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,29675.0,,5511.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,22700.572550927158,0.0,0.0,0.006178962382878954,0.0037912611078272313,0.0,0.009970295210677202,0.0034041884242559783,0.000311981873917908,0.004029156251686013,0.0003617555338027422,0.001863069687072528,0.0029064518254076376,0.000311981873917908,0.0007356317427071226,0.0003617555338027422,0.001863069687072528,0.0004977365988483406,0.0032935245089788898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025331227274009744,0.0,0.0,0.0007363353769470462,0.0004831506224119669,0.0009896476496871437,0.000346356421649361,3.717829572300358e-05,8.76638572944478e-05,4.3109729569386244e-05,0.00022201852597619867,3.3256160811476604e-05,0.00022005611192862077,0.0,0.0,0.0,0.0,0.00033789842747577824,3.096720024269747e-05,0.0003999324925136785,3.590771448831404e-05,0.00018492757717346027 +103920,50.0,the Greater Atlanta and Macon Area,G1301170130408,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,32377.0,,2212.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0028549968527509205,0.0006443455384724671,0.0,0.003499342391223388,0.0020185686714341107,0.001037197673600349,0.00044354567258948985,0.0,0.0,0.0013742231329616436,0.001037197673600349,0.00044354567258948985,0.0,0.0,0.0006443455384724671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.305046628232552e-05,0.0,0.0,0.0003402256106506113,0.00012642790698261778,0.0003832760769329368,0.00016376407004847288,0.00012360126125044758,5.2856659776276395e-05,0.0,0.0,4.305046628232552e-05,0.0,0.0,0.0,0.0,0.0,0.00022108984915206244,0.00011360221747336102,4.8580683547015674e-05,0.0,0.0 +103921,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,51596.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0042687664121805165,0.0,0.0,0.004268766412180516,0.0030817053989543003,0.001024501509035369,0.00016252913059141,0.0,0.0,0.0030817053989543003,0.001024501509035369,0.00016252913059141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000508700494987766,0.0001525440036197651,0.000508700494987766,0.00036724076946008133,0.00012208782923209678,1.936827673349985e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003672407694600814,0.0001220878292320968,1.9368276733499853e-05,0.0,0.0 +103922,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,51235.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004517951421967832,0.0,0.0,0.004517951421967832,0.0028047285456814413,0.0012915765688915207,0.0004216159337954331,0.0,0.0,0.0028047285456814413,0.0012915765688915207,0.0004216159337954331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005383940379060836,0.00015272567235265626,0.0005383940379060836,0.0003342331481470808,0.00015391425432536267,5.024301588059073e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003342331481470808,0.00015391425432536267,5.024301588059073e-05,0.0,0.0 +103923,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,47226.0,,3835.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.011086579384176634,0.0029746256267419295,0.0,0.014061285871701633,0.003819135645109634,0.0010707584893934446,0.008107021249667522,0.00041667561515212344,0.0006475331508127702,0.003819135645109634,0.0010707584893934446,0.005132395622925593,0.00041667561515212344,0.0006475331508127702,0.0,0.0029746256267419295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019874955139082858,0.0,0.0,0.0013211699156377437,0.0005602033879373595,0.0015199194670285723,0.000455120280404985,0.00012760057490044275,0.000611619369436709,4.9654565961484766e-05,7.716548888406173e-05,0.0,0.00019874955139082855,0.0,0.0,0.0,0.0,0.00041281989906108,0.00011574095622296419,0.0008763081505783237,4.5039506677007574e-05,6.999347360168381e-05 +103924,50.0,the Greater Atlanta and Macon Area,G1301510070106,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,8383.0,,899.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017853148937366902,0.0007131003897803084,0.0,0.0024984152835169984,0.0016831716576686453,0.00040013682275076936,0.00037367055915419093,0.0,4.143624394339302e-05,0.0009700712678883368,0.00040013682275076936,0.00037367055915419093,0.0,4.143624394339302e-05,0.0007131003897803084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.764435399276354e-05,0.0,0.0,0.00021274973443270555,0.00011920766171954599,0.0002603940884254691,0.00011560000162888923,4.768290629043961e-05,4.452901418358953e-05,0.0,4.9378123297871525e-06,4.764435399276354e-05,0.0,0.0,0.0,0.0,0.0,0.0001754263802153973,4.170374072439154e-05,3.8945328770731906e-05,0.0,4.318638714948359e-06 +103925,50.0,the Greater Atlanta and Macon Area,G1301210011800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,112237.0,,14013.0,,9.729435225087556,Education,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.030048991816138876,0.012394459858978503,0.0,0.042443451675117386,0.03301755740016013,0.004682976530327342,0.0017034370932260774,0.0006478262007315501,0.002391654450672278,0.02062309754118163,0.004682976530327342,0.0017034370932260774,0.0006478262007315501,0.002391654450672278,0.012394459858978503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008281269741360796,0.0,0.0,0.0035808822833322657,0.0017637489158976016,0.004409009257468345,0.002457616051297513,0.0005580615746882895,0.00020299541978736722,7.720023949795663e-05,0.00028500899806113955,0.0008281269741360796,0.0,0.0,0.0,0.0,0.0,0.0034298510250909244,0.0004864657811707802,0.00017695238292675852,6.729593384909477e-05,0.0002484441344307862 +103926,81.0,the Columbus-Albany Area,G1300950001100,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,121237.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01372902606688364,0.0,0.0,0.01372902606688364,0.005727723981765461,0.0031119260785870623,0.004889376006531114,0.0,0.0,0.005727723981765461,0.0031119260785870623,0.004889376006531114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016360618639643246,0.0005571754526208147,0.0016360618639643246,0.0006825619478197607,0.00037084229834287284,0.000582657617801691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006825619478197607,0.00037084229834287284,0.000582657617801691,0.0,0.0 +103927,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,20363.0,,297.0,,4.088175128053588,Healthcare,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,30661.31346040191,0.0,0.0,0.0022417125604863057,0.00011023926563157552,0.0,0.002351951826117881,0.0012712970355382642,0.00025105103761932434,0.0007674125328060996,0.0,6.226871700173704e-05,0.0012712970355382642,0.00025105103761932434,0.0006571732671745241,0.0,6.226871700173704e-05,0.0,0.00011023926563157552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.364663838672514e-06,0.0,0.0,0.0002671423279440397,7.796713767096193e-05,0.00027450699178271226,0.00015149901712125557,2.9917465693212676e-05,7.831458838661631e-05,0.0,7.420491953849789e-06,0.0,7.364663838672514e-06,0.0,0.0,0.0,0.0,0.00014837885751423454,2.9301308111637823e-05,8.95682060736205e-05,0.0,7.267665092668929e-06 +103928,50.0,the Greater Atlanta and Macon Area,G1301350050529,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,293352.0,,20132.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.024306198877386897,0.005925856080023429,0.0,0.030232024267804043,0.010087581521236011,0.007731325618517284,0.012413117128050738,0.0,0.0,0.004161725441212581,0.007731325618517284,0.012413117128050738,0.0,0.0,0.005925856080023429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003959305315735858,0.0,0.0,0.0028965216623192853,0.0012112191137303326,0.0032924521938928713,0.000495944592320125,0.0009213267876826852,0.001479246625096772,0.0,0.0,0.0003959305315735858,0.0,0.0,0.0,0.0,0.0,0.0010985992739506083,0.0008419886068130747,0.0013518643131291872,0.0,0.0 +103929,50.0,the Greater Atlanta and Macon Area,G1300670031106,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4459.0,,1009.0,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010152293301499988,0.0008007698879439744,0.0,0.0018159992180939734,0.001256899399616255,0.0003105650618910994,0.00020544437116843965,0.0,4.3090385418179165e-05,0.0004992198970904596,0.0003105650618910994,0.00020544437116843965,0.0,0.0,0.0007576795025257952,0.0,4.3090385418179165e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3503170657821004e-05,0.0,0.0,0.00012098370480073533,9.109342664292158e-05,0.00017448687545855633,5.9491457611180316e-05,3.7009679146782985e-05,2.4482568042772017e-05,0.0,0.0,5.0624101053119006e-05,0.0,2.879069604701998e-06,0.0,0.0,0.0,0.00012076681907107892,2.9840060907541054e-05,1.973973669622689e-05,0.0,4.140258783709424e-06 +103930,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,8036.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001686066405249521,0.0,0.0,0.001686066405249521,0.0009727178942479947,0.00026813633306283467,0.0003906255092707489,0.0,5.450396159420359e-05,0.0009727178942479947,0.00026813633306283467,0.0003906255092707489,0.0,5.450396159420359e-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.00020092681613010797,7.265155334897078e-05,0.00020092681613010797,0.00011591780067233397,3.19535336943888e-05,4.655044405879035e-05,0.0,6.495181586860648e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011591780067233397,3.19535336943888e-05,4.655044405879035e-05,0.0,6.495181586860648e-06 +103931,50.0,the Greater Atlanta and Macon Area,G1301210005800,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,16218.0,,2783.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023146714861853393,0.000819105592085687,0.0,0.003133777078271027,0.0012500490437180295,0.0007286326327200595,0.0011550647122266396,0.0,0.0,0.00043094345163234246,0.0007286326327200595,0.0011550647122266396,0.0,0.0,0.000819105592085687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4726899870028486e-05,0.0,0.0,0.00027583622527547065,0.0001317601481997351,0.00033056312514549913,5.135493987587386e-05,8.683015115603172e-05,0.00013764747700528875,0.0,0.0,5.4726899870028486e-05,0.0,0.0,0.0,0.0,0.0,0.00013186008709482202,7.685903436622963e-05,0.00012184076642413378,0.0,0.0 +103932,50.0,the Greater Atlanta and Macon Area,G1300670031208,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,63796.0,,3773.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0056255854726643285,0.0010991901900528006,0.0,0.006724775662717129,0.0040655974055413945,0.002278718550618455,0.0003804597065572793,0.0,0.0,0.002966407215488594,0.002278718550618455,0.0003804597065572793,0.0,0.0,0.0010991901900528006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.344202523377081e-05,0.0,0.0,0.00067038908918011,0.00024422915137106157,0.0007438311144138807,0.0003535004562621752,0.0002715500566243157,4.5338576293619005e-05,0.0,0.0,7.344202523377081e-05,0.0,0.0,0.0,0.0,0.0,0.00044969795285336705,0.0002520503053119329,4.208285624858072e-05,0.0,0.0 +103933,35.0,Eastern Counties in South Carolina and Georgia,G1301270000600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,38843.0,,807.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00918319741152656,0.0006261050432996103,0.0,0.009809302454826167,0.004069723211839002,0.0008109527933942648,0.0038763850795221523,0.0004261363267711412,0.0006261050432996103,0.004069723211839002,0.0008109527933942648,0.0038763850795221523,0.0004261363267711412,0.0,0.0,0.0,0.0006261050432996103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.183070638205843e-05,0.0,0.0,0.0010943449243418528,0.0003748982586105383,0.0011361756307239114,0.00048498150924666675,9.663976865159589e-05,0.0004619417558469294,5.07818905966607e-05,0.0,0.0,0.0,4.183070638205843e-05,0.0,0.0,0.0,0.0004713811566497225,9.392969640453141e-05,0.00044898750782100235,4.935781234937486e-05,7.251945749928074e-05 +103934,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,17863.0,,1512.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015466333989790297,0.0004450606705292857,0.0,0.0019916940695083154,0.0009019982186957824,0.0004627685733630602,0.0006269272774494726,0.0,0.0,0.0004569375481664967,0.0004627685733630602,0.0006269272774494726,0.0,0.0,0.0004450606705292857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9735801735284883e-05,0.0,0.0,0.00018430854124743795,9.280535579479111e-05,0.00021404434298272283,5.445213649164821e-05,5.51470055851678e-05,7.470939917062192e-05,0.0,0.0,2.9735801735284883e-05,0.0,0.0,0.0,0.0,0.0,9.693638146946293e-05,4.973303719431226e-05,6.737492431894762e-05,0.0,0.0 +103935,50.0,the Greater Atlanta and Macon Area,G1302230120103,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4120.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0009892593089958562,0.0,0.0,0.0009892593089958562,0.0005581900406665858,0.00019816614867938057,0.000188324006904403,0.0,4.4579112745486695e-05,0.0005581900406665858,0.00019816614867938057,0.000188324006904403,0.0,4.4579112745486695e-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.00011788646530465554,3.5354007339454715e-05,0.00011788646530465554,6.651749471959872e-05,2.361474549535613e-05,2.2441892943625167e-05,0.0,5.312332146075523e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.651749471959872e-05,2.361474549535613e-05,2.2441892943625167e-05,0.0,5.312332146075523e-06 +103936,50.0,the Greater Atlanta and Macon Area,G1302230120202,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,26619.0,,2923.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006690582912656124,0.0022668511925431067,0.0,0.008957434105199228,0.004411198298737395,0.0010488452171818735,0.002311971509495345,0.00041497753870768444,0.0007706032626430693,0.004411198298737395,0.0010488452171818735,0.000815723579595308,0.00041497753870768444,0.0,0.0,0.0014962479299000374,0.0007706032626430693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015145901478440677,0.0,0.0,0.000797305958745381,0.000434750103383548,0.0009487649735297878,0.0005256753760778899,0.00012498919038561235,9.720846138386072e-05,4.9452202995833976e-05,0.0,0.0,9.997137795429347e-05,5.1487636830113305e-05,0.0,0.0,0.0,0.0004672309489507703,0.00011109293052335235,0.0002448823583011094,4.395412223003965e-05,8.162174295640642e-05 +103937,50.0,the Greater Atlanta and Macon Area,G1300670030345,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,335212.0,,38848.0,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.0,0.0,0.05002389132051387,0.020341902301330855,0.0,0.07036579362184472,0.045838450638364656,0.010471108365436924,0.013500086646621338,0.0,0.0005561479714218243,0.026052696308455615,0.010471108365436924,0.013500086646621338,0.0,0.0,0.019785754329909033,0.0,0.0005561479714218243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013591267941289718,0.0,0.0,0.00596125348104879,0.003063779796270831,0.007320380275177762,0.0031046510469248437,0.0012478223813888363,0.0016087800527351103,0.0,0.0,0.001321968243357129,0.0,3.7158550771843124e-05,0.0,0.0,0.0,0.004768721741434644,0.0010893431480291998,0.0014044575199737043,0.0,5.785786574021612e-05 +103938,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,47563.0,,10915.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009124788472374162,0.007508435485595338,0.0,0.016633223957969498,0.005271274429705382,0.0011264338647711874,0.00533926496222818,0.0003710074100637559,0.004525243291200995,0.005271274429705382,0.0011264338647711874,0.001849442892579562,0.0003710074100637559,0.0005066298752542765,0.0,0.003489822069648618,0.004018613415946718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005016681927069365,0.0,0.0,0.0010873822080244486,0.0007795298609976668,0.0015890504007313848,0.0006281668934934207,0.00013423479862319611,0.00022039429212379708,4.421218727096608e-05,6.037403651306871e-05,0.0,0.00023316877849028874,0.00026849941421664764,0.0,0.0,0.0,0.0005035897289698358,0.00010761354435767289,0.0005100851854865219,3.544408919917494e-05,0.0004323178527181795 +103939,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,10311.0,,7477.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0038961874254230706,0.005143469441355562,0.0,0.009039728586749647,0.0023093113467316604,0.000643328140010031,0.003943235726409311,0.00036440917273031974,0.0017794442008683257,0.0023093113467316604,0.000643328140010031,0.0003791834867595357,0.00036440917273031974,0.00020002699916253926,0.0,0.003564052239649775,0.0015794172017057867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003436582398000863,0.0,0.0,0.0004643024885486194,0.0004759956015366215,0.0008079607283487057,0.00027519697798024845,7.66643961763666e-05,4.518669594029546e-05,4.3426064322421264e-05,2.3836900884714213e-05,0.0,0.00023813029963502548,0.00010552794016506081,0.0,0.0,0.0,0.0002064036392004251,5.749994234689936e-05,0.00035244195431158017,3.2570480163277115e-05,0.000159044712326524 +103940,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,4677.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,3204.5843851935597,0.0,0.0,0.00029067534661928493,0.0,0.0,0.000290675346619285,0.00020058725068691305,7.468868101743172e-05,1.5429788514377928e-05,0.0,0.0,0.00020058725068691305,7.468868101743172e-05,1.5429788514377928e-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,3.464079759029977e-05,1.1139432399168447e-05,3.464079759029977e-05,2.3904684146952947e-05,8.900911313954768e-06,1.8388218574579192e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3904684146952943e-05,8.900911313954766e-06,1.8388218574579188e-06,0.0,0.0 +103941,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,55240.0,,6471.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004921845609994084,0.0019048117940795182,0.0,0.006826657404073602,0.002963603211350264,0.0016605532175561022,0.0022025009751672356,0.0,0.0,0.0010587914172707458,0.0016605532175561022,0.0022025009751672356,0.0,0.0,0.0019048117940795182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012726863663107722,0.0,0.0,0.0005865251839524424,0.00028684646070445635,0.0007137938205835195,0.00012617377300925493,0.0001978843626082541,0.00026246704833493334,0.0,0.0,0.00012726863663107722,0.0,0.0,0.0,0.0,0.0,0.000309873710325787,0.00017362708501152244,0.00023029302524621003,0.0,0.0 +103942,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,76656.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0067596141812722305,0.0,0.0,0.0067596141812722305,0.004692083267544464,0.0013214338171388307,0.0007461274701883736,0.0,0.0,0.004692083267544464,0.0013214338171388307,0.0007461274701883736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008055309932442215,0.00020093001593542002,0.0008055309932442215,0.0005591470746009827,0.00015747287739815996,8.891466081197535e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005591470746009827,0.00015747287739815996,8.891466081197535e-05,0.0,0.0 +103943,50.0,the Greater Atlanta and Macon Area,G1300890021209,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,41301.0,,7327.0,,8.53126424238864,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.009534133210043969,0.005682814973273061,0.0,0.015217029044100099,0.007870746041541284,0.0016215821436562552,0.0037905917886864432,0.0004154627034060956,0.001518565506026951,0.0050068188268201684,0.0016215821436562552,0.002490269536161449,0.0004154627034060956,0.0,0.0028639272147211155,0.0013003222525249946,0.001518565506026951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003796930863815089,0.0,0.0,0.0011361688733367674,0.0006833286746692904,0.0015158619597182763,0.0005966553623854132,0.0001932416001110657,0.00029676182101428595,4.951008982600258e-05,0.0,0.0001913511821946852,8.688007117490352e-05,0.00010146183301192015,0.0,0.0,0.0,0.0007840534761679695,0.00016153578198498475,0.0003776041880867715,4.138679803724204e-05,0.0001512736604008185 +103944,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,11023.0,,765.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.002472941504805292,0.0006069872141727772,0.0,0.003079928718978069,0.0014668926598403564,0.000567618647072867,0.0009492290853060314,0.0,9.60229126113359e-05,0.0009559283582789152,0.000567618647072867,0.0009492290853060314,0.0,0.0,0.0005109643015614412,0.0,9.60229126113359e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0556013087906555e-05,0.0,0.0,0.00029469259971939745,0.00012982395759705666,0.00033524861280730405,0.00011391495209220052,6.764131477840217e-05,0.0001131166209692149,0.0,0.0,3.414021649503838e-05,0.0,6.415796592868171e-06,0.0,0.0,0.0,0.00015967049052741333,6.178498965322721e-05,0.00010332308411046026,0.0,1.0452043273699076e-05 +103945,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14361.0,,734.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003448223318339205,0.0005824232132722027,0.0,0.004030646531611408,0.002958514734728766,0.0004594377946218527,0.0005394982420015025,0.0,7.319576025928708e-05,0.002376091521456563,0.0004594377946218527,0.0005394982420015025,0.0,7.319576025928708e-05,0.0005824232132722027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.891409497313432e-05,0.0,0.0,0.00041092069873467646,0.00015665488270897484,0.0004498347937078107,0.0002831560192350696,5.47506591545411e-05,6.429136807652057e-05,0.0,8.722652268545252e-06,3.891409497313432e-05,0.0,0.0,0.0,0.0,0.0,0.00033018099080153686,5.127492672563073e-05,6.020996346197829e-05,0.0,8.168912718664843e-06 +103946,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,74672.0,,8000.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003843729591530407,0.0013604506317606514,0.0,0.0052041802232910585,0.0022550714779322563,0.0009074044367554624,0.001172296036371051,0.0,0.0008694082722322891,0.0018460852310558979,0.0009074044367554624,0.0009434679918838497,0.0,0.0001467719318351971,0.00040898624687635797,0.0002288280444872014,0.0007226363403970919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.089720183237147e-05,0.0,0.0,0.0004580503469289391,0.00022095408078788502,0.0005489475487613105,0.00021999465893979896,0.00010813375581272602,0.00011243138485886076,0.0,1.749054731755336e-05,2.7326023128728176e-05,1.528892593312376e-05,4.828225277051954e-05,0.0,0.0,0.0,0.00023786954082647338,9.571487149171892e-05,0.00012365617791413244,0.0,9.170695852898583e-05 +103947,50.0,the Greater Atlanta and Macon Area,G1301210009502,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,669700.0,,97942.0,,9.525004485617233,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.17552985892032533,0.084809129455955,0.0,0.26033898837628033,0.12384630937744076,0.022948087148013635,0.07140269568662244,0.0006595829272839801,0.04148231323691954,0.08984041285830051,0.022948087148013635,0.0414079228273819,0.0006595829272839801,0.020673762879722092,0.034005896519140245,0.02999477285924054,0.02080855035719745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005666453170719525,0.0,0.0,0.020917551051288723,0.011972266726658227,0.026584004222008246,0.0107061068355633,0.002734678802800625,0.004934501428971919,7.860121143425311e-05,0.0024636520140719495,0.0022720763836411723,0.002004076410919004,0.0013903064081191216,0.0,0.0,0.0,0.01264632251935873,0.002343298825253444,0.0072911459610207376,6.735201451400988e-05,0.0042358849018613275 +103948,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,117588.0,,4744.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.01188550141658063,0.0013962850177265834,0.0,0.013281817123913514,0.0032140917779521147,0.0038867158791788666,0.006180978777176234,0.0,0.0,0.001817806760225531,0.0038867158791788666,0.006180978777176234,0.0,0.0,0.0013962850177265834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.329239755688e-05,0.0,0.0,0.0014163733324417324,0.0005451165394297228,0.0015096657299986124,0.00021662468653816915,0.00046317277909428976,0.0007365758668092736,0.0,0.0,9.329239755688e-05,0.0,0.0,0.0,0.0,0.0,0.00036532683479795615,0.000441780044876032,0.0007025553620182831,0.0,0.0 +103949,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,62985.0,,2398.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012825323816866647,0.001649559333359054,0.0,0.014474883150225699,0.0069363252768038074,0.001166166728713836,0.002561837364677627,0.00038004412641172295,0.003430509653618708,0.0069363252768038074,0.001166166728713836,0.0009122780313185726,0.00038004412641172295,0.003430509653618708,0.0,0.001649559333359054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011021180310213957,0.0,0.0,0.0015283707543452035,0.000556219974974636,0.0016385825574473432,0.0008265893982146905,0.00013896999002182588,0.00010871453093958333,4.528917448497264e-05,0.0004088076606841313,0.0,0.00011021180310213957,0.0,0.0,0.0,0.0,0.0007852043773613893,0.00013201215104220891,0.0002900045532120357,4.302167210163989e-05,0.00038833980373006977 +103950,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,111946.0,,20038.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005762456113324261,0.003407686813127049,0.0,0.009170142926451309,0.003966140006774452,0.001638835036416901,0.0019525028602990547,0.0,0.0016126650229609026,0.0033027939949660163,0.001638835036416901,0.0005686836121867737,0.0,0.0002521434697545709,0.0006633460118084354,0.001383819248112281,0.0013605215532063316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022768182120658833,0.0,0.0,0.0006867000718347045,0.0004248428244053026,0.0009143818930412927,0.0003935871838319316,0.0001952966087898758,6.776885926070773e-05,0.0,3.004741995218945e-05,4.432092394080016e-05,9.245875689550614e-05,9.090214037028197e-05,0.0,0.0,0.0,0.00039547547257964594,0.00016341305637219595,0.000194689796646352,0.0,0.00016080356744309896 +103951,85.0,Rural Climate Zone 3A,G1302930010100,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,55368.0,,5196.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0026513805163932763,0.0008836989435368518,0.0,0.0035350794599301274,0.0016896857129696122,0.000804497419073476,0.0006575836443469183,0.0,0.0003832949531787015,0.001467666127267711,0.000804497419073476,0.00029441265137997684,0.0,8.478658831069252e-05,0.00022201958570190118,0.00036317099296694153,0.00029850836486800897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9044028006771285e-05,0.0,0.0,0.00031596001405563475,0.00014845428065949484,0.00037500404206240604,0.00017489900349395996,9.587043966965388e-05,3.508460022732408e-05,0.0,1.0103857770976438e-05,1.4834158999634638e-05,2.426513965736434e-05,1.9944729349772303e-05,0.0,0.0,0.0,0.00017924320495789567,8.53417263744589e-05,6.975699624842268e-05,0.0,4.06602336307809e-05 +103952,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970800,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,122684.0,,7574.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.0059351675639169954,0.001288057566082576,0.0,0.007223225129999572,0.0035453098784694985,0.0010598678146064966,0.0012230226003938224,0.0,0.0013950248365297545,0.0035453098784694985,0.0010598678146064966,0.0011205765721087574,0.0,0.00020941329873224368,0.0,0.00010244602828506509,0.0011856115377975106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.606043688413796e-05,0.0,0.0,0.0007072831640849498,0.0002847744436224857,0.0007933436009690877,0.00042248815412561857,0.00012630252698913818,0.00013353707961658368,0.0,2.495540335360943e-05,0.0,6.844841553216912e-06,7.921559533092101e-05,0.0,0.0,0.0,0.0003893896223523131,0.0001164077449419336,0.00013432741419525302,0.0,0.00015321881947958805 +103953,85.0,Rural Climate Zone 3A,G1302770960300,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4949.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00118825252841263,0.0,0.0,0.0011882525284126297,0.0006236940430681174,0.00030262518281212584,0.00022000081614655776,0.0,4.2015193459568166e-05,0.0006236940430681174,0.00030262518281212584,0.00022000081614655776,0.0,4.2015193459568166e-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.00014160154736654083,3.9474789571431425e-05,0.00014160154736654083,7.432430352133949e-05,3.606320469229295e-05,2.62170332007377e-05,0.0,5.0068619796897556e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.43243035213395e-05,3.606320469229296e-05,2.6217033200737708e-05,0.0,5.006861979689756e-06 +103954,81.0,the Columbus-Albany Area,G1300950010700,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,199247.0,,9601.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.012904777604164133,0.0016327180617269823,0.0,0.014537495665891116,0.007751430327064364,0.002069363672418623,0.002309964676888739,0.0,0.0024067192591579675,0.007367780766657263,0.002069363672418623,0.0010608961755688596,0.0,0.0024067192591579675,0.00038364956040710246,0.0012490685013198796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010908866280668125,0.0,0.0,0.001537836955219533,0.000497136932278151,0.001646925618026214,0.0008780039368725825,0.0002466019970934859,0.00012642490978801617,0.0,0.0002868039985731648,2.5633217707479624e-05,8.345544509920162e-05,0.0,0.0,0.0,0.0,0.0008781450034712762,0.00023443432923012523,0.0002616915657646397,0.0,0.00027265271092078173 +103955,50.0,the Greater Atlanta and Macon Area,G1301350050427,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,19787.0,,862.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004636806675046792,0.0006836566715291151,0.0,0.005320463346575908,0.003475847480968134,0.0007712434626190417,0.0009749509852389559,0.0,9.833871067603653e-05,0.0027921908094390184,0.0007712434626190417,0.0009749509852389559,0.0,9.833871067603653e-05,0.0006836566715291151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5677253107345694e-05,0.0,0.0,0.0005525569625673718,0.00022479202476332109,0.0005982342156747175,0.0003327385808157692,9.190720574961635e-05,0.00011618253526825497,0.0,1.1718784733114622e-05,4.5677253107345694e-05,0.0,0.0,0.0,0.0,0.0,0.0003908251511440513,8.671880584443626e-05,0.0001096237301119801,0.0,1.1057228970405867e-05 +103956,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,12291.0,,4033.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005796424373484343,0.003128180253789064,0.0,0.008924604627273406,0.0028780778517581078,0.0007634066529499705,0.004414432730060134,0.0004151392602738215,0.00045362899301444067,0.0028780778517581078,0.0007634066529499705,0.0012862524762710709,0.0004151392602738215,0.00045362899301444067,0.0,0.003128180253789064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002090055338229145,0.0,0.0,0.0006907533022636636,0.00038808579852245214,0.0008997588360865783,0.00034297726532379023,9.097430286634743e-05,0.0001532812451747684,4.947167364853593e-05,5.405845133780416e-05,0.0,0.0002090055338229145,0.0,0.0,0.0,0.0,0.0002901614229666538,7.696496485905034e-05,0.0004450533128429334,4.1853419085516846e-05,4.573386853715416e-05 +103957,50.0,the Greater Atlanta and Macon Area,G1301350050428,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11720.0,,873.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002641167692791043,0.0006922582071980031,0.0,0.0033334258999890465,0.001712698082993578,0.0005587689901827609,0.0009727178942479947,0.0,8.915822549097339e-05,0.0011095153942128093,0.0005587689901827609,0.0009727178942479947,0.0,0.0,0.0006031826887807688,0.0,8.915822549097339e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.625494171806634e-05,0.0,0.0,0.0003147382138286446,0.00014780080432079585,0.0003609931555467109,0.0001322168578477882,6.658643992692187e-05,0.00011591520425999529,0.0,0.0,4.0303140973698654e-05,0.0,5.957327021753347e-06,0.0,0.0,0.0,0.0001854765349608299,6.0511853882333734e-05,0.00010534042532713545,0.0,9.655384618880368e-06 +103958,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300490010100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,141904.0,,4674.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,729707.6418815667,0.0,0.0,0.037991756014745165,0.004134191659074181,0.0,0.04212594767381935,0.029512656274010094,0.0079495882753115,0.0014095407086379707,0.0006637797854613094,0.002590290413145696,0.027116667612457478,0.0079495882753115,0.0014095407086379707,0.0006637797854613094,0.0008520874156241314,0.0023959886615526173,0.0,0.0017382029975215642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000276221845844674,0.0,0.0,0.004527401222622467,0.0016243736879473268,0.004803623068467141,0.003231438790416503,0.0009473364606527238,0.00016797213387943717,7.91013032164991e-05,0.000101541545112594,0.00016008556576334055,0.0,0.00011613628008133344,0.0,0.0,0.0,0.003365329074310247,0.000906491787906644,0.00016072996900589354,7.56908287147152e-05,0.00029537089299355864 +103959,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,16597.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003666818114232195,0.0,0.0,0.003666818114232195,0.0016934273348123195,0.0008966273864078318,0.0009875224604473307,0.0,8.92409325647127e-05,0.0016934273348123195,0.0008966273864078318,0.0009875224604473307,0.0,8.92409325647127e-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.00043696718315736646,0.000122663119931725,0.00043696718315736646,0.00020180225724928562,0.00010684924399704545,0.00011768102327504128,0.0,1.0634658635994097e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00020180225724928562,0.00010684924399704545,0.00011768102327504128,0.0,1.0634658635994097e-05 +103960,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,14621.0,,1062.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034090201653867737,0.0008427850814035426,0.0,0.004251722539716577,0.0025120619506839846,0.0007435365929163736,0.0008975371642189641,0.0,9.850412482351512e-05,0.0017678637011776964,0.0007435365929163736,0.0008975371642189641,0.0,0.0,0.0007441982495062881,0.0,9.850412482351512e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.630737607534532e-05,0.0,0.0,0.0004062416240606077,0.00018816719356028883,0.000462549000135953,0.00021067045257643478,8.860478917717654e-05,0.00010695652637939042,0.0,0.0,4.972068399665919e-05,0.0,6.581166330297965e-06,0.0,0.0,0.0,0.00027328964501194974,8.089006382831552e-05,9.764393466795107e-05,0.0,1.0716358845330789e-05 +103961,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,10733.0,,603.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.000902581321215439,0.0001776314412511037,0.0,0.0010802127624665425,0.000584636999971238,0.0002592044147903977,0.00023640203731120456,0.0,0.0,0.00040700555872013434,0.0002592044147903977,0.00023640203731120456,0.0,0.0,0.0001776314412511037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1868714546929047e-05,0.0,0.0,0.00010755896549005314,4.7567525198744467e-05,0.00011942768003698218,4.850210813767714e-05,3.088891610095167e-05,2.8171598475684438e-05,0.0,0.0,1.1868714546929047e-05,0.0,0.0,0.0,0.0,0.0,6.463711871994178e-05,2.8657485811476544e-05,2.6136468530168586e-05,0.0,0.0 +103962,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,249296.0,,3499.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,306613.1346040191,0.0,0.0,0.028044597937706413,0.0013005520954861866,0.0,0.0293451500331926,0.017670249950664057,0.002407245826840643,0.008919460919671966,0.0,0.0003481545875921638,0.017670249950664057,0.002407245826840643,0.007618908824185779,0.0,0.0003481545875921638,0.0,0.0013005520954861866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.689427925651505e-05,0.0,0.0,0.003342021695319315,0.0011767428076460964,0.00342891597457583,0.0021057302667703715,0.00028686693234605397,0.0009079309548900263,0.0,4.148892373648765e-05,0.0,8.689427925651505e-05,0.0,0.0,0.0,0.0,0.0020647296831689736,0.0002812813586247957,0.0010422193104303115,0.0,4.068109468400466e-05 +103963,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,3977.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,5759.960461090961,0.0,0.0,0.0005076140019907846,0.0,0.0,0.0005076140019907847,0.0003057803855829624,9.237286420395866e-05,9.38468992710431e-05,0.0,1.5613852932820436e-05,0.0003057803855829624,9.237286420395866e-05,9.38468992710431e-05,0.0,1.5613852932820436e-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,6.0491498268648564e-05,2.3287537145904442e-05,6.0491498268648564e-05,3.643932908181336e-05,1.1007917301629745e-05,1.1183575556442986e-05,0.0,1.8606763287624748e-06,0.0,0.0,0.0,0.0,0.0,0.0,3.643932908181335e-05,1.1007917301629744e-05,1.1183575556442984e-05,0.0,1.8606763287624744e-06 +103964,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,25722.0,,2076.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005360185256744173,0.0006111528198124532,0.0,0.005971338076556626,0.0016323187797622155,0.001732888619599788,0.0026061306771946223,0.0,0.0,0.0010211659599497624,0.001732888619599788,0.0026061306771946223,0.0,0.0,0.0006111528198124532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.083278709248858e-05,0.0,0.0,0.0006387635344131103,0.00022907211563401124,0.0006795963215055988,0.00012169049138351425,0.00020650518711216368,0.0003105678559174324,0.0,0.0,4.083278709248858e-05,0.0,0.0,0.0,0.0,0.0,0.00018577374518553434,0.00019721957061557494,0.0002966030057044895,0.0,0.0 +103965,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,13896.0,,1769.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011786343298632754,0.0005208333084783138,0.0,0.0016994676383415893,0.0007066588746109042,0.00041612037179055203,0.0005767190815464307,0.0,0.0,0.00018582556613259036,0.00041612037179055203,0.0005767190815464307,0.0,0.0,0.0005208333084783138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.479857675947241e-05,0.0,0.0,0.00014045503324230138,7.936197633880494e-05,0.0001752536100017738,2.2144388133892326e-05,4.958806915069299e-05,6.872623316467459e-05,0.0,0.0,3.479857675947241e-05,0.0,0.0,0.0,0.0,0.0,7.2872537270674e-05,4.291143632646003e-05,5.9472801198232686e-05,0.0,0.0 +103966,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,28139.0,,716.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006756588974985241,0.000567701354146606,0.0,0.0073242903291318474,0.0025844306402058783,0.001016966178698524,0.0035852689395252375,0.0,0.00013762457070220753,0.0020167292860592723,0.001016966178698524,0.0035852689395252375,0.0,0.00013762457070220753,0.000567701354146606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.793017649753832e-05,0.0,0.0,0.0008051668207865887,0.0002784311904972146,0.0008430969972841272,0.0002403288869065915,0.00012118946823340918,0.00042724806916477344,0.0,1.6400396481814643e-05,3.793017649753832e-05,0.0,0.0,0.0,0.0,0.0,0.0002974930832247525,0.00011706269045479892,0.00041269929802578714,0.0,1.584192557878866e-05 +103967,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7224.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017346981646082342,0.0,0.0,0.001734698164608234,0.0010019961983517092,0.00030279059695960446,0.0003800390038321176,0.0,4.9872365464802375e-05,0.0010019961983517092,0.00030279059695960446,0.0003800390038321176,0.0,4.9872365464802375e-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.0002067158758852045,6.732835575865867e-05,0.0002067158758852045,0.0001194032056998785,3.60821408227202e-05,4.528747257044505e-05,0.0,5.94305679216069e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011940320569987851,3.60821408227202e-05,4.528747257044506e-05,0.0,5.9430567921606905e-06 +103968,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11274.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0037486981172341087,0.0,0.0,0.0037486981172341087,0.0020918273090145636,0.000527588423383042,0.001037146704690915,0.0,9.205297307184916e-05,0.0020918273090145636,0.000527588423383042,0.001037146704690915,0.0,9.205297307184916e-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.0004467206183262378,0.0001408351701847285,0.0004467206183262378,0.0002492765113890173,6.287106065754156e-05,0.0001235935257321792,0.0,1.0969664604458968e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002492765113890173,6.287106065754156e-05,0.0001235935257321792,0.0,1.0969664604458968e-05 +103969,81.0,the Columbus-Albany Area,G1302150002400,ComStock 90.1-2004,gen5_led,1001_5000,Electricity,5443.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0009301237512722514,0.0,0.0,0.0009301237512722512,0.0004890469270205247,0.0002182639675980323,0.00017699313780211788,0.0,4.590242592531562e-05,0.0004890469270205247,0.0002182639675980323,0.00017699313780211788,0.0,4.590242592531562e-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.00011084338212917032,3.098303353807162e-05,0.00011084338212917032,5.828000342608785e-05,2.601064248967459e-05,2.1092373977985455e-05,0.0,5.470218484944827e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.828000342608786e-05,2.6010642489674598e-05,2.109237397798546e-05,0.0,5.4702184849448274e-06 +103970,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,63677.0,,10794.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56751.431377317895,0.011164719607971186,0.0,0.013258871041656016,0.007425168599246213,0.0,0.03184875924887341,0.015918677886740968,0.0006106238332269124,0.011212198228783521,0.00036232929357086704,0.003745001726522162,0.004753958278769778,0.0006106238332269124,0.0037870296295373102,0.00036232929357086704,0.003745001726522162,0.0,0.007425168599246213,0.0,0.0,0.0,0.0,0.011164719607971186,0.0,0.0,0.0,0.0004961061510604654,0.0,0.0,0.00158003507468533,0.0009561058947646512,0.002076141225745795,0.0005665203923054962,7.276690986028506e-05,0.0004512932982561231,4.317811000871037e-05,0.000446284910990663,0.0,0.0004961061510604654,0.0,0.0,0.0,0.0,0.0010376989308052852,3.980504558054837e-05,0.0007308952537871588,2.36193434664001e-05,0.00024412732735253634 +103971,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen4_led,100001_200000,NaturalGas,112925.0,,11837.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010232866117449339,0.003484221692584494,0.0,0.013717057120427534,0.007003061261072797,0.002362823478466435,0.0043512030704945985,0.0,0.0,0.003518839568488304,0.002362823478466435,0.0043512030704945985,0.0,0.0,0.003484221692584494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023279489206901838,0.0,0.0,0.0012194298143607563,0.0005942566440138594,0.0014522247064297747,0.0004193329447015723,0.00028157286166387936,0.0005185240079953044,0.0,0.0,0.00023279489206901838,0.0,0.0,0.0,0.0,0.0,0.0007414140288754729,0.0002501520991154369,0.00046066182754719067,0.0,0.0 +103972,81.0,the Columbus-Albany Area,G1302150001800,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,57057.0,,2798.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004915216655033781,0.0008236476538177474,0.0,0.0057388643088515275,0.001998261645256024,0.0014304732391422245,0.002310129424453279,0.0,0.0,0.0011746139914382764,0.0014304732391422245,0.002310129424453279,0.0,0.0,0.0008236476538177474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5031219420438974e-05,0.0,0.0,0.0005857375408609606,0.00022844592696905268,0.0006407687602813996,0.0001399766397074932,0.0001704669267232577,0.0002752939744302096,0.0,0.0,5.503121942043898e-05,0.0,0.0,0.0,0.0,0.0,0.00022311446450714445,0.00015971845904199703,0.0002579358367322581,0.0,0.0 +103973,81.0,the Columbus-Albany Area,G1302150010107,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,33077.0,,2101.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0017026466071676707,0.00035735543442116425,0.0,0.002060002041588835,0.0006961649107969532,0.000416698954094081,0.0007012712548859284,0.0,0.00024588465217329235,0.0006961649107969532,0.000416698954094081,0.00034391582046476425,0.0,0.00024588465217329235,0.0,0.00035735543442116425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3875855109131833e-05,0.0,0.0,0.00020290177230272737,7.572244101311088e-05,0.0002267776274118592,8.29608995906934e-05,4.9657372203047994e-05,4.0983918331313165e-05,0.0,2.9301695077519775e-05,0.0,2.3875855109131833e-05,0.0,0.0,0.0,0.0,7.66380923759456e-05,4.587277014617649e-05,7.720022997283517e-05,0.0,2.7068486783557815e-05 +103974,50.0,the Greater Atlanta and Macon Area,G1301350050424,ComStock 90.1-2004,gen1_t12_incandescent,_1000,NaturalGas,3988.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,3204.5843851935597,0.0,0.0,0.00022549360222586955,0.0,0.0,0.00022549360222586955,0.00011323277870393879,0.00010235903010522364,9.932167016144847e-06,0.0,0.0,0.00011323277870393879,0.00010235903010522364,9.932167016144847e-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,2.6872335475577422e-05,9.262112871520509e-06,2.6872335475577422e-05,1.3494082253899867e-05,1.2198244955912703e-05,1.1836279230217966e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3494082253899867e-05,1.2198244955912703e-05,1.1836279230217966e-06,0.0,0.0 +103975,35.0,Eastern Counties in South Carolina and Georgia,G1300510002800,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,16002.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013630481741061715,0.0,0.0,0.0013630481741061715,0.00039666316139780854,0.0004399355062775694,0.0005264801960370913,0.0,0.0,0.00039666316139780854,0.0004399355062775694,0.0005264801960370913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016243276707134826,5.4660692290301435e-05,0.00016243276707134826,4.726985892730167e-05,5.242657081028003e-05,6.273999457623675e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.726985892730167e-05,5.242657081028003e-05,6.273999457623675e-05,0.0,0.0 +103976,50.0,the Greater Atlanta and Macon Area,G1301210002900,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,10399.0,,1161.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002259226426262922,0.0009206124377922307,0.0,0.0031798388640551524,0.001609066119598226,0.0005374305651580195,0.000963454701989192,0.0,6.988747730971476e-05,0.0007584238661894491,0.0005374305651580195,0.000963454701989192,0.0,0.0,0.0008506422534087768,0.0,6.988747730971476e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.150834417133765e-05,0.0,0.0,0.0002692298378936232,0.00013762269736096336,0.00033073818206496084,9.038064187598932e-05,6.404508297820921e-05,0.00011481396916176655,0.0,0.0,5.683346687648979e-05,0.0,4.66935143516129e-06,0.0,0.0,0.0,0.00016736055692443658,5.5898684086095536e-05,0.00010020987548767728,0.0,7.26906556675142e-06 +103977,50.0,the Greater Atlanta and Macon Area,G1300890021215,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,63782.0,,4027.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005682917156570815,0.0011852939744298769,0.0,0.00686824182060699,0.002096038730920505,0.001977699609036563,0.0027945034806499225,0.0,0.0,0.0009107447564906277,0.001977699609036563,0.0027945034806499225,0.0,0.0,0.0011852939744298769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.919525732989133e-05,0.0,0.0,0.0006772235661115357,0.0002903422353192316,0.0007564188234414272,0.00010853190268572224,0.0002356790966731808,0.0003330162239807862,0.0,0.0,7.919525732989133e-05,0.0,0.0,0.0,0.0,0.0,0.00023084265116781098,0.0002178096302462162,0.0003077665420274,0.0,0.0 +103978,50.0,the Greater Atlanta and Macon Area,G1301210010212,ComStock 90.1-2004,gen3_t5_cfl,50001_100000,NaturalGas,107548.0,,12308.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.008325130243492835,0.0035857249080243534,0.0,0.011910855151517187,0.008320543829977736,0.0026328443464632037,0.0009574669750762508,0.0,0.0,0.004734818921953381,0.0026328443464632037,0.0009574669750762508,0.0,0.0,0.0035857249080243534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023957735259889416,0.0,0.0,0.0009920901177792646,0.00043686271457964274,0.0012316674703781586,0.0005642394682792883,0.00031375111035875753,0.00011409953914121864,0.0,0.0,0.00023957735259889416,0.0,0.0,0.0,0.0,0.0,0.0008604036436404719,0.000272254904862537,9.900892187515001e-05,0.0,0.0 +103979,35.0,Eastern Counties in South Carolina and Georgia,G1300510010101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,11212.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0023975126535550435,0.0,0.0,0.0023975126535550435,0.0011814705483660065,0.0005036860790723821,0.0006399046295210215,0.0,7.245139659563332e-05,0.0011814705483660065,0.0005036860790723821,0.0006399046295210215,0.0,7.245139659563332e-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.000285708358040775,7.633489182399499e-05,0.000285708358040775,0.00014079425605810925,6.002359253719883e-05,7.625657396720975e-05,0.0,8.633935478257173e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014079425605810925,6.002359253719883e-05,7.625657396720975e-05,0.0,8.633935478257173e-06 +103980,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,18129.0,,919.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005684836492849775,0.0007124643596167978,0.0,0.006397381713249641,0.0027015587623195124,0.0006783411091618794,0.00213650361023664,0.00042282103466533157,0.0004580763360832097,0.0027015587623195124,0.0006783411091618794,0.0014240392506198421,0.00042282103466533157,0.0004580763360832097,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.0006774528302948923,0.0002350944904103395,0.0007250581089899659,0.00032194041676366004,8.083682000090822e-05,0.00016970046930933302,5.038690330012505e-05,5.458822092086602e-05,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.0003061857452519688,7.688094034477002e-05,0.00024214426103105413,4.7921139237430245e-05,5.191685863072143e-05 +103981,50.0,the Greater Atlanta and Macon Area,G1300590000600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,6880.0,,43.0,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013035461892052242,3.407531438059465e-05,0.0,0.001337704210659558,0.0005906939206461336,0.00033926441647863905,0.00037367055915419093,0.0,3.407531438059465e-05,0.0005906939206461336,0.00033926441647863905,0.00037367055915419093,0.0,0.0,0.0,0.0,3.407531438059465e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.279471749865755e-06,0.0,0.0,0.00015534188651188322,4.904763707165153e-05,0.00015762135826174898,7.039221835339573e-05,4.042969471935442e-05,4.452982953243375e-05,0.0,0.0,0.0,0.0,2.279471749865755e-06,0.0,0.0,0.0,6.960131944512251e-05,3.997544278407904e-05,4.4029510116642884e-05,0.0,4.015085915904574e-06 +103982,50.0,the Greater Atlanta and Macon Area,G1301210005200,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,80387.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006920260703281595,0.0,0.0,0.006920260703281595,0.0014462476967792438,0.0029217118987539007,0.0025523317973547496,0.0,0.0,0.0014462476967792438,0.0029217118987539007,0.0025523317973547496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008246750253107707,0.00025632011187574693,0.0008246750253107707,0.00017234673765707906,0.00034817515370672133,0.00030415679117217273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017234673765707906,0.00034817515370672133,0.00030415679117217273,0.0,0.0 +103983,50.0,the Greater Atlanta and Macon Area,G1301350050532,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,16164.0,,614.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003881360263511958,0.0004870619572507813,0.0,0.004368339513689,0.0018120292785544863,0.0008293865354577748,0.0015471185213674847,0.0,0.00017980517830925433,0.0015048552066866988,0.0008293865354577748,0.0015471185213674847,0.0,0.0,0.0003071740718677877,0.0,0.00017980517830925433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.254148937740723e-05,0.0,0.0,0.0004625312260937752,0.0001838414465511146,0.0004950727154711823,0.00017932953309843043,9.883575476290518e-05,0.0001843659382324396,0.0,0.0,2.0522854737254283e-05,0.0,1.2013108831122997e-05,0.0,0.0,0.0,0.00020536092779328878,9.399604655215208e-05,0.00017533805811772608,0.0,2.0377683008015422e-05 +103984,50.0,the Greater Atlanta and Macon Area,G1300890023501,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,85138.0,,1151.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.004262963987307555,0.0001958141115230631,0.0,0.0044587603684692,0.0021750720872049773,0.0009911981248266319,0.0007135938560728652,0.0,0.000578914030726144,0.0021750720872049773,0.0009911981248266319,0.000517779744549802,0.0,0.000578914030726144,0.0,0.0001958141115230631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.308259154363801e-05,0.0,0.0,0.000508008459052126,0.0001769277560055223,0.000521091050595764,0.000259198769362856,0.00011811899737078543,6.170272395927031e-05,0.0,6.898796835921428e-05,0.0,1.308259154363801e-05,0.0,0.0,0.0,0.0,0.0002541985900516762,0.00011584037479721956,8.339702998826015e-05,0.0,6.765712788895277e-05 +103985,35.0,Eastern Counties in South Carolina and Georgia,G1300510011300,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,143997.0,,18297.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,729707.6418815667,0.0,0.0,0.03267552360962443,0.016183482340922695,0.0,0.048859005950547124,0.040142539001173906,0.003945699594405813,0.001434623801392274,0.0006548347119423114,0.0026811244071272724,0.025780531837026954,0.003945699594405813,0.001434623801392274,0.0006548347119423114,0.000859741447604305,0.014362007164146954,0.0,0.0018213829595229672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010812833918456882,0.0,0.0,0.00389387863442894,0.0018837576109922679,0.004975162026274628,0.0030722158672568597,0.0004702013510812206,0.00017096132981444243,7.803537976553035e-05,0.00010245371716012387,0.0009595833265682353,0.0,0.00012169390387277089,0.0,0.0,0.0,0.004087591054943521,0.00040177843178070596,0.0001460833211772838,6.667980096933163e-05,0.00027301063700638613 +103986,81.0,the Columbus-Albany Area,G1302150000200,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,43726.0,,939.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003750055062335196,0.0002764826631360044,0.0,0.004026537725471201,0.002247614696424859,0.0006776571966595751,0.0011012658323867666,0.0,0.0,0.0019711320332888548,0.0006776571966595751,0.0011012658323867666,0.0,0.0,0.0002764826631360044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8472904241848542e-05,0.0,0.0,0.0004468857165517536,0.00016022093647680534,0.0004653586207936021,0.00023489541792644453,8.075490009394378e-05,0.00013123539853136535,0.0,0.0,1.8472904241848542e-05,0.0,0.0,0.0,0.0,0.0,0.0002597633367712462,7.831880387298614e-05,0.00012727648014936981,0.0,0.0 +103987,50.0,the Greater Atlanta and Macon Area,G1302230120603,ComStock 90.1-2004,gen5_led,1001_5000,NaturalGas,3961.0,,137.0,,8.72605822017302,Office,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0008912514266147767,0.00010884250904092855,0.0,0.0010000939356557056,0.0003656479730014781,0.00017459463266367796,0.0004209790053330748,0.0,3.878961758373518e-05,0.0002955950815442847,0.00017459463266367796,0.0004209790053330748,0.0,0.0,7.005289145719338e-05,0.0,3.878961758373518e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.272209117467072e-06,0.0,0.0,0.00010620475540117736,4.341334723357183e-05,0.00011347696451864445,3.522418298105121e-05,2.0805330238667912e-05,5.016538650630965e-05,0.0,0.0,4.6805175702846585e-06,0.0,2.5916915471824145e-06,0.0,0.0,0.0,4.148872478803564e-05,1.9810608013468273e-05,4.776693263313762e-05,0.0,4.4013146178667075e-06 +103988,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,34076.0,,1036.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003036153440638034,0.00030483985935508167,0.0,0.0033409932999931167,0.001240934230647612,0.0007970090755513412,0.0013030806834004602,0.0,0.0,0.0009360943712925303,0.0007970090755513412,0.0013030806834004602,0.0,0.0,0.00030483985935508167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0368171852807042e-05,0.0,0.0,0.00036181301466150714,0.00013298219609066936,0.0003821811865143142,0.00011155270413930205,9.497815639950409e-05,0.00015528581134859238,0.0,0.0,2.0368171852807042e-05,0.0,0.0,0.0,0.0,0.0,0.00014195231000795755,9.117105208128248e-05,0.0001490613350547268,0.0,0.0 +103989,50.0,the Greater Atlanta and Macon Area,G1301170130606,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,NaturalGas,18969.0,,3750.0,,8.72605822017302,Office,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.0044287156775186945,0.0029751388565503667,0.0,0.007403937241142801,0.00521013211020767,0.0010902446460315503,0.0009249959127004142,0.0,0.00017848186512942537,0.0024134751187867296,0.0010902446460315503,0.0009249959127004142,0.0,0.0,0.002796656991420941,0.0,0.00017848186512942537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019878230997971564,0.0,0.0,0.0005277659210147653,0.0003596618778710623,0.000726548230994481,0.0002876115812488443,0.00012992343867661375,0.00011023090108930725,0.0,0.0,0.00018685713971016633,0.0,1.1925170269549267e-05,0.0,0.0,0.0,0.0005112701721570299,0.00010698568790180122,9.076983261217912e-05,0.0,1.7514422279782053e-05 +103990,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,67661.0,,4.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.006619870836839681,1.1048258267173002e-06,0.0,0.0066209756626663995,0.002728766343960243,0.0013398775213514058,0.0025523317973547496,0.0,0.0,0.002727661518133526,0.0013398775213514058,0.0025523317973547496,0.0,0.0,1.1048258267173002e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.354365930987019e-08,0.0,0.0,0.0007888782927387167,0.00029551614536155657,0.0007889518363980267,0.00032505059609615216,0.00015967083309850367,0.0003041568635440609,0.0,0.0,7.354365930987019e-08,0.0,0.0,0.0,0.0,0.0,0.0003251583041315033,0.00015965907214842608,0.0003041344601180971,0.0,0.0 +103991,50.0,the Greater Atlanta and Macon Area,G1301350050721,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,20555.0,,288.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004877318845480698,0.00022818881644674915,0.0,0.0051055076619274465,0.0029600034620560736,0.0010477332101295465,0.0010163872291823488,0.0,8.14664676332178e-05,0.002731814645609324,0.0010477332101295465,0.0010163872291823488,0.0,8.14664676332178e-05,0.00022818881644674915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5245502873532336e-05,0.0,0.0,0.0005812213374867779,0.00020053727534578898,0.0005964668403603103,0.00032554545076712746,0.00012485648714253623,0.00012112104282401542,0.0,9.708212806709674e-06,1.5245502873532336e-05,0.0,0.0,0.0,0.0,0.0,0.00034581162724210517,0.0001224046968035706,0.00011874260491151553,0.0,9.51757391470769e-06 +103992,81.0,the Columbus-Albany Area,G1302150001400,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,12292.0,,463.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027106416347320614,0.00036755023569748216,0.0,0.0030781918704295436,0.0015333891471267598,0.0004864003006608669,0.0009739585003540844,0.0,8.436121521409358e-05,0.0011658389114292775,0.0004864003006608669,0.0009739585003540844,0.0,8.436121521409358e-05,0.00036755023569748216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4556040247796327e-05,0.0,0.0,0.0003230247652695837,0.00011390350466534743,0.00034758080551738,0.00013893199155550292,5.796389346892115e-05,0.00011606577274103309,0.0,1.0053251375327253e-05,2.4556040247796327e-05,0.0,0.0,0.0,0.0,0.0,0.00017314600822967988,5.49229597841827e-05,0.00010997666628439646,0.0,9.525832167975916e-06 +103993,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,19778.0,,149.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00439819676730889,0.00011818840837347028,0.0,0.004516385175682361,0.002005398416956987,0.0008412963540762351,0.0015515847033494073,0.0,0.00011818840837347028,0.002005398416956987,0.0008412963540762351,0.0015515847033494073,0.0,0.0,0.0,0.0,0.00011818840837347028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.89454480385005e-06,0.0,0.0,0.0005241285576340566,0.00018846757719444645,0.0005320231024379067,0.00023898125422078622,0.00010025641596625716,0.00018490074356340783,0.0,0.0,0.0,0.0,7.89454480385005e-06,0.0,0.0,0.0,0.0002362327936860095,9.910339330119557e-05,0.00018277424875446605,0.0,1.3922409460028354e-05 +103994,50.0,the Greater Atlanta and Macon Area,G1300630040308,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,98788.0,,11778.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00901043771939924,0.00346691275463259,0.0,0.01247735047403183,0.005035519911720775,0.0029292308522968374,0.004512630399620515,0.0,0.0,0.0015686071570881845,0.0029292308522968374,0.004512630399620515,0.0,0.0,0.00346691275463259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023163906929482615,0.0,0.0,0.001073757923829494,0.0005485547610158793,0.0013053969931243203,0.00018692814009166618,0.0003490712589475908,0.0005377621820163305,0.0,0.0,0.00023163906929482615,0.0,0.0,0.0,0.0,0.0,0.0005268227870378865,0.0003064600256852197,0.00047211739118862173,0.0,0.0 +103995,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock 90.1-2004,gen5_led,25001_50000,Electricity,82325.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006589127167628131,0.0,0.0,0.006589127167628131,0.004930181913536999,0.0012067734792613177,0.00045217177482981133,0.0,0.0,0.004930181913536999,0.0012067734792613177,0.00045217177482981133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007852152124045137,0.0002152465165026236,0.0007852152124045137,0.0005875214941138206,0.00014380916769943082,5.38845505912619e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005875214941138206,0.00014380916769943082,5.38845505912619e-05,0.0,0.0 +103996,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,Electricity,9222.0,,274.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0023637681674694064,0.00021718877563942126,0.0,0.0025809569431088273,0.0013415914431253058,0.00044992648114183234,0.000707559015839775,0.0,8.188000300191435e-05,0.0011244026674858845,0.00044992648114183234,0.000707559015839775,0.0,8.188000300191435e-05,0.00021718877563942126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4509381871916073e-05,0.0,0.0,0.0002816844111476067,0.00010550232227099261,0.00029619379301952276,0.00013399228724813553,5.361662689443597e-05,8.43180593900551e-05,0.0,9.757437614980076e-06,1.4509381871916073e-05,0.0,0.0,0.0,0.0,0.0,0.00015396268398928665,5.163411632462359e-05,8.120034285977111e-05,0.0,9.396649845841426e-06 +103997,50.0,the Greater Atlanta and Macon Area,G1301210000600,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,66230.0,,203.0,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,349688.3371303919,0.0,0.0,0.016445640289285444,0.00017226072404910692,0.0,0.01661790101333455,0.010649230435725398,0.0021038081141820895,0.0035135354351586183,0.0,0.00035141541242650034,0.01047696971167629,0.0021038081141820895,0.0035135354351586183,0.0,0.00035141541242650034,0.00017226072404910692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1511429408131513e-05,0.0,0.0,0.001959794147986849,0.0006669307470376935,0.0019713055773949804,0.0012485195813844955,0.00025070661635153953,0.00041870100910905135,0.0,4.1877473705571614e-05,1.1511429408131513e-05,0.0,0.0,0.0,0.0,0.0,0.0012632694908980818,0.00024956513255964944,0.00041679463574523126,0.0,4.168680280036827e-05 +103999,81.0,the Columbus-Albany Area,G1302150001200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,10481.0,,218.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0010807710358509332,8.117794780251343e-05,0.0,0.0011619102352296744,0.0006317543011800378,0.000170841800411113,0.0003255255081092675,0.0,3.382737395302827e-05,0.0006317543011800378,0.000170841800411113,0.0002781749342597824,0.0,0.0,0.0,4.735057384948517e-05,3.382737395302827e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.423412022307037e-06,0.0,0.0,0.00012879116593405074,4.572029590459683e-05,0.00013421457795635778,7.528363578763672e-05,2.0358534726919177e-05,3.314899541949485e-05,0.0,0.0,0.0,3.1634412846105963e-06,2.2599707376964407e-06,0.0,0.0,0.0,7.297520439539977e-05,1.9734278470272176e-05,3.760210329524984e-05,0.0,3.907467703458292e-06 +104000,50.0,the Greater Atlanta and Macon Area,G1302230120102,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,72699.0,,3652.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006410712644530776,0.0010639871883044464,0.0,0.007474699832835223,0.005080865340347688,0.0018942191553359548,0.0004996153371515797,0.0,0.0,0.004016878152043241,0.0018942191553359548,0.0004996153371515797,0.0,0.0,0.0010639871883044464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.108964941724735e-05,0.0,0.0,0.000763953070833531,0.00026734303869240585,0.0008350427202507784,0.0004786841291405541,0.00022573068249832906,5.9538259194647785e-05,0.0,0.0,7.108964941724735e-05,0.0,0.0,0.0,0.0,0.0,0.0005676133771143716,0.00021161437269687572,5.5814970439530944e-05,0.0,0.0 +104001,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,69110.0,,5578.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0059621925738799104,0.0016420473849585871,0.0,0.007604239958838498,0.0034015132036121854,0.0018118836662100745,0.0023908737786225353,0.0,0.0,0.0017594658186535985,0.0018118836662100745,0.0023908737786225353,0.0,0.0,0.0016420473849585871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010971170474240909,0.0,0.0,0.000710504192437259,0.0003219768432872762,0.0008202158971796681,0.00020967250304528912,0.00021591904741397888,0.00028491629920537317,0.0,0.0,0.00010971170474240909,0.0,0.0,0.0,0.0,0.0,0.00036689731244296607,0.00019543515129849754,0.00025788674371025004,0.0,0.0 +104002,35.0,Eastern Counties in South Carolina and Georgia,G1300510003400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,87760.0,,712.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.008113472596136281,0.0002097020798322031,0.0,0.008323174675968483,0.004437041899309273,0.0016297715424395066,0.0022563305446134064,0.0,0.0,0.00422733981947707,0.0016297715424395066,0.0022563305446134064,0.0,0.0,0.0002097020798322031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4010418567588462e-05,0.0,0.0,0.0009668663987597904,0.00030473065326148177,0.0009808768173273788,0.0005037636818466681,0.00019421663453822143,0.00026888242515553287,0.0,0.0,1.4010418567588463e-05,0.0,0.0,0.0,0.0,0.0,0.0005229004203298529,0.00019206675166081179,0.0002659060286009706,0.0,0.0 +104003,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,33966.0,,5548.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0029799300819006425,0.0016332087783448486,0.0,0.004613108170639194,0.0026078799847535916,0.000890489616334144,0.0011147078799451605,0.0,0.0,0.0009746712064087429,0.000890489616334144,0.0011147078799451605,0.0,0.0,0.0016332087783448486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010912113475121465,0.0,0.0,0.0003551107722745431,0.00020918147731907341,0.00046423190702575773,0.00011614911602248444,0.00010611740767997759,0.0001328369341657067,0.0,0.0,0.00010912113475121465,0.0,0.0,0.0,0.0,0.0,0.0002624393475795548,8.961283314545712e-05,0.00011217663790699247,0.0,0.0 +104004,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,12718.0,,91.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0006073712608053288,1.5460875158286044e-05,0.0,0.000622832135963615,0.0003101572123209837,0.00021056577222454713,2.4840236349493978e-05,0.0,7.728664543001017e-05,0.00029469633716269766,0.00021056577222454713,2.4840236349493978e-05,0.0,7.728664543001017e-05,1.5460875158286044e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.033126440672466e-06,0.0,0.0,7.23801009632708e-05,2.3376211404147946e-05,7.341322740394329e-05,3.511880132270329e-05,2.5093007912184852e-05,2.96019738000766e-06,0.0,9.210207265848244e-06,1.033126440672466e-06,0.0,0.0,0.0,0.0,0.0,3.6558232378079586e-05,2.481938876819718e-05,2.9279187996163898e-06,0.0,9.109777335851422e-06 +104005,50.0,the Greater Atlanta and Macon Area,G1300670030337,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,6308.0,,1007.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00148078744822856,0.0007986195040267523,0.0,0.0022794069522553127,0.0014832686604407392,0.00036068554857711973,0.00036349758908425615,0.0,7.187244707945816e-05,0.0006846491564139869,0.00036068554857711973,0.00036349758908425615,0.0,7.187244707945816e-05,0.0007986195040267523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.336118256255554e-05,0.0,0.0,0.00017646270157219726,9.254709948342025e-05,0.0002298238841347528,8.158837374970113e-05,4.298222975627527e-05,4.331733542279977e-05,0.0,8.564906594405689e-06,5.336118256255555e-05,0.0,0.0,0.0,0.0,0.0,0.00014955230544530683,3.6366544220306865e-05,3.665007150842665e-05,0.0,7.246623922826568e-06 +104006,35.0,Eastern Counties in South Carolina and Georgia,G1300730030105,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,220878.0,,11670.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009854375304012567,0.0019846657359150303,0.0,0.011839041039927597,0.006352912609334861,0.0032051528946257855,0.0011393530248525931,0.0,0.0011416225111143597,0.0056971374618527875,0.0032051528946257855,0.0007386645871208198,0.0,0.00021340263005175555,0.0006557751474820729,0.00040068843773177326,0.0009282198810626042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013260380295021634,0.0,0.0,0.0011743264779587902,0.0003750091054630869,0.0013069302809090068,0.0006789166399315507,0.0003819517517800152,8.802520263595698e-05,0.0,2.5430770719050865e-05,4.381507518507631e-05,2.6771667228344226e-05,6.201824517625898e-05,0.0,0.0,0.0,0.0007013079719131674,0.00035382184746233564,0.00012577496469547101,0.0,0.00012602549683803278 +104007,50.0,the Greater Atlanta and Macon Area,G1300890021303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,45035.0,,14930.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.008966861096197787,0.010270515009348549,0.0,0.019237376105546336,0.006080419142703504,0.0011818016823952392,0.006428906481868358,0.00036756485145500667,0.005178683947124226,0.004041061766874604,0.0011818016823952392,0.002795214150362425,0.00036756485145500667,0.000581218645110512,0.0020393573758289,0.0036336923315059334,0.004597465302013715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006862153522806849,0.0,0.0,0.0010685616098190976,0.0009747561868403415,0.0017547769620997824,0.0004815646657915717,0.00014083277243612604,0.00033309967671595915,4.3801915204220524e-05,6.926257967122012e-05,0.00013625785452889446,0.0002427819307088601,0.00030717556704293027,0.0,0.0,0.0,0.0005546379804078586,0.00010780047937202996,0.000586425972231423,3.3528186477828216e-05,0.0004723843436106423 +104008,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6407.0,,566.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015103138735534929,0.00044901670333069994,0.0,0.0019593305768841928,0.0013395237662818232,0.0002029631589562604,0.00037358785208045165,0.0,4.325579956565778e-05,0.0008905070629511231,0.0002029631589562604,0.00037358785208045165,0.0,4.325579956565778e-05,0.00044901670333069994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9999015920324905e-05,0.0,0.0,0.00017998361041874326,8.889843104046754e-05,0.00020998262633906817,0.0001061214354842894,2.4187053281178244e-05,4.4520342164255155e-05,0.0,5.154779489020466e-06,2.9999015920324905e-05,0.0,0.0,0.0,0.0,0.0,0.0001435575608352701,2.1751682779065988e-05,4.003763289039979e-05,0.0,4.6357498343323195e-06 +104009,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,127491.0,,11104.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006186867774636066,0.0018883366823198835,0.0,0.00807520445695595,0.004149241449159337,0.0014302018735871393,0.0010067831125148584,0.0,0.0014889780216946144,0.0038725768895608334,0.0014302018735871393,0.0006692856828841531,0.0,0.00021480332860393967,0.0002766645595985039,0.0003374974296307051,0.0012741746930906746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012616733134701913,0.0,0.0,0.0007372776192279677,0.00032628554707385036,0.0008634449505749868,0.00046148784383558464,0.00017043451885243044,7.975754013737904e-05,0.0,2.5597716402573565e-05,1.848506650835081e-05,2.2549554023741204e-05,8.513271081492713e-05,0.0,0.0,0.0,0.0004436595503048838,0.00015292499312360598,0.0001076507473536859,0.0,0.00015920965979281102 +104010,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302010950300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,95857.0,,1781.0,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,285525.89887641044,0.0,0.0,0.016595961549765614,0.001233117917434947,0.0,0.017829151634223297,0.012220330627431927,0.002257095802990309,0.0017928453457503595,0.0008071159822433692,0.0007516195417618642,0.012220330627431927,0.002257095802990309,0.0008870048764085523,0.0008071159822433692,0.00042434209366872417,0.0,0.000905840469341807,0.00032727744809314007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.23915726430854e-05,0.0,0.0,0.001977712633440711,0.0005288846949105853,0.0020601042060837964,0.0014562761063420216,0.00026897428456159467,0.0001057028690224632,9.618264479271245e-05,5.0568128700031224e-05,0.0,6.052431789173103e-05,2.1867254751354376e-05,0.0,0.0,0.0,0.0014120220098965957,0.00026080055028243545,0.00020715782295263282,9.325979518988228e-05,8.684735040259513e-05 +104011,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300750960300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,25926.0,,204.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006225196026210192,0.0001618577433078246,0.0,0.006386971062444277,0.003985736590570964,0.0011892450132975014,0.0010502144223417259,0.0,0.0001618577433078246,0.003985736590570964,0.0011892450132975014,0.0010502144223417259,0.0,0.0,0.0,0.0,0.0001618577433078246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0812660072319332e-05,0.0,0.0,0.0007418418035617903,0.00021156675854141875,0.0007526544636341096,0.0004749707492619205,0.00014171949956708003,0.00012515155473278967,0.0,0.0,0.0,0.0,1.0812660072319332e-05,0.0,0.0,0.0,0.00046968780763741023,0.00014014320072250672,0.0001237595356265659,0.0,1.907366602781457e-05 +104012,50.0,the Greater Atlanta and Macon Area,G1300590002100,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,9968.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007921738469360052,0.0,0.0,0.0007921738469360052,0.00038361856089880555,0.00034224971846458756,6.627519397317448e-05,0.0,0.0,0.00038361856089880555,0.00034224971846458756,6.627519397317448e-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,9.44000651964509e-05,2.9527836997943028e-05,9.44000651964509e-05,4.571422964729785e-05,4.0784476616449095e-05,7.89773943708661e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.571422964729785e-05,4.0784476616449095e-05,7.89773943708661e-06,0.0,0.0 +104013,50.0,the Greater Atlanta and Macon Area,G1300670031002,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,76731.0,,1961.0,,3.20458438519356,Mercantile,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,120171.9144447585,0.0,0.0,0.007289117140270558,0.000571297031824674,0.0,0.007860414172095232,0.00566258051677951,0.0016415108080138595,0.0005563228473018624,0.0,0.0,0.005091283484954835,0.0016415108080138595,0.0005563228473018624,0.0,0.0,0.000571297031824674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.817048598696622e-05,0.0,0.0,0.0008686306144644318,0.0002859426354610787,0.000906801100451398,0.0006067188408203823,0.00019561580838611128,6.629596525793824e-05,0.0,0.0,3.817048598696622e-05,0.0,0.0,0.0,0.0,0.0,0.0006532523772397594,0.00018936964064745433,6.417908256418425e-05,0.0,0.0 +104014,50.0,the Greater Atlanta and Macon Area,G1301350050435,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,82929.0,,4383.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007247383814643087,0.001276845373164211,0.0,0.008524259561406736,0.005172897346644075,0.0028791134907044953,0.0004721879768592899,0.0,0.0,0.0038960519734798646,0.0028791134907044953,0.0004721879768592899,0.0,0.0,0.001276845373164211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.53122156096781e-05,0.0,0.0,0.0008636582718581792,0.00034145896217962915,0.0009489704874678574,0.00046428581686079476,0.00034309900585662175,5.62698295711261e-05,0.0,0.0,8.53122156096781e-05,0.0,0.0,0.0,0.0,0.0,0.0005758772220980922,0.00032051977219452974,5.256673044135626e-05,0.0,0.0 +104015,35.0,Eastern Counties in South Carolina and Georgia,G1301790010204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,32158.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.003842715932867172,0.0,0.0,0.003842715932867172,0.0026055992277675397,0.000938817585021471,0.0002982687464787229,0.0,0.0,0.0026055992277675397,0.000938817585021471,0.0002982687464787229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004579275218838797,0.00013248631519478628,0.0004579275218838797,0.0003105032009232788,0.00011187670848443929,3.554399292494722e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003105032009232788,0.00011187670848443929,3.554399292494722e-05,0.0,0.0 +104016,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6130.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010968612119306952,0.0,0.0,0.0010968612119306952,0.0006284910533449972,0.00024291067557234589,0.00018650445128213822,0.0,3.8872324657474485e-05,0.0006284910533449972,0.00024291067557234589,0.00018650445128213822,0.0,3.8872324657474485e-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.00013070615016765955,3.208149960917624e-05,0.00013070615016765955,7.489338222922974e-05,2.8946159179793096e-05,2.2224579145534023e-05,0.0,4.6321739239028785e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.489338222922974e-05,2.8946159179793096e-05,2.2224579145534023e-05,0.0,4.6321739239028785e-06 +104017,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,56382.0,,4774.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004971854491965595,0.0013907159974563424,0.0,0.006362570489421939,0.0046890459076006875,0.0012705884116800343,0.00040296654374065335,0.0,0.0,0.003298329910144346,0.0012705884116800343,0.00040296654374065335,0.0,0.0,0.0013907159974563424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.291870483489303e-05,0.0,0.0,0.0005924880101610478,0.00021638122113302338,0.0006854067149959409,0.0003930567413978161,0.00015141400477156183,4.8020883565316274e-05,0.0,0.0,9.291870483489301e-05,0.0,0.0,0.0,0.0,0.0,0.0005051265926777561,0.00013687389881328354,4.3409495495214965e-05,0.0,0.0 +104018,50.0,the Greater Atlanta and Macon Area,G1301350050511,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,12996.0,,2536.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011254185525430588,0.0007464632939790249,0.0,0.0018719125361283814,0.0009511629679847025,0.000438216888324898,0.00048253267981878084,0.0,0.0,0.00020469967400567755,0.000438216888324898,0.00048253267981878084,0.0,0.0,0.0007464632939790249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.987529740006867e-05,0.0,0.0,0.00013411542513709138,9.372836465193878e-05,0.00018399072253716005,2.439393214432111e-05,5.222203254704065e-05,5.7503117706920655e-05,0.0,0.0,4.987529740006866e-05,0.0,0.0,0.0,0.0,0.0,9.349003137296831e-05,4.3072440808395906e-05,4.7428250355795835e-05,0.0,0.0 +104019,50.0,the Greater Atlanta and Macon Area,G1302550160900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,81482.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007259994644997166,0.0,0.0,0.007259994644997166,0.0035882287683274097,0.0015499785660654792,0.0021217873106042775,0.0,0.0,0.0035882287683274097,0.0015499785660654792,0.0021217873106042775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008651590302769318,0.0002820512581400521,0.0008651590302769318,0.0004276020401416071,0.00018470784328901703,0.00025284914684630766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004276020401416071,0.00018470784328901703,0.00025284914684630766,0.0,0.0 +104020,50.0,the Greater Atlanta and Macon Area,G1301350050308,ComStock 90.1-2004,gen1_t12_incandescent,100001_200000,Electricity,275603.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,863994.0691636442,0.06614792416821964,0.011204522702148492,0.045274058989345424,0.0,0.0,0.12262650585971357,0.08225688910190634,0.007459600129492023,0.032707527885210905,0.0,0.00020248874310430415,0.004904442231538195,0.007459600129492023,0.032707527885210905,0.0,0.00020248874310430415,0.0,0.0,0.0,0.011204522702148492,0.0,0.0,0.06614792416821964,0.0,0.0,0.0,0.0,0.0,0.0,0.005395222929414077,0.0018271679000698895,0.005395222929414077,0.0005844529908354077,0.0008889462655064113,0.0038976934772353513,0.0,2.4130195836906856e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0036190728185029,0.0003282015203869366,0.0014390396527535238,0.0,8.908937770716402e-06 +104021,50.0,the Greater Atlanta and Macon Area,G1300130180303,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,29902.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.0,0.005227583474577929,0.00475141555401828,0.0,0.0,0.00997899902859621,0.008987901524601726,0.000194135877724159,0.00078566069075601,0.0,1.1300935514314089e-05,0.0037603180500237966,0.000194135877724159,0.00078566069075601,0.0,1.1300935514314089e-05,0.0,0.0,0.0,0.005227583474577929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005662172659727222,0.0001971629844524484,0.0005662172659727222,0.0004481100382120273,2.3134807861464752e-05,9.362570864295253e-05,0.0,1.3467112562776158e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0005099815135274101,1.1015442089651288e-05,4.457908523964333e-05,0.0,6.412251160173836e-07 +104022,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,30608.0,,2515.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002880925411984254,0.0007403560623257818,0.0,0.0036212814743100358,0.0011530391982109913,0.0009229592197971134,0.001545252366695633,0.0,0.0,0.0004126831358852094,0.0009229592197971134,0.001545252366695633,0.0,0.0,0.0007403560623257818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.946661597692445e-05,0.0,0.0,0.00034331443903173723,0.00016314061011926684,0.00039278105500866167,4.917866970971174e-05,0.00010998730667434154,0.00018414480542527673,0.0,0.0,4.946661597692445e-05,0.0,0.0,0.0,0.0,0.0,0.00012506400177742167,0.00010010845570930183,0.00016760526878430068,0.0,0.0 +104023,50.0,the Greater Atlanta and Macon Area,G1300630040611,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,27350.0,,1591.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006577197332044684,0.0012624407735567884,0.0,0.00783972081267521,0.0054084636730345305,0.0011142296974159494,0.0011088537376228945,0.0,0.00020817370460183678,0.004354196604079578,0.0011142296974159494,0.0011088537376228945,0.0,0.0,0.0010542670689549516,0.0,0.00020817370460183678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.435097447672401e-05,0.0,0.0,0.0007837960711073109,0.0003403430681254976,0.0008681470455840348,0.0005188839590502928,0.00013278130715202566,0.00013214066099964433,0.0,0.0,7.044168446375791e-05,0.0,1.3909290012966087e-05,0.0,0.0,0.0,0.0005989169603211006,0.00012338643722486912,0.00012279111964621586,0.0,2.3052528391849435e-05 +104024,50.0,the Greater Atlanta and Macon Area,G1301170130303,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,194616.0,,25915.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008980818127207987,0.004407023173845484,0.0,0.013387823570692051,0.005896604027828381,0.0020783706960200094,0.004201191408120091,0.0,0.0012116751690849886,0.004979164206509169,0.0020783706960200094,0.0017057671507776,0.0,0.00021751607390120775,0.0009174398213192124,0.002495424257342491,0.0009941590951837809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002944511293296224,0.0,0.0,0.0010702261339493632,0.0005394256680261382,0.0013646772632789858,0.000593357039809915,0.0002476752789566461,0.0002032728597034925,0.0,2.5920955479309455e-05,6.129788313404512e-05,0.00016672943657109826,6.642380962447904e-05,0.0,0.0,0.0,0.0006010656926307785,0.00021185708181372542,0.0004282451410470856,0.0,0.00012351115511783882 +104025,50.0,the Greater Atlanta and Macon Area,G1301350050423,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,57357.0,,4611.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004915983895191224,0.001357401286547394,0.0,0.006273385181738618,0.002199861669025633,0.0017633940882597044,0.002310129424453279,0.0,0.0,0.0008424603824782391,0.0017633940882597044,0.002310129424453279,0.0,0.0,0.001357401286547394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.06936012816678e-05,0.0,0.0,0.0005858290216995319,0.00025718382809924604,0.0006765226229811997,0.00010039449929252515,0.0002101405243834178,0.0002752939980235888,0.0,0.0,9.06936012816678e-05,0.0,0.0,0.0,0.0,0.0,0.00023723335064093143,0.00019016463350786513,0.0002491246388324029,0.0,0.0 +104026,50.0,the Greater Atlanta and Macon Area,G1300890020200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,23359.0,,884.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005605802750976518,0.0007014386923830662,0.0,0.006307241443359584,0.002910710046107446,0.0009720562376580802,0.002283046063499842,0.0,0.000141511803167955,0.002350783156892335,0.0009720562376580802,0.002283046063499842,0.0,0.0,0.0005599268892151111,0.0,0.000141511803167955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6865171549290804e-05,0.0,0.0,0.0006680368780753042,0.0002601928516467607,0.000714902049624595,0.00028014004611361,0.00011583879118929241,0.00027206789687647643,0.0,0.0,3.741035389561357e-05,0.0,9.454817653677227e-06,0.0,0.0,0.0,0.00032991801511196393,0.0001101789114770242,0.00025877466794961085,0.0,1.6039829621134042e-05 +104027,50.0,the Greater Atlanta and Macon Area,G1301130140206,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,80517.0,,5197.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.009096347474191522,0.0019312989376481504,0.0,0.011027646411839672,0.005031909059466443,0.00112982654034639,0.0046175334156477905,0.0,0.0002482998995315065,0.003954354142788594,0.00112982654034639,0.004012128042632769,0.0,0.0,0.0010775549166778503,0.0006054053730150215,0.0002482998995315065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001290374233865466,0.0,0.0,0.0010839938189265903,0.0003843213558575156,0.0012130312423131368,0.0004712325975663734,0.00013463920432564097,0.0004781173994612061,0.0,0.0,7.199554004567382e-05,4.0449434272128e-05,1.6589860139259873e-05,0.0,0.0,0.0,0.0005535054960646893,0.00012427990893535556,0.0005079245458570382,0.0,2.731276687213658e-05 +104028,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,13235.0,,364.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030398984952882445,0.00028914392979261866,0.0,0.0033289597180071236,0.002177842665703443,0.0004665506029634332,0.000612859416408268,0.0,7.178974000571884e-05,0.0018886987359108243,0.0004665506029634332,0.000612859416408268,0.0,7.178974000571884e-05,0.00028914392979261866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.931724437646974e-05,0.0,0.0,0.0003622553063310173,0.00013322427179651543,0.00038157255070748704,0.00022507038975309786,5.55973930897366e-05,7.303256209802308e-05,0.0,8.554961390159788e-06,1.931724437646974e-05,0.0,0.0,0.0,0.0,0.0,0.0002496290287013553,5.347703747927788e-05,7.024726958366407e-05,0.0,8.228695006561459e-06 +104029,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,274161.0,,17398.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014112481172291032,0.0029587717923327313,0.0,0.017071235234262343,0.008426460647048615,0.0040366713845034225,0.0020185129958659115,0.0,0.002589590206844392,0.006301370448686766,0.0040366713845034225,0.0011848491322564486,0.0,0.002589590206844392,0.0021250901983618487,0.0008336638636094627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001976873212557102,0.0,0.0,0.0016817569734758715,0.0006287112825878148,0.0018794442947315817,0.0007509220784890064,0.00048104228927853715,0.00014119616999748547,0.0,0.00030859643571084225,0.00014198573537491552,5.570040124477e-05,0.0,0.0,0.0,0.0,0.0009277045960968528,0.00044441417971234566,0.00022222660995894052,0.0,0.00028509890896344234 +104030,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,126891.0,,1403.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011791621910915961,0.0004130821007670794,0.0,0.012204704011683038,0.004468682883402204,0.002685187103017505,0.0050508340252633285,0.0,0.0,0.004055600782635125,0.002685187103017505,0.0050508340252633285,0.0,0.0,0.0004130821007670794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7599155318539383e-05,0.0,0.0,0.001405184438360991,0.0004500841906276234,0.0014327835936795304,0.000483297984875844,0.0003199884765432351,0.0006018979769419115,0.0,0.0,2.7599155318539383e-05,0.0,0.0,0.0,0.0,0.0,0.0005246055549209738,0.000315230260683135,0.0005929477780754214,0.0,0.0 +104031,50.0,the Greater Atlanta and Macon Area,G1300670031001,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,9927.0,,730.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0023775802487838705,0.000578701394953934,0.0,0.0029562816437378047,0.0013603659488641286,0.0005547163435695349,0.0009685825405610293,0.0,7.25341036693726e-05,0.0007816645539101946,0.0005547163435695349,0.0009685825405610293,0.0,7.25341036693726e-05,0.000578701394953934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.866310986347021e-05,0.0,0.0,0.00028333536619804347,0.00011917979361282763,0.0003219984760615137,9.315067819034018e-05,6.61053432041701e-05,0.00011542562610169017,0.0,8.64386253020086e-06,3.866310986347021e-05,0.0,0.0,0.0,0.0,0.0,0.00014817118773108152,6.0419756572979306e-05,0.00010549810186762498,0.0,7.900421427538817e-06 +104032,50.0,the Greater Atlanta and Macon Area,G1300670030224,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,371528.0,,1826.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.019124499738511554,0.00031056501063364485,0.0,0.019435064749145196,0.01109716725738975,0.00441236001263292,0.0017320612767635385,0.0,0.0021934584719975722,0.01109716725738975,0.00441236001263292,0.0014214962661298937,0.0,0.0021934584719975722,0.0,0.00031056501063364485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0750218175527425e-05,0.0,0.0,0.0022790291748890153,0.0007531277399690105,0.0022997793930645428,0.0013224276861624575,0.0005258123002639509,0.00016939692576544048,0.0,0.0002613901498047244,0.0,2.0750218175527425e-05,0.0,0.0,0.0,0.0,0.001313143892718855,0.000522120958320013,0.00020495732240876873,0.0,0.00025955512155753044 +104033,50.0,the Greater Atlanta and Macon Area,G1301210011412,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,56365.0,,10063.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.004604971784356992,0.0029314775761351787,0.0,0.007536449360492171,0.005109264655821984,0.0017411362141696856,0.0006860788640999383,0.0,0.0,0.0021777870796868054,0.0017411362141696856,0.0006860788640999383,0.0,0.0,0.0029314775761351787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019586464571756093,0.0,0.0,0.0005487647810202344,0.0003440748931239228,0.0007446294267377953,0.00025952229587002785,0.00020748753261441396,8.175857209361494e-05,0.0,0.0,0.00019586464571756093,0.0,0.0,0.0,0.0,0.0,0.000504814486203613,0.00017203077988238745,6.778716167719224e-05,0.0,0.0 +104034,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,48556.0,,5872.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004646160876621819,0.001728407937080323,0.0,0.0063745688137021445,0.00253201527798567,0.0015593082063799807,0.0022832453293364914,0.0,0.0,0.0008036073409053474,0.0015593082063799807,0.0022832453293364914,0.0,0.0,0.001728407937080323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011548173840583501,0.0,0.0,0.0005536740829842393,0.00026866599931439167,0.0006691558213900743,9.576434595581211e-05,0.00018581976909180285,0.00027208996793662434,0.0,0.0,0.00011548173840583503,0.0,0.0,0.0,0.0,0.0,0.0002657925285033853,0.00016368482232047545,0.00023967847056621328,0.0,0.0 +104035,50.0,the Greater Atlanta and Macon Area,G1300890021906,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,200412.0,,46643.0,,7.614023970037612,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1142103.5955056418,0.0,0.0,0.03649652323748779,0.03228579396209849,0.0,0.06878231719958627,0.05835165656890447,0.0054860649011229164,0.001656233171717214,0.0007818575242868975,0.0025065772005775163,0.026065862606805976,0.0054860649011229164,0.001656233171717214,0.0007818575242868975,0.0025065772005775163,0.03228579396209849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021571475852524974,0.0,0.0,0.004349222607812966,0.003098310015996365,0.006506370193065463,0.0031062202337460414,0.0006537641226982635,0.0001973702181813118,9.317250299679007e-05,0.0002987041302000655,0.0021571475852524974,0.0,0.0,0.0,0.0,0.0,0.005519695969448906,0.0005189468834891691,0.00015666913503303682,7.39587542025238e-05,0.00023710627743365876 +104036,35.0,Eastern Counties in South Carolina and Georgia,G1300510010101,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,70414.0,,1403.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.006012554217814442,0.00041299003194818635,0.0,0.006425544249762626,0.0031462677480341913,0.0012113494501766265,0.0020679577411581067,0.0,0.0,0.0027332777160860053,0.0012113494501766265,0.0020679577411581067,0.0,0.0,0.00041299003194818635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7592583568868917e-05,0.0,0.0,0.0007165053665386949,0.00022962636049902253,0.0007440979501075638,0.00032571983234907603,0.00014435435429981788,0.0002464348371154678,0.0,0.0,2.7592583568868917e-05,0.0,0.0,0.0,0.0,0.0,0.00036434756198095895,0.0001402780227952909,0.00023947591928289352,0.0,0.0 +104037,50.0,the Greater Atlanta and Macon Area,G1301210010301,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,Electricity,166411.0,,7055.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014930719902016228,0.0020552599795549144,0.0,0.01698597988157114,0.010559199602937795,0.005063461267869856,0.0013633190107634906,0.0,0.0,0.00850393962338288,0.005063461267869856,0.0013633190107634906,0.0,0.0,0.0020552599795549144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001373210878133566,0.0,0.0,0.001779265246335145,0.0005496195224849277,0.0019165863341485017,0.001013398170223145,0.0006034029651087571,0.00016246411100324262,0.0,0.0,0.0001373210878133566,0.0,0.0,0.0,0.0,0.0,0.0011914306857559378,0.0005713276912578078,0.0001538279571347564,0.0,0.0 +104038,85.0,Rural Climate Zone 3A,G1300310110200,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,4149.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00036591075242659623,0.0,0.0,0.00036591075242659623,0.00023044449893422307,0.00011347576749944081,2.1960112393494566e-05,0.0,0.0,0.00023044449893422307,0.00011347576749944081,2.1960112393494566e-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,4.360380470500883e-05,1.4091643991099123e-05,4.360380470500883e-05,2.7460950136706395e-05,1.3522355306542123e-05,2.616879787641851e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7460950136706395e-05,1.3522355306542123e-05,2.616879787641851e-06,0.0,0.0 +104039,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300010950300,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,5750.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012811325722218718,0.0,0.0,0.001281132572221872,0.0005643930711970339,0.00037838486235733143,0.0002927830410371483,0.0,4.56543047040977e-05,0.0005643930711970339,0.00037838486235733143,0.0002927830410371483,0.0,4.56543047040977e-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.00015267086356014834,3.9045629344137896e-05,0.00015267086356014834,6.725797113844109e-05,4.509162045110902e-05,3.4890565332661414e-05,0.0,5.4405627298387285e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.725797113844108e-05,4.5091620451109014e-05,3.489056533266141e-05,0.0,5.440562729838728e-06 +104040,50.0,the Greater Atlanta and Macon Area,G1300630040412,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,253833.0,,16199.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02171489128003407,0.004768274820080379,0.0,0.026483166100114454,0.012307575571992937,0.004776254117717782,0.009399367100010029,0.0,0.0,0.00753930075191256,0.004776254117717782,0.009399367100010029,0.0,0.0,0.004768274820080379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003185874212671649,0.0,0.0,0.0025877230431696654,0.0010819097166784267,0.00290631046443683,0.0008984443916165859,0.000569177283969018,0.0011201050248071341,0.0,0.0,0.0003185874212671649,0.0,0.0,0.0,0.0,0.0,0.0013506555651809165,0.0005241547506312963,0.0010315035165574236,0.0,0.0 +104041,50.0,the Greater Atlanta and Macon Area,G1301210011422,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,15809.0,,1066.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0038850820818302264,0.0008455971219106789,0.0,0.004730679203740905,0.0020837220157881114,0.0010178759565096563,0.0015462914506300916,0.0,8.278978081304674e-05,0.0012381248938774325,0.0010178759565096563,0.0015462914506300916,0.0,8.278978081304674e-05,0.0008455971219106789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.649750934283189e-05,0.0,0.0,0.0004629760897164434,0.00021074896358134617,0.0005194735990592753,0.00014754443017531317,0.00012129788257632454,0.00018426791359770568,0.0,9.865863367100099e-06,5.649750934283189e-05,0.0,0.0,0.0,0.0,0.0,0.00022881250838664613,0.00011177246728246619,0.0001697975175357917,0.0,9.091105854371389e-06 +104042,35.0,Eastern Counties in South Carolina and Georgia,G1302450010504,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,56192.0,,1651.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0047706686093716005,0.00048612336375561204,0.0,0.005256791973127214,0.0015703257750408557,0.0014839652229191205,0.0022025009751672356,0.0,0.0,0.001084202411285244,0.0014839652229191205,0.0022025009751672356,0.0,0.0,0.00048612336375561204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.247922484488472e-05,0.0,0.0,0.0005685110383246242,0.00018578234660535426,0.0006009902631695089,0.00012920223328507951,0.0001768411681461372,0.0002624676368934075,0.0,0.0,3.247922484488472e-05,0.0,0.0,0.0,0.0,0.0,0.000179529740881536,0.0001696564472050069,0.00025180407508296584,0.0,0.0 +104043,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,26839.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006516903875288728,0.0,0.0,0.00651690387528873,0.0036070208999186763,0.001036319633953522,0.0017026078199973826,0.0,0.00017095552141914845,0.0036070208999186763,0.001036319633953522,0.0017026078199973826,0.0,0.00017095552141914845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007766104521244148,0.0002434261765431163,0.0007766104521244148,0.0004298437088400278,0.0001234967823481048,0.00020289742708843458,0.0,2.0372533847847778e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004298437088400277,0.00012349678234810477,0.00020289742708843453,0.0,2.037253384784777e-05 +104044,50.0,the Greater Atlanta and Macon Area,G1302550160400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5762.0,,915.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001383606636584874,0.000726168107431119,0.0,0.0021098574510897325,0.0014582084170977289,0.00028567023269556786,0.0003209034461085128,0.0,4.507535518792255e-05,0.0007320403096666099,0.00028567023269556786,0.0003209034461085128,0.0,4.507535518792255e-05,0.000726168107431119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.85208956637128e-05,0.0,0.0,0.00016488441375220013,8.843511202142355e-05,0.0002134053094159129,8.723724945428436e-05,3.404332387471453e-05,3.824206619394683e-05,0.0,5.371630431881707e-06,4.8520895663712796e-05,0.0,0.0,0.0,0.0,0.0,0.000147493101149038,2.8894627154941716e-05,3.245835360775155e-05,0.0,4.559227504181596e-06 +104045,50.0,the Greater Atlanta and Macon Area,G1300670030318,ComStock 90.1-2007,gen5_led,_1000,NaturalGas,1701.0,,376.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0003351290627916737,0.00029824170790394253,0.0,0.0006333707706956162,0.00046258066342394645,0.00010156428655186952,5.665434551142559e-05,0.0,1.2654182282114034e-05,0.0001769931378021179,0.00010156428655186952,5.665434551142559e-05,0.0,0.0,0.0002855875256218285,0.0,1.2654182282114034e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9925138342961052e-05,0.0,0.0,3.994030867025217e-05,3.1107218972564235e-05,5.986544701321322e-05,2.1093845151613935e-05,1.2104318619711172e-05,6.752001835913805e-06,0.0,0.0,1.9079728978991827e-05,0.0,8.454093639692294e-07,0.0,0.0,0.0,4.3722570533416246e-05,9.59973477830058e-06,5.354900914605779e-06,0.0,1.19605816048859e-06 +104046,50.0,the Greater Atlanta and Macon Area,G1301210001001,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,6102.0,,37.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011682374165677173,2.919559702997552e-05,0.0,0.0011974330135976932,0.000857672354676618,0.00016682016773218307,0.00014357948001143768,0.0,2.919559702997552e-05,0.000857672354676618,0.00016682016773218307,0.00014357948001143768,0.0,0.0,0.0,0.0,2.919559702997552e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.952496220807077e-06,0.0,0.0,0.00013921187461909346,4.707060934701913e-05,0.00014116437083990053,0.00010220369131327428,1.9878962910209665e-05,1.710950897973425e-05,0.0,0.0,0.0,0.0,1.952496220807077e-06,0.0,0.0,0.0,0.00010111027252450395,1.966628926537362e-05,1.6926464137178286e-05,0.0,3.4418443781243873e-06 +104047,50.0,the Greater Atlanta and Macon Area,G1302190030400,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,13013.0,,928.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029597553408348552,0.0007362583704273146,0.0,0.0036960137112621704,0.002325309378180628,0.000730965117707999,0.00045273852164896887,0.0,0.00018700069372457406,0.0017760517014778878,0.000730965117707999,0.00045273852164896887,0.0,0.0,0.0005492576767027407,0.0,0.00018700069372457406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.919201800428629e-05,0.0,0.0,0.0003527095007159098,0.00015911385410862742,0.000401901518720196,0.0002116493550095973,8.71079910391553e-05,5.3952154667157284e-05,0.0,0.0,3.669784223393229e-05,0.0,1.2494175770353997e-05,0.0,0.0,0.0,0.0002528522466617058,7.94845511647219e-05,4.923041786328216e-05,0.0,2.0334303030486103e-05 +104048,50.0,the Greater Atlanta and Macon Area,G1300890023112,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,585728.0,,8549.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.027650711398909386,0.0014537832542758093,0.0,0.029104494653185195,0.012425100406306023,0.006405110793355495,0.00419411699391349,0.0,0.006080166459610187,0.012425100406306023,0.006405110793355495,0.002740333739637681,0.0,0.006080166459610187,0.0,0.0014537832542758093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.713328410169606e-05,0.0,0.0,0.0032950824657270684,0.0008965204079929435,0.003392215749828765,0.001480675484006972,0.0007632848197553909,0.00032656033783190697,0.0,0.0007245618241327987,0.0,9.713328410169606e-05,0.0,0.0,0.0,0.0,0.0014481825502805057,0.0007465347868612063,0.0004888368581180906,0.0,0.0007086615545689626 +104049,50.0,the Greater Atlanta and Macon Area,G1301210009101,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,44233.0,,11120.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009210206957853755,0.0076496521085250724,0.0,0.01685985906637883,0.005699012336842485,0.0006333590640388611,0.005829040644293788,0.0003702902103535999,0.004328156810850097,0.005699012336842485,0.0006333590640388611,0.0020206384633938254,0.0003702902103535999,0.00048690688322498344,0.0,0.0038084021808999623,0.0038412499276251127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005111046076505422,0.0,0.0,0.0010975639876518847,0.0007747228087478989,0.0016086685953024269,0.0006791411674814012,7.547627356507833e-05,0.00024079589303844604,4.412682600118893e-05,5.8023827565770215e-05,0.0,0.00025445495753657833,0.000256649650113964,0.0,0.0,0.0,0.0005437662399445354,6.0431396956409256e-05,0.0005561727763143656,3.533091410779538e-05,0.00041296726797932133 +104050,35.0,Eastern Counties in South Carolina and Georgia,G1302450001601,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,54545.0,,19956.0,,7.56685751697572,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.011357216010177088,0.013727345892329988,0.0,0.025084561902507078,0.006598022173523171,0.0010305442635233154,0.014008631618653213,0.0002864495642363505,0.003160986002542041,0.006598022173523171,0.0010305442635233154,0.003083098114019088,0.0002864495642363505,0.0003591736148461802,0.0,0.010925533504634124,0.002801812387695861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009171823810810685,0.0,0.0,0.0013534189598841076,0.0013289862768013827,0.002270601340965176,0.0007862744090963863,0.0001228081022675302,0.0003674072447822804,3.41356782278875e-05,4.28020722496897e-05,0.0,0.0007299813753480404,0.00018720100573302792,0.0,0.0,0.0,0.0005972389732436329,9.328268102805266e-05,0.0012680316228772604,2.5928807016914344e-05,0.00028612574873897916 +104051,35.0,Eastern Counties in South Carolina and Georgia,G1300730030503,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,50203.0,,1586.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.004405339536003746,0.0004669730494258455,0.0,0.004872312585429591,0.00046985787241782956,0.0018232388205402246,0.0025792158924715374,0.0,0.0,2.884822991984062e-06,0.0018232388205402246,0.0025792158924715374,0.0,0.0,0.0004669730494258455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.119987467593705e-05,0.0,0.0,0.0005249773689778448,0.00018985206036853408,0.000556177243653782,3.43779809007053e-07,0.00021727249652446818,0.00030736109264436963,0.0,0.0,3.119987467593705e-05,0.0,0.0,0.0,0.0,0.0,5.363454249053232e-05,0.0002081237449261943,0.00029441895623705537,0.0,0.0 +104052,50.0,the Greater Atlanta and Macon Area,G1300670030318,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,NaturalGas,26106.0,,2319.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002408565688214844,0.0006754784778961627,0.0,0.003084044166111007,0.0019003849960218184,0.000848516873893035,0.00033514229619615357,0.0,0.0,0.0012249065181256554,0.000848516873893035,0.00033514229619615357,0.0,0.0,0.0006754784778961627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.513160787656782e-05,0.0,0.0,0.00028702386086493,0.00011737112409563254,0.0003321554687414978,0.00014596961160383485,0.00010111602533636011,3.9938223924735006e-05,0.0,0.0,4.513160787656782e-05,0.0,0.0,0.0,0.0,0.0,0.00020467387467375728,9.138634364578905e-05,3.6095250421951465e-05,0.0,0.0 +104053,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12829.0,,1573.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0010160272747922364,0.0004583679891151126,0.0,0.0014743648903079113,0.0010162095163888628,0.0003151260941666752,0.00014302927975237334,0.0,0.0,0.00055784152727375,0.0003151260941666752,0.00014302927975237334,0.0,0.0,0.0004583679891151126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.062495674722232e-05,0.0,0.0,0.000121076408749411,6.029823115342084e-05,0.00015170136549663333,6.647601934446453e-05,3.75524719971044e-05,1.7044297892468876e-05,0.0,0.0,3.062495674722232e-05,0.0,0.0,0.0,0.0,0.0,0.00010456052791291612,3.2424170639821405e-05,1.4716666943895808e-05,0.0,0.0 +104054,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,11782.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0028290781643267498,0.0,0.0,0.0028290781643267493,0.0020173082355754474,0.0001927074818125863,0.0005809344859448954,0.0,3.812796099382072e-05,0.0020173082355754474,0.0001927074818125863,0.0005809344859448954,0.0,3.812796099382072e-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.0003371337951643714,0.00011008745117985146,0.0003371337951643714,0.00024039731035064557,2.296444316005921e-05,6.92284329425991e-05,0.0,4.543608711067509e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002403973103506456,2.2964443160059212e-05,6.922843294259911e-05,0.0,4.54360871106751e-06 +104055,35.0,Eastern Counties in South Carolina and Georgia,G1301030030203,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,5661.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013592907569055174,0.0,0.0,0.0013592907569055174,0.0009124244374920396,0.0002229782708011728,0.00018228639052143353,0.0,4.168436516461094e-05,0.0009124244374920396,0.0002229782708011728,0.00018228639052143353,0.0,4.168436516461094e-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.00016198714002035774,5.173619886903768e-05,0.00016198714002035774,0.00010873392934010264,2.657239607513748e-05,2.1723130916024852e-05,0.0,4.967539919090983e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00010873392934010264,2.657239607513748e-05,2.1723130916024852e-05,0.0,4.967539919090983e-06 +104056,50.0,the Greater Atlanta and Macon Area,G1301210007200,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,80901.0,,27131.0,,7.614023970037612,Education,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,571051.7977528209,0.0,0.0,0.028644823331184465,0.018779879991704888,0.0,0.04742477548991209,0.04153399792530377,0.0029750855121586997,0.000795930093719789,0.0007317736105103508,0.0013881326822649505,0.02336941396941853,0.0029750855121586997,0.000795930093719789,0.0007317736105103508,0.0007727644794225678,0.018164583955885237,0.0,0.0006153682028423828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012547633100174528,0.0,0.0,0.0034135507621215247,0.0019989964146657786,0.004668314072138978,0.002784889958766013,0.00035453545305514375,9.48495212066751e-05,8.720411143672911e-05,9.208891767894431e-05,0.0012136527762501071,0.0,4.11153555517424e-05,0.0,0.0,0.0,0.004088448389768984,0.00029285607404048883,7.834832360442818e-05,7.20330040211172e-05,0.0001366424883970601 +104057,50.0,the Greater Atlanta and Macon Area,G1301390001004,ComStock 90.1-2007,gen3_t5_cfl,25001_50000,NaturalGas,50653.0,,4105.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004298623660427827,0.001195808609864289,0.0,0.005494401896692678,0.0035502485438810593,0.001503766534563655,0.0004404171918474014,0.0,0.0,0.0023544399340167704,0.001503766534563655,0.0004404171918474014,0.0,0.0,0.001195808609864289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.989669343054013e-05,0.0,0.0,0.0005122571172587174,0.000211162665183649,0.0005921538106892576,0.0002805732040376382,0.00017920040712497324,5.2483506096105994e-05,0.0,0.0,7.989669343054013e-05,0.0,0.0,0.0,0.0,0.0,0.0003826245774664973,0.0001620669729975259,4.746553371031783e-05,0.0,0.0 +104058,81.0,the Columbus-Albany Area,G1300950000800,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,4435.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001197184892376475,0.0,0.0,0.001197184892376475,0.0006033481029282477,0.00027971532338633766,0.0002728506362659753,0.0,4.1270829795914405e-05,0.0006033481029282477,0.00027971532338633766,0.0002728506362659753,0.0,4.1270829795914405e-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.0001426672236406117,4.1810888949665995e-05,0.0001426672236406117,7.190033827000085e-05,3.333337135423479e-05,3.251531404424029e-05,0.0,4.918199972135768e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.190033827000085e-05,3.333337135423479e-05,3.251531404424029e-05,0.0,4.918199972135768e-06 +104059,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010702,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,317235.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.028265280848215755,0.0,0.0,0.028265280848215755,0.013475038885163848,0.005014190635343871,0.009776082017314329,0.0,0.0,0.013475038885163848,0.005014190635343871,0.009776082017314329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033683202012505,0.001073039513031607,0.0033683202012505,0.0016057949656777793,0.0005975316396339994,0.001164997253161213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016057949656777793,0.0005975316396339994,0.001164997253161213,0.0,0.0 +104060,50.0,the Greater Atlanta and Macon Area,G1301210003000,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,273817.0,,6320.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013089988959558005,0.0010748499700064412,0.0,0.014164821199203023,0.006199669095581342,0.003939296239584492,0.002053955988344597,0.0,0.0019718998756925927,0.006199669095581342,0.003939296239584492,0.0009791060183381559,0.0,0.0019718998756925927,0.0,0.0010748499700064412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.181489608133423e-05,0.0,0.0,0.0015599080260299111,0.00047689680663444753,0.0016317229221112454,0.0007388022717823195,0.0004694381209963058,0.00011667812257585356,0.0,0.000234987397783422,0.0,7.181489608133423e-05,0.0,0.0,0.0,0.0,0.0007141736581421832,0.00045378899463117175,0.00023660637999285908,0.0,0.00022715388934503141 +104061,85.0,Rural Climate Zone 3A,G1300170960500,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,33573.0,,4890.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006909215127759907,0.003364096960458252,0.0,0.010273312088218158,0.004117802135861309,0.000290250722700178,0.004029156251686014,0.0003826260453682849,0.001453476932602374,0.004117802135861309,0.000290250722700178,0.0006650592912277613,0.0003826260453682849,0.001453476932602374,0.0,0.003364096960458252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022476975396298074,0.0,0.0,0.0008233554224637038,0.0004676658681231568,0.0010481251764266847,0.000490709097126241,3.4588517217972615e-05,7.925360023777118e-05,4.559667392090038e-05,0.00017320753396081863,0.0,0.00022476975396298074,0.0,0.0,0.0,0.0,0.0004201149593313281,2.961256188128338e-05,0.00041107094487981684,3.903706885017217e-05,0.00014828964148408427 +104062,50.0,the Greater Atlanta and Macon Area,G1301210010601,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,113330.0,,15601.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.010274425296415039,0.002653171282896701,0.0,0.01292759657931174,0.007589268441516562,0.0028287018609552237,0.0010936973441959574,0.0,0.0014159112022825765,0.006379366308573579,0.0028287018609552237,0.0007864656415092823,0.0,0.00027987375501553353,0.0012099021329429831,0.00030723170268667495,0.0011360374472670432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017726942059728386,0.0,0.0,0.0012243825214215268,0.0005292248996886222,0.0014016519420188107,0.0007602162048604512,0.00033709069042280927,9.372152284746494e-05,0.0,3.335199039942363e-05,8.08385992524596e-05,2.0527429297712744e-05,7.590339204711154e-05,0.0,0.0,0.0,0.0008228530944860362,0.00030669702852153825,0.00011858221263853011,0.0,0.00015351768398942585 +104063,50.0,the Greater Atlanta and Macon Area,G1300670030411,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,2466.0,,414.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0005276711304567813,0.0003284297898187898,0.0,0.0008561009202755712,0.0005025281800400318,0.00016549685455235417,0.00015582012692485518,0.0,3.217305168459058e-05,0.0002062714419058327,0.00016549685455235417,0.00015582012692485518,0.0,0.0,0.0002962567381341992,0.0,3.217305168459058e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1946350840514175e-05,0.0,0.0,6.287765739929386e-05,3.753645529088921e-05,8.482400823980802e-05,2.457944789245124e-05,1.972071982068762e-05,1.856763425396076e-05,0.0,0.0,1.9796481669786398e-05,0.0,2.1498691707277797e-06,0.0,0.0,0.0,4.979138963047758e-05,1.6397723938542735e-05,1.543893648186632e-05,0.0,3.187763424334394e-06 +104064,81.0,the Columbus-Albany Area,G1302150000200,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,33357.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.0029234918959191673,0.0,0.0,0.0029234918959191673,0.0010656965786877293,0.0007296453897278838,0.0011281499275035544,0.0,0.0,0.0010656965786877293,0.0007296453897278838,0.0011281499275035544,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.596571552095892e-10,0.0,0.0,0.0003483868033499336,0.00011272363844123114,0.00034838766300708876,0.00012699697403240024,8.695041202650298e-05,0.00013443941729103043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001269972874020697,8.695062657981876e-05,0.00013443974902520032,0.0,0.0 +104065,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,42964.0,,30193.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009460581376669256,0.020769745006265876,0.0,0.030230254662964123,0.010648550976571835,0.0011136677099304086,0.013573291394588453,0.0003711508500057872,0.004523522011896619,0.005754667034350599,0.0011136677099304086,0.0017090869093020116,0.0003711508500057872,0.0005119371531094317,0.004893883942221235,0.011864204485286441,0.004011584858787188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001387710638612335,0.0,0.0,0.0011273977892991395,0.0017032190603173758,0.0025151084279114743,0.0006857716914394992,0.0001327134627567056,0.00020366832930785,4.422927419924984e-05,6.100648487618267e-05,0.00032698017278043925,0.0007926954701628375,0.00026803020376782184,0.0,0.0,0.0,0.0008859422656148654,9.265535717006097e-05,0.001129275950918516,3.087915207077959e-05,0.00037634973515134485 +104066,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,443136.0,,96215.0,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,3405302.3287806446,0.0,0.0,0.10015420728485597,0.08510140068018517,0.0,0.18525560796504115,0.1492483672299747,0.017087856938869217,0.005948289455628068,0.0006502238493036528,0.012320778274012739,0.07290530013192176,0.017087856938869217,0.005948289455628068,0.0006502238493036528,0.0035624446918805,0.07634306709805293,0.0,0.008758333582132238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005685979778093085,0.0,0.0,0.011935184511012008,0.008286023961636288,0.017621164289105092,0.00868798458391638,0.002036327089915664,0.0007088462292543447,7.748592720450809e-05,0.00042452969136822454,0.005100798955688681,0.0,0.0005851808224044042,0.0,0.0,0.0,0.014196223411149619,0.0016253647475295851,0.0005657900826222386,6.184806710648195e-05,0.001171929209165881 +104067,50.0,the Greater Atlanta and Macon Area,G1301210001900,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,NaturalGas,791072.0,,97201.0,,5.759960461090961,Office,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.0,0.0,0.12242363495936964,0.05089772114583808,0.0,0.17332130151131636,0.11740383583535924,0.019056543722833223,0.036153767278162975,0.0,0.0007071546749609199,0.06721332395837347,0.019056543722833223,0.036153767278162975,0.0,0.0,0.05019051187698579,0.0,0.0007071546749609199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034006876020766584,0.0,0.0,0.014588986549658024,0.008082836872419542,0.01798967415173468,0.008009681133156634,0.0022709312637845844,0.004308374152716809,0.0,0.0,0.0033534360210919502,0.0,4.724793334066179e-05,0.0,0.0,0.0,0.012185788662012588,0.0019779508291407066,0.0037525363992800074,0.0,7.339826130137963e-05 +104068,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,92335.0,,5145.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009170852291517333,0.0015144093123664415,0.0,0.010685261603883774,0.003055579961424479,0.002955593224106564,0.004674088418352729,0.0,0.0,0.0015411706490580383,0.002955593224106564,0.004674088418352729,0.0,0.0,0.0015144093123664415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010118346999394556,0.0,0.0,0.0010928739202614604,0.00040584349158183635,0.0011940573902554058,0.00018365852545524825,0.00035221271162716824,0.0005570026831790437,0.0,0.0,0.00010118346999394556,0.0,0.0,0.0,0.0,0.0,0.000341455171591596,0.000330281846403321,0.0005223203722604884,0.0,0.0 +104069,50.0,the Greater Atlanta and Macon Area,G1301350050524,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,10318.0,,616.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0024774076867872144,0.0004884679775043496,0.0,0.0029659583713653034,0.0011104251720239415,0.00041444514650766954,0.0012801400873370004,0.0,0.00016078255134921365,0.0007827397458688056,0.00041444514650766954,0.0012801400873370004,0.0,0.0,0.000327685426155136,0.0,0.00016078255134921365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.26391388565372e-05,0.0,0.0,0.00029523163731850555,0.00012200774753155411,0.0003278707761750428,9.327876796362212e-05,4.938925467727287e-05,0.00015255375851024337,0.0,0.0,2.1895744691771145e-05,0.0,1.0743394164766055e-05,0.0,0.0,0.0,0.00012275154181216712,4.581468613293382e-05,0.00014151261464089997,0.0,1.7773647943010048e-05 +104070,85.0,Rural Climate Zone 3A,G1302850960901,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,12988.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003381313295684106,0.0,0.0,0.0033813132956841056,0.0011668313963141492,0.0012353128533702953,0.0009046499725605445,0.0,7.443636636537668e-05,0.0011668313963141492,0.0012353128533702953,0.0009046499725605445,0.0,7.443636636537668e-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.00040294386051188756,0.000135289445314024,0.00040294386051188756,0.00013904879739993906,0.0001472095859062581,0.00010780519889144692,0.0,8.870422289477258e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001390487973999391,0.00014720958590625811,0.00010780519889144693,0.0,8.870422289477258e-06 +104071,81.0,the Columbus-Albany Area,G1302150000200,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,3976.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00023320849648305852,0.0,0.0,0.00023320849648305846,0.00013412981511711205,7.350411063935942e-05,2.557457072658704e-05,0.0,0.0,0.00013412981511711205,7.350411063935942e-05,2.557457072658704e-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,2.7792217748970128e-05,8.737223469362931e-06,2.7792217748970128e-05,1.5984687884794487e-05,8.759724791939008e-06,3.047805072236631e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.598468788479449e-05,8.75972479193901e-06,3.0478050722366314e-06,0.0,0.0 +104072,50.0,the Greater Atlanta and Macon Area,G1301510070113,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,31796.0,,1607.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002679072964807462,0.00046820903533294423,0.0,0.0031472820001404063,0.0018569203752263955,0.0009410956049793024,0.0003492660199347082,0.0,0.0,0.001388711339893451,0.0009410956049793024,0.0003492660199347082,0.0,0.0,0.00046820903533294423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.128279956763484e-05,0.0,0.0,0.00031925873699428114,0.0001033621354769019,0.00035054153656191594,0.00016548941900725053,0.00011214811921262988,4.1621198774400694e-05,0.0,0.0,3.128279956763484e-05,0.0,0.0,0.0,0.0,0.0,0.00020682217912978596,0.0001048184113804843,3.890094605164566e-05,0.0,0.0 +104073,50.0,the Greater Atlanta and Macon Area,G1301210001300,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,443710.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,863994.0691636442,0.0,0.0,0.06842590887967023,0.0,0.0,0.06842590887967025,0.0205202059505567,0.014730578364288609,0.032917495991433385,0.0,0.0002576285733915372,0.0205202059505567,0.014730578364288609,0.032917495991433385,0.0,0.0002576285733915372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008154181131922353,0.002722794484179278,0.008154181131922353,0.002445352629212992,0.0017554140840367117,0.003922713327717649,0.0,3.0701090955000696e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0024453526292129916,0.0017554140840367115,0.003922713327717648,0.0,3.0701090955000696e-05 +104074,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,NaturalGas,51162.0,,4954.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00531401308963187,0.0014433534452819661,0.0,0.006757366534913835,0.004828734091414908,0.001486392835685261,0.00044226998141310434,0.0,0.0,0.0033853806461329426,0.001486392835685261,0.00044226998141310434,0.0,0.0,0.0014433534452819661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.643724331194798e-05,0.0,0.0,0.0006332596127431492,0.00024807387062056086,0.0007296968560550972,0.00040342859545097846,0.00017713026589015175,5.27043709591209e-05,0.0,0.0,9.643724331194798e-05,0.0,0.0,0.0,0.0,0.0,0.0005214327307874019,0.00016050870904491877,4.7758696127736935e-05,0.0,0.0 +104075,50.0,the Greater Atlanta and Macon Area,G1302970110603,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,218512.0,,27507.0,,9.729435225087556,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.052220785900393196,0.02433004666815769,0.0,0.07655083256855089,0.05662563519635664,0.01051332011965852,0.0033733993236954927,0.0006521604116118894,0.005386317517228343,0.03603177052430411,0.01051332011965852,0.0033733993236954927,0.0006521604116118894,0.0016501355211231826,0.02059386467205253,0.0,0.00373618199610516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016255893683592474,0.0,0.0,0.0062230539220640745,0.0030618987667287772,0.007848643290423321,0.004293839072201613,0.0012528528032754766,0.00040200172268670256,7.771674319565786e-05,0.00019664358070462412,0.0013759598541227393,0.0,0.0002496295142365082,0.0,0.0,0.0,0.005805742365399546,0.0010779151140301226,0.00034586962779446627,6.686503944021392e-05,0.0005522511437589726 +104076,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,3731.0,,273.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.0005658817985243413,0.00021636170490202817,0.0,0.0007822435034263695,0.00044686631941347795,0.00018294804711134805,0.0001237297823140039,0.0,2.8699354587539677e-05,0.0002305046145114498,0.00018294804711134805,0.0001237297823140039,0.0,2.8699354587539677e-05,0.00021636170490202817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.445693773514115e-05,0.0,0.0,6.743099746748812e-05,3.544677300036894e-05,8.188793520262926e-05,2.7467142639855222e-05,2.1800258169845624e-05,1.4743755073277148e-05,0.0,3.4198415845101403e-06,1.445693773514115e-05,0.0,0.0,0.0,0.0,0.0,4.677950030659821e-05,1.9151629590633957e-05,1.2952458348819349e-05,0.0,3.00434695657775e-06 +104077,85.0,Rural Climate Zone 3A,G1300310110500,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,59062.0,,718.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006644192224199037,0.00026693789136587827,0.0,0.0069111688639886875,0.004171151573793396,0.0005715392506382211,0.002050605334442393,0.0,0.00011787270511467585,0.004171151573793396,0.0005715392506382211,0.001783667443076515,0.0,0.00011787270511467585,0.0,0.00026693789136587827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7836128739975078e-05,0.0,0.0,0.0007917777935914861,0.0002703629229067475,0.0008096139223314611,0.0004970694823977529,6.810942121347417e-05,0.000212556805240586,0.0,1.4046702327551758e-05,0.0,1.7836128739975078e-05,0.0,0.0,0.0,0.0,0.0004886325964185623,6.69533827898018e-05,0.0002402196590250238,0.0,1.3808284098073023e-05 +104078,50.0,the Greater Atlanta and Macon Area,G1301210001900,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,27081.0,,2611.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0021719553485947574,0.0007607675451173698,0.0,0.0029327228937121273,0.002035274151124874,0.0006423408809095755,0.00025510786167767753,0.0,0.0,0.0012745066060075045,0.0006423408809095755,0.00025510786167767753,0.0,0.0,0.0007607675451173698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0829284985302396e-05,0.0,0.0,0.00025882935518290053,0.00010956953592359319,0.00030965864016820293,0.0001518814478496069,7.654700457862029e-05,3.040090275467334e-05,0.0,0.0,5.0829284985302396e-05,0.0,0.0,0.0,0.0,0.0,0.00021489934400487743,6.782311555359282e-05,2.693618060973265e-05,0.0,0.0 +104079,50.0,the Greater Atlanta and Macon Area,G1301210008500,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,21252.0,,5089.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56080.226740887294,0.0,0.0,0.0017669537736917744,0.0014826568829544174,0.0,0.0032496106566461923,0.002409325028200788,0.0006851069089179302,0.0001551483459280363,0.0,0.0,0.0009266681452463706,0.0006851069089179302,0.0001551483459280363,0.0,0.0,0.0014826568829544174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.906348174639859e-05,0.0,0.0,0.0002105629771434366,0.00015088824738131623,0.0003096264588898351,0.00011042847096072316,8.164228886525522e-05,1.8488597779913263e-05,0.0,0.0,9.906348174639859e-05,0.0,0.0,0.0,0.0,0.0,0.0002295631248225819,6.527773588364228e-05,1.4782704153823583e-05,0.0,0.0 +104080,85.0,Rural Climate Zone 3A,G1301670960200,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,NaturalGas,106063.0,,8103.0,,7.614023970037612,Education,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,285525.89887641044,0.0,0.0,0.022222030474990117,0.0056084601716777024,0.0,0.027830490646667823,0.021160597904636442,0.003934257411300028,0.0013703795946726875,0.0007599187493761336,0.000605336986682527,0.01640421377036463,0.003934257411300028,0.0008061778109478432,0.0007599187493761336,0.00031746273300148255,0.004756384134271814,0.0005642017837248443,0.0002878742536810443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037472400112364577,0.0,0.0,0.002648158606556077,0.0010120079277754221,0.0030228826076797227,0.001954860062345231,0.00046883823851590837,9.607073083977571e-05,9.055812333209544e-05,3.783145152306627e-05,0.00031779334061709125,3.769661250446712e-05,1.923404800208741e-05,0.0,0.0,0.0,0.002298414504657258,0.00042732981080870176,0.00014884741685828817,8.254059189624384e-05,6.575028345923015e-05 +104081,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,8988.0,,561.0,,4.088175128053588,Healthcare,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,12264.525384160763,0.0,0.0,0.0010111401183325003,0.00020858276516512163,0.0,0.0012197228834976222,0.0007228905938919765,0.00012019761054100081,0.00034137361343204936,0.0,3.522231720882325e-05,0.0005638670627313488,0.00012019761054100081,0.0002918531278513276,0.0,3.522231720882325e-05,0.00015902353116062777,4.95204855807218e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.393526204552877e-05,0.0,0.0,0.0001204957948543305,4.601512171196704e-05,0.0001344310568998593,6.71950491174638e-05,1.4323738480097079e-05,3.477962547778569e-05,0.0,4.197381778983959e-06,1.0624245854514226e-05,3.3084274371513596e-06,0.0,0.0,0.0,0.0,7.967297152054688e-05,1.3247510594807912e-05,3.762429669253956e-05,0.0,3.88200745669903e-06 +104082,50.0,the Greater Atlanta and Macon Area,G1302250040200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,12969.0,,301.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0006676012985492482,5.113436233543228e-05,0.0,0.0007187356608846805,0.0003941636647291939,0.00021675366836014552,3.1524582604853885e-05,0.0,7.627601482906716e-05,0.0003839332461898234,0.00021675366836014552,3.1524582604853885e-05,0.0,3.5372071033005344e-05,1.0230418539370468e-05,0.0,4.090394379606181e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.416822741203708e-06,0.0,0.0,7.955693312417279e-05,3.210819539777046e-05,8.29737558653765e-05,4.575268451041982e-05,2.5830173092263892e-05,3.756731922948483e-06,0.0,4.215230700946132e-06,6.836014985001871e-07,0.0,2.7332212427035203e-06,0.0,0.0,0.0,4.550384998009682e-05,2.502292141634131e-05,3.63932550333373e-06,0.0,8.805612100867101e-06 +104083,50.0,the Greater Atlanta and Macon Area,G1301210002800,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,15011.0,,912.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.00121160288157192,0.00026582974227920396,0.0,0.001477432623851124,0.0009034019680770523,0.000419793517829168,0.0001542675115443415,0.0,0.0,0.0006375722257978485,0.000419793517829168,0.0001542675115443415,0.0,0.0,0.00026582974227920396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7760520885018653e-05,0.0,0.0,0.00014438417237619291,5.405140154707951e-05,0.00016214469326121156,7.597814395459177e-05,5.0025912419437527e-05,1.8383735560257807e-05,0.0,0.0,1.7760520885018653e-05,0.0,0.0,0.0,0.0,0.0,9.91462031098272e-05,4.607133352993721e-05,1.6930490051266262e-05,0.0,0.0 +104084,50.0,the Greater Atlanta and Macon Area,G1300670031211,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,9622.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0023104221049075526,0.0,0.0,0.0023104221049075526,0.001184778831315579,0.000588626243802651,0.000458693430958199,0.0,7.832359883112413e-05,0.001184778831315579,0.000588626243802651,0.000458693430958199,0.0,7.832359883112413e-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.0002753305644144038,7.679262531964062e-05,0.0002753305644144038,0.00014118884321590603,7.01459683886634e-05,5.466201217978464e-05,0.0,9.333740630049774e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014118884321590603,7.01459683886634e-05,5.466201217978464e-05,0.0,9.333740630049774e-06 +104085,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8973.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0019307139293703928,0.0,0.0,0.0019307139293703924,0.00150229128740078,0.000211730108772627,0.00017699313780211788,0.0,3.961668832112825e-05,0.00150229128740078,0.000211730108772627,0.00017699313780211788,0.0,3.961668832112825e-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.00023008244200072237,7.328361875829107e-05,0.00023008244200072237,0.00017902747928808774,2.5231796244081953e-05,2.1092204672787257e-05,0.0,4.7211056253575216e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017902747928808777,2.523179624408196e-05,2.1092204672787264e-05,0.0,4.721105625357522e-06 +104086,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,75033.0,,2256.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0042339748463857685,0.0003837382122142028,0.0,0.004617713058599972,0.002465052148229941,0.0007090726139107517,0.000737689417242717,0.0,0.0007058634184937221,0.002465052148229941,0.0007090726139107517,0.00035395120502851405,0.0,0.0007058634184937221,0.0,0.0003837382122142028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5639595401340416e-05,0.0,0.0,0.0005045536517682196,0.00017279340075712426,0.00053019324716956,0.0002937549485562508,8.449865426642872e-05,4.2179601798377574e-05,0.0,8.411622136929368e-05,0.0,2.5639595401340416e-05,0.0,0.0,0.0,0.0,0.00028303057949395036,8.141378792434772e-05,8.469949140779184e-05,0.0,8.104531683977312e-05 +104087,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030301,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,12185.0,,1624.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0010745268273093464,0.00047315993204129783,0.0,0.001547686759350644,0.0010278122313740839,0.0004454288357546304,7.447606582136748e-05,0.0,0.0,0.000554652299332786,0.0004454288357546304,7.447606582136748e-05,0.0,0.0,0.00047315993204129783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.161348259302779e-05,0.0,0.0,0.00012805031078242906,5.862826732753645e-05,0.00015966379337545685,6.60973718856301e-05,5.308131858620916e-05,8.875239902719733e-06,0.0,0.0,3.1613482593027786e-05,0.0,0.0,0.0,0.0,0.0,0.00010603204992703532,4.59517128809945e-05,7.683163994831132e-06,0.0,0.0 +104088,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2004,gen5_led,100001_200000,Electricity,114231.0,,5756.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01064855683475172,0.0016943731636961707,0.0,0.012342899308841594,0.005127343213763502,0.0023800403475994466,0.004835546437084943,0.0,0.0,0.003432970050067331,0.0023800403475994466,0.004835546437084943,0.0,0.0,0.0016943731636961707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011320798986996448,0.0,0.0,0.0012689662036734807,0.0004950022114840565,0.0013821741935434453,0.0004090998469897607,0.00028362442078785216,0.0005762419358958678,0.0,0.0,0.00011320798986996448,0.0,0.0,0.0,0.0,0.0,0.0005741666762547011,0.00026652006677942066,0.0005414908871720374,0.0,0.0 +104089,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,29864.0,,1371.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002660880934829724,0.00040356832281479154,0.0,0.003064449257644516,0.0010516407390033812,0.000817386974133016,0.0011954215445081188,0.0,0.0,0.0006480724161885897,0.000817386974133016,0.0011954215445081188,0.0,0.0,0.00040356832281479154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6964297247857765e-05,0.0,0.0,0.00031709261220923664,0.00012546784220046237,0.0003440569094570944,7.722967708179015e-05,9.740660223499544e-05,0.0001424563328924511,0.0,0.0,2.6964297247857765e-05,0.0,0.0,0.0,0.0,0.0,0.0001180715463367776,9.177102066518037e-05,0.00013421434245513647,0.0,0.0 +104090,50.0,the Greater Atlanta and Macon Area,G1300130180108,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,105145.0,,9057.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008923708892001931,0.002665944719868845,0.0,0.011589653611870776,0.004277455946561218,0.0028533354559226185,0.004458831519780642,0.0,0.0,0.001611511226692373,0.0028533354559226185,0.004458831519780642,0.0,0.0,0.002665944719868845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017812206085924528,0.0,0.0,0.0010634214757181228,0.0004571140847714848,0.001241543536577368,0.00019204073861726716,0.00034002657840795657,0.0005313505014706821,0.0,0.0,0.00017812206085924528,0.0,0.0,0.0,0.0,0.0,0.00045822316708482493,0.0003056640268661088,0.0004776530549973457,0.0,0.0 +104091,81.0,the Columbus-Albany Area,G1301450120200,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Propane,6230.0,,,2117.0,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,9613.75315558068,0.0,0.0,0.0005493672930306172,0.0,0.00019955454830602947,0.0007489218413366468,0.0005590260976518223,0.00014858764844948193,4.130809523534248e-05,0.0,0.0,0.00035947154934579286,0.00014858764844948193,4.130809523534248e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019955454830602947,0.0,0.0,0.0,0.0,1.6094001906396934e-05,6.546844388622593e-05,3.331130609329831e-05,8.156244579262286e-05,4.283844935000188e-05,1.7707282992835588e-05,4.922711543388471e-06,0.0,0.0,0.0,0.0,0.0,1.6094001906396934e-05,0.0,0.0,6.088156770139204e-05,1.618215860881336e-05,4.49871948241745e-06,0.0,0.0 +104092,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,9187.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.002026406013686771,0.0,0.0,0.002026406013686771,0.001038470017870744,0.00036796377106617875,0.0005663780409667773,0.0,5.351147670933191e-05,0.001038470017870744,0.00036796377106617875,0.0005663780409667773,0.0,5.351147670933191e-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.00024148582757264523,8.171786715050955e-05,0.00024148582757264523,0.00012375397130738068,4.385006517573563e-05,6.749499804977244e-05,0.0,6.3769368776581155e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012375397130738068,4.385006517573563e-05,6.749499804977244e-05,0.0,6.3769368776581155e-06 +104093,50.0,the Greater Atlanta and Macon Area,G1301170130303,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,43807.0,,2752.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003656070164322187,0.000801620036361146,0.0,0.004457690200683333,0.0027181637872838484,0.0012914550744937698,0.0004480713389057148,0.0,0.0,0.0019165437509227022,0.0012914550744937698,0.0004480713389057148,0.0,0.0,0.000801620036361146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.355877393464663e-05,0.0,0.0,0.00043568747346228845,0.00015897152869765303,0.0004892462473969351,0.00022839115965769658,0.00015390043768499662,5.339587611959523e-05,0.0,0.0,5.3558773934646626e-05,0.0,0.0,0.0,0.0,0.0,0.0002983274684577692,0.0001417414670900525,4.9177311849113434e-05,0.0,0.0 +104094,50.0,the Greater Atlanta and Macon Area,G1301350050540,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12416.0,,1975.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002981176472933336,0.0015667200978437003,0.0,0.004547896570777036,0.003465178268455763,0.0005637314146071194,0.00044066328888302996,0.0,7.824089175738482e-05,0.0018984581706120625,0.0005637314146071194,0.00044066328888302996,0.0,7.824089175738482e-05,0.0015667200978437003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010467772556823917,0.0,0.0,0.00035526576174042747,0.000216855257097795,0.00045994348730866666,0.00022623859883450607,6.717967629415325e-05,5.2513690624302894e-05,0.0,9.323939814300025e-06,0.00010467772556823919,0.0,0.0,0.0,0.0,0.0,0.00035044468407236505,5.70119809684999e-05,4.4565703433123156e-05,0.0,7.91275440085107e-06 +104095,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock 90.1-2007,gen4_led,200001_500000,NaturalGas,575686.0,,104129.0,,7.614023970037612,Education,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,2664908.3895131643,0.0,0.0,0.10743620141464769,0.07207638095222385,0.0,0.17951258236687154,0.15183320946580614,0.013328599595539174,0.00863882562324971,0.0007875587190827869,0.0049243889631937175,0.08197351078384224,0.013328599595539174,0.00863882562324971,0.0007875587190827869,0.0027077066929337636,0.06985969868196387,0.0,0.0022166822702599535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004815721682472949,0.0,0.0,0.012802968746758158,0.008111718191673938,0.01761869042923111,0.009768628104944218,0.0015883439828735038,0.0010294724962984425,9.38518817110663e-05,0.0003226722809309271,0.004667615954479749,0.0,0.0001481057279931985,0.0,0.0,0.0,0.01490203237669162,0.0013081671882422723,0.0008478781393556233,7.729682835269675e-05,0.0004833158965888954 +104096,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,18079.0,,1286.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0016108667449601214,0.00037852560407586615,0.0,0.00198936165942969,0.0007294612520900974,0.0007334202113025011,0.0005264801960370913,0.0,0.0,0.0003509356480142313,0.0007334202113025011,0.0005264801960370913,0.0,0.0,0.00037852560407586615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.529048741939794e-05,0.0,0.0,0.00019196216683584446,8.377978176148049e-05,0.0002172526542552424,4.1819950423286426e-05,8.73994906179011e-05,6.273906860616342e-05,0.0,0.0,2.529048741939794e-05,0.0,0.0,0.0,0.0,0.0,7.966243465170553e-05,8.009478157711552e-05,5.7495438026421325e-05,0.0,0.0 +104097,50.0,the Greater Atlanta and Macon Area,G1300670031306,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,25933.0,,3340.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00238457054465902,0.0009731701259855682,0.0,0.0033577406706445886,0.0021834365691822274,0.0009551585815189815,0.00021911514634394164,0.0,0.0,0.0012102664431966593,0.0009551585815189815,0.00021911514634394164,0.0,0.0,0.0009731701259855682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.502171999762589e-05,0.0,0.0,0.0002841635797985903,0.00013265386995353775,0.00034918529979621613,0.0001442245631101879,0.00011382396818064744,2.6111428958412266e-05,0.0,0.0,6.502171999762589e-05,0.0,0.0,0.0,0.0,0.0,0.00022706457340839083,9.933088000408517e-05,2.2786687707872625e-05,0.0,0.0 +104098,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,56873.0,,12449.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003470257258578415,0.0021170228839157246,0.0,0.00558728014249414,0.001870960928128232,0.0007909691533099756,0.0025511685136471378,0.0,0.00037418154740879436,0.0015165310033413767,0.0007909691533099756,0.0010755769148246633,0.0,8.718018710239963e-05,0.00035442992478685546,0.0014755915988224743,0.0002870013603063947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001414469063141303,0.0,0.0,0.000413544333460086,0.0002491967919171394,0.0005549912397742162,0.00018072227970939458,9.425837536524849e-05,0.00012817457184959025,0.0,1.0389106535852746e-05,2.3680904324247407e-05,9.85902742111639e-05,1.9175727778719e-05,0.0,0.0,0.0,0.0001858447936364764,7.856791494666422e-05,0.00025341062917062324,0.0,3.716790202045239e-05 +104099,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,29692.0,,3186.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0026455361316808737,0.0009377209204263084,0.0,0.0035832570521071813,0.0013890729602466234,0.0009718477626293542,0.0012223363292312042,0.0,0.0,0.0004513520398203148,0.0009718477626293542,0.0012223363292312042,0.0,0.0,0.0009377209204263084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.265259824411832e-05,0.0,0.0,0.0003152646714732106,0.0001654507018251205,0.00037791726971732884,5.3786962441637844e-05,0.00011581367645606485,0.00014566403257550785,0.0,0.0,6.265259824411832e-05,0.0,0.0,0.0,0.0,0.0,0.00014650209374899998,0.0001024983828100743,0.00012891679315825462,0.0,0.0 +104100,50.0,the Greater Atlanta and Macon Area,G1300130180206,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,8196.0,,318.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,5611.956475588368,0.0,0.0,0.0003736496365661928,5.414852377684126e-05,0.0,0.000427798160343034,0.00024466125723530865,0.00010618713454469623,2.2801244786187906e-05,0.0,5.414852377684126e-05,0.00024466125723530865,0.00010618713454469623,2.2801244786187906e-05,0.0,0.0,0.0,0.0,5.414852377684126e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6179006234488995e-06,0.0,0.0,4.4527064187469585e-05,1.9345656662044346e-05,4.814496481091848e-05,2.9155782420180923e-05,1.2654103986844229e-05,2.7171777804444287e-06,0.0,0.0,0.0,0.0,3.6179006234488995e-06,0.0,0.0,0.0,2.7534498069705912e-05,1.195043908540247e-05,2.566081927505022e-06,0.0,6.0939457283050836e-06 +104101,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,17449.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004007075015595706,0.0,0.0,0.004007075015595706,0.0027631606265565217,0.0005579419194453679,0.0006188970327912375,0.0,6.70754368025783e-05,0.0027631606265565217,0.0005579419194453679,0.0006188970327912375,0.0,6.70754368025783e-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.00047751281619552385,0.00014685825163480987,0.00047751281619552385,0.000329278740041616,6.648850250892698e-05,7.37523664800327e-05,0.0,7.993207164948082e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.000329278740041616,6.648850250892698e-05,7.37523664800327e-05,0.0,7.993207164948082e-06 +104102,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,20533.0,,4300.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004666880094800078,0.0033351838584444946,0.0,0.008002063953244576,0.003406583929894005,0.0006710636386857118,0.002682718199864545,0.00042015262882407015,0.0008215455559762418,0.0021843731938132084,0.0006710636386857118,0.0013912906334770886,0.00042015262882407015,0.0,0.0012222107360807968,0.0012914275663874564,0.0008215455559762418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002228388939987921,0.0,0.0,0.000556142188917968,0.00038415917630452265,0.0007789810829167601,0.00026030711411989933,7.99692285511603e-05,0.00016579714983145733,5.006869641545113e-05,0.0,8.166149160625862e-05,8.628618474651382e-05,5.489121764601969e-05,0.0,0.0,0.0,0.00033162249817807193,6.532638117163521e-05,0.00026115596434887826,4.0900816552333593e-05,7.997542266584089e-05 +104103,50.0,the Greater Atlanta and Macon Area,G1301350050430,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,10378.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,24284.436554246196,0.0,0.0,0.0008473093402732762,0.0,0.0,0.0008473093402732762,0.0004110565867514311,0.000229435496681626,0.00020678656723392133,0.0,0.0,0.0004110565867514311,0.000229435496681626,0.00020678656723392133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010097399075243398,3.888841038067395e-05,0.00010097399075243398,4.8985679747115094e-05,2.7341865147785007e-05,2.4642788572201094e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8985679747115094e-05,2.7341865147785007e-05,2.4642788572201094e-05,0.0,0.0 +104104,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,32977.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.007392027422524341,0.0,0.0,0.007392027422524341,0.0025571373058719074,0.001124485374559624,0.0035716222723582514,0.0,0.0001387824697345579,0.0025571373058719074,0.001124485374559624,0.0035716222723582514,0.0,0.0001387824697345579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008808945649464841,0.00027041400610768447,0.0008808945649464841,0.0003047294369743041,0.00013400289233141333,0.00042562377923210893,0.0,1.6538456408657812e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003047294369743041,0.00013400289233141333,0.00042562377923210893,0.0,1.6538456408657812e-05 +104105,50.0,the Greater Atlanta and Macon Area,G1300970080404,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,59895.0,,3815.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005336584949501239,0.0011229633840392425,0.0,0.006459548333540482,0.0021919744402071235,0.0018767308043171206,0.0023908737786225353,0.0,0.0,0.0010690110561678812,0.0018767308043171206,0.0023908737786225353,0.0,0.0,0.0011229633840392425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.502946412263826e-05,0.0,0.0,0.0006359503598971116,0.00025381910978400254,0.0007109798240197498,0.00012739195053336377,0.00022364632845337065,0.00028491573813055733,0.0,0.0,7.502946412263826e-05,0.0,0.0,0.0,0.0,0.0,0.0002412629368623461,0.00020656517578133664,0.00026315508927336853,0.0,0.0 +104106,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,31275.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002757892455348428,0.0,0.0,0.002757892455348428,0.0018269720061807725,0.0007035436837766453,0.00022737676539101017,0.0,0.0,0.0018269720061807725,0.0007035436837766453,0.00022737676539101017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032865349673695494,9.330854255572776e-05,0.00032865349673695494,0.00021771724169569978,8.384014080461331e-05,2.709611423664187e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021771724169569978,8.384014080461331e-05,2.709611423664187e-05,0.0,0.0 +104107,81.0,the Columbus-Albany Area,G1302150011500,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,11437.0,,896.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002746288383513703,0.0007109500058630865,0.0,0.00345723838937679,0.002235406789026001,0.0006749724287864879,0.0004758965022959749,0.0,7.087996219458645e-05,0.0015954194524312403,0.0006749724287864879,0.0004758965022959749,0.0,0.0,0.0006399873365947608,0.0,7.087996219458645e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.749881115692726e-05,0.0,0.0,0.0003272723928400363,0.00014287965774035743,0.00037477120399696367,0.00019012451311201028,8.043577768310606e-05,5.671210204492001e-05,0.0,0.0,4.275777114149642e-05,0.0,4.735514327767179e-06,0.0,0.0,0.0,0.0002423223392174812,7.31682925245621e-05,5.158808420369199e-05,0.0,7.683522447439004e-06 +104108,50.0,the Greater Atlanta and Macon Area,G1301210007100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,44747.0,,2121.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007045824608774165,0.0006177686389644342,0.0,0.0076635932477386,0.0043202800368269435,0.0027226590800006356,0.0006206541309110207,0.0,0.0,0.00370251139786251,0.0027226590800006356,0.0006206541309110207,0.0,0.0,0.0006177686389644342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.127505090033514e-05,0.0,0.0,0.0008396383758407977,0.0002806732278425489,0.0008809134267411328,0.00044122169217240625,0.0003244544357594592,7.396224790893239e-05,0.0,0.0,4.127505090033514e-05,0.0,0.0,0.0,0.0,0.0,0.000496606822503994,0.00031296375766275906,7.134284657437967e-05,0.0,0.0 +104109,81.0,the Columbus-Albany Area,G1301450120401,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,10196.0,,1158.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0004640212887242018,0.0001968779332082663,0.0,0.0006608992219324683,0.00036221355345025867,0.0001093963299617258,4.3652149816169996e-05,0.0,0.0001456371887043137,0.0002659731516622121,0.0001093963299617258,4.3652149816169996e-05,0.0,4.4999657284094015e-05,9.62404017880466e-05,0.0,0.00010063753142021968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3154146777195798e-05,0.0,0.0,5.529665404701424e-05,2.7484960435119452e-05,6.845080082421004e-05,3.169558317829891e-05,1.3036580775288601e-05,5.201954922003327e-06,0.0,5.3625351714234145e-06,6.430179098218551e-06,0.0,6.723967678977246e-06,0.0,0.0,0.0,3.751526250939736e-05,1.1330420954671386e-05,4.521150144311337e-06,0.0,1.5083967215829944e-05 +104110,46.0,the Tallahassee-Valdosta Area,G1301850011402,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,8933.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0019377440306382336,0.0,0.0,0.0019377440306382336,0.0010988461817004384,0.0004289188844120483,0.00036895625595105043,0.0,4.110541564843579e-05,0.0010988461817004384,0.0004289188844120483,0.00036895625595105043,0.0,4.110541564843579e-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.00023092145354557515,7.52923698751141e-05,0.00023092145354557515,0.00013094978154451795,5.1114373557870704e-05,4.396861173190537e-05,0.0,4.898542934489344e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013094978154451795,5.1114373557870704e-05,4.396861173190537e-05,0.0,4.898542934489344e-06 +104111,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,19112.0,,5209.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00448664140934033,0.004040289886802057,0.0,0.008526931296142386,0.004835879131413302,0.00041344118382938234,0.0023167422956963885,0.00041230913286642297,0.000548559552336892,0.0026355763633355935,0.00041344118382938234,0.001025314729308932,0.00041230913286642297,0.0,0.0022003027680777077,0.0012914275663874564,0.000548559552336892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000269948904816171,0.0,0.0,0.0005346640909864352,0.0004329564285092955,0.0008046129958026062,0.00031407636848235356,4.926895968737417e-05,0.00012218470738038426,4.913405543632327e-05,0.0,0.000147011560840428,8.628575348875368e-05,3.6651590486989226e-05,0.0,0.0,0.0,0.00045632022355170945,3.901288024445933e-05,0.00021861099782593478,3.8906058354488196e-05,5.176283582601449e-05 +104112,50.0,the Greater Atlanta and Macon Area,G1302190030300,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,30277.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0023940167340841608,0.0,0.0,0.0023940167340841608,0.0013939052253973067,0.0006205326365132697,0.00037957887217358454,0.0,0.0,0.0013939052253973067,0.0006205326365132697,0.00037957887217358454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028529024227094295,8.244738296100093e-05,0.00028529024227094295,0.00016610893056621012,7.394764777014888e-05,4.523366393458398e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016610893056621012,7.394764777014888e-05,4.523366393458398e-05,0.0,0.0 +104113,50.0,the Greater Atlanta and Macon Area,G1301350050521,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,84605.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006847970982036651,0.0,0.0,0.006847970982036649,0.004673737613484062,0.0013311533689589117,0.0008430496259942395,0.0,0.0,0.004673737613484062,0.0013311533689589117,0.0008430496259942395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008160585722891157,0.00021879806802582312,0.0008160585722891157,0.0005569596679247916,0.0001586308003669987,0.0001004644844381512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005569596679247917,0.00015863080036699871,0.00010046448443815122,0.0,0.0 +104114,81.0,the Columbus-Albany Area,G1302150003200,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,18149.0,,2120.0,,8.53126424238864,Food Service,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,25593.792727165917,0.0,0.0,0.0042606355206637955,0.001644223162915443,0.0,0.005904777822796171,0.0016981573052221512,0.00044513861079224527,0.0029553807603716203,0.00042015262882407015,0.00038611023915222,0.001241536463234175,0.00044513861079224527,0.002153807817813305,0.00042015262882407015,0.0,0.0004566208419879761,0.0008015729425583154,0.00038611023915222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010985708645191495,0.0,0.0,0.0005077273036030483,0.000240487942876167,0.0006175843900549632,0.00014795021957300495,5.3045848557339606e-05,0.0002566628923112257,5.006834316147803e-05,0.0,3.0508653840560816e-05,5.355627510562766e-05,2.579756013612147e-05,0.0,0.0,0.0,0.0001776113301865726,4.655732454059722e-05,0.00030910511437498415,4.3944025124966965e-05,4.038351038716653e-05 +104115,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,124261.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010550012508929799,0.0,0.0,0.010550012508929797,0.0026834071058522385,0.0033001454340108732,0.0045664599690666855,0.0,0.0,0.0026834071058522385,0.0033001454340108732,0.0045664599690666855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012572261256933105,0.00038625620290297553,0.0012572261256933105,0.0003197768264722877,0.0003932724302188377,0.0005441768690021849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031977682647228777,0.0003932724302188378,0.000544176869002185,0.0,0.0 +104116,46.0,the Tallahassee-Valdosta Area,G1301850011301,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,136752.0,,5667.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.006711491438694008,0.0009638047164326504,0.0,0.007675296155126657,0.003096909038156363,0.0016391541829224618,0.0023731911457126474,0.0,0.0005660240579737657,0.003096909038156363,0.0016391541829224618,0.0014093864292799975,0.0,0.0005660240579737657,0.0,0.0009638047164326504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.439596672078298e-05,0.0,0.0,0.0007997954631527461,0.00029829687813335415,0.0008641914298735292,0.000369052664543989,0.0001953348359130645,0.00016795385679379442,0.0,6.745199300899601e-05,0.0,6.439596672078298e-05,0.0,0.0,0.0,0.0,0.00034869302705472463,0.00018455874125153715,0.0002672068162746703,0.0,6.373084896228268e-05 +104117,50.0,the Greater Atlanta and Macon Area,G1301530021104,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,186224.0,,2088.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009585919901751548,0.00035508594815939745,0.0,0.009941005849910946,0.004363424215113575,0.0032763402957272972,0.0012943518443866947,0.0,0.0010068894946833786,0.004363424215113575,0.0032763402957272972,0.0009392658962272972,0.0,0.0010068894946833786,0.0,0.00035508594815939745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3725164697510344e-05,0.0,0.0,0.0011423352307156562,0.00026228311191449203,0.0011660603954131666,0.000519980686107264,0.00039043503242070464,0.00011193047044698396,0.0,0.00011998904174070359,0.0,2.3725164697510344e-05,0.0,0.0,0.0,0.0,0.0005118210614146557,0.00038430825999142605,0.00015182492056202052,0.0,0.0001181061534450643 +104118,35.0,Eastern Counties in South Carolina and Georgia,G1300510003602,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,252994.0,,6811.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011948667864587786,0.0011583067812106294,0.0,0.013106974645798413,0.006448585639557464,0.003079338249989091,0.0024678890060571496,0.0,0.0011111617501947091,0.006067010531436508,0.003079338249989091,0.0016911573329674765,0.0,0.0011111617501947091,0.0003815751081209563,0.0007767316730896731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.739075206475413e-05,0.0,0.0,0.0014239001729614484,0.0003836659003075655,0.0015012909250262025,0.0007229941816923539,0.00036695892098240494,0.00020153202400529572,0.0,0.0001324150462813936,2.5494441598456638e-05,5.189631046629749e-05,0.0,0.0,0.0,0.0,0.0007386298792471784,0.0003527116435886781,0.00028267540518614025,0.0,0.00012727399700420582 +104119,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000101,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,10571.0,,446.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.000579924661327087,7.583275579356584e-05,0.0,0.0006557574171206529,0.00034120307516749613,0.00015542434820818286,4.2464215601026465e-05,0.0,0.00011666577814394745,0.0002653703193739303,0.00015542434820818286,4.2464215601026465e-05,0.0,0.00011666577814394745,7.583275579356584e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.066573553415361e-06,0.0,0.0,6.91087424753627e-05,2.293801352601666e-05,7.417531602877807e-05,3.162377854435471e-05,1.8521683885869804e-05,5.060396179176156e-06,0.0,1.3902883865962049e-05,5.066573553415361e-06,0.0,0.0,0.0,0.0,0.0,3.8594829840686906e-05,1.7580662979809884e-05,4.803295441095674e-06,0.0,1.319652776718561e-05 +104120,50.0,the Greater Atlanta and Macon Area,G1301210011303,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,148333.0,,11042.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.013558105961770237,0.001877716195829272,0.0,0.015435822157599513,0.00837779080495057,0.0023255496645769656,0.0024503891393355573,0.0,0.0022820925487364164,0.007211469900378077,0.0023255496645769656,0.001738993848078779,0.0,0.0022820925487364164,0.0011663209045724935,0.0007113952912567784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012545849309379293,0.0,0.0,0.0016156928140410682,0.00058929699821292,0.0017411513071348612,0.0008593766806048045,0.00027713117837751666,0.00020723247568096582,0.0,0.0002719524793777813,7.792703896172755e-05,4.753145413206539e-05,0.0,0.0,0.0,0.0,0.0009450096834499023,0.0002623205811095532,0.00027640239757767936,0.0,0.00025741864499772573 +104121,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302050090200,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,5564.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,9713.774621698478,0.0,0.0,0.00038567628234323093,0.0,0.0,0.0003856762823432308,0.00016606145967686976,0.00013574012865473942,8.384400440532401e-05,0.0,0.0,0.00016606145967686976,0.00013574012865473942,8.384400440532401e-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,4.5958914640745056e-05,1.6720137205267895e-05,4.5958914640745056e-05,1.978862792401301e-05,1.6175402200685554e-05,9.99122740499049e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9788627924013015e-05,1.617540220068556e-05,9.991227404990492e-06,0.0,0.0 +104122,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,130576.0,,58506.0,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.03737436150742876,0.051748356914436223,0.0,0.08912271842186499,0.07055366796895304,0.010207527709462675,0.0022820081371249736,0.0006522526288646626,0.005427169760206859,0.02257727334469797,0.010207527709462675,0.0022820081371249736,0.0006522526288646626,0.0016552996872784805,0.04797639462425508,0.0,0.0037718700729283787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034575211729533477,0.0,0.0,0.004453830014909864,0.004477625580294492,0.007911351187863212,0.002690489780205429,0.001216411236387077,0.000271942474077465,7.772767797421443e-05,0.0001972588462656792,0.003205500814056799,0.0,0.0002520141974815209,0.0,0.0,0.0,0.006262991690313421,0.0009061139280687831,0.00020257200527590662,5.78999350730012e-05,0.00048176544308161544 +104123,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,3559.0,,426.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00018317236383056556,7.248171748517584e-05,0.0,0.00025565408131574143,0.00013886419064185356,4.3776262346110374e-05,1.480485178574409e-05,0.0,5.820877654203335e-05,9.342127432225823e-05,4.3776262346110374e-05,1.480485178574409e-05,0.0,3.116997537645283e-05,4.544291631959533e-05,0.0,2.703880116558052e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.842564672758038e-06,0.0,0.0,2.1829005586627495e-05,1.1657329164593886e-05,2.667157025938553e-05,1.1133194311871091e-05,5.216902022396987e-06,1.7643228791824558e-06,0.0,3.7145863731769553e-06,3.0360795636689956e-06,0.0,1.8064851090890434e-06,0.0,0.0,0.0,1.448725558440304e-05,4.567037032417148e-06,1.5445426982860747e-06,0.0,6.072734944279262e-06 +104124,35.0,Eastern Counties in South Carolina and Georgia,G1301910110300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,37217.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0031893494353616926,0.0,0.0,0.003189349435361692,0.0020893999053229477,0.0009227195773194626,0.00017726032631871965,0.0,0.0,0.0020893999053229477,0.0009227195773194626,0.00017726032631871965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003800680437883415,0.00010662620849390314,0.0003800680437883415,0.00024898937880652177,0.00010995854541013701,2.1123739129449934e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024898937880652177,0.00010995854541013702,2.1123739129449937e-05,0.0,0.0 +104125,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,20503.0,,0.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.0018267374356581625,6.137921259540556e-08,0.0,0.0018268295044770557,0.0008257345470459911,0.00047458407178767586,0.0005264801960370913,0.0,0.0,0.0008256731678333957,0.00047458407178767586,0.0005264801960370913,0.0,0.0,6.137921259540556e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6964250903768944e-09,0.0,0.0,0.0002176903878445458,7.947690239209915e-05,0.0002176950842696362,9.839460703542599e-05,5.655568700549463e-05,6.274009380362521e-05,0.0,0.0,4.6964250903768944e-09,0.0,0.0,0.0,0.0,0.0,9.839908506129812e-05,5.6554056767557954e-05,6.273828529794728e-05,0.0,0.0 +104126,50.0,the Greater Atlanta and Macon Area,G1300450910600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,2984.0,,516.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.000687130368626166,0.0004091518937883537,0.0,0.00109628226241452,0.0007179801071309277,0.0002096624319291443,0.00012860949966462303,0.0,3.9947516616085484e-05,0.00030882821334257395,0.0002096624319291443,0.00012860949966462303,0.0,3.9947516616085484e-05,0.0004091518937883537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7336251114789167e-05,0.0,0.0,8.188220517519376e-05,4.668022348748342e-05,0.00010921845628998293,3.6801655527705044e-05,2.4984519754347156e-05,1.532580994793287e-05,0.0,4.7603641188756125e-06,2.7336251114789167e-05,0.0,0.0,0.0,0.0,0.0,7.1529643082108e-05,2.0887875269340375e-05,1.2812878123796561e-05,0.0,3.9798200217323075e-06 +104127,50.0,the Greater Atlanta and Macon Area,G1300670031005,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,176110.0,,12901.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009887211933362505,0.002194008113201594,0.0,0.0120812200465641,0.006395181790960265,0.0024850874566346008,0.0021416326255667573,0.0,0.0010593536341253148,0.0044277676967069465,0.0024850874566346008,0.001915020876257063,0.0,0.0010593536341253148,0.001967414094253319,0.00022661174930969485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014659101352388303,0.0,0.0,0.0011782394846455925,0.0004261681309223748,0.0013248304981694759,0.0005276483162553364,0.0002961429555610422,0.00022820924903137156,0.0,0.000126241076689934,0.00013145130337595366,1.5140894788786025e-05,0.0,0.0,0.0,0.0,0.0007012977038202228,0.00027251549433571237,0.00023485212646487126,0.0,0.00011616906218300616 +104128,50.0,the Greater Atlanta and Macon Area,G1300670030101,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,17066.0,,8922.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004096002966336274,0.0069194189287400554,0.0,0.01101542189507633,0.005150427577549875,0.00044279364808325793,0.004423893441679152,0.0004154627034060956,0.0005829253851410164,0.002607921975526157,0.00044279364808325793,0.0006298246393207626,0.0004154627034060956,0.0,0.0025425056020237174,0.00379406880235839,0.0005829253851410164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00046231760135470183,0.0,0.0,0.00048811184541123397,0.0006108400169438509,0.0009504294467659358,0.0003107804409871309,5.276676469197348e-05,7.505484481113613e-05,4.9509794920993386e-05,0.0,0.00016987627190431318,0.00025349885678918295,3.894787533499328e-05,0.0,0.0,0.0,0.00044438770296458327,3.820499350708937e-05,0.00038170109473573035,3.5846832841385173e-05,5.0295799523850844e-05 +104129,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,9603.0,,1021.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007718235353127115,0.00029750940649277905,0.0,0.0010693329418054907,0.0008472411827166492,0.0001469171004804056,7.517465860843577e-05,0.0,0.0,0.0005497317762238703,0.0001469171004804056,7.517465860843577e-05,0.0,0.0,0.00029750940649277905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9876980678691737e-05,0.0,0.0,9.19783146018482e-05,4.944785784251103e-05,0.00011185529528053993,6.551160977446187e-05,1.7508130641420637e-05,8.958574185965697e-06,0.0,0.0,1.9876980678691737e-05,0.0,0.0,0.0,0.0,0.0,8.862385975559224e-05,1.536795044231017e-05,7.863485082637516e-06,0.0,0.0 +104130,85.0,Rural Climate Zone 3A,G1302850960100,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,8220.0,,339.0,,3.3063363735822096,Lodging,Zone-by-Zone,Before 1946,E: Lodging with Zone-by-Zone Systems,9919.009120746628,0.0,0.0,0.0007959230879361422,0.00010187991018506958,0.0,0.0008978343361434155,0.0002619545276028905,0.00012861124312504635,0.00034333937126657105,0.0,0.00016389785612670382,0.0002619545276028905,0.00012861124312504635,0.0002414594610815015,0.0,0.00016389785612670382,0.0,0.00010187991018506958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.807684415006897e-06,0.0,0.0,9.485048664936213e-05,4.4603273548579655e-05,0.00010165817106436903,3.121723040798559e-05,1.53266555322853e-05,2.8774824774916728e-05,0.0,1.9531775934174497e-05,0.0,6.807684415006897e-06,0.0,0.0,0.0,0.0,2.9660057658885198e-05,1.4562133823670875e-05,3.887493620178804e-05,0.0,1.85574951018028e-05 +104131,50.0,the Greater Atlanta and Macon Area,G1301510070311,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,13002.0,,2236.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001158440568919387,0.0006582306758731293,0.0,0.0018166712447925165,0.0008643113821622035,0.0004133276176174611,0.0005390322450128517,0.0,0.0,0.0002060807062890742,0.0004133276176174611,0.0005390322450128517,0.0,0.0,0.0006582306758731293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3979146317155325e-05,0.0,0.0,0.0001380500954854523,8.555470937252177e-05,0.00018202924180260761,2.455841235554646e-05,4.925580009002229e-05,6.423588303988355e-05,0.0,0.0,4.3979146317155325e-05,0.0,0.0,0.0,0.0,0.0,8.660342152017632e-05,4.14151504113104e-05,5.401066987112087e-05,0.0,0.0 +104132,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,33008.0,,2967.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029106716605203195,0.0008644022663989791,0.0,0.0037750739269192977,0.0028067028296448948,0.0006879012800662033,0.00028046981720820035,0.0,0.0,0.0019423005632459157,0.0006879012800662033,0.00028046981720820035,0.0,0.0,0.0008644022663989791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.775429055949105e-05,0.0,0.0,0.00034685785449338415,0.00015749859208901728,0.00040461214505287525,0.00023145936221069231,8.19755678194092e-05,3.342292446328261e-05,0.0,0.0,5.775429055949104e-05,0.0,0.0,0.0,0.0,0.0,0.0003008222022701789,7.372920846065205e-05,3.0060734322044374e-05,0.0,0.0 +104133,81.0,the Columbus-Albany Area,G1302150001800,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,132714.0,,11786.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00628245215305157,0.002004381897814129,0.0,0.008286851781227119,0.0034768529530266744,0.001603941685142237,0.0019208541651642606,0.0,0.0012851852475325273,0.0033656481262001035,0.001603941685142237,0.0011060022150214737,0.0,0.00020686012668775605,0.00011120482682657117,0.0008148519501427866,0.001078325120844771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013392146063156453,0.0,0.0,0.0007486681093521498,0.0003299565366742743,0.0008825895699837143,0.00040107801189745944,0.00019113874004488305,0.00013180022180626065,0.0,2.465113560354675e-05,7.430077498771962e-06,5.444379810085488e-05,7.204758503193767e-05,0.0,0.0,0.0,0.00037030156128290445,0.0001708275035611914,0.00020458020686146591,0.0,0.00013687840990938787 +104134,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,46446.0,,20629.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009670936051658042,0.014190943784974897,0.0,0.02386180811666192,0.006685377098220184,0.0010955225572634587,0.011671636363109526,0.00037523888835367704,0.004033961489744059,0.005516126410752677,0.0010955225572634587,0.0022344356969913625,0.00037523888835367704,0.00044946905835483445,0.001169250687467507,0.009437200666118164,0.0035844924313892246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009481541948118084,0.0,0.0,0.0011524637284301875,0.001186602434667379,0.002100617923241996,0.0006573443951930955,0.00013055096261408534,0.0002662726834855535,4.4716375541531564e-05,5.356221818019463e-05,7.812235471489245e-05,0.0006305374423605721,0.00023949439773634362,0.0,0.0,0.0,0.0005885313840214322,9.644174103875314e-05,0.0010274849423833486,3.3033269336481605e-05,0.0003551202727637126 +104135,81.0,the Columbus-Albany Area,G1300950011200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,NaturalGas,221578.0,,6236.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.025153354769628686,0.0018355146630593055,0.0,0.026988900122294292,0.009044319044751904,0.006787129191162161,0.011157390507167634,0.0,0.0,0.007208804381692598,0.006787129191162161,0.011157390507167634,0.0,0.0,0.0018355146630593055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001226390109969031,0.0,0.0,0.0029974777722191343,0.0010174282942650421,0.003120116783216037,0.0008590596004509995,0.0008088093645565247,0.001329605149989202,0.0,0.0,0.0001226390109969031,0.0,0.0,0.0,0.0,0.0,0.0010455902803160235,0.0007846424123711325,0.0012898769946372189,0.0,0.0 +104136,81.0,the Columbus-Albany Area,G1302150001200,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,113985.0,,11064.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00537561508786155,0.0018814927628117433,0.0,0.007257125581034713,0.003039214442095511,0.0015440130635424583,0.001334014662883353,0.0,0.0013399011428748104,0.002638348700749537,0.0015440130635424583,0.0009799216149634783,0.0,0.00021334943896749538,0.0004008657413459738,0.0003540930479198745,0.001126551703907315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012571080808286103,0.0,0.0,0.0006406025726692344,0.00027957736087701613,0.0007663133807520956,0.00031440736318995446,0.00018399731464658752,0.00011677553122753693,0.0,2.5424476501066658e-05,2.6783603569130345e-05,2.3658514170423377e-05,7.526987498674881e-05,0.0,0.0,0.0,0.0003209246785034606,0.00016303946479040017,0.00014086476455065763,0.0,0.0001414863451382627 +104137,50.0,the Greater Atlanta and Macon Area,G1302210960202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,24100.0,,1245.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0012405579278382546,0.00021175370643969064,0.0,0.001452311634277945,0.00045208875548850635,0.0004817516501442547,0.00031386285785777476,0.0,0.00020462610114882937,0.0003912381550948851,0.0004817516501442547,0.00031386285785777476,0.0,5.3722995102759984e-05,6.085060039362121e-05,0.0,0.0001509031060460694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4148072334095291e-05,0.0,0.0,0.00014783563283361824,5.814144253592388e-05,0.00016198370516771354,4.662332886614766e-05,5.7409701288049406e-05,3.740261794564244e-05,0.0,6.402097637289378e-06,4.065660575283851e-06,0.0,1.0082411758811437e-05,0.0,0.0,0.0,5.042375888911575e-05,5.3732212439256575e-05,3.5006721305793675e-05,0.0,2.282299009095948e-05 +104138,50.0,the Greater Atlanta and Macon Area,G1302230120202,ComStock DOE Ref 1980-2004,gen3_t5_cfl,10001_25000,Electricity,103390.0,,19673.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.02314432152662175,0.013533271650761739,0.0,0.03667766489735451,0.012466293641962497,0.0014138875086017564,0.013839802806882464,0.0003715094498608652,0.008586171490046923,0.008397547966275867,0.0014138875086017564,0.004375276831807353,0.0003715094498608652,0.008586171490046923,0.00406874567568663,0.00946452597507511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009042145691807034,0.0,0.0,0.0027580678858274144,0.0014699778290551792,0.0036622824550081178,0.001000720947418564,0.0001684904751760178,0.0005213940061942258,4.427212445022685e-05,0.0010231988793305519,0.0002718499423633278,0.0006323646268173757,0.0,0.0,0.0,0.0,0.0012447654072773732,0.00014117734677489884,0.0013819109570433307,3.709539699167981e-05,0.0008573333469208347 +104139,50.0,the Greater Atlanta and Macon Area,G1301210001300,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,443415.0,,597.0,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,863994.0691636442,0.0,0.010954318897983751,0.07108878052530397,0.00031249543422190267,0.0,0.08235554026361824,0.03524936487366961,0.01030536131122698,0.036488318644499765,0.0,0.00031249543422190267,0.02429504597568585,0.01030536131122698,0.036488318644499765,0.0,0.0,0.0,0.0,0.00031249543422190267,0.010954318897983751,0.0,0.0,0.0,0.0,0.0,0.0,2.08776749274699e-05,0.0,0.0,0.008471510298959508,0.0030198924413447734,0.008492387973886979,0.0028951928936726875,0.0012280696593393269,0.004348241240100725,0.0,0.0,0.0,0.0,2.08776749274699e-05,0.0,0.0,0.0,0.003634865139395469,0.0010626744258599213,0.0037626243171013075,0.0,3.22240915302822e-05 +104140,50.0,the Greater Atlanta and Macon Area,G1301210010002,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,547826.0,,7442.0,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,863994.0691636442,0.0,0.0,0.0868295642555678,0.003896857372348915,0.0,0.09072642162791669,0.03963259922426501,0.00665297538444859,0.0441355579786425,0.0,0.0003053436344519744,0.036041085486368064,0.00665297538444859,0.0441355579786425,0.0,0.0,0.0035915137378969408,0.0,0.0003053436344519744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002603643213042812,0.0,0.0,0.010347314333764897,0.0038570138863472207,0.010607678655069178,0.004294947736463262,0.0007928224464546435,0.005259550656697383,0.0,0.0,0.00023996311578088018,0.0,2.0401205523401066e-05,0.0,0.0,0.0,0.004633819666781461,0.0007778618809385582,0.0051603028963235955,0.0,3.570059411051225e-05 +104141,50.0,the Greater Atlanta and Macon Area,G1300630040410,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,12605.0,,216.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0027601004648281674,0.00017128634971410564,0.0,0.002931386814542273,0.0018219541274032034,0.0005069116549482152,0.00043115197540300967,0.0,0.00017128634971410564,0.0018219541274032034,0.0005069116549482152,0.00043115197540300967,0.0,0.0,0.0,0.0,0.00017128634971410564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.144562851293146e-05,0.0,0.0,0.0003289127190643705,0.00012299186434908504,0.000340358347577302,0.00021711669328386125,6.0407109407453155e-05,5.1379060424384616e-05,0.0,0.0,0.0,0.0,1.1445628512931461e-05,0.0,0.0,0.0,0.0002115440013198766,5.8856651872056084e-05,5.006032406738921e-05,0.0,1.9887767340027434e-05 +104142,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,30261.0,,8756.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006161175830067084,0.0060234017657460935,0.0,0.012184649315784193,0.0038954702257129143,0.0004613745735434259,0.005546177078608217,0.00038492108444078453,0.00189670635347885,0.002819025180739608,0.0004613745735434259,0.002243185533455267,0.00038492108444078453,0.0002526694578879977,0.001076445044973306,0.0033029915451529513,0.0016440368955908519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040245035978060255,0.0,0.0,0.0007342189911544622,0.0005996966764621143,0.0011366693509350647,0.000335939418274827,5.49813839556801e-05,0.0002673173862866169,4.5870525056759694e-05,3.011027758057842e-05,7.192209858840344e-05,0.0002206876093270926,0.00010984544379652023,0.0,0.0,0.0,0.00036339672142324557,4.3040248714273014e-05,0.0005173862075739851,3.590813226325249e-05,0.00017693804096030846 +104143,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6825.0,,265.0,,5.759960461090961,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,17279.881383272885,0.0,0.0,0.0008572878762380395,0.00013883226576280548,0.0,0.000996120142000845,0.0005790774057986936,0.00016241682683615664,0.0002429974105034397,0.0,1.1628498862555079e-05,0.000440245140035888,0.00016241682683615664,0.0002429974105034397,0.0,1.1628498862555079e-05,0.00013883226576280548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.275887190618619e-06,0.0,0.0,0.00010216109230045433,3.6317653494965245e-05,0.00011143697949107295,5.246303561808977e-05,1.9354852550076527e-05,2.8957461748030454e-05,0.0,1.3857423842575795e-06,9.275887190618619e-06,0.0,0.0,0.0,0.0,0.0,6.478198188434785e-05,1.8169736599032232e-05,2.718436894194704e-05,0.0,1.3008920657458367e-06 +104144,50.0,the Greater Atlanta and Macon Area,G1300590130400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,77614.0,,2974.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006469154180311662,0.0008753596404293764,0.0,0.007344513820741039,0.0025112691041284233,0.001984911666516523,0.002848333050096093,0.0,0.0,0.0016359094636990469,0.001984911666516523,0.002848333050096093,0.0,0.0,0.0008753596404293764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.848693372336101e-05,0.0,0.0,0.0007709149300190799,0.0002914856386046684,0.0008294018637424409,0.00019494774657918934,0.00023653757443958787,0.00033942960900030286,0.0,0.0,5.848693372336101e-05,0.0,0.0,0.0,0.0,0.0,0.0002835928049370558,0.00022415226872114633,0.0003216567900842387,0.0,0.0 +104145,50.0,the Greater Atlanta and Macon Area,G1300210013605,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,3001.0,,322.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,9713.774621698478,0.0,0.0,0.0002673678500655867,9.476950424730618e-05,0.0,0.0003621373543128929,9.559812361734417e-05,0.00016983628125148722,9.670294944406145e-05,0.0,0.0,8.286193700379752e-07,0.00016983628125148722,9.670294944406145e-05,0.0,0.0,9.476950424730618e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.331375141092048e-06,0.0,0.0,3.186273723434444e-05,1.8078113605792436e-05,3.819411237543649e-05,9.874815258577822e-08,2.023971394109988e-05,1.1524275140658782e-05,0.0,0.0,6.331375141092048e-06,0.0,0.0,0.0,0.0,0.0,1.008259830927836e-05,1.7912391346242844e-05,1.0199122719915285e-05,0.0,0.0 +104146,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,183915.0,,17384.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.01824549266729137,0.005117184954078961,0.0,0.023362677621370325,0.007893090533312476,0.00581911762932002,0.00965050014834413,0.0,0.0,0.002775905579233515,0.00581911762932002,0.00965050014834413,0.0,0.0,0.005117184954078961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034190027860012985,0.0,0.0,0.0021742811882731073,0.0009301748655278354,0.0025161814668732373,0.00033079946874604225,0.0006934533489720904,0.0011500320277778766,0.0,0.0,0.00034190027860012985,0.0,0.0,0.0,0.0,0.0,0.0008500929747070894,0.0006267242209881397,0.001039367576476307,0.0,0.0 +104147,50.0,the Greater Atlanta and Macon Area,G1300970080603,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,57296.0,,15211.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0029493215096958437,0.0025868065401014433,0.0,0.005536128049797288,0.002440016877904827,0.0006425128371398734,0.0013659115830780277,0.0,0.001087686751674559,0.0017803942419946021,0.0006425128371398734,0.00038042263462865296,0.0,0.00014597406557129473,0.0006596226359102244,0.0009854889484493747,0.0009417126861032645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001728354396312794,0.0,0.0,0.000351465005466202,0.0002577986761911564,0.0005243004450974816,0.00021216617786073757,7.656702637372313e-05,4.533423803395893e-05,0.0,1.7395450304510804e-05,4.407216639548783e-05,6.584466716646518e-05,6.291979070944669e-05,0.0,0.0,0.0,0.00023108243227461318,6.084934514938038e-05,0.0001293590113035478,0.0,0.00010300965636994008 +104148,85.0,Rural Climate Zone 3A,G1302870970200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Propane,10126.0,,,851.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0007681179561813058,0.0,8.018630251566482e-05,0.0008483042586969706,0.000534089372513428,0.000270355408595429,4.385947758811363e-05,0.0,0.0,0.00045390306999776325,0.000270355408595429,4.385947758811363e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.018630251566482e-05,0.0,0.0,0.0,0.0,6.467472755773629e-06,9.153338420108492e-05,3.3611937028426856e-05,9.800085695685855e-05,5.408971859310424e-05,3.221711624713737e-05,5.226549360843316e-06,0.0,0.0,0.0,0.0,0.0,6.46747275577363e-06,0.0,0.0,6.170099426149884e-05,3.123297030946322e-05,5.0668923858965144e-06,0.0,0.0 +104149,50.0,the Greater Atlanta and Macon Area,G1301350050715,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,289452.0,,30158.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014468843706472669,0.005128595692557373,0.0,0.019597439399030043,0.010857151354846495,0.003006253700215633,0.002613136126810222,0.0,0.003120898217157694,0.00885432972883733,0.003006253700215633,0.002182306074664359,0.0,0.00042595420275534857,0.0020028216260091643,0.000430830052145863,0.0026949440144023455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034266311759946906,0.0,0.0,0.001724224222241795,0.0008759965845179929,0.0020668873398412644,0.0010551534110045913,0.0003582494602382765,0.00026006120949377656,0.0,5.07601415051509e-05,0.000133816963454516,2.878557360996179e-05,0.00018006058053499126,0.0,0.0,0.0,0.0011450735080820468,0.0003170612030893272,0.00027560018774969164,0.0,0.0003291524409201987 +104150,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,218682.0,,2927.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.018521392227907715,0.0008616106968080057,0.0,0.019383002924715717,0.004518338666391888,0.005590879027284004,0.009273785231039826,0.0,0.0,0.003656727969583882,0.005590879027284004,0.009273785231039826,0.0,0.0,0.0008616106968080057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.756871131531285e-05,0.0,0.0,0.0022071583351445235,0.0007473229377496571,0.0022647270464598366,0.00043576516916811285,0.0006662541937458115,0.0011051389722305988,0.0,0.0,5.756871131531285e-05,0.0,0.0,0.0,0.0,0.0,0.000527926649064005,0.0006532432046651436,0.0010835571927306881,0.0,0.0 +104151,81.0,the Columbus-Albany Area,G1300950000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,177365.0,,9484.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01142315768245884,0.001612789135490843,0.0,0.013035946817949682,0.00645716713448477,0.004104720511633585,0.0013396883785377698,0.0,0.0011343707932935582,0.0062546154856220875,0.004104720511633585,0.0008572629746595531,0.0,0.00020655871054361518,0.0002025516488626832,0.00048242540387821665,0.0009278120827499429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010775700892634196,0.0,0.0,0.001361276386095233,0.00041571522057418824,0.0014690333950215751,0.000745350856686259,0.000489151884210426,0.00010215842908916361,0.0,2.4615216109384823e-05,1.3533300388893498e-05,3.2232805521831514e-05,6.199090301561693e-05,0.0,0.0,0.0,0.0007276643799077605,0.0004625649055668814,0.00015097077293107792,0.0,0.0001278333366158556 +104152,50.0,the Greater Atlanta and Macon Area,G1300670030327,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Propane,16743.0,,,2944.0,3.20458438519356,Mercantile,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,24034.3828889517,0.0,0.0,0.001508170706482129,0.0,0.00027743245726442515,0.001785603163746554,0.001088498683050712,0.0005113699201339897,0.00018573456056185242,0.0,0.0,0.000811066225786287,0.0005113699201339897,0.00018573456056185242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027743245726442515,0.0,0.0,0.0,0.0,2.2374633386885e-05,0.00017972571671498377,7.4142828213165e-05,0.00020210035010186875,9.665315610907907e-05,6.09389408026235e-05,2.2133619803281225e-05,0.0,0.0,0.0,0.0,0.0,2.2374633386885e-05,0.0,0.0,0.00012319980687556422,5.7878504019784016e-05,2.1022039206520507e-05,0.0,0.0 +104153,50.0,the Greater Atlanta and Macon Area,G1301130140203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,26028.0,,7673.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0051522909977904825,0.005278374706835926,0.0,0.010430665704626406,0.004198989143050981,0.0005104310337181038,0.0033445174083709898,0.00037036193032461545,0.0020062227492196874,0.0022950390724995537,0.0005104310337181038,0.0017234309035051335,0.00037036193032461545,0.0002528846178010445,0.0019039500705514264,0.0016210865048658563,0.0017533381314186434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00035267196098523614,0.0,0.0,0.0006139846472548468,0.0005304755071567294,0.0009666566082400828,0.0002734936275860618,6.082669211031256e-05,0.00020537662096540828,4.4135034151700724e-05,3.0135579089639182e-05,0.0001272114698734332,0.00010831208247821638,0.00011714840863358653,0.0,0.0,0.0,0.00038913917078737143,4.730393493251101e-05,0.00030995143989149724,3.432310242960332e-05,0.00018592566697585078 +104154,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970300,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,52437.0,,6722.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0032921557781139844,0.0011431118614736442,0.0,0.0044352853699490494,0.0022897875255927192,0.0005262016662243271,0.0008837875953439519,0.0,0.0007355085827880503,0.0021147888583767983,0.0005262016662243271,0.0005182761946695635,0.0,0.00013290678920471584,0.00017499866721592115,0.0003655114006743885,0.0006026017935833345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.637659536187375e-05,0.0,0.0,0.0003923203134857658,0.0001973236221833608,0.00046869690884763956,0.0002520156043010503,6.270651104126239e-05,6.176204677697758e-05,0.0,1.5838264261921387e-05,1.1692471091662954e-05,2.4421508769466236e-05,4.026261550074455e-05,0.0,0.0,0.0,0.0002419723299958761,5.56061389106633e-05,9.339388099403337e-05,0.0,7.77245589470667e-05 +104155,50.0,the Greater Atlanta and Macon Area,G1300890023310,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,94983.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00798297164582656,0.0,0.0,0.00798297164582656,0.004635223889396993,0.0025104387407290634,0.0008373393892999423,0.0,0.0,0.004635223889396993,0.0025104387407290634,0.0008373393892999423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000951316366429284,0.0002928063675270426,0.000951316366429284,0.0005523712902516255,0.00029916446743515925,9.978422830968968e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005523712902516255,0.00029916446743515925,9.978422830968968e-05,0.0,0.0 +104156,85.0,Rural Climate Zone 3A,G1301470960500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,271462.0,,8159.0,,9.729435225087556,Education,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,1459415.2837631335,0.0,0.0,0.06422802551497715,0.007216461115764762,0.0,0.0714444866307419,0.04610097235460703,0.01774545816839472,0.00231677404142046,0.0006534514531507138,0.004627922830421758,0.03888451123884227,0.01774545816839472,0.00231677404142046,0.0006534514531507138,0.004627922830421758,0.007216461115764762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004821641233738962,0.0,0.0,0.007653927247681884,0.0025425832570467816,0.008136091371055781,0.004633790587480637,0.0021146912848193245,0.00027608539761533174,7.78705221312041e-05,0.0005515004449836973,0.0004821641233738962,0.0,0.0,0.0,0.0,0.0,0.005249974365554544,0.0020208510955579155,0.0002638340084170508,7.441498959691209e-05,0.0005270274136213708 +104157,50.0,the Greater Atlanta and Macon Area,G1301530020400,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,24369.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.005851525467056,0.0,0.0,0.005851525467056,0.002601220176174958,0.0008645370417969804,0.002257406870640657,0.0,0.00012844408551714444,0.002601220176174958,0.0008645370417969804,0.002257406870640657,0.0,0.00012844408551714444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006973155586111956,0.0002024770802484946,0.0006973155586111956,0.0003099826379347097,0.00010302529376908589,0.00026901103684429643,0.0,1.5306446113401932e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003099826379347097,0.00010302529376908589,0.00026901103684429643,0.0,1.5306446113401932e-05 +104158,50.0,the Greater Atlanta and Macon Area,G1300890022001,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,27264.0,,972.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006322542252001356,0.0007711607555453023,0.0,0.007093703007546658,0.0036000735057245734,0.001691442365042576,0.0015924419977766252,0.0,0.00020966243192914433,0.002828912750179271,0.001691442365042576,0.0015924419977766252,0.0,0.00020966243192914433,0.0007711607555453023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.152718595023834e-05,0.0,0.0,0.0007534423904586075,0.0002612097281918869,0.0008049695764088459,0.0003371148344986096,0.00020156518185975513,0.0001897675424931654,0.0,2.4984975600923147e-05,5.152718595023834e-05,0.0,0.0,0.0,0.0,0.0,0.00040852424211456636,0.00019193919489719253,0.00018070496594545723,0.0,2.3791788130868083e-05 +104159,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,7711.0,,1266.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001525945510490222,0.001004063875195192,0.0,0.0025300093856854143,0.0017198108913351587,0.0003928586002617103,0.0003445576691979547,0.0,7.286493196432983e-05,0.000788529241030557,0.0003928586002617103,0.0003445576691979547,0.0,0.0,0.0009312816503046017,0.0,7.286493196432983e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.708830310356634e-05,0.0,0.0,0.00018184144681052285,0.00011128232909133466,0.0002489297499140892,9.396619804290108e-05,4.681554863685548e-05,4.10597001307663e-05,0.0,0.0,6.22252300614627e-05,0.0,4.868599261469682e-06,0.0,0.0,0.0,0.00016921363908838088,3.865368787485857e-05,3.3901318670875955e-05,0.0,7.169241898473768e-06 +104160,50.0,the Greater Atlanta and Macon Area,G1300670030320,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,13934.0,,724.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030288984544809164,0.0005741525058982721,0.0,0.0036030509603791885,0.001585990846024959,0.0008880258507389439,0.0010359060985848255,0.0,9.312816503046014e-05,0.001104883798083408,0.0008880258507389439,0.0010359060985848255,0.0,0.0,0.00048110704794155116,0.0,9.312816503046014e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.836286510768299e-05,0.0,0.0,0.0003609479870260136,0.00013103272540628593,0.0003993108521336966,0.00013166687124352894,0.00010582432790940716,0.00012344693183061604,0.0,0.0,3.214589258591067e-05,0.0,6.2224987195694385e-06,0.0,0.0,0.0,0.00017576863695977795,9.841613762187818e-05,0.0001148050781143731,0.0,1.0320999437667393e-05 +104161,50.0,the Greater Atlanta and Macon Area,G1301210011420,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,8961.0,,346.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0021517899374755615,0.0002745874848145007,0.0,0.0024262947152163226,0.0010951243633821695,0.0006443708115029443,0.0006049195373292945,0.0,8.179729592817503e-05,0.000820536878567669,0.0006443708115029443,0.0006049195373292945,0.0,8.179729592817503e-05,0.0002745874848145007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8343823956651908e-05,0.0,0.0,0.0002564228088253996,8.143531175366257e-05,0.00027476663278205155,9.778109260701807e-05,7.678787345038584e-05,7.208657507587242e-05,0.0,9.747555749253185e-06,1.8343823956651908e-05,0.0,0.0,0.0,0.0,0.0,0.00012401775922645024,7.297200831759491e-05,6.850433433896663e-05,0.0,9.263164706212467e-06 +104162,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,15962.0,,897.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003832728504153245,0.0007112808341580438,0.0,0.004544009338311289,0.003114582982874839,0.0004201519345956817,0.0009297102159035547,0.0,7.956420493721375e-05,0.0024033021487167953,0.0004201519345956817,0.0009297102159035547,0.0,7.956420493721375e-05,0.0007112808341580438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.752541450215047e-05,0.0,0.0,0.000456740510756686,0.00018650309519878218,0.0005042659252588365,0.0002863979146235037,5.006887625739551e-05,0.00011079217283649268,0.0,9.48154703929419e-06,4.752541450215047e-05,0.0,0.0,0.0,0.0,0.0,0.00034563706909952985,4.662585137356236e-05,0.000103173463639806,0.0,8.829541145938386e-06 +104163,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010401,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,18670.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,100799.30806909183,0.0,0.0,0.0029592072880090864,0.0,0.0,0.0029592072880090864,0.0014203692718642979,0.0007787272665515758,0.0007129416274465107,0.0,4.7169122146702294e-05,0.0014203692718642979,0.0007787272665515758,0.0007129416274465107,0.0,4.7169122146702294e-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.0003526439487628377,0.00010660984074376245,0.0003526439487628377,0.00016926311000964412,9.279966949216143e-05,8.496010122673416e-05,0.0,5.621068034298057e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016926311000964412,9.279966949216143e-05,8.496010122673416e-05,0.0,5.621068034298057e-06 +104164,50.0,the Greater Atlanta and Macon Area,G1301350050317,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,18452.0,,6160.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004140152953891689,0.004777416785254756,0.0,0.008917488878363378,0.00463332286982664,0.0006985563049290112,0.0025860087033145853,0.000415381842623027,0.0005842191576701128,0.002444017168246251,0.0006985563049290112,0.0005821167773103313,0.000415381842623027,0.0,0.0021893057015803883,0.002003891926004254,0.0005842191576701128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003191974119533514,0.0,0.0,0.0004933705082745895,0.00046995224723239687,0.0008125679202279409,0.00029124672589596817,8.324501124947129e-05,6.936923671546982e-05,4.949989845914272e-05,0.0,0.00014627585269010845,0.00013388765212802464,3.903390713521823e-05,0.0,0.0,0.0,0.000422191670708375,6.365294665357156e-05,0.00023563894975435492,3.784988852406496e-05,5.3234464587574316e-05 +104165,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13488.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003002101362589381,0.0,0.0,0.003002101362589381,0.0015419906827956475,0.00039980599445581206,0.000984958541161412,0.0,7.526343710276975e-05,0.0015419906827956475,0.00039980599445581206,0.000984958541161412,0.0,7.526343710276975e-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.0003577534209808043,0.00010960802577103513,0.0003577534209808043,0.00018375543503129966,4.764394834484566e-05,0.00011737521324757283,0.0,8.968968347912609e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00018375543503129966,4.764394834484566e-05,0.00011737521324757283,0.0,8.968968347912609e-06 +104166,50.0,the Greater Atlanta and Macon Area,G1300890023206,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,22377.0,,3320.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0020285522866718567,0.0009773412021566428,0.0,0.0030058934888284993,0.0009844611908177098,0.0007721811840564997,0.0012492511139542896,0.0,0.0,7.119988661067047e-06,0.0007721811840564997,0.0012492511139542896,0.0,0.0,0.0009773412021566428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.529948269644993e-05,0.0,0.0,0.0002417383101047019,0.00014176618424049787,0.00030703779280115184,8.484740759208283e-07,9.201920786312052e-05,0.0001488706281656605,0.0,0.0,6.529948269644993e-05,0.0,0.0,0.0,0.0,0.0,0.00010055805112538003,7.887465316932748e-05,0.00012760508850644432,0.0,0.0 +104167,50.0,the Greater Atlanta and Macon Area,G1301350050536,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,95612.0,,5694.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008463947900056046,0.0016762049167679302,0.0,0.010140152816823976,0.002999417981899683,0.0027895317644296945,0.0043512030704945985,0.0,0.0,0.001323213065131753,0.0027895317644296945,0.0043512030704945985,0.0,0.0,0.0016762049167679302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011199405960412762,0.0,0.0,0.001008631047490455,0.0003836165745234296,0.0011206251070945826,0.00015768454575766682,0.00033242269196222116,0.0005185238097705669,0.0,0.0,0.00011199405960412762,0.0,0.0,0.0,0.0,0.0,0.0003314765721884383,0.0003082812841904364,0.00048086725071570785,0.0,0.0 +104169,50.0,the Greater Atlanta and Macon Area,G1301350050430,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,50665.0,,852.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2013 to 2018,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005529012588038494,0.00031680711276054884,0.0,0.0058458197007990416,0.0027532692511253423,0.0006589944430918119,0.0022261356941299286,0.0,0.00020738156402818708,0.0027532692511253423,0.0006589944430918119,0.0019093285813693796,0.0,0.00020738156402818708,0.0,0.00031680711276054884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.116760132701226e-05,0.0,0.0,0.000658880248758666,0.00023086524087124325,0.0006800478500856782,0.00032810103073478876,7.853091590608053e-05,0.0002275304804652272,0.0,2.4713204088277947e-05,0.0,2.116760132701226e-05,0.0,0.0,0.0,0.0,0.0003202895283751002,7.666123438287704e-05,0.00025896775307406776,0.0,2.4124826625340035e-05 +104170,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970500,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7504.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0021322710680730847,0.0,0.0,0.0021322710680730847,0.0011905683264773306,0.0002925349198159304,0.000602107496822158,0.0,4.714303203140523e-05,0.0011905683264773306,0.0002925349198159304,0.000602107496822158,0.0,4.714303203140523e-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.0002540999092409909,8.739098811347471e-05,0.0002540999092409909,0.00014187844511555272,3.48609975945613e-05,7.175235015222116e-05,0.0,5.6179724707096236e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014187844511555272,3.48609975945613e-05,7.175235015222116e-05,0.0,5.6179724707096236e-06 +104171,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,216162.0,,32405.0,,9.729435225087556,Education,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,1459415.2837631335,0.0,0.0,0.05787250467110274,0.028661952117177557,0.0,0.0865344567882803,0.06437188442930329,0.013680245014394875,0.0023236903353784488,0.0006436764243567572,0.005514960584846921,0.03954635446199534,0.013680245014394875,0.0023236903353784488,0.0006436764243567572,0.0016785384349773205,0.02482552996730796,0.0,0.0038364221498696006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019150254620340977,0.0,0.0,0.006896555819915707,0.0034903542679008558,0.008811581281949804,0.004712663510440848,0.0016302486631273715,0.0002769097380044457,7.670568978772247e-05,0.00020002821855531872,0.0016586979770785704,0.0,0.00025632748495552744,0.0,0.0,0.0,0.006554823511620005,0.0013930241822198027,0.00023661541337648365,6.554391560313737e-05,0.0005615742591303764 +104172,35.0,Eastern Counties in South Carolina and Georgia,G1300510011200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,74207.0,,17718.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0036208766788417635,0.0030131508108080336,0.0,0.006634045220011217,0.0025773207967417153,0.0007317142854441593,0.002566452085191223,0.0,0.000758575782995539,0.0021682990891425174,0.0007317142854441593,0.0006019635005722127,0.0,0.00011891753404429413,0.00040902170759919807,0.0019644885846190102,0.0006396582489512449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002013214515876685,0.0,0.0,0.00043149359299846535,0.0003171007480514919,0.0006328150445861338,0.0002583924412937157,8.719712215540017e-05,7.173494618958518e-05,0.0,1.4171196256179426e-05,2.7328484060396275e-05,0.00013125585751110955,4.273829465719869e-05,0.0,0.0,0.0,0.00024584809430951106,6.979750556582336e-05,0.0002448113386112424,0.0,7.235979738128341e-05 +104173,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,77793.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006859847059416811,0.0,0.0,0.0068598470594168105,0.00407337304699746,0.0023528605068460075,0.0004336438791727828,0.0,0.0,0.00407337304699746,0.0023528605068460075,0.0004336438791727828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008174750999416251,0.00021649183676850098,0.0008174750999416251,0.0004854162213606056,0.00028038597090037173,5.167652724548961e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00048541622136060564,0.0002803859709003718,5.1676527245489616e-05,0.0,0.0 +104174,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,46510.0,,7755.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0025742711745774666,0.0013188020127849476,0.0,0.0038930731873624137,0.0018399859867273998,0.0007879018007843065,0.0007103314695715754,0.0,0.0005548716606405524,0.0015030204679392963,0.0007879018007843065,0.00017730361420052805,0.0,0.0001060452916533358,0.0003369655187881035,0.0005330278553710474,0.0004488263689872166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.811478031375373e-05,0.0,0.0,0.0003067716823505262,0.00015340767925874063,0.0003948864626642799,0.0001791124890456399,9.389296797501675e-05,2.1128981496695792e-05,0.0,1.2637243833173751e-05,2.2514101717681795e-05,3.5613861612137214e-05,2.998800162490907e-05,0.0,0.0,0.0,0.00018663547348897767,7.991931825184232e-05,7.20511194726036e-05,0.0,5.628234989629158e-05 +104175,50.0,the Greater Atlanta and Macon Area,G1300570091005,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,74029.0,,4651.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00783963863007981,0.0013548751501197955,0.0,0.009194513780199604,0.004718629793453059,0.00382558522278428,0.0006502987639622666,0.0,0.0,0.003363754643333263,0.00382558522278428,0.0006502987639622666,0.0,0.0,0.0013548751501197955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.052475761524502e-05,0.0,0.0,0.0009342360125061891,0.000342151129650852,0.001024760770121434,0.0004008527526995021,0.00045588829443280116,7.749496537388568e-05,0.0,0.0,9.052475761524502e-05,0.0,0.0,0.0,0.0,0.0,0.0005259078203210791,0.0004263748744939605,7.247807530639451e-05,0.0,0.0 +104176,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,62199.0,,12777.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003201730934871715,0.0021729089831117308,0.0,0.005374622187622026,0.001616104713076393,0.0005139677168444906,0.0025027291662475535,0.0,0.000741820591453589,0.0013598123387495295,0.0005139677168444906,0.0012140155767924356,0.0,0.00011391757212383926,0.00025629237432686327,0.0012887135894551179,0.0006279030193297499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014518051334549964,0.0,0.0,0.00038154334188769565,0.00024817112044105903,0.0005267238552331952,0.00016204589161937394,6.12484197755028e-05,0.00014467160723224967,0.0,1.3575310371795416e-05,1.71238918705311e-05,8.610397486805135e-05,4.195264660691721e-05,0.0,0.0,0.0,0.00015838153366251064,5.036987677109851e-05,0.00024527252503188943,0.0,7.269991976769663e-05 +104177,50.0,the Greater Atlanta and Macon Area,G1301210008400,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,5200.0,,451.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.00019838501392897083,7.677246494882863e-05,0.0,0.0002751574788777995,0.00012409479957894954,5.510596329352411e-05,2.2003378522285526e-05,0.0,7.391787676020013e-05,8.680784951257853e-05,5.510596329352411e-05,2.2003378522285526e-05,0.0,3.4432361877742546e-05,3.728695006637104e-05,0.0,3.948551488245759e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.129969752180099e-06,0.0,0.0,2.364105810197143e-05,1.1395922292238815e-05,2.8771027854151527e-05,1.034467963779177e-05,6.566843201441344e-06,2.6220889359680524e-06,0.0,4.1032205589443665e-06,2.4915303438417435e-06,0.0,2.638439408338356e-06,0.0,0.0,0.0,1.2975605641549485e-05,5.761992046568911e-06,2.3007181884787703e-06,0.0,7.72900413196454e-06 +104178,50.0,the Greater Atlanta and Macon Area,G1301210011423,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,11168.0,,113.0,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0027175890289261634,8.940634671219132e-05,0.0,0.0028069953756383543,0.0013916292227375868,0.0006557016806052293,0.000670175418509608,0.0,8.940634671219132e-05,0.0013916292227375868,0.0006557016806052293,0.000670175418509608,0.0,0.0,0.0,0.0,8.940634671219132e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.97317147052083e-06,0.0,0.0,0.0003238505146558309,0.00010748220571444872,0.00032982368612635173,0.00016583811429785777,7.813886664408751e-05,7.986367765098902e-05,0.0,0.0,0.0,0.0,5.97317147052083e-06,0.0,0.0,0.0,0.0001635172911035091,7.704535147204447e-05,7.874602459358933e-05,0.0,1.0505300825085779e-05 +104179,50.0,the Greater Atlanta and Macon Area,G1300450910300,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,10094.0,,,603.0,3.20458438519356,Mercantile,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,9613.75315558068,0.0,0.0,0.0008900983315233171,0.0,5.685937814747141e-05,0.0009469273360713508,0.0006355371946355191,0.000274273602922899,3.7146912112370475e-05,0.0,0.0,0.0005786778164880477,0.000274273602922899,3.7146912112370475e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.685937814747141e-05,0.0,0.0,0.0,0.0,4.584965193638784e-06,0.00010607021182147652,3.061673030706117e-05,0.00011065517701511531,6.895921090676577e-05,3.2684320516906094e-05,4.426680397804667e-06,0.0,0.0,0.0,0.0,0.0,4.584965193638784e-06,0.0,0.0,7.426702989043728e-05,3.2050816283246454e-05,4.340880212005582e-06,0.0,0.0 +104180,50.0,the Greater Atlanta and Macon Area,G1302190030100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,316397.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02724595626464385,0.0,0.0,0.027245956264643857,0.009568865795592239,0.006645281830854179,0.011031808638197435,0.0,0.0,0.009568865795592239,0.006645281830854179,0.011031808638197435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003246849790328711,0.001027990990512311,0.003246849790328711,0.0011403038895140191,0.0007919058413516881,0.0013146400594630041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011403038895140187,0.0007919058413516878,0.0013146400594630037,0.0,0.0 +104181,50.0,the Greater Atlanta and Macon Area,G1301430010400,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,45750.0,,5591.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.004076254887673479,0.001645791516926907,0.0,0.005722046404600387,0.004070055587201343,0.0005776704593416594,0.0010743510476636812,0.0,0.0,0.0024242640702744358,0.0005776704593416594,0.0010743510476636812,0.0,0.0,0.001645791516926907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010996263844351067,0.0,0.0,0.0004857578662351432,0.0002804721046187142,0.0005957205046786538,0.0002888939417228521,6.883965243818118e-05,0.00012802792928350468,0.0,0.0,0.00010996263844351067,0.0,0.0,0.0,0.0,0.0,0.00042373224490602283,6.0141095203333334e-05,0.00011185035965484197,0.0,0.0 +104182,50.0,the Greater Atlanta and Macon Area,G1301350050421,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12591.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026744159364342447,0.0,0.0,0.0026744159364342447,0.001494434115395546,0.0006418068922170256,0.00045348288531262264,0.0,8.460933643531148e-05,0.001494434115395546,0.0006418068922170256,0.00045348288531262264,0.0,8.460933643531148e-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.0003187092019046426,8.414394676742444e-05,0.0003187092019046426,0.00017809118534187866,7.6483900506557e-05,5.404139516462011e-05,0.0,1.008286471884121e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00017809118534187866,7.6483900506557e-05,5.404139516462011e-05,0.0,1.008286471884121e-05 +104183,50.0,the Greater Atlanta and Macon Area,G1300450910800,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,21248.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.005101951257756657,0.0,0.0,0.005101951257756657,0.002902522045807255,0.0008209504139363655,0.001247553500283713,0.0,0.0001310907118768023,0.002902522045807255,0.0008209504139363655,0.001247553500283713,0.0,0.0001310907118768023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006079896048153606,0.0001839985011555292,0.0006079896048153606,0.00034588790492956815,9.783106355305447e-05,0.00014866852333611456,0.0,1.5621825078741824e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00034588790492956815,9.783106355305447e-05,0.00014866852333611456,0.0,1.5621825078741824e-05 +104184,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,81065.0,,1363.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007828550291268409,0.00040108246470467766,0.0,0.008229632755973087,0.002736223918290585,0.0029411077299340486,0.0025523317973547496,0.0,0.0,0.0023351414535859073,0.0029411077299340486,0.0025523317973547496,0.0,0.0,0.00040108246470467766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6798862987030906e-05,0.0,0.0,0.0009329127423344101,0.0003148349738960996,0.0009597116053214411,0.0002782741550033045,0.0003504859489622242,0.00030415629558812465,0.0,0.0,2.6798862987030906e-05,0.0,0.0,0.0,0.0,0.0,0.0003190890683713236,0.0003429819172513676,0.00029764419861559816,0.0,0.0 +104185,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4701.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008036646355248502,0.0,0.0,0.0008036646355248502,0.00041560304554001985,0.00023166251354380011,0.00011711321641485931,0.0,3.936856709991033e-05,0.00041560304554001985,0.00023166251354380011,0.00011711321641485931,0.0,3.936856709991033e-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,9.577434059694753e-05,3.2072221607115254e-05,9.577434059694753e-05,4.952825578878886e-05,2.760769044067614e-05,1.3956618944661698e-05,0.0,4.691631792132039e-06,0.0,0.0,0.0,0.0,0.0,0.0,4.952825578878886e-05,2.760769044067614e-05,1.3956618944661698e-05,0.0,4.691631792132039e-06 +104186,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,105925.0,,2571.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005036575116787299,0.00043728390370276215,0.0,0.0054738767508514825,0.002677018619006672,0.0010235383040568082,0.0012863199906634109,0.0,0.00048699983712459035,0.0023416665631077935,0.0010235383040568082,0.0011843704124981072,0.0,0.00048699983712459035,0.0003353520558988787,0.0001019495781653036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9216895174876004e-05,0.0,0.0,0.0006001999004506878,0.00017903160633664847,0.0006294167956255637,0.00027905233327732307,0.0001219732802464834,0.00014113936299862883,0.0,5.8034923928252496e-05,2.2406372109540804e-05,6.811707710154363e-06,0.0,0.0,0.0,0.0,0.0003078184909338796,0.0001176921273280856,0.00014790822729914916,0.0,5.599795006444927e-05 +104187,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,196461.0,,52721.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009789996361696356,0.00896572958963952,0.0,0.018755725951335876,0.006315554737822809,0.002110037121516224,0.0074789678631224125,0.0,0.002851130768151591,0.00504980196640666,0.002110037121516224,0.002191703166216987,0.0,0.0004384363771950657,0.0012657527714161493,0.005287264696905426,0.002412694390956525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000599037836505344,0.0,0.0,0.0011666544102599682,0.0009248313909158814,0.0017656922467653119,0.000601774864605462,0.00025144893038577237,0.00026118091063363053,0.0,5.224759174316954e-05,8.457022868679438e-05,0.0003532642350406482,0.00016120218813840955,0.0,0.0,0.0,0.00059455582063468,0.0001986420677885215,0.0007040812818435115,0.0,0.00026840973817282343 +104188,50.0,the Greater Atlanta and Macon Area,G1300670031408,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,20085.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0017895109432190493,0.0,0.0,0.0017895109432190498,0.0007989425207480966,0.00044527549777336975,0.0005453236143038808,0.0,0.0,0.0007989425207480966,0.00044527549777336975,0.0005453236143038808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021325293639823547,8.539021846614517e-05,0.00021325293639823547,9.520860389736349e-05,5.306271401478303e-05,6.498527571360394e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.520860389736346e-05,5.3062714014783016e-05,6.498527571360393e-05,0.0,0.0 +104189,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000500,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,68252.0,,2412.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.003311393220254742,0.00041026283289860176,0.0,0.003721656053153344,0.0017745609530874047,0.0007138952722170061,0.0006677786021634487,0.0,0.0005654034953240638,0.0017745609530874047,0.0007138952722170061,0.00025751576926484696,0.0,0.0005654034953240638,0.0,0.00041026283289860176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7411342712723125e-05,0.0,0.0,0.0003946115083878168,0.00013859218727632248,0.00042202285110053985,0.00021147055871850585,8.507334268770778e-05,3.068759261862378e-05,0.0,6.737790147447627e-05,0.0,2.741134271272313e-05,0.0,0.0,0.0,0.0,0.00020122903948608937,8.095324067170138e-05,7.572377069884485e-05,0.0,6.411478968259203e-05 +104190,50.0,the Greater Atlanta and Macon Area,G1301390001501,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,16410.0,,1421.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014767838550454582,0.0004182072650187959,0.0,0.0018949911200642536,0.0008377034935020952,0.0004994119632825174,0.0005578756632796413,0.0,0.0,0.00041949622848329933,0.0004994119632825174,0.0005578756632796413,0.0,0.0,0.0004182072650187959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7941723411273378e-05,0.0,0.0,0.00017598618682765287,8.593695754657107e-05,0.0002039279102389262,4.999075618759739e-05,5.951419821792175e-05,6.648123242213369e-05,0.0,0.0,2.7941723411273378e-05,0.0,0.0,0.0,0.0,0.0,9.014877221373881e-05,5.374380752616397e-05,6.003533049902346e-05,0.0,0.0 +104191,81.0,the Columbus-Albany Area,G1302150010302,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,12010.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0025681373466792346,0.0,0.0,0.0025681373466792346,0.0010958687270458233,0.000701107864088109,0.0006992883084658444,0.0,7.195515415319745e-05,0.0010958687270458233,0.000701107864088109,0.0006992883084658444,0.0,7.195515415319745e-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.00030604349792566124,9.082136352538165e-05,0.00030604349792566124,0.00013059406613361927,8.355063385771248e-05,8.333379842715102e-05,0.0,8.574855663113112e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013059406613361927,8.355063385771248e-05,8.333379842715102e-05,0.0,8.574855663113112e-06 +104192,50.0,the Greater Atlanta and Macon Area,G1301690030104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,833241.0,,,,9.729435225087556,Education,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,3405302.3287806446,0.0,0.0,0.22308146514204735,0.0,0.0,0.22308146514204738,0.18628152490214273,0.0191597941741769,0.006913435223152111,0.0006607366161197946,0.010065882009203077,0.18628152490214273,0.0191597941741769,0.006913435223152111,0.0006607366161197946,0.010065882009203077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.026584184703819017,0.006599004507342045,0.026584184703819017,0.02219880733594045,0.0022832354399732256,0.0008238606411928339,7.873869858403681e-05,0.0011995315987776626,0.0,0.0,0.0,0.0,0.0,0.0,0.022198807335940447,0.0022832354399732256,0.0008238606411928338,7.87386985840368e-05,0.0011995315987776624 +104193,35.0,Eastern Counties in South Carolina and Georgia,G1301270000501,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,31446.0,,5908.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0015773284126507374,0.0010047618513129722,0.0,0.00258209026396371,0.000744125538438196,0.0003394300390254909,0.0012476146116834354,0.0,0.00025092007481658724,0.0006851720867165206,0.0003394300390254909,0.0004966451537370991,0.0,5.609886353304707e-05,5.8953451721675564e-05,0.0007509694579463364,0.0001948212112835402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.713236242669134e-05,0.0,0.0,0.00018796769182333482,0.00011313945872734744,0.00025510005425002615,8.165085635238587e-05,4.044933221224705e-05,5.918440475330402e-05,0.0,6.685211404071754e-06,3.938927898299753e-06,5.017542590450708e-05,1.3016823983915094e-05,0.0,0.0,0.0,7.351658765523375e-05,3.3534312327474926e-05,0.00012325926772017865,0.0,2.4789886547138794e-05 +104194,50.0,the Greater Atlanta and Macon Area,G1302230120604,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,454666.0,,66062.0,,7.614023970037612,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,2664908.3895131643,0.0,0.0,0.12308966164752323,0.045726901946078057,0.0,0.16881649142657856,0.12255858452723274,0.027144903930706444,0.012285641783005091,0.0008037241321749287,0.006023564886436632,0.08331170388637611,0.027144903930706444,0.008527111072059373,0.0008037241321749287,0.003302146459183642,0.039246880640856616,0.0037585307109457176,0.0027214184272529906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003055202686766455,0.0,0.0,0.014668353939820258,0.006781454724184032,0.017723556626586714,0.009928092608088288,0.003234805045270284,0.0010161591283539275,9.577823094904863e-05,0.00039351032715593235,0.0026222457695153738,0.00025112291971838863,0.00018182917575661824,0.0,0.0,0.0,0.012867072373005944,0.0028498651871838787,0.0012898341032620737,8.438067897502753e-05,0.0006323967075521794 +104195,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302950020602,ComStock 90.1-2004,gen4_led,200001_500000,NaturalGas,288902.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,1133273.7058648225,0.0,0.0,0.0244277604079321,0.0,0.0,0.0244277604079321,0.006070465504898205,0.006069728954347061,0.012287535259080539,0.0,0.0,0.006070465504898205,0.006069728954347061,0.012287535259080539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002911008622501686,0.0009277737287217729,0.002911008622501686,0.00072340554894339,0.0007233177756490116,0.0014642816406886857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00072340554894339,0.0007233177756490116,0.0014642816406886857,0.0,0.0 +104196,50.0,the Greater Atlanta and Macon Area,G1301350050544,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,84150.0,,28511.0,,7.614023970037612,Education,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,571051.7977528209,0.0,0.0,0.01763090882277636,0.01973515487161865,0.0,0.037366063694395005,0.029415278465879584,0.004047487469967754,0.0018613318503237644,0.0007524855460346575,0.001289624696234711,0.010259913454896059,0.004047487469967754,0.0018613318503237644,0.0007524855460346575,0.0007097626685768541,0.019155365010983524,0.0,0.0005798620276578568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013185900763605187,0.0,0.0,0.002101040829278858,0.001888819604405062,0.0034196309056393768,0.0012226537661947706,0.00048233114446211004,0.0002218112664342827,8.967222685756301e-05,8.458102533270666e-05,0.0012798518368290232,0.0,3.8743061318840676e-05,0.0,0.0,0.0,0.002691998712055905,0.00037041400335047946,0.0001703435495126249,6.886523692494337e-05,0.00011802261281756385 +104197,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,157945.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.013285412394072648,0.0,0.0,0.013285412394072648,0.007424522646564056,0.004560201098785745,0.0013006886487228462,0.0,0.0,0.007424522646564056,0.004560201098785745,0.0013006886487228462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015831977582724574,0.00041405043514421944,0.0015831977582724574,0.000884766483841151,0.0005434306397662366,0.0001550006346650696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000884766483841151,0.0005434306397662366,0.0001550006346650696,0.0,0.0 +104198,85.0,Rural Climate Zone 3A,G1300310110401,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,280973.0,,8317.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.013726562125622158,0.0014144218519232925,0.0,0.015140983977545451,0.0071395023633740815,0.003845059368636911,0.0022614898687663147,0.0,0.0018949146464067232,0.006181176328620228,0.003845059368636911,0.0018053763212354567,0.0,0.0018949146464067232,0.000958326034753854,0.00045611354753085823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.450356345334987e-05,0.0,0.0,0.0016357677027751545,0.0005681145187456773,0.0017302712662285041,0.000736598757284027,0.00045820824419896095,0.00021514318374879534,0.0,0.0002258132917580212,6.402985439684057e-05,3.0474893697663708e-05,0.0,0.0,0.0,0.0,0.0008158832882220179,0.0004394031294374104,0.00025843703055206395,0.0,0.00021654579183859763 +104199,50.0,the Greater Atlanta and Macon Area,G1300670030405,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,1827.0,,291.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0003711066398682724,0.00023058732158518912,0.0,0.0006016112543797222,0.0003331440930219303,0.00011678238811990206,0.00012530121671505074,0.0,2.654897067031768e-05,0.0001025567714367412,0.00011678238811990206,0.00012530121671505074,0.0,2.654897067031768e-05,0.00023058732158518912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5403915491011296e-05,0.0,0.0,4.422054893813219e-05,2.97940471789186e-05,5.962446442914348e-05,1.2220521658855339e-05,1.39156262760514e-05,1.493071799448858e-05,0.0,3.1635382681391643e-06,1.5403915491011296e-05,0.0,0.0,0.0,0.0,0.0,3.301723160854962e-05,1.1574064307664364e-05,1.241834803548974e-05,0.0,2.6312143362324794e-06 +104200,50.0,the Greater Atlanta and Macon Area,G1300670031001,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,2261.0,,256.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00047076866372413787,0.0002030458660299997,0.0,0.0006738145297541374,0.0004062571462074781,0.00014076743950430123,7.063184097336853e-05,0.0,5.6075395995250426e-05,0.0002593693832464681,0.00014076743950430123,7.063184097336853e-05,0.0,0.0,0.00014688776296100994,0.0,5.6075395995250426e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3565184350330675e-05,0.0,0.0,5.6099958929281723e-05,3.1715054830939346e-05,6.96651432796124e-05,3.090819943819879e-05,1.6774794465502017e-05,8.416965025580919e-06,0.0,0.0,9.813347212296242e-06,0.0,3.746311604694174e-06,0.0,0.0,0.0,4.2002600195097116e-05,1.4553832559457508e-05,7.3025693335938385e-06,0.0,5.797590173508925e-06 +104201,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010701,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,64482.0,,9040.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005561447694844508,0.002661034382861213,0.0,0.008222451388099423,0.004638733991897776,0.0014619914648099652,0.0021217873106042775,0.0,0.0,0.001977699609036563,0.0014619914648099652,0.0021217873106042775,0.0,0.0,0.002661034382861213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017779395054488083,0.0,0.0,0.0006627453927025109,0.00036335567485659676,0.0008405393432473917,0.00023567807807552978,0.00017422228179389356,0.0002528486900454347,0.0,0.0,0.00017779395054488083,0.0,0.0,0.0,0.0,0.0,0.00047419415926159105,0.00014945194415417584,0.00021689951431603456,0.0,0.0 +104202,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock 90.1-2004,gen5_led,10001_25000,NaturalGas,8880.0,,1620.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0008440562420057196,0.0004768551026537058,0.0,0.0013209113446594257,0.0006395713952441259,0.00024904615510585806,0.00043229379430944134,0.0,0.0,0.00016271629259042016,0.00024904615510585806,0.00043229379430944134,0.0,0.0,0.0004768551026537058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.186009292903161e-05,0.0,0.0,0.00010058535098729691,6.350417565068368e-05,0.00013244544391632852,1.939074031686173e-05,2.9678585000251402e-05,5.1516025670183765e-05,0.0,0.0,3.186009292903161e-05,0.0,0.0,0.0,0.0,0.0,6.412869243782174e-05,2.497141742480439e-05,4.3345334053702356e-05,0.0,0.0 +104203,50.0,the Greater Atlanta and Macon Area,G1300670031002,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,30705.0,,2299.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002839141833844414,0.0006696771204035521,0.0,0.003508818954247966,0.002367925812167132,0.0009294625163946437,0.00021143062568619047,0.0,0.0,0.00169824869176358,0.0009294625163946437,0.00021143062568619047,0.0,0.0,0.0006696771204035521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4743444322481967e-05,0.0,0.0,0.00033833585212778754,0.00012774495577424664,0.00038307929645026953,0.00020237749710260455,0.00011076251589706685,2.5195839128116156e-05,0.0,0.0,4.474344432248197e-05,0.0,0.0,0.0,0.0,0.0,0.00025852099125069696,0.00010147512638869393,2.3083178810878677e-05,0.0,0.0 +104204,81.0,the Columbus-Albany Area,G1302150003400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,38744.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0034164832119572006,0.0,0.0,0.0034164832119571997,0.0022223755236614254,0.0009561609103004272,0.00023797715159478553,0.0,0.0,0.0022223755236614254,0.0009561609103004272,0.00023797715159478553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004071370047695634,0.00012851154245991243,0.0004071370047695634,0.0002648370438379422,0.0001139442124975183,2.8359368008832782e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026483704383794225,0.00011394421249751833,2.835936800883279e-05,0.0,0.0 +104205,50.0,the Greater Atlanta and Macon Area,G1301210008000,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,136224.0,,5894.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.012326962855846032,0.001002297331075585,0.0,0.013329260186921616,0.00750102443272896,0.002575795985659591,0.0019277690061180813,0.0,0.0013246707624149851,0.006840869885976133,0.002575795985659591,0.0015856262217953223,0.0,0.0013246707624149851,0.0006601545467528259,0.0003421427843227589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.696752681213462e-05,0.0,0.0,0.0014689801615875712,0.0005136710427107872,0.0015359476883997057,0.000815213144390632,0.000306952592254822,0.0001889559894638394,0.0,0.00015785843547827766,4.4107587578209934e-05,2.2859939233924667e-05,0.0,0.0,0.0,0.0,0.0008643526329678892,0.000296812263732755,0.000222139286591531,0.0,0.00015264350510753045 +104206,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300490010100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,79031.0,,3760.0,,9.729435225087556,Education,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,364853.82094078336,0.0,0.0,0.021158695345288223,0.003325261917747895,0.0,0.024483957263036125,0.01915140240417454,0.0026678451227279353,0.0008377937414442894,0.0006602755298559285,0.0011665482475806562,0.015826140486426644,0.0026678451227279353,0.0008377937414442894,0.0006602755298559285,0.0011665482475806562,0.003325261917747895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022217565878173998,0.0,0.0,0.0025214418994848227,0.0007757481147943472,0.002743617558266562,0.0018859713738680743,0.00031792208186788904,9.983830327583034e-05,7.868379212492516e-05,0.0001390153589916625,0.00022217565878173995,0.0,0.0,0.0,0.0,0.0,0.002146063372723189,0.00029895276498062784,9.388129519007965e-05,7.398900094231922e-05,0.00013072079077099696 +104207,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,65571.0,,2721.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00599051908049269,0.0008010907931889355,0.0,0.006791609873681625,0.0029686669963893855,0.0015396975479557487,0.0022832453293364914,0.0,0.0,0.00216757620320045,0.0015396975479557487,0.0022832453293364914,0.0,0.0,0.0008010907931889355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.352514067297613e-05,0.0,0.0,0.0007138768344976917,0.00026542478870636356,0.0007674019751706678,0.0002583052349356674,0.00018348233214009025,0.00027208926742193403,0.0,0.0,5.3525140672976136e-05,0.0,0.0,0.0,0.0,0.0,0.0003354375411758203,0.00017397450110398738,0.00025798993289086013,0.0,0.0 +104208,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4610.0,,256.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011068687678531513,0.0002030458660299997,0.0,0.001309914633883151,0.0009167252053264835,0.00021768501808185712,0.00013638396459611792,0.0,3.90377388049531e-05,0.0007136793392964838,0.00021768501808185712,0.00013638396459611792,0.0,3.90377388049531e-05,0.0002030458660299997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3567378947309337e-05,0.0,0.0,0.00013190300453889286,5.481986825836674e-05,0.00014547038348620219,8.504752493208597e-05,2.594102278609923e-05,1.6252563288099402e-05,0.0,4.652037520911412e-06,1.3567378947309337e-05,0.0,0.0,0.0,0.0,0.0,0.00010180538771063678,2.4174646378058096e-05,1.514589357044749e-05,0.0,4.335270931019537e-06 +104209,81.0,the Columbus-Albany Area,G1302150001400,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,11026.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0023808885317334427,0.0,0.0,0.002380888531733443,0.0012582227127960837,0.00047970102768798317,0.0005672051117041703,0.0,7.58423866189449e-05,0.0012582227127960837,0.00047970102768798317,0.0005672051117041703,0.0,7.58423866189449e-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.00028372937170265475,7.556753449140528e-05,0.00028372937170265475,0.00014994181164110486,5.7165746895313784e-05,6.759356762207963e-05,0.0,9.038101707414264e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014994181164110484,5.716574689531377e-05,6.759356762207962e-05,0.0,9.038101707414262e-06 +104210,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,25546.0,,3883.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005867267388845109,0.0026713537604184643,0.0,0.008538621149263573,0.0029675572407129387,0.00048267540493506243,0.0036031396238532833,0.0003669193717158662,0.0011182577880754076,0.0029675572407129387,0.00048267540493506243,0.0009317858634348188,0.0003669193717158662,0.0011182577880754076,0.0,0.0026713537604184643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000178486180350882,0.0,0.0,0.0006991911080281923,0.00038356242273688,0.0008776772883790744,0.00035363815857718706,5.751951101395628e-05,0.00011103915112827933,4.37250844498366e-05,0.00013326065612624164,0.0,0.000178486180350882,0.0,0.0,0.0,0.0,0.0003050325745349709,4.961377641250827e-05,0.0003703635235049038,3.771531651209395e-05,0.00011494472538244113 +104211,85.0,Rural Climate Zone 3A,G1302350950200,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,23117.0,,3837.0,,8.53126424238864,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.00542697145564424,0.002975757677704889,0.0,0.00840272913334913,0.004525454585213224,0.0008794418766533079,0.002019093753221138,0.00042645976990341534,0.000552198287574976,0.0028143595547001085,0.0008794418766533079,0.0013066293936043398,0.00042645976990341534,0.0,0.0017110950305131154,0.0007124643596167978,0.000552198287574976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019882347803921676,0.0,0.0,0.0006467173088247253,0.00039490562754382867,0.0008455407868639423,0.0003353795117878949,0.00010480067720744562,0.00015570744234967945,5.0820041521889305e-05,0.0,0.00011432579600521361,4.7602882122864564e-05,3.6894799911138605e-05,0.0,0.0,0.0,0.0004553825751340255,8.849553098591397e-05,0.00020317519388729973,4.2913334904349974e-05,5.556601518047136e-05 +104212,81.0,the Columbus-Albany Area,G1302150010106,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,16780.0,,6722.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0032450418085723377,0.004624001691289491,0.0,0.00786904349986183,0.0019303430198851716,0.0003021562378887694,0.00382346337481324,0.0003775339274261766,0.001435618659819486,0.0013922997973260572,0.0003021562378887694,0.0009933933185372287,0.0003775339274261766,0.0001797302473651213,0.000538043222559114,0.0028300700562760117,0.0012558884124543649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030894743964270533,0.0,0.0,0.00038670923924438326,0.0004054753172440779,0.0006956566788870887,0.00016591934008423312,3.60077360415636e-05,0.0001183819491838826,4.499043971582976e-05,2.1418321034929594e-05,3.5948748967778376e-05,0.0001890879277883944,8.391076288653254e-05,0.0,0.0,0.0,0.00017065047541670988,2.671188753225334e-05,0.00033801031004793673,3.3375593631564584e-05,0.0001269147526069582 +104213,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,FuelOil,44599.0,,7029.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0037977467105218266,0.002068970498165931,0.0,0.005866717208687758,0.00275819767639974,0.0011751050251390398,0.0019334145071489776,0.0,0.0,0.0006892271782338092,0.0011751050251390398,0.0019334145071489776,0.0,0.0,0.002068970498165931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013823636449500137,0.0,0.0,0.00045257070442106023,0.0002586958871461988,0.0005908070689160616,8.213397399442549e-05,0.00014003517072965326,0.0002304015596969815,0.0,0.0,0.00013823636449500137,0.0,0.0,0.0,0.0,0.0,0.0002777639737384437,0.00011833881383319995,0.0001947042813444179,0.0,0.0 +104214,50.0,the Greater Atlanta and Macon Area,G1302170100902,ComStock DOE Ref 1980-2004,gen3_t5_cfl,100001_200000,Electricity,248984.0,,25224.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.06665988668785852,0.022310857701436263,0.0,0.08897083660654757,0.07060798393083643,0.011127487023127863,0.0019894950113284646,0.0006477339834787771,0.004598044440523249,0.048297126229400175,0.011127487023127863,0.0019894950113284646,0.0006477339834787771,0.004598044440523249,0.022310857701436263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001490683516355909,0.0,0.0,0.007943732358617403,0.0033983390865550598,0.009434415874973312,0.005755476997031793,0.0013260415390387416,0.00023708434988498677,7.718923118532248e-05,0.0005479402414765609,0.001490683516355909,0.0,0.0,0.0,0.0,0.0,0.0074872296350635935,0.0011799522655250745,0.0002109648962958742,6.86853356624743e-05,0.0004875739637623335 +104215,35.0,Eastern Counties in South Carolina and Georgia,G1301790010103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,30588.0,,3204.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0015745270155463694,0.0005448185457153825,0.0,0.002119345561261752,0.0010272262192321793,0.00033152229783214735,0.0005680807798984918,0.0,0.00019251626429893335,0.0009657550561888562,0.00033152229783214735,8.473339722643235e-05,0.0,0.00019251626429893335,6.147116304332307e-05,0.0004833473826720595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.640123891150966e-05,0.0,0.0,0.00018763386403003742,9.446115061165451e-05,0.00022403510294154703,0.00011508748412067145,3.950698155075942e-05,1.009754331110703e-05,0.0,2.294185504749951e-05,4.107104116968368e-06,3.22941347945413e-05,0.0,0.0,0.0,0.0,0.00010858763949420632,3.5045078763854414e-05,6.005157362252089e-05,0.0,2.0350811060965415e-05 +104216,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7950.0,,,,9.325022323477118,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,27975.06697043135,0.0,0.0,0.0018116100876524085,0.0,0.0,0.0018116100876524085,0.0006033986470411766,0.0004940674435271973,0.0006569594468224791,0.0,5.7361318577665674e-05,0.0006033986470411766,0.0004940674435271973,0.0006569594468224791,0.0,5.7361318577665674e-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.0002158907937688408,7.207855275549416e-05,0.0002158907937688408,7.19074229916513e-05,5.8878349864264046e-05,7.829029956012068e-05,0.0,6.8357869520406745e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.19074229916513e-05,5.8878349864264046e-05,7.829029956012068e-05,0.0,6.8357869520406745e-06 +104217,50.0,the Greater Atlanta and Macon Area,G1300150960500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,29030.0,,919.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.007041518711173534,0.0007124643596167978,0.0,0.007753983070790331,0.0030697987684135866,0.0006502824174371002,0.0030757824663606584,0.0004106110564219839,0.0005475083621570014,0.0030697987684135866,0.0006502824174371002,0.0023633181067438604,0.0004106110564219839,0.0005475083621570014,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.0008391205840786832,0.0002879009864839311,0.0008867258627737568,0.0003658204204538609,7.74925672028751e-05,0.00028163084576454,4.89315165700323e-05,6.524523408737469e-05,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.00035105441121190177,7.436465006232523e-05,0.0003517386917521421,4.695644031540506e-05,6.261166943198261e-05 +104218,35.0,Eastern Counties in South Carolina and Georgia,G1301030030203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,22243.0,,4433.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0046313888483041,0.003049102847757688,0.0,0.007680491696061788,0.0021304417390187263,0.0006560225748797944,0.0031964156682237534,0.00037609952800586436,0.0013215121859336493,0.0021304417390187263,0.0006560225748797944,0.0013017174739333407,0.00037609952800586436,0.00016710753246637372,0.0,0.0018946981942904125,0.0011544046534672755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002037226402536279,0.0,0.0,0.0005519139450730294,0.0003631421245502293,0.0007556365853266573,0.00025388075660298464,7.817698302129275e-05,0.00015512323623444443,4.4819077179803116e-05,1.991389203450443e-05,0.0,0.0001265922921912862,7.71303480623417e-05,0.0,0.0,0.0,0.00020960112771620462,6.454204730584494e-05,0.00031447578051021065,3.700213141706033e-05,0.0001300154983773367 +104219,81.0,the Columbus-Albany Area,G1302150001100,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13522.0,,,,8.72605822017302,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0030485000309571323,0.0,0.0,0.0030485000309571323,0.0012120721656495503,0.0007638825330562433,0.001005883430817457,0.0,6.657919436014248e-05,0.0012120721656495503,0.0007638825330562433,0.001005883430817457,0.0,6.657919436014248e-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.00036328093125077864,0.00011378062074601835,0.00036328093125077864,0.00014443913420006404,9.102967202127543e-05,0.00011986821904750455,0.0,7.934050019177863e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014443913420006404,9.102967202127543e-05,0.00011986821904750455,0.0,7.934050019177863e-06 +104220,50.0,the Greater Atlanta and Macon Area,G1301350050724,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,12983.0,,179.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0031174777304557146,0.00014209075268413015,0.0,0.003259568483139845,0.0017674501658089996,0.0003474524167788305,0.0010025751478678847,0.0,0.00014209075268413015,0.0017674501658089996,0.0003474524167788305,0.0010025751478678847,0.0,0.0,0.0,0.0,0.00014209075268413015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.495331069282296e-06,0.0,0.0,0.00037150254209771183,0.0001387239112344908,0.00038099787316699416,0.0002106229094162869,4.140509323621064e-05,0.00011947453944521433,0.0,0.0,0.0,0.0,9.495331069282296e-06,0.0,0.0,0.0,0.00020659015375348673,4.061231801209161e-05,0.0001171869837997083,0.0,1.6608417601707542e-05 +104221,35.0,Eastern Counties in South Carolina and Georgia,G1300290920101,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,75164.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.009342499259540383,0.0,0.0,0.009342499259540383,0.0020004406073031605,0.002773573169154889,0.004568485483082334,0.0,0.0,0.0020004406073031605,0.002773573169154889,0.004568485483082334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011133287089225602,0.00033149292243910293,0.0011133287089225602,0.00023838888253919512,0.0003305216890827326,0.0005444181373006325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023838888253919512,0.0003305216890827326,0.0005444181373006325,0.0,0.0 +104222,35.0,Eastern Counties in South Carolina and Georgia,G1301270000503,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,60565.0,,1482.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0053070308586365515,0.00043631413273444045,0.0,0.00574337568097729,0.002313965625240492,0.0014421352895353516,0.001987244076595148,0.0,0.0,0.0018776514925060517,0.0014421352895353516,0.001987244076595148,0.0,0.0,0.00043631413273444045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9152393759391857e-05,0.0,0.0,0.0006324299232118532,0.0002328959417712779,0.0006615823169712451,0.00022375656385938266,0.00017185683194920486,0.0002368165274032657,0.0,0.0,2.9152393759391857e-05,0.0,0.0,0.0,0.0,0.0,0.0002665468575926287,0.00016612028521777766,0.0002289116390097413,0.0,0.0 +104223,50.0,the Greater Atlanta and Macon Area,G1300890021703,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,97079.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007657731143047113,0.0,0.0,0.007657731143047113,0.005185320148814115,0.001916361509326076,0.0005560494849069225,0.0,0.0,0.005185320148814115,0.001916361509326076,0.0005560494849069225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009125555058608705,0.00022181925673440815,0.0009125555058608705,0.0006179235550399261,0.00022836871834331507,6.626323247762935e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006179235550399261,0.00022836871834331507,6.626323247762935e-05,0.0,0.0 +104224,35.0,Eastern Counties in South Carolina and Georgia,G1300510004210,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,83073.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.0066258184757489345,0.0,0.0,0.0066258184757489345,0.0035778277721705376,0.0025546930751098682,0.0004933280020679651,0.0,0.0,0.0035778277721705376,0.0025546930751098682,0.0004933280020679651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007895857219578473,0.00018567381058791406,0.0007895857219578473,0.0004263626803043065,0.0003044377360282775,5.878892518721282e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004263626803043065,0.0003044377360282775,5.878892518721282e-05,0.0,0.0 +104225,81.0,the Columbus-Albany Area,G1302150011400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,62787.0,,1105.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0029835056465137054,0.0001878354488840394,0.0,0.0031713410953977447,0.0014121700960229458,0.0006097293988741959,0.0007415900967551285,0.0,0.0004078515037454746,0.0014121700960229458,0.0006097293988741959,0.0005537546478710891,0.0,0.0004078515037454746,0.0,0.0001878354488840394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2549754495146793e-05,0.0,0.0,0.000355538729212287,9.383792808219488e-05,0.0003680884837074338,0.000168285641409221,7.266030010448228e-05,6.598989481704004e-05,0.0,4.860289288154368e-05,0.0,1.2549754495146793e-05,0.0,0.0,0.0,0.0,0.00016390654103287945,7.076954611698734e-05,8.607423989906982e-05,0.0,4.733815665849719e-05 +104226,50.0,the Greater Atlanta and Macon Area,G1300350150300,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,333886.0,,16113.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.0297489084854656,0.004742925205278476,0.0,0.03449183369074408,0.012864469167871054,0.008209623132666984,0.01341774139020604,0.0,0.0,0.008121543962592575,0.008209623132666984,0.01341774139020604,0.0,0.0,0.004742925205278476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031689553015603553,0.0,0.0,0.003545119916844474,0.0014159496632946016,0.00386201544700051,0.0009678286943328269,0.0009783249187654806,0.001598966303746166,0.0,0.0,0.00031689553015603553,0.0,0.0,0.0,0.0,0.0,0.001440421494816387,0.0009192231308050423,0.0015023708213790805,0.0,0.0 +104227,50.0,the Greater Atlanta and Macon Area,G1302230120601,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,175346.0,,19816.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010013310263781921,0.003369867952218075,0.0,0.013383195946361417,0.005873377254368112,0.0031583979315611063,0.0023281028366214534,0.0,0.002023300193449325,0.004870370708835724,0.0031583979315611063,0.001651654087723599,0.0,0.00033288753566149137,0.0010030065455323871,0.0006764487488978545,0.0016904126577878343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022515527600983008,0.0,0.0,0.0011932674040620703,0.0004939115148845566,0.0014184226800719004,0.0005803929429384673,0.0003763803578943026,0.00019682451993873116,0.0,3.9669583290569134e-05,6.701515276002615e-05,4.5196431113673635e-05,0.00011294369213613034,0.0,0.0,0.0,0.0006224919323907191,0.0003347439039803078,0.0002467447893790569,0.0,0.00021444017516329087 +104228,50.0,the Greater Atlanta and Macon Area,G1300450910200,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,24534.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.0058908940341559106,0.0,0.0,0.0058908940341559106,0.0026003103983638256,0.00085386782928461,0.002291068649652555,0.0,0.00014564715685492038,0.0026003103983638256,0.00085386782928461,0.002291068649652555,0.0,0.00014564715685492038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007020099106900217,0.00020339860059311296,0.0007020099106900217,0.0003098754891766249,0.00010175427958840572,0.000273023566338476,0.0,1.7356575586515155e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003098754891766249,0.00010175427958840572,0.000273023566338476,0.0,1.7356575586515155e-05 +104229,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,12005.0,,,,5.759960461090961,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,17279.881383272885,0.0,0.0,0.0018430897727692932,0.0,0.0,0.0018430897727692932,0.0013563852311745585,0.0002677830371870078,0.0002073475994365455,0.0,1.1628498862555079e-05,0.0013563852311745585,0.0002677830371870078,0.0002073475994365455,0.0,1.1628498862555079e-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.0002196352111866029,7.779166096999875e-05,0.0002196352111866029,0.00016163616178706012,3.191086228881183e-05,2.470896125849283e-05,0.0,1.3857316345600242e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016163616178706012,3.191086228881183e-05,2.470896125849283e-05,0.0,1.3857316345600242e-06 +104230,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,26493.0,,2735.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.0023193056167362925,0.0008050804420076369,0.0,0.0031243860587439293,0.0011678622780527815,0.0008283738531875936,0.0011281499275035544,0.0,0.0,0.0003627818360451446,0.0008283738531875936,0.0011281499275035544,0.0,0.0,0.0008050804420076369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.37898983587254e-05,0.0,0.0,0.0002763888395174804,0.00013014165161133665,0.0003301787378762058,4.323227173641559e-05,9.871630815576769e-05,0.00013444025962529714,0.0,0.0,5.37898983587254e-05,0.0,0.0,0.0,0.0,0.0,0.0001234173004650132,8.754085704923627e-05,0.00011922058036195636,0.0,0.0 +104231,50.0,the Greater Atlanta and Macon Area,G1300210010300,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12247.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0027299950899870597,0.0,0.0,0.0027299950899870593,0.0013479598878032323,0.0003587005788073763,0.0009545223380253468,0.0,6.881228535110377e-05,0.0013479598878032323,0.0003587005788073763,0.0009545223380253468,0.0,6.881228535110377e-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.00032532746918310365,0.00010126845806075074,0.00032532746918310365,0.00016063339471480314,4.274555361873244e-05,0.00011374831319202007,0.0,8.200207657547934e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00016063339471480317,4.2745553618732446e-05,0.00011374831319202008,0.0,8.200207657547934e-06 +104232,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970100,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,281548.0,,12085.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02407829786102016,0.003557293645179325,0.0,0.02763559150619949,0.011703880326510825,0.005653363065706128,0.010278378803588829,0.0,0.0,0.0081465866813315,0.005653363065706128,0.010278378803588829,0.0,0.0,0.003557293645179325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023767747767684352,0.0,0.0,0.0028693648984858835,0.0011066617119997906,0.0031070423761627272,0.0009708132194729328,0.0006737005095943449,0.0012248548266405393,0.0,0.0,0.00023767747767684352,0.0,0.0,0.0,0.0,0.0,0.001315855755497354,0.000635602049952206,0.0011555880211154223,0.0,0.0 +104233,50.0,the Greater Atlanta and Macon Area,G1300770170801,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,NaturalGas,58860.0,,11120.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003029817350542883,0.0018911380794242518,0.0,0.0049209731603285555,0.00195764466511087,0.0010229886628527864,0.0007037180447618958,0.0,0.0012366040572415827,0.0014498471140405578,0.0010229886628527864,0.00038572401269324874,0.0,0.00017123983059487,0.0005077975510703123,0.000317994032068647,0.0010653642266467125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012635500380122692,0.0,0.0,0.0003610582566369588,0.00021572856337124014,0.0004874132604381857,0.00017277585108944362,0.00012190784474279249,4.596608423972565e-05,0.0,2.0406363667537135e-05,3.392812095205501e-05,2.124653803334869e-05,7.118152945691792e-05,0.0,0.0,0.0,0.000193901071579387,0.00010132512885298598,6.970196655242065e-05,0.0,0.0001224833372939929 +104234,50.0,the Greater Atlanta and Macon Area,G1301210010303,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,27784.0,,4060.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0026762871171911715,0.0011949918900199508,0.0,0.0038713096968174196,0.001617618458345616,0.0009236957703482585,0.001329964778517248,0.0,0.0,0.00042262656832566507,0.0009236957703482585,0.001329964778517248,0.0,0.0,0.0011949918900199508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.984249046160442e-05,0.0,0.0,0.0003189296013944599,0.00018437349896482133,0.00039877209185606435,5.036385001780984e-05,0.00011007560510028617,0.00015849014627636391,0.0,0.0,7.984249046160442e-05,0.0,0.0,0.0,0.0,0.0,0.00016662606378140297,9.514715262464982e-05,0.00013699571420499118,0.0,0.0 +104235,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,31817.0,,2632.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003041831017803109,0.0007747284213792088,0.0,0.003816590128788615,0.0014336342685908876,0.0012951013857630575,0.0010877930952220751,0.0,0.0,0.0006589058472116788,0.0012951013857630575,0.0010877930952220751,0.0,0.0,0.0007747284213792088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.176353286671611e-05,0.0,0.0,0.00036249091459397096,0.0001743350807751774,0.0004142544474606871,7.852092433444204e-05,0.00015433549170533088,0.00012963084131505814,0.0,0.0,5.176353286671611e-05,0.0,0.0,0.0,0.0,0.0,0.0001556073227030865,0.0001405708999030323,0.00011806956272661088,0.0,0.0 +104236,50.0,the Greater Atlanta and Macon Area,G1300670030227,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,246199.0,,40242.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012673165892933982,0.006843600361634821,0.0,0.019516748524207383,0.009010410100418054,0.0030050125749162293,0.004720230008330717,0.0,0.002781095840542382,0.007312408847942437,0.0030050125749162293,0.0018991344724246957,0.0,0.00045659226728919975,0.0016980012524756168,0.0028210955359060214,0.0023245035732531822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00045724880020627374,0.0,0.0,0.0015102359242729054,0.0008554960372753282,0.001967484724479179,0.0008714051901814907,0.0003581013601392739,0.00022631607046823244,0.0,5.4411190592071115e-05,0.00011345037617856384,0.00018848887733008385,0.00015530954669762604,0.0,0.0,0.0,0.0009083400450580635,0.0003029355187254808,0.0004758467029433674,0.0,0.00028036245775226744 +104237,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,56836.0,,1182.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,32736.412774265485,0.0,0.0,0.0034678636597867078,0.00020108002886481884,0.0,0.003668961419012947,0.001890996236532892,0.0005021238354158953,0.0006107754901979789,0.0,0.0006650303961433405,0.001890996236532892,0.0005021238354158953,0.00040969546133316016,0.0,0.0006650303961433405,0.0,0.00020108002886481884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3435105103183373e-05,0.0,0.0,0.00041325958087831585,0.00013285075408003098,0.00042669468598149923,0.00022534689619260303,5.9837267589045916e-05,4.8822731009183776e-05,0.0,7.925057318961634e-05,0.0,1.3435105103183373e-05,0.0,0.0,0.0,0.0,0.00021992001364698789,5.839624564224816e-05,7.103226941681375e-05,0.0,7.734203324680243e-05 +104238,50.0,the Greater Atlanta and Macon Area,G1300890021405,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,5047.0,,383.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009010108613160152,0.00030403120306569405,0.0,0.0012050420643817093,0.0005836638193782924,0.00020329398725121766,0.0003875653475423946,0.0,3.043620313606513e-05,0.00031015152652240287,0.00020329398725121766,0.0003875653475423946,0.0,0.0,0.0002735122928558896,0.0,3.043620313606513e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0312998283058128e-05,0.0,0.0,0.00010737085002164569,5.287559541024996e-05,0.00012768384830470382,3.6959857497812675e-05,2.4225954594566282e-05,4.618503792926672e-05,0.0,0.0,1.827396227477509e-05,0.0,2.033510165442163e-06,0.0,0.0,0.0,6.184385157764549e-05,2.154062451152793e-05,4.106564949593974e-05,0.0,3.2249592433857923e-06 +104239,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,Propane,3581.0,,,554.0,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005117913722988343,0.0,0.00014217345975786947,0.0006539648320567039,0.0003749938723340199,0.0001391960051032544,0.0001271207723373155,0.0,1.2571475208374728e-05,0.0002453918877845251,0.0001391960051032544,0.0001271207723373155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012960198454949477,1.2571475208374728e-05,0.0,0.0,0.0,1.1468109246876098e-05,6.09882098222683e-05,2.736530387713319e-05,7.24563190691444e-05,2.9242407650722374e-05,1.6587452671441105e-05,1.5148493616164573e-05,0.0,0.0,0.0,0.0,0.0,1.0454058865535109e-05,1.0140503813409929e-06,0.0,4.1547609796319804e-05,1.542228215421399e-05,1.408440146822751e-05,0.0,1.3928620840407166e-06 +104240,81.0,the Columbus-Albany Area,G1302150001400,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,14408.0,,267.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033267266270161624,0.00021206093706758423,0.0,0.0035387875640837466,0.0024766633231235614,0.00048515969455477733,0.0004881371492093925,0.0,8.882739719601618e-05,0.0022646023860559772,0.00048515969455477733,0.0004881371492093925,0.0,8.882739719601618e-05,0.00021206093706758423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4170510351065776e-05,0.0,0.0,0.00039644009715524887,0.00013565483769928895,0.0004106106075063147,0.0002698686398380994,5.781561817648335e-05,5.8170436153700105e-05,0.0,1.0585402986966098e-05,1.4170510351065776e-05,0.0,0.0,0.0,0.0,0.0,0.0002873708051926192,5.6293776699278804e-05,5.663925504247248e-05,0.0,1.030677057194433e-05 +104241,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,49379.0,,9322.0,,9.325022323477118,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.02094633838575985,0.007902162419219344,0.0,0.028848412420821146,0.017601528308328142,0.004647415798845634,0.0062644923546190875,0.0,0.00033506434318633367,0.01003443023229513,0.004647415798845634,0.0062644923546190875,0.0,0.0,0.007567098076033009,0.0,0.00033506434318633367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005279743156301048,0.0,0.0,0.0024961313205420343,0.001406100135043725,0.0030241056361721393,0.0011957820562878841,0.0005538228172121475,0.0007465264470420029,0.0,0.0,0.000505587359009776,0.0,2.2386956620328693e-05,0.0,0.0,0.0,0.001845123405267217,0.00048717676750838977,0.000656690786342468,0.0,3.512394214035802e-05 +104242,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,61256.0,,726.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006549529824923838,0.00026976652630124033,0.0,0.0068192963512250775,0.004074590501753366,0.0007664438222117976,0.0018624817370289312,0.0,0.00011574154180721131,0.004074590501753366,0.0007664438222117976,0.001592715210727691,0.0,0.00011574154180721131,0.0,0.00026976652630124033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.802392944585186e-05,0.0,0.0,0.0007804952017009086,0.00024170348161250838,0.0007985191311467605,0.0004855613182205153,9.13356747125842e-05,0.0001898008884421669,0.0,1.3792702748558597e-05,0.0,1.802392944585186e-05,0.0,0.0,0.0,0.0,0.00047712231580233764,8.974827071057239e-05,0.00021809102022115123,0.0,1.355298708859857e-05 +104243,50.0,the Greater Atlanta and Macon Area,G1301390001606,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,2813.0,,13.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.00033785839622507084,1.0255677143674121e-05,0.0,0.000348114073368745,0.00018228639052143353,0.00010098533703569437,5.450396159420359e-05,0.0,1.0255677143674121e-05,0.00018228639052143353,0.00010098533703569437,5.450396159420359e-05,0.0,0.0,0.0,0.0,1.0255677143674121e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.84261091343351e-07,0.0,0.0,4.0260772893373465e-05,1.6301142580792864e-05,4.094503398471682e-05,2.172209142154103e-05,1.2033880955400002e-05,6.494944758074201e-06,0.0,0.0,0.0,0.0,6.84261091343351e-07,0.0,0.0,0.0,2.1440450202498414e-05,1.1877853764632745e-05,6.410733522434872e-06,0.0,1.2062685231895662e-06 +104244,85.0,Rural Climate Zone 3A,G1302850961000,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,124436.0,,20303.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005778023370651068,0.003452651009688302,0.0,0.00923067438033937,0.0033775983897972187,0.0015766901196396154,0.0031237350749849027,0.0,0.0011526685262790526,0.0030134167662293344,0.0015766901196396154,0.0010071022590204192,0.0,0.0001808142257616985,0.00036418162356788454,0.0021166328159644833,0.0009718543005173541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023068648060308228,0.0,0.0,0.0006885558547014149,0.00039481217752343354,0.0009192423353044971,0.00035910303990494463,0.00018789110795953764,0.00012001442573836335,0.0,2.1547281098569205e-05,2.433254238712537e-05,0.00014142135236770397,6.493377049004396e-05,0.0,0.0,0.0,0.000336360194675587,0.00015701564673498543,0.0003110790617116449,0.0,0.00011478919787113033 +104245,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,77443.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006741186850534501,0.0,0.0,0.006741186850534501,0.0027964676154529754,0.0015807295515757771,0.00236395899389945,0.0,0.0,0.0027964676154529754,0.0015807295515757771,0.00236395899389945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008033333874678369,0.0002668970512803697,0.0008033333874678369,0.00033324930049785244,0.00018837229311292547,0.0002817081366397271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033324930049785244,0.00018837229311292547,0.0002817081366397271,0.0,0.0 +104246,85.0,Rural Climate Zone 3A,G1300310110602,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,7054.0,,811.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.000727128842011472,0.0002386116889646391,0.0,0.0009657405309761114,0.0004398434374586763,0.0002976278018751216,0.0002283306708549087,0.0,0.0,0.00020123174849403716,0.0002976278018751216,0.0002283306708549087,0.0,0.0,0.0002386116889646391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5942422208403097e-05,0.0,0.0,8.665206060936809e-05,4.529570036289096e-05,0.0001025944828177712,2.3980819711122555e-05,3.546835283795433e-05,2.7210202630890923e-05,0.0,0.0,1.5942422208403097e-05,0.0,0.0,0.0,0.0,0.0,4.6726329215212166e-05,3.161819290602342e-05,2.4256481256013013e-05,0.0,0.0 +104247,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,9243.0,,407.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002219444323794315,0.0003228884158782561,0.0,0.0025424154467463106,0.0015089905603736641,0.0004983928263530665,0.000388475125353527,0.0,0.00014639152051857413,0.001332493665013982,0.0004983928263530665,0.000388475125353527,0.0,0.0,0.00017649689535968204,0.0,0.00014639152051857413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.157611040007091e-05,0.0,0.0,0.00026448864027017044,0.00010072673199228116,0.00028606475067024134,0.00015879174523542822,5.939290278621379e-05,4.6294136141195845e-05,0.0,0.0,1.1793908707415813e-05,0.0,9.782201692655101e-06,0.0,0.0,0.0,0.00016978696733827435,5.6077624838610084e-05,4.371002387436966e-05,0.0,1.6471522728898082e-05 +104248,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,31623.0,,,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,152706.01885302784,0.0,0.0,0.008080398397256596,0.0,0.0,0.008080398397256596,0.004639287887258972,0.0011266357584768457,0.0021741208473851745,0.0,0.00014035390413560467,0.004639287887258972,0.0011266357584768457,0.0021741208473851745,0.0,0.00014035390413560467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009629225379384841,0.0003077347433325079,0.0009629225379384841,0.0005528532934890161,0.00013425859846874616,0.0002590849932423969,0.0,1.6725652738324925e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0005528532934890161,0.00013425859846874616,0.0002590849932423969,0.0,1.6725652738324925e-05 +104249,50.0,the Greater Atlanta and Macon Area,G1300890021502,ComStock 90.1-2004,gen5_led,50001_100000,NaturalGas,176792.0,,15236.0,,1.8706521585294562,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,140298.9118897092,0.0,0.0,0.008088697261996609,0.002591026366119416,0.0,0.010679741358477447,0.004173124245992149,0.0025589521423105407,0.0016721503855251796,0.0,0.002275496854288157,0.004173124245992149,0.0025589521423105407,0.0009851520715823939,0.0,0.0003714688021115263,0.0,0.0006869983139427859,0.0019040280521766303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017311755004766925,0.0,0.0,0.0009639154533255754,0.0004383824594800223,0.0011370330033732446,0.0004973036842729543,0.0003049457081157788,0.00011739879425770144,0.0,4.4267266679140855e-05,0.0,4.590129477330578e-05,0.00012721625527436348,0.0,0.0,0.0,0.0004442972760855911,0.00027244227572516424,0.0001780277359840932,0.0,0.0002422638278916609 +104250,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010601,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,152970.0,,8124.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.04095432747733616,0.007185660553338521,0.0,0.04813998803067468,0.03881175182640423,0.004954740774249887,0.0010717489117298329,0.0006674684755722363,0.0026342780427185,0.033408281900160076,0.004954740774249887,0.0010717489117298329,0.0006674684755722363,0.0008520874156241314,0.005403469926244154,0.0,0.001782190627094368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004801021991183308,0.0,0.0,0.004880448332035075,0.0014535895561115294,0.0053605505311534055,0.003981200613440011,0.0005904469157926187,0.00012771825374270534,7.95409327645587e-05,0.00010154161629518132,0.0003610270447932983,0.0,0.00011907515432503255,0.0,0.0,0.0,0.004321819871152749,0.0005517271477551805,0.00011934286718924059,7.432487288897981e-05,0.0002933357721672558 +104251,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,7339.0,,102.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0021373161995711827,8.130105348573918e-05,0.0,0.0022186172530569218,0.0011071995961481084,0.0006119496385971357,0.0004181669648259383,0.0,8.130105348573918e-05,0.0011071995961481084,0.0006119496385971357,0.0004181669648259383,0.0,0.0,0.0,0.0,8.130105348573918e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.433176846482908e-06,0.0,0.0,0.00025470022137823336,8.368929190726471e-05,0.00026013339822471623,0.00013194303318591474,7.292496470774508e-05,4.983222348457347e-05,0.0,0.0,0.0,0.0,5.433176846482908e-06,0.0,0.0,0.0,0.00012981941480090498,7.175124001732248e-05,4.9030175635569995e-05,0.0,9.532567770918769e-06 +104252,50.0,the Greater Atlanta and Macon Area,G1301350050536,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,13361.0,,2079.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011433105930146196,0.0006120121287887889,0.0,0.0017553227218034084,0.0008338366031085846,0.0004264320795065801,0.0004950847287945412,0.0,0.0,0.0002218244743197957,0.0004264320795065801,0.0004950847287945412,0.0,0.0,0.0006120121287887889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0891064040568664e-05,0.0,0.0,0.00013624439671424253,8.252517605962417e-05,0.00017713546075481118,2.6434060757248748e-05,5.08164463505771e-05,5.899754678139689e-05,0.0,0.0,4.0891064040568664e-05,0.0,0.0,0.0,0.0,0.0,8.414522814022343e-05,4.303268108238515e-05,4.9960648522564754e-05,0.0,0.0 +104254,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,23777.0,,2687.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005644810405230854,0.002083863240459028,0.0,0.007728754506472952,0.003091873762191295,0.0008628654161242596,0.002565308342849043,0.0004162713112367808,0.0007925165348546403,0.003091873762191295,0.0008628654161242596,0.001273880776461586,0.0004162713112367808,0.0,0.0,0.0012914275663874564,0.0007925165348546403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013923363141813197,0.0,0.0,0.000672684445890407,0.00033085213426367437,0.000811918077308539,0.0003684544279034434,0.0001028265083599039,0.00015180665473731852,4.960649096024602e-05,0.0,0.0,8.628692434825913e-05,5.2952109795084066e-05,0.0,0.0,0.0,0.0003248063058771785,9.064539817494501e-05,0.00026948976263706595,4.372996999387282e-05,8.325513518064247e-05 +104255,50.0,the Greater Atlanta and Macon Area,G1301350050217,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,56108.0,,,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,163187.89066084955,0.0,0.0,0.014397249042203809,0.0,0.0,0.014397249042203809,0.0076026285075711025,0.002784012594573021,0.003843827033809985,0.0,0.00016669252209164476,0.0076026285075711025,0.002784012594573021,0.003843827033809985,0.0,0.00016669252209164476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017156872367828243,0.0005568193195223802,0.0017156872367828243,0.000905987849359614,0.0003317644128784496,0.00045806007543362575,0.0,1.9864366573185054e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.000905987849359614,0.0003317644128784496,0.00045806007543362575,0.0,1.9864366573185054e-05 +104256,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,30450.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006859393867643201,0.0,0.0,0.0068593938676431996,0.003851006767449632,0.0016219684231015578,0.00118701192230654,0.0,0.00019932404771173088,0.003851006767449632,0.0016219684231015578,0.00118701192230654,0.0,0.00019932404771173088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008174177508355408,0.0002528883381102209,0.0008174177508355408,0.0004589153722678264,0.0001932861424669117,0.00014145340455280794,0.0,2.3752975541545927e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004589153722678265,0.00019328614246691175,0.00014145340455280796,0.0,2.3752975541545933e-05 +104257,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,26718.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.005477841872634045,0.0,0.0,0.005477841872634045,0.003943425961690509,0.0006128164306675154,0.0008952306307426206,0.0,2.6314255642026048e-05,0.003943425961690509,0.0006128164306675154,0.0008952306307426206,0.0,2.6314255642026048e-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.0006527828603842204,0.00018547673944943296,0.0006527828603842204,0.0004699297531470929,7.30280412985397e-05,0.00010668274576511837,0.0,3.1358143346009913e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0004699297531470929,7.30280412985397e-05,0.00010668274576511837,0.0,3.1358143346009913e-06 +104258,50.0,the Greater Atlanta and Macon Area,G1301210011422,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,67307.0,,1481.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006318802132632137,0.0004313962328143891,0.0,0.006750198365446526,0.004087922001128142,0.002013526653927444,0.0006487497103909412,0.0,0.0,0.003656525768313753,0.002013526653927444,0.0006487497103909412,0.0,0.0,0.0004313962328143891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.882385123837619e-05,0.0,0.0,0.0007529989669190872,0.00021931596765692332,0.0007818228181574634,0.00043574083635791077,0.00023994792975735039,7.73102008038262e-05,0.0,0.0,2.882385123837619e-05,0.0,0.0,0.0,0.0,0.0,0.0004734721153810838,0.00023321108473892783,7.513961803745185e-05,0.0,0.0 +104259,50.0,the Greater Atlanta and Macon Area,G1300670030318,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,2721.0,,372.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0005973104865452782,0.00029493342495437024,0.0,0.0008922439114996485,0.0005354455953882762,0.00015631636936729102,0.00016996303653427674,0.0,3.043620313606513e-05,0.00027094837356997115,0.00015631636936729102,0.00016996303653427674,0.0,0.0,0.00026449722181830514,0.0,3.043620313606513e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9705159245825164e-05,0.0,0.0,7.118084798493652e-05,3.6195348281050547e-05,9.088600723076167e-05,3.22886261421562e-05,1.862805354355165e-05,2.0254312186242667e-05,0.0,0.0,1.7671648701107368e-05,0.0,2.0335105447177963e-06,0.0,0.0,0.0,5.454171401668066e-05,1.5922743202274707e-05,1.7312823958028847e-05,0.0,3.1003013219243876e-06 +104260,50.0,the Greater Atlanta and Macon Area,G1300670031408,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,55711.0,,2986.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004963767612196746,0.0008788889451536121,0.0,0.005842687246956657,0.002556229377354558,0.0011108716791579476,0.0021755861904441502,0.0,0.0,0.0016773404322009454,0.0011108716791579476,0.0021755861904441502,0.0,0.0,0.0008788889451536121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.872279102102133e-05,0.0,0.0,0.0005915243071470597,0.00023969440780315898,0.000650247098168081,0.00019988599679192373,0.00013238081467161769,0.0002592611529151857,0.0,0.0,5.872279102102133e-05,0.0,0.0,0.0,0.0,0.0,0.0002844890826122175,0.00012363165360011568,0.00024212636195574777,0.0,0.0 +104262,50.0,the Greater Atlanta and Macon Area,G1301210011612,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,205367.0,,23400.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.00959356168752359,0.00397938458675523,0.0,0.013572946274278823,0.006810072248189501,0.003264283649961662,0.001685359504783119,0.0,0.00181323087134454,0.005087869052375512,0.003264283649961662,0.0009095143497644486,0.0,0.00033189463542196846,0.001722203195813989,0.0007758451550186705,0.0014813362359225714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026587965164984265,0.0,0.0,0.0011432459051149383,0.0005296931393764677,0.0014091255567647812,0.0006063113626979555,0.0003889982717060772,0.00010838503882908657,0.0,3.9551231881819045e-05,0.00011506773868937295,5.183752287656698e-05,9.897439008390278e-05,0.0,0.0,0.0,0.0007070128072726272,0.00033889366558586794,0.00017497182281099938,0.0,0.0001882472610952867 +104263,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,36513.0,,1847.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0032197837819983198,0.0005379468196420224,0.0,0.003757700228040904,0.002218852186126646,0.0011238231791968175,0.0004150248627174409,0.0,0.0,0.0016809053664846236,0.0011238231791968175,0.0004150248627174409,0.0,0.0,0.0005379468196420224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5941474198251114e-05,0.0,0.0,0.00038369367051718404,0.0001463957681451079,0.00041963514471543513,0.00020030933551017378,0.00013392322896001933,4.9457486500262274e-05,0.0,0.0,3.5941474198251114e-05,0.0,0.0,0.0,0.0,0.0,0.0002477867583154319,0.00012550115065530006,4.634723574470324e-05,0.0,0.0 +104264,85.0,Rural Climate Zone 3A,G1300230790300,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,100952.0,,15036.0,,7.614023970037612,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,571051.7977528209,0.0,0.0,0.02115114402465845,0.010407422849361856,0.0,0.031558566874020304,0.024542488923939804,0.0038923283710922845,0.0012247465427979451,0.0007973734341744444,0.0011017017690385614,0.01464456525507135,0.0038923283710922845,0.0012247465427979451,0.0007973734341744444,0.0005922025885451616,0.009897923668868455,0.0,0.0005094991804933999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006953637599862317,0.0,0.0,0.0025205437499434564,0.0011980105314752278,0.0032159075099296875,0.001745166473325324,0.00046384176369120434,0.00014595084030042513,9.502155644802294e-05,7.057171619263973e-05,0.0006613219735626582,0.0,3.404178642357342e-05,0.0,0.0,0.0,0.002500949259132489,0.00039663930525351686,0.00012480514785310906,8.125461543980919e-05,0.0001122665362751495 +104265,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,3302.0,,272.0,,8.72605822017302,Office,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.000792830008865001,0.0002154519270908958,0.0,0.0010081992288821574,0.0005196485443040686,0.0002161962907545496,0.00024100841287634183,0.0,3.126327387345821e-05,0.00033545989108663094,0.0002161962907545496,0.00024100841287634183,0.0,0.0,0.0001841886532174376,0.0,3.126327387345821e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4394777522714854e-05,0.0,0.0,9.447590126871773e-05,3.9016530598687695e-05,0.00010887067879143259,3.997436423387431e-05,2.576257103238349e-05,2.8719254777492537e-05,0.0,0.0,1.2306015179687518e-05,0.0,2.088762343027338e-06,0.0,0.0,0.0,5.611439498331182e-05,2.3346017584971683e-05,2.6025361607730486e-05,0.0,3.3759734686760893e-06 +104266,50.0,the Greater Atlanta and Macon Area,G1300670031118,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,45353.0,,4349.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00436734580340719,0.0012801862371023738,0.0,0.005647532040509564,0.002131331778162863,0.00128678450245638,0.002229415759890321,0.0,0.0,0.000851145541060489,0.00128678450245638,0.002229415759890321,0.0,0.0,0.0012801862371023738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.553535114456583e-05,0.0,0.0,0.0005204481760358321,0.00023064802861559103,0.000605983527180398,0.00010142937251279116,0.0001533436273198536,0.00026567517620318745,0.0,0.0,8.553535114456583e-05,0.0,0.0,0.0,0.0,0.0,0.000228693159996002,0.00013807273795461881,0.0002392176292297772,0.0,0.0 +104267,50.0,the Greater Atlanta and Macon Area,G1300570090902,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,57411.0,,9.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,242844.36554246195,0.0,0.0,0.005669874073894292,2.639306141602439e-06,0.0,0.005672513380035895,0.002293219451383245,0.0012036770486022008,0.0021755861904441502,0.0,0.0,0.002290580145241643,0.0012036770486022008,0.0021755861904441502,0.0,0.0,2.639306141602439e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7683496129795525e-07,0.0,0.0,0.0006756674024713114,0.00025136006114747516,0.0006758442374326094,0.00027296379367818647,0.00014343975443616638,0.0002592601971387735,0.0,0.0,1.7683496129795525e-07,0.0,0.0,0.0,0.0,0.0,0.00027322265238551605,0.00014341053824407915,0.00025920739032974093,0.0,0.0 +104268,50.0,the Greater Atlanta and Macon Area,G1301350050548,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,57742.0,,3343.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0051447442205343,0.0009840008467232443,0.0,0.006128745067257544,0.002994323507254265,0.0017101476213331897,0.0014242739386700887,0.0,0.0,0.002010322660531021,0.0017101476213331897,0.0014242739386700887,0.0,0.0,0.0009840008467232443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.574435995689113e-05,0.0,0.0,0.0006130903874510433,0.00026917837750286633,0.0006788347474079344,0.00023956672013493715,0.00020379537306769305,0.00016972829424841306,0.0,0.0,6.574435995689113e-05,0.0,0.0,0.0,0.0,0.0,0.00033165857274173563,0.00018942012040280086,0.00015775605426339792,0.0,0.0 +104269,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,30636.0,,5535.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,14029.891188970922,0.0,0.0,0.00146397821209234,0.0009412694270677632,0.0,0.002405229908798683,0.0012567102870919226,0.00020037081440801678,0.0006714133262545595,0.0,0.00027675321140560415,0.0008596565734512602,0.00020037081440801678,0.00034620303708795104,0.0,5.7747787145111984e-05,0.0003970537136406624,0.00032521028916660845,0.0002190054242604922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.288976163775014e-05,0.0,0.0,0.0001744589448886148,0.00010477659357705266,0.00023734870652636494,0.00010244331338546537,2.387773300132297e-05,4.125622640331229e-05,0.0,6.881672098514194e-06,2.6528656610077163e-05,2.172852637054726e-05,1.463257865712571e-05,0.0,0.0,0.0,0.0001240124946178733,1.9772643542891218e-05,6.625523986215418e-05,0.0,2.7310078140075114e-05 +104270,81.0,the Columbus-Albany Area,G1302150002700,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,19319.0,,1911.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0017212572588129582,0.0005626018626494874,0.0,0.0022838591214624456,0.001236729754584827,0.0005144191807620941,0.0005327408757218226,0.0,0.0,0.0006741278919353394,0.0005144191807620941,0.0005327408757218226,0.0,0.0,0.0005626018626494874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.758932631962462e-05,0.0,0.0,0.0002051203522910499,0.0001055632622024622,0.00024270967861067449,8.033508644626472e-05,6.13027733320718e-05,6.348614975966079e-05,0.0,0.0,3.758932631962462e-05,0.0,0.0,0.0,0.0,0.0,0.00013142942068656725,5.466822049601073e-05,5.6615298865902044e-05,0.0,0.0 +104271,50.0,the Greater Atlanta and Macon Area,G1300670030344,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,7364.0,,625.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013770727777594686,0.0004956634929196692,0.0,0.001872736270679138,0.001359456171052996,0.00023017378621649256,0.0002503543122088836,0.0,3.283470827450504e-05,0.0008966273864078318,0.00023017378621649256,0.0002503543122088836,0.0,0.0,0.00046282878464516425,0.0,3.283470827450504e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.31165231423918e-05,0.0,0.0,0.00016410636020026777,6.48163427300474e-05,0.0001972228833426596,0.00010685147453039657,2.7429909936176888e-05,2.9834831971544177e-05,0.0,0.0,3.0922753796900475e-05,0.0,2.1937693454913313e-06,0.0,0.0,0.0,0.00014316797833782162,2.4240219244032226e-05,2.6365484603552117e-05,0.0,3.457911261186055e-06 +104272,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock 90.1-2004,gen2_t8_halogen,100001_200000,Electricity,125635.0,,4073.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011146311559294162,0.0011989508492323544,0.0,0.012345262408526517,0.004806820965590294,0.0030258110433157084,0.004512661089226813,0.0,0.0,0.003607870116357939,0.0030258110433157084,0.004512661089226813,0.0,0.0,0.0011989508492323544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.010710199313041e-05,0.0,0.0,0.0013282836690858553,0.00046963762179678,0.0014083907710789856,0.0004299426702948365,0.00036057985398986995,0.0005377648020201885,0.0,0.0,8.010710199313041e-05,0.0,0.0,0.0,0.0,0.0,0.0005483789701781135,0.0003451951208012726,0.000514820181277367,0.0,0.0 +104273,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010103,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,121100.0,,6695.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010789882471752643,0.001970794447619579,0.0,0.012760676919372221,0.003640615926277588,0.0035310540317947895,0.005589006961299845,0.0,0.0,0.0016698214786580083,0.0035310540317947895,0.005589006961299845,0.0,0.0,0.001970794447619579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013167735971919385,0.0,0.0,0.001285807695415827,0.0005228454641737065,0.001417485055135021,0.00019898912827364147,0.0004207883133942358,0.0006660302537479498,0.0,0.0,0.00013167735971919385,0.0,0.0,0.0,0.0,0.0,0.00040440790873333236,0.0003922375239627659,0.0006208396224389228,0.0,0.0 +104274,50.0,the Greater Atlanta and Macon Area,G1302270050200,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,13038.0,,104.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003069673041834395,8.212812422313225e-05,0.0,0.0031517184589837876,0.0021939705450826075,0.00039947516616085487,0.00047614462351719286,0.0,8.212812422313225e-05,0.0021939705450826075,0.00039947516616085487,0.00047614462351719286,0.0,0.0,0.0,0.0,8.212812422313225e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.484983113636654e-06,0.0,0.0,0.0003658021728186405,0.00010360344431470112,0.00037128715593227717,0.0002614477768654203,4.7604054821878855e-05,5.6740485219369894e-05,0.0,0.0,0.0,0.0,5.484983113636654e-06,0.0,0.0,0.0,0.00025845997809891924,4.706004049526069e-05,5.609206068969271e-05,0.0,9.675076648404523e-06 +104275,50.0,the Greater Atlanta and Macon Area,G1300670031509,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,95199.0,,16960.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008482085457377988,0.0049922782564473115,0.0,0.013474363713825299,0.006331756812916848,0.0028990629693061956,0.004243543931602257,0.0,0.0,0.0013394785564695357,0.0028990629693061956,0.004243543931602257,0.0,0.0,0.0049922782564473115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003335548610153911,0.0,0.0,0.0010107937401523002,0.0006091042493618768,0.0013443486011676916,0.00015962307226814707,0.0003454757342880962,0.0005056949335960569,0.0,0.0,0.0003335548610153911,0.0,0.0,0.0,0.0,0.0,0.000631724702936806,0.00028924195088225074,0.00042338194734863494,0.0,0.0 +104276,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,23957.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0031374409539225746,0.0,0.0,0.0031374409539225746,0.002196436469741585,0.000722193073831425,0.00021884178394900188,0.0,0.0,0.002196436469741585,0.000722193073831425,0.00021884178394900188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037388272760257435,9.301280825290313e-05,0.00037388272760257435,0.00026174505604194357,8.606234197402012e-05,2.6078949149296173e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026174505604194357,8.606234197402012e-05,2.6078949149296173e-05,0.0,0.0 +104277,50.0,the Greater Atlanta and Macon Area,G1301210003600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,240649.0,,34889.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011332963333915032,0.005933252684883629,0.0,0.01726619828843724,0.007209182683754891,0.003853871358262677,0.002151472976154887,0.0,0.004051653539903366,0.005615932406548944,0.003853871358262677,0.0013523833173145275,0.0,0.0005107585214274611,0.0015932502772059447,0.0007990896588403597,0.003540895018475905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039642475018361167,0.0,0.0,0.0013505271393494265,0.0007289140496155398,0.0017469518895330382,0.0006692397128912435,0.0004592583340774977,0.00016116088255318888,0.0,6.086609693490283e-05,0.00010645153285490393,5.3390431050942196e-05,0.00023658160164018646,0.0,0.0,0.0,0.0007294075453661639,0.00038992531759830725,0.00021768079563235643,0.0,0.0004099364370214261 +104278,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,Electricity,278367.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02480217360476408,0.0,0.0,0.02480217360476408,0.006733667896991563,0.006534400283300578,0.011534105424471934,0.0,0.0,0.006733667896991563,0.006534400283300578,0.011534105424471934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00295562873250758,0.0009132357164320108,0.00295562873250758,0.0008024386341562126,0.0007786922845874729,0.0013744978137638939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008024386341562126,0.0007786922845874729,0.0013744978137638939,0.0,0.0 +104279,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,49030.0,,9542.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0023526593871882264,0.0016227713289703324,0.0,0.00397543071615856,0.0014958396715641748,0.0007263419859338832,0.0010380949307826715,0.0,0.0007151718582392499,0.0010823499128871233,0.0007263419859338832,0.00041891524927158754,0.0,0.00012506996945705248,0.0004134897586770514,0.000619179681511084,0.0005901018887821974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010842414739042047,0.0,0.0,0.00028036221840351986,0.0001782654275870689,0.0003887863657939403,0.00012898170653957594,8.655687755099138e-05,4.992138226571481e-05,0.0,1.4904364942749917e-05,2.762698215014473e-05,4.136998716381605e-05,3.9427178076459707e-05,0.0,0.0,0.0,0.00014628907186182774,7.103428060938809e-05,0.0001015228749548177,0.0,6.994187234927202e-05 +104280,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,3147.0,,867.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007556945327560518,0.0006877093181423411,0.0,0.0014434038508983932,0.0010681618573431554,0.000211730108772627,0.00013373733823646012,0.0,2.9774546546150666e-05,0.0004102270857469648,0.000211730108772627,0.00013373733823646012,0.0,0.0,0.0006579347715961905,0.0,2.9774546546150666e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.594760032871961e-05,0.0,0.0,9.005256262209279e-05,7.017876664157576e-05,0.0001360001629508124,4.888483206802893e-05,2.523088106736977e-05,1.593684948669411e-05,0.0,0.0,4.395828750630962e-05,0.0,1.9893128224099892e-06,0.0,0.0,0.0,0.00010064417284607736,1.9949599882768722e-05,1.2600977738451964e-05,0.0,2.805412483514351e-06 +104281,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,20038.0,,1198.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00481140130771047,0.0009503042772646422,0.0,0.005761622877901373,0.0034421029948824965,0.0007961382918145733,0.0014446444570044828,0.0,7.873713419982066e-05,0.0024917987176178544,0.0007961382918145733,0.0014446444570044828,0.0,7.873713419982066e-05,0.0009503042772646422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.349244936634037e-05,0.0,0.0,0.000573360648797871,0.00026025136803735816,0.0006368530981642114,0.0002969403793272297,9.487347621494667e-05,0.0001721540628554408,0.0,9.382874439708e-06,6.349244936634037e-05,0.0,0.0,0.0,0.0,0.0,0.0003804681429079734,8.800005631294518e-05,0.00015968179759175288,0.0,8.703101351539973e-06 +104282,81.0,the Columbus-Albany Area,G1300950000100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,22301.0,,919.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006568321408656509,0.0007124643596167978,0.0,0.007280866629056375,0.0036183583207504795,0.0006468054037651534,0.0021259917084377315,0.00043543531682402195,0.00045419501849592036,0.0036183583207504795,0.0006468054037651534,0.0014135273488209337,0.00043543531682402195,0.00045419501849592036,0.0,0.0007124643596167978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760527869507363e-05,0.0,0.0,0.0007827375063355458,0.00028797825551822446,0.0008303427850306194,0.0004311946070848578,7.707887865539863e-05,0.0001684480407269688,5.189020647072405e-05,5.412577339759646e-05,0.0,4.760527869507363e-05,0.0,0.0,0.0,0.0,0.0004126538609154634,7.376459804824333e-05,0.00024245765869288825,4.965900243652835e-05,5.179844321002409e-05 +104283,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,374622.0,,5345.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01824308801159789,0.0009090178996446871,0.0,0.019152105911242577,0.00855895963794067,0.004869147313897741,0.002945048492593611,0.0,0.0027789327364491356,0.007649941738295982,0.004869147313897741,0.002945048492593611,0.0,0.0027789327364491356,0.0009090178996446871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.073494178214517e-05,0.0,0.0,0.0021739944805460134,0.0006174433746260965,0.0022347294223281585,0.0009116291663440457,0.000580247125851144,0.0003509558888149045,0.0,0.000331160186642102,6.073494178214517e-05,0.0,0.0,0.0,0.0,0.0,0.0009986869859672906,0.0005681477960932723,0.0003436377465268068,0.0,0.00032425482490509443 +104284,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,DistrictHeating,3091.0,,,,5.759960461090961,Office,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.0022747636718595415,0.0015561442797101875,0.0004899801750771448,0.0,0.0,0.004320888126646875,0.003914873356502169,0.0002104594512448349,0.0001839268200373148,0.0,1.1628498862555079e-05,9.559390379499504e-05,0.0002104594512448349,0.0001839268200373148,0.0,0.0,0.0,0.0,0.0,0.0015445157808476326,0.0,1.1628498862555079e-05,0.0022747636718595415,0.0,0.0,0.0,0.0,0.0,0.0,5.83919976230647e-05,1.792379489107458e-05,5.83919976230647e-05,1.1392132349636354e-05,2.5080908171243947e-05,2.1918957102184388e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2905159547574685e-05,2.8441254243665437e-06,2.4855664214502933e-06,0.0,1.5714622967317087e-07 +104285,50.0,the Greater Atlanta and Macon Area,G1301350050430,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,9811.0,,128.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,12264.525384160763,0.0,0.0,0.0009981206479450805,4.7389322273257244e-05,0.0,0.0010455099702183378,0.00056258836474687,0.00011810519565730836,0.0003290128662487549,0.0,3.576479514163241e-05,0.00056258836474687,0.00011810519565730836,0.0002816235439754977,0.0,3.576479514163241e-05,0.0,4.7389322273257244e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1662650718975713e-06,0.0,0.0,0.00011894265940154347,3.9683340771115826e-05,0.00012210892447344103,6.704175130443766e-05,1.4074196430603074e-05,3.356012455958763e-05,0.0,4.261969588401127e-06,0.0,3.1662650718975713e-06,0.0,0.0,0.0,0.0,6.57067479960674e-05,1.379393676506739e-05,3.842661321265983e-05,0.0,4.177100929841601e-06 +104286,50.0,the Greater Atlanta and Macon Area,G1301350050216,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,63276.0,,,,9.325022323477118,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.016236611755485474,0.0,0.0,0.016236611755485474,0.009351132306372275,0.0022837582599819772,0.0041894974759629135,0.0,0.0004123120973263642,0.009351132306372275,0.0022837582599819772,0.0041894974759629135,0.0,0.0004123120973263642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019348897667675299,0.0006355803752853055,0.0019348897667675299,0.0011143587393580548,0.00027215163813454286,0.0004992553813698467,0.0,4.9134540496832025e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0011143587393580548,0.00027215163813454286,0.0004992553813698467,0.0,4.9134540496832025e-05 +104288,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock 90.1-2007,gen2_t8_halogen,_1000,NaturalGas,16399.0,,2593.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0032015077861658617,0.0017838908390712933,0.0,0.004985398625237156,0.0009518674553191898,0.00018575472493043263,0.002890458271871157,0.00037057709023766237,0.000586741082878714,0.0007479675777218077,0.00018575472493043263,0.0018066260698832422,0.00037057709023766237,9.058232339271676e-05,0.0002038998775973822,0.001083832201987914,0.0004961587594859973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011918956095712344,0.0,0.0,0.00038151612614536,0.00021520307634879135,0.0005007056871024835,8.913353075942471e-05,2.2135952120712435e-05,0.00021529136444816457,4.416079714583829e-05,1.0794481671220003e-05,1.3623443967398464e-05,7.241557693820808e-05,3.315054005151691e-05,0.0,0.0,0.0,9.560026871941765e-05,1.865617058343066e-05,0.0002903015393256458,3.7218700156210904e-05,5.8929008317778464e-05 +104289,50.0,the Greater Atlanta and Macon Area,G1302550160500,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,10948.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026288443388038864,0.0,0.0,0.002628844338803886,0.001626021069714784,0.0004572874107046308,0.0004644002190462112,0.0,8.12183464119999e-05,0.001626021069714784,0.0004572874107046308,0.0004644002190462112,0.0,8.12183464119999e-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.00031327687390859406,9.845632002769055e-05,0.00031327687390859406,0.0001937713808728318,5.449450482430759e-05,5.534213141408701e-05,0.0,9.678712920504623e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019377138087283183,5.44945048243076e-05,5.534213141408702e-05,0.0,9.678712920504623e-06 +104290,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,144576.0,,10501.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0068912241124090825,0.0017858729236733986,0.0,0.00867709703608248,0.005233258016019945,0.0017239939623174142,0.0008457559700979386,0.0,0.000874089087647183,0.004567713439395424,0.0017239939623174142,0.00042808184612575493,0.0,0.00017143486457049054,0.000665544576624522,0.0004176741239721838,0.0007026542230766925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011932109841917098,0.0,0.0,0.0008212137746150712,0.00030255456164435463,0.0009405348730342422,0.0005443255267480454,0.0002054450074637527,5.101368101903497e-05,0.0,2.0429559384238278e-05,4.446761517970316e-05,2.790642861145715e-05,4.6947054628010655e-05,0.0,0.0,0.0,0.0005672475072233319,0.0001868685386042508,9.16738605833491e-05,0.0,9.474496662331035e-05 +104291,50.0,the Greater Atlanta and Macon Area,G1300590140400,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,16254.0,,1460.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0014333273725279107,0.0004296544881678389,0.0,0.0018629818606957498,0.000886960311609908,0.00043072862438825856,0.0005453236143038808,0.0,0.0,0.00045730582344206917,0.00043072862438825856,0.0005453236143038808,0.0,0.0,0.0004296544881678389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8706594955645482e-05,0.0,0.0,0.00017080790801936386,8.772563526399231e-05,0.00019951450297500933,5.4496587816815284e-05,5.13294148049797e-05,6.498556264123151e-05,0.0,0.0,2.8706594955645482e-05,0.0,0.0,0.0,0.0,0.0,9.498828166975395e-05,4.61285261144942e-05,5.840098186878856e-05,0.0,0.0 +104292,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300010950200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,20548.0,,758.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005645214709146196,0.0005878578929081966,0.0,0.006233072602054392,0.0023819969476326906,0.0006347571470879427,0.0024175756921828422,0.0004249234150251133,0.00037381940012580375,0.0023819969476326906,0.0006347571470879427,0.0018297177992746458,0.0004249234150251133,0.00037381940012580375,0.0,0.0005878578929081966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9274811748944617e-05,0.0,0.0,0.0006727327171856657,0.00020587287684084818,0.0007120075289346103,0.00028385940331244943,7.564316369077084e-05,0.0002180450328655749,5.063755734968163e-05,4.4547559967189e-05,0.0,3.9274811748944617e-05,0.0,0.0,0.0,0.0,0.000272096904511387,7.250868016886371e-05,0.0002761610853106608,4.853925022769158e-05,4.270160871600726e-05 +104293,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,17586.0,,1412.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0020525815040547696,0.0005246536578740009,0.0,0.002577235161928771,0.001272536985098971,0.00040220863875421937,0.0008404533116164757,0.0,6.199747803533247e-05,0.0008539377630891605,0.00040220863875421937,0.0007344376241760572,0.0,6.199747803533247e-05,0.0004185992220098103,0.0001060156874404185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.505335477069298e-05,0.0,0.0,0.00024460277480340846,9.32296990005653e-05,0.00027965612957410143,0.00010176236410023249,4.793054448499924e-05,8.752172833994947e-05,0.0,7.388137878227244e-06,2.796760646881804e-05,7.0831594278150665e-06,0.0,0.0,0.0,0.0,0.00013808315719483798,4.364371278835657e-05,9.119770042191272e-05,0.0,6.72735457238637e-06 +104294,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,Electricity,37399.0,,4557.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0032272269294475312,0.001341473380878886,0.0,0.00456866962072012,0.00203825020226193,0.001415742228119327,0.0011147078799451605,0.0,0.0,0.000696776821383044,0.001415742228119327,0.0011147078799451605,0.0,0.0,0.001341473380878886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.962848236871825e-05,0.0,0.0,0.00038458166689195534,0.00019558184442558998,0.00047421014926067357,8.303338974214703e-05,0.0001687109453045712,0.00013283733184523715,0.0,0.0,8.962848236871825e-05,0.0,0.0,0.0,0.0,0.0,0.00021156244878413368,0.0001469485406137299,0.00011570234532466017,0.0,0.0 +104295,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,39100.0,,12295.0,,9.525004485617233,Lodging,Zone-by-Zone,2013 to 2018,E: Lodging with Zone-by-Zone Systems,166687.57849830156,0.0,0.0,0.010626543610979394,0.010645953729972828,0.0,0.021272497340952226,0.008429950098284825,0.0018332180292127706,0.008358358357067167,0.0004253073050143485,0.002225573271749887,0.004900558507915275,0.0018332180292127706,0.0022996928424178515,0.0004253073050143485,0.0011676766467959207,0.0035293915903695477,0.006058665514649316,0.0010578966249539662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007113003428007869,0.0,0.0,0.0012663398328867836,0.0011746091375629552,0.0019776401756875705,0.0005839878580607811,0.00021846021601603158,0.0002740489058690225,5.068285618297668e-05,0.00013914923835080034,0.00023581329693741595,0.0004048045827357135,7.068246312765744e-05,0.0,0.0,0.0,0.0007837071372581583,0.00017042877323042498,0.0007770514681371236,3.953954253366157e-05,0.0002069048615028285 +104296,50.0,the Greater Atlanta and Macon Area,G1300630040303,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,77774.0,,3230.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006468422483462504,0.0009410348577804269,0.0,0.007409457341242931,0.0041748512427189875,0.0025497725520009524,0.0006848031729235526,0.0,0.0,0.003233816384938561,0.0025497725520009524,0.0006848031729235526,0.0,0.0,0.0009410348577804269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.287354269840311e-05,0.0,0.0,0.0007708292858388159,0.0002526169835253379,0.000833702828537219,0.0003853675886058877,0.00030385141977588056,8.160665789446917e-05,0.0,0.0,6.287354269840311e-05,0.0,0.0,0.0,0.0,0.0,0.00046974901527580405,0.00028689720324014497,7.705319242203186e-05,0.0,0.0 +104297,50.0,the Greater Atlanta and Macon Area,G1300630040416,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,4303.0,,555.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0002575377496326977,0.0001617697906054662,0.0,0.0004193075402381639,0.00031208873422289995,9.522123423735197e-05,1.199757177791197e-05,0.0,0.0,0.00015031894361743376,9.522123423735197e-05,1.199757177791197e-05,0.0,0.0,0.0001617697906054662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0809371113339687e-05,0.0,0.0,3.069002696796451e-05,1.923063147225683e-05,4.14993980813042e-05,1.7913072704853913e-05,1.1347238417805016e-05,1.429715845305576e-06,0.0,0.0,1.0809371113339687e-05,0.0,0.0,0.0,0.0,0.0,3.0887817115929055e-05,9.424166098144778e-06,1.1874148672303628e-06,0.0,0.0 +104298,50.0,the Greater Atlanta and Macon Area,G1301210011622,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4304.0,,418.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0010335903005201249,0.00033173807276836207,0.0,0.0013653283732884872,0.0008226045554111517,0.0002529182314948021,0.0002463016655956575,0.0,4.34212137131364e-05,0.0004908664826427896,0.0002529182314948021,0.0002463016655956575,0.0,4.34212137131364e-05,0.00033173807276836207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2164486734918524e-05,0.0,0.0,0.00012316890439667644,5.1765663527927064e-05,0.00014533339113159498,5.849463451982674e-05,3.0139274197410305e-05,2.9350803976418536e-05,0.0,5.1743358252584725e-06,2.2164486734918524e-05,0.0,0.0,0.0,0.0,0.0,8.756275188968037e-05,2.692206869883798e-05,2.6217763435297418e-05,0.0,4.622003291984938e-06 +104299,81.0,the Columbus-Albany Area,G1303210950500,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,9144.0,,130.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0019521350614688732,0.00010338384217413426,0.0,0.002055601610716747,0.0013173582705196885,0.000324459850279303,0.0003103996477436207,0.0,0.00010338384217413426,0.0013173582705196885,0.000324459850279303,0.0003103996477436207,0.0,0.0,0.0,0.0,0.00010338384217413426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.90906285203576e-06,0.0,0.0,0.00023263461554918412,8.354155536122704e-05,0.00023954367840121988,0.00015698869450779155,3.866566100917041e-05,3.6990116178286145e-05,0.0,0.0,0.0,0.0,6.90906285203576e-06,0.0,0.0,0.0,0.00015351459360966562,3.781000444065283e-05,3.61715387881137e-05,0.0,1.204754156278767e-05 +104300,35.0,Eastern Counties in South Carolina and Georgia,G1300290920303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5979.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0017212996186624662,0.0,0.0,0.001721299618662466,0.0007618148562127606,0.00030709136479404843,0.0006102954971223494,0.0,4.218060760704679e-05,0.0007618148562127606,0.00030709136479404843,0.0006102954971223494,0.0,4.218060760704679e-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.00020512255930066675,6.827824315007736e-05,0.00020512255930066675,9.078338908891223e-05,3.659523653100978e-05,7.272724221985487e-05,0.0,5.026547436255047e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.078338908891224e-05,3.659523653100978e-05,7.272724221985489e-05,0.0,5.026547436255048e-06 +104301,50.0,the Greater Atlanta and Macon Area,G1301690030301,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,26183.0,,3606.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006042160293229599,0.002796489321641963,0.0,0.008838649614871562,0.002690804278171398,0.0004170799190674661,0.004799653500598602,0.00042322533858067424,0.0005078865784534228,0.002690804278171398,0.0004170799190674661,0.002003164178956638,0.00042322533858067424,0.0005078865784534228,0.0,0.002796489321641963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018684569379756645,0.0,0.0,0.0007200305949030854,0.0003775130306030021,0.0009068762887006519,0.00032065706819305934,4.970247190972143e-05,0.0002387125507211185,5.0434807672640945e-05,6.0523696406545234e-05,0.0,0.00018684569379756645,0.0,0.0,0.0,0.0,0.0002760859072071468,4.2793854896008146e-05,0.0004924611952427987,4.342439637954762e-05,5.211093497515067e-05 +104302,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,NaturalGas,37233.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0033348246891272775,0.0,0.0,0.0033348246891272775,0.001165775384824538,0.000960185712236227,0.0012088942816728106,0.0,0.0,0.001165775384824538,0.000960185712236227,0.0012088942816728106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039740604486699185,0.00012774436640849293,0.00039740604486699185,0.00013892370006642144,0.00011442388785284388,0.00014406211418197253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013892370006642144,0.00011442388785284388,0.00014406211418197253,0.0,0.0 +104303,35.0,Eastern Counties in South Carolina and Georgia,G1301270000800,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,64417.0,,2635.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0031046926668197665,0.0004481348848918346,0.0,0.0035528275517116006,0.0015122934469619838,0.0010577401712360901,0.0007183455929334392,0.0,0.00026444834058008754,0.0014039432083240411,0.0010577401712360901,0.0003785609466795474,0.0,0.00026444834058008754,0.00010835023863794266,0.0003397846462538919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9941750271569786e-05,0.0,0.0,0.0003699803598959342,0.00012729206174161246,0.000399922110167504,0.0001673052598862389,0.0001260488979835742,4.5112392859971054e-05,0.0,3.151380916614997e-05,7.239328819369454e-06,2.2702421452200332e-05,0.0,0.0,0.0,0.0,0.00017023049323352556,0.00011906394980693174,8.086018281891209e-05,0.0,2.9767484308134617e-05 +104304,50.0,the Greater Atlanta and Macon Area,G1300670031408,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,21401.0,,1869.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001887202853865834,0.0005445378907200147,0.0,0.002431740744585849,0.0018401237747373185,0.0004442442653765581,0.00014737270447197183,0.0,0.0,0.001295585884017304,0.0004442442653765581,0.00014737270447197183,0.0,0.0,0.0005445378907200147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.638281338283223e-05,0.0,0.0,0.00022489514182038597,0.00010568112805584081,0.00026127795520321825,0.00015439303227509634,5.293992474635e-05,1.7562184798939574e-05,0.0,0.0,3.638281338283223e-05,0.0,0.0,0.0,0.0,0.0,0.0001977117742730739,4.7731746703167195e-05,1.5834434226977113e-05,0.0,0.0 +104305,35.0,Eastern Counties in South Carolina and Georgia,G1302450010105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14907.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0033061325656550756,0.0,0.0,0.003306132565655075,0.0017829990956719896,0.0009124244374920396,0.0005040996144410787,0.0,0.00010660941804996728,0.0017829990956719896,0.0009124244374920396,0.0005040996144410787,0.0,0.00010660941804996728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039398932223783437,0.0001091291872738894,0.00039398932223783437,0.00021247865634670617,0.00010873293147865582,6.0073170536838935e-05,0.0,1.2704563875633375e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002124786563467062,0.00010873293147865583,6.007317053683894e-05,0.0,1.2704563875633376e-05 +104306,50.0,the Greater Atlanta and Macon Area,G1301210001900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,54426.0,,4011.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002582852669504772,0.0006821756556365315,0.0,0.0032650460555027237,0.0016371151913591553,0.0007241434211177966,0.0005125670182923065,0.0,0.0003912204247334651,0.0012543698793844758,0.0007241434211177966,0.0005125670182923065,0.0,9.179008107161336e-05,0.00038274531197467985,0.0,0.00029943034366185174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.557916502344905e-05,0.0,0.0,0.0003077944579200154,0.00012109673357405314,0.0003533736229434645,0.00014948126992096964,8.629502347961386e-05,6.108179897586203e-05,0.0,1.0938478442631627e-05,2.557290280340987e-05,0.0,2.0006262220039185e-05,0.0,0.0,0.0,0.00017718381808776458,7.83735297760357e-05,5.5474765493742136e-05,0.0,4.2341509585922043e-05 +104307,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000502,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,18710.0,,314.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,30661.31346040191,0.0,0.0,0.0025857598151586285,0.00011686524609660167,0.0,0.0027026250612552307,0.0014463624141405344,0.00033738252578352485,0.0008210790997304343,0.0,9.780102160073697e-05,0.0014463624141405344,0.00033738252578352485,0.0007042138536338326,0.0,9.780102160073697e-05,0.0,0.00011686524609660167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.807019677561631e-06,0.0,0.0,0.0003081399564842869,0.00010498836499146094,0.00031594697616184846,0.0001723601893497719,4.020521790308527e-05,8.391979214088339e-05,0.0,1.1654757090546368e-05,0.0,7.807019677561631e-06,0.0,0.0,0.0,0.0,0.0001690851749038441,3.944127891038043e-05,9.598721719432195e-05,0.0,1.1433305153301964e-05 +104308,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010103,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,116234.0,,12731.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005983145921919658,0.002164965781195547,0.0,0.008148111703115206,0.0025969305764722943,0.0017398449054269413,0.003013328114422234,0.0,0.0007980081067937366,0.0025969305764722943,0.0017398449054269413,0.0008483623332266864,0.0,0.0007980081067937366,0.0,0.002164965781195547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014465079935796027,0.0,0.0,0.0007129999495135759,0.000321081598974607,0.0008576507488715361,0.0003094712036240842,0.00020733395874337142,0.0001010977015525929,0.0,9.509708559352745e-05,0.0,0.00014465079935796027,0.0,0.0,0.0,0.0,0.0002733467010310281,0.000183131913310571,0.000317175709918387,0.0,8.399642461155004e-05 +104309,50.0,the Greater Atlanta and Macon Area,G1301210011610,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,318493.0,,24683.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.016394485069220345,0.00419750349294472,0.0,0.020591988562165067,0.009474803726732076,0.0038380736062374105,0.0036505395734975125,0.0,0.0036285539253366464,0.006154385752514527,0.0038380736062374105,0.0027734540547703396,0.0,0.0036285539253366464,0.003320417974217548,0.000877085518727172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028045234362105115,0.0,0.0,0.0019536988755276246,0.0007680083619682021,0.0022341512191486755,0.0007334061712511395,0.00045737576124157454,0.00033050712146520775,0.0,0.00043240770867704255,0.00022185067963278484,5.860166398826634e-05,0.0,0.0,0.0,0.0,0.001027979606407048,0.0004164161611041656,0.0003960694429320544,0.0,0.0003936840850296795 +104310,50.0,the Greater Atlanta and Macon Area,G1302550160800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,118951.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.010489279577032091,0.0,0.0,0.010489279577032091,0.006789106946326287,0.002876319119556222,0.0008238535111495805,0.0,0.0,0.006789106946326287,0.002876319119556222,0.0008238535111495805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012499874161620384,0.00043684456251409296,0.0012499874161620384,0.0008090449098590348,0.0003427654566653135,9.817704963768995e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008090449098590348,0.0003427654566653135,9.817704963768995e-05,0.0,0.0 +104311,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,453978.0,,20993.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.023368651812352436,0.003570043732650472,0.0,0.0269386955450029,0.011722552565397852,0.006259491335012602,0.004685070701634752,0.0,0.004271563212596281,0.011722552565397852,0.006259491335012602,0.004685070701634752,0.0,0.0007015194799458092,0.0,0.0,0.003570043732650472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002385298731703793,0.0,0.0,0.0027847964444208807,0.0008856990391718501,0.00302332631759126,0.0013969536182828072,0.0007459313166030543,0.0005583106948804126,0.0,8.359870176217984e-05,0.0,0.0,0.0002385298731703793,0.0,0.0,0.0,0.0013156205585792946,0.0007025019031178933,0.0005258048790211595,0.0,0.0004793969869967442 +104312,50.0,the Greater Atlanta and Macon Area,G1300770170700,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,32493.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0028950733204874944,0.0,0.0,0.002895073320487494,0.0010396717925472772,0.000767608432718142,0.0010877930952220751,0.0,0.0,0.0010396717925472772,0.000767608432718142,0.0010877930952220751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034499892434619654,0.00011479169888980941,0.00034499892434619654,0.0001238951868899453,9.147405066833876e-05,0.00012962968678791249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012389518688994534,9.147405066833877e-05,0.0001296296867879125,0.0,0.0 +104313,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300050970201,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,27535.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,43199.70345818221,0.0,0.0,0.004431222381112715,0.0,0.0,0.004431222381112714,0.002129980671937025,0.0002927870394360699,0.001981048536270123,0.0,2.740613346949601e-05,0.002129980671937025,0.0002927870394360699,0.001981048536270123,0.0,2.740613346949601e-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.0005280616516260423,0.00019092577510064444,0.0005280616516260423,0.00025382637448950973,3.4890961076181996e-05,0.00023607837116752125,0.0,3.2659448928292683e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0002538263744895098,3.4890961076182e-05,0.0002360783711675213,0.0,3.265944892829269e-06 +104314,50.0,the Greater Atlanta and Macon Area,G1301210003000,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,312121.0,,10272.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.014819603446445574,0.0017469015892721223,0.0,0.016566487305356276,0.007054786696509071,0.0025813810495069075,0.0032956663896751546,0.0,0.003634653169665144,0.0059800962997554104,0.0025813810495069075,0.0026234729275181126,0.0,0.003634653169665144,0.0010746903967536604,0.0006721934621570418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011671742483328913,0.0,0.0,0.0017660226881572557,0.0005748168875829591,0.0018827401129905448,0.0007126361903608372,0.0003076180490714677,0.0003126340545147689,0.0,0.0004331343942101819,7.180432851653527e-05,4.491191168097413e-05,0.0,0.0,0.0,0.0,0.0008017589762565561,0.0002933675413042407,0.0003745442951487959,0.0,0.00041306930028095224 +104315,50.0,the Greater Atlanta and Macon Area,G1301950020300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,11358.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0009217930147578007,0.0,0.0,0.0009217930147578007,0.00040077556864170065,0.0002550306283339102,0.00026598681778219,0.0,0.0,0.00040077556864170065,0.0002550306283339102,0.00026598681778219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010984867151661815,4.2637041036998464e-05,0.00010984867151661815,4.7759814933263966e-05,3.03916120756125e-05,3.1697244507741695e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7759814933263966e-05,3.03916120756125e-05,3.1697244507741695e-05,0.0,0.0 +104316,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,502462.0,,46522.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.023816804427605687,0.0079115000299646,0.0,0.03172830445757029,0.014184927429053364,0.008325362126231473,0.003346605718034966,0.0,0.005871409184250485,0.011740300657179324,0.008325362126231473,0.0029040381666290286,0.0,0.0008471034775658629,0.00244462677187404,0.00044256755140593805,0.005024305706684622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005286000389329792,0.0,0.0,0.0028382032458989744,0.0012252469771174277,0.0033668032848319534,0.0013990692804452787,0.0009921175563992316,0.0003460687001816059,0.0,0.0001009477088728583,0.00016333562559501158,2.9569768566972862e-05,0.0003356946447709947,0.0,0.0,0.0,0.0015052131237301223,0.0008834337993539962,0.00035512024096923204,0.0,0.0006230361207786023 +104317,50.0,the Greater Atlanta and Macon Area,G1301210011418,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,Electricity,298706.0,,26086.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.015375964457445412,0.004436225079104311,0.0,0.019812207266911144,0.010551196238182063,0.0017579830651596555,0.002722869333638929,0.0,0.004780176360291916,0.006487503782874481,0.0017579830651596555,0.0023503189794807796,0.0,0.004780176360291916,0.004063692455307582,0.0003725503541581495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002964030348393205,0.0,0.0,0.0018323245236037508,0.0007748544795278801,0.002128727558443071,0.0007731035221388626,0.0002094955078289315,0.00028008305536298507,0.0,0.0005696445511665161,0.00027151254837818283,2.489167110187168e-05,0.0,0.0,0.0,0.0,0.0011336759152661934,0.0001888869295412446,0.00029255937566518214,0.0,0.0005136072430135622 +104318,50.0,the Greater Atlanta and Macon Area,G1301210011621,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,14879.0,,2206.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001325729612848165,0.0006492386212279022,0.0,0.0019749682340760672,0.0010817779323877253,0.0004295317297426482,0.0004636892615519913,0.0,0.0,0.000432539311159823,0.0004295317297426482,0.0004636892615519913,0.0,0.0,0.0006492386212279022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.337759865346585e-05,0.0,0.0,0.00015798595354880095,9.606783650328309e-05,0.0002013635522022668,5.154530370194917e-05,5.1186893047572064e-05,5.525741405085498e-05,0.0,0.0,4.337759865346585e-05,0.0,0.0,0.0,0.0,0.0,0.00011029577256037329,4.379413977006396e-05,4.727676891868365e-05,0.0,0.0 +104319,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970702,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,30032.0,,211.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.00688089770681542,0.00016772994554331542,0.0,0.0070486276523587365,0.003177853894285409,0.0014568851039179,0.002258068527230571,0.0,0.0001557374198511159,0.003010123948742094,0.0014568851039179,0.002258068527230571,0.0,0.0001557374198511159,0.00016772994554331542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1204685784962792e-05,0.0,0.0,0.0008199824565582193,0.00023400748445600355,0.0008311871423431822,0.00035871029263950663,0.0001736140075517216,0.0002690893916648938,0.0,1.8558908669877485e-05,1.1204685784962792e-05,0.0,0.0,0.0,0.0,0.0,0.0003747383785113593,0.00017179857214370543,0.0002662755956098465,0.0,1.83648431079533e-05 +104320,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,111462.0,,1671.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.01204153766825999,0.0006209434909476266,0.0,0.012662481159207619,0.0059911262899443535,0.001759875910880456,0.00470425238804971,0.0,0.00020722657033309878,0.0059911262899443535,0.001759875910880456,0.0040833088971020835,0.0,0.00020722657033309878,0.0,0.0006209434909476266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.148904891981513e-05,0.0,0.0,0.0014349646682942302,0.0004202763974151308,0.0014764537172140457,0.0007139498946234763,0.00020972070364004398,0.0004865993163412707,0.0,2.4694753689439328e-05,0.0,4.148904891981513e-05,0.0,0.0,0.0,0.0,0.0006985693064313051,0.00020520270062281403,0.0005485189543597854,0.0,2.4162755800141124e-05 +104321,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,148918.0,,2091.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.007322568345036128,0.0003555823982791589,0.0,0.007678150743315288,0.0034545836190830884,0.0016894729486325716,0.0011874554953851964,0.0,0.0013466564105758506,0.0033109854219420805,0.0016894729486325716,0.0009754712942470451,0.0,0.0013466564105758506,0.00014359819714100764,0.0002119842011381513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3758397546808622e-05,0.0,0.0,0.000872616230561843,0.0002510176533809352,0.0008963746281086518,0.0003945636943489746,0.00020133120602026737,0.00011624501728060542,0.0,0.00016047842580468844,9.59457799708816e-06,1.4163819549720465e-05,0.0,0.0,0.0,0.0,0.00040330037926408134,0.00019723508129201666,0.00013862777817929233,0.0,0.00015721345927871848 +104322,85.0,Rural Climate Zone 3A,G1301750950300,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,57784.0,,15240.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0036303269614786516,0.0025917355805762186,0.0,0.00622206254205487,0.002295993152089738,0.0004996238544556679,0.002964179552565847,0.0,0.00046226598294361664,0.0020798423160178743,0.0004996238544556679,0.0005885948080614928,0.0,0.00046226598294361664,0.00021615083607186376,0.002375584744504355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001731645312937325,0.0,0.0,0.00043261933611282087,0.00028910136691142,0.0006057838674065534,0.0002478509543417322,5.953924880989284e-05,7.014175246609222e-05,0.0,5.508738049510366e-05,1.4441927833089743e-05,0.00015872260346064276,0.0,0.0,0.0,0.0,0.0002235393170369098,4.864368828744801e-05,0.0002885943593308437,0.0,4.500650275135187e-05 +104323,50.0,the Greater Atlanta and Macon Area,G1300890021604,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,23149.0,,1856.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.00540854638010827,0.0014725994479283687,0.0,0.006881145828036638,0.002806251011974701,0.0018769543314398425,0.0020533685197257853,0.0,0.00014465467197004867,0.001478306236016381,0.0018769543314398425,0.0020533685197257853,0.0,0.0,0.0013279447759583197,0.0,0.00014465467197004867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.839067092887207e-05,0.0,0.0,0.0006445250251564215,0.0003053445043738527,0.0007429156960852936,0.00017616662537305988,0.00022367267518273582,0.0002446955806275572,0.0,0.0,8.8725673262228e-05,0.0,9.664997666644045e-06,0.0,0.0,0.0,0.00030297394882359175,0.00020264340685536666,0.00022168977976549698,0.0,1.561749002335579e-05 +104324,50.0,the Greater Atlanta and Macon Area,G1301130140203,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,13889.0,,2815.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.003011116433626965,0.0022327601626663425,0.0,0.0052437938892195704,0.003645893224576149,0.0007747998667898319,0.0007040026116689849,0.0,0.0001192636003320813,0.0014131330619098067,0.0007747998667898319,0.0007040026116689849,0.0,0.0001192636003320813,0.0022327601626663425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014917766360751262,0.0,0.0,0.0003588274219890965,0.00023566734585608585,0.0005080050855966091,0.00016839963007404354,9.233101571658901e-05,8.389427901148653e-05,0.0,1.421235318780117e-05,0.00014917766360751262,0.0,0.0,0.0,0.0,0.0,0.00035320463365934367,7.506059180891821e-05,6.820193824482408e-05,0.0,1.1553946775027761e-05 +104325,85.0,Rural Climate Zone 3A,G1302930010500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,92428.0,,1.0,,9.325022323477118,Office,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,349688.3371303919,0.0,0.0,0.022908113157947628,4.4192079027477403e-07,0.0,0.022908555078737902,0.012249337233152299,0.005700601426228476,0.004687718974918694,0.0,0.0002708974444384365,0.012248895312362024,0.005700601426228476,0.004687718974918694,0.0,0.0002708974444384365,4.4192079027477403e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.791180732611704e-08,0.0,0.0,0.002729918720612004,0.0008932779912681155,0.00272994663241933,0.0014596788652771573,0.0006793304382997402,0.0005586270548938203,0.0,3.2282362141286604e-05,2.791180732611704e-08,0.0,0.0,0.0,0.0,0.0,0.0014597182936277593,0.0006793242791965137,0.0005586219901396119,0.0,3.228206945544535e-05 +104326,50.0,the Greater Atlanta and Macon Area,G1301210011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,147462.0,,13274.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.023382288279794557,0.00390724722579203,0.0,0.027289535505586587,0.007802586884340551,0.007324995231135701,0.012161953390110338,0.0,0.0,0.0038953396585485215,0.007324995231135701,0.012161953390110338,0.0,0.0,0.00390724722579203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026106006952930725,0.0,0.0,0.0027864206002813138,0.0010211939166087413,0.0030474806698106206,0.00046419984818388125,0.0008729050538067455,0.0014493156982906877,0.0,0.0,0.00026106006952930725,0.0,0.0,0.0,0.0,0.0,0.0008713315292478296,0.000817997850083275,0.0013581512904795162,0.0,0.0 +104327,50.0,the Greater Atlanta and Macon Area,G1300570090702,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,41989.0,,8085.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004345617562148417,0.0023797948307490643,0.0,0.00672541239289748,0.003098085066146798,0.00147862523142332,0.0021487020953273625,0.0,0.0,0.0007182902353977336,0.00147862523142332,0.0021487020953273625,0.0,0.0,0.0023797948307490643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015900375953647702,0.0,0.0,0.000517860557171055,0.00029967990048591583,0.000676864316707532,8.55975419359497e-05,0.00017620549329092316,0.00025605752194418207,0.0,0.0,0.00015900375953647702,0.0,0.0,0.0,0.0,0.0,0.00031179994755620145,0.00014881297955658584,0.00021625138959474472,0.0,0.0 +104328,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5187.0,,263.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011771697805315626,0.00020883536119175122,0.0,0.0013860051417233137,0.000886454416337897,0.0002441512816784355,0.0002137150785423704,0.0,4.168436516461094e-05,0.0006776190551461458,0.0002441512816784355,0.0002137150785423704,0.0,4.168436516461094e-05,0.00020883536119175122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3954188101385226e-05,0.0,0.0,0.00014027968507628817,5.8210712503508484e-05,0.00015423387317767338,8.074976883510356e-05,2.9094753765559094e-05,2.5467765491261763e-05,0.0,4.967396984363749e-06,1.3954188101385226e-05,0.0,0.0,0.0,0.0,0.0,9.864414922534333e-05,2.7169017401867274e-05,2.378209382331472e-05,0.0,4.638612727148072e-06 +104329,81.0,the Columbus-Albany Area,G1300950000200,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12518.0,,832.0,,8.72605822017302,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.003686006155339714,0.0006601678625871517,0.0,0.004346174017926867,0.002069330984957472,0.0006421377205119828,0.0015593591682809024,0.0,7.526343710276975e-05,0.0014091631223703198,0.0006421377205119828,0.0015593591682809024,0.0,7.526343710276975e-05,0.0006601678625871517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4107056816873495e-05,0.0,0.0,0.00043925661669851773,0.00017257078634246045,0.0004833636735153913,0.00016792815839767862,7.652272695149532e-05,0.0001858268281740717,0.0,8.969047079580208e-06,4.4107056816873495e-05,0.0,0.0,0.0,0.0,0.0,0.00023014251672448738,7.141592725215508e-05,0.00017342553998095467,0.0,8.3704912157987e-06 +104330,50.0,the Greater Atlanta and Macon Area,G1301210010514,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,174939.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,431997.0345818221,0.040092716540760846,0.0068788849069521246,0.028228699630820503,0.0,0.0,0.07520030107853348,0.053397630025721926,0.0035341901519547686,0.018082588700730016,0.0,0.00018600138790950775,0.006426028578008959,0.0035341901519547686,0.018082588700730016,0.0,0.00018600138790950775,0.0,0.0,0.0,0.0068788849069521246,0.0,0.0,0.040092716540760846,0.0,0.0,0.0,0.0,0.0,0.0,0.0033639627581106895,0.0011934523364752901,0.0033639627581106895,0.000765778130118876,0.00042116300809963436,0.0021548691847312297,0.0,2.2165446870295567e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0023886558458098756,0.00015809622941325132,0.0008088950986507832,0.0,8.320468574069252e-06 +104331,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,25910.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.0022847932705060054,0.0,0.0,0.0022847932705060054,0.0011840540268818795,0.0009304344715766517,0.000170244024848599,0.0,0.0,0.0011840540268818795,0.0009304344715766517,0.000170244024848599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002722742490560726,6.537766533464254e-05,0.0002722742490560726,0.00014110135265747018,0.00011087801698063987,2.028764029564478e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014110135265747018,0.00011087801698063987,2.028764029564478e-05,0.0,0.0 +104332,50.0,the Greater Atlanta and Macon Area,G1300970080506,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,15228.0,,1105.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001350774714195699,0.00032183865964241823,0.0,0.0016726133738381175,0.0010912323070001097,0.0004206136050139873,0.0001607674618240204,0.0,0.0,0.0007693936473576915,0.0004206136050139873,0.0001607674618240204,0.0,0.0,0.00032183865964241823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1503193056823956e-05,0.0,0.0,0.0001609682613257639,6.230765954803133e-05,0.00018247145438258784,9.168661242226401e-05,5.012341434698638e-05,1.91582345565135e-05,0.0,0.0,2.1503193056823956e-05,0.0,0.0,0.0,0.0,0.0,0.000119046486918051,4.5886262444433726e-05,1.75387050201031e-05,0.0,0.0 +104333,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen5_led,50001_100000,NaturalGas,76986.0,,7354.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0068523446045447795,0.0021645993113895722,0.0,0.009016943915934354,0.005543125999884779,0.001217487371436167,0.0022563305446134064,0.0,0.0,0.0033785266884952068,0.001217487371436167,0.0022563305446134064,0.0,0.0,0.0021645993113895722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014462571668716928,0.0,0.0,0.0008165799424024997,0.0004067444865755404,0.0009612056590896688,0.0004026121405025282,0.00014508548898485555,0.000268882312915116,0.0,0.0,0.00014462571668716928,0.0,0.0,0.0,0.0,0.0,0.0005908968858862223,0.0001297840778655198,0.00024052469533792652,0.0,0.0 +104334,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,33698.0,,1996.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007982473221949254,0.0015836750479602583,0.0,0.009566148269909517,0.006255549522272517,0.0017888712979074804,0.001299741663813216,0.0,0.00022198578591630115,0.004671874474312259,0.0017888712979074804,0.001299741663813216,0.0,0.00022198578591630115,0.0015836750479602583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010581318420353792,0.0,0.0,0.000951255672385391,0.00039783137738328046,0.0010570688565889291,0.0005567381149669335,0.00021317628283710953,0.00015488766400597234,0.0,2.6453610575375747e-05,0.00010581318420353792,0.0,0.0,0.0,0.0,0.0,0.0006912444166942205,0.00019767204982718714,0.00014362274090500002,0.0,2.4529649162521164e-05 +104335,50.0,the Greater Atlanta and Macon Area,G1300890023603,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,3598.0,,97.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005514080606199626,7.71656997987738e-05,0.0,0.0006285737604187364,0.0004339640159101461,0.00011190267076928293,5.6819759658904194e-05,0.0,2.5970021154142532e-05,0.0003567983161113723,0.00011190267076928293,5.6819759658904194e-05,0.0,2.5970021154142532e-05,7.71656997987738e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.155003328902229e-06,0.0,0.0,6.57091878530792e-05,2.7490489247079667e-05,7.086419118198144e-05,4.25182895452503e-05,1.3335012924136217e-05,6.770993258596881e-06,0.0,3.0947480104795067e-06,5.155003328902229e-06,0.0,0.0,0.0,0.0,0.0,4.892426462261271e-05,1.2615690877529064e-05,6.405749913423848e-06,0.0,2.9278100040976545e-06 +104336,50.0,the Greater Atlanta and Macon Area,G1301390001102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,40362.0,,3428.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003324025975268685,0.000998775070311593,0.0,0.004322801045580277,0.0029884280750809636,0.0010290879225504693,0.0003052850479488436,0.0,0.0,0.001989653004769371,0.0010290879225504693,0.0003052850479488436,0.0,0.0,0.000998775070311593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.673140215042618e-05,0.0,0.0,0.0003961179493445818,0.00016894225306298387,0.000462849351495008,0.00023710322182209263,0.00012263448017821752,3.638024734427156e-05,0.0,0.0,6.673140215042618e-05,0.0,0.0,0.0,0.0,0.0,0.0003199758633247542,0.00011018612065684167,3.268736751341212e-05,0.0,0.0 +104337,50.0,the Greater Atlanta and Macon Area,G1302970110400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,25793.0,,4692.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002835421667933424,0.0007979549157094764,0.0,0.0036333765836429,0.0016451293147210192,0.0009521204082568355,0.0005210421310510917,0.0,0.000515084729613954,0.0012592989198592502,0.0009521204082568355,0.0005210421310510917,0.0,0.00010296020876624663,0.000385830394861769,0.0,0.0004121245208477073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.331483294868312e-05,0.0,0.0,0.0003378908500094298,0.00013887654184401146,0.00039120568295811296,0.00015006783197693676,0.00011346205670061957,6.209142384098896e-05,0.0,1.2269537490884503e-05,2.577900410612806e-05,0.0,2.7535828842555055e-05,0.0,0.0,0.0,0.0001771310851776828,0.0001025148112219685,5.610061000707613e-05,0.0,5.54591765513856e-05 +104338,35.0,Eastern Counties in South Carolina and Georgia,G1302450010104,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,28702.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0024379369588711504,0.0,0.0,0.00243793695887115,0.0015306775436655033,0.0007039689141687739,0.00020329050103687295,0.0,0.0,0.0015306775436655033,0.0007039689141687739,0.00020329050103687295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002905242623567311,7.660871655344197e-05,0.0002905242623567311,0.00018240790134513751,8.389062267042864e-05,2.4225738341164903e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018240790134513754,8.389062267042866e-05,2.4225738341164906e-05,0.0,0.0 +104340,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,20890.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0017086060891718534,0.0,0.0,0.0017086060891718532,0.0011893997803829235,0.00033301614423551096,0.00018615979095398095,0.0,0.0,0.0011893997803829235,0.00033301614423551096,0.00018615979095398095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020361029063396368,5.852078514108853e-05,0.00020361029063396368,0.00014173778057944254,3.96846963986059e-05,2.218419411045746e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014173778057944257,3.9684696398605904e-05,2.218419411045746e-05,0.0,0.0 +104341,50.0,the Greater Atlanta and Macon Area,G1301390000500,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,NaturalGas,36562.0,,10099.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007089519134893152,0.006947226712398179,0.0,0.014036674127320316,0.003921719735104628,0.0007402218208521215,0.00516606123222548,0.0003649829324984447,0.003843688406639642,0.003921719735104628,0.0007402218208521215,0.0016500613731561635,0.0003649829324984447,0.0004125332732817948,0.0,0.0035159998590693167,0.0034311551333578473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004641716211357296,0.0,0.0,0.0008448407486853006,0.000675925280828035,0.0013090123698210302,0.00046734180049429365,8.821043365888706e-05,0.000196633799747119,4.349412817460289e-05,4.916058661039808e-05,0.0,0.00023491782002516893,0.0002292490092163859,0.0,0.0,0.0,0.0003657262110425044,6.90305631603242e-05,0.000481769256370634,3.4037063842930914e-05,0.00035844927540463665 +104342,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,4469.0,,279.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0010730415746937748,0.00022140683640012597,0.0,0.001294365704020161,0.0004622498351289891,0.0006341978414330094,0.00015763968254711992,0.0,4.044375905852133e-05,0.00024084299872886316,0.0006341978414330094,0.00015763968254711992,0.0,4.044375905852133e-05,0.00022140683640012597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4790753336498728e-05,0.0,0.0,0.0001278711843472723,5.837779409721988e-05,0.00014266193768377102,2.8700546386562107e-05,7.557547722944996e-05,1.8785453781863797e-05,0.0,4.819562906259915e-06,1.4790753336498728e-05,0.0,0.0,0.0,0.0,0.0,5.094808752169944e-05,6.989979157566496e-05,1.7374674327493136e-05,0.0,4.457615816444987e-06 +104343,50.0,the Greater Atlanta and Macon Area,G1302070050200,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,33332.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008003480818679042,0.0,0.0,0.00800348081867904,0.00407687978583168,0.0018577662903323233,0.0018880370793209098,0.0,0.000180797663194126,0.00407687978583168,0.0018577662903323233,0.0018880370793209098,0.0,0.000180797663194126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009537623145404346,0.0002713697593356637,0.0009537623145404346,0.000485835399463068,0.00022138710856996807,0.0002249944312365431,0.0,2.1545375270855228e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004858353994630681,0.0002213871085699681,0.00022499443123654312,0.0,2.154537527085523e-05 +104344,81.0,the Columbus-Albany Area,G1302150010301,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,5965.0,,39.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0010910717167689433,3.0849738504761666e-05,0.0,0.0011219214552737051,0.0004246181165776044,0.00020163984577643151,0.0004648137544149077,0.0,3.0849738504761666e-05,0.0004246181165776044,0.00020163984577643151,0.0004648137544149077,0.0,0.0,0.0,0.0,3.0849738504761666e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0590394242114503e-06,0.0,0.0,0.0001300226604691575,4.2325744626214494e-05,0.00013208169989336894,5.0601602399079355e-05,2.4029354625819138e-05,5.539170344425905e-05,0.0,0.0,0.0,0.0,2.0590394242114503e-06,0.0,0.0,0.0,4.998949113546305e-05,2.3738679273131848e-05,5.4721647873257165e-05,0.0,3.63188161151689e-06 +104345,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,26885.0,,4447.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025660807409761204,0.0013090958462348098,0.0,0.0038752072768172274,0.001775700620385083,0.0008906123747593348,0.0012088942816728106,0.0,0.0,0.0004666047741502731,0.0008906123747593348,0.0012088942816728106,0.0,0.0,0.0013090958462348098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.746653138139816e-05,0.0,0.0,0.0003057964697742063,0.0001903774381439772,0.0003932630011556045,5.5604677762659755e-05,0.00010613310633204329,0.0001440623429195561,0.0,0.0,8.746653138139816e-05,0.0,0.0,0.0,0.0,0.0,0.00018020129124552176,9.03809449005365e-05,0.0001226807650095463,0.0,0.0 +104346,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,64925.0,,2484.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005773881149637207,0.0007312719388616619,0.0,0.006505153088498868,0.002919471557494168,0.0015176931002402957,0.0020679577411581067,0.0,0.0,0.002188199618632506,0.0015176931002402957,0.0020679577411581067,0.0,0.0,0.0007312719388616619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.885974166574557e-05,0.0,0.0,0.0006880627652690563,0.0002578001852619807,0.0007369225069348019,0.0002607637118840902,0.00018086068700023724,0.00024643470916096066,0.0,0.0,4.885974166574557e-05,0.0,0.0,0.0,0.0,0.0,0.000330726159677499,0.000171928652403908,0.00023426421824626476,0.0,0.0 +104347,50.0,the Greater Atlanta and Macon Area,G1300670031306,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,15492.0,,2463.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00379633739170795,0.001953789202943659,0.0,0.00575012659465161,0.004159090617128553,0.0011486358400915016,0.00037267807426931925,0.0,6.963935608849685e-05,0.002205301414184893,0.0011486358400915016,0.00037267807426931925,0.0,6.963935608849685e-05,0.001953789202943659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013054315774261262,0.0,0.0,0.0004523977263191479,0.0002754791117721421,0.0005829408840617604,0.00026279891450238036,0.0001368793626091006,4.44108876668064e-05,0.0,8.298705595972256e-06,0.00013054315774261262,0.0,0.0,0.0,0.0,0.0,0.0004216435797251848,0.00011644731312711768,3.778165271823101e-05,0.0,7.059953748058257e-06 +104348,50.0,the Greater Atlanta and Macon Area,G1300630040606,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Electricity,96127.0,,7174.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004948153804385496,0.0012200261693138333,0.0,0.006168179973699329,0.0022312596025451247,0.001052314680641554,0.0020195236264668546,0.0,0.0008650643336843763,0.0017406782324136838,0.001052314680641554,0.0012900788272844621,0.0,0.0008650643336843763,0.0004905813701314409,0.0007294447991823922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.151525382346619e-05,0.0,0.0,0.0005896616769119153,0.00022923766259068677,0.0006711769307353815,0.00020743317327351956,0.00012540225380144293,0.00015373613568173727,0.0,0.00010308800126320365,3.2777874699047894e-05,4.8737379124418286e-05,0.0,0.0,0.0,0.0,0.00024278960375598855,0.00011450530635168683,0.00021975001944482547,0.0,9.413007189261851e-05 +104349,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,455632.0,,23470.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.02036399384466461,0.003991370311075187,0.0,0.024355364155739797,0.011311279101898308,0.005773803544633095,0.0026309906007602156,0.0,0.004639308638809596,0.011311279101898308,0.005773803544633095,0.0026309906007602156,0.0,0.0006479383277344096,0.0,0.0,0.003991370311075187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000266680139686563,0.0,0.0,0.0024267374143513176,0.0008478681857220807,0.0026934175540378807,0.0013479430611760177,0.0006880529031659681,0.0003135300165760102,0.0,7.721354632589825e-05,0.0,0.0,0.000266680139686563,0.0,0.0,0.0,0.0012508947719631963,0.0006385149374584887,0.000290956695341638,0.0,0.0005130531100445292 +104350,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,6904.0,,38.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013850953639121815,3.018808191484721e-05,0.0,0.0014152834458270285,0.0007498223305205611,0.00021983540199907914,0.0004153549243188019,0.0,3.018808191484721e-05,0.0007498223305205611,0.00021983540199907914,0.0004153549243188019,0.0,0.0,0.0,0.0,3.018808191484721e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0187099334977786e-06,0.0,0.0,0.00016505915970045724,5.6118023554084525e-05,0.00016707786963395503,8.93548899411444e-05,2.619736349697351e-05,4.949705021888674e-05,0.0,0.0,0.0,0.0,2.0187099334977786e-06,0.0,0.0,0.0,8.851846459218305e-05,2.5952137534306482e-05,4.903372260996507e-05,0.0,3.563781113627489e-06 +104351,50.0,the Greater Atlanta and Macon Area,G1301350050423,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,46084.0,,6502.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0023529962640552074,0.0011057007988773328,0.0,0.0034586970629325404,0.0010900626201048463,0.0011540337641083968,0.0006401369687095863,0.0,0.0005744814403711307,0.0008505963587656133,0.0011540337641083968,0.00024214354591366112,0.0,0.0001062403256289564,0.00023946626133923313,0.00039799342279592525,0.0004682411147421743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.387656648703353e-05,0.0,0.0,0.00028040118152970837,0.00015699205178652123,0.0003542777480167419,0.00010136362205339635,0.0001375235634345992,2.8855692383024843e-05,0.0,1.2660416545294347e-05,1.5999757977195648e-05,2.659163092804018e-05,3.12851775817977e-05,0.0,0.0,0.0,0.00011165618821803892,0.00011820881552920817,6.556986043305266e-05,0.0,5.8844699974832106e-05 +104352,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,99978.0,,8908.0,,4.088175128053588,Healthcare,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,153306.56730200956,0.0,0.0,0.011247039987237207,0.0033107428239342973,0.0,0.014557782811171505,0.008652639273577402,0.0015995736817353498,0.004056804975241981,0.0,0.00024872613219299944,0.0061708027309755,0.0015995736817353498,0.003476624826102584,0.0,0.0,0.002481836542601902,0.0005801801491393956,0.00024872613219299944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022120561221117513,0.0,0.0,0.001340286185584875,0.0005480974250476175,0.0015614917977960498,0.0007353616296982274,0.00019061784352930573,0.0004143020947888834,0.0,0.0,0.00016582265703197216,3.876444408649055e-05,1.6618511092712405e-05,0.0,0.0,0.0,0.0009280963612543285,0.000171572911644447,0.00043513959345769306,0.0,2.6678775219730753e-05 +104353,50.0,the Greater Atlanta and Macon Area,G1301210010512,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,105506.0,,22588.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.022195322870143183,0.015538490320387214,0.0,0.037733813190530395,0.013151577965016658,0.002574244919663328,0.014445908281935392,0.00037315900919422434,0.007188851294749774,0.00947729212991589,0.002574244919663328,0.002581703796648951,0.00037315900919422434,0.007188851294749774,0.0036742858351007683,0.011864204485286441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001038190920748576,0.0,0.0,0.00264497371056467,0.0016344261459674706,0.0036831646313132465,0.001129390578259575,0.0003067677896329805,0.0003076566495812107,4.4468637602329063e-05,0.0008566815087583036,0.00024549426074113346,0.0007926966600074422,0.0,0.0,0.0,0.0,0.0012837140673305782,0.0002512698038909358,0.0014100525219267314,3.642372578621288e-05,0.0007016975118549005 +104354,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950100,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,9892.0,,359.0,,8.72605822017302,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.002112669491596869,0.00028467774781069607,0.0,0.002397347239407565,0.0009760261771975669,0.00048325743185877325,0.000856597162718007,0.0,8.14664676332178e-05,0.0007727321899463493,0.00048325743185877325,0.000856597162718007,0.0,0.0,0.0002032939872512176,0.0,8.14664676332178e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9022866239465048e-05,0.0,0.0,0.0002517587920675614,9.349991005285761e-05,0.0002707816583070265,9.20835575590051e-05,5.7587951066816525e-05,0.0001020774275541706,0.0,0.0,1.3584603491169404e-05,0.0,5.443789438080499e-06,0.0,0.0,0.0,0.00011024268093842612,5.45841864861642e-05,9.67531096075993e-05,0.0,9.201681274836855e-06 +104355,50.0,the Greater Atlanta and Macon Area,G1301210011419,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6608.0,,341.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.00155365238019289,0.00027020400990631727,0.0,0.001823856390099207,0.0010189511484682673,0.0003536554473092785,0.0003934375497778854,0.0,5.7977658691254505e-05,0.00074874713856195,0.0003536554473092785,0.0003934375497778854,0.0,5.7977658691254505e-05,0.00027020400990631727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8051744530428056e-05,0.0,0.0,0.00018514927320655155,7.949332189918047e-05,0.0002032010177369796,8.922844665099339e-05,4.214523780842238e-05,4.688608425038944e-05,0.0,6.9092169559644745e-06,1.8051744530428056e-05,0.0,0.0,0.0,0.0,0.0,0.00011352423991110053,3.9401757293820275e-05,4.3833994257881916e-05,0.0,6.459455533902717e-06 +104356,50.0,the Greater Atlanta and Macon Area,G1301350050606,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,NaturalGas,530961.0,,79027.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.027331369859372814,0.013439294809894463,0.0,0.040770646938905857,0.016548916517189004,0.00864918944720732,0.006369791913406749,0.0,0.009202749061102786,0.013187523677729714,0.00864918944720732,0.004393317604467784,0.0,0.001101339129968,0.003361392839459291,0.001976474308938966,0.008101409931134786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008979347107159539,0.0,0.0,0.0032570258466403166,0.0016899330379425202,0.004154960557356271,0.0015715313828961696,0.0010307069761592022,0.0005235430592713017,0.0,0.0001312444283136436,0.00022458851819221753,0.00013205639968013786,0.000541288608205031,0.0,0.0,0.0,0.0016865097946308749,0.0008814439726722895,0.0006491492322511141,0.0,0.0009378575578019925 +104357,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,51088.0,,1976.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026297494754608116,0.0003360967310785209,0.0,0.002965863936900753,0.0012710364191193253,0.0005412015519856917,0.0007749586369476677,0.0,0.00037864959848664766,0.0012710364191193253,0.0005412015519856917,0.0004388619058691469,0.0,0.00037864959848664766,0.0,0.0003360967310785209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2456190734795904e-05,0.0,0.0,0.0003133829733881464,9.887420348656718e-05,0.00033583916412294234,0.00015146734547344612,6.449410985578233e-05,5.2298460462269835e-05,0.0,4.5123057596648135e-05,0.0,2.2456190734795904e-05,0.0,0.0,0.0,0.0,0.00014392562088094745,6.128287767335833e-05,8.775232660683874e-05,0.0,4.287633126694538e-05 +104358,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,87148.0,,12236.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.017159433385311038,0.008416840638479065,0.0,0.025576274023790105,0.007901532646731902,0.0016350718992139007,0.011417747665714264,0.0003759560880638332,0.004245965724066205,0.006111975929950374,0.0016350718992139007,0.004790463744016725,0.0003759560880638332,0.004245965724066205,0.001789556716781527,0.006627283921697538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000562365854529197,0.0,0.0,0.0020448568760492803,0.001070308987904148,0.0026072227305784772,0.0007283524884513645,0.00019484839276829626,0.0005708704073412396,4.480196836965563e-05,0.0005059836191187243,0.00011956809395445117,0.0004427977605747458,0.0,0.0,0.0,0.0,0.0008054752425550724,0.00016667778182996164,0.00116391508858444,3.8324630772552816e-05,0.0004328299868364502 +104359,50.0,the Greater Atlanta and Macon Area,G1300890021907,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,15065.0,,413.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003422170590111323,0.00032752001200765733,0.0,0.003749690602118981,0.002235985738542176,0.00048069351257285474,0.0009637028232104101,0.0,6.930852779353962e-05,0.0019777742543280585,0.00048069351257285474,0.0009637028232104101,0.0,0.0,0.00025821148421411775,0.0,6.930852779353962e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1883651507214477e-05,0.0,0.0,0.00040781092077199856,0.00015225931205943715,0.000429694572279213,0.0002356860707257849,5.728296086054706e-05,0.00011484188918566662,0.0,0.0,1.725271717311202e-05,0.0,4.630934334102458e-06,0.0,0.0,0.0,0.00025623205685353074,5.5084916383677474e-05,0.00011043521089170852,0.0,7.942388150296236e-06 +104360,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001300,ComStock 90.1-2007,gen4_led,_1000,NaturalGas,4436.0,,12.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007382433401970581,9.842141774977583e-06,0.0,0.0007480854819720356,0.0004452948850124312,9.403794284159254e-05,0.00019891051234303438,0.0,9.842141774977583e-06,0.0004452948850124312,9.403794284159254e-05,0.00019891051234303438,0.0,0.0,0.0,0.0,9.842141774977583e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.563144163079708e-07,0.0,0.0,8.797403596471399e-05,3.267615799104299e-05,8.863035038102196e-05,5.3064330006052e-05,1.1206193019480149e-05,2.3703512939181845e-05,0.0,0.0,0.0,0.0,6.563144163079708e-07,0.0,0.0,0.0,5.2756860856984216e-05,1.1141261291677389e-05,2.35661683434337e-05,0.0,1.1660598889266571e-06 +104361,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,127345.0,,4090.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.005972578626513308,0.0006954911570629911,0.0,0.006668069783576298,0.003041554849802958,0.0015438889510125179,0.0015337471842802475,0.0,0.0005488787984805747,0.003041554849802958,0.0015438889510125179,0.0008382560272172564,0.0,0.0005488787984805747,0.0,0.0006954911570629911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6468102756383185e-05,0.0,0.0,0.0007117408359550773,0.00022541881378034356,0.0007582089387114604,0.0003624563068608358,0.00018398231004234538,9.989337652374944e-05,0.0,6.540884252814653e-05,0.0,4.6468102756383185e-05,0.0,0.0,0.0,0.0,0.00034584732157151224,0.00017555161253992246,0.00017439841852121655,0.0,6.24115860788091e-05 +104362,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,8260.0,,738.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0019622253244650687,0.0005856487891480358,0.0,0.0025478741136131045,0.0013329899074564177,0.0006601678625871518,0.00045224227920653295,0.0,0.00010239135728926256,0.0008497324755976445,0.0006601678625871518,0.00045224227920653295,0.0,0.0,0.00048325743185877315,0.0,0.00010239135728926256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9132366771572204e-05,0.0,0.0,0.0002338297288453763,9.450803689824474e-05,0.0002729620956169485,0.0001012588676146426,7.866928959510193e-05,5.389171579879947e-05,0.0,0.0,3.229069609466126e-05,0.0,6.841670676910942e-06,0.0,0.0,0.0,0.00014280757303961433,7.072594453075644e-05,4.845019602783465e-05,0.0,1.096952133914764e-05 +104363,50.0,the Greater Atlanta and Macon Area,G1300890022800,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,8164.0,,1150.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,24284.436554246196,0.0,0.0,0.0006261907268983275,0.00033841428864476856,0.0,0.0009645743259367983,0.0004525489344659252,0.0002702833626638684,0.0002417727184133025,0.0,0.0,0.00011413464582115663,0.0002702833626638684,0.0002417727184133025,0.0,0.0,0.00033841428864476856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2610151615725226e-05,0.0,0.0,7.462116462346926e-05,4.7013012799882416e-05,9.72313162391945e-05,1.360106406756921e-05,3.220881184272171e-05,2.8811288713178337e-05,0.0,0.0,2.2610151615725226e-05,0.0,0.0,0.0,0.0,0.0,4.5617976114004526e-05,2.724518619530977e-05,2.4371247512961323e-05,0.0,0.0 +104364,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,3862.0,,468.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00028047231195470575,0.00013773495306409008,0.0,0.0004182379546250935,0.00020181485101369346,0.00012509083526943655,9.13322683419635e-05,0.0,0.0,6.407989794960342e-05,0.00012509083526943655,9.13322683419635e-05,0.0,0.0,0.00013773495306409008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.203516702930911e-06,0.0,0.0,3.3424934198391276e-05,2.0309244411355776e-05,4.2628450901322186e-05,7.636641055502899e-06,1.490754259685336e-05,1.0884407941176546e-05,0.0,0.0,9.203516702930911e-06,0.0,0.0,0.0,0.0,0.0,2.0569760282293416e-05,1.2749748009523719e-05,9.308942609505053e-06,0.0,0.0 +104365,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,7266.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0014216518905049555,0.0,0.0,0.001421651890504955,0.0005654682631556448,0.00020197067407138873,0.0006149270932517506,0.0,3.936856709991033e-05,0.0005654682631556448,0.00020197067407138873,0.0006149270932517506,0.0,3.936856709991033e-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.0001694133678731141,4.939327186063979e-05,0.0001694133678731141,6.73849087293316e-05,2.406815081425008e-05,7.32787474627147e-05,0.0,4.691416784432038e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.738490872933161e-05,2.4068150814250086e-05,7.327874746271473e-05,0.0,4.691416784432039e-06 +104366,50.0,the Greater Atlanta and Macon Area,G1300770170601,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,32707.0,,3385.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.001683586468641114,0.0005757225656705346,0.0,0.0022593090343116483,0.0007351894362824894,0.0003237209388073241,0.0008978477719500538,0.0,0.000302550887271781,0.0005923891054053842,0.0003237209388073241,0.0004649255371566246,0.0,0.000302550887271781,0.00014280033087710526,0.0004329222347934292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.846673032801951e-05,0.0,0.0,0.00020062886114662688,8.54930253018106e-05,0.0002390955914746464,7.059355357558791e-05,3.8577028558950174e-05,5.540403345781528e-05,0.0,3.6054245554273506e-05,9.541161222686984e-06,2.892556910533252e-05,0.0,0.0,0.0,0.0,7.780279299747472e-05,3.425837198957901e-05,9.501641467741763e-05,0.0,3.201801181017505e-05 +104367,50.0,the Greater Atlanta and Macon Area,G1301390001608,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,99739.0,,1628.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.011220187329563154,0.0006049791403535286,0.0,0.011825166469916682,0.0057311243664336774,0.0017065193313462981,0.004185682232707927,0.0,0.00020184053942877924,0.0057311243664336774,0.0017065193313462981,0.0035807030923543986,0.0,0.00020184053942877924,0.0,0.0006049791403535286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0421519707110664e-05,0.0,0.0,0.0013370871026576396,0.00043525310007021034,0.0013775086223647502,0.0006829665360305315,0.00020336246814409582,0.00042670516833695303,0.0,2.405293014605924e-05,0.0,4.0421519707110664e-05,0.0,0.0,0.0,0.0,0.0006676162446161937,0.0001987917125007896,0.0004875883464898684,0.0,2.3512318757898614e-05 +104368,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,96751.0,,5455.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005416838178163172,0.0009276702398585828,0.0,0.006344508418021755,0.003833304139015417,0.0010579883962959708,0.0009168015283080904,0.0,0.0005364320847636977,0.0029056338991568335,0.0010579883962959708,0.0009168015283080904,0.0,0.0005364320847636977,0.0009276702398585828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.198159729795249e-05,0.0,0.0,0.0006455149369507641,0.0001916761476883029,0.0007074965342487166,0.0003462592053750893,0.000126078588738868,0.00010925360169109596,0.0,6.392565404123364e-05,6.198159729795249e-05,0.0,0.0,0.0,0.0,0.0,0.00042746407040315614,0.00011797968799734839,0.00010223548636635705,0.0,5.9819266651468495e-05 +104369,81.0,the Columbus-Albany Area,G1302630960300,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,12477.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006422646120799927,0.0,0.0,0.0006422646120799927,0.0003723021290982688,0.00015047757737198815,2.9450130318707703e-05,0.0,9.003477529102814e-05,0.0003723021290982688,0.00015047757737198815,2.9450130318707703e-05,0.0,9.003477529102814e-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,7.65382806650287e-05,1.795603181106639e-05,7.65382806650287e-05,4.4367016823218664e-05,1.7932320781915266e-05,3.5095540024462416e-06,0.0,1.0729389057448535e-05,0.0,0.0,0.0,0.0,0.0,0.0,4.4367016823218664e-05,1.7932320781915266e-05,3.5095540024462416e-06,0.0,1.0729389057448535e-05 +104370,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,52124.0,,233.0,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.011772442168979281,0.00018460218858613414,0.0,0.011957044357565411,0.006222880228145491,0.0019078867770183437,0.0036416751638154447,0.0,0.00018460218858613414,0.006222880228145491,0.0019078867770183437,0.0036416751638154447,0.0,0.0,0.0,0.0,0.00018460218858613414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2334359500703716e-05,0.0,0.0,0.0014028966132796034,0.0004196033472615721,0.001415230972780307,0.0007415672527076722,0.00022735876376210235,0.0004339705968098286,0.0,0.0,0.0,0.0,1.2334359500703714e-05,0.0,0.0,0.0,0.0007365376070718909,0.0002258167134494202,0.0004310272112836579,0.0,2.1849440975338385e-05 +104371,35.0,Eastern Counties in South Carolina and Georgia,G1300250960200,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,11165.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002680867088185911,0.0,0.0,0.002680867088185911,0.0012297714794297621,0.00042743015708474074,0.000946168923577677,0.0,7.741382101999174e-05,0.0012297714794297621,0.00042743015708474074,0.000946168923577677,0.0,7.741382101999174e-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.0003194740634163599,8.66674340684967e-05,0.0003194740634163599,0.00014654963438445902,5.093607576157672e-05,0.00011275323272299492,0.0,9.225264495517765e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014654963438445902,5.093607576157672e-05,0.00011275323272299492,0.0,9.225264495517765e-06 +104372,85.0,Rural Climate Zone 3A,G1302930010500,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,23475.0,,,7132.0,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.001965263004420856,0.0,0.0006721981291568856,0.002637461133577742,0.0017907363020515342,0.0006729574691428295,0.0001737369887839404,0.0,0.0,0.0011185381728946486,0.0006729574691428295,0.0001737369887839404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006721981291568856,0.0,0.0,0.0,0.0,5.42128590133692e-05,0.00023419630976843325,0.00010474863329378167,0.00028840916878180244,0.0001332938705088222,8.01949436537627e-05,2.070387604709887e-05,0.0,0.0,0.0,0.0,0.0,5.421285901336921e-05,0.0,0.0,0.00019581891153083728,7.358861210504658e-05,1.899832376064571e-05,0.0,0.0 +104373,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,93636.0,,11906.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005840522894656754,0.0020247363527243494,0.0,0.007865276977742523,0.0035086966821370894,0.0016154132289810108,0.0012592989198592502,0.0,0.001481885877126593,0.0029348358044156606,0.0016154132289810108,0.0010625982902651846,0.0,0.00022769330135631808,0.000573860877721429,0.0001967006295940658,0.0012541925757702749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013528162579149039,0.0,0.0,0.0006960048171244339,0.00031505637034892457,0.0008312864429159244,0.00034973920900323936,0.00019250594669287686,0.00012662796500110637,0.0,2.713380932312506e-05,3.834219324991575e-05,1.3142442436957466e-05,8.379817474878853e-05,0.0,0.0,0.0,0.00037083652520038805,0.00017073411664446947,0.00013309615448000708,0.0,0.0001566215205249491 +104374,50.0,the Greater Atlanta and Macon Area,G1300450910701,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,33248.0,,,5015.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002931842059328433,0.0,0.0004727043280497317,0.003404546387378164,0.0023593908307251235,0.0007067632853170471,0.0003383618977365553,0.0,0.0,0.001886686502675392,0.0007067632853170471,0.0003383618977365553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004727043280497317,0.0,0.0,0.0,0.0,3.8122642550571946e-05,0.0003493815192448828,0.00014066024344918233,0.00038750416179545474,0.000224832505743687,8.422351046670509e-05,4.032188347583028e-05,0.0,0.0,0.0,0.0,0.0,3.8122642550571946e-05,0.0,0.0,0.0002685449578826569,8.044352559857289e-05,3.85122212028064e-05,0.0,0.0 +104375,50.0,the Greater Atlanta and Macon Area,G1300670030103,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,140142.0,,18480.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.0077514657877872034,0.0031427597527886185,0.0,0.010894225540575824,0.004594043026104201,0.0021058882169439318,0.0013406990091387129,0.0,0.002853613018750398,0.004095908522007819,0.0021058882169439318,0.001116746814042026,0.0,0.0004329222347934293,0.0004981345040963835,0.00022395219509668688,0.0024206907839569684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002099811413053892,0.0,0.0,0.0009237268958970228,0.0004567393149721383,0.0011337080372024121,0.00048810134347409845,0.0002509545470494872,0.00013308051616033907,0.0,5.159048921309834e-05,3.328248416091638e-05,1.4963198342642273e-05,0.00016173664344266205,0.0,0.0,0.0,0.00047807927994051187,0.00021914934550482977,0.00013951989854338285,0.0,0.00029696135832449143 +104376,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,59470.0,,1428.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005032420261484707,0.00042026346864074187,0.0,0.005452714419731747,0.0016970431594440709,0.0015262248107910574,0.002229415759890321,0.0,0.0,0.0012767796908033288,0.0015262248107910574,0.002229415759890321,0.0,0.0,0.00042026346864074187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8080509309782257e-05,0.0,0.0,0.0005997039881209378,0.00019848605493342437,0.0006277844974307199,0.00015215141676197644,0.0001818773191113586,0.00026567525224760274,0.0,0.0,2.8080509309782257e-05,0.0,0.0,0.0,0.0,0.0,0.000195384776271164,0.00017571803730295058,0.0002566781504863272,0.0,0.0 +104377,35.0,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,62217.0,,1540.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005267840231394386,0.0004532241058044746,0.0,0.00572106433719886,0.001734208272670589,0.0017305255199148643,0.0022563305446134064,0.0,0.0,0.0012809841668661142,0.0017305255199148643,0.0022563305446134064,0.0,0.0,0.0004532241058044746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0281296384183963e-05,0.0,0.0,0.0006277586258898007,0.00020788343967371425,0.0006580399222739845,0.00015265247711690878,0.00020622347579463948,0.0002688826729782523,0.0,0.0,3.0281296384183963e-05,0.0,0.0,0.0,0.0,0.0,0.00019946957588555934,0.00019904598366664753,0.0002595243627217776,0.0,0.0 +104378,50.0,the Greater Atlanta and Macon Area,G1301530021300,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,121531.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.010828244479624771,0.0,0.0,0.010828244479624771,0.0030418003281968116,0.0030585875428416546,0.0047279179877989,0.0,0.0,0.0030418003281968116,0.0030585875428416546,0.0047279179877989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012903824803336542,0.00042247056800713795,0.0012903824803336542,0.00036248589137085496,0.000364486393641751,0.0005634175097717644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036248589137085496,0.000364486393641751,0.0005634175097717644,0.0,0.0 +104379,85.0,Rural Climate Zone 3A,G1300810010400,ComStock 90.1-2007,gen5_led,1001_5000,NaturalGas,10626.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.0007963957772578527,0.0,0.0,0.0007963957772578529,0.0006285512667648362,0.00013540550629349764,3.24693777989567e-05,0.0,0.0,0.0006285512667648362,0.00013540550629349764,3.24693777989567e-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,9.490441655741863e-05,2.9132825911823715e-05,9.490441655741863e-05,7.49028221296423e-05,1.613592254054052e-05,3.869291430201393e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.490282212964229e-05,1.6135922540540512e-05,3.869291430201392e-06,0.0,0.0 +104380,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,63307.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.0067489226742701415,0.0,0.0,0.0067489226742701415,0.0036607476986356005,0.0025809358650240857,0.0005072087370110176,0.0,0.0,0.0036607476986356005,0.0025809358650240857,0.0005072087370110176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008042555851646704,0.00020230755948676262,0.0008042555851646704,0.0004362439643486939,0.00030756495289404245,6.044304836098071e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004362439643486939,0.00030756495289404245,6.044304836098071e-05,0.0,0.0 +104381,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,145066.0,,1615.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.016230629762259866,0.0006003680779246507,0.0,0.016830997840184513,0.010828092029413445,0.0016394458097968227,0.004172430271777875,0.0,0.0001910297291963681,0.010828092029413445,0.0016394458097968227,0.0035720621938532243,0.0,0.0001910297291963681,0.0,0.0006003680779246507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.01134517208749e-05,0.0,0.0,0.0019341735237952242,0.0006515083133799653,0.001974286975516099,0.0012903632960199775,0.00019536966374399795,0.0004256759116498274,0.0,2.27646523814207e-05,0.0,4.01134517208749e-05,0.0,0.0,0.0,0.0,0.001270142226049165,0.0001923080580296021,0.0004894287801613697,0.0,2.2407911275961667e-05 +104382,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,146062.0,,,,9.325022323477118,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,699376.6742607838,0.0,0.0,0.037365640195944926,0.0,0.0,0.03736564019594492,0.019054740635067707,0.003954483999694788,0.013922184192658428,0.0,0.00043431975268204794,0.019054740635067707,0.003954483999694788,0.013922184192658428,0.0,0.00043431975268204794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004452794049362789,0.001407768712043301,0.004452794049362789,0.0022707181053782336,0.00047124852484267785,0.0016590808722161234,0.0,5.175707950196503e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.002270718105378234,0.0004712485248426779,0.0016590808722161236,0.0,5.175707950196504e-05 +104383,50.0,the Greater Atlanta and Macon Area,G1302970110504,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,NaturalGas,27402.0,,2374.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002294262897997367,0.0006988023353986923,0.0,0.002993034543789762,0.0011690284830920944,0.000776600487363369,0.001047436262940596,0.0,0.0,0.00047022614769340207,0.000776600487363369,0.001047436262940596,0.0,0.0,0.0006988023353986923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.668891460711143e-05,0.0,0.0,0.00027340162920135497,0.000128180176284867,0.0003200905438084664,5.603568579026928e-05,9.254555729818328e-05,0.0001248203861129024,0.0,0.0,4.668891460711144e-05,0.0,0.0,0.0,0.0,0.0,0.00012502193255903144,8.305365965048543e-05,0.00011201823370365808,0.0,0.0 +104384,35.0,Eastern Counties in South Carolina and Georgia,G1300330950700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,105355.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00910041636914145,0.0,0.0,0.00910041636914145,0.0051947055910403815,0.0035120689293878056,0.00039364184871326364,0.0,0.0,0.0051947055910403815,0.0035120689293878056,0.00039364184871326364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010844773553803616,0.00030667536252276903,0.0010844773553803616,0.0006190420693775937,0.00041852582013402433,4.6909465868743614e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006190420693775937,0.00041852582013402433,4.6909465868743614e-05,0.0,0.0 +104385,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,5058.0,,505.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008951386590805243,0.0004003849439719872,0.0,0.0012955236030525114,0.0005771299605528871,0.00026325661571221555,0.0003329786788744517,0.0,0.00012207564083921774,0.00029882065742011774,0.00026325661571221555,0.0003329786788744517,0.0,0.0,0.00027830930313276945,0.0,0.00012207564083921774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6753444059905545e-05,0.0,0.0,0.00010666781635264751,5.712866363735987e-05,0.00013342126041255303,3.560850230824314e-05,3.137056818354218e-05,3.967889020010708e-05,0.0,0.0,1.859643446841193e-05,0.0,8.157009591493613e-06,0.0,0.0,0.0,5.943651399124075e-05,2.7111840646907325e-05,3.429226215659721e-05,0.0,1.2572125917321772e-05 +104386,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,215899.0,,9011.0,,3.3063363735822096,Lodging,Zone-by-Zone,Before 1946,E: Lodging with Zone-by-Zone Systems,247975.22801866572,0.0,0.0,0.020749625275751724,0.002708451245021535,0.0,0.02345807652077326,0.007471235197601377,0.005047709250458233,0.00812460162253171,0.0,0.0028145617882041393,0.007471235197601377,0.005047709250458233,0.005416150377510176,0.0,0.0028145617882041393,0.0,0.002708451245021535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018096376293041984,0.0,0.0,0.0024726929156197145,0.0010657162721087227,0.0026536566785501335,0.0008903327216046939,0.0006015257980731891,0.0006454322181929267,0.0,0.0003354059122407066,0.0,0.00018096376293041984,0.0,0.0,0.0,0.0,0.0008451713064187832,0.0005710138830861073,0.0009190823184969233,0.0,0.0003183927156110121 +104387,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,50967.0,,15892.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009811578914819654,0.010931844862083498,0.0,0.020743423776903153,0.005765711909887004,0.0007707028085337563,0.009415684674813482,0.0003697881705564906,0.004421464493141405,0.0032325625336156213,0.0007707028085337563,0.004943299002250992,0.0003697881705564906,0.0004951546798917788,0.0025331493762713823,0.004472385672562489,0.003926309813249627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007304005973948963,0.0,0.0,0.0011692282299138755,0.001006137343171054,0.001899628827308772,0.00038521866888890823,9.184326890043059e-05,0.0005890840600188143,4.406699185284014e-05,5.9006693512802236e-05,0.0001692499153675782,0.0002988181051077805,0.0002623325769195376,0.0,0.0,0.0,0.0005280089088366507,7.057895977657786e-05,0.0008622639266060161,3.3864239401455006e-05,0.0004049062247595616 +104388,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010401,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,37446.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,32736.412774265485,0.0,0.0,0.0019275385114196208,0.0,0.0,0.0019275385114196208,0.0011096901301968448,0.000635970333775874,0.0001464350549682161,0.0,3.5460722840105605e-05,0.0011096901301968448,0.000635970333775874,0.0001464350549682161,0.0,3.5460722840105605e-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.0002297014389652248,5.3466188092980386e-05,0.0002297014389652248,0.00013223985834866277,7.578748748315441e-05,1.7450412866914946e-05,0.0,4.225793163074209e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013223985834866277,7.578748748315441e-05,1.7450412866914946e-05,0.0,4.225793163074209e-06 +104389,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock DOE Ref 1980-2004,gen3_t5_cfl,200001_500000,NaturalGas,346477.0,,6741.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.03087073635407183,0.001984113736752782,0.0,0.0328548500908246,0.014298011367643046,0.0071483458572861236,0.011408523555501735,0.0,0.0,0.012313897630890264,0.0071483458572861236,0.011408523555501735,0.0,0.0,0.001984113736752782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013256618685208383,0.0,0.0,0.003678807545051949,0.0012400509330845922,0.0038113737319040325,0.0014674240029114603,0.0008518549208806426,0.0013595322784824629,0.0,0.0,0.00013256618685208383,0.0,0.0,0.0,0.0,0.0,0.0016586611959711493,0.0008292540538675013,0.001323462042256921,0.0,0.0 +104390,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,27051.0,,6284.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,121422.18277123098,0.0,0.0,0.002336829381932281,0.0018497546403814396,0.0,0.004186553332707423,0.0021245493751710703,0.0008526493317690764,0.001209385315373574,0.0,0.0,0.0002747947347896307,0.0008526493317690764,0.001209385315373574,0.0,0.0,0.0018497546403814396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012358879965733825,0.0,0.0,0.0002784753695455068,0.00021994841474736292,0.000402064169202845,3.274674904011436e-05,0.00010160854685967135,0.0001441200736457211,0.0,0.0,0.00012358879965733825,0.0,0.0,0.0,0.0,0.0,0.00020403542283460403,8.188591377083803e-05,0.00011614577993619894,0.0,0.0 +104391,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,51120.0,,3483.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004507867386954499,0.0010146604628175372,0.0,0.005522527849772037,0.003548335007116481,0.0012290069540497521,0.0007451858886058032,0.0,0.0,0.0025336745442989437,0.0012290069540497521,0.0007451858886058032,0.0,0.0,0.0010146604628175372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.779457648617044e-05,0.0,0.0,0.0005371934603743062,0.00019026289753257524,0.0006049880368604767,0.00030193288290891355,0.0001464582787818235,8.880229868356911e-05,0.0,0.0,6.779457648617044e-05,0.0,0.0,0.0,0.0,0.0,0.0003887169586962461,0.00013463662377893228,8.163445438529828e-05,0.0,0.0 +104392,50.0,the Greater Atlanta and Macon Area,G1302230120302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,12306.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002954958330557976,0.0,0.0,0.0029549583305579757,0.0013625990398550896,0.0005454531513107325,0.0009750336923126953,0.0,7.187244707945816e-05,0.0013625990398550896,0.0005454531513107325,0.0009750336923126953,0.0,7.187244707945816e-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.0003521400271275671,0.00010420452925157192,0.0003521400271275671,0.0001623798406551351,6.500121694207078e-05,0.00011619398734345299,0.0,8.56498218690819e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001623798406551351,6.500121694207079e-05,0.000116193987343453,0.0,8.564982186908192e-06 +104393,50.0,the Greater Atlanta and Macon Area,G1301210010800,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,59459.0,,17086.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005056681346637639,0.0029056516295182526,0.0,0.007962332976155891,0.003590274075030752,0.001033219081392157,0.0014135176034908697,0.0,0.0019253399466035337,0.0027875319617378614,0.001033219081392157,0.0009817478421897438,0.0,0.000254182461317877,0.0008027421132928906,0.00043176976130112585,0.0016711574852856566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001941392165868096,0.0,0.0,0.0006025941475552453,0.00033370930914469374,0.0007967333641420548,0.00033218435790567484,0.000123126558489456,0.00011699283848920048,0.0,3.0290392670913986e-05,5.363469020605202e-05,2.8848414707847133e-05,0.00011165729631543296,0.0,0.0,0.0,0.00035925289115103833,0.00010338679845197418,0.00014144053493816687,0.0,0.00019265491375055556 +104394,85.0,Rural Climate Zone 3A,G1300550010300,ComStock 90.1-2007,gen4_led,25001_50000,Propane,51465.0,,,7194.0,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0042192574450969815,0.0,0.0006780906074478095,0.0048973784261442275,0.003135891900351249,0.0013546625349237314,0.00040682399086924793,0.0,0.0,0.0024578012929034397,0.0013546625349237314,0.00040682399086924793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006780906074478095,0.0,0.0,0.0,0.0,5.4688150564073655e-05,0.0005028018609120866,0.00017004752518404065,0.0005574900114761603,0.00029289207399753174,0.0001614328711463305,4.848053533932625e-05,0.0,0.0,0.0,0.0,0.0,5.468815056407365e-05,0.0,0.0,0.0003569722940302205,0.00015420716277699274,4.631055466894711e-05,0.0,0.0 +104395,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,65362.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005427426184142439,0.0,0.0,0.005427426184142439,0.0015810978268513498,0.0014016250092223838,0.0024446726584624085,0.0,0.0,0.0015810978268513498,0.0014016250092223838,0.0024446726584624085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006467761229393209,0.0001916693500916672,0.0006467761229393209,0.00018841644045321647,0.00016702900390028628,0.0002913270213634255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018841644045321647,0.00016702900390028628,0.0002913270213634255,0.0,0.0 +104396,85.0,Rural Climate Zone 3A,G1302770960700,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,128628.0,,8360.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006583230004181347,0.0014216735697440937,0.0,0.00800490357392544,0.005037745320641022,0.0012293700697822013,0.0011082007798375604,0.0,0.0006295696733032349,0.004482324018796449,0.0012293700697822013,0.000746838283735464,0.0,0.00012467990150581132,0.000555421301844574,0.00036136249610209614,0.0005048897717974235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.498816625255256e-05,0.0,0.0,0.000784510685203553,0.00032007190609852467,0.0008794988514561056,0.0005341498147652261,0.00014650163448656667,8.899926226752182e-05,0.0,1.4857860791634146e-05,3.7110101842378825e-05,2.4144192863740116e-05,3.373387154643361e-05,0.0,0.0,0.0,0.0005534971386619002,0.00013507090427795695,0.00012175803294179362,0.0,6.917082753943341e-05 +104397,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,74188.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009400349167411552,0.0,0.0,0.009400349167411552,0.0026315416712091207,0.0026328920138862203,0.0041359154823162134,0.0,0.0,0.0026315416712091207,0.0026328920138862203,0.0041359154823162134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011202201369884626,0.0003511227748313316,0.0011202201369884626,0.00031359536958821865,0.00031375628712774643,0.0004928684802724978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031359536958821865,0.00031375628712774643,0.0004928684802724978,0.0,0.0 +104398,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,5829.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,9713.774621698478,0.0,0.0,0.00040329211635811225,0.0,0.0,0.00040329211635811235,0.00018355453526656038,0.00012625704030874927,9.348054078280269e-05,0.0,0.0,0.00018355453526656038,0.00012625704030874927,9.348054078280269e-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,4.805780668188165e-05,1.7959946777327966e-05,4.805780668188165e-05,2.1873049369479813e-05,1.5045264187600726e-05,1.1139493124801121e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1873049369479806e-05,1.5045264187600721e-05,1.1139493124801118e-05,0.0,0.0 +104399,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,10517.0,,681.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0022466549510545466,0.0005399944844439381,0.0,0.0027867321425722245,0.0015882239370159203,0.0006305587301884797,0.0004913627250852253,0.0,7.642133613512006e-05,0.0010482294525719822,0.0006305587301884797,0.0004913627250852253,0.0,7.642133613512006e-05,0.0005399944844439381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.608116970597078e-05,0.0,0.0,0.00026773263284706703,0.00010075784129619586,0.0003038138025530378,0.00012491692639904754,7.514333650515532e-05,5.855542525932945e-05,0.0,9.107088527120084e-06,3.608116970597078e-05,0.0,0.0,0.0,0.0,0.0,0.00017315060397774036,6.87444776715249e-05,5.356911619183229e-05,0.0,8.331571008458685e-06 +104400,50.0,the Greater Atlanta and Macon Area,G1300630040417,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,117190.0,,5081.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010321804596500079,0.0014956272733122474,0.0,0.011817431869812328,0.0050485629943973,0.002632984082705113,0.0041359154823162134,0.0,0.0,0.0035529357210850516,0.002632984082705113,0.0041359154823162134,0.0,0.0,0.0014956272733122474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.992828183672522e-05,0.0,0.0,0.0012300311629141834,0.00046227280134128804,0.0013299594447509083,0.0004233970538686079,0.0003137680473318074,0.0004928697189397668,0.0,0.0,9.992828183672522e-05,0.0,0.0,0.0,0.0,0.0,0.0005681762425870662,0.00029632174631932806,0.0004654649097194508,0.0,0.0 +104401,50.0,the Greater Atlanta and Macon Area,G1300670030223,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,3509.0,,970.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008424542531085855,0.0007695893211442555,0.0,0.0016120435742528409,0.0011462373349530614,0.0002854221114743499,0.0001483764902883175,0.0,3.200763753711197e-05,0.00040865565134591797,0.0002854221114743499,0.0001483764902883175,0.0,0.0,0.0007375816836071435,0.0,3.200763753711197e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.142184515673657e-05,0.0,0.0,0.00010039416266886396,7.342088074760736e-05,0.0001518160078256005,4.869895520782022e-05,3.4013376729849744e-05,1.768183073119398e-05,0.0,0.0,4.928318270905714e-05,0.0,2.1386624476794252e-06,0.0,0.0,0.0,0.00010794818390308333,2.6879946796272505e-05,1.3973522037818853e-05,0.0,3.0143550884258065e-06 +104402,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,81884.0,,8213.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.01047746227964203,0.0024174509776763455,0.0,0.012894943946924668,0.005065503657073631,0.0030476927326059697,0.004781747557245071,0.0,0.0,0.0026480526793972847,0.0030476927326059697,0.004781747557245071,0.0,0.0,0.0024174509776763455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016152067384551545,0.0,0.0,0.0012485802070327737,0.00047414001583295166,0.001410100880878289,0.0003155636426484482,0.0003631880241118321,0.0005698321974973022,0.0,0.0,0.00016152067384551545,0.0,0.0,0.0,0.0,0.0,0.0005539280510509884,0.0003332743612211643,0.0005228984686061367,0.0,0.0 +104403,46.0,the Tallahassee-Valdosta Area,G1301850011200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5732.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010394625027556157,0.0,0.0,0.0010394625027556157,0.0005775434959215837,0.00024167006946625627,0.00017906081464560055,0.0,4.110541564843579e-05,0.0005775434959215837,0.00024167006946625627,0.00017906081464560055,0.0,4.110541564843579e-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.00012386661756048697,3.2786472320049216e-05,0.00012386661756048697,6.882245308918527e-05,2.8798397239954084e-05,2.133762150051355e-05,0.0,4.89829001651512e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.882245308918527e-05,2.8798397239954084e-05,2.133762150051355e-05,0.0,4.89829001651512e-06 +104404,50.0,the Greater Atlanta and Macon Area,G1300770170603,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,9217.0,,1255.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,24284.436554246196,0.0,0.0,0.0007252260864210145,0.00036931872218655523,0.0,0.0010945448086075698,0.0006402465665826755,0.00024214099368887493,0.00021218793794231704,0.0,0.0,0.00027092784439612015,0.00024214099368887493,0.00021218793794231704,0.0,0.0,0.00036931872218655523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4675495408064107e-05,0.0,0.0,8.642562118765274e-05,5.487301912302705e-05,0.00011110111659571684,3.22866312828318e-05,2.8856085276568067e-05,2.5286561926767004e-05,0.0,0.0,2.4675495408064107e-05,0.0,0.0,0.0,0.0,0.0,6.498784506995219e-05,2.45783768383627e-05,2.1538009817546227e-05,0.0,0.0 +104405,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,94073.0,,1612.0,,9.729435225087556,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,729707.6418815667,0.03904174165482052,0.0,0.03052344958165686,0.001425678727873276,0.0,0.07099086996435067,0.05722523177388782,0.0071383531026658845,0.003510341944063657,0.0006476417662260038,0.0024692091602545175,0.0181834901190673,0.0071383531026658845,0.0020846632161903808,0.0006476417662260038,0.0024692091602545175,0.0,0.001425678727873276,0.0,0.0,0.0,0.0,0.03904174165482052,0.0,0.0,0.0,9.525789747004622e-05,0.0,0.0,0.0036374224005770823,0.00123831928604361,0.003732680298047129,0.0021668925100626585,0.000850664188836299,0.000248425416660208,7.717825803789438e-05,0.00029425103762247755,0.0,9.525789747004622e-05,0.0,0.0,0.0,0.0,0.0030088868512364543,0.0003753326308045654,0.00018457280803284656,3.405282485195926e-05,0.00012983033436367097 +104406,50.0,the Greater Atlanta and Macon Area,G1301210011900,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,12865.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030890264970893926,0.0,0.0,0.0030890264970893926,0.00182592406694269,0.0007954766352246588,0.0003873172263211767,0.0,8.030856860086751e-05,0.00182592406694269,0.0007954766352246588,0.0003873172263211767,0.0,8.030856860086751e-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.00036811782355182694,0.00010915765414565248,0.00036811782355182694,0.00021759450562407786,9.47965735875518e-05,4.61564102838953e-05,0.0,9.570334056302016e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00021759450562407786,9.47965735875518e-05,4.61564102838953e-05,0.0,9.570334056302016e-06 +104407,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,79575.0,,3103.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00657749407904347,0.0009039183192674943,0.0,0.007481412398310965,0.004175003110716176,0.0027507850330799936,0.0005555938809153563,0.0,0.0,0.0032710847914486823,0.0027507850330799936,0.0005555938809153563,0.0,0.0,0.0009039183192674943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.039403320734427e-05,0.0,0.0,0.0007838268978317739,0.00024370932906656213,0.0008442209310391181,0.00038980867391351257,0.0003278055857094319,6.620901864734642e-05,0.0,0.0,6.039403320734427e-05,0.0,0.0,0.0,0.0,0.0,0.00047111759458892525,0.00031040533231927554,6.269457669943344e-05,0.0,0.0 +104408,50.0,the Greater Atlanta and Macon Area,G1300670031118,ComStock DOE Ref 1980-2004,gen5_led,_1000,NaturalGas,2543.0,,417.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005447087876470787,0.0003307455878834904,0.0,0.000875454375530569,0.0006215436591508952,0.00011504553957137661,0.0001271207723373155,0.0,1.182711154472096e-05,0.00030262518281212584,0.00011504553957137661,0.0001271207723373155,0.0,0.0,0.0003189184763387694,0.0,1.182711154472096e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2096789909016316e-05,0.0,0.0,6.491561728849969e-05,4.077552538293906e-05,8.701240719751601e-05,3.606532700556033e-05,1.3710541094488772e-05,1.5149605795995145e-05,0.0,0.0,2.1306632130324307e-05,0.0,7.901577786920061e-07,0.0,0.0,0.0,6.177593198765544e-05,1.1434507171633894e-05,1.2634678305392736e-05,0.0,1.1755100830651665e-06 +104409,50.0,the Greater Atlanta and Macon Area,G1302970110800,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,6664.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0012803882085582181,0.0,0.0,0.0012803882085582184,0.0006420550134382435,0.00024960994854522975,0.0003411666791746431,0.0,4.763927447384108e-05,0.0006420550134382435,0.00024960994854522975,0.0003411666791746431,0.0,4.763927447384108e-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.00015258455174473265,5.1197127037804556e-05,0.00015258455174473265,7.651404141814866e-05,2.9746151874271886e-05,4.065701672676327e-05,0.0,5.677197972028035e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.651404141814865e-05,2.9746151874271883e-05,4.0657016726763265e-05,0.0,5.6771979720280346e-06 +104410,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,12857.0,,2044.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010861972356945946,0.0006016083522538677,0.0,0.0016878055879484624,0.0008159138730307262,0.00040194177368101325,0.00046998063084302045,0.0,0.0,0.00021430552077685854,0.00040194177368101325,0.00046998063084302045,0.0,0.0,0.0006016083522538677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.01959625931299e-05,0.0,0.0,0.00012944078053093818,8.019423860887964e-05,0.00016963674312406806,2.553852373202445e-05,4.7898903811875135e-05,5.600701022944614e-05,0.0,0.0,4.01959625931299e-05,0.0,0.0,0.0,0.0,0.0,8.200528134221531e-05,4.03980730361466e-05,4.723647327445593e-05,0.0,0.0 +104411,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,12299.0,,385.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,5611.956475588368,0.0,0.0,0.0008150115233955673,6.546049436283494e-05,0.0,0.0008804542873969822,0.0003699262606679817,0.00018515816430961143,0.00016897034433310319,0.0,0.00015639951808628578,0.0003614334175477764,0.00018515816430961143,0.00011202042345189363,0.0,0.00015639951808628578,8.492843120205292e-06,5.694992088120959e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.373198322869143e-06,0.0,0.0,9.712250027653546e-05,2.7924202975942236e-05,0.0001014956985994046,4.307094585544358e-05,2.206474797980855e-05,1.3349140834667284e-05,0.0,1.8637665606616035e-05,5.673786556485156e-07,3.804635160632634e-06,0.0,0.0,0.0,0.0,4.264380876350191e-05,2.1344387218043058e-05,1.947831180579817e-05,0.0,1.802919081206146e-05 +104412,50.0,the Greater Atlanta and Macon Area,G1301350050214,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,58479.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005156738591743191,0.0,0.0,0.005156738591743191,0.003148739932913418,0.0015076239816922497,0.0005003746771375235,0.0,0.0,0.003148739932913418,0.0015076239816922497,0.0005003746771375235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006145178085165986,0.00014706086733512025,0.0006145178085165986,0.0003752287863225892,0.0001796604130331546,5.9628609160854794e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003752287863225892,0.0001796604130331546,5.9628609160854794e-05,0.0,0.0 +104413,50.0,the Greater Atlanta and Macon Area,G1301210011305,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,34865.0,,2280.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003074476482288115,0.0006641491253058813,0.0,0.003738595233994559,0.0021919715506242355,0.0012169182614735269,0.0003297357954962338,0.0,0.0,0.0015278224253183544,0.0012169182614735269,0.0003297357954962338,0.0,0.0,0.0006641491253058813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.437398112757541e-05,0.0,0.0,0.00036637824396214974,0.00011889147349577549,0.00041075222508972514,0.00018206706100986044,0.00014501733165066418,3.9293851301625125e-05,0.0,0.0,4.437398112757541e-05,0.0,0.0,0.0,0.0,0.0,0.0002408276733371533,0.0001337004549482873,3.6227433892889226e-05,0.0,0.0 +104414,50.0,the Greater Atlanta and Macon Area,G1301210007200,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,37282.0,,5544.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.005146831113762543,0.0016317970564551547,0.0,0.0067785974806113996,0.002487852934523276,0.0017653582230627571,0.0025254170126316642,0.0,0.0,0.0008560558780681216,0.0017653582230627571,0.0025254170126316642,0.0,0.0,0.0016317970564551547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010902659160562664,0.0,0.0,0.0006133364471631554,0.000283385698806015,0.000722363038768782,0.00010201428009235841,0.00021037382353741776,0.0003009483435333792,0.0,0.0,0.00010902659160562664,0.0,0.0,0.0,0.0,0.0,0.0002651187079528392,0.00018812586736040424,0.0002691217339015751,0.0,0.0 +104415,50.0,the Greater Atlanta and Macon Area,G1300590130700,ComStock 90.1-2004,gen5_led,25001_50000,Electricity,24032.0,,2196.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002073635318323182,0.0006464458670548115,0.0,0.002720081185377993,0.0010310787027839204,0.0006415662196534767,0.001047436262940596,0.0,0.0,0.000384632835729109,0.0006415662196534767,0.001047436262940596,0.0,0.0,0.0006464458670548115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3191100492422754e-05,0.0,0.0,0.00024711146191581316,0.00011753186203588026,0.00029030256240823585,4.5836016341920526e-05,7.645431434036931e-05,0.00012482113123352332,0.0,0.0,4.3191100492422754e-05,0.0,0.0,0.0,0.0,0.0,0.00011004259397542085,6.847160243641316e-05,0.00011178836599640187,0.0,0.0 +104416,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7566.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005857244915576061,0.0,0.0,0.0005857244915576061,0.0003376936785489248,0.00021370864564402182,3.435254096409731e-05,0.0,0.0,0.0003376936785489248,0.00021370864564402182,3.435254096409731e-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,6.9799696324905e-05,2.117548289161149e-05,6.9799696324905e-05,4.024232647481301e-05,2.5467261115019274e-05,4.093728300325013e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.024232647481301e-05,2.5467261115019274e-05,4.093728300325013e-06,0.0,0.0 +104417,50.0,the Greater Atlanta and Macon Area,G1301350050311,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,14627.0,,1907.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001277792447811153,0.0005612208303660907,0.0,0.0018390132781772434,0.0007797308272057344,0.0005077288465891948,0.0005515842939886121,0.0,0.0,0.00021850999683964382,0.0005077288465891948,0.0005515842939886121,0.0,0.0,0.0005612208303660907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.749678483847382e-05,0.0,0.0,0.00015227348644548957,8.541174056534476e-05,0.0001897702712839634,2.6039658552499902e-05,6.050563358041549e-05,6.573185156798887e-05,0.0,0.0,3.749678483847382e-05,0.0,0.0,0.0,0.0,0.0,8.04614802748804e-05,5.2393227443917885e-05,5.691873046721085e-05,0.0,0.0 +104418,35.0,Eastern Counties in South Carolina and Georgia,G1300510011003,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,15294.0,,758.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.003445073662634625,0.0005878578929081966,0.0,0.0040328506947597525,0.0011010812830441424,0.00024945551576640814,0.0020737556425754625,0.00043462670899333666,0.00017401240516347173,0.0011010812830441424,0.00024945551576640814,0.001485897749667266,0.00043462670899333666,0.00017401240516347173,0.0,0.0005878578929081966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.927481174894461e-05,0.0,0.0,0.00041053812002483963,0.00015460805214872087,0.0004498129317737842,0.00013121224223396882,2.972679498360827e-05,0.0001770695574128964,5.179303826155411e-05,2.073648713281199e-05,0.0,3.927481174894461e-05,0.0,0.0,0.0,0.0,0.00012281153891734411,2.7823573295146264e-05,0.000231300927302211,4.847705233757249e-05,1.9408858907991816e-05 +104419,81.0,the Columbus-Albany Area,G1300950000900,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,NaturalGas,5904.0,,130.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016387579590706374,0.00010305301387917704,0.0,0.0017418109729498144,0.0010196955121319212,0.00024861746366035807,0.00037036227620461864,0.0,0.00010305301387917704,0.0010196955121319212,0.00024861746366035807,0.00037036227620461864,0.0,0.0,0.0,0.0,0.00010305301387917704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.885040855464959e-06,0.0,0.0,0.00019528676306432586,6.0790945301589934e-05,0.00020217180391979083,0.00012151461097305308,2.9627132823829785e-05,4.41351632684996e-05,0.0,0.0,0.0,0.0,6.885040855464959e-06,0.0,0.0,0.0,0.00011835594351980538,2.885700107231202e-05,4.2987907785034345e-05,0.0,1.1961351741883161e-05 +104420,50.0,the Greater Atlanta and Macon Area,G1301350050423,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,6274.0,,331.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012014856602109189,0.00026259495912230106,0.0,0.0014640806193332203,0.0007483336031932535,0.0002619333025323866,0.00041915944971081,0.0,3.4736970970509115e-05,0.0005204756150414616,0.0002619333025323866,0.00041915944971081,0.0,0.0,0.00022785798815179193,0.0,3.4736970970509115e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7547180466436333e-05,0.0,0.0,0.0001431788996954147,5.86460547851726e-05,0.000160726080161851,6.202414922442657e-05,3.121412372378181e-05,4.995048280142918e-05,0.0,0.0,1.522597864095499e-05,0.0,2.3212018254813414e-06,0.0,0.0,0.0,8.215171016294358e-05,2.875491446574297e-05,4.6015126780039584e-05,0.0,3.813408296688363e-06 +104421,50.0,the Greater Atlanta and Macon Area,G1300210011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,21560.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.0050612381338252885,0.0014962479299000374,0.0,0.006557566924508394,0.0025532600861718326,0.0006469671253312904,0.002337604377728069,0.00042710665616796356,0.0005925478183261714,0.0025532600861718326,0.0006469671253312904,0.0008413564478280312,0.00042710665616796356,0.0005925478183261714,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99716943603331e-05,0.0,0.0,0.0006031409025650029,0.0002703975712336053,0.000703112596925336,0.00030426855092332146,7.709819723642939e-05,0.00010026330986689763,5.0897722510038754e-05,7.061312202831579e-05,0.0,9.99716943603331e-05,0.0,0.0,0.0,0.0,0.00027376454567387714,6.93688285386588e-05,0.0002506416028276575,4.579504466206672e-05,6.353390520326107e-05 +104422,50.0,the Greater Atlanta and Macon Area,G1300630040514,ComStock 90.1-2007,gen1_t12_incandescent,_1000,NaturalGas,3324.0,,141.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0004663024817422153,0.00011190267076928293,0.0,0.0005782051525114982,0.00027739952532163705,0.0001871661078720527,9.684998334872899e-05,0.0,1.6789535969079405e-05,0.00018228639052143356,0.0001871661078720527,9.684998334872899e-05,0.0,0.0,9.511313480020352e-05,0.0,1.6789535969079405e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.475669618345971e-06,0.0,0.0,5.557311400491581e-05,2.467067488763748e-05,6.304878362326178e-05,2.1724573122886562e-05,2.2306129299951134e-05,1.1542411582078114e-05,0.0,0.0,6.354042912858733e-06,0.0,1.1216267054872375e-06,0.0,0.0,0.0,3.0248264950996993e-05,2.0409011205756176e-05,1.0560738896129245e-05,0.0,1.8307685703793651e-06 +104423,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,4565.0,,79.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007987022111004918,6.23611335994378e-05,0.0,0.0008611460517736688,0.0005433027673935105,0.00016417354137252522,0.0001272034794110548,0.0,2.6466263596578376e-05,0.00048094163379407265,0.00016417354137252522,0.0001272034794110548,0.0,2.6466263596578376e-05,6.23611335994378e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.167621904971808e-06,0.0,0.0,9.518401666225808e-05,3.674986375152891e-05,9.935163856722989e-05,5.731542475831322e-05,1.9565110601075102e-05,1.5159264536248618e-05,0.0,3.154073245513367e-06,4.167621904971808e-06,0.0,0.0,0.0,0.0,0.0,6.268160908068893e-05,1.8940933783706427e-05,1.4675645420322662e-05,0.0,3.053450282511868e-06 +104424,85.0,Rural Climate Zone 3A,G1303170010302,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,Propane,42207.0,,,10305.0,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003590250574340579,0.0,0.0009713173364198657,0.004561598284359882,0.0027767544605992716,0.0015551890384117688,0.0002296244117494038,0.0,0.0,0.0018054371241794061,0.0015551890384117688,0.0002296244117494038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009713173364198657,0.0,0.0,0.0,0.0,7.833584427901424e-05,0.00042784491562797966,0.00018925240228852866,0.000506180759906994,0.00021515130436488699,0.00018532960559362971,2.7364005669462923e-05,0.0,0.0,0.0,0.0,0.0,7.833584427901424e-05,0.0,0.0,0.00030812438871708105,0.0001725725765816231,2.548042418181069e-05,0.0,0.0 +104425,50.0,the Greater Atlanta and Macon Area,G1300210013603,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,26887.0,,3752.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006277626893525152,0.002910017861070176,0.0,0.009187644754595329,0.004222145787923176,0.0006590153820085012,0.003289578376793846,0.0004269449346018265,0.000590041134051047,0.0027037420034623618,0.0006590153820085012,0.0024880054342355305,0.0004269449346018265,0.0,0.0015184037844608138,0.0008015729425583154,0.000590041134051047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019442826311736634,0.0,0.0,0.000748095814483036,0.00040991809367565507,0.0009425240776004023,0.00032220106587066747,7.853392011382422e-05,0.00029649204760518496,5.087841695717692e-05,0.0,0.00010144975894236705,5.355583450823754e-05,3.9422669666761764e-05,0.0,0.0,0.0,0.0004331332099302519,6.760577728490956e-05,0.00033746481368155713,4.379858945574508e-05,6.052998243533559e-05 +104426,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,10164.0,,,,8.72605822017302,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002440437624825744,0.0,0.0,0.0024404376248257434,0.0007660329169734654,0.0007700855635866914,0.0008283940505729033,0.0,7.592509369268422e-05,0.0007660329169734654,0.0007700855635866914,0.0008283940505729033,0.0,7.592509369268422e-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.00029082204352016516,8.917548399224133e-05,0.00029082204352016516,9.128660206336701e-05,9.176954780954547e-05,9.871805293313366e-05,0.0,9.047840714119078e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.128660206336702e-05,9.176954780954548e-05,9.871805293313368e-05,0.0,9.04784071411908e-06 +104427,50.0,the Greater Atlanta and Macon Area,G1301210007704,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,188372.0,,21175.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.009696504165928417,0.003601036404412724,0.0,0.013297540570341142,0.0058638028592012835,0.0028127445356771765,0.002518615570079921,0.0,0.0021023776053827607,0.00507714218371638,0.0028127445356771765,0.0014620810634203942,0.0,0.00034453638311446604,0.0007866606754849027,0.0010565345066595266,0.001757841222268295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024059993299861565,0.0,0.0,0.0011555133771261367,0.0005328150059817716,0.0013961133101247525,0.0006050330727923696,0.0003351892477738368,0.00017423333175697263,0.0,4.1057724802957626e-05,5.2560008996960015e-05,7.059138063739297e-05,0.00011744854336426269,0.0,0.0,0.0,0.0006156426578564272,0.00029531100608169307,0.00026443030588067687,0.0,0.0002207293403059553 +104428,50.0,the Greater Atlanta and Macon Area,G1300670030506,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,3700.0,,625.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.0003105788157327522,0.00018395350014843048,0.0,0.0004945323158811828,0.00028016541589172874,0.00011554636771085098,9.885122188490066e-05,0.0,0.0,9.621191574329824e-05,0.00011554636771085098,9.885122188490066e-05,0.0,0.0,0.00018395350014843048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2290646591561156e-05,0.0,0.0,3.701067621801788e-05,2.475702642648938e-05,4.9301322809579036e-05,1.1465263828407715e-05,1.3769288138422659e-05,1.1779781432631976e-05,0.0,0.0,1.2290646591561156e-05,0.0,0.0,0.0,0.0,0.0,2.7930481316162777e-05,1.1519143625298811e-05,9.854757401616857e-06,0.0,0.0 +104429,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,89486.0,,11966.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.018632776749884734,0.008231659673316757,0.0,0.02686450814317251,0.010275463687348628,0.0011522530543368072,0.011639362376152502,0.00036878409096227204,0.003428573214401287,0.010275463687348628,0.0011522530543368072,0.003407702702835744,0.00036878409096227204,0.003428573214401287,0.0,0.008231659673316757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005499922191959588,0.0,0.0,0.0022204355787727517,0.0012556284812012322,0.0027704277979687104,0.0012245091252927444,0.00013731199122615187,0.0004060900006921064,4.394735832720484e-05,0.0004085771032345445,0.0,0.0005499922191959588,0.0,0.0,0.0,0.0,0.0010596669064154658,0.00011882718548265448,0.0012003202480265474,3.8031208001481974e-05,0.00035357485385275104 +104430,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,103772.0,,1700.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.01167389262351047,0.0006317543011800377,0.0,0.012305646924690508,0.006580412318670187,0.0011735347623612993,0.004347534398803916,0.0,0.00020412669643133215,0.006580412318670187,0.0011735347623612993,0.003715780097623879,0.0,0.00020412669643133215,0.0,0.0006317543011800377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.221054253405894e-05,0.0,0.0,0.0013911540775501333,0.00047664005496168154,0.0014333646200841922,0.0007841743730486994,0.00013984775451145247,0.0004428019685292127,0.0,2.4325363889795014e-05,0.0,4.221054253405894e-05,0.0,0.0,0.0,0.0,0.0007664879596230779,0.00013669360246575595,0.0005064018194233425,0.0,2.377672514658926e-05 +104431,81.0,the Columbus-Albany Area,G1301450120300,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,22956.0,,880.0,,3.3063363735822096,Lodging,Zone-by-Zone,1946 to 1959,E: Lodging with Zone-by-Zone Systems,24797.522801866573,0.0,0.0,0.002088585165827233,0.00026439889333479925,0.0,0.0023529840591620323,0.0006949519803949873,0.00043901435305525695,0.0008694107500044251,0.0,0.0003495756376851589,0.0006949519803949873,0.00043901435305525695,0.000605011856669626,0.0,0.0003495756376851589,0.0,0.00026439889333479925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.766551019083394e-05,0.0,0.0,0.0002488923487507636,0.00010941605644383163,0.00026655785894159754,8.281598160302689e-05,5.231642705072167e-05,7.20980041859685e-05,0.0,4.1658201424141635e-05,0.0,1.766551019083394e-05,0.0,0.0,0.0,0.0,7.87276527607595e-05,4.973375214310426e-05,9.849121890971099e-05,0.0,3.9601684999380964e-05 +104432,50.0,the Greater Atlanta and Macon Area,G1301210004200,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,110492.0,,1000.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.009015463253422768,0.00017005189637972641,0.0,0.009185515149802495,0.0056809319115148586,0.0025380303158348784,0.0008725997372878988,0.0,9.397091552627985e-05,0.005510880015135132,0.0025380303158348784,0.0008725997372878988,0.0,9.397091552627985e-05,0.00017005189637972641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1361866499071068e-05,0.0,0.0,0.0010743560024625597,0.000284856782204893,0.0010857178689616307,0.0006567213305277005,0.0003024523563127966,0.00010398608913930034,0.0,1.1198339376984493e-05,1.1361866499071068e-05,0.0,0.0,0.0,0.0,0.0,0.000671479953829117,0.00029999241424445407,0.00010314033690805757,0.0,1.1107259689377325e-05 +104433,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,15866.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0038096532305799784,0.0,0.0,0.0038096532305799792,0.0019113604741153947,0.0008604016881100152,0.0009593193483022268,0.0,7.857172005234206e-05,0.0019113604741153947,0.0008604016881100152,0.0009593193483022268,0.0,7.857172005234206e-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.00045399282759088863,0.0001361659138664386,0.00045399282759088863,0.0002277750476667413,0.00010253326788736952,0.00011432119333130818,0.0,9.363318705469676e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00022777504766674126,0.0001025332678873695,0.00011432119333130815,0.0,9.363318705469674e-06 +104434,50.0,the Greater Atlanta and Macon Area,G1300150960200,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,356039.0,,13988.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,140298.9118897092,0.0,0.0,0.017656833611243844,0.0023787762095599644,0.0,0.020035609820803806,0.012769530407251968,0.002118476773552169,0.0020816862736055593,0.0,0.003065951827116951,0.010390754197692004,0.002118476773552169,0.0020816862736055593,0.0,0.003065951827116951,0.0023787762095599644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015893601221488507,0.0,0.0,0.0021041305770329874,0.0007976924548667728,0.002263066589247873,0.0012382460019261306,0.0002524547636404494,0.000248070511198228,0.0,0.0003653635260536658,0.00015893601221488507,0.0,0.0,0.0,0.0,0.0,0.0014423467957052354,0.00023928665257522995,0.00023513108396636004,0.0,0.0003463060623683816 +104435,50.0,the Greater Atlanta and Macon Area,G1302470060307,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,136308.0,,24822.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006882731269288878,0.0042212621772475915,0.0,0.01110401117689789,0.005903713902757822,0.0014427017783882766,0.0030159522079124014,0.0,0.0007416255574779687,0.004290623351122838,0.0014427017783882766,0.00040778058229979443,0.0,0.0007416255574779687,0.001613090551634984,0.002608171625612607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002820403439979247,0.0,0.0,0.0008202024156989788,0.000519501208064838,0.0011022427596969037,0.0005113056866171967,0.00017192411521967446,4.859446135429085e-05,0.0,8.837815250781677e-05,0.00010777738860550483,0.00017426295539241986,0.0,0.0,0.0,0.0,0.0005860338035479808,0.00014321019353247613,0.0002993793352513576,0.0,7.361766735582854e-05 +104436,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,70610.0,,2412.0,,4.088175128053588,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,71543.06474093779,0.0,0.0,0.007943271879581885,0.0008964835323909073,0.0,0.008839794160396562,0.0060755203569199485,0.000782059436991947,0.0018381477269000638,0.0,0.00014402789116083173,0.005588568915376184,0.000782059436991947,0.0015726435272137523,0.0,0.0,0.00048695144154376434,0.0002655041996863112,0.00014402789116083173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.989886064755161e-05,0.0,0.0,0.0009465862490919627,0.00033509671838341206,0.0010064851097395142,0.0006659802871655373,9.319669781567972e-05,0.00018740926411074557,0.0,0.0,3.253583081594835e-05,1.7739755928294587e-05,9.623273903308669e-06,0.0,0.0,0.0,0.0006917492265323185,8.904406188439471e-05,0.00020928861951503331,0.0,1.639878997296215e-05 +104437,85.0,Rural Climate Zone 3A,G1301750950800,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,199732.0,,3404.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012743697270662952,0.000578931761087564,0.0,0.013322611301389096,0.005484266742643633,0.004700708880407239,0.002033672454880056,0.0,0.0011039986841810078,0.005484266742643633,0.004700708880407239,0.0014547406937924921,0.0,0.0011039986841810078,0.0,0.000578931761087564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.86804466904868e-05,0.0,0.0,0.0015186413458821856,0.0004169926427902964,0.0015573217925726724,0.0006535492840369367,0.0005601742342997937,0.00017335858803052735,0.0,0.00013156135240723502,0.0,3.86804466904868e-05,0.0,0.0,0.0,0.0,0.0006410731290876858,0.0005494805946364884,0.00023772234746571473,0.0,0.0001290498664978221 +104438,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,46597.0,,5963.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004151751319165828,0.0017552306529845152,0.0,0.005906981972150344,0.0025349921697965477,0.0013309161563124768,0.0020410429564350213,0.0,0.0,0.0007797615168120323,0.0013309161563124768,0.0020410429564350213,0.0,0.0,0.0017552306529845152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011727455376549329,0.0,0.0,0.0004947561862650916,0.0002693054987193982,0.0006120307400305849,9.292267397453798e-05,0.00015860270789726816,0.00024322714717217505,0.0,0.0,0.00011727455376549329,0.0,0.0,0.0,0.0,0.0,0.0002626541169360506,0.0001378981015867327,0.00021147534171437368,0.0,0.0 +104439,50.0,the Greater Atlanta and Macon Area,G1300670030312,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,55100.0,,8751.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0030534519223158136,0.001488251076876392,0.0,0.004541702999192206,0.0021628913289094016,0.00045724829066174174,0.0009544076248800222,0.0,0.0009671557547410401,0.0015048644255269818,0.00045724829066174174,0.0009544076248800222,0.0,0.0001369315812470678,0.0006580269033824196,0.0,0.0008302241734939724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.943616326002686e-05,0.0,0.0,0.00036387433805984117,0.0001875962070551502,0.00046331050131986803,0.00017933196940370826,5.448945106276562e-05,0.00011373502893705107,0.0,1.6317888656316217e-05,4.396547841346442e-05,0.0,5.547068484656244e-05,0.0,0.0,0.0,0.00022064196317452808,4.664504367895124e-05,9.736151290062684e-05,0.0,9.866198156576181e-05 +104440,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,30848.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027992005505837704,0.0,0.0,0.0027992005505837704,0.0016417841704087996,0.0007388985535221886,0.00041848745305334467,0.0,0.0,0.0016417841704087996,0.0007388985535221886,0.00041848745305334467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003335750451670505,0.00010500067644332027,0.0003335750451670505,0.0001956480855523018,8.805304011305286e-05,4.987029994153173e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001956480855523018,8.805304011305286e-05,4.987029994153173e-05,0.0,0.0 +104441,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,140537.0,,2599.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012521666265525713,0.000765122574608028,0.0,0.013286758150527442,0.002701636731993074,0.00418885505317975,0.006396266365354619,0.0,0.0,0.0019365141573850456,0.00418885505317975,0.006396266365354619,0.0,0.0,0.000765122574608028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.112046121064392e-05,0.0,0.0,0.0014921811027744758,0.000539922824733712,0.0015433015639851199,0.00023077039186556556,0.0004991772037420428,0.0007622298499498803,0.0,0.0,5.112046121064392e-05,0.0,0.0,0.0,0.0,0.0,0.0003138041760502012,0.0004865495767771353,0.0007429478111577834,0.0,0.0 +104442,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,149353.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,240343.828889517,0.0,0.0,0.011391618469128822,0.0,0.0,0.011391618469128822,0.006787193409561709,0.0036409744854016247,0.0009634809477649255,0.0,0.0,0.006787193409561709,0.0036409744854016247,0.0009634809477649255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001357516206601669,0.0003118217845550266,0.001357516206601669,0.0008088161551222213,0.0004338875889453723,0.0001148160820946848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008088161551222213,0.0004338875889453723,0.0001148160820946848,0.0,0.0 +104443,50.0,the Greater Atlanta and Macon Area,G1300630040414,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,26967.0,,2709.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005372901628634502,0.0018633565669565907,0.0,0.007236258195591091,0.002081098398959986,0.0002914699622074433,0.003187307231904771,0.0003697881705564906,0.0013065944319624022,0.002081098398959986,0.0002914699622074433,0.0013239506649481798,0.0003697881705564906,0.0013065944319624022,0.0,0.0018633565669565907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012449905217664376,0.0,0.0,0.0006402803046213631,0.0002914073103716539,0.0007647793567980069,0.0002480012494053006,3.473402066316785e-05,0.00015777313519736182,4.406707936498362e-05,0.0001557048199905492,0.0,0.00012449905217664376,0.0,0.0,0.0,0.0,0.000219945315931333,3.08046236325236e-05,0.0003368573520799658,3.9081850258191844e-05,0.00013809021489599285 +104444,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,NaturalGas,18441.0,,7403.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0037508827641454423,0.005092548261934478,0.0,0.00884343102607992,0.002161353046526455,0.0008562647339553804,0.003929608931916345,0.0003692861307593813,0.0015269181829223593,0.001696105594548186,0.0008562647339553804,0.000651647656647842,0.0003692861307593813,0.00017757864823465298,0.0004652474519782689,0.0032779612752685027,0.0013493395346877062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000340253063484762,0.0,0.0,0.0004469844368376478,0.00045821964630072154,0.0007872375003224097,0.00020212116764705893,0.00010203918222919517,7.76554158417344e-05,4.400701476657391e-05,2.1161656353085454e-05,3.10850015889594e-05,0.00021901341107189598,9.015465082390659e-05,0.0,0.0,0.0,0.00019240249227295034,7.622422867158065e-05,0.00034981168549665586,3.2873653859617114e-05,0.0001359254400216058 +104445,35.0,Eastern Counties in South Carolina and Georgia,G1302450000300,ComStock 90.1-2004,gen4_led,_1000,NaturalGas,9464.0,,2843.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.0020214387159301255,0.002205073554278751,0.0,0.004226512270208878,0.0011477379548746828,0.00018420086383010622,0.002263293318088091,0.00043009850514149907,0.000201181628274497,0.0011477379548746828,0.00018420086383010622,0.000259401392083837,0.00043009850514149907,0.0,0.0,0.002003891926004254,0.000201181628274497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014733228905825546,0.0,0.0,0.00024089102819876463,0.0002210235653590812,0.00038822331725702007,0.00013677376112057542,2.19508685242124e-05,3.091237323339481e-05,5.1254025320581976e-05,0.0,0.0,0.0001338903112373189,1.3441977820936546e-05,0.0,0.0,0.0,0.00010542466404840616,1.6919641024536368e-05,0.00020789321873431645,3.950639622893281e-05,1.847939722082813e-05 +104446,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,5444.0,,1641.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0009769359550086992,0.0013020574618779165,0.0,0.002278993416886616,0.0017875479847276512,0.0001952714010985048,0.00026730926232544156,0.0,2.8782061661278978e-05,0.0005142725845110136,0.0001952714010985048,0.00026730926232544156,0.0,0.0,0.0012732754002166375,0.0,2.8782061661278978e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.699611591951036e-05,0.0,0.0,0.0001164151235317825,0.00012027169729355901,0.00020341123945129288,6.128252947177647e-05,2.326922677434291e-05,3.185351161993913e-05,0.0,0.0,8.507306133398095e-05,0.0,1.9230545855294165e-06,0.0,0.0,0.0,0.00015954734597208465,1.742892166011622e-05,2.3858650912958757e-05,0.0,2.5689388978062026e-06 +104447,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300650970100,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,100166.0,,,,9.729435225087556,Education,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,729707.6418815667,0.05416361898181843,0.0,0.024296940674412123,0.0,0.0,0.07846065187348333,0.06968120054046603,0.004670250549444644,0.0012050028419870698,0.0006670073893083704,0.0022370983350244377,0.0155175815586476,0.004670250549444644,0.0012050028419870698,0.0006670073893083704,0.0022370983350244377,0.0,0.0,0.0,0.0,0.0,0.0,0.05416361898181843,0.0,0.0,0.0,0.0,0.0,0.0,0.0028954248564997346,0.0008698853927638156,0.0028954248564997346,0.0018492036491239141,0.000556545768792381,0.00014359812733611172,7.948612956471234e-05,0.0002665911816826153,0.0,0.0,0.0,0.0,0.0,0.0,0.0025714377239809045,0.00017234574533930939,4.4468088112091376e-05,2.4614500751110196e-05,8.255539523312349e-05 +104448,50.0,the Greater Atlanta and Macon Area,G1300890021705,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,85276.0,,11734.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.008181450074085692,0.0034540231199875547,0.0,0.011635473194073247,0.008094352971412809,0.0014462783863855415,0.002094872525881192,0.0,0.0,0.004640329851425256,0.0014462783863855415,0.002094872525881192,0.0,0.0,0.0034540231199875547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002307778521354891,0.0,0.0,0.0009749672507088514,0.0005476420232362608,0.0012057451028443405,0.0005529789458663766,0.00017235013956759082,0.0002496418224946685,0.0,0.0,0.0002307778521354891,0.0,0.0,0.0,0.0,0.0,0.0008387906785729896,0.00014987298347455622,0.00021708462105787053,0.0,0.0 +104449,85.0,Rural Climate Zone 3A,G1300170960400,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,62126.0,,330.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,2013 to 2018,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0031087351892235384,5.618751534014733e-05,0.0,0.0031649227045636857,0.0012396004883215715,0.0006831508255146346,0.0007156683083590113,0.0,0.0005264853520070479,0.0011834129729814242,0.0006831508255146346,0.0007156683083590113,0.0,0.0005264853520070479,5.618751534014733e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7539020148492294e-06,0.0,0.0,0.00037046170942035714,0.00011476521270271052,0.0003742156114352064,0.00014102493980210187,8.140970755225093e-05,8.528475047077745e-05,0.0,6.274019870377727e-05,3.7539020148492294e-06,0.0,0.0,0.0,0.0,0.0,0.00014656846247895563,8.077470691584178e-05,8.46195242655343e-05,0.0,6.225082136410602e-05 +104450,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,11725.0,,3741.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.0010447355775863982,0.001101204453174171,0.0,0.0021459400307605697,0.0013000117227706899,0.0003696869974621277,0.0004762413105277518,0.0,0.0,0.00019880726959651862,0.0003696869974621277,0.0004762413105277518,0.0,0.0,0.001101204453174171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.357605500996967e-05,0.0,0.0,0.0001244974000225158,0.00011348576972770913,0.00019807345503248546,2.369115085323592e-05,4.4054276501710385e-05,5.675197266756947e-05,0.0,0.0,7.357605500996967e-05,0.0,0.0,0.0,0.0,0.0,0.0001199930146326881,3.412265944913505e-05,4.395778095066227e-05,0.0,0.0 +104451,85.0,Rural Climate Zone 3A,G1303010970400,ComStock 90.1-2007,gen4_led,10001_25000,Propane,34278.0,,,4614.0,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.002904384325436705,0.0,0.00043485882315029276,0.0033392431485869977,0.0024045563730890605,0.000701903509407007,0.00023278326609092994,0.0,0.0,0.001969697549938768,0.000701903509407007,0.00023278326609092994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043485882315029276,0.0,0.0,0.0,0.0,3.507149414029655e-05,0.00034610983960656785,0.00012236257614261855,0.00038118133374686437,0.00023472503177769048,8.36444780852542e-05,2.774032974362318e-05,0.0,0.0,0.0,0.0,0.0,3.507149414029655e-05,0.0,0.0,0.00027448495499690065,8.012369988408381e-05,2.657267886587988e-05,0.0,0.0 +104452,50.0,the Greater Atlanta and Macon Area,G1301350050310,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,45628.0,,4900.0,,9.325022323477118,Office,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,349688.3371303919,0.0,0.0,0.011691102890877202,0.004153701891950656,0.0,0.01584480478282786,0.009340084286615405,0.0014495885762593136,0.004746406055867183,0.0,0.00030881424824401207,0.005495196642908761,0.0014495885762593136,0.004746406055867183,0.0,0.0,0.0038448876437066444,0.0,0.00030881424824401207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002775265144393646,0.0,0.0,0.0013932076412049455,0.0007404569359288935,0.00167073415564431,0.0006548526708116082,0.00017274485563066852,0.0005656206473433426,0.0,0.0,0.0002568933192429407,0.0,2.063319519642395e-05,0.0,0.0,0.0,0.000984852640857848,0.0001528499201588777,0.0005004784106074052,0.0,3.256250356899693e-05 +104453,50.0,the Greater Atlanta and Macon Area,G1301130140203,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,30055.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.00693713851695815,0.0,0.0,0.006937138516958149,0.003694028741492427,0.0015432312889017373,0.00153454704615911,0.0,0.00016533144040487555,0.003694028741492427,0.0015432312889017373,0.00153454704615911,0.0,0.00016533144040487555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008266806645857148,0.0002421625477896161,0.0008266806645857148,0.00044020774957146704,0.0001839028389587588,0.00018286796045022835,0.0,1.970211560526067e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004402077495714671,0.00018390283895875883,0.00018286796045022838,0.0,1.9702115605260674e-05 +104454,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,2725.0,,98.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006542129532779217,7.799277053616688e-05,0.0,0.0007322057238140886,0.0004472798547821745,0.00014233887390534806,0.00013233131798289188,0.0,1.0255677143674121e-05,0.0003795427613896818,0.00014233887390534806,0.00013233131798289188,0.0,0.0,6.773709339249276e-05,0.0,1.0255677143674121e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.210516909674614e-06,0.0,0.0,7.796181249080331e-05,3.346645569588004e-05,8.317232940047793e-05,4.522967857399449e-05,1.6962361478719656e-05,1.5769772438089167e-05,0.0,0.0,4.525358800661197e-06,0.0,6.851581090134172e-07,0.0,0.0,0.0,5.080717919324349e-05,1.616848287566051e-05,1.5031709820486242e-05,0.0,1.1649575110876838e-06 +104455,35.0,Eastern Counties in South Carolina and Georgia,G1300510011106,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,29724.0,,9479.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.0061890031788211395,0.006520636324797324,0.0,0.012709639503618465,0.0026834744355201034,0.0003302704665268889,0.008089941010589909,0.00038334324507844107,0.0012226103459031215,0.0023574354472831356,0.0003302704665268889,0.0018953436740295534,0.00038334324507844107,0.0012226103459031215,0.00032603898823696786,0.0061945973365603564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043567088650274755,0.0,0.0,0.0007375338853818243,0.0006161160611358336,0.001173204771884572,0.0002809319166164574,3.935781795006955e-05,0.0002258651585160669,4.56824184458462e-05,0.00014569657385338447,2.1784023516151818e-05,0.00041388686298659573,0.0,0.0,0.0,0.0,0.0002477068694266368,3.0486693759612528e-05,0.0007467684189773143,3.538574986864906e-05,0.00011285703985235932 +104456,50.0,the Greater Atlanta and Macon Area,G1300890022204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,73277.0,,4999.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.00824330092484912,0.001857715680904965,0.0,0.010100977857330313,0.004355245335134561,0.0013873485647356517,0.0038867381433063085,0.0,0.0004716845625775637,0.0035206430355076705,0.0013873485647356517,0.0033353093246057982,0.0,0.0,0.0008346022996268912,0.00055142881870051,0.0004716845625775637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001241210839268362,0.0,0.0,0.000982336304676388,0.0004041637392981325,0.001106457388603224,0.0004195473998965491,0.00016532732151901337,0.00039746158326082565,0.0,0.0,5.576296908203752e-05,3.684306667006248e-05,3.151504817473618e-05,0.0,0.0,0.0,0.00047707196751671646,0.00015196965003797677,0.0004257518625393626,0.0,5.166815299721515e-05 +104457,50.0,the Greater Atlanta and Macon Area,G1301210002100,ComStock 90.1-2004,gen5_led,50001_100000,Electricity,73610.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,242844.36554246195,0.0,0.0,0.006171342240798756,0.0,0.0,0.006171342240798756,0.002203084077686892,0.0013621274859172401,0.0026061306771946223,0.0,0.0,0.002203084077686892,0.0013621274859172401,0.0026061306771946223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007354273910711105,0.00023727456673985778,0.0007354273910711105,0.0002625374371319701,0.0001623222022353294,0.00031056775170381083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002625374371319701,0.0001623222022353294,0.00031056775170381083,0.0,0.0 +104459,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,30608.0,,2554.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0024615676192337207,0.0007439405710288554,0.0,0.003205508190262576,0.002077493454343349,0.0008988459281613897,0.00022913843415839973,0.0,0.0,0.001333552883314494,0.0008988459281613897,0.00022913843415839973,0.0,0.0,0.0007439405710288554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.970641737656854e-05,0.0,0.0,0.0002933401805847452,0.00010827763531286801,0.0003430465979613138,0.00015891687904659552,0.00010711370462648675,2.7305977349448043e-05,0.0,0.0,4.970641737656854e-05,0.0,0.0,0.0,0.0,0.0,0.0002223288849999805,9.619255963338728e-05,2.4521902810606345e-05,0.0,0.0 +104460,50.0,the Greater Atlanta and Macon Area,G1300890021209,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,45062.0,,17832.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009024739112807387,0.012266410082741989,0.0,0.02129122091552039,0.010280125485464642,0.0010872747605966634,0.005033953045614724,0.00036749313148399105,0.004522231052418339,0.005329869646025135,0.0010872747605966634,0.0017469550539982541,0.00036749313148399105,0.000493074800732326,0.0049502558394395055,0.00328699799161647,0.004029156251686013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008195716715020884,0.0,0.0,0.0010754642515252222,0.001107889103800447,0.0018950359230273104,0.000635152351546072,0.00012956885755821098,0.0002081819414513789,4.379359011400219e-05,5.8758964097143836e-05,0.0003307479063006755,0.00021961848821631165,0.00026920527698510115,0.0,0.0,0.0,0.000914987786068346,9.67734418663438e-05,0.0004480495455908183,3.2708912673030724e-05,0.0004025034698839342 +104461,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,91335.0,,4603.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009064789012152472,0.0013550074972561732,0.0,0.010419827199014943,0.002962283558279463,0.0028910529820624954,0.0045664599690666855,0.0,0.0,0.0016072760610232903,0.0028910529820624954,0.0045664599690666855,0.0,0.0,0.0013550074972561732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.053465342746784e-05,0.0,0.0,0.0010802350187673066,0.00037759693939565855,0.0011707696721947746,0.0001915362711273365,0.0003445217167381135,0.0005441770309018566,0.0,0.0,9.053465342746785e-05,0.0,0.0,0.0,0.0,0.0,0.0003328415802137952,0.0003248381271070424,0.0005130865165959935,0.0,0.0 +104462,50.0,the Greater Atlanta and Macon Area,G1300890021909,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,8467.0,,578.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0017682772365463929,0.000458445309736981,0.0,0.0022267225462833736,0.000998439794180919,0.000503603371998643,0.0006199722247498484,0.0,0.0001047898624277025,0.0006447843468716407,0.000503603371998643,0.0006199722247498484,0.0,0.0,0.00035365544730927846,0.0,0.0001047898624277025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.062896838531438e-05,0.0,0.0,0.0002107221710931715,9.701322048528101e-05,0.00024135113947848586,7.683770092808068e-05,6.0013437782334956e-05,7.388088842443468e-05,0.0,0.0,2.362790344860261e-05,0.0,7.0010649367117665e-06,0.0,0.0,0.0,0.00010821940184170713,5.4584819235764985e-05,6.719786582218661e-05,0.0,1.1358017075334904e-05 +104463,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock 90.1-2004,gen4_led,1001_5000,NaturalGas,7226.0,,197.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015060131057190488,0.0001559028339985945,0.0,0.0016619986467913824,0.0009811540157694037,0.00026896340380022773,0.0003837608221503865,0.0,2.8037697997625213e-05,0.0008532061726946953,0.00026896340380022773,0.0003837608221503865,0.0,0.0,0.00012794784307470857,0.0,2.8037697997625213e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0418118333348316e-05,0.0,0.0,0.00017947081133024904,7.449949577448695e-05,0.0001898889296635974,0.00010167614309862425,3.205223122884122e-05,4.5732580843119094e-05,0.0,0.0,8.55004194254103e-06,0.0,1.8736032440345245e-06,0.0,0.0,0.0,0.00011210014295094579,3.07299725934819e-05,4.3845963356013544e-05,0.0,3.2034012020880576e-06 +104464,50.0,the Greater Atlanta and Macon Area,G1300630040415,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,5454.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001309666512661933,0.0,0.0,0.001309666512661933,0.0006501603066646957,0.00029865524327263906,0.0003147831226518041,0.0,4.606784007279424e-05,0.0006501603066646957,0.00029865524327263906,0.0003147831226518041,0.0,4.606784007279424e-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.00015607519529521106,5.2489261609211675e-05,0.00015607519529521106,7.748071425422508e-05,3.5591255460120436e-05,3.7513242393026425e-05,0.0,5.489983187839127e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.748071425422508e-05,3.5591255460120436e-05,3.7513242393026425e-05,0.0,5.489983187839127e-06 +104465,81.0,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,22466.0,,385.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0011179702089800095,6.553141580851516e-05,0.0,0.0011834838944271044,0.0006828494093704935,0.0003176926159245061,6.620516954247718e-05,0.0,0.00011673669958962764,0.0006173179935619784,0.0003176926159245061,6.620516954247718e-05,0.0,0.00011673669958962764,6.553141580851516e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3782447329628155e-06,0.0,0.0,0.00013322561621134622,4.2556909244984666e-05,0.000137603860944309,7.35641875159457e-05,3.7858606769989236e-05,7.889498698467454e-06,0.0,1.3911210345664087e-05,4.3782447329628155e-06,0.0,0.0,0.0,0.0,0.0,7.939500961135257e-05,3.6938171064736985e-05,7.697685609762695e-06,0.0,1.3572994658456764e-05 +104466,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock 90.1-2007,gen3_t5_cfl,5001_10000,NaturalGas,28457.0,,5622.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0013830036514869586,0.0009560388181306673,0.0,0.0023390424696176264,0.0006576900265154387,0.0002578526461318279,0.0011388211140099915,0.0,0.0002846786829603678,0.0006576900265154387,0.0002578526461318279,0.00040639761410903036,0.0,6.106336473066185e-05,0.0,0.0007324234999009612,0.0002236153182297059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.387710544957247e-05,0.0,0.0,0.00016480928836273202,0.00010441101514155442,0.0002286863938123045,7.837537168953594e-05,3.0727692631717286e-05,4.8429446662421236e-05,0.0,7.276777379057576e-06,0.0,4.8936394892831895e-05,1.4940710556740561e-05,0.0,0.0,0.0,6.430185101971316e-05,2.521005605703587e-05,0.00011134166956909951,0.0,2.7832817166455885e-05 +104467,50.0,the Greater Atlanta and Macon Area,G1300210012102,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,16242.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014322063342883118,0.0,0.0,0.0014322063342883118,0.0008218792271861268,0.0005236104807074036,8.671662639478146e-05,0.0,0.0,0.0008218792271861268,0.0005236104807074036,8.671662639478146e-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.00017067442992661742,4.645887990221001e-05,0.00017067442992661742,9.794242994898184e-05,6.239807642154172e-05,1.0333923556093837e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.794242994898184e-05,6.239807642154172e-05,1.0333923556093837e-05,0.0,0.0 +104468,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,61528.0,,9517.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005079344669513895,0.002801439331673203,0.0,0.007880784001187097,0.0038140428914659064,0.0017565809956616146,0.002310129424453279,0.0,0.0,0.0010126035597927035,0.0017565809956616146,0.002310129424453279,0.0,0.0,0.002801439331673203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001871766000444879,0.0,0.0,0.00060529551150691,0.0003673799320632287,0.0007924721115513979,0.00012066997409276041,0.00020932830147438484,0.0002752935787197589,0.0,0.0,0.00018717660004448786,0.0,0.0,0.0,0.0,0.0,0.0003835307024392875,0.00017663743233329714,0.00023230089070804907,0.0,0.0 +104469,50.0,the Greater Atlanta and Macon Area,G1300630040612,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,13010.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029368454814090676,0.0,0.0,0.002936845481409068,0.0013627644540025684,0.0007144237029601375,0.0007658675028259867,0.0,9.378982162037462e-05,0.0013627644540025684,0.0007144237029601375,0.0007658675028259867,0.0,9.378982162037462e-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.00034997510810729583,0.00011298928015805833,0.00034997510810729583,0.00016239657146875197,8.513573977951566e-05,9.12661438247644e-05,0.0,1.1176653034263805e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00016239657146875194,8.513573977951564e-05,9.126614382476438e-05,0.0,1.1176653034263803e-05 +104471,50.0,the Greater Atlanta and Macon Area,G1301350050218,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,64668.0,,4689.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0052124133995125905,0.0013660222611134502,0.0,0.006578405287026603,0.00464105562048904,0.0013966388493467043,0.000540710817190858,0.0,0.0,0.00327503335937559,0.0013966388493467043,0.000540710817190858,0.0,0.0,0.0013660222611134502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.126884028214902e-05,0.0,0.0,0.0006211518956954089,0.00025896311705359725,0.000712420735977558,0.0003902785569218429,0.00016643439466153658,6.443532455666727e-05,0.0,0.0,9.126884028214902e-05,0.0,0.0,0.0,0.0,0.0,0.000502611821041517,0.00015125162308085157,5.855729185518942e-05,0.0,0.0 +104472,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302990950700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,15140.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.001276025285979392,0.0,0.0,0.001276025285979392,0.0007710945689262056,0.00042264863617631656,8.228208087686969e-05,0.0,0.0,0.0007710945689262056,0.00042264863617631656,8.228208087686969e-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.00015206007714861479,3.9288697418317244e-05,0.00015206007714861479,9.188900951112526e-05,5.036576071797801e-05,9.805306919511495e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.188900951112526e-05,5.036576071797801e-05,9.805306919511495e-06,0.0,0.0 +104473,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,95748.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007549874491443657,0.0,0.0,0.007549874491443659,0.005155311032569618,0.0019036045975622201,0.0004909892349112581,0.0,0.0,0.005155311032569618,0.0019036045975622201,0.0004909892349112581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008997051960231039,0.00018751249747811648,0.0008997051960231039,0.0006143493018823957,0.00022684919458478396,5.8510319124073074e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006143493018823956,0.0002268491945847839,5.851031912407306e-05,0.0,0.0 +104474,50.0,the Greater Atlanta and Macon Area,G1301350050208,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,159166.0,,35698.0,,9.525004485617233,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,714375.3364212925,0.0,0.0,0.04171767221466788,0.030911020755354023,0.0,0.07262860269039868,0.032759947439007994,0.005894356600379285,0.023715734784298288,0.0006567842589639961,0.009601869887372333,0.021947156965314824,0.005894356600379285,0.008353212418543325,0.0006567842589639961,0.00486616197146644,0.010812790473693167,0.015362522365754961,0.004735707915905892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002065291982969023,0.0,0.0,0.004971411910632994,0.0036498391826261856,0.007036703893602017,0.0026153989844029607,0.0007024187365454391,0.000995435687204829,7.826767205342426e-05,0.0005798908304263396,0.0007224468468895296,0.0010264330813041975,0.0003164120547752957,0.0,0.0,0.0,0.0031739843692289486,0.00057108137157719,0.0022977256495995586,6.363328194553618e-05,0.0009302879680936618 +104475,50.0,the Greater Atlanta and Macon Area,G1301350050530,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6665.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001294613825241379,0.0,0.0,0.0012946138252413792,0.0004227985609553396,0.00036043742735590177,0.0004667160171109118,0.0,4.4579112745486695e-05,0.0004227985609553396,0.00036043742735590177,0.0004667160171109118,0.0,4.4579112745486695e-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.00015427298493794948,4.936002667910565e-05,0.00015427298493794948,5.03828977833513e-05,4.2951617476495495e-05,5.5616332588312086e-05,0.0,5.3122812803650905e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.0382897783351296e-05,4.295161747649549e-05,5.561633258831207e-05,0.0,5.31228128036509e-06 +104476,81.0,the Columbus-Albany Area,G1300950011200,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,22666.0,,2215.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025004049834990365,0.0006521234442198864,0.0,0.003152559117325221,0.0012468880142693663,0.0008178473182274815,0.0010877930952220751,0.0,0.0,0.00059476457004948,0.0008178473182274815,0.0010877930952220751,0.0,0.0,0.0006521234442198864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.357200237828492e-05,0.0,0.0,0.000297969084930428,0.00012471222593752056,0.00034154108730871294,7.087710025224851e-05,9.746149869051448e-05,0.00012963048598766503,0.0,0.0,4.357200237828492e-05,0.0,0.0,0.0,0.0,0.0,0.00013508501261891764,8.860371904997752e-05,0.00011784903079764544,0.0,0.0 +104477,50.0,the Greater Atlanta and Macon Area,G1300670030413,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,12165.0,,430.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002951484633460925,0.000341414800395861,0.0,0.0032928994338567857,0.0016720889097875781,0.0006516490339920032,0.0008983642349563573,0.0,7.079725512084716e-05,0.0013306741093917173,0.0006516490339920032,0.0008983642349563573,0.0,7.079725512084716e-05,0.000341414800395861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2811125102036243e-05,0.0,0.0,0.0003517268938977384,0.00013141837086842425,0.00037453801899977457,0.0001585757438749289,7.76566776052312e-05,0.00010705760022185829,0.0,8.436872195720002e-06,2.2811125102036243e-05,0.0,0.0,0.0,0.0,0.0,0.00019018523961718094,7.411928094889296e-05,0.00010218094043239945,0.0,8.052558001301227e-06 +104478,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,10849.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002605024701566966,0.0,0.0,0.0026050247015669656,0.0014448098711519614,0.00058755105184404,0.0004957461999934087,0.0,7.691757857755591e-05,0.0014448098711519614,0.00058755105184404,0.0004957461999934087,0.0,7.691757857755591e-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.00031043629041771877,8.634613303153879e-05,0.00031043629041771877,0.00017217549472353332,7.001744315736338e-05,5.9077217664025344e-05,0.0,9.166134872796726e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017217549472353335,7.001744315736339e-05,5.907721766402536e-05,0.0,9.166134872796728e-06 +104479,50.0,the Greater Atlanta and Macon Area,G1300970080303,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,381799.0,,34626.0,,7.614023970037612,Education,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,2664908.3895131643,0.0,0.0,0.10267844610694393,0.023967822921918704,0.0,0.12664626902886264,0.08914972735736677,0.020369863836553412,0.011092071394027705,0.0008115181706300686,0.005223016103261946,0.06518190443544807,0.020369863836553412,0.011092071394027705,0.0008115181706300686,0.005223016103261946,0.023967822921918704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00160139171644575,0.0,0.0,0.012235989719410287,0.00461363099471409,0.013837381435856036,0.007767600142030087,0.002427436856906223,0.0013218204666140666,9.670703413842017e-05,0.0006224166197184546,0.00160139171644575,0.0,0.0,0.0,0.0,0.0,0.009740506307890659,0.0022256129443387106,0.0012119206035033651,8.866653992449798e-05,0.0005706671552241545 +104481,50.0,the Greater Atlanta and Macon Area,G1302470060308,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,68923.0,,2726.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006039070037655656,0.0008023183774408438,0.0,0.006841388415096499,0.002932361192139203,0.001571983013780932,0.0023370442091763645,0.0,0.0,0.002130042814698359,0.001571983013780932,0.0023370442091763645,0.0,0.0,0.0008023183774408438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.360591668373817e-05,0.0,0.0,0.00071966372553481,0.000269417807051761,0.0007732696422185482,0.0002538328812244651,0.00018733002682879798,0.0002785008174815469,0.0,0.0,5.360591668373817e-05,0.0,0.0,0.0,0.0,0.0,0.0003314394319283878,0.00017767837007436898,0.0002641518402157915,0.0,0.0 +104482,81.0,the Columbus-Albany Area,G1302150010205,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,265407.0,,2413.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012574301397655769,0.0004103692150671221,0.0,0.01298467061272289,0.006669612325019843,0.003262705647795277,0.0017062990616202019,0.0,0.0013460713086489886,0.006669612325019843,0.003262705647795277,0.0012959298465530795,0.0,0.0013460713086489886,0.0,0.0004103692150671221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.741897296008129e-05,0.0,0.0,0.0014984548307560052,0.0004084216580681347,0.0015258738037160864,0.0007948046171025437,0.0003888102316511353,0.0001544334176092183,0.0,0.00016040867728549674,0.0,2.7418972960081295e-05,0.0,0.0,0.0,0.0,0.0007837693408809236,0.0003834118881944706,0.000200513137151165,0.0,0.00015818152104596296 +104483,50.0,the Greater Atlanta and Macon Area,G1300890021504,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,21012.0,,5741.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004375133391865321,0.003949116764032591,0.0,0.008324321875868927,0.0022083296275416803,0.0005542519360086423,0.0033757873157337966,0.0003713660099188341,0.0018146587066369907,0.0014678926467765116,0.0005542519360086423,0.0017592191690419233,0.0003713660099188341,0.00022247535009042548,0.0007404369807651683,0.001616568146691873,0.0015921833565465653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002638592120821362,0.0,0.0,0.0005213796678927314,0.00040056638876291106,0.0007852388799748677,0.00017492709641756202,6.604957253700685e-05,0.0002096441465787061,4.425526482875537e-05,2.6512134318037686e-05,4.9472104780632626e-05,0.00010801058134012588,0.00010638131791263508,0.0,0.0,0.0,0.00020831321868667373,5.228295781269249e-05,0.00031844028743343975,3.5031205428845976e-05,0.0001711779760063076 +104484,35.0,Eastern Counties in South Carolina and Georgia,G1300730030203,ComStock 90.1-2004,gen4_led,_1000,Electricity,15256.0,,,,7.614023970037612,Education,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,7614.023970037612,0.0,0.0,0.0030803050313030875,0.0,0.0,0.0030803050313030866,0.002127555997184976,0.000165118148012592,1.63819141603402e-05,0.0007148143601681484,5.6434611777031e-05,0.002127555997184976,0.000165118148012592,1.63819141603402e-05,0.0007148143601681484,5.6434611777031e-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.00036707524658530417,0.00011983210852925725,0.00036707524658530417,0.00025353759915145026,1.9676877543452333e-05,1.952207693340769e-06,8.518333569401019e-05,6.7252265030505786e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00025353759915145037,1.9676877543452336e-05,1.9522076933407694e-06,8.518333569401022e-05,6.72522650305058e-06 +104485,50.0,the Greater Atlanta and Macon Area,G1301210011626,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,33382.0,,1414.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008015556051444979,0.0011215079199050084,0.0,0.009137063971349987,0.00588626243802651,0.0017385026900002421,0.001259297904754695,0.0,0.00025300093856854143,0.005017755456690042,0.0017385026900002421,0.001259297904754695,0.0,0.0,0.0008685069813364672,0.0,0.00025300093856854143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.493008088080763e-05,0.0,0.0,0.0009551985677085636,0.0003621871061246976,0.0010301286485893712,0.0005979563731549383,0.00020717405864142816,0.00015006813591219721,0.0,0.0,5.802660614523311e-05,0.0,1.6903474735574532e-05,0.0,0.0,0.0,0.0006636275711256444,0.00019600184832177945,0.0001419754587320368,0.0,2.852377040991072e-05 +104486,50.0,the Greater Atlanta and Macon Area,G1301950020300,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,9078.0,,1289.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.00040717775001151263,0.00021920045823611278,0.0,0.0006263782082476253,0.00034052932143353415,0.00011178992875343294,3.7818860908972627e-05,0.0,0.00013624009715168574,0.0002062041033152141,0.00011178992875343294,3.7818860908972627e-05,0.0,5.1364857033892976e-05,0.00013432521811832004,0.0,8.487524011779276e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4645637254991124e-05,0.0,0.0,4.85217744452519e-05,2.6081935814395068e-05,6.316741170024303e-05,2.4572533716450234e-05,1.332156707499731e-05,4.506725229336917e-06,0.0,6.12094842446744e-06,8.974791542814266e-06,0.0,5.670845712176859e-06,0.0,0.0,0.0,3.434084321543444e-05,1.1273509136379993e-05,3.8138612193336273e-06,0.0,1.373919812909498e-05 +104487,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,129562.0,,1758.0,,9.729435225087556,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,729707.6418815667,0.0,0.0,0.03468742741337678,0.0015547828817557203,0.0,0.0362422102951325,0.020436357604315954,0.009282404229642188,0.003440810135472683,0.0006508693700730648,0.0024317689556286087,0.020436357604315954,0.009282404229642188,0.0018860272537169626,0.0006508693700730648,0.0024317689556286087,0.0,0.0015547828817557203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010388122171800183,0.0,0.0,0.004133629080271834,0.001131846829202549,0.004237510301989836,0.0024353585257653786,0.0011061649398562863,0.0002247539723612705,7.756275850409971e-05,0.00028978888378479873,0.0,0.00010388122171800183,0.0,0.0,0.0,0.0,0.0023894590086595206,0.0010853169061718507,0.0004023062687822537,7.610092316319539e-05,0.00028432719521301537 +104488,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,99126.0,,6026.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004695903952462405,0.0010248148900790519,0.0,0.005720718842541456,0.0024932788836106654,0.0016563703638613329,0.0008540183185196834,0.0,0.0007170335461883555,0.002052768054129453,0.0016563703638613329,0.0008540183185196834,0.0,0.00013271175522909526,0.0004405108294812118,0.0,0.0005843217909592602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.847269977370501e-05,0.0,0.0,0.000559600823834662,0.0001905709818441495,0.000628073523608367,0.0002446239756735132,0.00019738611129515885,0.0001017715352467771,0.0,1.581497584076498e-05,2.9432599063628045e-05,0.0,3.904128535886198e-05,0.0,0.0,0.0,0.000273735258954275,0.00018185168673115425,9.376204447419725e-05,0.0,7.872258684537154e-05 +104489,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,23613.0,,14081.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.006412697768418831,0.00968642756539741,0.0,0.01609905361384523,0.00511442285309424,0.000694607919286193,0.005600182216782973,0.00036763657142602224,0.004322347493197831,0.0031021756263092406,0.000694607919286193,0.0017838908390712938,0.00036763657142602224,0.00046445853229709725,0.0020122472267849988,0.003816291377711679,0.0038578889609007334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006471887279836412,0.0,0.0,0.000764187330425876,0.000839873966577709,0.0014113760584095172,0.0003696795632653064,8.277492417405309e-05,0.0002125824149696668,4.381045547921488e-05,5.534851925154031e-05,0.00013444623565284078,0.0002549815962263717,0.0002577608961044288,0.0,0.0,0.0,0.0004483725652812215,6.0895069410730885e-05,0.000490958244694632,3.2230059452700726e-05,0.0003789326947007247 +104490,50.0,the Greater Atlanta and Macon Area,G1300590030100,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,21427.0,,2596.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.004977223780217089,0.0020137569415386147,0.0,0.006991061582538772,0.0029020935043294607,0.0004476452950673696,0.002502398653621728,0.00041643303280291795,0.0007224102359342267,0.0029020935043294607,0.0004476452950673696,0.0012109710872342714,0.00041643303280291795,0.0,0.0,0.0012914275663874564,0.0007224102359342267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001345494713036645,0.0,0.0,0.0005931303716709361,0.00031041528378630476,0.0007276798429746006,0.0003458393423435071,5.334540538349555e-05,0.0001443101139854099,4.96258738665105e-05,0.0,0.0,8.628692604364061e-05,4.826794798534126e-05,0.0,0.0,0.0,0.00030207071137845445,4.659413369158885e-05,0.00026046760392947973,4.334533752017388e-05,7.519363988451131e-05 +104491,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302670950201,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,68244.0,,1075.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0035128810474322225,0.00018280002624074438,0.0,0.0036956810736729663,0.001785624698613518,0.0007374234618214162,0.0006900833968298751,0.0,0.0004825495164081572,0.001785624698613518,0.0007374234618214162,0.0005072833705891308,0.0,0.0004825495164081572,0.0,0.00018280002624074438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.221358984779546e-05,0.0,0.0,0.00041862356992789136,0.0001059717184098544,0.00043083715977568676,0.00021278960938099576,8.787739691952137e-05,6.045202575712114e-05,0.0,5.750453787025303e-05,0.0,1.221358984779546e-05,0.0,0.0,0.0,0.0,0.0002081655473618506,8.596776169523115e-05,8.044892531894137e-05,0.0,5.625492539966366e-05 +104492,50.0,the Greater Atlanta and Macon Area,G1301510070309,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,39178.0,,20170.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.00815764466322865,0.013874586992825035,0.0,0.022032231656053683,0.01030859831395784,0.0007988170371718759,0.0059866811405861016,0.0003746651285855522,0.0045633983157813,0.004799930780190785,0.0007988170371718759,0.0016746613232145183,0.0003746651285855522,0.0005094986740949009,0.005508667533767053,0.004312019817371583,0.004053899641686399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009270201856050663,0.0,0.0,0.0009721295461322553,0.0012019003885325608,0.0018991497317373215,0.0005719977669346448,9.51933647329599e-05,0.00019956590649260314,4.4648064047852623e-05,6.071589720443052e-05,0.0003680575142330461,0.00028810438923332766,0.0002708582821386926,0.0,0.0,0.0,0.000888587775771757,6.885699031924129e-05,0.0005160441329608574,3.229564710250643e-05,0.0003933590034146782 +104493,50.0,the Greater Atlanta and Macon Area,G1301210001500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,17156.0,,2809.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.001506522083547932,0.000826870062479006,0.0,0.002333392146026938,0.001209446694586169,0.00056603909855483,0.0005578756632796413,0.0,0.0,0.0003825766321071629,0.00056603909855483,0.0005578756632796413,0.0,0.0,0.000826870062479006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5247619702903726e-05,0.0,0.0,0.00017952928625360765,0.00011509632506413555,0.00023477690595651138,4.559090799237045e-05,6.745377081752609e-05,6.648095022343255e-05,0.0,0.0,5.5247619702903726e-05,0.0,0.0,0.0,0.0,0.0,0.00012168985541403826,5.6952668001129725e-05,5.613129467168382e-05,0.0,0.0 +104494,50.0,the Greater Atlanta and Macon Area,G1301210001300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,437123.0,,29055.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.021369198955013078,0.004941114850901735,0.0,0.026310296075553397,0.013430163673763137,0.00438560489725006,0.005964777267488483,0.0,0.002529750237051714,0.011192272916046912,0.00438560489725006,0.003261570904664393,0.0,0.002529750237051714,0.002237890757716225,0.0027032063628240903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033013587986121184,0.0,0.0,0.002546525776734894,0.0010485564037675998,0.0028766616565961056,0.001333761342246244,0.0005226239851542076,0.00038867504574512676,0.0,0.00030146540358931556,0.00014952253825816056,0.00018061215696585012,0.0,0.0,0.0,0.0,0.0014683999287268261,0.00047950435117382066,0.0006521646889205258,0.0,0.0002765926877749326 +104495,50.0,the Greater Atlanta and Macon Area,G1301170130608,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,45044.0,,4585.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.004064623526886649,0.0013496061265477774,0.0,0.005414229653434427,0.0037135037412346318,0.0006802044339822845,0.0010205214782175107,0.0,0.0,0.0023638976146868546,0.0006802044339822845,0.0010205214782175107,0.0,0.0,0.0013496061265477774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.017344640523976e-05,0.0,0.0,0.0004843719472224133,0.0002494302320815009,0.000574545393627653,0.00028170030584291823,8.10584163620393e-05,0.0001216132250174559,0.0,0.0,9.017344640523976e-05,0.0,0.0,0.0,0.0,0.0,0.0003940683357219646,7.218170437630473e-05,0.00010829535352938372,0.0,0.0 +104496,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,41289.0,,1477.0,,3.3063363735822096,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,57860.88653768867,0.0,0.0,0.0039306341109759235,0.00044387174649687043,0.0,0.004374505857472794,0.001235783567590906,0.0011148814779280334,0.0013452472791493336,0.0,0.000678562194782317,0.001235783567590906,0.0011148814779280334,0.000901375532652463,0.0,0.000678562194782317,0.0,0.00044387174649687043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.965795003584427e-05,0.0,0.0,0.00046840521653795263,0.00021640795804450983,0.0004980631665737969,0.00014726567093973085,0.00013285802884190965,0.00010741498435967638,0.0,8.086279791190324e-05,0.0,2.965795003584427e-05,0.0,0.0,0.0,0.0,0.00014070121218897428,0.0001269357996864368,0.00015316429821058222,0.0,7.725828847004767e-05 +104497,50.0,the Greater Atlanta and Macon Area,G1301210011416,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,19262.0,,1632.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.0042178953465572,0.001294365704020161,0.0,0.005512343757651101,0.0031742974901146186,0.0009697404395933796,0.0012313429138308088,0.0,0.00013696291411229307,0.0020168119931330115,0.0009697404395933796,0.0012313429138308088,0.0,0.0,0.0011574854969816073,0.0,0.00013696291411229307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.648397585934859e-05,0.0,0.0,0.0005026413894651543,0.00019842283321377935,0.000589125365324503,0.00024034099929620353,0.00011556277288283727,0.00014673761728611353,0.0,0.0,7.733822633556445e-05,0.0,9.151275656426917e-06,0.0,0.0,0.0,0.0003392493739014002,0.0001036398881968191,0.00013159835014705696,0.0,1.4637753079226644e-05 +104498,50.0,the Greater Atlanta and Macon Area,G1301210009601,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,71145.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005639010603615814,0.0,0.0,0.005639010603615814,0.003658196316282829,0.0012506633304488692,0.0007301205832846783,0.0,0.0,0.003658196316282829,0.0012506633304488692,0.0007301205832846783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006719892250043017,0.0001560347019754456,0.0006719892250043017,0.00043593968521999456,0.00014903896113100713,8.700695909430612e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043593968521999456,0.00014903896113100713,8.700695909430612e-05,0.0,0.0 +104499,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,80443.0,,4629.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006753002348959115,0.0013624343819802172,0.0,0.008115436730939335,0.0022768312016202717,0.003232444162518141,0.0026061306771946223,0.0,0.0,0.0009143968196400547,0.003232444162518141,0.0026061306771946223,0.0,0.0,0.0013624343819802172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.103036051116683e-05,0.0,0.0,0.0008047412482513873,0.000326185714253311,0.0008957716087625542,0.00010896676767003614,0.00038520364955133056,0.00031056717381345173,0.0,0.0,9.103036051116683e-05,0.0,0.0,0.0,0.0,0.0,0.00025131373898593654,0.000356793085041876,0.00028766139725493997,0.0,0.0 +104500,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,21276.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0017550776963116137,0.0,0.0,0.0017550776963116135,0.001124825507978263,0.0005311431333679661,9.907868136594643e-05,0.0,0.0,0.001124825507978263,0.0005311431333679661,9.907868136594643e-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.00020914877172769708,5.225576868748947e-05,0.00020914877172769708,0.00013404299644171822,6.329516590004393e-05,1.1806989830499415e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013404299644171824,6.329516590004393e-05,1.1806989830499417e-05,0.0,0.0 +104501,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302290960400,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,38778.0,,6402.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007938396711833925,0.004403893100242581,0.0,0.012342361532047524,0.003222736897586483,0.00032144891009196875,0.007078043939530655,0.0003859251640350031,0.0013341349008323968,0.003222736897586483,0.00032144891009196875,0.0026741508392880736,0.0003859251640350031,0.0013341349008323968,0.0,0.004403893100242581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029424312905073106,0.0,0.0,0.0009460074197367106,0.0005598857816852524,0.0012402505487874417,0.0003840489619813625,3.8306608381005156e-05,0.000318674743439125,4.599015165064452e-05,0.00015898695428457336,0.0,0.00029424312905073106,0.0,0.0,0.0,0.0,0.0003238441197376021,3.230153209444604e-05,0.0007112535034361623,3.8780576573006276e-05,0.00013406361000019748 +104502,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,95506.0,,5401.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.009968303254334702,0.0020072070998176598,0.0,0.011975510354152364,0.006007361879504855,0.00167827173041645,0.004077767872502676,0.0,0.00021203137488083702,0.0045933931476377825,0.00167827173041645,0.003484568252975861,0.0,0.00021203137488083702,0.0014139687318670728,0.0005931996195268154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013410888387036473,0.0,0.0,0.0011879030924905984,0.0004256597339701766,0.001322011976360963,0.0005473856268097875,0.00019999634117614997,0.0004152491450242152,0.0,2.5267361906997884e-05,9.447244804759523e-05,3.963384689815668e-05,0.0,0.0,0.0,0.0,0.0006631704300005886,0.00018526937571635755,0.0004501568454992224,0.0,2.340677003878621e-05 +104503,35.0,Eastern Counties in South Carolina and Georgia,G1300510001200,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,11548.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002520498072205394,0.0,0.0,0.002520498072205394,0.0010106804410943367,0.0007346869360262678,0.0006985439448021906,0.0,7.658675028259868e-05,0.0010106804410943367,0.0007346869360262678,0.0006985439448021906,0.0,7.658675028259868e-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.0003003617193856179,8.242202571161532e-05,0.0003003617193856179,0.00012044036787177196,8.755088279909576e-05,8.324380908715108e-05,0.0,9.126659627599086e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012044036787177196,8.755088279909576e-05,8.324380908715108e-05,0.0,9.126659627599086e-06 +104504,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,32775.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027947052578669827,0.0,0.0,0.0027947052578669827,0.001921221285236116,0.0006096588879145545,0.00026385545831575006,0.0,0.0,0.001921221285236116,0.0006096588879145545,0.00026385545831575006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00033303800284293576,0.00011662423466631452,0.00033303800284293576,0.00022894711277808325,7.265151767792335e-05,3.144299193244919e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022894711277808325,7.265151767792335e-05,3.144299193244919e-05,0.0,0.0 +104505,50.0,the Greater Atlanta and Macon Area,G1300890021301,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,15970.0,,3419.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0013408288991466346,0.0010062815008953765,0.0,0.002347079710435713,0.0012334152771046748,0.0004867678454878638,0.0006269272774494726,0.0,0.0,0.0002271337762092983,0.0004867678454878638,0.0006269272774494726,0.0,0.0,0.0010062815008953765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.723291481416865e-05,0.0,0.0,0.00015978293791772306,0.0001215819775394113,0.00022701585273189172,2.706691516431834e-05,5.8006801975578055e-05,7.470922077782666e-05,0.0,0.0,6.723291481416865e-05,0.0,0.0,0.0,0.0,0.0,0.00011929923796771267,4.708149324224659e-05,6.0638089903071286e-05,0.0,0.0 +104506,50.0,the Greater Atlanta and Macon Area,G1300630040417,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,NaturalGas,154407.0,,10171.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.013836132792862622,0.0029938324735535016,0.0,0.01682996526641612,0.007392389606565456,0.0049249145706238544,0.004512661089226813,0.0,0.0,0.004398557133011954,0.0049249145706238544,0.004512661089226813,0.0,0.0,0.0029938324735535016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020003101296372244,0.0,0.0,0.0016488250528193197,0.0007007355546424336,0.001848856065783042,0.0005241675044423115,0.0005868924972466575,0.0005377650511303505,0.0,0.0,0.00020003101296372244,0.0,0.0,0.0,0.0,0.0,0.000812091061887289,0.000541026557881909,0.0004957384460138444,0.0,0.0 +104507,33.0,Rural Lower Plains-Upper South Appalachia,G1301190890101,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,17412.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0040058344094896165,0.0,0.0,0.0040058344094896165,0.002051714378250999,0.0009065522352565486,0.0009503869843383818,0.0,9.70981045699469e-05,0.002051714378250999,0.0009065522352565486,0.0009503869843383818,0.0,9.70981045699469e-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.0004773677250419957,0.0001611201164130803,0.0004773677250419957,0.00024449892957667725,0.00010803211863949527,0.0001132558229437497,0.0,1.1570997836216352e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00024449892957667725,0.00010803211863949527,0.0001132558229437497,0.0,1.1570997836216352e-05 +104508,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,143161.0,,15750.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.01275545968630161,0.0046360946857561735,0.0,0.017391554372057787,0.009830893654162025,0.003155658767561289,0.004405001950334471,0.0,0.0,0.0051947989684058525,0.003155658767561289,0.004405001950334471,0.0,0.0,0.0046360946857561735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030975695919610813,0.0,0.0,0.0015200423636503126,0.0007351268359186707,0.0018297993228464208,0.0006190536991076752,0.0003760534806181091,0.0005249351839245287,0.0,0.0,0.00030975695919610813,0.0,0.0,0.0,0.0,0.0,0.0010343274768046177,0.0003320130077214487,0.0004634588383203542,0.0,0.0 +104509,50.0,the Greater Atlanta and Macon Area,G1300770170306,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,191056.0,,64491.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,283757.1568865895,0.0,0.0,0.03978149008299711,0.04436303355144535,0.0,0.08414452363444246,0.04969161223799221,0.0030305273752646448,0.011123910944463305,0.00037459340861453657,0.019923879668107766,0.026616859083255607,0.0030305273752646448,0.007607193885683834,0.00037459340861453657,0.002152316330178488,0.023074753154736605,0.003516717058779472,0.017771563337929275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00296407696895586,0.0,0.0,0.00474068431952844,0.00425049800610293,0.007704761288484299,0.003171880345050703,0.0003611421688288957,0.0009065347902814652,4.4639582245730034e-05,0.00025648743312164625,0.0015417192855168946,0.00023496634936324854,0.001187391334075717,0.0,0.0,0.0,0.004550052621332329,0.00027749268753449137,0.0010185698928404847,3.42999481006425e-05,0.0018243461386763516 +104510,81.0,the Columbus-Albany Area,G1302150001200,ComStock DOE Ref 1980-2004,gen3_t5_cfl,25001_50000,NaturalGas,102520.0,,3897.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004913951937206214,0.0006627254491587336,0.0,0.005576695116726368,0.0025526578640064222,0.00137326968306735,0.0010481303153464213,0.0,0.0006026195239447546,0.0025526578640064222,0.00137326968306735,0.0008536991720141223,0.0,0.0001343074877569,0.0,0.000194431143332299,0.0004683120361878546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.427982749438e-05,0.0,0.0,0.0005855866228083355,0.00019075024350557126,0.0006298664503027154,0.0003041955470607467,0.00016365002470286385,0.0001017337616285772,0.0,1.600517652155751e-05,0.0,1.2990865972052304e-05,3.129014617178712e-05,0.0,0.0,0.0,0.0002883129728244616,0.00015510557462386886,0.00011838232274915117,0.0,6.806357752851477e-05 +104511,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,22238.0,,1781.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005220614737253357,0.0013816682002919334,0.0,0.00660228293754529,0.002718377805197766,0.0007431105963997701,0.0020554002448189067,0.0004161904504537123,0.000669122979892067,0.002718377805197766,0.0007431105963997701,0.0013429358852021088,0.0004161904504537123,0.0,0.0,0.0007124643596167978,0.000669122979892067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.231457356568556e-05,0.0,0.0,0.0006221279136856226,0.0002696494165721504,0.0007144424872513081,0.00032394244694768304,8.855467569305752e-05,0.00016003439106749718,4.959639997738487e-05,0.0,0.0,4.760248772091387e-05,4.4706683224442444e-05,0.0,0.0,0.0,0.00029415955341597646,8.04130613330009e-05,0.00022241780261409677,4.5036564383129004e-05,7.240675544402417e-05 +104512,50.0,the Greater Atlanta and Macon Area,G1301210012000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,225601.0,,3139.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,306613.1346040191,0.0,0.0,0.024200211821582992,0.0011665212976585521,0.0,0.02536673311924154,0.013816370470716469,0.0031109946993892108,0.00812050716991539,0.0,0.00031886077922046926,0.013816370470716469,0.0031109946993892108,0.006953985872256838,0.0,0.00031886077922046926,0.0,0.0011665212976585521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.794050823004594e-05,0.0,0.0,0.002883890736690963,0.000969856676423355,0.0029618312449210087,0.0016464691759290329,0.00037073100275352745,0.0008286925580624735,0.0,3.79979999459287e-05,0.0,7.794050823004594e-05,0.0,0.0,0.0,0.0,0.0016132056721380281,0.0003632411497421119,0.0009481540940806654,0.0,3.7230328960203256e-05 +104513,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock DOE Ref 1980-2004,gen3_t5_cfl,200001_500000,DistrictHeating,535990.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,2015986.1613818365,0.139915899912678,0.004540355569968336,0.10787665585177013,0.0,0.0,0.25233291133441654,0.16293956334605783,0.0071649023038578815,0.08182909136910362,0.0,0.00039929972150576446,0.018882607584917253,0.0071649023038578815,0.08182909136910362,0.0,0.0,0.0,0.0,0.0,0.004141055848462572,0.0,0.00039929972150576446,0.139915899912678,0.0,0.0,0.0,0.0,0.0,0.0,0.012855454959928672,0.004460632190941612,0.012855454959928672,0.0022502042672462776,0.0008538277177047177,0.009751416469127952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008301185155390363,0.00036502602206124206,0.004168898115368119,0.0,2.0342885746387713e-05 +104514,50.0,the Greater Atlanta and Macon Area,G1301210006100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,3878.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0009030785381594977,0.0,0.0,0.0009030785381594977,0.0005433027673935105,0.00019237665351762908,0.00012877491381210166,0.0,3.8624203436256564e-05,0.0005433027673935105,0.00019237665351762908,0.00012877491381210166,0.0,3.8624203436256564e-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.00010762294645443764,3.18233110660475e-05,0.00010762294645443764,6.474724198728829e-05,2.2926181285192967e-05,1.5346545254103802e-05,0.0,4.602977927852585e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.474724198728829e-05,2.2926181285192967e-05,1.5346545254103802e-05,0.0,4.602977927852585e-06 +104515,50.0,the Greater Atlanta and Macon Area,G1301130140203,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,Electricity,7684.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.001611464624736666,0.0,0.0,0.001611464624736666,0.0010357406844373467,0.0003122192033658856,0.00022297827080117283,0.0,4.0526466132260637e-05,0.0010357406844373467,0.0003122192033658856,0.00022297827080117283,0.0,4.0526466132260637e-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.00019203474938981658,5.4473091520899845e-05,0.00019203474938981658,0.00012342697426650958,3.720648629370549e-05,2.6571837628564234e-05,0.0,4.829451201037267e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012342697426650958,3.720648629370549e-05,2.6571837628564234e-05,0.0,4.829451201037267e-06 +104516,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,26107.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006640468243455253,0.0,0.0,0.006640468243455253,0.003742246965482443,0.0010381391895757867,0.001732547780691012,0.0,0.00012753430770601204,0.003742246965482443,0.0010381391895757867,0.001732547780691012,0.0,0.00012753430770601204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007913282860850651,0.00023764436379796716,0.0007913282860850651,0.00044595437681987503,0.00012371249669244525,0.0002064634624532619,0.0,1.5197950119482999e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00044595437681987503,0.00012371249669244525,0.0002064634624532619,0.0,1.5197950119482999e-05 +104517,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1302130010202,ComStock 90.1-2007,gen4_led,5001_10000,Propane,16119.0,,,4638.0,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014214237064879098,0.0,0.00043710646950868647,0.0018585301759965964,0.001353842447738912,0.00031515646776611293,0.00018956163409100915,0.0,0.0,0.0009167359782302255,0.00031515646776611293,0.00018956163409100915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00043710646950868647,0.0,0.0,0.0,0.0,3.525232956670011e-05,0.00016938831211185058,8.788805568591837e-05,0.00020464064167855067,0.00010924565229624928,3.7556586317205044e-05,2.2589693061456888e-05,0.0,0.0,0.0,0.0,0.0,3.525232956670011e-05,0.0,0.0,0.0001490700505244086,3.470151984926444e-05,2.087241570733032e-05,0.0,0.0 +104518,50.0,the Greater Atlanta and Macon Area,G1300890023602,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,7263.0,,865.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005143465328788894,0.0002518882601372758,0.0,0.0007662347930161653,0.0005651919383376858,0.00012984713759638903,7.116534348265252e-05,0.0,0.0,0.00031330367820041,0.00012984713759638903,7.116534348265252e-05,0.0,0.0,0.0002518882601372758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.682898373658907e-05,0.0,0.0,6.129354670971532e-05,2.9907036928404738e-05,7.812253044630439e-05,3.733571125018977e-05,1.5473598215662745e-05,8.480617688724635e-06,0.0,0.0,1.682898373658907e-05,0.0,0.0,0.0,0.0,0.0,5.762492751991247e-05,1.3238744902602418e-05,7.255761241356133e-06,0.0,0.0 +104519,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock 90.1-2004,gen4_led,50001_100000,NaturalGas,44983.0,,5202.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.004052286305154974,0.001531288595830178,0.0,0.005583574900985151,0.0015424903021288394,0.001542582370947733,0.0024985022279085793,0.0,0.0,1.1201706298661516e-05,0.001542582370947733,0.0024985022279085793,0.0,0.0,0.001531288595830178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010231246506980705,0.0,0.0,0.00048290245212364143,0.0002610267848886393,0.0005852149171934485,1.3348838241540815e-06,0.00018382630284186514,0.0002977412654576222,0.0,0.0,0.00010231246506980705,0.0,0.0,0.0,0.0,0.0,0.00016166852785887373,0.0001616781775989024,0.0002618682117356724,0.0,0.0 +104520,50.0,the Greater Atlanta and Macon Area,G1300890021412,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Electricity,4144.0,,45.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.000696807096253665,3.5977577076598724e-05,0.0,0.0007327846733302638,0.0003847533070352581,0.00022827152352048846,9.321087210419947e-05,0.0,2.654897067031768e-05,0.00034877572995865933,0.00022827152352048846,9.321087210419947e-05,0.0,2.654897067031768e-05,3.5977577076598724e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4038631567480755e-06,0.0,0.0,8.303491741007718e-05,3.2024992276324676e-05,8.543878056682526e-05,4.156180969950093e-05,2.7201943270244865e-05,1.1107460168683322e-05,0.0,3.1637042716480444e-06,2.4038631567480755e-06,0.0,0.0,0.0,0.0,0.0,4.486018139919538e-05,2.6615240898920734e-05,1.0867890033725968e-05,0.0,3.0954682349831723e-06 +104521,50.0,the Greater Atlanta and Macon Area,G1301710970300,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,58720.0,,6589.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003022636554167762,0.001120541111385917,0.0,0.004143177665553679,0.001656051217355772,0.0009728294703954573,0.0012195297191940717,0.0,0.00029474952824695775,0.0013210892294081343,0.0009728294703954573,0.00043395059575579236,0.0,0.00029474952824695775,0.0003349619879476375,0.0007855791234382795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.486846796209589e-05,0.0,0.0,0.00036020135120568567,0.0001766581369479615,0.0004350698191677815,0.00015743147314219803,0.0001159300774173416,5.1712995640253615e-05,0.0,3.512469211536572e-05,2.2380339827211116e-05,5.2488128134884765e-05,0.0,0.0,0.0,0.0,0.00017389983288859892,0.0001021555858646672,0.00012806126534489206,0.0,3.0951273226912363e-05 +104522,50.0,the Greater Atlanta and Macon Area,G1300450910104,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,103803.0,,3281.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.009248711822694603,0.0009658325997950042,0.0,0.010214544422489607,0.0022992346142175946,0.0031335622510269426,0.004781747557245071,0.0,0.0,0.0013334020144225905,0.0031335622510269426,0.004781747557245071,0.0,0.0,0.0009658325997950042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.453069560011206e-05,0.0,0.0,0.0011021516236176848,0.00036412292202059733,0.0011666823192177968,0.00015889901462004684,0.00037342073024718934,0.0005698318787504487,0.0,0.0,6.453069560011206e-05,0.0,0.0,0.0,0.0,0.0,0.000262613412912978,0.0003579084414565013,0.0005461604648483176,0.0,0.0 +104523,50.0,the Greater Atlanta and Macon Area,G1300630040522,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,30213.0,,1877.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0025378964746207914,0.0005467247898795327,0.0,0.0030846212645003245,0.0019686952211573224,0.0007210085034533528,0.00039491753988964926,0.0,0.0,0.0014219704312777896,0.0007210085034533528,0.00039491753988964926,0.0,0.0,0.0005467247898795327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.652854045012983e-05,0.0,0.0,0.0003024356790623616,0.00011165856813157291,0.00033896421951249144,0.00016945316615184455,8.592103678469936e-05,4.706147612581773e-05,0.0,0.0,3.652854045012983e-05,0.0,0.0,0.0,0.0,0.0,0.00021633684717714015,7.923049985020601e-05,4.339687248514528e-05,0.0,0.0 +104524,50.0,the Greater Atlanta and Macon Area,G1301350050607,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,178675.0,,22082.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.00919732357050825,0.003755255088044343,0.0,0.012952578658552594,0.008201816967856544,0.0022964896022094994,0.001166799624330835,0.0,0.0012874547337942942,0.005823501747693503,0.0022964896022094994,0.0008491247387677488,0.0,0.00022818975147607953,0.0023783152201630425,0.00031767488556308607,0.0010592649823182145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002509046204187296,0.0,0.0,0.0010960272126022178,0.0005666839036105402,0.0013469318330209476,0.0006939754091695983,0.0002736682120818939,0.00010118854832588792,0.0,2.7192930132053565e-05,0.00015890539086170572,2.1225214988065888e-05,7.077401456895799e-05,0.0,0.0,0.0,0.0008529026268698082,0.00023881074425092464,0.0001213348784205496,0.0,0.0001338817397087188 +104525,50.0,the Greater Atlanta and Macon Area,G1300570090100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,42748.0,,6291.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,2000 to 2012,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.0044303822547426715,0.001851902912822279,0.0,0.006282315857171248,0.002604749644911226,0.001447137695361877,0.0022304285168981454,0.0,0.0,0.0007528467320889469,0.001447137695361877,0.0022304285168981454,0.0,0.0,0.001851902912822279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012373365597465454,0.0,0.0,0.0005279614607522731,0.00028804099129984027,0.0006516951167269276,8.971552284698784e-05,0.0001724530497870802,0.00026579654534876425,0.0,0.0,0.00012373365597465454,0.0,0.0,0.0,0.0,0.0,0.0002702033235000672,0.00015011861720105296,0.00023137317602580748,0.0,0.0 +104526,35.0,Eastern Counties in South Carolina and Georgia,G1301030030204,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,49614.0,,4793.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002445087761270962,0.0008151533662869276,0.0,0.0032602411275578897,0.0011226332940334834,0.0008161817272492908,0.0006492326441180735,0.0,0.0006721934621570418,0.0010653110355624527,0.0008161817272492908,0.00044173422441919546,0.0,0.00012187850440144296,5.73222584710307e-05,0.00020749841969887794,0.0005503149577555989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.446347091599453e-05,0.0,0.0,0.0002913760600319521,0.00013312266423825604,0.0003458395309479466,0.0001269509165140954,9.726269123049986e-05,5.2640555456230806e-05,0.0,1.452400972168783e-05,3.829916290840898e-06,1.3863752041976813e-05,3.676861795085673e-05,0.0,0.0,0.0,0.00011908658183387518,8.657884330525414e-05,6.886923522925923e-05,0.0,7.130487057955802e-05 +104527,50.0,the Greater Atlanta and Macon Area,G1301210010512,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,25692.0,,1929.0,,8.53126424238864,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005727530986309958,0.0014962479299000374,0.0,0.0072237789162099934,0.0034768519503805564,0.0007106045616062218,0.0021484710061307824,0.00041610958967064376,0.00047174180842179085,0.0034768519503805564,0.0007106045616062218,0.0006522230762307448,0.00041610958967064376,0.00047174180842179085,0.0,0.0014962479299000374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99716943603331e-05,0.0,0.0,0.0006825408345699789,0.0002863850525103661,0.0007825125289303121,0.00041433096347470006,8.468162488989403e-05,7.772439535296828e-05,4.9587123541578814e-05,5.62167273108377e-05,0.0,9.99716943603331e-05,0.0,0.0,0.0,0.0,0.00037662838854376254,7.697591233365703e-05,0.00023273213367151427,4.5074879935024926e-05,5.110121444635355e-05 +104528,50.0,the Greater Atlanta and Macon Area,G1301390000800,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,16523.0,,34.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,56663.68529324113,0.0,0.0,0.0014740524800849622,9.882053227860295e-06,0.0,0.0014839345333128228,0.0006661179046916388,0.00033528394880240293,0.00048253267981878084,0.0,0.0,0.0006562358514637786,0.00033528394880240293,0.00048253267981878084,0.0,0.0,9.882053227860295e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.604364052485413e-07,0.0,0.0,0.00017566014239175755,6.733850558786507e-05,0.00017632057879700608,7.820242811440429e-05,3.995517594116199e-05,5.750253833619129e-05,0.0,0.0,6.604364052485413e-07,0.0,0.0,0.0,0.0,0.0,7.91478949142559e-05,3.983832075274112e-05,5.7334363130009024e-05,0.0,0.0 +104529,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,73766.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.0065047493083900555,0.0,0.0,0.0065047493083900555,0.0039977731579968956,0.0019240460299838268,0.000582930120409333,0.0,0.0,0.0039977731579968956,0.0019240460299838268,0.000582930120409333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000775159594294887,0.00020907916855743926,0.000775159594294887,0.0004764076326875159,0.00022928519905959107,6.946676254778001e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004764076326875159,0.00022928519905959107,6.946676254778001e-05,0.0,0.0 +104530,50.0,the Greater Atlanta and Macon Area,G1300670030345,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,119851.0,,15976.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0060107875553735216,0.002716947392924631,0.0,0.008727734948298151,0.0029021232875956625,0.0016515654359164987,0.0025934908863568034,0.0,0.001580573068790607,0.002304255500511482,0.0016515654359164987,0.0018200570604912604,0.0,0.00023492728881569964,0.0005978677870841805,0.0007734338258655432,0.0013456457799749073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018153013591424322,0.0,0.0,0.0007162948867159358,0.00036562198949162427,0.000897825022630179,0.00027459403905032495,0.00019681412226359233,0.00021689297017254375,0.0,2.7995868125182216e-05,3.9945941143642075e-05,5.167621128611965e-05,8.990798348448148e-05,0.0,0.0,0.0,0.000298542396371606,0.00016989709055796785,0.00026679327769784094,0.0,0.0001625940819309927 +104531,81.0,the Columbus-Albany Area,G1302150000900,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,8816.0,,545.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.000851806599781696,0.00020242176578536046,0.0,0.0010542283655670564,0.0005641383016977533,0.00011946139048933126,0.00033777001002124565,0.0,3.281991493495412e-05,0.00044343696164771547,0.00011946139048933126,0.0002888694992208772,0.0,0.0,0.00012070134005003787,4.890051080036848e-05,3.281991493495412e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3524494208034505e-05,0.0,0.0,0.00010150686646481156,3.7330677707619505e-05,0.00011503136067284607,5.284285947428939e-05,1.4235803544148392e-05,3.4423585929817136e-05,0.0,0.0,8.064471565472336e-06,3.267211273074186e-06,2.1928113694879838e-06,0.0,0.0,0.0,6.155554011967383e-05,1.3034942660138366e-05,3.6855528760436625e-05,0.0,3.5811211265446618e-06 +104532,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970300,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,136089.0,,1102.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,240343.828889517,0.0,0.0,0.01673715935497708,0.00032107931965647446,0.0,0.017058238674633554,0.010881250877776277,0.005085846610655478,0.0010911108126023588,0.0,0.0,0.010560171558119802,0.005085846610655478,0.0010911108126023588,0.0,0.0,0.00032107931965647446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1453187866884128e-05,0.0,0.0,0.00199453377977756,0.0005364943184062469,0.002015986967644444,0.0012584345076844144,0.0006060701609262687,0.0001300254916058262,0.0,0.0,2.1453187866884128e-05,0.0,0.0,0.0,0.0,0.0,0.0012859745006316065,0.0006010585666014178,0.00012895031078052075,0.0,0.0 +104533,50.0,the Greater Atlanta and Macon Area,G1300670031405,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,112926.0,,3557.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01062438134733121,0.0010362864656172164,0.0,0.011660667812948427,0.006270356241528925,0.004509416440525825,0.0008808647572942405,0.0,0.0,0.005234069775911707,0.004509416440525825,0.0008808647572942405,0.0,0.0,0.0010362864656172164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.923866809773123e-05,0.0,0.0,0.0012660866600895737,0.0004204464965862723,0.0013353253281873049,0.0006237338160799783,0.0005373783012384534,0.00010497092320894745,0.0,0.0,6.923866809773123e-05,0.0,0.0,0.0,0.0,0.0,0.000718051970983453,0.0005163973526191906,0.00010087252634162357,0.0,0.0 +104534,85.0,Rural Climate Zone 3A,G1302850960501,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Propane,4421.0,,,939.0,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0007611531996228461,0.0,0.00024100841287634183,0.001002161612499188,0.0003215651026984273,0.0002252940688658734,0.00035266296242440683,0.0,0.0001026394785104805,0.00018319616833256596,0.0002252940688658734,0.00035266296242440683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001383689343658613,0.0001026394785104805,0.0,0.0,0.0,1.943992361334106e-05,9.070110321587944e-05,5.1164182747180114e-05,0.0001101410268292205,2.183015795101304e-05,2.6846659258943345e-05,4.202428600592307e-05,0.0,0.0,0.0,0.0,0.0,1.1160944476705418e-05,8.27897913663564e-06,0.0,3.53411168038301e-05,2.4760597266880962e-05,3.875887912848034e-05,0.0,1.1280433630029101e-05 +104535,50.0,the Greater Atlanta and Macon Area,G1301390001201,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,12784.0,,1967.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011390447377392387,0.0005790208020187583,0.0,0.001718096229364295,0.0007381157210660497,0.00044720894297012494,0.0005327408757218226,0.0,0.0,0.00015909491904729124,0.00044720894297012494,0.0005327408757218226,0.0,0.0,0.0005790208020187583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.868754402791172e-05,0.0,0.0,0.00013573907791920745,8.176913388522324e-05,0.00017442662194711915,1.8959218104086528e-05,5.329354286511359e-05,6.348631695000735e-05,0.0,0.0,3.868754402791172e-05,0.0,0.0,0.0,0.0,0.0,7.493586775360668e-05,4.540208161430112e-05,5.4085556872265526e-05,0.0,0.0 +104536,85.0,Rural Climate Zone 3A,G1300310110500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,9663.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003162304964422419,0.0,0.0,0.003162304964422419,0.00151784021726377,0.000947574943831245,0.0005953255167755349,0.0,0.0001015642865518695,0.00151784021726377,0.000947574943831245,0.0005953255167755349,0.0,0.0001015642865518695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003768443864254519,0.00011077929710122512,0.0003768443864254519,0.00018087742067947942,0.00011292025984768936,7.094353062613843e-05,0.0,1.2103175272144762e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00018087742067947942,0.00011292025984768936,7.094353062613843e-05,0.0,1.2103175272144762e-05 +104537,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,116263.0,,7745.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.01034917972531763,0.002279777403824851,0.0,0.012628957129142485,0.004627532285599114,0.003112079526618551,0.004889376006531114,0.0,0.0,0.002347754881774263,0.003112079526618551,0.004889376006531114,0.0,0.0,0.002279777403824851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015232180789598898,0.0,0.0,0.0012332918568611641,0.0005347875283716287,0.0013856136647571534,0.00027977743690303707,0.0003708605358059147,0.0005826575413736098,0.0,0.0,0.00015232180789598898,0.0,0.0,0.0,0.0,0.0,0.0005077198301857258,0.0003414486147825283,0.0005364485869662055,0.0,0.0 +104538,50.0,the Greater Atlanta and Macon Area,G1301210011202,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,32075.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.004352354557833209,0.0,0.0,0.004352354557833209,0.002674091694499671,0.0013429686991401968,0.0003352941641933424,0.0,0.0,0.002674091694499671,0.0013429686991401968,0.0003352941641933424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005186618596344722,0.00015626195040964957,0.0005186618596344722,0.00031866644885493423,0.00016003903948342703,3.995637129611107e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031866644885493423,0.00016003903948342703,3.995637129611107e-05,0.0,0.0 +104540,84.0,Rural Climate Zone 2A - Georgia and Florida,G1301310950200,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,8109.0,,23.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0016982243450891993,1.8112849148908326e-05,0.0,0.0017163371942381077,0.0008475820916804224,0.0003682118922873967,0.00045464078434497295,0.0,4.590242592531562e-05,0.0008294692425315142,0.0003682118922873967,0.00045464078434497295,0.0,4.590242592531562e-05,1.8112849148908326e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2097142708940197e-06,0.0,0.0,0.00020237204311284539,6.512839857574896e-05,0.00020358175738373943,9.884523549304662e-05,4.387865075431685e-05,5.417810943317154e-05,0.0,5.470047432310388e-06,1.2097142708940197e-06,0.0,0.0,0.0,0.0,0.0,0.00010053517008811495,4.367511487434503e-05,5.392679839718657e-05,0.0,5.4446740240928775e-06 +104541,50.0,the Greater Atlanta and Macon Area,G1302230120101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,56876.0,,7697.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002927690468763379,0.0013089262014739779,0.0,0.004236616670237357,0.0015138359884055283,0.0008421744370910882,0.0015716724273577402,0.0,0.0003089515477444201,0.0015138359884055283,0.0008421744370910882,0.0002627462258837625,0.0,0.0003089515477444201,0.0,0.0013089262014739779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.745433955649042e-05,0.0,0.0,0.00034888817448494185,0.00017411315550973242,0.00043634251404143224,0.00018040140516886695,0.00010036057605457903,3.131104605471287e-05,0.0,3.681726010549779e-05,0.0,8.745433955649042e-05,0.0,0.0,0.0,0.0,0.00015591474340071867,8.673820167005232e-05,0.0001618715006766131,0.0,3.181989439989603e-05 +104542,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,6096.0,,887.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0005375519628493317,0.0002583882104169547,0.0,0.0007959401732662864,0.0005842361851851563,0.0001723094296103661,3.939455847076412e-05,0.0,0.0,0.0003258479747682015,0.0001723094296103661,3.939455847076412e-05,0.0,0.0,0.0002583882104169547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7263330685344163e-05,0.0,0.0,6.405844184837209e-05,3.3817967419263186e-05,8.132177253371625e-05,3.88303177844579e-05,2.053359366062916e-05,4.694530403285039e-06,0.0,0.0,1.7263330685344163e-05,0.0,0.0,0.0,0.0,0.0,5.969182578462249e-05,1.7604976744276757e-05,4.0249700048170205e-06,0.0,0.0 +104543,50.0,the Greater Atlanta and Macon Area,G1302550160100,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,14111.0,,1009.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012572917908042875,0.00029701400974916747,0.0,0.0015543058005534553,0.000533937770367433,0.00042483621997909966,0.0005955318102069224,0.0,0.0,0.0002369237606182655,0.00042483621997909966,0.0005955318102069224,0.0,0.0,0.00029701400974916747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9844292503404776e-05,0.0,0.0,0.00014982842555467441,6.766073543902968e-05,0.0001696727180580792,2.823363223203687e-05,5.06267060865397e-05,7.096808723609786e-05,0.0,0.0,1.9844292503404776e-05,0.0,0.0,0.0,0.0,0.0,5.828626048995896e-05,4.637640556170261e-05,6.501005200641761e-05,0.0,0.0 +104544,50.0,the Greater Atlanta and Macon Area,G1301350050314,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,56545.0,,2629.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.0049821506863690695,0.000773899802009171,0.0,0.005756050488378241,0.0025573342031812753,0.0010769289745926882,0.0021217873106042775,0.0,0.0,0.001783434401172104,0.0010769289745926882,0.0021217873106042775,0.0,0.0,0.000773899802009171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.170687532690483e-05,0.0,0.0,0.0005937140334271372,0.0002275949786871016,0.000645420908754042,0.00021252870463544287,0.00012833570991124596,0.0002528496188804484,0.0,0.0,5.1706875326904834e-05,0.0,0.0,0.0,0.0,0.0,0.00028675164832859114,0.00012075510436340997,0.0002379141560620409,0.0,0.0 +104545,50.0,the Greater Atlanta and Macon Area,G1300890023423,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,33845.0,,2226.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0030155607148122754,0.0006551310256370613,0.0,0.003670691740449337,0.0016009233125196657,0.0009147037157030313,0.0011550647122266396,0.0,0.0,0.0009457922868826045,0.0009147037157030313,0.0011550647122266396,0.0,0.0,0.0006551310256370613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3771567134593775e-05,0.0,0.0,0.00035935839024747246,0.00015836913601804112,0.00040312995738206627,0.00011270819123393657,0.00010900342785798815,0.00013764677115554773,0.0,0.0,4.3771567134593775e-05,0.0,0.0,0.0,0.0,0.0,0.00017581976160956704,0.0001004563978677877,0.00012685379790471147,0.0,0.0 +104546,50.0,the Greater Atlanta and Macon Area,G1300670030215,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,30303.0,,174.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007770908527324107,0.0001380381060709041,0.0,0.007908946633395012,0.004778153064067268,0.0007010251570143697,0.00229173030624247,0.0,0.0001380381060709041,0.004778153064067268,0.0007010251570143697,0.00229173030624247,0.0,0.0,0.0,0.0,0.0001380381060709041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.22391814048655e-06,0.0,0.0,0.0009260398620808866,0.0003197704765983439,0.0009352637802213732,0.0005694006291403193,8.353942623750859e-05,0.0002730998067030588,0.0,0.0,0.0,0.0,9.22391814048655e-06,0.0,0.0,0.0,0.0005650352321643607,8.289895845435717e-05,0.000271006045282183,0.0,1.6323544320472172e-05 +104547,50.0,the Greater Atlanta and Macon Area,G1300210013202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,80753.0,,3143.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006595444876311181,0.0009156121550510287,0.0,0.0075110570313622095,0.0048196523851830216,0.0019456112855846307,0.0007457933605945581,0.0,0.0,0.003904040230131993,0.0019456112855846307,0.0007457933605945581,0.0,0.0,0.0009156121550510287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.11756007621717e-05,0.0,0.0,0.0007859678256208128,0.0002469459433282199,0.0008471434263829844,0.00046523776156995154,0.00023185515159510178,8.887491245575947e-05,0.0,0.0,6.11756007621717e-05,0.0,0.0,0.0,0.0,0.0,0.0005435901789203143,0.00021943806364370619,8.411518381896404e-05,0.0,0.0 +104548,50.0,the Greater Atlanta and Macon Area,G1301510070111,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,8998.0,,6253.0,,8.53126424238864,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.00211232623609915,0.004849948907667225,0.0,0.006962356004549444,0.001099787510515046,0.00023845844926908828,0.005048623851666598,0.0004237913640621539,0.00015169482903655806,0.001099787510515046,0.00023845844926908828,0.00019867494399937265,0.0004237913640621539,0.00015169482903655806,0.0,0.004849948907667225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003240467792262002,0.0,0.0,0.00025172599014968594,0.00039603593757314253,0.0005757727693758862,0.00013106171542418094,2.8417101594434934e-05,2.3676099904213847e-05,5.050323141961123e-05,1.80774779895422e-05,0.0,0.0003240467792262002,0.0,0.0,0.0,0.0,9.095020424702309e-05,1.9720031786226826e-05,0.00041751098833667623,3.504668924775002e-05,1.2544855758210082e-05 +104549,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen1_t12_incandescent,200001_500000,Electricity,294110.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02620484206060058,0.0,0.0,0.026204842060600583,0.0052843205499762515,0.010767755265611996,0.010152796934618631,0.0,0.0,0.0052843205499762515,0.010767755265611996,0.010152796934618631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031227822084548386,0.0008754950663866168,0.0031227822084548386,0.0006297226351937771,0.0012831733345573311,0.001209889895926938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006297226351937771,0.001283173334557331,0.001209889895926938,0.0,0.0 +104550,35.0,Eastern Counties in South Carolina and Georgia,G1302450010800,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,47625.0,,11014.0,,7.56685751697572,Food Service,Small Packaged Unit,1946 to 1959,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.009230360269709142,0.00757635429814712,0.0,0.016806642847885245,0.0055448861191299366,0.0006421806204737814,0.005301181657618891,0.0003795420866146137,0.004938780644077008,0.004618407533550273,0.0006421806204737814,0.0029727210786260625,0.0003795420866146137,0.00061736551050238,0.0009264785855796635,0.002328460578992828,0.004321415133574628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005062068985422185,0.0,0.0,0.0010999613863273785,0.0007787062397787925,0.0016061682848695971,0.0005503652950470205,7.652722807440053e-05,0.0003542525213821563,4.522918147975515e-05,7.357006692700913e-05,6.190178454124821e-05,0.00015557387652238462,0.00028873123747858565,0.0,0.0,0.0,0.000529910720919544,6.137157522167808e-05,0.0005066205028490435,3.627187581786022e-05,0.0004719867559655121 +104551,35.0,Eastern Counties in South Carolina and Georgia,G1300510010700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,200001_500000,NaturalGas,365040.0,,3980.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,1133273.7058648225,0.0,0.0,0.03104634228130728,0.0011714222723833152,0.0,0.0322177952432969,0.012206391940029412,0.010235351975559451,0.009776020638101733,0.0,0.0,0.011034969667646097,0.010235351975559451,0.009776020638101733,0.0,0.0,0.0011714222723833152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.82679038951638e-05,0.0,0.0,0.0036997343915218697,0.0010952831556295033,0.0037780022954170336,0.001315016642503879,0.001219727701582052,0.0011649900474359385,0.0,0.0,7.82679038951638e-05,0.0,0.0,0.0,0.0,0.0,0.0014313759343226864,0.001200243001299421,0.0011463797609948788,0.0,0.0 +104552,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2007,gen4_led,50001_100000,NaturalGas,208294.0,,11987.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.00950967934764532,0.0020384241917406304,0.0,0.011548103539385953,0.006700197198469433,0.002022059068149922,0.001711848664744678,0.0,0.0011140163383833376,0.006288427284850128,0.002022059068149922,0.0009735741455750993,0.0,0.000225636579431592,0.0004117699136193062,0.0007382745191695787,0.0008883797589517458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001361956018306783,0.0,0.0,0.0011332506790439807,0.0003595922013311944,0.0012694462808746588,0.0007493801031724222,0.0002409649924332447,0.00011601900771195112,0.0,2.688868862032945e-05,2.7512061242395033e-05,4.932719247640747e-05,5.9356348111875804e-05,0.0,0.0,0.0,0.0007365313608173707,0.00022227852001994487,0.00018817807733268144,0.0,0.00012246027174688199 +104553,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock DOE Ref 1980-2004,gen3_t5_cfl,_1000,Electricity,1960.0,,292.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,8726.05822017302,0.0,0.0,0.000403279691552863,0.00023182792769127868,0.0,0.0006351076192441416,0.000435039207868757,8.998529622836648e-05,8.303790203426466e-05,0.0,2.7127920186492836e-05,0.00020321128017747835,8.998529622836648e-05,8.303790203426466e-05,0.0,2.7127920186492836e-05,0.00023182792769127868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5488428576877368e-05,0.0,0.0,4.806150517904336e-05,3.0031172938859872e-05,6.354993375592073e-05,2.4218030809046253e-05,1.072414225488088e-05,9.896175389614343e-06,0.0,3.233013473897913e-06,1.5488428576877368e-05,0.0,0.0,0.0,0.0,0.0,4.353075290482394e-05,9.004079688298183e-06,8.308911771186928e-06,0.0,2.7144652001487174e-06 +104554,50.0,the Greater Atlanta and Macon Area,G1300890021213,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,15378.0,,105.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.003451614308362517,8.303790203426465e-05,0.0,0.0035347349174705204,0.0013544937466286378,0.0005423102825086388,0.0015464568647775702,0.0,9.147402355567401e-05,0.0012714558445943733,0.0005423102825086388,0.0015464568647775702,0.0,9.147402355567401e-05,8.303790203426465e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.549695208349484e-06,0.0,0.0,0.0004113270624958605,0.0001341341494876957,0.0004168767577042099,0.00015151872455248518,6.462683125548983e-05,0.00018429045155027434,0.0,1.0900911296106719e-05,5.549695208349484e-06,0.0,0.0,0.0,0.0,0.0,0.00015974520709724008,6.395855913394415e-05,0.00018238480077573395,0.0,1.0788190697291783e-05 +104555,50.0,the Greater Atlanta and Macon Area,G1301170130601,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,7227.0,,372.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0017138559820259287,0.00029526425324932743,0.0,0.002009120235275256,0.0010072067439972857,0.0004984755334268058,0.00041312183332784056,0.0,9.031612452332371e-05,0.0007119424907479582,0.0004984755334268058,0.00041312183332784056,0.0,9.031612452332371e-05,0.00029526425324932743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.972799287742211e-05,0.0,0.0,0.0002042355969880588,7.187382235235248e-05,0.00022396358986548093,8.484026729433499e-05,5.940198547664464e-05,4.923061514117139e-05,0.0,1.0762729075907739e-05,1.972799287742211e-05,0.0,0.0,0.0,0.0,0.0,0.0001122768235378654,5.556679384650311e-05,4.605212133122333e-05,0.0,1.0067851149889065e-05 +104556,50.0,the Greater Atlanta and Macon Area,G1300210010200,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,15994.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0036418405779629244,0.0,0.0,0.0036418405779629235,0.002120443956528364,0.0005171673320918893,0.0009278079532075508,0.0,7.642133613512006e-05,0.002120443956528364,0.0005171673320918893,0.0009278079532075508,0.0,7.642133613512006e-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.00043399034505351726,0.00013165703671521984,0.00043399034505351726,0.0002526887667540725,6.162972378942254e-05,0.00011056488748916395,0.0,9.106967020858218e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00025268876675407255,6.162972378942255e-05,0.00011056488748916398,0.0,9.10696702085822e-06 +104557,50.0,the Greater Atlanta and Macon Area,G1300890021810,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,9343.0,,1055.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0019274883534945596,0.0008369128791680517,0.0,0.002764401232662611,0.0015976525434222013,0.0003973247822436329,0.0006977168740647975,0.0,7.178974000571884e-05,0.0007607396642541497,0.0003973247822436329,0.0006977168740647975,0.0,7.178974000571884e-05,0.0008369128791680517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5916868188400604e-05,0.0,0.0,0.00022969316171783937,0.0001147982136129558,0.00028561002990624,9.065512557308246e-05,4.734803470896805e-05,8.3144883598013e-05,0.0,8.554973798373076e-06,5.5916868188400604e-05,0.0,0.0,0.0,0.0,0.0,0.00016506489192492934,4.1050460258185055e-05,7.208611214364053e-05,0.0,7.41711063782361e-06 +104558,50.0,the Greater Atlanta and Macon Area,G1300630040609,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,34623.0,,5317.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.002948994958752558,0.0015651085419702464,0.0,0.004514103500722805,0.0027240401445903966,0.0008098987101963765,0.0009801646459360316,0.0,0.0,0.0011589316026201504,0.0008098987101963765,0.0009801646459360316,0.0,0.0,0.0015651085419702464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010457200094218665,0.0,0.0,0.00035142574644627045,0.00020407822295365598,0.0004559977473884571,0.00013810752789595815,9.65139862080432e-05,0.00011680423234226918,0.0,0.0,0.00010457200094218665,0.0,0.0,0.0,0.0,0.0,0.000275172283827797,8.181291975322005e-05,9.901254380744002e-05,0.0,0.0 +104559,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,230756.0,,5074.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.020348398086529145,0.0014780704694393168,0.0,0.021826498929567898,0.015486344156531018,0.00522106987535235,0.0011190545240850906,0.0,0.0,0.014008273687091703,0.00522106987535235,0.0011190545240850906,0.0,0.0,0.0014780704694393168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.875649277906177e-05,0.0,0.0,0.0024248807328606354,0.0006722862761878278,0.002523637225639697,0.0016693399067592804,0.0006221851809574317,0.00013335564514392308,0.0,0.0,9.875649277906178e-05,0.0,0.0,0.0,0.0,0.0,0.0017905718516104307,0.0006036738341601747,0.00012938802799362006,0.0,0.0 +104560,35.0,Eastern Counties in South Carolina and Georgia,G1302450000300,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,103128.0,,2546.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.009372685314501457,0.0007418144190682126,0.0,0.010114499733569671,0.0074251908657516855,0.0020529819595970834,0.0006362965346214629,0.0,0.0,0.006683376446683474,0.0020529819595970834,0.0006362965346214629,0.0,0.0,0.0007418144190682126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.956358596370672e-05,0.0,0.0,0.0011169240942374744,0.00036878085284460747,0.001166487680201181,0.0007964445549676572,0.0002446497389772673,7.582618073167689e-05,0.0,0.0,4.956358596370672e-05,0.0,0.0,0.0,0.0,0.0,0.0008563343611839565,0.00023676684231817136,7.338297376460435e-05,0.0,0.0 +104561,50.0,the Greater Atlanta and Macon Area,G1301390001003,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,10183.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.002445234635102624,0.0,0.0,0.002445234635102624,0.0009823119148017546,0.00042006922752194244,0.000966349449570068,0.0,7.650404320885937e-05,0.0009823119148017546,0.00042006922752194244,0.000966349449570068,0.0,7.650404320885937e-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.0002913904851865332,9.465900006979842e-05,0.0002913904851865332,0.00011705884635753277,5.0058253822506423e-05,0.00011515665242413172,0.0,9.116732582362363e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011705884635753277,5.0058253822506423e-05,0.00011515665242413172,0.0,9.116732582362363e-06 +104562,50.0,the Greater Atlanta and Macon Area,G1300210012600,ComStock 90.1-2007,gen1_t12_incandescent,10001_25000,NaturalGas,40427.0,,466.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,56080.226740887294,0.0,0.0,0.003378182103066195,0.0001358003630861884,0.0,0.0035139824661523833,0.002044295110157886,0.0012540651735858971,0.00021559180880916244,0.0,0.0,0.0019084947470716976,0.0012540651735858971,0.00021559180880916244,0.0,0.0,0.0001358003630861884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.07348370794115e-06,0.0,0.0,0.00040257218163057134,0.00011369663432066779,0.00041164566533851245,0.0002274320538439262,0.0001494448012080725,2.5691707008692566e-05,0.0,0.0,9.07348370794115e-06,0.0,0.0,0.0,0.0,0.0,0.0002394790608305551,0.00014690753233150523,2.5255514059509405e-05,0.0,0.0 +104563,50.0,the Greater Atlanta and Macon Area,G1300670030507,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,39782.0,,3202.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0037556405706813778,0.0009425391886150477,0.0,0.0046981797592964255,0.002430678197990656,0.0009644515675116077,0.0013030806834004602,0.0,0.0,0.0014881390093756078,0.0009644515675116077,0.0013030806834004602,0.0,0.0,0.0009425391886150477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.297593593405102e-05,0.0,0.0,0.0004475518832306908,0.00019415579159704364,0.0005105278191647418,0.00017733843364948885,0.00011493168933530288,0.00015528541746251387,0.0,0.0,6.297593593405102e-05,0.0,0.0,0.0,0.0,0.0,0.0002641297062029165,0.00010480215331851285,0.00014159929453013605,0.0,0.0 +104564,50.0,the Greater Atlanta and Macon Area,G1300590130300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,84237.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006693308613699618,0.0,0.0,0.006693308613699619,0.004168958764428065,0.0019392632033021406,0.0005850562723699757,0.0,0.0,0.004168958764428065,0.0019392632033021406,0.0005850562723699757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007976270020492496,0.00016940599423252063,0.0007976270020492496,0.0004968057313436366,0.00023109777007269017,6.97198810772653e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004968057313436365,0.00023109777007269014,6.97198810772653e-05,0.0,0.0 +104565,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,274045.0,,9922.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01410650604049247,0.0016872566534550644,0.0,0.015793762693947534,0.006213126439899163,0.0031055969152521887,0.004736967469511247,0.0,0.0017380718692849362,0.00568144609199604,0.0031055969152521887,0.0035813911639593055,0.0,0.0017380718692849362,0.0005316803479031233,0.0011555763055519413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011273261434024838,0.0,0.0,0.0016810456481106404,0.0004920335986456135,0.0017937782624508887,0.0006770471866321706,0.00037008811141360867,0.0004267876122601874,0.0,0.00020712273780467373,3.55237690067572e-05,7.72088453334912e-05,0.0,0.0,0.0,0.0,0.0007056564902055265,0.0003527184969449191,0.000538001579573087,0.0,0.00019740169572735622 +104566,50.0,the Greater Atlanta and Macon Area,G1301210008602,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7229.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0008829909092548832,0.0,0.0,0.0008829909092548831,0.0006401236081506196,0.00019508962918867999,4.774729831614586e-05,0.0,0.0,0.0006401236081506196,0.00019508962918867999,4.774729831614586e-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.00010522380640447399,3.367794072711947e-05,0.00010522380640447399,7.628192081367306e-05,2.3248340563996304e-05,5.689925481333051e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.628192081367306e-05,2.3248340563996307e-05,5.689925481333051e-06,0.0,0.0 +104567,85.0,Rural Climate Zone 3A,G1301550950200,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,55407.0,,4937.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026471784207367237,0.0008395326132395001,0.0,0.0034867287643376437,0.0015614951999026302,0.0005762899372359763,0.0008077066144905054,0.0,0.0005412370127085319,0.0015614951999026302,0.0005762899372359763,0.0004086139092865369,0.0,0.00010079710467300018,0.0,0.00039909270520396844,0.0004404399080355316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6092863796840125e-05,0.0,0.0,0.00031546006424169713,0.0001420487250716288,0.0003715529280385373,0.00018608091249750186,6.867556005979748e-05,4.869387309288657e-05,0.0,1.2011831490630052e-05,0.0,2.6665137723401778e-05,2.942772607343834e-05,0.0,0.0,0.0,0.0001663961130490048,6.141063101013754e-05,8.607086409460097e-05,0.0,5.767531988479397e-05 +104568,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,12210.0,,2205.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,24034.3828889517,0.0,0.0,0.0012186799302409165,0.0006423712545090132,0.0,0.001861081558349367,0.0013731296833818843,0.0003252708763788843,0.000162650624989161,0.0,0.0,0.0007307584288728712,0.0003252708763788843,0.000162650624989161,0.0,0.0,0.0006423712545090132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.292007595663005e-05,0.0,0.0,0.0001452294963800928,8.02224290004874e-05,0.0001881495723367228,8.708412764271497e-05,3.876237262254601e-05,1.9382996114831812e-05,0.0,0.0,4.292007595663005e-05,0.0,0.0,0.0,0.0,0.0,0.0001388191514402521,3.288387658763183e-05,1.644347363215692e-05,0.0,0.0 +104569,50.0,the Greater Atlanta and Macon Area,G1301210009000,ComStock 90.1-2007,gen5_led,5001_10000,NaturalGas,9152.0,,772.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0019462628592333822,0.0006127767093345286,0.0,0.002559039568567911,0.0015996375131919448,0.0003016326979272542,0.0005965661228816245,0.0,6.112052749334817e-05,0.0010479813313507642,0.0003016326979272542,0.0005965661228816245,0.0,0.0,0.0005516561818411805,0.0,6.112052749334817e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.094275302553138e-05,0.0,0.0,0.00023193267641293902,0.00011533440728716293,0.0002728754294384704,0.0001248860676027686,3.594503105889804e-05,7.109172169669085e-05,0.0,0.0,3.6858977281724166e-05,0.0,4.0837757438072186e-06,0.0,0.0,0.0,0.00017057249865128651,3.216368867076377e-05,6.36130206696515e-05,0.0,6.517402228597316e-06 +104570,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300750960200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,100948.0,,3647.0,,3.3063363735822096,Lodging,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,123987.61400933286,0.0,0.0,0.01023681565710073,0.0010962980307610856,0.0,0.011333113687861817,0.004364446352345323,0.001991562649083777,0.003552948267373814,0.0,0.0014241564190589015,0.004364446352345323,0.001991562649083777,0.0024566502366127276,0.0,0.0014241564190589015,0.0,0.0010962980307610856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.32472373766167e-05,0.0,0.0,0.0012199025281066941,0.0005358052022388467,0.001293149765483311,0.0005201030591304033,0.00023733086458531096,0.0002927544985377366,0.0,0.00016971410585324317,0.0,7.32472373766167e-05,0.0,0.0,0.0,0.0,0.0004979993082611227,0.00022724458992821577,0.00040540440564446615,0.0,0.00016250146164950617 +104571,50.0,the Greater Atlanta and Macon Area,G1301210002500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,8284.0,,864.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.0006123621382645145,0.00025179713933896257,0.0,0.0008641289040040394,0.0005940772314029878,0.00020189331546273636,6.818873073775284e-05,0.0,0.0,0.0003422800920640252,0.00020189331546273636,6.818873073775284e-05,0.0,0.0,0.00025179713933896257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.682302721902315e-05,0.0,0.0,7.297271555054565e-05,3.561266168875218e-05,8.979574276956878e-05,4.078813211344173e-05,2.405880860396195e-05,8.125774833141956e-06,0.0,0.0,1.682302721902315e-05,0.0,0.0,0.0,0.0,0.0,6.173338955465713e-05,2.0979694277304874e-05,7.085815202730471e-06,0.0,0.0 +104572,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,24484.0,,12696.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004926301369120292,0.008733412590541972,0.0,0.013659713959662265,0.0028931836307697504,0.0003531491372808688,0.008095606888300143,0.0003715094498608652,0.0019461931334796214,0.0020075854286689845,0.0003531491372808688,0.0019542257702333697,0.0003715094498608652,0.00023968814313417216,0.0008855982021007651,0.006141381118066774,0.0017065049903454493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000583515389466943,0.0,0.0,0.0005870540506319471,0.0007325400249261787,0.0011705694400988903,0.0002392385421804313,4.208383044071319e-05,0.00023287981556631865,4.427177938320356e-05,2.8562989710167243e-05,5.9170475968316034e-05,0.00041033105419233096,0.00011401865121397084,0.0,0.0,0.0,0.00024793142468242113,3.0263121842742714e-05,0.000693753181836944,3.183650916844177e-05,0.0001667790565240996 +104573,50.0,the Greater Atlanta and Macon Area,G1301210001500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,56585.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.0047210900550075175,0.0,0.0,0.0047210900550075175,0.0033602920529973595,0.001172481685496096,0.00018834669011349905,0.0,0.0,0.0033602920529973595,0.001172481685496096,0.00018834669011349905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005626027974987814,0.00019013535539175668,0.0005626027974987814,0.00040043923911682876,0.0001397222820557147,2.2444895886935567e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040043923911682876,0.0001397222820557147,2.2444895886935567e-05,0.0,0.0 +104574,50.0,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,159552.0,,4124.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.014069476489958772,0.0012015492201580243,0.0,0.0152710257101168,0.00964124868073006,0.0045711963417822115,0.0010585806876045264,0.0,0.0,0.008439699460572036,0.0045711963417822115,0.0010585806876045264,0.0,0.0,0.0012015492201580243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.028026081868346e-05,0.0,0.0,0.0016766336747054383,0.0005580378690940765,0.0017569139355241216,0.0010057434852026865,0.0005447410730450586,0.00012614911645769328,0.0,0.0,8.028026081868346e-05,0.0,0.0,0.0,0.0,0.0,0.001109214566498077,0.0005259108790297902,0.00012178848999625412,0.0,0.0 +104575,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030100,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Propane,35591.0,,10365.0,9362.0,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007410752885072074,0.007129897478574941,0.0020836085979455323,0.016624187241621534,0.005133356925442361,0.00045212269728241205,0.008584378490771533,0.00037072053017969355,0.0020836085979455323,0.005133356925442361,0.00045212269728241205,0.0014544810121965924,0.00037072053017969355,0.0,0.0,0.007129897478574941,0.0,0.0,0.0,0.0,0.0,0.0,0.0020836085979455323,0.0,0.00047637653460168744,0.0,0.00016804066236518787,0.0008831225401685679,0.0009324898042250829,0.0015275397371354432,0.0006117304513985933,5.387843193317125e-05,0.00017332718902359027,4.4177921107639944e-05,0.0,0.0,0.00047637653460168744,0.0,0.0,0.00016804066236518787,0.0,0.0004716866198956368,4.1544009106840296e-05,0.0007887891944836668,3.406424223877816e-05,0.000191455671410521 +104576,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,132812.0,,11930.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.01183342115469343,0.0035115661317957473,0.0,0.015345017976095474,0.009291278306629517,0.0022407402246141734,0.0038130301344580825,0.0,0.0,0.00577971217483377,0.0022407402246141734,0.0038130301344580825,0.0,0.0,0.0035115661317957473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023462322055889357,0.0,0.0,0.0014101674431050018,0.0006604348444397773,0.0016447906636638955,0.0006887578691674934,0.0002670249686797831,0.0004543919197077186,0.0,0.0,0.00023462322055889357,0.0,0.0,0.0,0.0,0.0,0.0009959068041532305,0.00024017883894843876,0.0004087083100975001,0.0,0.0 +104577,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,186864.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.011851239528584594,0.0,0.0,0.011851239528584594,0.005475011493982366,0.0032768012851242187,0.0013109474626758642,0.0,0.0017884792868021462,0.005475011493982366,0.0032768012851242187,0.0013109474626758642,0.0,0.0017884792868021462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014122893818353294,0.00030618094250279036,0.0014122893818353294,0.0006524465714938728,0.0003904900960109105,0.00015622308343490285,0.0,0.00021312963089564342,0.0,0.0,0.0,0.0,0.0,0.0,0.0006524465714938728,0.0003904900960109105,0.00015622308343490285,0.0,0.00021312963089564342 +104578,50.0,the Greater Atlanta and Macon Area,G1302470060305,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,7436.0,,41.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015346297532328492,3.283470827450504e-05,0.0,0.001567464461507354,0.0010736205242099497,0.00020560978531591824,0.00025548215078072066,0.0,3.283470827450504e-05,0.0010736205242099497,0.00020560978531591824,0.00025548215078072066,0.0,0.0,0.0,0.0,3.283470827450504e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.192607405149649e-06,0.0,0.0,0.00018288377610966612,6.277036339492701e-05,0.00018507638351481577,0.0001279447209743776,2.450277916511075e-05,3.044613227716296e-05,0.0,0.0,0.0,0.0,2.192607405149649e-06,0.0,0.0,0.0,0.00012676638531056478,2.4277115313308993e-05,3.0165731779087488e-05,0.0,3.876916644965274e-06 +104579,50.0,the Greater Atlanta and Macon Area,G1300630040522,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,100610.0,,5600.0,,4.088175128053588,Healthcare,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.01075261009990543,0.002081100343951022,0.0,0.012833749192280225,0.006218463292215162,0.0014851883347601611,0.004782407958798002,0.0,0.00034761210965935464,0.00520131716819799,0.0014851883347601611,0.004066104596947278,0.0,0.0,0.001017146124017173,0.0007163033618507223,0.00034761210965935464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001390473758867681,0.0,0.0,0.0012813701080246636,0.0004883624831010995,0.0014204174839114317,0.0006198320481966526,0.00017698734718980794,0.00048455071263820294,0.0,0.0,6.795996158910522e-05,4.785934666423615e-05,2.3225478682509065e-05,0.0,0.0,0.0,0.0006882489170535595,0.00016437811320666913,0.0005293087606823428,0.0,3.847311574987682e-05 +104580,50.0,the Greater Atlanta and Macon Area,G1300670030505,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,327518.0,,24438.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.020128534645006305,0.004155978986498957,0.0,0.024284513631505262,0.01104436624108083,0.006894451038187533,0.003934952301036579,0.0,0.002410744051200319,0.009883985007584056,0.006894451038187533,0.0028963254594113054,0.0,0.00045379087018483145,0.0011603812334967756,0.0010386268416252731,0.0019569531810154877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027767777946470816,0.0,0.0,0.002398678959823228,0.0008329635194996655,0.002676356739287936,0.0011778555813938476,0.0008215985384179299,0.000345149563185605,0.0,5.40773897190909e-05,7.752976742583068e-05,6.93948636438856e-05,0.000130751963757773,0.0,0.0,0.0,0.0012171816355479002,0.0007598262324597429,0.00043366469139382305,0.0,0.0002656841798864699 +104581,50.0,the Greater Atlanta and Macon Area,G1301510070310,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,18310.0,,,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004396459918760365,0.0,0.0,0.004396459918760365,0.0025850095897220534,0.0010639437965824507,0.0006796040249158891,0.0,6.806792168745e-05,0.0025850095897220534,0.0010639437965824507,0.0006796040249158891,0.0,6.806792168745e-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.0005239199728166937,0.00017202583013184946,0.0005239199728166937,0.00030805197340680925,0.00012678869255815692,8.098746010186377e-05,0.0,8.111558922214174e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00030805197340680925,0.00012678869255815692,8.098746010186377e-05,0.0,8.111558922214174e-06 +104582,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,24517.0,,25.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,121422.18277123098,0.0,0.0,0.002920208108045313,7.457574330341777e-06,0.0,0.0029276656823756545,0.0010811334506554738,0.0006376379500473708,0.0012088942816728106,0.0,0.0,0.0010736758763251319,0.0006376379500473708,0.0012088942816728106,0.0,0.0,7.457574330341777e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.98540306561012e-07,0.0,0.0,0.00034799488427404365,0.0001159219448469925,0.0003484934245806047,0.00012794763198561702,7.598593539417366e-05,0.00014406131689425301,0.0,0.0,4.98540306561012e-07,0.0,0.0,0.0,0.0,0.0,0.00012869225503297355,7.590095897638501e-05,0.0001439002105712462,0.0,0.0 +104583,50.0,the Greater Atlanta and Macon Area,G1300970080102,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,100001_200000,Electricity,148034.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.013189686925807811,0.0,0.0,0.013189686925807811,0.003945731992089349,0.004892721173617564,0.0043512030704945985,0.0,0.0,0.003945731992089349,0.004892721173617564,0.0043512030704945985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015717903774527876,0.00045171130833059807,0.0015717903774527876,0.00047020551830071736,0.0005830564518710589,0.000518524750057899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00047020551830071736,0.0005830564518710589,0.000518524750057899,0.0,0.0 +104584,50.0,the Greater Atlanta and Macon Area,G1300670030228,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,42689.0,,5386.0,,3.3063363735822096,Lodging,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,57860.88653768867,0.0,0.0,0.003883940457892025,0.0016187655369454847,0.0,0.005502705994837509,0.001943145404778661,0.000596675942763373,0.0019760503280928177,0.0,0.0009868029811804543,0.001943145404778661,0.000596675942763373,0.0013440877723277871,0.0,0.0,0.0,0.0006319625557650303,0.0009868029811804543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010815673352759561,0.0,0.0,0.00046284002264604835,0.000285246230874706,0.0005709967561736439,0.00023156005425491077,7.110446461654519e-05,0.00016017176929640877,0.0,0.0,0.0,4.2224154260332834e-05,6.593257926726277e-05,0.0,0.0,0.0,0.00020163347341167577,6.191499748021654e-05,0.00020504790341977595,0.0,0.00010239713002387282 +104585,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,87982.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,120171.9144447585,0.0,0.0,0.007218893378370475,0.0,0.0,0.007218893378370476,0.00473685395311571,0.001955270090205836,0.0005267693350489299,0.0,0.0,0.00473685395311571,0.001955270090205836,0.0005267693350489299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008602612652597687,0.00023910557858189432,0.0008602612652597687,0.0005644815294360109,0.000233005674632189,6.277406119156885e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005644815294360108,0.00023300567463218898,6.277406119156884e-05,0.0,0.0 +104586,50.0,the Greater Atlanta and Macon Area,G1301210009200,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,32104.0,,1646.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0027083227410660167,0.00047953838792322566,0.0,0.0031878307553898054,0.0020312648359990903,0.0007515339708882935,0.0004050319485024205,0.0,0.0,0.0015517264480758648,0.0007515339708882935,0.0004050319485024205,0.0,0.0,0.00047953838792322566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.203909064081513e-05,0.0,0.0,0.0003227451337067524,0.00012092170492167332,0.00035478422434756757,0.00018491598226710068,8.955872512595666e-05,4.826680675563317e-05,0.0,0.0,3.203909064081513e-05,0.0,0.0,0.0,0.0,0.0,0.00022606617934969528,8.364070033568863e-05,4.5077344662183555e-05,0.0,0.0 +104587,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2007,gen1_t12_incandescent,1001_5000,Electricity,12644.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0005985238104567225,0.0,0.0,0.0005985238104567225,0.0002632249456421039,0.00019845593537465102,3.870537897997527e-05,0.0,9.813755045999227e-05,0.0002632249456421039,0.00019845593537465102,3.870537897997527e-05,0.0,9.813755045999227e-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,7.132531861497623e-05,1.8289220052956885e-05,7.132531861497623e-05,3.136818082643414e-05,2.3649740535516453e-05,4.612470614583437e-06,0.0,1.1694926638442202e-05,0.0,0.0,0.0,0.0,0.0,0.0,3.136818082643414e-05,2.3649740535516453e-05,4.612470614583437e-06,0.0,1.1694926638442202e-05 +104588,50.0,the Greater Atlanta and Macon Area,G1301350050714,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,25286.0,,2031.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005721592654211549,0.00161096838229423,0.0,0.007332561036505778,0.004399933615857415,0.00134820800902445,0.001309087563145758,0.0,0.00027533184847815435,0.003064379789115079,0.00134820800902445,0.001309087563145758,0.0,0.0,0.0013355538267423362,0.0,0.00027533184847815435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010763423656566238,0.0,0.0,0.0006818309341706152,0.0002624367610315659,0.0007894651707362775,0.00036517610751753366,0.00016066329461130106,0.0001560013880809566,0.0,0.0,8.923286025579196e-05,0.0,1.8395850371038606e-05,0.0,0.0,0.0,0.0004737218450658067,0.00014515573218326874,0.00014094380277263836,0.0,2.9643790714563627e-05 +104589,50.0,the Greater Atlanta and Macon Area,G1300630040611,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,27027.0,,758.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.006327517996678433,0.0005878578929081966,0.0,0.006915295028803561,0.002659592015906946,0.000686427187468732,0.002655791559102725,0.00041497753870768444,0.0004985067276174736,0.002659592015906946,0.000686427187468732,0.002067933666194529,0.00041497753870768444,0.0004985067276174736,0.0,0.0005878578929081966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9274811748944617e-05,0.0,0.0,0.0007540333685439501,0.00024439199698236347,0.0007933081802928946,0.0003169364556149244,8.179968902481205e-05,0.0002464301151043166,4.9451761582675875e-05,5.940571125432517e-05,0.0,3.9274811748944617e-05,0.0,0.0,0.0,0.0,0.00030510283273130104,7.874549107828933e-05,0.00030466685227651486,4.760535519069159e-05,5.718764901609775e-05 +104590,50.0,the Greater Atlanta and Macon Area,G1301210001400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,99529.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007930607560395877,0.0,0.0,0.007930607560395877,0.005415035681361833,0.002021211174585195,0.0004943607044488486,0.0,0.0,0.005415035681361833,0.002021211174585195,0.0004943607044488486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009450739413916211,0.00025399800876725696,0.0009450739413916211,0.0006452984938653843,0.00024086351475632292,5.8911932769913764e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006452984938653843,0.00024086351475632292,5.8911932769913764e-05,0.0,0.0 +104591,50.0,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,111183.0,,4710.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009906298016835482,0.0013865257229239139,0.0,0.011292823739759395,0.00484254366732082,0.00226056571028249,0.004189714362156086,0.0,0.0,0.0034560179443969058,0.00226056571028249,0.004189714362156086,0.0,0.0,0.0013865257229239139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.263881928633413e-05,0.0,0.0,0.0011805157785762948,0.0004663488294390265,0.0012731545978626288,0.00041184746385276405,0.0002693875638469324,0.0004992807508765984,0.0,0.0,9.263881928633413e-05,0.0,0.0,0.0,0.0,0.0,0.00054594908036096,0.0002548565083579416,0.0004723490091437274,0.0,0.0 +104592,35.0,Eastern Counties in South Carolina and Georgia,G1301890950500,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,165564.0,,,,9.729435225087556,Education,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1459415.2837631335,0.07842708479347389,0.0,0.038885156759611676,0.0,0.0,0.11731224155308557,0.1005212319508932,0.007570206497402659,0.004195055045904477,0.0006737392487608122,0.00435200881012442,0.022094147157419308,0.007570206497402659,0.004195055045904477,0.0006737392487608122,0.00435200881012442,0.0,0.0,0.0,0.0,0.0,0.0,0.07842708479347389,0.0,0.0,0.0,0.0,0.0,0.0,0.004633869658349595,0.0012790693394236108,0.004633869658349595,0.002632917202129307,0.0009021270098669255,0.000499916675468155,8.028821593216988e-05,0.0005186205549530376,0.0,0.0,0.0,0.0,0.0,0.0,0.003970619609603003,0.0002990254872922295,0.0001657059658477886,2.6612907750630748e-05,0.00017190568785594264 +104593,35.0,Eastern Counties in South Carolina and Georgia,G1300290920303,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,27725.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003345443292906282,0.0,0.0,0.003345443292906282,0.0011740922681312152,0.0009086271736560862,0.0012626931615126835,0.0,0.0,0.0011740922681312152,0.0009086271736560862,0.0012626931615126835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039866937067218716,0.00011316781595527158,0.00039866937067218716,0.00013991408153277127,0.00010827917013724965,0.00015047246178697605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013991408153277127,0.00010827917013724965,0.00015047246178697605,0.0,0.0 +104594,85.0,Rural Climate Zone 3A,G1302330010400,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,68265.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006019682925369159,0.0,0.0,0.006019682925369157,0.00414915517759465,0.001338898636815538,0.0005315987373595325,0.0,0.0,0.00414915517759465,0.001338898636815538,0.0005315987373595325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007173523795709146,0.00016784636481688198,0.0007173523795709146,0.0004944457003396029,0.00015955360689782165,6.334945277842325e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000494445700339603,0.0001595536068978217,6.334945277842327e-05,0.0,0.0 +104595,50.0,the Greater Atlanta and Macon Area,G1301210007805,ComStock 90.1-2007,gen1_t12_incandescent,200001_500000,Electricity,226611.0,,22431.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.026037154051789937,0.006602684657312967,0.0,0.032639838709102906,0.010940691197099553,0.010913807101982767,0.010785371099626882,0.0,0.0,0.004338006539786585,0.010913807101982767,0.010785371099626882,0.0,0.0,0.006602684657312967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004411519519985147,0.0,0.0,0.0031027991717989365,0.001251416652110935,0.0035439511237974515,0.0005169521627492493,0.0013005780727743373,0.0012852725934985939,0.0,0.0,0.0004411519519985147,0.0,0.0,0.0,0.0,0.0,0.001187912575446287,0.001184993568402455,0.0011710483121485308,0.0,0.0 +104596,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,12709.0,,231.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.003051560192685487,0.00018311346125882665,0.0,0.003234673653944313,0.001115635717669518,0.0005694382026951316,0.0014665618315453993,0.0,8.287248788678603e-05,0.0010154774513712165,0.0005694382026951316,0.0014665618315453993,0.0,0.0,0.00010015826629830128,0.0,8.287248788678603e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2232868948532358e-05,0.0,0.0,0.00036364703463847393,0.00011686236506999517,0.00037587990358700624,0.00012101198751331262,6.785857094226726e-05,0.00017476662018130472,0.0,0.0,6.691058851252341e-06,0.0,5.536284862885918e-06,0.0,0.0,0.0,0.00012964060392444714,6.617062480686624e-05,0.00017041939274878024,0.0,9.630060429408852e-06 +104597,50.0,the Greater Atlanta and Macon Area,G1301510070114,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,365709.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,1133273.7058648225,0.0,0.0,0.029678230322161988,0.0,0.0,0.029678230322161988,0.01013610178879268,0.0075056956330165755,0.012036402210746434,0.0,0.0,0.01013610178879268,0.0075056956330165755,0.012036402210746434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00353669759243744,0.0012370369275218683,0.00353669759243744,0.001207899743481485,0.0008944393040522829,0.001434354887682351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001207899743481485,0.0008944393040522829,0.001434354887682351,0.0,0.0 +104598,50.0,the Greater Atlanta and Macon Area,G1300150960102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,132789.0,,10672.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006835355743574497,0.0018148088735109244,0.0,0.008650146886723999,0.00347511537760751,0.0024216482234736517,0.0015022048713139737,0.0,0.0012512138750517064,0.00347511537760751,0.0024216482234736517,0.0007506325810793554,0.0,0.00018797729177539983,0.0,0.0007515722902346183,0.0010632365832763063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012125454673593402,0.0,0.0,0.000814555401426432,0.0003566027497084675,0.0009358099481623661,0.0004141224111226687,0.00028858287919242195,8.94513535714104e-05,0.0,2.2400870430935685e-05,0.0,5.02155123450458e-05,7.103903439088823e-05,0.0,0.0,0.0,0.0003759528692360445,0.0002619842793599803,0.00016251495855071924,0.0,0.00013536167730853594 +104599,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,13604.0,,507.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030671091225484767,0.0004024526208154699,0.0,0.003469644450437686,0.002543325224557442,0.0004852424016285166,0.0003701141549834008,0.0,7.087996219458645e-05,0.002211752565936559,0.0004852424016285166,0.0003701141549834008,0.0,0.0,0.0003315726586208834,0.0,7.087996219458645e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6891623201355776e-05,0.0,0.0,0.0003655052418947255,0.00013653948802829272,0.00039239686509608124,0.0002635730012606177,5.782599649973989e-05,4.410624413436784e-05,0.0,0.0,2.215547008101835e-05,0.0,4.736153120337422e-06,0.0,0.0,0.0,0.0002876354794538769,5.487812942525109e-05,4.185778578114857e-05,0.0,8.016116740657948e-06 +104600,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7147.0,,,,8.72605822017302,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013950202127608982,0.0,0.0,0.0013950202127608982,0.0008027548577137179,0.00025225657490488766,0.00028525669732687133,0.0,5.466937574168221e-05,0.0008027548577137179,0.00025225657490488766,0.00028525669732687133,0.0,5.466937574168221e-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.00016624051897133073,5.234156713227441e-05,0.00016624051897133073,9.566197172797394e-05,3.006068553166294e-05,3.399321455695262e-05,0.0,6.5147911922718706e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.566197172797394e-05,3.006068553166294e-05,3.399321455695262e-05,0.0,6.5147911922718706e-06 +104601,50.0,the Greater Atlanta and Macon Area,G1300350150200,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8721.0,,,,1.8706521585294562,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,5611.956475588368,0.0,0.0,0.00044889729043289683,0.0,0.0,0.00044889729043289683,0.00021324305679897503,0.00010290701768198647,2.4166482615531972e-05,0.0,0.00010858073333640338,0.00021324305679897503,0.00010290701768198647,2.4166482615531972e-05,0.0,0.00010858073333640338,0.0,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.349462253921842e-05,1.3224902917155395e-05,5.349462253921842e-05,2.5411952969396474e-05,1.226332211144734e-05,2.879894562009429e-06,0.0,1.2939452896365182e-05,0.0,0.0,0.0,0.0,0.0,0.0,2.5411952969396474e-05,1.226332211144734e-05,2.879894562009429e-06,0.0,1.2939452896365182e-05 +104602,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,38266.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0031848752727567015,0.0,0.0,0.0031848752727567015,0.0011934574097050659,0.0008632679355480817,0.0011281499275035544,0.0,0.0,0.0011934574097050659,0.0008632679355480817,0.0011281499275035544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003795359580177014,0.00011368603019956261,0.0003795359580177014,0.00014222221046467301,0.00010287411433246215,0.00013443963322056626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014222221046467301,0.00010287411433246215,0.00013443963322056626,0.0,0.0 +104603,50.0,the Greater Atlanta and Macon Area,G1300670030311,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,47945.0,,12687.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004575912367806378,0.0037345875007611536,0.0,0.008310469178961234,0.004467946332851059,0.0015593082063799807,0.002283214639730194,0.0,0.0,0.0007333588320899057,0.0015593082063799807,0.002283214639730194,0.0,0.0,0.0037345875007611536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002495223645391333,0.0,0.0,0.0005453017986653001,0.0003987026996823014,0.0007948241632044335,8.739282094193954e-05,0.00018581946096581044,0.0002720858595420772,0.0,0.0,0.0002495223645391333,0.0,0.0,0.0,0.0,0.0,0.00042732024254911515,0.00014913428034260396,0.0002183696403127144,0.0,0.0 +104604,50.0,the Greater Atlanta and Macon Area,G1302230120202,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,43750.0,,3471.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0024013469596476916,0.0005902791923963978,0.0,0.00299162615204409,0.0015074707886557294,0.0007296398331580129,0.0005394817069279466,0.0,0.00021505155366382042,0.0011180056697028496,0.0007296398331580129,0.0003386676334844286,0.0,0.00021505155366382042,0.00038946511895287985,0.00020081407344351804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.943927460772236e-05,0.0,0.0,0.00028616405120447593,0.00011931891622474093,0.0003256033258121983,0.0001332306564140481,8.694982194796542e-05,4.035839203509156e-05,0.0,2.5627293701566692e-05,2.602196041190765e-05,1.3417314195814715e-05,0.0,0.0,0.0,0.0,0.00016407046783424733,7.94127154420614e-05,5.8716239617894704e-05,0.0,2.3405832659330358e-05 +104605,81.0,the Columbus-Albany Area,G1302150010602,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,37621.0,,212.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.001936563265382427,3.6045824766967346e-05,0.0,0.001972626820510815,0.0015448286601677807,0.00022168270883492019,8.044264976277956e-05,0.0,0.00012567280174533425,0.0015087828354008134,0.00022168270883492019,8.044264976277956e-05,0.0,0.00012567280174533425,3.6045824766967346e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4088649495620167e-06,0.0,0.0,0.0002307774059937152,7.449634826604591e-05,0.0002331862709432772,0.00017979943913316052,2.641760350053946e-05,9.58623267071483e-06,0.0,1.4976243590484177e-05,2.4088649495620167e-06,0.0,0.0,0.0,0.0,0.0,0.00018261580485737344,2.6205343893901454e-05,9.5092094094722e-06,0.0,1.4855912782530073e-05 +104606,50.0,the Greater Atlanta and Macon Area,G1300890023313,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,16441.0,,2936.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,24034.3828889517,0.0,0.0,0.0013327327961296744,0.0008552901865676536,0.0,0.002188022982697328,0.0014663462600563448,0.0005734839309841921,0.00014819279165679113,0.0,0.0,0.0006110560734886912,0.0005734839309841921,0.00014819279165679113,0.0,0.0,0.0008552901865676536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.714596850379445e-05,0.0,0.0,0.00015881739528490556,0.00010012484290390877,0.00021596336378870002,7.281754770823032e-05,6.834019874138069e-05,1.765964883529455e-05,0.0,0.0,5.714596850379446e-05,0.0,0.0,0.0,0.0,0.0,0.00014473205871464763,5.660430433935956e-05,1.4627000734692828e-05,0.0,0.0 +104607,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6323.0,,540.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013066063509335787,0.0004280918136746551,0.0,0.001734698164608234,0.0012050420643817089,0.00026234683790108315,0.00022082788688395085,0.0,4.6481375441490774e-05,0.000776950250707054,0.00026234683790108315,0.00022082788688395085,0.0,4.6481375441490774e-05,0.0004280918136746551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.860132713851765e-05,0.0,0.0,0.00015571059478407438,8.044785808809015e-05,0.00018431192192259205,9.259053851130489e-05,3.1264337679141916e-05,2.631645069461189e-05,0.0,5.5392678990156855e-06,2.860132713851765e-05,0.0,0.0,0.0,0.0,0.0,0.0001280358874040319,2.7874388115689043e-05,2.3462993779599546e-05,0.0,4.938652623271514e-06 +104608,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,157696.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.014050499692852074,0.0,0.0,0.014050499692852074,0.004211534672233753,0.0032274110670853177,0.006611553953533004,0.0,0.0,0.004211534672233753,0.0032274110670853177,0.006611553953533004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001674370159310903,0.0005879522908772152,0.001674370159310903,0.0005018802273401582,0.00038460417071903405,0.0007878857612517109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005018802273401582,0.00038460417071903405,0.0007878857612517109,0.0,0.0 +104609,35.0,Eastern Counties in South Carolina and Georgia,G1300510002200,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,4862.0,,55.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0008620558295848013,4.3255799565657775e-05,0.0,0.0009053116291504592,0.0005539719799058812,0.00011570719616129109,0.00020809099752809747,0.0,2.7458748481450068e-05,0.0005107161803402234,0.00011570719616129109,0.00020809099752809747,0.0,2.7458748481450068e-05,4.3255799565657775e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8907220624072504e-06,0.0,0.0,0.0001027309616418018,3.747244412465609e-05,0.00010562168370420905,6.086191001996797e-05,1.378879548468586e-05,2.4798148276961844e-05,0.0,3.272251680425808e-06,2.8907220624072504e-06,0.0,0.0,0.0,0.0,0.0,6.463128425459458e-05,1.3499427690680473e-05,2.427774129360405e-05,0.0,3.2035811245932215e-06 +104610,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300710970701,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,57096.0,,1003.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006423016221307988,0.00037272108826366435,0.0,0.006795698561147878,0.003051399623627747,0.0011476120668577762,0.002451729017330994,0.0,0.00014499660175513378,0.003051399623627747,0.0011476120668577762,0.00207900792906733,0.0,0.00014499660175513378,0.0,0.00037272108826366435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4902046839460878e-05,0.0,0.0,0.000765417854683131,0.00025081972260067564,0.0007903199015225919,0.0003636291227087141,0.0001367586093444233,0.00024775117080614803,0.0,1.727895182384549e-05,0.0,2.4902046839460878e-05,0.0,0.0,0.0,0.0,0.0003548688671741509,0.0001334639327368834,0.0002851289264969721,0.0,1.686268144313798e-05 +104611,50.0,the Greater Atlanta and Macon Area,G1300210012000,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,69915.0,,4948.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.0055392029558633624,0.0014413791613185126,0.0,0.006980612490781312,0.005027650794132746,0.0014737270447197186,0.0004791739047299728,0.0,0.0,0.003586271632814234,0.0014737270447197186,0.0004791739047299728,0.0,0.0,0.0014413791613185126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.630502202801542e-05,0.0,0.0,0.0006600978759766192,0.0002495389985221024,0.0007564028980046346,0.00042737020224002653,0.00017562167332378618,5.710238083998456e-05,0.0,0.0,9.630502202801542e-05,0.0,0.0,0.0,0.0,0.0,0.0005447845208224222,0.00015968962737380562,5.192216738353581e-05,0.0,0.0 +104612,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970400,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,15984.0,,13017.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006796686493236413,0.0089545252611831,0.0,0.015751140034448493,0.0041717355540650475,0.0005104310337181038,0.009286517007014364,0.00036878409096227204,0.0014136723486887093,0.0041717355540650475,0.0005104310337181038,0.00033199174583126357,0.00036878409096227204,0.0014136723486887093,0.0,0.0089545252611831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005982886768393393,0.0,0.0,0.0008099439966270086,0.0008480482443718499,0.001408232673466348,0.0004971352100604979,6.0826779617318474e-05,3.9562619481321795e-05,4.3947070506147474e-05,0.00016846377027356533,0.0,0.0005982886768393393,0.0,0.0,0.0,0.0,0.00037297454656915163,4.56351513389491e-05,0.0008302622313926017,3.2971188448064675e-05,0.00012638955571758124 +104613,50.0,the Greater Atlanta and Macon Area,G1300890020900,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,86507.0,,11713.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004235552848552155,0.0019919351840972524,0.0,0.0062274880326494055,0.0021797706329812917,0.0014421521371842548,0.0010790520656629935,0.0,0.0015265131968208662,0.0016512817501337777,0.0014421521371842548,0.0009068547955514408,0.0,0.00023526416568268069,0.0005284888828475139,0.0001721972701115528,0.0012912490311381855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013308996822500283,0.0,0.0,0.0005047420037338882,0.00028511780140907906,0.000637831971958891,0.00019677980398158205,0.00017185826394783719,0.00010806799560033478,0.0,2.8035940204134012e-05,3.531067134461982e-05,1.1505258499645979e-05,8.627403838073702e-05,0.0,0.0,0.0,0.0002232565352134511,0.0001477081508149641,0.00011051870405527429,0.0,0.00015634858187520161 +104614,35.0,Eastern Counties in South Carolina and Georgia,G1301270001000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,206057.0,,8045.0,,3.3063363735822096,Lodging,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,247975.22801866572,0.0,0.0,0.019796761372618155,0.002418261159412878,0.0,0.022215053870053236,0.007385494368851346,0.003967863681354226,0.007956379119340861,0.0,0.002905316700506804,0.007385494368851346,0.003967863681354226,0.005538117959927983,0.0,0.002905316700506804,0.0,0.002418261159412878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016157478833075237,0.0,0.0,0.0023591435447011364,0.0010361310481387977,0.002520718333031889,0.000880115744022729,0.00047284299759597155,0.0006599673041989914,0.0,0.0003462212333777588,0.0,0.00016157478833075237,0.0,0.0,0.0,0.0,0.0008380241237750712,0.00045022923568256154,0.0009028018040375143,0.0,0.00032966316953674207 +104615,50.0,the Greater Atlanta and Macon Area,G1300890021208,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,66938.0,,4249.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.013091118029450503,0.0029227322588281815,0.0,0.016013850288278682,0.00530756473503928,0.001522399824748376,0.005113131893615958,0.00036742141151297543,0.0037032607033910766,0.00530756473503928,0.001522399824748376,0.002190399634787777,0.00036742141151297543,0.0037032607033910766,0.0,0.0029227322588281815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019527914164042294,0.0,0.0,0.0015600410471747152,0.0005864170027246514,0.0017553201888151379,0.0006324913447859137,0.00018142119041903937,0.0002610253251325143,4.3784838107916265e-05,0.00044130980201098114,0.0,0.00019527914164042294,0.0,0.0,0.0,0.0,0.00058177611037596,0.00016687424321591406,0.0005604638159698572,4.02740259101676e-05,0.00040592413192885103 +104616,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen4_led,200001_500000,Electricity,240324.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.020078920437122425,0.0,0.0,0.02007892043712243,0.005039816456602454,0.005137470783841743,0.009901602507071932,0.0,0.0,0.005039816456602454,0.005137470783841743,0.009901602507071932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023927649260923342,0.0007079377526064221,0.0023927649260923342,0.0006005848814962249,0.0006122221530233988,0.0011799542343535003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006005848814962248,0.0006122221530233987,0.0011799542343535001,0.0,0.0 +104617,50.0,the Greater Atlanta and Macon Area,G1300670030101,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,110432.0,,6902.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006245200663708039,0.0011737321956460753,0.0,0.007418950589715535,0.003238379591926964,0.0012244410293074267,0.0016498987819430133,0.0,0.0013062311865381301,0.002589483824675872,0.0012244410293074267,0.0011250623535480303,0.0,0.0013062311865381301,0.0006488957672510923,0.000524836428394983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.842222043318328e-05,0.0,0.0,0.0007442293224730607,0.0002886725473860778,0.000822651542906244,0.0003085841266226395,0.00014591443361383153,0.00013407165569342245,0.0,0.00015566121943842503,4.335558578548983e-05,3.506663464769345e-05,0.0,0.0,0.0,0.0,0.0003590882478052678,0.0001357723427021889,0.00018294929480809432,0.0,0.0001448416575906929 +104618,35.0,Eastern Counties in South Carolina and Georgia,G1302450001000,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,203503.0,,35437.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.00932753534477712,0.0060263902734231664,0.0,0.015353925618200285,0.006613743956185255,0.0017431782133739114,0.004064543512655744,0.0,0.0029324776663467935,0.005705896260394292,0.0017431782133739114,0.0014577371248724812,0.0,0.0004207414764978531,0.0009078476957909635,0.0026068063877832627,0.00251173618984894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040264809463388707,0.0,0.0,0.0011115446609908748,0.000649001253232255,0.001514192755624762,0.0006799608138671303,0.0002077312349522576,0.00017371576288772696,0.0,5.013896217723538e-05,6.0657064734102754e-05,0.00017417153179562637,0.00016781949810415795,0.0,0.0,0.0,0.0006522425231851954,0.00017191094239279523,0.0004008422663250046,0.0,0.0002891987722768581 +104619,35.0,Eastern Counties in South Carolina and Georgia,G1300510010601,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6649.0,,,,8.72605822017302,Office,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,26178.17466051906,0.0,0.0,0.0012463956012513627,0.0,0.0,0.001246395601251363,0.0006334534777693556,0.00035679831611137223,0.00021015867437158015,0.0,4.598513299905493e-05,0.0006334534777693556,0.00035679831611137223,0.00021015867437158015,0.0,4.598513299905493e-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.00014852563944721828,4.240656941656988e-05,0.00014852563944721828,7.548492850207333e-05,4.251755863140676e-05,2.5043374242560163e-05,0.0,5.479778071178062e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.548492850207332e-05,4.251755863140675e-05,2.504337424256016e-05,0.0,5.479778071178061e-06 +104620,85.0,Rural Climate Zone 3A,G1300310110401,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,70103.0,,9921.0,,3.3063363735822096,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.006312699854743229,0.002981875488751075,0.0,0.0092945440054721,0.0027789617949804425,0.0013462500958598602,0.0032675842371845654,0.0,0.0019017165394250273,0.0027789617949804425,0.0013462500958598602,0.0021874252878585185,0.0,0.0,0.0,0.001080158949326047,0.0019017165394250273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019923086650374842,0.0,0.0,0.0007522704915261141,0.00048323719074817314,0.0009515013580298626,0.00033116273599978767,0.00016042964890349107,0.0002606706376571284,0.0,0.0,0.0,7.216968121165292e-05,0.00012706118529209545,0.0,0.0,0.0,0.00028448796630369915,0.00013781835813616395,0.00033450923868106046,0.0,0.00019468258677192142 +104621,50.0,the Greater Atlanta and Macon Area,G1301210000600,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,11931.0,,241.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0026896340380022773,0.0001911360474115394,0.0,0.002880852792487556,0.0010732896959149926,0.000709957520978215,0.0010107631481680761,0.0,8.675972035253348e-05,0.0009689133688559865,0.000709957520978215,0.0010107631481680761,0.0,0.0,0.00010437632705900595,0.0,8.675972035253348e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2773266843607718e-05,0.0,0.0,0.0003205187195303882,0.00010572713484512779,0.0003332919863739959,0.00011546361621459094,8.460432621306435e-05,0.00012045077710273291,0.0,0.0,6.975275965656833e-06,0.0,5.797990877950886e-06,0.0,0.0,0.0,0.00012417116752340792,8.213649549363748e-05,0.0001169373382371556,0.0,1.0037416562537943e-05 +104622,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150002100,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,68196.0,,7020.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.005783619310538952,0.0020452063181410182,0.0,0.00782882562867997,0.00465739661698655,0.0027751750334285086,0.0003962539782649104,0.0,0.0,0.002612190298845532,0.0027751750334285086,0.0003962539782649104,0.0,0.0,0.0020452063181410182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001366491031439217,0.0,0.0,0.0006892224095375646,0.00035085285506110717,0.0008258715126814864,0.00031128952223053537,0.0003307120888718816,4.722079843514763e-05,0.0,0.0,0.0001366491031439217,0.0,0.0,0.0,0.0,0.0,0.0004913139430692453,0.000292756297243006,4.1801272369234936e-05,0.0,0.0 +104623,50.0,the Greater Atlanta and Macon Area,G1301350050607,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,232623.0,,34065.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01197430596720118,0.0057930232564124325,0.0,0.017767329223613612,0.006908723979130675,0.003722453919417246,0.0031810396030945132,0.0,0.003955129452332598,0.006207860522557408,0.003722453919417246,0.0015051835720325429,0.0,0.0005388256835554047,0.0007008634565732672,0.0016758560310619708,0.0034163037687771946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038705611097308856,0.0,0.0,0.0014269557468331903,0.0007578763835768508,0.0018140118578062788,0.000739779179892853,0.0004435979026411769,0.00017936992373786576,0.0,6.421085345545261e-05,4.682761864008158e-05,0.00011197095009339654,0.00022825754223961047,0.0,0.0,0.0,0.0007053680979692398,0.0003800557452937752,0.00032477833260924983,0.0,0.0004038114921715268 +104624,85.0,Rural Climate Zone 3A,G1302770960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,81152.0,,5530.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0041773440720101205,0.0009404538304424405,0.0,0.005117797902452562,0.0028110246906194315,0.0009697089267855278,0.0006686119291501911,0.0,0.0006684523558974107,0.0026298735879907525,0.0009697089267855278,0.00046503191932514485,0.0,0.00011272963790869573,0.00018115110262867945,0.00020358000982504624,0.000555722717988715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.283611574466856e-05,0.0,0.0,0.0004978051785522872,0.00021490067360807475,0.0005606412942969558,0.00031339642329479366,0.00011555814343297097,5.541686144152641e-05,0.0,1.3433750382996225e-05,1.2103551799767707e-05,1.3602131913960342e-05,3.713043203094052e-05,0.0,0.0,0.0,0.00030794035850738365,0.00010622906143750165,7.324467759102221e-05,0.0,7.322719676104823e-05 +104625,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,188998.0,,,18667.0,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,480687.657779034,0.0,0.0,0.018734193144409824,0.0,0.0017593907474317742,0.02049361426544103,0.011776026743613006,0.0050351834467933084,0.00368237370143528,0.0,0.0,0.010016635996181232,0.0050351834467933084,0.00368237370143528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017593907474317742,0.0,0.0,0.0,0.0,0.0001418937713578855,0.002232519204637718,0.0007153645279608633,0.0023744129759956036,0.0011936640161101814,0.0006000335139703784,0.00043882167455715763,0.0,0.0,0.0,0.0,0.0,0.0001418937713578855,0.0,0.0,0.001364383575466123,0.0005833819626802179,0.0004266439187302,0.0,0.0 +104626,46.0,the Tallahassee-Valdosta Area,G1301850011200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,66003.0,,3119.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0032315534027802443,0.0005304924136879798,0.0,0.0037620458164682236,0.0018480533011735237,0.0006927961421271433,0.0008031144508827118,0.0,0.00041806419192342507,0.0018480533011735237,0.0006927961421271433,0.0002726220371947319,0.0,0.00041806419192342507,0.0,0.0005304924136879798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5444815633480834e-05,0.0,0.0,0.0003850972897182602,0.00014173948994458218,0.00042054210535174104,0.00022022854919387022,8.255903072215832e-05,3.248778359993619e-05,0.0,4.981981331314355e-05,0.0,3.5444815633480834e-05,0.0,0.0,0.0,0.0,0.000206585529255293,7.744455075861614e-05,8.977653608952951e-05,0.0,4.6733507251302913e-05 +104627,50.0,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,Electricity,362731.0,,15428.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01867164857748199,0.0026237034222165736,0.0,0.02129535199969856,0.008984293278046318,0.0042233188991723175,0.005337193394664296,0.0,0.002750546427815631,0.008984293278046318,0.0042233188991723175,0.0027134899724477212,0.0,0.002750546427815631,0.0,0.0026237034222165736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001753009123252388,0.0,0.0,0.002225064343813007,0.0008046922116706267,0.0024003652561382454,0.0010706408994569684,0.0005032847665327686,0.00032336136575904803,0.0,0.0003277773120642218,0.0,0.0001753009123252388,0.0,0.0,0.0,0.0,0.0010126897848828247,0.000476043220666592,0.0006015967047656248,0.0,0.000310035545823204 +104628,35.0,Eastern Counties in South Carolina and Georgia,G1301790010400,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,22404.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0026515544837168586,0.0,0.0,0.002651554483716858,0.0016985220541585197,0.0007436368350344779,0.00020939559452386107,0.0,0.0,0.0016985220541585197,0.0007436368350344779,0.00020939559452386107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003159804926543296,7.706552207081163e-05,0.0003159804926543296,0.00020240950685837896,8.861772780196512e-05,2.4953257993985523e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000202409506858379,8.861772780196513e-05,2.4953257993985526e-05,0.0,0.0 +104629,50.0,the Greater Atlanta and Macon Area,G1300150960600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7509.0,,339.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.001490216054634841,0.00026888069672648834,0.0,0.0017591794584350688,0.0010230865021552329,0.00028153487900860246,0.0004090691867146145,0.0,4.5406183482879774e-05,0.0007542058054287444,0.00028153487900860246,0.0004090691867146145,0.0,4.5406183482879774e-05,0.00026888069672648834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7965495603961114e-05,0.0,0.0,0.00017759044648557948,7.858216967114789e-05,0.00019555594208954058,8.987941400277496e-05,3.355077588172453e-05,4.87491590807901e-05,0.0,5.411097520289884e-06,1.7965495603961114e-05,0.0,0.0,0.0,0.0,0.0,0.00011372952532428854,3.1296305917855955e-05,4.547342217089176e-05,0.0,5.047494697092515e-06 +104630,50.0,the Greater Atlanta and Macon Area,G1300670031406,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,10305.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0025028814654989213,0.0,0.0,0.0025028814654989213,0.0014877348424226621,0.0003750765794077592,0.0005638141216808588,0.0,7.625592198764145e-05,0.0014877348424226621,0.0003750765794077592,0.0005638141216808588,0.0,7.625592198764145e-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.0002982657624987186,8.589319436645914e-05,0.0002982657624987186,0.0001772918027832579,4.469748307883448e-05,6.718913829071988e-05,0.0,9.08733834590637e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001772918027832579,4.469748307883448e-05,6.718913829071988e-05,0.0,9.08733834590637e-06 +104631,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,NaturalGas,22576.0,,404.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0053144257301929385,0.000320159082444859,0.0,0.005634584812637797,0.0033058017373601175,0.001555306521667676,0.000694077762820268,0.0,7.939879078973511e-05,0.0030650414457049934,0.001555306521667676,0.000694077762820268,0.0,0.0,0.0002407602916551239,0.0,7.939879078973511e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1389790024881067e-05,0.0,0.0,0.0006333117804781934,0.00023088889499186353,0.0006547015705030744,0.00036525618265595997,0.00018534343924135372,8.271215858087958e-05,0.0,0.0,1.6085166303908235e-05,0.0,5.304623720972829e-06,0.0,0.0,0.0,0.0003841123456633623,0.00018071635377031592,8.06472555618448e-05,0.0,9.225615507551357e-06 +104632,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150002100,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,85066.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006822517905707814,0.0,0.0,0.0068225179057078145,0.004491647884854739,0.0015527591504567487,0.0007780804967968886,0.0,0.0,0.004491647884854739,0.0015527591504567487,0.0007780804967968886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008130260363136587,0.0002281429080119779,0.0008130260363136587,0.0005352608416439491,0.00018503925308711096,9.27223220205102e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005352608416439491,0.00018503925308711094,9.272232202051019e-05,0.0,0.0 +104633,50.0,the Greater Atlanta and Macon Area,G1302970110700,ComStock 90.1-2004,gen4_led,50001_100000,Electricity,83953.0,,3098.0,,4.088175128053588,Healthcare,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,306613.1346040191,0.0,0.0,0.020692123275377474,0.001151370663963668,0.0,0.02184349393934114,0.010381787684406597,0.0022570569363000504,0.008828324626960026,0.0,0.000376324691674468,0.010381787684406597,0.0022570569363000504,0.007676953962996357,0.0,0.000376324691674468,0.0,0.001151370663963668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.692699916971175e-05,0.0,0.0,0.0024658411222390317,0.0006933505432655641,0.0025427681214087437,0.0012371779664113527,0.0002689691983125873,0.000914848057087413,0.0,4.4845900427678547e-05,0.0,7.692699916971175e-05,0.0,0.0,0.0,0.0,0.0012085282162483226,0.0002627405872781066,0.0010276919291950413,0.0,4.3807388687273105e-05 +104634,50.0,the Greater Atlanta and Macon Area,G1301350050525,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,125387.0,,7939.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.011171876001340147,0.002337013519570067,0.0,0.013508889520910217,0.006022098685373027,0.003027959315756547,0.004458831519780642,0.0,0.0,0.0036850851658029593,0.003027959315756547,0.004458831519780642,0.0,0.0,0.002337013519570067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015614463444799603,0.0,0.0,0.0013313309924592191,0.0005525614169513041,0.001487475626907215,0.0004391445170441098,0.0003608360923884877,0.0005313503830266218,0.0,0.0,0.00015614463444799603,0.0,0.0,0.0,0.0,0.0,0.0006630985473274338,0.0003334112455715038,0.0004909658340082772,0.0,0.0 +104635,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,54171.0,,1895.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004776916730774104,0.0005521616641788903,0.0,0.005329078394952995,0.0028483146608746152,0.0019656882348129843,0.0005150754992653954,0.0,0.0,0.0022961529966957247,0.0019656882348129843,0.0005150754992653954,0.0,0.0,0.0005521616641788903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.689270029136627e-05,0.0,0.0,0.0005692549030097023,0.00017695466082392678,0.0006061476033010687,0.00027362761904741134,0.00023424684341827472,6.138044054401632e-05,0.0,0.0,3.689270029136627e-05,0.0,0.0,0.0,0.0,0.0,0.0003239770514112831,0.00022358410292808395,5.85864489617017e-05,0.0,0.0 +104636,50.0,the Greater Atlanta and Macon Area,G1301210000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,29737.0,,226.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006992552256363485,0.0001795570570880364,0.0,0.007172109313451522,0.003831157069752199,0.0022681587902267666,0.0008932363963845202,0.0,0.0001795570570880364,0.003831157069752199,0.0022681587902267666,0.0008932363963845202,0.0,0.0,0.0,0.0,0.0001795570570880364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1997545716879021e-05,0.0,0.0,0.0008332907197962515,0.000282622417903685,0.0008452882655131305,0.00045655255981834705,0.00027029267735543253,0.00010644548262247198,0.0,0.0,0.0,0.0,1.1997545716879021e-05,0.0,0.0,0.0,0.0004515313379740909,0.0002673199648676971,0.00010527478196364967,0.0,2.1162180707692908e-05 +104637,50.0,the Greater Atlanta and Macon Area,G1300570090400,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,Electricity,59157.0,,8782.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.006197003998886753,0.002558337907042398,0.0,0.008755341905929151,0.005526172681704566,0.002604688019784407,0.0006244812044401775,0.0,0.0,0.0029678347746621685,0.002604688019784407,0.0006244812044401775,0.0,0.0,0.002558337907042398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001709329600613839,0.0,0.0,0.000738485201004727,0.00040319601040742387,0.000909418161066111,0.0003536712354080994,0.00031039572609451913,7.44182395021085e-05,0.0,0.0,0.0001709329600613839,0.0,0.0,0.0,0.0,0.0,0.000574004059684544,0.00027054918180855267,6.486491957301434e-05,0.0,0.0 +104638,81.0,the Columbus-Albany Area,G1302150011100,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,20115.0,,1059.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.00170432341165113,0.0003083831550914942,0.0,0.002012706566742624,0.0013817557856222059,0.0005425332331571229,8.841754796329555e-05,0.0,0.0,0.0010733726305307116,0.0005425332331571229,8.841754796329555e-05,0.0,0.0,0.0003083831550914942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0604387120395535e-05,0.0,0.0,0.00020310214687890263,8.368925197438483e-05,0.00022370653399929818,0.00012791251013247683,6.46530251559552e-05,1.0536611590470586e-05,0.0,0.0,2.0604387120395535e-05,0.0,0.0,0.0,0.0,0.0,0.00015357817316375273,6.030100521082719e-05,9.827355624718285e-06,0.0,0.0 +104639,50.0,the Greater Atlanta and Macon Area,G1300890021910,ComStock 90.1-2004,gen4_led,25001_50000,NaturalGas,24314.0,,2509.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002099721483676229,0.0007385453755542172,0.0,0.0028382668592304467,0.0010107314938085433,0.0006450341451651171,0.0011824705306504883,0.0,0.0,0.00027218611825432604,0.0006450341451651171,0.0011824705306504883,0.0,0.0,0.0007385453755542172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.934542224367945e-05,0.0,0.0,0.00025022011442027707,0.00012447645218585093,0.0002995655366639565,3.243594075818407e-05,7.686758404053587e-05,0.0001409129323951778,0.0,0.0,4.934542224367945e-05,0.0,0.0,0.0,0.0,0.0,0.00010667789090417417,6.808027907402482e-05,0.00012480412754411343,0.0,0.0 +104640,50.0,the Greater Atlanta and Macon Area,G1300670030337,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,4553.0,,463.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010545151901761695,0.000366971286181307,0.0,0.0014215691834312157,0.0007697547352917342,0.00029683568765037437,0.0003194147187812053,0.0,3.5481334634162876e-05,0.00043826478374459006,0.00029683568765037437,0.0003194147187812053,0.0,0.0,0.0003314899515471441,0.0,3.5481334634162876e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4521605149771454e-05,0.0,0.0,0.00012566613884168332,5.943615791653413e-05,0.0001501877439914548,5.222783291937883e-05,3.537378606296483e-05,3.80645198593397e-05,0.0,0.0,2.2150685922984894e-05,0.0,2.3709192267865566e-06,0.0,0.0,0.0,8.132402451294333e-05,3.1360473189744676e-05,3.374593130643464e-05,0.0,3.7485770405128057e-06 +104641,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,25033.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005864345063485593,0.0,0.0,0.005864345063485593,0.003382305780568977,0.0011259741018869313,0.0011708013358536359,0.0,0.00018518113810230932,0.003382305780568977,0.0011259741018869313,0.0011708013358536359,0.0,0.00018518113810230932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006988436794971426,0.00021111533296033492,0.0006988436794971426,0.0004030634267405069,0.00013418035191698892,0.00013952233448926804,0.0,2.2067710293972247e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0004030634267405069,0.00013418035191698892,0.00013952233448926804,0.0,2.2067710293972247e-05 +104642,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,5658.0,,,195.0,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0010254023002199335,0.0,4.995507253854169e-05,0.0010753573727584752,0.00045249040042775096,0.000194775158656069,0.0003874826404686553,0.0,4.0526466132260637e-05,0.00040253532788920925,0.000194775158656069,0.0003874826404686553,0.0,4.0526466132260637e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.995507253854169e-05,0.0,0.0,0.0,0.0,4.028888793546462e-06,0.0001221980124163309,3.716860746781324e-05,0.00012622690120987735,4.797045704390083e-05,2.321151147285524e-05,4.6176616242176984e-05,0.0,4.829571389256503e-06,0.0,0.0,0.0,4.028888793546462e-06,0.0,0.0,5.3113934511555065e-05,2.2862971262056695e-05,4.5483235822817665e-05,0.0,4.757051345396084e-06 +104643,50.0,the Greater Atlanta and Macon Area,G1301390001607,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,17525.0,,4291.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.001986047181949538,0.0012631841952134464,0.0,0.003249200687556687,0.001654937019603622,0.0006275717591817242,0.0009667225983776377,0.0,0.0,0.000391752824390176,0.0006275717591817242,0.0009667225983776377,0.0,0.0,0.0012631841952134464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.439829715988191e-05,0.0,0.0,0.00023667197341424215,0.00014862853836576813,0.0003210702705741241,4.6684144707989016e-05,7.478606150675028e-05,0.00011520176719950287,0.0,0.0,8.439829715988191e-05,0.0,0.0,0.0,0.0,0.0,0.00016353285862032467,6.201360085168326e-05,9.552684370032878e-05,0.0,0.0 +104644,50.0,the Greater Atlanta and Macon Area,G1301210011417,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,34323.0,,8250.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.008428442862364919,0.006398190321080325,0.0,0.014826633183445249,0.006861603468846058,0.001029357768462358,0.005332445200237131,0.00042160812291930366,0.001181618622980396,0.0041149243895743075,0.001029357768462358,0.001680933958428555,0.00042160812291930366,0.001181618622980396,0.0027466790792717503,0.0036515112418085763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004274915655588241,0.0,0.0,0.0010043999892116666,0.0006770258167920541,0.0014318915547704904,0.0004903669728782596,0.00012266642230620062,0.0002003134003850196,5.0242162286294596e-05,0.0001408110313558924,0.00018351785126130652,0.0002439737142975177,0.0,0.0,0.0,0.0,0.0006626637307109483,9.941088292009347e-05,0.0005149842957618605,4.071707333427866e-05,0.0001141155720433092 +104645,50.0,the Greater Atlanta and Macon Area,G1300570090702,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,26115.0,,3327.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0025740907282198206,0.0009792132681408026,0.0,0.003553303996360624,0.0014727635166204588,0.0007909018438980984,0.0012896079462357687,0.0,0.0,0.0004935502484796562,0.0007909018438980984,0.0012896079462357687,0.0,0.0,0.0009792132681408026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.54257702765425e-05,0.0,0.0,0.00030674946700602206,0.00015613422826987573,0.0003721752372825646,5.88154387885645e-05,9.425025948390099e-05,0.00015368011151189334,0.0,0.0,6.54257702765425e-05,0.0,0.0,0.0,0.0,0.0,0.00015425815292491915,8.283954362516603e-05,0.00013507432628431576,0.0,0.0 +104646,50.0,the Greater Atlanta and Macon Area,G1302970110700,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,61506.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.012652618815598012,0.0,0.0,0.012652618815598012,0.005457164412644913,0.0026289944338864116,0.0045664599690666855,0.0,0.0,0.005457164412644913,0.0026289944338864116,0.0045664599690666855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015077891610347468,0.0004997092253055957,0.0015077891610347468,0.0006503201804536186,0.00031329239974793783,0.0005441765808331901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006503201804536186,0.00031329239974793783,0.0005441765808331901,0.0,0.0 +104647,50.0,the Greater Atlanta and Macon Area,G1300890021204,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,53876.0,,7014.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004500600073951816,0.002064643263677954,0.0,0.00656524333762977,0.0029209446585964573,0.0014687124885891622,0.0021755861904441502,0.0,0.0,0.0008563013949185031,0.0014687124885891622,0.0021755861904441502,0.0,0.0,0.002064643263677954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000137947056837123,0.0,0.0,0.0005363275874623745,0.00028051623354611037,0.0006742746442994975,0.00010204373944162711,0.00017502355524542858,0.0002592602927753188,0.0,0.0,0.000137947056837123,0.0,0.0,0.0,0.0,0.0,0.00029999176259088865,0.00015084217597016259,0.0002234407057384463,0.0,0.0 +104648,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,NaturalGas,34641.0,,2969.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003069912007565507,0.0008740092977522775,0.0,0.0039439213053177845,0.0013233051339506462,0.001465520769534201,0.0011550647122266396,0.0,0.0,0.00044929583619836885,0.001465520769534201,0.0011550647122266396,0.0,0.0,0.0008740092977522775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.839695868854705e-05,0.0,0.0,0.0003658345145996437,0.00016674024055310328,0.0004242314732881908,5.354157504912262e-05,0.00017464281648365792,0.00013764646585545271,0.0,0.0,5.839695868854705e-05,0.0,0.0,0.0,0.0,0.0,0.00014234251728825384,0.0001576400711534587,0.00012424558369113407,0.0,0.0 +104649,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,71320.0,,3517.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00615311261465792,0.0010353138684530035,0.0,0.007188426483110925,0.0029585701159174417,0.001704439354561817,0.0025254170126316642,0.0,0.0,0.0019232562474644382,0.001704439354561817,0.0025254170126316642,0.0,0.0,0.0010353138684530035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.917391274850797e-05,0.0,0.0,0.0007332535192919265,0.000292490874213343,0.0008024274320404347,0.00022919041146655255,0.000203114461480012,0.00030094864634536194,0.0,0.0,6.917391274850797e-05,0.0,0.0,0.0,0.0,0.0,0.00033025834321390944,0.00019026262528566641,0.0002819064635408586,0.0,0.0 +104650,50.0,the Greater Atlanta and Macon Area,G1301210010110,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,76251.0,,15360.0,,9.525004485617233,Lodging,Zone-by-Zone,1980 to 1989,E: Lodging with Zone-by-Zone Systems,357187.66821064625,0.0,0.0,0.021630275487794056,0.013300626050912529,0.0,0.03493090153870658,0.010659224834586948,0.003069055791543787,0.01565954232616617,0.0006473951781485658,0.0048956834082611094,0.00910686671322806,0.003069055791543787,0.006195709982705309,0.0006473951781485658,0.0026112478221683335,0.001552358121358888,0.00946383234346086,0.002284435586092777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008886726353432794,0.0,0.0,0.0025776384053769674,0.0016391542147359637,0.0034663110407202463,0.0010852478233997636,0.00036573348688933693,0.000738330864487172,7.714884054959362e-05,0.0003111773900511011,0.00010371979314536838,0.0006323197717849766,0.00015263307041293408,0.0,0.0,0.0,0.0010577507909066207,0.0003045527457408006,0.001553949141497758,6.424320458029948e-05,0.00048581515799476767 +104651,50.0,the Greater Atlanta and Macon Area,G1300890022005,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,53285.0,,4254.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.004340022876461482,0.0012391821098613988,0.0,0.00557920498632288,0.003808029282309259,0.001367206831491523,0.00040396887252209927,0.0,0.0,0.0025688471724478606,0.001367206831491523,0.00040396887252209927,0.0,0.0,0.0012391821098613988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.279512765202916e-05,0.0,0.0,0.0005171929793503165,0.00019430069297189195,0.0005999881070023458,0.000306125050588944,0.00016292766068176333,4.814026807960928e-05,0.0,0.0,8.279512765202916e-05,0.0,0.0,0.0,0.0,0.0,0.00040951574392825315,0.00014702952135980203,4.3442841714290696e-05,0.0,0.0 +104652,50.0,the Greater Atlanta and Macon Area,G1300450910101,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,19186.0,,200.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004606784007279424,0.00015871487450573092,0.0,0.004765498881785155,0.0022350759607310438,0.0008858754668217216,0.0014858325797266578,0.0,0.00015871487450573092,0.0022350759607310438,0.0008858754668217216,0.0014858325797266578,0.0,0.0,0.0,0.0,0.00015871487450573092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0604363969008746e-05,0.0,0.0,0.000548983225002861,0.00018494668232720314,0.0005595875889718697,0.0002663504968128782,0.00010556839000010132,0.00017706433818988145,0.0,0.0,0.0,0.0,1.0604363969008746e-05,0.0,0.0,0.0,0.0002624532706984815,0.00010402371900723189,0.0001744735423363758,0.0,1.8637056929780414e-05 +104653,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,22965.0,,2986.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002052060525095896,0.0008790423931851008,0.0,0.0029311029182809973,0.0012303770060812023,0.0006802044339822845,0.0010205214782175107,0.0,0.0,0.00035133461289610146,0.0006802044339822845,0.0010205214782175107,0.0,0.0,0.0008790423931851008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8732058489941785e-05,0.0,0.0,0.0002445399476094453,0.00013321840157447918,0.0003032720060993871,4.1867842970656255e-05,8.10586016423502e-05,0.0001216135029964389,0.0,0.0,5.8732058489941785e-05,0.0,0.0,0.0,0.0,0.0,0.0001273032415769415,7.037861480909259e-05,0.00010559014971335303,0.0,0.0 +104654,50.0,the Greater Atlanta and Macon Area,G1300670030414,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,37154.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.00358715463210699,0.0,0.0,0.00358715463210699,0.0014153125736311592,0.0009091182073568496,0.0012626931615126835,0.0,0.0,0.0014153125736311592,0.0009091182073568496,0.0012626931615126835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004274735832219832,0.00014531570585413708,0.0004274735832219832,0.00016865978729048377,0.00010833768195906068,0.00015047245675737074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016865978729048377,0.00010833768195906068,0.00015047245675737074,0.0,0.0 +104655,50.0,the Greater Atlanta and Macon Area,G1300890021102,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,6653.0,,291.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015975698363484621,0.0002310835640276249,0.0,0.001828653400376087,0.0014316594464274116,0.0002094143107079264,0.00015582012692485518,0.0,3.159410216841543e-05,0.0012321699845682021,0.0002094143107079264,0.00015582012692485518,0.0,0.0,0.00019948946185920947,0.0,3.159410216841543e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.544150594709648e-05,0.0,0.0,0.0001903748420695013,7.426351097558131e-05,0.00020581634801659777,0.00014683186980489908,2.4954913031682406e-05,1.8568347611251838e-05,0.0,0.0,1.3330319378810563e-05,0.0,2.1111865682859183e-06,0.0,0.0,0.0,0.000161134372870525,2.3569741889553396e-05,1.7537675244833567e-05,0.0,3.5559405220416253e-06 +104656,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,17922.0,,704.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015485361545694869,0.00020730829054098227,0.0,0.0017558137555041715,0.0005243933028088475,0.0006924188972887702,0.0005390322450128517,0.0,0.0,0.00031708501226786515,0.0006924188972887702,0.0005390322450128517,0.0,0.0,0.00020730829054098227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3850407493876187e-05,0.0,0.0,0.0001845348873109212,6.632445963944732e-05,0.0001983852948047974,3.7786167816727535e-05,8.251369708488256e-05,6.423502240931113e-05,0.0,0.0,1.3850407493876187e-05,0.0,0.0,0.0,0.0,0.0,5.92499743468079e-05,7.823479377378589e-05,6.090399423113092e-05,0.0,0.0 +104657,85.0,Rural Climate Zone 3A,G1301470960400,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,17294.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0014137999330290341,0.0,0.0,0.0014137999330290341,0.0008593906224917499,0.00045833761551567495,9.607169502160903e-05,0.0,0.0,0.0008593906224917499,0.00045833761551567495,9.607169502160903e-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.00016848128319977624,5.230064200116987e-05,0.00016848128319977624,0.00010241281772948778,5.461968684307524e-05,1.144877862721319e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010241281772948778,5.461968684307524e-05,1.144877862721319e-05,0.0,0.0 +104658,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,30339.0,,2677.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002678374010419415,0.000788139779331305,0.0,0.00346651378975072,0.001667366310154192,0.0007113543843744527,0.0010877930952220751,0.0,0.0,0.000879226530822887,0.0007113543843744527,0.0010877930952220751,0.0,0.0,0.000788139779331305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.26579594772379e-05,0.0,0.0,0.00031917699389271813,0.0001503243850002076,0.00037183495336995604,0.00010477583786546219,8.47708173368546e-05,0.0001296303386904013,0.0,0.0,5.26579594772379e-05,0.0,0.0,0.0,0.0,0.0,0.0001788497354373436,7.630329500648237e-05,0.00011668192292613003,0.0,0.0 +104659,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,260485.0,,10677.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.023208892004212542,0.0031429225809477407,0.0,0.026351783895553982,0.006907002793360988,0.007282827712082657,0.012161984079716635,0.0,0.0,0.003764080212413247,0.007282827712082657,0.012161984079716635,0.0,0.0,0.0031429225809477407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020999073171593712,0.0,0.0,0.002765757686205728,0.0009859944435140165,0.002975748417921665,0.000448557982737274,0.0008678801520705385,0.0014493195513979153,0.0,0.0,0.00020999073171593712,0.0,0.0,0.0,0.0,0.0,0.0007799662715962172,0.0008224059186324178,0.0013733796932856347,0.0,0.0 +104660,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,249091.0,,17492.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.02088108536653178,0.00514901007580968,0.0,0.02603006475273516,0.009158668517817145,0.005839618286326886,0.011031808638197435,0.0,0.0,0.004009658442007464,0.005839618286326886,0.011031808638197435,0.0,0.0,0.00514901007580968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034402586101503664,0.0,0.0,0.002488358169185361,0.0010164974367659315,0.0028323840302003976,0.0004778231669798261,0.0006958959083130862,0.001314639093892449,0.0,0.0,0.00034402586101503664,0.0,0.0,0.0,0.0,0.0,0.0009965732584295104,0.0006354206850338514,0.001200393426135213,0.0,0.0 +104661,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5392.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014810355694497778,0.0,0.0,0.001481035569449778,0.0008117699287513024,0.0002338956045347614,0.0003935202568516247,0.0,4.176707223835025e-05,0.0008117699287513024,0.0002338956045347614,0.0003935202568516247,0.0,4.176707223835025e-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.0001764966290268161,5.288019224022472e-05,0.0001764966290268161,9.673951046508071e-05,2.787359506828816e-05,4.689623951022455e-05,0.0,4.977427690765743e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.67395104650807e-05,2.7873595068288155e-05,4.6896239510224546e-05,0.0,4.977427690765742e-06 +104662,35.0,Eastern Counties in South Carolina and Georgia,G1300510002700,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,66696.0,,14690.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0032104720030518017,0.0024981724633625995,0.0,0.005708644466414401,0.0017092777623387704,0.0005052443790258247,0.0025194311667052433,0.0,0.0009747088887059826,0.0015423996006532334,0.0005052443790258247,0.0010151518431051232,0.0,0.00014769391062903985,0.00016687816168553697,0.0015042793236001199,0.0008270149780769429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016691286498231797,0.0,0.0,0.00038258624217514086,0.0002653768312459568,0.0005494991071574589,0.00018380501888364768,6.02090746058077e-05,0.00012097384076907355,0.0,1.760042081226762e-05,1.1149795491870551e-05,0.00010050690067161935,5.525616881882809e-05,0.0,0.0,0.0,0.00016453058336617595,4.86334955354814e-05,0.00024251382001352128,0.0,9.382291492025388e-05 +104663,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,71627.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007010119870521269,0.0,0.0,0.007010119870521271,0.0025756252085347062,0.001855217390302431,0.0025792158924715374,0.0,0.0,0.0025756252085347062,0.001855217390302431,0.0025792158924715374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008353823112940213,0.00029257761020855553,0.0008353823112940213,0.0003069322321834811,0.00022108263768511903,0.0003073601269843803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000306932232183481,0.00022108263768511898,0.0003073601269843802,0.0,0.0 +104664,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,143549.0,,32992.0,,9.729435225087556,Education,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.05612839976940369,0.02918150411930162,0.0,0.08530990388870531,0.0693344636700389,0.008159198090864924,0.0024100056839741397,0.0006428464690817987,0.00476338997474555,0.04015295955073728,0.008159198090864924,0.0024100056839741397,0.0006428464690817987,0.00476338997474555,0.02918150411930162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019497375848646558,0.0,0.0,0.0066887126158828745,0.0034266562873524584,0.008638450200747532,0.004784950367647093,0.0009723158228288733,0.00028719570643334803,7.660676779470687e-05,0.0005676439511788536,0.0019497375848646558,0.0,0.0,0.0,0.0,0.0,0.007020782867022636,0.0008261974656298099,0.00024403630921550497,6.509440237014177e-05,0.00048233915650943955 +104665,50.0,the Greater Atlanta and Macon Area,G1301210010603,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,56862.0,,14499.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.004831097958290308,0.0024657081716024827,0.0,0.007296806129892792,0.003345931964301005,0.0009466062658551991,0.0012788555085055688,0.0,0.0017253946608695983,0.002551647233405479,0.0009466062658551991,0.001088591000106982,0.0,0.0002442357285612274,0.0007942847308955253,0.0001902645083985866,0.001481158932308371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016474401689845527,0.0,0.0,0.000575712932967325,0.0002990818538537178,0.0007404569498657803,0.00030407504160021286,0.00011280530313933158,0.0001297253590972961,0.0,2.9105116236383762e-05,5.30694015763409e-05,1.271234761185129e-05,9.896226771026309e-05,0.0,0.0,0.0,0.0003395346584028185,9.605862837269529e-05,0.00012977423715120656,0.0,0.00017508762671771517 +104666,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,200129.0,,8606.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.017647607998123687,0.0025070065239925976,0.0,0.020154614522116285,0.013463826917170001,0.005647545585057823,0.0010432420198884618,0.0,0.0,0.010956820393177405,0.005647545585057823,0.0010432420198884618,0.0,0.0,0.0025070065239925976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001675033717397985,0.0,0.0,0.0021030329816289204,0.000867986170681339,0.002270536353368719,0.0013057041307290114,0.0006730076184768027,0.00012432123242310655,0.0,0.0,0.0001675033717397985,0.0,0.0,0.0,0.0,0.0,0.0015167796157725191,0.0006362293629634924,0.00011752737463270734,0.0,0.0 +104667,50.0,the Greater Atlanta and Macon Area,G1302170100400,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,55409.0,,2786.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1990 to 1999,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004936852827473661,0.0008199649010620228,0.0,0.005756817728535683,0.0018475756783343025,0.001410709132686504,0.0024985022279085793,0.0,0.0,0.00102761077727228,0.001410709132686504,0.0024985022279085793,0.0,0.0,0.0008199649010620228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4785180222174354e-05,0.0,0.0,0.0005883156556635164,0.00021468588645469984,0.0006431008358856908,0.00012245848303061704,0.00016811160821491978,0.00029774190719414036,0.0,0.0,5.478518022217436e-05,0.0,0.0,0.0,0.0,0.0,0.0002063948381080826,0.00015759196577047667,0.0002791106036353481,0.0,0.0 +104668,50.0,the Greater Atlanta and Macon Area,G1300130180206,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,6017.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011129890913098598,0.0,0.0,0.0011129890913098598,0.0006705889538783048,0.0002118128158463663,0.00018666986542961684,0.0,4.3834749081832933e-05,0.0006705889538783048,0.0002118128158463663,0.00018666986542961684,0.0,4.3834749081832933e-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.00013263287063045763,4.735318417365816e-05,0.00013263287063045763,7.99128568827934e-05,2.5241345150078177e-05,2.2245105819494902e-05,0.0,5.22370672766163e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.99128568827934e-05,2.5241345150078177e-05,2.2245105819494902e-05,0.0,5.22370672766163e-06 +104670,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,213506.0,,,,7.614023970037612,Education,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1142103.5955056418,0.0,0.0,0.05522906166227997,0.0,0.0,0.05522906166227997,0.044645190442336474,0.005645554021362351,0.0018636411950512127,0.0007754346592636805,0.0022993135112889833,0.044645190442336474,0.005645554021362351,0.0018636411950512127,0.0007754346592636805,0.0022993135112889833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006581541877597468,0.001907349240695657,0.006581541877597468,0.005320282142874662,0.0006727698985914874,0.0002220865645889193,9.240706848311409e-05,0.0002740048030656583,0.0,0.0,0.0,0.0,0.0,0.0,0.005320282142874662,0.0006727698985914874,0.0002220865645889193,9.240706848311409e-05,0.0002740048030656583 +104671,81.0,the Columbus-Albany Area,G1303210950500,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,75155.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005813020954794695,0.0,0.0,0.005813020954794695,0.003934778312762998,0.0013232258595056582,0.0005550167825260391,0.0,0.0,0.003934778312762998,0.0013232258595056582,0.0005550167825260391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006927272381901686,0.00015684519079310304,0.0006927272381901686,0.0004689004451708794,0.00015768644260625076,6.614035041303844e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004689004451708794,0.00015768644260625076,6.614035041303844e-05,0.0,0.0 +104672,50.0,the Greater Atlanta and Macon Area,G1300670031405,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,14457.0,,3044.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,5611.956475588368,0.0,0.0,0.0007606325049202653,0.0005176024409356014,0.0,0.0012782172154944464,0.0009654359096832952,0.00015370450315043774,5.168400353945392e-05,0.0,0.00010741052948267987,0.0005078152814317324,0.00015370450315043774,5.168400353945392e-05,0.0,4.7428716798641256e-05,0.00045762062825156275,0.0,5.998181268403862e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.458272212416501e-05,0.0,0.0,9.064234160081215e-05,6.42215881783686e-05,0.00012522506372497717,6.051485561279396e-05,1.831651420366994e-05,6.159030903644928e-06,0.0,5.651940880703322e-06,3.057513986314181e-05,0.0,4.007582261023198e-06,0.0,0.0,0.0,9.458233846874456e-05,1.5058204480827653e-05,5.063405936280149e-06,0.0,1.0522851856598676e-05 +104673,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock DOE Ref 1980-2004,gen5_led,25001_50000,Electricity,72313.0,,1620.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.009759565495474493,0.0006020342601468502,0.0,0.010361599755621342,0.004944725105979257,0.0010462074418462353,0.004168206693586717,0.0,0.00020246051420913259,0.004944725105979257,0.0010462074418462353,0.0035661724334398676,0.0,0.00020246051420913259,0.0,0.0006020342601468502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0224239457224875e-05,0.0,0.0,0.0011630270613101601,0.0004226464033097152,0.0012032513007673848,0.0005892525760148126,0.00012467435842051188,0.0004249733297360515,0.0,2.412679713878424e-05,0.0,4.0224239457224875e-05,0.0,0.0,0.0,0.0,0.0005742112276126906,0.00012149190230891258,0.00048403723789896424,0.0,2.3510932946817345e-05 +104674,85.0,Rural Climate Zone 3A,G1301050000400,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,25910.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0022655374265027175,0.0,0.0,0.0022655374265027175,0.0011355461226213008,0.00045282514092260455,0.0006771968525651097,0.0,0.0,0.0011355461226213008,0.00045282514092260455,0.0006771968525651097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026998020866244937,9.66360967933879e-05,0.00026998020866244937,0.00013532108344128753,5.3962395237323246e-05,8.070038721157404e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013532108344128753,5.3962395237323246e-05,8.070038721157404e-05,0.0,0.0 +104675,50.0,the Greater Atlanta and Macon Area,G1300450911000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,8681.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0020845490865255044,0.0,0.0,0.0020845490865255044,0.0010817258174364017,0.0005814307283873311,0.00034389601260804026,0.0,7.741382101999174e-05,0.0010817258174364017,0.0005814307283873311,0.00034389601260804026,0.0,7.741382101999174e-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.0002484079203722848,6.758347120475075e-05,0.0002484079203722848,0.00012890522101845393,6.928692589339635e-05,4.098080197222505e-05,0.0,9.22511559547923e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00012890522101845393,6.928692589339635e-05,4.098080197222505e-05,0.0,9.22511559547923e-06 +104676,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960600,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,Electricity,44549.0,,,2948.0,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.00388839782642155,0.0,0.0002778576876565537,0.0041662555140781045,0.0030431916748672305,0.0007580035475685345,0.0003650299180429014,0.0,0.0,0.0027653339872106765,0.0007580035475685345,0.0003650299180429014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002778576876565537,0.0,0.0,0.0,0.0,2.2409164026688694e-05,0.00046337153306250795,0.00017363884286674205,0.00048578069708919664,0.00032953856737002297,9.032956029267491e-05,4.349978584698538e-05,0.0,0.0,0.0,0.0,0.0,2.2409164026688694e-05,0.0,0.0,0.00035483271926017764,8.838235928873557e-05,4.256207701282353e-05,0.0,0.0 +104677,35.0,Eastern Counties in South Carolina and Georgia,G1300730030302,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,62377.0,,4807.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005162513502580669,0.0014150670567807777,0.0,0.006577580559361448,0.002673924017506248,0.0016473259972417924,0.0022563305446134064,0.0,0.0,0.0012588569607254706,0.0016473259972417924,0.0022563305446134064,0.0,0.0,0.0014150670567807777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.454650095225086e-05,0.0,0.0,0.0006152069225760575,0.0002583964084789527,0.0007097534235283084,0.00015001559151065177,0.00019630870829413823,0.0002688826227712677,0.0,0.0,9.454650095225087e-05,0.0,0.0,0.0,0.0,0.0,0.00028852960576493023,0.00017775460986874667,0.00024346920789463132,0.0,0.0 +104678,50.0,the Greater Atlanta and Macon Area,G1301210004200,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,38183.0,,4806.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0033181839486786224,0.0008173164703801739,0.0,0.004135500419058796,0.0018298264896337093,0.0007445865278351175,0.0008761990006561695,0.0,0.0006849061312952198,0.001350929427678083,0.0007445865278351175,0.0005377795922316215,0.0,0.0006849061312952198,0.0004788970619556262,0.0003384194084245478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.46085500708276e-05,0.0,0.0,0.0003954218481035567,0.00015813004979576902,0.0004500303981743843,0.00016098776294866754,8.873100028912493e-05,6.408620001832236e-05,0.0,8.161899774184085e-05,3.1997243582295026e-05,2.2611306488532583e-05,0.0,0.0,0.0,0.0,0.00019912403827232846,8.102684987109323e-05,9.534908600856496e-05,0.0,7.453235346280415e-05 +104679,33.0,Rural Lower Plains-Upper South Appalachia,G1303110950201,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,40538.0,,2502.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0035746992914284497,0.0007288752657077305,0.0,0.004303604930735618,0.0030262128327815272,0.0008429888787953642,0.0004344032191587265,0.0,0.0,0.0022973375670737968,0.0008429888787953642,0.0004344032191587265,0.0,0.0,0.0007288752657077305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8699812618752625e-05,0.0,0.0,0.00042599159340718284,0.00017903539033957956,0.00047469140602593543,0.00027377029814468126,0.00010045772984699725,5.176718499213643e-05,0.0,0.0,4.8699812618752625e-05,0.0,0.0,0.0,0.0,0.0,0.00033379393500259036,9.298241418066197e-05,4.791505684268312e-05,0.0,0.0 +104680,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,4698.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,3204.5843851935597,0.0,0.0,0.0002881543378659515,0.0,0.0,0.0002881543378659515,0.00018667614214442266,8.647363759927941e-05,1.5004558122249401e-05,0.0,0.0,0.00018667614214442266,8.647363759927941e-05,1.5004558122249401e-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,3.43397554228707e-05,1.1559284942436619e-05,3.43397554228707e-05,2.2246456923048727e-05,1.0305184324751013e-05,1.7881141750709527e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2246456923048727e-05,1.0305184324751013e-05,1.7881141750709527e-06,0.0,0.0 +104681,50.0,the Greater Atlanta and Macon Area,G1300590140500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,4701.0,,578.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0002965843552609997,0.0001700511084955711,0.0,0.00046663546375657087,0.000253803044082002,0.00012367911337974222,8.91839959011243e-05,0.0,0.0,8.37519355864309e-05,0.00012367911337974222,8.91839959011243e-05,0.0,0.0,0.0001700511084955711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.136158476708283e-05,0.0,0.0,3.534473154919308e-05,2.301185025457301e-05,4.6706316316275917e-05,9.980936713343123e-06,1.4739162680385776e-05,1.0628289515930785e-05,0.0,0.0,1.136158476708283e-05,0.0,0.0,0.0,0.0,0.0,2.540356698030922e-05,1.2379247270936661e-05,8.926573838546387e-06,0.0,0.0 +104682,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,3696.0,,653.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008875296082965079,0.0005180771099030216,0.0,0.0014055240111257902,0.0008077999892118155,0.0002263692608244844,0.000339264416478639,0.0,3.2090344610851275e-05,0.00032181322391964515,0.0002263692608244844,0.000339264416478639,0.0,0.0,0.0004859867652921704,0.0,3.2090344610851275e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4613393553236965e-05,0.0,0.0,0.00010576102185907857,6.456227836561651e-05,0.00014037441541231552,3.834834927347635e-05,2.6974924688127676e-05,4.042789224358776e-05,0.0,0.0,3.2469396634549874e-05,0.0,2.1439969186870917e-06,0.0,0.0,0.0,8.067770479769835e-05,2.2608260267359515e-05,3.388347958228305e-05,0.0,3.204970764974604e-06 +104683,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,139880.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.011402279602531472,0.0,0.0,0.01140227960253147,0.006775590694576487,0.0038394963313267694,0.0007871925766282141,0.0,0.0,0.006775590694576487,0.0038394963313267694,0.0007871925766282141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001358789158252824,0.00033701379996605704,0.001358789158252824,0.0008074349601552705,0.0004575458741601147,9.380832393743876e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008074349601552706,0.00045754587416011475,9.380832393743877e-05,0.0,0.0 +104684,50.0,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,11655.0,,720.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002822792426722562,0.000571175051243657,0.0,0.00339396747796622,0.0017089762646753093,0.0010822220598788379,0.0005308139992588751,0.0,7.187244707945816e-05,0.0011378012134316523,0.0010822220598788379,0.0005308139992588751,0.0,7.187244707945816e-05,0.000571175051243657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8163540002602584e-05,0.0,0.0,0.00033638742207018084,0.00015016635124217453,0.0003745509620727834,0.00013558985541809197,0.00012896658124196653,6.325621080710287e-05,0.0,8.564918540257464e-06,3.8163540002602584e-05,0.0,0.0,0.0,0.0,0.0,0.00018859895041694908,0.00011943170237650772,5.857949299598215e-05,0.0,7.931688908306092e-06 +104685,50.0,the Greater Atlanta and Macon Area,G1301130140204,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,NaturalGas,573564.0,,102299.0,,7.614023970037612,Education,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,2664908.3895131643,0.0,0.0,0.1233278128225414,0.07080999403730907,0.0,0.1941378068598505,0.16199151175269444,0.013075654180860792,0.010642831677516174,0.0007920330744922191,0.0076355596732186545,0.09464163778733105,0.013075654180860792,0.010642831677516174,0.0007920330744922191,0.004175511768295699,0.0673498739653634,0.0,0.003460047904922955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0047311081686606015,0.0,0.0,0.014696739752790221,0.00819278185687773,0.019427847921450823,0.011278263098200453,0.001558200718844423,0.0012682859106751144,9.438506777188935e-05,0.0004975877572859904,0.004499923255295076,0.0,0.00023118009158866582,0.0,0.0,0.0,0.0162108890885391,0.0013085128806602493,0.0010650543478821228,7.926069820651838e-05,0.0007641092403683344 +104686,50.0,the Greater Atlanta and Macon Area,G1300890022203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,40414.0,,3749.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0035459078012428772,0.0011035675528590944,0.0,0.004649475354101973,0.002644277857822667,0.000890489616334144,0.0011147078799451605,0.0,0.0,0.0015407103049635729,0.000890489616334144,0.0011147078799451605,0.0,0.0,0.0011035675528590944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.373444732499972e-05,0.0,0.0,0.0004225588743174661,0.00020310317648700044,0.0004962933216424658,0.000183603423610318,0.00010611790011507255,0.00013283755059207558,0.0,0.0,7.373444732499972e-05,0.0,0.0,0.0,0.0,0.0,0.0002822549516789315,9.505245558269166e-05,0.00011898591438084249,0.0,0.0 +104687,50.0,the Greater Atlanta and Macon Area,G1301350050306,ComStock 90.1-2007,gen3_t5_cfl,50001_100000,NaturalGas,174155.0,,24105.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.008763160210415418,0.004099312751400468,0.0,0.012862472961815885,0.004808474017118321,0.0032340711141018914,0.003535558179688469,0.0,0.001284369650907205,0.004330640776847897,0.0032340711141018914,0.000934762384426604,0.0,0.00026368593503902526,0.0004778332402704229,0.002600795795261865,0.0010206837158681795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027389171737386085,0.0,0.0,0.0010442899097894737,0.0005915050330488058,0.0013181816271633344,0.0005160746075154455,0.00038539838949699007,0.00011139393810776588,0.0,3.142297466927208e-05,3.1925977531543914e-05,0.0001737697194876457,6.81960203546712e-05,0.0,0.0,0.0,0.000492785650385756,0.00033143650806531356,0.00036233373225100457,0.0,0.00013162573646126024 +104688,50.0,the Greater Atlanta and Macon Area,G1300890022100,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,57685.0,,10628.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004828180931573495,0.0031284063971689278,0.0,0.007956587328742423,0.0045390234610365385,0.0012688924619848193,0.0021486714057210653,0.0,0.0,0.0014106170638676107,0.0012688924619848193,0.0021486714057210653,0.0,0.0,0.0031284063971689278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020902177790638955,0.0,0.0,0.0005753667737552888,0.0003617179654508312,0.0007843885516616784,0.00016810103029365125,0.0001512119310443239,0.00025605381241731366,0.0,0.0,0.00020902177790638955,0.0,0.0,0.0,0.0,0.0,0.00044747300462591173,0.0001250919118144093,0.00021182363522135732,0.0,0.0 +104689,35.0,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,7463.0,,279.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.001415366152900768,0.00022115871517890804,0.0,0.0016364421610059368,0.0011453275571419294,0.0003141214660618896,0.0001381208131446434,0.0,3.8872324657474485e-05,0.0009241688419630212,0.0003141214660618896,0.0001381208131446434,0.0,3.8872324657474485e-05,0.00022115871517890804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4775742820717185e-05,0.0,0.0,0.00016866259841962793,5.49951307501762e-05,0.00018343834124034513,0.00011012890052830728,3.743239343176222e-05,1.6459214594798026e-05,0.0,4.632234047637767e-06,1.4775742820717185e-05,0.0,0.0,0.0,0.0,0.0,0.00012838644240858687,3.521170625850757e-05,1.5482767101555462e-05,0.0,4.3574254716952495e-06 +104690,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000602,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4892.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011747712753931226,0.0,0.0,0.0011747712753931226,0.0006752205500077058,0.00019097063326406081,0.00026912881794770635,0.0,3.936856709991033e-05,0.0006752205500077058,0.00019097063326406081,0.00026912881794770635,0.0,3.936856709991033e-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.00013999087150056393,4.9079928023230774e-05,0.00013999087150056393,8.04622271846384e-05,2.275689399428345e-05,3.2070564338414185e-05,0.0,4.691330247413998e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.04622271846384e-05,2.275689399428345e-05,3.2070564338414185e-05,0.0,4.691330247413998e-06 +104691,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,27810.0,,5872.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005790598739829421,0.004039268767599214,0.0,0.009829795787457617,0.003598477825737269,0.00035458353670118106,0.0038279817329872237,0.00038068960615086347,0.0016681348058520977,0.0022829183973979155,0.00035458353670118106,0.0011042723937273633,0.00038068960615086347,0.0016681348058520977,0.0013155594283393534,0.0027237093392598606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002698792473718238,0.0,0.0,0.0006900505439029725,0.00046269568908633514,0.0009599297912747963,0.0002720494291850966,4.225479494490018e-05,0.00013159326006606555,4.53657871293548e-05,0.0001987872725775553,8.789763910762366e-05,0.00018198160826420016,0.0,0.0,0.0,0.0,0.00035140974877366987,3.4626894366345594e-05,0.00037382197813700025,3.717628545642444e-05,0.0001629018883630324 +104692,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,17702.0,,7334.0,,7.56685751697572,Food Service,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,22700.572550927158,0.0,0.0,0.0035102622613880675,0.005044711041267066,0.0,0.00855497330265513,0.0030739896777001053,0.0006721595683583068,0.0026050845072000403,0.00036096661412157044,0.001842844655246126,0.0018889605966091638,0.0006721595683583068,0.0003635485330781324,0.00036096661412157044,0.00022477038916292506,0.0011850290810909412,0.002241535974121908,0.0016180742660832008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003370583057266096,0.0,0.0,0.0004183109615463976,0.0004629264934646557,0.0007553692672730072,0.00022510367164941606,8.009991687669251e-05,4.3323354529231146e-05,4.301567239014014e-05,2.678543955308945e-05,7.917676375155702e-05,0.00014976642100654626,0.00010811032905639886,0.0,0.0,0.0,0.00027142075706168,5.934894974877079e-05,0.00023001834205341458,3.187188050422145e-05,0.0001627156704859865 +104693,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,69277.0,,12396.0,,3.3063363735822096,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.006848141302120067,0.003725902811917461,0.0,0.010574012776015324,0.0028629476944870514,0.0008965494772330533,0.004507347733595374,0.0,0.002307167870699845,0.0028629476944870514,0.0008965494772330533,0.0030886127923777577,0.0,0.0,0.0,0.0014187349412176165,0.002307167870699845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00024894257799416196,0.0,0.0,0.0008160780890031961,0.0005519725357649734,0.0010650206669973582,0.00034117124345985577,0.00010683984920852275,0.0003680632618509415,0.0,0.0,0.0,9.479139730307417e-05,0.00015415118069108782,0.0,0.0,0.0,0.0002883577434365613,9.03009805704717e-05,0.00045398266403757364,0.0,0.00023237927895275153 +104694,50.0,the Greater Atlanta and Macon Area,G1300890023000,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,6861.0,,1316.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,9613.75315558068,0.0,0.0,0.000495788263622423,0.0003833755721033034,0.0,0.0008791638357257265,0.0006934900223627496,0.0001460970132955863,3.954642646795287e-05,0.0,0.0,0.0003101144502594461,0.0001460970132955863,3.954642646795287e-05,0.0,0.0,0.0003833755721033034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5615329288419876e-05,0.0,0.0,5.908107398568455e-05,4.2441787845125404e-05,8.469640327410442e-05,3.69550796663505e-05,1.74097877762141e-05,4.712587044621778e-06,0.0,0.0,2.5615329288419876e-05,0.0,0.0,0.0,0.0,0.0,6.68090613078028e-05,1.4074613914266448e-05,3.8098019368762807e-06,0.0,0.0 +104695,50.0,the Greater Atlanta and Macon Area,G1301210006000,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,21128.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0030565864322192795,0.0,0.0,0.0030565864322192795,0.0015804294995445404,0.001186058684444771,0.0002900678746305299,0.0,0.0,0.0015804294995445404,0.001186058684444771,0.0002900678746305299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036424878900025246,0.00010605110029260647,0.00036424878900025246,0.00018833739665964576,0.00014134082221210596,3.456695055252661e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018833739665964576,0.00014134082221210596,3.456695055252661e-05,0.0,0.0 +104696,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960800,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,20149.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.00472662655712768,0.0,0.0,0.004726626557127681,0.0025928667617272877,0.0005405734339601133,0.0015266898741538757,0.0,6.633107313892455e-05,0.0025928667617272877,0.0005405734339601133,0.0015266898741538757,0.0,6.633107313892455e-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.0005632614370050689,0.00017981168078227806,0.0005632614370050689,0.0003089860898722446,6.44189181309407e-05,0.00018193219243865273,0.0,7.904524531978952e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00030898608987224455,6.441891813094069e-05,0.0001819321924386527,0.0,7.90452453197895e-06 +104697,33.0,Rural Lower Plains-Upper South Appalachia,G1301110050200,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,44322.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0026610081026443647,0.0,0.0,0.002661008102644365,0.0011229701709004642,0.0005353328023556543,0.0006330448241415652,0.0,0.0003696603052466809,0.0011229701709004642,0.0005353328023556543,0.0006330448241415652,0.0,0.0003696603052466809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031710727056367786,8.8927917877451e-05,0.00031710727056367786,0.0001338222177770892,6.379459109106438e-05,7.543874673981926e-05,0.0,4.405171495570502e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00013382221777708916,6.379459109106438e-05,7.543874673981925e-05,0.0,4.405171495570501e-05 +104698,46.0,the Tallahassee-Valdosta Area,G1301850011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,126840.0,,14260.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005954369545334913,0.002425105643950562,0.0,0.008379475189285475,0.003977966157841627,0.0016498278604973333,0.0010183433081607325,0.0,0.001733355593147202,0.0035509658637624952,0.0016498278604973333,0.0004988082578303455,0.0,0.00025478529360615875,0.00042700029407913157,0.0005195350503303871,0.0014785702995410432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016203181621141715,0.0,0.0,0.0007095704907016784,0.0003226997258025144,0.0008716023069130956,0.00042316160782948864,0.00019660673655426386,5.94419976086351e-05,0.0,3.036226160153863e-05,2.8529739867225914e-05,3.471238789143602e-05,9.878968845275522e-05,0.0,0.0,0.0,0.00041377346452798995,0.00017160904910341903,0.00010592433971966846,0.0,0.00018029729780924924 +104699,50.0,the Greater Atlanta and Macon Area,G1301210011416,ComStock 90.1-2007,gen4_led,1001_5000,NaturalGas,5599.0,,589.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010133270674539947,0.00046712955247960833,0.0,0.0014805393270073423,0.0009505523984858601,0.0002136323714686311,0.00027888825264894466,0.0,3.746630440390626e-05,0.0005208891504101581,0.0002136323714686311,0.00027888825264894466,0.0,0.0,0.000429663248075702,0.0,3.746630440390626e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.121165224561401e-05,0.0,0.0,0.00012075988336777831,7.067575340055703e-05,0.00015197153561339236,6.207523224373716e-05,2.545892741911291e-05,3.323558004539246e-05,0.0,0.0,2.870830974078696e-05,0.0,2.503342504827044e-06,0.0,0.0,0.0,9.757046303584816e-05,2.1928522232802213e-05,2.8626781637247026e-05,0.0,3.84576870749493e-06 +104700,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970302,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,Electricity,30816.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002679478836246132,0.0,0.0,0.002679478836246132,0.000900402359168302,0.0007047254294141491,0.0010743510476636812,0.0,0.0,0.000900402359168302,0.0007047254294141491,0.0010743510476636812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003193084543671137,0.00010803027500278063,0.0003193084543671137,0.00010729925600656002,8.398080424277031e-05,0.00012802839411778336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010729925600656002,8.398080424277031e-05,0.00012802839411778336,0.0,0.0 +104701,50.0,the Greater Atlanta and Macon Area,G1301210010206,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,14359.0,,2255.0,,9.325022323477118,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,69937.66742607838,0.0,0.0,0.0034686362828667016,0.0019114841862545072,0.0,0.005380032084963154,0.003829773952679246,0.0008485763014856212,0.0006049895618861655,0.0,9.678065307017551e-05,0.001918289766424739,0.0008485763014856212,0.0006049895618861655,0.0,9.678065307017551e-05,0.0019114841862545072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012771205455835906,0.0,0.0,0.00041334613441749887,0.0002545074103861845,0.0005410581889758579,0.0002285963689998062,0.00010112208527308974,7.209464365110915e-05,0.0,1.1533036493493726e-05,0.00012771205455835906,0.0,0.0,0.0,0.0,0.0,0.00038515208205077784,8.533948304376818e-05,6.08424915565663e-05,0.0,9.733020928333107e-06 +104702,50.0,the Greater Atlanta and Macon Area,G1300670031110,ComStock 90.1-2004,gen5_led,25001_50000,NaturalGas,91221.0,,27745.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005017426326453642,0.004718350590020192,0.0,0.009735776916473834,0.005227921177232509,0.0010840165668606085,0.0010893888663708843,0.0,0.0023344857667326724,0.0029404208682629767,0.0010840165668606085,0.000672548069385443,0.0,0.0003204585523060344,0.002287500308969532,0.00041684079698544143,0.002014027214426638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00031525296307034073,0.0,0.0,0.0005979173318652704,0.00045602764462924323,0.0009131702949356111,0.00035040446749427817,0.00012918023129462967,8.014629832787406e-05,0.0,3.81884476425708e-05,0.00015283757250939649,2.7850897018167613e-05,0.00013456567818322823,0.0,0.0,0.0,0.0004903545309502233,0.00010167567894866226,0.00010217957549131821,0.0,0.00021896383559519395 +104703,81.0,the Columbus-Albany Area,G1302150002400,ComStock 90.1-2004,gen4_led,25001_50000,Electricity,23851.0,,1986.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002154042086823163,0.000584729068790131,0.0,0.002738771155613294,0.0009259361116079905,0.0006976361303593797,0.0011151989136459239,0.0,0.0,0.0003412070428178595,0.0006976361303593797,0.0011151989136459239,0.0,0.0,0.000584729068790131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.90689636503712e-05,0.0,0.0,0.00025669207979094375,0.00012039917447981331,0.0002957610434413149,4.06608329503008e-05,8.313564081905359e-05,0.0001328956060215894,0.0,0.0,3.90689636503712e-05,0.0,0.0,0.0,0.0,0.0,9.99922282545905e-05,7.533801772176434e-05,0.00012043079746496007,0.0,0.0 +104704,50.0,the Greater Atlanta and Macon Area,G1300890021410,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,8978.0,,824.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0018341120672428816,0.000654047539130443,0.0,0.0024881596063733246,0.0012379594797299535,0.0005637314146071194,0.0006057466080666876,0.0,8.055668982208542e-05,0.0006644686304215958,0.0005637314146071194,0.0006057466080666876,0.0,0.0,0.0005734908493083577,0.0,8.055668982208542e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.369968345879919e-05,0.0,0.0,0.0002185677838455109,9.326849572391747e-05,0.0002622674673043101,7.918351259987528e-05,6.717884265381504e-05,7.21857164901029e-05,0.0,0.0,3.831735016480951e-05,0.0,5.382333293989682e-06,0.0,0.0,0.0,0.00013048861356903713,5.942079035853535e-05,6.384945255075013e-05,0.0,8.491175148065351e-06 +104705,35.0,Eastern Counties in South Carolina and Georgia,G1302450010510,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,10464.0,,365.0,,3.3063363735822096,Lodging,Zone-by-Zone,1960 to 1969,E: Lodging with Zone-by-Zone Systems,9919.009120746628,0.0,0.0,0.0008979910262544355,0.0001096204016694474,0.0,0.001007611427923883,0.0003719196475165815,0.0001415538462952813,0.0003331231760280806,0.0,0.00016101475808393963,0.0003719196475165815,0.0001415538462952813,0.00022350277435863322,0.0,0.00016101475808393963,0.0,0.0001096204016694474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.3247237376655845e-06,0.0,0.0,0.00010701245280357198,4.98495349942151e-05,0.00011433717654123756,4.4321193155567703e-05,1.6868792507895123e-05,2.663454243221342e-05,0.0,1.918792470789576e-05,0.0,7.324723737665584e-06,0.0,0.0,0.0,0.0,4.2203017173868924e-05,1.6062607732926012e-05,3.7800646491256034e-05,0.0,1.8270905143186595e-05 +104706,50.0,the Greater Atlanta and Macon Area,G1300670031312,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,3571.0,,473.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003181898380945825,0.00013914667495378442,0.0,0.00045733651304836684,0.00020914966691884445,0.0001288963464503517,0.00011932118928546843,0.0,0.0,7.000299196506005e-05,0.0001288963464503517,0.00011932118928546843,0.0,0.0,0.00013914667495378442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.296961349687953e-06,0.0,0.0,3.7918196308491325e-05,2.3258061954804192e-05,4.721515765817927e-05,8.342149477205701e-06,1.5360380449041627e-05,1.4219323615684247e-05,0.0,0.0,9.296961349687953e-06,0.0,0.0,0.0,0.0,0.0,2.1592490903267464e-05,1.3307184415806803e-05,1.2318650716346867e-05,0.0,0.0 +104707,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,105325.0,,2321.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.009354683033240573,0.0006832120153994592,0.0,0.010037864359033734,0.00242635096350268,0.0030450534264643675,0.0045664599690666855,0.0,0.0,0.0017431389481032203,0.0030450534264643675,0.0045664599690666855,0.0,0.0,0.0006832120153994592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5647630897473226e-05,0.0,0.0,0.0011147783121894603,0.00034944190412947135,0.0011604259430869335,0.00020772627865351274,0.00036287274589834665,0.0005441756304204199,0.0,0.0,4.5647630897473226e-05,0.0,0.0,0.0,0.0,0.0,0.0002804979729127883,0.00035202298693894285,0.0005279049832352023,0.0,0.0 +104708,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000900,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6419.0,,439.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.001231839156273245,0.0003482794875162235,0.0,0.0015801186437894685,0.0008624693649534977,0.0002845950407369569,0.000386324741436305,0.0,4.67294966627087e-05,0.0005141898774372743,0.0002845950407369569,0.000386324741436305,0.0,4.67294966627087e-05,0.0003482794875162235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.326846634114658e-05,0.0,0.0,0.00014679488425355225,6.300562984638514e-05,0.00017006335059469884,6.127459348760133e-05,3.391440826617922e-05,4.6037256905354005e-05,0.0,5.568625594417686e-06,2.326846634114658e-05,0.0,0.0,0.0,0.0,0.0,9.282494739604916e-05,3.063009627827054e-05,4.15789537099104e-05,0.0,5.029353210468717e-06 +104709,50.0,the Greater Atlanta and Macon Area,G1301390000600,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,12142.0,,2091.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0010456869553816268,0.0006154800543004292,0.0,0.0016611670096820564,0.0007458801914593683,0.0004453061873796674,0.00046998063084302045,0.0,0.0,0.00013040013715893913,0.0004453061873796674,0.00046998063084302045,0.0,0.0,0.0006154800543004292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.112221494882879e-05,0.0,0.0,0.00012461414233593134,8.138219292775126e-05,0.00016573635728476014,1.5539737938701385e-05,5.306697987539589e-05,5.600742452183409e-05,0.0,0.0,4.112221494882879e-05,0.0,0.0,0.0,0.0,0.0,7.441724112194813e-05,4.4428660659951776e-05,4.6890455502860196e-05,0.0,0.0 +104710,50.0,the Greater Atlanta and Macon Area,G1301210011611,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,6941.0,,859.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.001666712949994523,0.0006811754593169358,0.0,0.0023479711163851983,0.001343576412895049,0.0004956634929196694,0.00044496405671747393,0.0,6.368444677926671e-05,0.0007260854003573799,0.0004956634929196694,0.00044496405671747393,0.0,0.0,0.0006174910125376692,0.0,6.368444677926671e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.551293383186266e-05,0.0,0.0,0.00019862288929689247,0.00010257966198225556,0.00024413582312875513,8.652790517752178e-05,5.9068428719545295e-05,5.3026555399825404e-05,0.0,0.0,4.1257839240977014e-05,0.0,4.2550945908856545e-06,0.0,0.0,0.0,0.00013970151983960785,5.153777829478424e-05,4.626618508692461e-05,0.0,6.621740244782889e-06 +104711,50.0,the Greater Atlanta and Macon Area,G1300570090601,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,43398.0,,5736.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004502932484030441,0.0016883580008618209,0.0,0.006191259795285965,0.002791802795295724,0.0011959739574214773,0.0022035137321750596,0.0,0.0,0.0011034447944339037,0.0011959739574214773,0.0022035137321750596,0.0,0.0,0.0016883580008618209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011280589336757699,0.0,0.0,0.0005366040971076676,0.0002695277167623324,0.0006494099904752447,0.00013149497571311085,0.00014252146303824026,0.00026258765835631646,0.0,0.0,0.00011280589336757699,0.0,0.0,0.0,0.0,0.0,0.000292836141051971,0.00012544739874897283,0.00023112966975048107,0.0,0.0 +104712,50.0,the Greater Atlanta and Macon Area,G1302470060201,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,FuelOil,45571.0,,1911.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003920259618862256,0.0005624177250117011,0.0,0.004482677343873957,0.0026552647368772446,0.0007799763440561162,0.001047436262940596,0.0,0.0,0.002092847011865543,0.0007799763440561162,0.001047436262940596,0.0,0.0,0.0005624177250117011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.757759606595523e-05,0.0,0.0,0.00046717019469015185,0.00018429167608868824,0.0005047477907561071,0.00024940076450183737,9.294835953037214e-05,0.00012482107065794223,0.0,0.0,3.757759606595523e-05,0.0,0.0,0.0,0.0,0.0,0.0002989818153302871,8.782504434372686e-05,0.00011794093108209317,0.0,0.0 +104713,35.0,Eastern Counties in South Carolina and Georgia,G1300730030603,ComStock DOE Ref 1980-2004,gen5_led,10001_25000,NaturalGas,25212.0,,1100.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.005918104661416143,0.0008724769208759539,0.0,0.006790664289365835,0.00398383432787496,0.000933018498853127,0.0016328030497614072,0.0,0.00024100841287634183,0.0033523658198753477,0.000933018498853127,0.0016328030497614072,0.0,0.0,0.000631468507999612,0.0,0.00024100841287634183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.829494414376063e-05,0.0,0.0,0.0007052538111467816,0.00026392846133052415,0.0007635487552905423,0.0003994976273805114,0.00011118675485356497,0.00019457928502074993,0.0,0.0,4.219185690943334e-05,0.0,1.6103087234327283e-05,0.0,0.0,0.0,0.00044794612319389623,0.00010490948795362776,0.00018359392883436927,0.0,2.7099215308649174e-05 +104714,50.0,the Greater Atlanta and Macon Area,G1300890021809,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,15314.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034025690136351076,0.0,0.0,0.0034025690136351076,0.0021790005647357932,0.0006319647504420481,0.0005128665642574453,0.0,7.873713419982066e-05,0.0021790005647357932,0.0006319647504420481,0.0005128665642574453,0.0,7.873713419982066e-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.0004054782423345838,0.00012053805682447188,0.0004054782423345838,0.00025966771445179736,7.531014218956136e-05,6.111741810201151e-05,0.0,9.382967591213508e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00025966771445179736,7.531014218956136e-05,6.111741810201151e-05,0.0,9.382967591213508e-06 +104715,46.0,the Tallahassee-Valdosta Area,G1301850010402,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,11038.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,9613.75315558068,0.0,0.0,0.000878860099731349,0.0,0.0,0.0008788600997313491,0.0005735143045836299,0.00023305662848586978,7.225879306241158e-05,0.0,0.0,0.0005735143045836299,0.00023305662848586978,7.225879306241158e-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.0001047325212105312,3.1703710492200214e-05,0.0001047325212105312,6.83448925348972e-05,2.777303042157961e-05,8.610978674956064e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.834489253489718e-05,2.7773030421579606e-05,8.610978674956064e-06,0.0,0.0 +104716,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000800,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,83864.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.01096346288497245,0.0,0.0,0.010963462884972451,0.0028505733913558253,0.0029005667600147836,0.005212292043995544,0.0,0.0,0.0028505733913558253,0.0029005667600147836,0.005212292043995544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001306493151686074,0.0004616223118576713,0.001306493151686074,0.00033969692361432126,0.00034565452975281375,0.0006211380411021566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003396969236143212,0.0003456545297528137,0.0006211380411021565,0.0,0.0 +104717,50.0,the Greater Atlanta and Macon Area,G1301350050722,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,55674.0,,9690.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.004664850846857121,0.0028523840781273894,0.0,0.00751723492498451,0.0037633129722558036,0.001416877743552342,0.0023370442091763645,0.0,0.0,0.000910928894128414,0.001416877743552342,0.0023370442091763645,0.0,0.0,0.0028523840781273894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019057942569730466,0.0,0.0,0.0005559014001008502,0.00034572763453482024,0.0007464808257981549,0.00010855366318506742,0.00016884662495546772,0.00027850111196031494,0.0,0.0,0.00019057942569730468,0.0,0.0,0.0,0.0,0.0,0.00037370668913506245,0.00014069961609775792,0.0002320745205653345,0.0,0.0 +104719,46.0,the Tallahassee-Valdosta Area,G1301850010402,ComStock 90.1-2007,gen4_led,_1000,Electricity,5804.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.0003992002174103722,0.0,0.0,0.0003992002174103722,0.0003112686470380807,6.0899066872692396e-05,2.7062877099036876e-05,0.0,0.0,0.0003112686470380807,6.0899066872692396e-05,2.7062877099036876e-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,4.757315807455699e-05,1.4947936341370666e-05,4.757315807455699e-05,3.709424971072511e-05,7.2574132191650875e-06,3.2251148021327156e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.709424971072511e-05,7.2574132191650875e-06,3.2251148021327156e-06,0.0,0.0 +104720,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,209260.0,,,,5.759960461090961,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,431997.0345818221,0.0,0.0,0.03249963434686062,0.0,0.0,0.03249963434686062,0.014379758018322513,0.0028666160482396343,0.015112244258880737,0.0,0.00014096142752637188,0.014379758018322513,0.0028666160482396343,0.015112244258880737,0.0,0.00014096142752637188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038729157796656252,0.0011233992073863101,0.0038729157796656252,0.0017136067176187853,0.0003416088442405025,0.0018008956233698103,0.0,1.6798088592766387e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0017136067176187853,0.0003416088442405025,0.0018008956233698103,0.0,1.6798088592766387e-05 +104721,50.0,the Greater Atlanta and Macon Area,G1300630040202,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,48708.0,,3518.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004105716909719274,0.0010354673164844918,0.0,0.005141153536597468,0.001732643102749406,0.0012867538128500825,0.0021217873106042775,0.0,0.0,0.0006971757862649141,0.0012867538128500825,0.0021217873106042775,0.0,0.0,0.0010354673164844918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.918310849915968e-05,0.0,0.0,0.000489268552960781,0.00021286905963921956,0.0005584516614599407,8.308078603706076e-05,0.00015333940207606125,0.000252848364847659,0.0,0.0,6.918310849915968e-05,0.0,0.0,0.0,0.0,0.0,0.0001882062872776779,0.00013977209580704747,0.00023047661199703876,0.0,0.0 +104722,50.0,the Greater Atlanta and Macon Area,G1300130180203,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,46698.0,,4040.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0024321623277957435,0.000687051505027046,0.0,0.0031192138328227895,0.0017569015131130323,0.0003433307185379025,0.0007297284849651131,0.0,0.00028925311620674144,0.0016118671566970001,0.0003433307185379025,0.000187711336354099,0.0,0.00028925311620674144,0.0001450343564160319,0.0005420171486110141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.590494122309062e-05,0.0,0.0,0.0002898362676249067,0.00014661362408882115,0.00033574120884799735,0.00019208321552600883,4.0914084099060996e-05,2.2369211338399027e-05,0.0,3.446975666143778e-05,9.69038501173887e-06,3.6214556211351746e-05,0.0,0.0,0.0,0.0,0.00018910670106436298,3.695491128681325e-05,7.854540817141979e-05,0.0,3.1134188325401325e-05 +104723,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,13115.0,,2014.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0011266461367949669,0.0005929231936716177,0.0,0.0017195693304665849,0.0007779815196467655,0.0004339510330495174,0.0005076367777703017,0.0,0.0,0.0001850583259751478,0.0004339510330495174,0.0005076367777703017,0.0,0.0,0.0005929231936716177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.961544213548661e-05,0.0,0.0,0.00013425887411859476,8.044612221269348e-05,0.00017387431625408135,2.205281825434138e-05,5.1712578792104e-05,6.049347707214938e-05,0.0,0.0,3.961544213548661e-05,0.0,0.0,0.0,0.0,0.0,7.866563004481379e-05,4.3878974707442494e-05,5.132971150182504e-05,0.0,0.0 +104724,35.0,Eastern Counties in South Carolina and Georgia,G1300730030309,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,2572.0,,33.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0006175737196114086,2.6383556522839068e-05,0.0,0.0006439572761342478,0.0003390990023311604,0.00015441410667128697,0.00012058691351191021,0.0,2.985725361988998e-05,0.00031271544580832133,0.00015441410667128697,0.00012058691351191021,0.0,2.985725361988998e-05,2.6383556522839068e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7637807065631959e-06,0.0,0.0,7.359689943496049e-05,2.6885143686564855e-05,7.536068014152369e-05,3.726662337800798e-05,1.8401688930637634e-05,1.4370467306304053e-05,0.0,3.558119820010812e-06,1.7637807065631959e-06,0.0,0.0,0.0,0.0,0.0,3.968389270231789e-05,1.8070689676884756e-05,1.4111979404873044e-05,0.0,3.4941183574479895e-06 +104726,50.0,the Greater Atlanta and Macon Area,G1300570090905,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,3721.0,,920.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003110698494335154,0.0002706823275457385,0.0,0.0005817521769792539,0.0003464549654947667,0.00015255803290588053,8.2708488972309e-05,0.0,0.0,7.577263794902818e-05,0.00015255803290588053,8.2708488972309e-05,0.0,0.0,0.0002706823275457385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.808552575188774e-05,0.0,0.0,3.706953232846245e-05,2.9889587256891016e-05,5.515505808035019e-05,9.029664100135536e-06,1.8180016298814805e-05,9.856194714404726e-06,0.0,0.0,1.808552575188774e-05,0.0,0.0,0.0,0.0,0.0,3.284687965124886e-05,1.4463800048397384e-05,7.841468744806064e-06,0.0,0.0 +104727,50.0,the Greater Atlanta and Macon Area,G1301350050529,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,26754.0,,837.0,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.006349008515597934,0.0006636415596842027,0.0,0.007012650075282138,0.0033540199613501342,0.0011697261438950249,0.00225583543623961,0.0,0.00023306853379736827,0.0029234469354633,0.0011697261438950249,0.00225583543623961,0.0,0.0,0.0004305730258868344,0.0,0.00023306853379736827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.434043146677465e-05,0.0,0.0,0.0007566010286459016,0.0002896367845528807,0.0008009414601126763,0.0003483824211495693,0.00013939436394371115,0.0002688242435526212,0.0,0.0,2.8768231083752346e-05,0.0,1.55722003830223e-05,0.0,0.0,0.0,0.00038307538751429266,0.00013359887568403425,0.0002576475524487049,0.0,2.6619644465644378e-05 +104728,50.0,the Greater Atlanta and Macon Area,G1300670031114,ComStock DOE Ref 1980-2004,gen5_led,_1000,NaturalGas,13952.0,,7427.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.0029266051372630244,0.005109330735152131,0.0,0.008035935872415157,0.001403416392833477,0.00013834782408911374,0.0053458631995616165,0.0003727286893681307,0.0007755797665628179,0.0010435255782771406,0.00013834782408911374,0.0012654271685994414,0.0003727286893681307,0.00010664759690021365,0.00035989081455633625,0.004080436030962175,0.0006689321696626043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003413745256199795,0.0,0.0,0.00034875575037233465,0.00043221366189981727,0.0006901302759923141,0.00012435416771841074,1.6486542235657346e-05,0.00015079759004973467,4.441708657268596e-05,1.2708910474039645e-05,2.404572388491097e-05,0.000272630014888028,4.4693994953081824e-05,0.0,0.0,0.0,0.00012052611642198383,1.188138177524565e-05,0.00045910546125622605,3.201013016379038e-05,6.660718637506814e-05 +104729,50.0,the Greater Atlanta and Macon Area,G1300890021812,ComStock 90.1-2007,gen4_led,5001_10000,NaturalGas,21961.0,,4351.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,71437.53364212924,0.0,0.0,0.0057443118665788506,0.003767549236437867,0.0,0.009511861103016717,0.005884516121447728,0.0005319275400434179,0.0013720697137779812,0.0006014428499268923,0.0011218145981974727,0.0028683641891139636,0.0005319275400434179,0.001075681710729349,0.0006014428499268923,0.0006667150175187781,0.003016151932333765,0.00029638800304863217,0.0004550995806786946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002517270945644074,0.0,0.0,0.0006845371620713401,0.00047963590819778885,0.0009362642566357474,0.0003418167271221887,6.338864900553746e-05,0.0001281866518840765,7.167263741936362e-05,7.945097978715105e-05,0.0002015228242668045,1.980303008374747e-05,3.0407272205961312e-05,0.0,0.0,0.0,0.0005792202022757656,5.235828587792165e-05,0.00013505451947940484,5.920076383549117e-05,0.0001104215988321545 +104730,50.0,the Greater Atlanta and Macon Area,G1301210011615,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,10332.0,,2066.0,,8.72605822017302,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,65445.43665129765,0.0,0.0,0.0024809640909580046,0.001639254201513073,0.0,0.004120218292471078,0.003111853649441442,0.0003676329427712215,0.0005672878187779096,0.0,7.336117440676569e-05,0.0014725994479283687,0.0003676329427712215,0.0005672878187779096,0.0,7.336117440676569e-05,0.001639254201513073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010952512104475378,0.0,0.0,0.00029565465430400064,0.00020239561537142115,0.0004051797753487543,0.00017548858618804319,4.3810545667276164e-05,6.760326945598362e-05,0.0,8.742396851940148e-06,0.00010952512104475378,0.0,0.0,0.0,0.0,0.0,0.0003060178061203381,3.615280128119343e-05,5.578674105460196e-05,0.0,7.214293529003052e-06 +104731,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock 90.1-2004,gen5_led,25001_50000,NaturalGas,108898.0,,10123.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005599549552596816,0.0017214407902729264,0.0,0.007320972612508324,0.0033353646688946527,0.0012916390990894266,0.0013338018985463121,0.0,0.0013601846763393508,0.002964019979313067,0.0012916390990894266,0.0011082007798375604,0.0,0.00023568969435676195,0.00037134468958158586,0.00022560111870875184,0.0011244949819825887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001150161843861227,0.0,0.0,0.0006672868402075674,0.0003104311744518618,0.0007823030245936901,0.00035321618421801053,0.00015392198337100624,0.0001320620149437604,0.0,2.808665767479013e-05,2.481098945084925e-05,1.5073292101442221e-05,7.513190283383122e-05,0.0,0.0,0.0,0.00035640972951341606,0.00013802171205704378,0.00014252713603364812,0.0,0.00014534634161699012 +104732,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,8990.0,,621.0,,8.72605822017302,Office,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0021586546245959235,0.000492603331191315,0.0,0.0026512579557872386,0.001471606963043497,0.000656446044268883,0.00042784369245343727,0.0,9.527854894768216e-05,0.0010742821807998642,0.000656446044268883,0.00042784369245343727,0.0,0.0,0.00039732478224363283,0.0,9.527854894768216e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.291295550022762e-05,0.0,0.0,0.0002572430376827154,9.037225663009861e-05,0.000290155993182943,0.00012802029948125635,7.822750919876293e-05,5.098537294761252e-05,0.0,0.0,2.654698425505263e-05,0.0,6.3659712451749855e-06,0.0,0.0,0.0,0.0001610539551629681,7.184203013142685e-05,4.6823588493117175e-05,0.0,1.0427367860829497e-05 +104733,50.0,the Greater Atlanta and Macon Area,G1301210011420,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,13590.0,,1337.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0032632075943843744,0.0010608009277803569,0.0,0.004324008522164731,0.0022231661421125834,0.0011180342228079578,0.0008877777295177259,0.0,9.503042772646421e-05,0.0012573956420586908,0.0011180342228079578,0.0008877777295177259,0.0,0.0,0.0009657705000538926,0.0,9.503042772646421e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.087774816516241e-05,0.0,0.0,0.0003888686614550364,0.00018186276458544406,0.0004597464096201988,0.0001498408379191717,0.000133233470169793,0.00010579435336607175,0.0,0.0,6.452826019995333e-05,0.0,6.349487965209076e-06,0.0,0.0,0.0,0.00023637618811023022,0.00011887400710097068,9.439218761812542e-05,0.0,1.0104026790872562e-05 +104734,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000300,ComStock DOE Ref 1980-2004,gen5_led,_1000,Electricity,5148.0,,53.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,4088.1751280535877,0.0,0.0,0.0005791726901213214,1.9684199276218055e-05,0.0,0.0005988568893975394,0.0003875229861446,5.8355126200756686e-05,0.00013213212506280232,0.0,2.080790356560846e-05,0.0003875229861446,5.8355126200756686e-05,0.00011244792578658426,0.0,2.080790356560846e-05,0.0,1.9684199276218055e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3153033824124918e-06,0.0,0.0,6.901764777962029e-05,2.390769560597652e-05,7.033295116203277e-05,4.617953404990852e-05,6.9539424336728556e-06,1.3399960785204932e-05,0.0,2.4795930191781697e-06,0.0,1.3153033824124918e-06,0.0,0.0,0.0,0.0,4.551276897906761e-05,6.853537654482134e-06,1.5518302391622894e-05,0.0,2.443791315044426e-06 +104735,50.0,the Greater Atlanta and Macon Area,G1301350050209,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,92596.0,,7015.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008250225481798844,0.0020650422285598247,0.0,0.01031523702075237,0.003546460214156236,0.0026328920138862203,0.0041359154823162134,0.0,0.0,0.0014814179855964112,0.0026328920138862203,0.0041359154823162134,0.0,0.0,0.0020650422285598247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013797378472198507,0.0,0.0,0.0009831618953355817,0.00041620642096391647,0.0011211356800575668,0.00017653744345731793,0.00031375616439781166,0.0004928682874804521,0.0,0.0,0.00013797378472198507,0.0,0.0,0.0,0.0,0.0,0.0003854553294312137,0.0002861620312328184,0.0004495216549652294,0.0,0.0 +104736,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,37794.0,,15012.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007464758023246829,0.010326743466624788,0.0,0.017791429769900603,0.0065095197292899054,0.0007279577058084522,0.0053964257791276225,0.0003677800113680534,0.004789818264277583,0.00391497805782916,0.0007279577058084522,0.001909544228290644,0.0003677800113680534,0.000544498019950519,0.002594541671460745,0.0034868815508369783,0.004245320244327065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006899703853942488,0.0,0.0,0.0008895598270887183,0.0008922769176883112,0.001579530212482967,0.0004665398655030828,8.674921931698556e-05,0.00022755644968618132,4.3827585877586394e-05,6.48867067048822e-05,0.0001733515432783678,0.00023297228358877946,0.00028364655852710155,0.0,0.0,0.0,0.0005779177510827334,6.46283747065406e-05,0.00047909682739352065,3.265165571380692e-05,0.0004252419709139225 +104737,50.0,the Greater Atlanta and Macon Area,G1301170130506,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,NaturalGas,211468.0,,29675.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.010458484178316607,0.005046468658459689,0.0,0.015504952836776296,0.005716782702306205,0.003424796611897399,0.0032533440169654885,0.0,0.0031100472359686217,0.004599167100554597,0.003424796611897399,0.001981545192305101,0.0,0.0004529752735595091,0.0011176156017516081,0.0012717988246603873,0.0026570719624091125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003371759604934198,0.0,0.0,0.0012463172368469473,0.0006535393324962593,0.001583493197340367,0.0005480738063786233,0.0004081263572547461,0.00023613689007450002,0.0,5.398018313907774e-05,7.46726353588509e-05,8.497426998588658e-05,0.00017753023978927873,0.0,0.0,0.0,0.0005838448278477381,0.00034976837364836624,0.00033225822572343516,0.0,0.0003176235808910366 +104738,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,147209.0,,10133.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.00929452141181298,0.0017232670174991917,0.0,0.011017806159673594,0.006252541033335941,0.00200122589348136,0.0012462671042155116,0.0,0.0015177543982793603,0.0049356716299457795,0.00200122589348136,0.0008398694901064813,0.0,0.0015177543982793603,0.0013168694033901616,0.00040639761410903025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011513915877477319,0.0,0.0,0.0011076109671143044,0.00034159917128839915,0.001222750125889078,0.0005881748812214024,0.0002384823972190638,0.00010008569747381799,0.0,0.00018086799120002042,8.798592080211491e-05,2.715323797265828e-05,0.0,0.0,0.0,0.0,0.00069390359794319,0.00022209495953405921,0.00013831004434879972,0.0,0.00016843955635717676 +104739,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302530200200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,304098.0,,2742.0,,7.614023970037612,Education,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,1142103.5955056418,0.0,0.0,0.05623153377506097,0.001898064864894747,0.0,0.05812967080697845,0.03538082106603907,0.011994880848414734,0.007809265696936448,0.0008413953180414379,0.00210323571052403,0.03538082106603907,0.011994880848414734,0.005911200832041701,0.0008413953180414379,0.00210323571052403,0.0,0.001898064864894747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012681954182982842,0.0,0.0,0.006701006087370108,0.001815686170946829,0.006827825629199936,0.004216265881846352,0.0014294073838361902,0.0007044266819687286,0.00010026749707085099,0.00025063864264798704,0.0,0.00012681954182982842,0.0,0.0,0.0,0.0,0.004155779200246867,0.0014089010610081358,0.000917264861998384,9.882905643639887e-05,0.0002470429728778119 +104740,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,64377.0,,12603.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012609518424080673,0.008669653536309092,0.0,0.021279100240418753,0.005685026942494441,0.0011591381715543058,0.00975721517678982,0.0003811199259769572,0.004296671743574242,0.004583479907665672,0.0011591381715543058,0.0059706158670786045,0.0003811199259769572,0.0005151645518051342,0.0011015470348287699,0.003786599309711216,0.003781507191769108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005792553729979515,0.0,0.0,0.0015026479746366058,0.0009192689619846923,0.0020819033476345574,0.0005462030006545264,0.00013813189110249818,0.0007115048757821972,4.54172051304712e-05,6.139100196691278e-05,7.359890863714646e-05,0.00025299834489976055,0.0002526581194610447,0.0,0.0,0.0,0.0005562113289212512,0.00011340769170052179,0.0009546258399386948,3.728798872024334e-05,0.00042037751528811783 +104741,35.0,Eastern Counties in South Carolina and Georgia,G1302450000600,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,33745.0,,2241.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0030001545324508288,0.0006595196393376328,0.0,0.003659674171788461,0.0018158733150287758,0.0007156816188624289,0.0011281499275035544,0.0,0.0,0.0011563536756911432,0.0007156816188624289,0.0011281499275035544,0.0,0.0,0.0006595196393376328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406453176486256e-05,0.0,0.0,0.0003575238575865153,0.0001529157921813048,0.0004015883893513779,0.00013780091071832802,8.528669120601421e-05,0.00013443991289592978,0.0,0.0,4.406453176486256e-05,0.0,0.0,0.0,0.0,0.0,0.0001992619030049282,7.853415771899011e-05,0.0001237956963014613,0.0,0.0 +104742,50.0,the Greater Atlanta and Macon Area,G1302230120503,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,14139.0,,3428.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0012902524279680204,0.0010089514966432765,0.0,0.002299203924611297,0.0013318675341077054,0.0004471168741512319,0.0005201888267460621,0.0,0.0,0.0003229160374644287,0.0004471168741512319,0.0005201888267460621,0.0,0.0,0.0010089514966432765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.741204074309771e-05,0.0,0.0,0.00015375632184373359,0.00011700818612486257,0.00022116836258683132,3.848113834831276e-05,5.32818574982483e-05,6.198966878957433e-05,0.0,0.0,6.741204074309771e-05,0.0,0.0,0.0,0.0,0.0,0.0001281169358437666,4.300971561610756e-05,5.0038758987783854e-05,0.0,0.0 +104743,50.0,the Greater Atlanta and Macon Area,G1302470060306,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,Electricity,64399.0,,11880.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012939286850810453,0.008172490697228878,0.0,0.021111705828068313,0.009292039444782569,0.0015754008833289126,0.0055630312717968875,0.00037036193032461545,0.004310944017806349,0.004291364465719087,0.0015754008833289126,0.002391215553631488,0.00037036193032461545,0.004310944017806349,0.0050006749790634806,0.003171815718165399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005460371335154976,0.0,0.0,0.0015419459957582641,0.0009562876172547344,0.0020879831292737617,0.000511392345694878,0.00018773701454890437,0.0002849558318344268,4.413520637032423e-05,0.0005137255973097306,0.0003341153061374996,0.0002119218273779981,0.0,0.0,0.0,0.0,0.0009189982920024209,0.00015580979069253765,0.0005501931268714092,3.662941633143332e-05,0.00042635959660143185 +104744,50.0,the Greater Atlanta and Macon Area,G1300630980000,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,366764.0,,54601.0,,9.525004485617233,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,3333751.5699660312,0.0,0.0,0.17555622057030715,0.04727952896270841,0.0,0.22283583981263877,0.06876219726652912,0.03066166843600577,0.08825961665562566,0.0004252170253911232,0.034727140429087096,0.06876219726652912,0.03066166843600577,0.04098008769291724,0.0004252170253911232,0.034727140429087096,0.0,0.04727952896270841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003158943862733645,0.0,0.0,0.020920698839401695,0.01032818237628846,0.024079642702135345,0.008194259456459824,0.0036538923495813736,0.004883518625832158,5.067229916829571e-05,0.004138366866809971,0.0,0.003158943862733645,0.0,0.0,0.0,0.0,0.007430443608101578,0.0033133001460229376,0.009537334909329785,4.5948955297729994e-05,0.0037526150833833145 +104745,50.0,the Greater Atlanta and Macon Area,G1300450910501,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,128148.0,,13442.0,,9.729435225087556,Education,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,729707.6418815667,0.0,0.0,0.03430869115623735,0.011889293748287056,0.0,0.046197984904524404,0.034674240346230206,0.006373042121901309,0.0021427600854374805,0.0006486561560065087,0.0023594706294544398,0.022784946597943154,0.006373042121901309,0.0021427600854374805,0.0006486561560065087,0.0023594706294544398,0.011889293748287056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007943714733684183,0.0,0.0,0.004088498411046531,0.0017331180772371607,0.00488286988441495,0.002715236717636626,0.0007594627399299399,0.0002553484528066111,7.729906253407222e-05,0.00028117341683206877,0.0007943714733684183,0.0,0.0,0.0,0.0,0.0,0.0036648742212778184,0.0006735950824143464,0.00022647781526255275,6.855934552232724e-05,0.00024938291363865007 +104746,50.0,the Greater Atlanta and Macon Area,G1300210010800,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,19257.0,,,,9.325022323477118,Office,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,69937.66742607838,0.0,0.0,0.004696822543198352,0.0,0.0,0.004696822543198352,0.0025071934115449028,0.0006459114270656098,0.0014545380891103914,0.0,8.917961547744941e-05,0.0025071934115449028,0.0006459114270656098,0.0014545380891103914,0.0,8.917961547744941e-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.0005597080676117863,0.0001717819488231594,0.0005597080676117863,0.0002987756864557224,7.697157671302638e-05,0.0001733335027321121,0.0,1.062730171092551e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002987756864557224,7.697157671302638e-05,0.0001733335027321121,0.0,1.062730171092551e-05 +104747,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,14953.0,,1668.0,,3.20458438519356,Mercantile,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0013105600685401155,0.0004860687118023423,0.0,0.0017966287803424582,0.0012702239284867812,0.000412443106765232,0.00011396174509044486,0.0,0.0,0.0007841552166844389,0.000412443106765232,0.00011396174509044486,0.0,0.0,0.0004860687118023423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.24765790007113e-05,0.0,0.0,0.0001561759355616164,6.851856626229394e-05,0.00018865251456232768,9.344567832562925e-05,4.914974110019442e-05,1.3580516135792733e-05,0.0,0.0,3.24765790007113e-05,0.0,0.0,0.0,0.0,0.0,0.00013337810280462787,4.3308016690197075e-05,1.1966395067502723e-05,0.0,0.0 +104748,50.0,the Greater Atlanta and Macon Area,G1300970080304,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,5188.0,,487.0,,8.72605822017302,Office,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0008781837089639662,0.0003861593272888263,0.0,0.001264425743326532,0.0008154090399958319,0.00024167006946625627,0.00016160962208660673,0.0,4.56543047040977e-05,0.0004292497127070056,0.00024167006946625627,0.00016160962208660673,0.0,4.56543047040977e-05,0.0003861593272888263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5801918451838318e-05,0.0,0.0,0.0001046550779039627,5.3944219047370985e-05,0.00013045699635580102,5.115462933900607e-05,2.8800352009359482e-05,1.9259372972720206e-05,0.0,5.440723582876946e-06,2.5801918451838318e-05,0.0,0.0,0.0,0.0,0.0,8.412974405231829e-05,2.493428462530419e-05,1.667405617996044e-05,0.0,4.710378204369582e-06 +104749,50.0,the Greater Atlanta and Macon Area,G1300970080603,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,3646.0,,574.0,,8.72605822017302,Office,Residential Style Central Systems,1980 to 1989,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0008755370826043085,0.00045555056215610524,0.0,0.0013310876447604136,0.0009056424574454162,0.0002391061501803378,0.00014440655074883076,0.0,4.184977931208955e-05,0.00045009189528931107,0.0002391061501803378,0.00014440655074883076,0.0,4.184977931208955e-05,0.00045555056215610524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0437216323457804e-05,0.0,0.0,0.0001043336910935797,5.4809967764129904e-05,0.0001347709074170375,5.363536245335922e-05,2.849317031471178e-05,1.720825851590687e-05,0.0,4.987043991436927e-06,3.0437216323457804e-05,0.0,0.0,0.0,0.0,0.0,9.16951308696757e-05,2.420918934650525e-05,1.4620977031822262e-05,0.0,4.2372361844799905e-06 +104750,50.0,the Greater Atlanta and Macon Area,G1300630040617,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,88435.0,,10580.0,,3.3063363735822096,Lodging,Zone-by-Zone,1970 to 1979,E: Lodging with Zone-by-Zone Systems,123987.61400933286,0.0,0.0,0.008127453382552273,0.0031801511552355206,0.0,0.011307573199765589,0.003517661654372156,0.0018454647895689217,0.003941226362480861,0.0,0.0020032517313658535,0.003517661654372156,0.0018454647895689217,0.002764326938611194,0.0,0.0,0.0,0.0011768994238696676,0.0020032517313658535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021247857884308498,0.0,0.0,0.0009685319162190169,0.0005613666674084407,0.001181010495062102,0.00041919250992361,0.00021992024621058067,0.0003294191600848261,0.0,0.0,0.0,7.863334313948756e-05,0.00013384523570359746,0.0,0.0,0.0,0.0003673993754890886,0.00019274810308489998,0.00041163825475848534,0.0,0.0002092280348044481 +104751,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001600,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,11388.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0025341447393723796,0.0,0.0,0.0025341447393723796,0.0013390275238393872,0.0005514907676937019,0.000571175051243657,0.0,7.2368689521894e-05,0.0013390275238393872,0.0005514907676937019,0.000571175051243657,0.0,7.2368689521894e-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.0003019884267360091,0.00010572688138629584,0.0003019884267360091,0.00015956895002793692,6.571993568784949e-05,6.806566824539421e-05,0.0,8.624016755679112e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00015956895002793692,6.571993568784949e-05,6.806566824539421e-05,0.0,8.624016755679112e-06 +104752,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970500,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,29646.0,,6117.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.013396358226092944,0.004208097579369963,0.0,0.01760438408549189,0.006221492325691212,0.0015813536409232081,0.005661287632088273,0.00036570013220860073,0.003774478634609579,0.006221492325691212,0.0015813536409232081,0.001453190052718311,0.00036570013220860073,0.003774478634609579,0.0,0.004208097579369963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00028115846588470077,0.0,0.0,0.0015964149960254169,0.0007579175123151347,0.0018775734619101178,0.0007414017659698846,0.0001884464884995445,0.00017317351126934415,4.3579692723442204e-05,0.0004497964441359711,0.0,0.00028115846588470077,0.0,0.0,0.0,0.0,0.0006635454456950908,0.0001686572853485545,0.000603797518085786,3.900328803992377e-05,0.0004025622755373816 +104753,50.0,the Greater Atlanta and Macon Area,G1301210011503,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5199.0,,466.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012483805710211062,0.00036994874083592206,0.0,0.0016184120189307676,0.0008786799514064021,0.0004928514524125329,0.00020097818918651705,0.0,4.581971885157631e-05,0.00050873121057048,0.0004928514524125329,0.00020097818918651705,0.0,4.581971885157631e-05,0.00036994874083592206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.471818369026596e-05,0.0,0.0,0.00014877183433182765,6.98196823394341e-05,0.00017349001802209358,6.062644447959931e-05,5.8734024167441435e-05,2.3950944575748062e-05,0.0,5.460421109038858e-06,2.4718183690265963e-05,0.0,0.0,0.0,0.0,0.0,9.419245459253486e-05,5.2832533595342165e-05,2.1544396146447642e-05,0.0,4.911767681124277e-06 +104754,50.0,the Greater Atlanta and Macon Area,G1301210010516,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,5100.0,,269.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012246436408579252,0.0002131361290261952,0.0,0.0014377797698841204,0.00073443881480505,0.00026325661571221555,0.00039285860026171024,0.0,4.7225739105144535e-05,0.0005213026857788548,0.00026325661571221555,0.00039285860026171024,0.0,4.7225739105144535e-05,0.0002131361290261952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4240235351270605e-05,0.0,0.0,0.00014593449173683356,5.290163216932126e-05,0.00016017472708810418,6.212096315372878e-05,3.1370938555976305e-05,4.681494129465518e-05,0.0,5.627648732473286e-06,1.4240235351270603e-05,0.0,0.0,0.0,0.0,0.0,8.181957987473338e-05,2.932789670509869e-05,4.37661040996603e-05,0.0,5.261146408611796e-06 +104755,50.0,the Greater Atlanta and Macon Area,G1300670030504,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,Electricity,42931.0,,4011.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004165162677117924,0.001180751912697817,0.0,0.005345914589815742,0.0018522404984915536,0.0014795152300059538,0.002014158861318234,0.0,0.0,0.000671488585793737,0.0014795152300059538,0.002014158861318234,0.0,0.0,0.001180751912697817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.88914730202516e-05,0.0,0.0,0.000496353546183187,0.00022720272666047718,0.0005752450192034387,8.001986155577432e-05,0.00017631067210888135,0.00024002301251853147,0.0,0.0,7.88914730202516e-05,0.0,0.0,0.0,0.0,0.0,0.0001993096042263715,0.00015920264953688483,0.00021673276544018235,0.0,0.0 +104756,35.0,Eastern Counties in South Carolina and Georgia,G1302450011000,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,46991.0,,742.0,,4.088175128053588,Healthcare,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.0050670151314039505,0.0002757725319859132,0.0,0.005342787663389863,0.002439949496504281,0.0007827956570436164,0.0019377699244180885,0.0,0.00018227258542387743,0.002439949496504281,0.0007827956570436164,0.0016619973924321752,0.0,0.00018227258542387743,0.0,0.0002757725319859132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8425836099471135e-05,0.0,0.0,0.0006038258412461243,0.00017251630816968983,0.0006222516773455955,0.00029076379665685684,9.32841591904242e-05,0.00019805683377861972,0.0,2.1721051620223515e-05,0.0,1.8425836099471135e-05,0.0,0.0,0.0,0.0,0.00028417050470522183,9.116886938104291e-05,0.00022568379313318366,0.0,2.1228510126147207e-05 +104757,50.0,the Greater Atlanta and Macon Area,G1300670030902,ComStock DOE Ref 1980-2004,gen4_led,25001_50000,NaturalGas,30254.0,,3908.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0028251930869476255,0.0011503078232504957,0.0,0.003975500910198121,0.0019205248725039422,0.000792282876181495,0.0012626931615126835,0.0,0.0,0.0007702170492534466,0.000792282876181495,0.0012626931615126835,0.0,0.0,0.0011503078232504957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.685716704873357e-05,0.0,0.0,0.00033667388360411187,0.00019133228574695637,0.0004135310506528454,9.178557259971965e-05,9.441512301208763e-05,0.00015047318799230454,0.0,0.0,7.685716704873357e-05,0.0,0.0,0.0,0.0,0.0,0.00019977272959343834,8.241315436782634e-05,0.0001313451666915807,0.0,0.0 +104758,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,146345.0,,8389.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.007053190963981265,0.0014266203405802886,0.0,0.008479811304561553,0.0031518376978356866,0.0016948807088656875,0.002905793472409614,0.0,0.000727299425450566,0.0031518376978356866,0.0016948807088656875,0.0014791731318293253,0.0,0.000727299425450566,0.0,0.0014266203405802886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.531895205182552e-05,0.0,0.0,0.0008405151403678343,0.0003100148774199267,0.0009358340924196599,0.00037559840908059534,0.00020197565955521206,0.00017627020434819987,0.0,8.667086738382708e-05,0.0,9.531895205182552e-05,0.0,0.0,0.0,0.0,0.0003478375951386383,0.00018704745813007462,0.0003206840929996409,0.0,8.026494615130619e-05 +104759,50.0,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen5_led,10001_25000,NaturalGas,39624.0,,6984.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.002039647586678614,0.001187721450806497,0.0,0.0032273690374851117,0.001390840471234622,0.000515421606480935,0.000689693328878634,0.0,0.0006313959005295002,0.000939514121287178,0.000515421606480935,0.00047726586870498137,0.0,0.00010744599020551997,0.00045132634994744406,0.00021242746017365263,0.0005239499103239803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.93560967590141e-05,0.0,0.0,0.000243060964814607,0.00013923547089687038,0.00032241706157362107,0.00011196012991090878,6.142182295401154e-05,5.687487548249339e-05,0.0,1.2804136467193324e-05,3.0154795530553294e-05,1.4193070330055352e-05,3.500704626687803e-05,0.0,0.0,0.0,0.0001389462105649286,5.149108078530512e-05,6.890098216262758e-05,0.0,6.307701678175095e-05 +104760,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,6333.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012013202460634405,0.0,0.0,0.0012013202460634403,0.0006550400240153148,0.0003229711229519955,0.00018220368344769425,0.0,4.110541564843579e-05,0.0006550400240153148,0.0003229711229519955,0.00018220368344769425,0.0,4.110541564843579e-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.00014315595455073252,3.727808844669717e-05,0.00014315595455073252,7.805818657774879e-05,3.848702254875115e-05,2.1712397099846036e-05,0.0,4.898348324386509e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.80581865777488e-05,3.8487022548751155e-05,2.171239709984604e-05,0.0,4.89834832438651e-06 +104761,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,11369.0,,105.0,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.00239081338058216,8.36168515504398e-05,0.0,0.0024744302321325997,0.00071533348077127,0.0009859510260462837,0.000689528873764606,0.0,8.36168515504398e-05,0.00071533348077127,0.0009859510260462837,0.000689528873764606,0.0,0.0,0.0,0.0,8.36168515504398e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.585651609168063e-06,0.0,0.0,0.0002849066343813964,9.739581542485563e-05,0.00029049228599056445,8.524431731984286e-05,0.0001174930635645562,8.216925349699732e-05,0.0,0.0,0.0,0.0,5.585651609168063e-06,0.0,0.0,0.0,8.397846719474538e-05,0.00011574833014551502,8.09490670600754e-05,0.0,9.816421590228645e-06 +104762,50.0,the Greater Atlanta and Macon Area,G1300890021417,ComStock 90.1-2004,gen4_led,100001_200000,NaturalGas,356073.0,,48645.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.017462225164297344,0.008272507918838296,0.0,0.025734750813497062,0.014061045393811457,0.004372644003052002,0.005021876647170076,0.0,0.0022791670391021073,0.010799758174929784,0.004372644003052002,0.0017610681480467448,0.0,0.0005287548382688147,0.003261287218881672,0.0032608084991233312,0.001750412200833293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005527206839536898,0.0,0.0,0.002080940730292584,0.001173572578224963,0.0026336614142462734,0.001286986993471516,0.0005210798119603024,0.00020986319919777895,0.0,6.30107256629868e-05,0.00021790017245977328,0.00021786818720030321,0.0001169523242936134,0.0,0.0,0.0,0.0014389893636826824,0.00044749078289243083,0.000513932419575623,0.0,0.00023324703359307438 +104763,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,80806.0,,5569.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1946 to 1959,G: Buildings with Furnace-Based Multizone Systems,32736.412774265485,0.0,0.0,0.0038335700944367172,0.0009471381766978005,0.0,0.004780708271134517,0.002707248885227863,0.0005115918484142036,0.0009075640100082427,0.0,0.0006543035274842085,0.002654944319038707,0.0005115918484142036,0.0005493929789617562,0.0,0.00011764094802205033,5.230456618915576e-05,0.0003581710310464866,0.0005366625794621582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.328186848059609e-05,0.0,0.0,0.0004568395278105069,0.00017227917691051413,0.000520121396291103,0.00031638485255114265,6.0965463707163545e-05,6.547015521002876e-05,0.0,1.401905634217197e-05,3.4946650446050746e-06,2.3930755446124445e-05,3.5856447989866575e-05,0.0,0.0,0.0,0.000294537543483717,5.56590888707785e-05,9.873923137272262e-05,0.0,7.118553256388503e-05 +104764,50.0,the Greater Atlanta and Macon Area,G1301350050319,ComStock 90.1-2004,gen2_t8_halogen,1001_5000,Electricity,26326.0,,1804.0,,7.56685751697572,Food Service,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,22700.572550927158,0.005462336432490968,0.0,0.005481629104694168,0.0012412575383671802,0.0,0.012185151355581304,0.00807279993751718,0.0006081136342413661,0.0016109022689816397,0.0003636919730201637,0.0015297869817629838,0.0026104635050262113,0.0006081136342413661,0.00036964473061445937,0.0003636919730201637,0.0015297869817629838,0.0,0.0012412575383671802,0.0,0.0,0.0,0.0,0.005462336432490968,0.0,0.0,0.0,8.293125618649569e-05,0.0,0.0,0.0006532365708364225,0.00028523276970427857,0.0007361678270229181,0.0003110845691578562,7.246788455105947e-05,4.404994421230812e-05,4.33405640474611e-05,0.0001823021556167117,0.0,8.293125618649569e-05,0.0,0.0,0.0,0.0,0.00048771947221407807,3.673928042735579e-05,9.732291280561839e-05,2.1972507494648098e-05,9.24223200277744e-05 +104765,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,19931.0,,2391.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0016453925520450371,0.0007039274996504087,0.0,0.0023493507413017436,0.0014009191482775366,0.0004344727563565783,0.0005139281470613308,0.0,0.0,0.0006969916486271279,0.0004344727563565783,0.0005139281470613308,0.0,0.0,0.0007039274996504087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.703326045357484e-05,0.0,0.0,0.00019607949473912352,0.00011569312885490817,0.0002431127551926983,8.305967480546563e-05,5.177560724851291e-05,6.124421268514497e-05,0.0,0.0,4.703326045357484e-05,0.0,0.0,0.0,0.0,0.0,0.00014496827057472426,4.495959968731098e-05,5.318170914485481e-05,0.0,0.0 +104766,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,13365.0,,948.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006127080995927647,0.00016123990675396017,0.0,0.0007739302759853049,0.0005230279315301377,8.934329119564608e-05,6.051372352664023e-05,0.0,0.00010106306009430097,0.00040774512157695433,8.934329119564608e-05,6.051372352664023e-05,0.0,5.510596329352411e-05,0.0001152828099531833,0.0,4.595709680077686e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0773013776571862e-05,0.0,0.0,7.301427540059513e-05,2.5182477632923657e-05,8.3787289177167e-05,4.858955613587656e-05,1.0646726676030873e-05,7.211208205059212e-06,0.0,6.5667843836284884e-06,7.702456078213134e-06,0.0,3.070557698358727e-06,0.0,0.0,0.0,5.662408346935279e-05,9.67248912173527e-06,6.551340617678603e-06,0.0,1.0941295493925587e-05 +104767,50.0,the Greater Atlanta and Macon Area,G1301350050545,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,14506.0,,672.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0034831257034571928,0.0005334606256185328,0.0,0.004016586329075726,0.002294955882118303,0.0008540332434320884,0.0007794314629192331,0.0,8.816574060610171e-05,0.0017614952564997694,0.0008540332434320884,0.0007794314629192331,0.0,8.816574060610171e-05,0.0005334606256185328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.564529725867034e-05,0.0,0.0,0.00041507695156159515,0.00016104704444519933,0.00045072224882026547,0.0002099137796067544,0.00010177339131464672,9.288325002413621e-05,0.0,1.0506530616057853e-05,3.564529725867034e-05,0.0,0.0,0.0,0.0,0.0,0.00025752905362541655,9.583555599452396e-05,8.746409836261802e-05,0.0,9.893540837707005e-06 +104768,50.0,the Greater Atlanta and Macon Area,G1301350050415,ComStock 90.1-2004,gen1_t12_incandescent,5001_10000,Electricity,13664.0,,344.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003179590742833935,0.00027318146456093236,0.0,0.003452772207394867,0.001633051170982625,0.000758920108631885,0.0009815675511381007,0.0,7.915066956851721e-05,0.0013598697064216925,0.000758920108631885,0.0009815675511381007,0.0,7.915066956851721e-05,0.00027318146456093236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8254630825344386e-05,0.0,0.0,0.00037890489452631446,0.00013633632677923418,0.00039715952535165883,0.00016205270720532882,9.043885423404073e-05,0.000116971264390758,0.0,9.432212674583365e-06,1.8254630825344386e-05,0.0,0.0,0.0,0.0,0.0,0.0001878437930406617,8.729575309906873e-05,0.00011290605904312855,0.0,9.10440668219363e-06 +104769,35.0,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,71770.0,,2325.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006259267962841673,0.0006845009788639629,0.0,0.0069437689417056365,0.0019722675487218694,0.0017464841151896698,0.003225047967400394,0.0,0.0,0.0012877665698579066,0.0017464841151896698,0.003225047967400394,0.0,0.0,0.0006845009788639629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.573429953186803e-05,0.0,0.0,0.0007459050068734568,0.00029151352262116577,0.0007916393064053248,0.00015346068227844084,0.0002081251759276831,0.00038432280588909296,0.0,0.0,4.573429953186803e-05,0.0,0.0,0.0,0.0,0.0,0.00022485260201247337,0.00019911167626742135,0.00036767852695997465,0.0,0.0 +104770,50.0,the Greater Atlanta and Macon Area,G1300670031406,ComStock 90.1-2004,gen5_led,1001_5000,Electricity,21035.0,,4877.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005102477133190238,0.003782667431945728,0.0,0.008885063704352896,0.003624665461829825,0.0003960561154696489,0.0038572210739349112,0.00041295601913097124,0.000594326755553679,0.002335744579717492,0.0003960561154696489,0.001363474524101515,0.00041295601913097124,0.000594326755553679,0.001288920882112332,0.002493746549833395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025273310444387824,0.0,0.0,0.0006080511424893462,0.0004128106712173077,0.0008607842469332245,0.0002783456198210398,4.719714899548062e-05,0.000162482304279664,4.921107389136782e-05,7.082463150608057e-05,8.611726560144118e-05,0.000166615838842437,0.0,0.0,0.0,0.0,0.0003511572942822574,3.836988416085524e-05,0.00037368726301370293,4.0007145449058334e-05,5.757832759948674e-05 +104771,50.0,the Greater Atlanta and Macon Area,G1301350050215,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,370036.0,,23051.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.017371232949489637,0.003920094258166574,0.0,0.021291327207656207,0.010698003630740102,0.005818785471555769,0.0024547862689677305,0.0,0.002319769566754028,0.00866298366839212,0.005818785471555769,0.0024547862689677305,0.0,0.00043469527093543465,0.0020350199623479803,0.0,0.0018850742958185938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026191786058294184,0.0,0.0,0.0020700969789154695,0.0007142403994711439,0.0023320148394984116,0.0010323513807268042,0.0006934136604263727,0.00029253223729422005,0.0,5.180181336171205e-05,0.00013596817823228807,0.0,0.00012594968235065377,0.0,0.0,0.0,0.0011717401633338628,0.000637324950914583,0.00026886994649028565,0.0,0.0002540817207459896 +104772,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2004,gen2_t8_halogen,_1000,Electricity,4370.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,8726.05822017302,0.0,0.0,0.0007220327537441538,0.0,0.0,0.0007220327537441538,0.00042122712655429275,0.0001480456619933603,0.00012521850964131146,0.0,2.7541455555189372e-05,0.00042122712655429275,0.0001480456619933603,0.00012521850964131146,0.0,2.7541455555189372e-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,8.60398752364199e-05,2.6878814349500914e-05,8.60398752364199e-05,5.019485504915081e-05,1.7641623903000185e-05,1.492146289896217e-05,0.0,3.2819333853067387e-06,0.0,0.0,0.0,0.0,0.0,0.0,5.019485504915081e-05,1.7641623903000185e-05,1.492146289896217e-05,0.0,3.2819333853067387e-06 +104773,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130000400,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,57132.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.007302815633616983,0.0,0.0,0.007302815633616983,0.004325716911126301,0.0024181637456371736,0.0005589349768535091,0.0,0.0,0.004325716911126301,0.0024181637456371736,0.0005589349768535091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008702624054726948,0.0002531805420893019,0.0008702624054726948,0.000515487312474597,0.00028816789354748777,6.660719945061007e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000515487312474597,0.00028816789354748777,6.660719945061007e-05,0.0,0.0 +104774,85.0,Rural Climate Zone 3A,G1300310110403,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,145076.0,,1666.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,153306.56730200956,0.0,0.0,0.01632033236329223,0.0006193160571491991,0.0,0.016939648420441433,0.010726261171740414,0.0017682455704152258,0.004227143046144056,0.0,0.0002179986321417378,0.010726261171740414,0.0017682455704152258,0.0036078269889948567,0.0,0.0002179986321417378,0.0,0.0006193160571491991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1378261183465185e-05,0.0,0.0,0.0019448625925661154,0.0006524862431563405,0.0019862408537495804,0.0012782278967512462,0.00021071842091318613,0.00042993779753705243,0.0,2.5978477364631315e-05,0.0,4.1378261183465185e-05,0.0,0.0,0.0,0.0,0.0012576965954966062,0.00020733379490817837,0.0004956492605102116,0.0,2.556120283458412e-05 +104775,81.0,the Columbus-Albany Area,G1302150010501,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,7425.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0006615758429595788,0.0,0.0,0.000661575842959579,0.00023373204156330437,0.00020221381589556365,0.00022562998550071085,0.0,0.0,0.00023373204156330437,0.00020221381589556365,0.00022562998550071085,0.0,0.0,0.0,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.884039581633951e-05,2.6803793235132473e-05,7.884039581633951e-05,2.7853989633865645e-05,2.4097943500202306e-05,2.6888462682271566e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7853989633865642e-05,2.4097943500202303e-05,2.688846268227156e-05,0.0,0.0 +104776,33.0,Rural Lower Plains-Upper South Appalachia,G1302410970202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,123607.0,,5807.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.006362699768838729,0.0009875102096512608,0.0,0.007350227708851411,0.003749439529498566,0.001849808606954109,0.0012193169548570314,0.0,0.0005316626175417034,0.0031040543738086444,0.001849808606954109,0.0008771741705342723,0.0,0.0005316626175417034,0.000645385155689922,0.0003421427843227589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.598015922154485e-05,0.0,0.0,0.0007582314803488803,0.0002844998810146699,0.0008242116395704252,0.000369904573285548,0.00022043836254573157,0.00010453126723114136,0.0,6.335727728645939e-05,4.3121189953753094e-05,2.28601539158674e-05,0.0,0.0,0.0,0.0,0.00042044026722555647,0.00020742674175836909,0.00013672708742186373,0.0,5.9617543164635836e-05 +104777,50.0,the Greater Atlanta and Macon Area,G1302170100300,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,94941.0,,4302.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.008459160321473605,0.0012662531558432165,0.0,0.009725413477316822,0.002699058805064066,0.0027289811712043273,0.004297373501048428,0.0,0.0,0.00143280564922085,0.0027289811712043273,0.004297373501048428,0.0,0.0,0.0012662531558432165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.460363863109289e-05,0.0,0.0,0.0010080607153733492,0.0003516536186867526,0.001092664354004442,0.00017074449860916407,0.000325207066320905,0.0005121091504432801,0.0,0.0,8.460363863109289e-05,0.0,0.0,0.0,0.0,0.0,0.00030324318369947433,0.00030660500507037955,0.000482816165234588,0.0,0.0 +104778,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010401,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,11168.0,,348.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.000574853777960952,5.916621605871619e-05,0.0,0.0006340199940196682,0.00032049401302887447,0.00014920099134974434,5.1152092696852345e-05,0.0,0.00011319062730561706,0.00032049401302887447,0.00014920099134974434,5.1152092696852345e-05,0.0,5.402441124690089e-05,0.0,0.0,5.916621605871619e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.952809717335365e-06,0.0,0.0,6.850453511035974e-05,2.1857342229667468e-05,7.24573448276951e-05,3.819283130759554e-05,1.778007719923747e-05,6.095724625050518e-06,0.0,6.438014881292521e-06,0.0,0.0,3.952809717335365e-06,0.0,0.0,0.0,3.6626834226500086e-05,1.7051051671608666e-05,5.845785391870589e-06,0.0,1.2935699806482434e-05 +104779,50.0,the Greater Atlanta and Macon Area,G1301350050304,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,109256.0,,6001.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.010117473197769974,0.0017664630488894743,0.0,0.011883936246659448,0.005248628537852023,0.0023379342077589982,0.004297373501048428,0.0,0.0,0.0034821654889625486,0.0023379342077589982,0.004297373501048428,0.0,0.0,0.0017664630488894743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011802492098314631,0.0,0.0,0.001205679554278684,0.00047480119477256495,0.00132370447526183,0.0004149628719137461,0.00027860706111532455,0.0005121096212496133,0.0,0.0,0.00011802492098314631,0.0,0.0,0.0,0.0,0.0,0.0005846238939976344,0.00026041320901130135,0.0004786673722528944,0.0,0.0 +104780,85.0,Rural Climate Zone 3A,G1301070970300,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,28950.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003069697180321423,0.0,0.0,0.003069697180321423,0.0007853470251582143,0.00099474220892744,0.0012896079462357687,0.0,0.0,0.0007853470251582143,0.00099474220892744,0.0012896079462357687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003658108700934874,0.00012481629506307828,0.0003658108700934874,9.35885404072257e-05,0.00011854182728485369,0.00015368050240140802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.35885404072257e-05,0.00011854182728485369,0.00015368050240140802,0.0,0.0 +104781,50.0,the Greater Atlanta and Macon Area,G1302250040302,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,61543.0,,1544.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00548340402602945,0.00045457444848157356,0.0,0.0059379784745110225,0.0023295252556334274,0.00140595224371036,0.0022025009751672356,0.0,0.0,0.001874950807151854,0.00140595224371036,0.0022025009751672356,0.0,0.0,0.00045457444848157356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0371438890809307e-05,0.0,0.0,0.0006534465903881259,0.0002470512083383352,0.0006838180292789352,0.00022343424016595773,0.00016754459374869636,0.00026246775647347176,0.0,0.0,3.0371438890809307e-05,0.0,0.0,0.0,0.0,0.0,0.00026826829640771565,0.0001619095617609974,0.0002536401711102222,0.0,0.0 +104782,50.0,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,47202.0,,19789.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0023726592348700458,0.0033652225975260215,0.0,0.005737881832396068,0.0014382337273104232,0.0004967515359056194,0.003340080945032387,0.0,0.0004628156241476383,0.0010666230823075365,0.0004967515359056194,0.0007035230107862753,0.0,0.00010576160587061498,0.0003716106450028867,0.0026365579342461118,0.00035705401827702333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022484458467359811,0.0,0.0,0.00028274567822960425,0.0003045778053658054,0.0005075902629032024,0.0001271076193286195,5.9197017366433936e-05,8.38376147368645e-05,0.0,1.2603426797686349e-05,2.482886011682794e-05,0.00017615945350220265,2.3856271054567544e-05,0.0,0.0,0.0,0.00012723047582471694,4.3944133056955934e-05,0.0002954735936586884,0.0,4.094206036284115e-05 +104783,33.0,Rural Lower Plains-Upper South Appalachia,G1302910000101,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,19419.0,,16.0,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,17279.881383272885,0.0,0.0046011185710670395,0.0032498651656815906,8.189083706024702e-06,0.0,0.007859172820454657,0.007149397638707806,0.00010809590491952609,0.0005934901931212972,0.0,8.189083706024702e-06,0.002548279067640767,0.00010809590491952609,0.0005934901931212972,0.0,0.0,0.0,0.0,8.189083706024702e-06,0.0046011185710670395,0.0,0.0,0.0,0.0,0.0,0.0,5.478453566700191e-07,0.0,0.0,0.00038727898521996156,0.00013589407550855612,0.00038782683057663164,0.0003036725774948284,1.2881541303849008e-05,7.072486642128415e-05,0.0,0.0,0.0,0.0,5.478453566700191e-07,0.0,0.0,0.0,0.0003528015339649573,5.334211775333818e-06,2.9286977883663612e-05,0.0,4.0410695267680436e-07 +104784,35.0,Eastern Counties in South Carolina and Georgia,G1300290920303,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7663.0,,140.0,,4.088175128053588,Healthcare,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,12264.525384160763,0.0,0.0,0.001064767936833063,5.2194126820995514e-05,0.0,0.0011169620636540586,0.0005267073243339212,0.00017219799524313592,0.0003667925794265357,0.0,5.122541622669344e-05,0.0005267073243339212,0.00017219799524313592,0.00031459845260554015,0.0,5.122541622669344e-05,0.0,5.2194126820995514e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4877651752641916e-06,0.0,0.0,0.00012688531976997054,3.755171608427854e-05,0.00013037308494523472,6.276619060494229e-05,2.0520337750927947e-05,3.7489788973848784e-05,0.0,6.104384902503768e-06,0.0,3.4877651752641916e-06,0.0,0.0,0.0,0.0,6.147787912511534e-05,2.0099146239388853e-05,4.2812447862748626e-05,0.0,5.979088957801994e-06 +104785,50.0,the Greater Atlanta and Macon Area,G1301530021113,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,6559.0,,49.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001574908098143892,3.878961758373518e-05,0.0,0.001613697715727627,0.0010232519163027116,0.0002636701510809121,0.00028798603076026847,0.0,3.878961758373518e-05,0.0010232519163027116,0.0002636701510809121,0.00028798603076026847,0.0,0.0,0.0,0.0,3.878961758373518e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.589415480130791e-06,0.0,0.0,0.0001876798463749147,6.595709090126139e-05,0.0001902692618550455,0.00012193966281642922,3.142124515509023e-05,3.4318938403395286e-05,0.0,0.0,0.0,0.0,2.589415480130791e-06,0.0,0.0,0.0,0.00012065046935936772,3.108904755234919e-05,3.395610526263485e-05,0.0,4.57363968069378e-06 +104786,35.0,Eastern Counties in South Carolina and Georgia,G1300510010603,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,NaturalGas,232020.0,,4588.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.019279763089130247,0.0013503733667052198,0.0,0.020630136455835467,0.00483063610007731,0.006023418338443827,0.009776082017314329,0.0,0.0,0.003480262733372091,0.006023418338443827,0.009776082017314329,0.0,0.0,0.0013503733667052198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.022358687200627e-05,0.0,0.0,0.0022975325581450373,0.0006928306852495409,0.0023877561450170435,0.0004147362653708801,0.0007177992633999158,0.0011649970293742414,0.0,0.0,9.022358687200627e-05,0.0,0.0,0.0,0.0,0.0,0.0005591034774294056,0.0006971574900833658,0.001131495177504272,0.0,0.0 +104787,50.0,the Greater Atlanta and Macon Area,G1301210008902,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,27294.0,,4172.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0023702196735841813,0.0012280445960025767,0.0,0.0035982642695867586,0.0016278994764553462,0.0008422148656278575,0.0011281499275035544,0.0,0.0,0.0003998548804527696,0.0008422148656278575,0.0011281499275035544,0.0,0.0,0.0012280445960025767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.20507721744425e-05,0.0,0.0,0.00028245556475746907,0.0001600168076866754,0.0003645063369319115,4.7650113336765394e-05,0.00010036549699139248,0.0001344399544293112,0.0,0.0,8.20507721744425e-05,0.0,0.0,0.0,0.0,0.0,0.00016490719708151433,8.531687296410523e-05,0.0001142822668862919,0.0,0.0 +104788,50.0,the Greater Atlanta and Macon Area,G1300670030601,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,NaturalGas,337229.0,,34216.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.017358928078664116,0.005818767741194349,0.0,0.023177695819858467,0.009588508534518876,0.004985227990114827,0.00385119407368825,0.0,0.004752747491175094,0.007852103319207425,0.004985227990114827,0.00385119407368825,0.0,0.0006703849652921965,0.001736405215311451,0.0,0.004082362525882898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038877619023057215,0.0,0.0,0.002068629292374093,0.0009027541345668609,0.002457405482604665,0.0009357196976249201,0.000594079807392599,0.00045893921763757404,0.0,7.988845682672759e-05,0.00011601648911436328,0.0,0.0002727597011162089,0.0,0.0,0.0,0.0010166175976189936,0.0005285567077140639,0.00040832123714159137,0.0,0.0005039080602758796 +104789,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,105809.0,,5367.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.00942750946898502,0.0015798702425994413,0.0,0.011007349021978162,0.0035224916316377295,0.0029183974212737486,0.0045664599690666855,0.0,0.0,0.0019426213890382886,0.0029183974212737486,0.0045664599690666855,0.0,0.0,0.0015798702425994413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010555692219904092,0.0,0.0,0.0011234574372817735,0.0004523588206328331,0.0012290143594808143,0.00023149830339790485,0.00034777958045656903,0.0005441758962083326,0.0,0.0,0.00010555692219904092,0.0,0.0,0.0,0.0,0.0,0.0003933002204063628,0.00032585069577203534,0.0005098634433024164,0.0,0.0 +104790,50.0,the Greater Atlanta and Macon Area,G1300890023108,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,108913.0,,4235.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.010156354553594893,0.001233745235562041,0.0,0.011390099789156935,0.008045996864659894,0.00274963083630136,0.0005944720881956786,0.0,0.0,0.006812251629097854,0.00274963083630136,0.0005944720881956786,0.0,0.0,0.001233745235562041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.243169169083563e-05,0.0,0.0,0.0012103120217722846,0.0004871392365631202,0.0012927437134631202,0.0008118021085741458,0.0003276678890097811,7.084202418835744e-05,0.0,0.0,8.243169169083563e-05,0.0,0.0,0.0,0.0,0.0,0.0009131976065069171,0.00031207522706313575,6.747087989306716e-05,0.0,0.0 +104791,50.0,the Greater Atlanta and Macon Area,G1300670031404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,200001_500000,Electricity,419166.0,,,,7.614023970037612,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,2664908.3895131643,0.0,0.0,0.10774572577514857,0.0,0.0,0.10774572577514857,0.08224262161161276,0.015394741456378556,0.005128116468368345,0.0007954970915833923,0.004184821314228228,0.08224262161161276,0.015394741456378556,0.005128116468368345,0.0007954970915833923,0.004184821314228228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.012839850984833015,0.0037055154052094584,0.012839850984833015,0.009800695094845949,0.0018345617408753244,0.0006111077800350629,9.479785895279273e-05,0.000498697110129234,0.0,0.0,0.0,0.0,0.0,0.0,0.009800695094845949,0.0018345617408753244,0.0006111077800350629,9.479785895279273e-05,0.000498697110129234 +104792,50.0,the Greater Atlanta and Macon Area,G1300450911100,ComStock 90.1-2004,gen5_led,5001_10000,Electricity,25176.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0022200671301041562,0.0,0.0,0.002220067130104156,0.0018292500261386034,0.000295929979322016,9.491749824297445e-05,0.0,0.0,0.0018292500261386034,0.000295929979322016,9.491749824297445e-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.00026456246004131616,4.875355384431715e-05,0.00026456246004131616,0.00021798930328884505,3.52655837599538e-05,1.1311192574140988e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002179893032888451,3.526558375995381e-05,1.131119257414099e-05,0.0,0.0 +104793,50.0,the Greater Atlanta and Macon Area,G1301210005000,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,13210.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0029686049977249614,0.0,0.0,0.0029686049977249614,0.002047579024564034,0.0004944228868135797,0.0003549787604891075,0.0,7.162432585824023e-05,0.002047579024564034,0.0004944228868135797,0.0003549787604891075,0.0,7.162432585824023e-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.000353762186858116,0.00011022649458316999,0.000353762186858116,0.00024400552921311614,5.891929771927164e-05,4.230204513401036e-05,0.0,8.53531479171784e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00024400552921311614,5.891929771927164e-05,4.230204513401036e-05,0.0,8.53531479171784e-06 +104794,33.0,Rural Lower Plains-Upper South Appalachia,G1301290970600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,6061.0,,1026.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014529151643784136,0.0008140030197422635,0.0,0.0022669181841206767,0.0013173582705196885,0.0003074221930890057,0.0006026037392645938,0.0,3.953398124738894e-05,0.0005428892320248138,0.0003074221930890057,0.0006026037392645938,0.0,0.0,0.0007744690384948746,0.0,3.953398124738894e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4386581381838367e-05,0.0,0.0,0.00017314165054109373,0.00010704891912548248,0.0002275282319229321,6.469526920656567e-05,3.663502675819692e-05,7.181135457633113e-05,0.0,0.0,5.17451684677438e-05,0.0,2.641412914094568e-06,0.0,0.0,0.0,0.0001322218861712745,3.085564734421317e-05,6.0482713626563666e-05,0.0,3.967984780880789e-06 +104795,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010702,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,101538.0,,7431.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1970 to 1979,G: Buildings with Furnace-Based Multizone Systems,70149.4559448546,0.0,0.0,0.005226715512655946,0.0012636783191300033,0.0,0.006490393831785949,0.0026101928868144933,0.0012865682157232915,0.0014714604246116017,0.0,0.001122154574275142,0.0023574111240488005,0.0012865682157232915,0.00046056386824729154,0.0,0.001122154574275142,0.0002527817627656928,0.0010108965563643104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.443212744573327e-05,0.0,0.0,0.0006228568595833183,0.00024732497299685647,0.0007072889870290515,0.000280927799861387,0.00015331766891554409,5.4884442040022775e-05,0.0,0.00013372483587592555,1.6889505570123178e-05,6.754262187561007e-05,0.0,0.0,0.0,0.0,0.00028444509389000426,0.0001402034381313198,0.0001603520187141706,0.0,0.00012228650413201263 +104796,50.0,the Greater Atlanta and Macon Area,G1301210011614,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,83727.0,,7087.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0043098785236250145,0.0012051681264438289,0.0,0.005515046650068844,0.002430442482737998,0.0014040141297697213,0.0011967816654921439,0.0,0.00048382610243040083,0.002430442482737998,0.0014040141297697213,0.0003300861385571231,0.0,0.00014535350292159288,0.0,0.000866695526935021,0.000338472599508808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.05217990724321e-05,0.0,0.0,0.0005136003162219765,0.000219118678856111,0.0005941221152944086,0.00028963137147625296,0.00016731378786595985,3.933575951482661e-05,0.0,1.732151025957719e-05,0.0,5.790717622342473e-05,2.2614622849007366e-05,0.0,0.0,0.0,0.00026182546052038716,0.00015125091365666187,0.00012892628109299528,0.0,5.2121370071640403e-05 +104797,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,154779.0,,15646.0,,9.729435225087556,Education,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,1459415.2837631335,0.0,0.0,0.056060435654109855,0.013838674254659187,0.0,0.06989910990876906,0.05533957338918195,0.00752428230552162,0.0020504506154115326,0.0006661774340334119,0.004318718381873304,0.04150089913452276,0.00752428230552162,0.0020504506154115326,0.0006661774340334119,0.004318718381873304,0.013838674254659187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009246190453958962,0.0,0.0,0.006680614948112415,0.0022694983018493047,0.0076052339935083115,0.004945582814033531,0.000896654338439847,0.00024434828006336315,7.938709130549744e-05,0.0005146534136239004,0.0009246190453958962,0.0,0.0,0.0,0.0,0.0,0.0060211125045078005,0.0008186646101988089,0.00022309521169426924,7.248211420190694e-05,0.0004698895864207788 +104798,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen4_led,100001_200000,Electricity,95597.0,,4332.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.007906900856146442,0.0012752759000947413,0.0,0.009182207445847482,0.0029415987636348118,0.002212290959576203,0.00402828703303017,0.0,0.0,0.0016663228635400706,0.002212290959576203,0.00402828703303017,0.0,0.0,0.0012752759000947413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.520712638407923e-05,0.0,0.0,0.0009422516584726944,0.00035092597904363824,0.0010274587848567737,0.00019857280498225606,0.00026363487586472125,0.0004800439776257173,0.0,0.0,8.520712638407923e-05,0.0,0.0,0.0,0.0,0.0,0.0003291552177452966,0.0002475480753926703,0.00045075205765289397,0.0,0.0 +104799,50.0,the Greater Atlanta and Macon Area,G1301130140306,ComStock DOE Ref 1980-2004,gen3_t5_cfl,50001_100000,NaturalGas,52852.0,,5624.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004666017051896434,0.0016554894325169808,0.0,0.006321506484413415,0.0026341809773507223,0.0014847938422891584,0.0022025009751672356,0.0,0.0,0.0009786915448337418,0.0014847938422891584,0.0022025009751672356,0.0,0.0,0.0016554894325169808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011061050976340702,0.0,0.0,0.0005560397343753916,0.0002698669249466995,0.0006666502441387984,0.00011662867507173316,0.00017693985351663598,0.0002624675485692403,0.0,0.0,0.00011061050976340702,0.0,0.0,0.0,0.0,0.0,0.0002777941296092157,0.0001565826405301396,0.00023227023755041288,0.0,0.0 +104800,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,47472.0,,5763.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004592760961663817,0.001696398677711819,0.0,0.0062891596393756365,0.0024896636212948403,0.001543165473467389,0.0022563305446134064,0.0,0.0,0.0007932649435830215,0.001543165473467389,0.0022563305446134064,0.0,0.0,0.001696398677711819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011334328006285397,0.0,0.0,0.0005473105343095258,0.0002659775729539512,0.0006606538143723798,9.453186519948029e-05,0.00018389607620804193,0.00026888259290200366,0.0,0.0,0.00011334328006285397,0.0,0.0,0.0,0.0,0.0,0.00026153029374777935,0.000162104035310384,0.00023701948531421637,0.0,0.0 +104801,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,52303.0,,12941.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004252689434278973,0.003809132554458274,0.0,0.00806179129913095,0.004519197975368223,0.0015015503673277042,0.0020410429564350213,0.0,0.0,0.0007100654209099493,0.0015015503673277042,0.0020410429564350213,0.0,0.0,0.003809132554458274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025450331484858394,0.0,0.0,0.0005067830278220056,0.00041116773799703484,0.0007612863426705895,8.461683118919357e-05,0.00017893623631385548,0.00024322630311053757,0.0,0.0,0.00025450331484858394,0.0,0.0,0.0,0.0,0.0,0.00042675424987040757,0.00014179352268791848,0.0001927385701122633,0.0,0.0 +104802,50.0,the Greater Atlanta and Macon Area,G1300890021307,ComStock 90.1-2007,gen4_led,50001_100000,Electricity,65283.0,,7018.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.0056463351458639535,0.0020657787791109696,0.0,0.0077121139249749235,0.003119936065830762,0.0017169300243249823,0.0028752478348191787,0.0,0.0,0.0010541572867197929,0.0017169300243249823,0.0028752478348191787,0.0,0.0,0.0020657787791109696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013802346227015816,0.0,0.0,0.000672861213026736,0.00035898874528826147,0.0008108846752968941,0.0001256215814930556,0.00020460273593493248,0.000342636895598748,0.0,0.0,0.00013802346227015816,0.0,0.0,0.0,0.0,0.0,0.00032804343508144855,0.00018052537330570862,0.0003023158669097369,0.0,0.0 +104803,50.0,the Greater Atlanta and Macon Area,G1300210010800,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,55179.0,,799.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.006036694436300322,0.00029685167451792615,0.0,0.0063335461108182485,0.003289741178249829,0.0008980722177655629,0.002017552928964807,0.0,0.00012817978583804985,0.003289741178249829,0.0008980722177655629,0.0017207012544468803,0.0,0.00012817978583804985,0.0,0.00029685167451792615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9833870786850865e-05,0.0,0.0,0.0007193794624621226,0.00024421495751667964,0.0007392133332489735,0.00039203114641980465,0.00010702127067811324,0.00020505214510087473,0.0,1.5274900263329958e-05,0.0,1.9833870786850865e-05,0.0,0.0,0.0,0.0,0.00038395876486107844,0.00010481757706931938,0.000235476619184766,0.0,1.4960372133809742e-05 +104804,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,25792.0,,1900.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0024598947031860686,0.0005592873851693356,0.0,0.0030191820883554046,0.0009708656952278276,0.000906693728459331,0.0011416226646682457,0.0,0.0,0.0004115783100584921,0.000906693728459331,0.0011416226646682457,0.0,0.0,0.0005592873851693356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7368303102179686e-05,0.0,0.0,0.00029314144035162964,0.00012700256768595063,0.00033050974345380936,4.904708257299331e-05,0.00010804913932864917,0.00013604521844998716,0.0,0.0,3.7368303102179686e-05,0.0,0.0,0.0,0.0,0.0,0.00010628062914636664,9.925572648965565e-05,0.000124973387817787,0.0,0.0 +104805,46.0,the Tallahassee-Valdosta Area,G1301850011200,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7847.0,,,,8.72605822017302,Office,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0015800359367157289,0.0,0.0,0.001580035936715729,0.0008680934459677708,0.00039194882245057795,0.00026747467647292024,0.0,5.2436284750720904e-05,0.0008680934459677708,0.00039194882245057795,0.00026747467647292024,0.0,5.2436284750720904e-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.00018828579821984366,5.436668584785231e-05,0.00018828579821984366,0.00010344680371207492,4.670678380254603e-05,3.187375792729138e-05,0.0,6.248596946785013e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001034468037120749,4.670678380254602e-05,3.1873757927291374e-05,0.0,6.248596946785012e-06 +104806,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302790970400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,102110.0,,15342.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.0064403410214971405,0.0026090049525993495,0.0,0.00904934597409649,0.0031636461185414414,0.0016770439652771143,0.003256500021298258,0.0,0.0009521558689796755,0.0031636461185414414,0.0016770439652771143,0.0006474950686989083,0.0,0.0009521558689796755,0.0,0.0026090049525993495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001743188681681639,0.0,0.0,0.000767482904456109,0.0003584475667896219,0.0009418017726242729,0.00037700555042426164,0.00019985006524891535,7.716072709307023e-05,0.0,0.00011346656168986163,0.0,0.0001743188681681639,0.0,0.0,0.0,0.0,0.0003292533549857689,0.00017453669953474416,0.0003389170334948871,0.0,9.909468460887267e-05 +104807,50.0,the Greater Atlanta and Macon Area,G1300890021806,ComStock 90.1-2004,gen4_led,100001_200000,Electricity,144661.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.011831518399102974,0.0,0.0,0.011831518399102974,0.004471352879150105,0.0026860464119938406,0.004674119107959026,0.0,0.0,0.004471352879150105,0.0026860464119938406,0.004674119107959026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014099389647810373,0.00041860956657358245,0.0014099389647810373,0.0005328423991697957,0.00032009091054344683,0.0005570056550677945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005328423991697957,0.00032009091054344683,0.0005570056550677945,0.0,0.0 +104808,50.0,the Greater Atlanta and Macon Area,G1301170130410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,34409.0,,5059.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002996349021269914,0.001489151766383432,0.0,0.004485500787653345,0.0024290516488568773,0.0008744696418467431,0.001181979496949725,0.0,0.0,0.0009398998824734453,0.0008744696418467431,0.001181979496949725,0.0,0.0,0.001489151766383432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.949674401619029e-05,0.0,0.0,0.0003570677881924169,0.00021110464152071526,0.00045656453220860717,0.00011200563411496977,0.00010420846791849894,0.00014085368615894813,0.0,0.0,9.949674401619029e-05,0.0,0.0,0.0,0.0,0.0,0.0002472452647480384,8.900941987555884e-05,0.00012030984758500994,0.0,0.0 +104809,50.0,the Greater Atlanta and Macon Area,G1300890021504,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,66164.0,,1677.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.015532386098067357,0.0013003222525249946,0.0,0.01683270835059235,0.010423197519882433,0.0009051556056690997,0.0038561698837550193,0.0004203143503902072,0.0012277901301125252,0.010423197519882433,0.0009051556056690997,0.0025558476312300253,0.0004203143503902072,0.0012277901301125252,0.0,0.0013003222525249946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.688009044401824e-05,0.0,0.0,0.001850967816766486,0.0007234577033386986,0.0019378479072105046,0.0012421145750106742,0.00010786584138980075,0.00030457597951124015,5.008814039165484e-05,0.00014631364442225608,0.0,8.688009044401824e-05,0.0,0.0,0.0,0.0,0.0011999596903629057,0.00010420509044725389,0.0004439375163783357,4.838824907493529e-05,0.00014134805193417033 +104810,50.0,the Greater Atlanta and Macon Area,G1301210007806,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,36943.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00505242988479081,0.0,0.0,0.00505242988479081,0.001890449058332194,0.0011747367498634673,0.001987244076595148,0.0,0.0,0.001890449058332194,0.0011747367498634673,0.001987244076595148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006020882097318989,0.0002030457690007432,0.0006020882097318989,0.00022528112513682346,0.00013999108602391803,0.0002368159985711574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022528112513682346,0.00013999108602391803,0.0002368159985711574,0.0,0.0 +104811,50.0,the Greater Atlanta and Macon Area,G1302470060404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,40983.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003399413249073184,0.0,0.0,0.003399413249073184,0.0019133848965811762,0.0011038373507667768,0.0003821606281257934,0.0,0.0,0.0019133848965811762,0.0011038373507667768,0.0003821606281257934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004051023473940334,0.00011331710988551226,0.0004051023473940334,0.00022801485323523175,0.0001315424366421905,4.5541437945958974e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022801485323523175,0.0001315424366421905,4.5541437945958974e-05,0.0,0.0 +104812,81.0,the Columbus-Albany Area,G1301770020403,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,6747.0,,,,8.72605822017302,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0013217417454278717,0.0,0.0,0.0013217417454278722,0.000517332746239368,0.0005396636561489809,0.00022306097787491212,0.0,4.160165809087163e-05,0.000517332746239368,0.0005396636561489809,0.00022306097787491212,0.0,4.160165809087163e-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.0001575071754004461,4.911385559526807e-05,0.0001575071754004461,6.16486691777605e-05,6.430976281133288e-05,2.6581368628684264e-05,0.0,4.957518880321907e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.164866917776048e-05,6.430976281133287e-05,2.6581368628684254e-05,0.0,4.957518880321905e-06 +104813,50.0,the Greater Atlanta and Macon Area,G1301210004400,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,7099.0,,457.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014510956087561487,0.000362670518346863,0.0,0.0018137661271030118,0.0011586433960139577,0.00042155795484924994,0.00019651200720459443,0.0,3.7052769035209724e-05,0.0008330256467023044,0.00042155795484924994,0.00019651200720459443,0.0,0.0,0.0003256177493116533,0.0,3.7052769035209724e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4231947490165962e-05,0.0,0.0,0.00017292371714621861,8.096553907408707e-05,0.0001971556646363846,9.926974517507632e-05,5.023608927297101e-05,2.3417882698171297e-05,0.0,0.0,2.1756254793337148e-05,0.0,2.4756926968288146e-06,0.0,0.0,0.0,0.00012594408143598324,4.582318388744425e-05,2.1360777892204734e-05,0.0,4.027621420752407e-06 +104814,50.0,the Greater Atlanta and Macon Area,G1300670031404,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,11320.0,,538.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002724536423120265,0.0004266857934210869,0.0,0.003151222216541352,0.001406268374789444,0.0007600780076642352,0.0008714017289173431,0.0,0.00011347410517032977,0.0010930566865386868,0.0007600780076642352,0.0008714017289173431,0.0,0.0,0.0003132116882507572,0.0,0.00011347410517032977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8508045133171813e-05,0.0,0.0,0.00032467685249153546,0.00011664367169448226,0.0003531848976247073,0.0001302570967921842,9.057677962471042e-05,0.00010384297607464082,0.0,0.0,2.0926529738189894e-05,0.0,7.58151539498192e-06,0.0,0.0,0.0,0.00015761273494955245,8.51885569714984e-05,9.766557521781361e-05,0.0,1.2718030485842846e-05 +104815,50.0,the Greater Atlanta and Macon Area,G1302970110508,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,70517.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.00608016342048828,0.0,0.0,0.00608016342048828,0.0023366145546881967,0.0014334194413468042,0.002310129424453279,0.0,0.0,0.0023366145546881967,0.0014334194413468042,0.002310129424453279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007245609487195352,0.00023763186553156363,0.0007245609487195352,0.00027844969640648126,0.00017081773605549891,0.000275293516257555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00027844969640648126,0.00017081773605549891,0.000275293516257555,0.0,0.0 +104816,35.0,Eastern Counties in South Carolina and Georgia,G1300510003501,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,103159.0,,10281.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,153306.56730200956,0.0,0.0,0.011379210860723781,0.003821137061860172,0.0,0.015200347922583951,0.009682959861677084,0.0014493072943472126,0.003727017140517783,0.0,0.00034106362604187265,0.0067348247874019366,0.0014493072943472126,0.0031950787789746305,0.0,0.0,0.002948135074275147,0.0005319383615431524,0.00034106362604187265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025530730154890783,0.0,0.0,0.0013560368436032195,0.0006996182621234876,0.0016113441451521273,0.0008025750343067602,0.00017271092986079981,0.00038075087943565945,0.0,0.0,0.00019697812411064458,3.5541187211383844e-05,2.2787990226879413e-05,0.0,0.0,0.0,0.0010264620757578088,0.0001536368006289465,0.0003950901175973911,0.0,3.6155151167980825e-05 +104817,50.0,the Greater Atlanta and Macon Area,G1301390000900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,100900.0,,4396.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00487863305725747,0.0007475120374694261,0.0,0.0056261450947268955,0.002375584744504355,0.0015618852678538715,0.000787405350664545,0.0,0.0009012520013427041,0.0018159081559189678,0.0015618852678538715,0.0005995699017805056,0.0,0.0009012520013427041,0.0005596765885853868,0.0001878354488840394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9944167797438835e-05,0.0,0.0,0.0005813780948259809,0.00017713678265680465,0.0006313222626234198,0.0002163985714188165,0.00018612711198085264,7.14496874680105e-05,0.0,0.00010740061106240957,3.739415561418298e-05,1.2550012183255859e-05,0.0,0.0,0.0,0.0,0.0002665696512803798,0.00017526262203651136,8.83565068468001e-05,0.0,0.00010113149289641291 +104818,50.0,the Greater Atlanta and Macon Area,G1300210012102,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,70281.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.00619745960287832,0.0,0.0,0.00619745960287832,0.004194077731163085,0.0013659918875140126,0.000637389984201222,0.0,0.0,0.004194077731163085,0.0013659918875140126,0.000637389984201222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007385382341742357,0.00021714892855491136,0.0007385382341742357,0.000499799427514475,0.00016278238199929378,7.595642466046695e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000499799427514475,0.00016278238199929378,7.595642466046695e-05,0.0,0.0 +104819,50.0,the Greater Atlanta and Macon Area,G1301210011000,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,47034.0,,803.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.008319480325985035,0.00029840161146880956,0.0,0.008617920685877616,0.005352242278790251,0.000906596870995421,0.0022235395497371985,0.0,0.00013550323793097351,0.005352242278790251,0.000906596870995421,0.0019251379382683894,0.0,0.00013550323793097351,0.0,0.00029840161146880956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9938064369041064e-05,0.0,0.0,0.0009914177151379502,0.0003141039997610173,0.0010113557795069913,0.000637817219704128,0.0001080375411894582,0.00022941527370670822,0.0,1.614768053765591e-05,0.0,1.9938064369041064e-05,0.0,0.0,0.0,0.0,0.0006281122047046258,0.0001063936439641067,0.0002609434057886181,0.0,1.59019777297295e-05 +104820,50.0,the Greater Atlanta and Macon Area,G1301210011306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,43204.0,,559.0,,9.325022323477118,Office,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,349688.3371303919,0.017678599294152057,0.0,0.010694306356333423,0.0004738274713326127,0.0,0.028846733121818104,0.022210320230103758,0.003263143115388932,0.002899353920834738,0.0,0.0004738274713326127,0.0045317209359516985,0.003263143115388932,0.002899353920834738,0.0,0.0,0.0,0.0,0.0004738274713326127,0.0,0.0,0.0,0.017678599294152057,0.0,0.0,0.0,3.165945624871228e-05,0.0,0.0,0.0012744205173479699,0.000417602505436681,0.001306079973596682,0.0005400367211522707,0.00038886267128784814,0.000345510592332789,0.0,0.0,0.0,0.0,3.165945624871228e-05,0.0,0.0,0.0,0.001005606227131742,0.00014774379670625098,0.00013127268437572743,0.0,2.1453263654989472e-05 +104821,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,60934.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.005066731241325538,0.0,0.0,0.005066731241325539,0.0011641795252970574,0.0016193063866919897,0.0022832453293364914,0.0,0.0,0.0011641795252970574,0.0016193063866919897,0.0022832453293364914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006037923188879681,0.00020572133934627503,0.0006037923188879681,0.00013873296642375458,0.00019296953235574908,0.0002720898201084645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013873296642375455,0.00019296953235574906,0.00027208982010846447,0.0,0.0 +104822,50.0,the Greater Atlanta and Macon Area,G1300670030414,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,23438.0,,2477.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.002174051710129265,0.0007291236664208226,0.0,0.0029031753765500884,0.001064653132073607,0.0007238143645313201,0.0011147078799451605,0.0,0.0,0.0003355294656527845,0.0007238143645313201,0.0011147078799451605,0.0,0.0,0.0007291236664208226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.871638106446792e-05,0.0,0.0,0.0002590772056920232,0.00012963972717803876,0.0003077935867564911,3.9984346270904706e-05,8.625544743430783e-05,0.00013283741198681065,0.0,0.0,4.871638106446792e-05,0.0,0.0,0.0,0.0,0.0,0.00011287413389468519,7.673853298856044e-05,0.00011818091987324539,0.0,0.0 +104823,50.0,the Greater Atlanta and Macon Area,G1300210013202,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,82243.0,,2046.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,120171.9144447585,0.0,0.0,0.006825464144853276,0.000596021141767004,0.0,0.0074214852866202816,0.004583163539960686,0.0018865650082776411,0.0009517263647825156,0.0,0.0,0.003987142398193681,0.0018865650082776411,0.0009517263647825156,0.0,0.0,0.000596021141767004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.982203940055424e-05,0.0,0.0,0.0008133768240982569,0.00026232116281155833,0.0008531988634988111,0.00047513973441874963,0.00022481815482758728,0.00011341531529120975,0.0,0.0,3.982203940055424e-05,0.0,0.0,0.0,0.0,0.0,0.0005268958668655401,0.00021688584681033864,0.00010941365797197243,0.0,0.0 +104824,35.0,Eastern Counties in South Carolina and Georgia,G1302450010600,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,Electricity,105931.0,,4022.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,485688.7310849239,0.0,0.0,0.009589581279843188,0.0011838822525401826,0.0,0.010773463532383372,0.0036411990287972436,0.002673432983805485,0.004458831519780642,0.0,0.0,0.002457316776257062,0.002673432983805485,0.004458831519780642,0.0,0.0,0.0011838822525401826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.90992900828799e-05,0.0,0.0,0.001142772492160601,0.0003966861193082908,0.0012218717822434807,0.00029283385108106163,0.00031858801592823076,0.0005313506251513085,0.0,0.0,7.90992900828799e-05,0.0,0.0,0.0,0.0,0.0,0.0004129663903763608,0.00030320725686888353,0.0005056981349982362,0.0,0.0 +104825,50.0,the Greater Atlanta and Macon Area,G1300210013201,ComStock 90.1-2007,gen4_led,10001_25000,Electricity,16356.0,,995.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,56663.68529324113,0.0,0.0,0.001444774595676954,0.0002927481544737868,0.0,0.0017375227501507408,0.000513498492573163,0.0005217233070609473,0.0007022702609103328,0.0,0.0,0.00022075033809937613,0.0005217233070609473,0.0007022702609103328,0.0,0.0,0.0002927481544737868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9560527366960308e-05,0.0,0.0,0.0001721702620867045,7.929316256098765e-05,0.00019173078945366483,2.630627897252725e-05,6.217249305338013e-05,8.368783285532338e-05,0.0,0.0,1.9560527366960308e-05,0.0,0.0,0.0,0.0,0.0,5.666312648612971e-05,5.757071182549636e-05,7.749356462957843e-05,0.0,0.0 +104826,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,166479.0,,3948.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00782703258815947,0.0006714310566159795,0.0,0.00849846364477545,0.0035374730587218353,0.0017709262289962939,0.0016651114320414189,0.0,0.0015249529250159013,0.0035374730587218353,0.0017709262289962939,0.0009936803754254395,0.0,0.0015249529250159013,0.0,0.0006714310566159795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.486102093722347e-05,0.0,0.0,0.0009327333814878636,0.00025432807757648686,0.000977594402425087,0.0004215542954267572,0.00021103809027652018,0.00011841510128510228,0.0,0.00018172589449948388,0.0,4.486102093722346e-05,0.0,0.0,0.0,0.0,0.0004069222397700087,0.0002037130051899267,0.00019154092826865557,0.0,0.000175418229196496 +104827,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,4154.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,3204.5843851935597,0.0,0.0,0.00036627523561984926,0.0,0.0,0.0003662752356198492,0.00026397695271350105,8.15227408909259e-05,2.0775542015422247e-05,0.0,0.0,0.00026397695271350105,8.15227408909259e-05,2.0775542015422247e-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,4.3649168682968474e-05,1.3972279023832296e-05,4.3649168682968474e-05,3.145824073502603e-05,9.715098162790231e-06,2.4758297851522042e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.145824073502603e-05,9.715098162790231e-06,2.4758297851522046e-06,0.0,0.0 +104828,50.0,the Greater Atlanta and Macon Area,G1301350050410,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,238398.0,,27038.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.01103704360181435,0.004598085548507973,0.0,0.015635129150322325,0.00693416704776845,0.003530168149816773,0.002916963600104247,0.0,0.002253812622271432,0.00586261492498614,0.003530168149816773,0.001285380281508148,0.0,0.00035886251514186877,0.0010715521227823111,0.0016315833185960988,0.0018949501071295633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00030721768861257,0.0,0.0,0.001315262309957134,0.0006225257217532341,0.001622479998569704,0.0006986360412093389,0.00042068304545810113,0.00015317618550966333,0.0,4.276492488848469e-05,7.159496336380607e-05,0.00010901303393116951,0.00012660969131759445,0.0,0.0,0.0,0.0007195685583136682,0.0003663306621645306,0.00030269753784716583,0.0,0.00023388140033905302 +104829,35.0,Eastern Counties in South Carolina and Georgia,G1300510010808,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,22113.0,,1915.0,,8.53126424238864,Food Service,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.005191262272999481,0.0014854125849688546,0.0,0.006676593997185268,0.002280840108013962,0.0004191014386441793,0.002873145343990928,0.00041966746412565895,0.000683839642410539,0.002280840108013962,0.0004191014386441793,0.0020715724014326122,0.00041966746412565895,0.0,0.0,0.0008015729425583154,0.000683839642410539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.924401168777176e-05,0.0,0.0,0.0006186281056973376,0.0002630352965734856,0.0007178721173851094,0.00027180129248294087,4.9943138190487556e-05,0.00024686344921900455,5.0010589853102516e-05,0.0,0.0,5.355502927930765e-05,4.568898240846411e-05,0.0,0.0,0.0,0.0002452375445394976,4.506208364406765e-05,0.0003089226231991147,4.512294310490277e-05,7.352692289752654e-05 +104830,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,45766.0,,7983.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004351755483407957,0.0023497190165773156,0.0,0.006701474499985273,0.003031089655598913,0.0014947679643359118,0.0021755861904441502,0.0,0.0,0.0006813706390215972,0.0014947679643359118,0.0021755861904441502,0.0,0.0,0.0023497190165773156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001569943644413654,0.0,0.0,0.0005185897438930734,0.00030201014550722136,0.0006755841083344388,8.119753661107635e-05,0.00017812842168178926,0.00025926012838299264,0.0,0.0,0.0001569943644413654,0.0,0.0,0.0,0.0,0.0,0.00030556797646011087,0.00015068944638302816,0.00021932359163332783,0.0,0.0 +104831,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,66760.0,,4172.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003212085465941026,0.000709498142584833,0.0,0.003921601338887279,0.0016317074311260396,0.001009354014920766,0.0007015194799458092,0.0,0.0005790204128946644,0.0013132346792990512,0.001009354014920766,0.00031047635882654466,0.0,0.0005790204128946644,0.0003184727518269884,0.00039104312111926456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.740494521939409e-05,0.0,0.0,0.00038277858336743396,0.00013293999677753383,0.00043018352858682806,0.00015649587020680674,0.00012028294515955952,3.699892237017016e-05,0.0,6.900084563089754e-05,2.1278679179097276e-05,2.6127450690067388e-05,0.0,0.0,0.0,0.0,0.00017899159034414144,0.00011072198171349557,7.695380003647002e-05,0.0,6.351615649272106e-05 +104832,85.0,Rural Climate Zone 3A,G1300310110500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,45311.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.226740887294,0.0,0.0,0.003995586258837377,0.0,0.0,0.003995586258837377,0.002133775734101503,0.0014137088122307211,0.0004481320861045904,0.0,0.0,0.002133775734101503,0.0014137088122307211,0.0004481320861045904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004761480639766921,0.00012570217100461886,0.0004761480639766921,0.00025427887647418883,0.00016846957376570653,5.340323331340739e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00025427887647418883,0.00016846957376570653,5.340323331340739e-05,0.0,0.0 +104833,50.0,the Greater Atlanta and Macon Area,G1300630040523,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,NaturalGas,34921.0,,3970.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0029373942875720264,0.0011686908974228197,0.0,0.0041060851849948465,0.0016630390756662162,0.0013283689189897674,0.0011147078799451605,0.0,0.0,0.0004943481782433964,0.0013283689189897674,0.0011147078799451605,0.0,0.0,0.0011686908974228197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.808571268686368e-05,0.0,0.0,0.00035004388683085796,0.00017163234408427497,0.0004281295995177217,5.8910565221771964e-05,0.00015829928638311263,0.00013283769245003732,0.0,0.0,7.808571268686368e-05,0.0,0.0,0.0,0.0,0.0,0.0001734002636012513,0.00013850517650660767,0.00011622735932614829,0.0,0.0 +104834,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,39097.0,,322.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,32736.412774265485,0.0,0.0,0.0018798792999225188,5.475135606512305e-05,0.0,0.0019346306559876417,0.0009171029444522313,0.0008043733065435356,0.00015840304892675175,0.0,5.475135606512305e-05,0.0009171029444522313,0.0008043733065435356,0.00015840304892675175,0.0,0.0,0.0,0.0,5.475135606512305e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.658317490290654e-06,0.0,0.0,0.00022402103529296126,5.837530539544844e-05,0.0002276793527832519,0.00010928911824013375,9.585537800290282e-05,1.8876539049924696e-05,0.0,0.0,0.0,0.0,3.658317490290654e-06,0.0,0.0,0.0,0.00010793037119630574,9.466364717376129e-05,1.8641854736931765e-05,0.0,6.443479676253109e-06 +104835,35.0,Eastern Counties in South Carolina and Georgia,G1300510010501,ComStock 90.1-2007,gen1_t12_incandescent,100001_200000,Electricity,134483.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,F: Buildings with Electric Resistance Multizone Systems,485688.7310849239,0.0,0.0,0.011652291098324387,0.0,0.0,0.011652291098324387,0.002456334708855535,0.004790923749528084,0.004405001950334471,0.0,0.0,0.002456334708855535,0.004790923749528084,0.004405001950334471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013885807586744602,0.00039027644960373895,0.0013885807586744602,0.0002927166069573655,0.0005709250205590766,0.000524935473937611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002927166069573655,0.0005709250205590766,0.000524935473937611,0.0,0.0 +104836,50.0,the Greater Atlanta and Macon Area,G1300670030214,ComStock 90.1-2004,gen5_led,25001_50000,Electricity,43775.0,,8688.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,120171.9144447585,0.0,0.0,0.004082728115624287,0.0025311839091450477,0.0,0.0066139120247693355,0.004715987290301974,0.0013150249876574653,0.0005828997468098953,0.0,0.0,0.0021848033811569263,0.0013150249876574653,0.0005828997468098953,0.0,0.0,0.0025311839091450477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001691197405816066,0.0,0.0,0.0004865301966434253,0.0003067762024656363,0.000655649937225032,0.00026035846339940796,0.00015670878582081953,6.946294742319776e-05,0.0,0.0,0.0001691197405816066,0.0,0.0,0.0,0.0,0.0,0.0004675049742513584,0.00013036097961055586,5.7783983363117625e-05,0.0,0.0 +104837,50.0,the Greater Atlanta and Macon Area,G1300890020900,ComStock 90.1-2007,gen1_t12_incandescent,25001_50000,NaturalGas,72992.0,,4855.0,,3.20458438519356,Mercantile,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.005821555936236703,0.0014144377786172266,0.0,0.007235993714853929,0.004173484430744289,0.0025046677568358908,0.0005578415272737499,0.0,0.0,0.0027590466521270627,0.0025046677568358908,0.0005578415272737499,0.0,0.0,0.0014144377786172266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.450544334380816e-05,0.0,0.0,0.0006937428393034624,0.0002605722680035459,0.0007882482826472706,0.00032878991101040157,0.000298476101607712,6.647682668534886e-05,0.0,0.0,9.450544334380815e-05,0.0,0.0,0.0,0.0,0.0,0.00045463581987864073,0.00027284435776596535,6.07681050026645e-05,0.0,0.0 +104838,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030201,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,Electricity,22363.0,,1585.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0011511614455583484,0.00026946603286196244,0.0,0.0014206274784203108,0.0008046215316034162,0.0003803694435443928,9.175462034877326e-05,0.0,0.00014386415256230844,0.0005351554987414537,0.0003803694435443928,9.175462034877326e-05,0.0,0.00014386415256230844,0.00026946603286196244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8004601319399932e-05,0.0,0.0,0.00013718162242302252,5.461844606887879e-05,0.00015518622374242246,6.377341757684268e-05,4.5327870896730154e-05,1.0934215815530627e-05,0.0,1.714400524197401e-05,1.8004601319399932e-05,0.0,0.0,0.0,0.0,0.0,8.789508785950369e-05,4.155072210506452e-05,1.0023073085056116e-05,0.0,1.571540386708122e-05 +104839,50.0,the Greater Atlanta and Macon Area,G1300890020300,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,253687.0,,18620.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,140298.9118897092,0.0,0.0,0.01231964021657955,0.00316650070673007,0.0,0.015486123192948202,0.00745790419375539,0.0020640268336311867,0.0036277737894341634,0.0,0.0023364183761274584,0.0057580057926078275,0.0020640268336311867,0.0021611714838516566,0.0,0.0023364183761274584,0.0016998984011475625,0.0014666023055825077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002115668321050976,0.0,0.0,0.0014681068255862327,0.0005902112104261817,0.0016796736576913304,0.0006861700063704967,0.0002459659397008267,0.00025754247290720437,0.0,0.0002784262937160812,0.00011357714806976927,9.798968403532835e-05,0.0,0.0,0.0,0.0,0.0008089077595315065,0.00022387084604861225,0.0003934797621234448,0.0,0.0002534152899877666 +104840,50.0,the Greater Atlanta and Macon Area,G1301170130606,ComStock 90.1-2007,gen4_led,25001_50000,Electricity,20878.0,,3831.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,121422.18277123098,0.0,0.0,0.0018931804332926897,0.001127566824983898,0.0,0.003020747258276587,0.001137049913329888,0.0007286019431137617,0.0011550647122266396,0.0,0.0,9.48308834599016e-06,0.0007286019431137617,0.0011550647122266396,0.0,0.0,0.001127566824983898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.533675442997044e-05,0.0,0.0,0.00022560796156448787,0.00014464689614033214,0.0003009447159944583,1.130087863497386e-06,8.682658889091079e-05,0.00013764762756780295,0.0,0.0,7.533675442997044e-05,0.0,0.0,0.0,0.0,0.0,0.00011327964042705585,7.258763679834637e-05,0.00011507438128888263,0.0,0.0 +104841,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,22192.0,,7948.0,,7.56685751697572,Food Service,Multizone CAV/VAV,1960 to 1969,F: Buildings with Electric Resistance Multizone Systems,22700.572550927158,0.007180890377967041,0.0,0.004670189352623545,0.005467213390520031,0.0,0.017318293121110617,0.010474630046858977,0.00029261748174369307,0.004031523010729529,0.0003646960526143822,0.0021547548091930186,0.003293739668891937,0.00029261748174369307,0.00044279910105038265,0.0003646960526143822,0.00027626532835213377,0.0,0.0035887239096791456,0.001878489480840885,0.0,0.0,0.0,0.007180890377967041,0.0,0.0,0.0,0.00036528719286574865,0.0,0.0,0.0005565338363513161,0.0005606316347747182,0.0009218210292170648,0.000392506049640404,3.487043402357863e-05,5.2767171485680024e-05,4.34598424043866e-05,3.2921792122261005e-05,0.0,0.00023977752271568057,0.00012550967015006808,0.0,0.0,0.0,0.0005575453760332424,1.55754927059797e-05,0.00021459058725209094,1.941210304164382e-05,0.00011469365266138583 +104842,33.0,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock 90.1-2004,gen3_t5_cfl,_1000,NaturalGas,5344.0,,19.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0010776731708231758,1.5218101568032565e-05,0.0,0.0010929739794649476,0.0008588302537089683,0.00011860194374216685,0.0001003236804457799,0.0,1.5218101568032565e-05,0.0008588302537089683,0.00011860194374216685,0.0001003236804457799,0.0,0.0,0.0,0.0,1.5218101568032565e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0184662312406233e-06,0.0,0.0,0.00012842762762097282,4.849128698522496e-05,0.00012944609385221346,0.00010234784997821809,1.4133938450381812e-05,1.1955695495336917e-05,0.0,0.0,0.0,0.0,1.0184662312406233e-06,0.0,0.0,0.0,0.0001017153415483454,1.404659088793599e-05,1.1881809447047667e-05,0.0,1.8023519688843944e-06 +104843,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,39047.0,,2779.0,,5.759960461090961,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,100799.30806909183,0.0,0.0,0.006188927307773855,0.00145536395623471,0.0,0.007644291264008568,0.0054067606260657505,0.0004447764330198884,0.0017471683056260571,0.0,4.553130540549735e-05,0.003951396669831041,0.0004447764330198884,0.0017471683056260571,0.0,4.553130540549735e-05,0.00145536395623471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.723955848968552e-05,0.0,0.0,0.0007375221981748753,0.0002818405869612448,0.0008347617566645609,0.0004708801077909119,5.300312578646216e-05,0.00020820658334898105,0.0,5.425875402713814e-06,9.723955848968552e-05,0.0,0.0,0.0,0.0,0.0,0.0005904219033790035,4.856988617097562e-05,0.00019079195619611298,0.0,4.972049228746e-06 +104844,50.0,the Greater Atlanta and Macon Area,G1300450910703,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,12958.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003111357406999006,0.0,0.0,0.003111357406999006,0.0018400669765521118,0.0005115432510776164,0.0006676114992236895,0.0,9.205297307184916e-05,0.0018400669765521118,0.0005115432510776164,0.0006676114992236895,0.0,9.205297307184916e-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.0003707729022039441,9.704746354972143e-05,0.0003707729022039441,0.00021927631059393788,6.0959366281171596e-05,7.955764019751288e-05,0.0,1.0969729130306223e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00021927631059393788,6.0959366281171596e-05,7.955764019751288e-05,0.0,1.0969729130306223e-05 +104845,50.0,the Greater Atlanta and Macon Area,G1300130180204,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,144090.0,,14283.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.00700460977369032,0.0024290417841858138,0.0,0.009433651557876134,0.003924633230690108,0.002305071097136805,0.0013699541054817998,0.0,0.0018339931245674218,0.0032692304207978555,0.002305071097136805,0.0011780406734711482,0.0,0.00025226758228451133,0.0006554028098922518,0.00019191343201065153,0.0015817255422829104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016229426273466082,0.0,0.0,0.0008347260872972695,0.00039566783778688646,0.0009970203500319305,0.0003895880007299958,0.000274690959242592,0.00014038487707582128,0.0,3.0062250248860443e-05,4.3790154833150145e-05,1.2822524980766055e-05,0.00010568158292074461,0.0,0.0,0.0,0.0004147852158205582,0.0002436175194744244,0.00014478721345551296,0.0,0.00019383040128143493 +104846,50.0,the Greater Atlanta and Macon Area,G1301390000101,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,58365.0,,2795.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004995439285895975,0.0008226042072036255,0.0,0.005818043493099602,0.0021740517101292655,0.0013607464536338437,0.0022832453293364914,0.0,0.0,0.00135144750292564,0.0013607464536338437,0.0022832453293364914,0.0,0.0,0.0008226042072036255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.496103098708335e-05,0.0,0.0,0.0005952981096362868,0.0002375533872060637,0.0006502591406233701,0.00016104972910706029,0.00016215786944495292,0.00027209051108427354,0.0,0.0,5.496103098708335e-05,0.0,0.0,0.0,0.0,0.0,0.00024298494818337423,0.00015208511600088407,0.00025518907643911167,0.0,0.0 +104848,35.0,Eastern Counties in South Carolina and Georgia,G1300510010803,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,66814.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1946 to 1959,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.0056467341107458244,0.0,0.0,0.0056467341107458244,0.0017814702663690512,0.0015551651095297911,0.002310129424453279,0.0,0.0,0.0017814702663690512,0.0015551651095297911,0.002310129424453279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006729103872230519,0.00021077790744312104,0.0006729103872230519,0.00021229436755087753,0.0001853260195230356,0.0002752936573701894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021229436755087753,0.0001853260195230356,0.0002752936573701894,0.0,0.0 +104849,50.0,the Greater Atlanta and Macon Area,G1301350050423,ComStock 90.1-2004,gen1_t12_incandescent,50001_100000,NaturalGas,83326.0,,6244.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006997199546269937,0.0018378777627442286,0.0,0.008835077309014167,0.0029208832793838624,0.003173489428820254,0.0027406739112037517,0.0,0.0,0.0010830055166396336,0.003173489428820254,0.0027406739112037517,0.0,0.0,0.0018378777627442286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001227959821734843,0.0,0.0,0.0008338430664150733,0.0003580253303731945,0.0009566390485885577,0.00012905972381774272,0.00037817874694940354,0.0003266009384254549,0.0,0.0,0.0001227959821734843,0.0,0.0,0.0,0.0,0.0,0.00031626559719824223,0.0003436171299593532,0.00029675299844071054,0.0,0.0 +104850,50.0,the Greater Atlanta and Macon Area,G1300670030106,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,Electricity,17620.0,,3264.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0015699574997652837,0.0009607381251495856,0.0,0.0025306956249148693,0.0012011298112794915,0.0007465860524042157,0.000582979761231162,0.0,0.0,0.00024039168612990594,0.0007465860524042157,0.000582979761231162,0.0,0.0,0.0009607381251495856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.419054194097313e-05,0.0,0.0,0.00018708941501521735,0.00012533795447429818,0.0002512799569561905,2.8647106650523843e-05,8.896950893492831e-05,6.94727994297652e-05,0.0,0.0,6.419054194097313e-05,0.0,0.0,0.0,0.0,0.0,0.00011926359073199916,7.413064979654923e-05,5.7885716427642084e-05,0.0,0.0 +104851,35.0,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,3305.0,,,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1946 to 1959,F: Buildings with Electric Resistance Multizone Systems,3237.924873899493,0.0,0.0,0.00017232213936160112,0.0,0.0,0.0001723221393616011,7.009506078395316e-05,7.034057763433478e-05,3.188650094331319e-05,0.0,0.0,7.009506078395316e-05,7.034057763433478e-05,3.188650094331319e-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,2.0533884484150978e-05,8.45472856822914e-06,2.0533884484150978e-05,8.35251863967958e-06,8.38177439673625e-06,3.79959144773515e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.352518639679581e-06,8.381774396736252e-06,3.7995914477351505e-06,0.0,0.0 +104852,50.0,the Greater Atlanta and Macon Area,G1301350050417,ComStock 90.1-2007,gen3_t5_cfl,1001_5000,NaturalGas,21760.0,,7138.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.004382735708792976,0.004909949215728732,0.0,0.00929268492452171,0.004303054820994632,0.0002932629614828336,0.002782232835608599,0.0003659870120926632,0.0015480755743719646,0.002017052464843045,0.0002932629614828336,0.0015311496612122803,0.0003659870120926632,0.0001752118891911378,0.0022860023561515866,0.001251083174396319,0.0013728636851808266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003280539256312824,0.0,0.0,0.0005222786703429034,0.00047698537996504475,0.0008503325959741858,0.00024036664525231658,3.494734790345337e-05,0.00018246293235285545,4.361367482301847e-05,2.087952333776879e-05,0.00015273723087308642,8.359001867823679e-05,9.172667607995921e-05,0.0,0.0,0.0,0.00039375356059905686,2.68351996614811e-05,0.0002545898509336846,3.348985665750503e-05,0.00014165756534435548 +104853,81.0,the Columbus-Albany Area,G1300950001100,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,73891.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,485688.7310849239,0.0,0.0,0.008238747569043504,0.0,0.0,0.008238747569043503,0.0020332784860417025,0.002230980929811504,0.003974488153190296,0.0,0.0,0.0020332784860417025,0.002230980929811504,0.003974488153190296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009817945346347237,0.0002923593937738722,0.0009817945346347237,0.00024230159842339596,0.00026586139038819025,0.0004736315458231373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000242301598423396,0.0002658613903881903,0.0004736315458231374,0.0,0.0 +104854,85.0,Rural Climate Zone 3A,G1301050000500,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,24057.0,,5339.0,,7.56685751697572,Food Service,Small Packaged Unit,Before 1946,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.005009209655614338,0.003672994875622489,0.0,0.008682204531236828,0.002491480073111312,0.0007994625169110164,0.0033009833859645138,0.0003714377298898497,0.0017189125453311502,0.0019317774193054835,0.0007994625169110164,0.001698830953446779,0.0003714377298898497,0.00020777275603222522,0.0005597026538058286,0.0016021524325177349,0.0015111397892989247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002454062916877042,0.0,0.0,0.0005969369336885111,0.0004039781246318993,0.0008423432253762154,0.0002302058345584452,9.527025943281934e-05,0.00020244609627569673,4.426344968175935e-05,2.4759840457242096e-05,3.73957920905013e-05,0.00010704569445280733,0.0001009648051443955,0.0,0.0,0.0,0.0002417221747304521,7.75634612890512e-05,0.00032025978911723964,3.60367063798328e-05,0.0001667680520960519 +104855,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,6960.0,,487.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001418343607555383,0.0003859939131413477,0.0,0.0018042548136229912,0.0010922296158012938,0.0003512569421708386,0.00031701621364276536,0.0,4.375204200809363e-05,0.0007062357026599461,0.0003512569421708386,0.00031701621364276536,0.0,4.375204200809363e-05,0.0003859939131413477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5788236592530497e-05,0.0,0.0,0.00016901785390977114,8.167244661794068e-05,0.00019480609050230165,8.415904452361863e-05,4.1857765791288e-05,3.7777446733696e-05,0.0,5.213741018034225e-06,2.57882365925305e-05,0.0,0.0,0.0,0.0,0.0,0.00011792845432837019,3.792534798823173e-05,3.422836327734689e-05,0.0,4.723924908352858e-06 +104856,50.0,the Greater Atlanta and Macon Area,G1301210000200,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,15118.0,,656.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.003570298959178423,0.0005207237362626795,0.0,0.004091022695441103,0.002355745581316693,0.0006988747730971477,0.0009590712270810089,0.0,7.733111394625244e-05,0.0018350218450540134,0.0006988747730971477,0.0009590712270810089,0.0,7.733111394625244e-05,0.0005207237362626795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.479067145159093e-05,0.0,0.0,0.00042546669331083327,0.00017551843873601217,0.00046025736476242425,0.00021867655495940176,8.328376479050548e-05,0.00011429095106635523,0.0,9.215422494570727e-06,3.479067145159093e-05,0.0,0.0,0.0,0.0,0.0,0.00026503134644444696,7.862636932400298e-05,0.00010789957144155489,0.0,8.700077552419266e-06 +104857,50.0,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen1_t12_incandescent,_1000,Electricity,2355.0,,257.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0005653855560819054,0.00020370752261991416,0.0,0.0007690930787018198,0.00044463322842251674,0.00012315083279782876,0.0001746773397374173,0.0,2.654897067031768e-05,0.00024092570580260258,0.00012315083279782876,0.0001746773397374173,0.0,2.654897067031768e-05,0.00020370752261991416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3611614703520353e-05,0.0,0.0,6.737749157478724e-05,3.299244490688365e-05,8.098910627830759e-05,2.8711327231912713e-05,1.4675992532893245e-05,2.081645146371426e-05,0.0,3.1638640718997524e-06,1.3611614703520353e-05,0.0,0.0,0.0,0.0,0.0,4.682196315218642e-05,1.2968359957887944e-05,1.8394342666930384e-05,0.0,2.795731058752202e-06 +104858,50.0,the Greater Atlanta and Macon Area,G1301350050106,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,19623.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.01885302784,0.0,0.0,0.006104360991477063,0.0,0.0,0.006104360991477063,0.0020746242376767873,0.0015479455921048775,0.0022868505888918498,0.0,0.00019494057280354757,0.0020746242376767873,0.0015479455921048775,0.0022868505888918498,0.0,0.00019494057280354757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007274490009538052,0.00021504535254102336,0.0007274490009538052,0.0002472303540304476,0.00018446672404855117,0.00027252110065945924,0.0,2.3230822215347032e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0002472303540304476,0.00018446672404855117,0.00027252110065945924,0.0,2.3230822215347032e-05 +104859,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010200,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,39207.0,,456.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.003318497980171013,0.00013273262954297544,0.0,0.003451200236114551,0.0021123927200973258,0.001043970986274968,0.0002948669033416947,0.0,0.0,0.0019796600905543508,0.001043970986274968,0.0002948669033416947,0.0,0.0,0.00013273262954297544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.867776522369314e-06,0.0,0.0,0.00039545783723352393,0.00010597988310037742,0.00040432561375589325,0.0002359115788365801,0.00012440764190116288,3.5138616495781015e-05,0.0,0.0,8.867776522369314e-06,0.0,0.0,0.0,0.0,0.0,0.0002474775221991736,0.00012230649654920844,3.4545153428754336e-05,0.0,0.0 +104861,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,NaturalGas,5585.0,,1178.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003857376615558263,0.00034666979273885066,0.0,0.000732407454294677,0.00045592479115867256,0.0001797797136919429,9.670294944406145e-05,0.0,0.0,0.00010925499841982191,0.0001797797136919429,9.670294944406145e-05,0.0,0.0,0.00034666979273885066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3163077430671075e-05,0.0,0.0,4.596719767930676e-05,3.845581359310528e-05,6.913027510997783e-05,1.3019589763571647e-05,2.142380809971986e-05,1.152379981601524e-05,0.0,0.0,2.3163077430671075e-05,0.0,0.0,0.0,0.0,0.0,4.303370488304339e-05,1.6968998600219992e-05,9.127571626714439e-06,0.0,0.0 +104862,50.0,the Greater Atlanta and Macon Area,G1302470060406,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,62125.0,,5111.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,71543.06474093779,0.0,0.0,0.006969020260680406,0.0018994089848837262,0.0,0.008868467993987904,0.006059982238987343,0.0008387096325467319,0.0018224158668485976,0.0,0.00014732150718145876,0.00457064782288357,0.0008387096325467319,0.0015596628052501043,0.0,0.0,0.0014893344161037738,0.0002627530615984934,0.00014732150718145876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012690829780181035,0.0,0.0,0.0008304864193318665,0.0003924442081129666,0.000957394717133677,0.0005446764110975574,9.99476158109025e-05,0.00018586239242340667,0.0,0.0,9.950931953549402e-05,1.7555747106103268e-05,9.843231160213039e-06,0.0,0.0,0.0,0.0006542048734306236,9.054282791049376e-05,0.0001967387517803808,0.0,1.5904080929346143e-05 +104863,33.0,Rural Lower Plains-Upper South Appalachia,G1301370000300,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,11280.0,,10561.0,,7.56685751697572,Food Service,Small Packaged Unit,2000 to 2012,B: Food-Service Buildings with Small Packaged Units,7566.85751697572,0.0,0.0,0.002348685610819231,0.0072647310240842875,0.0,0.009613416634903522,0.0011492408155541515,0.00017872616777090276,0.00740508700736184,0.0002792775671347894,0.0006010850770818361,0.0011492408155541515,0.00017872616777090276,0.00014035598327755082,0.0002792775671347894,0.0006010850770818361,0.0,0.0072647310240842875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00048538588172564477,0.0,0.0,0.0002798908129676979,0.000560949640322198,0.0007652766946933427,0.00013695402427612042,2.1298641319027216e-05,1.6726099944356443e-05,3.328126376255697e-05,7.163078366563686e-05,0.0,0.00048538588172564477,0.0,0.0,0.0,0.0,9.148539443727011e-05,1.4227508920224484e-05,0.0005894824622845817,2.223191000616137e-05,4.7849419045104886e-05 +104864,50.0,the Greater Atlanta and Macon Area,G1301130140303,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,NaturalGas,45605.0,,5686.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,32736.412774265485,0.0,0.0,0.002311542679055124,0.0009669961814882597,0.0,0.003278521130181964,0.002141082984362736,0.0009270319468474607,0.0001429776344913058,0.0,6.74285644804608e-05,0.0012415330977163575,0.0009270319468474607,0.0001429776344913058,0.0,0.0,0.0008995498866463789,0.0,6.74285644804608e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.460873891321985e-05,0.0,0.0,0.0002754612529604974,0.00014061576687002375,0.00034006999187371725,0.000147950659006941,0.00011047227634031544,1.7038317613240963e-05,0.0,0.0,6.01023922103854e-05,0.0,4.505162069106055e-06,0.0,0.0,0.0,0.00022208735102853463,9.615791209300363e-05,1.4830590095017335e-05,0.0,6.994138657161573e-06 +104865,50.0,the Greater Atlanta and Macon Area,G1301350050539,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,NaturalGas,156611.0,,8576.0,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.01289775414444862,0.002498350048152838,0.0,0.015396104192601462,0.010233321254570155,0.004050046122629265,0.001112736815402038,0.0,0.0,0.007734971206417317,0.004050046122629265,0.001112736815402038,0.0,0.0,0.002498350048152838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016692495616085217,0.0,0.0,0.00153699947062765,0.000577910666824162,0.0017039244267885022,0.0009217609915987254,0.00048263586642935364,0.00013260261259957082,0.0,0.0,0.00016692495616085217,0.0,0.0,0.0,0.0,0.0,0.0011325466387279476,0.0004482284889501009,0.00012314929911045328,0.0,0.0 +104866,50.0,the Greater Atlanta and Macon Area,G1300890023428,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,305673.0,,19675.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,480687.657779034,0.0,0.0,0.02695471671143904,0.005731710829099833,0.0,0.032686427540538875,0.02320451876245926,0.007917698780634834,0.0015641796238453434,0.0,0.0,0.017472807933359424,0.007917698780634834,0.0015641796238453434,0.0,0.0,0.005731710829099833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003829592142051514,0.0,0.0,0.003212140294282132,0.0011178585576529614,0.0035950995084872836,0.0020821999733047817,0.0009435365084164473,0.00018640019299911458,0.0,0.0,0.0003829592142051514,0.0,0.0,0.0,0.0,0.0,0.002552207759448095,0.0008708481512489381,0.00017204025707299764,0.0,0.0 +104867,50.0,the Greater Atlanta and Macon Area,G1300670030209,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,113658.0,,19972.0,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,240343.828889517,0.0,0.0,0.010831833031491057,0.005818275587497425,0.0,0.016650138992587916,0.01195987814100972,0.003908140666056089,0.0007820898119226717,0.0,0.0,0.0061416025535122945,0.003908140666056089,0.0007820898119226717,0.0,0.0,0.005818275587497425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038874372721036364,0.0,0.0,0.0012908100942389724,0.0007295864067156332,0.0016795538214493357,0.0007318837492998392,0.00046572610626334553,9.320023867578737e-05,0.0,0.0,0.00038874372721036364,0.0,0.0,0.0,0.0,0.0,0.0012064319129554068,0.0003942268946438284,7.88919499660675e-05,0.0,0.0 +104868,50.0,the Greater Atlanta and Macon Area,G1301210001500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,11974.0,,,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0026785512901212104,0.0,0.0,0.0026785512901212104,0.0019884434668404295,0.00028864768735018296,0.0003509261138758814,0.0,5.053402205471683e-05,0.0019884434668404295,0.00028864768735018296,0.0003509261138758814,0.0,5.053402205471683e-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.0003191951189425172,9.897876506593283e-05,0.0003191951189425172,0.00023695698911924907,3.4397300225695835e-05,4.181883806808808e-05,0.0,6.021991529484283e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00023695698911924907,3.4397300225695835e-05,4.181883806808808e-05,0.0,6.021991529484283e-06 +104869,50.0,the Greater Atlanta and Macon Area,G1301210008601,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,53466.0,,10332.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,63984.48181791479,0.0,0.0,0.012155720657908707,0.008013303602091099,0.0,0.020169024259999807,0.010716317858505844,0.0021220295300673738,0.005440879510332026,0.00042209328761771487,0.0014677040734768468,0.007163214189691667,0.0021220295300673738,0.0024483836505319514,0.00042209328761771487,0.0,0.003553103668814177,0.002992495859800075,0.0014677040734768468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005354024652547286,0.0,0.0,0.001448570734050978,0.0009689681182436024,0.0019839731993057065,0.0008536246207809139,0.0002528776335484159,0.000291768542705197,5.029993701645129e-05,0.0,0.00023739777725285597,0.0001999412152789808,9.806347272289181e-05,0.0,0.0,0.0,0.0010541356464468313,0.00020873839316751323,0.0005352048264703906,4.152019252122162e-05,0.0001443741406997497 +104870,85.0,Rural Climate Zone 3A,G1301410480400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7042.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0013458095038860105,0.0,0.0,0.0013458095038860105,0.0007617321491390214,0.00025630922151811367,0.0002860837680642644,0.0,4.160165809087163e-05,0.0007617321491390214,0.00025630922151811367,0.0002860837680642644,0.0,4.160165809087163e-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.00016037736180746735,4.3433165537201035e-05,0.00016037736180746735,9.077405987258937e-05,3.0543844901754004e-05,3.4092016623158164e-05,0.0,4.957584377406346e-06,0.0,0.0,0.0,0.0,0.0,0.0,9.077405987258937e-05,3.0543844901754004e-05,3.4092016623158164e-05,0.0,4.957584377406346e-06 +104871,50.0,the Greater Atlanta and Macon Area,G1301210009900,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5151.0,,410.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0008635445569121088,0.0003252042139429567,0.0,0.0011887487708550656,0.0007238523093664185,0.00024994077684018705,0.00018179014807899772,0.0,3.308282949572297e-05,0.00043173092491918477,0.00024994077684018705,0.00018179014807899772,0.0,0.0,0.0002921213844472338,0.0,3.308282949572297e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1727161621522085e-05,0.0,0.0,0.00010290909106856586,4.9071920408334406e-05,0.00012463625269008792,5.144961741000994e-05,2.9785583105948282e-05,2.1664034304061654e-05,0.0,0.0,1.95168705104822e-05,0.0,2.210291111039887e-06,0.0,0.0,0.0,7.589344489971818e-05,2.620543766989812e-05,1.9060076769833248e-05,0.0,3.4686217961479974e-06 +104872,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,_1000,NaturalGas,5506.0,,369.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,1870.6521585294563,0.0,0.0,0.0002130125621005144,6.27654794269869e-05,0.0,0.00027577804152750134,0.00015134636508157073,7.393560712162019e-05,9.946732756649622e-06,0.0,4.053160620624071e-05,0.00010294247840482657,7.393560712162019e-05,9.946732756649622e-06,0.0,2.6170013455997938e-05,4.8403886676744143e-05,0.0,1.4361592750242766e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.193503139270073e-06,0.0,0.0,2.5383518598147923e-05,1.0253870789606238e-05,2.9577021737417992e-05,1.2267080820779658e-05,8.810493803419079e-06,1.185296648373646e-06,0.0,3.118534497325315e-06,3.2339727599455656e-06,0.0,9.595303793245083e-07,0.0,0.0,0.0,1.623180259422656e-05,7.929547424780314e-06,1.0667808405999416e-06,0.0,4.346989307685324e-06 +104873,50.0,the Greater Atlanta and Macon Area,G1300670030328,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,20226.0,,832.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.005035702891691472,0.0006601678625871517,0.0,0.0056958707542786235,0.0029577703710651124,0.0010852822216071924,0.001546953107220006,0.0,0.0001058650543863135,0.0022976025084779604,0.0010852822216071924,0.001546953107220006,0.0,0.0001058650543863135,0.0006601678625871517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.41063155109851e-05,0.0,0.0,0.0006000977514394914,0.00024892000296894456,0.0006442040669504765,0.00027380211436108583,0.00012933158188071164,0.0001843482630313085,0.0,1.2615792166385523e-05,4.41063155109851e-05,0.0,0.0,0.0,0.0,0.0,0.0003345243922036787,0.0001227456259296648,0.00017496069100658818,0.0,1.1973357810544955e-05 +104874,50.0,the Greater Atlanta and Macon Area,G1301130140102,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,11998.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0025765734682006445,0.0,0.0,0.0025765734682006445,0.0015553892287414155,0.00037292619549053716,0.0005984683855776285,0.0,4.9706951317323766e-05,0.0015553892287414155,0.00037292619549053716,0.0005984683855776285,0.0,4.9706951317323766e-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.00030704899429168195,0.0001026847609841263,0.00030704899429168195,0.0001853549702002815,4.444143149170846e-05,7.131918347172376e-05,0.0,5.923552966626035e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0001853549702002815,4.444143149170846e-05,7.131918347172376e-05,0.0,5.923552966626035e-06 +104875,50.0,the Greater Atlanta and Macon Area,G1300970080505,ComStock 90.1-2007,gen5_led,100001_200000,NaturalGas,245132.0,,43532.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,280597.8237794184,0.0,0.0,0.01631900692065518,0.0074030641858831665,0.0,0.02372207110653835,0.007971818719515621,0.004514327321159644,0.004846877979954155,0.0,0.006389047085908927,0.006853866240897031,0.004514327321159644,0.004110784295239242,0.0,0.0008400290633592617,0.0011179524786185892,0.0007360936847149121,0.0055490180225496654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004946292854072685,0.0,0.0,0.0019447049683977004,0.0010497545270654917,0.002439334253804969,0.0008167621838884911,0.0005379637874484201,0.0004898743337650375,0.0,0.00010010466329575135,7.469502110664588e-05,4.9181458396325485e-05,0.00037075280590429714,0.0,0.0,0.0,0.0008197399957324289,0.0004642070760995737,0.0004984031717726564,0.0,0.0006569840102003097 +104876,50.0,the Greater Atlanta and Macon Area,G1302070050301,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,31526.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0027312828916766546,0.0,0.0,0.0027312828916766546,0.0007530615593330308,0.0008365986676753778,0.0011416226646682457,0.0,0.0,0.0007530615593330308,0.0008365986676753778,0.0011416226646682457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003254821650599643,9.885855186553151e-05,0.0003254821650599643,8.974101785724692e-05,9.969598772469438e-05,0.000136045159478023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.974101785724692e-05,9.969598772469438e-05,0.000136045159478023,0.0,0.0 +104878,50.0,the Greater Atlanta and Macon Area,G1301710970200,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,76721.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006835741527537722,0.0,0.0,0.006835741527537722,0.0017335637909383372,0.0019040138643157784,0.0031981331826773096,0.0,0.0,0.0017335637909383372,0.0019040138643157784,0.0031981331826773096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000814600627304023,0.00029187414424194073,0.000814600627304023,0.00020658507140462046,0.00022689724033873385,0.0003811146583462407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020658507140462046,0.00022689724033873385,0.0003811146583462407,0.0,0.0 +104879,35.0,Eastern Counties in South Carolina and Georgia,G1300510003502,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,34974.0,,,,3.20458438519356,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,56080.226740887294,0.0,0.0,0.00278407449806377,0.0,0.0,0.0027840744980637696,0.0013450644775014017,0.0011885493195986667,0.00025046070096370156,0.0,0.0,0.0013450644775014017,0.0011885493195986667,0.00025046070096370156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003317729156200598,8.319263583516231e-05,0.0003317729156200598,0.00016028880107481618,0.0001416371844200757,2.984693012516788e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001602888010748162,0.00014163718442007574,2.9846930125167884e-05,0.0,0.0 +104880,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen4_led,5001_10000,Electricity,18817.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0016083428374278346,0.0,0.0,0.0016083428374278346,0.0010954846109213952,0.0003221727692362336,0.00019068545727020592,0.0,0.0,0.0010954846109213952,0.0003221727692362336,0.00019068545727020592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019166254124886948,6.19745435319135e-05,0.00019166254124886948,0.00013054639815725518,3.839259282041771e-05,2.2723550271196602e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013054639815725518,3.839259282041771e-05,2.2723550271196602e-05,0.0,0.0 +104881,50.0,the Greater Atlanta and Macon Area,G1300130180205,ComStock 90.1-2004,gen1_t12_incandescent,25001_50000,NaturalGas,134260.0,,7002.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.006503301534899748,0.0011908065336935863,0.0,0.007694108068593334,0.0033800629100346063,0.0022234759738817213,0.0012441749215679452,0.0,0.0008463942631090605,0.00286751362210372,0.0022234759738817213,0.0012441749215679452,0.0,0.00016811928698494066,0.0005125492879308864,0.0,0.0006782749761241199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.956296078833929e-05,0.0,0.0,0.0007749855218672386,0.0002785883168345031,0.0008545484826555779,0.00034171590060243527,0.0002649672137653011,0.00014826585323024372,0.0,2.0034441377318173e-05,3.424564590794367e-05,0.0,4.531849952291354e-05,0.0,0.0,0.0,0.00037540772826427735,0.0002469510439368102,0.00013818467090733104,0.0,9.400503954715928e-05 +104882,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1300470030401,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Electricity,20395.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.0018171622784932796,0.0,0.0,0.0018171622784932796,0.0007336350385465851,0.00046918270107928014,0.0006143752284737121,0.0,0.0,0.0007336350385465851,0.00046918270107928014,0.0006143752284737121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021654876757066144,8.510088305134293e-05,0.00021654876757066144,8.742629391121012e-05,5.591186702842836e-05,7.321426386983957e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.742629391121012e-05,5.591186702842836e-05,7.321426386983957e-05,0.0,0.0 +104883,50.0,the Greater Atlanta and Macon Area,G1301210011419,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,35808.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0034055949212497797,0.0,0.0,0.0034055949212497805,0.0011261857927005014,0.0009494443500320312,0.0013299954681235456,0.0,0.0,0.0011261857927005014,0.0009494443500320312,0.0013299954681235456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00040583818213793657,0.0001440997372445201,0.00040583818213793657,0.00013420539007951522,0.00011314345304365496,0.0001584929962359917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001342053900795152,0.00011314345304365493,0.00015849299623599164,0.0,0.0 +104884,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,9858.0,,1932.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0020690001566625147,0.0015322312480944092,0.0,0.0036013141118306636,0.0023004972560588363,0.0005427238178773352,0.0006804310956532822,0.0,7.757923516747037e-05,0.0007682660079644266,0.0005427238178773352,0.0006804310956532822,0.0,7.757923516747037e-05,0.0015322312480944092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010237648213690284,0.0,0.0,0.0002465631254071237,0.00016136368642266524,0.0003489396075440265,9.155440006023232e-05,6.467649619929427e-05,8.108709756653369e-05,0.0,9.245131581063401e-06,0.00010237648213690284,0.0,0.0,0.0,0.0,0.0,0.0002229004704277863,5.2585759013019345e-05,6.592853389212286e-05,0.0,7.516830532491947e-06 +104885,50.0,the Greater Atlanta and Macon Area,G1301210010507,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,Electricity,21857.0,,2350.0,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0029435662687114046,0.0006846513049263638,0.0,0.0036282175736377683,0.0024186800968276157,0.0009299181203862097,0.00027961935642394325,0.0,0.0,0.0017340287919012517,0.0009299181203862097,0.00027961935642394325,0.0,0.0,0.0006846513049263638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5743800999860114e-05,0.0,0.0,0.0003507802842062991,0.0001349170017703432,0.00039652408520615917,0.00020664155548680884,0.00011081691824810191,3.332181047138837e-05,0.0,0.0,4.574380099986012e-05,0.0,0.0,0.0,0.0,0.0,0.0002643350056428191,0.00010162977399204515,3.0559305571294996e-05,0.0,0.0 +104886,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,26010.0,,841.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1960 to 1969,G: Buildings with Furnace-Based Multizone Systems,14029.891188970922,0.0,0.0,0.0013104864732789428,0.00014303082557556594,0.0,0.0014535172988545087,0.0008187171689323582,0.0003420895932384988,0.00012118702030606089,0.0,0.00017152351637759084,0.0006756863433567922,0.0003420895932384988,0.00012118702030606089,0.0,0.00017152351637759084,0.00014303082557556594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.556900921547244e-06,0.0,0.0,0.0001561682187538988,5.863872871756645e-05,0.00016572511967544602,8.052027611879437e-05,4.0766176164056225e-05,1.4441630251960412e-05,0.0,2.0440136219087795e-05,9.556900921547244e-06,0.0,0.0,0.0,0.0,0.0,9.334735878863361e-05,3.900389683965474e-05,1.38173336218016e-05,0.0,1.9556530425356067e-05 +104887,84.0,Rural Climate Zone 2A - Georgia and Florida,G1300390010601,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,34700.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.008332076022645307,0.0,0.0,0.008332076022645307,0.005067296993859888,0.0009132515082294326,0.0022253992331035446,0.0,0.0001260455803787045,0.005067296993859888,0.0009132515082294326,0.0022253992331035446,0.0,0.0001260455803787045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009929132310542393,0.0003201000018600494,0.0009929132310542393,0.0006038574560782113,0.00010882996066487577,0.000265195413114455,0.0,1.5020545195912935e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0006038574560782113,0.00010882996066487577,0.000265195413114455,0.0,1.5020545195912935e-05 +104888,50.0,the Greater Atlanta and Macon Area,G1301130140407,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,Electricity,7718.0,,1436.0,,8.72605822017302,Office,Multizone CAV/VAV,1960 to 1969,D: Buildings with Hydronically Heated Multizone Systems,26178.17466051906,0.0,0.0,0.0016189082613732035,0.0011389591124640025,0.0,0.002757867373837206,0.0021745343827538704,0.00038698639802621943,0.00014978251054188576,0.0,4.6481375441490774e-05,0.0010355752702898681,0.00038698639802621943,0.00014978251054188576,0.0,4.6481375441490774e-05,0.0011389591124640025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.609867162070235e-05,0.0,0.0,0.00019292145546743417,0.0001407570924951004,0.00026902012708813653,0.00012340704730293977,4.611625064535222e-05,1.7849226313044004e-05,0.0,5.539075200403495e-06,7.609867162070235e-05,0.0,0.0,0.0,0.0,0.0,0.00021211807411609788,3.774914303929797e-05,1.4610749742288656e-05,0.0,4.534092410362355e-06 +104889,35.0,Eastern Counties in South Carolina and Georgia,G1301270000600,ComStock DOE Ref 1980-2004,gen4_led,_1000,Electricity,4301.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0007102883492731721,0.0,0.0,0.0007102883492731721,0.0005406561410338527,9.594020553759662e-05,4.689491081018731e-05,0.0,2.67143848177963e-05,0.0005406561410338527,9.594020553759662e-05,4.689491081018731e-05,0.0,2.67143848177963e-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,8.46455966760117e-05,2.7992395410110486e-05,8.46455966760117e-05,6.443039886715051e-05,1.1433266435045828e-05,5.588501783337057e-06,0.0,3.183573326310175e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.443039886715051e-05,1.1433266435045828e-05,5.588501783337057e-06,0.0,3.183573326310175e-06 +104890,50.0,the Greater Atlanta and Macon Area,G1301530020900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,88161.0,,1232.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.004538121466185355,0.00020948422017792381,0.0,0.0047475879560018594,0.0014922935992801643,0.0007609693817872464,0.0018999677994114385,0.0,0.0005943571755230101,0.0014922935992801643,0.0007609693817872464,0.0016904835792335145,0.0,0.0005943571755230101,0.0,0.00020948422017792381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3995991302741053e-05,0.0,0.0,0.0005407986333949976,0.00013248648401612353,0.0005547946246977386,0.0001778335694908552,9.068316147824556e-05,0.0002014514631743946,0.0,7.082832636067352e-05,0.0,1.3995991302741053e-05,0.0,0.0,0.0,0.0,0.00017438675702781482,8.892551891353736e-05,0.00022202683383246928,0.0,6.945551492391711e-05 +104891,50.0,the Greater Atlanta and Macon Area,G1300590130500,ComStock 90.1-2007,gen2_t8_halogen,100001_200000,NaturalGas,263479.0,,54135.0,,7.614023970037612,Education,Multizone CAV/VAV,1946 to 1959,D: Buildings with Hydronically Heated Multizone Systems,1142103.5955056418,0.0,0.0,0.046200750617341475,0.03747149971460759,0.0,0.08367225033194906,0.06774751426062099,0.007507174539777044,0.004353331312309259,0.0007685787921040666,0.0032955792601149585,0.03176994408360461,0.007507174539777044,0.004353331312309259,0.0007685787921040666,0.001801721889546491,0.03597757017701639,0.0,0.0014938573705684675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025036244026610277,0.0,0.0,0.005505657270655352,0.003800071273905185,0.00800928167331638,0.0037859649744858797,0.0008946159864227026,0.0005187783720161182,9.159010098920244e-05,0.00021470783674144866,0.002403808850183651,0.0,9.9810730702947e-05,0.0,0.0,0.0,0.006484932844851961,0.0007186023469105258,0.0004167099194682399,7.356995909249795e-05,0.0003154596950157758 +104892,50.0,the Greater Atlanta and Macon Area,G1301350050520,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,7298.0,,175.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0015127123786919327,0.00013853434851333988,0.0,0.0016512467272052727,0.0009413719133007971,0.0002823619497459955,0.0003873172263211767,0.0,4.0278344911042716e-05,0.0008028375647874572,0.0002823619497459955,0.0003873172263211767,0.0,4.0278344911042716e-05,0.00013853434851333988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.25377993623162e-06,0.0,0.0,0.0001802714831061447,6.963485338711208e-05,0.00018952526304237633,9.56749746589036e-05,3.3649362674924986e-05,4.615699045303859e-05,0.0,4.800011605942728e-06,9.25377993623162e-06,0.0,0.0,0.0,0.0,0.0,0.00010804791104173942,3.240867758711108e-05,4.445513683082637e-05,0.0,4.623030458384036e-06 +104893,35.0,Eastern Counties in South Carolina and Georgia,G1300510000300,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,165496.0,,1064.0,,5.759960461090961,Office,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,215998.51729091106,0.0,0.0,0.026022888043765686,0.0005571306614665473,0.0,0.026580073299123607,0.015060762219315526,0.0011109310955593114,0.010332603663022357,0.0,7.572172733504177e-05,0.014503631557848978,0.0011109310955593114,0.010332603663022357,0.0,7.572172733504177e-05,0.0005571306614665473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.722603571333956e-05,0.0,0.0,0.0031010983585572542,0.0009428404467457101,0.003138324394270594,0.001728370346193756,0.00013238755787271423,0.0012313168394350342,0.0,9.023615055749895e-06,3.722603571333956e-05,0.0,0.0,0.0,0.0,0.0,0.0017782327737502995,0.00013116826723207339,0.0012199763998793013,0.0,8.940507477069426e-06 +104894,50.0,the Greater Atlanta and Macon Area,G1300670030602,ComStock 90.1-2007,gen2_t8_halogen,200001_500000,Electricity,325939.0,,55810.0,,7.614023970037612,Education,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,2664908.3895131643,0.0,0.0,0.08017813959229624,0.03863050209969597,0.0,0.1188086416919922,0.09012376566319107,0.014730299678077886,0.009082003309851688,0.00080011578103829,0.0040724572598332945,0.054901206878004975,0.014730299678077886,0.005674059995341797,0.00080011578103829,0.0040724572598332945,0.035222558785186084,0.0034079433145098913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002581063128030299,0.0,0.0,0.009554673278342696,0.004253819400463195,0.012135736406372997,0.0065424702665019185,0.0017553812227595492,0.0006761667169241051,9.53482446903942e-05,0.00048530682746672987,0.002353364383426923,0.00022769874460337578,0.0,0.0,0.0,0.0,0.009205713056409211,0.0015046298950498228,0.0009276833455928306,8.172801300458267e-05,0.00041598209631655127 +104895,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,25846.0,,2152.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,152706.01885302784,0.0,0.0,0.006500858702983303,0.0017074875373480015,0.0,0.008208346240331305,0.004535076974347445,0.0012855160471300553,0.0022033991514888896,0.0,0.0001843540673649162,0.003011943504364359,0.0012855160471300553,0.0022033991514888896,0.0,0.0,0.0015231334699830853,0.0,0.0001843540673649162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011408383365646107,0.0,0.0,0.0007746990228948633,0.00029648195859330686,0.0008887828565513244,0.0003589294578537454,0.00015319330431998141,0.0002625762607211366,0.0,0.0,0.0001017664267676138,0.0,1.231740688884726e-05,0.0,0.0,0.0,0.0004910488117735604,0.00013919303487674298,0.00023857953047360937,0.0,1.9961479427411698e-05 +104896,85.0,Rural Climate Zone 3A,G1302330010200,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,49980.0,,5073.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1946 to 1959,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0025727463634953422,0.000862670734892669,0.0,0.0034354170983880114,0.0014518506448810238,0.001086552008543676,0.000535226420187134,0.0,0.00036177029441475736,0.001208058175355298,0.001086552008543676,0.00020379277416208692,0.0,7.432567507286134e-05,0.000243792469525726,0.00033143364602504705,0.000287444619341896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.763850937105107e-05,0.0,0.0,0.0003065885782178454,0.00012512998698517854,0.0003642270875888965,0.000143961660442668,0.00012948203530120466,2.4285540839921126e-05,0.0,8.857228745514994e-06,1.6288757658040328e-05,2.2144417956490757e-05,1.9205333756519987e-05,0.0,0.0,0.0,0.00015392696632010271,0.00011519756182485847,5.674535424442745e-05,0.0,3.8355325405084884e-05 +104897,50.0,the Greater Atlanta and Macon Area,G1301530020109,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,6184.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0014850055089892648,0.0,0.0,0.0014850055089892648,0.0007025138843416772,0.00026548970670317687,0.0004699415929867448,0.0,4.697761788392662e-05,0.0007025138843416772,0.00026548970670317687,0.0004699415929867448,0.0,4.697761788392662e-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.00017696338886998461,5.6340338666835474e-05,0.00017696338886998461,8.371634781741293e-05,3.163756492746593e-05,5.600144670338361e-05,0.0,5.5981734824924135e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.371634781741293e-05,3.163756492746593e-05,5.600144670338361e-05,0.0,5.5981734824924135e-06 +104898,50.0,the Greater Atlanta and Macon Area,G1301210003600,ComStock 90.1-2004,gen2_t8_halogen,50001_100000,Electricity,69864.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006128315412769376,0.0,0.0,0.006128315412769376,0.0022384385041418456,0.0015787347271664265,0.0023111421814611035,0.0,0.0,0.0022384385041418456,0.0015787347271664265,0.0023111421814611035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007303008001546073,0.0002580008411647493,0.0007303008001546073,0.0002667508639104035,0.0001881351002396416,0.0002754148360045622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002667508639104035,0.0001881351002396416,0.0002754148360045622,0.0,0.0 +104899,50.0,the Greater Atlanta and Macon Area,G1301530021000,ComStock 90.1-2004,gen4_led,10001_25000,Electricity,34683.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0030583784745861066,0.0,0.0,0.0030583784745861066,0.001826850511783021,0.0009666094285070139,0.00026488816069663364,0.0,0.0,0.001826850511783021,0.0009666094285070139,0.00026488816069663364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003644607484592278,9.657575282765799e-05,0.0003644607484592278,0.00021770206348894363,0.00011518888152948065,3.1566183880674985e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021770206348894363,0.00011518888152948065,3.1566183880674985e-05,0.0,0.0 +104900,50.0,the Greater Atlanta and Macon Area,G1300590000600,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,5001_10000,NaturalGas,11774.0,,599.0,,8.72605822017302,Office,Residential Style Central Systems,1946 to 1959,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.002614205186752029,0.0004755656740010177,0.0,0.0030897708607530465,0.0013899750812628004,0.000654047539130443,0.0009746201569439986,0.0,7.112808341580438e-05,0.0009855374906775872,0.000654047539130443,0.0009746201569439986,0.0,0.0,0.0004044375905852132,0.0,7.112808341580438e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.177230911504459e-05,0.0,0.0,0.00031152886751996585,0.00011427010846393502,0.0003433011766350104,0.00011744425415616025,7.794135295962698e-05,0.00011614326040417862,0.0,0.0,2.702027679522922e-05,0.0,4.752032319815364e-06,0.0,0.0,0.0,0.00015443866305819327,7.267053120696135e-05,0.00010828901615362071,0.0,7.902966216235047e-06 +104901,50.0,the Greater Atlanta and Macon Area,G1301210011421,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,10323.0,,759.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0022752715985683474,0.0006019420826746793,0.0,0.002877213681243027,0.001309666512661933,0.000559596060920154,0.0009213568014558848,0.0,8.659430620505486e-05,0.0007944014432660478,0.000559596060920154,0.0009213568014558848,0.0,0.0,0.0005152650693958853,0.0,8.659430620505486e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.021569046381857e-05,0.0,0.0,0.00027114356006356855,0.00012452742394308307,0.0003113592505273872,9.466862575102056e-05,6.668692575027644e-05,0.00010979786474402593,0.0,0.0,3.442480785787163e-05,0.0,5.7853569546053914e-06,0.0,0.0,0.0,0.00014172627722493892,6.055699347672477e-05,9.970512966756046e-05,0.0,9.370850158162996e-06 +104902,50.0,the Greater Atlanta and Macon Area,G1300890021907,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,52515.0,,2593.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0045732116824521805,0.0007634039566553567,0.0,0.005336615639107537,0.0028711968067878816,0.0010277949149100662,0.0014376239174095893,0.0,0.0,0.002107792850132525,0.0010277949149100662,0.0014376239174095893,0.0,0.0,0.0007634039566553567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.100697966653241e-05,0.0,0.0,0.0005449794119158689,0.00022758004166725584,0.0005959863915824012,0.00025118096157966506,0.00012248002217939434,0.0001713184281568095,0.0,0.0,5.100697966653241e-05,0.0,0.0,0.0,0.0,0.0,0.00032065157772662677,0.00011478281818445348,0.00016055199567132096,0.0,0.0 +104903,50.0,the Greater Atlanta and Macon Area,G1300770170402,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,4764.0,,385.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003554470201399937,0.00011324464723852326,0.0,0.0004686916673785169,0.00019776382298239675,0.00015375492755149094,0.00011717291684462925,0.0,0.0,8.451917574387347e-05,0.00015375492755149094,0.00011717291684462925,0.0,0.0,0.00011324464723852326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.5671487633222815e-06,0.0,0.0,4.235810956294655e-05,2.3485443153967237e-05,4.992525832626884e-05,1.0072028469724987e-05,1.8322753316384233e-05,1.3963327776837327e-05,0.0,0.0,7.5671487633222815e-06,0.0,0.0,0.0,0.0,0.0,2.1065896061712706e-05,1.6378047682988927e-05,1.2481314581567211e-05,0.0,0.0 +104904,50.0,the Greater Atlanta and Macon Area,G1301210011622,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,41131.0,,6431.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.008564225178916146,0.004423974692126952,0.0,0.012988128151072083,0.003223167217412577,0.00048733720305107716,0.0071866996956193065,0.00037222664957102134,0.0017186973854181034,0.003223167217412577,0.00048733720305107716,0.0027627250034923537,0.00037222664957102134,0.0017186973854181034,0.0,0.004423974692126952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00029558347323729183,0.0,0.0,0.0010205789356899028,0.0005612689865805148,0.0013161624089271947,0.0003840973934683276,5.807484899350895e-05,0.00032922755821618223,4.435739018047262e-05,0.00020481319812810133,0.0,0.00029558347323729183,0.0,0.0,0.0,0.0,0.00032662224147324374,4.9384707300921005e-05,0.00072826999191888,3.771988681262398e-05,0.00017416558142152624 +104905,35.0,Eastern Counties in South Carolina and Georgia,G1300510011600,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,5593.0,,499.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,9713.774621698478,0.0,0.0,0.00037901663777662934,0.00014694183495340092,0.0,0.0005259584727300303,0.0003558152954155661,8.632986251543793e-05,8.378262519272859e-05,0.0,0.0,0.00020887346046216513,8.632986251543793e-05,8.378262519272859e-05,0.0,0.0,0.00014694183495340092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.818135818913269e-06,0.0,0.0,4.516613609650343e-05,2.171235839183097e-05,5.4984271915416704e-05,2.4890746742737033e-05,1.0287638934369568e-05,9.984093242384969e-06,0.0,0.0,9.818135818913269e-06,0.0,0.0,0.0,0.0,0.0,3.719731874123826e-05,9.025017907461032e-06,8.758726941830294e-06,0.0,0.0 +104906,35.0,Eastern Counties in South Carolina and Georgia,G1300730030505,ComStock DOE Ref 1980-2004,gen2_t8_halogen,_1000,Electricity,13361.0,,5856.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.0030365649865724226,0.00454211190652534,0.0,0.0075786768930977645,0.0013987298255193931,0.00025341769413676595,0.005315868739708082,0.0004302602267076362,0.0001804004070258854,0.0013987298255193931,0.00025341769413676595,0.000773756833182742,0.0004302602267076362,0.0001804004070258854,0.0,0.00454211190652534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003034783220501575,0.0,0.0,0.00036185773382868325,0.00040739573630016565,0.0006653360558788408,0.00016668215801050683,3.0198975789393475e-05,9.22061261418973e-05,5.127273458052416e-05,2.1497739306361472e-05,0.0,0.0003034783220501575,0.0,0.0,0.0,0.0,0.00012279523173744665,2.224767350359335e-05,0.00046668293037642955,3.777277304167844e-05,1.583744721969265e-05 +104907,50.0,the Greater Atlanta and Macon Area,G1300890023114,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,93839.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.0074804708167283945,0.0,0.0,0.0074804708167283945,0.004670426891145347,0.0019886810495873624,0.0008213628759956848,0.0,0.0,0.004670426891145347,0.0019886810495873624,0.0008213628759956848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008914329175903432,0.00021682206180892035,0.0008914329175903432,0.0005565655387165798,0.0002369871888579357,9.788019001582764e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005565655387165798,0.0002369871888579357,9.788019001582764e-05,0.0,0.0 +104908,33.0,Rural Lower Plains-Upper South Appalachia,G1301870960202,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,DistrictHeating,9448.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,43199.70345818221,0.0038567854560807675,0.002359766360728078,0.001369160201755957,0.0,0.0,0.007585712018564802,0.006348942003389579,0.0004041585778380059,0.0008036220810178909,0.0,2.9043950210700948e-05,0.00016137954290006015,0.0004041585778380059,0.0008036220810178909,0.0,0.0,0.0,0.0,0.0,0.002330777004408751,0.0,2.9043950210700948e-05,0.0038567854560807675,0.0,0.0,0.0,0.0,0.0,0.0,0.00016315976627944917,6.014621848232367e-05,0.00016315976627944917,1.923124004633565e-05,4.816267593471679e-05,9.576585029839674e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013655829417985336,8.69297686736594e-06,1.72849681869008e-05,0.0,6.247012958852734e-07 +104909,50.0,the Greater Atlanta and Macon Area,G1301350050511,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,19556.0,,1555.0,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004482061740080547,0.0012334932977480309,0.0,0.005715555037828579,0.0028798603076026844,0.0013638396459611797,0.0013355538267423362,0.0,0.00013630125752237863,0.0016463670098546533,0.0013638396459611797,0.0013355538267423362,0.0,0.00013630125752237863,0.0012334932977480309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.241402526000302e-05,0.0,0.0,0.0005341182855115911,0.00021021811346000842,0.000616532310771594,0.00019619424622441934,0.0001625260283452565,0.00015915526414306863,0.0,1.6242746798846736e-05,8.241402526000302e-05,0.0,0.0,0.0,0.0,0.0,0.000310648207985803,0.00014711628229999694,0.0001440651138011128,0.0,1.4702706684681318e-05 +104910,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2007,gen5_led,25001_50000,NaturalGas,65065.0,,5776.0,,4.088175128053588,Healthcare,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,153306.56730200956,0.0,0.0,0.00803006834883135,0.0021467014253971585,0.0,0.010176769774228508,0.0051198292330052984,0.0009163614737859859,0.003908204770076042,0.0,0.00023233554893740838,0.0037623557029979222,0.0009163614737859859,0.003351312423623668,0.0,0.0,0.0013574735300073762,0.0005568923464523738,0.00023233554893740838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014343045287032346,0.0,0.0,0.000956926562863601,0.000416331798507407,0.0011003570157339243,0.00044835211292616647,0.0001092008931129789,0.0003993689392552933,0.0,0.0,9.06987067996253e-05,3.7208398199532294e-05,1.5523347871165854e-05,0.0,0.0,0.0,0.0005535784085598122,9.908102462749565e-05,0.0004225722535817091,0.0,2.512113931525493e-05 +104911,50.0,the Greater Atlanta and Macon Area,G1301390000400,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,21876.0,,2332.0,,3.20458438519356,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.226740887294,0.0,0.0,0.0018003647330733015,0.0006794574194225083,0.0,0.00247982215249581,0.0016517467110243817,0.0005567480776939908,0.000271327363777437,0.0,0.0,0.0009722892916018735,0.0005567480776939908,0.000271327363777437,0.0,0.0,0.0006794574194225083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5397250149992516e-05,0.0,0.0,0.00021454648088470727,9.808122812777437e-05,0.0002599437310346998,0.00011586610317509133,6.634674553120565e-05,3.2333632178410264e-05,0.0,0.0,4.539725014999252e-05,0.0,0.0,0.0,0.0,0.0,0.0001731419337293372,5.836030314372209e-05,2.8441494161640455e-05,0.0,0.0 +104912,35.0,Eastern Counties in South Carolina and Georgia,G1301270000101,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,12285.0,,,,8.72605822017302,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0028219653559851694,0.0,0.0,0.002821965355985169,0.0014505166592399734,0.0007970480696257057,0.0005036033719986429,0.0,7.079725512084716e-05,0.0014505166592399734,0.0007970480696257057,0.0005036033719986429,0.0,7.079725512084716e-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.00033628856656363175,0.00010615240850030517,0.00033628856656363175,0.000172855477151025,9.498279355139858e-05,6.0013513534758306e-05,0.0,8.436782326449846e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00017285547715102501,9.498279355139859e-05,6.001351353475831e-05,0.0,8.436782326449848e-06 +104913,81.0,the Columbus-Albany Area,G1302150001000,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,Electricity,4226.0,,,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001014815794781302,0.0,0.0,0.001014815794781302,0.0005358591307569728,0.0002352189177145903,0.00019758719916320545,0.0,4.606784007279424e-05,0.0005358591307569728,0.0002352189177145903,0.00019758719916320545,0.0,4.606784007279424e-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.00012092950151295818,4.231665313455274e-05,0.00012092950151295818,6.385511330908362e-05,2.8029625289556077e-05,2.3545279471430897e-05,0.0,5.489627737792804e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.385511330908362e-05,2.8029625289556077e-05,2.3545279471430897e-05,0.0,5.489627737792804e-06 +104914,50.0,the Greater Atlanta and Macon Area,G1300670030223,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,Electricity,7474.0,,673.0,,8.72605822017302,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0017947435001429714,0.0005341222822084473,0.0,0.002328865782351418,0.0014242985168646132,0.00043338506639397094,0.00039285860026171024,0.0,7.832359883112413e-05,0.0008901762346561658,0.00043338506639397094,0.00039285860026171024,0.0,7.832359883112413e-05,0.0005341222822084473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5686725287038114e-05,0.0,0.0,0.0002138768170017343,8.480176914172369e-05,0.00024956354228877244,0.00010608093001795695,5.1645830464934916e-05,4.681635395199252e-05,0.0,9.333702566849878e-06,3.5686725287038114e-05,0.0,0.0,0.0,0.0,0.0,0.0001526292265698896,4.644196894641551e-05,4.2099113071655274e-05,0.0,8.393233700812116e-06 +104915,50.0,the Greater Atlanta and Macon Area,G1301350050536,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,NaturalGas,122232.0,,8948.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,485688.7310849239,0.0,0.0,0.010307349791933861,0.0026339047708940433,0.0,0.012941254562827903,0.004772172400080188,0.0032797061562166033,0.004889376006531114,0.0,0.0,0.002138267629186144,0.0032797061562166033,0.004889376006531114,0.0,0.0,0.0026339047708940433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017598236770838098,0.0,0.0,0.0012283059822131973,0.0005130597328485612,0.0014042883499215783,0.0002548130192066955,0.0003908359348331074,0.0005826570281733946,0.0,0.0,0.00017598236770838098,0.0,0.0,0.0,0.0,0.0,0.0005178405287304311,0.00035588923191188934,0.0005305585892792581,0.0,0.0 +104916,50.0,the Greater Atlanta and Macon Area,G1300890023309,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,81204.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007165808243269515,0.0,0.0,0.007165808243269515,0.003515064746913686,0.0014751573059116796,0.0021755861904441502,0.0,0.0,0.003515064746913686,0.0014751573059116796,0.0021755861904441502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008539365505121086,0.0002778654393676598,0.0008539365505121086,0.0004188839783182146,0.00017579185745810594,0.00025926071473578817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004188839783182146,0.00017579185745810594,0.00025926071473578817,0.0,0.0 +104917,50.0,the Greater Atlanta and Macon Area,G1301350050424,ComStock 90.1-2004,gen4_led,10001_25000,NaturalGas,15875.0,,1975.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,56663.68529324113,0.0,0.0,0.0013418723457607564,0.000581322522491086,0.0,0.0019231948682518424,0.0010497993626255192,0.0003783721560443776,0.0004950847287945412,0.0,0.0,0.00046847684013443295,0.0003783721560443776,0.0004950847287945412,0.0,0.0,0.000581322522491086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.884046313032468e-05,0.0,0.0,0.00015990967213234516,8.614356105011574e-05,0.00019875013526266986,5.582794678209333e-05,4.509025587136775e-05,5.8998783982229253e-05,0.0,0.0,3.884046313032468e-05,0.0,0.0,0.0,0.0,0.0,0.00010849018410190771,3.9102390732669336e-05,5.116390358499649e-05,0.0,0.0 +104918,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,Propane,48450.0,,831.0,1326.0,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.005450430784628709,0.00030901867958236026,0.00015944976382212066,0.005918937976456962,0.003021524588899472,0.0006507022804045863,0.002087222594907012,0.0,0.00015944976382212066,0.003021524588899472,0.0006507022804045863,0.0017782039153246513,0.0,0.0,0.0,0.00030901867958236026,0.0,0.0,0.0,0.0,0.0,0.0,0.00015944976382212066,0.0,2.0647354880543023e-05,0.0,1.2860473080456847e-05,0.0006495193981197431,0.00023647228932547628,0.0006830272260807429,0.0003600704072640893,7.754318332332007e-05,0.00021190580753233375,0.0,0.0,0.0,2.0647354880543023e-05,0.0,0.0,1.2860473080456847e-05,0.0,0.00034867463837256335,7.508904052669288e-05,0.0002408590637176704,0.0,1.8400012014967017e-05 +104919,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960700,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,9436.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,24284.436554246196,0.0,0.0,0.0007789942766545897,0.0,0.0,0.0007789942766545898,0.00032684430707053465,0.0002291899798312444,0.000222929300146513,0.0,0.0,0.00032684430707053465,0.0002291899798312444,0.000222929300146513,0.0,0.0,0.0,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.283034994058067e-05,3.14902776261871e-05,9.283034994058067e-05,3.8949029936066825e-05,2.7311864372070145e-05,2.656579844653421e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.894902993606682e-05,2.7311864372070142e-05,2.6565798446534208e-05,0.0,0.0 +104920,50.0,the Greater Atlanta and Macon Area,G1300670030502,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,49513.0,,5463.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1990 to 1999,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.00272978417459275,0.0009290177473265067,0.0,0.003658801921919256,0.001446496075732168,0.0006726012604697031,0.0007390901157949011,0.0,0.0008006322002839043,0.001204441181625607,0.0006726012604697031,0.0007390901157949011,0.0,0.0001136693470639585,0.00024205489410656085,0.0,0.0006869628532199458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.207109288879084e-05,0.0,0.0,0.00032530410486515497,0.00014236990950410882,0.0003873751977539458,0.00014353136929218986,8.015283882320622e-05,8.807621158153028e-05,0.0,1.3545798067630817e-05,1.6172577821588496e-05,0.0,4.5898515067202336e-05,0.0,0.0,0.0,0.00015314759184698517,7.121157467505954e-05,7.825107395096497e-05,0.0,8.476683448074306e-05 +104921,35.0,Eastern Counties in South Carolina and Georgia,G1300510004002,ComStock 90.1-2004,gen1_t12_incandescent,10001_25000,Electricity,30972.0,,881.0,,8.72605822017302,Office,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.007012401954060919,0.0006988747730971477,0.0,0.007711276727158067,0.004713724253624348,0.0018198037434859814,0.0010201090475006178,0.0,0.00015763968254711992,0.0040148494805272,0.0018198037434859814,0.0010201090475006178,0.0,0.00015763968254711992,0.0006988747730971477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.66974757536721e-05,0.0,0.0,0.0008356537422536907,0.0002813569094355303,0.0008823512180073628,0.0004784414833842958,0.0002168623273984851,0.00012156432968835682,0.0,1.8785601782552948e-05,4.66974757536721e-05,0.0,0.0,0.0,0.0,0.0,0.0005393607937695056,0.0002082283007616801,0.00011672444037606518,0.0,1.80376831001119e-05 +104922,50.0,the Greater Atlanta and Macon Area,G1300150960700,ComStock 90.1-2004,gen1_t12_incandescent,_1000,Propane,3646.0,,,1066.0,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,8726.05822017302,0.0,0.0,0.0004486031679620034,0.0,0.00027351229285588966,0.0007221981678916323,0.00043570086445867155,0.00016194045038156392,0.00011231620613797948,0.0,1.2240646913417498e-05,0.00017442921851619936,0.00016194045038156392,0.00011231620613797948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026127164594247213,1.2240646913417498e-05,0.0,0.0,0.0,2.2060733594191943e-05,5.346330731195898e-05,3.74280046764532e-05,7.552404090615092e-05,2.0788000575391136e-05,1.9299623104132686e-05,1.3385540436880587e-05,0.0,0.0,0.0,0.0,0.0,2.107343738253775e-05,9.872962116541902e-07,0.0,4.556351895254273e-05,1.6934960157380155e-05,1.1745493306293284e-05,0.0,1.2800684899347614e-06 +104923,50.0,the Greater Atlanta and Macon Area,G1300570091003,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,NaturalGas,9742.0,,1557.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002155842584088787,0.001234899318001599,0.0,0.0033906591950166472,0.00229644460944561,0.0005860623245167323,0.000418084257752199,0.0,9.006800330210577e-05,0.0011516132947461167,0.0005860623245167323,0.000418084257752199,0.0,0.0,0.0011448313146994933,0.0,9.006800330210577e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.250773237114591e-05,0.0,0.0,0.00025690315376397784,0.00015523395812882686,0.0003394108861351237,0.00013723315863614012,6.983870741853553e-05,4.982143183752429e-05,0.0,0.0,7.648998938325643e-05,0.0,6.017742987889484e-06,0.0,0.0,0.0,0.00022987810187403274,5.866585859970451e-05,4.185096178683409e-05,0.0,9.015963874552389e-06 +104924,33.0,Rural Lower Plains-Upper South Appalachia,G1301570010400,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,8047.0,,305.0,,3.3063363735822096,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,9919.009120746628,0.0,0.0,0.0006515801576647086,9.178906703539492e-05,0.0,0.0007433692247001034,0.00024004925008232336,0.00013719786120893103,0.00022080770444909273,0.0,0.0001453457469819603,0.00024004925008232336,0.00013719786120893103,0.0001290186374136978,0.0,0.0001453457469819603,0.0,9.178906703539492e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.133644567428841e-06,0.0,0.0,7.764709542500032e-05,3.24666001904305e-05,8.378073999242916e-05,2.8606038426101504e-05,1.634950864614522e-05,1.537481203658745e-05,0.0,1.7320470785934566e-05,0.0,6.133644567428841e-06,0.0,0.0,0.0,0.0,2.705452840698147e-05,1.5462757880648154e-05,2.4885927827100706e-05,0.0,1.6381057800467372e-05 +104925,50.0,the Greater Atlanta and Macon Area,G1301210008500,ComStock 90.1-2004,gen2_t8_halogen,200001_500000,NaturalGas,452815.0,,32360.0,,7.614023970037612,Education,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,2664908.3895131643,0.0,0.0,0.08334114803165109,0.02239927268282181,0.0,0.10574042071447289,0.07769840852417531,0.014614182938500848,0.006729791370899582,0.0007938372500605384,0.00590420063083662,0.05796231548126114,0.014614182938500848,0.006729791370899582,0.0007938372500605384,0.00324102099092898,0.019736093042914172,0.0,0.0026631796399076407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014965875186804813,0.0,0.0,0.009931604741486648,0.003911287635419269,0.01142819226016713,0.00690725794948992,0.0017415441470742222,0.00080197632822455,9.46000623086662e-05,0.00038622625438929076,0.0013186495353571923,0.0,0.00017793798332328917,0.0,0.0,0.0,0.008397473217181444,0.0015794687709577311,0.0007273410597176431,8.579618518325494e-05,0.0006381130271270578 +104926,35.0,Eastern Counties in South Carolina and Georgia,G1300510011006,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,21927.0,,,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,152706.01885302784,0.0,0.0,0.004902958038339883,0.0,0.0,0.004902958038339883,0.002712378483280587,0.0011005830302489637,0.0009560110653526544,0.0,0.00013398545945767802,0.002712378483280587,0.0011005830302489637,0.0009560110653526544,0.0,0.00013398545945767802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005842783563178322,0.00013429499772251195,0.0005842783563178322,0.0003232301866608746,0.0001311548740325128,0.00011392644389733341,0.0,1.5966851727111355e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0003232301866608746,0.0001311548740325128,0.00011392644389733341,0.0,1.5966851727111355e-05 +104927,85.0,Rural Climate Zone 3A,G1301750950800,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,NaturalGas,18859.0,,2569.0,,8.53126424238864,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,25593.792727165917,0.0,0.0,0.005169429861570979,0.0019924096948085233,0.0,0.007161839556379503,0.0026442284671239257,0.0009407343502192516,0.0024559037033573244,0.0004199100464748646,0.0007010629892041355,0.0026442284671239257,0.0009407343502192516,0.001164476136969868,0.0004199100464748646,0.0,0.0,0.0012914275663874564,0.0007010629892041355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013312262421625906,0.0,0.0,0.0006160289749885646,0.0003091600744018341,0.0007491515992048238,0.0003151065776802917,0.00011210513209787203,0.00013876792224011135,5.003970697818889e-05,0.0,0.0,8.628658406484877e-05,4.6841442855315185e-05,0.0,0.0,0.0,0.00027659485656087774,9.840385802358493e-05,0.00025689547669695045,4.392395003579823e-05,7.33334578876123e-05 +104928,81.0,the Columbus-Albany Area,G1302150010402,ComStock 90.1-2007,gen2_t8_halogen,10001_25000,NaturalGas,48344.0,,6862.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1980 to 1989,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.0023168263267582994,0.0011668882761379353,0.0,0.0034836968725348153,0.0013307168156592231,0.0007664657938274627,0.0010769244222925871,0.0,0.00030958984075554193,0.001185966145025912,0.0007664657938274627,0.00028955453235088237,0.0,7.482212519262284e-05,0.00014475067063331109,0.0007873698899417048,0.00023476771556291912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.796438495039242e-05,0.0,0.0,0.0002760911121527893,0.00013922327247524802,0.0003540554971031817,0.00014132898447071193,9.133804765633222e-05,3.4505578576315935e-05,0.0,8.916388561144647e-06,9.671360350310785e-06,5.260727222398349e-05,1.5685752376098123e-05,0.0,0.0,0.0,0.0001352435705259774,7.789754320636719e-05,0.00010945011165679375,0.0,3.146427171404329e-05 +104929,50.0,the Greater Atlanta and Macon Area,G1301350050212,ComStock DOE Ref 1980-2004,gen4_led,1001_5000,NaturalGas,5308.0,,834.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.001274681420470206,0.0006613257616195021,0.0,0.0019360071820897081,0.0013158695431923812,0.0001924593605913684,0.00039376837807284263,0.0,3.3827193159376724e-05,0.0006883709747322557,0.0001924593605913684,0.00039376837807284263,0.0,0.0,0.0006274985684601254,0.0,3.3827193159376724e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.418612657078602e-05,0.0,0.0,0.00015189718048078625,9.663733892390401e-05,0.00019608330705157226,8.202960246182092e-05,2.2934384828626374e-05,4.692333741688447e-05,0.0,0.0,4.192598077695767e-05,0.0,2.2601457938283484e-06,0.0,0.0,0.0,0.00013327432566603362,1.9492731352913904e-05,3.988177652394633e-05,0.0,3.426096744023113e-06 +104930,50.0,the Greater Atlanta and Macon Area,G1300890021306,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,89378.0,,2093.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,Before 1946,H: Buildings with Residential Style Central Systems,242844.36554246195,0.0,0.0,0.0077462407671779684,0.0006160631568200857,0.0,0.008362303923998053,0.001726965525584331,0.0035717484497455425,0.0030635899486681807,0.0,0.0,0.0011109023687642453,0.0035717484497455425,0.0030635899486681807,0.0,0.0,0.0006160631568200857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.116161747312449e-05,0.0,0.0,0.0009231054713754176,0.0003397626077612652,0.0009642670888485421,0.00013238422166211326,0.0004256387885988654,0.0003650824611144389,0.0,0.0,4.116161747312449e-05,0.0,0.0,0.0,0.0,0.0,0.00019913842345744705,0.0004118625095473425,0.0003532661558437527,0.0,0.0 +104931,35.0,Eastern Counties in South Carolina and Georgia,G1300510011200,ComStock 90.1-2004,gen4_led,5001_10000,Electricity,13946.0,,,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0030714098903829204,0.0,0.0,0.0030714098903829204,0.0016281714536320057,0.0004139489040652336,0.0009578306209749194,0.0,7.137620463702231e-05,0.0016281714536320057,0.0004139489040652336,0.0009578306209749194,0.0,7.137620463702231e-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.0003660156718630933,9.686624301619775e-05,0.0003660156718630933,0.00019402694195112165,4.932971880856263e-05,0.00011414335135303974,0.0,8.505803662695216e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00019402694195112165,4.932971880856263e-05,0.00011414335135303974,0.0,8.505803662695216e-06 +104932,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,NaturalGas,19546.0,,7446.0,,7.56685751697572,Food Service,Small Packaged Unit,2013 to 2018,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.003944670125829624,0.005121953450050878,0.0,0.009066623575880502,0.0023940126325010967,0.0004550632160940521,0.0037137318191593554,0.0002809988464391641,0.002222817061686833,0.0017909193962308235,0.0004550632160940521,0.00113554230109017,0.0002809988464391641,0.0002820746460043983,0.0006030932362702732,0.002578189518069186,0.001940742415682435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003422208048819786,0.0,0.0,0.000470077764813043,0.00047653380996328905,0.0008122985696950217,0.00021341997173045027,5.422889434262573e-05,0.0001353201078214016,3.348602175483177e-05,3.361422245067723e-05,4.029537846214515e-05,0.00017226046675671236,0.00012966975159777,0.0,0.0,0.0,0.00021448481024245017,4.077010548197562e-05,0.00033272132891444913,2.5175299177049727e-05,0.00019914702587909698 +104933,50.0,the Greater Atlanta and Macon Area,G1300770170802,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,42059.0,,,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,32736.412774265485,0.0,0.0,0.0021650189722798078,0.0,0.0,0.0021650189722798073,0.001204458911987027,0.000837121284086373,9.056668613362972e-05,0.0,3.288982043419795e-05,0.001204458911987027,0.000837121284086373,9.056668613362972e-05,0.0,3.288982043419795e-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.00025800117247581905,5.5430405807084973e-05,0.00025800117247581905,0.00014353306620882612,9.975814326066531e-05,1.0792658867612964e-05,0.0,3.9194170319933526e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00014353306620882615,9.975814326066534e-05,1.0792658867612966e-05,0.0,3.919417031993353e-06 +104934,50.0,the Greater Atlanta and Macon Area,G1301130140406,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,1001_5000,Electricity,11752.0,,508.0,,4.088175128053588,Healthcare,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,12264.525384160763,0.0,0.0,0.0011814394408108044,0.00018878232061758735,0.0,0.0013702217614283917,0.0007531143644342011,0.0002334205048030267,0.00034610092113224346,0.0,3.7585971058920306e-05,0.0006152474726531306,0.0002334205048030267,0.0002951854922957267,0.0,3.7585971058920306e-05,0.00013786689178107054,5.091542883651678e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2613621891155842e-05,0.0,0.0,0.00014078966799565025,5.3219980940523146e-05,0.00015340328988680608,7.331775495030944e-05,2.7816233519376744e-05,3.517663794000864e-05,0.0,4.4790415859554195e-06,9.211672144649523e-06,3.4019497465063167e-06,0.0,0.0,0.0,0.0,8.431498055087276e-05,2.613261179452858e-05,3.874775706320207e-05,0.0,4.207940478202644e-06 +104935,50.0,the Greater Atlanta and Macon Area,G1301350050720,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,5680.0,,378.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0010495527657518112,0.000299978556452468,0.0,0.0013495313222042793,0.0008971236288502676,0.00019940675478547022,0.00021015867437158015,0.0,4.275955712322194e-05,0.0005971450723977997,0.00019940675478547022,0.00021015867437158015,0.0,4.275955712322194e-05,0.000299978556452468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0042649238462317e-05,0.0,0.0,0.00012506894628919315,6.033591662407826e-05,0.0001451115955276555,7.115821845610519e-05,2.3762114224053956e-05,2.5043356384620942e-05,0.0,5.095401515485647e-06,2.0042649238462317e-05,0.0,0.0,0.0,0.0,0.0,9.646537210813748e-05,2.144169006662851e-05,2.2597816034551242e-05,0.0,4.5978240416619415e-06 +104936,85.0,Rural Climate Zone 3A,G1300810010400,ComStock 90.1-2007,gen2_t8_halogen,_1000,Electricity,23144.0,,5926.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.0051284334445552355,0.004595641744916705,0.0,0.009724075189471942,0.00228480228638432,0.00032182591661274044,0.0065225542054397215,0.0004333329364642402,0.0001614789837878499,0.00228480228638432,0.00032182591661274044,0.0019269124605230164,0.0004333329364642402,0.0001614789837878499,0.0,0.004595641744916705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003070537430328856,0.0,0.0,0.0006111420847849992,0.0004937565796841605,0.0009181958278178848,0.000272273950265439,3.835115805692409e-05,0.00022962514987349278,5.163915980579302e-05,1.9243030813989298e-05,0.0,0.0003070537430328856,0.0,0.0,0.0,0.0,0.00021574246248303345,3.038841310456091e-05,0.0006158921996648998,4.0917463775714055e-05,1.5247653510002042e-05 +104937,35.0,Eastern Counties in South Carolina and Georgia,G1301790010300,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,NaturalGas,15174.0,,90.0,,8.72605822017302,Office,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.004891544462163859,7.15416187845009e-05,0.0,0.004963086080948359,0.0029081461268215276,0.00046117464317037824,0.001522223692171953,0.0,7.15416187845009e-05,0.0029081461268215276,0.00046117464317037824,0.001522223692171953,0.0,0.0,0.0,0.0,7.15416187845009e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7780804510002435e-06,0.0,0.0,0.0005829165123648603,0.00019339981891473742,0.0005876945928158605,0.0003465585176229346,5.4957348679411965e-05,0.00018140064606251384,0.0,0.0,0.0,0.0,4.7780804510002435e-06,0.0,0.0,0.0,0.0003443627061823638,5.460913627418408e-05,0.0001802512828418863,0.0,8.47146751742633e-06 +104938,50.0,the Greater Atlanta and Macon Area,G1301170130409,ComStock 90.1-2004,gen4_led,1001_5000,Electricity,6094.0,,454.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0012377113585087356,0.0003604374273559017,0.0,0.0015981487858646374,0.0007603261288854531,0.00020751204801192235,0.000590528506498655,0.0,3.9782102468606875e-05,0.00039988870152955135,0.00020751204801192235,0.000590528506498655,0.0,3.9782102468606875e-05,0.0003604374273559017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4081963757806788e-05,0.0,0.0,0.00014749650963683875,7.161046753506608e-05,0.00017157847339464554,4.765423482085635e-05,2.4728950396179654e-05,7.037254118322945e-05,0.0,4.740783236573301e-06,2.4081963757806788e-05,0.0,0.0,0.0,0.0,0.0,8.162919349567749e-05,2.22786518525677e-05,6.339959116274745e-05,0.0,4.2710368836528755e-06 +104939,50.0,the Greater Atlanta and Macon Area,G1300890023412,ComStock 90.1-2004,gen4_led,5001_10000,NaturalGas,15269.0,,105.0,,8.72605822017302,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0035230732200732784,8.336873032922187e-05,0.0,0.0036064419504025003,0.002102579228600673,0.0005321373124387039,0.0008881912648864225,0.0,8.336873032922187e-05,0.002102579228600673,0.0005321373124387039,0.0008881912648864225,0.0,0.0,0.0,0.0,8.336873032922187e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.571166464956684e-06,0.0,0.0,0.00041983509525202753,0.00015255765975641033,0.00042540626171698416,0.00025055867294638217,6.341336251030695e-05,0.00010584334783932022,0.0,0.0,0.0,0.0,5.571166464956684e-06,0.0,0.0,0.0,0.0002480146310140848,6.276949633957288e-05,0.00010476866975298,0.0,9.833952799236784e-06 +104940,50.0,the Greater Atlanta and Macon Area,G1301130140404,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,14224.0,,2362.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1960 to 1969,C: Strip Malls with some Food-Service with Small Packaged Units,5611.956475588368,0.0,0.0,0.0006632573600013353,0.00040166360760987617,0.0,0.0010649386979726316,0.00045254974488542776,0.00014960878966240555,0.0002740227357469161,0.0,0.00018875742767788213,0.00036464261296480596,0.00014960878966240555,6.964485965796741e-05,0.0,7.936109771615635e-05,8.790713192062179e-05,0.00020437787608894865,0.00010939632996172578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6837101371929725e-05,0.0,0.0,7.90398734183755e-05,4.7595294353789865e-05,0.00010587697479030521,4.3454181905536526e-05,1.782876528828733e-05,8.299524775111711e-06,0.0,9.457401449439925e-06,5.873503513817762e-06,1.3655481041504102e-05,7.309301468385557e-06,0.0,0.0,0.0,4.499282261205318e-05,1.4874213963348407e-05,2.724353837444295e-05,0.0,1.8766399840460667e-05 +104941,50.0,the Greater Atlanta and Macon Area,G1300570090701,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,Electricity,162954.0,,3336.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,306613.1346040191,0.0,0.0,0.022531200964448068,0.0012397170701640165,0.0,0.02377087928618831,0.011533003354675178,0.0033415865692568757,0.008542864989031092,0.0,0.0003535018700727113,0.011533003354675178,0.0033415865692568757,0.007303147918867076,0.0,0.0003535018700727113,0.0,0.0012397170701640165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.282944332846646e-05,0.0,0.0,0.0026849978845838265,0.0008524782747827939,0.0027678273279122933,0.001374364804568667,0.00039821014795285783,0.000870301443047877,0.0,4.212610658612122e-05,0.0,8.282944332846646e-05,0.0,0.0,0.0,0.0,0.001342876781025156,0.0003890867693038099,0.0009947118442961453,0.0,4.116095684453093e-05 +104942,50.0,the Greater Atlanta and Macon Area,G1300630040407,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,104925.0,,13594.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005073028739866928,0.002311790904115005,0.0,0.007384819643981933,0.002608721266816629,0.0015876474829972084,0.0016216011251166094,0.0,0.0015668320386900661,0.002265195514303106,0.0015876474829972084,0.0009781131180986332,0.0,0.0002420548941065609,0.000343525752513523,0.0006434880070179763,0.0013247771445835054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015445984175609375,0.0,0.0,0.0006045432106984815,0.00030504151140659083,0.0007590030524545753,0.0002699390520528608,0.00018919693856370146,0.00011655988466904712,0.0,2.8845222519338566e-05,2.295230649014707e-05,4.299396435855007e-05,8.851357090739659e-05,0.0,0.0,0.0,0.00026812129476046985,0.00016317653563803846,0.00016666625092601805,0.0,0.00016103714882441546 +104943,50.0,the Greater Atlanta and Macon Area,G1301170130612,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,4634.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0011126582630149027,0.0,0.0,0.0011126582630149027,0.0006196413964548913,0.00025225657490488766,0.00020006841137538465,0.0,4.069188027973925e-05,0.0006196413964548913,0.00025225657490488766,0.00020006841137538465,0.0,4.069188027973925e-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.00013259362330834637,4.2056305488492974e-05,0.00013259362330834637,7.384162832276304e-05,3.0060993911429162e-05,2.3841817794015453e-05,0.0,4.849183280138736e-06,0.0,0.0,0.0,0.0,0.0,0.0,7.384162832276304e-05,3.0060993911429162e-05,2.3841817794015453e-05,0.0,4.849183280138736e-06 +104944,50.0,the Greater Atlanta and Macon Area,G1301210003500,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,11164.0,,,,8.72605822017302,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0024192646139484814,0.0,0.0,0.002419264613948481,0.0010986807675529599,0.0004645656331936898,0.0007732284323887851,0.0,8.278978081304674e-05,0.0010986807675529599,0.0004645656331936898,0.0007732284323887851,0.0,8.278978081304674e-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.0002882978238868888,9.096880052501138e-05,0.0002882978238868888,0.00013092708941620564,5.536114583339559e-05,9.214373373623204e-05,0.0,9.865854901055544e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00013092708941620567,5.5361145833395606e-05,9.214373373623205e-05,0.0,9.865854901055546e-06 +104945,50.0,the Greater Atlanta and Macon Area,G1300770170305,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,70713.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.006235608843772136,0.0,0.0,0.006235608843772136,0.0032672577179195255,0.002497955191360148,0.0004703959344924625,0.0,0.0,0.0032672577179195255,0.002497955191360148,0.0004703959344924625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007430857147273588,0.00018738232888388618,0.0007430857147273588,0.00038935292404422496,0.00029767659666187385,5.605619402125996e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038935292404422496,0.00029767659666187385,5.605619402125996e-05,0.0,0.0 +104946,46.0,the Tallahassee-Valdosta Area,G1301850011302,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,NaturalGas,67921.0,,875.0,,9.325022323477118,Office,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.01710366034600458,0.0007420733910294005,0.0,0.017845733737033978,0.009314364496621414,0.004573438258553637,0.0035506567815416995,0.0,0.0004072742003172318,0.008979565305909244,0.004573438258553637,0.0035506567815416995,0.0,0.0,0.00033479919071216887,0.0,0.0004072742003172318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9578829275711304e-05,0.0,0.0,0.0020382122306807095,0.0007000704973278808,0.002087791059956421,0.0010700785365499732,0.0005450083553035853,0.0004231253388271511,0.0,0.0,2.2368342698474805e-05,0.0,2.721048657723651e-05,0.0,0.0,0.0,0.0010896972470717668,0.000535051326561926,0.00041539505154067547,0.0,4.764743478205343e-05 +104947,50.0,the Greater Atlanta and Macon Area,G1301170130612,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,10128.0,,649.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,5611.956475588368,0.0,0.0,0.0005213435471952327,0.00011033603911698857,0.0,0.0006316795863122212,0.00036535182742160804,0.00014537123328301293,3.492881199750402e-05,0.0,8.60277136100962e-05,0.0002550157883046194,0.00014537123328301293,3.492881199750402e-05,0.0,8.60277136100962e-05,0.00011033603911698857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.3722396770845815e-06,0.0,0.0,6.212775750788443e-05,2.4821290959069946e-05,6.9499997184969e-05,3.038986315589381e-05,1.7323679900936756e-05,4.162416075722089e-06,0.0,1.0251798375331765e-05,7.3722396770845815e-06,0.0,0.0,0.0,0.0,0.0,4.019751710762824e-05,1.5994343529333394e-05,3.843012166457713e-06,0.0,9.465124381549656e-06 +104948,85.0,Rural Climate Zone 3A,G1301470960500,ComStock DOE Ref 1980-2004,gen5_led,1001_5000,NaturalGas,19392.0,,2190.0,,8.53126424238864,Food Service,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,25593.792727165917,0.0,0.0,0.004429796278843157,0.001698319026788288,0.0,0.006128196166414512,0.0023384129855587537,0.00042799612478171733,0.0025577074292406007,0.0004059211310040093,0.0003979967742632935,0.0023384129855587537,0.00042799612478171733,0.0012573851767156065,0.0004059211310040093,0.0,0.0,0.0013003222525249946,0.0003979967742632935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001134735605773342,0.0,0.0,0.0005278929105964964,0.00026198253065026116,0.0006413664711738305,0.0002786655546709759,5.10037269917174e-05,0.0001498409134179493,4.8373079444251165e-05,0.0,0.0,8.688131827091899e-05,2.6592242306415223e-05,0.0,0.0,0.0,0.000244734281339491,4.479333832877782e-05,0.0002676852606607918,4.248300744577077e-05,4.165365789802464e-05 +104949,50.0,the Greater Atlanta and Macon Area,G1300670030506,ComStock DOE Ref 1980-2004,gen5_led,5001_10000,Electricity,54483.0,,17093.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.012258449165959258,0.011758130648154353,0.0,0.024016508094142592,0.010837461380226954,0.000693316959807912,0.009550948540148922,0.0003710791300347716,0.002563845523866064,0.004920994091265137,0.000693316959807912,0.003709285180956388,0.0003710791300347716,0.002563845523866064,0.005916467288961818,0.0058416633591925355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007856085536883686,0.0,0.0,0.0014608129661886186,0.0011878085821819054,0.0022464215198769867,0.0005864242595237909,8.262108777824476e-05,0.000442027520306511,4.422070013082016e-05,0.00030552794516361793,0.00039530325431070347,0.0003903052993776651,0.0,0.0,0.0,0.0,0.001013698842893619,6.485048253072382e-05,0.0008933628590686346,3.470946484058809e-05,0.0002398132874219836 +104950,81.0,the Columbus-Albany Area,G1302150001400,ComStock 90.1-2004,gen2_t8_halogen,5001_10000,NaturalGas,16494.0,,396.0,,8.72605822017302,Office,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.0037679688654153674,0.00031403875898815026,0.0,0.004082007624403518,0.0025392725779442168,0.0008480783341228582,0.0005861450315904717,0.0,0.00010851168074597134,0.0023336627926282983,0.0008480783341228582,0.0005861450315904717,0.0,0.0,0.00020560978531591824,0.0,0.00010851168074597134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0984266523692802e-05,0.0,0.0,0.0004490220425745113,0.0001579950964470895,0.00047000630909820404,0.0002780983790614692,0.00010106396296060052,6.984984449988063e-05,0.0,0.0,1.373897460571512e-05,0.0,7.2508184564353336e-06,0.0,0.0,0.0,0.00029237430254144586,9.76485602977e-05,6.748930630288668e-05,0.0,1.2494139956171485e-05 +104951,35.0,Eastern Counties in South Carolina and Georgia,G1300330950500,ComStock 90.1-2007,gen1_t12_incandescent,5001_10000,Electricity,23379.0,,,,3.20458438519356,Mercantile,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,24034.3828889517,0.0,0.0,0.0020180826938431067,0.0,0.0,0.002018082693843107,0.0013720058602026874,0.0005628835447804168,8.319328886000224e-05,0.0,0.0,0.0013720058602026874,0.0005628835447804168,8.319328886000224e-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.00024048963059607683,7.318491784802429e-05,0.00024048963059607683,0.00016349834598078603,6.707735821026602e-05,9.91392640502475e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000163498345980786,6.707735821026601e-05,9.913926405024746e-06,0.0,0.0 +104952,50.0,the Greater Atlanta and Macon Area,G1300670031313,ComStock 90.1-2004,gen1_t12_incandescent,1001_5000,NaturalGas,2619.0,,495.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.00023336376628773194,0.00014559149227630198,0.0,0.00037895525856403395,0.00018634728943965127,0.00011852325952172815,7.411539920895221e-05,0.0,0.0,4.075579716334929e-05,0.00011852325952172815,7.411539920895221e-05,0.0,0.0,0.00014559149227630198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.728049210396463e-06,0.0,0.0,2.78085181113791e-05,1.8156756040842612e-05,3.7536567321775564e-05,4.856616524449164e-06,1.4123684501071291e-05,8.831874176615007e-06,0.0,0.0,9.728049210396463e-06,0.0,0.0,0.0,0.0,0.0,1.845821483461461e-05,1.1740056932029255e-05,7.341335445585357e-06,0.0,0.0 +104953,85.0,Rural Climate Zone 3A,G1302610950300,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,Electricity,235617.0,,,,5.759960461090961,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,431997.0345818221,0.0,0.00214799665609028,0.0396085233181693,0.0,0.0,0.04175651997425959,0.023931505253029728,0.002399292338082491,0.015306380136604892,0.0,0.00011939684043384018,0.02178350859693945,0.002399292338082491,0.015306380136604892,0.0,0.00011939684043384018,0.0,0.0,0.0,0.00214799665609028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004720071106536861,0.001675526870049718,0.004720071106536861,0.002595898582269174,0.00028591902682530677,0.0018240317127732229,0.0,1.4228290517587736e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.002705168116270055,0.0002712110695072176,0.0017302017187494215,0.0,1.3496373191323492e-05 +104954,50.0,the Greater Atlanta and Macon Area,G1301350050309,ComStock DOE Ref 1980-2004,gen5_led,50001_100000,NaturalGas,57932.0,,5857.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,1970 to 1979,D: Buildings with Hydronically Heated Multizone Systems,242844.36554246195,0.0,0.0,0.004903677363065844,0.0017241113921986444,0.0,0.006627788755264489,0.0031990845604725373,0.0012799714098582899,0.0021486714057210653,0.0,0.0,0.0014749731682738934,0.0012799714098582899,0.0021486714057210653,0.0,0.0,0.0017241113921986444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011519494817972577,0.0,0.0,0.0005843611287864043,0.0002836638349767818,0.0006995560769661301,0.00017576951371925284,0.00015253155591204672,0.0002560527447207934,0.0,0.0,0.00011519494817972577,0.0,0.0,0.0,0.0,0.0,0.00033765998399231984,0.00013509962540644366,0.00022678998905654549,0.0,0.0 +104955,50.0,the Greater Atlanta and Macon Area,G1300890021415,ComStock DOE Ref 1980-2004,gen4_led,100001_200000,Electricity,386781.0,,56931.0,,9.525004485617233,Lodging,Zone-by-Zone,1990 to 1999,E: Lodging with Zone-by-Zone Systems,1428750.672842585,0.0,0.0,0.09749982637235748,0.049297278541793665,0.0,0.14679710491415116,0.0753040393246802,0.0044298405524186065,0.04943829531327158,0.0006631941122129918,0.016961825891191003,0.049112024754935375,0.0044298405524186065,0.02633303134122272,0.0006631941122129918,0.016961825891191003,0.026192014569744806,0.023105263972048866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032937568178906633,0.0,0.0,0.011618865612735318,0.006694862195690321,0.014912622430625981,0.005852584941204619,0.0005278955253502825,0.003138056381363545,7.903155884126466e-05,0.0020213079644235835,0.001749997750692256,0.0015437590671984077,0.0,0.0,0.0,0.0,0.00764988319494925,0.0004500125504840668,0.0050222695607775175,6.737165150109959e-05,0.001723094644116266 +104956,50.0,the Greater Atlanta and Macon Area,G1300590000900,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,7584.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,9613.75315558068,0.0,0.0,0.0005425332331571229,0.0,0.0,0.000542533233157123,0.00032928019150466753,0.0001435456309428151,6.973778430907819e-05,0.0,0.0,0.00032928019150466753,0.0001435456309428151,6.973778430907819e-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,6.465105128244353e-05,1.7304902324691113e-05,6.465105128244353e-05,3.9238721697064746e-05,1.710563589524287e-05,8.310313164510715e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.923872169706474e-05,1.7105635895242868e-05,8.310313164510713e-06,0.0,0.0 +104957,50.0,the Greater Atlanta and Macon Area,G1300210013504,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,10001_25000,NaturalGas,88968.0,,15812.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.018524909913477255,0.010877194244169603,0.0,0.02940210415764686,0.011740630975226544,0.0037255656143769314,0.004851927759177103,0.00037746220745516097,0.008706589321382135,0.01026757449053691,0.0037255656143769314,0.0031882395915279736,0.00037746220745516097,0.0009661397295512964,0.0014730564846896354,0.0016636881676491294,0.007740449591830839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007267488317125791,0.0,0.0,0.0022075779260093405,0.001262794330948799,0.002934326757721919,0.0012235671269027633,0.0004439684970459405,0.00037993638716513767,4.49814461162127e-05,0.00011513301551045056,9.842079264776055e-05,0.00011115765748332934,0.0005171703815814891,0.0,0.0,0.0,0.0011717136786683381,0.0003718110381250297,0.0004842218561620988,3.767068674492803e-05,0.0008689166556667354 +104958,85.0,Rural Climate Zone 3A,G1302370960202,ComStock DOE Ref 1980-2004,gen4_led,10001_25000,NaturalGas,35644.0,,1950.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,32736.412774265485,0.0,0.0,0.001834790990831324,0.0003315932192778275,0.0,0.0021663842101091522,0.0014148296502359534,0.0005444993992098216,0.00016012289398449687,0.0,4.693226667887976e-05,0.0011301686976370056,0.0005444993992098216,0.00016012289398449687,0.0,0.0,0.0002846609525989477,0.0,4.693226667887976e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.215549355029303e-05,0.0,0.0,0.00021864788347945302,6.799806845542001e-05,0.00024080337702974604,0.00013467964195807325,6.48867591938193e-05,1.9081482327560473e-05,0.0,0.0,1.901970104534031e-05,0.0,3.1357925049527135e-06,0.0,0.0,0.0,0.00015726469760480124,6.0523564337549615e-05,1.779838194504756e-05,0.0,5.216733142347567e-06 +104959,35.0,Eastern Counties in South Carolina and Georgia,G1300510011106,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,91834.0,,17471.0,,7.56685751697572,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,132420.00654707509,0.0,0.0,0.019121691792298154,0.012018115543085944,0.0,0.031139807335384094,0.011171317845304625,0.0034389726101985495,0.006930085639325448,0.0003823391654842225,0.00921716379504227,0.011171317845304625,0.0034389726101985495,0.003087401312280025,0.0003823391654842225,0.0010416608590307348,0.0,0.0038426843270454245,0.008175502936011535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008029809994553136,0.0,0.0,0.002278693061367568,0.001329364471961487,0.003081674060822882,0.0013312631924483024,0.0004098153610157488,0.0003679193255684246,4.5562579553179504e-05,0.00012413260278191317,0.0,0.0002567459507657471,0.0005462398406033902,0.0,0.0,0.0,0.0011055418570289108,0.0003403294238332355,0.0006858187953437758,3.783725043701728e-05,0.0009121538317695954 +104960,50.0,the Greater Atlanta and Macon Area,G1300890021417,ComStock 90.1-2007,gen5_led,100001_200000,NaturalGas,246590.0,,19991.0,,3.20458438519356,Mercantile,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,480687.657779034,0.0,0.0,0.019673253718226796,0.00582389470339341,0.0,0.025497148421620208,0.01854280909435255,0.00479535350563282,0.0021589858216348374,0.0,0.0,0.01271891439095914,0.00479535350563282,0.0021589858216348374,0.0,0.0,0.00582389470339341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00038911903660241614,0.0,0.0,0.0023444222120234753,0.000933060931316381,0.0027335412486258915,0.0015156875338502604,0.0005714526653359058,0.0002572820128373091,0.0,0.0,0.00038911903660241614,0.0,0.0,0.0,0.0,0.0,0.001987968720526712,0.0005141083384161875,0.00023146418968299158,0.0,0.0 +104961,50.0,the Greater Atlanta and Macon Area,G1300150960402,ComStock 90.1-2004,gen2_t8_halogen,25001_50000,NaturalGas,114773.0,,16598.0,,1.8706521585294562,Mercantile,Small Packaged Unit,1970 to 1979,C: Strip Malls with some Food-Service with Small Packaged Units,70149.4559448546,0.0,0.0,0.005907951459137215,0.002822691268433826,0.0,0.00873066045793246,0.004545550487620357,0.0015461584372742847,0.0008641423548905336,0.0,0.0017747914477858654,0.0034478992728277282,0.0015461584372742847,0.0006631332474713949,0.0,0.0002507605015638068,0.0010976512147926288,0.0002010091074191386,0.0015240309462220586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018859626630942942,0.0,0.0,0.000704040063586703,0.00035632357046463747,0.0008926363298961325,0.000410880021623719,0.00018425294994767533,7.902440921279994e-05,0.0,2.9882682802508744e-05,7.333884620501225e-05,1.3430291713933966e-05,0.0001018271283904832,0.0,0.0,0.0,0.00046474416502367193,0.00015808164795052596,8.835126092625034e-05,0.0,0.00018145744321590405 +104962,50.0,the Greater Atlanta and Macon Area,G1301350050105,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,3907.0,,381.0,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466051906,0.0,0.0,0.0008496497685239052,0.0003020462332959507,0.0,0.001151696001819856,0.0005029417154087284,0.00023348206916606486,0.0003872345192474374,0.0,2.7954990923885905e-05,0.00022893318011040292,0.00023348206916606486,0.0003872345192474374,0.0,0.0,0.0002740085352983255,0.0,2.7954990923885905e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0178482340610025e-05,0.0,0.0,0.00010125089185490173,5.330858148366769e-05,0.00012142937419551175,2.728146292751562e-05,2.7823544018922183e-05,4.6145884908463935e-05,0.0,0.0,1.830539758883927e-05,0.0,1.8675594280192189e-06,0.0,0.0,0.0,5.3027793499670145e-05,2.4617244046960837e-05,4.0828174505090556e-05,0.0,2.9474419014781304e-06 +104963,50.0,the Greater Atlanta and Macon Area,G1301210011622,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,224403.0,,10522.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.019994032986102982,0.003097195067564164,0.0,0.023091258743273446,0.006570429881094081,0.005488989534375632,0.011031808638197435,0.0,0.0,0.003473234813529917,0.005488989534375632,0.011031808638197435,0.0,0.0,0.003097195067564164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020693710054487828,0.0,0.0,0.0023826513421226062,0.0008286524509170653,0.002589588442667485,0.00041389886651262283,0.0006541125689883203,0.0013146399066216632,0.0,0.0,0.00020693710054487828,0.0,0.0,0.0,0.0,0.0,0.0007368463310123693,0.00061556730268256,0.0012371713672610985,0.0,0.0 +104964,50.0,the Greater Atlanta and Macon Area,G1300590140400,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,25001_50000,Electricity,202498.0,,3134.0,,1.8706521585294562,Mercantile,Multizone CAV/VAV,Before 1946,F: Buildings with Electric Resistance Multizone Systems,70149.4559448546,0.0,0.0,0.009820067054664764,0.0005330278553710474,0.0,0.010353094910035813,0.005203045480160175,0.002058636803759491,0.001534899657772551,0.0,0.0015565306987050155,0.005203045480160175,0.002058636803759491,0.0010018718024015036,0.0,0.0015565306987050155,0.0,0.0005330278553710474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.561351431878928e-05,0.0,0.0,0.0011702394133504,0.0003628856207925431,0.0012058529276691892,0.0006200374046779818,0.00024532397916658525,0.00011939122856984072,0.0,0.00018548891383070377,0.0,3.561351431878928e-05,0.0,0.0,0.0,0.0,0.0006060127603935379,0.0002397749888697135,0.00017877390887330953,0.0,0.00018129333463571222 +104965,50.0,the Greater Atlanta and Macon Area,G1300670030800,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,47925.0,,5444.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.004607369214261523,0.0016025498616534435,0.0,0.006209919075914968,0.0023673962298047927,0.0015593082063799807,0.0022832453293364914,0.0,0.0,0.0007648463681513488,0.0015593082063799807,0.0022832453293364914,0.0,0.0,0.0016025498616534435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010707296452474652,0.0,0.0,0.0005490531149598461,0.0002577971286249979,0.0006561260794845925,9.11455673227465e-05,0.0001858203647420523,0.0002720908401283081,0.0,0.0,0.00010707296452474652,0.0,0.0,0.0,0.0,0.0,0.00025013375985411847,0.00016475299720544343,0.00024124256501979134,0.0,0.0 +104966,50.0,the Greater Atlanta and Macon Area,G1300890021216,ComStock DOE Ref 1980-2004,gen1_t12_incandescent,50001_100000,Electricity,142495.0,,5325.0,,3.20458438519356,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,240343.828889517,0.0,0.0,0.012565375845801299,0.0015512404704848607,0.0,0.014116616316286164,0.007817131792896436,0.005370933214978217,0.0009285816820109487,0.0,0.0,0.006265891322411575,0.005370933214978217,0.0009285816820109487,0.0,0.0,0.0015512404704848607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010364508933062818,0.0,0.0,0.0014973927648411055,0.00042821024810258947,0.001601037854171734,0.0007466947623850748,0.000640044248198156,0.00011065737382394304,0.0,0.0,0.00010364508933062818,0.0,0.0,0.0,0.0,0.0,0.0008865810071665365,0.000609145080998467,0.00010531521083241513,0.0,0.0 +104967,33.0,Rural Lower Plains-Upper South Appalachia,G1302570970100,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,36006.0,,11395.0,,7.56685751697572,Food Service,Small Packaged Unit,1970 to 1979,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.007576067418263058,0.007838347352267148,0.0,0.015414486490501223,0.0039307564514525955,0.0005256356675734134,0.008931646590429124,0.0003700033304695374,0.0016563010106345217,0.0039307564514525955,0.0005256356675734134,0.0010932992381619748,0.0003700033304695374,0.0016563010106345217,0.0,0.007838347352267148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005237141953763477,0.0,0.0,0.0009028268581111148,0.0008076646485117182,0.0014265410534874626,0.0004684214515449181,6.263909388167031e-05,0.000130286580315484,4.409265729779467e-05,0.00019737852832627835,0.0,0.0005237141953763477,0.0,0.0,0.0,0.0,0.0003637737431417668,4.864520523812667e-05,0.0008265835222172337,3.424213587440244e-05,0.0001532831722976255 +104968,50.0,the Greater Atlanta and Macon Area,G1300670030230,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,NaturalGas,34914.0,,11949.0,,7.56685751697572,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.007269823142026399,0.00821968243815715,0.0,0.015489505580183546,0.004065876876846006,0.0012054692728303905,0.00585450123400433,0.00036971645058547493,0.003993941745917347,0.004065876876846006,0.0012054692728303905,0.0011914121585113308,0.00036971645058547493,0.00043734838325319616,0.0,0.004663089075492999,0.0035565933626641516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005491925021543291,0.0,0.0,0.0008663300016066546,0.0007738579778922133,0.0014155225037609835,0.0004845222576169335,0.00014365331544734472,0.0001419781577945794,4.405835561227165e-05,5.211791513552523e-05,0.0,0.0003115611310298598,0.00023763137112446932,0.0,0.0,0.0,0.0003715638428162629,0.00011016290187253262,0.0005350189005149238,3.378687286725997e-05,0.00036498998569000447 +104969,50.0,the Greater Atlanta and Macon Area,G1300570091001,ComStock 90.1-2007,gen4_led,1001_5000,Electricity,3668.0,,703.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,9713.774621698478,0.0,0.0,0.0003063743396699669,0.00020681725684021902,0.0,0.0005131915965101859,0.0002596033796722678,0.00013963770865454766,0.00011395050818337044,0.0,0.0,5.2786122832048785e-05,0.00013963770865454766,0.00011395050818337044,0.0,0.0,0.00020681725684021902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3818387282795752e-05,0.0,0.0,3.650931945315118e-05,2.782164656516332e-05,5.0327706735946927e-05,6.2902964499068435e-06,1.6640028399462872e-05,1.3578994603781463e-05,0.0,0.0,1.3818387282795752e-05,0.0,0.0,0.0,0.0,0.0,2.545880105725242e-05,1.3693999859380369e-05,1.1174905819314134e-05,0.0,0.0 +104970,35.0,Eastern Counties in South Carolina and Georgia,G1300510003601,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,70302.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.00572946318274144,0.0,0.0,0.00572946318274144,0.0031854616146336605,0.002109294612954675,0.0004347069551531041,0.0,0.0,0.0031854616146336605,0.002109294612954675,0.0004347069551531041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006827706792675547,0.00015710154963400675,0.0006827706792675547,0.00037960620760346317,0.00025136116067567884,5.180331098841265e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00037960620760346317,0.00025136116067567884,5.180331098841265e-05,0.0,0.0 +104971,50.0,the Greater Atlanta and Macon Area,G1301350050205,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,6793.0,,738.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,26178.17466051906,0.0,0.0,0.0013523433627114156,0.0005853179608530785,0.0,0.0019375786164907548,0.0011995006904411754,0.0003108131831123173,0.00038921948901718075,0.0,3.8045253920081405e-05,0.0006523106905819177,0.0003108131831123173,0.00038921948901718075,0.0,0.0,0.0005471899998592579,0.0,3.8045253920081405e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.910526376162843e-05,0.0,0.0,0.0001611535105766711,8.757892846005653e-05,0.00020025877433829951,7.773333361373647e-05,3.703840087744664e-05,4.638177608548799e-05,0.0,0.0,3.6557923561810615e-05,0.0,2.541814516087195e-06,0.0,0.0,0.0,0.00012397460213549996,3.212415050852989e-05,4.022784786938309e-05,0.0,3.932173824886574e-06 +104972,50.0,the Greater Atlanta and Macon Area,G1300210013411,ComStock DOE Ref 1980-2004,gen4_led,5001_10000,NaturalGas,10635.0,,379.0,,8.72605822017302,Office,Residential Style Central Systems,1960 to 1969,H: Buildings with Residential Style Central Systems,65445.43665129765,0.0,0.0,0.0025535809017011167,0.0003008056271898611,0.0,0.002854386528890978,0.0014050277686833545,0.00041452785358140877,0.0009610561968507522,0.0,7.377470977546223e-05,0.0011779968512689557,0.00041452785358140877,0.0009610561968507522,0.0,0.0,0.00022703091741439884,0.0,7.377470977546223e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.009803437254057e-05,0.0,0.0,0.0003043044825326518,0.00012188218199965302,0.0003244025169051923,0.00014037923059797764,4.939835033048261e-05,0.00011452690160419153,0.0,0.0,1.5168849148370594e-05,0.0,4.929185224169972e-06,0.0,0.0,0.0,0.00015968213830509407,4.711130663910593e-05,0.00010922453773870927,0.0,8.38453422228302e-06 +104973,50.0,the Greater Atlanta and Macon Area,G1302470060304,ComStock 90.1-2004,gen2_t8_halogen,10001_25000,Electricity,20575.0,,,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529324113,0.0,0.0,0.001767752012353978,0.0,0.0,0.001767752012353978,0.0008356166002738513,0.0004245293239161226,0.0005076367777703017,0.0,0.0,0.0008356166002738513,0.0004245293239161226,0.0005076367777703017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021066096235140057,7.720120930950668e-05,0.00021066096235140057,9.957946360139468e-05,5.059066842948776e-05,6.049448756539847e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.957946360139468e-05,5.059066842948776e-05,6.049448756539847e-05,0.0,0.0 +104974,35.0,Eastern Counties in South Carolina and Georgia,G1302450010204,ComStock 90.1-2007,gen4_led,10001_25000,NaturalGas,59736.0,,1265.0,,4.088175128053588,Healthcare,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,71543.06474093779,0.0,0.0,0.00621079110430829,0.00047028961932176876,0.0,0.0066810807236300585,0.0035394360210371308,0.0006681778195257956,0.0023189381690640666,0.0,0.00015452871400306617,0.0035394360210371308,0.0006681778195257956,0.002003177263745364,0.0,0.0,0.0,0.0003157609053187026,0.00015452871400306617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.142328039593207e-05,0.0,0.0,0.0007401273577523759,0.00022486607037120487,0.0007715506381483079,0.00042178739973505345,7.962539325003568e-05,0.00023871456476728692,0.0,0.0,0.0,2.1098155388189048e-05,1.0325125007743029e-05,0.0,0.0,0.0,0.0004087443684159739,7.716311842009385e-05,0.0002677977258738655,0.0,1.7845425438374755e-05 +104975,50.0,the Greater Atlanta and Macon Area,G1301510070306,ComStock 90.1-2007,gen4_led,25001_50000,NaturalGas,74810.0,,1658.0,,9.325022323477118,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,349688.3371303919,0.0,0.0,0.019196243672113686,0.0014056616497060013,0.0,0.020601905321819696,0.007366200884774099,0.002525842468894499,0.010301085237146927,0.0,0.00040886511516222097,0.006369315966072263,0.002525842468894499,0.010301085237146927,0.0,0.0,0.000996884918701835,0.0,0.00040886511516222097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.3920868233513e-05,0.0,0.0,0.002287577480699667,0.0008304393573284348,0.00238149834893318,0.0007590184840492509,0.0003009995314881147,0.001227559465162302,0.0,0.0,6.660798999030388e-05,0.0,2.7318783730396826e-05,0.0,0.0,0.0,0.0008515035367345418,0.0002919773475012867,0.0011907644997525178,0.0,4.7263181802118835e-05 +104976,50.0,the Greater Atlanta and Macon Area,G1301210001202,ComStock 90.1-2007,gen2_t8_halogen,5001_10000,Electricity,78682.0,,5446.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,56751.431377317895,0.0,0.0,0.01638306469906705,0.003746579565884505,0.0,0.020129644264951552,0.007139723114604079,0.0010380748604799544,0.006279800662126903,0.00037179632974492774,0.005300249297995688,0.007139723114604079,0.0010380748604799544,0.002533221096242398,0.00037179632974492774,0.005300249297995688,0.0,0.003746579565884505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002503239748843187,0.0,0.0,0.0019523406500765027,0.0008332858348347729,0.0022026646249608214,0.0008508280912622009,0.00012370553282701251,0.0003018794476290527,4.430630663087142e-05,0.000631621271727365,0.0,0.0002503239748843187,0.0,0.0,0.0,0.0,0.0007812565055575934,0.0001135902226161789,0.0006871604181478944,4.068341260482738e-05,0.0005799740660343272 +104977,35.0,Eastern Counties in South Carolina and Georgia,G1302450010504,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,34916.0,,1470.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1946 to 1959,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.003131444668192401,0.00043281551761650236,0.0,0.003564260185808903,0.0017020455652705965,0.0008013363100393174,0.0010608783104989897,0.0,0.0,0.001269230047654094,0.0008013363100393174,0.0010608783104989897,0.0,0.0,0.00043281551761650236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8917246804675266e-05,0.0,0.0,0.0003731692160597869,0.0001518982485925729,0.00040208646286446216,0.00015125209993124592,9.549395704003583e-05,0.00012642315908850517,0.0,0.0,2.8917246804675266e-05,0.0,0.0,0.0,0.0,0.0,0.00019200884483647248,9.03992597822779e-05,0.00011967835824571184,0.0,0.0 +104978,50.0,the Greater Atlanta and Macon Area,G1302470060309,ComStock 90.1-2007,gen3_t5_cfl,10001_25000,Electricity,41650.0,,2461.0,,4.088175128053588,Healthcare,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,71543.06474093779,0.0,0.0,0.004567431703710487,0.0009146952915637863,0.0,0.005482126995274273,0.0028928023251286123,0.0005285672486749813,0.0018859245334110412,0.0,0.00017479413963586546,0.0022464786166102716,0.0005285672486749813,0.0016175142019418237,0.0,0.00017479413963586546,0.0006463237085183408,0.00026841033146921743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.11150679930569e-05,0.0,0.0,0.000544292972435513,0.00020885744951706705,0.0006054080404285699,0.0002677089890045413,6.298844899632517e-05,0.0001927563825894434,0.0,2.0829916679306708e-05,4.3183908079479324e-05,1.7933748876891684e-05,0.0,0.0,0.0,0.0,0.000319461002729964,5.837129685811508e-05,0.00020826841062834974,0.0,1.930305110526773e-05 +104979,50.0,the Greater Atlanta and Macon Area,G1300630040522,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,Electricity,72073.0,,3090.0,,3.20458438519356,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144447585,0.0,0.0,0.005975033734195663,0.000900273487334964,0.0,0.006875307221530628,0.0038599073901489393,0.0020605449858570836,0.0009548852191240419,0.0,0.0,0.002959633902813975,0.0020605449858570836,0.0009548852191240419,0.0,0.0,0.000900273487334964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.01507648583586e-05,0.0,0.0,0.0007120346332926274,0.00022553285308778316,0.0007721853981509859,0.00035269455109683355,0.0002455516501925184,0.00011379205157359075,0.0,0.0,6.01507648583586e-05,0.0,0.0,0.0,0.0,0.0,0.00043351722749991356,0.00023142569474267696,0.00010724588725413149,0.0,0.0 +104980,50.0,the Greater Atlanta and Macon Area,G1300590000100,ComStock 90.1-2004,gen3_t5_cfl,5001_10000,NaturalGas,28593.0,,2857.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,14029.891188970922,0.0,0.0,0.0013777022734223628,0.00048581190290944675,0.0,0.0018634964459703896,0.000944283588509172,0.00023127483436316876,0.0004170181005996419,0.0,0.0002709376528598268,0.0007587708169711598,0.00023127483436316876,0.0003332953339741526,0.0,5.436128811388189e-05,0.00018551277153801247,8.372276662548934e-05,0.00021657636474594496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.245860570504767e-05,0.0,0.0,0.0001641777941335486,7.173355297040448e-05,0.00019663639983859627,9.042107383170809e-05,2.7560520786559182e-05,3.971808262386841e-05,0.0,6.478116891412945e-06,1.2394685820872766e-05,5.593778691212961e-06,1.4470141192961945e-05,0.0,0.0,0.0,9.964093340377879e-05,2.4404152152144107e-05,4.400380700846591e-05,0.0,2.8589378184369363e-05 +104981,50.0,the Greater Atlanta and Macon Area,G1301350050435,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,Electricity,6190.0,,,,8.72605822017302,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0011731171339183365,0.0,0.0,0.0011731171339183365,0.0005205583221152009,0.00028360255585208516,0.00032826437567131116,0.0,4.069188027973925e-05,0.0005205583221152009,0.00028360255585208516,0.00032826437567131116,0.0,4.069188027973925e-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.0001397996119749251,4.7604988046950246e-05,0.0001397996119749251,6.203459939158055e-05,3.379673360561324e-05,3.911905385846572e-05,0.0,4.849225119265592e-06,0.0,0.0,0.0,0.0,0.0,0.0,6.203459939158055e-05,3.379673360561324e-05,3.911905385846572e-05,0.0,4.849225119265592e-06 +104982,50.0,the Greater Atlanta and Macon Area,G1301530020900,ComStock DOE Ref 1980-2004,gen2_t8_halogen,5001_10000,Electricity,9341.0,,,,8.72605822017302,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665129765,0.0,0.0,0.002243015839810017,0.0,0.0,0.002243015839810017,0.0009924021777979498,0.0007920029381276078,0.0003811969028644679,0.0,7.724840687251313e-05,0.0009924021777979498,0.0007920029381276078,0.0003811969028644679,0.0,7.724840687251313e-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.0002672929615464201,7.560434080446305e-05,0.0002672929615464201,0.00011826136598803449,9.43804350947094e-05,4.5426005153667046e-05,0.0,9.205443439688656e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00011826136598803449,9.43804350947094e-05,4.5426005153667046e-05,0.0,9.205443439688656e-06 +104983,50.0,the Greater Atlanta and Macon Area,G1300570090802,ComStock 90.1-2007,gen1_t12_incandescent,50001_100000,NaturalGas,59452.0,,6453.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.006294407562052543,0.001899502492190016,0.0,0.00819391005424256,0.0027758748896272163,0.0030002466012697218,0.0024177578737393226,0.0,0.0,0.0008763723974372006,0.0030002466012697218,0.0024177578737393226,0.0,0.0,0.001899502492190016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012691396654520364,0.0,0.0,0.0007500921971611729,0.0003481524489864175,0.0008770061637063765,0.00010443557882844115,0.00035753349985457477,0.00028811946125799906,0.0,0.0,0.00012691396654520364,0.0,0.0,0.0,0.0,0.0,0.00029710594475226593,0.00032112077683721694,0.00025877615736349653,0.0,0.0 +104984,50.0,the Greater Atlanta and Macon Area,G1301210010119,ComStock DOE Ref 1980-2004,gen2_t8_halogen,50001_100000,Electricity,44136.0,,7012.0,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,Before 1946,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.36554246195,0.0,0.0,0.0039324740821687415,0.0020639374027331073,0.0,0.005996442174508147,0.0020785456553308137,0.001661535284957629,0.0022563305446134064,0.0,0.0,1.4608252597706523e-05,0.001661535284957629,0.0022563305446134064,0.0,0.0,0.0020639374027331073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013790097712005237,0.0,0.0,0.0004686266551863257,0.00029547170038765,0.000606527632306378,1.7408421288830783e-06,0.00019800250600363422,0.00026888330705380847,0.0,0.0,0.00013790097712005237,0.0,0.0,0.0,0.0,0.0,0.00021024056236678622,0.00016806083224866835,0.00022822313350118846,0.0,0.0 +104985,50.0,the Greater Atlanta and Macon Area,G1301210009603,ComStock 90.1-2007,gen2_t8_halogen,50001_100000,NaturalGas,249873.0,,14717.0,,1.8706521585294562,Mercantile,Small Packaged Unit,Before 1946,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9118897092,0.0,0.0,0.012862277927840267,0.002502729166247553,0.0,0.01536500709408782,0.006496368963584507,0.0028701377155938876,0.0038983036439813297,0.0,0.0021001967709280947,0.005939085973790828,0.0028701377155938876,0.0036933938570497793,0.0,0.00035966038140577115,0.0005572829897936796,0.00020490978693155022,0.0017405363895223232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016721740782551194,0.0,0.0,0.0015327738421003932,0.0004797448213001963,0.001699991249925905,0.0007077498774076383,0.00034202899660299753,0.0004401349064621522,0.0,4.286006162760494e-05,3.7234319332391106e-05,1.369084752392364e-05,0.0001162922409691972,0.0,0.0,0.0,0.0007187611646878657,0.0003175533192216596,0.0004313100569196947,0.0,0.00023236670909668468 +104986,50.0,the Greater Atlanta and Macon Area,G1300890020900,ComStock 90.1-2007,gen1_t12_incandescent,_1000,NaturalGas,30606.0,,2379.0,,8.53126424238864,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,8531.26424238864,0.0,0.0,0.007206151265501056,0.0018453239304068714,0.0,0.00905139433512486,0.0025075737437381136,0.0003897489743903037,0.005485110358670511,0.0004162713112367808,0.00025277080787221767,0.0017699616805870039,0.0003897489743903037,0.004630088438503899,0.0004162713112367808,0.0,0.0007376120631511099,0.0008550219201666123,0.00025277080787221767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012329226540033986,0.0,0.0,0.0008587408017533826,0.00036314427884906323,0.0009820330671537227,0.00021092234351735667,4.6445506681605337e-05,0.0005517572017818925,4.960611377529134e-05,0.0,4.928232965171991e-05,5.7126874998606273e-05,1.688846332945368e-05,0.0,0.0,0.0,0.00027205977814061434,4.228590276475319e-05,0.0005951082838473585,4.5163449674885775e-05,2.742442573498308e-05 +104987,50.0,the Greater Atlanta and Macon Area,G1301390001404,ComStock 90.1-2004,gen3_t5_cfl,25001_50000,Electricity,83888.0,,,,3.20458438519356,Mercantile,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,120171.9144447585,0.0,0.0,0.006738838639256808,0.0,0.0,0.006738838639256809,0.003968735996934404,0.001993480078298528,0.0007766529376233141,0.0,0.0,0.003968735996934404,0.001993480078298528,0.0007766529376233141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008030562077494745,0.00030320352571501806,0.0008030562077494745,0.00047294767687277103,0.00023755970985515305,9.255244059294645e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0004729476768727709,0.00023755970985515296,9.255244059294644e-05,0.0,0.0 +104988,50.0,the Greater Atlanta and Macon Area,G1301510070310,ComStock DOE Ref 1980-2004,gen4_led,200001_500000,Electricity,266932.0,,18559.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1970 to 1979,A: Non Food-Service Buildings with Small Packaged Units,1133273.7058648225,0.0,0.0,0.023783340054892937,0.005463056817054073,0.0,0.029246396871947012,0.013050663009279217,0.005415088962410764,0.010780675589863332,0.0,0.0,0.007587606192225144,0.005415088962410764,0.010780675589863332,0.0,0.0,0.005463056817054073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003650096777177994,0.0,0.0,0.002834215346452123,0.0012226475640299778,0.003199225024169922,0.0009042005817183554,0.0006453058403170184,0.0012847125816386933,0.0,0.0,0.0003650096777177994,0.0,0.0,0.0,0.0,0.0,0.0014275949226874888,0.0005923494847075685,0.001179283973870677,0.0,0.0 +104989,50.0,the Greater Atlanta and Macon Area,G1300630040306,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,127161.0,,,,3.237924873899493,Warehouse and Storage,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,485688.7310849239,0.0,0.0,0.010801421763720578,0.0,0.0,0.010801421763720578,0.0031051436755952697,0.003237446568344666,0.004458831519780642,0.0,0.0,0.0031051436755952697,0.003237446568344666,0.004458831519780642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012871843087116077,0.0004192539784986938,0.0012871843087116077,0.0003700338995136672,0.00038580017651584567,0.0005313502326820948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003700338995136672,0.00038580017651584567,0.0005313502326820948,0.0,0.0 +104990,50.0,the Greater Atlanta and Macon Area,G1302250040102,ComStock DOE Ref 1980-2004,gen4_led,50001_100000,NaturalGas,83504.0,,2240.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.36554246195,0.0,0.0,0.007440111944358383,0.000659488949731335,0.0,0.008099600894089717,0.003295480613853622,0.001767445116291001,0.0030367058535513925,0.0,0.0,0.0026359916641222874,0.001767445116291001,0.0030367058535513925,0.0,0.0,0.000659488949731335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406288848135706e-05,0.0,0.0,0.0008866235972952275,0.00033388311882180145,0.0009306864857765846,0.00031412597406635986,0.00021062297970073733,0.00036187830074852417,0.0,0.0,4.406288848135706e-05,0.0,0.0,0.0,0.0,0.0,0.0003786679506258541,0.0002030886837009673,0.0003489333778459657,0.0,0.0 +104991,35.0,Eastern Counties in South Carolina and Georgia,G1301270000200,ComStock DOE Ref 1980-2004,gen3_t5_cfl,1001_5000,Electricity,28999.0,,2217.0,,7.56685751697572,Food Service,Small Packaged Unit,1960 to 1969,B: Food-Service Buildings with Small Packaged Units,22700.572550927158,0.0,0.0,0.006037817479920232,0.001524910023733922,0.0,0.007562727503654154,0.003314395020544434,0.00029319124151181797,0.0022601114466149507,0.00037832284710734835,0.0013166352279045878,0.003314395020544434,0.00029319124151181797,0.0007352014228810289,0.00037832284710734835,0.0013166352279045878,0.0,0.001524910023733922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010188689235274117,0.0,0.0,0.0007195135165364334,0.00031812429627240546,0.0008214004088891746,0.00039496921269211273,3.493895963225405e-05,8.761234716003824e-05,4.508390705972117e-05,0.0001569005432800685,0.0,0.00010188689235274116,0.0,0.0,0.0,0.0,0.00035998195410055604,3.1843988236277085e-05,0.00024547446215503904,4.109027347024502e-05,0.00014300194130175507 +104992,50.0,the Greater Atlanta and Macon Area,G1300890022600,ComStock DOE Ref 1980-2004,gen3_t5_cfl,5001_10000,Electricity,13208.0,,,,8.72605822017302,Office,Zone-by-Zone,1970 to 1979,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665129765,0.0,0.0,0.0029265898042653933,0.0,0.0,0.0029265898042653933,0.0014453888206681367,0.0006714987316894369,0.0006985439448021906,0.0,0.00011115830710562918,0.0014453888206681367,0.0006714987316894369,0.0006985439448021906,0.0,0.00011115830710562918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003487575638903115,0.00011560947523680745,0.0003487575638903115,0.00017224493956611797,8.002155323514027e-05,8.324449299470316e-05,0.0,1.3246578094350112e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00017224493956611797,8.002155323514027e-05,8.324449299470316e-05,0.0,1.3246578094350112e-05 +104993,18.0,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150000600,ComStock DOE Ref 1980-2004,gen2_t8_halogen,100001_200000,Electricity,428166.0,,3739.0,,7.614023970037612,Education,Small Packaged Unit,1960 to 1969,A: Non Food-Service Buildings with Small Packaged Units,1142103.5955056418,0.0,0.0,0.07246868088779922,0.002588198103288286,0.0,0.07505687899108751,0.051622586868232206,0.012000149041074227,0.0082860732161319,0.0008081984875843608,0.0023399435450875365,0.051622586868232206,0.012000149041074227,0.005697875112843614,0.0008081984875843608,0.0023399435450875365,0.0,0.002588198103288286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017292765716958036,0.0,0.0,0.008635950336962626,0.002735382681481922,0.008808877994132207,0.0061517622647199125,0.0014300341869795817,0.0006790045837444953,9.631142606270235e-05,0.00027884647545826073,0.0,0.00017292765716958036,0.0,0.0,0.0,0.0,0.006058566191084841,0.0014083698954066228,0.0009724759274898674,9.485235687748457e-05,0.0002746220929900492 +104994,85.0,Rural Climate Zone 3A,G1300310110500,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,NaturalGas,64430.0,,11310.0,,1.8706521585294562,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,32736.412774265485,0.0,0.0,0.003316535025066557,0.0019233009550402276,0.0,0.005239835980106785,0.0019442227815158904,0.0007657920400935006,0.0014840489812198395,0.0,0.0010457721772775543,0.0019442227815158904,0.0007657920400935006,0.0004461668147742087,0.0,0.00016035338868295755,0.0,0.0010378821664456307,0.0008854187885945966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012850385701839822,0.0,0.0,0.0003952253054069529,0.00023228605200563602,0.0005237291624253512,0.0002316894098196212,9.125801194217553e-05,5.3168868803984745e-05,0.0,1.9109014841171436e-05,0.0,6.934528949791173e-05,5.915856752048646e-05,0.0,0.0,0.0,0.00019432787071912367,7.654201873357045e-05,0.000148332835776402,0.0,0.00010452643719625505 +104995,50.0,the Greater Atlanta and Macon Area,G1301210010119,ComStock DOE Ref 1980-2004,gen2_t8_halogen,10001_25000,Electricity,32617.0,,4039.0,,8.72605822017302,Office,Multizone CAV/VAV,Before 1946,D: Buildings with Hydronically Heated Multizone Systems,152706.01885302784,0.0,0.0,0.007831946347743717,0.0032036585012920724,0.0,0.011035604849035789,0.007727983556053406,0.002225233818956066,0.0009503869843383818,0.0,0.00013191778261419532,0.0045243250547613335,0.002225233818956066,0.0009503869843383818,0.0,0.00013191778261419532,0.0032036585012920724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002140514824007731,0.0,0.0,0.000933314519633899,0.0005300840053215611,0.0011473660020346718,0.0005391531143939297,0.0002651758503696082,0.00011325536876406499,0.0,1.5720330099963764e-05,0.00021405148240077307,0.0,0.0,0.0,0.0,0.0,0.000803474364821372,0.00023135638375734721,9.881123232691611e-05,0.0,1.371542211830399e-05 +104996,50.0,the Greater Atlanta and Macon Area,G1300210013900,ComStock 90.1-2007,gen2_t8_halogen,1001_5000,Electricity,7255.0,,,,8.72605822017302,Office,Zone-by-Zone,1960 to 1969,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466051906,0.0,0.0,0.0014546520129269389,0.0,0.0,0.0014546520129269389,0.0006761303278188382,0.0004803626842778975,0.0002515949183149732,0.0,4.656408251523008e-05,0.0006761303278188382,0.0004803626842778975,0.0002515949183149732,0.0,4.656408251523008e-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.00017334997662422834,5.851875840132276e-05,0.00017334997662422834,8.057403109523918e-05,5.724452264234241e-05,2.99824101029624e-05,0.0,5.549012783684362e-06,0.0,0.0,0.0,0.0,0.0,0.0,8.057403109523918e-05,5.724452264234241e-05,2.99824101029624e-05,0.0,5.549012783684362e-06 +104997,50.0,the Greater Atlanta and Macon Area,G1301130140407,ComStock DOE Ref 1980-2004,gen2_t8_halogen,25001_50000,Electricity,29104.0,,2912.0,,3.237924873899493,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,121422.18277123098,0.0,0.0,0.0024869322463343447,0.0008570379454696479,0.0,0.0033439701918039928,0.001559553723230362,0.0007638643007498222,0.0010205214782175107,0.0,0.0,0.0007025157777607145,0.0007638643007498222,0.0010205214782175107,0.0,0.0,0.0008570379454696479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7262137772882805e-05,0.0,0.0,0.0002963614335289017,0.00014579955493721074,0.0003536235713017845,8.371703060295047e-05,9.102777911438718e-05,0.00012161296660870698,0.0,0.0,5.7262137772882805e-05,0.0,0.0,0.0,0.0,0.0,0.00016492221090888282,8.077835821717327e-05,0.00010791975676157746,0.0,0.0 +104998,84.0,Rural Climate Zone 2A - Georgia and Florida,G1302750960500,ComStock DOE Ref 1980-2004,gen4_led,_1000,NaturalGas,2994.0,,125.0,,3.237924873899493,Warehouse and Storage,Residential Style Central Systems,1970 to 1979,H: Buildings with Residential Style Central Systems,3237.924873899493,0.0,0.0,0.00014684976613450783,3.682752755724334e-05,0.0,0.00018367729369175116,8.009987243700427e-05,7.316402141372343e-05,3.044408944732116e-05,0.0,0.0,4.327234487976092e-05,7.316402141372343e-05,3.044408944732116e-05,0.0,0.0,3.682752755724334e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.459906886230826e-06,0.0,0.0,1.7501076526796883e-05,8.977953745254789e-06,1.996098341302771e-05,5.157057032974629e-06,8.719449621710297e-06,3.628227359369385e-06,0.0,0.0,2.459906886230826e-06,0.0,0.0,0.0,0.0,0.0,8.704789759064715e-06,7.951041680310452e-06,3.3084871421426047e-06,0.0,0.0 +104999,50.0,the Greater Atlanta and Macon Area,G1301170130603,ComStock 90.1-2007,gen2_t8_halogen,25001_50000,NaturalGas,40835.0,,1923.0,,3.237924873899493,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.18277123098,0.0,0.0,0.0036135170039167165,0.0005661004777674255,0.0,0.0041796481712904395,0.0022307967921737174,0.0008341128095652639,0.0011147078799451605,0.0,0.0,0.001664696314406292,0.0008341128095652639,0.0011147078799451605,0.0,0.0,0.0005661004777674255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.782439648527369e-05,0.0,0.0,0.00043061749529911536,0.00016904847225928836,0.000468441891784389,0.0001983794061481682,9.939999409511021e-05,0.00013283809505583699,0.0,0.0,3.782439648527369e-05,0.0,0.0,0.0,0.0,0.0,0.0002500207258329512,9.348475432890506e-05,0.00012493297202746567,0.0,0.0 +105000,84.0,Rural Climate Zone 2A - Georgia and Florida,G1303050970400,ComStock DOE Ref 1980-2004,gen2_t8_halogen,1001_5000,NaturalGas,11595.0,,193.0,,3.20458438519356,Mercantile,Small Packaged Unit,Before 1946,A: Non Food-Service Buildings with Small Packaged Units,9613.75315558068,0.0,0.0,0.000937238157850708,5.6160785360403105e-05,0.0,0.0009933989432111111,0.0007468260629754419,0.00019633494676562778,5.023793347004151e-05,0.0,0.0,0.0006906652776150388,0.00019633494676562778,5.023793347004151e-05,0.0,0.0,5.6160785360403105e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7527869366969327e-06,0.0,0.0,0.0001116882699202391,3.393760188150508e-05,0.00011544105685693604,8.230481154086002e-05,2.3396732565201592e-05,5.9867258141775115e-06,0.0,0.0,3.7527869366969327e-06,0.0,0.0,0.0,0.0,0.0,8.67872777471517e-05,2.281572162671175e-05,5.838057483072592e-06,0.0,0.0 diff --git a/datasets/comstock/GA_filtered_building_list.csv b/datasets/comstock/GA_filtered_building_list.csv new file mode 100644 index 0000000000000000000000000000000000000000..6aa3275c42446f772b7ae406d29c8bb0a70fb8ac --- /dev/null +++ b/datasets/comstock/GA_filtered_building_list.csv @@ -0,0 +1,83 @@ +bldg_id,in.cluster_id,in.cluster_name,in.nhgis_tract_gisjoin,in.energy_code_followed_during_last_hvac_replacement,in.interior_lighting_generation,in.floor_area_category,in.service_water_heating_fuel,out.utility_bills.electricity_bill_mean..usd,out.utility_bills.fuel_oil_bill..usd,out.utility_bills.natural_gas_bill..usd,out.utility_bills.propane_bill..usd,weight,in.comstock_building_type_group,in.hvac_category,in.vintage,calc.segment,calc.weighted.sqft,calc.weighted.district_cooling.total.energy_consumption..tbtu,calc.weighted.district_heating.total.energy_consumption..tbtu,calc.weighted.electricity.total.energy_consumption..tbtu,calc.weighted.natural_gas.total.energy_consumption..tbtu,calc.weighted.other_fuel.total.energy_consumption..tbtu,calc.weighted.site_energy.total.energy_consumption..tbtu,calc.weighted.enduse_group.site_energy.hvac.energy_consumption..tbtu,calc.weighted.enduse_group.site_energy.lighting.energy_consumption..tbtu,calc.weighted.enduse_group.site_energy.interior_equipment.energy_consumption..tbtu,calc.weighted.enduse_group.site_energy.refrigeration.energy_consumption..tbtu,calc.weighted.enduse_group.site_energy.water_systems.energy_consumption..tbtu,calc.weighted.enduse_group.electricity.hvac.energy_consumption..tbtu,calc.weighted.enduse_group.electricity.lighting.energy_consumption..tbtu,calc.weighted.enduse_group.electricity.interior_equipment.energy_consumption..tbtu,calc.weighted.enduse_group.electricity.refrigeration.energy_consumption..tbtu,calc.weighted.enduse_group.electricity.water_systems.energy_consumption..tbtu,calc.weighted.enduse_group.natural_gas.hvac.energy_consumption..tbtu,calc.weighted.enduse_group.natural_gas.interior_equipment.energy_consumption..tbtu,calc.weighted.enduse_group.natural_gas.water_systems.energy_consumption..tbtu,calc.weighted.enduse_group.district_heating.hvac.energy_consumption..tbtu,calc.weighted.enduse_group.district_heating.interior_equipment.energy_consumption..tbtu,calc.weighted.enduse_group.district_heating.water_systems.energy_consumption..tbtu,calc.weighted.enduse_group.district_cooling.hvac.energy_consumption..tbtu,calc.weighted.enduse_group.other_fuel.hvac.energy_consumption..tbtu,calc.weighted.enduse_group.other_fuel.water_systems.energy_consumption..tbtu,calc.weighted.enduse_group.other_fuel.interior_equipment.energy_consumption..tbtu,calc.weighted.emissions.natural_gas..co2e_mmt,calc.weighted.emissions.fuel_oil..co2e_mmt,calc.weighted.emissions.propane..co2e_mmt,calc.weighted.emissions.electricity.egrid_2021_subregion..co2e_mmt,calc.weighted.emissions.total_with_cambium_mid_case_15y..co2e_mmt,calc.weighted.emissions.total_with_egrid..co2e_mmt,calc.weighted.enduse_group.electricity.hvac.emissions.egrid_2021_subregion..co2e_mmt,calc.weighted.enduse_group.electricity.lighting.emissions.egrid_2021_subregion..co2e_mmt,calc.weighted.enduse_group.electricity.interior_equipment.emissions.egrid_2021_subregion..co2e_mmt,calc.weighted.enduse_group.electricity.refrigeration.emissions.egrid_2021_subregion..co2e_mmt,calc.weighted.enduse_group.electricity.water_systems.emissions.egrid_2021_subregion..co2e_mmt,calc.weighted.enduse_group.natural_gas.hvac.emissions..co2e_mmt,calc.weighted.enduse_group.natural_gas.interior_equipment.emissions..co2e_mmt,calc.weighted.enduse_group.natural_gas.water_systems.emissions..co2e_mmt,calc.weighted.enduse_group.other_fuel.hvac.emissions..co2e_mmt,calc.weighted.enduse_group.other_fuel.water_systems.emissions..co2e_mmt,calc.weighted.enduse_group.other_fuel.interior_equipment.emissions..co2e_mmt,calc.weighted.enduse_group.site_energy.hvac.emissions..co2e_mmt,calc.weighted.enduse_group.site_energy.lighting.emissions..co2e_mmt,calc.weighted.enduse_group.site_energy.interior_equipment.emissions..co2e_mmt,calc.weighted.enduse_group.site_energy.refrigeration.emissions..co2e_mmt,calc.weighted.enduse_group.site_energy.water_systems.emissions..co2e_mmt +100206,50,the Greater Atlanta and Macon Area,G1301510070104,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,46024,,714,,4.088175128,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,71543.06474,0,0,0.005022571,0.000265388,0,0.00528792,0.00285882,0.000466841,0.001855778,0,0.000106558,0.00285882,0.000466841,0.00159039,0,0.000106558,0,0.000265388,0,0,0,0,0,0,0,0,1.77E-05,0,0,0.000598528,0.00020853,0.000616259,0.000340679,5.56E-05,0.000189523,0,1.27E-05,0,1.77E-05,0,0,0,0,0.000333169,5.44E-05,0.000216274,0,1.24E-05 +93740,50,the Greater Atlanta and Macon Area,G1300570090902,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,8838,,,,8.72605822,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665,0,0,0.002131444,0,0,0.002131444,0.00083377,0.000379377,0.00084692,0,7.14E-05,0.00083377,0.000379377,0.00084692,0,7.14E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000253997,7.00E-05,0.000253997,9.94E-05,4.52E-05,0.000100925,0,8.51E-06,0,0,0,0,0,0,9.94E-05,4.52E-05,0.000100925,0,8.51E-06 +93774,50,the Greater Atlanta and Macon Area,G1300630040202,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,50593,,2967,,3.237924874,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.3655,0,0,0.00426874,0.000873242,0,0.005142013,0.001876854,0.001170256,0.002094873,0,0,0.001003612,0.001170256,0.002094873,0,0,0.000873242,0,0,0,0,0,0,0,0,0,5.83E-05,0,0,0.000508699,0.000202513,0.000567044,0.000119599,0.000139457,0.000249642,0,0,5.83E-05,0,0,0,0,0,0.000206973,0.000129052,0.000231016,0,0 +93936,50,the Greater Atlanta and Macon Area,G1300970080301,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,55787,,,,3.237924874,Warehouse and Storage,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,242844.3655,0,0,0.005403703,0,0,0.005403703,0.001777757,0.001261987,0.002363959,0,0,0.001777757,0.001261987,0.002363959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000643949,0.000204882,0.000643949,0.000211852,0.000150389,0.000281708,0,0,0,0,0,0,0,0,0.000211852,0.000150389,0.000281708,0,0 +93966,50,the Greater Atlanta and Macon Area,G1300890022007,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,128925,,6345,,1.870652159,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,70149.45594,0,0,0.006430146,0.001078963,0,0.007509109,0.003616497,0.001000666,0.001378713,0,0.001513251,0.002839801,0.001000666,0.001076446,0,0.001513251,0.000776696,0.000302267,0,0,0,0,0,0,0,0,7.21E-05,0,0,0.000766268,0.00027335,0.000838358,0.000338413,0.000119247,0.000128278,0,0.000180331,5.19E-05,2.02E-05,0,0,0,0,0.000403765,0.00011172,0.000153927,0,0.000168948 +94002,33,Rural Lower Plains-Upper South Appalachia,G1301870960201,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,28694,,,,3.237924874,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.1828,0,0,0.002861867,0,0,0.002861867,0.000968871,0.000711017,0.001181979,0,0,0.000968871,0.000711017,0.001181979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000341045,0.000121986,0.000341045,0.000115459,8.47E-05,0.000140855,0,0,0,0,0,0,0,0,0.000115459,8.47E-05,0.000140855,0,0 +94058,33,Rural Lower Plains-Upper South Appalachia,G1301370000500,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,136550,,12015,,1.870652159,Mercantile,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,140298.9119,0,0,0.007028936,0.002043194,0,0.009072147,0.003588111,0.001883886,0.001659916,0,0.001940198,0.002344007,0.001883886,0.000860827,0,0.001940198,0.001244104,0.00079909,0,0,0,0,0,0,0,0,0.000136515,0,0,0.000837626,0.000322454,0.00097414,0.000279331,0.000224499,0.000102583,0,0.00023121,8.31E-05,5.34E-05,0,0,0,0,0.000385281,0.000202286,0.000178237,0,0.000208333 +94187,84,Rural Climate Zone 2A - Georgia and Florida,G1300190970600,ComStock 90.1-2007,gen5_led,1001_5000,Propane,6544,,,519,3.204584385,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.753156,0,0,0.00046991,0,4.89E-05,0.000518781,0.000319743,0.000161618,3.74E-05,0,0,0.000270872,0.000161618,3.74E-05,0,0,0,0,0,0,0,0,0,4.89E-05,0,0,0,0,3.94E-06,5.60E-05,1.81E-05,5.99E-05,3.23E-05,1.93E-05,4.46E-06,0,0,0,0,0,3.94E-06,0,0,3.69E-05,1.87E-05,4.32E-06,0,0 +94423,50,the Greater Atlanta and Macon Area,G1301510070108,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,115312,,8292,,3.204584385,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,240343.8289,0,0,0.010168352,0.002415764,0,0.012584116,0.00872433,0.002465759,0.001394027,0,0,0.006308566,0.002465759,0.001394027,0,0,0.002415764,0,0,0,0,0,0,0,0,0,0.000161406,0,0,0.001211744,0.000471254,0.001373151,0.000751781,0.00029384,0.000166124,0,0,0.000161406,0,0,0,0,0,0.000951979,0.000269058,0.000152113,0,0 +94505,50,the Greater Atlanta and Macon Area,G1301350050511,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,139788,,14751,,3.237924874,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,D: Buildings with Hydronically Heated Multizone Systems,485688.7311,0,0,0.012049384,0.004341935,0,0.016391288,0.010688883,0.001781777,0.003920659,0,0,0.006346948,0.001781777,0.003920659,0,0,0.004341935,0,0,0,0,0,0,0,0,0,0.000290103,0,0,0.0014359,0.000661775,0.001726003,0.000756353,0.000212331,0.000467217,0,0,0.000290103,0,0,0,0,0,0.001125539,0.000187621,0.000412845,0,0 +94559,50,the Greater Atlanta and Macon Area,G1300670030507,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,30086,,,,8.72605822,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.0189,0,0,0.00763287,0,0,0.00763287,0.002764897,0.00117138,0.003512239,0,0.000184354,0.002764897,0.00117138,0.003512239,0,0.000184354,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000909591,0.000300006,0.000909591,0.000329486,0.000139591,0.000418545,0,2.20E-05,0,0,0,0,0,0,0.000329486,0.000139591,0.000418545,0,2.20E-05 +94630,46,the Tallahassee-Valdosta Area,G1301850011000,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,32464,,,,1.870652159,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,32736.41277,0,0,0.00159435,0,0,0.00159435,0.000833522,0.000550794,0.000176594,0,3.34E-05,0.000833522,0.000550794,0.000176594,0,3.34E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000189996,4.33E-05,0.000189996,9.93E-05,6.56E-05,2.10E-05,0,3.98E-06,0,0,0,0,0,0,9.93E-05,6.56E-05,2.10E-05,0,3.98E-06 +94775,50,the Greater Atlanta and Macon Area,G1300670031114,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,96374,,9220,,9.325022323,Office,Multizone CAV/VAV,1990 to 1999,D: Buildings with Hydronically Heated Multizone Systems,699376.6743,0,0,0.027103798,0.007816253,0,0.034920051,0.018134396,0.003727513,0.012486118,0,0.000572022,0.010318143,0.003727513,0.012486118,0,0.000572022,0.007816253,0,0,0,0,0,0,0,0,0,0.000522239,0,0,0.003229907,0.001660619,0.003752146,0.001229593,0.000444201,0.001487946,0,6.82E-05,0.000522239,0,0,0,0,0,0.001948534,0.00040052,0.001341629,0,6.15E-05 +94778,50,the Greater Atlanta and Macon Area,G1301170130601,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,113642,,7565,,1.870652159,Mercantile,Small Packaged Unit,2013 to 2018,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9119,0,0,0.006312718,0.001286533,0,0.007599251,0.003507456,0.002100924,0.001133325,0,0.000857564,0.002810227,0.002100924,0.000544021,0,0.000857564,0.000697229,0.000589304,0,0,0,0,0,0,0,0,8.60E-05,0,0,0.000752275,0.000284811,0.000838234,0.00033489,0.000250363,6.48E-05,0,0.000102194,4.66E-05,3.94E-05,0,0,0,0,0.000386889,0.000231742,0.000125011,0,9.46E-05 +94807,50,the Greater Atlanta and Macon Area,G1300670031206,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,140502,,,,3.237924874,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7311,0,0,0.012518536,0,0,0.012518536,0.004852057,0.002561846,0.005104633,0,0,0.004852057,0.002561846,0.005104633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00149181,0.000496604,0.00149181,0.000578211,0.00030529,0.000608309,0,0,0,0,0,0,0,0,0.000578211,0.00030529,0.000608309,0,0 +94920,50,the Greater Atlanta and Macon Area,G1301510070304,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,9495,,,,8.72605822,Office,Zone-by-Zone,2000 to 2012,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665,0,0,0.002279986,0,0,0.002279986,0.001211659,0.000421723,0.000567288,0,7.92E-05,0.001211659,0.000421723,0.000567288,0,7.92E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000271697,8.06E-05,0.000271697,0.000144389,5.03E-05,6.76E-05,0,9.44E-06,0,0,0,0,0,0,0.000144389,5.03E-05,6.76E-05,0,9.44E-06 +94982,18,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1303130001300,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,21069,,,,8.72605822,Office,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,152706.0189,0,0,0.006196083,0,0,0.006196083,0.002683431,0.001140696,0.002171226,0,0.00020073,0.002683431,0.001140696,0.002171226,0,0.00020073,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000738379,0.000243598,0.000738379,0.000319781,0.000135935,0.000258742,0,2.39E-05,0,0,0,0,0,0,0.000319781,0.000135935,0.000258742,0,2.39E-05 +95032,50,the Greater Atlanta and Macon Area,G1302190030100,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,5571,,,,8.72605822,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,26178.17466,0,0,0.001000507,0,0,0.001000507,0.000385084,0.00016194,0.000408738,0,4.47E-05,0.000385084,0.00016194,0.000408738,0,4.47E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000119227,3.76E-05,0.000119227,4.59E-05,1.93E-05,4.87E-05,0,5.32E-06,0,0,0,0,0,0,4.59E-05,1.93E-05,4.87E-05,0,5.32E-06 +95073,50,the Greater Atlanta and Macon Area,G1300670030344,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,237990,,2449,,1.870652159,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,140298.9119,0,0,0.011398264,0.000416398,0,0.011814662,0.004996239,0.002838879,0.002428528,0,0.001551034,0.004996239,0.002838879,0.00201213,0,0.001551034,0,0.000416398,0,0,0,0,0,0,0,0,2.78E-05,0,0,0.001358309,0.00039654,0.00138613,0.000595392,0.000338304,0.000239782,0,0.000184834,0,2.78E-05,0,0,0,0,0.000586173,0.000333065,0.000284922,0,0.000181972 +95740,50,the Greater Atlanta and Macon Area,G1300670030700,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,15744,,,,8.72605822,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,65445.43665,0,0,0.003908157,0,0,0.003908157,0.002577649,0.000628491,0.000621047,0,8.10E-05,0.002577649,0.000628491,0.000621047,0,8.10E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000465724,0.000157237,0.000465724,0.000307171,7.49E-05,7.40E-05,0,9.65E-06,0,0,0,0,0,0,0.000307171,7.49E-05,7.40E-05,0,9.65E-06 +95833,35,Eastern Counties in South Carolina and Georgia,G1302450010506,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,7283,,,,3.204584385,Mercantile,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,9613.753156,0,0,0.00051872,0,0,0.00051872,0.00033821,0.000140235,4.02E-05,0,0,0.00033821,0.000140235,4.02E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.18E-05,1.82E-05,6.18E-05,4.03E-05,1.67E-05,4.80E-06,0,0,0,0,0,0,0,0,4.03E-05,1.67E-05,4.80E-06,0,0 +96218,35,Eastern Counties in South Carolina and Georgia,G1300510011400,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,40988,,855,,3.204584385,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56080.22674,0,0,0.003507179,0.000249185,0,0.003756333,0.002568392,0.000801863,0.000386109,0,0,0.002319207,0.000801863,0.000386109,0,0,0.000249185,0,0,0,0,0,0,0,0,0,1.66E-05,0,0,0.000417943,0.000132701,0.000434591,0.000276375,9.56E-05,4.60E-05,0,0,1.66E-05,0,0,0,0,0,0.000297152,9.28E-05,4.47E-05,0,0 +96265,85,Rural Climate Zone 3A,G1302370960102,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,14273,,,,8.72605822,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,65445.43665,0,0,0.00342705,0,0,0.00342705,0.002471287,0.000435949,0.000430573,0,8.92E-05,0.002471287,0.000435949,0.000430573,0,8.92E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000408398,0.000133641,0.000408398,0.000294501,5.20E-05,5.13E-05,0,1.06E-05,0,0,0,0,0,0,0.000294501,5.20E-05,5.13E-05,0,1.06E-05 +96278,50,the Greater Atlanta and Macon Area,G1301530021104,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,63179,,5,,3.237924874,Warehouse and Storage,Multizone CAV/VAV,2000 to 2012,G: Buildings with Furnace-Based Multizone Systems,242844.3655,0,0,0.00562921,1.47E-06,0,0.005630714,0.001586162,0.001384562,0.00265996,0,0,0.001584689,0.001384562,0.00265996,0,0,1.47E-06,0,0,0,0,0,0,0,0,0,9.94E-08,0,0,0.000670823,0.00022695,0.000670922,0.000188845,0.000164996,0.000316983,0,0,9.94E-08,0,0,0,0,0,0.000188998,0.000164976,0.000316945,0,0 +96295,50,the Greater Atlanta and Macon Area,G1300670030311,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,8535,,,,8.72605822,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665,0,0,0.002077023,0,0,0.002077023,0.000659423,0.000332731,0.001006297,0,7.86E-05,0.000659423,0.000332731,0.001006297,0,7.86E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000247516,7.45E-05,0.000247516,7.86E-05,3.97E-05,0.000119919,0,9.36E-06,0,0,0,0,0,0,7.86E-05,3.97E-05,0.000119919,0,9.36E-06 +96321,35,Eastern Counties in South Carolina and Georgia,G1302450010203,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,6255,,,,8.72605822,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,26178.17466,0,0,0.001171215,0,0,0.001171215,0.000755446,0.000171369,0.000203625,0,4.08E-05,0.000755446,0.000171369,0.000203625,0,4.08E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000139572,4.20E-05,0.000139572,9.00E-05,2.04E-05,2.43E-05,0,4.86E-06,0,0,0,0,0,0,9.00E-05,2.04E-05,2.43E-05,0,4.86E-06 +96338,33,Rural Lower Plains-Upper South Appalachia,G1301110050400,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,44270,,3240,,7.566857517,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,56751.43138,0,0,0.010750106,0.002228626,0,0.012978805,0.004243097,0.000739074,0.005154084,0.000364983,0.002477566,0.004243097,0.000739074,0.002925458,0.000364983,0.002477566,0,0.002228626,0,0,0,0,0,0,0,0,0.000148905,0,0,0.001281071,0.000442166,0.001429977,0.000505642,8.81E-05,0.000348622,4.35E-05,0.000295247,0,0.000148905,0,0,0,0,0.000467495,8.14E-05,0.000567866,4.02E-05,0.000272973 +96418,50,the Greater Atlanta and Macon Area,G1300670030229,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,12808,,1238,,8.72605822,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665,0,0,0.003075463,0.000982395,0,0.004057857,0.003039485,0.000407415,0.000525521,0,8.54E-05,0.00205709,0.000407415,0.000525521,0,8.54E-05,0.000982395,0,0,0,0,0,0,0,0,0,6.56E-05,0,0,0.000366498,0.000179408,0.000432136,0.00024514,4.86E-05,6.26E-05,0,1.02E-05,6.56E-05,0,0,0,0,0,0.000323686,4.34E-05,5.60E-05,0,9.10E-06 +96424,50,the Greater Atlanta and Macon Area,G1301350050309,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,34837,,,,3.237924874,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,121422.1828,0,0,0.003011939,0,0,0.003011939,0.001213682,0.00068358,0.001114708,0,0,0.001213682,0.00068358,0.001114708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000358928,0.000126851,0.000358928,0.000144633,8.15E-05,0.000132838,0,0,0,0,0,0,0,0,0.000144633,8.15E-05,0.000132838,0,0 +96457,50,the Greater Atlanta and Macon Area,G1300670031101,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,48646,,7562,,3.204584385,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,120171.9144,0,0,0.004674284,0.002202936,0,0.006877221,0.004688226,0.001618002,0.000570993,0,0,0.002485289,0.001618002,0.000570993,0,0,0.002202936,0,0,0,0,0,0,0,0,0,0.000147187,0,0,0.000557025,0.000305551,0.000704212,0.000296167,0.000192814,6.80E-05,0,0,0.000147187,0,0,0,0,0,0.000480064,0.00016568,5.85E-05,0,0 +96458,50,the Greater Atlanta and Macon Area,G1301210011611,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,5078,,,,8.72605822,Office,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,26178.17466,0,0,0.00121935,0,0,0.00121935,0.000630393,0.000147467,0.000400385,0,4.11E-05,0.000630393,0.000147467,0.000400385,0,4.11E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00014531,4.77E-05,0.00014531,7.51E-05,1.76E-05,4.77E-05,0,4.90E-06,0,0,0,0,0,0,7.51E-05,1.76E-05,4.77E-05,0,4.90E-06 +96494,50,the Greater Atlanta and Macon Area,G1300630040308,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,173444,,,,3.237924874,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,485688.7311,0,0,0.014423072,0,0,0.014423072,0.006674897,0.002535913,0.005212292,0,0,0.006674897,0.002535913,0.005212292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00171877,0.000595932,0.00171877,0.000795435,0.0003022,0.000621139,0,0,0,0,0,0,0,0,0.000795435,0.0003022,0.000621139,0,0 +96695,35,Eastern Counties in South Carolina and Georgia,G1300510004210,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,29636,,,,3.237924874,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.1828,0,0,0.002588361,0,0,0.002588361,0.000728264,0.00069159,0.001168537,0,0,0.000728264,0.00069159,0.001168537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00030845,0.000104967,0.00030845,8.68E-05,8.24E-05,0.000139252,0,0,0,0,0,0,0,0,8.68E-05,8.24E-05,0.000139252,0,0 +97031,50,the Greater Atlanta and Macon Area,G1301350050729,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,57022,,5443,,3.204584385,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144,0,0,0.004592458,0.001585745,0,0.006178203,0.004463188,0.001262813,0.000452172,0,0,0.002877443,0.001262813,0.000452172,0,0,0.001585745,0,0,0,0,0,0,0,0,0,0.00010595,0,0,0.000547274,0.000228925,0.000653224,0.000342899,0.000150487,5.39E-05,0,0,0.00010595,0,0,0,0,0,0.000471895,0.000133518,4.78E-05,0,0 +97382,50,the Greater Atlanta and Macon Area,G1301350050213,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,92219,,7372,,3.237924874,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7311,0,0,0.008216559,0.002169939,0,0.010386529,0.003523689,0.00229635,0.00456646,0,0,0.001353749,0.00229635,0.00456646,0,0,0.002169939,0,0,0,0,0,0,0,0,0,0.000144983,0,0,0.000979153,0.000416122,0.001124136,0.000161324,0.000273652,0.000544177,0,0,0.000144983,0,0,0,0,0,0.00038137,0.000248534,0.000494229,0,0 +97699,50,the Greater Atlanta and Macon Area,G1302470060306,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,12626,,985,,3.237924874,Warehouse and Storage,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56663.68529,0,0,0.001049953,0.000289894,0,0.001339816,0.000579757,0.000271296,0.000488793,0,0,0.000289863,0.000271296,0.000488793,0,0,0.000289894,0,0,0,0,0,0,0,0,0,1.94E-05,0,0,0.000125119,5.41E-05,0.000144488,3.45E-05,3.23E-05,5.82E-05,0,0,1.94E-05,0,0,0,0,0,6.25E-05,2.93E-05,5.27E-05,0,0 +97971,18,"the Knoxville-Chattanooga-Asheville and Greenville, SC Area",G1301150001300,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,29974,,1525,,3.237924874,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,121422.1828,0,0,0.002707775,0.000448989,0,0.003156764,0.001316891,0.000604064,0.001235809,0,0,0.000867902,0.000604064,0.001235809,0,0,0.000448989,0,0,0,0,0,0,0,0,0,3.00E-05,0,0,0.00032268,0.000131696,0.000352679,0.000103426,7.20E-05,0.000147269,0,0,3.00E-05,0,0,0,0,0,0.000147125,6.75E-05,0.000138067,0,0 +98030,50,the Greater Atlanta and Macon Area,G1301350050423,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,22049,,1,,3.237924874,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,56663.68529,0,0,0.001965639,2.46E-07,0,0.001965884,0.000725287,0.0005069,0.000733666,0,0,0.000725042,0.0005069,0.000733666,0,0,2.46E-07,0,0,0,0,0,0,0,0,0,1.62E-08,0,0,0.000234241,9.05E-05,0.000234257,8.64E-05,6.04E-05,8.74E-05,0,0,1.62E-08,0,0,0,0,0,8.64E-05,6.04E-05,8.74E-05,0,0 +98047,50,the Greater Atlanta and Macon Area,G1301170130409,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,36417,,6310,,3.237924874,Warehouse and Storage,Multizone CAV/VAV,2013 to 2018,D: Buildings with Hydronically Heated Multizone Systems,242844.3655,0,0,0.003723785,0.001857304,0,0.005581089,0.002659991,0.000933823,0.001987244,0,0,0.000802687,0.000933823,0.001987244,0,0,0.001857304,0,0,0,0,0,0,0,0,0,0.000124094,0,0,0.000443755,0.000253305,0.00056785,9.57E-05,0.000111282,0.000236815,0,0,0.000124094,0,0,0,0,0,0.000270642,9.50E-05,0.000202193,0,0 +98056,50,the Greater Atlanta and Macon Area,G1301130140406,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,23201,,,,8.72605822,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,152706.0189,0,0,0.00524305,0,0,0.00524305,0.003076124,0.000958327,0.001048643,0,0.000159955,0.003076124,0.000958327,0.001048643,0,0.000159955,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000624806,0.000166164,0.000624806,0.000366577,0.000114202,0.000124965,0,1.91E-05,0,0,0,0,0,0,0.000366577,0.000114202,0.000124965,0,1.91E-05 +98078,50,the Greater Atlanta and Macon Area,G1301350050315,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,407421,,,,9.729435225,Education,Multizone CAV/VAV,1980 to 1989,F: Buildings with Electric Resistance Multizone Systems,1459415.284,0,0,0.098105601,0,0,0.098105601,0.08235139,0.007758237,0.002690438,0.000647642,0.004657986,0.08235139,0.007758237,0.002690438,0.000647642,0.004657986,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011691053,0.003580358,0.011691053,0.009813654,0.000924534,0.000320614,7.72E-05,0.000555083,0,0,0,0,0,0,0.009813654,0.000924534,0.000320614,7.72E-05,0.000555083 +98148,50,the Greater Atlanta and Macon Area,G1300570090602,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,7444,,,,8.72605822,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466,0,0,0.001562916,0,0,0.001562916,0.00073783,0.000317926,0.000455137,0,5.21E-05,0.00073783,0.000317926,0.000455137,0,5.21E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000186254,6.22E-05,0.000186254,8.79E-05,3.79E-05,5.42E-05,0,6.21E-06,0,0,0,0,0,0,8.79E-05,3.79E-05,5.42E-05,0,6.21E-06 +98243,50,the Greater Atlanta and Macon Area,G1301350050435,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,10821,,347,,8.72605822,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665,0,0,0.002489896,0.000275332,0,0.002765228,0.001377155,0.000373422,0.000940462,0,7.41E-05,0.001101824,0.000373422,0.000940462,0,7.41E-05,0.000275332,0,0,0,0,0,0,0,0,0,1.84E-05,0,0,0.000296714,0.000119371,0.000315111,0.000131301,4.45E-05,0.000112072,0,8.83E-06,1.84E-05,0,0,0,0,0,0.000156933,4.26E-05,0.00010717,0,8.44E-06 +98522,50,the Greater Atlanta and Macon Area,G1301350050428,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,55366,,6541,,3.237924874,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.3655,0,0,0.004693945,0.001925312,0,0.006619288,0.003114504,0.001302252,0.002202501,0,0,0.001189192,0.001302252,0.002202501,0,0,0.001925312,0,0,0,0,0,0,0,0,0,0.000128638,0,0,0.00055937,0.000284501,0.000688008,0.000141714,0.000155187,0.000262469,0,0,0.000128638,0,0,0,0,0,0.000323721,0.000135356,0.000228928,0,0 +98542,50,the Greater Atlanta and Macon Area,G1301210010507,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,5757,,745,,8.72605822,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,65445.43665,0,0,0.001727833,0.000590611,0,0.002318445,0.001356727,0.000353159,0.000543634,0,6.49E-05,0.000766116,0.000353159,0.000543634,0,6.49E-05,0.000590611,0,0,0,0,0,0,0,0,0,3.95E-05,0,0,0.000205898,0.000101049,0.000245359,9.13E-05,4.21E-05,6.48E-05,0,7.74E-06,3.95E-05,0,0,0,0,0,0.000143581,3.74E-05,5.75E-05,0,6.87E-06 +98566,85,Rural Climate Zone 3A,G1301630960100,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,8510,,,,3.237924874,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,24284.43655,0,0,0.00066888,0,0,0.00066888,0.000245486,0.000195094,0.000228331,0,0,0.000245486,0.000195094,0.000228331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.97E-05,2.97E-05,7.97E-05,2.93E-05,2.32E-05,2.72E-05,0,0,0,0,0,0,0,0,2.93E-05,2.32E-05,2.72E-05,0,0 +98649,81,the Columbus-Albany Area,G1302150000200,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,8222,,,,8.72605822,Office,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665,0,0,0.001673908,0,0,0.001673908,0.000583581,0.000605002,0.000416017,0,6.93E-05,0.000583581,0.000605002,0.000416017,0,6.93E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00019948,5.64E-05,0.00019948,6.95E-05,7.21E-05,4.96E-05,0,8.26E-06,0,0,0,0,0,0,6.95E-05,7.21E-05,4.96E-05,0,8.26E-06 +98820,35,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,73630,,,,3.237924874,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,242844.3655,0,0,0.006420511,0,0,0.006420511,0.002204987,0.001447966,0.002767589,0,0,0.002204987,0.001447966,0.002767589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000765121,0.00025401,0.000765121,0.000262764,0.000172552,0.000329809,0,0,0,0,0,0,0,0,0.000262764,0.000172552,0.000329809,0,0 +98951,50,the Greater Atlanta and Macon Area,G1301350050217,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,190936,,178,,9.325022323,Office,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,699376.6743,0,0,0.048993902,0.000150518,0,0.049144509,0.017304381,0.006862588,0.024520063,0,0.000457476,0.017153863,0.006862588,0.024520063,0,0.000457476,0.000150518,0,0,0,0,0,0,0,0,0,1.01E-05,0,0,0.005838509,0.001977101,0.005848569,0.002044193,0.000817801,0.002922009,0,5.45E-05,1.01E-05,0,0,0,0,0,0.002059353,0.0008167,0.002918073,0,5.44E-05 +99069,50,the Greater Atlanta and Macon Area,G1301210007001,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,73404,,12842,,3.306336374,Lodging,Zone-by-Zone,2000 to 2012,E: Lodging with Zone-by-Zone Systems,247975.228,0,0,0.013041506,0.003860092,0,0.016901567,0.007782892,0.001275144,0.005550653,0,0.002292909,0.00621784,0.001275144,0.003255613,0,0.002292909,0.001565052,0.00229504,0,0,0,0,0,0,0,0,0.000257908,0,0,0.001554129,0.000726514,0.001812037,0.000740967,0.000151956,0.000387965,0,0.000273241,0.000104567,0.000153341,0,0,0,0,0.000834413,0.00013671,0.000595092,0,0.000245826 +99178,50,the Greater Atlanta and Macon Area,G1301350050417,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,109936,,,,5.759960461,Office,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,431997.0346,0,0,0.016276459,0,0,0.016276459,0.009133503,0.002534194,0.004450439,0,0.000158268,0.009133503,0.002534194,0.004450439,0,0.000158268,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001939632,0.000655831,0.001939632,0.001088421,0.000301995,0.00053035,0,1.89E-05,0,0,0,0,0,0,0.001088421,0.000301995,0.00053035,0,1.89E-05 +99329,35,Eastern Counties in South Carolina and Georgia,G1300510004500,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,5785,,,,3.237924874,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,9713.774622,0,0,0.000413297,0,0,0.000413297,0.000215564,0.000110728,8.70E-05,0,0,0.000215564,0.000110728,8.70E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.93E-05,1.87E-05,4.93E-05,2.57E-05,1.32E-05,1.04E-05,0,0,0,0,0,0,0,0,2.57E-05,1.32E-05,1.04E-05,0,0 +99486,50,the Greater Atlanta and Macon Area,G1300210013700,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,126932,,,,1.870652159,Mercantile,Multizone CAV/VAV,2000 to 2012,F: Buildings with Electric Resistance Multizone Systems,140298.9119,0,0,0.006533869,0,0,0.006533869,0.003226713,0.00248929,0.0006862,0,0.00013163,0.003226713,0.00248929,0.0006862,0,0.00013163,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000778628,0.000238638,0.000778628,0.000384521,0.000296644,8.18E-05,0,1.57E-05,0,0,0,0,0,0,0.000384521,0.000296644,8.18E-05,0,1.57E-05 +99590,35,Eastern Counties in South Carolina and Georgia,G1300730030106,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,9881,,,,8.72605822,Office,Zone-by-Zone,1980 to 1989,I: Non-Lodging Buildings with Zone-by-Zone Systems,65445.43665,0,0,0.00208273,0,0,0.00208273,0.001033673,0.000453317,0.000512536,0,8.30E-05,0.001033673,0.000453317,0.000512536,0,8.30E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000248192,7.31E-05,0.000248192,0.000123179,5.40E-05,6.11E-05,0,9.90E-06,0,0,0,0,0,0,0.000123179,5.40E-05,6.11E-05,0,9.90E-06 +99881,50,the Greater Atlanta and Macon Area,G1301350050210,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,5072,,650,,8.72605822,Office,Multizone CAV/VAV,1980 to 1989,D: Buildings with Hydronically Heated Multizone Systems,26178.17466,0,0,0.001217862,0.000515265,0,0.001733044,0.001019696,0.000328099,0.000326114,0,5.93E-05,0.00050443,0.000328099,0.000326114,0,5.93E-05,0.000515265,0,0,0,0,0,0,0,0,0,3.44E-05,0,0,0.000145126,8.74E-05,0.000179551,6.01E-05,3.91E-05,3.89E-05,0,7.07E-06,3.44E-05,0,0,0,0,0,0.000105645,3.40E-05,3.38E-05,0,6.14E-06 +99923,85,Rural Climate Zone 3A,G1302850960501,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,24027,,4715,,8.531264242,Food Service,Small Packaged Unit,1990 to 1999,B: Food-Service Buildings with Small Packaged Units,25593.79273,0,0,0.005547616,0.003656848,0,0.009204383,0.004443785,0.000411581,0.0033968,0.000420557,0.00053166,0.002924492,0.000411581,0.001259326,0.000420557,0.00053166,0.001519293,0.002137474,0,0,0,0,0,0,0,0,0.000244328,0,0,0.000661095,0.000436203,0.000905422,0.000348504,4.90E-05,0.000150071,5.01E-05,6.34E-05,0.00010151,0.000142813,0,0,0,0,0.000437129,4.05E-05,0.000334138,4.14E-05,5.23E-05 +100518,81,the Columbus-Albany Area,G1302150002500,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,70307,,,,3.237924874,Warehouse and Storage,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,242844.3655,0,0,0.006355296,0,0,0.006355296,0.003014671,0.001191923,0.002148671,0,0,0.003014671,0.001191923,0.002148671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000757348,0.000255288,0.000757348,0.000359252,0.000142039,0.000256053,0,0,0,0,0,0,0,0,0.000359252,0.000142039,0.000256053,0,0 +100547,85,Rural Climate Zone 3A,G1302090950300,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,10083,,163,,4.088175128,Healthcare,Multizone CAV/VAV,1990 to 1999,F: Buildings with Electric Resistance Multizone Systems,12264.52538,0,0,0.001152301,6.05E-05,0,0.001212787,0.000585992,0.000156737,0.000432471,0,3.76E-05,0.000585992,0.000156737,0.000371985,0,3.76E-05,0,6.05E-05,0,0,0,0,0,0,0,0,4.04E-06,0,0,0.000137317,4.54E-05,0.000141358,6.98E-05,1.87E-05,4.43E-05,0,4.48E-06,0,4.04E-06,0,0,0,0,6.83E-05,1.83E-05,5.04E-05,0,4.38E-06 +100636,33,Rural Lower Plains-Upper South Appalachia,G1301570010101,ComStock 90.1-2007,gen5_led,200001_500000,Electricity,208555,,18822,,3.237924874,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,1133273.706,0,0,0.018581974,0.005540517,0,0.024122491,0.008546012,0.005172549,0.010403961,0,0,0.003005495,0.005172549,0.010403961,0,0,0.005540517,0,0,0,0,0,0,0,0,0,0.000370185,0,0,0.002214378,0.001035084,0.002584563,0.000358159,0.000616403,0.00123982,0,0,0.000370185,0,0,0,0,0,0.000915648,0.000554204,0.001114714,0,0 +100919,50,the Greater Atlanta and Macon Area,G1302270050400,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,20253,,,5116,3.204584385,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.22674,0,0,0.001901843,0,0.000482151,0.002383993,0.001633067,0.000568442,0.000182485,0,0,0.001150916,0.000568442,0.000182485,0,0,0,0,0,0,0,0,0,0.000482151,0,0,0,0,3.89E-05,0.000226637,8.76E-05,0.000265522,0.000137151,6.77E-05,2.17E-05,0,0,0,0,0,3.89E-05,0,0,0.000181886,6.33E-05,2.03E-05,0,0 +101134,33,Rural Lower Plains-Upper South Appalachia,G1301230080300,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,77980,,1964,,4.088175128,Healthcare,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,153306.5673,0,0,0.010558016,0.000729788,0,0.011287842,0.004768769,0.001389712,0.004859517,0,0.000269767,0.004768769,0.001389712,0.00412973,0,0.000269767,0,0.000729788,0,0,0,0,0,0,0,0,4.88E-05,0,0,0.00125818,0.000382721,0.001306941,0.000568286,0.00016561,0.000492133,0,3.21E-05,0,4.88E-05,0,0,0,0,0.000552143,0.000160905,0.00056265,0,3.12E-05 +101165,50,the Greater Atlanta and Macon Area,G1301210009102,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,70995,,8,,3.237924874,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,242844.3655,0,0,0.006325558,2.24E-06,0,0.006327798,0.002283491,0.001384377,0.00265996,0,0,0.002281251,0.001384377,0.00265996,0,0,2.24E-06,0,0,0,0,0,0,0,0,0,1.50E-07,0,0,0.000753805,0.00025883,0.000753955,0.000271852,0.000164974,0.000316982,0,0,1.50E-07,0,0,0,0,0,0.000272077,0.000164948,0.000316933,0,0 +101317,50,the Greater Atlanta and Macon Area,G1300670030506,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,59811,,,,3.204584385,Mercantile,Small Packaged Unit,2000 to 2012,A: Non Food-Service Buildings with Small Packaged Units,120171.9144,0,0,0.005683326,0,0,0.005683326,0.00385526,0.001241187,0.000586848,0,0,0.00385526,0.001241187,0.000586848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000677272,0.000192902,0.000677272,0.000459425,0.00014791,6.99E-05,0,0,0,0,0,0,0,0,0.000459425,0.00014791,6.99E-05,0,0 +101504,50,the Greater Atlanta and Macon Area,G1301210000100,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,24369,,1349,,1.870652159,Mercantile,Small Packaged Unit,2000 to 2012,C: Strip Malls with some Food-Service with Small Packaged Units,14029.89119,0,0,0.001202916,0.000229449,0,0.001432365,0.000678346,0.000235069,0.000308615,0,0.000210335,0.000448897,0.000235069,0.000308615,0,0.000210335,0.000229449,0,0,0,0,0,0,0,0,0,1.53E-05,0,0,0.000143349,4.96E-05,0.00015868,5.35E-05,2.80E-05,3.68E-05,0,2.51E-05,1.53E-05,0,0,0,0,0,7.51E-05,2.60E-05,3.42E-05,0,2.33E-05 +101560,50,the Greater Atlanta and Macon Area,G1301350050304,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,12918,,4304,,3.237924874,Warehouse and Storage,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,56663.68529,0,0,0.001076223,0.00126702,0,0.002343213,0.001461255,0.0003618,0.000520189,0,0,0.000194235,0.0003618,0.000520189,0,0,0.00126702,0,0,0,0,0,0,0,0,0,8.47E-05,0,0,0.00012825,0.000123448,0.000212904,2.31E-05,4.31E-05,6.20E-05,0,0,8.47E-05,0,0,0,0,0,0.00013277,3.29E-05,4.73E-05,0,0 +101692,35,Eastern Counties in South Carolina and Georgia,G1301270000700,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,130268,,,,3.237924874,Warehouse and Storage,Multizone CAV/VAV,1990 to 1999,G: Buildings with Furnace-Based Multizone Systems,485688.7311,0,0,0.011209624,0,0,0.011209624,0.003565181,0.002647408,0.004997004,0,0,0.003565181,0.002647408,0.004997004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001335831,0.000391982,0.001335831,0.000424856,0.000315487,0.000595484,0,0,0,0,0,0,0,0,0.000424856,0.000315487,0.000595484,0,0 +101777,50,the Greater Atlanta and Macon Area,G1302470060307,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,22313,,360,,4.088175128,Healthcare,Zone-by-Zone,1990 to 1999,I: Non-Lodging Buildings with Zone-by-Zone Systems,30661.31346,0,0,0.002402054,0.000133721,0,0.002535774,0.001193103,0.000285537,0.000984907,0,7.23E-05,0.001193103,0.000285537,0.000851187,0,7.23E-05,0,0.000133721,0,0,0,0,0,0,0,0,8.93E-06,0,0,0.00028625,8.72E-05,0.000295184,0.000142181,3.40E-05,0.000101435,0,8.61E-06,0,8.93E-06,0,0,0,0,0.000138886,3.32E-05,0.000114651,0,8.41E-06 +102452,50,the Greater Atlanta and Macon Area,G1301390001101,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,30531,,18,,3.237924874,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,121422.1828,0,0,0.002730608,5.28E-06,0,0.002735856,0.000769327,0.00078458,0.001181979,0,0,0.000764048,0.00078458,0.001181979,0,0,5.28E-06,0,0,0,0,0,0,0,0,0,3.52E-07,0,0,0.0003254,0.000112085,0.000325752,9.10E-05,9.35E-05,0.000140854,0,0,3.52E-07,0,0,0,0,0,9.16E-05,9.34E-05,0.000140736,0,0 +102469,50,the Greater Atlanta and Macon Area,G1301350050545,ComStock 90.1-2007,gen5_led,100001_200000,Electricity,124620,,,,3.237924874,Warehouse and Storage,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,485688.7311,0,0,0.0111035,0,0,0.0111035,0.00426828,0.00226876,0.00456646,0,0,0.00426828,0.00226876,0.00456646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001323183,0.000439277,0.001323183,0.000508643,0.000270364,0.000544176,0,0,0,0,0,0,0,0,0.000508643,0.000270364,0.000544176,0,0 +102544,35,Eastern Counties in South Carolina and Georgia,G1302450000200,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,23650,,,,3.204584385,Mercantile,Zone-by-Zone,2013 to 2018,I: Non-Lodging Buildings with Zone-by-Zone Systems,56080.22674,0,0,0.001937805,0,0,0.001937805,0.001142078,0.000563491,0.000232206,0,0,0.001142078,0.000563491,0.000232206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000230924,6.41E-05,0.000230924,0.000136099,6.71E-05,2.77E-05,0,0,0,0,0,0,0,0,0.000136099,6.71E-05,2.77E-05,0,0 +102630,85,Rural Climate Zone 3A,G1300690010400,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,18888,,,,8.72605822,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,152706.0189,0,0,0.004535242,0,0,0.004535242,0.001650006,0.001678209,0.001080981,0,0.000126046,0.001650006,0.001678209,0.001080981,0,0.000126046,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000540453,0.000169731,0.000540453,0.000196627,0.000199988,0.000128818,0,1.50E-05,0,0,0,0,0,0,0.000196627,0.000199988,0.000128818,0,1.50E-05 +102671,50,the Greater Atlanta and Macon Area,G1301210001500,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,73402,,,,3.204584385,Mercantile,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,120171.9144,0,0,0.005853175,0,0,0.005853175,0.003783579,0.001597408,0.000472218,0,0,0.003783579,0.001597408,0.000472218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000697512,0.000151547,0.000697512,0.000450882,0.00019036,5.63E-05,0,0,0,0,0,0,0,0,0.000450882,0.00019036,5.63E-05,0,0 +102674,50,the Greater Atlanta and Macon Area,G1300590001900,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,7183,,,,8.72605822,Office,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,26178.17466,0,0,0.001427193,0,0,0.001427193,0.000754454,0.000242663,0.000389716,0,4.04E-05,0.000754454,0.000242663,0.000389716,0,4.04E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000170072,4.91E-05,0.000170072,8.99E-05,2.89E-05,4.64E-05,0,4.81E-06,0,0,0,0,0,0,8.99E-05,2.89E-05,4.64E-05,0,4.81E-06 +103042,50,the Greater Atlanta and Macon Area,G1300670030506,ComStock 90.1-2007,gen5_led,1001_5000,Electricity,4954,,522,,3.204584385,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,9613.753156,0,0,0.00041949,0.000152202,0,0.000571662,0.00037481,0.000155999,4.09E-05,0,0,0.000222608,0.000155999,4.09E-05,0,0,0.000152202,0,0,0,0,0,0,0,0,0,1.02E-05,0,0,5.00E-05,2.34E-05,6.02E-05,2.65E-05,1.86E-05,4.87E-06,0,0,1.02E-05,0,0,0,0,0,3.94E-05,1.64E-05,4.30E-06,0,0 +103140,50,the Greater Atlanta and Macon Area,G1301210005800,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,17876,,2815,,3.204584385,Mercantile,Small Packaged Unit,1990 to 1999,A: Non Food-Service Buildings with Small Packaged Units,56080.22674,0,0,0.002567268,0.000820087,0,0.003387355,0.002382384,0.000705791,0.00029918,0,0,0.001562296,0.000705791,0.00029918,0,0,0.000820087,0,0,0,0,0,0,0,0,0,5.48E-05,0,0,0.000305936,0.0001366,0.000360729,0.000186175,8.41E-05,3.57E-05,0,0,5.48E-05,0,0,0,0,0,0.000253707,7.52E-05,3.19E-05,0,0 +103360,50,the Greater Atlanta and Macon Area,G1300670030506,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,10076,,,,8.72605822,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665,0,0,0.002475092,0,0,0.002475092,0.001177418,0.000313377,0.000912424,0,7.19E-05,0.001177418,0.000313377,0.000912424,0,7.19E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000294956,0.000100221,0.000294956,0.000140312,3.73E-05,0.000108733,0,8.57E-06,0,0,0,0,0,0,0.000140312,3.73E-05,0.000108733,0,8.57E-06 +104267,50,the Greater Atlanta and Macon Area,G1300570090902,ComStock 90.1-2007,gen5_led,50001_100000,Electricity,57411,,9,,3.237924874,Warehouse and Storage,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,242844.3655,0,0,0.005669874,2.64E-06,0,0.005672513,0.002293219,0.001203677,0.002175586,0,0,0.00229058,0.001203677,0.002175586,0,0,2.64E-06,0,0,0,0,0,0,0,0,0,1.77E-07,0,0,0.000675667,0.00025136,0.000675844,0.000272964,0.00014344,0.00025926,0,0,1.77E-07,0,0,0,0,0,0.000273223,0.000143411,0.000259207,0,0 +104286,50,the Greater Atlanta and Macon Area,G1301350050216,ComStock 90.1-2007,gen5_led,25001_50000,Electricity,63276,,,,9.325022323,Office,Small Packaged Unit,1980 to 1989,A: Non Food-Service Buildings with Small Packaged Units,349688.3371,0,0,0.016236612,0,0,0.016236612,0.009351132,0.002283758,0.004189497,0,0.000412312,0.009351132,0.002283758,0.004189497,0,0.000412312,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00193489,0.00063558,0.00193489,0.001114359,0.000272152,0.000499255,0,4.91E-05,0,0,0,0,0,0,0.001114359,0.000272152,0.000499255,0,4.91E-05 +104465,81,the Columbus-Albany Area,G1302150011100,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,22466,,385,,1.870652159,Mercantile,Multizone CAV/VAV,1980 to 1989,G: Buildings with Furnace-Based Multizone Systems,14029.89119,0,0,0.00111797,6.55E-05,0,0.001183484,0.000682849,0.000317693,6.62E-05,0,0.000116737,0.000617318,0.000317693,6.62E-05,0,0.000116737,6.55E-05,0,0,0,0,0,0,0,0,0,4.38E-06,0,0,0.000133226,4.26E-05,0.000137604,7.36E-05,3.79E-05,7.89E-06,0,1.39E-05,4.38E-06,0,0,0,0,0,7.94E-05,3.69E-05,7.70E-06,0,1.36E-05 +104809,50,the Greater Atlanta and Macon Area,G1300890021504,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,66164,,1677,,8.531264242,Food Service,Small Packaged Unit,1980 to 1989,B: Food-Service Buildings with Small Packaged Units,63984.48182,0,0,0.015532386,0.001300322,0,0.016832708,0.010423198,0.000905156,0.00385617,0.000420314,0.00122779,0.010423198,0.000905156,0.002555848,0.000420314,0.00122779,0,0.001300322,0,0,0,0,0,0,0,0,8.69E-05,0,0,0.001850968,0.000723458,0.001937848,0.001242115,0.000107866,0.000304576,5.01E-05,0.000146314,0,8.69E-05,0,0,0,0,0.00119996,0.000104205,0.000443938,4.84E-05,0.000141348 +104911,50,the Greater Atlanta and Macon Area,G1301390000400,ComStock 90.1-2007,gen5_led,10001_25000,Electricity,21876,,2332,,3.204584385,Mercantile,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,56080.22674,0,0,0.001800365,0.000679457,0,0.002479822,0.001651747,0.000556748,0.000271327,0,0,0.000972289,0.000556748,0.000271327,0,0,0.000679457,0,0,0,0,0,0,0,0,0,4.54E-05,0,0,0.000214546,9.81E-05,0.000259944,0.000115866,6.63E-05,3.23E-05,0,0,4.54E-05,0,0,0,0,0,0.000173142,5.84E-05,2.84E-05,0,0 +104944,50,the Greater Atlanta and Macon Area,G1301210003500,ComStock 90.1-2007,gen5_led,5001_10000,Electricity,11164,,,,8.72605822,Office,Small Packaged Unit,2013 to 2018,A: Non Food-Service Buildings with Small Packaged Units,65445.43665,0,0,0.002419265,0,0,0.002419265,0.001098681,0.000464566,0.000773228,0,8.28E-05,0.001098681,0.000464566,0.000773228,0,8.28E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000288298,9.10E-05,0.000288298,0.000130927,5.54E-05,9.21E-05,0,9.87E-06,0,0,0,0,0,0,0.000130927,5.54E-05,9.21E-05,0,9.87E-06 \ No newline at end of file diff --git a/datasets/comstock/downloaded/98542-0.parquet b/datasets/comstock/downloaded/98542-0.parquet new file mode 100644 index 0000000000000000000000000000000000000000..08d6605f613bb7f435a6adf34945f162ee7bf3c9 --- /dev/null +++ b/datasets/comstock/downloaded/98542-0.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26cee5d15b1871df12e58b262e3ef2d6b48675f5007cd029435b7515465f33d7 +size 2628884 diff --git a/datasets/comstock/downloaded/98542-28.parquet b/datasets/comstock/downloaded/98542-28.parquet new file mode 100644 index 0000000000000000000000000000000000000000..c6219023e623bcb8727afc22df1abfed4c16d627 --- /dev/null +++ b/datasets/comstock/downloaded/98542-28.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1745d03253c0cc79d9cdf823f70fb9fa259b8af9168ef4b156ce3b60d53f7508 +size 2508876 diff --git a/datasets/comstock/downloaded/98542-29.parquet b/datasets/comstock/downloaded/98542-29.parquet new file mode 100644 index 0000000000000000000000000000000000000000..fb3618cbf3684314d39abb49040605bd5331960f --- /dev/null +++ b/datasets/comstock/downloaded/98542-29.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:901954b108d0be5b5aa83830d822741eb27c80e898c03543a92acd73f614ff45 +size 2322722 diff --git a/datasets/comstock/downloaded/98542-31.parquet b/datasets/comstock/downloaded/98542-31.parquet new file mode 100644 index 0000000000000000000000000000000000000000..1d05a47b65e5ad3e5ade18e58c61cec4ed053852 --- /dev/null +++ b/datasets/comstock/downloaded/98542-31.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b26c61b91153579f6acae350d77dde2b9c11da9ae93d769e3e93f6276290efc0 +size 2147557 diff --git a/datasets/rsf_measured/rsfmeasureddata2011.csv b/datasets/rsf_measured/rsfmeasureddata2011.csv new file mode 100644 index 0000000000000000000000000000000000000000..57aa329a79ef4400e9345d870588e60741825da3 --- /dev/null +++ b/datasets/rsf_measured/rsfmeasureddata2011.csv @@ -0,0 +1,8760 @@ +Day of Week,Date and Time,Total Cooling (kW),Total Heating (kW),Total Mechanical (kW),Total Lighting (kW),Total Plug Loads (kW),Total Data Center (kW),Total Building (kW),PV (kW),Building Net (kW), +Saturday,01/01/2011 01:00,0,936,8,4,32,102,1080,0,1080, +Saturday,01/01/2011 02:00,0,838,8,4,30,102,978,0,978, +Saturday,01/01/2011 03:00,0,904,8,4,32,102,1046,0,1046, +Saturday,01/01/2011 04:00,0,838,10,4,34,102,984,0,984, +Saturday,01/01/2011 05:00,0,644,8,4,30,102,786,0,786, +Saturday,01/01/2011 06:00,0,614,8,10,32,100,760,2,762, +Saturday,01/01/2011 07:00,0,548,8,12,32,100,698,0,698, +Saturday,01/01/2011 08:00,0,614,8,4,32,100,754,-6,748, +Saturday,01/01/2011 09:00,0,420,8,10,32,100,568,-48,520, +Saturday,01/01/2011 10:00,0,452,6,14,34,100,604,-28,576, +Saturday,01/01/2011 11:00,0,452,8,8,28,100,594,-30,564, +Saturday,01/01/2011 12:00,0,420,8,4,32,100,560,-122,438, +Saturday,01/01/2011 13:00,0,290,8,6,34,100,438,-188,250, +Saturday,01/01/2011 14:00,0,324,6,4,30,100,462,-60,402, +Saturday,01/01/2011 15:00,0,290,6,6,30,102,434,-82,352, +Saturday,01/01/2011 16:00,0,354,8,8,32,100,500,-26,474, +Saturday,01/01/2011 17:00,0,484,6,12,32,100,634,-12,622, +Saturday,01/01/2011 18:00,0,452,8,16,30,102,606,0,606, +Saturday,01/01/2011 19:00,0,612,8,10,32,100,760,0,760, +Saturday,01/01/2011 20:00,0,806,8,8,32,100,952,0,952, +Saturday,01/01/2011 21:00,0,870,8,8,30,100,1016,2,1018, +Saturday,01/01/2011 22:00,0,806,8,6,32,100,952,0,952, +Saturday,01/01/2011 23:00,0,742,8,4,30,102,882,0,882, +Sunday,01/02/2011 00:00,0,774,8,6,30,100,916,0,916, +Sunday,01/02/2011 01:00,0,774,8,4,34,100,918,0,918, +Sunday,01/02/2011 02:00,0,548,8,4,30,102,690,0,690, +Sunday,01/02/2011 03:00,0,452,8,2,28,102,590,2,592, +Sunday,01/02/2011 04:00,0,484,8,4,34,102,628,0,628, +Sunday,01/02/2011 05:00,0,580,6,2,32,100,720,0,720, +Sunday,01/02/2011 06:00,0,548,10,10,30,100,696,0,696, +Sunday,01/02/2011 07:00,0,484,6,10,32,102,632,0,632, +Sunday,01/02/2011 08:00,0,388,8,8,30,100,532,-6,526, +Sunday,01/02/2011 09:00,0,356,8,10,32,100,502,-44,458, +Sunday,01/02/2011 10:00,0,322,8,6,32,100,466,-100,366, +Sunday,01/02/2011 11:00,0,258,8,4,30,102,400,-126,274, +Sunday,01/02/2011 12:00,0,194,8,4,32,100,336,-244,92, +Sunday,01/02/2011 13:00,0,66,6,4,32,102,206,-294,-88, +Sunday,01/02/2011 14:00,0,32,6,4,32,100,174,-186,-12, +Sunday,01/02/2011 15:00,0,32,8,2,30,100,170,-232,-62, +Sunday,01/02/2011 16:00,0,66,6,4,32,100,204,-92,112, +Sunday,01/02/2011 17:00,0,64,6,8,28,100,206,-14,192, +Sunday,01/02/2011 18:00,0,130,6,10,34,100,280,2,282, +Sunday,01/02/2011 19:00,0,130,8,6,30,100,272,0,272, +Sunday,01/02/2011 20:00,0,290,6,4,28,102,430,0,430, +Sunday,01/02/2011 21:00,0,388,8,6,32,100,530,0,530, +Sunday,01/02/2011 22:00,0,386,6,4,32,102,528,0,528, +Sunday,01/02/2011 23:00,0,452,6,6,32,100,596,0,596, +Monday,01/03/2011 00:00,0,452,8,4,30,100,594,2,596, +Monday,01/03/2011 01:00,0,452,8,6,30,102,594,0,594, +Monday,01/03/2011 02:00,0,548,6,2,32,100,688,0,688, +Monday,01/03/2011 03:00,0,612,8,4,30,102,754,0,754, +Monday,01/03/2011 04:00,0,774,6,4,34,102,918,0,918, +Monday,01/03/2011 05:00,0,612,8,6,30,100,754,0,754, +Monday,01/03/2011 06:00,0,742,14,8,34,100,898,2,900, +Monday,01/03/2011 07:00,0,1192,24,26,32,100,1372,0,1372, +Monday,01/03/2011 08:00,0,936,26,46,48,102,1154,-2,1152, +Monday,01/03/2011 09:00,0,580,26,40,54,100,800,-96,704, +Monday,01/03/2011 10:00,0,354,28,38,68,102,588,-184,404, +Monday,01/03/2011 11:00,0,226,28,34,64,102,452,-176,276, +Monday,01/03/2011 12:00,4,290,32,36,64,100,522,-330,192, +Monday,01/03/2011 13:00,8,226,36,36,70,102,474,-260,214, +Monday,01/03/2011 14:00,0,226,34,34,62,100,454,-180,274, +Monday,01/03/2011 15:00,0,226,34,38,62,102,460,-228,232, +Monday,01/03/2011 16:00,0,258,36,46,62,100,502,-62,440, +Monday,01/03/2011 17:00,0,322,36,58,54,102,570,-8,562, +Monday,01/03/2011 18:00,0,322,34,64,46,100,564,0,564, +Monday,01/03/2011 19:00,0,162,12,42,40,102,356,0,356, +Monday,01/03/2011 20:00,0,128,8,38,38,100,312,2,314, +Monday,01/03/2011 21:00,0,162,6,38,36,100,342,0,342, +Monday,01/03/2011 22:00,0,162,8,44,36,100,346,0,346, +Monday,01/03/2011 23:00,0,322,8,28,34,100,490,0,490, +Tuesday,01/04/2011 00:00,0,420,6,10,32,100,568,0,568, +Tuesday,01/04/2011 01:00,0,452,8,8,32,100,598,0,598, +Tuesday,01/04/2011 02:00,0,484,8,4,36,102,632,2,634, +Tuesday,01/04/2011 03:00,0,484,8,6,32,102,628,0,628, +Tuesday,01/04/2011 04:00,0,516,8,6,34,102,664,0,664, +Tuesday,01/04/2011 05:00,0,580,6,6,34,100,724,0,724, +Tuesday,01/04/2011 06:00,0,838,14,14,34,102,1000,0,1000, +Tuesday,01/04/2011 07:00,0,1386,34,24,36,100,1580,0,1580, +Tuesday,01/04/2011 08:00,0,1128,34,44,44,100,1350,-2,1348, +Tuesday,01/04/2011 09:00,0,710,34,42,60,102,946,-98,848, +Tuesday,01/04/2011 10:00,0,388,38,42,64,102,630,-188,442, +Tuesday,01/04/2011 11:00,0,258,38,40,68,102,502,-174,328, +Tuesday,01/04/2011 12:00,0,194,36,36,68,102,434,-324,110, +Tuesday,01/04/2011 13:00,0,162,40,36,64,100,398,-258,140, +Tuesday,01/04/2011 14:00,4,130,40,36,66,100,372,-180,192, +Tuesday,01/04/2011 15:00,8,130,42,40,64,100,382,-238,144, +Tuesday,01/04/2011 16:00,4,162,38,44,60,100,404,-92,312, +Tuesday,01/04/2011 17:00,0,194,38,64,56,100,448,-4,444, +Tuesday,01/04/2011 18:00,0,290,38,68,46,100,542,0,542, +Tuesday,01/04/2011 19:00,0,0,12,48,36,98,194,0,194, +Tuesday,01/04/2011 20:00,0,0,6,48,36,100,188,0,188, +Tuesday,01/04/2011 21:00,0,0,8,34,34,98,174,2,176, +Tuesday,01/04/2011 22:00,0,0,6,26,36,100,168,0,168, +Tuesday,01/04/2011 23:00,0,0,6,20,32,100,156,0,156, +Wednesday,01/05/2011 00:00,0,0,8,10,34,100,150,0,150, +Wednesday,01/05/2011 01:00,0,34,4,6,32,100,174,0,174, +Wednesday,01/05/2011 02:00,0,32,6,6,36,100,178,0,178, +Wednesday,01/05/2011 03:00,0,32,8,8,32,100,176,2,178, +Wednesday,01/05/2011 04:00,0,66,6,8,34,100,212,0,212, +Wednesday,01/05/2011 05:00,0,0,6,8,34,100,146,0,146, +Wednesday,01/05/2011 06:00,0,1096,14,14,34,98,1254,0,1254, +Wednesday,01/05/2011 07:00,0,1032,32,24,36,100,1224,0,1224, +Wednesday,01/05/2011 08:00,0,806,34,42,46,100,1026,-6,1020, +Wednesday,01/05/2011 09:00,0,548,34,46,60,100,786,-96,690, +Wednesday,01/05/2011 10:00,0,388,38,60,62,100,646,-42,604, +Wednesday,01/05/2011 11:00,0,388,36,48,66,98,634,-58,576, +Wednesday,01/05/2011 12:00,0,258,38,42,68,100,504,-206,298, +Wednesday,01/05/2011 13:00,0,258,38,50,68,100,514,-58,456, +Wednesday,01/05/2011 14:00,0,290,38,58,64,100,548,-38,510, +Wednesday,01/05/2011 15:00,0,290,38,56,64,100,548,-62,486, +Wednesday,01/05/2011 16:00,0,290,36,48,60,100,534,-94,440, +Wednesday,01/05/2011 17:00,0,258,36,58,56,100,506,-16,490, +Wednesday,01/05/2011 18:00,0,290,36,62,50,100,534,2,536, +Wednesday,01/05/2011 19:00,0,0,12,50,38,100,198,0,198, +Wednesday,01/05/2011 20:00,0,0,6,48,42,100,194,0,194, +Wednesday,01/05/2011 21:00,0,64,6,38,34,102,244,0,244, +Wednesday,01/05/2011 22:00,0,98,8,32,36,98,270,0,270, +Wednesday,01/05/2011 23:00,0,162,6,20,34,100,320,0,320, +Thursday,01/06/2011 00:00,0,162,6,6,32,100,304,2,306, +Thursday,01/06/2011 01:00,0,226,8,6,34,102,374,0,374, +Thursday,01/06/2011 02:00,0,258,6,6,32,100,398,0,398, +Thursday,01/06/2011 03:00,0,162,6,4,36,100,304,0,304, +Thursday,01/06/2011 04:00,0,226,6,6,34,102,370,0,370, +Thursday,01/06/2011 05:00,0,194,6,4,32,100,332,0,332, +Thursday,01/06/2011 06:00,0,902,16,14,36,100,1066,2,1068, +Thursday,01/06/2011 07:00,0,806,32,28,38,100,1002,0,1002, +Thursday,01/06/2011 08:00,0,646,34,46,46,100,868,-8,860, +Thursday,01/06/2011 09:00,0,386,36,44,58,100,622,-94,528, +Thursday,01/06/2011 10:00,0,226,36,42,66,100,468,-184,284, +Thursday,01/06/2011 11:00,0,98,40,38,70,102,344,-184,160, +Thursday,01/06/2011 12:00,0,96,36,38,68,100,336,-306,30, +Thursday,01/06/2011 13:00,0,66,38,38,68,100,310,-260,50, +Thursday,01/06/2011 14:00,0,64,38,38,66,104,308,-234,74, +Thursday,01/06/2011 15:00,2,34,40,42,66,108,288,-180,108, +Thursday,01/06/2011 16:00,0,64,38,46,64,106,318,-32,286, +Thursday,01/06/2011 17:00,8,98,36,60,54,100,352,-10,342, +Thursday,01/06/2011 18:00,0,162,38,66,46,102,412,0,412, +Thursday,01/06/2011 19:00,0,0,12,50,38,102,200,0,200, +Thursday,01/06/2011 20:00,0,0,6,50,40,102,196,0,196, +Thursday,01/06/2011 21:00,0,0,8,32,34,104,176,0,176, +Thursday,01/06/2011 22:00,0,0,8,28,34,102,172,0,172, +Thursday,01/06/2011 23:00,0,0,6,16,36,102,158,0,158, +Friday,01/07/2011 00:00,0,32,6,4,34,102,176,0,176, +Friday,01/07/2011 01:00,0,32,6,4,34,104,178,0,178, +Friday,01/07/2011 02:00,0,98,6,2,32,104,240,0,240, +Friday,01/07/2011 03:00,0,162,8,4,34,102,306,0,306, +Friday,01/07/2011 04:00,0,162,6,2,32,104,306,0,306, +Friday,01/07/2011 05:00,0,162,6,4,32,102,304,0,304, +Friday,01/07/2011 06:00,0,226,12,12,36,102,386,0,386, +Friday,01/07/2011 07:00,0,484,32,22,34,104,674,0,674, +Friday,01/07/2011 08:00,0,388,32,42,42,102,602,-6,596, +Friday,01/07/2011 09:00,0,226,36,40,60,102,462,-56,406, +Friday,01/07/2011 10:00,0,98,36,38,64,102,336,-104,232, +Friday,01/07/2011 11:00,0,32,38,36,64,100,270,-136,134, +Friday,01/07/2011 12:00,4,0,36,34,64,102,238,-150,88, +Friday,01/07/2011 13:00,0,32,38,32,66,102,268,-146,122, +Friday,01/07/2011 14:00,12,0,38,36,62,102,246,-130,116, +Friday,01/07/2011 15:00,12,32,36,34,60,102,274,-98,176, +Friday,01/07/2011 16:00,12,0,36,42,56,102,246,-50,196, +Friday,01/07/2011 17:00,4,34,36,56,56,102,284,-6,278, +Friday,01/07/2011 18:00,0,64,34,62,40,102,300,0,300, +Friday,01/07/2011 19:00,0,32,10,44,38,102,226,0,226, +Friday,01/07/2011 20:00,0,0,6,38,36,102,180,0,180, +Friday,01/07/2011 21:00,0,32,6,28,38,102,204,0,204, +Friday,01/07/2011 22:00,0,0,8,26,34,102,166,0,166, +Friday,01/07/2011 23:00,0,34,6,14,34,102,186,0,186, +Saturday,01/08/2011 00:00,0,64,6,4,32,102,206,0,206, +Saturday,01/08/2011 01:00,0,98,6,4,34,104,242,0,242, +Saturday,01/08/2011 02:00,0,96,6,4,36,106,246,0,246, +Saturday,01/08/2011 03:00,0,258,6,4,30,102,400,0,400, +Saturday,01/08/2011 04:00,0,258,6,4,34,104,404,0,404, +Saturday,01/08/2011 05:00,0,258,6,4,34,102,402,0,402, +Saturday,01/08/2011 06:00,0,194,6,12,34,102,346,0,346, +Saturday,01/08/2011 07:00,0,290,6,14,32,104,444,0,444, +Saturday,01/08/2011 08:00,0,194,6,4,32,102,336,-8,328, +Saturday,01/08/2011 09:00,0,194,6,4,34,102,338,-58,280, +Saturday,01/08/2011 10:00,0,98,4,6,34,102,242,-104,138, +Saturday,01/08/2011 11:00,0,32,6,4,34,102,176,-136,40, +Saturday,01/08/2011 12:00,0,8,6,4,32,104,152,-154,-2, +Saturday,01/08/2011 13:00,0,22,6,4,28,108,170,-162,8, +Saturday,01/08/2011 14:00,0,2,4,4,28,96,132,-80,52, +Saturday,01/08/2011 15:00,0,0,6,6,30,102,142,-48,94, +Saturday,01/08/2011 16:00,0,34,6,16,32,102,186,-12,174, +Saturday,01/08/2011 17:00,0,32,6,16,34,102,188,0,188, +Saturday,01/08/2011 18:00,0,32,6,10,30,102,178,0,178, +Saturday,01/08/2011 19:00,0,32,6,10,30,104,182,0,182, +Saturday,01/08/2011 20:00,0,66,6,6,34,102,212,0,212, +Saturday,01/08/2011 21:00,0,162,4,8,32,102,306,0,306, +Saturday,01/08/2011 22:00,0,258,6,8,32,102,406,0,406, +Saturday,01/08/2011 23:00,0,226,6,8,30,102,372,0,372, +Sunday,01/09/2011 00:00,0,258,8,4,34,102,404,0,404, +Sunday,01/09/2011 01:00,0,226,6,8,34,102,374,0,374, +Sunday,01/09/2011 02:00,0,258,6,8,32,102,404,0,404, +Sunday,01/09/2011 03:00,0,258,6,6,30,102,400,0,400, +Sunday,01/09/2011 04:00,0,258,8,6,34,102,406,0,406, +Sunday,01/09/2011 05:00,0,258,6,6,32,102,402,0,402, +Sunday,01/09/2011 06:00,0,290,6,10,34,102,440,0,440, +Sunday,01/09/2011 07:00,0,356,8,12,28,102,504,0,504, +Sunday,01/09/2011 08:00,0,354,6,8,34,102,502,0,502, +Sunday,01/09/2011 09:00,0,388,8,4,36,104,538,0,538, +Sunday,01/09/2011 10:00,0,420,6,6,30,100,560,0,560, +Sunday,01/09/2011 11:00,0,452,6,8,34,102,602,0,602, +Sunday,01/09/2011 12:00,0,388,6,6,34,104,534,0,534, +Sunday,01/09/2011 13:00,0,356,8,4,32,100,500,0,500, +Sunday,01/09/2011 14:00,0,194,4,6,32,104,338,0,338, +Sunday,01/09/2011 15:00,0,258,6,8,36,102,410,0,410, +Sunday,01/09/2011 16:00,0,258,6,10,30,102,404,0,404, +Sunday,01/09/2011 17:00,0,322,6,16,34,102,476,0,476, +Sunday,01/09/2011 18:00,0,322,6,10,32,100,470,0,470, +Sunday,01/09/2011 19:00,0,838,6,12,36,104,996,0,996, +Sunday,01/09/2011 20:00,0,1418,10,10,32,102,1570,0,1570, +Sunday,01/09/2011 21:00,0,1000,8,10,36,100,1150,0,1150, +Sunday,01/09/2011 22:00,0,968,8,8,34,102,1118,0,1118, +Sunday,01/09/2011 23:00,0,806,8,8,30,102,954,0,954, +Monday,01/10/2011 00:00,0,678,8,8,34,100,826,0,826, +Monday,01/10/2011 01:00,0,678,8,10,34,100,828,0,828, +Monday,01/10/2011 02:00,0,774,6,10,36,102,926,0,926, +Monday,01/10/2011 03:00,0,806,8,14,32,102,960,0,960, +Monday,01/10/2011 04:00,0,806,8,14,36,102,966,0,966, +Monday,01/10/2011 05:00,0,678,6,8,36,102,828,0,828, +Monday,01/10/2011 06:00,0,1000,14,14,36,100,1162,0,1162, +Monday,01/10/2011 07:00,0,1548,32,20,38,100,1734,0,1734, +Monday,01/10/2011 08:00,0,1418,32,22,38,102,1612,0,1612, +Monday,01/10/2011 09:00,0,902,32,28,46,100,1106,0,1106, +Monday,01/10/2011 10:00,0,614,34,22,54,102,824,0,824, +Monday,01/10/2011 11:00,0,516,34,24,58,100,730,0,730, +Monday,01/10/2011 12:00,0,258,36,26,68,104,490,0,490, +Monday,01/10/2011 13:00,0,356,38,24,66,102,584,0,584, +Monday,01/10/2011 14:00,0,322,36,26,60,102,544,0,544, +Monday,01/10/2011 15:00,8,290,38,30,62,100,526,0,526, +Monday,01/10/2011 16:00,0,356,36,46,58,100,594,0,594, +Monday,01/10/2011 17:00,0,354,38,52,48,102,592,0,592, +Monday,01/10/2011 18:00,0,484,34,56,50,102,722,0,722, +Monday,01/10/2011 19:00,0,290,10,44,42,102,484,0,484, +Monday,01/10/2011 20:00,0,290,6,46,36,102,478,0,478, +Monday,01/10/2011 21:00,0,452,6,38,38,100,632,0,632, +Monday,01/10/2011 22:00,0,548,4,28,36,102,716,0,716, +Monday,01/10/2011 23:00,0,580,6,14,36,102,734,0,734, +Tuesday,01/11/2011 00:00,0,612,6,4,34,100,756,0,756, +Tuesday,01/11/2011 01:00,0,614,8,4,34,102,758,0,758, +Tuesday,01/11/2011 02:00,0,644,4,2,34,102,784,0,784, +Tuesday,01/11/2011 03:00,0,646,4,6,36,102,790,0,790, +Tuesday,01/11/2011 04:00,0,870,6,4,36,102,1016,0,1016, +Tuesday,01/11/2011 05:00,0,936,6,6,34,100,1080,0,1080, +Tuesday,01/11/2011 06:00,0,1032,12,16,38,102,1198,0,1198, +Tuesday,01/11/2011 07:00,0,1452,30,24,40,100,1644,0,1644, +Tuesday,01/11/2011 08:00,0,1192,34,44,48,102,1418,0,1418, +Tuesday,01/11/2011 09:00,0,774,34,40,62,102,1012,0,1012, +Tuesday,01/11/2011 10:00,0,612,38,40,68,100,856,0,856, +Tuesday,01/11/2011 11:00,0,420,38,38,68,102,662,0,662, +Tuesday,01/11/2011 12:00,0,388,38,34,72,102,632,0,632, +Tuesday,01/11/2011 13:00,0,322,38,36,70,102,566,0,566, +Tuesday,01/11/2011 14:00,4,290,40,36,68,102,538,0,538, +Tuesday,01/11/2011 15:00,8,290,40,36,66,102,540,0,540, +Tuesday,01/11/2011 16:00,4,290,38,44,64,102,538,0,538, +Tuesday,01/11/2011 17:00,0,356,38,62,60,102,616,0,616, +Tuesday,01/11/2011 18:00,0,420,38,62,46,100,662,0,662, +Tuesday,01/11/2011 19:00,0,258,12,38,40,102,450,0,450, +Tuesday,01/11/2011 20:00,0,258,6,34,38,102,436,0,436, +Tuesday,01/11/2011 21:00,0,324,4,32,40,102,500,0,500, +Tuesday,01/11/2011 22:00,0,452,6,24,38,100,618,0,618, +Tuesday,01/11/2011 23:00,0,548,6,16,36,102,706,0,706, +Wednesday,01/12/2011 00:00,0,580,6,6,36,102,728,0,728, +Wednesday,01/12/2011 01:00,0,678,6,4,36,100,822,0,822, +Wednesday,01/12/2011 02:00,0,838,4,4,36,102,982,0,982, +Wednesday,01/12/2011 03:00,0,870,6,4,36,102,1016,0,1016, +Wednesday,01/12/2011 04:00,0,902,6,4,36,102,1050,0,1050, +Wednesday,01/12/2011 05:00,0,806,6,4,38,100,952,0,952, +Wednesday,01/12/2011 06:00,0,870,10,14,34,102,1030,0,1030, +Wednesday,01/12/2011 07:00,0,1290,32,24,40,100,1484,0,1484, +Wednesday,01/12/2011 08:00,0,1096,32,40,52,102,1320,0,1320, +Wednesday,01/12/2011 09:00,0,774,36,52,60,100,1020,0,1020, +Wednesday,01/12/2011 10:00,0,612,36,46,64,100,858,0,858, +Wednesday,01/12/2011 11:00,0,548,36,42,66,102,792,0,792, +Wednesday,01/12/2011 12:00,0,420,36,36,68,102,660,-2,658, +Wednesday,01/12/2011 13:00,0,324,40,34,66,102,562,-6,556, +Wednesday,01/12/2011 14:00,0,258,38,32,66,102,494,-8,486, +Wednesday,01/12/2011 15:00,4,258,38,32,62,102,494,-4,490, +Wednesday,01/12/2011 16:00,4,258,38,42,58,100,498,0,498, +Wednesday,01/12/2011 17:00,0,258,36,56,54,102,504,0,504, +Wednesday,01/12/2011 18:00,0,290,36,66,50,102,542,0,542, +Wednesday,01/12/2011 19:00,0,162,10,48,38,102,358,0,358, +Wednesday,01/12/2011 20:00,0,130,6,46,42,102,324,0,324, +Wednesday,01/12/2011 21:00,0,162,8,38,36,102,344,0,344, +Wednesday,01/12/2011 22:00,0,162,8,32,36,102,340,0,340, +Wednesday,01/12/2011 23:00,0,162,6,20,36,100,322,0,322, +Thursday,1/13/2011 0:00,0,226,6,10,34,102,376,0,376, +Thursday,1/13/2011 1:00,0,388,8,8,32,102,536,0,536, +Thursday,1/13/2011 2:00,0,388,6,8,34,102,536,0,536, +Thursday,1/13/2011 3:00,0,322,8,6,34,102,470,0,470, +Thursday,1/13/2011 4:00,0,322,8,4,34,104,470,0,470, +Thursday,1/13/2011 5:00,0,388,6,4,34,102,530,0,530, +Thursday,1/13/2011 6:00,0,516,12,14,36,102,680,0,680, +Thursday,1/13/2011 7:00,0,710,30,26,42,102,908,0,908, +Thursday,1/13/2011 8:00,0,548,34,46,44,102,770,0,770, +Thursday,1/13/2011 9:00,0,420,36,50,58,102,662,-2,660, +Thursday,1/13/2011 10:00,0,290,36,40,68,102,536,-8,528, +Thursday,1/13/2011 11:00,0,194,38,36,64,102,432,-20,412, +Thursday,1/13/2011 12:00,0,162,38,36,66,102,402,-30,372, +Thursday,1/13/2011 13:00,8,162,40,30,68,102,406,-38,368, +Thursday,1/13/2011 14:00,6,162,38,34,62,108,408,-42,366, +Thursday,1/13/2011 15:00,6,162,38,34,62,110,410,-48,362, +Thursday,1/13/2011 16:00,6,130,38,40,58,108,378,-34,344, +Thursday,1/13/2011 17:00,16,194,38,54,52,102,454,-8,446, +Thursday,1/13/2011 18:00,0,162,36,64,42,102,404,0,404, +Thursday,1/13/2011 19:00,4,98,10,52,40,100,300,0,300, +Thursday,1/13/2011 20:00,4,96,6,48,38,102,290,0,290, +Thursday,1/13/2011 21:00,4,66,6,30,34,100,236,0,236, +Thursday,1/13/2011 22:00,0,98,4,32,36,104,270,0,270, +Thursday,1/13/2011 23:00,0,130,4,22,32,100,288,0,288, +Friday,1/14/2011 0:00,0,162,6,12,32,102,312,0,312, +Friday,1/14/2011 1:00,0,226,2,6,34,102,368,0,368, +Friday,1/14/2011 2:00,0,226,6,6,34,102,372,0,372, +Friday,1/14/2011 3:00,0,194,4,4,36,102,336,0,336, +Friday,1/14/2011 4:00,0,194,6,4,30,100,332,0,332, +Friday,1/14/2011 5:00,0,130,4,4,36,102,272,0,272, +Friday,1/14/2011 6:00,0,322,10,10,32,102,474,0,474, +Friday,1/14/2011 7:00,0,678,30,20,42,100,868,0,868, +Friday,1/14/2011 8:00,0,516,32,38,42,100,726,-2,724, +Friday,1/14/2011 9:00,0,388,34,40,56,102,618,-44,574, +Friday,1/14/2011 10:00,0,162,36,38,62,100,398,-90,308, +Friday,1/14/2011 11:00,0,162,38,34,62,100,396,-130,266, +Friday,1/14/2011 12:00,4,162,36,32,60,102,394,-150,244, +Friday,1/14/2011 13:00,4,130,38,34,60,102,364,-156,208, +Friday,1/14/2011 14:00,16,162,38,30,60,102,404,-144,260, +Friday,1/14/2011 15:00,2,130,36,32,62,106,366,-108,258, +Friday,1/14/2011 16:00,0,162,38,36,54,102,390,-54,336, +Friday,1/14/2011 17:00,0,194,34,54,46,102,428,-10,418, +Friday,1/14/2011 18:00,0,162,34,60,44,100,398,0,398, +Friday,1/14/2011 19:00,0,130,8,46,36,100,318,0,318, +Friday,1/14/2011 20:00,0,98,4,46,38,102,284,0,284, +Friday,1/14/2011 21:00,0,98,6,38,32,100,274,0,274, +Friday,1/14/2011 22:00,0,96,4,24,34,100,258,0,258, +Friday,1/14/2011 23:00,0,162,6,16,32,102,314,0,314, +Saturday,1/15/2011 0:00,0,162,4,12,32,100,308,0,308, +Saturday,1/15/2011 1:00,0,128,6,8,30,100,270,0,270, +Saturday,1/15/2011 2:00,0,194,4,6,32,102,336,0,336, +Saturday,1/15/2011 3:00,0,162,6,6,30,102,304,0,304, +Saturday,1/15/2011 4:00,0,322,4,6,34,102,468,0,468, +Saturday,1/15/2011 5:00,0,388,6,8,30,102,530,0,530, +Saturday,1/15/2011 6:00,0,356,4,14,32,100,504,0,504, +Saturday,1/15/2011 7:00,0,290,6,16,30,100,440,0,440, +Saturday,1/15/2011 8:00,0,226,2,10,32,102,370,-2,368, +Saturday,1/15/2011 9:00,0,194,6,6,32,102,338,-30,308, +Saturday,1/15/2011 10:00,0,96,2,6,30,102,236,-98,138, +Saturday,1/15/2011 11:00,0,98,6,6,32,102,240,-46,194, +Saturday,1/15/2011 12:00,0,66,6,8,32,100,210,-90,120, +Saturday,1/15/2011 13:00,0,32,8,8,32,102,180,-60,120, +Saturday,1/15/2011 14:00,0,96,8,16,34,102,254,-18,236, +Saturday,1/15/2011 15:00,0,66,10,14,30,100,218,-22,196, +Saturday,1/15/2011 16:00,0,64,6,10,32,100,212,-30,182, +Saturday,1/15/2011 17:00,0,162,8,12,34,104,320,-12,308, +Saturday,1/15/2011 18:00,0,162,4,20,30,100,314,0,314, +Saturday,1/15/2011 19:00,0,258,4,16,32,102,410,0,410, +Saturday,1/15/2011 20:00,0,290,6,10,32,100,436,0,436, +Saturday,1/15/2011 21:00,0,386,4,8,30,100,528,0,528, +Saturday,1/15/2011 22:00,0,420,4,8,30,102,562,0,562, +Saturday,1/15/2011 23:00,0,420,6,8,32,102,564,0,564, +Sunday,1/16/2011 0:00,0,324,4,6,32,100,464,0,464, +Sunday,1/16/2011 1:00,0,322,6,4,30,102,462,0,462, +Sunday,1/16/2011 2:00,0,258,6,6,32,100,400,0,400, +Sunday,1/16/2011 3:00,0,258,4,6,30,102,398,0,398, +Sunday,1/16/2011 4:00,0,386,6,6,34,100,530,0,530, +Sunday,1/16/2011 5:00,0,516,6,6,30,100,656,0,656, +Sunday,1/16/2011 6:00,0,420,4,12,30,100,564,0,564, +Sunday,1/16/2011 7:00,0,290,6,14,30,102,442,0,442, +Sunday,1/16/2011 8:00,0,226,2,6,30,102,364,-4,360, +Sunday,1/16/2011 9:00,0,194,6,6,34,100,336,-54,282, +Sunday,1/16/2011 10:00,0,162,2,8,32,102,302,-74,228, +Sunday,1/16/2011 11:00,0,66,6,10,30,100,212,-58,154, +Sunday,1/16/2011 12:00,0,96,4,6,32,100,236,-64,172, +Sunday,1/16/2011 13:00,0,98,4,8,32,100,238,-52,186, +Sunday,1/16/2011 14:00,0,130,6,12,30,102,278,-40,238, +Sunday,1/16/2011 15:00,0,130,4,6,32,100,270,-46,224, +Sunday,1/16/2011 16:00,0,130,4,12,30,102,276,-20,256, +Sunday,1/16/2011 17:00,0,162,6,8,32,100,306,-10,296, +Sunday,1/16/2011 18:00,0,162,2,12,34,102,308,0,308, +Sunday,1/16/2011 19:00,0,130,6,8,28,102,270,0,270, +Sunday,1/16/2011 20:00,0,226,2,6,30,102,366,0,366, +Sunday,1/16/2011 21:00,0,258,6,4,34,102,402,0,402, +Sunday,1/16/2011 22:00,0,292,4,6,30,102,430,0,430, +Sunday,1/16/2011 23:00,0,194,4,6,32,100,334,0,334, +Monday,1/17/2011 0:00,0,226,4,6,32,100,368,0,368, +Monday,1/17/2011 1:00,0,580,4,6,30,100,720,0,720, +Monday,1/17/2011 2:00,0,452,4,4,34,100,592,0,592, +Monday,1/17/2011 3:00,0,226,4,4,30,102,364,0,364, +Monday,1/17/2011 4:00,0,226,4,4,34,100,366,0,366, +Monday,1/17/2011 5:00,0,388,6,4,34,100,528,0,528, +Monday,1/17/2011 6:00,0,420,12,12,32,100,574,0,574, +Monday,1/17/2011 7:00,0,548,32,30,36,102,746,0,746, +Monday,1/17/2011 8:00,0,420,34,50,48,100,652,-6,646, +Monday,1/17/2011 9:00,0,258,34,52,64,102,508,-44,464, +Monday,1/17/2011 10:00,0,162,38,50,66,102,414,-64,350, +Monday,1/17/2011 11:00,0,162,36,50,66,102,412,-68,344, +Monday,1/17/2011 12:00,0,162,38,46,72,102,418,-118,300, +Monday,1/17/2011 13:00,0,162,40,40,66,104,410,-114,296, +Monday,1/17/2011 14:00,0,162,40,42,68,102,412,-122,290, +Monday,1/17/2011 15:00,0,130,40,44,68,104,382,-110,272, +Monday,1/17/2011 16:00,0,162,38,48,66,102,414,-66,348, +Monday,1/17/2011 17:00,0,130,36,60,52,102,378,-10,368, +Monday,1/17/2011 18:00,0,162,36,66,48,102,412,0,412, +Monday,1/17/2011 19:00,0,64,8,48,40,100,258,0,258, +Monday,1/17/2011 20:00,0,32,6,50,36,104,226,0,226, +Monday,1/17/2011 21:00,0,98,4,38,40,102,278,0,278, +Monday,1/17/2011 22:00,0,98,4,28,34,102,264,0,264, +Monday,1/17/2011 23:00,0,128,4,18,36,102,286,0,286, +Tuesday,1/18/2011 0:00,0,98,4,8,32,102,242,0,242, +Tuesday,1/18/2011 1:00,0,162,4,4,36,100,304,0,304, +Tuesday,1/18/2011 2:00,0,226,4,6,32,102,370,0,370, +Tuesday,1/18/2011 3:00,0,194,6,4,34,102,338,0,338, +Tuesday,1/18/2011 4:00,0,290,4,4,34,102,434,0,434, +Tuesday,1/18/2011 5:00,0,324,6,2,32,100,464,0,464, +Tuesday,1/18/2011 6:00,0,388,8,10,34,102,540,0,540, +Tuesday,1/18/2011 7:00,0,548,32,26,42,100,746,0,746, +Tuesday,1/18/2011 8:00,0,484,32,34,50,102,700,-8,692, +Tuesday,1/18/2011 9:00,0,290,34,38,60,100,520,-64,456, +Tuesday,1/18/2011 10:00,0,194,36,42,70,102,440,-98,342, +Tuesday,1/18/2011 11:00,0,162,38,36,68,100,402,-146,256, +Tuesday,1/18/2011 12:00,0,194,36,38,70,102,438,-160,278, +Tuesday,1/18/2011 13:00,0,130,38,40,70,102,378,-86,292, +Tuesday,1/18/2011 14:00,0,162,40,52,70,102,422,-58,364, +Tuesday,1/18/2011 15:00,0,194,36,50,68,100,446,-70,376, +Tuesday,1/18/2011 16:00,0,162,36,52,60,102,408,-62,346, +Tuesday,1/18/2011 17:00,0,130,36,60,58,104,384,-14,370, +Tuesday,1/18/2011 18:00,0,194,34,66,46,98,436,0,436, +Tuesday,1/18/2011 19:00,0,64,12,44,40,102,260,0,260, +Tuesday,1/18/2011 20:00,0,66,2,40,42,100,246,0,246, +Tuesday,1/18/2011 21:00,0,96,6,34,34,100,270,0,270, +Tuesday,1/18/2011 22:00,0,162,4,30,36,102,332,0,332, +Tuesday,1/18/2011 23:00,0,162,4,20,34,100,320,0,320, +Wednesday,1/19/2011 0:00,0,194,4,4,36,100,336,0,336, +Wednesday,1/19/2011 1:00,0,258,4,6,34,102,402,0,402, +Wednesday,1/19/2011 2:00,0,322,6,4,34,100,466,0,466, +Wednesday,1/19/2011 3:00,0,356,4,4,34,102,498,0,498, +Wednesday,1/19/2011 4:00,0,354,4,4,36,100,496,0,496, +Wednesday,1/19/2011 5:00,0,420,6,4,34,102,564,0,564, +Wednesday,1/19/2011 6:00,0,548,10,14,36,100,708,0,708, +Wednesday,1/19/2011 7:00,0,742,32,28,40,100,938,0,938, +Wednesday,1/19/2011 8:00,0,516,24,32,36,100,706,0,706, +Wednesday,1/19/2011 9:00,0,580,36,52,60,100,826,-22,804, +Wednesday,1/19/2011 10:00,0,290,36,46,66,102,538,-106,432, +Wednesday,1/19/2011 11:00,0,162,36,38,66,100,400,-148,252, +Wednesday,1/19/2011 12:00,0,162,38,44,66,102,408,-122,286, +Wednesday,1/19/2011 13:00,0,130,38,46,72,100,386,-62,324, +Wednesday,1/19/2011 14:00,0,128,38,48,64,102,378,-68,310, +Wednesday,1/19/2011 15:00,0,226,36,64,66,102,492,-12,480, +Wednesday,1/19/2011 16:00,0,356,38,70,62,100,622,-4,618, +Wednesday,1/19/2011 17:00,0,420,38,66,58,100,680,0,680, +Wednesday,1/19/2011 18:00,0,386,34,66,46,100,632,0,632, +Wednesday,1/19/2011 19:00,0,258,8,56,42,102,464,0,464, +Wednesday,1/19/2011 20:00,0,258,6,50,38,100,450,0,450, +Wednesday,1/19/2011 21:00,0,258,6,26,38,102,428,0,428, +Wednesday,1/19/2011 22:00,0,322,4,10,36,100,472,0,472, +Wednesday,1/19/2011 23:00,0,452,4,8,36,102,598,0,598, +Thursday,1/20/2011 0:00,0,548,4,8,34,100,694,0,694, +Thursday,1/20/2011 1:00,0,580,8,4,38,102,730,0,730, +Thursday,1/20/2011 2:00,0,646,4,8,34,102,792,0,792, +Thursday,1/20/2011 3:00,0,742,6,6,38,104,892,0,892, +Thursday,1/20/2011 4:00,0,678,4,8,34,100,822,0,822, +Thursday,1/20/2011 5:00,0,806,6,12,36,102,960,0,960, +Thursday,1/20/2011 6:00,0,870,12,16,36,102,1034,0,1034, +Thursday,1/20/2011 7:00,0,1194,30,24,40,102,1386,0,1386, +Thursday,1/20/2011 8:00,0,1128,32,38,46,100,1344,0,1344, +Thursday,1/20/2011 9:00,0,710,36,40,56,102,940,-2,938, +Thursday,1/20/2011 10:00,0,484,34,40,66,102,722,-10,712, +Thursday,1/20/2011 11:00,0,322,34,38,66,102,562,-16,546, +Thursday,1/20/2011 12:00,0,258,38,34,68,100,496,-22,474, +Thursday,1/20/2011 13:00,0,194,36,36,72,102,438,-32,406, +Thursday,1/20/2011 14:00,0,162,38,34,64,102,396,-66,330, +Thursday,1/20/2011 15:00,0,194,36,32,64,100,426,-104,322, +Thursday,1/20/2011 16:00,0,194,36,44,58,102,434,-68,366, +Thursday,1/20/2011 17:00,0,194,34,58,50,100,434,-16,418, +Thursday,1/20/2011 18:00,0,226,32,64,46,102,468,0,468, +Thursday,1/20/2011 19:00,0,130,10,52,38,100,328,0,328, +Thursday,1/20/2011 20:00,0,96,6,44,38,100,284,0,284, +Thursday,1/20/2011 21:00,0,194,4,36,38,100,372,0,372, +Thursday,1/20/2011 22:00,0,194,4,26,38,102,362,0,362, +Thursday,1/20/2011 23:00,0,194,6,22,36,102,356,0,356, +Friday,1/21/2011 0:00,0,162,4,8,34,102,308,0,308, +Friday,1/21/2011 1:00,0,194,6,4,34,102,338,0,338, +Friday,1/21/2011 2:00,0,322,4,4,36,100,466,0,466, +Friday,1/21/2011 3:00,0,388,6,4,34,102,530,0,530, +Friday,1/21/2011 4:00,0,354,6,4,36,102,500,0,500, +Friday,1/21/2011 5:00,0,452,6,4,36,100,596,0,596, +Friday,1/21/2011 6:00,0,678,10,10,34,102,832,0,832, +Friday,1/21/2011 7:00,0,806,32,22,40,100,996,0,996, +Friday,1/21/2011 8:00,0,614,32,36,46,102,828,-2,826, +Friday,1/21/2011 9:00,0,354,34,44,60,102,592,-50,542, +Friday,1/21/2011 10:00,0,194,36,40,64,100,434,-106,328, +Friday,1/21/2011 11:00,0,96,34,38,66,102,336,-148,188, +Friday,1/21/2011 12:00,0,98,36,38,66,100,336,-170,166, +Friday,1/21/2011 13:00,0,64,36,34,66,102,302,-172,130, +Friday,1/21/2011 14:00,0,66,36,34,62,102,298,-158,140, +Friday,1/21/2011 15:00,0,98,38,32,62,100,328,-132,196, +Friday,1/21/2011 16:00,0,128,36,38,60,102,364,-84,280, +Friday,1/21/2011 17:00,0,98,36,42,56,100,330,-26,304, +Friday,1/21/2011 18:00,0,162,34,46,48,100,386,0,386, +Friday,1/21/2011 19:00,0,98,10,38,44,102,288,0,288, +Friday,1/21/2011 20:00,0,98,6,36,40,100,278,0,278, +Friday,1/21/2011 21:00,0,96,6,32,36,100,268,0,268, +Friday,1/21/2011 22:00,0,66,6,36,38,102,244,0,244, +Friday,1/21/2011 23:00,0,98,6,20,36,102,258,0,258, +Saturday,1/22/2011 0:00,0,96,2,8,34,100,238,0,238, +Saturday,1/22/2011 1:00,0,130,4,4,34,102,272,0,272, +Saturday,1/22/2011 2:00,0,322,6,4,34,102,466,0,466, +Saturday,1/22/2011 3:00,0,324,4,6,32,102,464,0,464, +Saturday,1/22/2011 4:00,0,452,4,4,36,102,596,0,596, +Saturday,1/22/2011 5:00,0,322,4,4,34,102,464,0,464, +Saturday,1/22/2011 6:00,0,258,4,10,34,100,404,0,404, +Saturday,1/22/2011 7:00,0,290,4,12,32,104,440,0,440, +Saturday,1/22/2011 8:00,0,356,6,8,34,100,502,-2,500, +Saturday,1/22/2011 9:00,0,162,6,6,34,102,308,-54,254, +Saturday,1/22/2011 10:00,0,96,4,4,34,102,236,-108,128, +Saturday,1/22/2011 11:00,0,34,4,4,30,102,172,-148,24, +Saturday,1/22/2011 12:00,0,0,8,4,36,102,148,-168,-20, +Saturday,1/22/2011 13:00,0,32,6,4,32,102,176,-176,0, +Saturday,1/22/2011 14:00,0,32,6,4,32,102,176,-162,14, +Saturday,1/22/2011 15:00,0,32,6,6,32,102,178,-134,44, +Saturday,1/22/2011 16:00,0,34,4,10,34,102,182,-76,106, +Saturday,1/22/2011 17:00,0,32,4,10,36,102,182,-28,154, +Saturday,1/22/2011 18:00,0,32,4,16,32,102,184,0,184, +Saturday,1/22/2011 19:00,0,162,4,14,32,100,310,0,310, +Saturday,1/22/2011 20:00,0,162,6,10,36,100,312,0,312, +Saturday,1/22/2011 21:00,0,194,4,12,30,102,340,0,340, +Saturday,1/22/2011 22:00,0,290,4,8,34,102,438,0,438, +Saturday,1/22/2011 23:00,0,484,6,10,32,102,632,0,632, +Sunday,1/23/2011 0:00,0,420,6,8,34,100,564,0,564, +Sunday,1/23/2011 1:00,0,388,6,6,34,100,532,0,532, +Sunday,1/23/2011 2:00,0,356,6,8,32,102,502,0,502, +Sunday,1/23/2011 3:00,0,452,4,6,32,102,594,0,594, +Sunday,1/23/2011 4:00,0,420,4,6,36,102,566,0,566, +Sunday,1/23/2011 5:00,0,388,6,6,34,100,530,0,530, +Sunday,1/23/2011 6:00,0,484,4,10,34,102,630,0,630, +Sunday,1/23/2011 7:00,0,484,6,12,32,100,632,0,632, +Sunday,1/23/2011 8:00,0,548,6,8,32,102,694,-4,690, +Sunday,1/23/2011 9:00,0,356,6,6,36,100,502,-54,448, +Sunday,1/23/2011 10:00,0,130,4,4,34,100,270,-110,160, +Sunday,1/23/2011 11:00,0,32,2,6,32,102,172,-140,32, +Sunday,1/23/2011 12:00,0,0,6,4,36,100,144,-160,-16, +Sunday,1/23/2011 13:00,0,32,6,6,32,100,176,-92,84, +Sunday,1/23/2011 14:00,0,66,4,8,34,102,212,-64,148, +Sunday,1/23/2011 15:00,0,64,6,12,34,100,214,-32,182, +Sunday,1/23/2011 16:00,0,98,4,18,34,102,254,-16,238, +Sunday,1/23/2011 17:00,0,226,6,14,36,100,380,-6,374, +Sunday,1/23/2011 18:00,0,258,6,16,30,100,408,0,408, +Sunday,1/23/2011 19:00,0,356,6,16,36,100,512,0,512, +Sunday,1/23/2011 20:00,0,258,6,18,34,102,416,0,416, +Sunday,1/23/2011 21:00,0,258,4,16,32,100,408,0,408, +Sunday,1/23/2011 22:00,0,226,4,8,36,102,374,0,374, +Sunday,1/23/2011 23:00,0,226,6,6,34,100,370,0,370, +Monday,1/24/2011 0:00,0,290,4,6,32,100,432,0,432, +Monday,1/24/2011 1:00,0,388,4,6,32,102,530,0,530, +Monday,1/24/2011 2:00,0,484,6,6,36,102,632,0,632, +Monday,1/24/2011 3:00,0,452,6,6,32,100,594,0,594, +Monday,1/24/2011 4:00,0,420,4,4,32,102,558,0,558, +Monday,1/24/2011 5:00,0,388,6,6,34,102,534,0,534, +Monday,1/24/2011 6:00,0,548,10,12,36,102,706,0,706, +Monday,1/24/2011 7:00,0,1000,34,24,38,102,1196,0,1196, +Monday,1/24/2011 8:00,0,742,34,44,48,100,964,0,964, +Monday,1/24/2011 9:00,0,614,36,52,60,102,862,-8,854, +Monday,1/24/2011 10:00,0,420,36,58,68,102,682,-32,650, +Monday,1/24/2011 11:00,0,290,36,58,68,102,552,-38,514, +Monday,1/24/2011 12:00,0,194,36,36,70,104,438,-146,292, +Monday,1/24/2011 13:00,0,162,36,44,74,102,414,-74,340, +Monday,1/24/2011 14:00,0,258,46,50,84,102,538,-134,404, +Monday,1/24/2011 15:00,0,130,36,50,70,102,384,-48,336, +Monday,1/24/2011 16:00,0,162,36,50,64,100,410,-42,368, +Monday,1/24/2011 17:00,0,162,36,56,60,102,412,-16,396, +Monday,1/24/2011 18:00,0,194,36,60,48,102,438,0,438, +Monday,1/24/2011 19:00,0,162,8,50,46,100,364,0,364, +Monday,1/24/2011 20:00,0,258,6,44,38,102,446,0,446, +Monday,1/24/2011 21:00,0,226,6,36,38,102,406,0,406, +Monday,1/24/2011 22:00,0,324,4,28,36,102,492,0,492, +Monday,1/24/2011 23:00,0,322,4,14,38,102,478,0,478, +Tuesday,1/25/2011 0:00,0,516,6,8,38,102,668,0,668, +Tuesday,1/25/2011 1:00,0,516,6,6,34,102,660,0,660, +Tuesday,1/25/2011 2:00,0,580,4,4,36,102,724,0,724, +Tuesday,1/25/2011 3:00,0,614,6,6,34,102,760,0,760, +Tuesday,1/25/2011 4:00,0,742,6,2,38,102,886,0,886, +Tuesday,1/25/2011 5:00,0,710,4,8,38,100,858,0,858, +Tuesday,1/25/2011 6:00,0,742,12,8,34,102,896,0,896, +Tuesday,1/25/2011 7:00,0,1256,34,22,44,100,1452,0,1452, +Tuesday,1/25/2011 8:00,0,1096,34,46,52,102,1328,-12,1316, +Tuesday,1/25/2011 9:00,0,548,34,52,64,104,802,-80,722, +Tuesday,1/25/2011 10:00,0,388,36,52,70,102,644,-118,526, +Tuesday,1/25/2011 11:00,0,98,36,54,70,102,358,-106,252, +Tuesday,1/25/2011 12:00,0,226,36,48,72,102,482,-138,344, +Tuesday,1/25/2011 13:00,0,226,38,48,74,102,488,-126,362, +Tuesday,1/25/2011 14:00,0,194,38,54,66,102,452,-70,382, +Tuesday,1/25/2011 15:00,0,162,40,56,72,102,430,-50,380, +Tuesday,1/25/2011 16:00,0,98,36,58,62,102,354,-52,302, +Tuesday,1/25/2011 17:00,0,162,36,58,60,102,416,-10,406, +Tuesday,1/25/2011 18:00,0,290,36,62,46,102,534,0,534, +Tuesday,1/25/2011 19:00,0,66,10,52,40,102,268,0,268, +Tuesday,1/25/2011 20:00,0,194,6,48,38,102,384,0,384, +Tuesday,1/25/2011 21:00,0,130,4,28,38,102,300,0,300, +Tuesday,1/25/2011 22:00,0,64,6,30,38,102,238,0,238, +Tuesday,1/25/2011 23:00,0,162,2,20,38,102,322,0,322, +Wednesday,1/26/2011 0:00,0,258,8,6,34,102,406,0,406, +Wednesday,1/26/2011 1:00,0,324,2,6,36,102,468,0,468, +Wednesday,1/26/2011 2:00,0,386,6,4,36,104,534,0,534, +Wednesday,1/26/2011 3:00,0,388,6,4,36,102,532,0,532, +Wednesday,1/26/2011 4:00,0,420,4,6,38,102,568,0,568, +Wednesday,1/26/2011 5:00,0,420,6,4,36,102,566,0,566, +Wednesday,1/26/2011 6:00,0,484,10,8,36,102,638,0,638, +Wednesday,1/26/2011 7:00,0,774,30,22,48,102,974,0,974, +Wednesday,1/26/2011 8:00,0,646,34,38,50,102,866,-2,864, +Wednesday,1/26/2011 9:00,0,484,34,48,62,102,728,-36,692, +Wednesday,1/26/2011 10:00,0,258,38,40,72,102,508,-114,394, +Wednesday,1/26/2011 11:00,0,130,36,36,68,100,368,-154,214, +Wednesday,1/26/2011 12:00,0,98,38,34,72,102,342,-166,176, +Wednesday,1/26/2011 13:00,0,194,38,30,70,102,432,-166,266, +Wednesday,1/26/2011 14:00,0,98,38,32,66,102,334,-148,186, +Wednesday,1/26/2011 15:00,0,98,38,32,66,102,332,-116,216, +Wednesday,1/26/2011 16:00,0,226,38,38,62,102,466,-70,396, +Wednesday,1/26/2011 17:00,0,0,38,52,56,102,246,-18,228, +Wednesday,1/26/2011 18:00,0,194,36,62,48,102,440,0,440, +Wednesday,1/26/2011 19:00,0,194,10,42,42,100,386,0,386, +Wednesday,1/26/2011 20:00,0,162,6,50,42,102,358,0,358, +Wednesday,1/26/2011 21:00,0,98,6,44,36,102,284,0,284, +Wednesday,1/26/2011 22:00,0,130,6,34,40,102,310,0,310, +Wednesday,1/26/2011 23:00,0,226,6,20,36,100,386,0,386, +Thursday,1/27/2011 0:00,0,194,4,6,38,102,344,0,344, +Thursday,1/27/2011 1:00,0,162,4,6,36,100,306,0,306, +Thursday,1/27/2011 2:00,0,226,4,6,34,102,370,0,370, +Thursday,1/27/2011 3:00,0,194,4,4,36,102,340,0,340, +Thursday,1/27/2011 4:00,0,226,4,4,36,102,370,0,370, +Thursday,1/27/2011 5:00,0,194,6,6,36,102,342,0,342, +Thursday,1/27/2011 6:00,0,484,10,4,34,100,630,0,630, +Thursday,1/27/2011 7:00,0,678,30,20,46,102,876,0,876, +Thursday,1/27/2011 8:00,0,548,34,36,50,102,768,-10,758, +Thursday,1/27/2011 9:00,0,290,34,40,60,102,524,-62,462, +Thursday,1/27/2011 10:00,0,32,36,38,68,102,274,-112,162, +Thursday,1/27/2011 11:00,0,162,40,34,70,104,406,-148,258, +Thursday,1/27/2011 12:00,0,226,38,34,68,102,468,-202,266, +Thursday,1/27/2011 13:00,0,130,38,30,70,102,368,-262,106, +Thursday,1/27/2011 14:00,0,64,40,36,64,102,306,-206,100, +Thursday,1/27/2011 15:00,0,226,40,38,62,102,466,-182,284, +Thursday,1/27/2011 16:00,0,162,40,42,62,102,406,-134,272, +Thursday,1/27/2011 17:00,0,66,36,54,54,102,310,-32,278, +Thursday,1/27/2011 18:00,0,194,36,60,44,102,434,0,434, +Thursday,1/27/2011 19:00,0,162,12,48,38,102,360,0,360, +Thursday,1/27/2011 20:00,0,0,4,44,38,100,186,0,186, +Thursday,1/27/2011 21:00,0,162,4,30,36,102,330,0,330, +Thursday,1/27/2011 22:00,0,34,4,24,36,102,198,0,198, +Thursday,1/27/2011 23:00,0,194,4,16,34,102,348,0,348, +Friday,1/28/2011 0:00,0,98,4,8,34,100,242,0,242, +Friday,1/28/2011 1:00,0,96,6,4,36,102,244,0,244, +Friday,1/28/2011 2:00,0,162,4,4,34,102,306,0,306, +Friday,1/28/2011 3:00,0,194,4,4,34,102,338,0,338, +Friday,1/28/2011 4:00,0,0,4,4,34,102,142,0,142, +Friday,1/28/2011 5:00,0,226,4,4,34,102,368,0,368, +Friday,1/28/2011 6:00,0,258,8,6,36,102,406,0,406, +Friday,1/28/2011 7:00,0,388,32,22,42,100,582,0,582, +Friday,1/28/2011 8:00,0,388,32,36,50,102,606,-16,590, +Friday,1/28/2011 9:00,0,290,34,40,58,102,524,-106,418, +Friday,1/28/2011 10:00,0,130,38,42,66,100,372,-194,178, +Friday,1/28/2011 11:00,0,194,38,38,64,104,434,-250,184, +Friday,1/28/2011 12:00,0,0,38,32,66,102,236,-282,-46, +Friday,1/28/2011 13:00,0,66,36,30,64,102,296,-264,32, +Friday,1/28/2011 14:00,0,96,38,32,60,106,330,-248,82, +Friday,1/28/2011 15:00,8,0,40,32,60,110,250,-200,50, +Friday,1/28/2011 16:00,4,0,36,40,58,110,246,-124,122, +Friday,1/28/2011 17:00,20,0,36,50,50,108,262,-32,230, +Friday,1/28/2011 18:00,0,324,38,58,42,104,564,0,564, +Friday,1/28/2011 19:00,0,32,8,38,38,102,218,0,218, +Friday,1/28/2011 20:00,0,0,6,36,34,102,176,0,176, +Friday,1/28/2011 21:00,0,0,4,28,34,104,168,0,168, +Friday,1/28/2011 22:00,0,0,6,18,34,102,158,0,158, +Friday,1/28/2011 23:00,0,194,6,8,34,102,342,0,342, +Saturday,1/29/2011 0:00,0,98,6,6,32,102,242,0,242, +Saturday,1/29/2011 1:00,0,0,4,4,32,102,140,0,140, +Saturday,1/29/2011 2:00,0,194,4,4,34,102,334,0,334, +Saturday,1/29/2011 3:00,0,0,6,2,32,104,144,0,144, +Saturday,1/29/2011 4:00,0,258,6,4,32,102,400,0,400, +Saturday,1/29/2011 5:00,0,66,4,2,34,102,206,0,206, +Saturday,1/29/2011 6:00,0,162,6,6,32,102,306,0,306, +Saturday,1/29/2011 7:00,0,194,4,6,32,102,336,0,336, +Saturday,1/29/2011 8:00,0,32,4,6,30,102,172,-16,156, +Saturday,1/29/2011 9:00,0,162,6,4,36,100,306,-144,162, +Saturday,1/29/2011 10:00,0,0,6,4,32,102,142,-228,-86, +Saturday,1/29/2011 11:00,0,0,4,4,34,102,140,-138,2, +Saturday,1/29/2011 12:00,0,0,4,4,32,102,142,-166,-24, +Saturday,1/29/2011 13:00,0,0,6,2,34,102,142,-300,-158, +Saturday,1/29/2011 14:00,0,226,6,2,32,102,368,-272,96, +Saturday,1/29/2011 15:00,0,0,6,6,36,104,150,-216,-66, +Saturday,1/29/2011 16:00,0,0,8,2,34,102,144,-132,12, +Saturday,1/29/2011 17:00,8,194,8,10,30,102,350,-38,312, +Saturday,1/29/2011 18:00,0,34,4,10,32,102,180,0,180, +Saturday,1/29/2011 19:00,0,0,4,10,32,102,148,0,148, +Saturday,1/29/2011 20:00,0,226,4,8,36,102,374,0,374, +Saturday,1/29/2011 21:00,0,66,6,8,32,102,210,0,210, +Saturday,1/29/2011 22:00,0,130,4,2,30,100,266,0,266, +Saturday,1/29/2011 23:00,0,258,6,2,30,102,396,0,396, +Sunday,1/30/2011 0:00,0,0,4,4,36,102,144,0,144, +Sunday,1/30/2011 1:00,0,226,6,2,30,102,364,0,364, +Sunday,1/30/2011 2:00,0,290,6,6,32,102,434,0,434, +Sunday,1/30/2011 3:00,0,646,6,2,34,102,788,0,788, +Sunday,1/30/2011 4:00,0,420,4,4,32,102,558,0,558, +Sunday,1/30/2011 5:00,0,354,6,4,34,102,498,0,498, +Sunday,1/30/2011 6:00,0,356,6,4,32,102,498,0,498, +Sunday,1/30/2011 7:00,0,162,6,6,32,102,306,0,306, +Sunday,1/30/2011 8:00,0,420,4,4,34,102,560,-6,554, +Sunday,1/30/2011 9:00,0,290,6,2,32,102,430,-102,328, +Sunday,1/30/2011 10:00,0,0,4,6,32,102,142,-144,-2, +Sunday,1/30/2011 11:00,0,0,6,6,34,102,144,-140,4, +Sunday,1/30/2011 12:00,0,258,4,6,34,102,402,-154,248, +Sunday,1/30/2011 13:00,0,0,4,6,32,102,142,-172,-30, +Sunday,1/30/2011 14:00,0,0,6,6,30,102,142,-172,-30, +Sunday,1/30/2011 15:00,0,258,4,4,36,102,404,-116,288, +Sunday,1/30/2011 16:00,0,0,4,8,34,102,146,-40,106, +Sunday,1/30/2011 17:00,0,226,6,10,30,102,372,-38,334, +Sunday,1/30/2011 18:00,0,0,4,6,32,102,144,0,144, +Sunday,1/30/2011 19:00,0,324,8,10,34,100,474,0,474, +Sunday,1/30/2011 20:00,0,322,6,8,34,102,470,0,470, +Sunday,1/30/2011 21:00,0,420,4,8,32,100,562,0,562, +Sunday,1/30/2011 22:00,0,452,6,4,34,102,596,0,596, +Sunday,1/30/2011 23:00,0,388,6,2,32,102,526,0,526, +Monday,1/31/2011 0:00,0,452,4,4,32,102,592,0,592, +Monday,1/31/2011 1:00,0,452,6,4,34,102,596,0,596, +Monday,1/31/2011 2:00,0,388,8,4,32,102,532,0,532, +Monday,1/31/2011 3:00,0,356,6,2,32,102,496,0,496, +Monday,1/31/2011 4:00,0,420,4,4,36,102,564,0,564, +Monday,1/31/2011 5:00,0,452,6,6,32,100,594,0,594, +Monday,1/31/2011 6:00,0,612,12,6,34,104,768,0,768, +Monday,1/31/2011 7:00,0,1418,32,24,36,102,1610,0,1610, +Monday,1/31/2011 8:00,4,1194,36,42,48,102,1422,0,1422, +Monday,1/31/2011 9:00,0,838,34,62,62,100,1096,-6,1090, +Monday,1/31/2011 10:00,0,516,36,68,66,102,788,-18,770, +Monday,1/31/2011 11:00,0,580,38,68,68,102,854,-18,836, +Monday,1/31/2011 12:00,0,548,36,60,70,102,814,-20,794, +Monday,1/31/2011 13:00,0,548,38,60,72,102,816,-20,796, +Monday,1/31/2011 14:00,0,710,38,54,62,102,962,-18,944, +Monday,1/31/2011 15:00,0,420,38,60,64,102,682,-6,676, +Monday,1/31/2011 16:00,0,742,36,62,56,100,994,-4,990, +Monday,1/31/2011 17:00,0,580,34,62,48,104,828,-2,826, +Monday,1/31/2011 18:00,0,548,34,60,44,100,784,0,784, +Monday,1/31/2011 19:00,0,838,12,36,42,100,1026,0,1026, +Monday,1/31/2011 20:00,0,420,8,32,38,104,598,0,598, +Monday,1/31/2011 21:00,0,1032,10,28,38,100,1206,0,1206, +Monday,1/31/2011 22:00,0,1000,8,16,38,102,1160,0,1160, +Monday,1/31/2011 23:00,0,1000,8,4,34,102,1146,0,1146, +Tuesday,02/01/2011 00:00,0,968,8,4,36,100,1114,0,1114, +Tuesday,02/01/2011 01:00,0,646,8,4,34,102,794,0,794, +Tuesday,02/01/2011 02:00,0,968,8,4,36,100,1114,0,1114, +Tuesday,02/01/2011 03:00,0,354,10,4,34,102,502,0,502, +Tuesday,02/01/2011 04:00,0,1322,8,4,36,102,1472,0,1472, +Tuesday,02/01/2011 05:00,0,1000,8,6,38,102,1150,0,1150, +Tuesday,02/01/2011 06:00,0,1194,12,8,36,102,1350,0,1350, +Tuesday,02/01/2011 07:00,0,1612,26,18,38,100,1792,0,1792, +Tuesday,02/01/2011 08:00,0,1580,34,28,38,102,1780,-2,1778, +Tuesday,02/01/2011 09:00,0,1386,36,28,54,102,1604,-8,1596, +Tuesday,02/01/2011 10:00,0,1032,34,30,50,102,1246,-16,1230, +Tuesday,02/01/2011 11:00,0,870,34,30,60,102,1094,-16,1078, +Tuesday,02/01/2011 12:00,0,774,34,28,58,102,994,-24,970, +Tuesday,02/01/2011 13:00,0,646,36,30,62,102,872,-22,850, +Tuesday,02/01/2011 14:00,0,612,34,28,58,102,834,-24,810, +Tuesday,02/01/2011 15:00,0,452,36,30,58,102,674,-16,658, +Tuesday,02/01/2011 16:00,0,678,36,36,52,102,902,-8,894, +Tuesday,02/01/2011 17:00,0,742,36,46,50,102,974,-2,972, +Tuesday,02/01/2011 18:00,0,902,36,50,44,102,1132,0,1132, +Tuesday,02/01/2011 19:00,0,354,14,40,42,102,548,0,548, +Tuesday,02/01/2011 20:00,0,904,8,36,40,102,1086,0,1086, +Tuesday,02/01/2011 21:00,0,516,10,26,38,102,690,0,690, +Tuesday,02/01/2011 22:00,0,966,8,18,40,102,1132,0,1132, +Tuesday,02/01/2011 23:00,0,1032,10,14,36,102,1192,0,1192, +Wednesday,02/02/2011 00:00,0,1032,10,8,40,102,1188,0,1188, +Wednesday,02/02/2011 01:00,0,1064,8,6,36,102,1214,0,1214, +Wednesday,02/02/2011 02:00,0,1128,8,6,40,102,1282,0,1282, +Wednesday,02/02/2011 03:00,0,1000,12,6,36,104,1154,0,1154, +Wednesday,02/02/2011 04:00,0,1032,8,6,38,100,1184,0,1184, +Wednesday,02/02/2011 05:00,0,1064,10,8,38,102,1220,0,1220, +Wednesday,02/02/2011 06:00,8,1226,14,8,38,102,1392,0,1392, +Wednesday,02/02/2011 07:00,8,1644,34,24,44,102,1852,0,1852, +Wednesday,02/02/2011 08:00,0,1548,36,32,50,100,1764,0,1764, +Wednesday,02/02/2011 09:00,0,1226,38,36,62,102,1462,-10,1452, +Wednesday,02/02/2011 10:00,0,838,36,38,72,102,1084,-20,1064, +Wednesday,02/02/2011 11:00,0,226,40,32,72,102,470,-30,440, +Wednesday,02/02/2011 12:00,0,1000,36,28,72,102,1236,-38,1198, +Wednesday,02/02/2011 13:00,0,548,38,26,72,102,786,-44,742, +Wednesday,02/02/2011 14:00,0,388,40,26,68,102,624,-48,576, +Wednesday,02/02/2011 15:00,0,644,40,30,64,102,876,-38,838, +Wednesday,02/02/2011 16:00,0,324,36,32,64,102,556,-24,532, +Wednesday,02/02/2011 17:00,0,612,38,42,58,102,850,-6,844, +Wednesday,02/02/2011 18:00,0,742,34,56,52,102,982,0,982, +Wednesday,02/02/2011 19:00,0,420,14,44,42,102,620,0,620, +Wednesday,02/02/2011 20:00,0,646,10,44,42,102,842,0,842, +Wednesday,02/02/2011 21:00,0,194,10,34,46,102,384,0,384, +Wednesday,02/02/2011 22:00,0,1064,12,34,38,102,1248,0,1248, +Wednesday,02/02/2011 23:00,0,420,8,16,38,102,582,0,582, +Thursday,02/03/2011 00:00,0,322,12,6,40,102,480,0,480, +Thursday,02/03/2011 01:00,0,870,8,2,36,102,1018,0,1018, +Thursday,02/03/2011 02:00,0,968,12,4,38,102,1122,0,1122, +Thursday,02/03/2011 03:00,0,678,10,6,38,102,832,0,832, +Thursday,02/03/2011 04:00,0,936,10,8,40,102,1094,0,1094, +Thursday,02/03/2011 05:00,0,420,10,10,38,102,578,0,578, +Thursday,02/03/2011 06:00,0,1032,14,6,38,102,1188,0,1188, +Thursday,02/03/2011 07:00,0,1290,34,22,42,102,1486,0,1486, +Thursday,02/03/2011 08:00,0,1516,36,36,60,102,1748,-4,1744, +Thursday,02/03/2011 09:00,0,678,36,46,70,102,930,-8,922, +Thursday,02/03/2011 10:00,0,226,38,46,80,102,488,-14,474, +Thursday,02/03/2011 11:00,0,710,38,48,76,102,972,-14,958, +Thursday,02/03/2011 12:00,0,356,38,46,76,102,614,-20,594, +Thursday,02/03/2011 13:00,0,340,32,38,72,102,584,-40,544, +Thursday,02/03/2011 14:00,0,312,36,42,70,102,560,-34,526, +Thursday,02/03/2011 15:00,0,334,40,46,70,102,590,-22,568, +Thursday,02/03/2011 16:00,0,364,38,54,64,102,620,-8,612, +Thursday,02/03/2011 17:00,0,372,38,58,60,104,630,0,630, +Thursday,02/03/2011 18:00,0,380,34,58,48,102,620,0,620, +Thursday,02/03/2011 19:00,0,382,24,40,42,102,588,0,588, +Thursday,02/03/2011 20:00,0,382,20,42,44,102,588,0,588, +Thursday,02/03/2011 21:00,0,372,22,32,38,102,566,0,566, +Thursday,02/03/2011 22:00,0,358,20,28,42,102,550,0,550, +Thursday,02/03/2011 23:00,0,352,20,12,38,102,522,0,522, +Friday,02/04/2011 00:00,0,348,22,12,38,102,520,0,520, +Friday,02/04/2011 01:00,0,372,20,6,38,104,536,0,536, +Friday,02/04/2011 02:00,0,382,22,8,36,102,548,0,548, +Friday,02/04/2011 03:00,0,388,22,8,40,102,558,0,558, +Friday,02/04/2011 04:00,0,382,22,4,42,102,550,0,550, +Friday,02/04/2011 05:00,0,374,22,6,34,102,536,0,536, +Friday,02/04/2011 06:00,0,364,22,8,40,102,534,0,534, +Friday,02/04/2011 07:00,0,354,32,22,40,102,548,0,548, +Friday,02/04/2011 08:00,0,322,32,36,50,102,540,-2,538, +Friday,02/04/2011 09:00,0,258,34,34,62,102,486,-16,470, +Friday,02/04/2011 10:00,0,232,38,30,70,102,470,-54,416, +Friday,02/04/2011 11:00,0,218,36,38,70,102,462,-34,428, +Friday,02/04/2011 12:00,0,232,38,34,68,102,472,-56,416, +Friday,02/04/2011 13:00,0,268,38,38,68,102,512,-48,464, +Friday,02/04/2011 14:00,0,234,38,30,66,102,468,-98,370, +Friday,02/04/2011 15:00,0,232,38,34,64,102,470,-94,376, +Friday,02/04/2011 16:00,0,244,36,48,60,102,488,-48,440, +Friday,02/04/2011 17:00,0,256,36,56,54,102,502,-20,482, +Friday,02/04/2011 18:00,0,274,34,56,46,102,512,-2,510, +Friday,02/04/2011 19:00,0,296,10,38,40,102,484,0,484, +Friday,02/04/2011 20:00,0,284,6,44,42,104,480,0,480, +Friday,02/04/2011 21:00,0,246,8,44,38,102,436,0,436, +Friday,02/04/2011 22:00,0,238,8,32,36,102,412,0,412, +Friday,02/04/2011 23:00,0,240,6,4,36,104,388,0,388, +Saturday,02/05/2011 00:00,0,232,8,4,34,102,378,0,378, +Saturday,02/05/2011 01:00,0,220,6,2,36,102,366,0,366, +Saturday,02/05/2011 02:00,0,214,8,4,32,102,358,0,358, +Saturday,02/05/2011 03:00,0,214,6,4,36,104,362,0,362, +Saturday,02/05/2011 04:00,0,218,6,4,34,104,366,0,366, +Saturday,02/05/2011 05:00,0,222,6,2,36,102,366,0,366, +Saturday,02/05/2011 06:00,0,226,8,4,34,104,372,0,372, +Saturday,02/05/2011 07:00,0,236,6,6,34,102,380,0,380, +Saturday,02/05/2011 08:00,0,250,10,8,36,104,404,-4,400, +Saturday,02/05/2011 09:00,0,246,6,6,34,102,394,-18,376, +Saturday,02/05/2011 10:00,0,286,6,6,36,102,436,-92,344, +Saturday,02/05/2011 11:00,0,264,6,4,36,104,412,-222,190, +Saturday,02/05/2011 12:00,0,246,8,6,36,102,396,-188,208, +Saturday,02/05/2011 13:00,0,258,6,8,34,102,408,-126,282, +Saturday,02/05/2011 14:00,0,308,8,12,34,102,462,-32,430, +Saturday,02/05/2011 15:00,0,344,6,14,38,104,502,-4,498, +Saturday,02/05/2011 16:00,0,354,8,10,36,102,506,0,506, +Saturday,02/05/2011 17:00,0,352,6,10,34,104,504,0,504, +Saturday,02/05/2011 18:00,0,358,8,16,36,106,522,0,522, +Saturday,02/05/2011 19:00,0,362,6,16,34,104,520,0,520, +Saturday,02/05/2011 20:00,0,364,6,8,34,102,514,0,514, +Saturday,02/05/2011 21:00,0,372,8,4,38,102,524,0,524, +Saturday,02/05/2011 22:00,0,376,6,4,32,104,522,0,522, +Saturday,02/05/2011 23:00,0,386,8,4,36,104,534,0,534, +Sunday,02/06/2011 00:00,0,396,6,4,36,102,542,0,542, +Sunday,02/06/2011 01:00,0,412,6,2,34,106,560,0,560, +Sunday,02/06/2011 02:00,0,430,10,6,34,104,582,0,582, +Sunday,02/06/2011 03:00,0,440,6,6,34,102,586,0,586, +Sunday,02/06/2011 04:00,0,440,8,4,36,102,588,0,588, +Sunday,02/06/2011 05:00,0,442,6,4,36,104,590,0,590, +Sunday,02/06/2011 06:00,0,444,8,4,32,102,590,0,590, +Sunday,02/06/2011 07:00,0,444,8,6,36,104,594,0,594, +Sunday,02/06/2011 08:00,0,442,6,6,34,102,590,0,590, +Sunday,02/06/2011 09:00,0,444,8,6,38,102,594,0,594, +Sunday,02/06/2011 10:00,0,436,6,2,34,104,582,0,582, +Sunday,02/06/2011 11:00,0,444,8,4,36,102,592,0,592, +Sunday,02/06/2011 12:00,0,408,8,2,36,104,554,0,554, +Sunday,02/06/2011 13:00,0,378,8,4,34,102,524,0,524, +Sunday,02/06/2011 14:00,0,364,6,4,38,102,510,0,510, +Sunday,02/06/2011 15:00,0,404,8,2,34,104,548,0,548, +Sunday,02/06/2011 16:00,0,426,6,4,36,102,574,0,574, +Sunday,02/06/2011 17:00,0,444,8,4,32,102,590,0,590, +Sunday,02/06/2011 18:00,0,470,8,8,36,102,620,0,620, +Sunday,02/06/2011 19:00,0,468,6,10,38,102,622,0,622, +Sunday,02/06/2011 20:00,0,480,8,12,34,102,634,0,634, +Sunday,02/06/2011 21:00,0,502,10,14,36,102,662,0,662, +Sunday,02/06/2011 22:00,0,504,6,6,34,102,650,0,650, +Sunday,02/06/2011 23:00,0,524,8,6,38,102,674,0,674, +Monday,02/07/2011 00:00,0,530,6,6,36,102,678,0,678, +Monday,02/07/2011 01:00,0,554,10,6,34,102,704,0,704, +Monday,02/07/2011 02:00,0,566,8,4,34,102,712,0,712, +Monday,02/07/2011 03:00,0,582,6,8,38,102,734,0,734, +Monday,02/07/2011 04:00,0,598,8,10,36,102,752,0,752, +Monday,02/07/2011 05:00,0,586,8,6,40,102,740,0,740, +Monday,02/07/2011 06:00,0,542,16,8,36,102,702,0,702, +Monday,02/07/2011 07:00,0,556,30,20,44,102,750,0,750, +Monday,02/07/2011 08:00,0,516,34,34,50,102,734,0,734, +Monday,02/07/2011 09:00,0,480,34,34,68,102,714,0,714, +Monday,02/07/2011 10:00,0,414,36,32,72,102,654,0,654, +Monday,02/07/2011 11:00,0,354,34,30,72,102,592,0,592, +Monday,02/07/2011 12:00,0,322,36,28,76,102,562,0,562, +Monday,02/07/2011 13:00,0,262,40,28,74,102,504,0,504, +Monday,02/07/2011 14:00,0,278,38,28,72,102,516,0,516, +Monday,02/07/2011 15:00,0,252,40,28,66,102,488,0,488, +Monday,02/07/2011 16:00,0,252,38,36,66,102,492,0,492, +Monday,02/07/2011 17:00,0,258,38,48,60,102,506,0,506, +Monday,02/07/2011 18:00,0,276,36,62,48,102,522,0,522, +Monday,02/07/2011 19:00,0,274,12,44,42,102,472,0,472, +Monday,02/07/2011 20:00,0,298,8,38,42,102,486,0,486, +Monday,02/07/2011 21:00,0,326,6,36,38,104,508,0,508, +Monday,02/07/2011 22:00,0,360,8,26,40,104,538,0,538, +Monday,02/07/2011 23:00,0,552,6,10,38,104,708,0,708, +Tuesday,02/08/2011 00:00,0,610,8,6,34,102,758,0,758, +Tuesday,02/08/2011 01:00,0,676,6,4,38,104,826,0,826, +Tuesday,02/08/2011 02:00,0,716,8,8,34,102,866,0,866, +Tuesday,02/08/2011 03:00,0,730,8,6,38,102,884,0,884, +Tuesday,02/08/2011 04:00,0,748,6,2,36,102,894,0,894, +Tuesday,02/08/2011 05:00,0,750,8,6,36,102,898,0,898, +Tuesday,02/08/2011 06:00,0,758,14,4,38,102,914,0,914, +Tuesday,02/08/2011 07:00,0,774,32,18,40,102,966,0,966, +Tuesday,02/08/2011 08:00,0,782,34,34,48,102,998,0,998, +Tuesday,02/08/2011 09:00,0,782,36,40,52,102,1010,0,1010, +Tuesday,02/08/2011 10:00,0,782,36,40,62,104,1024,0,1024, +Tuesday,02/08/2011 11:00,0,780,34,36,60,102,1012,0,1012, +Tuesday,02/08/2011 12:00,0,754,36,34,66,102,990,0,990, +Tuesday,02/08/2011 13:00,0,754,38,28,60,102,980,0,980, +Tuesday,02/08/2011 14:00,0,754,36,34,60,100,982,0,982, +Tuesday,02/08/2011 15:00,0,760,34,32,60,102,986,0,986, +Tuesday,02/08/2011 16:00,0,754,36,34,58,102,982,0,982, +Tuesday,02/08/2011 17:00,0,776,36,46,50,102,1006,0,1006, +Tuesday,02/08/2011 18:00,0,798,32,54,44,102,1028,0,1028, +Tuesday,02/08/2011 19:00,0,812,14,40,40,100,1004,0,1004, +Tuesday,02/08/2011 20:00,0,806,10,30,42,102,986,0,986, +Tuesday,02/08/2011 21:00,0,812,6,28,40,102,986,0,986, +Tuesday,02/08/2011 22:00,0,850,8,22,40,100,1018,0,1018, +Tuesday,02/08/2011 23:00,0,876,10,14,38,102,1038,0,1038, +Wednesday,02/09/2011 00:00,0,890,8,8,34,102,1040,0,1040, +Wednesday,02/09/2011 01:00,0,904,8,4,42,100,1056,0,1056, +Wednesday,02/09/2011 02:00,0,914,10,6,34,102,1066,0,1066, +Wednesday,02/09/2011 03:00,0,896,8,2,40,102,1046,0,1046, +Wednesday,02/09/2011 04:00,0,876,8,6,36,100,1026,0,1026, +Wednesday,02/09/2011 05:00,0,860,10,6,40,102,1016,0,1016, +Wednesday,02/09/2011 06:00,0,848,14,6,36,102,1004,0,1004, +Wednesday,02/09/2011 07:00,0,840,32,22,44,100,1036,0,1036, +Wednesday,02/09/2011 08:00,0,780,34,30,50,102,996,0,996, +Wednesday,02/09/2011 09:00,0,668,36,32,64,100,896,0,896, +Wednesday,02/09/2011 10:00,0,566,36,32,74,102,808,0,808, +Wednesday,02/09/2011 11:00,0,574,34,30,72,102,808,0,808, +Wednesday,02/09/2011 12:00,0,290,38,28,72,100,526,0,526, +Wednesday,02/09/2011 13:00,0,194,36,26,72,102,426,0,426, +Wednesday,02/09/2011 14:00,0,420,38,28,68,102,654,0,654, +Wednesday,02/09/2011 15:00,0,290,42,30,68,102,528,0,528, +Wednesday,02/09/2011 16:00,0,290,38,34,62,102,524,0,524, +Wednesday,02/09/2011 17:00,0,96,36,44,60,102,334,0,334, +Wednesday,02/09/2011 18:00,0,580,36,60,54,102,830,0,830, +Wednesday,02/09/2011 19:00,0,32,10,50,42,100,232,0,232, +Wednesday,02/09/2011 20:00,0,258,4,46,44,102,452,0,452, +Wednesday,02/09/2011 21:00,0,258,6,36,42,102,442,0,442, +Wednesday,02/09/2011 22:00,0,0,6,26,38,102,170,0,170, +Wednesday,02/09/2011 23:00,0,484,6,8,38,102,634,0,634, +Thursday,02/10/2011 00:00,0,354,4,10,38,102,506,0,506, +Thursday,02/10/2011 01:00,0,290,4,6,38,100,436,0,436, +Thursday,02/10/2011 02:00,0,870,6,6,38,102,1020,0,1020, +Thursday,02/10/2011 03:00,0,386,6,4,38,102,534,0,534, +Thursday,02/10/2011 04:00,0,966,6,6,36,102,1114,0,1114, +Thursday,02/10/2011 05:00,0,612,6,6,40,100,762,0,762, +Thursday,02/10/2011 06:00,0,934,12,8,36,102,1090,0,1090, +Thursday,02/10/2011 07:00,0,1258,32,22,44,102,1454,0,1454, +Thursday,02/10/2011 08:00,0,1128,32,38,54,102,1354,0,1354, +Thursday,02/10/2011 09:00,0,484,38,38,64,102,724,0,724, +Thursday,02/10/2011 10:00,0,484,36,34,70,102,724,0,724, +Thursday,02/10/2011 11:00,0,258,38,32,74,102,502,0,502, +Thursday,02/10/2011 12:00,0,128,36,32,76,102,372,0,372, +Thursday,02/10/2011 13:00,0,290,40,28,70,102,528,-2,526, +Thursday,02/10/2011 14:00,0,128,40,32,70,102,372,0,372, +Thursday,02/10/2011 15:00,0,128,42,32,70,102,374,0,374, +Thursday,02/10/2011 16:00,0,322,36,42,66,100,564,0,564, +Thursday,02/10/2011 17:00,0,128,38,48,58,102,374,0,374, +Thursday,02/10/2011 18:00,0,162,36,60,46,102,402,0,402, +Thursday,02/10/2011 19:00,0,226,10,48,42,102,424,0,424, +Thursday,02/10/2011 20:00,0,0,6,44,42,102,192,0,192, +Thursday,02/10/2011 21:00,0,226,6,26,40,102,396,0,396, +Thursday,02/10/2011 22:00,0,226,6,20,42,100,392,0,392, +Thursday,02/10/2011 23:00,0,0,2,10,36,102,148,0,148, +Friday,02/11/2011 00:00,0,322,6,8,36,102,474,0,474, +Friday,02/11/2011 01:00,0,354,4,6,38,102,502,0,502, +Friday,02/11/2011 02:00,0,354,4,6,34,102,500,0,500, +Friday,02/11/2011 03:00,0,386,4,4,40,102,534,0,534, +Friday,02/11/2011 04:00,0,354,6,4,36,102,500,0,500, +Friday,02/11/2011 05:00,0,516,6,6,36,102,664,0,664, +Friday,02/11/2011 06:00,0,966,10,8,38,100,1122,0,1122, +Friday,02/11/2011 07:00,0,742,34,18,44,102,938,0,938, +Friday,02/11/2011 08:00,0,612,32,30,46,100,818,0,818, +Friday,02/11/2011 09:00,0,516,36,36,60,102,746,0,746, +Friday,02/11/2011 10:00,0,386,36,30,68,102,622,0,622, +Friday,02/11/2011 11:00,0,96,38,28,66,102,326,-2,324, +Friday,02/11/2011 12:00,0,162,38,24,64,102,388,-2,386, +Friday,02/11/2011 13:00,0,128,38,24,66,102,358,-2,356, +Friday,02/11/2011 14:00,0,96,38,26,66,102,324,-2,322, +Friday,02/11/2011 15:00,0,128,40,26,60,102,356,0,356, +Friday,02/11/2011 16:00,0,96,36,32,58,100,322,-2,320, +Friday,02/11/2011 17:00,0,162,36,44,52,102,394,0,394, +Friday,02/11/2011 18:00,0,64,34,56,46,102,300,0,300, +Friday,02/11/2011 19:00,0,194,8,42,40,102,384,0,384, +Friday,02/11/2011 20:00,0,0,4,42,40,102,188,0,188, +Friday,02/11/2011 21:00,0,226,4,32,38,102,402,0,402, +Friday,02/11/2011 22:00,0,0,6,22,40,100,166,0,166, +Friday,02/11/2011 23:00,0,194,6,10,36,102,346,0,346, +Saturday,02/12/2011 00:00,0,0,2,6,36,102,144,0,144, +Saturday,02/12/2011 01:00,0,194,6,8,34,102,342,0,342, +Saturday,02/12/2011 02:00,0,354,4,8,36,102,502,0,502, +Saturday,02/12/2011 03:00,0,452,6,4,36,102,596,0,596, +Saturday,02/12/2011 04:00,0,386,6,6,36,102,532,0,532, +Saturday,02/12/2011 05:00,0,386,6,4,36,102,534,0,534, +Saturday,02/12/2011 06:00,0,354,4,6,34,102,498,0,498, +Saturday,02/12/2011 07:00,0,420,4,4,34,102,564,0,564, +Saturday,02/12/2011 08:00,0,322,4,4,36,100,466,0,466, +Saturday,02/12/2011 09:00,0,0,6,2,34,102,142,0,142, +Saturday,02/12/2011 10:00,0,194,4,4,36,102,336,-6,330, +Saturday,02/12/2011 11:00,0,0,4,4,36,104,146,-4,142, +Saturday,02/12/2011 12:00,0,0,4,2,36,100,142,-2,140, +Saturday,02/12/2011 13:00,0,194,4,4,36,102,338,-4,334, +Saturday,02/12/2011 14:00,0,0,4,4,34,100,140,-4,136, +Saturday,02/12/2011 15:00,0,194,6,8,36,102,342,-10,332, +Saturday,02/12/2011 16:00,0,0,4,6,34,102,146,-14,132, +Saturday,02/12/2011 17:00,0,194,4,8,38,102,344,-12,332, +Saturday,02/12/2011 18:00,0,0,2,8,34,100,144,-2,142, +Saturday,02/12/2011 19:00,0,258,6,8,34,102,406,0,406, +Saturday,02/12/2011 20:00,0,226,4,8,34,102,370,0,370, +Saturday,02/12/2011 21:00,0,420,4,8,36,100,566,0,566, +Saturday,02/12/2011 22:00,0,258,6,8,34,102,406,0,406, +Saturday,02/12/2011 23:00,0,322,4,6,36,102,468,0,468, +Sunday,2/13/2011 0:00,0,258,6,4,34,100,400,0,400, +Sunday,2/13/2011 1:00,0,258,4,6,34,102,400,0,400, +Sunday,2/13/2011 2:00,0,290,4,4,36,100,434,0,434, +Sunday,2/13/2011 3:00,0,290,6,6,32,104,436,0,436, +Sunday,2/13/2011 4:00,0,322,4,2,36,102,464,0,464, +Sunday,2/13/2011 5:00,0,258,6,4,34,102,400,0,400, +Sunday,2/13/2011 6:00,0,290,6,4,36,102,434,0,434, +Sunday,2/13/2011 7:00,0,290,6,4,34,102,434,0,434, +Sunday,2/13/2011 8:00,0,258,2,2,38,102,400,-20,380, +Sunday,2/13/2011 9:00,0,194,6,4,32,102,334,-66,268, +Sunday,2/13/2011 10:00,0,0,4,2,38,102,144,-116,28, +Sunday,2/13/2011 11:00,0,0,4,4,36,102,142,-178,-36, +Sunday,2/13/2011 12:00,0,0,8,4,36,102,150,-280,-130, +Sunday,2/13/2011 13:00,0,194,10,8,36,102,348,-336,12, +Sunday,2/13/2011 14:00,0,0,10,6,36,102,152,-302,-150, +Sunday,2/13/2011 15:00,0,0,10,8,36,104,158,-168,-10, +Sunday,2/13/2011 16:00,0,0,10,8,36,102,154,-86,68, +Sunday,2/13/2011 17:00,0,162,10,10,36,102,318,-94,224, +Sunday,2/13/2011 18:00,0,0,10,16,34,106,162,-6,156, +Sunday,2/13/2011 19:00,0,0,4,20,36,102,160,0,160, +Sunday,2/13/2011 20:00,0,0,4,16,34,102,154,0,154, +Sunday,2/13/2011 21:00,0,258,4,10,32,100,404,0,404, +Sunday,2/13/2011 22:00,0,0,4,8,40,102,154,0,154, +Sunday,2/13/2011 23:00,0,226,6,12,32,102,374,0,374, +Monday,2/14/2011 0:00,0,226,4,10,34,102,374,0,374, +Monday,2/14/2011 1:00,0,0,4,8,34,102,146,0,146, +Monday,2/14/2011 2:00,0,226,4,4,36,102,368,0,368, +Monday,2/14/2011 3:00,0,290,6,4,36,104,438,0,438, +Monday,2/14/2011 4:00,0,258,6,4,34,102,400,0,400, +Monday,2/14/2011 5:00,0,322,4,6,34,102,466,0,466, +Monday,2/14/2011 6:00,0,386,10,6,36,100,538,0,538, +Monday,2/14/2011 7:00,0,580,30,22,42,102,776,0,776, +Monday,2/14/2011 8:00,0,742,34,42,52,102,970,-12,958, +Monday,2/14/2011 9:00,0,644,36,52,68,102,900,-50,850, +Monday,2/14/2011 10:00,0,420,36,42,72,102,672,-118,554, +Monday,2/14/2011 11:00,0,258,36,38,70,102,500,-146,354, +Monday,2/14/2011 12:00,0,0,38,32,74,102,242,-246,-4, +Monday,2/14/2011 13:00,0,194,40,28,74,104,436,-294,142, +Monday,2/14/2011 14:00,0,0,38,34,70,104,244,-214,30, +Monday,2/14/2011 15:00,0,194,42,34,68,104,440,-228,212, +Monday,2/14/2011 16:00,0,0,40,38,64,102,244,-166,78, +Monday,2/14/2011 17:00,2,0,40,42,54,110,246,-92,154, +Monday,2/14/2011 18:00,0,162,36,56,48,104,402,-8,394, +Monday,2/14/2011 19:00,0,64,10,40,44,102,258,0,258, +Monday,2/14/2011 20:00,0,0,4,44,40,104,190,0,190, +Monday,2/14/2011 21:00,0,0,6,38,40,102,184,0,184, +Monday,2/14/2011 22:00,0,96,4,28,36,100,264,0,264, +Monday,2/14/2011 23:00,0,96,4,14,38,104,252,0,252, +Tuesday,2/15/2011 0:00,0,128,4,8,38,102,280,0,280, +Tuesday,2/15/2011 1:00,0,32,6,6,40,102,184,0,184, +Tuesday,2/15/2011 2:00,0,0,4,6,34,102,142,0,142, +Tuesday,2/15/2011 3:00,0,226,4,6,36,104,374,0,374, +Tuesday,2/15/2011 4:00,0,0,6,8,36,102,150,0,150, +Tuesday,2/15/2011 5:00,0,226,2,10,40,102,376,0,376, +Tuesday,2/15/2011 6:00,0,258,10,10,38,102,418,0,418, +Tuesday,2/15/2011 7:00,0,484,32,28,46,102,690,0,690, +Tuesday,2/15/2011 8:00,0,128,32,36,54,102,352,-48,304, +Tuesday,2/15/2011 9:00,0,322,36,38,60,100,554,-146,408, +Tuesday,2/15/2011 10:00,0,258,36,36,68,102,500,-212,288, +Tuesday,2/15/2011 11:00,0,0,38,34,74,102,246,-228,18, +Tuesday,2/15/2011 12:00,0,162,38,32,68,104,402,-274,128, +Tuesday,2/15/2011 13:00,0,0,38,30,70,108,246,-306,-60, +Tuesday,2/15/2011 14:00,8,0,42,32,68,108,256,-282,-26, +Tuesday,2/15/2011 15:00,8,226,40,36,66,110,484,-224,260, +Tuesday,2/15/2011 16:00,8,0,26,26,46,110,214,-126,88, +Tuesday,2/15/2011 17:00,4,0,38,46,52,112,250,-94,156, +Tuesday,2/15/2011 18:00,0,96,34,54,46,106,336,-8,328, +Tuesday,2/15/2011 19:00,0,0,10,40,42,102,192,0,192, +Tuesday,2/15/2011 20:00,0,0,4,30,40,104,174,0,174, +Tuesday,2/15/2011 21:00,0,162,6,28,42,102,338,0,338, +Tuesday,2/15/2011 22:00,0,32,2,22,38,100,194,0,194, +Tuesday,2/15/2011 23:00,0,0,4,14,38,104,158,0,158, +Wednesday,2/16/2011 0:00,0,0,4,8,36,102,148,0,148, +Wednesday,2/16/2011 1:00,0,226,4,4,36,102,370,0,370, +Wednesday,2/16/2011 2:00,0,0,4,6,36,102,146,0,146, +Wednesday,2/16/2011 3:00,0,194,4,2,38,104,340,0,340, +Wednesday,2/16/2011 4:00,0,0,4,6,38,102,148,0,148, +Wednesday,2/16/2011 5:00,0,258,4,6,36,102,402,0,402, +Wednesday,2/16/2011 6:00,0,194,8,6,38,102,346,0,346, +Wednesday,2/16/2011 7:00,0,290,32,22,46,102,490,-2,488, +Wednesday,2/16/2011 8:00,0,354,34,30,50,102,568,-64,504, +Wednesday,2/16/2011 9:00,0,290,34,32,62,100,518,-164,354, +Wednesday,2/16/2011 10:00,0,290,38,32,72,102,532,-250,282, +Wednesday,2/16/2011 11:00,0,0,34,30,68,104,234,-300,-66, +Wednesday,2/16/2011 12:00,0,194,36,28,56,106,420,-308,112, +Wednesday,2/16/2011 13:00,0,0,38,26,54,110,226,-324,-98, +Wednesday,2/16/2011 14:00,0,130,38,26,54,106,352,-312,40, +Wednesday,2/16/2011 15:00,0,0,36,30,56,110,230,-262,-32, +Wednesday,2/16/2011 16:00,0,0,38,34,52,104,228,-158,70, +Wednesday,2/16/2011 17:00,0,0,38,50,52,106,244,-38,206, +Wednesday,2/16/2011 18:00,0,96,34,56,46,102,332,-2,330, +Wednesday,2/16/2011 19:00,0,0,10,42,42,102,194,0,194, +Wednesday,2/16/2011 20:00,0,0,4,42,40,102,186,0,186, +Wednesday,2/16/2011 21:00,0,0,6,36,42,104,186,0,186, +Wednesday,2/16/2011 22:00,0,0,2,22,38,102,164,0,164, +Wednesday,2/16/2011 23:00,0,32,4,6,38,104,182,0,182, +Thursday,2/17/2011 0:00,0,96,4,6,36,102,242,0,242, +Thursday,2/17/2011 1:00,0,0,4,2,36,102,142,0,142, +Thursday,2/17/2011 2:00,0,98,4,6,36,104,244,0,244, +Thursday,2/17/2011 3:00,0,0,4,2,38,104,148,0,148, +Thursday,2/17/2011 4:00,0,98,4,4,38,102,244,0,244, +Thursday,2/17/2011 5:00,0,130,4,6,36,102,276,0,276, +Thursday,2/17/2011 6:00,0,32,8,8,38,102,186,0,186, +Thursday,2/17/2011 7:00,0,258,32,20,46,102,456,-2,454, +Thursday,2/17/2011 8:00,0,258,34,34,50,100,474,-58,416, +Thursday,2/17/2011 9:00,0,226,34,40,62,102,462,-156,306, +Thursday,2/17/2011 10:00,0,162,38,42,72,102,414,-144,270, +Thursday,2/17/2011 11:00,0,194,34,36,68,102,434,-254,180, +Thursday,2/17/2011 12:00,0,32,38,32,72,102,276,-338,-62, +Thursday,2/17/2011 13:00,0,64,40,34,74,104,314,-256,58, +Thursday,2/17/2011 14:00,0,0,38,40,68,102,248,-140,108, +Thursday,2/17/2011 15:00,0,98,38,42,66,104,344,-164,180, +Thursday,2/17/2011 16:00,0,0,36,42,62,102,240,-162,78, +Thursday,2/17/2011 17:00,0,98,38,48,60,102,344,-90,254, +Thursday,2/17/2011 18:00,0,0,36,62,48,102,246,-8,238, +Thursday,2/17/2011 19:00,0,96,10,48,42,102,296,0,296, +Thursday,2/17/2011 20:00,0,0,4,40,40,102,184,0,184, +Thursday,2/17/2011 21:00,0,0,4,20,36,104,162,0,162, +Thursday,2/17/2011 22:00,0,130,4,14,38,102,286,0,286, +Thursday,2/17/2011 23:00,0,34,4,10,38,104,186,0,186, +Friday,2/18/2011 0:00,0,130,6,6,36,102,276,0,276, +Friday,2/18/2011 1:00,0,32,4,4,36,102,176,0,176, +Friday,2/18/2011 2:00,0,96,6,4,36,102,242,0,242, +Friday,2/18/2011 3:00,0,194,4,6,38,102,342,0,342, +Friday,2/18/2011 4:00,0,194,4,4,36,104,340,0,340, +Friday,2/18/2011 5:00,0,162,4,6,36,102,308,0,308, +Friday,2/18/2011 6:00,0,258,10,8,38,102,416,0,416, +Friday,2/18/2011 7:00,0,452,32,20,44,102,648,0,648, +Friday,2/18/2011 8:00,0,324,36,32,50,102,540,-32,508, +Friday,2/18/2011 9:00,0,194,36,32,58,102,420,-150,270, +Friday,2/18/2011 10:00,0,98,34,28,66,102,326,-226,100, +Friday,2/18/2011 11:00,0,162,36,26,64,102,388,-294,94, +Friday,2/18/2011 12:00,0,0,38,26,68,104,234,-312,-78, +Friday,2/18/2011 13:00,0,98,36,30,58,102,322,-294,28, +Friday,2/18/2011 14:00,0,0,38,30,60,104,232,-184,48, +Friday,2/18/2011 15:00,0,130,40,28,60,102,360,-248,112, +Friday,2/18/2011 16:00,0,0,36,34,56,102,228,-162,66, +Friday,2/18/2011 17:00,0,0,36,44,48,104,230,-40,190, +Friday,2/18/2011 18:00,0,162,36,50,44,102,392,-4,388, +Friday,2/18/2011 19:00,0,0,8,40,38,102,188,0,188, +Friday,2/18/2011 20:00,0,64,4,36,38,102,242,0,242, +Friday,2/18/2011 21:00,0,32,4,16,36,102,188,0,188, +Friday,2/18/2011 22:00,0,0,4,6,32,102,144,0,144, +Friday,2/18/2011 23:00,0,98,6,6,34,104,244,0,244, +Saturday,2/19/2011 0:00,0,0,4,4,34,104,144,0,144, +Saturday,2/19/2011 1:00,0,162,4,4,34,102,304,0,304, +Saturday,2/19/2011 2:00,0,0,6,6,32,102,144,0,144, +Saturday,2/19/2011 3:00,0,130,4,4,34,104,272,0,272, +Saturday,2/19/2011 4:00,0,130,6,2,30,102,270,0,270, +Saturday,2/19/2011 5:00,0,194,6,6,34,104,340,0,340, +Saturday,2/19/2011 6:00,0,226,2,6,34,102,370,0,370, +Saturday,2/19/2011 7:00,0,226,6,6,34,104,372,0,372, +Saturday,2/19/2011 8:00,0,162,6,4,32,102,302,-48,254, +Saturday,2/19/2011 9:00,0,130,2,8,32,102,274,-150,124, +Saturday,2/19/2011 10:00,0,0,6,8,36,102,152,-232,-80, +Saturday,2/19/2011 11:00,0,130,2,6,32,102,270,-286,-16, +Saturday,2/19/2011 12:00,0,0,6,6,32,104,146,-308,-162, +Saturday,2/19/2011 13:00,0,0,6,8,30,104,146,-314,-168, +Saturday,2/19/2011 14:00,0,96,2,8,30,100,236,-294,-58, +Saturday,2/19/2011 15:00,0,0,4,6,30,104,144,-244,-100, +Saturday,2/19/2011 16:00,0,0,6,8,30,100,144,-120,24, +Saturday,2/19/2011 17:00,0,0,4,12,32,102,148,-18,130, +Saturday,2/19/2011 18:00,0,98,4,10,32,104,246,-2,244, +Saturday,2/19/2011 19:00,0,0,4,10,30,102,144,0,144, +Saturday,2/19/2011 20:00,0,0,6,8,34,102,148,0,148, +Saturday,2/19/2011 21:00,0,194,4,8,34,110,348,0,348, +Saturday,2/19/2011 22:00,0,420,4,10,32,100,564,0,564, +Saturday,2/19/2011 23:00,0,130,4,8,30,98,268,0,268, +Sunday,2/20/2011 0:00,0,128,4,8,34,102,274,0,274, +Sunday,2/20/2011 1:00,0,134,4,6,30,104,276,0,276, +Sunday,2/20/2011 2:00,0,126,4,4,32,102,266,0,266, +Sunday,2/20/2011 3:00,0,126,4,6,34,102,270,0,270, +Sunday,2/20/2011 4:00,0,128,6,8,30,102,270,0,270, +Sunday,2/20/2011 5:00,0,136,4,6,32,102,278,0,278, +Sunday,2/20/2011 6:00,0,148,4,6,32,102,290,0,290, +Sunday,2/20/2011 7:00,0,148,6,8,32,100,292,-2,290, +Sunday,2/20/2011 8:00,0,136,4,4,32,102,274,-62,212, +Sunday,2/20/2011 9:00,0,132,6,6,30,102,274,-124,150, +Sunday,2/20/2011 10:00,0,128,4,4,32,100,266,-246,20, +Sunday,2/20/2011 11:00,0,124,6,6,34,102,270,-316,-46, +Sunday,2/20/2011 12:00,0,122,4,6,32,100,262,-344,-82, +Sunday,2/20/2011 13:00,0,120,4,6,32,102,262,-348,-86, +Sunday,2/20/2011 14:00,0,118,6,6,34,104,266,-324,-58, +Sunday,2/20/2011 15:00,0,116,4,4,34,100,256,-272,-16, +Sunday,2/20/2011 16:00,0,118,4,8,32,100,258,-194,64, +Sunday,2/20/2011 17:00,0,128,6,6,32,102,270,-82,188, +Sunday,2/20/2011 18:00,0,140,4,8,32,102,284,-6,278, +Sunday,2/20/2011 19:00,0,150,4,10,34,102,298,0,298, +Sunday,2/20/2011 20:00,0,162,6,10,36,102,312,0,312, +Sunday,2/20/2011 21:00,0,244,6,8,30,102,386,0,386, +Sunday,2/20/2011 22:00,0,264,4,10,34,102,410,0,410, +Sunday,2/20/2011 23:00,0,270,6,6,32,100,412,0,412, +Monday,2/21/2011 0:00,0,274,6,4,34,102,418,0,418, +Monday,2/21/2011 1:00,0,276,4,6,30,102,416,0,416, +Monday,2/21/2011 2:00,0,276,8,4,34,102,420,0,420, +Monday,2/21/2011 3:00,0,276,4,4,32,102,418,0,418, +Monday,2/21/2011 4:00,0,280,4,6,32,102,422,0,422, +Monday,2/21/2011 5:00,0,284,6,4,34,102,430,0,430, +Monday,2/21/2011 6:00,0,290,12,4,32,102,438,0,438, +Monday,2/21/2011 7:00,0,298,28,6,36,102,468,0,468, +Monday,2/21/2011 8:00,0,294,34,4,28,100,458,-36,422, +Monday,2/21/2011 9:00,0,238,34,4,36,102,412,-156,256, +Monday,2/21/2011 10:00,0,162,32,4,32,102,332,-256,76, +Monday,2/21/2011 11:00,0,142,30,4,36,100,312,-310,2, +Monday,2/21/2011 12:00,0,128,36,6,30,102,300,-338,-38, +Monday,2/21/2011 13:00,0,116,34,4,36,102,290,-340,-50, +Monday,2/21/2011 14:00,0,110,32,6,34,102,282,-322,-40, +Monday,2/21/2011 15:00,0,106,34,6,36,100,278,-270,8, +Monday,2/21/2011 16:00,0,94,36,8,34,102,272,-176,96, +Monday,2/21/2011 17:00,0,100,32,10,32,100,272,-80,192, +Monday,2/21/2011 18:00,0,128,34,12,34,102,308,-6,302, +Monday,2/21/2011 19:00,0,150,8,14,34,100,304,0,304, +Monday,2/21/2011 20:00,0,156,4,10,34,102,304,0,304, +Monday,2/21/2011 21:00,0,166,4,6,30,102,306,0,306, +Monday,2/21/2011 22:00,0,174,6,6,32,102,318,0,318, +Monday,2/21/2011 23:00,0,184,4,6,32,100,326,0,326, +Tuesday,2/22/2011 0:00,0,190,4,4,34,102,334,0,334, +Tuesday,2/22/2011 1:00,0,196,6,4,32,102,338,0,338, +Tuesday,2/22/2011 2:00,0,202,6,6,32,100,344,0,344, +Tuesday,2/22/2011 3:00,0,212,4,4,32,104,354,0,354, +Tuesday,2/22/2011 4:00,0,226,4,4,32,102,368,0,368, +Tuesday,2/22/2011 5:00,0,236,6,6,32,100,378,0,378, +Tuesday,2/22/2011 6:00,0,230,8,8,32,102,380,0,380, +Tuesday,2/22/2011 7:00,0,216,34,20,42,102,412,-2,410, +Tuesday,2/22/2011 8:00,0,182,34,36,50,100,400,-56,344, +Tuesday,2/22/2011 9:00,0,130,36,38,62,104,366,-164,202, +Tuesday,2/22/2011 10:00,0,122,36,34,70,102,364,-248,116, +Tuesday,2/22/2011 11:00,0,128,36,32,70,102,364,-300,64, +Tuesday,2/22/2011 12:00,0,112,40,30,68,102,350,-326,24, +Tuesday,2/22/2011 13:00,0,102,38,28,76,102,344,-322,22, +Tuesday,2/22/2011 14:00,0,96,40,30,70,102,338,-298,40, +Tuesday,2/22/2011 15:00,0,88,42,30,66,104,328,-246,82, +Tuesday,2/22/2011 16:00,0,84,38,36,62,102,320,-178,142, +Tuesday,2/22/2011 17:00,0,86,36,48,60,102,330,-78,252, +Tuesday,2/22/2011 18:00,0,96,36,52,48,102,332,-8,324, +Tuesday,2/22/2011 19:00,0,118,10,44,42,102,314,0,314, +Tuesday,2/22/2011 20:00,0,138,4,38,36,102,314,0,314, +Tuesday,2/22/2011 21:00,0,148,6,28,38,100,316,0,316, +Tuesday,2/22/2011 22:00,0,148,4,10,38,102,300,0,300, +Tuesday,2/22/2011 23:00,0,134,4,4,38,102,278,0,278, +Wednesday,2/23/2011 0:00,0,154,4,4,34,102,294,0,294, +Wednesday,2/23/2011 1:00,0,162,6,4,34,102,304,0,304, +Wednesday,2/23/2011 2:00,0,160,4,4,38,102,304,0,304, +Wednesday,2/23/2011 3:00,0,168,6,4,34,104,312,0,312, +Wednesday,2/23/2011 4:00,0,174,6,4,38,102,320,0,320, +Wednesday,2/23/2011 5:00,0,188,2,6,36,102,332,0,332, +Wednesday,2/23/2011 6:00,0,200,12,6,34,102,352,0,352, +Wednesday,2/23/2011 7:00,0,196,32,20,46,100,392,-2,390, +Wednesday,2/23/2011 8:00,0,162,34,34,50,102,378,-56,322, +Wednesday,2/23/2011 9:00,0,124,36,36,62,102,358,-160,198, +Wednesday,2/23/2011 10:00,0,134,36,32,70,102,374,-246,128, +Wednesday,2/23/2011 11:00,0,122,38,30,64,102,356,-302,54, +Wednesday,2/23/2011 12:00,0,108,36,32,72,102,348,-324,24, +Wednesday,2/23/2011 13:00,0,100,40,30,72,102,340,-326,14, +Wednesday,2/23/2011 14:00,0,96,38,32,64,102,332,-310,22, +Wednesday,2/23/2011 15:00,0,90,40,32,66,102,328,-256,72, +Wednesday,2/23/2011 16:00,0,98,36,40,66,102,340,-168,172, +Wednesday,2/23/2011 17:00,0,106,36,50,56,104,348,-94,254, +Wednesday,2/23/2011 18:00,0,128,38,58,48,102,372,-8,364, +Wednesday,2/23/2011 19:00,0,140,8,50,42,100,338,0,338, +Wednesday,2/23/2011 20:00,0,148,4,42,36,102,332,0,332, +Wednesday,2/23/2011 21:00,0,154,6,28,38,102,326,0,326, +Wednesday,2/23/2011 22:00,0,162,4,20,36,102,320,0,320, +Wednesday,2/23/2011 23:00,0,166,6,12,36,104,322,0,322, +Thursday,2/24/2011 0:00,0,172,4,6,34,102,316,0,316, +Thursday,2/24/2011 1:00,0,184,4,6,38,102,332,0,332, +Thursday,2/24/2011 2:00,0,196,6,6,34,102,342,0,342, +Thursday,2/24/2011 3:00,0,206,4,8,36,102,354,0,354, +Thursday,2/24/2011 4:00,0,210,4,4,36,102,354,0,354, +Thursday,2/24/2011 5:00,0,238,6,4,38,104,386,0,386, +Thursday,2/24/2011 6:00,0,256,12,8,36,102,410,0,410, +Thursday,2/24/2011 7:00,0,270,32,20,46,102,468,-2,466, +Thursday,2/24/2011 8:00,0,252,34,32,52,102,470,-64,406, +Thursday,2/24/2011 9:00,0,226,38,32,62,102,460,-164,296, +Thursday,2/24/2011 10:00,0,200,38,32,72,102,442,-250,192, +Thursday,2/24/2011 11:00,0,188,34,30,68,102,420,-300,120, +Thursday,2/24/2011 12:00,0,178,36,32,70,102,416,-298,118, +Thursday,2/24/2011 13:00,0,164,38,28,70,102,400,-332,68, +Thursday,2/24/2011 14:00,0,156,40,34,64,104,398,-260,138, +Thursday,2/24/2011 15:00,0,152,38,38,70,104,400,-190,210, +Thursday,2/24/2011 16:00,0,134,36,40,64,102,372,-174,198, +Thursday,2/24/2011 17:00,0,144,36,54,58,102,392,-62,330, +Thursday,2/24/2011 18:00,0,162,34,62,46,102,404,-2,402, +Thursday,2/24/2011 19:00,0,170,10,48,36,102,366,0,366, +Thursday,2/24/2011 20:00,0,186,6,44,40,102,376,0,376, +Thursday,2/24/2011 21:00,0,240,4,24,38,102,406,0,406, +Thursday,2/24/2011 22:00,0,262,4,16,38,104,422,0,422, +Thursday,2/24/2011 23:00,0,268,4,10,34,102,418,0,418, +Friday,2/25/2011 0:00,0,276,4,6,38,102,424,0,424, +Friday,2/25/2011 1:00,0,284,6,4,34,102,430,0,430, +Friday,2/25/2011 2:00,0,288,4,4,36,102,432,0,432, +Friday,2/25/2011 3:00,0,292,4,4,36,102,438,0,438, +Friday,2/25/2011 4:00,0,292,6,4,36,102,438,0,438, +Friday,2/25/2011 5:00,0,292,6,6,36,102,440,0,440, +Friday,2/25/2011 6:00,0,304,10,6,36,104,458,0,458, +Friday,2/25/2011 7:00,0,308,32,18,42,100,500,0,500, +Friday,2/25/2011 8:00,0,310,36,36,50,102,532,-4,528, +Friday,2/25/2011 9:00,0,310,34,54,58,102,556,-16,540, +Friday,2/25/2011 10:00,0,294,38,60,66,102,556,-48,508, +Friday,2/25/2011 11:00,0,274,38,54,68,102,534,-76,458, +Friday,2/25/2011 12:00,0,264,36,54,66,104,522,-66,456, +Friday,2/25/2011 13:00,0,264,38,52,64,102,520,-68,452, +Friday,2/25/2011 14:00,0,266,38,58,62,102,528,-30,498, +Friday,2/25/2011 15:00,0,280,38,60,60,102,538,-12,526, +Friday,2/25/2011 16:00,0,268,36,52,58,102,512,-12,500, +Friday,2/25/2011 17:00,0,262,36,58,52,102,508,-6,502, +Friday,2/25/2011 18:00,0,264,34,56,46,104,502,0,502, +Friday,2/25/2011 19:00,0,268,8,46,40,102,462,0,462, +Friday,2/25/2011 20:00,0,274,6,40,38,102,456,0,456, +Friday,2/25/2011 21:00,0,272,8,32,40,102,452,0,452, +Friday,2/25/2011 22:00,0,264,6,18,36,102,422,0,422, +Friday,2/25/2011 23:00,0,258,4,8,36,102,404,0,404, +Saturday,2/26/2011 0:00,0,256,8,2,36,102,402,0,402, +Saturday,2/26/2011 1:00,0,250,4,4,34,102,392,0,392, +Saturday,2/26/2011 2:00,0,254,6,4,34,102,398,0,398, +Saturday,2/26/2011 3:00,0,234,4,4,38,104,384,0,384, +Saturday,2/26/2011 4:00,0,194,4,2,32,102,334,0,334, +Saturday,2/26/2011 5:00,0,168,8,8,36,102,320,0,320, +Saturday,2/26/2011 6:00,0,154,4,4,32,102,294,0,294, +Saturday,2/26/2011 7:00,0,146,6,8,36,102,296,0,296, +Saturday,2/26/2011 8:00,0,132,6,2,36,102,278,-16,262, +Saturday,2/26/2011 9:00,0,114,4,8,34,104,260,-124,136, +Saturday,2/26/2011 10:00,0,98,6,2,36,102,242,-258,-16, +Saturday,2/26/2011 11:00,0,82,2,4,36,102,226,-304,-78, +Saturday,2/26/2011 12:00,0,70,6,4,32,104,214,-336,-122, +Saturday,2/26/2011 13:00,0,62,4,4,34,100,204,-374,-170, +Saturday,2/26/2011 14:00,0,56,4,2,34,104,198,-328,-130, +Saturday,2/26/2011 15:00,0,60,6,4,34,102,202,-250,-48, +Saturday,2/26/2011 16:00,0,68,2,8,38,102,216,-182,34, +Saturday,2/26/2011 17:00,0,74,6,10,34,102,222,-90,132, +Saturday,2/26/2011 18:00,0,86,4,6,34,102,230,-4,226, +Saturday,2/26/2011 19:00,0,100,6,8,34,102,248,0,248, +Saturday,2/26/2011 20:00,0,106,4,8,34,102,252,0,252, +Saturday,2/26/2011 21:00,0,114,6,8,38,100,264,0,264, +Saturday,2/26/2011 22:00,0,120,2,8,32,102,264,0,264, +Saturday,2/26/2011 23:00,0,118,6,2,32,102,258,0,258, +Sunday,2/27/2011 0:00,0,114,4,6,36,102,260,0,260, +Sunday,2/27/2011 1:00,0,114,6,2,36,100,256,0,256, +Sunday,2/27/2011 2:00,0,114,4,4,34,102,256,0,256, +Sunday,2/27/2011 3:00,0,112,6,4,32,102,254,0,254, +Sunday,2/27/2011 4:00,0,112,6,4,38,102,260,0,260, +Sunday,2/27/2011 5:00,0,128,4,4,32,102,270,0,270, +Sunday,2/27/2011 6:00,0,136,4,6,36,102,284,0,284, +Sunday,2/27/2011 7:00,0,142,4,4,34,100,284,-4,280, +Sunday,2/27/2011 8:00,0,118,6,6,36,102,264,-62,202, +Sunday,2/27/2011 9:00,0,108,4,4,34,102,252,-106,146, +Sunday,2/27/2011 10:00,0,108,4,4,34,102,250,-114,136, +Sunday,2/27/2011 11:00,0,130,6,2,36,100,272,-98,174, +Sunday,2/27/2011 12:00,0,130,4,4,32,102,272,-110,162, +Sunday,2/27/2011 13:00,0,124,6,4,34,100,268,-130,138, +Sunday,2/27/2011 14:00,0,122,4,6,34,102,264,-156,108, +Sunday,2/27/2011 15:00,0,116,6,6,36,100,262,-170,92, +Sunday,2/27/2011 16:00,0,118,2,8,34,102,262,-66,196, +Sunday,2/27/2011 17:00,0,120,6,10,34,102,270,-36,234, +Sunday,2/27/2011 18:00,0,124,4,10,32,100,268,-16,252, +Sunday,2/27/2011 19:00,0,140,6,6,36,102,288,0,288, +Sunday,2/27/2011 20:00,0,166,6,8,34,102,312,0,312, +Sunday,2/27/2011 21:00,0,182,4,6,34,100,326,0,326, +Sunday,2/27/2011 22:00,0,194,6,6,34,104,340,0,340, +Sunday,2/27/2011 23:00,0,194,6,12,32,100,342,0,342, +Monday,2/28/2011 0:00,0,196,6,14,34,102,352,0,352, +Monday,2/28/2011 1:00,0,200,4,8,34,102,346,0,346, +Monday,2/28/2011 2:00,0,204,4,4,34,102,346,0,346, +Monday,2/28/2011 3:00,0,188,6,4,34,104,334,0,334, +Monday,2/28/2011 4:00,0,158,4,4,36,102,300,0,300, +Monday,2/28/2011 5:00,0,168,6,4,34,102,312,0,312, +Monday,2/28/2011 6:00,0,162,10,2,36,102,312,0,312, +Monday,2/28/2011 7:00,0,154,32,26,40,102,352,-4,348, +Monday,2/28/2011 8:00,0,142,34,36,52,102,364,-38,326, +Monday,2/28/2011 9:00,0,112,36,38,64,102,350,-172,178, +Monday,2/28/2011 10:00,0,112,36,38,74,102,362,-132,230, +Monday,2/28/2011 11:00,0,90,36,32,68,100,322,-278,44, +Monday,2/28/2011 12:00,0,62,40,30,74,102,304,-332,-28, +Monday,2/28/2011 13:00,0,44,40,28,70,104,286,-316,-30, +Monday,2/28/2011 14:00,0,36,40,28,66,102,272,-320,-48, +Monday,2/28/2011 15:00,0,36,42,32,64,102,274,-240,34, +Monday,2/28/2011 16:00,0,34,38,36,64,102,272,-212,60, +Monday,2/28/2011 17:00,0,36,40,44,54,102,274,-108,166, +Monday,2/28/2011 18:00,0,48,38,56,46,102,288,-18,270, +Monday,2/28/2011 19:00,0,62,10,48,46,102,266,0,266, +Monday,2/28/2011 20:00,0,72,6,42,38,102,256,0,256, +Monday,2/28/2011 21:00,0,88,4,32,36,102,260,0,260, +Monday,2/28/2011 22:00,0,100,6,24,38,102,268,0,268, +Monday,2/28/2011 23:00,0,118,4,16,38,102,276,0,276, +Tuesday,03/01/2011 00:00,0,124,4,8,36,102,272,0,272, +Tuesday,03/01/2011 01:00,0,130,4,6,34,102,274,0,274, +Tuesday,03/01/2011 02:00,0,138,6,4,36,102,286,0,286, +Tuesday,03/01/2011 03:00,0,140,4,6,34,102,284,0,284, +Tuesday,03/01/2011 04:00,0,140,6,4,34,102,284,0,284, +Tuesday,03/01/2011 05:00,0,144,4,4,36,102,290,0,290, +Tuesday,03/01/2011 06:00,0,148,10,8,36,102,302,0,302, +Tuesday,03/01/2011 07:00,0,154,30,24,40,104,350,-2,348, +Tuesday,03/01/2011 08:00,0,124,36,36,54,102,350,-76,274, +Tuesday,03/01/2011 09:00,0,82,34,38,62,102,316,-180,136, +Tuesday,03/01/2011 10:00,0,80,40,32,68,102,320,-258,62, +Tuesday,03/01/2011 11:00,0,76,36,32,68,102,312,-308,4, +Tuesday,03/01/2011 12:00,0,70,38,32,72,102,312,-332,-20, +Tuesday,03/01/2011 13:00,0,62,40,34,70,102,306,-334,-28, +Tuesday,03/01/2011 14:00,2,56,38,34,64,110,302,-300,2, +Tuesday,03/01/2011 15:00,0,48,40,38,66,106,298,-252,46, +Tuesday,03/01/2011 16:00,0,46,38,42,62,106,292,-184,108, +Tuesday,03/01/2011 17:00,0,58,40,58,58,106,318,-74,244, +Tuesday,03/01/2011 18:00,0,70,36,60,48,102,314,-8,306, +Tuesday,03/01/2011 19:00,0,84,10,42,40,104,276,0,276, +Tuesday,03/01/2011 20:00,0,102,6,38,38,102,284,0,284, +Tuesday,03/01/2011 21:00,0,116,2,28,38,102,284,0,284, +Tuesday,03/01/2011 22:00,0,116,6,16,36,102,274,0,274, +Tuesday,03/01/2011 23:00,0,122,4,8,34,102,270,0,270, +Wednesday,03/02/2011 00:00,0,128,6,6,36,102,274,0,274, +Wednesday,03/02/2011 01:00,0,134,2,6,36,102,280,0,280, +Wednesday,03/02/2011 02:00,0,144,6,6,32,102,286,0,286, +Wednesday,03/02/2011 03:00,0,150,2,6,38,104,300,0,300, +Wednesday,03/02/2011 04:00,0,162,6,6,34,102,308,0,308, +Wednesday,03/02/2011 05:00,0,164,4,8,38,102,314,0,314, +Wednesday,03/02/2011 06:00,0,178,10,8,34,102,330,0,330, +Wednesday,03/02/2011 07:00,0,212,30,24,44,102,410,-2,408, +Wednesday,03/02/2011 08:00,0,174,34,36,52,102,394,-74,320, +Wednesday,03/02/2011 09:00,0,148,36,36,62,104,386,-182,204, +Wednesday,03/02/2011 10:00,0,134,36,34,68,102,372,-260,112, +Wednesday,03/02/2011 11:00,0,116,36,34,70,102,358,-296,62, +Wednesday,03/02/2011 12:00,0,100,38,34,72,104,346,-264,82, +Wednesday,03/02/2011 13:00,0,80,36,30,68,104,318,-332,-14, +Wednesday,03/02/2011 14:00,0,74,38,36,64,102,312,-246,66, +Wednesday,03/02/2011 15:00,0,68,40,40,64,104,316,-196,120, +Wednesday,03/02/2011 16:00,0,52,38,42,64,104,298,-194,104, +Wednesday,03/02/2011 17:00,0,0,38,54,56,106,252,-76,176, +Wednesday,03/02/2011 18:00,0,98,34,66,48,102,344,-6,338, +Wednesday,03/02/2011 19:00,0,0,10,48,42,102,200,0,200, +Wednesday,03/02/2011 20:00,0,32,4,42,38,102,216,0,216, +Wednesday,03/02/2011 21:00,0,0,6,30,36,102,172,0,172, +Wednesday,03/02/2011 22:00,0,0,2,20,36,102,158,0,158, +Wednesday,03/02/2011 23:00,0,0,4,10,36,102,152,0,152, +Thursday,03/03/2011 00:00,0,0,4,6,36,102,146,0,146, +Thursday,03/03/2011 01:00,0,0,4,8,32,104,148,0,148, +Thursday,03/03/2011 02:00,0,130,4,6,36,102,276,0,276, +Thursday,03/03/2011 03:00,0,0,4,4,34,102,142,0,142, +Thursday,03/03/2011 04:00,0,32,6,4,36,100,176,0,176, +Thursday,03/03/2011 05:00,0,0,4,6,34,102,146,0,146, +Thursday,03/03/2011 06:00,0,64,10,8,34,102,218,0,218, +Thursday,03/03/2011 07:00,0,0,30,24,46,102,202,-4,198, +Thursday,03/03/2011 08:00,0,0,34,34,52,100,218,-72,146, +Thursday,03/03/2011 09:00,0,0,36,34,62,102,234,-172,62, +Thursday,03/03/2011 10:00,0,0,38,28,70,102,238,-252,-14, +Thursday,03/03/2011 11:00,0,0,38,30,68,104,238,-314,-76, +Thursday,03/03/2011 12:00,0,66,36,32,70,102,304,-296,8, +Thursday,03/03/2011 13:00,0,0,40,30,66,104,238,-270,-32, +Thursday,03/03/2011 14:00,0,0,38,38,66,104,246,-148,98, +Thursday,03/03/2011 15:00,0,162,40,38,66,102,406,-214,192, +Thursday,03/03/2011 16:00,0,0,38,42,60,104,242,-134,108, +Thursday,03/03/2011 17:00,0,0,36,52,56,104,246,-88,158, +Thursday,03/03/2011 18:00,0,0,36,62,48,104,250,-6,244, +Thursday,03/03/2011 19:00,0,0,10,44,36,100,190,0,190, +Thursday,03/03/2011 20:00,0,0,4,40,40,104,186,0,186, +Thursday,03/03/2011 21:00,0,0,6,28,36,104,172,0,172, +Thursday,03/03/2011 22:00,0,0,4,18,38,102,160,0,160, +Thursday,03/03/2011 23:00,0,0,4,8,34,104,150,0,150, +Friday,03/04/2011 00:00,0,0,6,10,36,102,152,0,152, +Friday,03/04/2011 01:00,0,0,2,4,36,102,144,0,144, +Friday,03/04/2011 02:00,0,0,4,4,34,104,146,0,146, +Friday,03/04/2011 03:00,0,32,4,4,38,104,180,0,180, +Friday,03/04/2011 04:00,0,0,4,2,36,104,144,0,144, +Friday,03/04/2011 05:00,0,0,6,6,38,104,152,0,152, +Friday,03/04/2011 06:00,0,0,8,4,34,102,148,0,148, +Friday,03/04/2011 07:00,0,0,32,22,42,102,196,-6,190, +Friday,03/04/2011 08:00,0,0,34,32,52,102,220,-78,142, +Friday,03/04/2011 09:00,0,0,34,36,56,102,226,-162,64, +Friday,03/04/2011 10:00,0,0,38,36,64,104,238,-208,30, +Friday,03/04/2011 11:00,0,0,34,38,66,104,240,-196,44, +Friday,03/04/2011 12:00,0,0,38,34,64,102,236,-266,-30, +Friday,03/04/2011 13:00,0,0,36,38,60,102,236,-216,20, +Friday,03/04/2011 14:00,0,0,36,32,60,104,232,-276,-44, +Friday,03/04/2011 15:00,0,0,40,36,62,104,240,-266,-26, +Friday,03/04/2011 16:00,0,0,38,40,60,104,238,-222,16, +Friday,03/04/2011 17:00,0,0,36,46,48,102,230,-96,134, +Friday,03/04/2011 18:00,0,0,34,56,44,102,234,-12,222, +Friday,03/04/2011 19:00,0,0,8,44,38,102,192,0,192, +Friday,03/04/2011 20:00,0,0,6,44,38,102,188,0,188, +Friday,03/04/2011 21:00,0,0,4,30,36,102,172,0,172, +Friday,03/04/2011 22:00,0,0,4,12,38,102,156,0,156, +Friday,03/04/2011 23:00,0,0,4,4,32,102,142,0,142, +Saturday,03/05/2011 00:00,0,0,4,6,32,102,144,0,144, +Saturday,03/05/2011 01:00,0,0,4,4,36,102,144,0,144, +Saturday,03/05/2011 02:00,0,0,6,2,34,102,144,0,144, +Saturday,03/05/2011 03:00,0,0,6,4,34,104,146,0,146, +Saturday,03/05/2011 04:00,0,0,4,4,32,102,140,0,140, +Saturday,03/05/2011 05:00,0,0,4,4,36,102,146,0,146, +Saturday,03/05/2011 06:00,0,0,6,6,32,102,146,0,146, +Saturday,03/05/2011 07:00,0,0,6,8,34,104,150,-14,136, +Saturday,03/05/2011 08:00,0,0,4,8,36,102,148,-58,90, +Saturday,03/05/2011 09:00,0,0,4,6,34,102,142,-84,58, +Saturday,03/05/2011 10:00,0,0,6,4,34,102,144,-120,24, +Saturday,03/05/2011 11:00,0,0,4,2,32,94,132,-216,-84, +Saturday,03/05/2011 12:00,0,0,4,4,28,110,146,-288,-142, +Saturday,03/05/2011 13:00,0,0,6,8,30,102,144,-350,-206, +Saturday,03/05/2011 14:00,0,0,6,6,32,104,146,-278,-132, +Saturday,03/05/2011 15:00,0,0,4,2,32,104,142,-200,-58, +Saturday,03/05/2011 16:00,0,0,4,8,32,102,146,-170,-24, +Saturday,03/05/2011 17:00,0,0,6,6,32,102,144,-62,82, +Saturday,03/05/2011 18:00,0,0,2,8,32,102,144,-4,140, +Saturday,03/05/2011 19:00,0,0,6,10,34,102,150,0,150, +Saturday,03/05/2011 20:00,0,0,2,10,32,102,146,0,146, +Saturday,03/05/2011 21:00,0,0,6,10,32,102,148,0,148, +Saturday,03/05/2011 22:00,0,0,4,8,30,104,146,0,146, +Saturday,03/05/2011 23:00,0,0,4,8,34,102,146,0,146, +Sunday,03/06/2011 00:00,0,0,6,6,32,104,146,0,146, +Sunday,03/06/2011 01:00,0,0,6,8,28,102,142,0,142, +Sunday,03/06/2011 02:00,0,0,4,8,34,104,148,0,148, +Sunday,03/06/2011 03:00,0,0,6,6,32,102,146,0,146, +Sunday,03/06/2011 04:00,0,0,4,6,32,102,144,0,144, +Sunday,03/06/2011 05:00,0,0,4,4,32,102,140,0,140, +Sunday,03/06/2011 06:00,0,0,6,8,32,104,148,0,148, +Sunday,03/06/2011 07:00,0,0,6,8,32,102,148,-4,144, +Sunday,03/06/2011 08:00,0,0,6,6,30,102,142,-46,96, +Sunday,03/06/2011 09:00,0,0,4,6,32,102,142,-130,12, +Sunday,03/06/2011 10:00,0,0,6,10,36,102,152,-206,-54, +Sunday,03/06/2011 11:00,0,0,2,8,32,102,144,-210,-66, +Sunday,03/06/2011 12:00,0,0,6,6,32,102,144,-162,-18, +Sunday,03/06/2011 13:00,0,0,4,4,32,104,142,-126,16, +Sunday,03/06/2011 14:00,0,0,6,8,34,102,146,-112,34, +Sunday,03/06/2011 15:00,0,0,4,4,34,102,144,-70,74, +Sunday,03/06/2011 16:00,0,0,4,8,30,102,144,-48,96, +Sunday,03/06/2011 17:00,0,0,4,6,34,102,146,-26,120, +Sunday,03/06/2011 18:00,0,0,4,4,30,102,140,-4,136, +Sunday,03/06/2011 19:00,0,0,6,12,32,104,152,0,152, +Sunday,03/06/2011 20:00,0,0,6,8,34,102,148,0,148, +Sunday,03/06/2011 21:00,0,0,6,6,30,104,144,0,144, +Sunday,03/06/2011 22:00,0,0,4,4,32,102,140,0,140, +Sunday,03/06/2011 23:00,0,0,6,2,32,104,144,0,144, +Monday,03/07/2011 00:00,0,0,4,4,32,102,142,0,142, +Monday,03/07/2011 01:00,0,0,6,4,30,102,142,0,142, +Monday,03/07/2011 02:00,0,0,6,6,32,104,146,0,146, +Monday,03/07/2011 03:00,0,0,6,4,32,102,142,0,142, +Monday,03/07/2011 04:00,0,0,4,4,34,104,144,0,144, +Monday,03/07/2011 05:00,0,0,6,4,34,104,146,0,146, +Monday,03/07/2011 06:00,0,0,12,6,32,104,152,0,152, +Monday,03/07/2011 07:00,0,0,30,28,38,102,198,0,198, +Monday,03/07/2011 08:00,0,0,34,48,54,102,236,-2,234, +Monday,03/07/2011 09:00,0,0,36,58,62,102,256,-14,242, +Monday,03/07/2011 10:00,0,0,36,66,68,102,270,-20,250, +Monday,03/07/2011 11:00,0,0,40,68,70,104,280,-20,260, +Monday,03/07/2011 12:00,0,0,36,68,74,102,280,-22,258, +Monday,03/07/2011 13:00,0,0,38,68,68,102,274,-20,254, +Monday,03/07/2011 14:00,0,0,36,72,68,104,278,-14,264, +Monday,03/07/2011 15:00,0,0,38,72,62,102,274,-8,266, +Monday,03/07/2011 16:00,0,0,38,72,60,104,274,-4,270, +Monday,03/07/2011 17:00,0,0,38,70,56,104,266,-2,264, +Monday,03/07/2011 18:00,0,0,36,66,50,104,254,0,254, +Monday,03/07/2011 19:00,0,0,10,42,42,102,194,0,194, +Monday,03/07/2011 20:00,0,0,6,44,38,106,194,0,194, +Monday,03/07/2011 21:00,0,0,6,32,38,104,178,0,178, +Monday,03/07/2011 22:00,0,0,6,18,38,102,162,0,162, +Monday,03/07/2011 23:00,0,0,2,8,34,104,148,0,148, +Tuesday,03/08/2011 00:00,0,0,6,8,38,102,152,0,152, +Tuesday,03/08/2011 01:00,0,0,6,8,34,102,150,0,150, +Tuesday,03/08/2011 02:00,0,0,6,6,36,104,150,0,150, +Tuesday,03/08/2011 03:00,0,0,6,2,34,104,144,0,144, +Tuesday,03/08/2011 04:00,0,0,6,4,38,102,148,0,148, +Tuesday,03/08/2011 05:00,0,0,6,8,38,102,152,0,152, +Tuesday,03/08/2011 06:00,0,0,10,6,34,102,152,0,152, +Tuesday,03/08/2011 07:00,0,0,32,22,44,102,200,0,200, +Tuesday,03/08/2011 08:00,0,0,34,44,48,102,228,0,228, +Tuesday,03/08/2011 09:00,0,0,36,58,66,104,262,-6,256, +Tuesday,03/08/2011 10:00,0,0,36,64,64,102,266,-8,258, +Tuesday,03/08/2011 11:00,0,0,34,58,66,102,260,-20,240, +Tuesday,03/08/2011 12:00,0,0,36,40,72,106,254,-70,184, +Tuesday,03/08/2011 13:00,0,0,36,32,66,104,236,-278,-42, +Tuesday,03/08/2011 14:00,0,0,38,48,68,102,254,-130,124, +Tuesday,03/08/2011 15:00,0,0,38,50,68,106,258,-120,138, +Tuesday,03/08/2011 16:00,0,0,36,48,62,102,246,-144,102, +Tuesday,03/08/2011 17:00,0,0,38,54,58,102,250,-78,172, +Tuesday,03/08/2011 18:00,0,0,36,62,46,104,246,-12,234, +Tuesday,03/08/2011 19:00,0,0,10,48,42,104,202,0,202, +Tuesday,03/08/2011 20:00,0,0,6,46,38,104,192,0,192, +Tuesday,03/08/2011 21:00,0,0,6,28,38,104,174,0,174, +Tuesday,03/08/2011 22:00,0,0,4,18,36,102,156,0,156, +Tuesday,03/08/2011 23:00,0,0,4,10,36,104,152,0,152, +Wednesday,03/09/2011 00:00,0,0,6,4,34,102,144,0,144, +Wednesday,03/09/2011 01:00,0,0,4,6,36,102,148,0,148, +Wednesday,03/09/2011 02:00,0,0,6,6,36,102,148,0,148, +Wednesday,03/09/2011 03:00,0,0,6,6,36,104,148,0,148, +Wednesday,03/09/2011 04:00,0,0,6,6,36,104,148,0,148, +Wednesday,03/09/2011 05:00,0,0,6,8,34,102,148,0,148, +Wednesday,03/09/2011 06:00,0,0,10,8,34,104,154,0,154, +Wednesday,03/09/2011 07:00,0,0,30,22,44,102,198,-12,186, +Wednesday,03/09/2011 08:00,0,0,34,40,50,104,226,-88,138, +Wednesday,03/09/2011 09:00,0,0,36,36,62,102,234,-194,40, +Wednesday,03/09/2011 10:00,0,0,36,34,72,104,244,-286,-42, +Wednesday,03/09/2011 11:00,0,0,36,34,66,102,236,-338,-102, +Wednesday,03/09/2011 12:00,0,0,38,30,74,104,244,-352,-108, +Wednesday,03/09/2011 13:00,0,0,38,32,74,102,244,-350,-106, +Wednesday,03/09/2011 14:00,0,0,38,32,66,104,238,-336,-98, +Wednesday,03/09/2011 15:00,0,0,40,34,64,102,240,-282,-42, +Wednesday,03/09/2011 16:00,0,0,40,46,66,104,252,-86,166, +Wednesday,03/09/2011 17:00,0,0,38,54,58,104,252,-44,208, +Wednesday,03/09/2011 18:00,0,0,34,56,50,102,242,-20,222, +Wednesday,03/09/2011 19:00,0,0,8,40,42,102,190,0,190, +Wednesday,03/09/2011 20:00,0,0,8,44,40,104,194,0,194, +Wednesday,03/09/2011 21:00,0,0,4,36,40,102,182,0,182, +Wednesday,03/09/2011 22:00,0,0,4,16,38,102,160,0,160, +Wednesday,03/09/2011 23:00,0,0,4,8,34,104,148,0,148, +Thursday,03/10/2011 00:00,0,0,4,8,38,102,150,0,150, +Thursday,03/10/2011 01:00,0,0,6,4,36,104,148,0,148, +Thursday,03/10/2011 02:00,0,0,6,4,38,102,148,0,148, +Thursday,03/10/2011 03:00,0,0,4,4,34,104,144,0,144, +Thursday,03/10/2011 04:00,0,0,4,4,38,104,148,0,148, +Thursday,03/10/2011 05:00,0,0,6,4,36,102,148,0,148, +Thursday,03/10/2011 06:00,0,0,10,8,36,104,156,0,156, +Thursday,03/10/2011 07:00,0,0,32,18,44,102,194,-10,184, +Thursday,03/10/2011 08:00,0,0,34,36,54,102,224,-88,136, +Thursday,03/10/2011 09:00,0,0,38,34,62,102,234,-196,38, +Thursday,03/10/2011 10:00,0,0,38,30,70,106,242,-268,-26, +Thursday,03/10/2011 11:00,0,0,36,28,66,104,234,-314,-80, +Thursday,03/10/2011 12:00,0,0,38,28,72,102,240,-332,-92, +Thursday,03/10/2011 13:00,0,0,38,28,70,104,238,-334,-96, +Thursday,03/10/2011 14:00,0,0,40,30,68,104,242,-308,-66, +Thursday,03/10/2011 15:00,0,0,40,34,68,106,248,-262,-14, +Thursday,03/10/2011 16:00,0,0,40,40,62,106,246,-192,54, +Thursday,03/10/2011 17:00,0,0,38,52,56,108,252,-100,152, +Thursday,03/10/2011 18:00,0,0,38,56,46,104,242,-16,226, +Thursday,03/10/2011 19:00,0,0,12,50,38,106,204,0,204, +Thursday,03/10/2011 20:00,0,0,6,46,40,104,194,0,194, +Thursday,03/10/2011 21:00,0,0,6,40,38,104,186,0,186, +Thursday,03/10/2011 22:00,0,0,6,24,38,104,172,0,172, +Thursday,03/10/2011 23:00,0,0,6,14,34,102,156,0,156, +Friday,03/11/2011 00:00,0,0,6,10,38,104,158,0,158, +Friday,03/11/2011 01:00,0,0,4,12,36,104,154,0,154, +Friday,03/11/2011 02:00,0,0,4,12,36,102,154,0,154, +Friday,03/11/2011 03:00,0,0,6,10,36,104,154,0,154, +Friday,03/11/2011 04:00,0,0,8,4,34,104,148,0,148, +Friday,03/11/2011 05:00,0,0,6,8,38,106,156,0,156, +Friday,03/11/2011 06:00,0,0,10,8,34,104,156,0,156, +Friday,03/11/2011 07:00,0,0,32,18,46,104,198,-12,186, +Friday,03/11/2011 08:00,0,0,34,32,48,102,216,-66,150, +Friday,03/11/2011 09:00,0,0,34,40,62,104,238,-96,142, +Friday,03/11/2011 10:00,0,0,36,38,66,104,242,-168,74, +Friday,03/11/2011 11:00,0,0,38,32,66,106,238,-246,-8, +Friday,03/11/2011 12:00,0,0,36,32,66,104,236,-262,-26, +Friday,03/11/2011 13:00,0,0,40,30,64,104,236,-246,-10, +Friday,03/11/2011 14:00,0,0,36,36,62,104,238,-214,24, +Friday,03/11/2011 15:00,0,0,38,36,60,106,240,-268,-28, +Friday,03/11/2011 16:00,0,0,36,36,58,106,236,-212,24, +Friday,03/11/2011 17:00,0,0,36,44,54,108,240,-112,128, +Friday,03/11/2011 18:00,0,0,36,54,44,104,238,-24,214, +Friday,03/11/2011 19:00,0,0,10,40,42,104,194,0,194, +Friday,03/11/2011 20:00,0,0,10,42,36,104,188,0,188, +Friday,03/11/2011 21:00,0,0,4,22,34,106,164,0,164, +Friday,03/11/2011 22:00,0,0,6,12,36,106,156,0,156, +Friday,03/11/2011 23:00,0,0,6,8,32,104,150,0,150, +Saturday,03/12/2011 00:00,0,0,4,2,34,106,144,0,144, +Saturday,03/12/2011 01:00,0,0,4,6,32,104,146,0,146, +Saturday,03/12/2011 02:00,0,0,8,4,34,104,148,0,148, +Saturday,03/12/2011 03:00,0,0,6,6,30,102,142,0,142, +Saturday,03/12/2011 04:00,0,0,4,4,36,104,146,0,146, +Saturday,03/12/2011 05:00,0,0,8,4,34,106,148,0,148, +Saturday,03/12/2011 06:00,0,0,4,2,32,104,140,0,140, +Saturday,03/12/2011 07:00,0,0,8,8,36,102,152,-10,142, +Saturday,03/12/2011 08:00,0,0,4,6,34,104,148,-92,56, +Saturday,03/12/2011 09:00,0,0,8,6,34,102,148,-194,-46, +Saturday,03/12/2011 10:00,0,0,6,6,32,104,146,-216,-70, +Saturday,03/12/2011 11:00,0,0,4,6,34,104,146,-324,-178, +Saturday,03/12/2011 12:00,0,0,6,6,36,104,152,-332,-180, +Saturday,03/12/2011 13:00,0,0,4,10,34,104,152,-150,2, +Saturday,03/12/2011 14:00,0,0,6,10,32,104,152,-124,28, +Saturday,03/12/2011 15:00,0,0,6,10,34,104,154,-94,60, +Saturday,03/12/2011 16:00,0,0,6,10,34,104,154,-52,102, +Saturday,03/12/2011 17:00,0,0,4,10,32,106,150,-28,122, +Saturday,03/12/2011 18:00,0,0,6,12,34,106,156,-12,144, +Saturday,03/12/2011 19:00,0,0,6,8,34,104,150,0,150, +Saturday,03/12/2011 20:00,0,0,6,10,34,104,152,0,152, +Saturday,03/12/2011 21:00,0,0,6,12,32,104,152,0,152, +Saturday,03/12/2011 22:00,0,0,6,10,34,102,152,0,152, +Saturday,03/12/2011 23:00,0,0,6,12,34,106,154,0,154, +Sunday,3/13/2011 0:00,0,0,6,8,32,102,146,0,146, +Sunday,3/13/2011 1:00,0,0,8,10,34,106,154,0,154, +Sunday,3/13/2011 2:00,0,0,4,4,32,104,144,0,144, +Sunday,3/13/2011 3:00,0,0,0,0,4,102,106,0,106, +Sunday,3/13/2011 4:00,0,0,6,6,32,104,146,0,146, +Sunday,3/13/2011 5:00,0,0,8,4,32,104,146,0,146, +Sunday,3/13/2011 6:00,0,0,8,6,36,104,150,0,150, +Sunday,3/13/2011 7:00,0,0,6,8,32,104,150,0,150, +Sunday,3/13/2011 8:00,0,0,6,6,34,102,148,-2,146, +Sunday,3/13/2011 9:00,0,0,6,6,32,106,148,-66,82, +Sunday,3/13/2011 10:00,0,0,6,4,36,104,146,-160,-14, +Sunday,3/13/2011 11:00,0,0,6,6,32,104,144,-238,-94, +Sunday,3/13/2011 12:00,0,0,6,4,36,104,148,-294,-146, +Sunday,3/13/2011 13:00,0,0,6,4,32,106,148,-342,-194, +Sunday,3/13/2011 14:00,0,0,6,4,36,104,148,-348,-200, +Sunday,3/13/2011 15:00,0,0,6,4,32,104,146,-222,-76, +Sunday,3/13/2011 16:00,0,0,6,4,34,104,146,-260,-114, +Sunday,3/13/2011 17:00,0,0,6,8,36,104,152,-216,-64, +Sunday,3/13/2011 18:00,0,0,6,10,34,106,154,-108,46, +Sunday,3/13/2011 19:00,0,0,6,4,32,102,142,-18,124, +Sunday,3/13/2011 20:00,0,0,4,8,34,104,148,0,148, +Sunday,3/13/2011 21:00,0,0,6,10,34,104,150,0,150, +Sunday,3/13/2011 22:00,0,0,6,10,36,102,154,0,154, +Sunday,3/13/2011 23:00,0,0,6,8,32,104,148,0,148, +Monday,3/14/2011 0:00,0,0,8,8,32,104,148,0,148, +Monday,3/14/2011 1:00,0,0,6,4,34,104,146,0,146, +Monday,3/14/2011 2:00,0,0,8,4,34,104,148,0,148, +Monday,3/14/2011 3:00,0,0,6,4,32,106,146,0,146, +Monday,3/14/2011 4:00,0,0,6,6,34,104,148,0,148, +Monday,3/14/2011 5:00,0,0,6,4,34,102,146,0,146, +Monday,3/14/2011 6:00,0,0,12,6,36,104,156,0,156, +Monday,3/14/2011 7:00,0,0,32,26,42,104,200,0,200, +Monday,3/14/2011 8:00,0,0,36,48,52,104,240,-6,234, +Monday,3/14/2011 9:00,0,0,36,56,60,102,254,-60,194, +Monday,3/14/2011 10:00,0,0,36,60,70,104,268,-80,188, +Monday,3/14/2011 11:00,0,0,36,64,70,104,272,-86,186, +Monday,3/14/2011 12:00,0,0,36,42,68,104,248,-286,-38, +Monday,3/14/2011 13:00,0,0,38,38,72,102,250,-286,-36, +Monday,3/14/2011 14:00,0,0,36,38,66,104,244,-332,-88, +Monday,3/14/2011 15:00,0,0,38,38,64,106,244,-306,-62, +Monday,3/14/2011 16:00,0,0,38,44,64,104,250,-204,46, +Monday,3/14/2011 17:00,0,0,36,48,54,104,242,-192,50, +Monday,3/14/2011 18:00,0,0,36,64,48,106,254,-40,214, +Monday,3/14/2011 19:00,0,0,12,38,44,104,196,-6,190, +Monday,3/14/2011 20:00,0,0,6,40,38,104,184,0,184, +Monday,3/14/2011 21:00,0,0,6,32,38,106,180,0,180, +Monday,3/14/2011 22:00,0,0,4,24,36,104,168,0,168, +Monday,3/14/2011 23:00,0,0,6,6,34,104,148,0,148, +Tuesday,3/15/2011 0:00,0,0,4,6,38,106,152,0,152, +Tuesday,3/15/2011 1:00,0,0,6,6,32,104,148,0,148, +Tuesday,3/15/2011 2:00,0,0,6,6,36,106,152,0,152, +Tuesday,3/15/2011 3:00,0,0,6,4,34,106,150,0,150, +Tuesday,3/15/2011 4:00,0,0,4,6,38,104,150,0,150, +Tuesday,3/15/2011 5:00,0,0,6,6,34,104,150,0,150, +Tuesday,3/15/2011 6:00,0,0,12,8,34,104,156,0,156, +Tuesday,3/15/2011 7:00,0,0,32,26,46,104,206,0,206, +Tuesday,3/15/2011 8:00,0,0,34,44,54,104,234,-20,214, +Tuesday,3/15/2011 9:00,0,0,34,56,62,106,256,-44,212, +Tuesday,3/15/2011 10:00,0,0,36,56,66,104,260,-100,160, +Tuesday,3/15/2011 11:00,0,0,36,54,68,104,260,-124,136, +Tuesday,3/15/2011 12:00,0,0,34,52,72,104,262,-146,116, +Tuesday,3/15/2011 13:00,0,0,38,38,70,106,250,-308,-58, +Tuesday,3/15/2011 14:00,0,0,34,48,64,106,250,-150,100, +Tuesday,3/15/2011 15:00,0,0,36,50,64,106,254,-164,90, +Tuesday,3/15/2011 16:00,0,0,36,40,66,104,246,-260,-14, +Tuesday,3/15/2011 17:00,0,0,36,48,56,106,244,-206,38, +Tuesday,3/15/2011 18:00,0,0,36,62,44,106,248,-80,168, +Tuesday,3/15/2011 19:00,0,0,10,32,40,104,186,-20,166, +Tuesday,3/15/2011 20:00,0,0,6,34,40,108,186,0,186, +Tuesday,3/15/2011 21:00,0,0,6,28,38,104,174,0,174, +Tuesday,3/15/2011 22:00,0,0,8,24,40,106,174,0,174, +Tuesday,3/15/2011 23:00,0,0,4,10,36,104,154,0,154, +Wednesday,3/16/2011 0:00,0,0,6,6,34,104,150,0,150, +Wednesday,3/16/2011 1:00,0,0,6,8,32,106,150,0,150, +Wednesday,3/16/2011 2:00,0,0,6,6,38,106,154,0,154, +Wednesday,3/16/2011 3:00,0,0,6,6,34,106,150,0,150, +Wednesday,3/16/2011 4:00,0,0,4,6,36,104,148,0,148, +Wednesday,3/16/2011 5:00,0,0,6,6,34,104,150,0,150, +Wednesday,3/16/2011 6:00,0,0,10,12,36,104,160,0,160, +Wednesday,3/16/2011 7:00,0,0,32,24,46,106,204,0,204, +Wednesday,3/16/2011 8:00,0,0,34,40,48,104,226,-8,218, +Wednesday,3/16/2011 9:00,0,0,36,56,58,106,254,-54,200, +Wednesday,3/16/2011 10:00,0,0,34,52,70,104,258,-106,152, +Wednesday,3/16/2011 11:00,0,0,34,46,66,106,252,-156,96, +Wednesday,3/16/2011 12:00,0,0,36,42,72,104,250,-214,36, +Wednesday,3/16/2011 13:00,0,0,36,36,68,106,246,-318,-72, +Wednesday,3/16/2011 14:00,0,0,36,34,66,106,238,-330,-92, +Wednesday,3/16/2011 15:00,0,0,36,38,62,108,242,-272,-30, +Wednesday,3/16/2011 16:00,0,0,36,38,62,114,248,-228,20, +Wednesday,3/16/2011 17:00,0,0,38,44,58,104,242,-182,60, +Wednesday,3/16/2011 18:00,0,0,38,52,50,108,244,-114,130, +Wednesday,3/16/2011 19:00,0,0,12,34,44,106,194,-20,174, +Wednesday,3/16/2011 20:00,0,0,6,38,42,104,188,0,188, +Wednesday,3/16/2011 21:00,0,0,8,34,40,106,186,0,186, +Wednesday,3/16/2011 22:00,0,0,6,26,40,106,176,0,176, +Wednesday,3/16/2011 23:00,0,0,4,18,38,104,162,0,162, +Thursday,3/17/2011 0:00,0,0,4,14,36,104,156,0,156, +Thursday,3/17/2011 1:00,0,0,4,8,36,106,152,0,152, +Thursday,3/17/2011 2:00,0,0,4,6,38,104,152,0,152, +Thursday,3/17/2011 3:00,0,0,4,6,34,104,146,0,146, +Thursday,3/17/2011 4:00,0,0,6,4,36,108,152,0,152, +Thursday,3/17/2011 5:00,0,0,4,6,38,104,150,0,150, +Thursday,3/17/2011 6:00,0,0,12,12,36,104,164,0,164, +Thursday,3/17/2011 7:00,0,0,30,28,44,104,204,0,204, +Thursday,3/17/2011 8:00,0,0,34,46,50,104,232,-8,224, +Thursday,3/17/2011 9:00,0,0,34,52,66,104,254,-98,156, +Thursday,3/17/2011 10:00,0,0,32,42,68,104,244,-210,34, +Thursday,3/17/2011 11:00,0,0,36,36,66,104,240,-284,-44, +Thursday,3/17/2011 12:00,0,0,36,34,72,104,246,-332,-86, +Thursday,3/17/2011 13:00,0,0,38,32,66,104,240,-344,-104, +Thursday,3/17/2011 14:00,0,0,38,34,64,108,242,-344,-102, +Thursday,3/17/2011 15:00,0,0,38,36,66,106,246,-288,-42, +Thursday,3/17/2011 16:00,0,0,38,48,64,108,256,-140,116, +Thursday,3/17/2011 17:00,0,0,38,54,56,104,250,-78,172, +Thursday,3/17/2011 18:00,0,0,36,58,48,104,246,-30,216, +Thursday,3/17/2011 19:00,0,0,10,36,40,102,188,-10,178, +Thursday,3/17/2011 20:00,0,0,6,34,38,104,180,0,180, +Thursday,3/17/2011 21:00,0,0,4,32,40,102,176,0,176, +Thursday,3/17/2011 22:00,0,0,6,24,40,104,170,0,170, +Thursday,3/17/2011 23:00,0,0,4,10,30,102,144,0,144, +Friday,3/18/2011 0:00,0,0,2,16,30,104,152,0,152, +Friday,3/18/2011 1:00,0,0,4,14,28,102,146,0,146, +Friday,3/18/2011 2:00,0,0,4,18,32,106,158,0,158, +Friday,3/18/2011 3:00,0,0,4,14,32,104,154,0,154, +Friday,3/18/2011 4:00,0,0,4,14,32,104,152,0,152, +Friday,3/18/2011 5:00,0,0,6,16,32,104,156,0,156, +Friday,3/18/2011 6:00,0,0,10,18,30,104,160,0,160, +Friday,3/18/2011 7:00,0,0,30,26,36,102,194,0,194, +Friday,3/18/2011 8:00,0,0,34,38,46,104,220,0,220, +Friday,3/18/2011 9:00,0,0,34,44,56,104,236,0,236, +Friday,3/18/2011 10:00,0,0,34,38,60,104,234,-6,228, +Friday,3/18/2011 11:00,0,0,34,32,66,104,234,-14,220, +Friday,3/18/2011 12:00,0,0,36,30,62,104,230,-108,122, +Friday,3/18/2011 13:00,0,0,36,28,64,104,230,-344,-114, +Friday,3/18/2011 14:00,0,0,38,30,64,104,232,-344,-112, +Friday,3/18/2011 15:00,0,0,38,34,58,106,232,-316,-84, +Friday,3/18/2011 16:00,0,0,38,32,56,104,230,-274,-44, +Friday,3/18/2011 17:00,0,0,36,36,52,106,228,-186,42, +Friday,3/18/2011 18:00,0,0,36,44,44,104,226,-84,142, +Friday,3/18/2011 19:00,0,0,8,26,42,104,178,-24,154, +Friday,3/18/2011 20:00,0,0,4,28,38,104,172,0,172, +Friday,3/18/2011 21:00,0,0,4,22,38,104,164,0,164, +Friday,3/18/2011 22:00,0,0,6,14,34,104,156,0,156, +Friday,3/18/2011 23:00,0,0,6,20,38,104,168,0,168, +Saturday,3/19/2011 0:00,0,0,6,14,32,104,154,0,154, +Saturday,3/19/2011 1:00,0,0,4,8,34,104,146,0,146, +Saturday,3/19/2011 2:00,0,0,6,6,36,104,150,0,150, +Saturday,3/19/2011 3:00,0,0,6,6,34,104,148,0,148, +Saturday,3/19/2011 4:00,0,0,4,6,34,104,148,0,148, +Saturday,3/19/2011 5:00,0,0,6,6,32,104,146,0,146, +Saturday,3/19/2011 6:00,0,0,6,8,36,104,152,0,152, +Saturday,3/19/2011 7:00,0,0,6,8,32,102,148,0,148, +Saturday,3/19/2011 8:00,0,0,6,12,34,104,154,-22,132, +Saturday,3/19/2011 9:00,0,0,8,8,32,104,150,-108,42, +Saturday,3/19/2011 10:00,0,0,4,14,36,102,154,-208,-54, +Saturday,3/19/2011 11:00,0,0,6,10,34,104,150,-280,-130, +Saturday,3/19/2011 12:00,0,0,8,8,36,104,154,-328,-174, +Saturday,3/19/2011 13:00,0,0,4,6,34,106,148,-336,-188, +Saturday,3/19/2011 14:00,0,0,6,4,34,104,146,-292,-146, +Saturday,3/19/2011 15:00,0,0,4,6,34,104,146,-228,-82, +Saturday,3/19/2011 16:00,0,0,6,6,34,104,146,-230,-84, +Saturday,3/19/2011 17:00,0,0,4,8,34,104,146,-182,-36, +Saturday,3/19/2011 18:00,0,0,6,8,34,106,152,-140,12, +Saturday,3/19/2011 19:00,0,0,6,12,34,104,156,-32,124, +Saturday,3/19/2011 20:00,0,0,4,10,34,104,148,0,148, +Saturday,3/19/2011 21:00,0,0,8,12,34,102,152,0,152, +Saturday,3/19/2011 22:00,0,0,8,10,34,104,154,0,154, +Saturday,3/19/2011 23:00,0,0,4,10,30,106,148,0,148, +Sunday,3/20/2011 0:00,0,0,8,10,34,102,150,0,150, +Sunday,3/20/2011 1:00,0,0,4,6,34,104,148,0,148, +Sunday,3/20/2011 2:00,0,0,6,8,34,104,150,0,150, +Sunday,3/20/2011 3:00,0,0,8,8,32,106,152,0,152, +Sunday,3/20/2011 4:00,0,0,4,6,32,102,144,0,144, +Sunday,3/20/2011 5:00,0,0,6,8,36,104,152,0,152, +Sunday,3/20/2011 6:00,0,0,6,6,32,102,146,0,146, +Sunday,3/20/2011 7:00,0,0,6,8,32,102,146,0,146, +Sunday,3/20/2011 8:00,0,0,4,8,34,102,148,-18,130, +Sunday,3/20/2011 9:00,0,0,8,4,32,104,148,-106,42, +Sunday,3/20/2011 10:00,0,0,6,4,32,102,144,-212,-68, +Sunday,3/20/2011 11:00,0,0,6,4,32,104,146,-286,-140, +Sunday,3/20/2011 12:00,0,0,6,6,36,104,150,-272,-122, +Sunday,3/20/2011 13:00,0,0,6,8,32,104,148,-270,-122, +Sunday,3/20/2011 14:00,0,0,6,6,34,104,148,-222,-74, +Sunday,3/20/2011 15:00,0,0,4,4,36,104,148,-246,-98, +Sunday,3/20/2011 16:00,0,0,6,4,34,104,146,-114,32, +Sunday,3/20/2011 17:00,0,0,4,8,32,104,146,-88,58, +Sunday,3/20/2011 18:00,0,0,4,6,34,104,146,-48,98, +Sunday,3/20/2011 19:00,0,0,4,6,36,104,148,-14,134, +Sunday,3/20/2011 20:00,0,0,6,8,36,104,152,0,152, +Sunday,3/20/2011 21:00,0,0,4,10,32,104,150,0,150, +Sunday,3/20/2011 22:00,0,0,4,8,32,102,146,0,146, +Sunday,3/20/2011 23:00,0,0,8,6,36,104,152,0,152, +Monday,3/21/2011 0:00,0,0,4,4,34,104,144,0,144, +Monday,3/21/2011 1:00,0,0,6,6,34,104,148,0,148, +Monday,3/21/2011 2:00,0,0,8,4,34,102,146,0,146, +Monday,3/21/2011 3:00,0,0,4,6,32,106,146,0,146, +Monday,3/21/2011 4:00,0,0,8,2,34,104,146,0,146, +Monday,3/21/2011 5:00,0,0,4,8,34,104,148,0,148, +Monday,3/21/2011 6:00,0,0,12,16,38,104,168,0,168, +Monday,3/21/2011 7:00,0,0,30,34,36,102,202,0,202, +Monday,3/21/2011 8:00,0,0,32,52,54,104,240,-14,226, +Monday,3/21/2011 9:00,0,0,38,54,68,104,262,-72,190, +Monday,3/21/2011 10:00,0,0,36,48,72,102,256,-134,122, +Monday,3/21/2011 11:00,0,0,36,44,72,104,254,-204,50, +Monday,3/21/2011 12:00,0,0,36,36,76,104,252,-326,-74, +Monday,3/21/2011 13:00,0,0,40,32,74,104,250,-326,-76, +Monday,3/21/2011 14:00,0,0,40,34,68,104,244,-350,-106, +Monday,3/21/2011 15:00,0,0,38,34,68,108,248,-332,-84, +Monday,3/21/2011 16:00,0,0,40,40,66,104,248,-292,-44, +Monday,3/21/2011 17:00,0,0,38,46,60,108,248,-184,64, +Monday,3/21/2011 18:00,0,0,38,56,54,104,250,-76,174, +Monday,3/21/2011 19:00,0,0,10,34,46,106,194,-16,178, +Monday,3/21/2011 20:00,0,0,8,42,42,106,196,0,196, +Monday,3/21/2011 21:00,0,0,8,36,38,106,186,0,186, +Monday,3/21/2011 22:00,0,0,4,20,42,104,168,0,168, +Monday,3/21/2011 23:00,0,0,6,4,36,104,146,0,146, +Tuesday,3/22/2011 0:00,0,0,4,4,38,106,150,0,150, +Tuesday,3/22/2011 1:00,0,0,8,4,38,104,152,0,152, +Tuesday,3/22/2011 2:00,0,0,8,2,40,104,152,0,152, +Tuesday,3/22/2011 3:00,0,0,4,4,34,104,146,0,146, +Tuesday,3/22/2011 4:00,0,0,6,2,36,104,148,0,148, +Tuesday,3/22/2011 5:00,0,0,8,4,36,104,150,0,150, +Tuesday,3/22/2011 6:00,0,0,10,16,36,104,164,0,164, +Tuesday,3/22/2011 7:00,0,0,30,30,46,104,208,0,208, +Tuesday,3/22/2011 8:00,0,0,34,38,56,104,230,-20,210, +Tuesday,3/22/2011 9:00,0,0,36,50,62,104,250,-44,206, +Tuesday,3/22/2011 10:00,0,0,36,48,72,104,258,-148,110, +Tuesday,3/22/2011 11:00,0,0,34,36,72,102,244,-312,-68, +Tuesday,3/22/2011 12:00,0,0,38,40,70,104,250,-256,-6, +Tuesday,3/22/2011 13:00,0,0,38,38,70,104,248,-274,-26, +Tuesday,3/22/2011 14:00,0,0,40,32,70,104,242,-366,-124, +Tuesday,3/22/2011 15:00,0,0,38,34,72,102,244,-354,-110, +Tuesday,3/22/2011 16:00,0,0,34,38,68,104,242,-322,-80, +Tuesday,3/22/2011 17:00,0,0,36,44,58,104,240,-232,8, +Tuesday,3/22/2011 18:00,0,0,36,54,50,102,242,-128,114, +Tuesday,3/22/2011 19:00,0,0,10,28,42,104,180,-28,152, +Tuesday,3/22/2011 20:00,0,0,4,36,42,104,184,0,184, +Tuesday,3/22/2011 21:00,0,0,4,36,40,102,182,0,182, +Tuesday,3/22/2011 22:00,0,0,4,26,40,104,174,0,174, +Tuesday,3/22/2011 23:00,0,0,4,14,40,104,160,0,160, +Wednesday,3/23/2011 0:00,0,0,4,14,38,104,158,0,158, +Wednesday,3/23/2011 1:00,0,0,4,6,36,102,148,0,148, +Wednesday,3/23/2011 2:00,0,0,4,8,38,104,154,0,154, +Wednesday,3/23/2011 3:00,0,0,6,6,36,104,148,0,148, +Wednesday,3/23/2011 4:00,0,0,4,8,40,104,154,0,154, +Wednesday,3/23/2011 5:00,0,0,6,8,38,102,152,0,152, +Wednesday,3/23/2011 6:00,0,0,10,10,38,104,160,0,160, +Wednesday,3/23/2011 7:00,0,0,32,34,46,102,214,0,214, +Wednesday,3/23/2011 8:00,0,0,36,44,54,104,234,-24,210, +Wednesday,3/23/2011 9:00,0,0,34,48,64,104,248,-126,122, +Wednesday,3/23/2011 10:00,0,0,36,40,72,104,252,-226,26, +Wednesday,3/23/2011 11:00,0,0,34,36,72,104,244,-304,-60, +Wednesday,3/23/2011 12:00,0,0,38,38,70,104,248,-348,-100, +Wednesday,3/23/2011 13:00,0,0,38,32,70,104,240,-358,-118, +Wednesday,3/23/2011 14:00,0,0,40,32,70,104,244,-344,-100, +Wednesday,3/23/2011 15:00,0,0,42,32,70,104,246,-332,-86, +Wednesday,3/23/2011 16:00,0,0,38,36,64,102,240,-286,-46, +Wednesday,3/23/2011 17:00,0,0,36,44,58,104,240,-218,22, +Wednesday,3/23/2011 18:00,0,0,34,48,52,104,236,-120,116, +Wednesday,3/23/2011 19:00,4,0,10,32,44,104,192,-26,166, +Wednesday,3/23/2011 20:00,0,0,8,36,44,104,190,0,190, +Wednesday,3/23/2011 21:00,0,0,8,36,42,102,186,0,186, +Wednesday,3/23/2011 22:00,0,0,6,22,40,104,170,0,170, +Wednesday,3/23/2011 23:00,0,0,6,14,36,102,158,0,158, +Thursday,3/24/2011 0:00,0,0,6,6,38,104,152,0,152, +Thursday,3/24/2011 1:00,0,0,6,6,40,104,154,0,154, +Thursday,3/24/2011 2:00,0,0,6,6,36,104,148,0,148, +Thursday,3/24/2011 3:00,0,0,6,4,38,106,152,0,152, +Thursday,3/24/2011 4:00,0,0,6,4,38,102,150,0,150, +Thursday,3/24/2011 5:00,0,0,8,8,36,104,154,0,154, +Thursday,3/24/2011 6:00,0,0,10,14,40,104,168,0,168, +Thursday,3/24/2011 7:00,0,0,34,34,40,102,210,0,210, +Thursday,3/24/2011 8:00,0,0,32,46,58,104,238,-26,212, +Thursday,3/24/2011 9:00,0,0,38,50,70,102,258,-124,134, +Thursday,3/24/2011 10:00,0,0,38,42,72,104,254,-222,32, +Thursday,3/24/2011 11:00,0,0,36,36,70,104,244,-298,-54, +Thursday,3/24/2011 12:00,0,0,36,34,70,104,242,-326,-84, +Thursday,3/24/2011 13:00,0,0,38,34,70,104,244,-280,-36, +Thursday,3/24/2011 14:00,0,0,36,40,68,104,248,-152,96, +Thursday,3/24/2011 15:00,0,0,36,34,68,104,240,-294,-54, +Thursday,3/24/2011 16:00,0,0,36,50,62,104,250,-58,192, +Thursday,3/24/2011 17:00,0,0,36,56,56,104,252,-100,152, +Thursday,3/24/2011 18:00,0,0,34,50,48,104,234,-130,104, +Thursday,3/24/2011 19:00,0,0,10,28,44,102,184,-24,160, +Thursday,3/24/2011 20:00,0,0,4,36,40,104,182,0,182, +Thursday,3/24/2011 21:00,0,0,6,36,38,102,180,0,180, +Thursday,3/24/2011 22:00,0,0,6,28,40,104,176,0,176, +Thursday,3/24/2011 23:00,0,0,4,12,40,104,158,0,158, +Friday,3/25/2011 0:00,0,0,4,10,34,104,152,0,152, +Friday,3/25/2011 1:00,0,0,4,8,36,102,150,0,150, +Friday,3/25/2011 2:00,0,0,4,10,34,104,152,0,152, +Friday,3/25/2011 3:00,0,0,6,6,38,102,152,0,152, +Friday,3/25/2011 4:00,0,0,4,4,36,104,148,0,148, +Friday,3/25/2011 5:00,0,0,6,4,36,104,148,0,148, +Friday,3/25/2011 6:00,0,0,10,8,38,102,156,0,156, +Friday,3/25/2011 7:00,0,0,32,26,44,104,204,0,204, +Friday,3/25/2011 8:00,0,0,36,34,50,104,222,-24,198, +Friday,3/25/2011 9:00,0,0,36,40,60,104,238,-80,158, +Friday,3/25/2011 10:00,0,0,36,36,66,102,238,-86,152, +Friday,3/25/2011 11:00,0,0,36,32,66,104,234,-78,156, +Friday,3/25/2011 12:00,0,0,36,30,68,102,234,-220,14, +Friday,3/25/2011 13:00,0,0,38,30,62,106,234,-312,-78, +Friday,3/25/2011 14:00,0,0,36,44,64,104,246,-98,148, +Friday,3/25/2011 15:00,0,0,36,48,60,102,244,-82,162, +Friday,3/25/2011 16:00,0,0,36,44,64,102,244,-114,130, +Friday,3/25/2011 17:00,0,0,34,44,50,104,230,-74,156, +Friday,3/25/2011 18:00,0,0,34,48,48,104,232,-54,178, +Friday,3/25/2011 19:00,0,0,8,30,42,102,182,-18,164, +Friday,3/25/2011 20:00,0,0,4,32,40,104,178,-2,176, +Friday,3/25/2011 21:00,0,0,4,28,36,102,170,0,170, +Friday,3/25/2011 22:00,0,0,4,18,38,104,164,0,164, +Friday,3/25/2011 23:00,0,0,6,8,36,104,152,0,152, +Saturday,3/26/2011 0:00,0,0,4,8,34,104,148,0,148, +Saturday,3/26/2011 1:00,0,0,6,8,36,106,154,0,154, +Saturday,3/26/2011 2:00,0,0,6,6,34,102,146,0,146, +Saturday,3/26/2011 3:00,0,0,4,6,34,104,146,0,146, +Saturday,3/26/2011 4:00,0,0,6,4,34,104,146,0,146, +Saturday,3/26/2011 5:00,0,0,6,8,34,104,152,0,152, +Saturday,3/26/2011 6:00,0,0,6,8,36,104,152,0,152, +Saturday,3/26/2011 7:00,0,0,14,10,32,102,156,0,156, +Saturday,3/26/2011 8:00,0,0,12,8,36,104,158,-34,124, +Saturday,3/26/2011 9:00,0,0,14,6,34,104,156,-156,0, +Saturday,3/26/2011 10:00,0,0,14,4,36,104,156,-210,-54, +Saturday,3/26/2011 11:00,0,0,12,4,34,104,152,-310,-158, +Saturday,3/26/2011 12:00,0,0,16,4,36,102,158,-344,-186, +Saturday,3/26/2011 13:00,0,0,22,4,36,104,164,-358,-194, +Saturday,3/26/2011 14:00,0,0,22,4,34,104,162,-294,-132, +Saturday,3/26/2011 15:00,0,0,20,4,36,102,162,-248,-86, +Saturday,3/26/2011 16:00,0,0,18,6,34,102,160,-188,-28, +Saturday,3/26/2011 17:00,0,0,20,4,36,104,162,-110,52, +Saturday,3/26/2011 18:00,0,0,18,6,34,104,162,-56,106, +Saturday,3/26/2011 19:00,0,0,14,8,34,102,158,-10,148, +Saturday,3/26/2011 20:00,0,0,12,12,36,104,160,0,160, +Saturday,3/26/2011 21:00,0,0,8,12,36,102,158,0,158, +Saturday,3/26/2011 22:00,0,0,6,12,34,102,152,0,152, +Saturday,3/26/2011 23:00,0,0,4,10,34,104,150,0,150, +Sunday,3/27/2011 0:00,0,0,4,10,34,102,148,0,148, +Sunday,3/27/2011 1:00,0,0,4,10,34,104,150,0,150, +Sunday,3/27/2011 2:00,0,0,4,6,34,104,148,0,148, +Sunday,3/27/2011 3:00,0,0,6,6,32,104,146,0,146, +Sunday,3/27/2011 4:00,0,0,4,4,34,104,144,0,144, +Sunday,3/27/2011 5:00,0,0,6,4,34,104,146,0,146, +Sunday,3/27/2011 6:00,0,0,4,10,32,104,148,0,148, +Sunday,3/27/2011 7:00,0,0,4,8,30,104,146,0,146, +Sunday,3/27/2011 8:00,0,0,6,6,36,102,148,-16,132, +Sunday,3/27/2011 9:00,0,0,6,6,34,104,148,-118,30, +Sunday,3/27/2011 10:00,0,0,4,6,36,104,148,-226,-78, +Sunday,3/27/2011 11:00,0,0,4,4,32,104,142,-276,-134, +Sunday,3/27/2011 12:00,0,0,6,6,32,104,144,-340,-196, +Sunday,3/27/2011 13:00,0,0,2,4,34,104,142,-306,-164, +Sunday,3/27/2011 14:00,0,0,4,6,34,104,148,-316,-168, +Sunday,3/27/2011 15:00,0,0,4,6,34,106,150,-308,-158, +Sunday,3/27/2011 16:00,0,0,4,6,34,104,146,-316,-170, +Sunday,3/27/2011 17:00,0,0,4,8,36,104,150,-230,-80, +Sunday,3/27/2011 18:00,0,0,4,8,34,102,146,-116,30, +Sunday,3/27/2011 19:00,0,0,6,10,36,104,154,-20,134, +Sunday,3/27/2011 20:00,0,0,4,14,36,102,154,0,154, +Sunday,3/27/2011 21:00,0,0,4,14,34,102,152,0,152, +Sunday,3/27/2011 22:00,0,0,6,10,34,102,150,0,150, +Sunday,3/27/2011 23:00,0,0,2,14,32,104,150,0,150, +Monday,3/28/2011 0:00,0,0,6,12,34,104,154,0,154, +Monday,3/28/2011 1:00,0,0,4,10,36,104,152,0,152, +Monday,3/28/2011 2:00,0,0,4,8,32,104,146,0,146, +Monday,3/28/2011 3:00,0,0,6,8,34,106,150,0,150, +Monday,3/28/2011 4:00,0,0,4,8,32,106,148,0,148, +Monday,3/28/2011 5:00,0,0,4,6,36,104,150,0,150, +Monday,3/28/2011 6:00,0,0,10,10,36,104,158,0,158, +Monday,3/28/2011 7:00,0,0,32,26,42,104,202,0,202, +Monday,3/28/2011 8:00,0,0,34,40,48,104,226,0,226, +Monday,3/28/2011 9:00,0,0,36,54,64,106,258,-2,256, +Monday,3/28/2011 10:00,0,0,36,42,68,104,248,-24,224, +Monday,3/28/2011 11:00,0,0,36,46,72,106,256,-98,158, +Monday,3/28/2011 12:00,0,0,36,48,70,106,258,-198,60, +Monday,3/28/2011 13:00,0,0,38,52,70,104,260,-164,96, +Monday,3/28/2011 14:00,0,0,36,46,70,104,252,-214,38, +Monday,3/28/2011 15:00,0,0,36,42,68,104,250,-302,-52, +Monday,3/28/2011 16:00,0,0,36,44,60,104,242,-256,-14, +Monday,3/28/2011 17:00,0,0,36,48,56,104,242,-180,62, +Monday,3/28/2011 18:00,0,0,36,54,50,104,242,-102,140, +Monday,3/28/2011 19:00,0,0,8,30,48,104,188,-30,158, +Monday,3/28/2011 20:00,0,0,4,32,42,102,180,0,180, +Monday,3/28/2011 21:00,0,0,6,32,40,102,178,0,178, +Monday,3/28/2011 22:00,0,0,4,24,40,102,168,0,168, +Monday,3/28/2011 23:00,0,0,4,8,38,104,152,0,152, +Tuesday,3/29/2011 0:00,0,0,6,6,38,104,152,0,152, +Tuesday,3/29/2011 1:00,0,0,2,6,36,102,146,0,146, +Tuesday,3/29/2011 2:00,0,0,4,6,38,104,150,0,150, +Tuesday,3/29/2011 3:00,0,0,6,4,36,106,150,0,150, +Tuesday,3/29/2011 4:00,0,0,4,4,34,104,146,0,146, +Tuesday,3/29/2011 5:00,0,0,6,6,42,104,156,0,156, +Tuesday,3/29/2011 6:00,0,0,8,16,38,104,164,0,164, +Tuesday,3/29/2011 7:00,0,0,32,32,46,104,212,0,212, +Tuesday,3/29/2011 8:00,0,0,34,44,54,102,234,-36,198, +Tuesday,3/29/2011 9:00,0,0,34,48,64,104,246,-142,104, +Tuesday,3/29/2011 10:00,0,0,38,40,74,104,252,-248,4, +Tuesday,3/29/2011 11:00,0,0,34,34,74,104,246,-316,-70, +Tuesday,3/29/2011 12:00,0,0,36,34,72,102,244,-350,-106, +Tuesday,3/29/2011 13:00,0,0,38,28,72,106,242,-358,-116, +Tuesday,3/29/2011 14:00,0,0,38,30,68,104,240,-354,-114, +Tuesday,3/29/2011 15:00,0,0,38,32,64,104,236,-334,-98, +Tuesday,3/29/2011 16:00,0,0,38,36,68,104,242,-294,-52, +Tuesday,3/29/2011 17:00,0,0,36,42,60,104,240,-170,70, +Tuesday,3/29/2011 18:00,0,0,34,46,50,102,230,-124,106, +Tuesday,3/29/2011 19:00,0,0,10,32,44,104,188,-44,144, +Tuesday,3/29/2011 20:00,0,0,4,34,42,102,180,0,180, +Tuesday,3/29/2011 21:00,0,0,4,30,42,104,178,0,178, +Tuesday,3/29/2011 22:00,0,0,6,22,40,102,166,0,166, +Tuesday,3/29/2011 23:00,0,0,4,8,38,104,152,0,152, +Wednesday,3/30/2011 0:00,0,0,2,10,40,102,152,0,152, +Wednesday,3/30/2011 1:00,0,0,4,8,34,102,148,0,148, +Wednesday,3/30/2011 2:00,0,0,2,6,38,104,150,0,150, +Wednesday,3/30/2011 3:00,0,0,6,8,38,102,152,0,152, +Wednesday,3/30/2011 4:00,0,0,4,6,38,104,152,0,152, +Wednesday,3/30/2011 5:00,0,0,6,8,36,104,152,0,152, +Wednesday,3/30/2011 6:00,0,0,10,10,38,102,158,0,158, +Wednesday,3/30/2011 7:00,0,0,32,28,48,104,210,0,210, +Wednesday,3/30/2011 8:00,0,0,34,44,52,102,232,-18,214, +Wednesday,3/30/2011 9:00,0,0,34,52,64,104,252,-62,190, +Wednesday,3/30/2011 10:00,0,0,36,46,72,102,254,-186,68, +Wednesday,3/30/2011 11:00,0,0,36,44,72,104,254,-222,32, +Wednesday,3/30/2011 12:00,0,34,36,40,72,104,282,-260,22, +Wednesday,3/30/2011 13:00,0,64,36,36,74,102,310,-342,-32, +Wednesday,3/30/2011 14:00,0,32,40,36,70,102,278,-340,-62, +Wednesday,3/30/2011 15:00,0,0,40,36,68,104,246,-312,-66, +Wednesday,3/30/2011 16:00,0,0,38,40,64,102,244,-254,-10, +Wednesday,3/30/2011 17:00,0,0,36,46,58,102,240,-152,88, +Wednesday,3/30/2011 18:00,0,66,36,52,50,102,304,-58,246, +Wednesday,3/30/2011 19:00,0,0,6,36,46,104,192,-22,170, +Wednesday,3/30/2011 20:00,0,0,4,42,44,104,194,0,194, +Wednesday,3/30/2011 21:00,0,0,6,36,42,102,184,0,184, +Wednesday,3/30/2011 22:00,0,0,4,26,38,104,170,0,170, +Wednesday,3/30/2011 23:00,0,0,4,12,38,102,156,0,156, +Thursday,3/31/2011 0:00,0,32,2,8,40,104,184,0,184, +Thursday,3/31/2011 1:00,0,32,4,10,34,104,182,0,182, +Thursday,3/31/2011 2:00,0,32,4,10,40,104,188,0,188, +Thursday,3/31/2011 3:00,0,66,2,10,36,106,218,0,218, +Thursday,3/31/2011 4:00,0,98,4,8,36,104,248,0,248, +Thursday,3/31/2011 5:00,0,128,4,8,40,106,284,0,284, +Thursday,3/31/2011 6:00,0,66,10,12,36,104,226,0,226, +Thursday,3/31/2011 7:00,0,194,30,24,40,102,388,-2,386, +Thursday,3/31/2011 8:00,0,194,34,40,56,106,428,-36,392, +Thursday,3/31/2011 9:00,0,96,36,46,62,102,342,-122,220, +Thursday,3/31/2011 10:00,0,34,36,42,72,104,286,-232,54, +Thursday,3/31/2011 11:00,0,0,34,38,70,104,244,-314,-70, +Thursday,3/31/2011 12:00,0,0,34,36,68,104,242,-310,-68, +Thursday,3/31/2011 13:00,0,0,36,36,72,102,246,-296,-50, +Thursday,3/31/2011 14:00,0,0,36,36,64,106,240,-330,-90, +Thursday,3/31/2011 15:00,0,32,34,42,66,104,276,-178,98, +Thursday,3/31/2011 16:00,0,0,34,44,64,104,244,-150,94, +Thursday,3/31/2011 17:00,0,32,36,44,58,108,276,-184,92, +Thursday,3/31/2011 18:00,0,64,34,52,44,104,296,-64,232, +Thursday,3/31/2011 19:00,0,0,12,24,42,104,180,-32,148, +Thursday,3/31/2011 20:00,0,0,4,28,38,104,172,-4,168, +Thursday,3/31/2011 21:00,0,34,6,28,42,104,212,0,212, +Thursday,3/31/2011 22:00,0,0,4,22,38,102,164,0,164, +Thursday,3/31/2011 23:00,0,0,4,8,40,104,154,0,154, +Friday,04/01/2011 00:00,0,0,6,8,36,104,152,0,152, +Friday,04/01/2011 01:00,0,0,4,6,38,102,150,0,150, +Friday,04/01/2011 02:00,0,0,4,6,38,104,152,0,152, +Friday,04/01/2011 03:00,0,0,4,6,36,104,148,0,148, +Friday,04/01/2011 04:00,0,0,4,4,34,104,144,0,144, +Friday,04/01/2011 05:00,0,0,6,6,36,104,152,0,152, +Friday,04/01/2011 06:00,0,32,8,12,38,102,192,0,192, +Friday,04/01/2011 07:00,0,64,30,20,42,104,256,0,256, +Friday,04/01/2011 08:00,0,66,30,26,50,104,274,-36,238, +Friday,04/01/2011 09:00,0,130,34,36,60,104,360,-138,222, +Friday,04/01/2011 10:00,0,32,32,36,66,104,268,-236,32, +Friday,04/01/2011 11:00,0,0,36,36,64,104,238,-244,-6, +Friday,04/01/2011 12:00,0,32,32,40,66,104,272,-170,102, +Friday,04/01/2011 13:00,0,66,36,38,62,104,302,-208,94, +Friday,04/01/2011 14:00,0,64,36,36,60,104,298,-304,-6, +Friday,04/01/2011 15:00,0,32,36,34,62,104,266,-324,-58, +Friday,04/01/2011 16:00,0,34,36,36,58,106,266,-268,-2, +Friday,04/01/2011 17:00,0,32,36,38,48,106,258,-228,30, +Friday,04/01/2011 18:00,0,0,36,50,46,104,234,-52,182, +Friday,04/01/2011 19:00,0,32,6,46,44,106,232,-14,218, +Friday,04/01/2011 20:00,0,0,8,40,38,104,188,0,188, +Friday,04/01/2011 21:00,0,0,4,36,36,104,178,0,178, +Friday,04/01/2011 22:00,0,0,6,28,38,104,174,0,174, +Friday,04/01/2011 23:00,0,0,6,16,36,102,158,0,158, +Saturday,04/02/2011 00:00,0,0,4,16,36,104,158,0,158, +Saturday,04/02/2011 01:00,0,0,6,16,34,102,156,0,156, +Saturday,04/02/2011 02:00,0,32,6,16,34,104,190,0,190, +Saturday,04/02/2011 03:00,0,0,4,10,36,104,152,0,152, +Saturday,04/02/2011 04:00,0,34,6,6,36,104,184,0,184, +Saturday,04/02/2011 05:00,0,0,6,10,36,104,154,0,154, +Saturday,04/02/2011 06:00,0,32,4,10,38,104,186,0,186, +Saturday,04/02/2011 07:00,0,194,14,12,34,104,356,0,356, +Saturday,04/02/2011 08:00,0,66,14,12,38,102,228,-20,208, +Saturday,04/02/2011 09:00,0,64,12,8,36,102,222,-92,130, +Saturday,04/02/2011 10:00,0,0,12,6,36,104,158,-206,-48, +Saturday,04/02/2011 11:00,0,0,12,8,34,104,156,-302,-146, +Saturday,04/02/2011 12:00,0,0,14,8,30,106,156,-336,-180, +Saturday,04/02/2011 13:00,0,0,12,10,34,114,170,-342,-172, +Saturday,04/02/2011 14:00,0,0,12,8,32,110,160,-354,-194, +Saturday,04/02/2011 15:00,0,0,14,12,34,110,168,-212,-44, +Saturday,04/02/2011 16:00,0,0,12,12,34,110,166,-296,-130, +Saturday,04/02/2011 17:00,0,0,14,14,32,108,168,-232,-64, +Saturday,04/02/2011 18:00,0,0,12,14,34,106,166,-132,34, +Saturday,04/02/2011 19:00,0,0,10,10,34,110,162,-32,130, +Saturday,04/02/2011 20:00,0,32,6,10,34,106,186,0,186, +Saturday,04/02/2011 21:00,0,0,6,12,36,104,156,0,156, +Saturday,04/02/2011 22:00,0,0,4,12,34,106,154,0,154, +Saturday,04/02/2011 23:00,0,0,4,8,38,104,152,0,152, +Sunday,04/03/2011 00:00,0,0,4,6,32,106,146,0,146, +Sunday,04/03/2011 01:00,0,34,8,10,36,104,190,0,190, +Sunday,04/03/2011 02:00,0,32,4,6,34,106,180,0,180, +Sunday,04/03/2011 03:00,0,32,6,8,38,106,188,0,188, +Sunday,04/03/2011 04:00,0,98,6,8,34,106,250,0,250, +Sunday,04/03/2011 05:00,0,0,4,8,34,108,154,0,154, +Sunday,04/03/2011 06:00,0,32,4,10,34,104,184,0,184, +Sunday,04/03/2011 07:00,0,0,6,10,38,104,158,0,158, +Sunday,04/03/2011 08:00,0,32,20,6,34,104,194,-40,154, +Sunday,04/03/2011 09:00,0,0,22,8,34,104,168,-160,8, +Sunday,04/03/2011 10:00,0,66,22,8,34,106,234,-130,104, +Sunday,04/03/2011 11:00,0,64,24,8,38,104,236,-170,66, +Sunday,04/03/2011 12:00,0,32,22,10,34,102,198,-42,156, +Sunday,04/03/2011 13:00,0,66,24,10,34,104,236,-16,220, +Sunday,04/03/2011 14:00,0,64,24,12,34,104,234,-12,222, +Sunday,04/03/2011 15:00,0,98,24,10,36,104,270,-6,264, +Sunday,04/03/2011 16:00,0,130,22,10,32,104,296,-6,290, +Sunday,04/03/2011 17:00,0,162,22,10,36,104,332,-2,330, +Sunday,04/03/2011 18:00,0,130,6,10,36,104,282,-2,280, +Sunday,04/03/2011 19:00,0,130,6,10,34,104,282,0,282, +Sunday,04/03/2011 20:00,0,226,4,10,36,104,378,0,378, +Sunday,04/03/2011 21:00,0,258,8,10,34,104,410,0,410, +Sunday,04/03/2011 22:00,0,258,6,18,36,104,420,0,420, +Sunday,04/03/2011 23:00,0,258,6,24,34,104,424,0,424, +Monday,04/04/2011 00:00,0,226,8,14,36,104,384,0,384, +Monday,04/04/2011 01:00,0,258,6,10,34,104,410,0,410, +Monday,04/04/2011 02:00,0,258,6,10,34,104,410,0,410, +Monday,04/04/2011 03:00,0,258,8,10,34,104,412,0,412, +Monday,04/04/2011 04:00,0,290,6,8,36,104,442,0,442, +Monday,04/04/2011 05:00,0,356,6,8,36,102,504,0,504, +Monday,04/04/2011 06:00,0,354,16,12,42,110,534,0,534, +Monday,04/04/2011 07:00,0,516,26,24,40,96,704,0,704, +Monday,04/04/2011 08:00,0,388,34,34,52,104,610,-2,608, +Monday,04/04/2011 09:00,0,322,34,48,68,102,574,-12,562, +Monday,04/04/2011 10:00,0,162,36,44,70,104,414,-30,384, +Monday,04/04/2011 11:00,0,98,34,38,72,104,346,-66,280, +Monday,04/04/2011 12:00,0,96,36,34,76,102,344,-208,136, +Monday,04/04/2011 13:00,0,34,38,34,76,104,282,-356,-74, +Monday,04/04/2011 14:00,0,32,36,36,72,102,276,-366,-90, +Monday,04/04/2011 15:00,0,0,34,36,68,102,240,-348,-108, +Monday,04/04/2011 16:00,0,0,38,40,68,104,250,-270,-20, +Monday,04/04/2011 17:00,0,0,36,52,60,102,248,-62,186, +Monday,04/04/2011 18:00,0,32,32,50,52,104,270,-84,186, +Monday,04/04/2011 19:00,0,0,8,24,44,104,176,-38,138, +Monday,04/04/2011 20:00,0,0,6,28,46,102,180,-2,178, +Monday,04/04/2011 21:00,0,0,4,34,44,104,184,0,184, +Monday,04/04/2011 22:00,0,0,4,24,42,102,172,0,172, +Monday,04/04/2011 23:00,0,0,4,6,38,104,150,0,150, +Tuesday,04/05/2011 00:00,0,0,4,4,38,104,148,0,148, +Tuesday,04/05/2011 01:00,0,32,4,6,42,104,188,0,188, +Tuesday,04/05/2011 02:00,0,66,4,6,40,102,214,0,214, +Tuesday,04/05/2011 03:00,0,64,6,6,40,104,218,0,218, +Tuesday,04/05/2011 04:00,0,98,4,6,40,104,248,0,248, +Tuesday,04/05/2011 05:00,0,98,6,6,40,104,250,0,250, +Tuesday,04/05/2011 06:00,0,130,8,20,42,104,302,0,302, +Tuesday,04/05/2011 07:00,0,226,32,24,42,102,424,-2,422, +Tuesday,04/05/2011 08:00,0,194,32,32,56,102,414,-64,350, +Tuesday,04/05/2011 09:00,0,0,34,46,66,104,246,-134,112, +Tuesday,04/05/2011 10:00,0,32,34,44,72,104,284,-218,66, +Tuesday,04/05/2011 11:00,0,32,34,36,70,104,276,-316,-40, +Tuesday,04/05/2011 12:00,0,32,36,32,76,104,278,-350,-72, +Tuesday,04/05/2011 13:00,0,34,38,30,72,104,276,-360,-84, +Tuesday,04/05/2011 14:00,0,32,38,30,70,108,276,-346,-70, +Tuesday,04/05/2011 15:00,0,0,34,30,64,104,232,-302,-70, +Tuesday,04/05/2011 16:00,0,0,36,34,64,106,238,-292,-54, +Tuesday,04/05/2011 17:00,0,32,38,40,60,106,276,-222,54, +Tuesday,04/05/2011 18:00,0,0,34,48,50,106,238,-134,104, +Tuesday,04/05/2011 19:00,0,32,12,30,42,104,218,-34,184, +Tuesday,04/05/2011 20:00,0,0,6,30,38,108,182,0,182, +Tuesday,04/05/2011 21:00,0,0,4,32,40,104,180,0,180, +Tuesday,04/05/2011 22:00,0,0,6,26,40,104,174,0,174, +Tuesday,04/05/2011 23:00,0,0,4,14,38,104,158,0,158, +Wednesday,04/06/2011 00:00,0,0,4,10,40,104,156,0,156, +Wednesday,04/06/2011 01:00,0,0,6,6,36,104,150,0,150, +Wednesday,04/06/2011 02:00,0,0,6,6,40,104,154,0,154, +Wednesday,04/06/2011 03:00,0,130,6,4,38,104,282,0,282, +Wednesday,04/06/2011 04:00,0,32,6,8,38,104,184,0,184, +Wednesday,04/06/2011 05:00,0,34,6,4,38,104,182,0,182, +Wednesday,04/06/2011 06:00,0,64,10,10,40,104,226,0,226, +Wednesday,04/06/2011 07:00,0,130,32,26,46,104,336,0,336, +Wednesday,04/06/2011 08:00,0,98,34,42,54,104,328,-2,326, +Wednesday,04/06/2011 09:00,0,96,34,60,66,106,360,-12,348, +Wednesday,04/06/2011 10:00,0,98,32,70,74,106,376,-22,354, +Wednesday,04/06/2011 11:00,0,32,32,66,76,102,306,-56,250, +Wednesday,04/06/2011 12:00,0,0,30,68,74,106,276,-56,220, +Wednesday,04/06/2011 13:00,0,0,28,60,76,104,266,-102,164, +Wednesday,04/06/2011 14:00,0,0,32,56,72,104,264,-104,160, +Wednesday,04/06/2011 15:00,0,0,30,58,70,104,260,-82,178, +Wednesday,04/06/2011 16:00,0,0,34,62,70,106,270,-64,206, +Wednesday,04/06/2011 17:00,0,0,30,64,58,104,256,-36,220, +Wednesday,04/06/2011 18:00,0,0,28,62,52,104,246,-26,220, +Wednesday,04/06/2011 19:00,0,0,6,34,46,104,188,-8,180, +Wednesday,04/06/2011 20:00,0,0,6,38,44,104,190,0,190, +Wednesday,04/06/2011 21:00,0,0,0,36,42,104,180,0,180, +Wednesday,04/06/2011 22:00,0,34,4,22,38,104,200,0,200, +Wednesday,04/06/2011 23:00,0,0,4,10,42,104,158,0,158, +Thursday,04/07/2011 00:00,0,32,2,10,36,104,182,0,182, +Thursday,04/07/2011 01:00,0,32,4,8,40,104,186,0,186, +Thursday,04/07/2011 02:00,0,64,4,6,38,104,214,0,214, +Thursday,04/07/2011 03:00,0,98,2,4,38,104,244,0,244, +Thursday,04/07/2011 04:00,0,162,4,4,36,104,306,0,306, +Thursday,04/07/2011 05:00,0,130,4,8,38,106,282,0,282, +Thursday,04/07/2011 06:00,0,194,6,12,38,104,354,0,354, +Thursday,04/07/2011 07:00,0,322,24,24,48,104,522,-2,520, +Thursday,04/07/2011 08:00,0,258,24,38,54,106,480,-38,442, +Thursday,04/07/2011 09:00,0,226,28,50,68,104,474,-86,388, +Thursday,04/07/2011 10:00,0,162,28,48,72,104,410,-138,272, +Thursday,04/07/2011 11:00,0,0,28,36,72,106,240,-282,-42, +Thursday,04/07/2011 12:00,0,0,28,34,70,104,236,-322,-86, +Thursday,04/07/2011 13:00,0,0,32,30,76,104,242,-338,-96, +Thursday,04/07/2011 14:00,0,0,32,32,72,106,240,-344,-104, +Thursday,04/07/2011 15:00,0,0,34,40,68,104,244,-216,28, +Thursday,04/07/2011 16:00,0,0,32,38,64,104,236,-282,-46, +Thursday,04/07/2011 17:00,0,0,32,42,60,104,238,-112,126, +Thursday,04/07/2011 18:00,0,34,26,42,50,106,256,-60,196, +Thursday,04/07/2011 19:00,0,0,8,24,42,104,178,-32,146, +Thursday,04/07/2011 20:00,0,0,4,22,44,104,172,0,172, +Thursday,04/07/2011 21:00,0,64,6,22,40,104,234,0,234, +Thursday,04/07/2011 22:00,0,0,6,14,40,104,162,0,162, +Thursday,04/07/2011 23:00,0,0,4,6,38,104,152,0,152, +Friday,04/08/2011 00:00,0,32,6,6,38,104,184,0,184, +Friday,04/08/2011 01:00,0,0,4,6,34,104,148,0,148, +Friday,04/08/2011 02:00,0,34,6,4,40,104,186,0,186, +Friday,04/08/2011 03:00,0,64,4,6,36,104,214,0,214, +Friday,04/08/2011 04:00,0,32,6,4,38,104,182,0,182, +Friday,04/08/2011 05:00,0,66,6,4,38,104,216,0,216, +Friday,04/08/2011 06:00,0,96,6,12,36,106,252,0,252, +Friday,04/08/2011 07:00,0,292,24,24,46,106,490,-2,488, +Friday,04/08/2011 08:00,0,290,26,42,54,106,516,-32,484, +Friday,04/08/2011 09:00,0,226,28,46,62,104,464,-100,364, +Friday,04/08/2011 10:00,0,98,28,42,70,104,340,-244,96, +Friday,04/08/2011 11:00,0,0,28,44,70,106,246,-202,44, +Friday,04/08/2011 12:00,0,0,28,42,70,104,242,-198,44, +Friday,04/08/2011 13:00,0,0,30,34,68,104,234,-300,-66, +Friday,04/08/2011 14:00,0,0,30,36,62,106,232,-324,-92, +Friday,04/08/2011 15:00,0,32,30,38,66,106,270,-320,-50, +Friday,04/08/2011 16:00,0,32,32,42,62,108,274,-292,-18, +Friday,04/08/2011 17:00,0,0,32,44,52,104,230,-238,-8, +Friday,04/08/2011 18:00,0,34,30,48,46,106,260,-138,122, +Friday,04/08/2011 19:00,0,0,6,24,44,104,176,-38,138, +Friday,04/08/2011 20:00,0,0,4,26,40,108,176,0,176, +Friday,04/08/2011 21:00,0,0,4,20,40,104,166,0,166, +Friday,04/08/2011 22:00,0,0,4,8,38,106,154,0,154, +Friday,04/08/2011 23:00,0,32,4,6,36,102,178,0,178, +Saturday,04/09/2011 00:00,0,0,4,6,36,104,148,0,148, +Saturday,04/09/2011 01:00,0,0,4,4,38,104,150,0,150, +Saturday,04/09/2011 02:00,0,0,6,6,32,106,148,0,148, +Saturday,04/09/2011 03:00,0,130,6,4,36,104,276,0,276, +Saturday,04/09/2011 04:00,0,64,4,6,34,104,210,0,210, +Saturday,04/09/2011 05:00,0,66,6,6,36,104,216,0,216, +Saturday,04/09/2011 06:00,0,64,4,8,36,104,216,0,216, +Saturday,04/09/2011 07:00,0,66,6,10,34,106,218,-2,216, +Saturday,04/09/2011 08:00,0,64,4,8,36,104,214,-50,164, +Saturday,04/09/2011 09:00,0,66,6,6,34,106,216,-136,80, +Saturday,04/09/2011 10:00,0,0,4,8,38,106,154,-244,-90, +Saturday,04/09/2011 11:00,0,0,6,4,36,104,148,-310,-162, +Saturday,04/09/2011 12:00,0,32,8,6,36,108,188,-340,-152, +Saturday,04/09/2011 13:00,0,0,6,4,36,108,154,-352,-198, +Saturday,04/09/2011 14:00,0,0,6,8,34,106,154,-348,-194, +Saturday,04/09/2011 15:00,0,0,6,6,38,110,158,-308,-150, +Saturday,04/09/2011 16:00,0,0,4,8,36,106,152,-174,-22, +Saturday,04/09/2011 17:00,0,0,6,8,36,104,154,-158,-4, +Saturday,04/09/2011 18:00,0,0,6,6,34,106,150,-128,22, +Saturday,04/09/2011 19:00,0,0,4,8,38,104,154,-30,124, +Saturday,04/09/2011 20:00,0,0,4,6,34,104,148,-2,146, +Saturday,04/09/2011 21:00,0,32,4,10,36,104,182,0,182, +Saturday,04/09/2011 22:00,0,0,6,6,36,104,150,0,150, +Saturday,04/09/2011 23:00,0,130,6,8,38,106,284,0,284, +Sunday,04/10/2011 00:00,0,32,4,8,34,104,180,0,180, +Sunday,04/10/2011 01:00,0,98,6,6,36,102,246,0,246, +Sunday,04/10/2011 02:00,0,64,6,4,36,106,214,0,214, +Sunday,04/10/2011 03:00,0,98,6,6,38,104,248,0,248, +Sunday,04/10/2011 04:00,0,64,4,4,34,104,210,0,210, +Sunday,04/10/2011 05:00,0,98,6,8,36,104,248,0,248, +Sunday,04/10/2011 06:00,0,130,4,6,34,104,276,0,276, +Sunday,04/10/2011 07:00,0,64,6,6,36,102,214,-2,212, +Sunday,04/10/2011 08:00,0,130,4,4,36,104,274,-54,220, +Sunday,04/10/2011 09:00,0,98,6,6,36,104,246,-166,80, +Sunday,04/10/2011 10:00,0,98,6,4,38,102,246,-268,-22, +Sunday,04/10/2011 11:00,0,64,4,6,38,104,214,-334,-120, +Sunday,04/10/2011 12:00,0,66,4,4,38,102,210,-348,-138, +Sunday,04/10/2011 13:00,0,0,8,6,36,104,150,-362,-212, +Sunday,04/10/2011 14:00,0,0,6,4,36,104,148,-320,-172, +Sunday,04/10/2011 15:00,0,0,4,6,40,104,152,-254,-102, +Sunday,04/10/2011 16:00,0,32,6,8,36,102,182,-254,-72, +Sunday,04/10/2011 17:00,0,0,6,8,36,104,152,-126,26, +Sunday,04/10/2011 18:00,0,0,4,10,36,102,150,-90,60, +Sunday,04/10/2011 19:00,0,32,4,6,36,104,182,-46,136, +Sunday,04/10/2011 20:00,0,0,6,10,38,104,156,-4,152, +Sunday,04/10/2011 21:00,0,66,4,8,34,102,214,0,214, +Sunday,04/10/2011 22:00,0,64,6,16,38,104,226,0,226, +Sunday,04/10/2011 23:00,0,98,4,24,36,102,262,0,262, +Monday,04/11/2011 00:00,0,96,6,24,38,104,264,0,264, +Monday,04/11/2011 01:00,0,162,6,12,38,104,320,0,320, +Monday,04/11/2011 02:00,0,226,6,6,38,102,376,0,376, +Monday,04/11/2011 03:00,0,194,4,4,34,104,340,0,340, +Monday,04/11/2011 04:00,0,226,6,8,40,102,380,0,380, +Monday,04/11/2011 05:00,0,258,4,8,36,104,408,0,408, +Monday,04/11/2011 06:00,0,194,8,10,38,104,352,0,352, +Monday,04/11/2011 07:00,0,420,26,26,44,102,614,-4,610, +Monday,04/11/2011 08:00,0,324,24,40,56,104,544,-56,488, +Monday,04/11/2011 09:00,0,162,28,48,68,104,410,-160,250, +Monday,04/11/2011 10:00,0,64,28,42,82,102,316,-64,252, +Monday,04/11/2011 11:00,0,0,28,38,74,106,244,0,244, +Monday,04/11/2011 12:00,0,0,28,34,76,102,238,0,238, +Monday,04/11/2011 13:00,0,0,32,32,74,104,240,0,240, +Monday,04/11/2011 14:00,0,0,32,32,72,106,240,0,240, +Monday,04/11/2011 15:00,0,34,32,34,72,102,272,0,272, +Monday,04/11/2011 16:00,0,0,32,36,64,106,238,0,238, +Monday,04/11/2011 17:00,0,32,34,44,62,102,274,0,274, +Monday,04/11/2011 18:00,0,32,32,50,52,104,270,0,270, +Monday,04/11/2011 19:00,0,0,10,34,42,104,188,0,188, +Monday,04/11/2011 20:00,0,0,4,34,42,104,182,0,182, +Monday,04/11/2011 21:00,0,0,4,32,44,102,182,0,182, +Monday,04/11/2011 22:00,0,0,4,22,40,104,168,0,168, +Monday,04/11/2011 23:00,0,32,6,6,40,104,186,0,186, +Tuesday,04/12/2011 00:00,0,32,6,4,38,104,182,0,182, +Tuesday,04/12/2011 01:00,0,0,6,4,40,104,152,0,152, +Tuesday,04/12/2011 02:00,0,34,4,4,40,104,184,0,184, +Tuesday,04/12/2011 03:00,0,0,6,2,38,104,146,0,146, +Tuesday,04/12/2011 04:00,0,64,4,4,38,104,214,0,214, +Tuesday,04/12/2011 05:00,0,66,8,4,42,102,220,0,220, +Tuesday,04/12/2011 06:00,0,64,6,8,36,104,218,0,218, +Tuesday,04/12/2011 07:00,0,162,26,24,50,102,362,0,362, +Tuesday,04/12/2011 08:00,0,194,24,36,54,104,412,0,412, +Tuesday,04/12/2011 09:00,0,64,26,44,66,102,302,0,302, +Tuesday,04/12/2011 10:00,0,0,28,42,68,104,242,0,242, +Tuesday,04/12/2011 11:00,0,32,26,40,72,106,276,0,276, +Tuesday,04/12/2011 12:00,0,0,28,38,76,106,246,0,246, +Tuesday,04/12/2011 13:00,0,34,30,34,74,106,276,0,276, +Tuesday,04/12/2011 14:00,0,0,34,38,70,106,246,0,246, +Tuesday,04/12/2011 15:00,0,64,32,46,66,104,310,0,310, +Tuesday,04/12/2011 16:00,0,0,32,50,68,104,254,0,254, +Tuesday,04/12/2011 17:00,0,32,32,52,58,104,276,0,276, +Tuesday,04/12/2011 18:00,0,32,30,52,48,104,264,0,264, +Tuesday,04/12/2011 19:00,0,34,8,28,42,104,214,0,214, +Tuesday,04/12/2011 20:00,0,0,4,36,40,104,180,0,180, +Tuesday,04/12/2011 21:00,0,0,4,28,42,104,176,0,176, +Tuesday,04/12/2011 22:00,0,0,4,18,40,104,166,0,166, +Tuesday,04/12/2011 23:00,0,0,4,10,38,104,154,0,154, +Wednesday,4/13/2011 0:00,0,0,4,4,38,104,148,0,148, +Wednesday,4/13/2011 1:00,0,96,6,4,38,104,246,0,246, +Wednesday,4/13/2011 2:00,0,34,4,6,36,104,182,0,182, +Wednesday,4/13/2011 3:00,0,32,4,6,38,104,184,0,184, +Wednesday,4/13/2011 4:00,0,32,6,6,38,104,186,0,186, +Wednesday,4/13/2011 5:00,0,66,4,6,36,102,214,0,214, +Wednesday,4/13/2011 6:00,0,32,8,10,38,104,190,0,190, +Wednesday,4/13/2011 7:00,0,130,24,24,50,104,328,0,328, +Wednesday,4/13/2011 8:00,0,162,24,42,54,104,384,0,384, +Wednesday,4/13/2011 9:00,0,98,26,60,70,104,356,0,356, +Wednesday,4/13/2011 10:00,0,32,28,66,70,104,296,0,296, +Wednesday,4/13/2011 11:00,0,32,26,62,76,104,298,0,298, +Wednesday,4/13/2011 12:00,0,0,26,62,74,104,266,0,266, +Wednesday,4/13/2011 13:00,0,32,28,62,74,104,298,0,298, +Wednesday,4/13/2011 14:00,0,0,28,58,72,104,260,0,260, +Wednesday,4/13/2011 15:00,0,32,28,54,68,104,284,0,284, +Wednesday,4/13/2011 16:00,0,0,28,52,66,102,248,0,248, +Wednesday,4/13/2011 17:00,0,0,28,58,62,104,252,0,252, +Wednesday,4/13/2011 18:00,0,0,26,62,50,102,240,0,240, +Wednesday,4/13/2011 19:00,0,0,6,40,46,104,194,0,194, +Wednesday,4/13/2011 20:00,0,0,4,44,42,104,192,0,192, +Wednesday,4/13/2011 21:00,0,34,4,32,44,104,216,0,216, +Wednesday,4/13/2011 22:00,0,32,2,24,38,102,196,0,196, +Wednesday,4/13/2011 23:00,0,32,6,12,40,104,190,0,190, +Thursday,4/14/2011 0:00,0,0,2,8,38,106,152,0,152, +Thursday,4/14/2011 1:00,0,98,2,2,40,104,244,0,244, +Thursday,4/14/2011 2:00,0,194,4,2,34,102,336,0,336, +Thursday,4/14/2011 3:00,0,162,4,4,40,104,310,0,310, +Thursday,4/14/2011 4:00,0,162,4,4,36,106,310,0,310, +Thursday,4/14/2011 5:00,0,194,4,2,40,106,342,0,342, +Thursday,4/14/2011 6:00,0,226,6,4,38,104,376,0,376, +Thursday,4/14/2011 7:00,0,356,22,24,46,102,548,0,548, +Thursday,4/14/2011 8:00,0,322,26,36,58,104,544,0,544, +Thursday,4/14/2011 9:00,0,258,26,46,62,104,494,0,494, +Thursday,4/14/2011 10:00,0,194,28,52,70,106,448,0,448, +Thursday,4/14/2011 11:00,0,162,28,48,70,104,410,0,410, +Thursday,4/14/2011 12:00,0,64,26,46,74,106,314,-2,312, +Thursday,4/14/2011 13:00,0,32,32,40,70,104,274,-8,266, +Thursday,4/14/2011 14:00,0,0,30,30,70,106,236,-64,172, +Thursday,4/14/2011 15:00,0,0,30,32,66,106,232,-272,-40, +Thursday,4/14/2011 16:00,0,0,30,36,66,106,234,-328,-94, +Thursday,4/14/2011 17:00,0,0,30,40,58,104,230,-246,-16, +Thursday,4/14/2011 18:00,0,0,30,46,46,102,224,-150,74, +Thursday,4/14/2011 19:00,0,34,8,32,42,104,220,-46,174, +Thursday,4/14/2011 20:00,0,0,6,26,40,104,174,-2,172, +Thursday,4/14/2011 21:00,0,0,4,28,40,104,174,0,174, +Thursday,4/14/2011 22:00,0,32,6,26,38,104,206,0,206, +Thursday,4/14/2011 23:00,0,64,2,10,34,104,214,0,214, +Friday,4/15/2011 0:00,0,34,4,8,36,104,182,0,182, +Friday,4/15/2011 1:00,0,96,6,8,34,104,246,0,246, +Friday,4/15/2011 2:00,0,194,4,4,36,104,342,0,342, +Friday,4/15/2011 3:00,0,162,6,6,38,106,314,0,314, +Friday,4/15/2011 4:00,0,194,4,4,34,106,340,0,340, +Friday,4/15/2011 5:00,0,226,6,4,36,104,374,0,374, +Friday,4/15/2011 6:00,0,258,6,8,38,106,414,0,414, +Friday,4/15/2011 7:00,0,484,26,20,44,104,674,-4,670, +Friday,4/15/2011 8:00,0,388,24,36,46,106,596,-62,534, +Friday,4/15/2011 9:00,0,226,26,40,62,104,456,-172,284, +Friday,4/15/2011 10:00,0,130,28,40,72,104,372,-272,100, +Friday,4/15/2011 11:00,0,34,28,34,70,104,268,-340,-72, +Friday,4/15/2011 12:00,0,32,26,32,66,102,254,-372,-118, +Friday,4/15/2011 13:00,0,32,28,30,68,106,262,-376,-114, +Friday,4/15/2011 14:00,0,0,26,32,64,104,224,-370,-146, +Friday,4/15/2011 15:00,0,0,24,34,66,104,226,-360,-134, +Friday,4/15/2011 16:00,0,0,28,38,60,104,228,-324,-96, +Friday,4/15/2011 17:00,0,0,30,42,54,102,228,-246,-18, +Friday,4/15/2011 18:00,0,0,28,44,46,104,220,-148,72, +Friday,4/15/2011 19:00,0,0,6,26,40,104,176,-50,126, +Friday,4/15/2011 20:00,0,32,6,30,42,104,212,-6,206, +Friday,4/15/2011 21:00,0,0,6,28,38,104,174,0,174, +Friday,4/15/2011 22:00,0,32,6,22,36,104,198,0,198, +Friday,4/15/2011 23:00,0,0,4,6,36,104,148,0,148, +Saturday,4/16/2011 0:00,0,0,6,4,36,104,148,0,148, +Saturday,4/16/2011 1:00,0,34,2,4,32,104,174,0,174, +Saturday,4/16/2011 2:00,0,32,6,6,34,104,180,0,180, +Saturday,4/16/2011 3:00,0,64,4,2,36,104,210,0,210, +Saturday,4/16/2011 4:00,0,98,4,4,36,104,246,0,246, +Saturday,4/16/2011 5:00,0,98,6,6,34,104,246,0,246, +Saturday,4/16/2011 6:00,0,130,4,6,34,104,274,0,274, +Saturday,4/16/2011 7:00,0,96,4,6,34,104,244,-4,240, +Saturday,4/16/2011 8:00,0,98,6,4,36,106,246,-58,188, +Saturday,4/16/2011 9:00,0,32,4,6,34,104,178,-168,10, +Saturday,4/16/2011 10:00,0,0,4,6,36,104,148,-260,-112, +Saturday,4/16/2011 11:00,0,0,6,6,32,104,146,-330,-184, +Saturday,4/16/2011 12:00,0,0,6,4,34,106,148,-350,-202, +Saturday,4/16/2011 13:00,0,0,6,6,36,106,150,-366,-216, +Saturday,4/16/2011 14:00,0,0,6,4,34,106,150,-238,-88, +Saturday,4/16/2011 15:00,0,0,6,6,34,106,150,-112,38, +Saturday,4/16/2011 16:00,0,0,4,8,34,108,154,-162,-8, +Saturday,4/16/2011 17:00,0,0,6,8,34,106,152,-262,-110, +Saturday,4/16/2011 18:00,0,0,6,8,34,106,152,-118,34, +Saturday,4/16/2011 19:00,0,34,4,8,32,106,182,-70,112, +Saturday,4/16/2011 20:00,0,0,2,10,36,104,150,-8,142, +Saturday,4/16/2011 21:00,0,0,4,12,36,106,156,0,156, +Saturday,4/16/2011 22:00,0,0,2,10,32,104,148,0,148, +Saturday,4/16/2011 23:00,0,32,4,12,32,104,184,0,184, +Sunday,4/17/2011 0:00,0,0,4,4,36,104,146,0,146, +Sunday,4/17/2011 1:00,0,0,4,6,36,104,148,0,148, +Sunday,4/17/2011 2:00,0,64,4,4,32,106,206,0,206, +Sunday,4/17/2011 3:00,0,66,4,6,36,104,214,0,214, +Sunday,4/17/2011 4:00,0,162,4,4,32,104,304,0,304, +Sunday,4/17/2011 5:00,0,130,6,4,34,104,274,0,274, +Sunday,4/17/2011 6:00,0,64,6,6,36,104,212,0,212, +Sunday,4/17/2011 7:00,0,98,6,6,34,102,244,-6,238, +Sunday,4/17/2011 8:00,0,64,4,4,36,104,212,-82,130, +Sunday,4/17/2011 9:00,0,0,4,4,32,102,142,-166,-24, +Sunday,4/17/2011 10:00,0,0,4,2,34,106,144,-134,10, +Sunday,4/17/2011 11:00,0,34,2,6,34,102,176,-104,72, +Sunday,4/17/2011 12:00,0,0,6,4,34,106,148,-202,-54, +Sunday,4/17/2011 13:00,0,32,4,4,36,108,184,-244,-60, +Sunday,4/17/2011 14:00,0,0,6,6,34,104,148,-376,-228, +Sunday,4/17/2011 15:00,0,0,6,4,36,106,152,-360,-208, +Sunday,4/17/2011 16:00,0,0,4,4,36,106,150,-318,-168, +Sunday,4/17/2011 17:00,0,0,6,8,36,106,154,-248,-94, +Sunday,4/17/2011 18:00,0,0,6,6,34,106,150,-144,6, +Sunday,4/17/2011 19:00,0,0,4,8,38,104,152,-46,106, +Sunday,4/17/2011 20:00,0,0,2,8,34,106,148,-6,142, +Sunday,4/17/2011 21:00,0,0,4,10,36,104,154,0,154, +Sunday,4/17/2011 22:00,0,0,4,10,32,106,148,0,148, +Sunday,4/17/2011 23:00,4,0,4,10,36,104,156,0,156, +Monday,4/18/2011 0:00,0,32,2,6,34,106,180,0,180, +Monday,4/18/2011 1:00,0,0,4,6,34,106,148,0,148, +Monday,4/18/2011 2:00,0,32,4,4,32,106,178,0,178, +Monday,4/18/2011 3:00,0,0,2,6,36,106,148,0,148, +Monday,4/18/2011 4:00,0,162,6,4,32,106,306,0,306, +Monday,4/18/2011 5:00,0,66,6,8,36,104,218,0,218, +Monday,4/18/2011 6:00,0,130,6,8,36,104,282,0,282, +Monday,4/18/2011 7:00,0,290,26,26,42,106,488,-4,484, +Monday,4/18/2011 8:00,0,226,28,40,56,104,450,-64,386, +Monday,4/18/2011 9:00,0,0,26,42,66,104,238,-132,106, +Monday,4/18/2011 10:00,0,0,28,40,72,106,244,-244,0, +Monday,4/18/2011 11:00,0,0,30,36,74,108,246,-252,-6, +Monday,4/18/2011 12:00,0,34,30,32,72,106,274,-290,-16, +Monday,4/18/2011 13:00,0,0,34,34,80,106,252,-282,-30, +Monday,4/18/2011 14:00,0,32,32,40,70,112,284,-210,74, +Monday,4/18/2011 15:00,0,0,32,48,68,108,254,-96,158, +Monday,4/18/2011 16:00,0,32,32,50,68,110,292,-84,208, +Monday,4/18/2011 17:00,0,32,28,52,58,106,276,-76,200, +Monday,4/18/2011 18:00,0,0,28,52,48,106,234,-62,172, +Monday,4/18/2011 19:00,0,0,8,30,40,106,182,-16,166, +Monday,4/18/2011 20:00,0,0,4,36,38,106,182,0,182, +Monday,4/18/2011 21:00,0,66,6,36,38,104,248,0,248, +Monday,4/18/2011 22:00,0,0,6,24,40,106,176,0,176, +Monday,4/18/2011 23:00,0,32,4,6,34,106,182,0,182, +Tuesday,4/19/2011 0:00,0,66,2,4,34,106,210,0,210, +Tuesday,4/19/2011 1:00,0,32,6,2,32,104,176,0,176, +Tuesday,4/19/2011 2:00,0,32,6,4,38,104,184,0,184, +Tuesday,4/19/2011 3:00,0,32,2,2,34,108,178,0,178, +Tuesday,4/19/2011 4:00,0,32,6,4,34,106,180,0,180, +Tuesday,4/19/2011 5:00,0,0,4,4,34,104,146,0,146, +Tuesday,4/19/2011 6:00,0,98,6,8,36,104,250,0,250, +Tuesday,4/19/2011 7:00,0,226,24,18,44,106,416,-6,410, +Tuesday,4/19/2011 8:00,0,194,24,40,52,104,412,-64,348, +Tuesday,4/19/2011 9:00,0,66,26,52,66,106,312,-106,206, +Tuesday,4/19/2011 10:00,0,0,26,46,72,106,250,-256,-6, +Tuesday,4/19/2011 11:00,0,0,24,40,70,106,238,-284,-46, +Tuesday,4/19/2011 12:00,0,0,26,40,72,106,244,-174,70, +Tuesday,4/19/2011 13:00,0,32,28,46,72,106,282,-122,160, +Tuesday,4/19/2011 14:00,0,0,30,40,70,106,244,-248,-4, +Tuesday,4/19/2011 15:00,0,0,30,42,66,106,242,-264,-22, +Tuesday,4/19/2011 16:00,0,32,28,42,66,108,276,-186,90, +Tuesday,4/19/2011 17:00,0,0,26,48,58,106,236,-202,34, +Tuesday,4/19/2011 18:00,0,32,26,52,46,106,262,-126,136, +Tuesday,4/19/2011 19:00,0,0,10,30,44,104,186,-28,158, +Tuesday,4/19/2011 20:00,0,66,8,34,36,106,248,-4,244, +Tuesday,4/19/2011 21:00,0,0,6,34,44,106,188,0,188, +Tuesday,4/19/2011 22:00,0,32,6,28,38,104,206,0,206, +Tuesday,4/19/2011 23:00,0,32,4,12,38,104,190,0,190, +Wednesday,4/20/2011 0:00,0,98,8,8,36,106,252,0,252, +Wednesday,4/20/2011 1:00,0,64,4,8,38,104,216,0,216, +Wednesday,4/20/2011 2:00,0,98,6,6,38,104,248,0,248, +Wednesday,4/20/2011 3:00,0,98,6,6,36,106,250,0,250, +Wednesday,4/20/2011 4:00,0,96,4,4,40,104,246,0,246, +Wednesday,4/20/2011 5:00,0,98,6,6,38,104,250,0,250, +Wednesday,4/20/2011 6:00,0,194,8,8,38,106,352,0,352, +Wednesday,4/20/2011 7:00,0,322,22,26,46,104,520,0,520, +Wednesday,4/20/2011 8:00,0,322,24,42,54,102,544,-8,536, +Wednesday,4/20/2011 9:00,0,226,24,58,68,106,480,-52,428, +Wednesday,4/20/2011 10:00,0,162,26,50,68,104,408,-128,280, +Wednesday,4/20/2011 11:00,0,32,26,42,72,106,276,-230,46, +Wednesday,4/20/2011 12:00,0,0,26,40,72,104,240,-220,20, +Wednesday,4/20/2011 13:00,0,32,28,42,70,106,276,-140,136, +Wednesday,4/20/2011 14:00,0,0,26,44,68,106,242,-178,64, +Wednesday,4/20/2011 15:00,0,0,26,50,66,106,248,-108,140, +Wednesday,4/20/2011 16:00,0,0,26,56,66,106,252,-72,180, +Wednesday,4/20/2011 17:00,0,0,28,64,58,108,256,-24,232, +Wednesday,4/20/2011 18:00,0,0,24,64,50,104,240,-24,216, +Wednesday,4/20/2011 19:00,0,0,8,32,40,106,186,-8,178, +Wednesday,4/20/2011 20:00,0,0,2,44,40,106,190,-2,188, +Wednesday,4/20/2011 21:00,0,0,2,40,42,106,190,0,190, +Wednesday,4/20/2011 22:00,0,0,4,22,36,108,170,0,170, +Wednesday,4/20/2011 23:00,0,34,4,8,38,106,188,0,188, +Thursday,4/21/2011 0:00,0,32,2,6,34,106,178,0,178, +Thursday,4/21/2011 1:00,0,32,4,4,38,106,182,0,182, +Thursday,4/21/2011 2:00,0,64,2,2,36,106,210,0,210, +Thursday,4/21/2011 3:00,0,130,4,4,36,108,280,0,280, +Thursday,4/21/2011 4:00,0,130,2,4,34,106,274,0,274, +Thursday,4/21/2011 5:00,0,130,4,6,38,106,280,0,280, +Thursday,4/21/2011 6:00,0,98,6,6,36,108,252,0,252, +Thursday,4/21/2011 7:00,0,290,22,20,46,106,482,-2,480, +Thursday,4/21/2011 8:00,0,258,24,44,52,106,482,-8,474, +Thursday,4/21/2011 9:00,0,162,26,52,64,106,406,-130,276, +Thursday,4/21/2011 10:00,0,64,24,46,72,106,310,-260,50, +Thursday,4/21/2011 11:00,0,0,28,40,72,108,246,-306,-60, +Thursday,4/21/2011 12:00,0,0,26,36,70,110,240,-350,-110, +Thursday,4/21/2011 13:00,0,0,26,32,74,108,238,-356,-118, +Thursday,4/21/2011 14:00,0,0,28,36,66,110,238,-326,-88, +Thursday,4/21/2011 15:00,0,0,28,40,64,112,242,-278,-36, +Thursday,4/21/2011 16:00,0,34,28,44,58,112,274,-278,-4, +Thursday,4/21/2011 17:00,0,32,28,44,54,110,266,-204,62, +Thursday,4/21/2011 18:00,0,64,28,50,48,110,298,-100,198, +Thursday,4/21/2011 19:00,0,0,8,24,38,108,178,-44,134, +Thursday,4/21/2011 20:00,0,0,4,20,38,110,170,-4,166, +Thursday,4/21/2011 21:00,0,0,6,26,38,108,176,0,176, +Thursday,4/21/2011 22:00,0,66,6,20,40,108,236,0,236, +Thursday,4/21/2011 23:00,0,0,6,10,36,108,158,0,158, +Friday,4/22/2011 0:00,0,64,6,6,38,106,218,0,218, +Friday,4/22/2011 1:00,0,66,4,6,38,106,216,0,216, +Friday,4/22/2011 2:00,0,96,4,2,36,106,242,0,242, +Friday,4/22/2011 3:00,0,66,6,4,38,108,218,0,218, +Friday,4/22/2011 4:00,0,32,4,2,36,106,180,0,180, +Friday,4/22/2011 5:00,0,32,4,6,38,106,184,0,184, +Friday,4/22/2011 6:00,0,66,8,6,36,106,220,0,220, +Friday,4/22/2011 7:00,0,258,20,12,40,106,436,-6,430, +Friday,4/22/2011 8:00,0,162,22,28,54,106,372,-74,298, +Friday,4/22/2011 9:00,0,64,20,44,62,106,296,-184,112, +Friday,4/22/2011 10:00,0,66,24,42,70,108,308,-282,26, +Friday,4/22/2011 11:00,0,0,24,38,66,106,232,-342,-110, +Friday,4/22/2011 12:00,0,0,22,34,68,106,230,-368,-138, +Friday,4/22/2011 13:00,0,32,24,30,66,106,256,-346,-90, +Friday,4/22/2011 14:00,0,0,24,34,68,106,232,-334,-102, +Friday,4/22/2011 15:00,0,32,24,36,58,108,256,-346,-90, +Friday,4/22/2011 16:00,0,66,26,36,58,110,294,-288,6, +Friday,4/22/2011 17:00,0,0,24,44,50,108,224,-238,-14, +Friday,4/22/2011 18:00,0,32,26,42,42,106,246,-146,100, +Friday,4/22/2011 19:00,0,0,6,24,44,108,180,-50,130, +Friday,4/22/2011 20:00,0,0,4,28,42,108,180,-2,178, +Friday,4/22/2011 21:00,0,0,4,24,40,106,172,0,172, +Friday,4/22/2011 22:00,0,64,6,16,36,106,226,0,226, +Friday,4/22/2011 23:00,0,34,6,6,38,106,188,0,188, +Saturday,4/23/2011 0:00,0,0,4,4,36,106,148,0,148, +Saturday,4/23/2011 1:00,0,32,6,2,34,106,180,0,180, +Saturday,4/23/2011 2:00,0,32,4,4,36,106,182,0,182, +Saturday,4/23/2011 3:00,0,66,8,2,34,108,216,0,216, +Saturday,4/23/2011 4:00,0,64,2,4,36,106,212,0,212, +Saturday,4/23/2011 5:00,0,64,6,4,36,106,216,0,216, +Saturday,4/23/2011 6:00,0,162,4,6,36,106,314,0,314, +Saturday,4/23/2011 7:00,0,162,4,4,36,106,310,-8,302, +Saturday,4/23/2011 8:00,0,162,8,6,34,106,314,-44,270, +Saturday,4/23/2011 9:00,0,162,6,4,34,106,310,-96,214, +Saturday,4/23/2011 10:00,0,130,4,4,36,106,280,-106,174, +Saturday,4/23/2011 11:00,0,98,6,4,36,106,248,-158,90, +Saturday,4/23/2011 12:00,0,32,6,4,34,108,182,-140,42, +Saturday,4/23/2011 13:00,0,0,4,4,36,106,150,-304,-154, +Saturday,4/23/2011 14:00,0,32,6,4,36,106,182,-238,-56, +Saturday,4/23/2011 15:00,0,0,6,4,38,106,152,-232,-80, +Saturday,4/23/2011 16:00,0,0,4,4,36,106,148,-236,-88, +Saturday,4/23/2011 17:00,0,0,4,8,34,106,152,-192,-40, +Saturday,4/23/2011 18:00,0,0,6,6,36,106,152,-92,60, +Saturday,4/23/2011 19:00,0,32,4,6,36,106,184,-32,152, +Saturday,4/23/2011 20:00,0,66,6,6,36,106,218,-4,214, +Saturday,4/23/2011 21:00,0,96,6,8,34,106,248,0,248, +Saturday,4/23/2011 22:00,0,130,6,6,36,106,282,0,282, +Saturday,4/23/2011 23:00,0,98,4,8,36,106,250,0,250, +Sunday,4/24/2011 0:00,0,226,6,6,34,106,376,0,376, +Sunday,4/24/2011 1:00,0,194,6,6,34,108,344,0,344, +Sunday,4/24/2011 2:00,0,194,6,4,36,106,342,0,342, +Sunday,4/24/2011 3:00,0,194,4,6,34,108,346,0,346, +Sunday,4/24/2011 4:00,0,162,6,4,34,108,312,0,312, +Sunday,4/24/2011 5:00,0,194,6,6,38,106,348,0,348, +Sunday,4/24/2011 6:00,0,194,6,6,34,106,342,0,342, +Sunday,4/24/2011 7:00,0,194,6,6,34,106,346,-2,344, +Sunday,4/24/2011 8:00,0,194,6,6,34,106,342,-26,316, +Sunday,4/24/2011 9:00,0,162,6,4,36,106,312,-40,272, +Sunday,4/24/2011 10:00,0,130,8,8,36,106,284,-70,214, +Sunday,4/24/2011 11:00,0,130,4,4,36,106,278,-104,174, +Sunday,4/24/2011 12:00,0,96,8,6,34,106,246,-146,100, +Sunday,4/24/2011 13:00,0,32,6,4,34,108,182,-132,50, +Sunday,4/24/2011 14:00,0,66,4,4,36,106,214,-144,70, +Sunday,4/24/2011 15:00,0,32,6,4,34,108,184,-142,42, +Sunday,4/24/2011 16:00,0,32,4,10,36,108,190,-96,94, +Sunday,4/24/2011 17:00,0,34,4,10,34,108,186,-44,142, +Sunday,4/24/2011 18:00,0,32,6,8,36,106,188,-6,182, +Sunday,4/24/2011 19:00,0,96,4,8,32,108,248,-2,246, +Sunday,4/24/2011 20:00,0,162,6,6,38,106,318,0,318, +Sunday,4/24/2011 21:00,0,162,8,6,32,108,314,0,314, +Sunday,4/24/2011 22:00,0,162,4,6,36,108,312,0,312, +Sunday,4/24/2011 23:00,0,194,6,6,34,108,344,0,344, +Monday,4/25/2011 0:00,0,194,6,6,36,106,346,0,346, +Monday,4/25/2011 1:00,0,226,6,4,34,106,374,0,374, +Monday,4/25/2011 2:00,0,226,6,6,34,108,380,0,380, +Monday,4/25/2011 3:00,0,194,6,4,36,108,346,0,346, +Monday,4/25/2011 4:00,0,194,6,4,34,108,344,0,344, +Monday,4/25/2011 5:00,0,194,6,6,38,108,350,0,350, +Monday,4/25/2011 6:00,0,258,8,6,32,108,410,0,410, +Monday,4/25/2011 7:00,0,516,22,24,46,108,712,-2,710, +Monday,4/25/2011 8:00,0,420,22,42,52,108,642,-18,624, +Monday,4/25/2011 9:00,0,290,22,64,68,108,550,-46,504, +Monday,4/25/2011 10:00,0,162,24,56,74,108,422,-122,300, +Monday,4/25/2011 11:00,0,64,26,50,72,108,316,-152,164, +Monday,4/25/2011 12:00,0,66,24,48,74,108,316,-166,150, +Monday,4/25/2011 13:00,0,0,28,36,72,108,242,-330,-88, +Monday,4/25/2011 14:00,0,0,26,42,72,108,246,-272,-26, +Monday,4/25/2011 15:00,0,0,28,46,70,108,250,-278,-28, +Monday,4/25/2011 16:00,0,0,28,50,64,108,250,-158,92, +Monday,4/25/2011 17:00,0,0,26,48,58,106,236,-234,2, +Monday,4/25/2011 18:00,0,0,26,56,48,108,236,-108,128, +Monday,4/25/2011 19:00,0,32,8,24,42,106,210,-22,188, +Monday,4/25/2011 20:00,0,32,6,32,40,108,216,-2,214, +Monday,4/25/2011 21:00,0,0,6,32,38,106,182,0,182, +Monday,4/25/2011 22:00,0,0,4,18,42,106,168,0,168, +Monday,4/25/2011 23:00,0,32,6,8,38,106,188,0,188, +Tuesday,4/26/2011 0:00,0,66,4,4,36,108,216,0,216, +Tuesday,4/26/2011 1:00,0,0,4,2,34,106,146,0,146, +Tuesday,4/26/2011 2:00,0,64,6,4,38,108,216,0,216, +Tuesday,4/26/2011 3:00,0,66,6,4,36,108,216,0,216, +Tuesday,4/26/2011 4:00,0,96,4,4,36,108,246,0,246, +Tuesday,4/26/2011 5:00,0,98,6,4,36,106,250,0,250, +Tuesday,4/26/2011 6:00,0,162,8,6,38,106,318,0,318, +Tuesday,4/26/2011 7:00,0,290,20,18,46,108,480,-16,464, +Tuesday,4/26/2011 8:00,0,226,22,34,54,106,440,-76,364, +Tuesday,4/26/2011 9:00,0,162,24,48,64,108,404,-74,330, +Tuesday,4/26/2011 10:00,0,32,26,52,70,106,284,-104,180, +Tuesday,4/26/2011 11:00,0,0,26,44,74,106,250,-202,48, +Tuesday,4/26/2011 12:00,0,0,26,44,70,108,246,-260,-14, +Tuesday,4/26/2011 13:00,0,0,28,40,76,110,254,-272,-18, +Tuesday,4/26/2011 14:00,0,0,26,40,68,102,238,-218,20, +Tuesday,4/26/2011 15:00,0,34,28,50,68,108,284,-190,94, +Tuesday,4/26/2011 16:00,0,0,28,56,70,108,262,-96,166, +Tuesday,4/26/2011 17:00,0,32,28,58,56,106,278,-40,238, +Tuesday,4/26/2011 18:00,0,0,28,50,48,108,230,-82,148, +Tuesday,4/26/2011 19:00,0,0,10,24,44,106,184,-38,146, +Tuesday,4/26/2011 20:00,0,0,4,24,42,106,174,-12,162, +Tuesday,4/26/2011 21:00,0,0,2,28,42,106,178,0,178, +Tuesday,4/26/2011 22:00,0,0,4,26,38,106,172,0,172, +Tuesday,4/26/2011 23:00,0,32,4,8,38,108,190,0,190, +Wednesday,4/27/2011 0:00,0,32,2,6,36,106,182,0,182, +Wednesday,4/27/2011 1:00,0,34,4,6,36,106,184,0,184, +Wednesday,4/27/2011 2:00,0,32,2,4,38,108,182,0,182, +Wednesday,4/27/2011 3:00,0,96,6,2,36,108,246,0,246, +Wednesday,4/27/2011 4:00,0,98,2,2,40,106,248,0,248, +Wednesday,4/27/2011 5:00,0,162,2,4,34,106,308,0,308, +Wednesday,4/27/2011 6:00,0,162,8,6,40,108,322,0,322, +Wednesday,4/27/2011 7:00,0,324,20,24,44,106,516,-12,504, +Wednesday,4/27/2011 8:00,0,290,22,36,54,106,508,-56,452, +Wednesday,4/27/2011 9:00,0,162,22,46,66,106,400,-174,226, +Wednesday,4/27/2011 10:00,0,64,28,44,74,108,316,-212,104, +Wednesday,4/27/2011 11:00,0,0,24,38,70,108,238,-342,-104, +Wednesday,4/27/2011 12:00,0,0,26,36,76,106,242,-284,-42, +Wednesday,4/27/2011 13:00,0,0,30,30,72,108,238,-374,-136, +Wednesday,4/27/2011 14:00,0,0,28,30,68,108,234,-376,-142, +Wednesday,4/27/2011 15:00,0,0,28,34,68,106,234,-354,-120, +Wednesday,4/27/2011 16:00,0,0,28,38,68,106,238,-328,-90, +Wednesday,4/27/2011 17:00,0,0,28,44,64,108,242,-248,-6, +Wednesday,4/27/2011 18:00,0,0,26,46,50,106,226,-166,60, +Wednesday,4/27/2011 19:00,0,34,8,26,44,106,216,-56,160, +Wednesday,4/27/2011 20:00,0,32,6,30,42,106,216,-4,212, +Wednesday,4/27/2011 21:00,0,0,6,30,42,106,184,0,184, +Wednesday,4/27/2011 22:00,0,0,6,24,40,106,176,0,176, +Wednesday,4/27/2011 23:00,0,64,4,10,38,108,222,0,222, +Thursday,4/28/2011 0:00,0,34,4,6,36,106,186,0,186, +Thursday,4/28/2011 1:00,0,64,4,4,38,106,214,0,214, +Thursday,4/28/2011 2:00,0,98,6,4,36,106,248,0,248, +Thursday,4/28/2011 3:00,0,64,4,2,36,108,214,0,214, +Thursday,4/28/2011 4:00,0,130,8,2,36,106,280,0,280, +Thursday,4/28/2011 5:00,0,130,4,6,40,106,284,0,284, +Thursday,4/28/2011 6:00,0,194,8,6,34,108,350,0,350, +Thursday,4/28/2011 7:00,0,324,22,20,48,106,518,-10,508, +Thursday,4/28/2011 8:00,0,258,22,32,54,106,470,-84,386, +Thursday,4/28/2011 9:00,0,96,26,48,66,108,342,-192,150, +Thursday,4/28/2011 10:00,0,32,26,44,72,106,278,-280,-2, +Thursday,4/28/2011 11:00,0,0,28,42,76,108,252,-338,-86, +Thursday,4/28/2011 12:00,0,0,26,36,74,106,240,-354,-114, +Thursday,4/28/2011 13:00,0,34,30,32,74,106,272,-366,-94, +Thursday,4/28/2011 14:00,0,0,30,36,66,110,240,-358,-118, +Thursday,4/28/2011 15:00,0,32,32,38,66,106,272,-342,-70, +Thursday,4/28/2011 16:00,0,0,28,42,64,108,242,-272,-30, +Thursday,4/28/2011 17:00,0,32,28,46,54,106,264,-130,134, +Thursday,4/28/2011 18:00,0,32,28,44,46,106,254,-104,150, +Thursday,4/28/2011 19:00,0,0,8,24,40,106,176,-38,138, +Thursday,4/28/2011 20:00,0,0,6,24,38,106,172,-8,164, +Thursday,4/28/2011 21:00,0,0,4,26,40,108,176,0,176, +Thursday,4/28/2011 22:00,0,34,4,20,36,108,200,0,200, +Thursday,4/28/2011 23:00,0,0,4,12,36,104,154,0,154, +Friday,4/29/2011 0:00,0,0,4,8,34,106,150,0,150, +Friday,4/29/2011 1:00,0,0,4,6,40,106,154,0,154, +Friday,4/29/2011 2:00,0,0,4,4,34,106,148,0,148, +Friday,4/29/2011 3:00,0,0,4,4,34,106,148,0,148, +Friday,4/29/2011 4:00,0,130,6,4,38,106,280,0,280, +Friday,4/29/2011 5:00,0,32,4,6,38,106,186,0,186, +Friday,4/29/2011 6:00,0,32,8,14,34,104,190,0,190, +Friday,4/29/2011 7:00,0,130,20,22,44,106,320,-10,310, +Friday,4/29/2011 8:00,0,0,20,34,52,106,210,-82,128, +Friday,4/29/2011 9:00,0,32,24,46,58,108,264,-184,80, +Friday,4/29/2011 10:00,0,32,22,40,68,106,266,-254,12, +Friday,4/29/2011 11:00,0,66,26,36,66,108,298,-310,-12, +Friday,4/29/2011 12:00,0,32,26,36,66,108,264,-280,-16, +Friday,4/29/2011 13:00,0,32,28,34,64,110,266,-308,-42, +Friday,4/29/2011 14:00,0,32,24,38,60,106,258,-170,88, +Friday,4/29/2011 15:00,0,34,26,38,60,106,262,-174,88, +Friday,4/29/2011 16:00,0,32,26,40,56,110,262,-198,64, +Friday,4/29/2011 17:00,0,0,26,46,50,108,230,-68,162, +Friday,4/29/2011 18:00,0,0,20,50,42,106,218,-26,192, +Friday,4/29/2011 19:00,0,32,6,32,42,108,218,-10,208, +Friday,4/29/2011 20:00,0,32,10,26,36,106,210,-4,206, +Friday,4/29/2011 21:00,0,0,4,20,36,106,164,0,164, +Friday,4/29/2011 22:00,0,34,4,6,34,106,182,0,182, +Friday,4/29/2011 23:00,0,32,4,4,36,106,180,0,180, +Saturday,4/30/2011 0:00,0,32,8,4,36,108,186,0,186, +Saturday,4/30/2011 1:00,0,32,4,4,32,106,178,0,178, +Saturday,4/30/2011 2:00,0,98,4,4,36,106,246,0,246, +Saturday,4/30/2011 3:00,0,64,6,2,36,106,212,0,212, +Saturday,4/30/2011 4:00,0,98,6,4,34,106,246,0,246, +Saturday,4/30/2011 5:00,0,194,4,2,32,106,336,0,336, +Saturday,4/30/2011 6:00,0,194,6,6,36,106,346,0,346, +Saturday,4/30/2011 7:00,0,194,6,4,36,106,344,-12,332, +Saturday,4/30/2011 8:00,0,226,6,4,34,104,372,-92,280, +Saturday,4/30/2011 9:00,0,194,6,4,36,106,344,-206,138, +Saturday,4/30/2011 10:00,0,162,4,4,34,106,308,-296,12, +Saturday,4/30/2011 11:00,0,34,4,4,38,104,184,-356,-172, +Saturday,4/30/2011 12:00,0,0,6,4,34,108,150,-274,-124, +Saturday,4/30/2011 13:00,0,0,6,4,36,104,150,-182,-32, +Saturday,4/30/2011 14:00,0,0,4,2,34,108,146,-312,-166, +Saturday,4/30/2011 15:00,0,0,6,4,36,106,148,-338,-190, +Saturday,4/30/2011 16:00,0,0,4,4,36,106,148,-162,-14, +Saturday,4/30/2011 17:00,0,32,6,6,34,106,182,-178,4, +Saturday,4/30/2011 18:00,0,0,6,4,34,106,148,-74,74, +Saturday,4/30/2011 19:00,0,0,4,6,34,106,150,-38,112, +Saturday,4/30/2011 20:00,0,32,6,2,34,106,178,-2,176, +Saturday,4/30/2011 21:00,0,66,4,8,34,106,214,0,214, +Saturday,4/30/2011 22:00,0,32,8,8,36,106,188,0,188, +Saturday,4/30/2011 23:00,0,130,4,2,34,106,274,0,274, +Sunday,05/01/2011 00:00,0,194,6,6,34,106,344,0,344, +Sunday,05/01/2011 01:00,0,194,6,4,34,106,342,0,342, +Sunday,05/01/2011 02:00,0,194,4,4,36,106,344,0,344, +Sunday,05/01/2011 03:00,0,194,6,4,34,106,342,0,342, +Sunday,05/01/2011 04:00,0,162,6,2,32,106,306,0,306, +Sunday,05/01/2011 05:00,0,194,6,6,36,108,348,0,348, +Sunday,05/01/2011 06:00,0,162,6,6,36,104,310,0,310, +Sunday,05/01/2011 07:00,0,194,6,4,34,106,342,-8,334, +Sunday,05/01/2011 08:00,0,194,6,4,36,106,344,-68,276, +Sunday,05/01/2011 09:00,0,130,6,6,34,106,280,-172,108, +Sunday,05/01/2011 10:00,0,64,6,4,36,104,212,-234,-22, +Sunday,05/01/2011 11:00,0,32,6,4,36,106,182,-238,-56, +Sunday,05/01/2011 12:00,0,34,6,6,36,106,184,-180,4, +Sunday,05/01/2011 13:00,0,32,6,4,36,104,180,-146,34, +Sunday,05/01/2011 14:00,0,0,2,4,34,106,146,-198,-52, +Sunday,05/01/2011 15:00,0,0,8,2,36,106,152,-270,-118, +Sunday,05/01/2011 16:00,0,0,4,6,34,106,148,-220,-72, +Sunday,05/01/2011 17:00,0,0,4,4,38,106,152,-156,-4, +Sunday,05/01/2011 18:00,0,32,8,6,34,106,184,-74,110, +Sunday,05/01/2011 19:00,0,0,6,6,34,106,150,-62,88, +Sunday,05/01/2011 20:00,0,64,6,6,36,106,216,-6,210, +Sunday,05/01/2011 21:00,0,66,6,8,34,106,218,0,218, +Sunday,05/01/2011 22:00,0,130,6,8,34,106,282,0,282, +Sunday,05/01/2011 23:00,0,194,4,10,34,106,348,0,348, +Monday,05/02/2011 00:00,0,194,6,10,34,106,350,0,350, +Monday,05/02/2011 01:00,0,162,6,6,36,106,312,0,312, +Monday,05/02/2011 02:00,0,194,6,4,36,108,344,0,344, +Monday,05/02/2011 03:00,0,226,6,4,32,106,374,0,374, +Monday,05/02/2011 04:00,0,322,8,4,36,106,476,0,476, +Monday,05/02/2011 05:00,0,322,4,4,36,106,472,0,472, +Monday,05/02/2011 06:00,0,258,8,8,36,106,416,0,416, +Monday,05/02/2011 07:00,0,548,22,22,46,108,744,-2,742, +Monday,05/02/2011 08:00,0,356,22,36,52,106,570,-28,542, +Monday,05/02/2011 09:00,0,226,24,40,66,106,460,-194,266, +Monday,05/02/2011 10:00,0,130,26,42,70,106,372,-276,96, +Monday,05/02/2011 11:00,0,32,26,36,74,108,274,-324,-50, +Monday,05/02/2011 12:00,0,34,26,42,80,116,296,-224,72, +Monday,05/02/2011 13:00,0,0,26,36,70,106,236,-256,-20, +Monday,05/02/2011 14:00,0,32,30,36,70,108,274,-244,30, +Monday,05/02/2011 15:00,0,32,26,40,70,108,274,-242,32, +Monday,05/02/2011 16:00,0,0,26,42,66,106,238,-218,20, +Monday,05/02/2011 17:00,0,0,26,42,58,106,232,-174,58, +Monday,05/02/2011 18:00,0,0,26,48,46,106,224,-62,162, +Monday,05/02/2011 19:00,0,0,6,28,48,108,186,-12,174, +Monday,05/02/2011 20:00,0,0,6,24,40,106,174,-2,172, +Monday,05/02/2011 21:00,0,0,2,26,38,106,172,0,172, +Monday,05/02/2011 22:00,0,0,4,18,38,108,166,0,166, +Monday,05/02/2011 23:00,0,0,4,4,40,106,152,0,152, +Tuesday,05/03/2011 00:00,0,0,2,2,34,106,144,0,144, +Tuesday,05/03/2011 01:00,0,66,4,2,38,106,214,0,214, +Tuesday,05/03/2011 02:00,0,64,4,2,36,108,212,0,212, +Tuesday,05/03/2011 03:00,0,98,2,4,38,106,248,0,248, +Tuesday,05/03/2011 04:00,0,64,4,2,36,106,212,0,212, +Tuesday,05/03/2011 05:00,0,98,2,4,38,106,246,0,246, +Tuesday,05/03/2011 06:00,0,130,8,10,36,106,288,0,288, +Tuesday,05/03/2011 07:00,0,258,20,16,50,106,450,-16,434, +Tuesday,05/03/2011 08:00,0,162,22,32,54,106,374,-100,274, +Tuesday,05/03/2011 09:00,0,64,24,44,66,106,302,-202,100, +Tuesday,05/03/2011 10:00,0,0,24,42,76,106,248,-286,-38, +Tuesday,05/03/2011 11:00,0,0,24,36,68,106,232,-340,-108, +Tuesday,05/03/2011 12:00,0,32,24,32,70,106,262,-356,-94, +Tuesday,05/03/2011 13:00,0,34,26,32,72,106,268,-312,-44, +Tuesday,05/03/2011 14:00,0,0,16,38,68,106,228,-160,68, +Tuesday,05/03/2011 15:00,0,0,16,42,64,108,228,-146,82, +Tuesday,05/03/2011 16:00,0,0,16,38,66,108,224,-262,-38, +Tuesday,05/03/2011 17:00,0,0,16,38,56,106,216,-102,114, +Tuesday,05/03/2011 18:00,0,0,12,50,42,106,210,-50,160, +Tuesday,05/03/2011 19:00,0,32,12,26,38,106,212,-28,184, +Tuesday,05/03/2011 20:00,0,0,4,22,38,106,170,-2,168, +Tuesday,05/03/2011 21:00,0,0,6,28,40,106,178,0,178, +Tuesday,05/03/2011 22:00,0,0,4,22,36,106,166,0,166, +Tuesday,05/03/2011 23:00,0,0,2,10,36,106,152,0,152, +Wednesday,05/04/2011 00:00,0,32,4,8,38,106,186,0,186, +Wednesday,05/04/2011 01:00,0,66,4,8,32,106,214,0,214, +Wednesday,05/04/2011 02:00,0,32,6,6,40,108,188,0,188, +Wednesday,05/04/2011 03:00,0,32,6,4,36,106,182,0,182, +Wednesday,05/04/2011 04:00,0,32,4,6,34,106,182,0,182, +Wednesday,05/04/2011 05:00,0,34,6,8,38,106,188,0,188, +Wednesday,05/04/2011 06:00,0,32,4,6,40,106,186,0,186, +Wednesday,05/04/2011 07:00,0,130,14,22,46,106,316,-18,298, +Wednesday,05/04/2011 08:00,0,64,18,36,56,104,276,-98,178, +Wednesday,05/04/2011 09:00,0,0,22,44,68,106,240,-196,44, +Wednesday,05/04/2011 10:00,0,0,24,44,68,106,240,-254,-14, +Wednesday,05/04/2011 11:00,0,32,26,38,72,108,276,-314,-38, +Wednesday,05/04/2011 12:00,0,0,26,36,70,108,238,-352,-114, +Wednesday,05/04/2011 13:00,0,66,28,36,70,110,308,-282,26, +Wednesday,05/04/2011 14:00,0,32,28,44,68,108,278,-206,72, +Wednesday,05/04/2011 15:00,0,66,28,52,68,106,320,-66,254, +Wednesday,05/04/2011 16:00,0,32,26,56,64,108,284,-68,216, +Wednesday,05/04/2011 17:00,0,0,26,44,56,108,234,-186,48, +Wednesday,05/04/2011 18:00,0,96,26,46,48,106,320,-148,172, +Wednesday,05/04/2011 19:00,0,0,8,26,46,106,184,-68,116, +Wednesday,05/04/2011 20:00,0,0,6,26,40,106,176,-10,166, +Wednesday,05/04/2011 21:00,0,0,4,36,40,106,182,0,182, +Wednesday,05/04/2011 22:00,0,66,4,28,40,108,244,0,244, +Wednesday,05/04/2011 23:00,0,0,6,16,36,106,162,0,162, +Thursday,05/05/2011 00:00,0,0,6,6,36,106,152,0,152, +Thursday,05/05/2011 01:00,0,0,6,4,36,106,150,0,150, +Thursday,05/05/2011 02:00,0,32,4,6,38,106,184,0,184, +Thursday,05/05/2011 03:00,0,32,4,6,34,108,184,0,184, +Thursday,05/05/2011 04:00,0,66,8,4,38,106,218,0,218, +Thursday,05/05/2011 05:00,0,64,4,6,36,108,218,0,218, +Thursday,05/05/2011 06:00,0,98,8,6,40,106,256,0,256, +Thursday,05/05/2011 07:00,0,258,22,18,46,106,448,-24,424, +Thursday,05/05/2011 08:00,0,130,22,38,50,108,344,-108,236, +Thursday,05/05/2011 09:00,0,64,24,48,72,106,312,-208,104, +Thursday,05/05/2011 10:00,0,0,26,46,72,106,248,-292,-44, +Thursday,05/05/2011 11:00,0,0,24,42,68,106,238,-344,-106, +Thursday,05/05/2011 12:00,0,0,24,36,72,106,236,-360,-124, +Thursday,05/05/2011 13:00,0,32,26,34,70,106,268,-358,-90, +Thursday,05/05/2011 14:00,0,48,28,38,68,110,292,-356,-64, +Thursday,05/05/2011 15:00,0,42,30,40,68,114,296,-358,-62, +Thursday,05/05/2011 16:00,0,40,26,38,58,102,264,-280,-16, +Thursday,05/05/2011 17:00,0,0,28,44,54,108,232,-234,-2, +Thursday,05/05/2011 18:00,0,66,28,46,42,110,290,-144,146, +Thursday,05/05/2011 19:00,0,0,10,22,40,106,178,-50,128, +Thursday,05/05/2011 20:00,0,0,4,24,40,108,172,-4,168, +Thursday,05/05/2011 21:00,0,0,4,28,38,110,180,0,180, +Thursday,05/05/2011 22:00,0,0,2,24,38,108,170,0,170, +Thursday,05/05/2011 23:00,0,0,4,12,36,106,158,0,158, +Friday,05/06/2011 00:00,0,0,4,6,36,106,152,0,152, +Friday,05/06/2011 01:00,0,0,4,6,36,106,152,0,152, +Friday,05/06/2011 02:00,0,0,4,6,36,106,152,0,152, +Friday,05/06/2011 03:00,0,32,4,4,36,108,182,0,182, +Friday,05/06/2011 04:00,0,0,4,4,36,106,148,0,148, +Friday,05/06/2011 05:00,0,0,4,4,38,108,152,0,152, +Friday,05/06/2011 06:00,0,66,8,6,38,104,220,0,220, +Friday,05/06/2011 07:00,0,64,18,20,46,106,252,-24,228, +Friday,05/06/2011 08:00,0,64,20,28,48,106,264,-48,216, +Friday,05/06/2011 09:00,0,0,24,38,58,106,224,-92,132, +Friday,05/06/2011 10:00,0,162,22,38,64,108,394,-272,122, +Friday,05/06/2011 11:00,0,0,22,34,66,108,228,-344,-116, +Friday,05/06/2011 12:00,0,0,24,34,64,110,230,-312,-82, +Friday,05/06/2011 13:00,0,32,26,32,64,108,260,-368,-108, +Friday,05/06/2011 14:00,0,32,26,32,64,114,268,-312,-44, +Friday,05/06/2011 15:00,0,0,28,36,60,112,234,-250,-16, +Friday,05/06/2011 16:00,0,0,24,38,56,114,232,-176,56, +Friday,05/06/2011 17:00,0,0,26,42,48,110,226,-98,128, +Friday,05/06/2011 18:00,0,32,24,46,46,106,252,-52,200, +Friday,05/06/2011 19:00,0,0,6,24,38,112,178,-18,160, +Friday,05/06/2011 20:00,0,0,2,20,34,106,162,-2,160, +Friday,05/06/2011 21:00,0,0,4,12,34,110,160,0,160, +Friday,05/06/2011 22:00,0,0,4,10,36,108,158,0,158, +Friday,05/06/2011 23:00,0,0,4,8,34,108,150,0,150, +Saturday,05/07/2011 00:00,0,32,2,4,34,106,176,0,176, +Saturday,05/07/2011 01:00,0,0,4,4,34,108,150,0,150, +Saturday,05/07/2011 02:00,0,0,4,4,32,106,146,0,146, +Saturday,05/07/2011 03:00,0,0,4,4,34,108,148,0,148, +Saturday,05/07/2011 04:00,0,0,4,4,32,106,146,0,146, +Saturday,05/07/2011 05:00,0,0,4,4,34,108,150,0,150, +Saturday,05/07/2011 06:00,0,0,4,6,34,106,148,0,148, +Saturday,05/07/2011 07:00,0,0,6,4,34,106,148,-18,130, +Saturday,05/07/2011 08:00,0,0,4,4,32,106,142,-68,74, +Saturday,05/07/2011 09:00,0,0,4,2,34,110,150,-180,-30, +Saturday,05/07/2011 10:00,0,0,4,4,36,108,150,-242,-92, +Saturday,05/07/2011 11:00,0,0,4,4,32,106,146,-312,-166, +Saturday,05/07/2011 12:00,0,0,4,4,34,108,148,-354,-206, +Saturday,05/07/2011 13:00,0,0,4,4,28,116,150,-348,-198, +Saturday,05/07/2011 14:00,2,0,4,4,34,118,162,-184,-22, +Saturday,05/07/2011 15:00,0,0,4,6,32,112,154,-180,-26, +Saturday,05/07/2011 16:00,0,0,6,4,32,110,152,-294,-142, +Saturday,05/07/2011 17:00,0,0,4,6,32,112,152,-254,-102, +Saturday,05/07/2011 18:00,0,0,4,6,32,112,152,-128,24, +Saturday,05/07/2011 19:00,0,0,6,6,34,110,156,-44,112, +Saturday,05/07/2011 20:00,0,0,4,8,32,112,154,-4,150, +Saturday,05/07/2011 21:00,0,34,4,10,32,108,186,0,186, +Saturday,05/07/2011 22:00,0,0,4,12,34,108,158,0,158, +Saturday,05/07/2011 23:00,0,0,4,6,32,108,148,0,148, +Sunday,05/08/2011 00:00,0,0,4,8,34,108,152,0,152, +Sunday,05/08/2011 01:00,0,0,4,6,32,110,150,0,150, +Sunday,05/08/2011 02:00,0,32,4,6,30,108,178,0,178, +Sunday,05/08/2011 03:00,0,0,4,4,34,108,150,0,150, +Sunday,05/08/2011 04:00,0,0,4,4,32,108,148,0,148, +Sunday,05/08/2011 05:00,0,0,4,4,32,106,146,0,146, +Sunday,05/08/2011 06:00,0,0,4,6,32,106,148,0,148, +Sunday,05/08/2011 07:00,0,32,4,4,34,106,180,-20,160, +Sunday,05/08/2011 08:00,0,0,4,4,32,106,144,-98,46, +Sunday,05/08/2011 09:00,0,0,6,2,30,106,144,-196,-52, +Sunday,05/08/2011 10:00,0,0,4,4,34,108,148,-270,-122, +Sunday,05/08/2011 11:00,0,0,4,6,36,108,152,-324,-172, +Sunday,05/08/2011 12:00,0,0,4,2,32,116,152,-344,-192, +Sunday,05/08/2011 13:00,0,0,6,6,34,112,156,-354,-198, +Sunday,05/08/2011 14:00,0,0,4,4,34,112,154,-340,-186, +Sunday,05/08/2011 15:00,0,0,6,4,34,110,154,-296,-142, +Sunday,05/08/2011 16:00,0,0,4,6,34,112,156,-316,-160, +Sunday,05/08/2011 17:00,0,0,4,6,32,112,152,-236,-84, +Sunday,05/08/2011 18:00,0,0,6,4,32,116,156,-156,0, +Sunday,05/08/2011 19:00,0,0,4,8,36,108,154,-56,98, +Sunday,05/08/2011 20:00,0,0,6,8,32,112,156,-4,152, +Sunday,05/08/2011 21:00,0,0,4,10,32,108,154,0,154, +Sunday,05/08/2011 22:00,0,0,6,10,34,112,160,0,160, +Sunday,05/08/2011 23:00,0,0,4,14,34,106,156,0,156, +Monday,05/09/2011 00:00,0,0,4,12,32,108,154,0,154, +Monday,05/09/2011 01:00,0,0,4,6,32,106,148,0,148, +Monday,05/09/2011 02:00,0,0,6,4,34,110,154,0,154, +Monday,05/09/2011 03:00,0,32,4,4,32,108,178,0,178, +Monday,05/09/2011 04:00,0,0,4,4,32,108,148,0,148, +Monday,05/09/2011 05:00,0,0,4,6,34,106,150,0,150, +Monday,05/09/2011 06:00,0,66,8,8,36,108,222,0,222, +Monday,05/09/2011 07:00,0,32,24,26,42,108,230,-16,214, +Monday,05/09/2011 08:00,0,32,24,40,50,112,256,-42,214, +Monday,05/09/2011 09:00,0,34,26,46,66,108,278,-96,182, +Monday,05/09/2011 10:00,0,32,28,50,76,106,290,-142,148, +Monday,05/09/2011 11:00,0,32,28,46,74,108,286,-318,-32, +Monday,05/09/2011 12:00,0,0,26,40,70,116,250,-352,-102, +Monday,05/09/2011 13:00,0,0,30,34,76,110,248,-358,-110, +Monday,05/09/2011 14:00,6,0,30,38,74,116,264,-356,-92, +Monday,05/09/2011 15:00,14,0,34,42,66,118,272,-336,-64, +Monday,05/09/2011 16:00,6,32,30,44,66,114,292,-318,-26, +Monday,05/09/2011 17:00,10,0,28,46,58,116,254,-212,42, +Monday,05/09/2011 18:00,4,0,28,48,48,116,244,-104,140, +Monday,05/09/2011 19:00,0,32,8,26,40,114,220,-20,200, +Monday,05/09/2011 20:00,0,0,4,28,38,110,178,-4,174, +Monday,05/09/2011 21:00,0,0,6,30,42,108,184,0,184, +Monday,05/09/2011 22:00,0,0,4,20,40,110,172,0,172, +Monday,05/09/2011 23:00,4,0,4,14,36,108,164,0,164, +Tuesday,05/10/2011 00:00,0,0,4,10,36,108,156,0,156, +Tuesday,05/10/2011 01:00,0,0,6,2,36,106,150,0,150, +Tuesday,05/10/2011 02:00,0,0,4,2,36,106,146,0,146, +Tuesday,05/10/2011 03:00,0,34,6,4,40,108,188,0,188, +Tuesday,05/10/2011 04:00,0,0,4,2,34,106,146,0,146, +Tuesday,05/10/2011 05:00,0,0,6,6,38,106,154,0,154, +Tuesday,05/10/2011 06:00,0,0,6,8,42,106,160,0,160, +Tuesday,05/10/2011 07:00,0,0,22,20,44,106,190,-22,168, +Tuesday,05/10/2011 08:00,0,0,24,34,60,106,222,-104,118, +Tuesday,05/10/2011 09:00,0,64,32,44,66,106,312,-202,110, +Tuesday,05/10/2011 10:00,0,66,36,44,70,108,322,-286,36, +Tuesday,05/10/2011 11:00,0,0,30,40,74,110,252,-344,-92, +Tuesday,05/10/2011 12:00,0,32,30,34,74,108,278,-362,-84, +Tuesday,05/10/2011 13:00,0,0,38,34,72,112,254,-362,-108, +Tuesday,05/10/2011 14:00,0,0,38,32,68,110,248,-344,-96, +Tuesday,05/10/2011 15:00,0,0,40,38,70,114,262,-242,20, +Tuesday,05/10/2011 16:00,0,0,30,40,66,116,250,-196,54, +Tuesday,05/10/2011 17:00,0,0,28,40,58,110,234,-152,82, +Tuesday,05/10/2011 18:00,0,0,28,44,48,116,236,-74,162, +Tuesday,05/10/2011 19:00,0,32,12,24,44,110,220,-28,192, +Tuesday,05/10/2011 20:00,0,0,6,30,40,108,182,-4,178, +Tuesday,05/10/2011 21:00,0,0,6,26,38,110,180,0,180, +Tuesday,05/10/2011 22:00,0,0,6,20,38,108,170,0,170, +Tuesday,05/10/2011 23:00,0,0,4,14,36,108,160,0,160, +Wednesday,05/11/2011 00:00,0,0,6,6,38,108,158,0,158, +Wednesday,05/11/2011 01:00,0,0,4,6,38,108,156,0,156, +Wednesday,05/11/2011 02:00,0,32,6,4,38,108,186,0,186, +Wednesday,05/11/2011 03:00,0,0,6,2,36,110,152,0,152, +Wednesday,05/11/2011 04:00,0,0,6,6,40,108,156,0,156, +Wednesday,05/11/2011 05:00,0,34,8,4,38,108,188,0,188, +Wednesday,05/11/2011 06:00,0,64,6,8,42,108,226,0,226, +Wednesday,05/11/2011 07:00,0,130,22,24,44,108,326,0,326, +Wednesday,05/11/2011 08:00,4,130,24,42,54,106,356,0,356, +Wednesday,05/11/2011 09:00,0,130,28,62,70,108,396,-2,394, +Wednesday,05/11/2011 10:00,0,130,28,66,74,110,404,-6,398, +Wednesday,05/11/2011 11:00,0,64,26,62,72,108,330,-10,320, +Wednesday,05/11/2011 12:00,0,66,28,62,78,106,338,-12,326, +Wednesday,05/11/2011 13:00,4,96,30,64,74,108,372,-12,360, +Wednesday,05/11/2011 14:00,0,98,28,58,72,108,362,-28,334, +Wednesday,05/11/2011 15:00,0,98,30,58,68,108,360,-54,306, +Wednesday,05/11/2011 16:00,0,96,30,58,68,108,358,-68,290, +Wednesday,05/11/2011 17:00,0,66,28,58,58,110,316,-74,242, +Wednesday,05/11/2011 18:00,4,96,26,60,50,106,342,-16,326, +Wednesday,05/11/2011 19:00,0,34,6,32,44,108,220,-8,212, +Wednesday,05/11/2011 20:00,0,0,6,32,44,110,190,-2,188, +Wednesday,05/11/2011 21:00,0,96,2,26,38,106,268,0,268, +Wednesday,05/11/2011 22:00,0,162,4,20,40,108,334,0,334, +Wednesday,05/11/2011 23:00,0,128,6,8,38,106,284,0,284, +Thursday,05/12/2011 00:00,0,130,2,4,40,108,280,0,280, +Thursday,05/12/2011 01:00,0,162,6,4,34,108,310,0,310, +Thursday,05/12/2011 02:00,0,96,2,4,40,110,250,0,250, +Thursday,05/12/2011 03:00,0,66,2,4,38,110,216,0,216, +Thursday,05/12/2011 04:00,0,96,4,4,36,108,248,0,248, +Thursday,05/12/2011 05:00,0,98,4,4,38,108,248,0,248, +Thursday,05/12/2011 06:00,0,130,8,10,38,110,292,0,292, +Thursday,05/12/2011 07:00,0,258,20,22,50,108,456,-4,452, +Thursday,05/12/2011 08:00,0,258,22,36,54,108,474,-18,456, +Thursday,05/12/2011 09:00,0,226,26,52,68,108,478,-44,434, +Thursday,05/12/2011 10:00,0,130,26,56,72,108,390,-72,318, +Thursday,05/12/2011 11:00,0,98,28,56,76,108,364,-88,276, +Thursday,05/12/2011 12:00,0,98,28,52,72,108,354,-102,252, +Thursday,05/12/2011 13:00,0,64,34,54,76,108,336,-94,242, +Thursday,05/12/2011 14:00,0,66,30,54,70,108,326,-90,236, +Thursday,05/12/2011 15:00,0,32,32,54,68,108,294,-98,196, +Thursday,05/12/2011 16:00,0,32,26,50,62,108,276,-110,166, +Thursday,05/12/2011 17:00,0,0,28,42,58,110,236,-170,66, +Thursday,05/12/2011 18:00,0,0,24,50,48,108,228,-62,166, +Thursday,05/12/2011 19:00,0,0,8,26,38,108,180,-18,162, +Thursday,05/12/2011 20:00,0,32,2,30,42,108,214,-4,210, +Thursday,05/12/2011 21:00,0,0,6,26,36,108,174,0,174, +Thursday,05/12/2011 22:00,0,32,2,18,38,108,196,0,196, +Thursday,05/12/2011 23:00,0,0,4,8,36,108,154,0,154, +Friday,5/13/2011 0:00,0,66,2,6,36,108,216,0,216, +Friday,5/13/2011 1:00,0,98,4,6,36,108,250,0,250, +Friday,5/13/2011 2:00,0,96,4,4,32,106,240,0,240, +Friday,5/13/2011 3:00,0,98,4,6,38,108,250,0,250, +Friday,5/13/2011 4:00,0,98,2,4,36,106,242,0,242, +Friday,5/13/2011 5:00,0,96,2,6,38,108,248,0,248, +Friday,5/13/2011 6:00,0,98,6,6,34,106,248,0,248, +Friday,5/13/2011 7:00,0,226,20,22,48,106,420,-10,410, +Friday,5/13/2011 8:00,4,226,26,30,46,108,438,-60,378, +Friday,5/13/2011 9:00,0,162,30,38,60,110,398,-204,194, +Friday,5/13/2011 10:00,0,66,34,36,64,108,306,-278,28, +Friday,5/13/2011 11:00,0,0,32,36,68,110,244,-334,-90, +Friday,5/13/2011 12:00,0,0,32,32,64,108,234,-354,-120, +Friday,5/13/2011 13:00,0,0,34,30,64,112,240,-356,-116, +Friday,5/13/2011 14:00,0,0,38,30,62,116,244,-354,-110, +Friday,5/13/2011 15:00,0,64,32,34,60,112,302,-340,-38, +Friday,5/13/2011 16:00,0,0,28,34,58,112,232,-302,-70, +Friday,5/13/2011 17:00,0,0,28,36,50,114,226,-238,-12, +Friday,5/13/2011 18:00,0,0,26,38,42,112,216,-152,64, +Friday,5/13/2011 19:00,0,0,10,22,38,108,176,-46,130, +Friday,5/13/2011 20:00,0,0,4,20,38,110,170,-8,162, +Friday,5/13/2011 21:00,0,0,6,28,36,108,176,0,176, +Friday,5/13/2011 22:00,0,0,4,20,34,110,166,0,166, +Friday,5/13/2011 23:00,0,0,6,14,32,110,160,0,160, +Saturday,5/14/2011 0:00,0,0,4,8,28,98,138,0,138, +Saturday,5/14/2011 1:00,0,30,4,6,30,98,168,0,168, +Saturday,5/14/2011 2:00,0,0,4,4,30,100,138,0,138, +Saturday,5/14/2011 3:00,0,58,4,6,28,100,194,0,194, +Saturday,5/14/2011 4:00,0,30,4,2,28,100,164,0,164, +Saturday,5/14/2011 5:00,0,60,4,4,30,98,196,0,196, +Saturday,5/14/2011 6:00,0,58,4,6,30,98,196,0,196, +Saturday,5/14/2011 7:00,0,60,4,6,20,100,188,-2,186, +Saturday,5/14/2011 8:00,0,0,0,0,0,98,98,0,98, +Saturday,5/14/2011 9:00,0,0,0,2,10,98,112,-2,110, +Saturday,5/14/2011 10:00,0,0,0,0,0,100,100,0,100, +Saturday,5/14/2011 11:00,0,0,0,0,0,98,98,0,98, +Saturday,5/14/2011 12:00,0,0,0,0,0,98,98,0,98, +Saturday,5/14/2011 13:00,0,0,0,0,0,100,100,0,100, +Saturday,5/14/2011 14:00,0,0,0,0,0,98,98,0,98, +Saturday,5/14/2011 15:00,0,58,0,90,70,100,318,-8,310, +Saturday,5/14/2011 16:00,0,146,4,20,28,100,296,-20,276, +Saturday,5/14/2011 17:00,0,146,2,16,24,96,286,-40,246, +Saturday,5/14/2011 18:00,0,148,6,16,20,100,288,-10,278, +Saturday,5/14/2011 19:00,0,204,6,4,24,98,336,-10,326, +Saturday,5/14/2011 20:00,0,292,4,4,22,98,422,0,422, +Saturday,5/14/2011 21:00,0,264,4,4,22,98,392,0,392, +Saturday,5/14/2011 22:00,0,292,6,4,24,98,424,0,424, +Saturday,5/14/2011 23:00,0,264,4,4,22,100,392,0,392, +Sunday,5/15/2011 0:00,0,264,6,4,24,98,396,0,396, +Sunday,5/15/2011 1:00,0,234,6,4,22,98,364,0,364, +Sunday,5/15/2011 2:00,0,292,4,2,22,98,420,0,420, +Sunday,5/15/2011 3:00,0,264,4,4,22,100,394,0,394, +Sunday,5/15/2011 4:00,0,234,4,2,20,100,362,0,362, +Sunday,5/15/2011 5:00,0,264,6,6,24,98,398,0,398, +Sunday,5/15/2011 6:00,0,264,4,4,24,98,396,0,396, +Sunday,5/15/2011 7:00,0,352,4,6,22,100,484,-2,482, +Sunday,5/15/2011 8:00,0,292,6,4,22,98,422,-16,406, +Sunday,5/15/2011 9:00,0,234,4,8,24,98,370,-38,332, +Sunday,5/15/2011 10:00,0,206,6,8,24,100,342,-50,292, +Sunday,5/15/2011 11:00,0,146,4,8,22,98,278,-60,218, +Sunday,5/15/2011 12:00,0,88,6,8,24,98,222,-54,168, +Sunday,5/15/2011 13:00,0,88,4,8,24,100,224,-66,158, +Sunday,5/15/2011 14:00,0,88,4,6,22,98,220,-116,104, +Sunday,5/15/2011 15:00,0,88,6,6,22,100,222,-90,132, +Sunday,5/15/2011 16:00,0,58,4,4,24,98,190,-68,122, +Sunday,5/15/2011 17:00,0,58,6,4,24,98,190,-52,138, +Sunday,5/15/2011 18:00,0,88,2,2,22,100,214,-38,176, +Sunday,5/15/2011 19:00,0,88,6,4,22,100,222,-30,192, +Sunday,5/15/2011 20:00,0,88,4,4,24,100,220,-6,214, +Sunday,5/15/2011 21:00,0,116,6,8,26,98,254,0,254, +Sunday,5/15/2011 22:00,0,148,4,6,22,100,278,0,278, +Sunday,5/15/2011 23:00,0,176,4,8,24,100,310,0,310, +Monday,5/16/2011 0:00,0,206,6,8,22,100,342,0,342, +Monday,5/16/2011 1:00,0,146,6,2,24,98,276,0,276, +Monday,5/16/2011 2:00,0,176,4,2,24,100,306,0,306, +Monday,5/16/2011 3:00,0,146,4,2,24,102,278,0,278, +Monday,5/16/2011 4:00,0,206,6,4,22,98,338,0,338, +Monday,5/16/2011 5:00,0,118,4,4,24,100,250,0,250, +Monday,5/16/2011 6:00,0,176,8,8,28,100,316,0,316, +Monday,5/16/2011 7:00,0,410,20,20,34,98,582,-8,574, +Monday,5/16/2011 8:00,0,352,24,40,38,98,552,-36,516, +Monday,5/16/2011 9:00,4,264,32,48,60,98,504,-76,428, +Monday,5/16/2011 10:00,0,88,30,40,60,96,314,-166,148, +Monday,5/16/2011 11:00,0,58,34,40,64,98,294,-242,52, +Monday,5/16/2011 12:00,0,0,30,38,62,100,232,-274,-42, +Monday,5/16/2011 13:00,0,0,32,38,64,100,232,-296,-64, +Monday,5/16/2011 14:00,0,0,34,38,62,100,234,-320,-86, +Monday,5/16/2011 15:00,0,30,34,40,62,102,270,-300,-30, +Monday,5/16/2011 16:00,0,0,32,40,56,100,228,-192,36, +Monday,5/16/2011 17:00,0,0,26,44,54,104,226,-150,76, +Monday,5/16/2011 18:00,0,0,26,48,44,104,220,-58,162, +Monday,5/16/2011 19:00,0,0,6,22,38,100,166,-34,132, +Monday,5/16/2011 20:00,0,0,4,22,40,100,164,-6,158, +Monday,5/16/2011 21:00,0,0,4,24,34,100,162,0,162, +Monday,5/16/2011 22:00,0,0,4,24,34,100,162,0,162, +Monday,5/16/2011 23:00,0,30,2,14,32,100,178,0,178, +Tuesday,5/17/2011 0:00,0,0,2,10,32,100,144,0,144, +Tuesday,5/17/2011 1:00,0,0,4,8,32,100,142,0,142, +Tuesday,5/17/2011 2:00,0,58,4,8,32,98,202,0,202, +Tuesday,5/17/2011 3:00,0,60,4,8,32,100,202,0,202, +Tuesday,5/17/2011 4:00,0,30,4,6,30,98,168,0,168, +Tuesday,5/17/2011 5:00,0,30,2,4,30,100,166,0,166, +Tuesday,5/17/2011 6:00,4,30,10,6,32,98,178,0,178, +Tuesday,5/17/2011 7:00,0,118,20,16,40,98,292,-22,270, +Tuesday,5/17/2011 8:00,0,176,28,32,46,100,382,-70,312, +Tuesday,5/17/2011 9:00,4,146,30,44,62,100,386,-94,292, +Tuesday,5/17/2011 10:00,10,118,32,42,64,100,366,-138,228, +Tuesday,5/17/2011 11:00,2,118,30,38,62,106,354,-292,62, +Tuesday,5/17/2011 12:00,0,30,28,34,66,104,262,-248,14, +Tuesday,5/17/2011 13:00,4,30,30,40,66,100,270,-184,86, +Tuesday,5/17/2011 14:00,6,88,34,44,60,100,334,-130,204, +Tuesday,5/17/2011 15:00,4,118,32,44,62,100,358,-172,186, +Tuesday,5/17/2011 16:00,4,88,30,50,58,98,328,-72,256, +Tuesday,5/17/2011 17:00,0,0,26,60,50,100,236,-20,216, +Tuesday,5/17/2011 18:00,0,0,22,50,42,98,212,-164,48, +Tuesday,5/17/2011 19:00,0,0,8,24,38,100,168,-54,114, +Tuesday,5/17/2011 20:00,0,0,4,22,34,100,160,-6,154, +Tuesday,5/17/2011 21:00,0,58,6,26,32,100,222,0,222, +Tuesday,5/17/2011 22:00,0,0,4,24,30,100,160,0,160, +Tuesday,5/17/2011 23:00,0,0,6,10,32,98,148,0,148, +Wednesday,5/18/2011 0:00,0,0,4,4,30,100,140,0,140, +Wednesday,5/18/2011 1:00,0,30,4,6,30,98,168,0,168, +Wednesday,5/18/2011 2:00,0,30,4,4,30,100,166,0,166, +Wednesday,5/18/2011 3:00,0,0,4,8,32,102,144,0,144, +Wednesday,5/18/2011 4:00,0,60,4,10,32,98,202,0,202, +Wednesday,5/18/2011 5:00,0,30,4,12,28,100,174,0,174, +Wednesday,5/18/2011 6:00,4,30,8,10,36,100,184,0,184, +Wednesday,5/18/2011 7:00,0,148,20,20,36,100,322,-6,316, +Wednesday,5/18/2011 8:00,0,116,20,38,48,100,322,-14,308, +Wednesday,5/18/2011 9:00,0,88,22,60,58,98,326,-32,294, +Wednesday,5/18/2011 10:00,0,88,32,54,64,100,338,-108,230, +Wednesday,5/18/2011 11:00,0,0,28,50,60,100,240,-152,88, +Wednesday,5/18/2011 12:00,4,30,30,56,66,100,284,-76,208, +Wednesday,5/18/2011 13:00,0,30,30,58,64,100,282,-118,164, +Wednesday,5/18/2011 14:00,0,30,30,64,60,98,282,-46,236, +Wednesday,5/18/2011 15:00,0,30,30,60,64,100,284,-98,186, +Wednesday,5/18/2011 16:00,0,58,30,54,58,100,300,-116,184, +Wednesday,5/18/2011 17:00,0,88,30,66,48,100,330,-4,326, +Wednesday,5/18/2011 18:00,0,58,26,64,42,100,288,-10,278, +Wednesday,5/18/2011 19:00,0,0,6,34,38,100,178,-4,174, +Wednesday,5/18/2011 20:00,0,0,4,40,34,100,178,0,178, +Wednesday,5/18/2011 21:00,0,0,2,36,34,98,172,0,172, +Wednesday,5/18/2011 22:00,0,30,2,26,34,100,192,0,192, +Wednesday,5/18/2011 23:00,0,58,4,10,34,100,204,0,204, +Thursday,5/19/2011 0:00,0,58,2,8,30,98,196,0,196, +Thursday,5/19/2011 1:00,0,60,2,4,30,100,196,0,196, +Thursday,5/19/2011 2:00,0,88,4,8,32,100,230,0,230, +Thursday,5/19/2011 3:00,0,88,4,6,32,102,232,0,232, +Thursday,5/19/2011 4:00,0,88,2,6,28,100,224,0,224, +Thursday,5/19/2011 5:00,0,88,4,6,34,98,232,0,232, +Thursday,5/19/2011 6:00,0,118,6,8,30,100,262,0,262, +Thursday,5/19/2011 7:00,0,264,24,20,34,100,440,-8,432, +Thursday,5/19/2011 8:00,4,264,28,40,52,100,484,-36,448, +Thursday,5/19/2011 9:00,0,204,26,52,58,98,438,-70,368, +Thursday,5/19/2011 10:00,0,148,28,62,64,100,402,-38,364, +Thursday,5/19/2011 11:00,0,146,30,66,62,100,402,-56,346, +Thursday,5/19/2011 12:00,0,118,28,62,68,100,372,-78,294, +Thursday,5/19/2011 13:00,4,88,30,62,60,98,344,-48,296, +Thursday,5/19/2011 14:00,0,88,32,68,64,100,352,-16,336, +Thursday,5/19/2011 15:00,0,58,30,68,56,100,312,-16,296, +Thursday,5/19/2011 16:00,0,118,28,66,54,98,362,-24,338, +Thursday,5/19/2011 17:00,0,118,26,62,50,98,354,-20,334, +Thursday,5/19/2011 18:00,0,146,28,58,40,100,372,-30,342, +Thursday,5/19/2011 19:00,0,0,8,30,32,98,168,-12,156, +Thursday,5/19/2011 20:00,0,30,8,30,36,100,202,-2,200, +Thursday,5/19/2011 21:00,0,58,6,30,32,98,224,0,224, +Thursday,5/19/2011 22:00,0,118,4,20,32,100,274,0,274, +Thursday,5/19/2011 23:00,0,88,6,12,32,98,236,0,236, +Friday,5/20/2011 0:00,0,88,6,8,30,98,230,0,230, +Friday,5/20/2011 1:00,0,118,6,4,30,100,258,0,258, +Friday,5/20/2011 2:00,0,118,6,6,30,100,258,0,258, +Friday,5/20/2011 3:00,0,146,6,2,30,100,284,0,284, +Friday,5/20/2011 4:00,0,148,6,6,32,100,290,0,290, +Friday,5/20/2011 5:00,0,204,8,6,30,100,348,0,348, +Friday,5/20/2011 6:00,4,206,8,8,30,98,352,0,352, +Friday,5/20/2011 7:00,0,352,24,16,40,100,530,-18,512, +Friday,5/20/2011 8:00,0,264,24,32,46,98,466,-102,364, +Friday,5/20/2011 9:00,0,176,28,40,54,98,396,-178,218, +Friday,5/20/2011 10:00,0,30,24,40,56,98,246,-160,86, +Friday,5/20/2011 11:00,0,30,24,36,58,98,244,-276,-32, +Friday,5/20/2011 12:00,0,0,24,36,54,100,214,-284,-70, +Friday,5/20/2011 13:00,0,0,26,34,52,98,210,-256,-46, +Friday,5/20/2011 14:00,0,0,26,36,52,98,212,-190,22, +Friday,5/20/2011 15:00,0,0,24,40,52,96,214,-210,4, +Friday,5/20/2011 16:00,4,88,28,44,50,98,310,-50,260, +Friday,5/20/2011 17:00,0,60,34,40,42,98,274,-98,176, +Friday,5/20/2011 18:00,0,30,28,38,38,98,232,-74,158, +Friday,5/20/2011 19:00,0,0,10,30,36,96,172,-58,114, +Friday,5/20/2011 20:00,0,0,6,30,32,98,166,-12,154, +Friday,5/20/2011 21:00,0,0,8,30,32,98,168,0,168, +Friday,5/20/2011 22:00,0,30,6,22,32,98,188,0,188, +Friday,5/20/2011 23:00,0,30,6,10,30,98,172,0,172, +Saturday,5/21/2011 0:00,0,30,6,10,32,96,176,0,176, +Saturday,5/21/2011 1:00,0,58,8,8,30,98,202,0,202, +Saturday,5/21/2011 2:00,0,88,6,10,30,98,232,0,232, +Saturday,5/21/2011 3:00,0,58,8,6,30,96,200,0,200, +Saturday,5/21/2011 4:00,0,60,6,8,30,98,198,0,198, +Saturday,5/21/2011 5:00,0,118,8,6,30,98,262,0,262, +Saturday,5/21/2011 6:00,0,88,8,12,30,96,234,0,234, +Saturday,5/21/2011 7:00,0,88,6,8,30,98,228,-18,210, +Saturday,5/21/2011 8:00,0,58,8,4,30,98,198,-82,116, +Saturday,5/21/2011 9:00,0,30,6,6,30,98,170,-120,50, +Saturday,5/21/2011 10:00,0,0,8,6,30,100,146,-206,-60, +Saturday,5/21/2011 11:00,0,0,8,6,30,96,140,-220,-80, +Saturday,5/21/2011 12:00,0,0,6,6,30,98,138,-258,-120, +Saturday,5/21/2011 13:00,0,0,8,4,30,96,138,-124,14, +Saturday,5/21/2011 14:00,0,0,8,6,30,98,142,-160,-18, +Saturday,5/21/2011 15:00,0,0,6,6,30,96,138,-192,-54, +Saturday,5/21/2011 16:00,0,0,6,8,30,100,144,-134,10, +Saturday,5/21/2011 17:00,0,0,6,6,30,96,140,-226,-86, +Saturday,5/21/2011 18:00,0,0,8,8,30,98,144,-108,36, +Saturday,5/21/2011 19:00,0,0,8,8,30,96,142,-52,90, +Saturday,5/21/2011 20:00,0,0,6,8,30,98,142,-8,134, +Saturday,5/21/2011 21:00,0,0,8,10,30,100,148,0,148, +Saturday,5/21/2011 22:00,0,0,6,10,28,96,140,0,140, +Saturday,5/21/2011 23:00,0,0,8,8,30,98,142,0,142, +Sunday,5/22/2011 0:00,0,30,10,8,30,96,172,0,172, +Sunday,5/22/2011 1:00,0,30,6,4,32,98,170,0,170, +Sunday,5/22/2011 2:00,0,60,10,6,28,96,198,0,198, +Sunday,5/22/2011 3:00,0,58,8,8,30,98,202,0,202, +Sunday,5/22/2011 4:00,0,58,6,6,28,98,196,0,196, +Sunday,5/22/2011 5:00,0,30,10,6,30,96,172,0,172, +Sunday,5/22/2011 6:00,0,88,6,6,30,98,224,0,224, +Sunday,5/22/2011 7:00,0,60,8,8,30,98,202,-28,174, +Sunday,5/22/2011 8:00,0,0,8,4,30,96,138,-112,26, +Sunday,5/22/2011 9:00,0,0,8,6,30,98,142,-130,12, +Sunday,5/22/2011 10:00,0,0,8,6,30,96,138,-120,18, +Sunday,5/22/2011 11:00,0,0,6,8,30,98,140,-172,-32, +Sunday,5/22/2011 12:00,0,0,8,6,30,96,140,-180,-40, +Sunday,5/22/2011 13:00,0,0,8,6,30,98,142,-122,20, +Sunday,5/22/2011 14:00,0,0,6,6,30,98,138,-164,-26, +Sunday,5/22/2011 15:00,0,0,8,6,30,100,146,-270,-124, +Sunday,5/22/2011 16:00,0,0,6,6,30,98,142,-296,-154, +Sunday,5/22/2011 17:00,0,0,6,6,32,98,142,-196,-54, +Sunday,5/22/2011 18:00,0,0,8,8,32,98,144,-80,64, +Sunday,5/22/2011 19:00,0,0,4,8,32,98,142,-34,108, +Sunday,5/22/2011 20:00,0,30,10,10,30,102,178,-4,174, +Sunday,5/22/2011 21:00,0,0,6,8,32,98,144,0,144, +Sunday,5/22/2011 22:00,0,0,8,10,28,96,142,0,142, +Sunday,5/22/2011 23:00,0,0,8,8,30,98,144,0,144, +Monday,5/23/2011 0:00,0,0,8,8,30,96,142,0,142, +Monday,5/23/2011 1:00,0,0,8,6,30,98,142,0,142, +Monday,5/23/2011 2:00,0,0,6,6,30,100,144,0,144, +Monday,5/23/2011 3:00,0,0,8,4,30,100,142,0,142, +Monday,5/23/2011 4:00,0,30,8,4,32,96,170,0,170, +Monday,5/23/2011 5:00,0,0,8,6,30,98,140,0,140, +Monday,5/23/2011 6:00,0,60,10,10,34,96,210,0,210, +Monday,5/23/2011 7:00,0,118,26,18,38,98,294,-20,274, +Monday,5/23/2011 8:00,0,88,26,34,48,102,298,-88,210, +Monday,5/23/2011 9:00,0,0,30,44,62,98,232,-180,52, +Monday,5/23/2011 10:00,0,0,30,48,68,104,248,-248,0, +Monday,5/23/2011 11:00,0,0,30,42,68,102,242,-278,-36, +Monday,5/23/2011 12:00,0,0,30,52,68,102,254,-78,176, +Monday,5/23/2011 13:00,0,0,30,54,68,104,256,-42,214, +Monday,5/23/2011 14:00,0,30,30,58,62,102,282,-94,188, +Monday,5/23/2011 15:00,0,0,32,46,64,100,242,-156,86, +Monday,5/23/2011 16:00,0,0,32,50,62,102,244,-164,80, +Monday,5/23/2011 17:00,0,0,32,46,54,104,236,-136,100, +Monday,5/23/2011 18:00,0,0,30,44,42,102,220,-104,116, +Monday,5/23/2011 19:00,0,0,10,26,38,98,172,-50,122, +Monday,5/23/2011 20:00,0,0,10,32,38,98,176,-8,168, +Monday,5/23/2011 21:00,0,0,8,26,38,102,172,0,172, +Monday,5/23/2011 22:00,0,0,8,20,36,98,162,0,162, +Monday,5/23/2011 23:00,0,0,8,14,34,98,154,0,154, +Tuesday,5/24/2011 0:00,0,0,8,8,32,98,146,0,146, +Tuesday,5/24/2011 1:00,0,0,8,8,34,98,148,0,148, +Tuesday,5/24/2011 2:00,0,0,6,8,36,98,148,0,148, +Tuesday,5/24/2011 3:00,0,0,10,10,30,100,148,0,148, +Tuesday,5/24/2011 4:00,0,30,8,10,32,98,174,0,174, +Tuesday,5/24/2011 5:00,0,30,8,10,32,96,174,0,174, +Tuesday,5/24/2011 6:00,0,30,10,12,34,96,182,0,182, +Tuesday,5/24/2011 7:00,0,146,24,24,38,98,330,-12,318, +Tuesday,5/24/2011 8:00,0,88,26,38,44,98,296,-18,278, +Tuesday,5/24/2011 9:00,4,30,32,52,58,96,272,-34,238, +Tuesday,5/24/2011 10:00,0,0,28,64,62,98,252,-22,230, +Tuesday,5/24/2011 11:00,0,30,30,66,62,98,286,-10,276, +Tuesday,5/24/2011 12:00,0,0,28,68,66,98,260,-32,228, +Tuesday,5/24/2011 13:00,0,30,30,62,66,98,286,-94,192, +Tuesday,5/24/2011 14:00,0,30,28,64,62,98,280,-84,196, +Tuesday,5/24/2011 15:00,0,0,30,64,62,98,254,-90,164, +Tuesday,5/24/2011 16:00,4,30,32,64,60,98,286,-28,258, +Tuesday,5/24/2011 17:00,0,0,30,62,52,98,240,-42,198, +Tuesday,5/24/2011 18:00,0,0,28,58,40,98,224,-56,168, +Tuesday,5/24/2011 19:00,0,0,10,24,38,96,168,-50,118, +Tuesday,5/24/2011 20:00,0,0,8,28,34,100,168,-14,154, +Tuesday,5/24/2011 21:00,0,0,8,24,32,98,160,0,160, +Tuesday,5/24/2011 22:00,0,0,6,20,32,96,156,0,156, +Tuesday,5/24/2011 23:00,0,30,8,10,34,98,180,0,180, +Wednesday,5/25/2011 0:00,0,30,8,8,30,98,172,0,172, +Wednesday,5/25/2011 1:00,0,30,6,8,32,98,172,0,172, +Wednesday,5/25/2011 2:00,0,58,8,8,32,98,204,0,204, +Wednesday,5/25/2011 3:00,0,30,8,4,32,98,172,0,172, +Wednesday,5/25/2011 4:00,0,30,8,4,30,98,168,0,168, +Wednesday,5/25/2011 5:00,0,58,8,6,34,100,204,0,204, +Wednesday,5/25/2011 6:00,0,88,8,8,36,98,236,0,236, +Wednesday,5/25/2011 7:00,0,176,24,16,40,98,352,-14,338, +Wednesday,5/25/2011 8:00,4,88,22,36,44,98,292,-46,246, +Wednesday,5/25/2011 9:00,0,30,26,44,60,98,254,-80,174, +Wednesday,5/25/2011 10:00,0,88,28,42,62,98,320,-150,170, +Wednesday,5/25/2011 11:00,0,0,28,42,62,98,230,-196,34, +Wednesday,5/25/2011 12:00,0,0,30,40,64,98,230,-226,4, +Wednesday,5/25/2011 13:00,0,0,30,40,66,102,236,-248,-12, +Wednesday,5/25/2011 14:00,0,0,30,40,62,100,234,-208,26, +Wednesday,5/25/2011 15:00,0,0,30,42,62,104,238,-290,-52, +Wednesday,5/25/2011 16:00,0,0,30,44,60,104,238,-282,-44, +Wednesday,5/25/2011 17:00,0,0,30,46,54,100,230,-206,24, +Wednesday,5/25/2011 18:00,0,0,30,50,44,106,230,-150,80, +Wednesday,5/25/2011 19:00,0,0,10,28,38,96,170,-60,110, +Wednesday,5/25/2011 20:00,0,0,6,34,38,98,176,-10,166, +Wednesday,5/25/2011 21:00,0,0,8,34,36,98,176,0,176, +Wednesday,5/25/2011 22:00,0,0,6,28,38,98,168,0,168, +Wednesday,5/25/2011 23:00,0,0,10,20,32,98,158,0,158, +Thursday,5/26/2011 0:00,0,0,6,16,30,98,150,0,150, +Thursday,5/26/2011 1:00,0,30,8,10,32,98,176,0,176, +Thursday,5/26/2011 2:00,0,0,6,10,32,96,142,0,142, +Thursday,5/26/2011 3:00,0,0,8,8,30,98,142,0,142, +Thursday,5/26/2011 4:00,0,0,8,6,32,98,142,0,142, +Thursday,5/26/2011 5:00,0,0,6,6,34,98,144,0,144, +Thursday,5/26/2011 6:00,0,30,10,4,30,100,174,-2,172, +Thursday,5/26/2011 7:00,0,118,26,10,40,96,290,-20,270, +Thursday,5/26/2011 8:00,4,30,24,30,46,98,232,-82,150, +Thursday,5/26/2011 9:00,0,58,26,40,56,98,276,-90,186, +Thursday,5/26/2011 10:00,0,0,28,42,62,98,230,-150,80, +Thursday,5/26/2011 11:00,0,0,30,40,64,100,232,-200,32, +Thursday,5/26/2011 12:00,0,60,30,36,54,98,280,-264,16, +Thursday,5/26/2011 13:00,4,0,30,34,64,106,238,-280,-42, +Thursday,5/26/2011 14:00,0,0,34,38,60,104,236,-274,-38, +Thursday,5/26/2011 15:00,4,0,30,36,60,106,238,-224,14, +Thursday,5/26/2011 16:00,0,0,30,42,56,106,234,-86,148, +Thursday,5/26/2011 17:00,4,0,30,42,50,106,234,-68,166, +Thursday,5/26/2011 18:00,0,0,30,44,40,102,218,-68,150, +Thursday,5/26/2011 19:00,0,0,10,22,36,102,170,-56,114, +Thursday,5/26/2011 20:00,0,0,8,22,34,102,168,-16,152, +Thursday,5/26/2011 21:00,0,0,8,20,38,102,168,0,168, +Thursday,5/26/2011 22:00,0,0,6,20,34,98,158,0,158, +Thursday,5/26/2011 23:00,0,0,6,12,32,100,150,0,150, +Friday,5/27/2011 0:00,0,0,6,8,32,100,146,0,146, +Friday,5/27/2011 1:00,0,0,6,10,32,98,144,0,144, +Friday,5/27/2011 2:00,4,0,8,10,34,98,152,0,152, +Friday,5/27/2011 3:00,0,0,8,8,30,98,144,0,144, +Friday,5/27/2011 4:00,0,0,8,4,32,98,142,0,142, +Friday,5/27/2011 5:00,0,0,6,4,30,98,140,0,140, +Friday,5/27/2011 6:00,0,30,10,6,34,96,174,0,174, +Friday,5/27/2011 7:00,0,88,24,12,38,98,260,-18,242, +Friday,5/27/2011 8:00,0,88,24,34,42,98,286,-102,184, +Friday,5/27/2011 9:00,0,0,26,44,52,98,220,-170,50, +Friday,5/27/2011 10:00,0,0,26,44,52,100,222,-196,26, +Friday,5/27/2011 11:00,0,30,28,40,58,100,252,-284,-32, +Friday,5/27/2011 12:00,0,0,28,36,54,102,220,-312,-92, +Friday,5/27/2011 13:00,0,0,28,36,52,102,218,-326,-108, +Friday,5/27/2011 14:00,0,0,30,36,50,104,218,-320,-102, +Friday,5/27/2011 15:00,0,0,30,38,50,104,224,-242,-18, +Friday,5/27/2011 16:00,0,0,30,40,48,104,220,-124,96, +Friday,5/27/2011 17:00,0,0,32,38,38,104,212,-156,56, +Friday,5/27/2011 18:00,0,0,30,40,36,102,210,-80,130, +Friday,5/27/2011 19:00,0,0,10,22,34,102,168,-56,112, +Friday,5/27/2011 20:00,0,0,10,24,32,96,162,-12,150, +Friday,5/27/2011 21:00,0,0,8,18,32,102,158,0,158, +Friday,5/27/2011 22:00,0,0,8,18,30,96,152,0,152, +Friday,5/27/2011 23:00,0,0,8,12,30,98,148,0,148, +Saturday,5/28/2011 0:00,0,0,8,8,30,100,148,0,148, +Saturday,5/28/2011 1:00,0,0,8,10,30,98,144,0,144, +Saturday,5/28/2011 2:00,0,0,6,10,30,98,144,0,144, +Saturday,5/28/2011 3:00,0,0,8,10,30,98,144,0,144, +Saturday,5/28/2011 4:00,0,30,8,10,30,98,176,0,176, +Saturday,5/28/2011 5:00,0,0,6,6,30,98,140,0,140, +Saturday,5/28/2011 6:00,0,30,6,12,30,96,174,0,174, +Saturday,5/28/2011 7:00,0,30,10,8,30,98,174,-24,150, +Saturday,5/28/2011 8:00,0,30,8,6,30,96,170,-98,72, +Saturday,5/28/2011 9:00,0,0,6,6,28,98,140,-162,-22, +Saturday,5/28/2011 10:00,0,0,8,4,32,98,140,-240,-100, +Saturday,5/28/2011 11:00,0,0,6,4,30,96,136,-284,-148, +Saturday,5/28/2011 12:00,0,0,8,4,32,98,142,-298,-156, +Saturday,5/28/2011 13:00,0,0,8,4,30,100,140,-290,-150, +Saturday,5/28/2011 14:00,0,0,6,2,30,98,136,-228,-92, +Saturday,5/28/2011 15:00,0,0,6,4,30,102,144,-238,-94, +Saturday,5/28/2011 16:00,0,0,8,6,30,100,144,-162,-18, +Saturday,5/28/2011 17:00,0,0,8,6,30,98,140,-96,44, +Saturday,5/28/2011 18:00,0,0,6,8,30,100,144,-40,104, +Saturday,5/28/2011 19:00,0,0,6,10,30,98,144,-24,120, +Saturday,5/28/2011 20:00,0,30,8,10,30,98,174,0,174, +Saturday,5/28/2011 21:00,0,0,6,8,32,98,142,0,142, +Saturday,5/28/2011 22:00,0,0,6,6,28,96,136,0,136, +Saturday,5/28/2011 23:00,0,30,10,4,28,98,170,0,170, +Sunday,5/29/2011 0:00,4,0,6,6,30,98,144,0,144, +Sunday,5/29/2011 1:00,0,58,8,4,32,98,198,0,198, +Sunday,5/29/2011 2:00,0,0,8,8,30,98,144,0,144, +Sunday,5/29/2011 3:00,4,30,8,6,30,100,176,0,176, +Sunday,5/29/2011 4:00,0,0,6,6,28,100,140,0,140, +Sunday,5/29/2011 5:00,0,30,8,8,30,98,174,0,174, +Sunday,5/29/2011 6:00,0,0,6,4,30,98,138,0,138, +Sunday,5/29/2011 7:00,4,88,8,6,30,96,230,-20,210, +Sunday,5/29/2011 8:00,0,30,10,4,30,100,172,-38,134, +Sunday,5/29/2011 9:00,4,0,8,6,30,98,146,-54,92, +Sunday,5/29/2011 10:00,0,30,10,2,32,98,172,-82,90, +Sunday,5/29/2011 11:00,0,0,10,4,28,100,142,-156,-14, +Sunday,5/29/2011 12:00,0,0,10,2,30,102,144,-250,-106, +Sunday,5/29/2011 13:00,0,0,8,4,30,104,146,-320,-174, +Sunday,5/29/2011 14:00,0,0,6,4,30,100,140,-308,-168, +Sunday,5/29/2011 15:00,0,0,8,4,28,106,146,-300,-154, +Sunday,5/29/2011 16:00,0,0,8,4,30,104,146,-274,-128, +Sunday,5/29/2011 17:00,0,0,10,6,30,106,150,-210,-60, +Sunday,5/29/2011 18:00,0,0,8,6,30,106,150,-126,24, +Sunday,5/29/2011 19:00,0,0,8,6,28,106,146,-34,112, +Sunday,5/29/2011 20:00,0,0,8,6,30,106,150,-16,134, +Sunday,5/29/2011 21:00,0,0,8,4,30,106,148,0,148, +Sunday,5/29/2011 22:00,0,0,8,6,30,102,146,0,146, +Sunday,5/29/2011 23:00,0,0,8,6,28,102,144,0,144, +Monday,5/30/2011 0:00,0,0,8,6,30,102,146,0,146, +Monday,5/30/2011 1:00,0,0,8,6,30,102,146,0,146, +Monday,5/30/2011 2:00,0,0,8,6,28,100,142,0,142, +Monday,5/30/2011 3:00,0,0,8,6,30,104,148,0,148, +Monday,5/30/2011 4:00,0,0,10,4,30,102,148,0,148, +Monday,5/30/2011 5:00,0,0,8,8,30,100,144,0,144, +Monday,5/30/2011 6:00,0,0,10,8,32,98,148,0,148, +Monday,5/30/2011 7:00,2,58,28,6,30,104,226,-24,202, +Monday,5/30/2011 8:00,0,30,28,4,30,98,190,-58,132, +Monday,5/30/2011 9:00,0,0,30,4,30,104,168,-130,38, +Monday,5/30/2011 10:00,0,0,30,4,30,106,172,-222,-50, +Monday,5/30/2011 11:00,4,0,30,4,30,106,172,-288,-116, +Monday,5/30/2011 12:00,0,0,30,4,30,104,170,-304,-134, +Monday,5/30/2011 13:00,4,0,28,4,30,102,168,-258,-90, +Monday,5/30/2011 14:00,4,0,30,6,30,104,176,-228,-52, +Monday,5/30/2011 15:00,0,0,30,4,30,100,162,-218,-56, +Monday,5/30/2011 16:00,0,0,30,6,30,102,168,-300,-132, +Monday,5/30/2011 17:00,0,0,30,6,30,98,164,-246,-82, +Monday,5/30/2011 18:00,0,0,30,6,30,100,166,-164,2, +Monday,5/30/2011 19:00,0,0,8,6,30,96,140,-68,72, +Monday,5/30/2011 20:00,0,30,8,8,30,96,170,-8,162, +Monday,5/30/2011 21:00,0,0,10,10,30,96,144,0,144, +Monday,5/30/2011 22:00,0,30,8,8,30,98,172,0,172, +Monday,5/30/2011 23:00,0,58,8,8,30,96,202,0,202, +Tuesday,5/31/2011 0:00,0,60,6,6,30,98,198,0,198, +Tuesday,5/31/2011 1:00,0,30,8,6,30,96,168,0,168, +Tuesday,5/31/2011 2:00,0,88,6,6,32,96,228,0,228, +Tuesday,5/31/2011 3:00,0,30,8,8,30,96,172,0,172, +Tuesday,5/31/2011 4:00,0,58,8,6,26,96,194,0,194, +Tuesday,5/31/2011 5:00,0,60,8,6,34,96,202,0,202, +Tuesday,5/31/2011 6:00,0,88,10,8,32,96,234,0,234, +Tuesday,5/31/2011 7:00,0,146,24,16,38,98,322,-22,300, +Tuesday,5/31/2011 8:00,0,58,28,32,48,96,260,-104,156, +Tuesday,5/31/2011 9:00,0,30,32,42,62,98,262,-188,74, +Tuesday,5/31/2011 10:00,0,0,26,44,64,96,230,-260,-30, +Tuesday,5/31/2011 11:00,0,0,28,40,66,100,232,-302,-70, +Tuesday,5/31/2011 12:00,0,0,32,38,66,100,236,-316,-80, +Tuesday,5/31/2011 13:00,0,0,32,36,64,104,236,-322,-86, +Tuesday,5/31/2011 14:00,0,0,34,38,60,100,232,-318,-86, +Tuesday,5/31/2011 15:00,0,0,30,40,62,104,238,-304,-66, +Tuesday,5/31/2011 16:00,0,0,32,42,58,106,236,-278,-42, +Tuesday,5/31/2011 17:00,2,0,32,42,48,106,232,-222,10, +Tuesday,5/31/2011 18:00,0,0,30,48,42,106,226,-146,80, +Tuesday,5/31/2011 19:00,0,0,14,24,38,106,182,-60,122, +Tuesday,5/31/2011 20:00,0,60,12,28,34,100,232,-10,222, +Tuesday,5/31/2011 21:00,0,0,6,28,36,100,168,0,168, +Tuesday,5/31/2011 22:00,0,0,4,24,32,98,158,0,158, +Tuesday,5/31/2011 23:00,0,0,8,14,32,98,152,0,152, +Wednesday,06/01/2011 00:00,0,0,6,8,30,98,144,0,144, +Wednesday,06/01/2011 01:00,0,0,8,6,32,98,144,0,144, +Wednesday,06/01/2011 02:00,0,0,10,4,30,102,146,0,146, +Wednesday,06/01/2011 03:00,0,0,8,4,32,100,142,0,142, +Wednesday,06/01/2011 04:00,0,0,8,2,32,98,142,0,142, +Wednesday,06/01/2011 05:00,0,0,6,2,32,98,140,0,140, +Wednesday,06/01/2011 06:00,0,0,10,4,38,100,150,0,150, +Wednesday,06/01/2011 07:00,0,30,26,18,36,96,204,-12,192, +Wednesday,06/01/2011 08:00,0,0,28,32,46,100,206,-32,174, +Wednesday,06/01/2011 09:00,0,0,28,40,60,102,228,-128,100, +Wednesday,06/01/2011 10:00,0,0,30,40,66,106,242,-214,28, +Wednesday,06/01/2011 11:00,0,0,30,40,66,106,242,-156,86, +Wednesday,06/01/2011 12:00,0,0,30,40,62,106,238,-182,56, +Wednesday,06/01/2011 13:00,2,0,34,38,66,106,248,-200,48, +Wednesday,06/01/2011 14:00,6,0,30,38,60,106,242,-200,42, +Wednesday,06/01/2011 15:00,10,30,32,42,60,106,278,-186,92, +Wednesday,06/01/2011 16:00,12,30,34,44,58,108,286,-124,162, +Wednesday,06/01/2011 17:00,16,30,34,48,52,106,286,-58,228, +Wednesday,06/01/2011 18:00,14,58,32,48,42,104,298,-58,240, +Wednesday,06/01/2011 19:00,4,0,14,24,36,108,184,-34,150, +Wednesday,06/01/2011 20:00,4,0,12,28,36,104,184,-14,170, +Wednesday,06/01/2011 21:00,0,0,6,30,36,104,176,0,176, +Wednesday,06/01/2011 22:00,0,0,6,16,34,104,160,0,160, +Wednesday,06/01/2011 23:00,0,0,6,10,32,104,150,0,150, +Thursday,06/02/2011 00:00,0,0,6,6,32,102,146,0,146, +Thursday,06/02/2011 01:00,0,0,6,8,30,100,142,0,142, +Thursday,06/02/2011 02:00,0,0,8,6,30,102,148,0,148, +Thursday,06/02/2011 03:00,0,0,4,6,34,102,146,0,146, +Thursday,06/02/2011 04:00,0,0,4,4,32,98,138,0,138, +Thursday,06/02/2011 05:00,0,0,4,4,32,100,142,0,142, +Thursday,06/02/2011 06:00,0,0,8,8,34,102,150,0,150, +Thursday,06/02/2011 07:00,0,0,28,16,40,102,186,-20,166, +Thursday,06/02/2011 08:00,0,0,34,36,48,106,222,-44,178, +Thursday,06/02/2011 09:00,0,0,30,44,60,106,240,-118,122, +Thursday,06/02/2011 10:00,2,0,32,40,64,106,244,-178,66, +Thursday,06/02/2011 11:00,2,0,32,40,62,106,242,-252,-10, +Thursday,06/02/2011 12:00,4,0,32,38,64,106,246,-286,-40, +Thursday,06/02/2011 13:00,8,0,34,32,64,106,246,-310,-64, +Thursday,06/02/2011 14:00,14,0,32,34,60,108,250,-308,-58, +Thursday,06/02/2011 15:00,22,0,34,40,58,106,260,-296,-36, +Thursday,06/02/2011 16:00,22,30,38,42,58,108,296,-250,46, +Thursday,06/02/2011 17:00,22,0,34,44,48,108,254,-236,18, +Thursday,06/02/2011 18:00,18,30,34,48,42,106,278,-156,122, +Thursday,06/02/2011 19:00,16,0,12,22,32,108,190,-64,126, +Thursday,06/02/2011 20:00,6,0,12,18,36,106,178,-12,166, +Thursday,06/02/2011 21:00,2,0,6,18,36,106,168,0,168, +Thursday,06/02/2011 22:00,0,30,4,18,30,106,186,0,186, +Thursday,06/02/2011 23:00,0,30,4,10,34,102,178,0,178, +Friday,06/03/2011 00:00,0,0,2,8,32,98,142,0,142, +Friday,06/03/2011 01:00,0,0,4,6,32,98,140,0,140, +Friday,06/03/2011 02:00,0,0,4,6,30,100,138,0,138, +Friday,06/03/2011 03:00,0,0,4,6,32,102,146,0,146, +Friday,06/03/2011 04:00,0,0,8,4,32,98,142,0,142, +Friday,06/03/2011 05:00,0,0,6,6,30,98,140,0,140, +Friday,06/03/2011 06:00,0,0,6,6,34,98,144,0,144, +Friday,06/03/2011 07:00,0,0,26,12,36,100,176,-24,152, +Friday,06/03/2011 08:00,0,0,28,26,44,102,200,-100,100, +Friday,06/03/2011 09:00,4,0,30,34,54,106,226,-186,40, +Friday,06/03/2011 10:00,0,0,32,38,60,100,230,-254,-24, +Friday,06/03/2011 11:00,0,0,30,36,60,106,232,-296,-64, +Friday,06/03/2011 12:00,0,0,30,32,56,106,226,-316,-90, +Friday,06/03/2011 13:00,4,0,32,30,58,106,230,-322,-92, +Friday,06/03/2011 14:00,4,0,32,32,56,106,230,-318,-88, +Friday,06/03/2011 15:00,6,0,30,32,52,106,228,-272,-44, +Friday,06/03/2011 16:00,6,30,30,32,52,106,258,-112,146, +Friday,06/03/2011 17:00,4,30,32,34,46,106,250,-76,174, +Friday,06/03/2011 18:00,6,30,32,40,40,106,254,-48,206, +Friday,06/03/2011 19:00,4,30,10,28,38,106,214,-26,188, +Friday,06/03/2011 20:00,0,0,12,34,32,102,180,-14,166, +Friday,06/03/2011 21:00,0,0,6,22,36,104,170,0,170, +Friday,06/03/2011 22:00,0,0,6,14,30,102,152,0,152, +Friday,06/03/2011 23:00,0,0,4,10,30,100,144,0,144, +Saturday,06/04/2011 00:00,0,0,6,6,30,98,140,0,140, +Saturday,06/04/2011 01:00,0,0,6,6,30,98,142,0,142, +Saturday,06/04/2011 02:00,0,0,6,8,30,102,146,0,146, +Saturday,06/04/2011 03:00,0,0,6,4,28,100,136,0,136, +Saturday,06/04/2011 04:00,0,0,4,8,30,100,142,0,142, +Saturday,06/04/2011 05:00,0,0,6,6,30,98,140,0,140, +Saturday,06/04/2011 06:00,0,0,6,8,32,98,144,0,144, +Saturday,06/04/2011 07:00,0,0,6,8,30,102,144,-16,128, +Saturday,06/04/2011 08:00,0,0,6,6,28,98,138,-60,78, +Saturday,06/04/2011 09:00,0,0,6,4,30,100,140,-132,8, +Saturday,06/04/2011 10:00,0,0,4,6,30,100,142,-214,-72, +Saturday,06/04/2011 11:00,0,0,8,6,30,98,142,-266,-124, +Saturday,06/04/2011 12:00,0,0,6,4,26,102,138,-296,-158, +Saturday,06/04/2011 13:00,2,0,6,8,28,106,152,-306,-154, +Saturday,06/04/2011 14:00,2,0,6,8,28,106,150,-288,-138, +Saturday,06/04/2011 15:00,6,0,8,6,28,106,154,-280,-126, +Saturday,06/04/2011 16:00,6,0,6,10,30,106,158,-232,-74, +Saturday,06/04/2011 17:00,2,0,8,8,28,106,152,-196,-44, +Saturday,06/04/2011 18:00,2,0,10,8,28,106,154,-128,26, +Saturday,06/04/2011 19:00,2,0,10,8,28,106,154,-44,110, +Saturday,06/04/2011 20:00,6,0,8,10,30,106,160,-16,144, +Saturday,06/04/2011 21:00,0,0,8,10,28,106,154,0,154, +Saturday,06/04/2011 22:00,0,0,8,10,30,104,154,0,154, +Saturday,06/04/2011 23:00,0,0,6,10,30,106,150,0,150, +Sunday,06/05/2011 00:00,0,0,8,8,28,106,150,0,150, +Sunday,06/05/2011 01:00,0,0,6,8,30,102,148,0,148, +Sunday,06/05/2011 02:00,0,0,8,10,28,102,148,0,148, +Sunday,06/05/2011 03:00,0,0,6,8,30,104,148,0,148, +Sunday,06/05/2011 04:00,0,0,6,6,30,102,144,0,144, +Sunday,06/05/2011 05:00,0,0,6,6,30,98,140,0,140, +Sunday,06/05/2011 06:00,0,0,6,6,28,102,140,0,140, +Sunday,06/05/2011 07:00,0,0,6,8,30,102,146,-22,124, +Sunday,06/05/2011 08:00,0,0,8,4,28,100,140,-82,58, +Sunday,06/05/2011 09:00,0,0,8,4,30,104,144,-150,-6, +Sunday,06/05/2011 10:00,2,0,8,8,30,108,154,-206,-52, +Sunday,06/05/2011 11:00,2,0,8,8,30,108,154,-254,-100, +Sunday,06/05/2011 12:00,2,0,8,8,30,106,154,-290,-136, +Sunday,06/05/2011 13:00,4,0,8,6,30,108,156,-290,-134, +Sunday,06/05/2011 14:00,4,0,6,6,28,108,152,-296,-144, +Sunday,06/05/2011 15:00,4,0,6,8,30,106,156,-222,-66, +Sunday,06/05/2011 16:00,8,0,8,6,28,108,158,-194,-36, +Sunday,06/05/2011 17:00,8,0,4,8,30,108,158,-160,-2, +Sunday,06/05/2011 18:00,8,0,10,6,28,106,158,-90,68, +Sunday,06/05/2011 19:00,6,0,8,8,30,108,160,-58,102, +Sunday,06/05/2011 20:00,2,0,6,10,28,106,152,-30,122, +Sunday,06/05/2011 21:00,2,0,8,10,30,106,158,0,158, +Sunday,06/05/2011 22:00,2,0,4,10,30,106,154,0,154, +Sunday,06/05/2011 23:00,0,30,6,8,28,102,174,0,174, +Monday,06/06/2011 00:00,0,0,6,8,30,106,148,0,148, +Monday,06/06/2011 01:00,0,0,6,8,32,100,146,0,146, +Monday,06/06/2011 02:00,0,0,6,6,30,104,144,0,144, +Monday,06/06/2011 03:00,0,0,6,4,30,98,138,0,138, +Monday,06/06/2011 04:00,0,0,6,4,30,102,142,0,142, +Monday,06/06/2011 05:00,0,0,4,4,32,102,144,0,144, +Monday,06/06/2011 06:00,0,0,8,8,30,98,144,0,144, +Monday,06/06/2011 07:00,0,0,30,22,38,106,194,-24,170, +Monday,06/06/2011 08:00,2,0,30,34,48,108,222,-84,138, +Monday,06/06/2011 09:00,6,0,32,36,60,106,240,-164,76, +Monday,06/06/2011 10:00,20,0,32,40,66,108,266,-222,44, +Monday,06/06/2011 11:00,22,0,34,38,62,108,264,-274,-10, +Monday,06/06/2011 12:00,28,0,32,34,70,106,270,-312,-42, +Monday,06/06/2011 13:00,28,30,32,36,68,108,302,-204,98, +Monday,06/06/2011 14:00,32,30,36,38,66,106,308,-206,102, +Monday,06/06/2011 15:00,28,0,38,38,64,106,274,-208,66, +Monday,06/06/2011 16:00,32,30,34,40,58,106,298,-166,132, +Monday,06/06/2011 17:00,26,0,34,36,54,106,256,-140,116, +Monday,06/06/2011 18:00,26,30,34,38,40,106,272,-102,170, +Monday,06/06/2011 19:00,18,0,12,16,38,106,192,-54,138, +Monday,06/06/2011 20:00,16,0,14,22,34,106,192,-18,174, +Monday,06/06/2011 21:00,6,0,6,28,36,106,182,0,182, +Monday,06/06/2011 22:00,2,0,2,20,34,106,164,0,164, +Monday,06/06/2011 23:00,0,30,4,10,32,100,178,0,178, +Tuesday,06/07/2011 00:00,0,0,4,8,32,100,144,0,144, +Tuesday,06/07/2011 01:00,0,0,4,6,34,96,142,0,142, +Tuesday,06/07/2011 02:00,0,0,4,8,32,98,142,0,142, +Tuesday,06/07/2011 03:00,0,0,6,6,30,102,142,0,142, +Tuesday,06/07/2011 04:00,0,0,6,6,32,96,140,0,140, +Tuesday,06/07/2011 05:00,0,0,4,6,32,98,142,0,142, +Tuesday,06/07/2011 06:00,0,0,8,8,34,100,150,0,150, +Tuesday,06/07/2011 07:00,0,0,26,14,40,100,180,-24,156, +Tuesday,06/07/2011 08:00,0,0,28,30,44,104,206,-98,108, +Tuesday,06/07/2011 09:00,6,0,32,40,62,104,244,-180,64, +Tuesday,06/07/2011 10:00,10,0,30,42,62,106,250,-244,6, +Tuesday,06/07/2011 11:00,8,30,32,42,64,104,282,-290,-8, +Tuesday,06/07/2011 12:00,12,0,34,38,68,106,258,-308,-50, +Tuesday,06/07/2011 13:00,16,30,32,38,66,106,284,-320,-36, +Tuesday,06/07/2011 14:00,18,0,34,38,64,106,262,-316,-54, +Tuesday,06/07/2011 15:00,18,30,32,40,60,106,286,-302,-16, +Tuesday,06/07/2011 16:00,22,0,32,40,58,106,260,-276,-16, +Tuesday,06/07/2011 17:00,22,30,32,42,54,108,286,-218,68, +Tuesday,06/07/2011 18:00,22,0,32,44,40,106,246,-152,94, +Tuesday,06/07/2011 19:00,18,0,16,20,36,106,194,-68,126, +Tuesday,06/07/2011 20:00,12,0,12,24,36,106,192,-10,182, +Tuesday,06/07/2011 21:00,6,0,4,28,36,108,182,0,182, +Tuesday,06/07/2011 22:00,0,30,4,20,32,106,192,0,192, +Tuesday,06/07/2011 23:00,0,0,4,14,36,100,156,0,156, +Wednesday,06/08/2011 00:00,0,0,4,8,34,98,144,0,144, +Wednesday,06/08/2011 01:00,0,0,2,8,32,98,140,0,140, +Wednesday,06/08/2011 02:00,0,0,6,8,32,98,142,0,142, +Wednesday,06/08/2011 03:00,0,0,4,10,32,104,150,0,150, +Wednesday,06/08/2011 04:00,0,0,6,8,32,98,142,0,142, +Wednesday,06/08/2011 05:00,0,0,6,10,32,98,146,0,146, +Wednesday,06/08/2011 06:00,0,0,6,6,34,98,144,0,144, +Wednesday,06/08/2011 07:00,0,0,28,14,42,100,186,-22,164, +Wednesday,06/08/2011 08:00,0,0,26,30,48,102,204,-98,106, +Wednesday,06/08/2011 09:00,8,0,30,46,60,104,250,-180,70, +Wednesday,06/08/2011 10:00,8,0,30,48,66,104,254,-248,6, +Wednesday,06/08/2011 11:00,10,0,30,44,62,106,254,-290,-36, +Wednesday,06/08/2011 12:00,10,0,30,44,68,104,256,-316,-60, +Wednesday,06/08/2011 13:00,10,0,34,40,64,106,256,-320,-64, +Wednesday,06/08/2011 14:00,14,0,30,40,64,106,256,-270,-14, +Wednesday,06/08/2011 15:00,14,0,32,46,60,106,258,-126,132, +Wednesday,06/08/2011 16:00,16,30,30,44,60,106,288,-78,210, +Wednesday,06/08/2011 17:00,16,0,30,46,50,106,250,-100,150, +Wednesday,06/08/2011 18:00,16,30,30,48,40,106,272,-70,202, +Wednesday,06/08/2011 19:00,6,0,14,26,36,106,188,-12,176, +Wednesday,06/08/2011 20:00,4,0,12,32,40,106,194,-6,188, +Wednesday,06/08/2011 21:00,0,30,6,30,34,104,204,0,204, +Wednesday,06/08/2011 22:00,0,0,4,20,32,106,162,0,162, +Wednesday,06/08/2011 23:00,0,0,6,10,32,102,150,0,150, +Thursday,06/09/2011 00:00,0,30,6,8,32,102,178,0,178, +Thursday,06/09/2011 01:00,0,0,4,6,30,106,148,0,148, +Thursday,06/09/2011 02:00,0,30,6,6,32,102,176,0,176, +Thursday,06/09/2011 03:00,0,0,6,4,30,104,146,0,146, +Thursday,06/09/2011 04:00,4,30,6,6,34,98,176,0,176, +Thursday,06/09/2011 05:00,0,0,8,6,32,98,142,0,142, +Thursday,06/09/2011 06:00,4,30,10,8,32,100,182,0,182, +Thursday,06/09/2011 07:00,4,30,26,18,42,100,218,-2,216, +Thursday,06/09/2011 08:00,4,30,28,36,46,100,240,-18,222, +Thursday,06/09/2011 09:00,0,30,30,52,62,100,274,-24,250, +Thursday,06/09/2011 10:00,0,30,30,58,62,100,278,-56,222, +Thursday,06/09/2011 11:00,0,30,34,50,66,106,284,-112,172, +Thursday,06/09/2011 12:00,4,30,30,58,68,106,296,-60,236, +Thursday,06/09/2011 13:00,4,58,30,52,64,104,314,-100,214, +Thursday,06/09/2011 14:00,8,30,32,50,62,106,288,-130,158, +Thursday,06/09/2011 15:00,10,60,32,44,62,104,314,-240,74, +Thursday,06/09/2011 16:00,10,30,30,40,60,106,276,-180,96, +Thursday,06/09/2011 17:00,18,30,34,44,52,106,282,-128,154, +Thursday,06/09/2011 18:00,12,60,32,48,42,104,296,-72,224, +Thursday,06/09/2011 19:00,4,0,14,20,36,106,180,-48,132, +Thursday,06/09/2011 20:00,2,0,16,16,34,104,172,-16,156, +Thursday,06/09/2011 21:00,0,30,8,20,34,102,192,0,192, +Thursday,06/09/2011 22:00,0,0,6,20,32,102,162,0,162, +Thursday,06/09/2011 23:00,0,30,8,12,32,102,182,0,182, +Friday,06/10/2011 00:00,0,0,6,6,30,98,140,0,140, +Friday,06/10/2011 01:00,0,30,6,4,32,104,176,0,176, +Friday,06/10/2011 02:00,0,0,6,6,30,102,144,0,144, +Friday,06/10/2011 03:00,0,0,6,6,30,98,142,0,142, +Friday,06/10/2011 04:00,0,30,6,2,30,102,172,0,172, +Friday,06/10/2011 05:00,4,30,4,8,34,100,178,0,178, +Friday,06/10/2011 06:00,0,0,8,6,32,98,144,0,144, +Friday,06/10/2011 07:00,0,58,24,14,40,96,232,-28,204, +Friday,06/10/2011 08:00,0,30,28,30,46,106,240,-58,182, +Friday,06/10/2011 09:00,0,58,28,42,54,100,284,-92,192, +Friday,06/10/2011 10:00,0,30,26,38,58,100,252,-186,66, +Friday,06/10/2011 11:00,0,30,28,40,60,102,258,-268,-10, +Friday,06/10/2011 12:00,0,0,30,40,60,106,236,-314,-78, +Friday,06/10/2011 13:00,4,30,30,38,58,106,264,-320,-56, +Friday,06/10/2011 14:00,6,0,32,38,54,106,236,-320,-84, +Friday,06/10/2011 15:00,10,0,32,40,52,106,238,-304,-66, +Friday,06/10/2011 16:00,10,30,32,40,50,106,266,-284,-18, +Friday,06/10/2011 17:00,14,30,34,40,46,106,266,-188,78, +Friday,06/10/2011 18:00,12,30,32,40,40,106,260,-118,142, +Friday,06/10/2011 19:00,10,0,10,18,36,104,178,-76,102, +Friday,06/10/2011 20:00,4,30,10,18,32,106,202,-20,182, +Friday,06/10/2011 21:00,0,0,6,16,34,106,160,0,160, +Friday,06/10/2011 22:00,0,0,6,12,30,102,150,0,150, +Friday,06/10/2011 23:00,0,0,4,6,30,100,142,0,142, +Saturday,06/11/2011 00:00,0,30,6,6,28,102,170,0,170, +Saturday,06/11/2011 01:00,0,0,4,4,30,96,134,0,134, +Saturday,06/11/2011 02:00,0,30,4,4,30,106,174,0,174, +Saturday,06/11/2011 03:00,0,0,6,4,30,100,138,0,138, +Saturday,06/11/2011 04:00,0,30,6,4,30,100,170,0,170, +Saturday,06/11/2011 05:00,0,0,4,6,30,98,138,0,138, +Saturday,06/11/2011 06:00,0,30,4,8,30,98,172,-2,170, +Saturday,06/11/2011 07:00,0,30,6,4,28,100,168,-26,142, +Saturday,06/11/2011 08:00,0,0,6,6,30,98,140,-92,48, +Saturday,06/11/2011 09:00,0,0,6,0,30,102,138,-142,-4, +Saturday,06/11/2011 10:00,0,0,4,4,30,100,140,-76,64, +Saturday,06/11/2011 11:00,0,30,6,4,30,102,172,-198,-26, +Saturday,06/11/2011 12:00,0,0,6,4,30,106,144,-298,-154, +Saturday,06/11/2011 13:00,0,0,4,4,30,106,146,-130,16, +Saturday,06/11/2011 14:00,0,0,6,8,30,102,146,-148,-2, +Saturday,06/11/2011 15:00,2,0,8,4,30,106,150,-260,-110, +Saturday,06/11/2011 16:00,0,0,6,4,30,102,142,-230,-88, +Saturday,06/11/2011 17:00,0,0,4,4,30,104,142,-212,-70, +Saturday,06/11/2011 18:00,0,0,6,6,30,106,146,-152,-6, +Saturday,06/11/2011 19:00,0,0,6,4,30,106,144,-84,60, +Saturday,06/11/2011 20:00,2,30,6,6,30,106,178,-22,156, +Saturday,06/11/2011 21:00,0,0,8,6,30,106,148,0,148, +Saturday,06/11/2011 22:00,0,30,4,8,28,106,176,0,176, +Saturday,06/11/2011 23:00,0,0,4,8,30,98,142,0,142, +Sunday,06/12/2011 00:00,0,0,6,8,30,102,146,0,146, +Sunday,06/12/2011 01:00,0,0,6,6,30,100,140,0,140, +Sunday,06/12/2011 02:00,0,30,6,6,28,102,172,0,172, +Sunday,06/12/2011 03:00,0,0,6,6,32,98,142,0,142, +Sunday,06/12/2011 04:00,0,30,4,4,30,102,170,0,170, +Sunday,06/12/2011 05:00,0,30,4,6,30,98,166,0,166, +Sunday,06/12/2011 06:00,0,0,6,6,30,98,142,0,142, +Sunday,06/12/2011 07:00,0,30,4,4,28,94,162,-24,138, +Sunday,06/12/2011 08:00,4,0,4,6,30,100,142,-96,46, +Sunday,06/12/2011 09:00,0,0,6,4,32,100,142,-180,-38, +Sunday,06/12/2011 10:00,0,0,4,4,28,100,136,-244,-108, +Sunday,06/12/2011 11:00,0,0,6,4,32,104,144,-286,-142, +Sunday,06/12/2011 12:00,2,30,6,2,30,106,176,-310,-134, +Sunday,06/12/2011 13:00,0,0,6,4,30,108,146,-298,-152, +Sunday,06/12/2011 14:00,4,0,6,4,30,108,154,-160,-6, +Sunday,06/12/2011 15:00,2,0,4,4,30,108,146,-186,-40, +Sunday,06/12/2011 16:00,0,0,6,4,30,108,148,-114,34, +Sunday,06/12/2011 17:00,2,0,6,6,32,108,154,-182,-28, +Sunday,06/12/2011 18:00,2,0,4,6,28,108,146,-146,0, +Sunday,06/12/2011 19:00,0,0,6,6,32,108,152,-90,62, +Sunday,06/12/2011 20:00,4,0,6,6,32,102,148,-22,126, +Sunday,06/12/2011 21:00,6,30,8,10,30,100,182,0,182, +Sunday,06/12/2011 22:00,4,0,4,10,30,98,144,0,144, +Sunday,06/12/2011 23:00,0,0,4,10,30,98,144,0,144, +Monday,6/13/2011 0:00,0,0,6,6,30,98,140,0,140, +Monday,6/13/2011 1:00,0,30,4,6,28,98,164,0,164, +Monday,6/13/2011 2:00,0,0,4,4,30,98,138,0,138, +Monday,6/13/2011 3:00,0,30,4,6,30,100,170,0,170, +Monday,6/13/2011 4:00,0,0,4,4,30,98,138,0,138, +Monday,6/13/2011 5:00,0,0,8,6,30,100,142,0,142, +Monday,6/13/2011 6:00,4,30,6,10,30,98,178,0,178, +Monday,6/13/2011 7:00,4,30,28,26,34,98,218,-14,204, +Monday,6/13/2011 8:00,6,0,28,38,46,100,216,-86,130, +Monday,6/13/2011 9:00,10,0,32,42,56,98,238,-174,64, +Monday,6/13/2011 10:00,12,30,32,42,66,102,284,-238,46, +Monday,6/13/2011 11:00,16,30,30,40,64,102,280,-288,-8, +Monday,6/13/2011 12:00,20,0,32,40,66,98,256,-308,-52, +Monday,6/13/2011 13:00,28,0,32,38,64,98,258,-310,-52, +Monday,6/13/2011 14:00,28,0,32,40,66,100,264,-286,-22, +Monday,6/13/2011 15:00,30,0,32,40,64,98,266,-202,64, +Monday,6/13/2011 16:00,30,0,32,40,56,98,256,-158,98, +Monday,6/13/2011 17:00,34,0,32,40,54,100,262,-116,146, +Monday,6/13/2011 18:00,30,0,30,42,44,98,246,-70,176, +Monday,6/13/2011 19:00,24,0,10,22,36,100,190,-24,166, +Monday,6/13/2011 20:00,18,0,12,24,36,98,188,-12,176, +Monday,6/13/2011 21:00,14,0,4,26,34,98,178,0,178, +Monday,6/13/2011 22:00,14,0,4,18,34,102,170,0,170, +Monday,6/13/2011 23:00,6,0,4,10,30,98,148,0,148, +Tuesday,6/14/2011 0:00,0,0,2,6,34,100,144,0,144, +Tuesday,6/14/2011 1:00,0,0,4,6,30,104,144,0,144, +Tuesday,6/14/2011 2:00,0,0,2,6,30,102,142,0,142, +Tuesday,6/14/2011 3:00,0,0,6,6,32,104,148,0,148, +Tuesday,6/14/2011 4:00,0,0,6,4,32,100,144,0,144, +Tuesday,6/14/2011 5:00,0,0,4,8,32,104,148,0,148, +Tuesday,6/14/2011 6:00,0,0,6,6,34,102,148,0,148, +Tuesday,6/14/2011 7:00,6,0,24,14,40,98,180,-28,152, +Tuesday,6/14/2011 8:00,6,0,26,30,50,100,212,-98,114, +Tuesday,6/14/2011 9:00,8,0,28,42,60,102,238,-180,58, +Tuesday,6/14/2011 10:00,8,0,30,42,68,102,248,-256,-8, +Tuesday,6/14/2011 11:00,8,0,30,42,66,102,248,-292,-44, +Tuesday,6/14/2011 12:00,12,0,30,40,66,102,248,-322,-74, +Tuesday,6/14/2011 13:00,10,0,30,40,64,100,248,-600,-352, +Tuesday,6/14/2011 14:00,18,0,30,38,68,102,256,-408,-152, +Tuesday,6/14/2011 15:00,18,0,28,40,62,104,252,-314,-62, +Tuesday,6/14/2011 16:00,10,0,30,40,60,104,244,-282,-38, +Tuesday,6/14/2011 17:00,18,0,32,44,54,104,250,-236,14, +Tuesday,6/14/2011 18:00,20,0,30,46,44,102,240,-160,80, +Tuesday,6/14/2011 19:00,12,0,12,22,34,104,186,-42,144, +Tuesday,6/14/2011 20:00,10,0,10,24,36,102,184,-12,172, +Tuesday,6/14/2011 21:00,4,0,4,22,36,102,168,0,168, +Tuesday,6/14/2011 22:00,4,0,4,18,34,100,160,0,160, +Tuesday,6/14/2011 23:00,0,0,2,10,32,100,144,0,144, +Wednesday,6/15/2011 0:00,0,0,4,10,34,98,148,0,148, +Wednesday,6/15/2011 1:00,4,0,2,10,32,100,146,0,146, +Wednesday,6/15/2011 2:00,0,0,6,8,32,100,146,0,146, +Wednesday,6/15/2011 3:00,0,0,4,8,32,100,142,0,142, +Wednesday,6/15/2011 4:00,0,0,2,6,34,100,142,0,142, +Wednesday,6/15/2011 5:00,0,0,4,10,32,100,146,0,146, +Wednesday,6/15/2011 6:00,0,0,8,10,34,100,152,0,152, +Wednesday,6/15/2011 7:00,4,0,24,16,40,98,182,-24,158, +Wednesday,6/15/2011 8:00,6,0,24,30,48,98,206,-94,112, +Wednesday,6/15/2011 9:00,0,0,26,40,60,106,232,-180,52, +Wednesday,6/15/2011 10:00,0,0,28,44,68,106,246,-306,-60, +Wednesday,6/15/2011 11:00,2,0,30,40,60,106,240,-470,-230, +Wednesday,6/15/2011 12:00,6,0,30,40,66,108,250,-460,-210, +Wednesday,6/15/2011 13:00,12,0,30,40,62,108,254,-314,-60, +Wednesday,6/15/2011 14:00,12,0,30,40,62,108,252,-310,-58, +Wednesday,6/15/2011 15:00,16,0,30,40,64,108,260,-300,-40, +Wednesday,6/15/2011 16:00,12,0,30,42,60,110,250,-402,-152, +Wednesday,6/15/2011 17:00,22,0,34,42,54,108,260,-328,-68, +Wednesday,6/15/2011 18:00,22,0,30,44,44,106,248,-156,92, +Wednesday,6/15/2011 19:00,18,0,10,24,40,106,200,-72,128, +Wednesday,6/15/2011 20:00,20,0,10,22,36,106,196,-16,180, +Wednesday,6/15/2011 21:00,12,0,4,24,38,106,186,0,186, +Wednesday,6/15/2011 22:00,4,0,4,22,32,106,170,0,170, +Wednesday,6/15/2011 23:00,0,0,2,14,32,106,154,0,154, +Thursday,6/16/2011 0:00,0,0,0,10,34,100,144,0,144, +Thursday,6/16/2011 1:00,0,0,6,8,34,102,150,0,150, +Thursday,6/16/2011 2:00,0,0,2,8,32,100,142,0,142, +Thursday,6/16/2011 3:00,0,0,4,6,30,104,142,0,142, +Thursday,6/16/2011 4:00,0,0,4,4,34,100,142,0,142, +Thursday,6/16/2011 5:00,0,0,2,6,32,100,142,0,142, +Thursday,6/16/2011 6:00,0,0,6,8,34,102,148,0,148, +Thursday,6/16/2011 7:00,0,0,28,18,42,104,192,-22,170, +Thursday,6/16/2011 8:00,0,0,24,32,46,106,208,-90,118, +Thursday,6/16/2011 9:00,6,0,28,46,64,106,252,-170,82, +Thursday,6/16/2011 10:00,10,0,30,46,62,108,256,-520,-264, +Thursday,6/16/2011 11:00,10,0,34,42,64,108,256,-336,-80, +Thursday,6/16/2011 12:00,12,0,30,40,64,108,254,-428,-174, +Thursday,6/16/2011 13:00,18,0,34,38,62,108,260,-338,-78, +Thursday,6/16/2011 14:00,18,0,34,42,60,108,264,-388,-124, +Thursday,6/16/2011 15:00,22,0,34,40,62,106,266,-410,-144, +Thursday,6/16/2011 16:00,22,0,32,46,54,108,262,-180,82, +Thursday,6/16/2011 17:00,22,0,32,48,50,108,260,-136,124, +Thursday,6/16/2011 18:00,18,0,32,44,40,108,244,-166,78, +Thursday,6/16/2011 19:00,12,0,10,24,36,108,192,-62,130, +Thursday,6/16/2011 20:00,10,0,10,22,36,106,184,-12,172, +Thursday,6/16/2011 21:00,4,0,6,24,34,106,174,0,174, +Thursday,6/16/2011 22:00,0,0,4,20,34,106,164,0,164, +Thursday,6/16/2011 23:00,0,0,4,10,32,104,148,0,148, +Friday,6/17/2011 0:00,0,0,4,10,32,102,148,0,148, +Friday,6/17/2011 1:00,0,0,4,8,32,106,152,0,152, +Friday,6/17/2011 2:00,0,0,4,10,30,102,146,0,146, +Friday,6/17/2011 3:00,0,0,6,8,32,104,150,0,150, +Friday,6/17/2011 4:00,0,0,4,4,30,102,142,0,142, +Friday,6/17/2011 5:00,0,0,4,6,32,102,144,0,144, +Friday,6/17/2011 6:00,0,0,6,8,32,104,148,-2,146, +Friday,6/17/2011 7:00,0,0,26,14,40,102,180,-46,134, +Friday,6/17/2011 8:00,0,0,26,32,46,106,210,-234,-24, +Friday,6/17/2011 9:00,0,0,28,44,56,106,234,-416,-182, +Friday,6/17/2011 10:00,0,0,30,44,62,106,244,-528,-284, +Friday,6/17/2011 11:00,4,0,30,40,60,106,240,-460,-220, +Friday,6/17/2011 12:00,4,0,32,50,60,106,252,-170,82, +Friday,6/17/2011 13:00,4,0,32,42,58,106,242,-276,-34, +Friday,6/17/2011 14:00,6,0,30,40,54,106,238,-242,-4, +Friday,6/17/2011 15:00,6,0,32,38,52,106,236,-236,0, +Friday,6/17/2011 16:00,6,0,30,40,50,104,234,-110,124, +Friday,6/17/2011 17:00,6,0,30,38,44,108,224,-208,16, +Friday,6/17/2011 18:00,6,0,28,40,40,106,220,-120,100, +Friday,6/17/2011 19:00,6,0,12,22,36,106,182,-48,134, +Friday,6/17/2011 20:00,0,0,10,22,34,106,172,-8,164, +Friday,6/17/2011 21:00,0,0,6,24,32,104,168,0,168, +Friday,6/17/2011 22:00,0,0,4,20,30,104,158,0,158, +Friday,6/17/2011 23:00,0,0,6,10,32,104,152,0,152, +Saturday,6/18/2011 0:00,0,0,4,8,30,104,148,0,148, +Saturday,6/18/2011 1:00,0,0,4,6,30,102,144,0,144, +Saturday,6/18/2011 2:00,0,0,4,6,30,100,138,0,138, +Saturday,6/18/2011 3:00,0,0,6,4,30,104,144,0,144, +Saturday,6/18/2011 4:00,0,0,6,4,30,98,138,0,138, +Saturday,6/18/2011 5:00,0,0,4,6,30,104,146,0,146, +Saturday,6/18/2011 6:00,0,0,4,6,30,102,144,0,144, +Saturday,6/18/2011 7:00,0,0,4,6,30,100,140,-14,126, +Saturday,6/18/2011 8:00,0,0,4,6,32,98,140,-96,44, +Saturday,6/18/2011 9:00,0,0,4,8,30,100,142,-192,-50, +Saturday,6/18/2011 10:00,0,0,4,10,32,98,142,-248,-106, +Saturday,6/18/2011 11:00,0,0,4,6,32,102,144,-528,-384, +Saturday,6/18/2011 12:00,0,0,2,8,34,106,148,-692,-544, +Saturday,6/18/2011 13:00,2,0,8,6,30,110,154,-488,-334, +Saturday,6/18/2011 14:00,2,0,2,4,30,106,146,-258,-112, +Saturday,6/18/2011 15:00,2,0,6,4,30,108,150,-180,-30, +Saturday,6/18/2011 16:00,0,0,4,6,30,106,146,-158,-12, +Saturday,6/18/2011 17:00,0,0,4,4,30,106,146,-110,36, +Saturday,6/18/2011 18:00,0,0,4,8,30,106,146,-70,76, +Saturday,6/18/2011 19:00,0,0,2,6,30,102,140,-44,96, +Saturday,6/18/2011 20:00,0,0,4,4,30,104,142,-16,126, +Saturday,6/18/2011 21:00,0,0,2,8,30,102,142,0,142, +Saturday,6/18/2011 22:00,0,0,4,8,30,102,142,0,142, +Saturday,6/18/2011 23:00,0,0,2,8,30,100,142,0,142, +Sunday,6/19/2011 0:00,0,0,6,6,30,104,146,0,146, +Sunday,6/19/2011 1:00,0,0,4,10,28,98,140,0,140, +Sunday,6/19/2011 2:00,0,0,4,4,30,102,142,0,142, +Sunday,6/19/2011 3:00,0,0,2,4,30,100,138,0,138, +Sunday,6/19/2011 4:00,0,0,4,4,28,102,138,0,138, +Sunday,6/19/2011 5:00,0,0,2,4,30,98,134,0,134, +Sunday,6/19/2011 6:00,0,0,4,4,30,98,134,0,134, +Sunday,6/19/2011 7:00,0,0,6,2,30,98,136,-12,124, +Sunday,6/19/2011 8:00,0,0,4,4,30,104,140,-54,86, +Sunday,6/19/2011 9:00,0,0,4,2,30,98,134,-122,12, +Sunday,6/19/2011 10:00,0,0,4,2,30,102,138,-240,-102, +Sunday,6/19/2011 11:00,0,0,4,4,30,102,140,-280,-140, +Sunday,6/19/2011 12:00,4,0,6,2,28,108,146,-294,-148, +Sunday,6/19/2011 13:00,4,0,6,4,30,104,146,-94,52, +Sunday,6/19/2011 14:00,0,0,4,4,30,108,146,-84,62, +Sunday,6/19/2011 15:00,0,0,6,4,30,106,146,-82,64, +Sunday,6/19/2011 16:00,0,0,4,4,30,106,144,-128,16, +Sunday,6/19/2011 17:00,0,0,4,4,30,106,144,-86,58, +Sunday,6/19/2011 18:00,0,0,4,8,30,106,148,-40,108, +Sunday,6/19/2011 19:00,0,0,4,2,30,102,140,-12,128, +Sunday,6/19/2011 20:00,0,0,4,4,32,106,148,-20,128, +Sunday,6/19/2011 21:00,2,0,6,4,30,104,148,0,148, +Sunday,6/19/2011 22:00,0,0,4,4,30,104,142,0,142, +Sunday,6/19/2011 23:00,0,0,6,8,30,104,148,0,148, +Monday,6/20/2011 0:00,4,0,4,6,30,100,142,0,142, +Monday,6/20/2011 1:00,4,0,4,4,30,102,144,0,144, +Monday,6/20/2011 2:00,0,0,6,4,32,100,142,0,142, +Monday,6/20/2011 3:00,0,0,4,8,32,100,142,0,142, +Monday,6/20/2011 4:00,4,0,2,6,30,100,142,0,142, +Monday,6/20/2011 5:00,0,0,6,8,30,98,142,0,142, +Monday,6/20/2011 6:00,0,0,6,8,34,98,144,0,144, +Monday,6/20/2011 7:00,0,30,20,26,36,100,212,-2,210, +Monday,6/20/2011 8:00,4,0,20,38,48,98,208,-20,188, +Monday,6/20/2011 9:00,0,0,22,50,60,100,232,-30,202, +Monday,6/20/2011 10:00,0,0,28,58,64,100,252,-28,224, +Monday,6/20/2011 11:00,0,0,26,50,68,104,248,-120,128, +Monday,6/20/2011 12:00,0,0,26,48,64,106,244,-138,106, +Monday,6/20/2011 13:00,0,0,28,44,64,106,244,-180,64, +Monday,6/20/2011 14:00,0,0,26,42,64,106,238,-236,2, +Monday,6/20/2011 15:00,12,0,24,50,62,106,254,-134,120, +Monday,6/20/2011 16:00,8,0,28,58,58,104,254,-200,54, +Monday,6/20/2011 17:00,8,0,26,50,56,106,244,-176,68, +Monday,6/20/2011 18:00,10,0,30,46,40,106,234,-102,132, +Monday,6/20/2011 19:00,0,0,12,24,34,104,176,-48,128, +Monday,6/20/2011 20:00,4,0,10,24,36,106,182,-8,174, +Monday,6/20/2011 21:00,0,0,8,22,36,106,172,-2,170, +Monday,6/20/2011 22:00,0,0,6,20,34,100,158,0,158, +Monday,6/20/2011 23:00,0,0,4,12,34,102,152,0,152, +Tuesday,6/21/2011 0:00,0,0,4,6,30,98,140,0,140, +Tuesday,6/21/2011 1:00,0,0,4,6,32,104,146,0,146, +Tuesday,6/21/2011 2:00,0,0,4,6,30,100,142,0,142, +Tuesday,6/21/2011 3:00,0,0,4,8,32,100,144,0,144, +Tuesday,6/21/2011 4:00,0,0,6,6,32,100,144,0,144, +Tuesday,6/21/2011 5:00,0,0,4,8,30,100,142,0,142, +Tuesday,6/21/2011 6:00,0,0,6,8,30,102,148,0,148, +Tuesday,6/21/2011 7:00,0,0,20,20,42,102,188,-18,170, +Tuesday,6/21/2011 8:00,0,0,20,30,46,102,198,-96,102, +Tuesday,6/21/2011 9:00,0,0,22,40,60,102,226,-186,40, +Tuesday,6/21/2011 10:00,0,0,22,40,64,102,228,-248,-20, +Tuesday,6/21/2011 11:00,0,0,24,40,60,106,232,-300,-68, +Tuesday,6/21/2011 12:00,4,0,28,36,68,106,240,-276,-36, +Tuesday,6/21/2011 13:00,4,0,28,36,66,106,240,-246,-6, +Tuesday,6/21/2011 14:00,2,0,30,38,64,108,244,-150,94, +Tuesday,6/21/2011 15:00,6,0,28,38,60,106,236,-210,26, +Tuesday,6/21/2011 16:00,6,0,28,44,60,108,246,-144,102, +Tuesday,6/21/2011 17:00,6,0,30,42,50,106,232,-130,102, +Tuesday,6/21/2011 18:00,6,0,26,44,42,108,228,-144,84, +Tuesday,6/21/2011 19:00,2,0,12,20,36,106,176,-80,96, +Tuesday,6/21/2011 20:00,0,0,10,20,34,106,168,-14,154, +Tuesday,6/21/2011 21:00,0,0,2,20,34,106,164,0,164, +Tuesday,6/21/2011 22:00,0,0,4,18,30,98,150,0,150, +Tuesday,6/21/2011 23:00,0,0,2,10,32,104,148,0,148, +Wednesday,6/22/2011 0:00,0,0,4,8,32,100,144,0,144, +Wednesday,6/22/2011 1:00,0,0,4,6,30,98,138,0,138, +Wednesday,6/22/2011 2:00,0,0,2,8,34,102,146,0,146, +Wednesday,6/22/2011 3:00,0,0,4,6,32,100,142,0,142, +Wednesday,6/22/2011 4:00,0,0,4,6,30,100,140,0,140, +Wednesday,6/22/2011 5:00,0,0,4,10,32,102,148,0,148, +Wednesday,6/22/2011 6:00,0,0,6,10,34,100,150,0,150, +Wednesday,6/22/2011 7:00,0,0,22,16,40,98,176,-20,156, +Wednesday,6/22/2011 8:00,0,0,22,30,46,104,202,-98,104, +Wednesday,6/22/2011 9:00,0,0,26,40,62,106,236,-180,56, +Wednesday,6/22/2011 10:00,0,0,26,44,64,104,238,-242,-4, +Wednesday,6/22/2011 11:00,2,0,30,44,64,108,248,-526,-278, +Wednesday,6/22/2011 12:00,2,0,30,40,62,108,242,-690,-448, +Wednesday,6/22/2011 13:00,10,0,28,40,64,108,248,-698,-450, +Wednesday,6/22/2011 14:00,12,0,30,40,64,108,252,-694,-442, +Wednesday,6/22/2011 15:00,12,0,34,40,58,108,252,-380,-128, +Wednesday,6/22/2011 16:00,12,0,30,42,58,108,248,-272,-24, +Wednesday,6/22/2011 17:00,16,0,32,42,54,108,252,-220,32, +Wednesday,6/22/2011 18:00,16,0,30,40,44,108,238,-150,88, +Wednesday,6/22/2011 19:00,12,0,10,20,38,108,188,-70,118, +Wednesday,6/22/2011 20:00,12,0,10,22,36,106,188,-12,176, +Wednesday,6/22/2011 21:00,6,0,4,20,36,106,172,0,172, +Wednesday,6/22/2011 22:00,4,0,4,12,34,106,160,0,160, +Wednesday,6/22/2011 23:00,0,0,2,8,32,106,146,0,146, +Thursday,6/23/2011 0:00,0,0,4,6,34,104,148,0,148, +Thursday,6/23/2011 1:00,0,0,4,6,32,104,148,0,148, +Thursday,6/23/2011 2:00,0,0,4,4,30,102,142,0,142, +Thursday,6/23/2011 3:00,0,0,4,6,30,104,144,0,144, +Thursday,6/23/2011 4:00,0,0,4,4,34,100,142,0,142, +Thursday,6/23/2011 5:00,0,0,2,6,36,102,146,0,146, +Thursday,6/23/2011 6:00,0,0,8,8,34,100,150,0,150, +Thursday,6/23/2011 7:00,0,0,28,14,40,106,190,-20,170, +Thursday,6/23/2011 8:00,0,0,26,24,50,102,202,-94,108, +Thursday,6/23/2011 9:00,6,0,28,40,58,108,240,-170,70, +Thursday,6/23/2011 10:00,6,0,30,42,64,106,248,-494,-246, +Thursday,6/23/2011 11:00,12,0,32,42,66,108,262,-624,-362, +Thursday,6/23/2011 12:00,16,0,30,38,66,106,256,-618,-362, +Thursday,6/23/2011 13:00,18,0,32,36,66,108,260,-582,-322, +Thursday,6/23/2011 14:00,18,0,32,36,62,108,258,-504,-246, +Thursday,6/23/2011 15:00,14,0,32,38,62,108,254,-180,74, +Thursday,6/23/2011 16:00,26,0,32,38,58,106,258,-236,22, +Thursday,6/23/2011 17:00,26,0,34,36,52,108,256,-98,158, +Thursday,6/23/2011 18:00,22,0,34,40,44,106,246,-132,114, +Thursday,6/23/2011 19:00,16,0,10,20,34,106,186,-50,136, +Thursday,6/23/2011 20:00,16,0,12,20,36,104,188,-14,174, +Thursday,6/23/2011 21:00,10,0,6,20,34,106,176,0,176, +Thursday,6/23/2011 22:00,4,0,2,16,32,104,160,0,160, +Thursday,6/23/2011 23:00,0,0,4,10,32,104,150,0,150, +Friday,6/24/2011 0:00,0,0,2,10,32,106,150,0,150, +Friday,6/24/2011 1:00,0,0,4,6,34,100,144,0,144, +Friday,6/24/2011 2:00,0,0,2,4,30,102,140,0,140, +Friday,6/24/2011 3:00,0,0,6,6,30,102,144,0,144, +Friday,6/24/2011 4:00,0,0,4,4,34,102,144,0,144, +Friday,6/24/2011 5:00,0,0,4,6,34,100,144,0,144, +Friday,6/24/2011 6:00,0,0,8,8,32,100,148,0,148, +Friday,6/24/2011 7:00,0,0,26,12,38,98,174,-18,156, +Friday,6/24/2011 8:00,0,0,28,20,48,108,204,-90,114, +Friday,6/24/2011 9:00,6,0,30,34,56,104,232,-168,64, +Friday,6/24/2011 10:00,6,0,32,38,60,106,242,-234,8, +Friday,6/24/2011 11:00,12,0,32,32,54,106,238,-278,-40, +Friday,6/24/2011 12:00,12,0,32,34,60,106,246,-302,-56, +Friday,6/24/2011 13:00,16,0,36,30,56,108,246,-310,-64, +Friday,6/24/2011 14:00,18,0,36,32,58,106,252,-308,-56, +Friday,6/24/2011 15:00,22,0,34,34,56,108,254,-290,-36, +Friday,6/24/2011 16:00,24,0,36,32,50,108,252,-208,44, +Friday,6/24/2011 17:00,22,0,36,34,44,108,242,-204,38, +Friday,6/24/2011 18:00,22,0,34,34,36,106,232,-106,126, +Friday,6/24/2011 19:00,18,0,12,20,34,108,192,-52,140, +Friday,6/24/2011 20:00,16,0,12,20,30,106,184,-14,170, +Friday,6/24/2011 21:00,12,0,8,16,30,106,172,0,172, +Friday,6/24/2011 22:00,10,0,6,12,30,106,164,0,164, +Friday,6/24/2011 23:00,0,0,4,8,24,104,140,0,140, +Saturday,6/25/2011 0:00,0,0,2,6,30,102,142,0,142, +Saturday,6/25/2011 1:00,0,0,4,6,28,102,138,0,138, +Saturday,6/25/2011 2:00,0,0,4,4,30,104,144,0,144, +Saturday,6/25/2011 3:00,0,0,6,6,26,106,144,0,144, +Saturday,6/25/2011 4:00,0,0,4,4,30,106,144,0,144, +Saturday,6/25/2011 5:00,0,0,6,4,28,102,140,0,140, +Saturday,6/25/2011 6:00,0,0,4,4,30,100,138,0,138, +Saturday,6/25/2011 7:00,0,0,6,2,28,98,134,-20,114, +Saturday,6/25/2011 8:00,0,0,0,0,8,102,110,-12,98, +Saturday,6/25/2011 9:00,0,0,0,0,0,98,98,0,98, +Saturday,6/25/2011 10:00,0,0,0,0,0,98,98,0,98, +Saturday,6/25/2011 11:00,0,0,0,0,0,98,98,0,98, +Saturday,6/25/2011 12:00,0,0,0,0,0,98,98,0,98, +Saturday,6/25/2011 13:00,0,0,0,0,0,98,98,0,98, +Saturday,6/25/2011 14:00,0,0,0,0,0,98,98,0,98, +Saturday,6/25/2011 15:00,0,0,0,0,0,94,94,0,94, +Saturday,6/25/2011 16:00,0,0,0,0,0,98,98,0,98, +Saturday,6/25/2011 17:00,0,0,0,0,0,98,98,0,98, +Saturday,6/25/2011 18:00,0,0,4,116,98,96,314,-4,310, +Saturday,6/25/2011 19:00,18,0,8,16,28,106,176,-84,92, +Saturday,6/25/2011 20:00,20,0,8,14,24,106,172,-24,148, +Saturday,6/25/2011 21:00,20,0,4,16,22,106,168,-2,166, +Saturday,6/25/2011 22:00,14,0,8,16,22,106,166,0,166, +Saturday,6/25/2011 23:00,10,0,6,12,22,104,154,0,154, +Sunday,6/26/2011 0:00,0,0,4,14,22,108,150,0,150, +Sunday,6/26/2011 1:00,0,0,4,12,20,100,138,0,138, +Sunday,6/26/2011 2:00,0,0,6,8,22,98,134,0,134, +Sunday,6/26/2011 3:00,0,0,4,4,20,98,128,0,128, +Sunday,6/26/2011 4:00,0,0,4,4,24,98,130,0,130, +Sunday,6/26/2011 5:00,0,0,6,6,22,100,134,0,134, +Sunday,6/26/2011 6:00,0,0,2,8,22,98,130,0,130, +Sunday,6/26/2011 7:00,0,0,4,8,22,96,130,-20,110, +Sunday,6/26/2011 8:00,0,0,4,4,22,98,128,-94,34, +Sunday,6/26/2011 9:00,0,0,6,8,22,104,140,-174,-34, +Sunday,6/26/2011 10:00,0,0,4,6,26,104,140,-242,-102, +Sunday,6/26/2011 11:00,0,0,8,6,20,108,140,-280,-140, +Sunday,6/26/2011 12:00,0,0,6,4,24,112,144,-308,-164, +Sunday,6/26/2011 13:00,0,0,4,8,24,108,144,-314,-170, +Sunday,6/26/2011 14:00,0,0,8,6,22,118,152,-312,-160, +Sunday,6/26/2011 15:00,0,0,6,6,22,116,150,-306,-156, +Sunday,6/26/2011 16:00,0,0,6,6,22,118,154,-278,-124, +Sunday,6/26/2011 17:00,0,0,8,8,24,122,162,-220,-58, +Sunday,6/26/2011 18:00,0,0,8,8,22,116,154,-150,4, +Sunday,6/26/2011 19:00,0,0,6,6,20,114,146,-70,76, +Sunday,6/26/2011 20:00,0,0,6,8,26,114,152,-12,140, +Sunday,6/26/2011 21:00,0,0,8,10,20,114,150,0,150, +Sunday,6/26/2011 22:00,0,0,4,10,24,104,142,0,142, +Sunday,6/26/2011 23:00,0,0,4,12,20,102,138,0,138, +Monday,6/27/2011 0:00,6,0,6,12,24,98,146,0,146, +Monday,6/27/2011 1:00,0,0,4,10,20,98,132,0,132, +Monday,6/27/2011 2:00,0,0,4,8,20,104,136,0,136, +Monday,6/27/2011 3:00,0,0,6,8,24,102,138,0,138, +Monday,6/27/2011 4:00,0,0,6,10,24,100,142,0,142, +Monday,6/27/2011 5:00,0,0,4,10,24,102,140,0,140, +Monday,6/27/2011 6:00,0,0,8,10,22,100,138,0,138, +Monday,6/27/2011 7:00,6,0,24,22,32,98,184,-10,174, +Monday,6/27/2011 8:00,4,0,28,30,42,100,206,-68,138, +Monday,6/27/2011 9:00,6,0,30,40,52,100,228,-174,54, +Monday,6/27/2011 10:00,10,0,30,46,64,102,250,-238,12, +Monday,6/27/2011 11:00,10,0,30,40,66,104,252,-290,-38, +Monday,6/27/2011 12:00,10,0,32,40,62,106,248,-308,-60, +Monday,6/27/2011 13:00,10,0,32,40,64,108,256,-312,-56, +Monday,6/27/2011 14:00,12,0,38,40,64,108,262,-308,-46, +Monday,6/27/2011 15:00,20,0,36,40,60,110,264,-134,130, +Monday,6/27/2011 16:00,16,0,34,46,58,110,264,-120,144, +Monday,6/27/2011 17:00,16,0,38,42,54,110,262,-194,68, +Monday,6/27/2011 18:00,16,0,32,44,42,110,246,-144,102, +Monday,6/27/2011 19:00,12,0,14,16,38,110,190,-80,110, +Monday,6/27/2011 20:00,14,0,12,20,36,108,190,-14,176, +Monday,6/27/2011 21:00,6,0,10,24,36,108,184,0,184, +Monday,6/27/2011 22:00,0,0,6,20,32,108,168,0,168, +Monday,6/27/2011 23:00,2,0,6,12,32,108,160,0,160, +Tuesday,6/28/2011 0:00,0,0,6,12,30,106,154,0,154, +Tuesday,6/28/2011 1:00,0,0,6,6,32,106,150,0,150, +Tuesday,6/28/2011 2:00,0,0,6,6,30,102,144,0,144, +Tuesday,6/28/2011 3:00,0,0,6,6,32,104,150,0,150, +Tuesday,6/28/2011 4:00,0,0,4,6,30,102,142,0,142, +Tuesday,6/28/2011 5:00,0,0,4,10,36,100,150,0,150, +Tuesday,6/28/2011 6:00,0,0,8,10,32,102,150,0,150, +Tuesday,6/28/2011 7:00,4,0,24,16,40,102,186,-20,166, +Tuesday,6/28/2011 8:00,2,0,28,30,48,102,208,-90,118, +Tuesday,6/28/2011 9:00,8,0,28,42,58,106,240,-174,66, +Tuesday,6/28/2011 10:00,4,0,28,44,64,108,248,-236,12, +Tuesday,6/28/2011 11:00,8,0,34,40,62,110,256,-278,-22, +Tuesday,6/28/2011 12:00,10,0,30,40,64,110,256,-304,-48, +Tuesday,6/28/2011 13:00,12,0,32,38,62,114,258,-266,-8, +Tuesday,6/28/2011 14:00,18,0,34,40,62,114,266,-220,46, +Tuesday,6/28/2011 15:00,18,0,30,40,60,110,258,-198,60, +Tuesday,6/28/2011 16:00,22,0,32,40,58,110,260,-190,70, +Tuesday,6/28/2011 17:00,16,0,30,44,50,112,252,-106,146, +Tuesday,6/28/2011 18:00,14,0,32,44,40,110,240,-154,86, +Tuesday,6/28/2011 19:00,14,0,16,22,38,110,200,-44,156, +Tuesday,6/28/2011 20:00,16,0,14,20,32,110,194,-16,178, +Tuesday,6/28/2011 21:00,12,0,6,22,32,108,182,0,182, +Tuesday,6/28/2011 22:00,6,0,4,22,30,110,172,0,172, +Tuesday,6/28/2011 23:00,0,0,4,16,34,106,160,0,160, +Wednesday,6/29/2011 0:00,0,0,6,10,30,100,148,0,148, +Wednesday,6/29/2011 1:00,0,0,4,8,30,102,144,0,144, +Wednesday,6/29/2011 2:00,0,0,2,8,32,100,144,0,144, +Wednesday,6/29/2011 3:00,0,0,4,6,30,102,142,0,142, +Wednesday,6/29/2011 4:00,0,0,6,8,32,100,148,0,148, +Wednesday,6/29/2011 5:00,0,0,4,10,32,100,146,0,146, +Wednesday,6/29/2011 6:00,0,0,6,10,32,102,148,0,148, +Wednesday,6/29/2011 7:00,2,0,26,18,40,102,188,-20,168, +Wednesday,6/29/2011 8:00,6,0,26,30,44,102,208,-62,146, +Wednesday,6/29/2011 9:00,8,0,28,34,56,108,232,-128,104, +Wednesday,6/29/2011 10:00,12,0,30,38,66,108,252,-190,62, +Wednesday,6/29/2011 11:00,12,0,30,40,62,108,254,-276,-22, +Wednesday,6/29/2011 12:00,22,0,30,38,66,110,266,-280,-14, +Wednesday,6/29/2011 13:00,24,0,32,36,66,112,272,-278,-6, +Wednesday,6/29/2011 14:00,30,0,36,38,60,112,278,-186,92, +Wednesday,6/29/2011 15:00,26,0,34,40,60,110,272,-156,116, +Wednesday,6/29/2011 16:00,28,0,34,50,60,110,282,-42,240, +Wednesday,6/29/2011 17:00,22,0,30,40,52,110,256,-192,64, +Wednesday,6/29/2011 18:00,18,0,32,42,44,108,244,-138,106, +Wednesday,6/29/2011 19:00,14,0,14,24,38,112,200,-48,152, +Wednesday,6/29/2011 20:00,14,0,10,26,34,110,196,-20,176, +Wednesday,6/29/2011 21:00,4,0,4,26,32,108,176,0,176, +Wednesday,6/29/2011 22:00,8,0,6,20,34,108,176,0,176, +Wednesday,6/29/2011 23:00,0,0,4,14,34,104,156,0,156, +Thursday,6/30/2011 0:00,0,0,6,10,30,104,150,0,150, +Thursday,6/30/2011 1:00,0,0,4,8,32,104,146,0,146, +Thursday,6/30/2011 2:00,0,0,2,6,30,100,138,0,138, +Thursday,6/30/2011 3:00,0,0,4,6,32,106,148,0,148, +Thursday,6/30/2011 4:00,0,0,6,6,32,100,146,0,146, +Thursday,6/30/2011 5:00,0,0,2,8,32,102,146,0,146, +Thursday,6/30/2011 6:00,0,0,8,10,30,102,150,0,150, +Thursday,6/30/2011 7:00,4,0,28,18,40,102,192,-20,172, +Thursday,6/30/2011 8:00,2,0,30,32,48,106,218,-48,170, +Thursday,6/30/2011 9:00,4,0,30,34,60,106,236,-120,116, +Thursday,6/30/2011 10:00,10,0,32,40,64,108,254,-262,-8, +Thursday,6/30/2011 11:00,16,0,30,38,64,112,260,-478,-218, +Thursday,6/30/2011 12:00,20,0,34,34,60,108,258,-210,48, +Thursday,6/30/2011 13:00,24,0,38,34,60,112,268,-208,60, +Thursday,6/30/2011 14:00,28,0,34,36,58,110,266,-162,104, +Thursday,6/30/2011 15:00,22,0,32,40,60,112,264,-160,104, +Thursday,6/30/2011 16:00,24,0,34,56,56,108,278,-20,258, +Thursday,6/30/2011 17:00,14,0,32,46,50,110,252,-186,66, +Thursday,6/30/2011 18:00,12,0,32,48,42,110,244,-88,156, +Thursday,6/30/2011 19:00,6,0,14,28,32,108,190,-18,172, +Thursday,6/30/2011 20:00,4,0,10,26,32,108,182,-8,174, +Thursday,6/30/2011 21:00,2,0,8,26,34,106,174,0,174, +Thursday,6/30/2011 22:00,0,0,4,20,32,106,160,0,160, +Thursday,6/30/2011 23:00,0,0,6,16,30,106,156,0,156, +Friday,07/01/2011 00:00,0,0,6,6,34,106,150,0,150, +Friday,07/01/2011 01:00,0,0,6,6,32,102,148,0,148, +Friday,07/01/2011 02:00,0,0,4,8,30,102,144,0,144, +Friday,07/01/2011 03:00,0,0,6,4,32,100,142,0,142, +Friday,07/01/2011 04:00,0,0,4,4,32,100,140,0,140, +Friday,07/01/2011 05:00,0,0,4,6,34,98,142,0,142, +Friday,07/01/2011 06:00,0,0,8,8,30,100,146,0,146, +Friday,07/01/2011 07:00,4,0,24,12,32,100,174,-28,146, +Friday,07/01/2011 08:00,2,0,22,22,42,102,190,-152,38, +Friday,07/01/2011 09:00,4,0,28,32,54,106,224,-320,-96, +Friday,07/01/2011 10:00,8,0,30,34,54,106,234,-232,2, +Friday,07/01/2011 11:00,8,0,30,34,58,108,238,-278,-40, +Friday,07/01/2011 12:00,12,0,30,32,52,108,234,-550,-316, +Friday,07/01/2011 13:00,14,0,30,30,52,110,234,-670,-436, +Friday,07/01/2011 14:00,18,0,32,30,56,108,242,-700,-458, +Friday,07/01/2011 15:00,16,0,30,30,50,110,236,-562,-326, +Friday,07/01/2011 16:00,20,0,30,32,44,110,236,-530,-294, +Friday,07/01/2011 17:00,20,0,30,36,42,110,238,-356,-118, +Friday,07/01/2011 18:00,16,0,32,36,34,110,226,-120,106, +Friday,07/01/2011 19:00,8,0,12,18,32,112,182,-112,70, +Friday,07/01/2011 20:00,6,0,12,12,28,108,168,-22,146, +Friday,07/01/2011 21:00,2,0,6,10,32,108,160,0,160, +Friday,07/01/2011 22:00,4,0,4,8,30,108,154,0,154, +Friday,07/01/2011 23:00,0,0,6,10,28,110,152,0,152, +Saturday,07/02/2011 00:00,0,0,6,8,30,110,154,0,154, +Saturday,07/02/2011 01:00,0,0,4,8,30,106,148,0,148, +Saturday,07/02/2011 02:00,0,0,6,8,26,106,146,0,146, +Saturday,07/02/2011 03:00,0,0,4,8,30,106,148,0,148, +Saturday,07/02/2011 04:00,0,0,4,8,30,106,146,0,146, +Saturday,07/02/2011 05:00,0,0,6,8,30,102,144,0,144, +Saturday,07/02/2011 06:00,0,0,4,6,30,106,146,0,146, +Saturday,07/02/2011 07:00,0,0,4,6,26,102,138,-52,86, +Saturday,07/02/2011 08:00,0,0,6,4,30,106,146,-204,-58, +Saturday,07/02/2011 09:00,0,0,4,6,28,106,142,-376,-234, +Saturday,07/02/2011 10:00,2,0,6,4,30,112,152,-516,-364, +Saturday,07/02/2011 11:00,4,0,8,4,26,110,152,-620,-468, +Saturday,07/02/2011 12:00,4,0,6,6,26,114,156,-668,-512, +Saturday,07/02/2011 13:00,4,0,6,4,26,114,154,-660,-506, +Saturday,07/02/2011 14:00,4,0,6,6,30,114,160,-440,-280, +Saturday,07/02/2011 15:00,2,0,6,6,26,112,152,-354,-202, +Saturday,07/02/2011 16:00,2,0,6,8,28,114,158,-456,-298, +Saturday,07/02/2011 17:00,4,0,8,6,28,116,162,-420,-258, +Saturday,07/02/2011 18:00,6,0,6,6,30,114,160,-312,-152, +Saturday,07/02/2011 19:00,6,0,6,8,28,114,162,-144,18, +Saturday,07/02/2011 20:00,4,0,6,8,30,114,160,-26,134, +Saturday,07/02/2011 21:00,2,0,6,6,28,112,152,0,152, +Saturday,07/02/2011 22:00,2,0,4,10,30,110,154,0,154, +Saturday,07/02/2011 23:00,0,0,6,12,28,110,154,0,154, +Sunday,07/03/2011 00:00,0,0,6,10,28,104,148,0,148, +Sunday,07/03/2011 01:00,0,0,6,12,30,106,152,0,152, +Sunday,07/03/2011 02:00,0,0,6,8,28,106,146,0,146, +Sunday,07/03/2011 03:00,0,0,4,6,28,106,144,0,144, +Sunday,07/03/2011 04:00,0,0,4,6,30,106,146,0,146, +Sunday,07/03/2011 05:00,0,0,6,8,28,106,146,0,146, +Sunday,07/03/2011 06:00,0,0,6,8,30,102,144,0,144, +Sunday,07/03/2011 07:00,0,0,6,2,30,102,140,-56,84, +Sunday,07/03/2011 08:00,0,0,6,4,28,100,138,-220,-82, +Sunday,07/03/2011 09:00,2,0,6,2,30,106,148,-392,-244, +Sunday,07/03/2011 10:00,4,0,6,4,30,108,150,-520,-370, +Sunday,07/03/2011 11:00,4,0,6,6,26,112,154,-606,-452, +Sunday,07/03/2011 12:00,2,0,8,4,30,112,156,-664,-508, +Sunday,07/03/2011 13:00,8,0,6,4,30,108,158,-662,-504, +Sunday,07/03/2011 14:00,8,0,4,6,28,112,158,-610,-452, +Sunday,07/03/2011 15:00,10,0,6,4,30,110,160,-626,-466, +Sunday,07/03/2011 16:00,6,0,8,6,28,112,158,-518,-360, +Sunday,07/03/2011 17:00,10,0,6,4,30,110,162,-240,-78, +Sunday,07/03/2011 18:00,6,0,6,8,30,110,158,-106,52, +Sunday,07/03/2011 19:00,4,0,6,4,28,108,150,-104,46, +Sunday,07/03/2011 20:00,4,0,4,8,30,108,152,-30,122, +Sunday,07/03/2011 21:00,2,0,6,6,30,108,152,0,152, +Sunday,07/03/2011 22:00,2,0,4,8,28,106,150,0,150, +Sunday,07/03/2011 23:00,0,0,6,8,28,106,148,0,148, +Monday,07/04/2011 00:00,0,0,4,12,28,102,146,0,146, +Monday,07/04/2011 01:00,2,0,4,10,32,102,150,0,150, +Monday,07/04/2011 02:00,0,0,4,10,30,98,142,0,142, +Monday,07/04/2011 03:00,2,0,4,6,26,104,142,0,142, +Monday,07/04/2011 04:00,0,0,6,8,30,102,148,0,148, +Monday,07/04/2011 05:00,0,0,4,4,32,102,144,0,144, +Monday,07/04/2011 06:00,2,0,6,6,30,104,148,0,148, +Monday,07/04/2011 07:00,4,0,28,4,26,104,166,-54,112, +Monday,07/04/2011 08:00,10,0,28,4,30,106,180,-210,-30, +Monday,07/04/2011 09:00,14,0,30,4,30,108,186,-374,-188, +Monday,07/04/2011 10:00,12,0,30,2,28,110,182,-510,-328, +Monday,07/04/2011 11:00,16,0,32,4,30,112,196,-604,-408, +Monday,07/04/2011 12:00,14,0,30,2,28,114,188,-652,-464, +Monday,07/04/2011 13:00,14,0,32,4,30,112,190,-674,-484, +Monday,07/04/2011 14:00,18,0,32,4,28,110,192,-666,-474, +Monday,07/04/2011 15:00,14,0,30,4,30,110,186,-642,-456, +Monday,07/04/2011 16:00,10,0,32,4,28,110,184,-546,-362, +Monday,07/04/2011 17:00,14,0,32,6,30,110,192,-514,-322, +Monday,07/04/2011 18:00,20,0,30,4,28,110,194,-322,-128, +Monday,07/04/2011 19:00,16,0,12,4,28,110,172,-140,32, +Monday,07/04/2011 20:00,14,0,14,2,28,112,170,-32,138, +Monday,07/04/2011 21:00,8,0,6,8,30,110,160,0,160, +Monday,07/04/2011 22:00,2,0,4,6,30,110,152,0,152, +Monday,07/04/2011 23:00,4,0,6,4,28,108,150,0,150, +Tuesday,07/05/2011 00:00,0,0,8,4,28,108,148,0,148, +Tuesday,07/05/2011 01:00,0,0,4,2,30,106,142,0,142, +Tuesday,07/05/2011 02:00,0,0,4,4,28,104,140,0,140, +Tuesday,07/05/2011 03:00,0,0,4,4,28,106,142,0,142, +Tuesday,07/05/2011 04:00,0,0,6,4,30,100,138,0,138, +Tuesday,07/05/2011 05:00,0,0,6,4,28,104,144,0,144, +Tuesday,07/05/2011 06:00,0,0,6,8,34,102,148,0,148, +Tuesday,07/05/2011 07:00,4,0,28,18,36,104,192,-18,174, +Tuesday,07/05/2011 08:00,6,0,30,26,46,106,214,-178,36, +Tuesday,07/05/2011 09:00,10,0,32,30,58,108,240,-332,-92, +Tuesday,07/05/2011 10:00,12,0,32,36,64,110,254,-330,-76, +Tuesday,07/05/2011 11:00,20,0,34,34,68,110,264,-550,-286, +Tuesday,07/05/2011 12:00,24,0,34,32,66,112,268,-630,-362, +Tuesday,07/05/2011 13:00,28,0,38,30,62,114,272,-640,-368, +Tuesday,07/05/2011 14:00,26,0,34,34,62,114,272,-402,-130, +Tuesday,07/05/2011 15:00,26,0,34,44,60,110,274,-110,164, +Tuesday,07/05/2011 16:00,22,0,34,50,58,112,274,-82,192, +Tuesday,07/05/2011 17:00,22,0,34,48,50,112,266,-82,184, +Tuesday,07/05/2011 18:00,12,0,32,46,42,112,244,-20,224, +Tuesday,07/05/2011 19:00,6,0,16,24,34,112,190,-26,164, +Tuesday,07/05/2011 20:00,6,0,12,20,34,112,184,-4,180, +Tuesday,07/05/2011 21:00,0,0,6,20,34,108,170,0,170, +Tuesday,07/05/2011 22:00,2,0,6,18,36,112,172,0,172, +Tuesday,07/05/2011 23:00,0,0,4,10,30,110,154,0,154, +Wednesday,07/06/2011 00:00,0,0,8,4,30,106,148,0,148, +Wednesday,07/06/2011 01:00,0,0,6,6,34,106,152,0,152, +Wednesday,07/06/2011 02:00,0,0,4,4,34,108,150,0,150, +Wednesday,07/06/2011 03:00,0,0,4,4,30,106,146,0,146, +Wednesday,07/06/2011 04:00,0,0,8,4,32,102,146,0,146, +Wednesday,07/06/2011 05:00,0,0,4,6,32,106,150,0,150, +Wednesday,07/06/2011 06:00,0,0,8,6,34,106,154,0,154, +Wednesday,07/06/2011 07:00,2,0,28,14,38,106,188,-56,132, +Wednesday,07/06/2011 08:00,6,0,28,22,48,108,212,-188,24, +Wednesday,07/06/2011 09:00,8,0,32,36,56,108,240,-370,-130, +Wednesday,07/06/2011 10:00,10,0,32,34,64,108,250,-384,-134, +Wednesday,07/06/2011 11:00,12,0,34,32,60,112,248,-514,-266, +Wednesday,07/06/2011 12:00,16,0,32,34,66,112,260,-560,-300, +Wednesday,07/06/2011 13:00,20,0,38,32,66,112,268,-628,-360, +Wednesday,07/06/2011 14:00,20,0,36,38,60,112,268,-414,-146, +Wednesday,07/06/2011 15:00,22,0,36,40,62,114,274,-380,-106, +Wednesday,07/06/2011 16:00,26,0,40,42,60,116,284,-244,40, +Wednesday,07/06/2011 17:00,20,0,34,38,52,114,258,-372,-114, +Wednesday,07/06/2011 18:00,22,0,36,40,44,114,256,-252,4, +Wednesday,07/06/2011 19:00,10,0,14,20,34,114,192,-130,62, +Wednesday,07/06/2011 20:00,8,0,12,24,36,114,194,-30,164, +Wednesday,07/06/2011 21:00,0,0,6,30,38,112,186,-10,176, +Wednesday,07/06/2011 22:00,0,0,4,30,34,112,180,0,180, +Wednesday,07/06/2011 23:00,2,0,6,20,32,112,170,0,170, +Thursday,07/07/2011 00:00,0,0,8,14,34,106,162,0,162, +Thursday,07/07/2011 01:00,0,0,4,10,32,110,154,0,154, +Thursday,07/07/2011 02:00,0,0,4,8,30,108,150,0,150, +Thursday,07/07/2011 03:00,0,0,4,8,32,110,154,0,154, +Thursday,07/07/2011 04:00,0,0,6,6,34,106,154,0,154, +Thursday,07/07/2011 05:00,0,0,4,8,32,106,150,0,150, +Thursday,07/07/2011 06:00,0,0,8,8,34,110,158,0,158, +Thursday,07/07/2011 07:00,4,0,28,16,40,110,198,-54,144, +Thursday,07/07/2011 08:00,0,0,26,30,46,108,212,-194,18, +Thursday,07/07/2011 09:00,10,0,34,38,58,108,248,-366,-118, +Thursday,07/07/2011 10:00,12,0,34,42,64,114,266,-500,-234, +Thursday,07/07/2011 11:00,14,0,34,34,66,112,260,-622,-362, +Thursday,07/07/2011 12:00,18,0,34,34,62,114,262,-304,-42, +Thursday,07/07/2011 13:00,20,0,34,32,62,114,262,-522,-260, +Thursday,07/07/2011 14:00,20,0,38,34,62,116,270,-392,-122, +Thursday,07/07/2011 15:00,22,0,34,34,60,114,264,-598,-334, +Thursday,07/07/2011 16:00,20,0,38,36,56,114,264,-404,-140, +Thursday,07/07/2011 17:00,22,0,38,42,50,114,268,-92,176, +Thursday,07/07/2011 18:00,14,0,34,46,38,114,246,-32,214, +Thursday,07/07/2011 19:00,6,0,14,24,36,114,196,-10,186, +Thursday,07/07/2011 20:00,0,0,12,32,36,112,192,-2,190, +Thursday,07/07/2011 21:00,0,0,4,30,32,114,182,0,182, +Thursday,07/07/2011 22:00,0,0,8,20,34,112,174,0,174, +Thursday,07/07/2011 23:00,0,0,6,14,30,110,162,0,162, +Friday,07/08/2011 00:00,0,0,8,10,34,110,162,0,162, +Friday,07/08/2011 01:00,0,0,4,8,32,106,150,0,150, +Friday,07/08/2011 02:00,0,0,6,6,30,106,148,0,148, +Friday,07/08/2011 03:00,0,0,6,6,32,110,154,0,154, +Friday,07/08/2011 04:00,0,0,8,4,34,104,150,0,150, +Friday,07/08/2011 05:00,0,0,4,6,30,106,148,0,148, +Friday,07/08/2011 06:00,0,0,8,8,34,106,154,0,154, +Friday,07/08/2011 07:00,2,0,24,12,40,108,184,-46,138, +Friday,07/08/2011 08:00,2,0,28,22,42,108,202,-184,18, +Friday,07/08/2011 09:00,4,0,30,34,54,110,232,-378,-146, +Friday,07/08/2011 10:00,10,0,30,36,60,110,248,-520,-272, +Friday,07/08/2011 11:00,14,0,32,36,60,112,252,-612,-360, +Friday,07/08/2011 12:00,14,0,34,30,58,110,246,-666,-420, +Friday,07/08/2011 13:00,24,0,38,30,58,114,266,-476,-210, +Friday,07/08/2011 14:00,22,0,34,42,56,112,266,-224,42, +Friday,07/08/2011 15:00,16,0,34,38,58,116,260,-634,-374, +Friday,07/08/2011 16:00,20,0,34,38,54,116,260,-434,-174, +Friday,07/08/2011 17:00,16,0,32,40,46,116,250,-182,68, +Friday,07/08/2011 18:00,18,0,34,40,40,116,248,-210,38, +Friday,07/08/2011 19:00,6,0,14,24,32,114,190,-68,122, +Friday,07/08/2011 20:00,8,0,10,28,32,112,192,-26,166, +Friday,07/08/2011 21:00,4,0,4,26,34,114,182,-8,174, +Friday,07/08/2011 22:00,0,0,6,16,30,114,164,0,164, +Friday,07/08/2011 23:00,0,0,4,8,30,110,150,0,150, +Saturday,07/09/2011 00:00,0,0,8,6,28,106,148,0,148, +Saturday,07/09/2011 01:00,0,0,4,6,30,106,146,0,146, +Saturday,07/09/2011 02:00,0,0,4,6,30,106,148,0,148, +Saturday,07/09/2011 03:00,0,0,4,6,30,106,146,0,146, +Saturday,07/09/2011 04:00,0,0,4,6,28,106,146,0,146, +Saturday,07/09/2011 05:00,0,0,4,6,30,106,148,0,148, +Saturday,07/09/2011 06:00,0,0,6,8,30,102,146,-2,144, +Saturday,07/09/2011 07:00,0,0,4,4,30,100,138,-70,68, +Saturday,07/09/2011 08:00,0,0,8,4,28,106,146,-202,-56, +Saturday,07/09/2011 09:00,0,0,4,4,32,110,150,-374,-224, +Saturday,07/09/2011 10:00,0,0,6,6,28,110,148,-512,-364, +Saturday,07/09/2011 11:00,0,0,6,2,28,110,150,-472,-322, +Saturday,07/09/2011 12:00,0,0,4,4,32,112,154,-620,-466, +Saturday,07/09/2011 13:00,6,0,6,6,30,114,162,-572,-410, +Saturday,07/09/2011 14:00,4,0,6,6,30,112,160,-398,-238, +Saturday,07/09/2011 15:00,4,0,6,6,30,114,160,-294,-134, +Saturday,07/09/2011 16:00,8,0,6,10,30,112,164,-212,-48, +Saturday,07/09/2011 17:00,0,0,8,10,30,114,162,-172,-10, +Saturday,07/09/2011 18:00,2,0,4,10,30,110,156,-4,152, +Saturday,07/09/2011 19:00,0,0,6,6,30,110,150,-80,70, +Saturday,07/09/2011 20:00,0,0,4,6,30,110,150,-22,128, +Saturday,07/09/2011 21:00,0,0,4,8,30,106,148,-4,144, +Saturday,07/09/2011 22:00,0,0,6,6,30,106,146,0,146, +Saturday,07/09/2011 23:00,0,0,6,6,28,106,146,0,146, +Sunday,07/10/2011 00:00,0,0,4,4,30,102,140,0,140, +Sunday,07/10/2011 01:00,0,0,4,6,30,106,146,0,146, +Sunday,07/10/2011 02:00,0,0,4,6,30,106,144,0,144, +Sunday,07/10/2011 03:00,0,0,4,4,30,102,142,0,142, +Sunday,07/10/2011 04:00,0,0,6,8,30,106,150,0,150, +Sunday,07/10/2011 05:00,0,0,4,8,30,106,146,0,146, +Sunday,07/10/2011 06:00,0,0,6,8,30,102,144,0,144, +Sunday,07/10/2011 07:00,0,0,4,4,30,106,142,-58,84, +Sunday,07/10/2011 08:00,0,0,4,4,30,104,142,-204,-62, +Sunday,07/10/2011 09:00,0,0,4,4,30,106,142,-200,-58, +Sunday,07/10/2011 10:00,0,0,6,4,30,110,148,-198,-50, +Sunday,07/10/2011 11:00,0,0,4,4,30,106,142,-292,-150, +Sunday,07/10/2011 12:00,0,0,4,2,30,112,152,-296,-144, +Sunday,07/10/2011 13:00,4,0,6,4,30,112,158,-386,-228, +Sunday,07/10/2011 14:00,4,0,6,6,28,112,156,-518,-362, +Sunday,07/10/2011 15:00,8,0,6,8,30,110,162,-248,-86, +Sunday,07/10/2011 16:00,6,0,6,6,30,112,158,-464,-306, +Sunday,07/10/2011 17:00,4,0,8,10,28,112,162,-38,124, +Sunday,07/10/2011 18:00,0,0,4,8,30,112,156,-220,-64, +Sunday,07/10/2011 19:00,0,0,6,6,30,114,156,-90,66, +Sunday,07/10/2011 20:00,0,0,4,6,30,110,148,-18,130, +Sunday,07/10/2011 21:00,0,0,8,6,30,110,154,-4,150, +Sunday,07/10/2011 22:00,0,0,4,6,30,106,148,0,148, +Sunday,07/10/2011 23:00,0,0,4,4,30,106,144,0,144, +Monday,07/11/2011 00:00,0,0,4,4,30,106,144,0,144, +Monday,07/11/2011 01:00,0,0,8,6,28,106,146,0,146, +Monday,07/11/2011 02:00,0,0,4,4,30,102,142,0,142, +Monday,07/11/2011 03:00,0,0,4,4,30,106,146,0,146, +Monday,07/11/2011 04:00,0,0,2,2,30,106,140,0,140, +Monday,07/11/2011 05:00,0,0,4,6,32,106,148,0,148, +Monday,07/11/2011 06:00,0,0,6,10,32,106,156,0,156, +Monday,07/11/2011 07:00,8,0,28,20,38,106,198,-48,150, +Monday,07/11/2011 08:00,8,0,30,30,46,108,222,-120,102, +Monday,07/11/2011 09:00,12,0,32,36,60,108,248,-346,-98, +Monday,07/11/2011 10:00,10,0,32,36,68,110,256,-354,-98, +Monday,07/11/2011 11:00,16,0,36,34,62,110,258,-552,-294, +Monday,07/11/2011 12:00,22,0,30,34,70,112,268,-556,-288, +Monday,07/11/2011 13:00,22,0,34,34,66,114,268,-454,-186, +Monday,07/11/2011 14:00,24,0,34,44,66,112,280,-278,2, +Monday,07/11/2011 15:00,20,0,36,44,60,114,276,-344,-68, +Monday,07/11/2011 16:00,24,0,32,44,60,114,274,-134,140, +Monday,07/11/2011 17:00,18,0,38,48,50,114,266,-50,216, +Monday,07/11/2011 18:00,14,0,32,52,40,112,252,-8,244, +Monday,07/11/2011 19:00,6,0,10,34,40,110,202,-14,188, +Monday,07/11/2011 20:00,0,0,10,32,34,108,186,-22,164, +Monday,07/11/2011 21:00,0,0,6,28,34,108,176,0,176, +Monday,07/11/2011 22:00,0,0,6,20,32,110,170,0,170, +Monday,07/11/2011 23:00,0,0,4,12,34,106,156,0,156, +Tuesday,07/12/2011 00:00,0,0,6,12,30,106,154,0,154, +Tuesday,07/12/2011 01:00,0,0,6,10,32,106,154,0,154, +Tuesday,07/12/2011 02:00,0,0,6,8,30,106,150,0,150, +Tuesday,07/12/2011 03:00,0,0,6,8,32,104,150,0,150, +Tuesday,07/12/2011 04:00,0,0,8,6,32,106,150,0,150, +Tuesday,07/12/2011 05:00,0,0,4,10,32,104,152,0,152, +Tuesday,07/12/2011 06:00,0,0,8,10,34,106,156,0,156, +Tuesday,07/12/2011 07:00,2,0,26,16,40,106,190,-30,160, +Tuesday,07/12/2011 08:00,2,0,26,30,46,108,212,-146,66, +Tuesday,07/12/2011 09:00,4,0,28,40,56,110,238,-364,-126, +Tuesday,07/12/2011 10:00,10,0,30,42,68,110,260,-516,-256, +Tuesday,07/12/2011 11:00,8,0,36,42,68,112,266,-618,-352, +Tuesday,07/12/2011 12:00,14,0,34,36,66,112,264,-652,-388, +Tuesday,07/12/2011 13:00,12,0,36,36,68,114,266,-566,-300, +Tuesday,07/12/2011 14:00,20,0,34,38,64,114,270,-460,-190, +Tuesday,07/12/2011 15:00,20,0,34,46,64,114,278,-120,158, +Tuesday,07/12/2011 16:00,16,0,34,48,62,116,278,-208,70, +Tuesday,07/12/2011 17:00,20,0,36,40,54,114,262,-334,-72, +Tuesday,07/12/2011 18:00,16,0,34,48,44,114,256,-96,160, +Tuesday,07/12/2011 19:00,4,0,14,28,36,116,196,-30,166, +Tuesday,07/12/2011 20:00,2,0,10,30,36,116,194,-10,184, +Tuesday,07/12/2011 21:00,2,0,4,28,34,114,184,0,184, +Tuesday,07/12/2011 22:00,2,0,4,24,36,114,180,0,180, +Tuesday,07/12/2011 23:00,0,0,6,14,34,110,164,0,164, +Wednesday,7/13/2011 0:00,0,0,4,6,34,108,150,0,150, +Wednesday,7/13/2011 1:00,0,0,6,8,32,106,152,0,152, +Wednesday,7/13/2011 2:00,0,0,6,6,34,110,154,0,154, +Wednesday,7/13/2011 3:00,0,0,6,8,32,106,152,0,152, +Wednesday,7/13/2011 4:00,0,0,4,6,32,108,150,0,150, +Wednesday,7/13/2011 5:00,0,0,6,8,32,106,154,0,154, +Wednesday,7/13/2011 6:00,0,0,8,10,38,110,164,0,164, +Wednesday,7/13/2011 7:00,0,0,22,18,40,110,190,-2,188, +Wednesday,7/13/2011 8:00,4,0,28,28,46,110,214,-114,100, +Wednesday,7/13/2011 9:00,2,0,30,38,60,122,250,-262,-12, +Wednesday,7/13/2011 10:00,0,0,24,42,62,98,226,-456,-230, +Wednesday,7/13/2011 11:00,12,0,30,42,60,118,262,-612,-350, +Wednesday,7/13/2011 12:00,12,0,34,40,60,116,262,-668,-406, +Wednesday,7/13/2011 13:00,12,0,30,40,64,116,264,-696,-432, +Wednesday,7/13/2011 14:00,16,0,34,40,62,116,268,-676,-408, +Wednesday,7/13/2011 15:00,18,0,32,40,58,116,266,-630,-364, +Wednesday,7/13/2011 16:00,20,0,34,42,58,116,270,-574,-304, +Wednesday,7/13/2011 17:00,20,0,34,42,50,116,260,-198,62, +Wednesday,7/13/2011 18:00,14,0,34,44,42,118,252,-32,220, +Wednesday,7/13/2011 19:00,10,0,10,20,38,114,194,-220,-26, +Wednesday,7/13/2011 20:00,4,0,12,20,36,118,188,-64,124, +Wednesday,7/13/2011 21:00,2,0,4,20,34,116,174,0,174, +Wednesday,7/13/2011 22:00,0,0,6,18,32,114,170,0,170, +Wednesday,7/13/2011 23:00,0,0,4,10,32,114,162,0,162, +Thursday,7/14/2011 0:00,0,0,4,6,34,112,158,0,158, +Thursday,7/14/2011 1:00,0,0,6,4,30,112,152,0,152, +Thursday,7/14/2011 2:00,0,0,4,4,32,108,150,0,150, +Thursday,7/14/2011 3:00,0,0,4,6,32,110,152,0,152, +Thursday,7/14/2011 4:00,0,0,4,4,30,106,146,0,146, +Thursday,7/14/2011 5:00,0,0,6,8,32,108,152,0,152, +Thursday,7/14/2011 6:00,0,0,10,8,34,112,164,0,164, +Thursday,7/14/2011 7:00,4,0,26,12,40,108,190,-44,146, +Thursday,7/14/2011 8:00,2,0,28,22,46,110,210,-202,8, +Thursday,7/14/2011 9:00,8,0,30,38,60,114,250,-366,-116, +Thursday,7/14/2011 10:00,10,0,34,44,64,114,266,-502,-236, +Thursday,7/14/2011 11:00,10,0,32,38,66,116,262,-560,-298, +Thursday,7/14/2011 12:00,20,0,32,36,64,116,268,-590,-322, +Thursday,7/14/2011 13:00,24,0,34,34,66,112,268,-674,-406, +Thursday,7/14/2011 14:00,30,0,34,46,64,114,288,-228,60, +Thursday,7/14/2011 15:00,24,0,32,56,58,110,280,-56,224, +Thursday,7/14/2011 16:00,22,0,32,52,58,110,274,-120,154, +Thursday,7/14/2011 17:00,20,0,32,48,52,110,260,-156,104, +Thursday,7/14/2011 18:00,16,0,32,50,42,110,248,-104,144, +Thursday,7/14/2011 19:00,8,0,10,22,34,108,184,-88,96, +Thursday,7/14/2011 20:00,8,0,10,22,36,108,184,-30,154, +Thursday,7/14/2011 21:00,6,0,4,28,36,110,184,0,184, +Thursday,7/14/2011 22:00,6,0,2,20,32,108,168,0,168, +Thursday,7/14/2011 23:00,4,0,4,6,30,106,150,0,150, +Friday,7/15/2011 0:00,4,0,2,4,30,106,148,0,148, +Friday,7/15/2011 1:00,2,0,4,4,32,108,152,0,152, +Friday,7/15/2011 2:00,0,0,4,4,32,106,148,0,148, +Friday,7/15/2011 3:00,2,0,6,4,30,106,148,0,148, +Friday,7/15/2011 4:00,0,0,4,4,30,102,142,0,142, +Friday,7/15/2011 5:00,4,0,4,6,34,102,152,0,152, +Friday,7/15/2011 6:00,2,0,6,8,34,102,150,0,150, +Friday,7/15/2011 7:00,4,0,26,12,38,102,182,-40,142, +Friday,7/15/2011 8:00,6,0,26,22,42,104,200,-204,-4, +Friday,7/15/2011 9:00,12,0,30,30,56,104,234,-380,-146, +Friday,7/15/2011 10:00,14,0,32,38,58,106,250,-510,-260, +Friday,7/15/2011 11:00,16,0,32,34,58,106,248,-612,-364, +Friday,7/15/2011 12:00,16,0,32,32,60,108,250,-654,-404, +Friday,7/15/2011 13:00,18,0,32,30,60,110,250,-684,-434, +Friday,7/15/2011 14:00,26,0,36,32,56,110,260,-670,-410, +Friday,7/15/2011 15:00,24,0,32,32,54,110,252,-604,-352, +Friday,7/15/2011 16:00,26,0,34,34,50,110,256,-566,-310, +Friday,7/15/2011 17:00,26,0,32,34,42,106,240,-440,-200, +Friday,7/15/2011 18:00,22,0,32,36,38,106,234,-250,-16, +Friday,7/15/2011 19:00,16,0,10,18,30,106,182,-74,108, +Friday,7/15/2011 20:00,16,0,10,14,30,108,178,-30,148, +Friday,7/15/2011 21:00,10,0,6,24,28,108,176,0,176, +Friday,7/15/2011 22:00,6,0,6,16,30,110,166,0,166, +Friday,7/15/2011 23:00,6,0,2,4,28,106,148,0,148, +Saturday,7/16/2011 0:00,0,0,4,4,26,106,142,0,142, +Saturday,7/16/2011 1:00,4,0,4,4,28,106,144,0,144, +Saturday,7/16/2011 2:00,0,0,4,6,28,104,142,0,142, +Saturday,7/16/2011 3:00,0,0,4,4,26,106,140,0,140, +Saturday,7/16/2011 4:00,2,0,4,4,28,106,144,0,144, +Saturday,7/16/2011 5:00,2,0,4,6,28,104,142,0,142, +Saturday,7/16/2011 6:00,0,0,4,6,28,102,140,0,140, +Saturday,7/16/2011 7:00,2,0,6,4,28,104,144,-40,104, +Saturday,7/16/2011 8:00,0,0,2,4,6,100,112,-28,84, +Saturday,7/16/2011 9:00,0,0,0,0,0,96,96,0,96, +Saturday,7/16/2011 10:00,0,0,0,0,0,98,98,0,98, +Saturday,7/16/2011 11:00,0,0,0,0,0,98,98,0,98, +Saturday,7/16/2011 12:00,0,0,0,58,30,100,190,-78,112, +Saturday,7/16/2011 13:00,6,0,4,12,22,108,152,-456,-304, +Saturday,7/16/2011 14:00,16,0,4,16,26,108,170,-614,-444, +Saturday,7/16/2011 15:00,14,0,6,16,26,108,172,-526,-354, +Saturday,7/16/2011 16:00,18,0,4,16,26,110,172,-602,-430, +Saturday,7/16/2011 17:00,18,0,4,16,22,110,170,-466,-296, +Saturday,7/16/2011 18:00,16,0,6,16,22,108,168,-188,-20, +Saturday,7/16/2011 19:00,16,0,6,14,24,110,170,-52,118, +Saturday,7/16/2011 20:00,10,0,6,6,22,108,152,-78,74, +Saturday,7/16/2011 21:00,6,0,2,8,22,108,148,-14,134, +Saturday,7/16/2011 22:00,6,0,4,6,24,108,150,0,150, +Saturday,7/16/2011 23:00,2,0,4,6,22,106,144,0,144, +Sunday,7/17/2011 0:00,4,0,6,8,24,108,146,0,146, +Sunday,7/17/2011 1:00,4,0,2,6,20,106,138,0,138, +Sunday,7/17/2011 2:00,0,0,4,6,24,106,140,0,140, +Sunday,7/17/2011 3:00,4,0,4,6,24,108,146,0,146, +Sunday,7/17/2011 4:00,0,0,4,6,20,106,136,0,136, +Sunday,7/17/2011 5:00,0,0,4,6,24,104,140,0,140, +Sunday,7/17/2011 6:00,0,0,6,8,24,106,144,0,144, +Sunday,7/17/2011 7:00,0,0,4,6,24,106,142,0,142, +Sunday,7/17/2011 8:00,0,0,4,4,22,104,136,-88,48, +Sunday,7/17/2011 9:00,4,0,4,4,24,106,142,-260,-118, +Sunday,7/17/2011 10:00,6,0,4,4,24,108,146,-388,-242, +Sunday,7/17/2011 11:00,12,0,6,4,24,108,154,-520,-366, +Sunday,7/17/2011 12:00,16,0,8,4,24,108,158,-610,-452, +Sunday,7/17/2011 13:00,12,0,6,4,24,110,156,-648,-492, +Sunday,7/17/2011 14:00,14,0,4,4,24,110,156,-668,-512, +Sunday,7/17/2011 15:00,14,0,8,6,24,110,160,-668,-508, +Sunday,7/17/2011 16:00,18,0,6,4,24,110,162,-580,-418, +Sunday,7/17/2011 17:00,14,0,8,4,22,108,156,-552,-396, +Sunday,7/17/2011 18:00,14,0,6,6,26,108,160,-398,-238, +Sunday,7/17/2011 19:00,18,0,6,4,24,110,162,-278,-116, +Sunday,7/17/2011 20:00,14,0,6,4,22,110,158,-90,68, +Sunday,7/17/2011 21:00,12,0,8,8,24,108,158,-10,148, +Sunday,7/17/2011 22:00,8,0,4,8,24,110,154,0,154, +Sunday,7/17/2011 23:00,6,0,4,8,24,108,150,0,150, +Monday,7/18/2011 0:00,6,0,4,6,22,110,148,0,148, +Monday,7/18/2011 1:00,2,0,6,6,22,108,144,0,144, +Monday,7/18/2011 2:00,2,0,6,4,24,108,144,0,144, +Monday,7/18/2011 3:00,2,0,4,4,20,108,140,0,140, +Monday,7/18/2011 4:00,0,0,4,4,26,106,140,0,140, +Monday,7/18/2011 5:00,4,0,4,8,24,106,144,0,144, +Monday,7/18/2011 6:00,4,0,8,6,22,106,144,0,144, +Monday,7/18/2011 7:00,10,0,28,6,28,106,178,-2,176, +Monday,7/18/2011 8:00,30,0,56,42,70,106,306,-250,56, +Monday,7/18/2011 9:00,22,0,32,38,56,106,256,-362,-106, +Monday,7/18/2011 10:00,24,0,30,38,66,108,264,-496,-232, +Monday,7/18/2011 11:00,30,0,36,36,60,110,270,-592,-322, +Monday,7/18/2011 12:00,30,0,32,34,62,108,266,-650,-384, +Monday,7/18/2011 13:00,32,0,34,30,62,110,272,-660,-388, +Monday,7/18/2011 14:00,32,0,34,34,62,110,272,-644,-372, +Monday,7/18/2011 15:00,36,0,34,36,58,112,274,-606,-332, +Monday,7/18/2011 16:00,32,0,34,34,52,110,262,-530,-268, +Monday,7/18/2011 17:00,30,0,36,36,50,108,260,-420,-160, +Monday,7/18/2011 18:00,30,0,32,38,38,110,246,-282,-36, +Monday,7/18/2011 19:00,22,0,12,18,32,108,194,-52,142, +Monday,7/18/2011 20:00,20,0,12,18,32,110,192,-4,188, +Monday,7/18/2011 21:00,16,0,8,24,32,110,188,0,188, +Monday,7/18/2011 22:00,12,0,6,16,32,108,176,0,176, +Monday,7/18/2011 23:00,10,0,4,6,28,108,156,0,156, +Tuesday,7/19/2011 0:00,6,0,4,6,28,106,152,0,152, +Tuesday,7/19/2011 1:00,4,0,6,2,30,108,148,0,148, +Tuesday,7/19/2011 2:00,6,0,6,4,30,106,152,0,152, +Tuesday,7/19/2011 3:00,0,0,4,4,28,106,142,0,142, +Tuesday,7/19/2011 4:00,4,0,4,4,32,106,150,0,150, +Tuesday,7/19/2011 5:00,0,0,4,6,30,106,146,0,146, +Tuesday,7/19/2011 6:00,4,0,8,4,30,106,152,0,152, +Tuesday,7/19/2011 7:00,10,0,28,12,38,106,194,-46,148, +Tuesday,7/19/2011 8:00,18,0,30,28,48,106,230,-198,32, +Tuesday,7/19/2011 9:00,20,0,34,40,60,108,260,-370,-110, +Tuesday,7/19/2011 10:00,26,0,32,40,62,108,268,-502,-234, +Tuesday,7/19/2011 11:00,30,0,36,38,64,108,274,-598,-324, +Tuesday,7/19/2011 12:00,32,0,34,38,62,110,276,-644,-368, +Tuesday,7/19/2011 13:00,36,0,36,36,62,108,278,-544,-266, +Tuesday,7/19/2011 14:00,32,0,34,34,60,108,268,-638,-370, +Tuesday,7/19/2011 15:00,22,0,38,38,58,108,264,-444,-180, +Tuesday,7/19/2011 16:00,42,0,38,48,56,108,292,-72,220, +Tuesday,7/19/2011 17:00,36,0,32,56,54,110,288,-2,286, +Tuesday,7/19/2011 18:00,34,0,32,54,36,108,264,0,264, +Tuesday,7/19/2011 19:00,20,0,14,26,32,108,202,-2,200, +Tuesday,7/19/2011 20:00,14,0,10,28,32,104,188,-2,186, +Tuesday,7/19/2011 21:00,10,0,6,20,30,108,174,0,174, +Tuesday,7/19/2011 22:00,6,0,6,16,32,106,166,0,166, +Tuesday,7/19/2011 23:00,6,0,4,12,30,108,158,0,158, +Wednesday,7/20/2011 0:00,2,0,6,6,30,106,152,0,152, +Wednesday,7/20/2011 1:00,0,0,4,4,28,106,144,0,144, +Wednesday,7/20/2011 2:00,4,0,4,6,30,108,150,0,150, +Wednesday,7/20/2011 3:00,0,0,6,4,32,106,146,0,146, +Wednesday,7/20/2011 4:00,0,0,2,4,30,106,146,0,146, +Wednesday,7/20/2011 5:00,2,0,6,6,30,104,148,0,148, +Wednesday,7/20/2011 6:00,4,0,8,8,30,104,156,-2,154, +Wednesday,7/20/2011 7:00,8,0,28,12,38,104,192,-52,140, +Wednesday,7/20/2011 8:00,8,0,28,28,50,104,216,-142,74, +Wednesday,7/20/2011 9:00,14,0,30,36,60,106,246,-376,-130, +Wednesday,7/20/2011 10:00,20,0,32,36,60,106,254,-482,-228, +Wednesday,7/20/2011 11:00,22,0,34,34,64,106,262,-596,-334, +Wednesday,7/20/2011 12:00,30,0,34,34,62,108,268,-440,-172, +Wednesday,7/20/2011 13:00,30,0,32,34,66,108,270,-352,-82, +Wednesday,7/20/2011 14:00,26,0,36,32,60,108,260,-550,-290, +Wednesday,7/20/2011 15:00,32,0,32,34,56,108,264,-536,-272, +Wednesday,7/20/2011 16:00,30,0,34,36,56,108,264,-564,-300, +Wednesday,7/20/2011 17:00,30,0,32,34,48,106,250,-368,-118, +Wednesday,7/20/2011 18:00,26,0,32,40,40,108,246,-170,76, +Wednesday,7/20/2011 19:00,22,0,12,18,36,108,196,-110,86, +Wednesday,7/20/2011 20:00,16,0,10,22,32,108,190,-26,164, +Wednesday,7/20/2011 21:00,14,0,8,22,32,108,184,0,184, +Wednesday,7/20/2011 22:00,10,0,6,14,32,106,168,0,168, +Wednesday,7/20/2011 23:00,6,0,4,10,30,108,156,0,156, +Thursday,7/21/2011 0:00,2,0,4,2,30,106,148,0,148, +Thursday,7/21/2011 1:00,4,0,6,4,30,106,152,0,152, +Thursday,7/21/2011 2:00,0,0,4,4,30,106,146,0,146, +Thursday,7/21/2011 3:00,0,0,2,4,30,106,142,0,142, +Thursday,7/21/2011 4:00,2,0,6,4,32,106,148,0,148, +Thursday,7/21/2011 5:00,2,0,4,4,30,104,146,0,146, +Thursday,7/21/2011 6:00,6,0,8,8,34,104,158,0,158, +Thursday,7/21/2011 7:00,8,0,28,10,38,104,188,-46,142, +Thursday,7/21/2011 8:00,8,0,30,26,44,104,212,-212,0, +Thursday,7/21/2011 9:00,14,0,30,32,58,106,240,-382,-142, +Thursday,7/21/2011 10:00,18,0,34,40,66,106,262,-510,-248, +Thursday,7/21/2011 11:00,22,0,34,36,64,108,266,-610,-344, +Thursday,7/21/2011 12:00,26,0,36,36,64,106,268,-454,-186, +Thursday,7/21/2011 13:00,26,0,34,30,64,108,264,-666,-402, +Thursday,7/21/2011 14:00,28,0,34,32,60,106,260,-648,-388, +Thursday,7/21/2011 15:00,20,0,34,42,58,104,262,-134,128, +Thursday,7/21/2011 16:00,22,0,36,40,52,108,256,-252,4, +Thursday,7/21/2011 17:00,24,0,34,40,50,106,256,-426,-170, +Thursday,7/21/2011 18:00,28,0,34,44,36,106,248,-262,-14, +Thursday,7/21/2011 19:00,24,0,16,18,34,106,198,-130,68, +Thursday,7/21/2011 20:00,16,0,10,14,32,106,180,-16,164, +Thursday,7/21/2011 21:00,14,0,8,20,34,106,180,0,180, +Thursday,7/21/2011 22:00,10,0,6,14,32,104,168,0,168, +Thursday,7/21/2011 23:00,8,0,6,8,30,106,154,0,154, +Friday,7/22/2011 0:00,4,0,4,6,30,104,150,0,150, +Friday,7/22/2011 1:00,0,0,2,6,32,106,146,0,146, +Friday,7/22/2011 2:00,0,0,6,6,30,104,146,0,146, +Friday,7/22/2011 3:00,4,0,4,8,32,106,154,0,154, +Friday,7/22/2011 4:00,0,0,4,8,30,102,146,0,146, +Friday,7/22/2011 5:00,6,0,4,6,32,102,150,0,150, +Friday,7/22/2011 6:00,2,0,6,6,34,104,152,0,152, +Friday,7/22/2011 7:00,6,0,28,10,38,106,188,-44,144, +Friday,7/22/2011 8:00,10,0,28,20,46,104,206,-208,-2, +Friday,7/22/2011 9:00,12,0,32,30,54,104,230,-390,-160, +Friday,7/22/2011 10:00,18,0,34,32,58,106,246,-472,-226, +Friday,7/22/2011 11:00,30,0,34,34,58,108,264,-600,-336, +Friday,7/22/2011 12:00,26,0,32,30,60,108,256,-560,-304, +Friday,7/22/2011 13:00,30,0,32,28,58,106,254,-694,-440, +Friday,7/22/2011 14:00,30,0,32,30,54,106,250,-490,-240, +Friday,7/22/2011 15:00,30,0,34,30,56,108,258,-546,-288, +Friday,7/22/2011 16:00,26,0,32,34,50,106,248,-440,-192, +Friday,7/22/2011 17:00,30,0,34,34,42,108,246,-370,-124, +Friday,7/22/2011 18:00,22,0,30,36,40,106,234,-208,26, +Friday,7/22/2011 19:00,26,0,12,22,32,108,200,-120,80, +Friday,7/22/2011 20:00,18,0,14,22,32,106,192,-24,168, +Friday,7/22/2011 21:00,16,0,6,26,32,108,186,0,186, +Friday,7/22/2011 22:00,12,0,6,16,30,108,172,0,172, +Friday,7/22/2011 23:00,6,0,6,8,30,106,156,0,156, +Saturday,7/23/2011 0:00,4,0,8,4,30,106,152,0,152, +Saturday,7/23/2011 1:00,4,0,4,8,30,106,150,0,150, +Saturday,7/23/2011 2:00,2,0,4,8,30,106,148,0,148, +Saturday,7/23/2011 3:00,2,0,4,10,30,104,148,0,148, +Saturday,7/23/2011 4:00,2,0,4,8,30,104,150,0,150, +Saturday,7/23/2011 5:00,0,0,4,2,30,102,140,0,140, +Saturday,7/23/2011 6:00,0,0,4,6,28,102,140,0,140, +Saturday,7/23/2011 7:00,0,0,6,0,32,102,140,-36,104, +Saturday,7/23/2011 8:00,6,0,2,4,32,102,146,-200,-54, +Saturday,7/23/2011 9:00,8,0,6,4,30,104,152,-382,-230, +Saturday,7/23/2011 10:00,8,0,6,4,30,104,152,-516,-364, +Saturday,7/23/2011 11:00,10,0,6,2,30,106,154,-602,-448, +Saturday,7/23/2011 12:00,12,0,8,4,30,106,158,-660,-502, +Saturday,7/23/2011 13:00,18,0,6,2,30,106,162,-672,-510, +Saturday,7/23/2011 14:00,16,0,6,4,30,106,162,-664,-502, +Saturday,7/23/2011 15:00,16,0,8,2,30,106,164,-626,-462, +Saturday,7/23/2011 16:00,18,0,6,4,30,106,166,-496,-330, +Saturday,7/23/2011 17:00,20,0,6,4,28,106,162,-364,-202, +Saturday,7/23/2011 18:00,16,0,8,6,30,106,164,-186,-22, +Saturday,7/23/2011 19:00,16,0,6,6,30,108,164,-120,44, +Saturday,7/23/2011 20:00,12,0,6,4,30,106,158,-24,134, +Saturday,7/23/2011 21:00,10,0,4,4,26,108,152,0,152, +Saturday,7/23/2011 22:00,6,0,6,8,32,106,158,0,158, +Saturday,7/23/2011 23:00,4,0,4,8,30,106,150,0,150, +Sunday,7/24/2011 0:00,4,0,6,4,30,106,148,0,148, +Sunday,7/24/2011 1:00,4,0,2,4,30,104,144,0,144, +Sunday,7/24/2011 2:00,0,0,4,2,30,106,144,0,144, +Sunday,7/24/2011 3:00,2,0,6,4,30,106,146,0,146, +Sunday,7/24/2011 4:00,2,0,4,2,30,104,140,0,140, +Sunday,7/24/2011 5:00,2,0,6,4,30,104,146,0,146, +Sunday,7/24/2011 6:00,2,0,4,4,30,102,140,0,140, +Sunday,7/24/2011 7:00,2,0,6,2,30,104,144,-42,102, +Sunday,7/24/2011 8:00,4,0,6,2,30,104,148,-200,-52, +Sunday,7/24/2011 9:00,10,0,6,2,32,106,156,-368,-212, +Sunday,7/24/2011 10:00,10,0,8,2,30,106,158,-502,-344, +Sunday,7/24/2011 11:00,12,0,6,2,30,108,158,-594,-436, +Sunday,7/24/2011 12:00,12,0,6,0,30,108,156,-664,-508, +Sunday,7/24/2011 13:00,18,0,8,4,32,108,170,-652,-482, +Sunday,7/24/2011 14:00,16,0,6,2,30,110,164,-676,-512, +Sunday,7/24/2011 15:00,20,0,8,4,30,110,172,-618,-446, +Sunday,7/24/2011 16:00,20,0,6,2,30,106,162,-544,-382, +Sunday,7/24/2011 17:00,20,0,8,4,28,108,170,-440,-270, +Sunday,7/24/2011 18:00,14,0,6,2,30,108,162,-302,-140, +Sunday,7/24/2011 19:00,18,0,6,6,30,108,168,-86,82, +Sunday,7/24/2011 20:00,12,0,6,8,30,106,162,-18,144, +Sunday,7/24/2011 21:00,8,0,4,8,30,108,160,0,160, +Sunday,7/24/2011 22:00,6,0,8,8,30,106,156,0,156, +Sunday,7/24/2011 23:00,6,0,4,6,28,108,152,0,152, +Monday,7/25/2011 0:00,4,0,6,10,30,106,154,0,154, +Monday,7/25/2011 1:00,4,0,4,10,30,106,154,0,154, +Monday,7/25/2011 2:00,4,0,4,4,28,106,144,0,144, +Monday,7/25/2011 3:00,4,0,6,4,30,106,150,0,150, +Monday,7/25/2011 4:00,0,0,4,6,30,106,146,0,146, +Monday,7/25/2011 5:00,2,0,6,4,30,104,146,0,146, +Monday,7/25/2011 6:00,4,0,8,10,34,104,160,0,160, +Monday,7/25/2011 7:00,16,0,30,16,38,104,202,-42,160, +Monday,7/25/2011 8:00,14,0,32,24,48,106,226,-184,42, +Monday,7/25/2011 9:00,20,0,32,38,60,106,254,-346,-92, +Monday,7/25/2011 10:00,26,0,34,38,68,108,274,-502,-228, +Monday,7/25/2011 11:00,28,0,32,36,62,110,270,-590,-320, +Monday,7/25/2011 12:00,32,0,34,32,64,110,272,-646,-374, +Monday,7/25/2011 13:00,32,0,34,30,64,108,268,-630,-362, +Monday,7/25/2011 14:00,32,0,36,38,60,110,274,-316,-42, +Monday,7/25/2011 15:00,30,0,36,40,60,106,274,-260,14, +Monday,7/25/2011 16:00,28,0,34,36,56,110,264,-564,-300, +Monday,7/25/2011 17:00,30,0,34,36,50,104,254,-378,-124, +Monday,7/25/2011 18:00,28,0,32,40,38,108,248,-298,-50, +Monday,7/25/2011 19:00,22,0,12,18,34,108,194,-112,82, +Monday,7/25/2011 20:00,22,0,14,16,34,106,192,-12,180, +Monday,7/25/2011 21:00,12,0,6,20,34,108,180,0,180, +Monday,7/25/2011 22:00,14,0,6,14,34,106,172,0,172, +Monday,7/25/2011 23:00,10,0,6,10,30,106,164,0,164, +Tuesday,7/26/2011 0:00,8,0,4,4,32,104,154,0,154, +Tuesday,7/26/2011 1:00,2,0,2,6,30,108,150,0,150, +Tuesday,7/26/2011 2:00,4,0,6,4,30,106,150,0,150, +Tuesday,7/26/2011 3:00,0,0,4,6,30,106,146,0,146, +Tuesday,7/26/2011 4:00,4,0,4,6,32,106,154,0,154, +Tuesday,7/26/2011 5:00,0,0,4,8,32,104,148,0,148, +Tuesday,7/26/2011 6:00,4,0,6,8,32,106,158,0,158, +Tuesday,7/26/2011 7:00,12,0,30,20,40,104,204,-20,184, +Tuesday,7/26/2011 8:00,10,0,30,32,48,106,228,-100,128, +Tuesday,7/26/2011 9:00,16,0,32,40,60,108,256,-340,-84, +Tuesday,7/26/2011 10:00,24,0,36,38,64,108,268,-438,-170, +Tuesday,7/26/2011 11:00,30,0,36,36,62,108,272,-598,-326, +Tuesday,7/26/2011 12:00,32,0,34,38,70,108,282,-474,-192, +Tuesday,7/26/2011 13:00,32,0,34,38,64,108,276,-322,-46, +Tuesday,7/26/2011 14:00,34,0,36,36,60,108,272,-410,-138, +Tuesday,7/26/2011 15:00,30,0,32,36,62,108,268,-330,-62, +Tuesday,7/26/2011 16:00,30,0,34,42,58,110,274,-270,4, +Tuesday,7/26/2011 17:00,30,0,36,40,50,108,260,-324,-64, +Tuesday,7/26/2011 18:00,26,0,32,46,38,108,250,-70,180, +Tuesday,7/26/2011 19:00,16,0,14,26,36,108,202,0,202, +Tuesday,7/26/2011 20:00,10,0,10,28,36,106,190,0,190, +Tuesday,7/26/2011 21:00,6,0,4,22,32,108,172,0,172, +Tuesday,7/26/2011 22:00,4,0,8,16,30,106,164,0,164, +Tuesday,7/26/2011 23:00,4,0,4,6,32,106,152,0,152, +Wednesday,7/27/2011 0:00,4,0,4,6,34,106,154,0,154, +Wednesday,7/27/2011 1:00,0,0,4,4,32,106,146,0,146, +Wednesday,7/27/2011 2:00,0,0,4,4,30,106,146,0,146, +Wednesday,7/27/2011 3:00,0,0,4,6,32,106,150,0,150, +Wednesday,7/27/2011 4:00,2,0,4,4,32,104,148,0,148, +Wednesday,7/27/2011 5:00,2,0,4,4,34,104,148,0,148, +Wednesday,7/27/2011 6:00,4,0,8,8,32,104,158,0,158, +Wednesday,7/27/2011 7:00,8,0,30,16,38,104,196,-22,174, +Wednesday,7/27/2011 8:00,8,0,30,32,50,106,224,-156,68, +Wednesday,7/27/2011 9:00,10,0,30,36,58,108,242,-316,-74, +Wednesday,7/27/2011 10:00,16,0,34,40,64,108,264,-502,-238, +Wednesday,7/27/2011 11:00,22,0,30,38,60,108,260,-592,-332, +Wednesday,7/27/2011 12:00,26,0,34,34,64,108,268,-620,-352, +Wednesday,7/27/2011 13:00,30,0,34,34,60,108,264,-380,-116, +Wednesday,7/27/2011 14:00,26,0,36,34,62,108,264,-546,-282, +Wednesday,7/27/2011 15:00,30,0,30,38,62,108,266,-272,-6, +Wednesday,7/27/2011 16:00,26,0,36,36,56,110,262,-434,-172, +Wednesday,7/27/2011 17:00,28,0,32,40,48,108,256,-308,-52, +Wednesday,7/27/2011 18:00,26,0,32,44,42,108,252,-38,214, +Wednesday,7/27/2011 19:00,16,0,14,28,38,108,204,0,204, +Wednesday,7/27/2011 20:00,16,0,12,30,32,108,198,-4,194, +Wednesday,7/27/2011 21:00,10,0,6,20,34,108,180,0,180, +Wednesday,7/27/2011 22:00,4,0,4,14,34,106,162,0,162, +Wednesday,7/27/2011 23:00,4,0,6,6,32,106,154,0,154, +Thursday,7/28/2011 0:00,4,0,4,2,30,106,148,0,148, +Thursday,7/28/2011 1:00,4,0,6,4,32,106,152,0,152, +Thursday,7/28/2011 2:00,2,0,4,2,30,106,146,0,146, +Thursday,7/28/2011 3:00,2,0,6,4,32,106,148,0,148, +Thursday,7/28/2011 4:00,2,0,4,2,32,104,144,0,144, +Thursday,7/28/2011 5:00,2,0,6,6,32,104,150,0,150, +Thursday,7/28/2011 6:00,2,0,6,10,34,104,156,0,156, +Thursday,7/28/2011 7:00,8,0,30,14,42,104,200,-40,160, +Thursday,7/28/2011 8:00,8,0,30,26,48,104,218,-196,22, +Thursday,7/28/2011 9:00,14,0,32,38,62,106,252,-368,-116, +Thursday,7/28/2011 10:00,16,0,34,36,66,108,260,-504,-244, +Thursday,7/28/2011 11:00,26,0,32,36,70,108,270,-600,-330, +Thursday,7/28/2011 12:00,30,0,34,32,66,108,270,-666,-396, +Thursday,7/28/2011 13:00,32,0,34,32,62,110,272,-678,-406, +Thursday,7/28/2011 14:00,28,0,38,30,68,108,272,-698,-426, +Thursday,7/28/2011 15:00,32,0,32,40,60,108,274,-192,82, +Thursday,7/28/2011 16:00,26,0,34,40,58,108,266,-482,-216, +Thursday,7/28/2011 17:00,22,0,34,38,54,108,256,-310,-54, +Thursday,7/28/2011 18:00,24,0,32,42,40,106,246,-126,120, +Thursday,7/28/2011 19:00,16,0,12,18,36,108,190,-76,114, +Thursday,7/28/2011 20:00,14,0,12,16,30,106,178,-26,152, +Thursday,7/28/2011 21:00,10,0,4,18,34,106,174,0,174, +Thursday,7/28/2011 22:00,6,0,8,14,32,104,166,0,166, +Thursday,7/28/2011 23:00,4,0,4,6,30,106,150,0,150, +Friday,7/29/2011 0:00,4,0,6,4,30,104,150,0,150, +Friday,7/29/2011 1:00,0,0,4,4,30,106,144,0,144, +Friday,7/29/2011 2:00,4,0,4,6,30,104,150,0,150, +Friday,7/29/2011 3:00,2,0,6,4,30,106,148,0,148, +Friday,7/29/2011 4:00,2,0,4,4,30,106,146,0,146, +Friday,7/29/2011 5:00,0,0,6,6,32,104,150,0,150, +Friday,7/29/2011 6:00,2,0,6,8,32,104,152,0,152, +Friday,7/29/2011 7:00,6,0,30,12,38,104,188,-30,158, +Friday,7/29/2011 8:00,12,0,28,22,44,104,210,-196,14, +Friday,7/29/2011 9:00,12,0,30,32,52,104,230,-362,-132, +Friday,7/29/2011 10:00,10,0,34,32,60,106,242,-500,-258, +Friday,7/29/2011 11:00,20,0,34,32,58,106,252,-602,-350, +Friday,7/29/2011 12:00,26,0,32,28,56,108,250,-662,-412, +Friday,7/29/2011 13:00,28,0,34,28,58,108,256,-678,-422, +Friday,7/29/2011 14:00,26,0,34,26,56,108,248,-666,-418, +Friday,7/29/2011 15:00,30,0,32,30,48,108,246,-560,-314, +Friday,7/29/2011 16:00,26,0,32,30,50,108,248,-486,-238, +Friday,7/29/2011 17:00,28,0,34,34,42,104,240,-290,-50, +Friday,7/29/2011 18:00,24,0,30,36,38,110,238,-260,-22, +Friday,7/29/2011 19:00,22,0,12,16,32,106,190,-110,80, +Friday,7/29/2011 20:00,16,0,12,16,34,106,184,-6,178, +Friday,7/29/2011 21:00,10,0,6,16,30,106,166,0,166, +Friday,7/29/2011 22:00,10,0,4,12,30,108,164,0,164, +Friday,7/29/2011 23:00,6,0,6,6,28,106,154,0,154, +Saturday,7/30/2011 0:00,4,0,2,4,30,106,148,0,148, +Saturday,7/30/2011 1:00,0,0,4,4,30,106,144,0,144, +Saturday,7/30/2011 2:00,4,0,6,4,28,106,148,0,148, +Saturday,7/30/2011 3:00,2,0,4,4,30,104,144,0,144, +Saturday,7/30/2011 4:00,2,0,4,4,30,104,146,0,146, +Saturday,7/30/2011 5:00,2,0,6,4,28,104,146,0,146, +Saturday,7/30/2011 6:00,0,0,4,4,28,104,140,0,140, +Saturday,7/30/2011 7:00,2,0,6,6,30,102,146,-38,108, +Saturday,7/30/2011 8:00,4,0,4,6,30,104,148,-194,-46, +Saturday,7/30/2011 9:00,6,0,4,4,30,104,148,-372,-224, +Saturday,7/30/2011 10:00,6,0,6,4,28,106,150,-510,-360, +Saturday,7/30/2011 11:00,10,0,6,4,30,106,156,-594,-438, +Saturday,7/30/2011 12:00,12,0,6,6,30,108,162,-650,-488, +Saturday,7/30/2011 13:00,14,0,2,4,30,108,158,-680,-522, +Saturday,7/30/2011 14:00,16,0,6,2,30,106,162,-670,-508, +Saturday,7/30/2011 15:00,20,0,8,4,30,106,166,-618,-452, +Saturday,7/30/2011 16:00,20,0,6,4,28,108,166,-550,-384, +Saturday,7/30/2011 17:00,20,0,8,4,30,106,166,-432,-266, +Saturday,7/30/2011 18:00,16,0,6,2,30,106,160,-282,-122, +Saturday,7/30/2011 19:00,16,0,8,4,28,106,162,-118,44, +Saturday,7/30/2011 20:00,16,0,6,6,30,106,164,-22,142, +Saturday,7/30/2011 21:00,8,0,8,8,28,108,160,0,160, +Saturday,7/30/2011 22:00,6,0,6,8,28,108,154,0,154, +Saturday,7/30/2011 23:00,6,0,4,6,26,106,148,0,148, +Sunday,7/31/2011 0:00,0,0,6,6,30,106,146,0,146, +Sunday,7/31/2011 1:00,4,0,4,4,30,106,148,0,148, +Sunday,7/31/2011 2:00,0,0,6,6,28,106,146,0,146, +Sunday,7/31/2011 3:00,4,0,4,6,28,106,148,0,148, +Sunday,7/31/2011 4:00,0,0,4,6,30,106,146,0,146, +Sunday,7/31/2011 5:00,0,0,4,6,30,106,146,0,146, +Sunday,7/31/2011 6:00,4,0,6,6,28,104,148,0,148, +Sunday,7/31/2011 7:00,2,0,6,4,30,104,146,-34,112, +Sunday,7/31/2011 8:00,4,0,4,4,28,106,146,-188,-42, +Sunday,7/31/2011 9:00,6,0,6,4,28,104,148,-362,-214, +Sunday,7/31/2011 10:00,12,0,8,4,30,106,160,-498,-338, +Sunday,7/31/2011 11:00,12,0,6,4,28,108,158,-592,-434, +Sunday,7/31/2011 12:00,18,0,6,4,30,110,168,-650,-482, +Sunday,7/31/2011 13:00,18,0,6,2,28,110,162,-670,-508, +Sunday,7/31/2011 14:00,18,0,6,4,30,110,166,-660,-494, +Sunday,7/31/2011 15:00,18,0,8,4,28,106,164,-616,-452, +Sunday,7/31/2011 16:00,22,0,6,2,30,106,166,-536,-370, +Sunday,7/31/2011 17:00,18,0,8,4,30,108,168,-450,-282, +Sunday,7/31/2011 18:00,18,0,6,2,28,108,162,-140,22, +Sunday,7/31/2011 19:00,16,0,4,4,30,108,160,-54,106, +Sunday,7/31/2011 20:00,12,0,6,4,28,106,156,0,156, +Sunday,7/31/2011 21:00,8,0,6,6,30,110,160,0,160, +Sunday,7/31/2011 22:00,10,0,4,6,30,106,154,0,154, +Sunday,7/31/2011 23:00,2,0,4,4,30,108,148,0,148, +Monday,08/01/2011 00:00,2,0,6,4,28,106,148,0,148, +Monday,08/01/2011 01:00,6,0,4,4,30,106,150,0,150, +Monday,08/01/2011 02:00,2,0,4,2,28,108,144,0,144, +Monday,08/01/2011 03:00,2,0,8,6,30,106,152,0,152, +Monday,08/01/2011 04:00,4,0,2,2,30,106,144,0,144, +Monday,08/01/2011 05:00,0,0,6,4,30,106,146,0,146, +Monday,08/01/2011 06:00,4,0,8,6,30,104,152,0,152, +Monday,08/01/2011 07:00,18,0,30,18,38,104,208,-34,174, +Monday,08/01/2011 08:00,20,0,32,28,46,106,232,-180,52, +Monday,08/01/2011 09:00,26,0,34,34,62,106,262,-354,-92, +Monday,08/01/2011 10:00,26,0,34,38,64,110,272,-484,-212, +Monday,08/01/2011 11:00,36,0,32,36,66,108,278,-534,-256, +Monday,08/01/2011 12:00,32,0,34,34,66,108,274,-398,-124, +Monday,08/01/2011 13:00,36,0,32,34,62,108,274,-320,-46, +Monday,08/01/2011 14:00,36,0,36,42,64,108,284,-190,94, +Monday,08/01/2011 15:00,36,0,34,38,58,108,274,-236,38, +Monday,08/01/2011 16:00,32,0,34,40,58,108,272,-200,72, +Monday,08/01/2011 17:00,36,0,32,40,50,110,268,-254,14, +Monday,08/01/2011 18:00,30,0,30,42,40,108,248,-138,110, +Monday,08/01/2011 19:00,18,0,14,12,34,110,188,-96,92, +Monday,08/01/2011 20:00,16,0,12,16,34,108,184,-14,170, +Monday,08/01/2011 21:00,12,0,6,20,34,108,180,0,180, +Monday,08/01/2011 22:00,12,0,6,12,30,108,168,0,168, +Monday,08/01/2011 23:00,10,0,8,8,32,106,164,0,164, +Tuesday,08/02/2011 00:00,6,0,4,6,30,108,154,0,154, +Tuesday,08/02/2011 01:00,4,0,6,4,32,106,150,0,150, +Tuesday,08/02/2011 02:00,4,0,6,4,30,106,150,0,150, +Tuesday,08/02/2011 03:00,0,0,4,2,32,106,146,0,146, +Tuesday,08/02/2011 04:00,4,0,4,4,30,106,148,0,148, +Tuesday,08/02/2011 05:00,2,0,4,4,32,104,146,0,146, +Tuesday,08/02/2011 06:00,6,0,8,8,34,104,158,0,158, +Tuesday,08/02/2011 07:00,10,0,30,12,40,106,196,-32,164, +Tuesday,08/02/2011 08:00,12,0,32,24,48,106,222,-170,52, +Tuesday,08/02/2011 09:00,18,0,30,32,60,106,246,-288,-42, +Tuesday,08/02/2011 10:00,24,0,34,34,66,108,266,-452,-186, +Tuesday,08/02/2011 11:00,30,0,32,30,64,108,266,-536,-270, +Tuesday,08/02/2011 12:00,30,0,34,28,64,110,266,-570,-304, +Tuesday,08/02/2011 13:00,32,0,32,38,64,108,274,-128,146, +Tuesday,08/02/2011 14:00,28,0,34,34,64,110,270,-272,-2, +Tuesday,08/02/2011 15:00,28,0,32,40,58,110,268,-164,104, +Tuesday,08/02/2011 16:00,28,0,32,44,54,110,268,-124,144, +Tuesday,08/02/2011 17:00,24,0,32,40,50,110,258,-216,42, +Tuesday,08/02/2011 18:00,26,0,32,36,40,108,242,-250,-8, +Tuesday,08/02/2011 19:00,16,0,14,20,34,108,190,-48,142, +Tuesday,08/02/2011 20:00,12,0,12,22,32,108,186,-18,168, +Tuesday,08/02/2011 21:00,8,0,4,20,32,108,172,0,172, +Tuesday,08/02/2011 22:00,6,0,8,18,34,108,172,0,172, +Tuesday,08/02/2011 23:00,6,0,4,10,30,106,156,0,156, +Wednesday,08/03/2011 00:00,2,0,6,6,30,106,152,0,152, +Wednesday,08/03/2011 01:00,2,0,4,6,30,106,150,0,150, +Wednesday,08/03/2011 02:00,0,0,4,6,30,106,146,0,146, +Wednesday,08/03/2011 03:00,4,0,4,6,30,106,150,0,150, +Wednesday,08/03/2011 04:00,0,0,6,4,32,106,150,0,150, +Wednesday,08/03/2011 05:00,2,0,6,6,30,104,148,0,148, +Wednesday,08/03/2011 06:00,6,0,8,6,30,104,154,0,154, +Wednesday,08/03/2011 07:00,6,0,26,18,40,102,192,-6,186, +Wednesday,08/03/2011 08:00,8,0,28,28,50,104,218,-96,122, +Wednesday,08/03/2011 09:00,14,0,30,38,58,104,244,-368,-124, +Wednesday,08/03/2011 10:00,14,0,32,38,68,106,258,-526,-268, +Wednesday,08/03/2011 11:00,24,0,34,36,64,108,264,-592,-328, +Wednesday,08/03/2011 12:00,30,0,34,30,62,106,262,-660,-398, +Wednesday,08/03/2011 13:00,26,0,32,30,66,108,262,-622,-360, +Wednesday,08/03/2011 14:00,32,0,34,30,60,108,266,-630,-364, +Wednesday,08/03/2011 15:00,30,0,34,38,60,108,268,-356,-88, +Wednesday,08/03/2011 16:00,28,0,30,36,54,108,258,-448,-190, +Wednesday,08/03/2011 17:00,26,0,34,42,50,110,262,-138,124, +Wednesday,08/03/2011 18:00,26,0,30,44,42,108,250,-24,226, +Wednesday,08/03/2011 19:00,16,0,12,24,32,106,192,-44,148, +Wednesday,08/03/2011 20:00,14,0,12,20,36,106,186,-36,150, +Wednesday,08/03/2011 21:00,10,0,4,20,36,104,176,0,176, +Wednesday,08/03/2011 22:00,6,0,6,16,30,106,166,0,166, +Wednesday,08/03/2011 23:00,4,0,4,8,30,106,150,0,150, +Thursday,08/04/2011 00:00,4,0,4,4,32,106,150,0,150, +Thursday,08/04/2011 01:00,4,0,6,4,32,106,152,0,152, +Thursday,08/04/2011 02:00,0,0,4,4,30,104,142,0,142, +Thursday,08/04/2011 03:00,2,0,4,4,30,104,144,0,144, +Thursday,08/04/2011 04:00,0,0,4,4,32,106,146,0,146, +Thursday,08/04/2011 05:00,2,0,4,6,32,104,146,0,146, +Thursday,08/04/2011 06:00,4,0,6,4,30,104,150,0,150, +Thursday,08/04/2011 07:00,8,0,28,12,42,102,194,-50,144, +Thursday,08/04/2011 08:00,8,0,28,28,50,104,216,-180,36, +Thursday,08/04/2011 09:00,12,0,28,38,58,104,238,-364,-126, +Thursday,08/04/2011 10:00,20,0,32,40,64,106,262,-500,-238, +Thursday,08/04/2011 11:00,24,0,30,30,64,106,256,-600,-344, +Thursday,08/04/2011 12:00,26,0,32,28,68,106,260,-648,-388, +Thursday,08/04/2011 13:00,24,0,32,40,64,108,266,-172,94, +Thursday,08/04/2011 14:00,24,0,30,40,60,106,260,-208,52, +Thursday,08/04/2011 15:00,20,0,32,50,56,106,264,-100,164, +Thursday,08/04/2011 16:00,16,0,32,44,58,108,258,-174,84, +Thursday,08/04/2011 17:00,20,0,30,42,50,104,248,-164,84, +Thursday,08/04/2011 18:00,14,0,32,42,40,104,234,-98,136, +Thursday,08/04/2011 19:00,8,0,14,18,34,106,180,-100,80, +Thursday,08/04/2011 20:00,8,0,10,18,36,104,176,-26,150, +Thursday,08/04/2011 21:00,8,0,8,20,34,104,172,0,172, +Thursday,08/04/2011 22:00,4,0,4,14,30,106,156,0,156, +Thursday,08/04/2011 23:00,4,0,4,10,32,104,154,0,154, +Friday,08/05/2011 00:00,0,0,6,10,32,104,154,0,154, +Friday,08/05/2011 01:00,4,0,4,8,32,104,152,0,152, +Friday,08/05/2011 02:00,0,0,4,4,30,104,142,0,142, +Friday,08/05/2011 03:00,2,0,4,2,32,106,146,0,146, +Friday,08/05/2011 04:00,0,0,4,6,32,102,144,0,144, +Friday,08/05/2011 05:00,2,0,4,4,30,102,144,0,144, +Friday,08/05/2011 06:00,2,0,10,8,32,102,154,0,154, +Friday,08/05/2011 07:00,4,0,24,12,40,102,182,-32,150, +Friday,08/05/2011 08:00,6,0,26,26,46,102,208,-188,20, +Friday,08/05/2011 09:00,10,0,30,36,52,106,234,-366,-132, +Friday,08/05/2011 10:00,14,0,32,40,60,106,252,-502,-250, +Friday,08/05/2011 11:00,16,0,30,38,56,106,246,-604,-358, +Friday,08/05/2011 12:00,20,0,28,32,60,104,244,-670,-426, +Friday,08/05/2011 13:00,22,0,32,30,56,108,250,-680,-430, +Friday,08/05/2011 14:00,20,0,30,30,50,106,236,-668,-432, +Friday,08/05/2011 15:00,24,0,30,34,52,104,244,-634,-390, +Friday,08/05/2011 16:00,26,0,28,38,50,106,248,-396,-148, +Friday,08/05/2011 17:00,24,0,32,36,40,106,238,-276,-38, +Friday,08/05/2011 18:00,20,0,32,34,40,104,230,-248,-18, +Friday,08/05/2011 19:00,20,0,12,20,34,106,192,-116,76, +Friday,08/05/2011 20:00,14,0,12,20,32,104,184,-8,176, +Friday,08/05/2011 21:00,10,0,6,12,30,104,164,0,164, +Friday,08/05/2011 22:00,8,0,4,6,30,104,152,0,152, +Friday,08/05/2011 23:00,4,0,6,6,32,104,152,0,152, +Saturday,08/06/2011 00:00,2,0,2,4,28,104,140,0,140, +Saturday,08/06/2011 01:00,4,0,4,6,30,102,146,0,146, +Saturday,08/06/2011 02:00,4,0,6,4,32,100,148,0,148, +Saturday,08/06/2011 03:00,0,0,2,6,28,102,140,0,140, +Saturday,08/06/2011 04:00,0,0,4,4,30,102,142,0,142, +Saturday,08/06/2011 05:00,4,0,4,8,28,102,146,0,146, +Saturday,08/06/2011 06:00,0,0,4,6,32,100,142,0,142, +Saturday,08/06/2011 07:00,2,0,6,6,30,100,144,-30,114, +Saturday,08/06/2011 08:00,4,0,4,6,30,102,146,-180,-34, +Saturday,08/06/2011 09:00,2,0,6,4,30,102,144,-360,-216, +Saturday,08/06/2011 10:00,4,0,6,2,30,104,146,-502,-356, +Saturday,08/06/2011 11:00,10,0,6,2,30,106,152,-604,-452, +Saturday,08/06/2011 12:00,4,0,6,2,30,106,150,-662,-512, +Saturday,08/06/2011 13:00,10,0,4,4,24,106,150,-690,-540, +Saturday,08/06/2011 14:00,20,0,6,4,30,106,168,-686,-518, +Saturday,08/06/2011 15:00,14,0,6,8,28,106,160,-538,-378, +Saturday,08/06/2011 16:00,16,0,8,6,28,106,162,-360,-198, +Saturday,08/06/2011 17:00,14,0,6,8,30,102,160,-290,-130, +Saturday,08/06/2011 18:00,16,0,6,6,28,106,160,-190,-30, +Saturday,08/06/2011 19:00,10,0,6,10,28,104,158,-62,96, +Saturday,08/06/2011 20:00,10,0,4,8,28,104,156,-16,140, +Saturday,08/06/2011 21:00,8,0,6,8,28,104,154,0,154, +Saturday,08/06/2011 22:00,2,0,6,8,30,102,146,0,146, +Saturday,08/06/2011 23:00,4,0,4,6,30,104,148,0,148, +Sunday,08/07/2011 00:00,4,0,6,4,28,100,142,0,142, +Sunday,08/07/2011 01:00,0,0,4,6,30,102,142,0,142, +Sunday,08/07/2011 02:00,4,0,4,4,30,102,146,0,146, +Sunday,08/07/2011 03:00,2,0,4,6,28,100,140,0,140, +Sunday,08/07/2011 04:00,0,0,4,4,30,102,142,0,142, +Sunday,08/07/2011 05:00,0,0,4,6,30,98,138,0,138, +Sunday,08/07/2011 06:00,2,0,4,8,30,98,140,0,140, +Sunday,08/07/2011 07:00,0,0,6,8,30,98,142,-30,112, +Sunday,08/07/2011 08:00,4,0,4,6,28,98,142,-194,-52, +Sunday,08/07/2011 09:00,4,0,4,4,30,100,144,-370,-226, +Sunday,08/07/2011 10:00,2,0,6,4,32,104,146,-516,-370, +Sunday,08/07/2011 11:00,8,0,6,6,30,104,152,-616,-464, +Sunday,08/07/2011 12:00,10,0,6,6,28,106,154,-658,-504, +Sunday,08/07/2011 13:00,12,0,4,4,30,104,156,-688,-532, +Sunday,08/07/2011 14:00,16,0,4,4,30,102,158,-678,-520, +Sunday,08/07/2011 15:00,18,0,8,6,32,106,168,-584,-416, +Sunday,08/07/2011 16:00,14,0,6,4,28,102,152,-442,-290, +Sunday,08/07/2011 17:00,18,0,8,6,30,106,164,-298,-134, +Sunday,08/07/2011 18:00,14,0,8,6,30,104,162,-254,-92, +Sunday,08/07/2011 19:00,14,0,4,6,30,102,158,-102,56, +Sunday,08/07/2011 20:00,10,0,6,8,28,104,156,-8,148, +Sunday,08/07/2011 21:00,10,0,6,10,30,102,158,0,158, +Sunday,08/07/2011 22:00,8,0,6,8,30,100,152,0,152, +Sunday,08/07/2011 23:00,4,0,4,6,30,102,148,0,148, +Monday,08/08/2011 00:00,2,0,4,4,28,100,138,0,138, +Monday,08/08/2011 01:00,0,0,8,2,30,100,140,0,140, +Monday,08/08/2011 02:00,2,0,4,4,30,100,140,0,140, +Monday,08/08/2011 03:00,2,0,4,8,30,100,144,0,144, +Monday,08/08/2011 04:00,0,0,4,4,30,98,136,0,136, +Monday,08/08/2011 05:00,2,0,4,6,30,100,140,0,140, +Monday,08/08/2011 06:00,4,0,8,10,32,98,150,0,150, +Monday,08/08/2011 07:00,10,0,30,18,38,98,194,-30,164, +Monday,08/08/2011 08:00,6,0,28,30,46,104,214,-180,34, +Monday,08/08/2011 09:00,12,0,30,36,60,98,240,-358,-118, +Monday,08/08/2011 10:00,20,0,34,38,70,102,264,-506,-242, +Monday,08/08/2011 11:00,24,0,30,34,60,102,252,-598,-346, +Monday,08/08/2011 12:00,28,0,32,30,64,102,258,-686,-428, +Monday,08/08/2011 13:00,24,0,32,28,66,100,252,-708,-456, +Monday,08/08/2011 14:00,28,0,32,30,62,102,252,-718,-466, +Monday,08/08/2011 15:00,30,0,32,32,62,102,260,-674,-414, +Monday,08/08/2011 16:00,30,0,30,36,60,104,260,-566,-306, +Monday,08/08/2011 17:00,30,0,34,36,50,104,254,-440,-186, +Monday,08/08/2011 18:00,28,0,28,36,40,104,234,-304,-70, +Monday,08/08/2011 19:00,24,0,12,12,38,104,190,-154,36, +Monday,08/08/2011 20:00,14,0,12,14,34,102,176,-18,158, +Monday,08/08/2011 21:00,16,0,6,18,36,104,180,0,180, +Monday,08/08/2011 22:00,6,0,4,14,34,102,160,0,160, +Monday,08/08/2011 23:00,2,0,4,4,30,102,144,0,144, +Tuesday,08/09/2011 00:00,0,0,4,4,36,102,146,0,146, +Tuesday,08/09/2011 01:00,4,0,4,4,30,102,144,0,144, +Tuesday,08/09/2011 02:00,0,0,4,8,32,98,142,0,142, +Tuesday,08/09/2011 03:00,2,0,4,6,32,100,144,0,144, +Tuesday,08/09/2011 04:00,2,0,6,8,32,100,148,0,148, +Tuesday,08/09/2011 05:00,2,0,4,4,30,100,140,0,140, +Tuesday,08/09/2011 06:00,2,0,6,8,36,98,150,0,150, +Tuesday,08/09/2011 07:00,2,0,26,18,40,100,184,-28,156, +Tuesday,08/09/2011 08:00,8,0,32,28,50,100,218,-178,40, +Tuesday,08/09/2011 09:00,12,0,30,40,58,100,240,-360,-120, +Tuesday,08/09/2011 10:00,14,0,30,36,62,102,246,-500,-254, +Tuesday,08/09/2011 11:00,16,0,32,34,62,102,246,-600,-354, +Tuesday,08/09/2011 12:00,14,0,32,30,68,104,250,-654,-404, +Tuesday,08/09/2011 13:00,22,0,32,30,62,104,250,-672,-422, +Tuesday,08/09/2011 14:00,20,0,32,30,64,104,248,-680,-432, +Tuesday,08/09/2011 15:00,18,0,34,32,60,104,250,-558,-308, +Tuesday,08/09/2011 16:00,26,0,32,40,58,104,260,-258,2, +Tuesday,08/09/2011 17:00,28,0,30,42,50,102,256,-158,98, +Tuesday,08/09/2011 18:00,28,0,32,44,40,106,250,-220,30, +Tuesday,08/09/2011 19:00,22,0,12,16,38,102,190,-140,50, +Tuesday,08/09/2011 20:00,20,0,10,22,32,104,188,-28,160, +Tuesday,08/09/2011 21:00,14,0,6,26,34,106,188,0,188, +Tuesday,08/09/2011 22:00,10,0,8,18,30,104,172,0,172, +Tuesday,08/09/2011 23:00,8,0,4,8,34,104,156,0,156, +Wednesday,08/10/2011 00:00,4,0,4,6,30,106,152,0,152, +Wednesday,08/10/2011 01:00,0,0,4,6,30,106,146,0,146, +Wednesday,08/10/2011 02:00,0,0,2,4,32,106,146,0,146, +Wednesday,08/10/2011 03:00,0,0,6,6,32,106,150,0,150, +Wednesday,08/10/2011 04:00,2,0,4,8,30,104,148,0,148, +Wednesday,08/10/2011 05:00,2,0,6,6,34,104,150,0,150, +Wednesday,08/10/2011 06:00,4,0,8,10,32,104,160,0,160, +Wednesday,08/10/2011 07:00,8,0,28,20,40,104,200,-10,190, +Wednesday,08/10/2011 08:00,6,0,30,28,46,104,212,-40,172, +Wednesday,08/10/2011 09:00,6,0,30,46,58,104,244,-50,194, +Wednesday,08/10/2011 10:00,12,0,34,40,62,104,252,-362,-110, +Wednesday,08/10/2011 11:00,14,0,32,36,64,102,250,-498,-248, +Wednesday,08/10/2011 12:00,18,0,32,32,62,104,250,-634,-384, +Wednesday,08/10/2011 13:00,18,0,30,30,62,104,246,-688,-442, +Wednesday,08/10/2011 14:00,24,0,32,32,60,106,254,-648,-394, +Wednesday,08/10/2011 15:00,26,0,34,38,56,106,262,-520,-258, +Wednesday,08/10/2011 16:00,26,0,32,38,58,106,260,-498,-238, +Wednesday,08/10/2011 17:00,30,0,32,40,48,106,258,-330,-72, +Wednesday,08/10/2011 18:00,20,0,30,40,44,106,242,-240,2, +Wednesday,08/10/2011 19:00,20,0,12,20,34,102,188,-50,138, +Wednesday,08/10/2011 20:00,14,0,12,20,34,102,182,-4,178, +Wednesday,08/10/2011 21:00,8,0,4,22,32,104,172,0,172, +Wednesday,08/10/2011 22:00,6,0,6,16,36,102,164,0,164, +Wednesday,08/10/2011 23:00,6,0,4,10,32,102,152,0,152, +Thursday,08/11/2011 00:00,2,0,6,10,28,104,148,0,148, +Thursday,08/11/2011 01:00,2,0,4,8,34,102,150,0,150, +Thursday,08/11/2011 02:00,2,0,4,8,32,100,146,0,146, +Thursday,08/11/2011 03:00,0,0,4,6,32,98,140,0,140, +Thursday,08/11/2011 04:00,0,0,4,8,28,98,138,0,138, +Thursday,08/11/2011 05:00,2,0,4,8,34,98,148,0,148, +Thursday,08/11/2011 06:00,0,0,6,8,32,98,144,0,144, +Thursday,08/11/2011 07:00,2,0,28,18,40,98,188,-26,162, +Thursday,08/11/2011 08:00,8,0,28,30,50,100,216,-174,42, +Thursday,08/11/2011 09:00,12,0,30,42,60,102,246,-354,-108, +Thursday,08/11/2011 10:00,16,0,30,38,64,102,252,-456,-204, +Thursday,08/11/2011 11:00,20,0,30,36,64,102,252,-606,-354, +Thursday,08/11/2011 12:00,26,0,32,32,66,102,260,-646,-386, +Thursday,08/11/2011 13:00,26,0,30,32,64,102,254,-630,-376, +Thursday,08/11/2011 14:00,34,0,30,32,66,104,266,-614,-348, +Thursday,08/11/2011 15:00,32,0,34,36,60,104,268,-402,-134, +Thursday,08/11/2011 16:00,28,0,32,38,58,104,260,-398,-138, +Thursday,08/11/2011 17:00,30,0,32,42,50,102,256,-266,-10, +Thursday,08/11/2011 18:00,26,0,30,40,42,104,242,-130,112, +Thursday,08/11/2011 19:00,20,0,14,22,34,102,192,-62,130, +Thursday,08/11/2011 20:00,16,0,10,24,34,102,188,-4,184, +Thursday,08/11/2011 21:00,6,0,4,26,32,104,174,0,174, +Thursday,08/11/2011 22:00,6,0,4,16,34,102,162,0,162, +Thursday,08/11/2011 23:00,8,0,4,6,32,102,150,0,150, +Friday,08/12/2011 00:00,0,0,4,6,32,102,144,0,144, +Friday,08/12/2011 01:00,0,0,4,2,32,102,140,0,140, +Friday,08/12/2011 02:00,0,0,2,4,30,102,140,0,140, +Friday,08/12/2011 03:00,0,0,4,4,32,102,144,0,144, +Friday,08/12/2011 04:00,0,0,2,4,32,102,142,0,142, +Friday,08/12/2011 05:00,0,0,6,4,30,100,140,0,140, +Friday,08/12/2011 06:00,2,0,6,8,34,100,150,0,150, +Friday,08/12/2011 07:00,8,0,28,14,38,100,186,-24,162, +Friday,08/12/2011 08:00,8,0,28,24,46,100,208,-170,38, +Friday,08/12/2011 09:00,16,0,30,36,52,104,238,-352,-114, +Friday,08/12/2011 10:00,16,0,32,36,60,104,248,-496,-248, +Friday,08/12/2011 11:00,22,0,32,32,60,104,250,-598,-348, +Friday,08/12/2011 12:00,20,0,30,30,58,106,242,-650,-408, +Friday,08/12/2011 13:00,26,0,32,24,54,106,244,-670,-426, +Friday,08/12/2011 14:00,24,0,34,26,52,106,242,-662,-420, +Friday,08/12/2011 15:00,30,0,32,30,56,106,254,-616,-362, +Friday,08/12/2011 16:00,26,0,32,32,50,108,248,-528,-280, +Friday,08/12/2011 17:00,26,0,34,36,40,106,242,-404,-162, +Friday,08/12/2011 18:00,22,0,32,36,42,108,238,-258,-20, +Friday,08/12/2011 19:00,20,0,14,18,32,104,188,-86,102, +Friday,08/12/2011 20:00,14,0,10,18,30,102,176,-8,168, +Friday,08/12/2011 21:00,8,0,6,22,30,108,176,0,176, +Friday,08/12/2011 22:00,8,0,4,14,30,104,162,0,162, +Friday,08/12/2011 23:00,4,0,4,10,30,102,150,0,150, +Saturday,8/13/2011 0:00,4,0,4,6,28,104,146,0,146, +Saturday,8/13/2011 1:00,0,0,6,6,30,104,146,0,146, +Saturday,8/13/2011 2:00,0,0,4,4,30,102,140,0,140, +Saturday,8/13/2011 3:00,0,0,4,4,28,104,142,0,142, +Saturday,8/13/2011 4:00,0,0,4,4,30,100,140,0,140, +Saturday,8/13/2011 5:00,0,0,2,4,30,102,140,0,140, +Saturday,8/13/2011 6:00,2,0,4,4,30,98,140,0,140, +Saturday,8/13/2011 7:00,0,0,4,8,28,98,138,-22,116, +Saturday,8/13/2011 8:00,4,0,6,8,30,100,148,-168,-20, +Saturday,8/13/2011 9:00,2,0,6,6,30,102,148,-354,-206, +Saturday,8/13/2011 10:00,2,0,6,8,30,102,148,-500,-352, +Saturday,8/13/2011 11:00,4,0,4,6,30,104,148,-606,-458, +Saturday,8/13/2011 12:00,8,0,4,10,30,106,158,-654,-496, +Saturday,8/13/2011 13:00,10,0,6,10,30,106,160,-680,-520, +Saturday,8/13/2011 14:00,12,0,4,6,30,106,158,-668,-510, +Saturday,8/13/2011 15:00,16,0,8,6,28,106,162,-628,-466, +Saturday,8/13/2011 16:00,12,0,6,6,30,108,160,-532,-372, +Saturday,8/13/2011 17:00,12,0,6,10,28,108,162,-406,-244, +Saturday,8/13/2011 18:00,8,0,4,8,30,108,158,-248,-90, +Saturday,8/13/2011 19:00,8,0,4,10,30,106,160,-70,90, +Saturday,8/13/2011 20:00,10,0,6,10,30,106,158,-12,146, +Saturday,8/13/2011 21:00,6,0,6,10,28,108,156,0,156, +Saturday,8/13/2011 22:00,2,0,4,8,30,106,150,0,150, +Saturday,8/13/2011 23:00,2,0,6,8,28,104,148,0,148, +Sunday,8/14/2011 0:00,4,0,4,8,28,106,148,0,148, +Sunday,8/14/2011 1:00,0,0,6,8,28,104,146,0,146, +Sunday,8/14/2011 2:00,0,0,4,6,30,106,146,0,146, +Sunday,8/14/2011 3:00,0,0,4,10,26,106,146,0,146, +Sunday,8/14/2011 4:00,2,0,4,6,28,104,144,0,144, +Sunday,8/14/2011 5:00,2,0,4,8,30,104,146,0,146, +Sunday,8/14/2011 6:00,2,0,4,6,30,102,144,0,144, +Sunday,8/14/2011 7:00,0,0,6,6,28,102,142,-22,120, +Sunday,8/14/2011 8:00,6,0,4,4,28,102,144,-162,-18, +Sunday,8/14/2011 9:00,4,0,6,6,30,104,150,-324,-174, +Sunday,8/14/2011 10:00,6,0,6,6,30,106,152,-444,-292, +Sunday,8/14/2011 11:00,12,0,6,6,30,106,158,-508,-350, +Sunday,8/14/2011 12:00,16,0,8,6,30,108,166,-476,-310, +Sunday,8/14/2011 13:00,16,0,6,6,30,106,162,-372,-210, +Sunday,8/14/2011 14:00,16,0,6,8,30,106,166,-202,-36, +Sunday,8/14/2011 15:00,16,0,6,6,30,106,164,-368,-204, +Sunday,8/14/2011 16:00,12,0,4,6,28,106,158,-160,-2, +Sunday,8/14/2011 17:00,8,0,6,4,30,106,156,-238,-82, +Sunday,8/14/2011 18:00,10,0,6,10,28,106,158,-50,108, +Sunday,8/14/2011 19:00,10,0,4,10,30,106,158,-28,130, +Sunday,8/14/2011 20:00,4,0,6,12,28,104,154,0,154, +Sunday,8/14/2011 21:00,4,0,4,12,30,104,156,0,156, +Sunday,8/14/2011 22:00,0,0,4,12,28,106,150,0,150, +Sunday,8/14/2011 23:00,4,0,6,10,28,102,150,0,150, +Monday,8/15/2011 0:00,2,0,4,10,28,104,146,0,146, +Monday,8/15/2011 1:00,0,0,4,10,30,100,142,0,142, +Monday,8/15/2011 2:00,2,0,6,6,30,104,146,0,146, +Monday,8/15/2011 3:00,2,0,4,6,30,106,146,0,146, +Monday,8/15/2011 4:00,2,0,4,6,30,102,144,0,144, +Monday,8/15/2011 5:00,2,0,4,6,30,104,144,0,144, +Monday,8/15/2011 6:00,2,0,8,10,30,104,154,0,154, +Monday,8/15/2011 7:00,12,0,30,22,38,102,206,-10,196, +Monday,8/15/2011 8:00,8,0,30,34,46,104,222,-126,96, +Monday,8/15/2011 9:00,18,0,30,42,58,102,250,-348,-98, +Monday,8/15/2011 10:00,20,0,32,40,62,106,260,-500,-240, +Monday,8/15/2011 11:00,26,0,32,36,62,104,262,-602,-340, +Monday,8/15/2011 12:00,26,0,32,34,64,108,266,-664,-398, +Monday,8/15/2011 13:00,26,0,34,30,60,106,254,-674,-420, +Monday,8/15/2011 14:00,32,0,30,38,64,106,270,-448,-178, +Monday,8/15/2011 15:00,30,0,34,38,56,106,264,-524,-260, +Monday,8/15/2011 16:00,30,0,30,42,56,106,264,-436,-172, +Monday,8/15/2011 17:00,30,0,32,42,50,104,260,-236,24, +Monday,8/15/2011 18:00,26,0,32,42,40,104,246,-150,96, +Monday,8/15/2011 19:00,22,0,12,20,32,108,196,-56,140, +Monday,8/15/2011 20:00,14,0,12,22,36,102,188,-4,184, +Monday,8/15/2011 21:00,4,0,6,26,32,106,174,0,174, +Monday,8/15/2011 22:00,10,0,4,18,32,102,166,0,166, +Monday,8/15/2011 23:00,0,0,4,8,30,104,144,0,144, +Tuesday,8/16/2011 0:00,6,0,6,4,34,104,154,0,154, +Tuesday,8/16/2011 1:00,2,0,4,6,30,102,146,0,146, +Tuesday,8/16/2011 2:00,2,0,6,6,30,104,146,0,146, +Tuesday,8/16/2011 3:00,2,0,2,6,32,102,146,0,146, +Tuesday,8/16/2011 4:00,2,0,6,6,30,102,146,0,146, +Tuesday,8/16/2011 5:00,0,0,4,6,30,102,144,0,144, +Tuesday,8/16/2011 6:00,4,0,6,8,30,100,148,0,148, +Tuesday,8/16/2011 7:00,4,0,28,20,42,100,196,-20,176, +Tuesday,8/16/2011 8:00,14,0,30,30,50,102,228,-160,68, +Tuesday,8/16/2011 9:00,16,0,30,40,60,102,250,-338,-88, +Tuesday,8/16/2011 10:00,18,0,34,40,66,104,262,-474,-212, +Tuesday,8/16/2011 11:00,20,0,32,34,64,108,260,-602,-342, +Tuesday,8/16/2011 12:00,26,0,34,30,70,106,266,-662,-396, +Tuesday,8/16/2011 13:00,26,0,30,30,64,106,258,-544,-286, +Tuesday,8/16/2011 14:00,26,0,34,42,66,106,274,-140,134, +Tuesday,8/16/2011 15:00,26,0,34,50,62,104,276,-108,168, +Tuesday,8/16/2011 16:00,24,0,32,38,58,106,256,-452,-196, +Tuesday,8/16/2011 17:00,24,0,30,46,50,104,256,-280,-24, +Tuesday,8/16/2011 18:00,22,0,30,46,38,104,240,-186,54, +Tuesday,8/16/2011 19:00,12,0,14,20,38,106,190,-88,102, +Tuesday,8/16/2011 20:00,10,0,12,18,36,104,178,-6,172, +Tuesday,8/16/2011 21:00,6,0,6,28,34,106,178,0,178, +Tuesday,8/16/2011 22:00,4,0,4,22,34,102,166,0,166, +Tuesday,8/16/2011 23:00,4,0,6,10,32,104,156,0,156, +Wednesday,8/17/2011 0:00,4,0,6,6,30,104,150,0,150, +Wednesday,8/17/2011 1:00,2,0,4,4,32,104,146,0,146, +Wednesday,8/17/2011 2:00,0,0,6,6,32,100,144,0,144, +Wednesday,8/17/2011 3:00,2,0,2,6,32,104,146,0,146, +Wednesday,8/17/2011 4:00,0,0,6,4,30,100,142,0,142, +Wednesday,8/17/2011 5:00,0,0,4,8,32,102,146,0,146, +Wednesday,8/17/2011 6:00,4,0,8,8,32,100,150,0,150, +Wednesday,8/17/2011 7:00,4,0,28,12,42,100,186,-20,166, +Wednesday,8/17/2011 8:00,6,0,24,30,48,102,210,-168,42, +Wednesday,8/17/2011 9:00,12,0,30,38,58,106,242,-344,-102, +Wednesday,8/17/2011 10:00,16,0,30,38,62,106,252,-494,-242, +Wednesday,8/17/2011 11:00,20,0,30,34,60,104,248,-608,-360, +Wednesday,8/17/2011 12:00,22,0,30,30,64,106,252,-672,-420, +Wednesday,8/17/2011 13:00,22,0,30,30,62,106,252,-574,-322, +Wednesday,8/17/2011 14:00,28,0,30,32,60,106,258,-574,-316, +Wednesday,8/17/2011 15:00,28,0,32,34,58,106,260,-516,-256, +Wednesday,8/17/2011 16:00,28,0,30,34,60,106,260,-540,-280, +Wednesday,8/17/2011 17:00,28,0,34,38,48,106,254,-414,-160, +Wednesday,8/17/2011 18:00,26,0,30,42,40,104,242,-226,16, +Wednesday,8/17/2011 19:00,18,0,14,22,38,106,200,-80,120, +Wednesday,8/17/2011 20:00,14,0,6,26,32,102,178,-4,174, +Wednesday,8/17/2011 21:00,10,0,6,24,38,104,184,0,184, +Wednesday,8/17/2011 22:00,6,0,6,16,30,102,160,0,160, +Wednesday,8/17/2011 23:00,6,0,4,8,34,104,156,0,156, +Thursday,8/18/2011 0:00,2,0,4,6,30,102,146,0,146, +Thursday,8/18/2011 1:00,4,0,4,4,30,102,144,0,144, +Thursday,8/18/2011 2:00,4,0,6,6,34,102,150,0,150, +Thursday,8/18/2011 3:00,0,0,4,4,30,102,140,0,140, +Thursday,8/18/2011 4:00,0,0,4,4,32,102,142,0,142, +Thursday,8/18/2011 5:00,0,0,4,8,32,102,146,0,146, +Thursday,8/18/2011 6:00,4,0,6,12,34,100,158,0,158, +Thursday,8/18/2011 7:00,8,0,28,20,40,100,194,-24,170, +Thursday,8/18/2011 8:00,12,0,28,26,50,100,214,-146,68, +Thursday,8/18/2011 9:00,14,0,30,36,60,100,240,-254,-14, +Thursday,8/18/2011 10:00,20,0,30,36,62,102,252,-456,-204, +Thursday,8/18/2011 11:00,24,0,30,36,62,104,258,-570,-312, +Thursday,8/18/2011 12:00,28,0,28,30,68,104,258,-640,-382, +Thursday,8/18/2011 13:00,32,0,32,30,60,102,258,-684,-426, +Thursday,8/18/2011 14:00,32,0,30,32,58,106,258,-658,-400, +Thursday,8/18/2011 15:00,34,0,34,34,64,104,270,-624,-354, +Thursday,8/18/2011 16:00,34,0,32,40,54,104,266,-364,-98, +Thursday,8/18/2011 17:00,34,0,32,42,50,104,262,-266,-4, +Thursday,8/18/2011 18:00,28,0,30,48,40,104,248,-164,84, +Thursday,8/18/2011 19:00,24,0,14,22,34,104,198,-68,130, +Thursday,8/18/2011 20:00,14,0,4,22,32,104,178,0,178, +Thursday,8/18/2011 21:00,8,0,4,28,32,102,176,0,176, +Thursday,8/18/2011 22:00,10,0,4,22,32,102,172,0,172, +Thursday,8/18/2011 23:00,6,0,2,14,32,102,158,0,158, +Friday,8/19/2011 0:00,2,0,4,10,32,102,152,0,152, +Friday,8/19/2011 1:00,4,0,2,6,28,102,142,0,142, +Friday,8/19/2011 2:00,0,0,4,6,32,102,146,0,146, +Friday,8/19/2011 3:00,0,0,4,6,32,102,146,0,146, +Friday,8/19/2011 4:00,4,0,4,8,30,102,146,0,146, +Friday,8/19/2011 5:00,2,0,4,6,32,100,144,0,144, +Friday,8/19/2011 6:00,0,0,6,10,30,100,148,0,148, +Friday,8/19/2011 7:00,14,0,28,22,40,100,204,-10,194, +Friday,8/19/2011 8:00,10,0,30,34,46,100,220,-52,168, +Friday,8/19/2011 9:00,14,0,30,40,54,102,238,-142,96, +Friday,8/19/2011 10:00,14,0,32,38,60,102,246,-250,-4, +Friday,8/19/2011 11:00,16,0,30,38,58,102,244,-272,-28, +Friday,8/19/2011 12:00,22,0,30,36,60,102,250,-370,-120, +Friday,8/19/2011 13:00,24,0,34,38,56,102,252,-272,-20, +Friday,8/19/2011 14:00,24,0,32,38,54,104,252,-276,-24, +Friday,8/19/2011 15:00,28,0,32,34,54,104,252,-362,-110, +Friday,8/19/2011 16:00,26,0,32,40,50,104,254,-220,34, +Friday,8/19/2011 17:00,28,0,32,38,44,104,244,-180,64, +Friday,8/19/2011 18:00,24,0,30,42,40,104,240,-24,216, +Friday,8/19/2011 19:00,14,0,14,16,34,102,182,-20,162, +Friday,8/19/2011 20:00,8,0,4,20,32,104,170,0,170, +Friday,8/19/2011 21:00,4,0,4,26,36,104,174,0,174, +Friday,8/19/2011 22:00,6,0,6,20,30,104,168,0,168, +Friday,8/19/2011 23:00,0,0,4,12,30,104,152,0,152, +Saturday,8/20/2011 0:00,2,0,4,10,30,104,150,0,150, +Saturday,8/20/2011 1:00,2,0,4,8,30,104,146,0,146, +Saturday,8/20/2011 2:00,2,0,6,8,32,102,152,0,152, +Saturday,8/20/2011 3:00,0,0,2,6,30,102,140,0,140, +Saturday,8/20/2011 4:00,2,0,4,8,30,104,148,0,148, +Saturday,8/20/2011 5:00,0,0,4,6,30,100,142,0,142, +Saturday,8/20/2011 6:00,0,0,6,6,30,100,144,0,144, +Saturday,8/20/2011 7:00,0,0,8,8,30,100,148,-12,136, +Saturday,8/20/2011 8:00,4,0,4,10,30,100,148,-144,4, +Saturday,8/20/2011 9:00,2,0,6,6,30,106,148,-352,-204, +Saturday,8/20/2011 10:00,4,0,8,6,32,96,146,-496,-350, +Saturday,8/20/2011 11:00,6,0,6,6,30,106,154,-604,-450, +Saturday,8/20/2011 12:00,6,0,6,6,30,108,156,-662,-506, +Saturday,8/20/2011 13:00,6,0,6,6,32,108,158,-676,-518, +Saturday,8/20/2011 14:00,8,0,8,6,30,100,152,-670,-518, +Saturday,8/20/2011 15:00,8,0,6,10,30,108,162,-612,-450, +Saturday,8/20/2011 16:00,8,0,6,8,30,108,160,-532,-372, +Saturday,8/20/2011 17:00,8,0,4,8,32,100,152,-404,-252, +Saturday,8/20/2011 18:00,8,0,4,10,30,108,162,-224,-62, +Saturday,8/20/2011 19:00,10,0,6,10,30,108,162,-52,110, +Saturday,8/20/2011 20:00,8,0,4,10,30,108,162,-8,154, +Saturday,8/20/2011 21:00,6,0,6,12,32,98,154,0,154, +Saturday,8/20/2011 22:00,2,0,2,10,32,108,154,0,154, +Saturday,8/20/2011 23:00,2,0,4,10,28,108,154,0,154, +Sunday,8/21/2011 0:00,4,0,6,10,30,106,156,0,156, +Sunday,8/21/2011 1:00,0,0,4,6,30,98,138,0,138, +Sunday,8/21/2011 2:00,0,0,4,6,30,106,148,0,148, +Sunday,8/21/2011 3:00,0,0,2,6,30,106,146,0,146, +Sunday,8/21/2011 4:00,2,0,6,6,32,106,150,0,150, +Sunday,8/21/2011 5:00,2,0,4,8,30,106,148,0,148, +Sunday,8/21/2011 6:00,2,0,6,6,30,96,138,0,138, +Sunday,8/21/2011 7:00,0,0,6,8,30,104,148,-8,140, +Sunday,8/21/2011 8:00,2,0,6,6,30,104,148,-82,66, +Sunday,8/21/2011 9:00,4,0,8,6,32,106,156,-234,-78, +Sunday,8/21/2011 10:00,8,0,4,2,30,98,142,-454,-312, +Sunday,8/21/2011 11:00,6,0,4,2,30,106,152,-548,-396, +Sunday,8/21/2011 12:00,12,0,8,4,32,108,164,-630,-466, +Sunday,8/21/2011 13:00,16,0,2,4,30,108,160,-450,-290, +Sunday,8/21/2011 14:00,12,0,6,4,30,100,154,-194,-40, +Sunday,8/21/2011 15:00,12,0,6,2,32,108,160,-216,-56, +Sunday,8/21/2011 16:00,12,0,8,6,30,108,164,-320,-156, +Sunday,8/21/2011 17:00,14,0,6,4,30,98,150,-160,-10, +Sunday,8/21/2011 18:00,10,0,2,6,30,106,156,-92,64, +Sunday,8/21/2011 19:00,4,0,6,4,32,108,152,-20,132, +Sunday,8/21/2011 20:00,6,0,4,8,30,108,156,0,156, +Sunday,8/21/2011 21:00,4,0,6,6,28,98,142,0,142, +Sunday,8/21/2011 22:00,4,0,4,8,30,106,154,0,154, +Sunday,8/21/2011 23:00,0,0,2,6,32,106,148,0,148, +Monday,8/22/2011 0:00,4,0,6,6,30,106,150,0,150, +Monday,8/22/2011 1:00,0,0,4,4,30,98,136,0,136, +Monday,8/22/2011 2:00,0,0,4,2,32,106,146,0,146, +Monday,8/22/2011 3:00,0,0,4,6,30,106,146,0,146, +Monday,8/22/2011 4:00,2,0,4,4,30,106,146,0,146, +Monday,8/22/2011 5:00,2,0,4,4,30,106,146,0,146, +Monday,8/22/2011 6:00,4,0,6,10,34,96,152,0,152, +Monday,8/22/2011 7:00,16,0,30,24,38,104,212,-16,196, +Monday,8/22/2011 8:00,18,0,32,38,48,106,242,-150,92, +Monday,8/22/2011 9:00,24,0,32,44,60,98,258,-336,-78, +Monday,8/22/2011 10:00,30,0,34,38,64,108,274,-476,-202, +Monday,8/22/2011 11:00,30,0,34,34,64,108,272,-594,-322, +Monday,8/22/2011 12:00,32,0,30,32,64,108,268,-546,-278, +Monday,8/22/2011 13:00,28,0,32,30,66,100,256,-544,-288, +Monday,8/22/2011 14:00,34,0,30,34,60,108,266,-524,-258, +Monday,8/22/2011 15:00,32,0,30,36,62,108,272,-302,-30, +Monday,8/22/2011 16:00,30,0,30,40,56,98,254,-276,-22, +Monday,8/22/2011 17:00,32,0,34,38,50,108,262,-424,-162, +Monday,8/22/2011 18:00,26,0,32,46,40,108,252,-140,112, +Monday,8/22/2011 19:00,20,0,12,20,36,98,188,-110,78, +Monday,8/22/2011 20:00,10,0,4,20,38,108,178,-8,170, +Monday,8/22/2011 21:00,10,0,4,26,32,108,180,0,180, +Monday,8/22/2011 22:00,6,0,4,20,34,98,162,0,162, +Monday,8/22/2011 23:00,8,0,4,10,32,106,162,0,162, +Tuesday,8/23/2011 0:00,4,0,2,8,30,106,152,0,152, +Tuesday,8/23/2011 1:00,4,0,2,8,32,106,152,0,152, +Tuesday,8/23/2011 2:00,0,0,4,6,32,98,140,0,140, +Tuesday,8/23/2011 3:00,4,0,2,6,30,106,148,0,148, +Tuesday,8/23/2011 4:00,0,0,2,4,34,104,144,0,144, +Tuesday,8/23/2011 5:00,2,0,2,8,30,106,148,0,148, +Tuesday,8/23/2011 6:00,6,0,8,10,32,94,150,0,150, +Tuesday,8/23/2011 7:00,10,0,28,16,40,104,196,-16,180, +Tuesday,8/23/2011 8:00,16,0,30,30,50,104,230,-150,80, +Tuesday,8/23/2011 9:00,22,0,30,40,62,106,262,-330,-68, +Tuesday,8/23/2011 10:00,20,0,32,40,60,98,252,-474,-222, +Tuesday,8/23/2011 11:00,28,0,32,34,66,110,270,-576,-306, +Tuesday,8/23/2011 12:00,28,0,30,36,66,100,262,-480,-218, +Tuesday,8/23/2011 13:00,32,0,32,26,66,108,264,-658,-394, +Tuesday,8/23/2011 14:00,30,0,32,30,62,108,260,-674,-414, +Tuesday,8/23/2011 15:00,36,0,32,30,64,108,272,-626,-354, +Tuesday,8/23/2011 16:00,40,0,34,38,56,100,266,-428,-162, +Tuesday,8/23/2011 17:00,36,0,34,44,52,108,274,-248,26, +Tuesday,8/23/2011 18:00,34,0,34,44,40,98,250,-212,38, +Tuesday,8/23/2011 19:00,24,0,14,20,40,108,204,-90,114, +Tuesday,8/23/2011 20:00,20,0,4,20,36,108,186,-4,182, +Tuesday,8/23/2011 21:00,14,0,2,26,34,98,174,0,174, +Tuesday,8/23/2011 22:00,6,0,4,20,34,106,172,0,172, +Tuesday,8/23/2011 23:00,8,0,2,12,34,104,162,0,162, +Wednesday,8/24/2011 0:00,2,0,2,8,32,96,138,0,138, +Wednesday,8/24/2011 1:00,4,0,4,6,34,108,154,0,154, +Wednesday,8/24/2011 2:00,0,0,2,4,30,104,140,0,140, +Wednesday,8/24/2011 3:00,2,0,2,4,34,104,146,0,146, +Wednesday,8/24/2011 4:00,0,0,4,4,34,104,146,0,146, +Wednesday,8/24/2011 5:00,0,0,2,4,32,94,132,0,132, +Wednesday,8/24/2011 6:00,6,0,6,6,34,104,158,0,158, +Wednesday,8/24/2011 7:00,10,0,30,18,42,104,204,-14,190, +Wednesday,8/24/2011 8:00,18,0,28,30,46,94,216,-144,72, +Wednesday,8/24/2011 9:00,20,0,30,40,58,104,254,-328,-74, +Wednesday,8/24/2011 10:00,22,0,30,36,64,106,258,-462,-204, +Wednesday,8/24/2011 11:00,30,0,30,30,62,108,262,-572,-310, +Wednesday,8/24/2011 12:00,30,0,30,30,66,100,254,-644,-390, +Wednesday,8/24/2011 13:00,34,0,30,30,60,108,260,-666,-406, +Wednesday,8/24/2011 14:00,36,0,34,32,60,108,270,-470,-200, +Wednesday,8/24/2011 15:00,32,0,30,34,58,108,264,-420,-156, +Wednesday,8/24/2011 16:00,36,0,32,44,54,100,266,-202,64, +Wednesday,8/24/2011 17:00,30,0,30,44,48,106,260,-176,84, +Wednesday,8/24/2011 18:00,30,0,30,44,40,98,244,-152,92, +Wednesday,8/24/2011 19:00,16,0,12,20,40,108,196,-70,126, +Wednesday,8/24/2011 20:00,14,0,4,22,36,106,184,-4,180, +Wednesday,8/24/2011 21:00,10,0,4,26,38,106,186,0,186, +Wednesday,8/24/2011 22:00,8,0,2,16,36,98,158,0,158, +Wednesday,8/24/2011 23:00,4,0,4,10,32,106,156,0,156, +Thursday,8/25/2011 0:00,4,0,4,6,36,106,156,0,156, +Thursday,8/25/2011 1:00,0,0,4,6,30,98,138,0,138, +Thursday,8/25/2011 2:00,2,0,2,2,32,104,144,0,144, +Thursday,8/25/2011 3:00,0,0,6,6,34,104,150,0,150, +Thursday,8/25/2011 4:00,4,0,4,4,32,104,146,0,146, +Thursday,8/25/2011 5:00,0,0,2,6,36,94,138,0,138, +Thursday,8/25/2011 6:00,4,0,8,8,34,104,156,0,156, +Thursday,8/25/2011 7:00,8,0,30,20,42,102,202,-12,190, +Thursday,8/25/2011 8:00,14,0,30,28,48,94,214,-148,66, +Thursday,8/25/2011 9:00,16,0,30,38,60,106,248,-270,-22, +Thursday,8/25/2011 10:00,24,0,34,38,66,108,268,-474,-206, +Thursday,8/25/2011 11:00,26,0,32,30,60,108,258,-570,-312, +Thursday,8/25/2011 12:00,28,0,30,28,68,100,254,-630,-376, +Thursday,8/25/2011 13:00,32,0,32,26,64,108,262,-648,-386, +Thursday,8/25/2011 14:00,32,0,34,28,62,110,266,-590,-324, +Thursday,8/25/2011 15:00,34,0,32,34,58,98,256,-458,-202, +Thursday,8/25/2011 16:00,32,0,34,42,58,108,276,-150,126, +Thursday,8/25/2011 17:00,28,0,32,42,50,110,262,-142,120, +Thursday,8/25/2011 18:00,24,0,30,48,44,110,258,-80,178, +Thursday,8/25/2011 19:00,16,0,14,26,38,100,194,-10,184, +Thursday,8/25/2011 20:00,10,0,4,28,34,108,182,0,182, +Thursday,8/25/2011 21:00,8,0,6,26,34,106,178,0,178, +Thursday,8/25/2011 22:00,6,0,6,16,34,98,160,0,160, +Thursday,8/25/2011 23:00,4,0,4,12,32,106,158,0,158, +Friday,8/26/2011 0:00,4,0,4,6,32,106,154,0,154, +Friday,8/26/2011 1:00,4,0,4,4,34,106,154,0,154, +Friday,8/26/2011 2:00,4,0,4,2,32,98,140,0,140, +Friday,8/26/2011 3:00,0,0,2,2,32,106,144,0,144, +Friday,8/26/2011 4:00,4,0,6,4,32,106,152,0,152, +Friday,8/26/2011 5:00,2,0,2,4,36,106,148,0,148, +Friday,8/26/2011 6:00,4,0,6,4,32,106,154,0,154, +Friday,8/26/2011 7:00,14,0,30,20,42,96,202,-4,198, +Friday,8/26/2011 8:00,14,0,28,30,44,106,222,-128,94, +Friday,8/26/2011 9:00,18,0,32,36,56,106,248,-236,12, +Friday,8/26/2011 10:00,20,0,32,36,60,98,248,-402,-154, +Friday,8/26/2011 11:00,24,0,30,32,60,106,250,-560,-310, +Friday,8/26/2011 12:00,26,0,32,30,58,108,252,-600,-348, +Friday,8/26/2011 13:00,32,0,32,28,56,110,258,-610,-352, +Friday,8/26/2011 14:00,28,0,32,28,58,100,246,-594,-348, +Friday,8/26/2011 15:00,28,0,32,38,56,110,262,-202,60, +Friday,8/26/2011 16:00,28,0,30,40,50,110,256,-182,74, +Friday,8/26/2011 17:00,22,0,30,40,50,100,242,-88,154, +Friday,8/26/2011 18:00,24,0,30,44,38,108,242,-106,136, +Friday,8/26/2011 19:00,14,0,14,22,36,108,192,-28,164, +Friday,8/26/2011 20:00,10,0,4,24,32,98,168,0,168, +Friday,8/26/2011 21:00,6,0,6,20,38,108,178,0,178, +Friday,8/26/2011 22:00,6,0,4,14,32,106,164,0,164, +Friday,8/26/2011 23:00,4,0,6,8,30,108,154,0,154, +Saturday,8/27/2011 0:00,4,0,4,6,32,98,144,0,144, +Saturday,8/27/2011 1:00,2,0,4,6,34,108,154,0,154, +Saturday,8/27/2011 2:00,4,0,4,10,30,108,154,0,154, +Saturday,8/27/2011 3:00,0,0,4,10,30,106,152,0,152, +Saturday,8/27/2011 4:00,4,0,4,8,32,98,144,0,144, +Saturday,8/27/2011 5:00,4,0,4,6,32,106,152,0,152, +Saturday,8/27/2011 6:00,0,0,2,4,32,106,146,0,146, +Saturday,8/27/2011 7:00,2,0,8,6,30,104,150,-46,104,The Delta Historian went down at 7:00 on 8/27/11 and came back 13:35 on 9/6/11. The red highlighted data is calculated data based on the prior week's energy use. +Saturday,8/27/2011 8:00,4,0,4,6,30,102,148,-284,-136, +Saturday,8/27/2011 9:00,4,0,6,6,30,108,152,-448,-296, +Saturday,8/27/2011 10:00,6,0,8,6,32,98,150,-564,-414, +Saturday,8/27/2011 11:00,8,0,6,6,30,108,158,-636,-478, +Saturday,8/27/2011 12:00,14,0,4,6,30,110,164,-414,-250, +Saturday,8/27/2011 13:00,18,0,6,6,32,108,170,-382,-212, +Saturday,8/27/2011 14:00,18,0,6,6,30,100,160,-610,-450, +Saturday,8/27/2011 15:00,20,0,6,6,30,110,172,-530,-358, +Saturday,8/27/2011 16:00,20,0,6,6,30,110,172,-140,32, +Saturday,8/27/2011 17:00,20,0,4,6,32,98,160,-18,142, +Saturday,8/27/2011 18:00,12,0,4,6,30,108,162,-10,152, +Saturday,8/27/2011 19:00,10,0,6,6,30,108,158,-20,138, +Saturday,8/27/2011 20:00,10,0,4,6,30,108,156,0,156, +Saturday,8/27/2011 21:00,6,0,4,6,32,98,146,0,146, +Saturday,8/27/2011 22:00,4,0,2,6,32,106,152,0,152, +Saturday,8/27/2011 23:00,4,0,4,6,28,106,148,0,148, +Sunday,8/28/2011 0:00,6,0,6,6,30,108,156,0,156, +Sunday,8/28/2011 1:00,4,0,4,6,30,98,142,0,142, +Sunday,8/28/2011 2:00,2,0,4,6,30,106,146,0,146, +Sunday,8/28/2011 3:00,6,0,2,6,30,104,150,0,150, +Sunday,8/28/2011 4:00,6,0,4,6,32,106,154,0,154, +Sunday,8/28/2011 5:00,2,0,4,6,30,104,146,0,146, +Sunday,8/28/2011 6:00,4,0,6,6,30,98,142,0,142, +Sunday,8/28/2011 7:00,2,0,6,6,30,104,150,-46,104, +Sunday,8/28/2011 8:00,6,0,6,6,30,104,152,-302,-150, +Sunday,8/28/2011 9:00,10,0,8,6,32,108,162,-432,-270, +Sunday,8/28/2011 10:00,12,0,4,6,30,98,152,-546,-394, +Sunday,8/28/2011 11:00,20,0,4,6,30,108,166,-624,-458, +Sunday,8/28/2011 12:00,20,0,8,4,32,108,172,-674,-502, +Sunday,8/28/2011 13:00,26,0,2,6,30,108,172,-644,-472, +Sunday,8/28/2011 14:00,28,0,6,6,30,100,172,-432,-260, +Sunday,8/28/2011 15:00,24,0,6,6,32,110,178,-190,-12, +Sunday,8/28/2011 16:00,22,0,6,6,30,110,172,-144,28, +Sunday,8/28/2011 17:00,20,0,6,6,30,100,160,-74,86, +Sunday,8/28/2011 18:00,12,0,2,6,30,108,160,-30,130, +Sunday,8/28/2011 19:00,6,0,6,6,32,108,156,-14,142, +Sunday,8/28/2011 20:00,10,0,4,6,30,108,158,0,158, +Sunday,8/28/2011 21:00,4,0,4,6,28,98,140,0,140, +Sunday,8/28/2011 22:00,6,0,4,6,30,106,156,0,156, +Sunday,8/28/2011 23:00,4,0,2,6,32,106,150,0,150, +Monday,8/29/2011 0:00,4,0,6,10,30,106,154,0,154, +Monday,8/29/2011 1:00,4,0,4,10,30,98,146,0,146, +Monday,8/29/2011 2:00,4,0,4,10,32,106,156,0,156, +Monday,8/29/2011 3:00,4,0,4,10,30,106,154,0,154, +Monday,8/29/2011 4:00,4,0,4,10,30,106,154,0,154, +Monday,8/29/2011 5:00,4,0,4,10,30,106,156,0,156, +Monday,8/29/2011 6:00,6,0,6,14,34,96,154,0,154, +Monday,8/29/2011 7:00,20,0,28,32,38,104,222,-86,136, +Monday,8/29/2011 8:00,16,0,32,38,48,106,240,-276,-36, +Monday,8/29/2011 9:00,22,0,32,36,60,98,248,-346,-98, +Monday,8/29/2011 10:00,28,0,34,38,64,108,270,-412,-142, +Monday,8/29/2011 11:00,26,0,34,38,64,108,272,-352,-80, +Monday,8/29/2011 12:00,30,0,30,38,64,108,270,-228,42, +Monday,8/29/2011 13:00,26,0,32,30,66,98,252,-604,-352, +Monday,8/29/2011 14:00,30,0,30,32,60,108,260,-468,-208, +Monday,8/29/2011 15:00,30,0,30,34,62,108,266,-458,-192, +Monday,8/29/2011 16:00,30,0,30,38,56,100,254,-304,-50, +Monday,8/29/2011 17:00,30,0,34,38,50,108,260,-288,-28, +Monday,8/29/2011 18:00,26,0,32,30,40,108,236,-86,150, +Monday,8/29/2011 19:00,20,0,12,12,36,98,180,-4,176, +Monday,8/29/2011 20:00,12,0,2,10,38,108,170,0,170, +Monday,8/29/2011 21:00,14,0,4,10,32,106,166,0,166, +Monday,8/29/2011 22:00,6,0,4,10,34,98,152,0,152, +Monday,8/29/2011 23:00,6,0,4,10,32,104,156,0,156, +Tuesday,8/30/2011 0:00,2,0,2,10,30,104,150,0,150, +Tuesday,8/30/2011 1:00,6,0,2,10,32,104,154,0,154, +Tuesday,8/30/2011 2:00,4,0,4,10,32,96,148,0,148, +Tuesday,8/30/2011 3:00,2,0,2,10,30,106,148,0,148, +Tuesday,8/30/2011 4:00,2,0,2,10,34,104,154,0,154, +Tuesday,8/30/2011 5:00,0,0,2,10,30,104,146,0,146, +Tuesday,8/30/2011 6:00,4,0,6,14,32,94,152,-2,150, +Tuesday,8/30/2011 7:00,12,0,28,32,40,102,212,-94,118, +Tuesday,8/30/2011 8:00,12,0,30,38,50,102,232,-284,-52, +Tuesday,8/30/2011 9:00,12,0,30,36,62,106,246,-446,-200, +Tuesday,8/30/2011 10:00,18,0,32,32,60,96,240,-564,-324, +Tuesday,8/30/2011 11:00,22,0,32,30,66,108,258,-654,-396, +Tuesday,8/30/2011 12:00,24,0,30,34,66,98,254,-500,-246, +Tuesday,8/30/2011 13:00,32,0,32,38,66,106,274,-240,34, +Tuesday,8/30/2011 14:00,28,0,32,38,62,108,266,-290,-24, +Tuesday,8/30/2011 15:00,28,0,32,34,64,106,266,-382,-116, +Tuesday,8/30/2011 16:00,26,0,34,38,56,100,252,-394,-142, +Tuesday,8/30/2011 17:00,22,0,34,38,52,108,254,-238,16, +Tuesday,8/30/2011 18:00,26,0,34,24,40,98,222,-86,136, +Tuesday,8/30/2011 19:00,18,0,14,12,40,106,190,-2,188, +Tuesday,8/30/2011 20:00,16,0,4,10,36,108,172,0,172, +Tuesday,8/30/2011 21:00,8,0,2,10,34,96,150,0,150, +Tuesday,8/30/2011 22:00,8,0,4,10,34,106,162,0,162, +Tuesday,8/30/2011 23:00,6,0,2,10,34,106,156,0,156, +Wednesday,8/31/2011 0:00,2,0,2,10,32,96,142,0,142, +Wednesday,8/31/2011 1:00,4,0,4,10,34,104,156,0,156, +Wednesday,8/31/2011 2:00,2,0,2,10,30,104,148,0,148, +Wednesday,8/31/2011 3:00,4,0,2,10,34,102,152,0,152, +Wednesday,8/31/2011 4:00,0,0,4,10,34,102,150,0,150, +Wednesday,8/31/2011 5:00,4,0,2,10,32,94,142,0,142, +Wednesday,8/31/2011 6:00,0,0,6,14,34,104,158,0,158, +Wednesday,8/31/2011 7:00,14,0,30,32,42,102,222,-82,140, +Wednesday,8/31/2011 8:00,10,0,28,38,46,94,216,-270,-54, +Wednesday,8/31/2011 9:00,14,0,30,36,58,106,246,-438,-192, +Wednesday,8/31/2011 10:00,18,0,30,32,64,106,250,-562,-312, +Wednesday,8/31/2011 11:00,24,0,30,30,62,108,254,-636,-382, +Wednesday,8/31/2011 12:00,28,0,30,30,66,98,250,-670,-420, +Wednesday,8/31/2011 13:00,28,0,30,30,60,106,252,-650,-398, +Wednesday,8/31/2011 14:00,32,0,34,36,60,108,272,-432,-160, +Wednesday,8/31/2011 15:00,34,0,30,36,58,108,266,-158,108, +Wednesday,8/31/2011 16:00,32,0,32,38,54,98,254,-214,40, +Wednesday,8/31/2011 17:00,30,0,30,32,48,106,248,-144,104, +Wednesday,8/31/2011 18:00,24,0,30,26,40,98,220,-58,162, +Wednesday,8/31/2011 19:00,16,0,12,12,40,108,186,-6,180, +Wednesday,8/31/2011 20:00,12,0,4,10,36,106,166,0,166, +Wednesday,8/31/2011 21:00,6,0,4,10,38,108,166,0,166, +Wednesday,8/31/2011 22:00,6,0,2,10,36,96,148,0,148, +Wednesday,8/31/2011 23:00,6,0,4,10,32,106,156,0,156, +Thursday,09/01/2011 00:00,2,0,4,10,36,106,156,0,156, +Thursday,09/01/2011 01:00,0,0,4,10,30,94,140,0,140, +Thursday,09/01/2011 02:00,2,0,2,10,32,104,152,0,152, +Thursday,09/01/2011 03:00,0,0,6,10,34,104,152,0,152, +Thursday,09/01/2011 04:00,0,0,4,10,32,104,150,0,150, +Thursday,09/01/2011 05:00,0,0,2,10,36,94,142,0,142, +Thursday,09/01/2011 06:00,4,0,8,14,34,104,162,0,162, +Thursday,09/01/2011 07:00,10,0,30,28,42,102,212,-46,166, +Thursday,09/01/2011 08:00,10,0,30,36,48,96,218,-106,112, +Thursday,09/01/2011 09:00,12,0,30,38,60,104,246,-222,24, +Thursday,09/01/2011 10:00,18,0,34,36,66,106,260,-428,-168, +Thursday,09/01/2011 11:00,18,0,32,34,60,106,252,-432,-180, +Thursday,09/01/2011 12:00,26,0,30,30,68,96,250,-574,-324, +Thursday,09/01/2011 13:00,28,0,32,30,64,106,260,-680,-420, +Thursday,09/01/2011 14:00,32,0,34,30,62,108,266,-598,-332, +Thursday,09/01/2011 15:00,30,0,32,36,58,98,254,-426,-172, +Thursday,09/01/2011 16:00,32,0,34,38,58,108,272,-236,36, +Thursday,09/01/2011 17:00,30,0,32,38,50,108,258,-250,8, +Thursday,09/01/2011 18:00,24,0,30,26,44,108,230,-56,174, +Thursday,09/01/2011 19:00,20,0,14,10,38,98,180,-6,174, +Thursday,09/01/2011 20:00,12,0,4,10,34,108,168,0,168, +Thursday,09/01/2011 21:00,8,0,6,10,34,106,162,0,162, +Thursday,09/01/2011 22:00,4,0,6,10,34,98,150,0,150, +Thursday,09/01/2011 23:00,6,0,4,10,32,104,156,0,156, +Friday,09/02/2011 00:00,0,0,4,10,32,104,150,0,150, +Friday,09/02/2011 01:00,4,0,4,10,34,104,156,0,156, +Friday,09/02/2011 02:00,0,0,4,10,32,94,140,0,140, +Friday,09/02/2011 03:00,4,0,2,10,32,104,152,0,152, +Friday,09/02/2011 04:00,2,0,6,10,32,102,152,0,152, +Friday,09/02/2011 05:00,0,0,2,10,36,104,150,0,150, +Friday,09/02/2011 06:00,4,0,6,10,32,104,156,0,156, +Friday,09/02/2011 07:00,10,0,30,32,42,94,206,-36,170, +Friday,09/02/2011 08:00,10,0,28,38,44,104,224,-284,-60, +Friday,09/02/2011 09:00,12,0,32,38,56,104,242,-356,-114, +Friday,09/02/2011 10:00,16,0,32,34,60,96,238,-452,-214, +Friday,09/02/2011 11:00,18,0,30,30,60,106,242,-644,-402, +Friday,09/02/2011 12:00,24,0,32,32,58,106,252,-610,-358, +Friday,09/02/2011 13:00,24,0,32,34,56,108,254,-418,-164, +Friday,09/02/2011 14:00,28,0,32,30,58,98,244,-648,-404, +Friday,09/02/2011 15:00,26,0,32,38,56,108,258,-470,-212, +Friday,09/02/2011 16:00,26,0,30,36,50,108,250,-100,150, +Friday,09/02/2011 17:00,26,0,30,38,50,98,244,-184,60, +Friday,09/02/2011 18:00,24,0,30,24,38,108,224,-62,162, +Friday,09/02/2011 19:00,14,0,14,10,36,106,180,-16,164, +Friday,09/02/2011 20:00,8,0,4,10,32,98,150,0,150, +Friday,09/02/2011 21:00,4,0,6,10,38,106,162,0,162, +Friday,09/02/2011 22:00,4,0,4,10,32,106,156,0,156, +Friday,09/02/2011 23:00,2,0,6,10,30,106,154,0,154, +Saturday,09/03/2011 00:00,2,0,2,6,32,96,140,0,140, +Saturday,09/03/2011 01:00,0,0,4,6,34,104,146,0,146, +Saturday,09/03/2011 02:00,2,0,2,6,30,104,146,0,146, +Saturday,09/03/2011 03:00,0,0,4,6,30,104,144,0,144, +Saturday,09/03/2011 04:00,0,0,4,6,32,92,134,0,134, +Saturday,09/03/2011 05:00,2,0,2,6,32,102,144,0,144, +Saturday,09/03/2011 06:00,0,0,2,6,32,100,140,0,140, +Saturday,09/03/2011 07:00,0,0,8,6,30,100,142,-84,58, +Saturday,09/03/2011 08:00,4,0,2,6,30,98,140,-290,-150, +Saturday,09/03/2011 09:00,0,0,6,6,30,102,142,-474,-332, +Saturday,09/03/2011 10:00,4,0,8,6,32,92,140,-602,-462, +Saturday,09/03/2011 11:00,4,0,4,4,30,100,144,-684,-540, +Saturday,09/03/2011 12:00,2,0,4,4,30,100,144,-720,-576, +Saturday,09/03/2011 13:00,6,0,6,4,32,100,150,-708,-558, +Saturday,09/03/2011 14:00,10,0,6,6,30,92,142,-618,-476, +Saturday,09/03/2011 15:00,2,0,6,6,30,102,144,-576,-432, +Saturday,09/03/2011 16:00,10,0,6,6,30,102,152,-360,-208, +Saturday,09/03/2011 17:00,6,0,4,6,32,92,140,-124,16, +Saturday,09/03/2011 18:00,2,0,2,6,30,100,142,-60,82, +Saturday,09/03/2011 19:00,0,0,6,6,30,100,142,-4,138, +Saturday,09/03/2011 20:00,2,0,4,6,30,100,142,0,142, +Saturday,09/03/2011 21:00,0,0,2,6,32,92,132,0,132, +Saturday,09/03/2011 22:00,0,0,2,6,32,100,142,0,142, +Saturday,09/03/2011 23:00,0,0,4,6,28,100,138,0,138, +Sunday,09/04/2011 00:00,4,0,6,6,30,100,146,0,146, +Sunday,09/04/2011 01:00,0,0,4,6,30,92,130,0,130, +Sunday,09/04/2011 02:00,0,0,4,6,30,100,138,0,138, +Sunday,09/04/2011 03:00,0,0,2,6,30,100,140,0,140, +Sunday,09/04/2011 04:00,0,0,4,6,32,100,142,0,142, +Sunday,09/04/2011 05:00,0,0,4,6,30,100,140,0,140, +Sunday,09/04/2011 06:00,0,0,4,6,30,92,132,0,132, +Sunday,09/04/2011 07:00,0,0,6,6,30,100,142,-84,58, +Sunday,09/04/2011 08:00,0,0,4,6,30,100,142,-290,-148, +Sunday,09/04/2011 09:00,0,0,6,6,32,100,144,-472,-328, +Sunday,09/04/2011 10:00,0,0,4,6,30,92,132,-596,-464, +Sunday,09/04/2011 11:00,0,0,2,4,30,100,138,-674,-536, +Sunday,09/04/2011 12:00,6,0,6,4,32,100,150,-706,-556, +Sunday,09/04/2011 13:00,6,0,2,4,30,102,144,-694,-550, +Sunday,09/04/2011 14:00,6,0,6,4,30,92,140,-648,-508, +Sunday,09/04/2011 15:00,4,0,4,6,32,102,148,-556,-408, +Sunday,09/04/2011 16:00,4,0,4,6,30,102,146,-426,-280, +Sunday,09/04/2011 17:00,4,0,4,6,30,94,138,-254,-116, +Sunday,09/04/2011 18:00,4,0,6,6,30,104,150,-76,74, +Sunday,09/04/2011 19:00,4,0,14,6,32,102,160,-2,158, +Sunday,09/04/2011 20:00,2,0,14,6,30,102,154,0,154, +Sunday,09/04/2011 21:00,2,0,14,6,28,92,144,0,144, +Sunday,09/04/2011 22:00,0,0,14,6,30,100,152,0,152, +Sunday,09/04/2011 23:00,2,0,12,6,32,100,154,0,154, +Monday,09/05/2011 00:00,0,0,14,6,30,100,150,0,150, +Monday,09/05/2011 01:00,0,0,16,6,30,100,152,0,152, +Monday,09/05/2011 02:00,0,0,14,6,30,92,142,0,142, +Monday,09/05/2011 03:00,0,0,14,6,30,100,150,0,150, +Monday,09/05/2011 04:00,0,0,14,6,32,100,152,0,152, +Monday,09/05/2011 05:00,0,0,16,6,28,100,150,0,150, +Monday,09/05/2011 06:00,4,0,14,6,30,92,144,0,144, +Monday,09/05/2011 07:00,4,0,16,6,32,100,156,-88,68, +Monday,09/05/2011 08:00,8,0,16,6,32,102,164,-288,-124, +Monday,09/05/2011 09:00,6,0,18,6,30,100,160,-464,-304, +Monday,09/05/2011 10:00,8,0,18,6,30,92,154,-584,-430, +Monday,09/05/2011 11:00,12,0,18,4,30,102,166,-664,-498, +Monday,09/05/2011 12:00,16,0,16,6,30,104,172,-502,-330, +Monday,09/05/2011 13:00,10,0,18,4,30,104,166,-624,-458, +Monday,09/05/2011 14:00,14,0,16,6,32,94,160,-470,-310, +Monday,09/05/2011 15:00,12,0,16,6,32,104,172,-292,-120, +Monday,09/05/2011 16:00,12,0,20,6,30,106,172,-362,-190, +Monday,09/05/2011 17:00,10,0,16,6,32,104,168,-270,-102, +Monday,09/05/2011 18:00,10,0,18,6,30,94,156,-72,84, +Monday,09/05/2011 19:00,8,0,14,6,32,106,166,-2,164, +Monday,09/05/2011 20:00,6,0,14,6,30,104,160,0,160, +Monday,09/05/2011 21:00,2,0,14,6,30,92,144,0,144, +Monday,09/05/2011 22:00,2,0,12,6,30,102,150,0,150, +Monday,09/05/2011 23:00,0,0,14,6,30,100,150,0,150, +Tuesday,09/06/2011 00:00,0,0,12,10,28,100,150,0,150, +Tuesday,09/06/2011 01:00,2,0,8,10,30,100,150,0,150, +Tuesday,09/06/2011 02:00,0,0,14,10,36,92,150,0,150, +Tuesday,09/06/2011 03:00,2,0,12,10,44,102,170,0,170, +Tuesday,09/06/2011 04:00,0,0,10,10,50,100,172,0,172, +Tuesday,09/06/2011 05:00,2,0,12,10,50,102,176,0,176, +Tuesday,09/06/2011 06:00,2,0,14,10,52,92,170,0,170, +Tuesday,09/06/2011 07:00,10,0,32,22,56,100,222,-30,192, +Tuesday,09/06/2011 08:00,6,0,36,28,66,100,236,-48,188, +Tuesday,09/06/2011 09:00,12,0,36,36,72,102,258,-124,134, +Tuesday,09/06/2011 10:00,8,0,36,36,76,92,248,-150,98, +Tuesday,09/06/2011 11:00,12,0,38,38,70,102,258,-226,32, +Tuesday,09/06/2011 12:00,12,0,36,38,76,94,254,-304,-50, +Tuesday,09/06/2011 13:00,18,0,36,38,76,98,268,-308,-40, +Tuesday,09/06/2011 14:00,14,0,34,56,68,102,274,-206,68, +Tuesday,09/06/2011 15:00,18,0,32,56,60,104,268,-104,164, +Tuesday,09/06/2011 16:00,20,0,36,54,60,104,274,-112,162, +Tuesday,09/06/2011 17:00,14,0,30,54,54,104,256,-100,156, +Tuesday,09/06/2011 18:00,14,0,30,50,42,94,230,-82,148, +Tuesday,09/06/2011 19:00,8,0,14,20,38,104,180,-34,146, +Tuesday,09/06/2011 20:00,4,0,6,26,32,104,170,0,170, +Tuesday,09/06/2011 21:00,4,0,4,28,36,104,174,0,174, +Tuesday,09/06/2011 22:00,0,0,4,20,34,104,160,0,160, +Tuesday,09/06/2011 23:00,4,0,6,12,34,94,150,0,150, +Wednesday,09/07/2011 00:00,0,0,4,8,32,104,148,0,148, +Wednesday,09/07/2011 01:00,0,0,4,4,34,104,146,0,146, +Wednesday,09/07/2011 02:00,0,0,2,6,32,104,144,0,144, +Wednesday,09/07/2011 03:00,0,0,4,6,34,102,146,0,146, +Wednesday,09/07/2011 04:00,0,0,4,6,30,102,144,0,144, +Wednesday,09/07/2011 05:00,0,0,4,10,32,94,140,0,140, +Wednesday,09/07/2011 06:00,0,0,6,8,34,102,150,0,150, +Wednesday,09/07/2011 07:00,6,0,24,24,42,102,198,0,198, +Wednesday,09/07/2011 08:00,6,0,28,34,46,102,216,-24,192, +Wednesday,09/07/2011 09:00,4,0,26,50,60,102,242,-64,178, +Wednesday,09/07/2011 10:00,8,0,28,58,66,102,260,-60,200, +Wednesday,09/07/2011 11:00,4,0,30,60,66,94,252,-52,200, +Wednesday,09/07/2011 12:00,12,0,30,64,66,102,272,-20,252, +Wednesday,09/07/2011 13:00,8,0,30,64,64,102,268,-72,196, +Wednesday,09/07/2011 14:00,12,0,30,62,62,102,270,-98,172, +Wednesday,09/07/2011 15:00,12,0,30,64,60,102,268,-62,206, +Wednesday,09/07/2011 16:00,8,0,28,62,58,102,258,-50,208, +Wednesday,09/07/2011 17:00,12,0,32,60,52,102,260,-24,236, +Wednesday,09/07/2011 18:00,8,0,26,58,42,102,236,-32,204, +Wednesday,09/07/2011 19:00,2,0,14,30,38,92,178,0,178, +Wednesday,09/07/2011 20:00,2,0,4,34,36,102,178,0,178, +Wednesday,09/07/2011 21:00,2,0,4,30,38,102,178,0,178, +Wednesday,09/07/2011 22:00,0,0,6,22,34,100,162,0,162, +Wednesday,09/07/2011 23:00,2,0,4,10,34,92,142,0,142, +Thursday,09/08/2011 00:00,2,0,4,6,34,102,148,0,148, +Thursday,09/08/2011 01:00,0,0,4,6,32,100,142,0,142, +Thursday,09/08/2011 02:00,2,0,2,4,32,102,144,0,144, +Thursday,09/08/2011 03:00,0,0,2,6,32,100,142,0,142, +Thursday,09/08/2011 04:00,0,0,4,6,32,100,142,0,142, +Thursday,09/08/2011 05:00,2,0,4,8,34,92,140,0,140, +Thursday,09/08/2011 06:00,2,0,6,8,34,102,150,0,150, +Thursday,09/08/2011 07:00,2,0,24,22,40,102,188,0,188, +Thursday,09/08/2011 08:00,2,0,26,32,48,100,208,-20,188, +Thursday,09/08/2011 09:00,6,0,24,40,60,102,230,-226,4, +Thursday,09/08/2011 10:00,4,0,28,32,64,102,230,-462,-232, +Thursday,09/08/2011 11:00,10,0,28,30,60,94,222,-600,-378, +Thursday,09/08/2011 12:00,12,0,28,26,66,104,236,-662,-426, +Thursday,09/08/2011 13:00,10,0,30,26,62,104,230,-618,-388, +Thursday,09/08/2011 14:00,12,0,30,26,60,104,232,-632,-400, +Thursday,09/08/2011 15:00,14,0,30,30,62,104,240,-478,-238, +Thursday,09/08/2011 16:00,14,0,30,32,60,94,230,-514,-284, +Thursday,09/08/2011 17:00,14,0,26,36,50,102,230,-220,10, +Thursday,09/08/2011 18:00,12,0,30,42,44,102,228,-104,124, +Thursday,09/08/2011 19:00,8,0,12,22,38,102,184,-38,146, +Thursday,09/08/2011 20:00,2,0,4,30,36,102,172,0,172, +Thursday,09/08/2011 21:00,2,0,4,26,36,94,160,0,160, +Thursday,09/08/2011 22:00,2,0,2,20,38,102,164,0,164, +Thursday,09/08/2011 23:00,2,0,2,10,32,102,148,0,148, +Friday,09/09/2011 00:00,0,0,4,4,34,100,142,0,142, +Friday,09/09/2011 01:00,2,0,2,8,34,92,140,0,140, +Friday,09/09/2011 02:00,0,0,0,4,34,100,140,0,140, +Friday,09/09/2011 03:00,0,0,4,6,34,100,144,0,144, +Friday,09/09/2011 04:00,2,0,2,4,32,100,142,0,142, +Friday,09/09/2011 05:00,0,0,0,6,34,100,142,0,142, +Friday,09/09/2011 06:00,0,0,6,8,34,92,138,0,138, +Friday,09/09/2011 07:00,0,0,20,22,40,100,184,-2,182, +Friday,09/09/2011 08:00,4,0,26,30,48,100,208,-108,100, +Friday,09/09/2011 09:00,6,0,24,36,56,100,222,-302,-80, +Friday,09/09/2011 10:00,6,0,28,32,64,92,220,-464,-244, +Friday,09/09/2011 11:00,10,0,26,28,58,102,226,-582,-356, +Friday,09/09/2011 12:00,14,0,26,24,58,104,226,-616,-390, +Friday,09/09/2011 13:00,14,0,30,26,62,102,234,-638,-404, +Friday,09/09/2011 14:00,14,0,28,26,60,94,220,-664,-444, +Friday,09/09/2011 15:00,14,0,30,28,58,102,234,-610,-376, +Friday,09/09/2011 16:00,18,0,30,32,52,102,234,-490,-256, +Friday,09/09/2011 17:00,14,0,30,34,48,102,230,-366,-136, +Friday,09/09/2011 18:00,16,0,28,40,40,102,224,-198,26, +Friday,09/09/2011 19:00,8,0,14,26,32,102,182,-44,138, +Friday,09/09/2011 20:00,6,0,6,30,32,92,166,0,166, +Friday,09/09/2011 21:00,2,0,2,28,38,102,172,0,172, +Friday,09/09/2011 22:00,2,0,2,26,32,102,162,0,162, +Friday,09/09/2011 23:00,0,0,4,12,30,100,146,0,146, +Saturday,09/10/2011 00:00,2,0,2,6,32,102,144,0,144, +Saturday,09/10/2011 01:00,0,0,2,8,32,100,142,0,142, +Saturday,09/10/2011 02:00,0,0,4,6,30,92,130,0,130, +Saturday,09/10/2011 03:00,0,0,2,4,30,100,138,0,138, +Saturday,09/10/2011 04:00,0,0,2,6,32,100,142,0,142, +Saturday,09/10/2011 05:00,4,0,2,6,30,100,140,0,140, +Saturday,09/10/2011 06:00,0,0,2,10,30,100,142,0,142, +Saturday,09/10/2011 07:00,0,0,2,10,30,100,142,-2,140, +Saturday,09/10/2011 08:00,0,0,4,10,34,92,140,-100,40, +Saturday,09/10/2011 09:00,0,0,2,10,32,100,142,-290,-148, +Saturday,09/10/2011 10:00,2,0,4,10,32,102,150,-452,-302, +Saturday,09/10/2011 11:00,2,0,4,8,36,102,152,-570,-418, +Saturday,09/10/2011 12:00,4,0,4,10,34,102,154,-632,-478, +Saturday,09/10/2011 13:00,4,0,2,12,34,102,156,-668,-512, +Saturday,09/10/2011 14:00,8,0,6,10,30,94,148,-650,-502, +Saturday,09/10/2011 15:00,8,0,2,4,34,102,150,-610,-460, +Saturday,09/10/2011 16:00,8,0,2,4,32,102,150,-508,-358, +Saturday,09/10/2011 17:00,2,0,4,8,30,104,148,-372,-224, +Saturday,09/10/2011 18:00,4,0,2,6,32,102,148,-202,-54, +Saturday,09/10/2011 19:00,4,0,2,8,30,102,148,-36,112, +Saturday,09/10/2011 20:00,2,0,2,12,34,92,142,0,142, +Saturday,09/10/2011 21:00,0,0,2,12,30,100,146,0,146, +Saturday,09/10/2011 22:00,2,0,4,14,30,102,152,0,152, +Saturday,09/10/2011 23:00,0,0,2,12,30,100,146,0,146, +Sunday,09/11/2011 00:00,2,0,2,8,32,100,146,0,146, +Sunday,09/11/2011 01:00,0,0,2,6,32,100,140,0,140, +Sunday,09/11/2011 02:00,0,0,4,6,32,92,132,0,132, +Sunday,09/11/2011 03:00,0,0,2,6,30,100,138,0,138, +Sunday,09/11/2011 04:00,0,0,2,8,30,100,142,0,142, +Sunday,09/11/2011 05:00,0,0,2,4,30,100,138,0,138, +Sunday,09/11/2011 06:00,0,0,4,6,32,100,142,0,142, +Sunday,09/11/2011 07:00,0,0,0,8,30,100,140,-2,138, +Sunday,09/11/2011 08:00,0,0,4,4,32,92,132,-102,30, +Sunday,09/11/2011 09:00,4,0,2,4,30,100,138,-300,-162, +Sunday,09/11/2011 10:00,2,0,6,4,32,102,146,-466,-320, +Sunday,09/11/2011 11:00,4,0,2,4,30,102,144,-570,-426, +Sunday,09/11/2011 12:00,4,0,2,4,32,102,146,-638,-492, +Sunday,09/11/2011 13:00,10,0,2,6,32,104,154,-662,-508, +Sunday,09/11/2011 14:00,8,0,6,6,32,94,144,-642,-498, +Sunday,09/11/2011 15:00,6,0,4,8,30,106,152,-566,-414, +Sunday,09/11/2011 16:00,8,0,4,6,32,104,154,-440,-286, +Sunday,09/11/2011 17:00,4,0,4,8,30,102,148,-266,-118, +Sunday,09/11/2011 18:00,8,0,4,10,30,102,154,-120,34, +Sunday,09/11/2011 19:00,0,0,2,8,32,94,138,-24,114, +Sunday,09/11/2011 20:00,0,0,2,4,30,102,138,0,138, +Sunday,09/11/2011 21:00,2,0,2,6,32,102,146,0,146, +Sunday,09/11/2011 22:00,0,0,4,8,32,100,142,0,142, +Sunday,09/11/2011 23:00,2,0,2,8,32,102,146,0,146, +Monday,09/12/2011 00:00,2,0,2,8,30,102,142,0,142, +Monday,09/12/2011 01:00,0,0,4,6,30,92,132,0,132, +Monday,09/12/2011 02:00,2,0,2,6,32,102,144,0,144, +Monday,09/12/2011 03:00,2,0,2,4,32,102,142,0,142, +Monday,09/12/2011 04:00,0,0,2,6,30,100,138,0,138, +Monday,09/12/2011 05:00,2,0,2,8,30,102,146,0,146, +Monday,09/12/2011 06:00,0,0,4,8,32,100,144,0,144, +Monday,09/12/2011 07:00,10,0,28,24,42,102,204,-2,202, +Monday,09/12/2011 08:00,12,0,30,30,46,102,220,-100,120, +Monday,09/12/2011 09:00,16,0,30,34,60,102,240,-208,32, +Monday,09/12/2011 10:00,12,0,32,36,64,102,248,-254,-6, +Monday,09/12/2011 11:00,16,0,30,30,64,94,236,-540,-304, +Monday,09/12/2011 12:00,18,0,30,30,70,104,250,-580,-330, +Monday,09/12/2011 13:00,24,0,30,28,68,104,254,-680,-426, +Monday,09/12/2011 14:00,24,0,34,30,60,104,254,-494,-240, +Monday,09/12/2011 15:00,28,0,30,36,62,104,260,-338,-78, +Monday,09/12/2011 16:00,28,0,32,40,62,104,266,-208,58, +Monday,09/12/2011 17:00,20,0,28,40,52,96,234,-244,-10, +Monday,09/12/2011 18:00,24,0,30,42,44,104,244,-206,38, +Monday,09/12/2011 19:00,14,0,16,24,40,104,196,-44,152, +Monday,09/12/2011 20:00,10,0,6,26,38,104,182,0,182, +Monday,09/12/2011 21:00,4,0,4,32,34,102,176,0,176, +Monday,09/12/2011 22:00,4,0,2,20,34,104,164,0,164, +Monday,09/12/2011 23:00,0,0,2,12,32,104,152,0,152, +Tuesday,9/13/2011 0:00,4,0,2,10,30,104,148,0,148, +Tuesday,9/13/2011 1:00,0,0,4,6,34,104,148,0,148, +Tuesday,9/13/2011 2:00,0,0,2,4,30,100,138,0,138, +Tuesday,9/13/2011 3:00,2,0,2,6,34,102,146,0,146, +Tuesday,9/13/2011 4:00,2,0,4,6,30,92,134,0,134, +Tuesday,9/13/2011 5:00,0,0,2,4,32,100,140,0,140, +Tuesday,9/13/2011 6:00,2,0,4,10,34,102,154,0,154, +Tuesday,9/13/2011 7:00,2,0,24,26,42,100,194,0,194, +Tuesday,9/13/2011 8:00,6,0,26,34,48,100,214,-44,170, +Tuesday,9/13/2011 9:00,2,0,28,40,58,100,228,-196,32, +Tuesday,9/13/2011 10:00,12,0,34,38,62,102,248,-330,-82, +Tuesday,9/13/2011 11:00,12,0,30,40,66,102,248,-340,-92, +Tuesday,9/13/2011 12:00,12,0,30,40,68,102,252,-250,2, +Tuesday,9/13/2011 13:00,10,0,30,38,64,104,244,-324,-80, +Tuesday,9/13/2011 14:00,14,0,32,32,62,104,242,-522,-280, +Tuesday,9/13/2011 15:00,18,0,30,30,60,94,232,-508,-276, +Tuesday,9/13/2011 16:00,18,0,32,34,60,102,248,-440,-192, +Tuesday,9/13/2011 17:00,16,0,32,40,50,104,244,-132,112, +Tuesday,9/13/2011 18:00,18,0,30,46,44,104,240,-82,158, +Tuesday,9/13/2011 19:00,4,0,16,28,38,104,188,-20,168, +Tuesday,9/13/2011 20:00,4,0,10,28,32,104,178,0,178, +Tuesday,9/13/2011 21:00,4,0,2,30,34,102,174,0,174, +Tuesday,9/13/2011 22:00,0,0,2,24,36,104,166,0,166, +Tuesday,9/13/2011 23:00,0,0,4,10,34,94,142,0,142, +Wednesday,9/14/2011 0:00,2,0,2,4,32,102,142,0,142, +Wednesday,9/14/2011 1:00,0,0,2,6,32,100,140,0,140, +Wednesday,9/14/2011 2:00,2,0,4,4,32,102,144,0,144, +Wednesday,9/14/2011 3:00,0,0,4,6,32,100,142,0,142, +Wednesday,9/14/2011 4:00,2,0,0,4,32,100,142,0,142, +Wednesday,9/14/2011 5:00,0,0,2,4,34,100,142,0,142, +Wednesday,9/14/2011 6:00,2,0,10,6,34,100,156,0,156, +Wednesday,9/14/2011 7:00,0,0,22,20,42,100,186,0,186, +Wednesday,9/14/2011 8:00,4,0,28,30,48,100,208,-30,178, +Wednesday,9/14/2011 9:00,2,0,28,46,58,100,234,-76,158, +Wednesday,9/14/2011 10:00,2,0,28,48,64,100,242,-110,132, +Wednesday,9/14/2011 11:00,6,0,26,52,62,100,246,-118,128, +Wednesday,9/14/2011 12:00,2,0,28,50,66,100,246,-136,110, +Wednesday,9/14/2011 13:00,2,0,28,54,66,102,250,-70,180, +Wednesday,9/14/2011 14:00,6,0,30,58,64,102,258,-84,174, +Wednesday,9/14/2011 15:00,2,0,28,52,60,92,234,-138,96, +Wednesday,9/14/2011 16:00,6,0,26,58,60,102,250,-78,172, +Wednesday,9/14/2011 17:00,6,0,28,58,52,102,244,-32,212, +Wednesday,9/14/2011 18:00,4,0,26,56,44,102,232,0,232, +Wednesday,9/14/2011 19:00,0,0,12,36,36,100,184,0,184, +Wednesday,9/14/2011 20:00,2,0,12,38,38,92,182,0,182, +Wednesday,9/14/2011 21:00,0,0,4,26,36,110,174,0,174, +Wednesday,9/14/2011 22:00,0,0,4,14,32,92,142,0,142, +Wednesday,9/14/2011 23:00,2,0,2,8,32,102,146,0,146, +Thursday,9/15/2011 0:00,0,0,2,4,32,100,138,0,138, +Thursday,9/15/2011 1:00,0,0,4,6,34,100,144,0,144, +Thursday,9/15/2011 2:00,2,0,2,4,32,100,142,0,142, +Thursday,9/15/2011 3:00,0,0,4,4,32,100,140,0,140, +Thursday,9/15/2011 4:00,0,0,2,4,32,100,140,0,140, +Thursday,9/15/2011 5:00,0,0,2,4,32,100,140,0,140, +Thursday,9/15/2011 6:00,2,0,10,4,32,100,152,0,152, +Thursday,9/15/2011 7:00,0,0,30,20,40,100,190,0,190, +Thursday,9/15/2011 8:00,2,0,24,30,46,92,196,-18,178, +Thursday,9/15/2011 9:00,2,0,24,48,60,100,236,-48,188, +Thursday,9/15/2011 10:00,0,0,26,50,62,100,238,-186,52, +Thursday,9/15/2011 11:00,2,0,24,44,70,100,242,-302,-60, +Thursday,9/15/2011 12:00,6,0,26,40,66,102,238,-410,-172, +Thursday,9/15/2011 13:00,6,0,28,46,64,102,244,-262,-18, +Thursday,9/15/2011 14:00,8,0,30,44,62,102,246,-366,-120, +Thursday,9/15/2011 15:00,6,0,30,48,64,102,248,-246,2, +Thursday,9/15/2011 16:00,8,0,30,44,60,92,234,-348,-114, +Thursday,9/15/2011 17:00,8,0,30,48,52,102,240,-278,-38, +Thursday,9/15/2011 18:00,4,0,30,54,44,102,234,-88,146, +Thursday,9/15/2011 19:00,2,0,14,26,36,102,178,-18,160, +Thursday,9/15/2011 20:00,2,0,10,28,34,102,178,0,178, +Thursday,9/15/2011 21:00,2,0,4,28,36,102,172,0,172, +Thursday,9/15/2011 22:00,0,0,6,20,32,100,160,0,160, +Thursday,9/15/2011 23:00,2,0,2,14,32,92,142,0,142, +Friday,9/16/2011 0:00,0,0,2,8,32,100,142,0,142, +Friday,9/16/2011 1:00,0,0,2,4,34,100,140,0,140, +Friday,9/16/2011 2:00,4,0,2,4,30,100,140,0,140, +Friday,9/16/2011 3:00,0,0,2,4,30,100,136,0,136, +Friday,9/16/2011 4:00,0,0,4,4,32,100,140,0,140, +Friday,9/16/2011 5:00,0,0,2,4,32,100,138,0,138, +Friday,9/16/2011 6:00,0,0,10,4,34,92,138,0,138, +Friday,9/16/2011 7:00,4,0,20,18,40,100,182,-2,180, +Friday,9/16/2011 8:00,0,0,26,24,42,100,192,-90,102, +Friday,9/16/2011 9:00,4,0,26,34,52,100,216,-280,-64, +Friday,9/16/2011 10:00,6,0,26,34,60,102,226,-446,-220, +Friday,9/16/2011 11:00,8,0,26,28,60,102,222,-578,-356, +Friday,9/16/2011 12:00,8,0,26,26,56,102,220,-628,-408, +Friday,9/16/2011 13:00,10,0,26,24,58,94,212,-668,-456, +Friday,9/16/2011 14:00,8,0,28,32,54,102,224,-338,-114, +Friday,9/16/2011 15:00,12,0,24,28,56,102,222,-528,-306, +Friday,9/16/2011 16:00,12,0,28,34,50,102,226,-284,-58, +Friday,9/16/2011 17:00,12,0,26,36,48,102,224,-320,-96, +Friday,9/16/2011 18:00,8,0,28,40,38,102,216,-98,118, +Friday,9/16/2011 19:00,2,0,12,26,36,102,176,-12,164, +Friday,9/16/2011 20:00,2,0,12,26,34,102,176,0,176, +Friday,9/16/2011 21:00,0,0,4,10,32,100,148,0,148, +Friday,9/16/2011 22:00,2,0,2,8,32,102,146,0,146, +Friday,9/16/2011 23:00,0,0,2,8,30,92,132,0,132, +Saturday,9/17/2011 0:00,0,0,2,6,30,100,140,0,140, +Saturday,9/17/2011 1:00,2,0,2,6,30,100,144,0,144, +Saturday,9/17/2011 2:00,0,0,4,6,30,100,140,0,140, +Saturday,9/17/2011 3:00,0,0,0,4,30,100,134,0,134, +Saturday,9/17/2011 4:00,0,0,2,6,32,100,142,0,142, +Saturday,9/17/2011 5:00,0,0,2,6,30,100,138,0,138, +Saturday,9/17/2011 6:00,2,0,4,6,32,102,146,0,146, +Saturday,9/17/2011 7:00,0,0,0,6,30,100,136,0,136, +Saturday,9/17/2011 8:00,0,0,4,16,32,92,144,-6,138, +Saturday,9/17/2011 9:00,2,0,4,18,30,100,154,-120,34, +Saturday,9/17/2011 10:00,0,0,0,10,32,100,142,-232,-90, +Saturday,9/17/2011 11:00,2,0,2,10,30,102,146,-386,-240, +Saturday,9/17/2011 12:00,0,0,4,8,34,100,146,-490,-344, +Saturday,9/17/2011 13:00,6,0,4,8,32,104,156,-472,-316, +Saturday,9/17/2011 14:00,2,0,4,8,30,102,144,-174,-30, +Saturday,9/17/2011 15:00,0,0,4,10,32,94,140,-294,-154, +Saturday,9/17/2011 16:00,0,0,2,6,32,102,146,-390,-244, +Saturday,9/17/2011 17:00,0,0,4,10,32,104,150,-140,10, +Saturday,9/17/2011 18:00,2,0,2,12,30,102,148,-70,78, +Saturday,9/17/2011 19:00,2,0,2,10,32,102,148,-34,114, +Saturday,9/17/2011 20:00,0,0,4,12,30,100,146,0,146, +Saturday,9/17/2011 21:00,0,0,2,10,30,92,136,0,136, +Saturday,9/17/2011 22:00,0,0,0,12,34,100,148,0,148, +Saturday,9/17/2011 23:00,0,0,4,8,30,100,142,0,142, +Sunday,9/18/2011 0:00,0,0,2,8,28,100,140,0,140, +Sunday,9/18/2011 1:00,0,0,2,4,32,100,140,0,140, +Sunday,9/18/2011 2:00,0,0,0,4,30,100,136,0,136, +Sunday,9/18/2011 3:00,0,0,4,6,32,92,132,0,132, +Sunday,9/18/2011 4:00,0,0,4,6,30,100,140,0,140, +Sunday,9/18/2011 5:00,0,0,0,6,30,100,136,0,136, +Sunday,9/18/2011 6:00,0,0,4,4,32,100,142,0,142, +Sunday,9/18/2011 7:00,0,0,2,6,30,92,128,0,128, +Sunday,9/18/2011 8:00,0,0,4,4,30,100,140,-86,54, +Sunday,9/18/2011 9:00,0,0,2,4,30,100,136,-284,-148, +Sunday,9/18/2011 10:00,2,0,2,2,32,100,140,-456,-316, +Sunday,9/18/2011 11:00,0,0,4,6,30,100,140,-576,-436, +Sunday,9/18/2011 12:00,2,0,4,6,30,100,146,-644,-498, +Sunday,9/18/2011 13:00,8,0,2,6,32,92,140,-660,-520, +Sunday,9/18/2011 14:00,4,0,4,6,32,102,150,-650,-500, +Sunday,9/18/2011 15:00,8,0,4,6,32,102,152,-568,-416, +Sunday,9/18/2011 16:00,6,0,4,6,32,102,148,-440,-292, +Sunday,9/18/2011 17:00,4,0,2,8,30,102,146,-394,-248, +Sunday,9/18/2011 18:00,2,0,4,10,32,92,140,-102,38, +Sunday,9/18/2011 19:00,2,0,2,10,32,102,148,-10,138, +Sunday,9/18/2011 20:00,0,0,4,10,32,100,146,0,146, +Sunday,9/18/2011 21:00,2,0,2,14,32,102,152,0,152, +Sunday,9/18/2011 22:00,0,0,0,12,30,100,142,0,142, +Sunday,9/18/2011 23:00,2,0,4,10,32,102,150,0,150, +Monday,9/19/2011 0:00,0,0,2,10,32,92,136,0,136, +Monday,9/19/2011 1:00,0,0,2,8,30,100,142,0,142, +Monday,9/19/2011 2:00,0,0,2,10,30,100,142,0,142, +Monday,9/19/2011 3:00,4,0,2,6,30,100,140,0,140, +Monday,9/19/2011 4:00,0,0,2,6,30,100,140,0,140, +Monday,9/19/2011 5:00,0,0,2,6,32,100,140,0,140, +Monday,9/19/2011 6:00,0,0,10,8,30,100,150,0,150, +Monday,9/19/2011 7:00,2,0,22,24,42,102,192,0,192, +Monday,9/19/2011 8:00,6,0,28,34,44,92,204,-84,120, +Monday,9/19/2011 9:00,6,0,28,36,56,100,226,-278,-52, +Monday,9/19/2011 10:00,12,0,30,32,66,100,242,-436,-194, +Monday,9/19/2011 11:00,10,0,28,28,66,104,236,-560,-324, +Monday,9/19/2011 12:00,16,0,30,26,66,102,240,-630,-390, +Monday,9/19/2011 13:00,18,0,30,26,66,102,244,-638,-394, +Monday,9/19/2011 14:00,20,0,30,30,64,104,246,-530,-284, +Monday,9/19/2011 15:00,14,0,32,30,62,102,242,-538,-296, +Monday,9/19/2011 16:00,20,0,28,32,58,104,242,-488,-246, +Monday,9/19/2011 17:00,18,0,32,42,52,102,246,-182,64, +Monday,9/19/2011 18:00,14,0,30,42,46,102,234,-190,44, +Monday,9/19/2011 19:00,8,0,2,22,38,94,164,-36,128, +Monday,9/19/2011 20:00,8,0,6,30,34,102,180,0,180, +Monday,9/19/2011 21:00,6,0,2,24,36,102,170,0,170, +Monday,9/19/2011 22:00,0,0,4,20,32,100,156,0,156, +Monday,9/19/2011 23:00,2,0,2,14,32,100,152,0,152, +Tuesday,9/20/2011 0:00,0,0,4,10,32,92,138,0,138, +Tuesday,9/20/2011 1:00,0,0,2,6,32,100,142,0,142, +Tuesday,9/20/2011 2:00,2,0,0,10,32,100,148,0,148, +Tuesday,9/20/2011 3:00,0,0,2,10,34,100,146,0,146, +Tuesday,9/20/2011 4:00,0,0,2,6,32,100,142,0,142, +Tuesday,9/20/2011 5:00,2,0,2,6,34,100,146,0,146, +Tuesday,9/20/2011 6:00,0,0,12,10,36,100,158,0,158, +Tuesday,9/20/2011 7:00,0,0,24,24,42,92,182,0,182, +Tuesday,9/20/2011 8:00,4,0,26,34,48,100,210,-88,122, +Tuesday,9/20/2011 9:00,4,0,26,36,62,100,228,-296,-68, +Tuesday,9/20/2011 10:00,4,0,28,32,64,100,228,-354,-126, +Tuesday,9/20/2011 11:00,6,0,28,32,66,100,232,-426,-194, +Tuesday,9/20/2011 12:00,6,0,30,30,68,100,234,-436,-202, +Tuesday,9/20/2011 13:00,6,0,28,30,70,100,236,-462,-226, +Tuesday,9/20/2011 14:00,6,0,30,34,66,92,228,-304,-76, +Tuesday,9/20/2011 15:00,4,0,28,30,62,100,224,-430,-206, +Tuesday,9/20/2011 16:00,6,0,30,30,58,100,224,-478,-254, +Tuesday,9/20/2011 17:00,6,0,30,40,52,100,228,-222,6, +Tuesday,9/20/2011 18:00,4,0,24,42,40,100,212,-64,148, +Tuesday,9/20/2011 19:00,4,0,8,30,36,92,168,-18,150, +Tuesday,9/20/2011 20:00,0,0,4,30,36,100,170,0,170, +Tuesday,9/20/2011 21:00,0,0,4,32,34,100,170,0,170, +Tuesday,9/20/2011 22:00,0,0,2,18,32,100,154,0,154, +Tuesday,9/20/2011 23:00,4,0,2,12,36,100,152,0,152, +Wednesday,9/21/2011 0:00,0,0,2,8,30,100,142,0,142, +Wednesday,9/21/2011 1:00,0,0,2,8,32,92,132,0,132, +Wednesday,9/21/2011 2:00,0,0,2,4,30,100,138,0,138, +Wednesday,9/21/2011 3:00,0,0,2,4,32,100,138,0,138, +Wednesday,9/21/2011 4:00,0,0,2,6,34,100,142,0,142, +Wednesday,9/21/2011 5:00,0,0,2,4,32,100,138,0,138, +Wednesday,9/21/2011 6:00,0,0,14,8,34,100,156,0,156, +Wednesday,9/21/2011 7:00,0,0,20,20,40,92,172,0,172, +Wednesday,9/21/2011 8:00,0,0,24,30,50,100,204,-78,126, +Wednesday,9/21/2011 9:00,0,0,26,36,58,100,218,-306,-88, +Wednesday,9/21/2011 10:00,0,0,26,30,64,100,220,-452,-232, +Wednesday,9/21/2011 11:00,4,0,24,32,66,100,228,-502,-274, +Wednesday,9/21/2011 12:00,6,0,26,30,62,100,226,-654,-428, +Wednesday,9/21/2011 13:00,6,0,26,30,62,92,216,-664,-448, +Wednesday,9/21/2011 14:00,14,30,30,32,62,100,268,-660,-392, +Wednesday,9/21/2011 15:00,10,204,28,32,66,100,442,-582,-140, +Wednesday,9/21/2011 16:00,10,60,28,34,58,100,290,-420,-130, +Wednesday,9/21/2011 17:00,10,30,30,38,50,100,258,-306,-48, +Wednesday,9/21/2011 18:00,6,0,30,38,46,100,220,-148,72, +Wednesday,9/21/2011 19:00,4,30,4,22,34,100,194,-14,180, +Wednesday,9/21/2011 20:00,0,0,6,28,36,100,172,0,172, +Wednesday,9/21/2011 21:00,0,0,4,28,34,92,156,0,156, +Wednesday,9/21/2011 22:00,0,0,4,20,34,100,156,0,156, +Wednesday,9/21/2011 23:00,0,0,4,14,30,100,148,0,148, +Thursday,9/22/2011 0:00,0,0,2,10,34,100,146,0,146, +Thursday,9/22/2011 1:00,0,0,0,8,32,100,140,0,140, +Thursday,9/22/2011 2:00,0,0,2,8,34,100,144,0,144, +Thursday,9/22/2011 3:00,0,0,4,6,30,100,140,0,140, +Thursday,9/22/2011 4:00,0,30,0,8,34,100,172,0,172, +Thursday,9/22/2011 5:00,0,0,2,8,32,100,142,0,142, +Thursday,9/22/2011 6:00,0,0,12,12,34,100,158,0,158, +Thursday,9/22/2011 7:00,4,30,22,30,40,100,228,-2,226, +Thursday,9/22/2011 8:00,0,0,24,38,46,92,200,-98,102, +Thursday,9/22/2011 9:00,0,30,24,40,58,100,252,-296,-44, +Thursday,9/22/2011 10:00,4,0,26,38,68,100,234,-450,-216, +Thursday,9/22/2011 11:00,10,0,26,30,66,100,234,-572,-338, +Thursday,9/22/2011 12:00,10,30,22,30,66,100,256,-628,-372, +Thursday,9/22/2011 13:00,4,0,20,28,64,100,216,-656,-440, +Thursday,9/22/2011 14:00,10,0,24,30,64,100,228,-648,-420, +Thursday,9/22/2011 15:00,10,0,32,30,60,100,234,-584,-350, +Thursday,9/22/2011 16:00,10,0,30,34,58,92,224,-446,-222, +Thursday,9/22/2011 17:00,10,0,30,36,50,100,228,-322,-94, +Thursday,9/22/2011 18:00,10,0,30,40,40,110,232,-150,82, +Thursday,9/22/2011 19:00,4,0,6,24,36,92,160,-22,138, +Thursday,9/22/2011 20:00,4,118,4,30,38,100,294,0,294, +Thursday,9/22/2011 21:00,0,0,6,30,36,100,172,0,172, +Thursday,9/22/2011 22:00,0,0,4,18,32,100,154,0,154, +Thursday,9/22/2011 23:00,4,0,4,10,36,100,154,0,154, +Friday,9/23/2011 0:00,0,0,2,8,34,100,144,0,144, +Friday,9/23/2011 1:00,0,0,4,6,32,100,142,0,142, +Friday,9/23/2011 2:00,0,0,4,6,34,92,134,0,134, +Friday,9/23/2011 3:00,0,0,0,4,34,110,148,0,148, +Friday,9/23/2011 4:00,0,0,2,6,32,92,132,0,132, +Friday,9/23/2011 5:00,0,30,2,4,34,100,170,0,170, +Friday,9/23/2011 6:00,0,0,12,8,34,100,154,0,154, +Friday,9/23/2011 7:00,4,0,24,20,40,100,188,0,188, +Friday,9/23/2011 8:00,0,0,26,28,46,100,200,-86,114, +Friday,9/23/2011 9:00,6,0,26,36,52,100,220,-276,-56, +Friday,9/23/2011 10:00,6,0,30,28,58,100,222,-428,-206, +Friday,9/23/2011 11:00,10,0,28,22,60,102,220,-546,-326, +Friday,9/23/2011 12:00,12,0,28,24,58,92,216,-592,-376, +Friday,9/23/2011 13:00,14,0,30,22,58,102,228,-604,-376, +Friday,9/23/2011 14:00,14,0,30,24,54,104,226,-608,-382, +Friday,9/23/2011 15:00,14,0,30,24,54,102,226,-554,-328, +Friday,9/23/2011 16:00,18,0,30,28,50,102,228,-450,-222, +Friday,9/23/2011 17:00,12,0,30,34,46,102,222,-318,-96, +Friday,9/23/2011 18:00,14,0,28,44,38,102,228,-92,136, +Friday,9/23/2011 19:00,14,0,6,26,36,102,184,-24,160, +Friday,9/23/2011 20:00,8,0,4,30,34,102,180,0,180, +Friday,9/23/2011 21:00,2,0,4,30,36,102,172,0,172, +Friday,9/23/2011 22:00,2,0,2,18,32,102,158,0,158, +Friday,9/23/2011 23:00,0,0,2,10,32,100,144,0,144, +Saturday,9/24/2011 0:00,0,0,2,10,30,100,144,0,144, +Saturday,9/24/2011 1:00,2,0,2,8,32,102,148,0,148, +Saturday,9/24/2011 2:00,0,0,0,10,30,100,142,0,142, +Saturday,9/24/2011 3:00,2,0,2,10,32,100,148,0,148, +Saturday,9/24/2011 4:00,0,118,2,8,30,100,258,0,258, +Saturday,9/24/2011 5:00,0,60,4,6,32,100,200,0,200, +Saturday,9/24/2011 6:00,2,0,4,6,34,102,148,0,148, +Saturday,9/24/2011 7:00,0,0,4,10,30,100,142,0,142, +Saturday,9/24/2011 8:00,0,0,6,8,30,100,144,-80,64, +Saturday,9/24/2011 9:00,2,0,0,8,32,102,144,-270,-126, +Saturday,9/24/2011 10:00,4,0,2,8,32,102,150,-428,-278, +Saturday,9/24/2011 11:00,4,0,4,4,34,102,148,-530,-382, +Saturday,9/24/2011 12:00,6,0,2,4,30,104,146,-578,-432, +Saturday,9/24/2011 13:00,8,30,4,4,32,102,180,-628,-448, +Saturday,9/24/2011 14:00,10,0,2,4,34,102,154,-590,-436, +Saturday,9/24/2011 15:00,12,0,4,4,30,104,156,-538,-382, +Saturday,9/24/2011 16:00,10,0,2,6,32,102,154,-392,-238, +Saturday,9/24/2011 17:00,14,0,4,6,30,104,156,-288,-132, +Saturday,9/24/2011 18:00,8,0,0,6,34,104,150,-118,32, +Saturday,9/24/2011 19:00,6,0,4,8,30,104,154,-18,136, +Saturday,9/24/2011 20:00,4,0,2,10,30,102,150,0,150, +Saturday,9/24/2011 21:00,2,0,2,10,32,102,148,0,148, +Saturday,9/24/2011 22:00,0,0,2,8,32,100,142,0,142, +Saturday,9/24/2011 23:00,2,30,2,12,30,102,178,0,178, +Sunday,9/25/2011 0:00,0,30,2,12,30,100,174,0,174, +Sunday,9/25/2011 1:00,0,0,2,8,32,100,142,0,142, +Sunday,9/25/2011 2:00,2,0,2,10,32,110,156,0,156, +Sunday,9/25/2011 3:00,0,0,2,10,32,100,146,0,146, +Sunday,9/25/2011 4:00,0,30,4,10,30,100,174,0,174, +Sunday,9/25/2011 5:00,2,0,2,6,32,100,144,0,144, +Sunday,9/25/2011 6:00,0,0,2,6,32,100,140,0,140, +Sunday,9/25/2011 7:00,0,0,2,6,32,100,140,0,140, +Sunday,9/25/2011 8:00,0,58,4,4,34,100,202,-76,126, +Sunday,9/25/2011 9:00,2,0,4,4,32,102,144,-266,-122, +Sunday,9/25/2011 10:00,4,0,2,4,30,102,144,-416,-272, +Sunday,9/25/2011 11:00,8,0,2,4,34,102,152,-528,-376, +Sunday,9/25/2011 12:00,8,0,4,4,34,104,154,-594,-440, +Sunday,9/25/2011 13:00,16,30,2,6,34,104,192,-622,-430, +Sunday,9/25/2011 14:00,16,30,4,4,32,106,190,-598,-408, +Sunday,9/25/2011 15:00,16,0,2,4,34,104,162,-542,-380, +Sunday,9/25/2011 16:00,16,0,4,6,30,104,162,-440,-278, +Sunday,9/25/2011 17:00,12,30,2,6,34,104,190,-298,-108, +Sunday,9/25/2011 18:00,14,0,2,8,32,104,158,-122,36, +Sunday,9/25/2011 19:00,6,30,6,6,36,104,186,-10,176, +Sunday,9/25/2011 20:00,4,0,2,10,32,104,150,0,150, +Sunday,9/25/2011 21:00,2,0,2,10,32,102,150,0,150, +Sunday,9/25/2011 22:00,2,0,2,8,32,102,146,0,146, +Sunday,9/25/2011 23:00,2,0,2,8,34,102,148,0,148, +Monday,9/26/2011 0:00,0,0,4,12,30,100,146,0,146, +Monday,9/26/2011 1:00,2,0,2,6,34,102,146,0,146, +Monday,9/26/2011 2:00,0,0,2,4,34,100,142,0,142, +Monday,9/26/2011 3:00,2,0,2,4,32,100,144,0,144, +Monday,9/26/2011 4:00,0,0,2,4,30,100,136,0,136, +Monday,9/26/2011 5:00,0,0,2,6,32,100,142,0,142, +Monday,9/26/2011 6:00,0,0,12,8,34,100,154,0,154, +Monday,9/26/2011 7:00,6,0,26,24,42,100,200,0,200, +Monday,9/26/2011 8:00,2,0,32,30,46,110,222,-82,140, +Monday,9/26/2011 9:00,6,0,30,34,56,92,218,-162,56, +Monday,9/26/2011 10:00,10,0,30,30,70,110,250,-436,-186, +Monday,9/26/2011 11:00,22,0,32,32,68,102,256,-464,-208, +Monday,9/26/2011 12:00,20,0,30,26,66,104,246,-602,-356, +Monday,9/26/2011 13:00,32,0,30,26,68,102,258,-624,-366, +Monday,9/26/2011 14:00,32,0,32,30,68,102,262,-610,-348, +Monday,9/26/2011 15:00,36,0,30,32,64,102,266,-530,-264, +Monday,9/26/2011 16:00,32,0,30,38,60,102,260,-290,-30, +Monday,9/26/2011 17:00,28,0,32,46,52,102,262,-146,116, +Monday,9/26/2011 18:00,28,0,28,44,42,112,256,-126,130, +Monday,9/26/2011 19:00,14,0,12,28,38,102,194,-10,184, +Monday,9/26/2011 20:00,12,0,10,30,36,102,188,0,188, +Monday,9/26/2011 21:00,4,0,2,28,32,102,170,0,170, +Monday,9/26/2011 22:00,0,0,4,22,36,104,164,0,164, +Monday,9/26/2011 23:00,2,0,2,10,32,102,148,0,148, +Tuesday,9/27/2011 0:00,0,0,0,8,34,100,142,0,142, +Tuesday,9/27/2011 1:00,2,0,4,6,32,102,146,0,146, +Tuesday,9/27/2011 2:00,0,30,2,8,34,100,174,0,174, +Tuesday,9/27/2011 3:00,2,0,2,12,32,100,150,0,150, +Tuesday,9/27/2011 4:00,0,0,2,12,30,100,144,0,144, +Tuesday,9/27/2011 5:00,0,0,2,6,32,100,142,0,142, +Tuesday,9/27/2011 6:00,0,30,12,10,36,100,188,0,188, +Tuesday,9/27/2011 7:00,4,0,28,26,42,100,198,0,198, +Tuesday,9/27/2011 8:00,4,0,30,34,50,100,218,-70,148, +Tuesday,9/27/2011 9:00,10,0,30,40,62,100,244,-252,-8, +Tuesday,9/27/2011 10:00,4,0,30,36,62,102,236,-330,-94, +Tuesday,9/27/2011 11:00,14,0,30,30,64,102,242,-534,-292, +Tuesday,9/27/2011 12:00,18,0,30,30,70,102,248,-604,-356, +Tuesday,9/27/2011 13:00,24,0,34,28,68,102,256,-622,-366, +Tuesday,9/27/2011 14:00,28,0,30,30,62,112,262,-592,-330, +Tuesday,9/27/2011 15:00,30,0,32,30,62,104,258,-530,-272, +Tuesday,9/27/2011 16:00,28,0,30,32,60,102,254,-430,-176, +Tuesday,9/27/2011 17:00,24,0,32,36,50,104,244,-286,-42, +Tuesday,9/27/2011 18:00,24,0,30,40,42,102,242,-110,132, +Tuesday,9/27/2011 19:00,14,0,14,26,36,104,192,-6,186, +Tuesday,9/27/2011 20:00,8,0,10,34,38,112,200,0,200, +Tuesday,9/27/2011 21:00,8,0,4,34,36,102,184,0,184, +Tuesday,9/27/2011 22:00,0,0,4,24,34,100,164,0,164, +Tuesday,9/27/2011 23:00,2,0,2,16,30,102,152,0,152, +Wednesday,9/28/2011 0:00,2,0,2,12,36,102,154,0,154, +Wednesday,9/28/2011 1:00,0,0,4,10,34,100,150,0,150, +Wednesday,9/28/2011 2:00,0,0,2,8,34,100,144,0,144, +Wednesday,9/28/2011 3:00,0,0,2,6,32,100,142,0,142, +Wednesday,9/28/2011 4:00,2,0,0,6,34,102,146,0,146, +Wednesday,9/28/2011 5:00,0,0,4,6,34,100,144,0,144, +Wednesday,9/28/2011 6:00,0,0,10,8,36,100,154,0,154, +Wednesday,9/28/2011 7:00,6,0,26,20,42,100,196,0,196, +Wednesday,9/28/2011 8:00,2,0,30,28,48,100,210,-88,122, +Wednesday,9/28/2011 9:00,6,0,30,36,60,102,234,-262,-28, +Wednesday,9/28/2011 10:00,14,0,32,30,64,102,242,-412,-170, +Wednesday,9/28/2011 11:00,14,0,30,30,64,104,240,-514,-274, +Wednesday,9/28/2011 12:00,20,0,32,24,60,104,242,-592,-350, +Wednesday,9/28/2011 13:00,28,0,30,28,64,112,262,-612,-350, +Wednesday,9/28/2011 14:00,24,0,32,30,60,104,252,-594,-342, +Wednesday,9/28/2011 15:00,30,0,32,28,62,104,256,-534,-278, +Wednesday,9/28/2011 16:00,28,0,30,30,60,102,250,-434,-184, +Wednesday,9/28/2011 17:00,30,0,30,38,52,104,254,-288,-34, +Wednesday,9/28/2011 18:00,24,0,30,44,48,104,248,-116,132, +Wednesday,9/28/2011 19:00,20,0,12,24,34,104,194,-10,184, +Wednesday,9/28/2011 20:00,12,0,10,36,36,112,204,0,204, +Wednesday,9/28/2011 21:00,8,0,2,32,36,102,182,0,182, +Wednesday,9/28/2011 22:00,4,0,4,22,38,102,172,0,172, +Wednesday,9/28/2011 23:00,0,0,2,12,32,100,146,0,146, +Thursday,9/29/2011 0:00,2,0,4,8,32,102,148,0,148, +Thursday,9/29/2011 1:00,0,0,4,6,36,100,146,0,146, +Thursday,9/29/2011 2:00,2,0,2,2,34,102,142,0,142, +Thursday,9/29/2011 3:00,0,0,2,6,32,100,142,0,142, +Thursday,9/29/2011 4:00,0,30,0,6,34,100,170,0,170, +Thursday,9/29/2011 5:00,4,0,2,6,34,100,146,0,146, +Thursday,9/29/2011 6:00,0,0,10,4,32,100,148,0,148, +Thursday,9/29/2011 7:00,4,30,26,26,40,100,224,0,224, +Thursday,9/29/2011 8:00,0,0,30,40,50,100,220,-28,192, +Thursday,9/29/2011 9:00,4,30,28,48,58,100,268,-68,200, +Thursday,9/29/2011 10:00,4,30,30,50,68,100,278,-178,100, +Thursday,9/29/2011 11:00,4,118,30,42,64,100,356,-356,0, +Thursday,9/29/2011 12:00,6,0,30,32,64,100,234,-552,-318, +Thursday,9/29/2011 13:00,6,0,34,30,66,100,236,-630,-394, +Thursday,9/29/2011 14:00,10,0,30,32,62,100,234,-610,-376, +Thursday,9/29/2011 15:00,14,30,30,34,60,100,268,-550,-282, +Thursday,9/29/2011 16:00,14,0,30,36,58,100,238,-438,-200, +Thursday,9/29/2011 17:00,16,0,30,42,50,100,240,-286,-46, +Thursday,9/29/2011 18:00,10,0,30,50,42,100,230,-108,122, +Thursday,9/29/2011 19:00,10,0,12,28,36,100,186,-6,180, +Thursday,9/29/2011 20:00,4,30,12,30,38,100,210,0,210, +Thursday,9/29/2011 21:00,0,0,4,28,38,100,170,0,170, +Thursday,9/29/2011 22:00,0,0,6,20,34,100,160,0,160, +Thursday,9/29/2011 23:00,0,0,4,10,32,100,146,0,146, +Friday,9/30/2011 0:00,0,0,2,10,34,100,146,0,146, +Friday,9/30/2011 1:00,0,0,4,6,34,100,144,0,144, +Friday,9/30/2011 2:00,0,0,2,4,32,100,138,0,138, +Friday,9/30/2011 3:00,0,0,2,4,32,100,138,0,138, +Friday,9/30/2011 4:00,0,0,0,6,34,100,142,0,142, +Friday,9/30/2011 5:00,0,30,2,4,34,100,170,0,170, +Friday,9/30/2011 6:00,4,0,10,10,32,100,156,0,156, +Friday,9/30/2011 7:00,0,0,24,22,38,110,194,0,194, +Friday,9/30/2011 8:00,4,30,26,30,44,92,224,-66,158, +Friday,9/30/2011 9:00,4,0,24,32,56,110,224,-256,-32, +Friday,9/30/2011 10:00,4,30,28,28,60,100,248,-420,-172, +Friday,9/30/2011 11:00,10,0,30,26,62,100,226,-532,-306, +Friday,9/30/2011 12:00,12,0,28,26,60,100,228,-596,-368, +Friday,9/30/2011 13:00,12,0,28,24,58,102,224,-618,-394, +Friday,9/30/2011 14:00,14,0,30,24,60,102,230,-594,-364, +Friday,9/30/2011 15:00,18,0,30,26,56,112,240,-536,-296, +Friday,9/30/2011 16:00,14,0,30,28,54,102,230,-430,-200, +Friday,9/30/2011 17:00,12,0,30,30,44,102,218,-278,-60, +Friday,9/30/2011 18:00,14,0,28,40,40,104,226,-98,128, +Friday,9/30/2011 19:00,14,0,14,30,36,102,196,-6,190, +Friday,9/30/2011 20:00,2,88,12,34,36,102,274,0,274, +Friday,9/30/2011 21:00,2,0,4,30,38,110,186,0,186, +Friday,9/30/2011 22:00,2,0,6,16,32,100,158,0,158, +Friday,9/30/2011 23:00,0,0,4,6,32,100,142,0,142, +Saturday,10/01/2011 00:00,0,0,2,8,34,100,144,0,144, +Saturday,10/01/2011 01:00,4,0,4,4,30,100,142,0,142, +Saturday,10/01/2011 02:00,0,0,4,4,30,100,138,0,138, +Saturday,10/01/2011 03:00,0,0,4,4,32,110,150,0,150, +Saturday,10/01/2011 04:00,0,0,2,6,30,100,140,0,140, +Saturday,10/01/2011 05:00,0,0,4,6,30,100,142,0,142, +Saturday,10/01/2011 06:00,0,0,4,8,30,100,142,0,142, +Saturday,10/01/2011 07:00,4,0,2,8,32,100,146,0,146, +Saturday,10/01/2011 08:00,0,0,4,8,30,100,142,-62,80, +Saturday,10/01/2011 09:00,0,0,2,4,30,100,136,-242,-106, +Saturday,10/01/2011 10:00,4,0,2,4,30,102,144,-402,-258, +Saturday,10/01/2011 11:00,4,0,4,6,32,112,158,-510,-352, +Saturday,10/01/2011 12:00,8,0,2,4,32,104,150,-578,-428, +Saturday,10/01/2011 13:00,16,0,2,6,30,104,160,-606,-446, +Saturday,10/01/2011 14:00,18,0,4,4,30,102,160,-580,-420, +Saturday,10/01/2011 15:00,14,0,2,4,36,104,160,-424,-264, +Saturday,10/01/2011 16:00,14,0,4,6,30,104,156,-180,-24, +Saturday,10/01/2011 17:00,8,0,2,8,32,112,164,-42,122, +Saturday,10/01/2011 18:00,2,0,2,10,32,102,148,-28,120, +Saturday,10/01/2011 19:00,0,0,2,8,30,104,144,-2,142, +Saturday,10/01/2011 20:00,2,0,2,10,32,102,150,0,150, +Saturday,10/01/2011 21:00,2,0,2,10,30,102,144,0,144, +Saturday,10/01/2011 22:00,0,0,4,10,32,100,146,0,146, +Saturday,10/01/2011 23:00,2,0,2,10,30,110,154,0,154, +Sunday,10/02/2011 00:00,2,0,2,4,34,102,144,0,144, +Sunday,10/02/2011 01:00,0,0,2,4,30,100,136,0,136, +Sunday,10/02/2011 02:00,0,0,2,4,34,100,142,0,142, +Sunday,10/02/2011 03:00,2,118,4,4,32,102,262,0,262, +Sunday,10/02/2011 04:00,0,0,4,6,32,110,152,0,152, +Sunday,10/02/2011 05:00,0,0,4,8,30,100,142,0,142, +Sunday,10/02/2011 06:00,0,0,6,6,30,100,142,0,142, +Sunday,10/02/2011 07:00,0,0,4,4,34,100,142,0,142, +Sunday,10/02/2011 08:00,0,0,2,6,32,100,140,-58,82, +Sunday,10/02/2011 09:00,4,0,4,2,32,100,142,-242,-100, +Sunday,10/02/2011 10:00,4,0,0,4,32,112,154,-400,-246, +Sunday,10/02/2011 11:00,4,0,4,4,34,104,148,-506,-358, +Sunday,10/02/2011 12:00,10,0,4,4,32,104,154,-580,-426, +Sunday,10/02/2011 13:00,14,0,0,4,32,102,154,-278,-124, +Sunday,10/02/2011 14:00,10,0,4,8,32,102,160,-102,58, +Sunday,10/02/2011 15:00,6,0,2,6,34,104,154,-312,-158, +Sunday,10/02/2011 16:00,2,0,2,6,30,114,154,-396,-242, +Sunday,10/02/2011 17:00,8,0,4,8,32,102,154,-262,-108, +Sunday,10/02/2011 18:00,8,0,2,8,30,104,152,-28,124, +Sunday,10/02/2011 19:00,4,0,2,6,32,104,146,0,146, +Sunday,10/02/2011 20:00,0,0,2,10,34,100,148,0,148, +Sunday,10/02/2011 21:00,4,0,2,6,30,102,146,0,146, +Sunday,10/02/2011 22:00,0,0,2,8,30,110,150,0,150, +Sunday,10/02/2011 23:00,2,0,0,6,34,102,144,0,144, +Monday,10/03/2011 00:00,0,0,4,6,32,104,146,0,146, +Monday,10/03/2011 01:00,0,30,4,6,30,100,168,0,168, +Monday,10/03/2011 02:00,2,88,2,2,32,102,228,0,228, +Monday,10/03/2011 03:00,2,0,2,6,30,102,142,0,142, +Monday,10/03/2011 04:00,0,0,4,4,34,110,152,0,152, +Monday,10/03/2011 05:00,0,0,4,4,32,100,140,0,140, +Monday,10/03/2011 06:00,4,0,12,6,32,100,154,0,154, +Monday,10/03/2011 07:00,4,0,28,22,40,100,196,0,196, +Monday,10/03/2011 08:00,2,0,30,34,46,102,216,-50,166, +Monday,10/03/2011 09:00,8,0,30,34,60,102,234,-236,-2, +Monday,10/03/2011 10:00,10,0,30,26,62,102,230,-400,-170, +Monday,10/03/2011 11:00,14,0,30,26,64,112,248,-498,-250, +Monday,10/03/2011 12:00,22,0,30,26,68,104,250,-572,-322, +Monday,10/03/2011 13:00,26,0,32,22,62,104,248,-604,-356, +Monday,10/03/2011 14:00,30,0,30,26,62,114,260,-586,-326, +Monday,10/03/2011 15:00,30,0,30,28,60,104,252,-516,-264, +Monday,10/03/2011 16:00,28,0,30,32,58,106,256,-352,-96, +Monday,10/03/2011 17:00,26,0,30,38,50,104,248,-152,96, +Monday,10/03/2011 18:00,20,0,30,46,44,104,244,-62,182, +Monday,10/03/2011 19:00,14,0,12,30,36,112,204,-2,202, +Monday,10/03/2011 20:00,6,0,12,32,38,104,192,0,192, +Monday,10/03/2011 21:00,4,0,2,28,34,104,172,0,172, +Monday,10/03/2011 22:00,2,0,2,16,36,102,158,0,158, +Monday,10/03/2011 23:00,2,0,4,10,32,102,148,0,148, +Tuesday,10/04/2011 00:00,2,0,2,10,36,102,152,0,152, +Tuesday,10/04/2011 01:00,0,30,2,6,32,100,170,0,170, +Tuesday,10/04/2011 02:00,2,30,0,6,34,102,174,0,174, +Tuesday,10/04/2011 03:00,0,30,4,6,36,110,184,0,184, +Tuesday,10/04/2011 04:00,0,0,2,6,34,100,142,0,142, +Tuesday,10/04/2011 05:00,4,0,2,4,34,100,144,0,144, +Tuesday,10/04/2011 06:00,0,0,12,8,34,100,154,0,154, +Tuesday,10/04/2011 07:00,4,30,26,24,42,100,224,0,224, +Tuesday,10/04/2011 08:00,2,30,28,34,50,100,244,-58,186, +Tuesday,10/04/2011 09:00,6,0,30,36,58,110,240,-142,98, +Tuesday,10/04/2011 10:00,8,0,30,32,68,104,242,-380,-138, +Tuesday,10/04/2011 11:00,12,0,30,28,66,112,248,-510,-262, +Tuesday,10/04/2011 12:00,22,0,30,28,66,102,248,-574,-326, +Tuesday,10/04/2011 13:00,24,0,34,28,64,104,252,-568,-316, +Tuesday,10/04/2011 14:00,24,0,30,36,62,112,266,-250,16, +Tuesday,10/04/2011 15:00,24,0,32,40,64,104,262,-210,52, +Tuesday,10/04/2011 16:00,20,0,30,44,56,104,254,-90,164, +Tuesday,10/04/2011 17:00,16,0,30,44,52,104,248,-98,150, +Tuesday,10/04/2011 18:00,10,0,32,48,40,114,242,-10,232, +Tuesday,10/04/2011 19:00,8,0,12,28,36,102,186,0,186, +Tuesday,10/04/2011 20:00,2,0,12,26,36,102,178,0,178, +Tuesday,10/04/2011 21:00,2,30,2,26,34,102,194,0,194, +Tuesday,10/04/2011 22:00,2,0,4,18,34,112,168,0,168, +Tuesday,10/04/2011 23:00,2,30,2,10,34,102,180,0,180, +Wednesday,10/05/2011 00:00,2,58,4,2,34,102,202,0,202, +Wednesday,10/05/2011 01:00,0,0,4,4,32,100,140,0,140, +Wednesday,10/05/2011 02:00,2,0,4,4,34,102,144,0,144, +Wednesday,10/05/2011 03:00,0,0,4,6,30,110,148,0,148, +Wednesday,10/05/2011 04:00,2,0,4,2,34,102,146,0,146, +Wednesday,10/05/2011 05:00,0,0,4,6,34,100,144,0,144, +Wednesday,10/05/2011 06:00,0,0,12,4,36,100,152,0,152, +Wednesday,10/05/2011 07:00,4,0,26,24,40,110,202,0,202, +Wednesday,10/05/2011 08:00,4,0,26,34,48,100,210,-48,162, +Wednesday,10/05/2011 09:00,2,30,28,38,60,100,258,-170,88, +Wednesday,10/05/2011 10:00,2,0,28,40,64,102,236,-222,14, +Wednesday,10/05/2011 11:00,8,0,28,34,70,104,244,-360,-116, +Wednesday,10/05/2011 12:00,12,0,30,28,62,104,236,-398,-162, +Wednesday,10/05/2011 13:00,14,0,30,30,64,114,254,-398,-144, +Wednesday,10/05/2011 14:00,14,0,32,32,60,104,246,-398,-152, +Wednesday,10/05/2011 15:00,20,0,30,30,62,106,250,-398,-148, +Wednesday,10/05/2011 16:00,18,0,28,34,60,104,244,-398,-154, +Wednesday,10/05/2011 17:00,18,0,30,40,52,104,242,-398,-156, +Wednesday,10/05/2011 18:00,12,0,28,46,48,104,238,-398,-160, +Wednesday,10/05/2011 19:00,6,0,12,26,34,102,180,0,180, +Wednesday,10/05/2011 20:00,2,0,10,38,38,112,200,0,200, +Wednesday,10/05/2011 21:00,2,118,2,34,36,102,296,0,296, +Wednesday,10/05/2011 22:00,2,0,4,24,36,100,168,0,168, +Wednesday,10/05/2011 23:00,0,0,4,12,36,102,152,0,152, +Thursday,10/06/2011 00:00,0,0,2,6,32,100,140,0,140, +Thursday,10/06/2011 01:00,0,30,4,4,32,110,178,0,178, +Thursday,10/06/2011 02:00,0,0,4,4,34,100,142,0,142, +Thursday,10/06/2011 03:00,0,0,2,4,32,100,138,0,138, +Thursday,10/06/2011 04:00,0,0,2,6,32,100,140,0,140, +Thursday,10/06/2011 05:00,0,0,2,6,32,110,150,0,150, +Thursday,10/06/2011 06:00,0,0,10,10,38,100,160,0,160, +Thursday,10/06/2011 07:00,4,0,24,24,40,100,192,0,192, +Thursday,10/06/2011 08:00,4,30,24,36,48,100,240,-56,184, +Thursday,10/06/2011 09:00,4,0,30,36,60,100,230,-236,-6, +Thursday,10/06/2011 10:00,10,0,30,30,68,110,246,-412,-166, +Thursday,10/06/2011 11:00,10,0,28,30,68,100,236,-530,-294, +Thursday,10/06/2011 12:00,16,0,30,30,68,102,242,-608,-366, +Thursday,10/06/2011 13:00,14,0,30,28,68,100,240,-650,-410, +Thursday,10/06/2011 14:00,16,0,30,30,64,110,252,-630,-378, +Thursday,10/06/2011 15:00,16,0,30,32,62,100,240,-440,-200, +Thursday,10/06/2011 16:00,10,58,28,42,58,100,296,-134,162, +Thursday,10/06/2011 17:00,6,0,30,46,50,110,240,-110,130, +Thursday,10/06/2011 18:00,6,0,30,44,40,100,220,-56,164, +Thursday,10/06/2011 19:00,0,30,10,22,40,100,202,-2,200, +Thursday,10/06/2011 20:00,0,0,10,28,34,100,172,0,172, +Thursday,10/06/2011 21:00,0,0,2,24,38,100,162,0,162, +Thursday,10/06/2011 22:00,0,60,6,20,36,100,220,0,220, +Thursday,10/06/2011 23:00,0,0,4,6,34,100,144,0,144, +Friday,10/07/2011 00:00,0,0,2,4,36,100,142,0,142, +Friday,10/07/2011 01:00,0,0,4,2,34,100,140,0,140, +Friday,10/07/2011 02:00,0,0,2,4,34,100,140,0,140, +Friday,10/07/2011 03:00,0,0,0,4,34,100,140,0,140, +Friday,10/07/2011 04:00,0,30,2,4,34,100,170,0,170, +Friday,10/07/2011 05:00,0,0,2,6,36,100,144,0,144, +Friday,10/07/2011 06:00,4,0,10,8,36,100,158,0,158, +Friday,10/07/2011 07:00,0,30,22,20,40,100,212,0,212, +Friday,10/07/2011 08:00,0,30,24,30,48,100,230,-60,170, +Friday,10/07/2011 09:00,0,30,24,34,52,100,240,-264,-24, +Friday,10/07/2011 10:00,0,88,24,28,60,100,300,-442,-142, +Friday,10/07/2011 11:00,0,30,26,26,62,100,244,-560,-316, +Friday,10/07/2011 12:00,0,30,28,24,60,100,240,-618,-378, +Friday,10/07/2011 13:00,4,30,26,26,58,100,242,-644,-402, +Friday,10/07/2011 14:00,10,30,26,28,56,110,258,-630,-372, +Friday,10/07/2011 15:00,6,0,28,32,52,100,218,-562,-344, +Friday,10/07/2011 16:00,6,30,28,30,50,100,244,-476,-232, +Friday,10/07/2011 17:00,6,30,28,32,46,100,242,-288,-46, +Friday,10/07/2011 18:00,4,30,28,40,38,100,238,-86,152, +Friday,10/07/2011 19:00,0,0,14,24,34,100,172,-6,166, +Friday,10/07/2011 20:00,0,0,10,34,32,100,176,0,176, +Friday,10/07/2011 21:00,0,0,2,30,32,100,166,0,166, +Friday,10/07/2011 22:00,0,58,4,20,30,110,224,0,224, +Friday,10/07/2011 23:00,0,0,4,10,30,100,144,0,144, +Saturday,10/08/2011 00:00,0,0,4,8,32,100,144,0,144, +Saturday,10/08/2011 01:00,0,0,4,6,30,100,140,0,140, +Saturday,10/08/2011 02:00,0,0,2,6,30,100,138,0,138, +Saturday,10/08/2011 03:00,0,0,2,8,30,100,142,0,142, +Saturday,10/08/2011 04:00,0,0,2,8,30,100,140,0,140, +Saturday,10/08/2011 05:00,0,60,4,10,30,100,202,0,202, +Saturday,10/08/2011 06:00,0,0,2,8,30,100,140,0,140, +Saturday,10/08/2011 07:00,0,88,2,10,30,100,232,0,232, +Saturday,10/08/2011 08:00,0,58,4,10,30,100,202,-2,200, +Saturday,10/08/2011 09:00,0,60,2,10,30,110,212,-20,192, +Saturday,10/08/2011 10:00,0,88,2,14,32,100,236,-60,176, +Saturday,10/08/2011 11:00,0,88,2,6,32,100,230,-54,176, +Saturday,10/08/2011 12:00,0,118,4,10,30,100,264,-66,198, +Saturday,10/08/2011 13:00,0,118,2,8,30,100,256,-82,174, +Saturday,10/08/2011 14:00,0,88,4,10,32,100,232,-96,136, +Saturday,10/08/2011 15:00,4,60,2,10,32,100,208,-140,68, +Saturday,10/08/2011 16:00,0,0,4,8,30,100,142,-348,-206, +Saturday,10/08/2011 17:00,0,30,2,10,32,100,172,-270,-98, +Saturday,10/08/2011 18:00,0,0,2,10,30,110,152,-64,88, +Saturday,10/08/2011 19:00,0,0,2,10,34,100,148,-2,146, +Saturday,10/08/2011 20:00,0,0,0,10,30,100,142,0,142, +Saturday,10/08/2011 21:00,0,60,2,10,30,100,202,0,202, +Saturday,10/08/2011 22:00,0,204,8,10,30,100,352,0,352, +Saturday,10/08/2011 23:00,0,88,2,10,30,110,240,0,240, +Sunday,10/09/2011 00:00,0,30,4,10,32,100,174,0,174, +Sunday,10/09/2011 01:00,0,30,2,10,30,100,172,0,172, +Sunday,10/09/2011 02:00,0,176,4,8,30,100,318,0,318, +Sunday,10/09/2011 03:00,0,118,2,8,30,100,260,0,260, +Sunday,10/09/2011 04:00,0,176,4,8,30,110,328,0,328, +Sunday,10/09/2011 05:00,0,176,4,8,30,100,316,0,316, +Sunday,10/09/2011 06:00,0,176,2,8,30,100,318,0,318, +Sunday,10/09/2011 07:00,0,176,4,10,32,100,322,0,322, +Sunday,10/09/2011 08:00,0,118,2,8,30,100,258,-56,202, +Sunday,10/09/2011 09:00,0,60,4,8,32,100,202,-252,-50, +Sunday,10/09/2011 10:00,0,58,2,8,30,100,198,-438,-240, +Sunday,10/09/2011 11:00,0,0,2,6,32,100,140,-560,-420, +Sunday,10/09/2011 12:00,0,0,2,8,30,110,150,-626,-476, +Sunday,10/09/2011 13:00,0,0,2,8,32,100,142,-590,-448, +Sunday,10/09/2011 14:00,0,0,2,8,30,100,140,-568,-428, +Sunday,10/09/2011 15:00,0,0,2,8,34,100,144,-400,-256, +Sunday,10/09/2011 16:00,0,30,2,10,30,110,182,-222,-40, +Sunday,10/09/2011 17:00,0,0,2,12,30,100,144,-44,100, +Sunday,10/09/2011 18:00,0,0,2,12,30,100,144,-14,130, +Sunday,10/09/2011 19:00,0,30,2,10,30,100,172,0,172, +Sunday,10/09/2011 20:00,0,0,2,14,30,100,148,0,148, +Sunday,10/09/2011 21:00,0,88,4,14,32,100,238,0,238, +Sunday,10/09/2011 22:00,0,30,4,10,30,110,184,0,184, +Sunday,10/09/2011 23:00,0,30,4,10,30,100,172,0,172, +Monday,10/10/2011 00:00,0,0,2,8,32,100,142,0,142, +Monday,10/10/2011 01:00,0,0,4,4,30,100,138,0,138, +Monday,10/10/2011 02:00,0,30,2,6,32,100,170,0,170, +Monday,10/10/2011 03:00,0,118,2,4,30,110,264,0,264, +Monday,10/10/2011 04:00,0,204,6,6,34,100,350,0,350, +Monday,10/10/2011 05:00,0,176,2,6,30,100,316,0,316, +Monday,10/10/2011 06:00,0,176,12,10,30,100,326,0,326, +Monday,10/10/2011 07:00,6,352,24,20,38,100,542,0,542, +Monday,10/10/2011 08:00,6,322,22,30,48,100,528,-52,476, +Monday,10/10/2011 09:00,4,88,26,34,60,110,320,-248,72, +Monday,10/10/2011 10:00,0,30,24,32,64,100,250,-426,-176, +Monday,10/10/2011 11:00,2,30,26,28,64,102,250,-544,-294, +Monday,10/10/2011 12:00,2,30,26,28,62,108,254,-610,-356, +Monday,10/10/2011 13:00,4,30,28,26,60,116,262,-630,-368, +Monday,10/10/2011 14:00,10,0,28,26,58,108,228,-614,-386, +Monday,10/10/2011 15:00,4,30,30,32,60,102,258,-542,-284, +Monday,10/10/2011 16:00,6,0,28,32,60,100,226,-424,-198, +Monday,10/10/2011 17:00,4,0,28,38,48,100,218,-250,-32, +Monday,10/10/2011 18:00,4,30,28,50,44,100,258,-26,232, +Monday,10/10/2011 19:00,0,0,10,32,38,100,182,0,182, +Monday,10/10/2011 20:00,0,0,12,38,38,110,196,0,196, +Monday,10/10/2011 21:00,0,0,2,30,36,100,170,0,170, +Monday,10/10/2011 22:00,0,58,4,20,34,100,216,0,216, +Monday,10/10/2011 23:00,0,0,4,10,34,100,148,0,148, +Tuesday,10/11/2011 00:00,0,30,4,10,34,100,176,0,176, +Tuesday,10/11/2011 01:00,0,0,4,6,32,100,142,0,142, +Tuesday,10/11/2011 02:00,0,0,2,8,36,110,154,0,154, +Tuesday,10/11/2011 03:00,0,0,2,6,32,100,142,0,142, +Tuesday,10/11/2011 04:00,0,0,2,8,36,100,144,0,144, +Tuesday,10/11/2011 05:00,0,0,2,6,34,100,142,0,142, +Tuesday,10/11/2011 06:00,4,30,10,10,34,110,196,0,196, +Tuesday,10/11/2011 07:00,0,60,24,24,42,100,250,0,250, +Tuesday,10/11/2011 08:00,0,30,22,40,48,100,238,-6,232, +Tuesday,10/11/2011 09:00,0,60,24,44,58,100,286,-152,134, +Tuesday,10/11/2011 10:00,0,30,26,36,60,110,262,-418,-156, +Tuesday,10/11/2011 11:00,4,0,26,36,62,100,230,-448,-218, +Tuesday,10/11/2011 12:00,6,0,28,32,64,100,230,-596,-366, +Tuesday,10/11/2011 13:00,10,0,30,38,70,100,246,-382,-136, +Tuesday,10/11/2011 14:00,14,30,30,38,66,110,284,-432,-148, +Tuesday,10/11/2011 15:00,6,0,30,42,62,100,242,-342,-100, +Tuesday,10/11/2011 16:00,10,0,30,40,60,100,242,-448,-206, +Tuesday,10/11/2011 17:00,6,30,32,42,52,100,262,-260,2, +Tuesday,10/11/2011 18:00,10,0,30,50,44,100,234,-76,158, +Tuesday,10/11/2011 19:00,0,0,12,30,36,100,180,0,180, +Tuesday,10/11/2011 20:00,0,0,10,32,36,110,188,0,188, +Tuesday,10/11/2011 21:00,0,0,4,28,38,100,168,0,168, +Tuesday,10/11/2011 22:00,0,30,2,24,34,100,190,0,190, +Tuesday,10/11/2011 23:00,0,0,2,16,34,100,152,0,152, +Wednesday,10/12/2011 00:00,4,0,2,10,34,100,150,0,150, +Wednesday,10/12/2011 01:00,0,58,4,6,32,110,210,0,210, +Wednesday,10/12/2011 02:00,0,0,4,4,34,100,142,0,142, +Wednesday,10/12/2011 03:00,0,0,4,4,34,100,142,0,142, +Wednesday,10/12/2011 04:00,0,0,2,4,34,100,142,0,142, +Wednesday,10/12/2011 05:00,0,0,0,4,34,110,148,0,148, +Wednesday,10/12/2011 06:00,0,30,12,6,34,100,182,0,182, +Wednesday,10/12/2011 07:00,0,88,22,20,42,100,274,0,274, +Wednesday,10/12/2011 08:00,0,58,26,30,48,100,262,-44,218, +Wednesday,10/12/2011 09:00,4,30,24,36,60,110,262,-240,22, +Wednesday,10/12/2011 10:00,0,58,24,32,64,100,280,-426,-146, +Wednesday,10/12/2011 11:00,0,30,26,30,64,100,250,-554,-304, +Wednesday,10/12/2011 12:00,10,30,26,28,66,100,260,-622,-362, +Wednesday,10/12/2011 13:00,14,30,28,28,64,100,262,-650,-388, +Wednesday,10/12/2011 14:00,14,0,30,32,60,110,244,-634,-390, +Wednesday,10/12/2011 15:00,6,30,28,30,62,100,256,-570,-314, +Wednesday,10/12/2011 16:00,10,0,30,34,60,100,234,-438,-204, +Wednesday,10/12/2011 17:00,6,30,28,40,50,110,264,-270,-6, +Wednesday,10/12/2011 18:00,6,0,28,48,44,100,226,-74,152, +Wednesday,10/12/2011 19:00,0,0,12,34,40,100,188,0,188, +Wednesday,10/12/2011 20:00,0,0,10,30,38,100,180,0,180, +Wednesday,10/12/2011 21:00,0,0,2,28,34,100,164,0,164, +Wednesday,10/12/2011 22:00,0,0,2,24,36,100,162,0,162, +Wednesday,10/12/2011 23:00,0,30,2,18,34,110,192,0,192, +Thursday,10/13/2011 0:00,0,0,0,8,34,100,142,0,142, +Thursday,10/13/2011 1:00,0,0,2,6,34,100,142,0,142, +Thursday,10/13/2011 2:00,0,30,2,6,34,100,172,0,172, +Thursday,10/13/2011 3:00,0,58,4,6,36,100,204,0,204, +Thursday,10/13/2011 4:00,0,0,4,6,34,100,144,0,144, +Thursday,10/13/2011 5:00,0,0,4,10,34,100,148,0,148, +Thursday,10/13/2011 6:00,4,0,10,8,36,100,156,0,156, +Thursday,10/13/2011 7:00,0,60,22,26,44,100,252,0,252, +Thursday,10/13/2011 8:00,0,88,24,40,48,100,300,-50,250, +Thursday,10/13/2011 9:00,4,30,24,48,58,110,272,-134,138, +Thursday,10/13/2011 10:00,4,0,26,36,66,100,232,-398,-166, +Thursday,10/13/2011 11:00,4,30,28,34,66,100,258,-520,-262, +Thursday,10/13/2011 12:00,10,0,26,30,64,100,232,-596,-364, +Thursday,10/13/2011 13:00,14,30,30,28,68,100,268,-638,-370, +Thursday,10/13/2011 14:00,10,0,28,30,60,110,238,-582,-344, +Thursday,10/13/2011 15:00,16,0,28,32,54,100,232,-532,-300, +Thursday,10/13/2011 16:00,8,0,28,36,58,102,232,-414,-182, +Thursday,10/13/2011 17:00,10,0,28,40,48,100,226,-210,16, +Thursday,10/13/2011 18:00,6,0,30,52,42,110,240,-72,168, +Thursday,10/13/2011 19:00,4,0,10,32,36,100,182,0,182, +Thursday,10/13/2011 20:00,0,0,12,32,34,100,178,0,178, +Thursday,10/13/2011 21:00,0,30,2,30,34,100,196,0,196, +Thursday,10/13/2011 22:00,0,60,2,22,34,100,218,0,218, +Thursday,10/13/2011 23:00,0,0,2,12,32,110,154,0,154, +Friday,10/14/2011 0:00,0,0,2,6,32,100,140,0,140, +Friday,10/14/2011 1:00,0,0,2,8,32,100,142,0,142, +Friday,10/14/2011 2:00,0,0,2,6,32,100,140,0,140, +Friday,10/14/2011 3:00,0,0,2,6,32,110,150,0,150, +Friday,10/14/2011 4:00,0,58,4,6,32,100,202,0,202, +Friday,10/14/2011 5:00,0,0,4,8,32,100,144,0,144, +Friday,10/14/2011 6:00,4,30,10,8,34,110,194,0,194, +Friday,10/14/2011 7:00,0,88,26,20,40,100,272,0,272, +Friday,10/14/2011 8:00,0,0,24,32,44,100,202,-16,186, +Friday,10/14/2011 9:00,0,58,22,36,52,100,270,-178,92, +Friday,10/14/2011 10:00,0,30,24,30,62,100,248,-394,-146, +Friday,10/14/2011 11:00,4,30,26,28,60,110,256,-508,-252, +Friday,10/14/2011 12:00,10,0,28,26,60,100,224,-584,-360, +Friday,10/14/2011 13:00,10,30,28,24,60,100,252,-610,-358, +Friday,10/14/2011 14:00,14,0,26,26,56,100,222,-598,-376, +Friday,10/14/2011 15:00,16,0,30,28,56,110,240,-534,-294, +Friday,10/14/2011 16:00,12,0,30,28,58,102,228,-422,-194, +Friday,10/14/2011 17:00,10,0,28,30,44,102,210,-266,-56, +Friday,10/14/2011 18:00,6,30,30,40,40,100,244,-60,184, +Friday,10/14/2011 19:00,4,0,12,32,38,100,186,0,186, +Friday,10/14/2011 20:00,0,0,10,38,34,100,182,0,182, +Friday,10/14/2011 21:00,0,0,2,20,32,100,154,0,154, +Friday,10/14/2011 22:00,0,30,0,10,34,110,184,0,184, +Friday,10/14/2011 23:00,0,0,4,6,32,100,142,0,142, +Saturday,10/15/2011 0:00,0,0,2,6,30,100,140,0,140, +Saturday,10/15/2011 1:00,0,30,2,6,32,100,168,0,168, +Saturday,10/15/2011 2:00,0,0,2,4,32,100,140,0,140, +Saturday,10/15/2011 3:00,0,0,2,6,32,100,140,0,140, +Saturday,10/15/2011 4:00,0,0,2,4,32,110,148,0,148, +Saturday,10/15/2011 5:00,0,0,2,6,30,100,138,0,138, +Saturday,10/15/2011 6:00,0,58,2,6,32,100,200,0,200, +Saturday,10/15/2011 7:00,0,0,4,8,34,100,148,-4,144, +Saturday,10/15/2011 8:00,0,0,2,12,32,104,152,-38,114, +Saturday,10/15/2011 9:00,0,0,2,10,30,96,140,-40,100, +Saturday,10/15/2011 10:00,0,0,4,10,32,100,148,-114,34, +Saturday,10/15/2011 11:00,0,0,0,8,32,100,140,-210,-70, +Saturday,10/15/2011 12:00,0,0,2,8,32,100,142,-416,-274, +Saturday,10/15/2011 13:00,0,0,4,8,34,110,154,-530,-376, +Saturday,10/15/2011 14:00,2,0,2,10,34,102,150,-576,-426, +Saturday,10/15/2011 15:00,10,30,2,8,32,102,184,-504,-320, +Saturday,10/15/2011 16:00,12,0,4,4,32,102,154,-430,-276, +Saturday,10/15/2011 17:00,6,0,2,8,34,102,150,-244,-94, +Saturday,10/15/2011 18:00,6,0,4,10,32,110,162,-86,76, +Saturday,10/15/2011 19:00,4,0,4,10,34,100,152,0,152, +Saturday,10/15/2011 20:00,0,0,2,10,32,100,146,0,146, +Saturday,10/15/2011 21:00,0,30,4,10,32,100,176,0,176, +Saturday,10/15/2011 22:00,0,0,4,10,30,100,142,0,142, +Saturday,10/15/2011 23:00,0,0,4,8,34,100,146,0,146, +Sunday,10/16/2011 0:00,0,0,2,8,30,100,142,0,142, +Sunday,10/16/2011 1:00,0,0,4,6,32,100,142,0,142, +Sunday,10/16/2011 2:00,0,0,4,6,32,118,162,0,162, +Sunday,10/16/2011 3:00,0,0,2,6,30,92,128,0,128, +Sunday,10/16/2011 4:00,0,0,4,6,34,100,144,0,144, +Sunday,10/16/2011 5:00,0,0,4,6,32,100,142,0,142, +Sunday,10/16/2011 6:00,0,0,4,4,30,100,140,0,140, +Sunday,10/16/2011 7:00,0,0,0,6,34,110,150,0,150, +Sunday,10/16/2011 8:00,0,0,2,6,32,92,132,-16,116, +Sunday,10/16/2011 9:00,0,30,4,2,32,110,176,-164,12, +Sunday,10/16/2011 10:00,0,0,4,4,30,100,138,-382,-244, +Sunday,10/16/2011 11:00,0,0,0,4,32,100,138,-504,-366, +Sunday,10/16/2011 12:00,0,30,2,4,34,100,170,-580,-410, +Sunday,10/16/2011 13:00,0,0,4,4,32,100,140,-596,-456, +Sunday,10/16/2011 14:00,14,0,2,6,32,110,164,-498,-334, +Sunday,10/16/2011 15:00,10,0,2,4,30,100,148,-278,-130, +Sunday,10/16/2011 16:00,6,30,4,6,34,102,178,-350,-172, +Sunday,10/16/2011 17:00,2,0,2,4,30,100,142,-234,-92, +Sunday,10/16/2011 18:00,2,0,2,10,32,100,146,-62,84, +Sunday,10/16/2011 19:00,0,0,2,10,32,100,146,0,146, +Sunday,10/16/2011 20:00,0,0,0,12,34,110,156,0,156, +Sunday,10/16/2011 21:00,0,30,2,12,30,100,176,0,176, +Sunday,10/16/2011 22:00,0,0,2,10,32,100,146,0,146, +Sunday,10/16/2011 23:00,0,0,2,8,30,100,142,0,142, +Monday,10/17/2011 0:00,0,0,2,8,34,100,142,0,142, +Monday,10/17/2011 1:00,0,0,2,6,34,100,142,0,142, +Monday,10/17/2011 2:00,0,30,2,4,30,100,164,0,164, +Monday,10/17/2011 3:00,0,0,2,4,30,110,146,0,146, +Monday,10/17/2011 4:00,0,0,2,6,32,100,142,0,142, +Monday,10/17/2011 5:00,0,88,6,6,30,100,230,0,230, +Monday,10/17/2011 6:00,4,30,12,10,32,100,188,0,188, +Monday,10/17/2011 7:00,4,118,26,22,40,100,308,0,308, +Monday,10/17/2011 8:00,4,0,26,40,50,110,230,0,230, +Monday,10/17/2011 9:00,6,0,28,54,60,92,240,-20,220, +Monday,10/17/2011 10:00,4,88,26,54,62,110,342,-170,172, +Monday,10/17/2011 11:00,4,0,28,44,66,100,240,-344,-104, +Monday,10/17/2011 12:00,6,30,30,54,64,100,286,-170,116, +Monday,10/17/2011 13:00,4,30,30,58,70,100,290,-118,172, +Monday,10/17/2011 14:00,4,0,28,60,62,110,262,-198,64, +Monday,10/17/2011 15:00,6,30,30,60,62,100,286,-138,148, +Monday,10/17/2011 16:00,4,30,30,50,58,100,268,-228,40, +Monday,10/17/2011 17:00,4,30,28,56,52,100,268,-58,210, +Monday,10/17/2011 18:00,0,0,26,60,44,100,230,-10,220, +Monday,10/17/2011 19:00,0,30,10,36,40,100,214,0,214, +Monday,10/17/2011 20:00,0,0,10,30,36,110,182,0,182, +Monday,10/17/2011 21:00,0,30,4,26,34,100,194,0,194, +Monday,10/17/2011 22:00,0,0,2,16,34,100,152,0,152, +Monday,10/17/2011 23:00,0,30,2,8,32,100,172,0,172, +Tuesday,10/18/2011 0:00,0,88,2,6,32,100,230,0,230, +Tuesday,10/18/2011 1:00,0,176,6,8,32,100,320,0,320, +Tuesday,10/18/2011 2:00,0,118,4,6,34,100,260,0,260, +Tuesday,10/18/2011 3:00,0,176,6,6,32,110,330,0,330, +Tuesday,10/18/2011 4:00,0,176,2,6,32,92,308,0,308, +Tuesday,10/18/2011 5:00,0,206,4,6,34,110,360,0,360, +Tuesday,10/18/2011 6:00,4,234,12,8,34,100,392,0,392, +Tuesday,10/18/2011 7:00,6,410,24,24,40,100,604,0,604, +Tuesday,10/18/2011 8:00,4,350,26,40,46,100,566,-10,556, +Tuesday,10/18/2011 9:00,6,294,26,50,60,100,536,-56,480, +Tuesday,10/18/2011 10:00,4,176,28,44,66,100,416,-168,248, +Tuesday,10/18/2011 11:00,0,60,26,32,64,100,282,-492,-210, +Tuesday,10/18/2011 12:00,0,30,28,32,64,110,264,-560,-296, +Tuesday,10/18/2011 13:00,4,0,26,30,68,100,228,-626,-398, +Tuesday,10/18/2011 14:00,0,0,28,32,64,100,224,-596,-372, +Tuesday,10/18/2011 15:00,0,30,30,34,60,100,256,-526,-270, +Tuesday,10/18/2011 16:00,0,60,30,36,60,100,284,-410,-126, +Tuesday,10/18/2011 17:00,0,30,32,40,52,100,252,-244,8, +Tuesday,10/18/2011 18:00,0,30,26,48,44,100,248,-58,190, +Tuesday,10/18/2011 19:00,0,0,12,36,38,110,194,0,194, +Tuesday,10/18/2011 20:00,0,0,10,32,36,92,170,0,170, +Tuesday,10/18/2011 21:00,0,0,2,32,36,100,170,0,170, +Tuesday,10/18/2011 22:00,0,58,4,24,34,100,222,0,222, +Tuesday,10/18/2011 23:00,0,30,2,18,36,100,186,0,186, +Wednesday,10/19/2011 0:00,0,58,4,14,32,100,208,0,208, +Wednesday,10/19/2011 1:00,0,30,2,12,34,100,176,0,176, +Wednesday,10/19/2011 2:00,0,0,4,10,34,100,146,0,146, +Wednesday,10/19/2011 3:00,0,30,2,10,32,100,174,0,174, +Wednesday,10/19/2011 4:00,0,58,4,8,34,100,206,0,206, +Wednesday,10/19/2011 5:00,0,88,2,8,36,100,236,0,236, +Wednesday,10/19/2011 6:00,0,176,12,6,34,100,328,0,328, +Wednesday,10/19/2011 7:00,0,322,26,24,44,100,516,0,516, +Wednesday,10/19/2011 8:00,0,292,24,34,48,100,500,-30,470, +Wednesday,10/19/2011 9:00,0,176,26,40,60,100,402,-196,206, +Wednesday,10/19/2011 10:00,0,60,24,32,62,100,278,-384,-106, +Wednesday,10/19/2011 11:00,0,0,30,30,64,100,224,-518,-294, +Wednesday,10/19/2011 12:00,0,30,28,28,64,110,260,-578,-318, +Wednesday,10/19/2011 13:00,0,30,32,28,64,92,242,-608,-366, +Wednesday,10/19/2011 14:00,0,0,30,30,60,110,230,-570,-340, +Wednesday,10/19/2011 15:00,0,30,32,32,60,100,254,-510,-256, +Wednesday,10/19/2011 16:00,0,30,32,34,56,100,252,-396,-144, +Wednesday,10/19/2011 17:00,4,58,30,40,50,100,282,-236,46, +Wednesday,10/19/2011 18:00,0,30,30,48,46,100,252,-52,200, +Wednesday,10/19/2011 19:00,0,0,10,38,38,100,186,0,186, +Wednesday,10/19/2011 20:00,0,0,10,40,32,100,182,0,182, +Wednesday,10/19/2011 21:00,0,0,2,32,38,100,172,0,172, +Wednesday,10/19/2011 22:00,0,30,4,22,34,100,190,0,190, +Wednesday,10/19/2011 23:00,0,0,2,12,32,100,146,0,146, +Thursday,10/20/2011 0:00,0,30,0,10,32,100,172,0,172, +Thursday,10/20/2011 1:00,0,58,4,8,32,100,202,0,202, +Thursday,10/20/2011 2:00,0,30,4,10,36,100,180,0,180, +Thursday,10/20/2011 3:00,0,30,4,8,30,100,172,0,172, +Thursday,10/20/2011 4:00,0,0,0,6,36,100,142,0,142, +Thursday,10/20/2011 5:00,0,30,6,8,32,100,176,0,176, +Thursday,10/20/2011 6:00,0,60,10,6,34,100,210,0,210, +Thursday,10/20/2011 7:00,0,176,24,22,42,100,362,0,362, +Thursday,10/20/2011 8:00,0,30,24,38,46,100,236,-24,212, +Thursday,10/20/2011 9:00,0,60,24,42,58,100,282,-190,92, +Thursday,10/20/2011 10:00,0,30,24,34,66,100,254,-374,-120, +Thursday,10/20/2011 11:00,4,0,30,34,64,100,230,-502,-272, +Thursday,10/20/2011 12:00,14,30,30,32,62,100,266,-568,-302, +Thursday,10/20/2011 13:00,16,0,30,30,68,100,244,-588,-344, +Thursday,10/20/2011 14:00,14,0,30,30,60,100,234,-570,-336, +Thursday,10/20/2011 15:00,14,58,30,34,60,100,296,-500,-204, +Thursday,10/20/2011 16:00,10,0,30,36,58,110,244,-382,-138, +Thursday,10/20/2011 17:00,10,30,30,40,52,100,262,-220,42, +Thursday,10/20/2011 18:00,6,0,28,50,44,100,230,-50,180, +Thursday,10/20/2011 19:00,4,0,12,30,38,100,184,0,184, +Thursday,10/20/2011 20:00,0,0,12,34,38,100,186,0,186, +Thursday,10/20/2011 21:00,0,30,0,30,34,100,194,0,194, +Thursday,10/20/2011 22:00,0,0,2,22,34,100,158,0,158, +Thursday,10/20/2011 23:00,0,0,2,10,34,100,146,0,146, +Friday,10/21/2011 0:00,0,0,2,6,36,100,144,0,144, +Friday,10/21/2011 1:00,0,0,2,6,30,100,138,0,138, +Friday,10/21/2011 2:00,0,58,6,8,32,110,212,0,212, +Friday,10/21/2011 3:00,0,0,4,6,32,100,142,0,142, +Friday,10/21/2011 4:00,0,0,2,6,36,100,144,0,144, +Friday,10/21/2011 5:00,0,0,2,6,32,100,140,0,140, +Friday,10/21/2011 6:00,0,30,10,8,34,100,182,0,182, +Friday,10/21/2011 7:00,0,58,20,20,40,100,240,0,240, +Friday,10/21/2011 8:00,0,60,24,34,44,100,260,-24,236, +Friday,10/21/2011 9:00,0,58,24,36,56,100,274,-160,114, +Friday,10/21/2011 10:00,0,30,26,32,60,100,248,-322,-74, +Friday,10/21/2011 11:00,4,30,30,30,60,100,252,-350,-98, +Friday,10/21/2011 12:00,4,0,28,28,58,110,226,-458,-232, +Friday,10/21/2011 13:00,6,30,30,26,62,100,252,-524,-272, +Friday,10/21/2011 14:00,6,0,26,28,54,100,214,-490,-276, +Friday,10/21/2011 15:00,10,0,28,28,58,100,224,-474,-250, +Friday,10/21/2011 16:00,6,0,28,28,50,100,214,-368,-154, +Friday,10/21/2011 17:00,4,0,28,36,44,100,210,-194,16, +Friday,10/21/2011 18:00,4,0,30,44,40,100,218,-46,172, +Friday,10/21/2011 19:00,0,88,12,32,34,100,266,0,266, +Friday,10/21/2011 20:00,4,0,10,30,34,100,176,0,176, +Friday,10/21/2011 21:00,0,0,2,30,34,100,166,0,166, +Friday,10/21/2011 22:00,0,0,4,20,32,100,156,0,156, +Friday,10/21/2011 23:00,0,0,2,6,30,110,148,0,148, +Saturday,10/22/2011 0:00,0,0,2,4,30,100,138,0,138, +Saturday,10/22/2011 1:00,0,30,2,6,30,100,168,0,168, +Saturday,10/22/2011 2:00,0,30,4,4,30,100,168,0,168, +Saturday,10/22/2011 3:00,0,0,4,8,32,100,144,0,144, +Saturday,10/22/2011 4:00,0,30,4,4,30,100,168,0,168, +Saturday,10/22/2011 5:00,0,0,4,6,30,100,140,0,140, +Saturday,10/22/2011 6:00,0,0,2,6,30,100,138,0,138, +Saturday,10/22/2011 7:00,0,0,2,6,32,110,150,0,150, +Saturday,10/22/2011 8:00,0,0,2,6,30,100,138,-14,124, +Saturday,10/22/2011 9:00,0,0,2,6,30,100,138,-176,-38, +Saturday,10/22/2011 10:00,0,0,2,8,30,100,140,-364,-224, +Saturday,10/22/2011 11:00,0,0,4,10,30,100,146,-502,-356, +Saturday,10/22/2011 12:00,4,30,4,8,30,100,176,-574,-398, +Saturday,10/22/2011 13:00,6,0,4,8,30,110,158,-482,-324, +Saturday,10/22/2011 14:00,6,0,6,8,32,100,152,-474,-322, +Saturday,10/22/2011 15:00,6,0,2,8,28,100,146,-412,-266, +Saturday,10/22/2011 16:00,6,0,2,8,30,100,146,-380,-234, +Saturday,10/22/2011 17:00,0,0,2,8,34,100,142,-220,-78, +Saturday,10/22/2011 18:00,4,0,4,6,32,100,146,-46,100, +Saturday,10/22/2011 19:00,0,0,2,10,32,100,144,0,144, +Saturday,10/22/2011 20:00,0,0,4,14,30,100,148,0,148, +Saturday,10/22/2011 21:00,0,0,2,12,32,100,146,0,146, +Saturday,10/22/2011 22:00,0,30,0,12,32,100,176,0,176, +Saturday,10/22/2011 23:00,0,0,4,10,32,100,146,0,146, +Sunday,10/23/2011 0:00,0,0,2,10,30,110,152,0,152, +Sunday,10/23/2011 1:00,0,0,2,10,32,100,142,0,142, +Sunday,10/23/2011 2:00,0,0,2,8,32,100,142,0,142, +Sunday,10/23/2011 3:00,0,30,2,6,30,100,170,0,170, +Sunday,10/23/2011 4:00,0,30,6,6,30,100,172,0,172, +Sunday,10/23/2011 5:00,0,0,4,8,30,100,142,0,142, +Sunday,10/23/2011 6:00,0,0,4,6,32,100,142,0,142, +Sunday,10/23/2011 7:00,0,0,4,6,32,100,142,0,142, +Sunday,10/23/2011 8:00,0,0,4,6,30,100,142,-22,120, +Sunday,10/23/2011 9:00,0,0,0,4,30,100,136,-180,-44, +Sunday,10/23/2011 10:00,0,0,2,6,32,100,142,-366,-224, +Sunday,10/23/2011 11:00,0,30,4,6,32,100,172,-488,-316, +Sunday,10/23/2011 12:00,6,0,0,4,32,100,144,-570,-426, +Sunday,10/23/2011 13:00,10,0,2,4,32,100,150,-594,-444, +Sunday,10/23/2011 14:00,10,0,4,4,30,100,148,-560,-412, +Sunday,10/23/2011 15:00,6,0,2,4,32,110,154,-500,-346, +Sunday,10/23/2011 16:00,6,0,2,4,32,100,146,-382,-236, +Sunday,10/23/2011 17:00,4,0,2,4,30,100,140,-218,-78, +Sunday,10/23/2011 18:00,4,0,2,6,32,100,144,-46,98, +Sunday,10/23/2011 19:00,0,30,4,6,32,100,172,0,172, +Sunday,10/23/2011 20:00,0,0,2,8,32,100,142,0,142, +Sunday,10/23/2011 21:00,0,0,2,10,32,100,144,0,144, +Sunday,10/23/2011 22:00,0,0,2,8,30,100,140,0,140, +Sunday,10/23/2011 23:00,0,0,4,6,32,100,142,0,142, +Monday,10/24/2011 0:00,0,0,2,6,32,100,142,0,142, +Monday,10/24/2011 1:00,0,30,2,6,30,100,168,0,168, +Monday,10/24/2011 2:00,0,0,2,6,30,100,138,0,138, +Monday,10/24/2011 3:00,0,0,2,8,32,100,142,0,142, +Monday,10/24/2011 4:00,0,58,4,4,32,100,200,0,200, +Monday,10/24/2011 5:00,0,0,4,10,30,100,142,0,142, +Monday,10/24/2011 6:00,0,30,12,8,32,110,190,0,190, +Monday,10/24/2011 7:00,4,88,26,22,40,100,280,0,280, +Monday,10/24/2011 8:00,0,30,24,36,48,100,236,-12,224, +Monday,10/24/2011 9:00,4,0,26,42,56,100,230,-116,114, +Monday,10/24/2011 10:00,0,30,24,38,64,100,258,-390,-132, +Monday,10/24/2011 11:00,6,0,30,38,66,100,238,-486,-248, +Monday,10/24/2011 12:00,14,0,28,36,68,100,244,-552,-308, +Monday,10/24/2011 13:00,14,0,30,36,70,100,250,-576,-326, +Monday,10/24/2011 14:00,10,0,30,36,64,100,240,-546,-306, +Monday,10/24/2011 15:00,10,0,30,40,60,100,238,-470,-232, +Monday,10/24/2011 16:00,10,0,28,40,60,110,250,-364,-114, +Monday,10/24/2011 17:00,10,0,30,40,52,100,232,-208,24, +Monday,10/24/2011 18:00,10,0,30,44,44,100,228,-40,188, +Monday,10/24/2011 19:00,6,0,10,30,36,100,184,0,184, +Monday,10/24/2011 20:00,0,30,12,34,36,100,212,0,212, +Monday,10/24/2011 21:00,0,30,0,30,40,100,200,0,200, +Monday,10/24/2011 22:00,0,0,4,14,34,100,152,0,152, +Monday,10/24/2011 23:00,0,0,2,4,34,100,142,0,142, +Tuesday,10/25/2011 0:00,0,0,2,6,34,100,142,0,142, +Tuesday,10/25/2011 1:00,0,30,4,4,34,100,172,0,172, +Tuesday,10/25/2011 2:00,0,0,4,4,34,110,152,0,152, +Tuesday,10/25/2011 3:00,0,0,2,4,32,100,140,0,140, +Tuesday,10/25/2011 4:00,0,0,4,8,34,100,146,0,146, +Tuesday,10/25/2011 5:00,0,30,4,6,34,100,172,0,172, +Tuesday,10/25/2011 6:00,0,0,10,10,36,100,156,0,156, +Tuesday,10/25/2011 7:00,0,0,24,20,40,100,184,0,184, +Tuesday,10/25/2011 8:00,0,0,24,36,48,100,208,-8,200, +Tuesday,10/25/2011 9:00,0,30,26,44,60,100,262,-130,132, +Tuesday,10/25/2011 10:00,4,30,28,34,64,100,260,-368,-108, +Tuesday,10/25/2011 11:00,4,30,30,30,62,100,256,-480,-224, +Tuesday,10/25/2011 12:00,6,30,30,32,64,100,262,-548,-286, +Tuesday,10/25/2011 13:00,6,30,30,34,68,100,270,-412,-142, +Tuesday,10/25/2011 14:00,10,0,30,40,64,100,242,-284,-42, +Tuesday,10/25/2011 15:00,0,0,30,46,60,110,244,-148,96, +Tuesday,10/25/2011 16:00,0,30,28,52,60,100,268,-54,214, +Tuesday,10/25/2011 17:00,0,30,28,56,48,100,262,-6,256, +Tuesday,10/25/2011 18:00,0,0,26,54,40,100,218,0,218, +Tuesday,10/25/2011 19:00,0,30,14,40,38,100,220,0,220, +Tuesday,10/25/2011 20:00,0,30,10,30,36,100,204,0,204, +Tuesday,10/25/2011 21:00,0,58,4,28,34,100,224,0,224, +Tuesday,10/25/2011 22:00,0,30,4,18,32,100,184,0,184, +Tuesday,10/25/2011 23:00,0,0,2,8,34,100,144,0,144, +Wednesday,10/26/2011 0:00,0,60,2,6,36,100,202,0,202, +Wednesday,10/26/2011 1:00,0,30,6,6,30,100,170,0,170, +Wednesday,10/26/2011 2:00,0,88,2,6,34,100,232,0,232, +Wednesday,10/26/2011 3:00,0,118,2,4,34,100,258,0,258, +Wednesday,10/26/2011 4:00,0,146,6,6,32,110,300,0,300, +Wednesday,10/26/2011 5:00,0,146,2,4,32,100,286,0,286, +Wednesday,10/26/2011 6:00,0,176,12,10,32,100,330,0,330, +Wednesday,10/26/2011 7:00,0,352,24,20,42,100,538,0,538, +Wednesday,10/26/2011 8:00,0,322,24,30,44,100,520,0,520, +Wednesday,10/26/2011 9:00,0,322,24,42,50,100,540,0,540, +Wednesday,10/26/2011 10:00,0,292,28,44,52,100,516,0,516, +Wednesday,10/26/2011 11:00,0,206,26,40,56,100,428,0,428, +Wednesday,10/26/2011 12:00,0,206,26,42,60,100,432,0,432, +Wednesday,10/26/2011 13:00,0,176,28,42,56,100,400,0,400, +Wednesday,10/26/2011 14:00,0,146,26,44,54,100,372,0,372, +Wednesday,10/26/2011 15:00,4,206,26,44,58,100,438,0,438, +Wednesday,10/26/2011 16:00,0,146,26,42,52,100,366,0,366, +Wednesday,10/26/2011 17:00,0,204,26,50,46,100,426,0,426, +Wednesday,10/26/2011 18:00,0,206,24,52,42,100,424,0,424, +Wednesday,10/26/2011 19:00,0,88,12,40,36,100,278,0,278, +Wednesday,10/26/2011 20:00,0,118,12,40,34,100,304,0,304, +Wednesday,10/26/2011 21:00,0,176,2,34,40,92,344,0,344, +Wednesday,10/26/2011 22:00,0,146,4,20,34,100,304,0,304, +Wednesday,10/26/2011 23:00,0,176,2,16,32,110,336,0,336, +Thursday,10/27/2011 0:00,0,234,4,12,36,92,376,0,376, +Thursday,10/27/2011 1:00,0,234,2,10,32,100,380,0,380, +Thursday,10/27/2011 2:00,0,264,6,10,36,100,414,0,414, +Thursday,10/27/2011 3:00,0,294,2,10,32,100,438,0,438, +Thursday,10/27/2011 4:00,0,292,4,8,34,100,438,0,438, +Thursday,10/27/2011 5:00,0,352,4,10,34,100,500,0,500, +Thursday,10/27/2011 6:00,0,350,12,8,34,100,506,0,506, +Thursday,10/27/2011 7:00,0,528,26,24,40,100,720,0,720, +Thursday,10/27/2011 8:00,0,440,26,40,48,100,652,0,652, +Thursday,10/27/2011 9:00,0,322,28,42,60,100,552,0,552, +Thursday,10/27/2011 10:00,0,176,26,34,68,100,402,0,402, +Thursday,10/27/2011 11:00,0,118,30,32,70,100,350,0,350, +Thursday,10/27/2011 12:00,0,118,28,30,70,100,346,0,346, +Thursday,10/27/2011 13:00,0,88,30,26,68,92,302,0,302, +Thursday,10/27/2011 14:00,0,88,32,30,66,100,316,0,316, +Thursday,10/27/2011 15:00,6,88,34,28,66,100,324,0,324, +Thursday,10/27/2011 16:00,0,88,30,32,60,100,312,0,312, +Thursday,10/27/2011 17:00,0,116,30,40,52,100,338,0,338, +Thursday,10/27/2011 18:00,0,176,26,48,46,100,396,0,396, +Thursday,10/27/2011 19:00,0,58,14,38,36,100,246,0,246, +Thursday,10/27/2011 20:00,0,88,12,40,36,92,268,0,268, +Thursday,10/27/2011 21:00,0,58,6,40,36,100,238,0,238, +Thursday,10/27/2011 22:00,0,30,2,24,34,100,192,0,192, +Thursday,10/27/2011 23:00,0,58,2,12,34,100,208,0,208, +Friday,10/28/2011 0:00,0,30,4,6,34,100,172,0,172, +Friday,10/28/2011 1:00,0,60,2,4,36,100,202,0,202, +Friday,10/28/2011 2:00,0,58,2,4,32,100,196,0,196, +Friday,10/28/2011 3:00,0,118,4,6,34,100,260,0,260, +Friday,10/28/2011 4:00,0,206,2,2,32,100,342,0,342, +Friday,10/28/2011 5:00,0,176,2,6,34,100,318,0,318, +Friday,10/28/2011 6:00,0,234,12,6,32,92,376,0,376, +Friday,10/28/2011 7:00,0,322,22,20,42,100,508,0,508, +Friday,10/28/2011 8:00,0,322,26,32,48,100,528,0,528, +Friday,10/28/2011 9:00,0,234,26,36,54,100,452,0,452, +Friday,10/28/2011 10:00,0,176,28,34,62,100,400,0,400, +Friday,10/28/2011 11:00,0,118,28,32,68,100,344,0,344, +Friday,10/28/2011 12:00,0,88,28,30,66,100,314,0,314, +Friday,10/28/2011 13:00,0,118,30,28,62,100,338,0,338, +Friday,10/28/2011 14:00,0,0,28,28,60,100,214,0,214, +Friday,10/28/2011 15:00,4,58,28,28,60,92,268,0,268, +Friday,10/28/2011 16:00,0,30,28,30,56,100,244,0,244, +Friday,10/28/2011 17:00,0,0,26,36,48,100,210,0,210, +Friday,10/28/2011 18:00,4,116,26,46,44,100,334,0,334, +Friday,10/28/2011 19:00,0,60,12,38,38,100,248,0,248, +Friday,10/28/2011 20:00,0,58,12,40,38,100,248,0,248, +Friday,10/28/2011 21:00,0,60,6,20,36,100,222,0,222, +Friday,10/28/2011 22:00,0,0,2,12,34,92,140,0,140, +Friday,10/28/2011 23:00,0,30,2,8,32,100,172,0,172, +Saturday,10/29/2011 0:00,0,30,4,6,30,100,170,0,170, +Saturday,10/29/2011 1:00,0,30,2,6,36,100,172,0,172, +Saturday,10/29/2011 2:00,0,0,4,6,34,100,144,0,144, +Saturday,10/29/2011 3:00,0,58,4,6,34,100,202,0,202, +Saturday,10/29/2011 4:00,0,146,2,6,30,100,284,0,284, +Saturday,10/29/2011 5:00,0,118,4,6,32,100,260,0,260, +Saturday,10/29/2011 6:00,0,146,2,8,36,92,282,0,282, +Saturday,10/29/2011 7:00,0,146,4,8,32,100,290,0,290, +Saturday,10/29/2011 8:00,0,148,4,10,32,100,296,0,296, +Saturday,10/29/2011 9:00,0,88,2,10,32,100,232,0,232, +Saturday,10/29/2011 10:00,0,0,2,8,36,100,146,-2,144, +Saturday,10/29/2011 11:00,0,30,4,8,36,100,176,0,176, +Saturday,10/29/2011 12:00,0,0,2,8,34,100,144,0,144, +Saturday,10/29/2011 13:00,0,0,2,10,36,100,148,-12,136, +Saturday,10/29/2011 14:00,0,30,2,8,32,92,164,-14,150, +Saturday,10/29/2011 15:00,0,0,2,10,34,100,146,-8,138, +Saturday,10/29/2011 16:00,0,0,2,10,32,100,144,-8,136, +Saturday,10/29/2011 17:00,0,30,2,10,34,100,174,-20,154, +Saturday,10/29/2011 18:00,0,0,2,10,32,100,146,-4,142, +Saturday,10/29/2011 19:00,0,0,2,10,32,100,144,0,144, +Saturday,10/29/2011 20:00,0,0,0,12,30,100,144,0,144, +Saturday,10/29/2011 21:00,0,0,2,12,32,100,146,0,146, +Saturday,10/29/2011 22:00,0,0,4,10,34,100,148,0,148, +Saturday,10/29/2011 23:00,0,206,2,10,32,100,350,0,350, +Sunday,10/30/2011 0:00,0,116,6,10,32,92,256,0,256, +Sunday,10/30/2011 1:00,0,176,4,8,34,100,322,0,322, +Sunday,10/30/2011 2:00,0,176,4,8,30,100,318,0,318, +Sunday,10/30/2011 3:00,0,176,2,6,32,100,318,0,318, +Sunday,10/30/2011 4:00,0,176,4,6,32,100,316,0,316, +Sunday,10/30/2011 5:00,0,206,4,8,34,100,350,0,350, +Sunday,10/30/2011 6:00,0,176,6,10,30,100,322,0,322, +Sunday,10/30/2011 7:00,0,206,4,10,32,100,350,0,350, +Sunday,10/30/2011 8:00,0,204,4,8,34,100,350,-4,346, +Sunday,10/30/2011 9:00,0,118,4,8,32,100,262,-50,212, +Sunday,10/30/2011 10:00,0,60,4,4,32,100,200,-126,74, +Sunday,10/30/2011 11:00,0,30,2,4,32,100,168,-230,-62, +Sunday,10/30/2011 12:00,0,0,4,2,32,100,140,-330,-190, +Sunday,10/30/2011 13:00,0,0,0,4,30,100,136,-446,-310, +Sunday,10/30/2011 14:00,0,0,2,4,34,100,142,-532,-390, +Sunday,10/30/2011 15:00,0,0,4,2,32,100,138,-466,-328, +Sunday,10/30/2011 16:00,0,30,0,4,32,92,158,-352,-194, +Sunday,10/30/2011 17:00,0,0,2,6,30,100,140,-192,-52, +Sunday,10/30/2011 18:00,0,0,2,8,34,100,146,-30,116, +Sunday,10/30/2011 19:00,0,0,2,10,30,100,142,0,142, +Sunday,10/30/2011 20:00,0,30,2,10,32,100,172,0,172, +Sunday,10/30/2011 21:00,0,0,2,6,32,100,140,0,140, +Sunday,10/30/2011 22:00,0,0,2,10,32,100,144,0,144, +Sunday,10/30/2011 23:00,0,30,0,6,30,100,166,0,166, +Monday,10/31/2011 0:00,0,0,2,4,32,100,140,0,140, +Monday,10/31/2011 1:00,0,88,4,4,32,100,228,0,228, +Monday,10/31/2011 2:00,0,30,4,4,32,100,172,0,172, +Monday,10/31/2011 3:00,0,30,4,4,30,100,170,0,170, +Monday,10/31/2011 4:00,4,0,6,4,32,100,144,0,144, +Monday,10/31/2011 5:00,0,0,0,6,34,92,132,0,132, +Monday,10/31/2011 6:00,0,30,12,10,34,100,186,0,186, +Monday,10/31/2011 7:00,0,118,22,26,40,100,306,0,306, +Monday,10/31/2011 8:00,0,118,22,42,50,100,332,-14,318, +Monday,10/31/2011 9:00,0,88,24,42,62,100,316,-148,168, +Monday,10/31/2011 10:00,4,118,30,40,70,100,362,-336,26, +Monday,10/31/2011 11:00,0,0,30,34,70,100,232,-466,-234, +Monday,10/31/2011 12:00,6,0,24,30,68,100,228,-530,-302, +Monday,10/31/2011 13:00,6,60,34,30,68,100,298,-550,-252, +Monday,10/31/2011 14:00,10,0,32,32,66,100,240,-548,-308, +Monday,10/31/2011 15:00,10,30,30,34,68,100,272,-480,-208, +Monday,10/31/2011 16:00,14,0,28,36,60,100,238,-290,-52, +Monday,10/31/2011 17:00,4,0,30,44,54,100,230,-160,70, +Monday,10/31/2011 18:00,6,30,30,50,40,100,258,-34,224, +Monday,10/31/2011 19:00,0,0,12,36,40,100,188,0,188, +Monday,10/31/2011 20:00,0,0,14,38,36,100,188,0,188, +Monday,10/31/2011 21:00,0,0,4,30,40,100,172,0,172, +Monday,10/31/2011 22:00,0,0,4,20,34,100,156,0,156, +Monday,10/31/2011 23:00,4,0,4,10,34,100,154,0,154, +Tuesday,11/01/2011 00:00,0,0,4,6,34,100,146,0,146, +Tuesday,11/01/2011 01:00,0,0,4,4,34,100,142,0,142, +Tuesday,11/01/2011 02:00,0,30,4,6,32,100,172,0,172, +Tuesday,11/01/2011 03:00,0,30,4,4,32,100,170,0,170, +Tuesday,11/01/2011 04:00,0,30,4,4,34,100,172,0,172, +Tuesday,11/01/2011 05:00,0,30,2,6,36,100,174,0,174, +Tuesday,11/01/2011 06:00,0,30,12,10,34,100,186,0,186, +Tuesday,11/01/2011 07:00,0,206,24,22,42,100,394,0,394, +Tuesday,11/01/2011 08:00,0,206,28,40,48,100,420,0,420, +Tuesday,11/01/2011 09:00,0,176,28,52,58,100,412,-16,396, +Tuesday,11/01/2011 10:00,0,88,26,62,66,100,342,-30,312, +Tuesday,11/01/2011 11:00,4,204,28,64,66,100,468,-56,412, +Tuesday,11/01/2011 12:00,0,88,28,64,70,100,350,-92,258, +Tuesday,11/01/2011 13:00,0,118,26,60,64,100,368,-156,212, +Tuesday,11/01/2011 14:00,0,118,30,54,66,100,366,-174,192, +Tuesday,11/01/2011 15:00,0,30,30,40,64,100,262,-422,-160, +Tuesday,11/01/2011 16:00,4,58,26,50,56,100,294,-180,114, +Tuesday,11/01/2011 17:00,0,148,30,60,54,100,392,-80,312, +Tuesday,11/01/2011 18:00,0,146,28,58,44,100,374,-14,360, +Tuesday,11/01/2011 19:00,4,88,14,42,38,100,284,0,284, +Tuesday,11/01/2011 20:00,0,60,14,36,34,100,242,0,242, +Tuesday,11/01/2011 21:00,0,88,2,30,38,100,258,0,258, +Tuesday,11/01/2011 22:00,0,88,6,20,32,100,244,0,244, +Tuesday,11/01/2011 23:00,0,176,4,12,34,100,326,0,326, +Wednesday,11/02/2011 00:00,0,176,4,6,36,100,322,0,322, +Wednesday,11/02/2011 01:00,0,206,2,4,34,100,346,0,346, +Wednesday,11/02/2011 02:00,0,204,4,6,32,100,348,0,348, +Wednesday,11/02/2011 03:00,0,264,4,6,36,100,408,0,408, +Wednesday,11/02/2011 04:00,0,264,4,8,34,100,410,0,410, +Wednesday,11/02/2011 05:00,0,294,2,6,36,100,438,0,438, +Wednesday,11/02/2011 06:00,0,264,12,6,34,100,418,0,418, +Wednesday,11/02/2011 07:00,0,468,24,18,36,100,646,0,646, +Wednesday,11/02/2011 08:00,4,380,24,30,40,100,578,0,578, +Wednesday,11/02/2011 09:00,4,410,24,38,40,100,616,0,616, +Wednesday,11/02/2011 10:00,0,264,24,32,54,100,476,0,476, +Wednesday,11/02/2011 11:00,0,204,28,34,54,100,420,0,420, +Wednesday,11/02/2011 12:00,0,148,26,36,56,100,366,0,366, +Wednesday,11/02/2011 13:00,0,146,28,38,58,100,370,0,370, +Wednesday,11/02/2011 14:00,0,204,26,38,56,100,424,0,424, +Wednesday,11/02/2011 15:00,0,146,26,40,54,100,368,0,368, +Wednesday,11/02/2011 16:00,0,148,24,40,52,100,364,0,364, +Wednesday,11/02/2011 17:00,4,176,26,40,48,100,394,0,394, +Wednesday,11/02/2011 18:00,4,206,24,46,40,100,420,0,420, +Wednesday,11/02/2011 19:00,0,88,10,38,40,100,276,0,276, +Wednesday,11/02/2011 20:00,0,118,10,40,34,100,302,0,302, +Wednesday,11/02/2011 21:00,0,146,6,34,36,100,322,0,322, +Wednesday,11/02/2011 22:00,0,146,4,28,38,110,324,0,324, +Wednesday,11/02/2011 23:00,0,234,2,14,32,100,384,0,384, +Thursday,11/03/2011 00:00,0,294,4,10,34,100,442,0,442, +Thursday,11/03/2011 01:00,0,350,2,8,32,100,494,0,494, +Thursday,11/03/2011 02:00,0,322,4,4,34,100,464,0,464, +Thursday,11/03/2011 03:00,0,322,4,8,36,100,470,0,470, +Thursday,11/03/2011 04:00,0,380,2,6,32,100,522,0,522, +Thursday,11/03/2011 05:00,0,352,2,8,34,100,496,0,496, +Thursday,11/03/2011 06:00,0,352,12,10,32,100,508,0,508, +Thursday,11/03/2011 07:00,0,586,24,24,44,100,780,0,780, +Thursday,11/03/2011 08:00,0,440,24,38,44,100,646,0,646, +Thursday,11/03/2011 09:00,0,292,26,40,62,100,522,0,522, +Thursday,11/03/2011 10:00,0,176,28,36,68,100,408,0,408, +Thursday,11/03/2011 11:00,0,146,28,30,68,100,372,0,372, +Thursday,11/03/2011 12:00,0,118,30,30,66,100,342,0,342, +Thursday,11/03/2011 13:00,4,146,30,30,68,100,378,-4,374, +Thursday,11/03/2011 14:00,0,118,30,26,70,100,344,-1142,-798, +Thursday,11/03/2011 15:00,6,88,32,26,62,100,314,-8,306, +Thursday,11/03/2011 16:00,6,88,32,30,64,100,324,-10,314, +Thursday,11/03/2011 17:00,4,118,28,42,56,100,348,-4,344, +Thursday,11/03/2011 18:00,0,176,26,52,46,100,400,0,400, +Thursday,11/03/2011 19:00,4,60,14,42,40,100,258,0,258, +Thursday,11/03/2011 20:00,0,58,14,38,40,100,248,0,248, +Thursday,11/03/2011 21:00,0,30,4,30,38,92,194,0,194, +Thursday,11/03/2011 22:00,0,30,4,22,34,110,200,0,200, +Thursday,11/03/2011 23:00,0,30,4,14,38,100,184,0,184, +Friday,11/04/2011 00:00,4,30,2,10,36,100,180,0,180, +Friday,11/04/2011 01:00,0,60,2,6,34,100,202,0,202, +Friday,11/04/2011 02:00,0,30,4,8,34,100,176,0,176, +Friday,11/04/2011 03:00,0,118,4,8,34,100,262,0,262, +Friday,11/04/2011 04:00,0,58,2,8,36,100,204,0,204, +Friday,11/04/2011 05:00,0,176,2,8,36,100,322,0,322, +Friday,11/04/2011 06:00,0,204,10,8,34,100,358,0,358, +Friday,11/04/2011 07:00,0,352,22,22,40,92,530,0,530, +Friday,11/04/2011 08:00,0,264,26,36,48,100,474,0,474, +Friday,11/04/2011 09:00,0,206,26,42,56,100,430,0,430, +Friday,11/04/2011 10:00,0,146,26,40,62,100,374,-8,366, +Friday,11/04/2011 11:00,4,88,26,36,60,100,312,-26,286, +Friday,11/04/2011 12:00,0,30,28,32,60,100,248,-50,198, +Friday,11/04/2011 13:00,0,30,28,28,60,100,244,-82,162, +Friday,11/04/2011 14:00,4,60,28,34,60,100,286,-96,190, +Friday,11/04/2011 15:00,4,30,30,38,56,100,256,-128,128, +Friday,11/04/2011 16:00,0,30,30,40,54,100,252,-152,100, +Friday,11/04/2011 17:00,0,0,28,40,46,100,214,-146,68, +Friday,11/04/2011 18:00,0,0,26,48,40,100,214,-22,192, +Friday,11/04/2011 19:00,4,0,4,38,38,100,182,0,182, +Friday,11/04/2011 20:00,0,0,2,40,32,100,174,0,174, +Friday,11/04/2011 21:00,0,30,2,30,34,100,198,0,198, +Friday,11/04/2011 22:00,0,60,6,26,32,100,224,0,224, +Friday,11/04/2011 23:00,0,0,4,14,34,100,154,0,154, +Saturday,11/05/2011 00:00,0,0,4,10,30,100,144,0,144, +Saturday,11/05/2011 01:00,0,0,4,8,32,100,144,0,144, +Saturday,11/05/2011 02:00,0,0,4,8,30,100,142,0,142, +Saturday,11/05/2011 03:00,0,0,4,8,32,100,144,0,144, +Saturday,11/05/2011 04:00,0,30,6,8,32,100,174,0,174, +Saturday,11/05/2011 05:00,0,30,4,6,30,100,170,0,170, +Saturday,11/05/2011 06:00,0,118,4,6,32,100,260,0,260, +Saturday,11/05/2011 07:00,4,88,4,8,32,100,236,0,236, +Saturday,11/05/2011 08:00,0,58,4,10,32,100,202,-2,200, +Saturday,11/05/2011 09:00,0,30,4,10,34,100,180,-42,138, +Saturday,11/05/2011 10:00,0,0,4,10,30,100,146,-58,88, +Saturday,11/05/2011 11:00,0,0,2,8,34,92,134,-360,-226, +Saturday,11/05/2011 12:00,0,0,2,8,34,96,140,-386,-246, +Saturday,11/05/2011 13:00,0,0,2,10,32,100,144,-414,-270, +Saturday,11/05/2011 14:00,0,0,0,12,30,100,142,-282,-140, +Saturday,11/05/2011 15:00,0,0,4,12,30,100,148,-134,14, +Saturday,11/05/2011 16:00,0,0,2,12,32,100,148,-32,116, +Saturday,11/05/2011 17:00,0,0,2,12,30,100,146,-30,116, +Saturday,11/05/2011 18:00,0,118,4,12,32,100,266,-32,234, +Saturday,11/05/2011 19:00,0,58,6,12,34,100,210,0,210, +Saturday,11/05/2011 20:00,0,88,4,12,32,100,236,0,236, +Saturday,11/05/2011 21:00,4,146,4,12,32,100,298,0,298, +Saturday,11/05/2011 22:00,0,146,4,12,32,100,294,0,294, +Saturday,11/05/2011 23:00,0,118,4,8,34,100,262,0,262, +Sunday,11/06/2011 00:00,0,146,6,8,32,92,282,0,282, +Sunday,11/06/2011 01:00,0,160,4,6,32,92,294,0,294, +Sunday,11/06/2011 02:00,0,176,2,6,30,92,306,0,306, +Sunday,11/06/2011 03:00,0,176,6,8,32,100,320,0,320, +Sunday,11/06/2011 04:00,0,206,4,8,32,100,350,0,350, +Sunday,11/06/2011 05:00,0,176,4,6,34,100,320,0,320, +Sunday,11/06/2011 06:00,0,234,4,8,34,100,382,0,382, +Sunday,11/06/2011 07:00,0,206,4,8,32,100,348,-10,338, +Sunday,11/06/2011 08:00,0,146,4,8,32,100,292,-136,156, +Sunday,11/06/2011 09:00,0,88,4,10,32,100,234,-324,-90, +Sunday,11/06/2011 10:00,0,58,4,10,38,100,210,-462,-252, +Sunday,11/06/2011 11:00,4,30,2,8,34,100,176,-544,-368, +Sunday,11/06/2011 12:00,0,0,4,10,32,100,146,-566,-420, +Sunday,11/06/2011 13:00,0,0,4,10,34,100,150,-538,-388, +Sunday,11/06/2011 14:00,4,30,6,8,34,92,170,-464,-294, +Sunday,11/06/2011 15:00,0,0,2,8,32,100,144,-338,-194, +Sunday,11/06/2011 16:00,0,0,2,8,34,100,144,-172,-28, +Sunday,11/06/2011 17:00,0,58,4,10,30,100,204,-20,184, +Sunday,11/06/2011 18:00,0,0,4,14,36,100,154,0,154, +Sunday,11/06/2011 19:00,0,30,4,14,32,100,180,0,180, +Sunday,11/06/2011 20:00,4,30,4,16,34,100,188,0,188, +Sunday,11/06/2011 21:00,0,58,4,14,32,100,208,0,208, +Sunday,11/06/2011 22:00,0,118,6,10,34,100,266,0,266, +Sunday,11/06/2011 23:00,0,146,4,10,32,100,292,0,292, +Monday,11/07/2011 00:00,0,146,4,8,32,100,292,0,292, +Monday,11/07/2011 01:00,0,146,4,6,30,100,288,0,288, +Monday,11/07/2011 02:00,0,176,2,8,32,100,318,0,318, +Monday,11/07/2011 03:00,0,204,6,8,34,100,352,0,352, +Monday,11/07/2011 04:00,0,206,4,8,32,92,340,0,340, +Monday,11/07/2011 05:00,0,206,4,8,34,110,360,0,360, +Monday,11/07/2011 06:00,0,204,6,6,32,92,340,0,340, +Monday,11/07/2011 07:00,0,440,26,22,44,100,632,-2,630, +Monday,11/07/2011 08:00,0,410,24,36,50,100,620,-54,566, +Monday,11/07/2011 09:00,0,264,26,40,60,100,492,-202,290, +Monday,11/07/2011 10:00,0,206,28,36,70,100,440,-338,102, +Monday,11/07/2011 11:00,0,146,28,32,70,100,376,-484,-108, +Monday,11/07/2011 12:00,0,118,26,30,70,100,342,-540,-198, +Monday,11/07/2011 13:00,0,118,32,26,66,100,342,-490,-148, +Monday,11/07/2011 14:00,0,116,26,30,66,100,340,-434,-94, +Monday,11/07/2011 15:00,0,118,28,34,62,100,342,-268,74, +Monday,11/07/2011 16:00,0,176,26,48,58,100,408,-94,314, +Monday,11/07/2011 17:00,0,146,26,52,54,100,380,-14,366, +Monday,11/07/2011 18:00,4,176,26,54,40,100,398,0,398, +Monday,11/07/2011 19:00,0,30,4,44,40,100,216,0,216, +Monday,11/07/2011 20:00,0,30,6,40,36,100,210,0,210, +Monday,11/07/2011 21:00,0,0,6,30,40,100,174,0,174, +Monday,11/07/2011 22:00,4,58,2,20,36,100,220,0,220, +Monday,11/07/2011 23:00,0,60,4,10,32,100,204,0,204, +Tuesday,11/08/2011 00:00,0,118,2,4,32,100,258,0,258, +Tuesday,11/08/2011 01:00,0,176,4,4,34,100,316,0,316, +Tuesday,11/08/2011 02:00,0,206,4,6,30,100,344,0,344, +Tuesday,11/08/2011 03:00,0,176,4,6,34,100,320,0,320, +Tuesday,11/08/2011 04:00,0,176,2,6,34,100,320,0,320, +Tuesday,11/08/2011 05:00,0,234,4,8,36,100,382,0,382, +Tuesday,11/08/2011 06:00,0,206,6,8,30,100,350,0,350, +Tuesday,11/08/2011 07:00,0,380,24,26,44,100,574,-4,570, +Tuesday,11/08/2011 08:00,0,322,24,36,52,100,534,-94,440, +Tuesday,11/08/2011 09:00,0,206,30,36,64,100,436,-290,146, +Tuesday,11/08/2011 10:00,0,176,26,36,66,100,404,-440,-36, +Tuesday,11/08/2011 11:00,0,88,30,30,70,100,318,-532,-214, +Tuesday,11/08/2011 12:00,4,118,24,28,70,92,334,-540,-206, +Tuesday,11/08/2011 13:00,4,30,22,30,70,100,254,-536,-282, +Tuesday,11/08/2011 14:00,4,88,22,34,64,100,310,-446,-136, +Tuesday,11/08/2011 15:00,0,30,20,38,66,100,254,-324,-70, +Tuesday,11/08/2011 16:00,4,88,18,46,60,100,314,-156,158, +Tuesday,11/08/2011 17:00,0,88,20,58,52,100,318,-16,302, +Tuesday,11/08/2011 18:00,4,88,20,60,44,100,316,0,316, +Tuesday,11/08/2011 19:00,0,60,6,54,40,100,258,0,258, +Tuesday,11/08/2011 20:00,0,30,4,46,36,100,214,0,214, +Tuesday,11/08/2011 21:00,0,30,4,44,36,100,214,0,214, +Tuesday,11/08/2011 22:00,0,60,4,36,36,92,226,0,226, +Tuesday,11/08/2011 23:00,0,30,4,24,36,100,194,0,194, +Wednesday,11/09/2011 00:00,0,88,2,22,30,100,244,0,244, +Wednesday,11/09/2011 01:00,0,118,4,24,34,100,280,0,280, +Wednesday,11/09/2011 02:00,0,176,2,22,38,100,340,0,340, +Wednesday,11/09/2011 03:00,4,204,4,26,32,100,370,0,370, +Wednesday,11/09/2011 04:00,0,176,2,24,32,100,336,0,336, +Wednesday,11/09/2011 05:00,0,234,4,26,36,100,400,0,400, +Wednesday,11/09/2011 06:00,0,176,6,24,36,100,342,0,342, +Wednesday,11/09/2011 07:00,0,380,18,38,44,100,580,-6,574, +Wednesday,11/09/2011 08:00,0,322,28,40,50,100,540,-120,420, +Wednesday,11/09/2011 09:00,0,206,28,42,66,100,442,-300,142, +Wednesday,11/09/2011 10:00,0,176,28,42,68,100,412,-436,-24, +Wednesday,11/09/2011 11:00,4,148,26,38,64,100,378,-522,-144, +Wednesday,11/09/2011 12:00,0,118,28,32,70,92,338,-540,-202, +Wednesday,11/09/2011 13:00,4,88,30,32,70,100,324,-520,-196, +Wednesday,11/09/2011 14:00,4,88,28,36,62,100,318,-436,-118, +Wednesday,11/09/2011 15:00,0,30,30,40,64,100,264,-326,-62, +Wednesday,11/09/2011 16:00,0,146,30,50,58,100,384,-152,232, +Wednesday,11/09/2011 17:00,0,118,28,58,52,100,354,-16,338, +Wednesday,11/09/2011 18:00,4,118,28,62,46,100,356,0,356, +Wednesday,11/09/2011 19:00,0,30,4,42,40,92,208,0,208, +Wednesday,11/09/2011 20:00,0,30,4,40,36,100,210,0,210, +Wednesday,11/09/2011 21:00,0,0,4,30,38,100,174,0,174, +Wednesday,11/09/2011 22:00,0,30,4,28,38,100,198,0,198, +Wednesday,11/09/2011 23:00,0,0,4,16,32,100,152,0,152, +Thursday,11/10/2011 00:00,0,30,4,6,36,100,174,0,174, +Thursday,11/10/2011 01:00,0,118,4,6,34,100,260,0,260, +Thursday,11/10/2011 02:00,0,146,4,6,32,100,290,0,290, +Thursday,11/10/2011 03:00,0,146,4,8,36,100,294,0,294, +Thursday,11/10/2011 04:00,0,176,2,6,36,92,312,0,312, +Thursday,11/10/2011 05:00,0,204,4,6,32,100,348,0,348, +Thursday,11/10/2011 06:00,0,206,4,8,34,100,352,0,352, +Thursday,11/10/2011 07:00,0,322,24,24,48,100,518,-6,512, +Thursday,11/10/2011 08:00,0,234,28,30,48,100,442,-122,320, +Thursday,11/10/2011 09:00,4,176,26,34,62,100,402,-306,96, +Thursday,11/10/2011 10:00,0,0,26,30,70,100,226,-440,-214, +Thursday,11/10/2011 11:00,0,30,26,32,64,100,252,-522,-270, +Thursday,11/10/2011 12:00,0,0,28,26,64,100,218,-538,-320, +Thursday,11/10/2011 13:00,0,0,28,28,62,92,210,-508,-298, +Thursday,11/10/2011 14:00,0,30,28,28,60,100,246,-434,-188, +Thursday,11/10/2011 15:00,0,0,30,34,60,100,222,-326,-104, +Thursday,11/10/2011 16:00,0,0,28,50,58,100,236,-82,154, +Thursday,11/10/2011 17:00,0,30,24,58,52,100,262,-10,252, +Thursday,11/10/2011 18:00,0,0,22,60,40,100,222,0,222, +Thursday,11/10/2011 19:00,0,30,6,40,38,100,212,0,212, +Thursday,11/10/2011 20:00,0,58,6,30,36,100,232,0,232, +Thursday,11/10/2011 21:00,0,0,4,28,38,92,160,0,160, +Thursday,11/10/2011 22:00,0,0,4,22,32,100,160,0,160, +Thursday,11/10/2011 23:00,0,30,4,10,34,100,178,0,178, +Friday,11/11/2011 00:00,0,0,4,6,34,100,142,0,142, +Friday,11/11/2011 01:00,0,30,2,4,34,100,170,0,170, +Friday,11/11/2011 02:00,0,0,4,4,36,92,134,0,134, +Friday,11/11/2011 03:00,0,0,2,4,32,100,138,0,138, +Friday,11/11/2011 04:00,0,60,4,6,36,100,204,0,204, +Friday,11/11/2011 05:00,0,58,4,2,36,100,202,0,202, +Friday,11/11/2011 06:00,0,88,6,6,34,100,234,0,234, +Friday,11/11/2011 07:00,0,292,24,20,42,100,480,0,480, +Friday,11/11/2011 08:00,4,234,24,28,46,92,426,-42,384, +Friday,11/11/2011 09:00,0,118,24,34,58,100,334,-266,68, +Friday,11/11/2011 10:00,0,0,26,30,60,100,218,-490,-272, +Friday,11/11/2011 11:00,0,30,26,36,60,100,252,-390,-138, +Friday,11/11/2011 12:00,0,60,26,42,60,100,286,-170,116, +Friday,11/11/2011 13:00,0,0,26,32,58,100,216,-434,-218, +Friday,11/11/2011 14:00,0,0,26,38,58,100,222,-290,-68, +Friday,11/11/2011 15:00,0,30,22,44,54,100,250,-148,102, +Friday,11/11/2011 16:00,0,0,26,48,52,92,216,-66,150, +Friday,11/11/2011 17:00,0,118,24,54,46,100,342,-10,332, +Friday,11/11/2011 18:00,0,30,26,56,38,100,248,0,248, +Friday,11/11/2011 19:00,0,0,4,38,36,100,178,0,178, +Friday,11/11/2011 20:00,0,30,4,28,34,100,196,0,196, +Friday,11/11/2011 21:00,0,0,2,26,36,92,156,0,156, +Friday,11/11/2011 22:00,0,0,6,14,34,100,154,0,154, +Friday,11/11/2011 23:00,0,30,4,2,30,100,168,0,168, +Saturday,11/12/2011 00:00,0,0,4,6,34,100,146,0,146, +Saturday,11/12/2011 01:00,0,0,4,4,32,100,140,0,140, +Saturday,11/12/2011 02:00,0,30,2,6,32,100,170,0,170, +Saturday,11/12/2011 03:00,0,0,4,2,32,92,130,0,130, +Saturday,11/12/2011 04:00,0,88,4,4,32,100,230,0,230, +Saturday,11/12/2011 05:00,0,88,4,4,32,100,228,0,228, +Saturday,11/12/2011 06:00,0,118,4,6,32,100,260,0,260, +Saturday,11/12/2011 07:00,0,30,4,8,34,100,174,-4,170, +Saturday,11/12/2011 08:00,0,0,2,4,32,92,130,-110,20, +Saturday,11/12/2011 09:00,0,30,2,4,32,100,168,-286,-118, +Saturday,11/12/2011 10:00,0,0,2,2,32,100,138,-420,-282, +Saturday,11/12/2011 11:00,0,0,2,4,32,100,138,-506,-368, +Saturday,11/12/2011 12:00,0,0,4,2,30,92,126,-510,-384, +Saturday,11/12/2011 13:00,0,30,0,0,0,100,130,0,130, +Saturday,11/12/2011 14:00,0,0,2,18,50,100,170,-222,-52, +Saturday,11/12/2011 15:00,0,0,2,14,26,100,142,-306,-164, +Saturday,11/12/2011 16:00,0,0,0,16,28,100,144,-140,4, +Saturday,11/12/2011 17:00,0,118,6,16,28,92,256,-2,254, +Saturday,11/12/2011 18:00,0,0,4,16,28,100,148,0,148, +Saturday,11/12/2011 19:00,0,0,4,8,26,100,138,0,138, +Saturday,11/12/2011 20:00,0,0,2,8,28,100,138,0,138, +Saturday,11/12/2011 21:00,0,0,4,8,30,100,140,0,140, +Saturday,11/12/2011 22:00,0,30,6,6,26,92,158,0,158, +Saturday,11/12/2011 23:00,0,0,2,4,28,100,136,0,136, +Sunday,11/13/2011 0:00,0,108,4,6,28,100,244,0,244, +Sunday,11/13/2011 1:00,0,98,4,4,28,100,234,0,234, +Sunday,11/13/2011 2:00,0,88,4,4,26,100,222,0,222, +Sunday,11/13/2011 3:00,0,118,4,4,28,100,254,0,254, +Sunday,11/13/2011 4:00,0,146,4,4,28,92,272,0,272, +Sunday,11/13/2011 5:00,0,118,6,4,30,100,256,0,256, +Sunday,11/13/2011 6:00,0,146,4,6,26,100,282,0,282, +Sunday,11/13/2011 7:00,0,118,4,6,28,92,244,0,244, +Sunday,11/13/2011 8:00,0,88,4,4,28,100,224,-112,112, +Sunday,11/13/2011 9:00,0,30,4,2,30,100,164,-258,-94, +Sunday,11/13/2011 10:00,0,0,0,4,28,100,132,-332,-200, +Sunday,11/13/2011 11:00,0,0,2,4,28,100,132,-396,-264, +Sunday,11/13/2011 12:00,0,0,4,6,28,92,128,-392,-264, +Sunday,11/13/2011 13:00,0,0,0,6,28,100,136,-206,-70, +Sunday,11/13/2011 14:00,0,0,2,6,28,100,136,-262,-126, +Sunday,11/13/2011 15:00,0,30,2,4,28,100,162,-230,-68, +Sunday,11/13/2011 16:00,0,0,0,6,28,100,136,-104,32, +Sunday,11/13/2011 17:00,0,30,4,6,30,100,170,-6,164, +Sunday,11/13/2011 18:00,0,58,6,10,28,92,192,0,192, +Sunday,11/13/2011 19:00,0,88,6,8,26,100,228,0,228, +Sunday,11/13/2011 20:00,0,88,4,10,30,100,230,0,230, +Sunday,11/13/2011 21:00,0,118,4,10,30,100,260,0,260, +Sunday,11/13/2011 22:00,0,116,4,8,26,100,254,0,254, +Sunday,11/13/2011 23:00,0,148,4,6,30,100,288,0,288, +Monday,11/14/2011 0:00,0,146,4,6,26,92,272,0,272, +Monday,11/14/2011 1:00,0,204,6,4,30,100,342,0,342, +Monday,11/14/2011 2:00,0,148,4,6,26,100,284,0,284, +Monday,11/14/2011 3:00,0,176,4,2,28,100,312,0,312, +Monday,11/14/2011 4:00,0,176,4,6,30,100,314,0,314, +Monday,11/14/2011 5:00,0,206,6,4,30,92,336,0,336, +Monday,11/14/2011 6:00,0,206,6,6,28,100,344,0,344, +Monday,11/14/2011 7:00,0,440,24,26,38,100,628,0,628, +Monday,11/14/2011 8:00,0,352,26,34,46,100,558,-70,488, +Monday,11/14/2011 9:00,0,204,26,36,62,100,430,-284,146, +Monday,11/14/2011 10:00,0,88,30,40,68,100,324,-428,-104, +Monday,11/14/2011 11:00,0,0,28,36,66,92,222,-504,-282, +Monday,11/14/2011 12:00,0,30,28,34,68,100,258,-556,-298, +Monday,11/14/2011 13:00,0,0,30,30,66,100,224,-506,-282, +Monday,11/14/2011 14:00,0,0,28,38,62,100,228,-372,-144, +Monday,11/14/2011 15:00,0,30,28,42,60,92,252,-238,14, +Monday,11/14/2011 16:00,0,0,26,52,62,100,242,-60,182, +Monday,11/14/2011 17:00,0,0,26,58,52,100,234,-8,226, +Monday,11/14/2011 18:00,0,30,22,60,42,100,252,0,252, +Monday,11/14/2011 19:00,0,0,2,40,38,92,172,0,172, +Monday,11/14/2011 20:00,4,118,2,40,34,100,296,0,296, +Monday,11/14/2011 21:00,0,0,8,34,38,100,180,0,180, +Monday,11/14/2011 22:00,0,30,4,20,36,100,190,0,190, +Monday,11/14/2011 23:00,0,0,4,8,32,100,144,0,144, +Tuesday,11/15/2011 0:00,0,30,2,12,30,92,164,0,164, +Tuesday,11/15/2011 1:00,0,30,4,6,32,100,172,0,172, +Tuesday,11/15/2011 2:00,0,88,4,8,32,100,232,0,232, +Tuesday,11/15/2011 3:00,0,88,4,8,32,100,232,0,232, +Tuesday,11/15/2011 4:00,0,118,4,4,32,100,258,0,258, +Tuesday,11/15/2011 5:00,0,118,4,4,32,100,258,0,258, +Tuesday,11/15/2011 6:00,0,146,4,6,34,92,282,0,282, +Tuesday,11/15/2011 7:00,0,118,24,24,40,100,304,0,304, +Tuesday,11/15/2011 8:00,0,292,26,32,46,100,496,-98,398, +Tuesday,11/15/2011 9:00,0,146,26,40,60,100,372,-272,100, +Tuesday,11/15/2011 10:00,0,30,26,44,70,100,268,-422,-154, +Tuesday,11/15/2011 11:00,0,30,30,40,68,100,268,-510,-242, +Tuesday,11/15/2011 12:00,0,0,28,42,68,92,230,-476,-246, +Tuesday,11/15/2011 13:00,0,0,28,40,68,100,236,-500,-264, +Tuesday,11/15/2011 14:00,0,30,30,48,66,100,272,-260,12, +Tuesday,11/15/2011 15:00,0,0,26,48,60,100,232,-302,-70, +Tuesday,11/15/2011 16:00,0,30,26,52,60,100,268,-120,148, +Tuesday,11/15/2011 17:00,0,0,24,58,54,100,236,-8,228, +Tuesday,11/15/2011 18:00,0,146,26,60,44,92,368,0,368, +Tuesday,11/15/2011 19:00,0,30,6,46,38,100,218,0,218, +Tuesday,11/15/2011 20:00,0,0,4,32,36,100,172,0,172, +Tuesday,11/15/2011 21:00,0,0,6,28,36,100,170,0,170, +Tuesday,11/15/2011 22:00,0,30,4,22,34,100,190,0,190, +Tuesday,11/15/2011 23:00,0,58,2,14,30,100,206,0,206, +Wednesday,11/16/2011 0:00,0,88,2,8,34,92,224,0,224, +Wednesday,11/16/2011 1:00,0,176,4,8,34,100,320,0,320, +Wednesday,11/16/2011 2:00,0,176,4,8,34,100,322,0,322, +Wednesday,11/16/2011 3:00,0,204,4,10,32,100,350,0,350, +Wednesday,11/16/2011 4:00,0,206,4,16,36,100,362,0,362, +Wednesday,11/16/2011 5:00,0,264,6,18,32,100,420,0,420, +Wednesday,11/16/2011 6:00,0,234,4,16,34,100,390,0,390, +Wednesday,11/16/2011 7:00,0,498,24,30,42,92,686,-2,684, +Wednesday,11/16/2011 8:00,0,410,22,30,54,100,618,-110,508, +Wednesday,11/16/2011 9:00,0,352,28,36,58,100,572,-282,290, +Wednesday,11/16/2011 10:00,0,176,26,38,68,100,406,-432,-26, +Wednesday,11/16/2011 11:00,0,176,26,38,68,100,406,-532,-126, +Wednesday,11/16/2011 12:00,0,146,26,34,70,92,368,-560,-192, +Wednesday,11/16/2011 13:00,0,148,30,34,62,100,372,-526,-154, +Wednesday,11/16/2011 14:00,0,146,28,34,60,100,370,-446,-76, +Wednesday,11/16/2011 15:00,4,176,30,38,64,100,410,-320,90, +Wednesday,11/16/2011 16:00,0,176,30,50,60,100,416,-138,278, +Wednesday,11/16/2011 17:00,0,146,26,66,56,100,394,-10,384, +Wednesday,11/16/2011 18:00,0,176,26,64,44,92,402,0,402, +Wednesday,11/16/2011 19:00,0,58,2,44,38,100,242,0,242, +Wednesday,11/16/2011 20:00,0,30,6,36,36,100,208,0,208, +Wednesday,11/16/2011 21:00,0,58,6,42,40,100,246,0,246, +Wednesday,11/16/2011 22:00,0,88,2,28,32,100,252,0,252, +Wednesday,11/16/2011 23:00,0,146,4,10,34,92,286,0,286, +Thursday,11/17/2011 0:00,0,176,2,8,32,100,318,0,318, +Thursday,11/17/2011 1:00,0,234,4,8,36,100,382,0,382, +Thursday,11/17/2011 2:00,0,234,2,6,32,100,376,0,376, +Thursday,11/17/2011 3:00,0,264,4,6,32,100,406,0,406, +Thursday,11/17/2011 4:00,0,264,4,8,36,100,412,0,412, +Thursday,11/17/2011 5:00,0,234,4,6,34,92,370,0,370, +Thursday,11/17/2011 6:00,0,234,6,14,32,100,386,0,386, +Thursday,11/17/2011 7:00,0,440,24,28,44,100,636,-2,634, +Thursday,11/17/2011 8:00,0,322,24,36,50,100,534,-90,444, +Thursday,11/17/2011 9:00,0,176,24,38,60,100,398,-298,100, +Thursday,11/17/2011 10:00,0,88,28,42,70,92,318,-350,-32, +Thursday,11/17/2011 11:00,0,88,28,48,66,100,330,-128,202, +Thursday,11/17/2011 12:00,0,0,24,48,66,100,238,-260,-22, +Thursday,11/17/2011 13:00,0,30,28,38,66,100,260,-476,-216, +Thursday,11/17/2011 14:00,0,0,26,42,64,100,232,-270,-38, +Thursday,11/17/2011 15:00,0,30,28,44,64,100,264,-284,-20, +Thursday,11/17/2011 16:00,0,0,24,44,62,92,222,-300,-78, +Thursday,11/17/2011 17:00,0,0,26,60,54,100,238,-46,192, +Thursday,11/17/2011 18:00,0,30,22,62,46,100,260,0,260, +Thursday,11/17/2011 19:00,0,0,4,48,34,100,186,0,186, +Thursday,11/17/2011 20:00,0,30,0,42,34,100,208,0,208, +Thursday,11/17/2011 21:00,0,58,6,30,38,92,222,0,222, +Thursday,11/17/2011 22:00,0,0,4,22,34,100,162,0,162, +Thursday,11/17/2011 23:00,0,30,4,12,36,100,182,0,182, +Friday,11/18/2011 0:00,0,0,4,8,30,100,142,0,142, +Friday,11/18/2011 1:00,0,30,4,4,36,100,172,0,172, +Friday,11/18/2011 2:00,0,30,4,4,32,92,162,0,162, +Friday,11/18/2011 3:00,0,118,4,6,32,100,258,0,258, +Friday,11/18/2011 4:00,0,88,2,4,36,100,230,0,230, +Friday,11/18/2011 5:00,0,60,4,4,34,100,202,0,202, +Friday,11/18/2011 6:00,0,58,4,8,32,100,202,0,202, +Friday,11/18/2011 7:00,0,30,22,20,42,92,204,0,204, +Friday,11/18/2011 8:00,0,88,24,30,46,100,290,-80,210, +Friday,11/18/2011 9:00,0,60,26,36,58,100,278,-400,-122, +Friday,11/18/2011 10:00,0,30,24,38,62,100,254,-608,-354, +Friday,11/18/2011 11:00,0,30,26,40,64,100,258,-720,-462, +Friday,11/18/2011 12:00,0,0,30,36,62,100,228,-752,-524, +Friday,11/18/2011 13:00,0,0,30,34,60,92,214,-712,-498, +Friday,11/18/2011 14:00,4,0,30,34,60,100,226,-618,-392, +Friday,11/18/2011 15:00,4,118,30,36,58,100,346,-430,-84, +Friday,11/18/2011 16:00,4,0,30,46,56,100,234,-190,44, +Friday,11/18/2011 17:00,4,0,26,54,48,100,232,-12,220, +Friday,11/18/2011 18:00,0,0,24,60,40,100,224,0,224, +Friday,11/18/2011 19:00,0,30,4,42,38,92,206,0,206, +Friday,11/18/2011 20:00,0,0,6,38,34,100,178,0,178, +Friday,11/18/2011 21:00,0,88,4,32,38,100,262,0,262, +Friday,11/18/2011 22:00,0,0,6,18,32,100,156,0,156, +Friday,11/18/2011 23:00,0,30,4,10,34,92,170,0,170, +Saturday,11/19/2011 0:00,0,0,4,4,30,100,140,0,140, +Saturday,11/19/2011 1:00,0,0,4,4,32,100,142,0,142, +Saturday,11/19/2011 2:00,0,60,4,4,34,100,202,0,202, +Saturday,11/19/2011 3:00,0,88,4,4,34,100,230,0,230, +Saturday,11/19/2011 4:00,0,118,4,6,30,100,258,0,258, +Saturday,11/19/2011 5:00,0,146,4,4,34,92,280,0,280, +Saturday,11/19/2011 6:00,0,148,4,4,32,100,288,0,288, +Saturday,11/19/2011 7:00,0,146,4,8,32,100,292,0,292, +Saturday,11/19/2011 8:00,0,176,4,6,34,100,320,-102,218, +Saturday,11/19/2011 9:00,0,60,4,2,32,100,198,-400,-202, +Saturday,11/19/2011 10:00,0,30,2,4,32,100,168,-582,-414, +Saturday,11/19/2011 11:00,0,30,4,8,36,92,168,-692,-524, +Saturday,11/19/2011 12:00,0,0,4,6,32,100,142,-600,-458, +Saturday,11/19/2011 13:00,0,0,4,6,32,100,142,-708,-566, +Saturday,11/19/2011 14:00,0,30,2,4,32,100,170,-612,-442, +Saturday,11/19/2011 15:00,0,0,2,4,36,100,142,-406,-264, +Saturday,11/19/2011 16:00,0,0,6,8,32,92,138,-80,58, +Saturday,11/19/2011 17:00,0,0,2,10,32,100,144,-6,138, +Saturday,11/19/2011 18:00,0,30,4,12,32,100,178,0,178, +Saturday,11/19/2011 19:00,0,30,2,10,36,100,178,0,178, +Saturday,11/19/2011 20:00,0,58,6,10,30,92,194,0,194, +Saturday,11/19/2011 21:00,0,146,4,10,32,100,292,0,292, +Saturday,11/19/2011 22:00,0,176,4,6,34,100,320,0,320, +Saturday,11/19/2011 23:00,0,234,6,4,34,100,378,0,378, +Sunday,11/20/2011 0:00,0,250,4,6,32,100,390,0,390, +Sunday,11/20/2011 1:00,0,220,6,2,32,100,358,0,358, +Sunday,11/20/2011 2:00,0,234,6,4,32,92,368,0,368, +Sunday,11/20/2011 3:00,0,234,4,4,32,100,376,0,376, +Sunday,11/20/2011 4:00,0,204,4,6,34,100,348,0,348, +Sunday,11/20/2011 5:00,0,176,4,2,32,100,314,0,314, +Sunday,11/20/2011 6:00,0,204,4,6,34,100,348,0,348, +Sunday,11/20/2011 7:00,0,234,6,8,34,100,382,0,382, +Sunday,11/20/2011 8:00,0,206,4,4,30,92,334,-108,226, +Sunday,11/20/2011 9:00,0,118,2,2,34,100,256,-380,-124, +Sunday,11/20/2011 10:00,0,118,6,2,34,100,258,-550,-292, +Sunday,11/20/2011 11:00,0,58,4,4,32,100,200,-622,-422, +Sunday,11/20/2011 12:00,0,60,2,2,34,100,200,-626,-426, +Sunday,11/20/2011 13:00,0,30,4,2,32,92,158,-684,-526, +Sunday,11/20/2011 14:00,0,30,4,2,32,100,168,-590,-422, +Sunday,11/20/2011 15:00,0,30,2,6,34,100,172,-422,-250, +Sunday,11/20/2011 16:00,0,0,4,6,32,100,142,-134,8, +Sunday,11/20/2011 17:00,0,30,4,8,32,100,174,-10,164, +Sunday,11/20/2011 18:00,0,30,4,12,32,92,168,0,168, +Sunday,11/20/2011 19:00,0,58,4,10,32,100,204,0,204, +Sunday,11/20/2011 20:00,0,146,4,10,32,100,292,0,292, +Sunday,11/20/2011 21:00,0,176,4,10,32,100,322,0,322, +Sunday,11/20/2011 22:00,0,204,6,6,34,100,350,0,350, +Sunday,11/20/2011 23:00,0,206,4,4,32,92,336,0,336, +Monday,11/21/2011 0:00,0,206,6,4,30,100,346,0,346, +Monday,11/21/2011 1:00,0,234,6,4,34,100,376,0,376, +Monday,11/21/2011 2:00,0,206,4,2,32,100,346,0,346, +Monday,11/21/2011 3:00,0,206,4,4,30,100,344,0,344, +Monday,11/21/2011 4:00,0,204,4,2,34,100,346,0,346, +Monday,11/21/2011 5:00,0,234,4,6,32,92,368,0,368, +Monday,11/21/2011 6:00,0,234,8,8,32,100,382,0,382, +Monday,11/21/2011 7:00,0,440,22,22,42,100,628,0,628, +Monday,11/21/2011 8:00,0,440,28,32,48,100,648,-70,578, +Monday,11/21/2011 9:00,0,322,26,42,60,100,550,-170,380, +Monday,11/21/2011 10:00,0,234,28,42,68,92,464,-316,148, +Monday,11/21/2011 11:00,0,146,26,42,68,100,382,-370,12, +Monday,11/21/2011 12:00,0,118,28,38,64,100,348,-498,-150, +Monday,11/21/2011 13:00,0,118,28,38,64,100,348,-394,-46, +Monday,11/21/2011 14:00,0,146,30,40,66,100,382,-352,30, +Monday,11/21/2011 15:00,4,118,30,40,62,100,356,-264,92, +Monday,11/21/2011 16:00,0,0,30,48,58,92,226,-132,94, +Monday,11/21/2011 17:00,0,118,30,56,52,110,366,-6,360, +Monday,11/21/2011 18:00,0,88,30,62,44,92,314,0,314, +Monday,11/21/2011 19:00,0,30,6,48,38,100,222,0,222, +Monday,11/21/2011 20:00,0,30,6,38,36,100,210,0,210, +Monday,11/21/2011 21:00,0,30,4,30,38,92,192,0,192, +Monday,11/21/2011 22:00,0,30,4,22,34,100,190,0,190, +Monday,11/21/2011 23:00,0,30,4,8,32,100,174,0,174, +Tuesday,11/22/2011 0:00,0,88,6,6,34,100,234,0,234, +Tuesday,11/22/2011 1:00,0,118,2,4,32,100,256,0,256, +Tuesday,11/22/2011 2:00,4,118,4,6,34,100,266,0,266, +Tuesday,11/22/2011 3:00,0,176,6,6,32,100,320,0,320, +Tuesday,11/22/2011 4:00,0,176,6,4,32,92,308,0,308, +Tuesday,11/22/2011 5:00,0,176,4,8,34,100,322,0,322, +Tuesday,11/22/2011 6:00,0,204,6,10,36,100,356,0,356, +Tuesday,11/22/2011 7:00,0,352,26,22,40,100,540,0,540, +Tuesday,11/22/2011 8:00,0,292,26,32,46,100,498,-100,398, +Tuesday,11/22/2011 9:00,0,176,28,34,60,100,398,-356,42, +Tuesday,11/22/2011 10:00,4,118,22,34,62,100,340,-574,-234, +Tuesday,11/22/2011 11:00,0,58,30,34,64,92,276,-666,-390, +Tuesday,11/22/2011 12:00,0,60,28,52,68,110,316,-142,174, +Tuesday,11/22/2011 13:00,0,58,28,46,64,100,296,-294,2, +Tuesday,11/22/2011 14:00,4,60,30,34,60,92,276,-606,-330, +Tuesday,11/22/2011 15:00,0,30,30,46,60,100,262,-262,0, +Tuesday,11/22/2011 16:00,4,30,28,52,54,100,266,-152,114, +Tuesday,11/22/2011 17:00,0,58,26,56,48,100,290,-14,276, +Tuesday,11/22/2011 18:00,0,60,28,58,40,100,284,0,284, +Tuesday,11/22/2011 19:00,0,30,8,38,36,100,212,0,212, +Tuesday,11/22/2011 20:00,4,0,4,34,36,92,170,0,170, +Tuesday,11/22/2011 21:00,0,0,4,26,34,100,166,0,166, +Tuesday,11/22/2011 22:00,0,30,4,18,36,100,188,0,188, +Tuesday,11/22/2011 23:00,0,0,4,14,32,100,150,0,150, +Wednesday,11/23/2011 0:00,0,0,4,10,32,92,136,0,136, +Wednesday,11/23/2011 1:00,0,30,4,6,30,100,172,0,172, +Wednesday,11/23/2011 2:00,0,0,6,6,32,100,144,0,144, +Wednesday,11/23/2011 3:00,0,30,4,6,36,100,174,0,174, +Wednesday,11/23/2011 4:00,0,118,4,8,32,100,262,0,262, +Wednesday,11/23/2011 5:00,0,58,4,8,32,100,202,0,202, +Wednesday,11/23/2011 6:00,0,0,4,8,32,92,136,0,136, +Wednesday,11/23/2011 7:00,0,60,20,24,40,100,244,0,244, +Wednesday,11/23/2011 8:00,0,88,24,32,46,100,292,-50,242, +Wednesday,11/23/2011 9:00,0,322,24,48,52,100,548,-146,402, +Wednesday,11/23/2011 10:00,0,176,28,42,58,92,394,-324,70, +Wednesday,11/23/2011 11:00,0,88,26,36,54,100,304,-574,-270, +Wednesday,11/23/2011 12:00,0,0,26,36,56,100,218,-618,-400, +Wednesday,11/23/2011 13:00,4,30,26,30,56,100,246,-672,-426, +Wednesday,11/23/2011 14:00,0,0,28,32,48,92,200,-560,-360, +Wednesday,11/23/2011 15:00,4,0,24,30,40,100,198,-390,-192, +Wednesday,11/23/2011 16:00,0,0,28,34,38,100,200,-150,50, +Wednesday,11/23/2011 17:00,0,30,24,38,32,100,224,-8,216, +Wednesday,11/23/2011 18:00,0,88,24,44,36,100,292,0,292, +Wednesday,11/23/2011 19:00,0,30,6,36,34,100,206,0,206, +Wednesday,11/23/2011 20:00,4,0,2,28,32,92,158,0,158, +Wednesday,11/23/2011 21:00,0,0,4,10,30,100,146,0,146, +Wednesday,11/23/2011 22:00,0,0,4,8,30,100,142,0,142, +Wednesday,11/23/2011 23:00,0,30,6,4,32,100,172,0,172, +Thursday,11/24/2011 0:00,0,0,2,4,32,100,140,0,140, +Thursday,11/24/2011 1:00,0,0,4,4,30,92,128,0,128, +Thursday,11/24/2011 2:00,0,30,4,2,30,100,166,0,166, +Thursday,11/24/2011 3:00,0,30,4,4,34,100,172,0,172, +Thursday,11/24/2011 4:00,0,88,4,4,32,100,228,0,228, +Thursday,11/24/2011 5:00,0,88,4,2,30,100,226,0,226, +Thursday,11/24/2011 6:00,0,118,6,4,30,92,250,0,250, +Thursday,11/24/2011 7:00,0,234,24,6,30,100,394,0,394, +Thursday,11/24/2011 8:00,0,234,22,2,32,100,392,-52,340, +Thursday,11/24/2011 9:00,4,176,24,2,28,100,332,-190,142, +Thursday,11/24/2011 10:00,0,88,24,2,34,100,250,-574,-324, +Thursday,11/24/2011 11:00,0,0,24,2,32,92,150,-672,-522, +Thursday,11/24/2011 12:00,0,0,24,2,32,100,158,-730,-572, +Thursday,11/24/2011 13:00,4,88,28,2,30,100,250,-686,-436, +Thursday,11/24/2011 14:00,0,0,24,2,32,100,158,-546,-388, +Thursday,11/24/2011 15:00,4,0,24,6,30,100,164,-266,-102, +Thursday,11/24/2011 16:00,4,58,26,6,30,92,214,-114,100, +Thursday,11/24/2011 17:00,0,0,24,8,30,100,162,-12,150, +Thursday,11/24/2011 18:00,0,88,24,8,32,100,252,0,252, +Thursday,11/24/2011 19:00,0,30,4,6,30,100,170,0,170, +Thursday,11/24/2011 20:00,0,0,2,6,32,100,142,0,142, +Thursday,11/24/2011 21:00,0,0,6,6,30,92,132,0,132, +Thursday,11/24/2011 22:00,0,30,4,4,32,100,170,0,170, +Thursday,11/24/2011 23:00,0,0,6,4,28,100,138,0,138, +Friday,11/25/2011 0:00,4,0,4,6,30,100,144,0,144, +Friday,11/25/2011 1:00,0,0,4,6,30,92,132,0,132, +Friday,11/25/2011 2:00,0,30,4,4,30,100,170,0,170, +Friday,11/25/2011 3:00,0,30,2,6,30,100,168,0,168, +Friday,11/25/2011 4:00,0,0,4,6,32,100,142,0,142, +Friday,11/25/2011 5:00,0,30,4,2,32,100,170,0,170, +Friday,11/25/2011 6:00,0,118,8,4,30,92,250,0,250, +Friday,11/25/2011 7:00,0,234,22,6,32,100,396,0,396, +Friday,11/25/2011 8:00,0,176,22,4,30,100,332,-12,320, +Friday,11/25/2011 9:00,0,206,24,6,30,100,366,-54,312, +Friday,11/25/2011 10:00,0,176,24,8,32,92,330,-120,210, +Friday,11/25/2011 11:00,0,118,22,6,30,100,276,-220,56, +Friday,11/25/2011 12:00,0,118,24,4,32,100,278,-294,-16, +Friday,11/25/2011 13:00,0,118,22,6,32,100,278,-562,-284, +Friday,11/25/2011 14:00,4,58,26,6,30,92,212,-594,-382, +Friday,11/25/2011 15:00,0,30,24,6,32,100,192,-408,-216, +Friday,11/25/2011 16:00,0,58,24,8,32,100,222,-156,66, +Friday,11/25/2011 17:00,0,30,24,10,30,100,196,-4,192, +Friday,11/25/2011 18:00,0,176,22,12,32,100,344,0,344, +Friday,11/25/2011 19:00,0,58,4,8,28,92,190,0,190, +Friday,11/25/2011 20:00,0,60,2,4,34,100,200,0,200, +Friday,11/25/2011 21:00,0,88,4,4,30,100,226,0,226, +Friday,11/25/2011 22:00,0,88,2,4,30,100,226,0,226, +Friday,11/25/2011 23:00,0,146,2,4,30,92,274,0,274, +Saturday,11/26/2011 0:00,0,206,4,4,32,100,346,0,346, +Saturday,11/26/2011 1:00,0,204,4,6,32,100,346,0,346, +Saturday,11/26/2011 2:00,0,234,4,4,30,100,372,0,372, +Saturday,11/26/2011 3:00,0,234,4,6,32,100,376,0,376, +Saturday,11/26/2011 4:00,0,292,4,4,32,100,432,0,432, +Saturday,11/26/2011 5:00,0,294,4,4,30,92,424,0,424, +Saturday,11/26/2011 6:00,0,264,2,4,34,100,404,0,404, +Saturday,11/26/2011 7:00,0,264,4,8,30,100,408,0,408, +Saturday,11/26/2011 8:00,0,234,4,6,32,100,376,-128,248, +Saturday,11/26/2011 9:00,0,146,4,2,30,100,282,-368,-86, +Saturday,11/26/2011 10:00,0,58,2,4,32,92,188,-586,-398, +Saturday,11/26/2011 11:00,0,88,2,2,34,100,228,-716,-488, +Saturday,11/26/2011 12:00,0,0,4,2,30,100,136,-752,-616, +Saturday,11/26/2011 13:00,0,30,2,2,30,100,164,-714,-550, +Saturday,11/26/2011 14:00,0,0,2,6,34,100,142,-604,-462, +Saturday,11/26/2011 15:00,0,0,4,6,34,92,136,-416,-280, +Saturday,11/26/2011 16:00,0,30,2,4,30,100,166,-168,-2, +Saturday,11/26/2011 17:00,0,30,2,4,32,100,170,-6,164, +Saturday,11/26/2011 18:00,0,58,2,6,34,100,202,0,202, +Saturday,11/26/2011 19:00,0,88,4,4,30,92,218,0,218, +Saturday,11/26/2011 20:00,0,176,4,4,30,100,314,0,314, +Saturday,11/26/2011 21:00,0,206,4,4,32,100,346,0,346, +Saturday,11/26/2011 22:00,0,234,4,4,32,100,374,0,374, +Saturday,11/26/2011 23:00,0,234,2,2,34,100,372,0,372, +Sunday,11/27/2011 0:00,0,228,4,4,30,100,366,0,366, +Sunday,11/27/2011 1:00,0,212,4,2,28,92,338,0,338, +Sunday,11/27/2011 2:00,0,234,4,4,36,100,378,0,378, +Sunday,11/27/2011 3:00,0,204,4,6,30,100,344,0,344, +Sunday,11/27/2011 4:00,0,206,4,6,30,100,344,0,344, +Sunday,11/27/2011 5:00,0,234,2,6,32,100,374,0,374, +Sunday,11/27/2011 6:00,0,204,4,4,32,92,336,0,336, +Sunday,11/27/2011 7:00,0,234,6,6,32,100,378,0,378, +Sunday,11/27/2011 8:00,0,146,4,2,30,100,284,-104,180, +Sunday,11/27/2011 9:00,0,118,4,2,30,92,246,-344,-98, +Sunday,11/27/2011 10:00,0,60,2,2,32,100,196,-554,-358, +Sunday,11/27/2011 11:00,0,30,2,2,32,100,166,-658,-492, +Sunday,11/27/2011 12:00,0,0,4,4,30,100,140,-698,-558, +Sunday,11/27/2011 13:00,0,0,2,4,34,100,140,-670,-530, +Sunday,11/27/2011 14:00,0,0,2,4,30,100,138,-570,-432, +Sunday,11/27/2011 15:00,0,30,6,4,30,92,160,-390,-230, +Sunday,11/27/2011 16:00,0,0,4,4,30,100,138,-160,-22, +Sunday,11/27/2011 17:00,0,0,2,4,32,100,138,-4,134, +Sunday,11/27/2011 18:00,0,60,4,10,32,100,204,0,204, +Sunday,11/27/2011 19:00,0,0,2,10,30,100,142,0,142, +Sunday,11/27/2011 20:00,0,0,2,10,30,92,132,0,132, +Sunday,11/27/2011 21:00,0,0,2,6,32,100,140,0,140, +Sunday,11/27/2011 22:00,0,30,2,8,30,100,170,0,170, +Sunday,11/27/2011 23:00,0,0,2,10,32,100,142,0,142, +Monday,11/28/2011 0:00,0,0,2,10,32,92,134,0,134, +Monday,11/28/2011 1:00,0,0,2,4,30,100,138,0,138, +Monday,11/28/2011 2:00,0,30,2,4,30,100,164,0,164, +Monday,11/28/2011 3:00,0,30,2,2,32,100,166,0,166, +Monday,11/28/2011 4:00,0,0,2,6,32,100,140,0,140, +Monday,11/28/2011 5:00,0,30,2,4,32,100,170,0,170, +Monday,11/28/2011 6:00,4,204,8,6,30,92,344,0,344, +Monday,11/28/2011 7:00,0,176,24,28,40,100,368,0,368, +Monday,11/28/2011 8:00,0,58,24,40,46,100,270,-6,264, +Monday,11/28/2011 9:00,0,176,26,58,58,100,418,-38,380, +Monday,11/28/2011 10:00,0,118,28,68,60,100,374,-58,316, +Monday,11/28/2011 11:00,0,88,28,66,60,92,334,-136,198, +Monday,11/28/2011 12:00,0,88,28,56,60,100,332,-264,68, +Monday,11/28/2011 13:00,0,30,28,60,62,100,280,-188,92, +Monday,11/28/2011 14:00,4,30,26,66,60,100,286,-102,184, +Monday,11/28/2011 15:00,0,0,26,70,60,92,244,-56,188, +Monday,11/28/2011 16:00,0,30,28,70,56,100,284,-26,258, +Monday,11/28/2011 17:00,0,0,24,68,50,100,242,-4,238, +Monday,11/28/2011 18:00,0,30,26,70,40,100,266,0,266, +Monday,11/28/2011 19:00,0,30,6,50,36,100,222,0,222, +Monday,11/28/2011 20:00,4,30,2,38,38,100,210,0,210, +Monday,11/28/2011 21:00,0,0,6,40,36,92,172,0,172, +Monday,11/28/2011 22:00,0,30,6,24,34,100,192,0,192, +Monday,11/28/2011 23:00,0,30,4,10,34,100,178,0,178, +Tuesday,11/29/2011 0:00,0,30,2,8,34,100,174,0,174, +Tuesday,11/29/2011 1:00,0,118,6,4,32,100,260,0,260, +Tuesday,11/29/2011 2:00,0,118,4,6,32,100,260,0,260, +Tuesday,11/29/2011 3:00,0,118,4,4,34,92,252,0,252, +Tuesday,11/29/2011 4:00,0,146,2,8,34,100,292,0,292, +Tuesday,11/29/2011 5:00,0,176,6,8,32,100,320,0,320, +Tuesday,11/29/2011 6:00,0,176,6,12,36,100,330,0,330, +Tuesday,11/29/2011 7:00,0,498,24,26,44,100,690,0,690, +Tuesday,11/29/2011 8:00,0,380,24,36,50,100,592,-92,500, +Tuesday,11/29/2011 9:00,0,234,26,40,66,92,458,-320,138, +Tuesday,11/29/2011 10:00,0,146,26,40,66,100,378,-542,-164, +Tuesday,11/29/2011 11:00,0,88,28,38,68,100,322,-658,-336, +Tuesday,11/29/2011 12:00,6,30,30,34,68,100,266,-700,-434, +Tuesday,11/29/2011 13:00,4,0,30,34,70,100,236,-662,-426, +Tuesday,11/29/2011 14:00,4,0,32,36,62,92,226,-560,-334, +Tuesday,11/29/2011 15:00,4,0,34,42,64,100,244,-380,-136, +Tuesday,11/29/2011 16:00,4,30,30,50,58,100,272,-142,130, +Tuesday,11/29/2011 17:00,0,58,28,60,52,100,298,-8,290, +Tuesday,11/29/2011 18:00,0,30,26,62,42,100,262,0,262, +Tuesday,11/29/2011 19:00,0,30,8,50,40,100,226,0,226, +Tuesday,11/29/2011 20:00,4,0,2,34,38,92,168,0,168, +Tuesday,11/29/2011 21:00,0,30,6,30,38,100,204,0,204, +Tuesday,11/29/2011 22:00,0,0,4,22,36,100,162,0,162, +Tuesday,11/29/2011 23:00,0,0,4,8,32,100,144,0,144, +Wednesday,11/30/2011 0:00,0,0,4,6,34,100,144,0,144, +Wednesday,11/30/2011 1:00,0,0,4,6,36,92,138,0,138, +Wednesday,11/30/2011 2:00,0,0,4,6,34,100,144,0,144, +Wednesday,11/30/2011 3:00,0,0,2,6,32,100,142,0,142, +Wednesday,11/30/2011 4:00,0,30,6,8,36,100,178,0,178, +Wednesday,11/30/2011 5:00,0,30,2,8,34,100,174,0,174, +Wednesday,11/30/2011 6:00,0,60,4,10,36,92,200,0,200, +Wednesday,11/30/2011 7:00,0,204,24,22,44,100,394,0,394, +Wednesday,11/30/2011 8:00,0,176,26,36,52,100,392,-10,382, +Wednesday,11/30/2011 9:00,0,146,28,50,60,100,384,-110,274, +Wednesday,11/30/2011 10:00,0,118,28,50,66,92,352,-260,92, +Wednesday,11/30/2011 11:00,0,30,28,40,68,100,262,-640,-378, +Wednesday,11/30/2011 12:00,0,0,28,42,66,100,236,-692,-456, +Wednesday,11/30/2011 13:00,0,0,28,40,68,100,238,-670,-432, +Wednesday,11/30/2011 14:00,0,58,32,40,62,100,292,-594,-302, +Wednesday,11/30/2011 15:00,0,0,32,46,64,100,242,-318,-76, +Wednesday,11/30/2011 16:00,0,0,30,56,60,92,238,-40,198, +Wednesday,11/30/2011 17:00,0,0,30,64,54,100,246,-2,244, +Wednesday,11/30/2011 18:00,0,30,26,64,46,100,266,0,266, +Wednesday,11/30/2011 19:00,0,30,4,50,40,100,224,0,224, +Wednesday,11/30/2011 20:00,0,30,2,38,38,100,206,0,206, +Wednesday,11/30/2011 21:00,0,0,4,32,38,92,166,0,166, +Wednesday,11/30/2011 22:00,0,0,4,14,34,100,152,0,152, +Wednesday,11/30/2011 23:00,0,30,4,6,36,100,174,0,174, +Thursday,12/01/2011 00:00,0,30,4,8,32,100,174,0,174, +Thursday,12/01/2011 01:00,0,58,2,6,34,100,202,0,202, +Thursday,12/01/2011 02:00,0,88,4,8,34,100,234,0,234, +Thursday,12/01/2011 03:00,0,88,2,6,32,100,230,0,230, +Thursday,12/01/2011 04:00,0,148,2,4,34,100,288,0,288, +Thursday,12/01/2011 05:00,0,176,2,8,36,92,312,0,312, +Thursday,12/01/2011 06:00,4,176,8,10,36,110,340,0,340, +Thursday,12/01/2011 07:00,0,440,24,22,42,92,618,0,618, +Thursday,12/01/2011 08:00,0,380,22,32,46,100,582,0,582, +Thursday,12/01/2011 09:00,4,350,26,50,54,100,582,0,582, +Thursday,12/01/2011 10:00,0,322,26,46,64,100,560,0,560, +Thursday,12/01/2011 11:00,0,322,26,38,60,100,546,0,546, +Thursday,12/01/2011 12:00,0,322,30,40,64,100,554,2,556, +Thursday,12/01/2011 13:00,0,292,26,40,64,100,522,2,524, +Thursday,12/01/2011 14:00,0,264,28,42,60,100,492,2,494, +Thursday,12/01/2011 15:00,0,294,28,48,60,100,532,0,532, +Thursday,12/01/2011 16:00,0,322,28,56,54,92,550,0,550, +Thursday,12/01/2011 17:00,0,294,24,62,50,100,530,0,530, +Thursday,12/01/2011 18:00,4,322,24,60,40,100,548,0,548, +Thursday,12/01/2011 19:00,0,146,4,48,40,100,338,0,338, +Thursday,12/01/2011 20:00,0,146,6,36,36,100,324,0,324, +Thursday,12/01/2011 21:00,0,176,6,28,38,100,348,0,348, +Thursday,12/01/2011 22:00,4,234,8,16,38,100,400,0,400, +Thursday,12/01/2011 23:00,0,264,6,10,34,100,412,0,412, +Friday,12/02/2011 00:00,0,234,6,6,34,100,380,0,380, +Friday,12/02/2011 01:00,0,350,6,4,34,92,486,0,486, +Friday,12/02/2011 02:00,0,380,6,4,36,100,528,0,528, +Friday,12/02/2011 03:00,0,380,6,6,34,100,526,0,526, +Friday,12/02/2011 04:00,0,410,6,6,36,100,558,0,558, +Friday,12/02/2011 05:00,0,440,8,8,36,100,592,0,592, +Friday,12/02/2011 06:00,0,380,8,8,38,100,534,0,534, +Friday,12/02/2011 07:00,0,616,20,22,44,100,802,0,802, +Friday,12/02/2011 08:00,0,528,26,30,46,92,720,0,720, +Friday,12/02/2011 09:00,0,380,24,32,58,100,594,-4,590, +Friday,12/02/2011 10:00,0,264,28,32,62,100,486,-14,472, +Friday,12/02/2011 11:00,0,146,28,32,66,100,372,-24,348, +Friday,12/02/2011 12:00,4,146,26,30,66,100,372,-36,336, +Friday,12/02/2011 13:00,4,118,30,30,60,100,344,-38,306, +Friday,12/02/2011 14:00,0,60,30,30,64,92,276,-32,244, +Friday,12/02/2011 15:00,4,88,30,36,60,100,318,-24,294, +Friday,12/02/2011 16:00,0,88,30,40,54,100,314,-10,304, +Friday,12/02/2011 17:00,0,118,30,54,50,100,352,0,352, +Friday,12/02/2011 18:00,0,146,28,58,40,100,372,0,372, +Friday,12/02/2011 19:00,0,60,6,48,36,100,250,0,250, +Friday,12/02/2011 20:00,4,30,6,36,38,100,210,0,210, +Friday,12/02/2011 21:00,0,30,4,36,36,92,196,0,196, +Friday,12/02/2011 22:00,0,58,4,22,34,100,218,0,218, +Friday,12/02/2011 23:00,0,60,2,8,34,100,204,0,204, +Saturday,12/03/2011 00:00,0,88,2,4,30,100,226,0,226, +Saturday,12/03/2011 01:00,0,146,4,6,32,100,288,0,288, +Saturday,12/03/2011 02:00,0,176,2,4,34,100,316,0,316, +Saturday,12/03/2011 03:00,0,176,4,4,30,100,316,0,316, +Saturday,12/03/2011 04:00,0,234,4,6,34,100,378,0,378, +Saturday,12/03/2011 05:00,0,234,4,8,32,100,378,0,378, +Saturday,12/03/2011 06:00,0,264,4,10,32,92,402,0,402, +Saturday,12/03/2011 07:00,0,264,4,8,32,100,408,0,408, +Saturday,12/03/2011 08:00,0,264,2,8,32,100,406,0,406, +Saturday,12/03/2011 09:00,0,264,6,8,34,100,412,0,412, +Saturday,12/03/2011 10:00,0,234,4,4,32,100,372,0,372, +Saturday,12/03/2011 11:00,4,234,6,10,30,100,384,0,384, +Saturday,12/03/2011 12:00,0,176,6,6,36,92,314,2,316, +Saturday,12/03/2011 13:00,0,176,6,6,34,100,322,6,328, +Saturday,12/03/2011 14:00,0,146,8,8,32,100,294,0,294, +Saturday,12/03/2011 15:00,4,118,4,8,30,100,264,-4,260, +Saturday,12/03/2011 16:00,0,118,6,8,30,100,260,0,260, +Saturday,12/03/2011 17:00,0,176,6,14,30,100,324,0,324, +Saturday,12/03/2011 18:00,0,234,6,14,30,100,384,0,384, +Saturday,12/03/2011 19:00,4,292,6,10,32,100,444,0,444, +Saturday,12/03/2011 20:00,0,410,6,8,34,100,560,0,560, +Saturday,12/03/2011 21:00,0,350,6,8,30,92,488,0,488, +Saturday,12/03/2011 22:00,0,440,6,6,30,100,584,0,584, +Saturday,12/03/2011 23:00,0,470,6,10,32,100,618,0,618, +Sunday,12/04/2011 00:00,0,412,6,6,34,104,564,0,564, +Sunday,12/04/2011 01:00,0,408,6,6,32,96,546,0,546, +Sunday,12/04/2011 02:00,0,380,6,8,32,100,526,0,526, +Sunday,12/04/2011 03:00,0,410,8,8,30,100,556,0,556, +Sunday,12/04/2011 04:00,0,410,6,8,34,100,558,0,558, +Sunday,12/04/2011 05:00,4,380,8,10,32,92,524,0,524, +Sunday,12/04/2011 06:00,0,352,6,8,32,100,498,0,498, +Sunday,12/04/2011 07:00,0,322,6,6,34,100,470,0,470, +Sunday,12/04/2011 08:00,0,322,6,8,32,100,468,0,468, +Sunday,12/04/2011 09:00,0,264,6,6,32,100,410,0,410, +Sunday,12/04/2011 10:00,0,206,6,6,32,100,350,-4,346, +Sunday,12/04/2011 11:00,0,176,8,8,34,100,324,-6,318, +Sunday,12/04/2011 12:00,0,146,6,6,30,92,280,-10,270, +Sunday,12/04/2011 13:00,0,118,6,6,32,100,260,-12,248, +Sunday,12/04/2011 14:00,0,118,8,6,34,100,264,-12,252, +Sunday,12/04/2011 15:00,0,118,4,8,32,100,262,-6,256, +Sunday,12/04/2011 16:00,0,146,6,10,32,100,294,-2,292, +Sunday,12/04/2011 17:00,0,206,4,10,32,100,352,0,352, +Sunday,12/04/2011 18:00,0,292,8,12,34,92,438,0,438, +Sunday,12/04/2011 19:00,0,352,6,16,34,100,506,0,506, +Sunday,12/04/2011 20:00,0,410,6,10,32,100,560,0,560, +Sunday,12/04/2011 21:00,0,410,8,10,34,100,562,0,562, +Sunday,12/04/2011 22:00,4,440,4,8,32,100,588,0,588, +Sunday,12/04/2011 23:00,0,470,8,6,32,100,616,0,616, +Monday,12/05/2011 00:00,0,440,6,6,32,92,574,0,574, +Monday,12/05/2011 01:00,0,440,6,4,34,100,584,0,584, +Monday,12/05/2011 02:00,0,440,6,6,34,100,586,0,586, +Monday,12/05/2011 03:00,0,440,8,10,30,100,586,0,586, +Monday,12/05/2011 04:00,0,410,6,12,36,100,564,0,564, +Monday,12/05/2011 05:00,0,440,8,16,32,100,596,0,596, +Monday,12/05/2011 06:00,0,440,8,14,34,100,598,0,598, +Monday,12/05/2011 07:00,0,732,22,22,40,92,906,0,906, +Monday,12/05/2011 08:00,0,616,24,40,48,100,826,0,826, +Monday,12/05/2011 09:00,4,556,28,50,60,100,800,0,800, +Monday,12/05/2011 10:00,0,440,26,42,64,100,672,0,672, +Monday,12/05/2011 11:00,0,292,24,40,66,100,524,0,524, +Monday,12/05/2011 12:00,0,292,28,42,70,100,532,-2,530, +Monday,12/05/2011 13:00,0,264,30,46,68,100,510,2,512, +Monday,12/05/2011 14:00,0,204,26,44,62,92,428,2,430, +Monday,12/05/2011 15:00,0,234,30,42,68,100,476,2,478, +Monday,12/05/2011 16:00,0,206,24,54,56,100,440,0,440, +Monday,12/05/2011 17:00,0,292,28,62,56,100,540,0,540, +Monday,12/05/2011 18:00,0,322,28,60,46,100,556,0,556, +Monday,12/05/2011 19:00,0,206,6,44,42,100,398,0,398, +Monday,12/05/2011 20:00,0,176,8,32,38,100,352,0,352, +Monday,12/05/2011 21:00,0,264,4,34,40,92,436,0,436, +Monday,12/05/2011 22:00,0,380,8,34,40,100,562,0,562, +Monday,12/05/2011 23:00,0,410,6,12,36,100,564,0,564, +Tuesday,12/06/2011 00:00,0,440,6,6,36,100,586,0,586, +Tuesday,12/06/2011 01:00,0,470,8,4,36,100,616,0,616, +Tuesday,12/06/2011 02:00,0,528,6,4,36,92,664,0,664, +Tuesday,12/06/2011 03:00,0,470,6,6,36,100,616,0,616, +Tuesday,12/06/2011 04:00,0,440,8,4,36,100,586,0,586, +Tuesday,12/06/2011 05:00,0,410,6,8,36,100,560,0,560, +Tuesday,12/06/2011 06:00,0,440,10,8,38,100,594,0,594, +Tuesday,12/06/2011 07:00,0,702,26,20,44,100,892,0,892, +Tuesday,12/06/2011 08:00,0,558,26,34,48,100,764,0,764, +Tuesday,12/06/2011 09:00,0,380,28,34,60,92,592,0,592, +Tuesday,12/06/2011 10:00,0,146,24,32,60,100,362,-4,358, +Tuesday,12/06/2011 11:00,0,234,26,34,60,100,454,-14,440, +Tuesday,12/06/2011 12:00,0,204,26,34,62,100,428,-24,404, +Tuesday,12/06/2011 13:00,0,176,30,34,64,100,404,-42,362, +Tuesday,12/06/2011 14:00,0,146,30,34,64,100,376,-44,332, +Tuesday,12/06/2011 15:00,0,118,30,42,62,92,344,-28,316, +Tuesday,12/06/2011 16:00,0,118,32,44,58,100,350,-6,344, +Tuesday,12/06/2011 17:00,0,118,30,50,52,100,350,0,350, +Tuesday,12/06/2011 18:00,0,176,28,50,42,100,394,0,394, +Tuesday,12/06/2011 19:00,0,88,6,42,36,100,272,0,272, +Tuesday,12/06/2011 20:00,0,58,8,36,40,100,242,0,242, +Tuesday,12/06/2011 21:00,0,60,4,34,38,92,226,0,226, +Tuesday,12/06/2011 22:00,0,88,6,20,34,100,246,0,246, +Tuesday,12/06/2011 23:00,0,88,6,10,34,100,238,0,238, +Wednesday,12/07/2011 00:00,0,118,4,10,36,100,268,0,268, +Wednesday,12/07/2011 01:00,0,118,4,8,32,100,262,0,262, +Wednesday,12/07/2011 02:00,0,176,4,6,36,92,312,0,312, +Wednesday,12/07/2011 03:00,0,176,4,6,34,100,322,0,322, +Wednesday,12/07/2011 04:00,0,204,6,6,34,100,352,0,352, +Wednesday,12/07/2011 05:00,0,264,6,8,34,100,412,0,412, +Wednesday,12/07/2011 06:00,0,264,8,8,36,100,414,0,414, +Wednesday,12/07/2011 07:00,0,380,22,28,40,92,562,0,562, +Wednesday,12/07/2011 08:00,0,352,24,38,50,100,562,-2,560, +Wednesday,12/07/2011 09:00,0,206,26,38,64,100,432,-12,420, +Wednesday,12/07/2011 10:00,0,176,26,36,64,100,402,-24,378, +Wednesday,12/07/2011 11:00,0,88,28,36,68,100,320,-36,284, +Wednesday,12/07/2011 12:00,0,58,30,38,70,100,296,-42,254, +Wednesday,12/07/2011 13:00,0,60,36,38,68,100,300,-42,258, +Wednesday,12/07/2011 14:00,0,58,32,38,66,100,294,-36,258, +Wednesday,12/07/2011 15:00,0,60,32,38,60,92,282,-24,258, +Wednesday,12/07/2011 16:00,0,58,30,52,58,100,300,-10,290, +Wednesday,12/07/2011 17:00,0,58,30,60,52,100,300,0,300, +Wednesday,12/07/2011 18:00,0,88,30,62,46,100,326,0,326, +Wednesday,12/07/2011 19:00,0,30,8,50,38,100,224,0,224, +Wednesday,12/07/2011 20:00,0,30,4,38,40,100,214,0,214, +Wednesday,12/07/2011 21:00,0,58,6,40,40,100,246,0,246, +Wednesday,12/07/2011 22:00,0,60,4,30,34,92,218,0,218, +Wednesday,12/07/2011 23:00,0,30,4,18,34,100,186,0,186, +Thursday,12/08/2011 00:00,0,118,6,8,34,100,264,0,264, +Thursday,12/08/2011 01:00,0,146,6,6,36,100,292,0,292, +Thursday,12/08/2011 02:00,0,204,4,4,36,100,348,0,348, +Thursday,12/08/2011 03:00,4,176,6,8,34,100,328,0,328, +Thursday,12/08/2011 04:00,0,204,6,6,36,100,352,0,352, +Thursday,12/08/2011 05:00,0,234,6,8,34,100,382,0,382, +Thursday,12/08/2011 06:00,0,234,8,10,36,100,388,0,388, +Thursday,12/08/2011 07:00,0,410,22,26,44,92,594,0,594, +Thursday,12/08/2011 08:00,0,352,26,46,48,100,570,0,570, +Thursday,12/08/2011 09:00,0,292,28,58,64,100,542,-2,540, +Thursday,12/08/2011 10:00,0,234,26,50,66,100,476,-16,460, +Thursday,12/08/2011 11:00,0,146,32,40,70,100,390,-38,352, +Thursday,12/08/2011 12:00,0,88,30,40,70,100,326,-44,282, +Thursday,12/08/2011 13:00,0,88,30,36,66,100,322,-46,276, +Thursday,12/08/2011 14:00,0,58,30,40,64,92,284,-42,242, +Thursday,12/08/2011 15:00,0,88,30,42,64,100,326,-28,298, +Thursday,12/08/2011 16:00,0,88,32,50,60,100,330,-12,318, +Thursday,12/08/2011 17:00,0,118,30,60,50,100,358,0,358, +Thursday,12/08/2011 18:00,0,116,28,62,40,100,346,0,346, +Thursday,12/08/2011 19:00,0,60,8,48,40,100,254,0,254, +Thursday,12/08/2011 20:00,0,88,2,46,40,100,276,0,276, +Thursday,12/08/2011 21:00,0,58,4,46,38,100,244,0,244, +Thursday,12/08/2011 22:00,0,88,4,34,36,92,254,0,254, +Thursday,12/08/2011 23:00,0,204,2,22,36,100,366,0,366, +Friday,12/09/2011 00:00,0,234,2,12,32,100,382,0,382, +Friday,12/09/2011 01:00,0,234,4,6,36,100,380,0,380, +Friday,12/09/2011 02:00,0,264,4,8,36,100,412,0,412, +Friday,12/09/2011 03:00,0,234,4,6,34,100,380,0,380, +Friday,12/09/2011 04:00,0,264,2,6,34,100,406,0,406, +Friday,12/09/2011 05:00,0,264,4,8,34,92,402,0,402, +Friday,12/09/2011 06:00,0,352,10,10,38,100,510,0,510, +Friday,12/09/2011 07:00,0,556,22,20,40,100,740,0,740, +Friday,12/09/2011 08:00,0,528,28,38,48,100,740,0,740, +Friday,12/09/2011 09:00,0,322,28,38,58,100,546,-18,528, +Friday,12/09/2011 10:00,0,204,26,36,64,100,430,-64,366, +Friday,12/09/2011 11:00,0,148,28,36,60,100,370,-60,310, +Friday,12/09/2011 12:00,0,118,28,34,62,100,342,-54,288, +Friday,12/09/2011 13:00,0,88,28,34,64,92,304,-56,248, +Friday,12/09/2011 14:00,0,60,30,36,56,100,280,-46,234, +Friday,12/09/2011 15:00,0,88,30,34,58,100,310,-30,280, +Friday,12/09/2011 16:00,0,60,28,46,54,100,288,-12,276, +Friday,12/09/2011 17:00,0,88,30,56,48,100,322,0,322, +Friday,12/09/2011 18:00,0,116,30,56,40,100,342,0,342, +Friday,12/09/2011 19:00,0,88,6,54,38,100,286,0,286, +Friday,12/09/2011 20:00,0,60,4,40,38,100,242,0,242, +Friday,12/09/2011 21:00,0,58,4,38,38,92,228,0,228, +Friday,12/09/2011 22:00,0,88,6,28,34,100,254,0,254, +Friday,12/09/2011 23:00,0,204,2,10,32,100,352,0,352, +Saturday,12/10/2011 00:00,0,234,4,10,34,100,382,0,382, +Saturday,12/10/2011 01:00,0,234,4,8,34,100,380,0,380, +Saturday,12/10/2011 02:00,0,264,2,8,34,100,408,0,408, +Saturday,12/10/2011 03:00,0,234,4,8,34,92,372,0,372, +Saturday,12/10/2011 04:00,0,264,4,8,30,100,406,0,406, +Saturday,12/10/2011 05:00,0,292,2,8,36,100,438,0,438, +Saturday,12/10/2011 06:00,0,264,4,6,34,100,408,0,408, +Saturday,12/10/2011 07:00,0,294,4,14,30,100,442,0,442, +Saturday,12/10/2011 08:00,0,264,4,14,34,92,408,-4,404, +Saturday,12/10/2011 09:00,0,118,4,10,34,92,256,-24,232, +Saturday,12/10/2011 10:00,0,58,4,10,36,100,206,-38,168, +Saturday,12/10/2011 11:00,0,88,4,8,30,92,222,-52,170, +Saturday,12/10/2011 12:00,0,0,2,8,32,100,142,-60,82, +Saturday,12/10/2011 13:00,0,30,4,8,36,92,168,-56,112, +Saturday,12/10/2011 14:00,0,0,2,8,32,100,142,-50,92, +Saturday,12/10/2011 15:00,0,30,4,8,34,100,176,-36,140, +Saturday,12/10/2011 16:00,0,0,4,14,34,100,152,-14,138, +Saturday,12/10/2011 17:00,0,30,4,16,32,100,182,0,182, +Saturday,12/10/2011 18:00,0,58,2,16,34,100,210,0,210, +Saturday,12/10/2011 19:00,0,58,4,16,34,92,202,0,202, +Saturday,12/10/2011 20:00,0,60,4,12,32,100,206,0,206, +Saturday,12/10/2011 21:00,0,176,4,12,30,100,322,0,322, +Saturday,12/10/2011 22:00,0,176,4,12,36,100,328,0,328, +Saturday,12/10/2011 23:00,0,204,2,10,32,100,348,0,348, +Sunday,12/11/2011 00:00,0,226,6,12,34,100,378,0,378, +Sunday,12/11/2011 01:00,0,244,2,12,32,100,390,0,390, +Sunday,12/11/2011 02:00,0,234,4,8,30,92,370,0,370, +Sunday,12/11/2011 03:00,0,234,4,10,36,100,384,0,384, +Sunday,12/11/2011 04:00,0,264,2,10,30,100,408,0,408, +Sunday,12/11/2011 05:00,0,204,4,10,32,100,350,0,350, +Sunday,12/11/2011 06:00,0,234,4,10,34,100,382,0,382, +Sunday,12/11/2011 07:00,0,234,4,8,32,100,380,0,380, +Sunday,12/11/2011 08:00,0,206,4,10,34,100,352,-6,346, +Sunday,12/11/2011 09:00,0,118,4,10,32,92,254,-28,226, +Sunday,12/11/2011 10:00,0,58,4,6,32,100,200,-48,152, +Sunday,12/11/2011 11:00,0,30,4,8,34,100,174,-64,110, +Sunday,12/11/2011 12:00,0,0,2,6,34,100,142,-78,64, +Sunday,12/11/2011 13:00,0,0,4,6,32,100,142,-84,58, +Sunday,12/11/2011 14:00,0,30,4,6,34,92,164,-76,88, +Sunday,12/11/2011 15:00,0,0,2,6,34,100,142,-48,94, +Sunday,12/11/2011 16:00,0,30,2,8,32,100,172,-20,152, +Sunday,12/11/2011 17:00,0,0,2,12,32,100,148,0,148, +Sunday,12/11/2011 18:00,0,58,4,12,36,100,212,0,212, +Sunday,12/11/2011 19:00,0,30,2,10,30,100,172,0,172, +Sunday,12/11/2011 20:00,0,30,2,12,32,92,168,0,168, +Sunday,12/11/2011 21:00,0,58,4,12,34,100,208,0,208, +Sunday,12/11/2011 22:00,0,146,2,10,32,100,292,0,292, +Sunday,12/11/2011 23:00,0,176,2,8,30,100,318,0,318, +Monday,12/12/2011 00:00,0,204,4,10,34,100,352,0,352, +Monday,12/12/2011 01:00,0,234,2,8,32,100,378,0,378, +Monday,12/12/2011 02:00,0,206,2,6,34,92,340,0,340, +Monday,12/12/2011 03:00,0,204,4,6,34,100,350,0,350, +Monday,12/12/2011 04:00,0,234,4,4,32,100,374,0,374, +Monday,12/12/2011 05:00,0,264,4,10,34,100,412,0,412, +Monday,12/12/2011 06:00,0,264,8,10,34,100,416,0,416, +Monday,12/12/2011 07:00,0,528,16,28,44,100,714,0,714, +Monday,12/12/2011 08:00,0,410,20,46,50,100,626,0,626, +Monday,12/12/2011 09:00,0,322,26,52,64,100,564,-16,548, +Monday,12/12/2011 10:00,0,206,28,40,70,92,434,-64,370, +Monday,12/12/2011 11:00,0,118,30,38,70,100,356,-78,278, +Monday,12/12/2011 12:00,0,88,30,38,76,100,332,-72,260, +Monday,12/12/2011 13:00,0,88,32,40,70,100,330,-74,256, +Monday,12/12/2011 14:00,0,60,32,40,70,100,302,-70,232, +Monday,12/12/2011 15:00,0,58,30,48,66,100,302,-40,262, +Monday,12/12/2011 16:00,0,88,30,62,60,92,330,-8,322, +Monday,12/12/2011 17:00,0,88,32,62,52,100,334,0,334, +Monday,12/12/2011 18:00,0,118,30,62,48,100,356,0,356, +Monday,12/12/2011 19:00,0,60,6,50,40,100,254,0,254, +Monday,12/12/2011 20:00,0,58,4,40,38,92,232,0,232, +Monday,12/12/2011 21:00,0,60,0,44,40,100,244,0,244, +Monday,12/12/2011 22:00,0,118,6,28,36,100,286,0,286, +Monday,12/12/2011 23:00,0,146,4,18,36,100,304,0,304, +Tuesday,12/13/2011 0:00,0,204,2,10,34,92,342,0,342, +Tuesday,12/13/2011 1:00,0,264,4,8,38,100,412,0,412, +Tuesday,12/13/2011 2:00,0,264,4,10,32,100,412,0,412, +Tuesday,12/13/2011 3:00,0,294,2,8,36,100,440,0,440, +Tuesday,12/13/2011 4:00,0,292,4,10,36,92,434,0,434, +Tuesday,12/13/2011 5:00,0,234,2,10,34,100,382,0,382, +Tuesday,12/13/2011 6:00,0,234,10,16,38,100,398,0,398, +Tuesday,12/13/2011 7:00,0,528,26,28,44,100,724,0,724, +Tuesday,12/13/2011 8:00,0,470,26,34,50,100,680,-8,672, +Tuesday,12/13/2011 9:00,0,322,30,40,64,92,546,-48,498, +Tuesday,12/13/2011 10:00,0,176,30,40,70,100,414,-82,332, +Tuesday,12/13/2011 11:00,0,118,30,38,72,100,356,-110,246, +Tuesday,12/13/2011 12:00,0,88,30,40,70,100,330,-122,208, +Tuesday,12/13/2011 13:00,0,60,32,34,70,92,286,-120,166, +Tuesday,12/13/2011 14:00,0,58,32,38,66,100,294,-108,186, +Tuesday,12/13/2011 15:00,0,30,32,40,64,100,266,-74,192, +Tuesday,12/13/2011 16:00,0,60,32,48,62,100,300,-28,272, +Tuesday,12/13/2011 17:00,0,88,30,58,50,100,326,-2,324, +Tuesday,12/13/2011 18:00,0,60,30,56,46,92,282,0,282, +Tuesday,12/13/2011 19:00,0,30,6,50,40,100,222,0,222, +Tuesday,12/13/2011 20:00,0,60,4,38,38,100,238,0,238, +Tuesday,12/13/2011 21:00,0,58,6,38,40,100,242,0,242, +Tuesday,12/13/2011 22:00,0,30,4,28,38,100,198,0,198, +Tuesday,12/13/2011 23:00,0,60,4,18,36,92,206,0,206, +Wednesday,12/14/2011 0:00,0,88,2,10,36,100,234,0,234, +Wednesday,12/14/2011 1:00,0,148,4,8,38,100,296,0,296, +Wednesday,12/14/2011 2:00,0,204,4,8,32,92,340,0,340, +Wednesday,12/14/2011 3:00,0,206,2,10,36,100,352,0,352, +Wednesday,12/14/2011 4:00,0,176,4,6,38,100,322,0,322, +Wednesday,12/14/2011 5:00,0,234,2,8,36,100,382,0,382, +Wednesday,12/14/2011 6:00,0,206,8,14,36,100,362,0,362, +Wednesday,12/14/2011 7:00,0,350,24,28,48,92,542,0,542, +Wednesday,12/14/2011 8:00,0,294,24,40,52,100,510,-4,506, +Wednesday,12/14/2011 9:00,0,264,30,48,66,100,508,-32,476, +Wednesday,12/14/2011 10:00,0,118,30,46,68,100,362,-62,300, +Wednesday,12/14/2011 11:00,0,118,30,40,70,100,356,-132,224, +Wednesday,12/14/2011 12:00,0,58,30,40,72,92,292,-166,126, +Wednesday,12/14/2011 13:00,0,58,34,40,74,100,306,-160,146, +Wednesday,12/14/2011 14:00,0,0,34,40,70,100,242,-152,90, +Wednesday,12/14/2011 15:00,0,60,32,40,66,100,298,-110,188, +Wednesday,12/14/2011 16:00,0,30,30,50,66,100,274,-50,224, +Wednesday,12/14/2011 17:00,0,60,34,66,60,100,318,-4,314, +Wednesday,12/14/2011 18:00,0,30,28,54,40,92,242,0,242, +Wednesday,12/14/2011 19:00,0,58,8,48,40,100,254,0,254, +Wednesday,12/14/2011 20:00,0,0,4,40,40,92,176,0,176, +Wednesday,12/14/2011 21:00,0,0,4,42,40,100,188,0,188, +Wednesday,12/14/2011 22:00,0,30,4,28,36,100,198,0,198, +Wednesday,12/14/2011 23:00,0,30,2,12,34,100,180,0,180, +Thursday,12/15/2011 0:00,0,146,2,8,36,100,292,0,292, +Thursday,12/15/2011 1:00,0,146,4,8,34,92,282,0,282, +Thursday,12/15/2011 2:00,0,206,4,10,38,100,358,0,358, +Thursday,12/15/2011 3:00,0,204,2,8,36,100,352,0,352, +Thursday,12/15/2011 4:00,0,206,4,8,36,100,352,0,352, +Thursday,12/15/2011 5:00,0,234,4,10,36,100,384,0,384, +Thursday,12/15/2011 6:00,0,204,8,12,38,92,354,0,354, +Thursday,12/15/2011 7:00,0,410,24,30,44,100,610,0,610, +Thursday,12/15/2011 8:00,0,350,26,42,54,100,572,-14,558, +Thursday,12/15/2011 9:00,0,234,30,44,62,100,472,-80,392, +Thursday,12/15/2011 10:00,0,146,30,42,70,92,382,-142,240, +Thursday,12/15/2011 11:00,0,118,30,42,70,100,360,-180,180, +Thursday,12/15/2011 12:00,0,60,30,40,68,100,296,-206,90, +Thursday,12/15/2011 13:00,0,30,34,38,72,100,272,-192,80, +Thursday,12/15/2011 14:00,0,58,32,40,66,100,296,-170,126, +Thursday,12/15/2011 15:00,0,30,32,42,64,92,260,-120,140, +Thursday,12/15/2011 16:00,0,58,30,48,62,100,298,-52,246, +Thursday,12/15/2011 17:00,0,60,30,64,50,100,304,0,304, +Thursday,12/15/2011 18:00,0,88,30,62,44,92,316,0,316, +Thursday,12/15/2011 19:00,0,30,8,46,42,100,226,0,226, +Thursday,12/15/2011 20:00,0,58,4,38,38,100,238,0,238, +Thursday,12/15/2011 21:00,0,88,4,34,40,92,256,0,256, +Thursday,12/15/2011 22:00,0,58,6,24,40,100,228,0,228, +Thursday,12/15/2011 23:00,0,60,2,12,36,100,210,0,210, +Friday,12/16/2011 0:00,0,176,4,10,36,100,326,0,326, +Friday,12/16/2011 1:00,0,176,4,8,34,92,312,0,312, +Friday,12/16/2011 2:00,0,234,0,8,36,100,380,0,380, +Friday,12/16/2011 3:00,0,234,6,8,38,100,386,0,386, +Friday,12/16/2011 4:00,0,264,2,8,36,92,400,0,400, +Friday,12/16/2011 5:00,0,234,4,8,36,100,382,0,382, +Friday,12/16/2011 6:00,0,234,8,10,36,100,390,0,390, +Friday,12/16/2011 7:00,0,468,24,22,44,100,660,0,660, +Friday,12/16/2011 8:00,0,380,26,32,50,92,580,-14,566, +Friday,12/16/2011 9:00,0,294,28,40,52,100,512,-82,430, +Friday,12/16/2011 10:00,0,146,28,36,68,100,378,-156,222, +Friday,12/16/2011 11:00,0,88,26,36,62,100,312,-196,116, +Friday,12/16/2011 12:00,0,58,28,36,64,92,278,-218,60, +Friday,12/16/2011 13:00,0,58,30,34,60,100,282,-210,72, +Friday,12/16/2011 14:00,0,30,30,34,58,100,252,-180,72, +Friday,12/16/2011 15:00,0,58,32,32,52,100,276,-126,150, +Friday,12/16/2011 16:00,0,30,28,42,58,92,248,-56,192, +Friday,12/16/2011 17:00,0,60,28,52,46,100,284,-2,282, +Friday,12/16/2011 18:00,0,88,28,56,40,92,304,0,304, +Friday,12/16/2011 19:00,0,30,8,44,38,100,220,0,220, +Friday,12/16/2011 20:00,0,58,4,34,34,100,232,0,232, +Friday,12/16/2011 21:00,0,88,2,36,38,100,264,0,264, +Friday,12/16/2011 22:00,0,58,2,28,38,92,216,0,216, +Friday,12/16/2011 23:00,0,148,2,20,30,100,302,0,302, +Saturday,12/17/2011 0:00,0,204,6,12,34,100,356,0,356, +Saturday,12/17/2011 1:00,0,264,2,10,32,92,398,0,398, +Saturday,12/17/2011 2:00,0,206,4,8,36,100,354,0,354, +Saturday,12/17/2011 3:00,0,234,2,8,32,100,378,0,378, +Saturday,12/17/2011 4:00,0,264,4,8,32,100,408,0,408, +Saturday,12/17/2011 5:00,0,264,4,10,34,92,402,0,402, +Saturday,12/17/2011 6:00,0,234,4,10,32,100,382,0,382, +Saturday,12/17/2011 7:00,0,234,4,16,36,100,388,0,388, +Saturday,12/17/2011 8:00,0,176,4,16,32,92,320,-16,304, +Saturday,12/17/2011 9:00,0,118,4,12,36,100,270,-90,180, +Saturday,12/17/2011 10:00,0,88,4,10,34,100,234,-158,76, +Saturday,12/17/2011 11:00,0,30,2,10,34,100,176,-198,-22, +Saturday,12/17/2011 12:00,0,30,4,10,34,92,168,-216,-48, +Saturday,12/17/2011 13:00,0,0,6,10,36,100,152,-212,-60, +Saturday,12/17/2011 14:00,0,30,2,12,32,100,176,-184,-8, +Saturday,12/17/2011 15:00,0,60,2,8,34,92,194,-132,62, +Saturday,12/17/2011 16:00,0,30,4,10,32,100,176,-60,116, +Saturday,12/17/2011 17:00,0,0,4,12,34,100,152,-2,150, +Saturday,12/17/2011 18:00,0,58,4,12,32,92,198,0,198, +Saturday,12/17/2011 19:00,0,60,2,14,32,100,208,0,208, +Saturday,12/17/2011 20:00,0,58,4,14,32,100,210,0,210, +Saturday,12/17/2011 21:00,0,176,4,12,36,92,320,0,320, +Saturday,12/17/2011 22:00,0,234,4,12,32,100,382,0,382, +Saturday,12/17/2011 23:00,0,234,4,12,32,100,382,0,382, +Sunday,12/18/2011 0:00,0,212,4,14,36,100,364,0,364, +Sunday,12/18/2011 1:00,0,198,4,12,32,92,336,0,336, +Sunday,12/18/2011 2:00,0,206,2,8,32,100,348,0,348, +Sunday,12/18/2011 3:00,0,206,4,10,34,100,354,0,354, +Sunday,12/18/2011 4:00,0,204,4,8,34,92,342,0,342, +Sunday,12/18/2011 5:00,0,206,2,10,32,100,350,0,350, +Sunday,12/18/2011 6:00,0,206,4,10,34,100,354,0,354, +Sunday,12/18/2011 7:00,0,234,4,10,34,92,374,0,374, +Sunday,12/18/2011 8:00,0,176,2,10,30,100,318,-18,300, +Sunday,12/18/2011 9:00,0,88,4,8,36,100,236,-88,148, +Sunday,12/18/2011 10:00,0,30,4,6,32,92,162,-150,12, +Sunday,12/18/2011 11:00,0,30,4,8,34,100,174,-214,-40, +Sunday,12/18/2011 12:00,0,0,6,8,32,100,146,-234,-88, +Sunday,12/18/2011 13:00,0,0,4,8,32,92,136,-240,-104, +Sunday,12/18/2011 14:00,0,0,6,8,34,100,148,-210,-62, +Sunday,12/18/2011 15:00,0,0,4,6,32,100,142,-150,-8, +Sunday,12/18/2011 16:00,0,0,4,8,34,92,138,-62,76, +Sunday,12/18/2011 17:00,0,58,6,10,34,100,208,-2,206, +Sunday,12/18/2011 18:00,0,30,2,12,34,100,180,0,180, +Sunday,12/18/2011 19:00,0,0,4,16,34,100,152,0,152, +Sunday,12/18/2011 20:00,0,30,4,18,30,92,172,0,172, +Sunday,12/18/2011 21:00,0,0,2,12,34,100,150,0,150, +Sunday,12/18/2011 22:00,0,58,4,12,32,100,208,0,208, +Sunday,12/18/2011 23:00,0,0,4,12,34,92,142,0,142, +Monday,12/19/2011 0:00,0,118,2,12,32,100,264,0,264, +Monday,12/19/2011 1:00,0,146,4,10,34,100,296,0,296, +Monday,12/19/2011 2:00,0,204,4,10,32,92,340,0,340, +Monday,12/19/2011 3:00,4,176,2,12,34,100,330,0,330, +Monday,12/19/2011 4:00,0,204,4,10,34,100,352,0,352, +Monday,12/19/2011 5:00,0,234,4,8,32,92,372,0,372, +Monday,12/19/2011 6:00,0,234,10,14,34,100,392,0,392, +Monday,12/19/2011 7:00,0,410,22,28,42,100,602,0,602, +Monday,12/19/2011 8:00,0,352,28,40,48,92,560,0,560, +Monday,12/19/2011 9:00,0,292,26,60,60,100,540,-10,530, +Monday,12/19/2011 10:00,0,234,28,62,64,100,490,-24,466, +Monday,12/19/2011 11:00,0,146,28,64,62,100,402,-24,378, +Monday,12/19/2011 12:00,0,88,28,66,70,92,342,-18,324, +Monday,12/19/2011 13:00,0,88,30,68,62,100,348,-8,340, +Monday,12/19/2011 14:00,0,58,28,68,64,100,318,0,318, +Monday,12/19/2011 15:00,0,88,28,72,62,100,352,0,352, +Monday,12/19/2011 16:00,0,88,30,70,58,100,346,0,346, +Monday,12/19/2011 17:00,0,118,30,68,50,92,356,0,356, +Monday,12/19/2011 18:00,0,116,28,68,42,100,354,0,354, +Monday,12/19/2011 19:00,0,60,8,48,38,100,252,0,252, +Monday,12/19/2011 20:00,0,88,4,34,38,100,264,0,264, +Monday,12/19/2011 21:00,0,58,2,34,38,92,224,0,224, +Monday,12/19/2011 22:00,0,88,4,14,36,100,242,0,242, +Monday,12/19/2011 23:00,0,204,4,10,34,100,352,0,352, +Tuesday,12/20/2011 0:00,0,204,4,8,36,100,352,0,352, +Tuesday,12/20/2011 1:00,0,264,2,6,32,92,396,0,396, +Tuesday,12/20/2011 2:00,0,264,4,4,34,100,406,0,406, +Tuesday,12/20/2011 3:00,0,294,6,4,32,100,436,0,436, +Tuesday,12/20/2011 4:00,0,292,4,6,36,100,438,0,438, +Tuesday,12/20/2011 5:00,0,234,4,10,32,92,370,0,370, +Tuesday,12/20/2011 6:00,0,234,8,10,36,100,388,0,388, +Tuesday,12/20/2011 7:00,0,528,26,24,40,100,718,0,718, +Tuesday,12/20/2011 8:00,0,470,26,40,48,92,674,0,674, +Tuesday,12/20/2011 9:00,0,322,28,40,56,100,544,-10,534, +Tuesday,12/20/2011 10:00,0,176,28,38,62,100,404,-46,358, +Tuesday,12/20/2011 11:00,0,118,28,36,66,100,348,-100,248, +Tuesday,12/20/2011 12:00,0,88,28,36,62,92,306,-218,88, +Tuesday,12/20/2011 13:00,0,60,30,36,66,100,292,-490,-198, +Tuesday,12/20/2011 14:00,0,58,32,36,60,100,286,-546,-260, +Tuesday,12/20/2011 15:00,0,30,30,40,58,100,256,-372,-116, +Tuesday,12/20/2011 16:00,0,60,30,50,56,100,294,-154,140, +Tuesday,12/20/2011 17:00,0,88,30,60,50,92,322,0,322, +Tuesday,12/20/2011 18:00,0,60,30,58,44,100,292,0,292, +Tuesday,12/20/2011 19:00,0,30,8,50,40,100,226,0,226, +Tuesday,12/20/2011 20:00,0,60,2,40,38,100,240,0,240, +Tuesday,12/20/2011 21:00,0,58,4,40,38,92,230,0,230, +Tuesday,12/20/2011 22:00,0,30,4,28,36,100,198,0,198, +Tuesday,12/20/2011 23:00,0,60,2,14,34,100,208,0,208, +Wednesday,12/21/2011 0:00,0,176,4,10,36,100,326,0,326, +Wednesday,12/21/2011 1:00,0,176,4,4,34,92,310,0,310, +Wednesday,12/21/2011 2:00,0,234,4,6,34,100,378,0,378, +Wednesday,12/21/2011 3:00,0,234,2,6,38,100,380,0,380, +Wednesday,12/21/2011 4:00,0,264,4,6,34,100,406,0,406, +Wednesday,12/21/2011 5:00,0,234,2,8,36,92,372,0,372, +Wednesday,12/21/2011 6:00,0,234,10,8,34,100,386,0,386, +Wednesday,12/21/2011 7:00,0,468,22,24,44,100,660,0,660, +Wednesday,12/21/2011 8:00,0,380,24,34,50,92,578,-46,532, +Wednesday,12/21/2011 9:00,0,294,28,36,52,100,510,-236,274, +Wednesday,12/21/2011 10:00,0,146,28,36,62,100,374,-390,-16, +Wednesday,12/21/2011 11:00,0,88,30,40,64,100,322,-328,-6, +Wednesday,12/21/2011 12:00,0,58,28,42,62,92,282,-290,-8, +Wednesday,12/21/2011 13:00,0,58,32,42,64,100,296,-272,24, +Wednesday,12/21/2011 14:00,0,30,36,48,60,100,274,-172,102, +Wednesday,12/21/2011 15:00,0,58,30,54,60,100,302,-110,192, +Wednesday,12/21/2011 16:00,0,30,30,58,56,92,262,-46,216, +Wednesday,12/21/2011 17:00,0,60,30,60,50,100,298,0,298, +Wednesday,12/21/2011 18:00,0,88,30,62,40,100,322,0,322, +Wednesday,12/21/2011 19:00,0,30,8,50,40,100,226,0,226, +Wednesday,12/21/2011 20:00,0,58,8,36,36,100,238,0,238, +Wednesday,12/21/2011 21:00,0,88,4,36,38,92,256,0,256, +Wednesday,12/21/2011 22:00,0,58,4,32,34,100,228,0,228, +Wednesday,12/21/2011 23:00,0,148,6,10,34,100,298,0,298, +Thursday,12/22/2011 0:00,0,88,4,6,34,100,232,0,232, +Thursday,12/22/2011 1:00,0,146,4,4,30,100,286,0,286, +Thursday,12/22/2011 2:00,0,176,4,6,36,100,322,0,322, +Thursday,12/22/2011 3:00,0,176,6,6,34,100,322,0,322, +Thursday,12/22/2011 4:00,0,234,6,8,32,92,372,0,372, +Thursday,12/22/2011 5:00,0,234,4,6,36,100,382,0,382, +Thursday,12/22/2011 6:00,0,264,8,8,36,100,416,0,416, +Thursday,12/22/2011 7:00,0,264,24,8,32,100,428,0,428, +Thursday,12/22/2011 8:00,0,264,26,8,32,100,432,0,432, +Thursday,12/22/2011 9:00,0,264,24,14,36,92,432,0,432, +Thursday,12/22/2011 10:00,0,234,22,10,36,100,402,0,402, +Thursday,12/22/2011 11:00,4,234,24,10,34,100,408,0,408, +Thursday,12/22/2011 12:00,0,176,26,10,36,100,348,0,348, +Thursday,12/22/2011 13:00,0,176,24,10,34,92,334,-10,324, +Thursday,12/22/2011 14:00,0,146,24,8,34,100,312,0,312, +Thursday,12/22/2011 15:00,4,118,24,10,32,100,288,0,288, +Thursday,12/22/2011 16:00,0,118,22,10,36,100,286,0,286, +Thursday,12/22/2011 17:00,0,176,24,12,34,92,336,0,336, +Thursday,12/22/2011 18:00,0,234,24,16,32,100,408,0,408, +Thursday,12/22/2011 19:00,4,292,6,12,32,100,446,0,446, +Thursday,12/22/2011 20:00,0,410,8,12,36,100,566,0,566, +Thursday,12/22/2011 21:00,0,350,4,8,36,100,498,0,498, +Thursday,12/22/2011 22:00,0,440,8,6,30,92,574,0,574, +Thursday,12/22/2011 23:00,0,470,4,6,34,100,614,0,614, +Friday,12/23/2011 0:00,0,204,6,6,34,100,350,0,350, +Friday,12/23/2011 1:00,0,264,6,6,34,100,410,0,410, +Friday,12/23/2011 2:00,0,264,4,6,34,92,398,0,398, +Friday,12/23/2011 3:00,0,294,6,6,32,100,438,0,438, +Friday,12/23/2011 4:00,0,292,4,4,38,100,440,0,440, +Friday,12/23/2011 5:00,0,234,6,6,32,100,378,0,378, +Friday,12/23/2011 6:00,0,234,8,8,32,92,374,0,374, +Friday,12/23/2011 7:00,0,528,24,20,40,100,712,0,712, +Friday,12/23/2011 8:00,0,470,26,36,44,100,674,0,674, +Friday,12/23/2011 9:00,0,322,26,36,48,100,532,-10,522, +Friday,12/23/2011 10:00,0,176,26,36,48,92,376,-10,366, +Friday,12/23/2011 11:00,0,118,26,32,52,100,328,-36,292, +Friday,12/23/2011 12:00,0,88,28,30,50,92,284,-36,248, +Friday,12/23/2011 13:00,0,60,26,30,52,100,266,-46,220, +Friday,12/23/2011 14:00,0,58,28,30,44,100,260,-36,224, +Friday,12/23/2011 15:00,0,30,30,26,40,92,216,-36,180, +Friday,12/23/2011 16:00,0,60,26,30,36,100,252,-10,242, +Friday,12/23/2011 17:00,0,88,28,40,32,92,280,0,280, +Friday,12/23/2011 18:00,0,60,26,48,36,100,270,0,270, +Friday,12/23/2011 19:00,0,30,8,46,36,92,210,0,210, +Friday,12/23/2011 20:00,0,60,2,30,34,100,226,0,226, +Friday,12/23/2011 21:00,0,58,4,10,30,100,202,0,202, +Friday,12/23/2011 22:00,0,30,2,8,34,92,164,0,164, +Friday,12/23/2011 23:00,0,60,4,4,30,100,198,0,198, +Saturday,12/24/2011 0:00,0,88,2,6,32,100,230,0,230, +Saturday,12/24/2011 1:00,0,148,2,4,30,92,274,0,274, +Saturday,12/24/2011 2:00,0,204,6,6,30,100,346,0,346, +Saturday,12/24/2011 3:00,0,206,4,4,32,92,336,0,336, +Saturday,12/24/2011 4:00,0,176,2,6,32,100,316,0,316, +Saturday,12/24/2011 5:00,0,234,2,6,30,100,374,0,374, +Saturday,12/24/2011 6:00,0,206,4,6,34,92,340,0,340, +Saturday,12/24/2011 7:00,0,350,4,6,34,100,494,0,494, +Saturday,12/24/2011 8:00,0,294,2,6,30,92,422,0,422, +Saturday,12/24/2011 9:00,0,264,4,6,32,100,404,-18,386, +Saturday,12/24/2011 10:00,0,118,4,6,32,100,258,-36,222, +Saturday,12/24/2011 11:00,0,118,4,2,34,92,250,-64,186, +Saturday,12/24/2011 12:00,0,58,2,4,30,100,194,-72,122, +Saturday,12/24/2011 13:00,0,58,4,4,32,100,198,-82,116, +Saturday,12/24/2011 14:00,0,0,4,4,36,92,134,-72,62, +Saturday,12/24/2011 15:00,0,60,2,4,30,100,196,-54,142, +Saturday,12/24/2011 16:00,0,30,2,2,32,92,158,-18,140, +Saturday,12/24/2011 17:00,0,60,4,10,32,100,204,0,204, +Saturday,12/24/2011 18:00,0,30,2,10,34,92,166,0,166, +Saturday,12/24/2011 19:00,0,58,2,10,32,100,202,0,202, +Saturday,12/24/2011 20:00,0,0,4,10,32,100,146,0,146, +Saturday,12/24/2011 21:00,0,0,2,6,32,92,132,0,132, +Saturday,12/24/2011 22:00,0,30,4,10,30,100,172,0,172, +Saturday,12/24/2011 23:00,0,30,4,10,34,92,168,0,168, +Sunday,12/25/2011 0:00,0,118,2,8,32,110,270,0,270, +Sunday,12/25/2011 1:00,0,118,4,6,30,92,248,0,248, +Sunday,12/25/2011 2:00,0,176,2,6,34,92,310,0,310, +Sunday,12/25/2011 3:00,0,176,2,6,30,100,316,0,316, +Sunday,12/25/2011 4:00,0,204,6,6,32,100,348,0,348, +Sunday,12/25/2011 5:00,0,264,4,6,30,92,394,0,394, +Sunday,12/25/2011 6:00,0,264,4,8,32,100,406,0,406, +Sunday,12/25/2011 7:00,0,380,4,8,34,100,528,0,528, +Sunday,12/25/2011 8:00,0,352,4,6,30,92,484,-10,474, +Sunday,12/25/2011 9:00,0,206,2,4,30,100,342,-36,306, +Sunday,12/25/2011 10:00,0,176,2,4,32,92,306,-72,234, +Sunday,12/25/2011 11:00,0,88,4,4,32,100,228,-100,128, +Sunday,12/25/2011 12:00,0,58,4,2,34,100,200,-118,82, +Sunday,12/25/2011 13:00,0,60,2,4,30,92,188,-128,60, +Sunday,12/25/2011 14:00,0,58,2,2,30,100,194,-110,84, +Sunday,12/25/2011 15:00,0,60,4,4,34,92,192,-82,110, +Sunday,12/25/2011 16:00,0,58,2,4,32,100,196,-36,160, +Sunday,12/25/2011 17:00,0,58,2,6,30,92,188,0,188, +Sunday,12/25/2011 18:00,0,88,2,6,34,100,230,0,230, +Sunday,12/25/2011 19:00,0,30,4,8,32,92,166,0,166, +Sunday,12/25/2011 20:00,0,30,2,6,30,100,170,0,170, +Sunday,12/25/2011 21:00,0,58,4,8,32,100,202,0,202, +Sunday,12/25/2011 22:00,0,60,2,6,32,92,192,0,192, +Sunday,12/25/2011 23:00,0,30,2,4,32,100,170,0,170, +Monday,12/26/2011 0:00,0,30,4,6,32,92,162,0,162, +Monday,12/26/2011 1:00,0,118,4,4,32,100,258,0,258, +Monday,12/26/2011 2:00,0,118,2,6,30,100,256,0,256, +Monday,12/26/2011 3:00,0,118,6,4,34,92,252,0,252, +Monday,12/26/2011 4:00,0,146,2,6,32,100,286,0,286, +Monday,12/26/2011 5:00,0,176,4,6,34,100,320,0,320, +Monday,12/26/2011 6:00,0,176,8,6,30,92,312,0,312, +Monday,12/26/2011 7:00,0,498,22,6,32,100,658,0,658, +Monday,12/26/2011 8:00,0,380,24,6,30,92,532,-10,522, +Monday,12/26/2011 9:00,0,234,26,4,32,100,398,-64,334, +Monday,12/26/2011 10:00,0,146,26,4,30,92,296,-90,206, +Monday,12/26/2011 11:00,0,88,26,4,32,100,252,-90,162, +Monday,12/26/2011 12:00,6,30,26,4,34,92,192,-100,92, +Monday,12/26/2011 13:00,4,0,26,6,30,100,164,-54,110, +Monday,12/26/2011 14:00,4,0,26,6,30,92,158,-46,112, +Monday,12/26/2011 15:00,4,0,26,6,34,100,170,-146,24, +Monday,12/26/2011 16:00,4,30,26,4,30,100,194,-64,130, +Monday,12/26/2011 17:00,0,58,26,4,30,92,210,0,210, +Monday,12/26/2011 18:00,0,30,24,8,34,100,194,0,194, +Monday,12/26/2011 19:00,0,30,8,8,30,92,166,0,166, +Monday,12/26/2011 20:00,4,0,2,8,32,100,146,0,146, +Monday,12/26/2011 21:00,0,30,4,8,30,92,162,0,162, +Monday,12/26/2011 22:00,0,0,2,8,32,100,142,0,142, +Monday,12/26/2011 23:00,0,0,4,8,30,100,142,0,142, +Tuesday,12/27/2011 0:00,0,226,4,6,34,92,360,0,360, +Tuesday,12/27/2011 1:00,0,244,4,6,30,100,384,0,384, +Tuesday,12/27/2011 2:00,0,234,4,6,32,92,366,0,366, +Tuesday,12/27/2011 3:00,0,234,4,6,32,100,376,0,376, +Tuesday,12/27/2011 4:00,0,264,4,8,32,100,406,0,406, +Tuesday,12/27/2011 5:00,0,204,4,6,34,92,340,0,340, +Tuesday,12/27/2011 6:00,0,234,10,8,30,100,382,0,382, +Tuesday,12/27/2011 7:00,0,234,22,20,36,92,404,0,404, +Tuesday,12/27/2011 8:00,0,206,26,30,40,100,402,-18,384, +Tuesday,12/27/2011 9:00,0,118,28,36,44,100,324,-36,288, +Tuesday,12/27/2011 10:00,0,58,26,32,50,92,258,-136,122, +Tuesday,12/27/2011 11:00,0,30,28,30,50,100,236,-236,0, +Tuesday,12/27/2011 12:00,0,0,26,30,54,92,200,-310,-110, +Tuesday,12/27/2011 13:00,0,0,30,32,52,100,214,-254,-40, +Tuesday,12/27/2011 14:00,0,30,30,30,50,100,240,-254,-14, +Tuesday,12/27/2011 15:00,0,0,30,30,48,92,200,-190,10, +Tuesday,12/27/2011 16:00,0,30,30,38,48,100,244,-82,162, +Tuesday,12/27/2011 17:00,0,0,28,54,40,92,214,-10,204, +Tuesday,12/27/2011 18:00,0,58,30,54,42,100,284,0,284, +Tuesday,12/27/2011 19:00,0,30,6,46,36,100,218,0,218, +Tuesday,12/27/2011 20:00,0,30,4,34,32,92,192,0,192, +Tuesday,12/27/2011 21:00,0,58,2,38,38,92,228,0,228, +Tuesday,12/27/2011 22:00,0,146,4,22,36,100,308,0,308, +Tuesday,12/27/2011 23:00,0,176,4,12,32,100,324,0,324, +Wednesday,12/28/2011 0:00,0,58,2,8,34,92,192,0,192, +Wednesday,12/28/2011 1:00,0,146,4,4,34,100,288,0,288, +Wednesday,12/28/2011 2:00,0,206,2,6,34,92,340,0,340, +Wednesday,12/28/2011 3:00,0,234,6,4,34,100,378,0,378, +Wednesday,12/28/2011 4:00,0,234,2,4,34,100,376,0,376, +Wednesday,12/28/2011 5:00,0,264,2,8,36,92,402,0,402, +Wednesday,12/28/2011 6:00,0,322,10,8,34,100,474,0,474, +Wednesday,12/28/2011 7:00,4,558,22,20,36,92,730,0,730, +Wednesday,12/28/2011 8:00,4,556,24,32,44,100,760,-18,742, +Wednesday,12/28/2011 9:00,4,528,26,40,48,92,736,-46,690, +Wednesday,12/28/2011 10:00,4,380,26,46,50,100,608,-36,572, +Wednesday,12/28/2011 11:00,4,294,28,38,52,100,514,-210,304, +Wednesday,12/28/2011 12:00,4,146,28,32,52,92,354,-310,44, +Wednesday,12/28/2011 13:00,0,176,30,32,56,100,394,-354,40, +Wednesday,12/28/2011 14:00,4,88,30,36,50,92,300,-172,128, +Wednesday,12/28/2011 15:00,4,146,28,44,50,100,372,-110,262, +Wednesday,12/28/2011 16:00,4,118,30,50,46,92,336,-54,282, +Wednesday,12/28/2011 17:00,4,88,28,50,44,100,312,-18,294, +Wednesday,12/28/2011 18:00,4,148,30,56,40,100,376,0,376, +Wednesday,12/28/2011 19:00,0,58,6,52,40,92,248,0,248, +Wednesday,12/28/2011 20:00,0,0,2,42,38,100,184,0,184, +Wednesday,12/28/2011 21:00,0,30,4,38,34,92,196,0,196, +Wednesday,12/28/2011 22:00,0,0,4,20,34,100,160,0,160, +Wednesday,12/28/2011 23:00,0,0,2,6,34,100,144,0,144, +Thursday,12/29/2011 0:00,0,60,2,6,32,92,190,0,190, +Thursday,12/29/2011 1:00,0,88,2,6,34,100,232,0,232, +Thursday,12/29/2011 2:00,0,116,4,6,32,100,260,0,260, +Thursday,12/29/2011 3:00,0,148,2,4,34,92,280,0,280, +Thursday,12/29/2011 4:00,0,146,4,6,32,100,288,0,288, +Thursday,12/29/2011 5:00,0,234,2,8,32,100,378,0,378, +Thursday,12/29/2011 6:00,0,176,10,6,34,92,316,0,316, +Thursday,12/29/2011 7:00,4,498,22,20,36,100,680,0,680, +Thursday,12/29/2011 8:00,0,410,26,36,42,100,614,0,614, +Thursday,12/29/2011 9:00,4,292,26,34,46,92,494,-210,284, +Thursday,12/29/2011 10:00,4,176,30,36,50,100,396,-246,150, +Thursday,12/29/2011 11:00,4,204,28,40,52,100,428,-272,156, +Thursday,12/29/2011 12:00,4,148,30,34,54,92,360,-590,-230, +Thursday,12/29/2011 13:00,4,58,30,32,52,100,274,-664,-390, +Thursday,12/29/2011 14:00,4,58,30,34,50,100,276,-510,-234, +Thursday,12/29/2011 15:00,6,0,30,42,50,92,220,-210,10, +Thursday,12/29/2011 16:00,4,88,30,54,48,100,324,-46,278, +Thursday,12/29/2011 17:00,0,60,28,56,46,100,290,-10,280, +Thursday,12/29/2011 18:00,4,176,28,54,40,92,390,0,390, +Thursday,12/29/2011 19:00,0,58,6,40,36,100,242,0,242, +Thursday,12/29/2011 20:00,0,88,4,34,36,92,254,0,254, +Thursday,12/29/2011 21:00,0,88,2,22,32,100,246,0,246, +Thursday,12/29/2011 22:00,0,118,4,18,38,92,268,0,268, +Thursday,12/29/2011 23:00,0,118,2,12,32,100,264,0,264, +Friday,12/30/2011 0:00,0,212,4,10,34,100,358,0,358, +Friday,12/30/2011 1:00,0,198,2,8,30,92,330,0,330, +Friday,12/30/2011 2:00,0,206,2,8,34,100,352,0,352, +Friday,12/30/2011 3:00,0,206,4,8,32,92,340,0,340, +Friday,12/30/2011 4:00,0,204,2,6,34,100,348,0,348, +Friday,12/30/2011 5:00,0,206,4,8,32,92,340,0,340, +Friday,12/30/2011 6:00,0,206,10,8,36,100,360,0,360, +Friday,12/30/2011 7:00,0,234,22,16,32,92,394,0,394, +Friday,12/30/2011 8:00,0,176,26,28,40,100,370,-46,324, +Friday,12/30/2011 9:00,0,88,30,26,46,92,280,-282,-2, +Friday,12/30/2011 10:00,0,30,30,28,50,100,236,-418,-182, +Friday,12/30/2011 11:00,0,30,30,36,50,100,242,-228,14, +Friday,12/30/2011 12:00,0,0,26,34,50,92,202,-310,-108, +Friday,12/30/2011 13:00,0,0,30,32,52,100,214,-310,-96, +Friday,12/30/2011 14:00,0,0,32,30,44,92,198,-372,-174, +Friday,12/30/2011 15:00,0,0,30,28,42,100,200,-290,-90, +Friday,12/30/2011 16:00,0,0,28,28,36,100,192,-190,2, +Friday,12/30/2011 17:00,0,58,28,28,34,92,240,-28,212, +Friday,12/30/2011 18:00,0,30,30,44,36,100,240,0,240, +Friday,12/30/2011 19:00,0,0,6,42,34,92,172,0,172, +Friday,12/30/2011 20:00,0,30,4,24,34,100,192,0,192, +Friday,12/30/2011 21:00,0,0,2,12,30,92,136,0,136, +Friday,12/30/2011 22:00,0,58,2,8,32,100,200,0,200, +Friday,12/30/2011 23:00,0,0,4,6,34,100,144,0,144, +Saturday,12/31/2011 0:00,0,226,2,4,30,92,354,0,354, +Saturday,12/31/2011 1:00,0,244,4,8,32,100,388,0,388, +Saturday,12/31/2011 2:00,0,234,2,8,34,92,370,0,370, +Saturday,12/31/2011 3:00,0,234,4,6,32,100,378,0,378, +Saturday,12/31/2011 4:00,0,264,2,6,30,92,392,0,392, +Saturday,12/31/2011 5:00,0,204,4,8,32,100,350,0,350, +Saturday,12/31/2011 6:00,0,234,4,8,34,100,380,0,380, +Saturday,12/31/2011 7:00,0,234,4,10,30,92,372,0,372, +Saturday,12/31/2011 8:00,0,206,4,8,30,100,348,-10,338, +Saturday,12/31/2011 9:00,0,118,4,8,34,92,254,-46,208, +Saturday,12/31/2011 10:00,0,58,4,6,32,100,200,-372,-172, +Saturday,12/31/2011 11:00,0,30,4,8,30,92,162,-654,-492, +Saturday,12/31/2011 12:00,0,0,4,10,34,100,150,-718,-568, +Saturday,12/31/2011 13:00,0,0,2,14,32,92,140,-736,-596, +Saturday,12/31/2011 14:00,0,30,4,10,32,100,176,-618,-442, +Saturday,12/31/2011 15:00,0,0,4,12,34,92,142,-454,-312, +Saturday,12/31/2011 16:00,0,30,2,12,30,100,176,-210,-34, +Saturday,12/31/2011 17:00,0,0,2,14,32,100,150,-18,132, +Saturday,12/31/2011 18:00,0,58,4,14,32,92,200,0,200, +Saturday,12/31/2011 19:00,0,30,4,12,30,92,168,0,168, +Saturday,12/31/2011 20:00,0,30,2,8,32,100,174,0,174, +Saturday,12/31/2011 21:00,0,58,4,8,32,100,204,0,204, +Saturday,12/31/2011 22:00,0,146,4,10,32,92,282,0,282, +Saturday,12/31/2011 23:00,0,176,4,10,32,100,322,0,322, \ No newline at end of file diff --git a/gradio_ui.py b/gradio_ui.py new file mode 100644 index 0000000000000000000000000000000000000000..44fc24f80889161b4a966eacc659b00d16a154ca --- /dev/null +++ b/gradio_ui.py @@ -0,0 +1,113 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on 2024-07-19 15:52:34 Friday + +@author: Nikhil Kapila +""" + +import gradio as gr +import pandas as pd +import utils.fetcher as fetch +import utils.forecasting_utils as forecast_utils +import utils.prediction as predict +import utils.plot as plotter +import utils.anomaly_detection as anomaly + +building_types = ['Office', 'Education', 'Lodging / Residential'] +prediction_period_choices = ['short term', 'long term'] +sizes = ['1001_5000', '5001_10000', '10001_25000', '25001_50000', '50001_100000', '100001_200000', '200001_500000'] +states = ['GA'] + +def inference_pipeline(dataset_loc:str, btype:str, state:str, ft:str, index_col:str, output_col:str, lookback_period:str='short_term'): + print(index_col) + print(output_col) + if output_col == '': output_col = 'out.electricity.total.energy_consumption' + if index_col == '': index_col = 'timestamp' + metadata_loc = 'datasets/comstock/GA_filtered_building_list.csv' + + if lookback_period == 'short term': + lookback = 30 + inference_model_path = 'metaflow_models_30hrs' + else: + lookback = 360 + inference_model_path = 'metaflow_models_360hrs' + + # fetch torch model and scaler + model = fetch.fetch_model(ft, btype.lower(), inference_model_path) + scaler = fetch.fetch_scaler(ft, btype.lower(), inference_model_path) + + # input reading + df = pd.read_parquet(dataset_loc) + if index_col not in df.columns: + raise ValueError(f'Error column {index_col} is not found in the csv file.') + else: df.set_index(index_col, inplace=True) + + # if there are other columns, pick only the output col + if len(df.columns) > 1: + df = df[output_col] + + # if data is not hourly, make it hourly + if pd.infer_freq(df.index) != 'h': + hourly_data = df.resample('h').sum() + hourly_data = pd.DataFrame(hourly_data) + else: hourly_data = df + + # creating sliding windows since the torch model expects it to make inference + X, y, timestamp = forecast_utils.sliding_windows(hourly_data, lookback) + + # return dfs to be plotted + predicted_lookback = predict.model_predict_lookback(model, scaler, hourly_data, lookback) + predicted_input, mape = predict.model_predict_full_input(model, scaler, hourly_data, lookback) + anomalies = anomaly.detect_anomalies_with_sliding_windows(hourly_data, lookback) + + # return plotly fig objects so gr.Plot() can understand + plot_anomalies = anomaly.plotly_anomaly(anomalies) + plot_fig_full_input = plotter.standard_plotter(timestamp, y, predicted_input) + plot_fig_lookback = plotter.lookback_plotter(hourly_data, predicted_lookback) + return (plot_fig_lookback, plot_fig_full_input, + plot_anomalies, gr.Markdown(f'Trained model has an error of {mape}', visible=True)) + + + +# Gradio UI starts +with gr.Blocks() as demo: + gr.Markdown('# LSTM Forecaster') + with gr.Row(): + with gr.Column(): + btype = gr.Dropdown(label="How is the building being used?", choices=building_types) + state = gr.Dropdown(label='State in the US', choices=states) + size = gr.Dropdown(label='Size in sq-ft', choices=sizes) + forecast_period = gr.Dropdown(label='How far into the future to forecast?', choices=prediction_period_choices) + index_col = gr.Textbox(label='Date-time (quarterly or hourly) column in your dataset?')#, default='timestamp') + value_col = gr.Textbox(label='Electricity value column in your dataset?')# default='out.electricity.total.energy_consumption') + in_data_path = gr.UploadButton(variant='secondary', label="Upload test data", type="filepath") + # use_example = gr.UploadButton(variant='secondary', label="Use example data", type="filepath") + make_inference = gr.Button(value='Forecast', variant='primary') + + with gr.Column(): + gr.Markdown('## Forecast On Input Data') + plot_forecast_lookback = gr.Plot() + + gr.Markdown('## Using Input Data To Assess Model Performance') + gr.Markdown('This gives us an idea on how much the trained model performs on unseen input by the user.') + markdown_lstm_forecast_input = gr.Markdown('Model Forecast Accuracy on Provided Data', visible=False) + plot_forecast_full_input = gr.Plot() + + gr.Markdown('## Comparison of input data with different upgrades') + plot_different_upgrades = gr.Plot() + + gr.Markdown('## Anomaly detection') + plot_anomalies = gr.Plot() + + make_inference.click(fn=inference_pipeline, inputs=[in_data_path, btype, state, size, index_col, value_col, forecast_period], + outputs=[plot_forecast_lookback, plot_forecast_full_input, plot_anomalies, markdown_lstm_forecast_input]) + + # plot_on_input = gr.Plot(label='Plot on Input') + # inference_plot = gr.Plot(label='Plot on Inference') + + +if __name__ == "__main__": + demo.launch() + + diff --git a/metaflow_models_30hrs/.DS_Store b/metaflow_models_30hrs/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..23ca3f158c7203415a22d8feec843c457858b6c3 Binary files /dev/null and b/metaflow_models_30hrs/.DS_Store differ diff --git a/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/bgd_education_100001_200000_LSTM.pth b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/bgd_education_100001_200000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..8ce5d75fdbf197bffe754f1fc9750eca1d325dc9 --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/bgd_education_100001_200000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:171123caedcf830290bc756a348df04b3477dc7501dacef1a187630bebbcc51b +size 46786 diff --git a/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/output.txt b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0917075b3b9fcda7b3711fc495aacb1d987bf3a --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/output.txt @@ -0,0 +1,780 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:20:32.016 Workflow starting (run-id 6): +2024-07-19 14:20:32.091 [6/start/39 (pid 98257)] Task is starting. +2024-07-19 14:20:33.638 [6/start/39 (pid 98257)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:20:33.934 [6/start/39 (pid 98257)] Task finished successfully. +2024-07-19 14:20:33.966 [6/ingest/40 (pid 98284)] Task is starting. +2024-07-19 14:20:35.426 [6/ingest/40 (pid 98284)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:20:35.459 [6/ingest/40 (pid 98284)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:20:39.484 [6/ingest/40 (pid 98284)] Task finished successfully. +2024-07-19 14:20:39.517 [6/pick_2017_data/41 (pid 98323)] Task is starting. +2024-07-19 14:20:41.019 [6/pick_2017_data/41 (pid 98323)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:20:41.404 [6/pick_2017_data/41 (pid 98323)] Task finished successfully. +2024-07-19 14:20:41.434 [6/fill_missing_data/42 (pid 98334)] Task is starting. +2024-07-19 14:20:42.925 [6/fill_missing_data/42 (pid 98334)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:20:42.941 [6/fill_missing_data/42 (pid 98334)] INFO:__main__:NaN counts per column: +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] INFO:__main__:Panther_education_Jerome 10 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Panther_education_Quintin 12 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Panther_education_Hugh 12 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Panther_education_Alecia 12 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Panther_education_Vincent 12 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Panther_education_Genevieve 387 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Lilly 91 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Andre 0 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Leota 5 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Yolande 1 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Elvira 17 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Gloria 9 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Nilda 1 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Claude 15 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Rat_education_Willie 50 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Rat_education_Eleonora 8760 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Rat_education_Veronica 8760 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Bear_education_Rebecca 46 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Bear_education_Lorie 46 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Bear_education_Zandra 98 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Bear_education_Fannie 177 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] Bear_education_Alvaro 56 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] Lamb_education_Luz 14 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] Cockatoo_education_Eunice 121 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] Cockatoo_education_Evangeline 2278 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] Cockatoo_education_Flora 113 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] Cockatoo_education_Marva 113 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] dtype: int64 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] --- Logging error --- +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] Traceback (most recent call last): +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] msg = self.format(record) +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] return fmt.format(record) +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:20:42.944 [6/fill_missing_data/42 (pid 98334)] record.message = record.getMessage() +2024-07-19 14:20:42.944 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:20:42.944 [6/fill_missing_data/42 (pid 98334)] msg = msg % self.args +2024-07-19 14:20:42.944 [6/fill_missing_data/42 (pid 98334)] TypeError: not all arguments converted during string formatting +2024-07-19 14:20:42.944 [6/fill_missing_data/42 (pid 98334)] Call stack: +2024-07-19 14:20:42.944 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:20:53.715 [6/fill_missing_data/42 (pid 98334)] BGD_LinearFlow() +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] cli.main(self) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] return func(*args, **kwargs) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] return self.main(*args, **kwargs) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] rv = self.invoke(ctx) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] return callback(*args, **kwargs) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] task.run_step( +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] self._exec_step_function(step_func) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] step_function() +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] Arguments: (21216,) +2024-07-19 14:20:53.717 [6/fill_missing_data/42 (pid 98334)] Task finished successfully. +2024-07-19 14:20:53.748 [6/find_median/43 (pid 98391)] Task is starting. +2024-07-19 14:20:55.222 [6/find_median/43 (pid 98391)] INFO:__main__:Computing and using median.. +2024-07-19 14:20:55.794 [6/find_median/43 (pid 98391)] Task finished successfully. +2024-07-19 14:20:55.827 [6/aggregate_data/44 (pid 98408)] Task is starting. +2024-07-19 14:20:57.299 [6/aggregate_data/44 (pid 98408)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:21:01.195 [6/aggregate_data/44 (pid 98408)] Task finished successfully. +2024-07-19 14:21:01.222 [6/split_data/45 (pid 98447)] Task is starting. +2024-07-19 14:21:02.707 [6/split_data/45 (pid 98447)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:21:06.568 [6/split_data/45 (pid 98447)] Task finished successfully. +2024-07-19 14:21:06.597 [6/make_x_y/46 (pid 98477)] Task is starting. +2024-07-19 14:21:08.412 [6/make_x_y/46 (pid 98477)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:21:08.745 [6/make_x_y/46 (pid 98477)] Shape of y_train: (6978, 1) +2024-07-19 14:21:08.746 [6/make_x_y/46 (pid 98477)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:21:08.746 [6/make_x_y/46 (pid 98477)] Shape of y_test: (1722, 1) +2024-07-19 14:21:08.747 [6/make_x_y/46 (pid 98477)] Task finished successfully. +2024-07-19 14:21:08.780 [6/cross_validate_train/47 (pid 98490)] Task is starting. +2024-07-19 14:21:10.274 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Creating bgd_education_100001_200000_LSTM +2024-07-19 14:21:10.275 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Performing cross validation.. +2024-07-19 14:21:11.022 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 1/50, Train Loss: 0.2290242253928571, Val Loss: 0.18547317566903862 +2024-07-19 14:21:11.221 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 2/50, Train Loss: 0.1568469229984928, Val Loss: 0.17840926469983281 +2024-07-19 14:21:11.440 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 3/50, Train Loss: 0.15967219705517227, Val Loss: 0.17686041061942642 +2024-07-19 14:21:11.640 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 4/50, Train Loss: 0.15351807648265683, Val Loss: 0.16511847602354512 +2024-07-19 14:21:11.836 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 5/50, Train Loss: 0.14102652870319984, Val Loss: 0.14205545630003955 +2024-07-19 14:21:12.039 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 6/50, Train Loss: 0.1201042410086941, Val Loss: 0.10565465225561245 +2024-07-19 14:21:12.245 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 7/50, Train Loss: 0.0995973014348262, Val Loss: 0.10234752619588697 +2024-07-19 14:21:12.449 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 8/50, Train Loss: 0.09455284667578903, Val Loss: 0.10139895331215214 +2024-07-19 14:21:12.654 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 9/50, Train Loss: 0.09109868683122299, Val Loss: 0.0968044484789307 +2024-07-19 14:21:12.863 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 10/50, Train Loss: 0.08455154672265053, Val Loss: 0.09583137023287851 +2024-07-19 14:21:13.065 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 11/50, Train Loss: 0.08622577021250853, Val Loss: 0.09435271230098363 +2024-07-19 14:21:13.266 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 12/50, Train Loss: 0.08256184289584288, Val Loss: 0.09396799391991384 +2024-07-19 14:21:13.471 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 13/50, Train Loss: 0.08097935045087659, Val Loss: 0.09233139223746352 +2024-07-19 14:21:13.675 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 14/50, Train Loss: 0.07897360914865055, Val Loss: 0.09106584155076258 +2024-07-19 14:21:13.879 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 15/50, Train Loss: 0.07772192832183193, Val Loss: 0.09019185904715513 +2024-07-19 14:21:14.080 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 16/50, Train Loss: 0.07662954161296019, Val Loss: 0.09046311273768141 +2024-07-19 14:21:14.283 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 17/50, Train Loss: 0.07497417423370722, Val Loss: 0.08723064592561207 +2024-07-19 14:21:14.484 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 18/50, Train Loss: 0.0739606270516241, Val Loss: 0.08789449356294968 +2024-07-19 14:21:14.696 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 19/50, Train Loss: 0.07253215119645402, Val Loss: 0.08585842275941694 +2024-07-19 14:21:14.905 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 20/50, Train Loss: 0.07144322417475082, Val Loss: 0.08513158811507998 +2024-07-19 14:21:15.119 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 21/50, Train Loss: 0.06991970247110806, Val Loss: 0.0826925003045314 +2024-07-19 14:21:15.382 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 22/50, Train Loss: 0.0686976428370218, Val Loss: 0.0815310943368319 +2024-07-19 14:21:15.586 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 23/50, Train Loss: 0.06714651340971121, Val Loss: 0.07947019840011725 +2024-07-19 14:21:15.790 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 24/50, Train Loss: 0.06511069250267905, Val Loss: 0.0758808489788223 +2024-07-19 14:21:15.998 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 25/50, Train Loss: 0.06366853264940751, Val Loss: 0.07429210106666023 +2024-07-19 14:21:16.203 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 26/50, Train Loss: 0.062396853960849145, Val Loss: 0.07356513513101114 +2024-07-19 14:21:16.410 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 27/50, Train Loss: 0.0616972407175077, Val Loss: 0.0720107143593801 +2024-07-19 14:21:16.617 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 28/50, Train Loss: 0.06048578587738243, Val Loss: 0.071087796241045 +2024-07-19 14:21:16.825 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 29/50, Train Loss: 0.05979411173108462, Val Loss: 0.07083169904512328 +2024-07-19 14:21:17.036 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 30/50, Train Loss: 0.05880772070707502, Val Loss: 0.07007344973248404 +2024-07-19 14:21:17.241 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 31/50, Train Loss: 0.058391931793979696, Val Loss: 0.06941845922453983 +2024-07-19 14:21:17.453 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 32/50, Train Loss: 0.05849923445163546, Val Loss: 0.06877314037567861 +2024-07-19 14:21:17.656 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 33/50, Train Loss: 0.05748753289918642, Val Loss: 0.06863710566146954 +2024-07-19 14:21:17.867 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 34/50, Train Loss: 0.05690814584896371, Val Loss: 0.06796427353008373 +2024-07-19 14:21:18.075 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 35/50, Train Loss: 0.05637689196580165, Val Loss: 0.06801293941365706 +2024-07-19 14:21:18.285 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 36/50, Train Loss: 0.05599819083471556, Val Loss: 0.06755327030613616 +2024-07-19 14:21:18.489 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 37/50, Train Loss: 0.055659780530510725, Val Loss: 0.06706835832950231 +2024-07-19 14:21:18.694 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 38/50, Train Loss: 0.05548331977145092, Val Loss: 0.06685254390578012 +2024-07-19 14:21:18.901 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 39/50, Train Loss: 0.05537126324064023, Val Loss: 0.06664588312442238 +2024-07-19 14:21:19.105 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 40/50, Train Loss: 0.05490350813881771, Val Loss: 0.06653854593231871 +2024-07-19 14:21:19.312 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 41/50, Train Loss: 0.05447409795345487, Val Loss: 0.0659229852057792 +2024-07-19 14:21:19.517 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 42/50, Train Loss: 0.054653490213929, Val Loss: 0.06623860237163466 +2024-07-19 14:21:19.724 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 43/50, Train Loss: 0.054236944966219565, Val Loss: 0.0663274189306272 +2024-07-19 14:21:19.933 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 44/50, Train Loss: 0.0543473794854976, Val Loss: 0.06615865794388023 +2024-07-19 14:21:20.138 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 45/50, Train Loss: 0.05427958322940646, Val Loss: 0.06589078792446368 +2024-07-19 14:21:20.350 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 46/50, Train Loss: 0.05427731281599483, Val Loss: 0.06610595263742111 +2024-07-19 14:21:20.554 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 47/50, Train Loss: 0.05405113181552371, Val Loss: 0.0660479775554425 +2024-07-19 14:21:20.760 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 48/50, Train Loss: 0.053993275036682956, Val Loss: 0.06615109661140957 +2024-07-19 14:21:20.967 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 49/50, Train Loss: 0.054065762440095075, Val Loss: 0.06610826634474702 +2024-07-19 14:21:21.175 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 50/50, Train Loss: 0.05389266763184521, Val Loss: 0.06672814518616006 +2024-07-19 14:21:21.175 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Fold 0, MAPE: 3.99% +2024-07-19 14:21:21.480 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Training image saved at metaflow_models//bgd_education_100001_200000_LSTM//train_f0_bgd_education_100001_200000_LSTM.png +2024-07-19 14:21:21.960 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 1/50, Train Loss: 0.04330459257511243, Val Loss: 0.04837285294323354 +2024-07-19 14:21:22.335 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 2/50, Train Loss: 0.041534934550115504, Val Loss: 0.047411962437468605 +2024-07-19 14:21:22.729 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 3/50, Train Loss: 0.04109089104586268, Val Loss: 0.04660308255335769 +2024-07-19 14:21:23.119 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 4/50, Train Loss: 0.04104277251722061, Val Loss: 0.046273656944568094 +2024-07-19 14:21:23.509 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 5/50, Train Loss: 0.04118943484882786, Val Loss: 0.04669872137743074 +2024-07-19 14:21:23.883 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 6/50, Train Loss: 0.04097841960722453, Val Loss: 0.04611826114155151 +2024-07-19 14:21:24.269 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 7/50, Train Loss: 0.041098919888473535, Val Loss: 0.04556188269241436 +2024-07-19 14:21:24.667 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 8/50, Train Loss: 0.041383351033476935, Val Loss: 0.045782916046477655 +2024-07-19 14:21:25.035 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 9/50, Train Loss: 0.04097921796755431, Val Loss: 0.04539154766983277 +2024-07-19 14:21:25.418 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 10/50, Train Loss: 0.041583621287590834, Val Loss: 0.04551574270668868 +2024-07-19 14:21:25.798 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 11/50, Train Loss: 0.041541365727986376, Val Loss: 0.045614470601887315 +2024-07-19 14:21:26.175 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 12/50, Train Loss: 0.04143375403260532, Val Loss: 0.04545221301550801 +2024-07-19 14:21:26.566 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 13/50, Train Loss: 0.042336332726560226, Val Loss: 0.046172621181687794 +2024-07-19 14:21:26.940 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 14/50, Train Loss: 0.04170034904900479, Val Loss: 0.045320177148725535 +2024-07-19 14:21:27.307 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 15/50, Train Loss: 0.04177752014708846, Val Loss: 0.0451900286952386 +2024-07-19 14:21:27.684 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 16/50, Train Loss: 0.041947208293905, Val Loss: 0.04495062296454971 +2024-07-19 14:21:28.078 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 17/50, Train Loss: 0.04176756976912283, Val Loss: 0.04521587601787335 +2024-07-19 14:21:28.448 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 18/50, Train Loss: 0.041903104684124254, Val Loss: 0.045142337679862976 +2024-07-19 14:21:28.810 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 19/50, Train Loss: 0.042395192619464166, Val Loss: 0.045093173765250155 +2024-07-19 14:21:29.168 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 20/50, Train Loss: 0.04143021538955708, Val Loss: 0.04521403436523837 +2024-07-19 14:21:29.524 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 21/50, Train Loss: 0.042039839959103764, Val Loss: 0.0447104683498273 +2024-07-19 14:21:29.885 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 22/50, Train Loss: 0.04205108385482063, Val Loss: 0.044850716619072736 +2024-07-19 14:21:30.268 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 23/50, Train Loss: 0.04162498099142558, Val Loss: 0.04473233630729688 +2024-07-19 14:21:30.652 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 24/50, Train Loss: 0.04182405966295771, Val Loss: 0.04516326439743106 +2024-07-19 14:21:31.098 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 25/50, Train Loss: 0.04186509062268146, Val Loss: 0.04622493754770305 +2024-07-19 14:21:31.546 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 26/50, Train Loss: 0.041953868117846856, Val Loss: 0.04580752415632879 +2024-07-19 14:21:31.909 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 27/50, Train Loss: 0.04143015999500066, Val Loss: 0.04548831213567708 +2024-07-19 14:21:32.269 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 28/50, Train Loss: 0.041530903939106696, Val Loss: 0.046408250625874545 +2024-07-19 14:21:32.637 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 29/50, Train Loss: 0.04151532082014704, Val Loss: 0.04637291146492636 +2024-07-19 14:21:32.999 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 30/50, Train Loss: 0.040990341020977664, Val Loss: 0.046459057443850746 +2024-07-19 14:21:33.363 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 31/50, Train Loss: 0.04144014734519671, Val Loss: 0.04621450995674004 +2024-07-19 14:21:33.722 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 32/50, Train Loss: 0.04065760610344475, Val Loss: 0.04611682232368637 +2024-07-19 14:21:34.083 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 33/50, Train Loss: 0.04069917883775006, Val Loss: 0.04589583749908048 +2024-07-19 14:21:34.460 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 34/50, Train Loss: 0.04022628257740034, Val Loss: 0.04587580399537409 +2024-07-19 14:21:34.870 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 35/50, Train Loss: 0.04015373726923988, Val Loss: 0.04579420105831043 +2024-07-19 14:21:35.265 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 36/50, Train Loss: 0.04054071129082817, Val Loss: 0.04561642698339514 +2024-07-19 14:21:35.671 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 37/50, Train Loss: 0.04013947545461459, Val Loss: 0.04565703531576169 +2024-07-19 14:21:36.062 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 38/50, Train Loss: 0.0400132218707506, Val Loss: 0.045551677007932924 +2024-07-19 14:21:36.454 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 39/50, Train Loss: 0.03985884173275673, Val Loss: 0.04489880518333332 +2024-07-19 14:21:36.831 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 40/50, Train Loss: 0.03934836854571349, Val Loss: 0.04477375181945595 +2024-07-19 14:21:37.207 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 41/50, Train Loss: 0.0393295479198433, Val Loss: 0.0441797804590818 +2024-07-19 14:21:37.581 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 42/50, Train Loss: 0.039205878947491515, Val Loss: 0.044679776287159405 +2024-07-19 14:21:37.999 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 43/50, Train Loss: 0.039227793069734965, Val Loss: 0.044720933244035053 +2024-07-19 14:21:38.367 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 44/50, Train Loss: 0.038978051317677107, Val Loss: 0.0437415137484267 +2024-07-19 14:21:38.761 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 45/50, Train Loss: 0.03874035414359341, Val Loss: 0.044647996238357315 +2024-07-19 14:21:39.164 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 46/50, Train Loss: 0.03886784745814049, Val Loss: 0.04396667537858357 +2024-07-19 14:21:39.571 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 47/50, Train Loss: 0.03882063483844881, Val Loss: 0.043564553750125135 +2024-07-19 14:21:39.969 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 48/50, Train Loss: 0.03861116350003301, Val Loss: 0.044180603848921286 +2024-07-19 14:21:40.376 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 49/50, Train Loss: 0.038458211194366626, Val Loss: 0.043805053558301284 +2024-07-19 14:21:40.772 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 50/50, Train Loss: 0.038782666143897464, Val Loss: 0.04414082112143169 +2024-07-19 14:21:40.772 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Fold 1, MAPE: 3.86% +2024-07-19 14:21:40.884 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Training image saved at metaflow_models//bgd_education_100001_200000_LSTM//train_f1_bgd_education_100001_200000_LSTM.png +2024-07-19 14:21:41.412 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 1/50, Train Loss: 0.036514850485731255, Val Loss: 0.044348393139001484 +2024-07-19 14:21:41.928 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 2/50, Train Loss: 0.038017219051041384, Val Loss: 0.04324987092734994 +2024-07-19 14:21:42.441 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 3/50, Train Loss: 0.037221413681452924, Val Loss: 0.04630586343842584 +2024-07-19 14:21:42.984 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 4/50, Train Loss: 0.03678547892380844, Val Loss: 0.043399556766490675 +2024-07-19 14:21:43.536 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 5/50, Train Loss: 0.036468016186898405, Val Loss: 0.04312045041572403 +2024-07-19 14:21:44.109 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 6/50, Train Loss: 0.03628976277329705, Val Loss: 0.04336696087911322 +2024-07-19 14:21:44.678 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 7/50, Train Loss: 0.03638057732446627, Val Loss: 0.047419135685305334 +2024-07-19 14:21:45.245 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 8/50, Train Loss: 0.03611578731374307, Val Loss: 0.04663475270609598 +2024-07-19 14:21:45.800 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 9/50, Train Loss: 0.03592768391086296, Val Loss: 0.0463936352548567 +2024-07-19 14:21:46.354 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 10/50, Train Loss: 0.03573310151696205, Val Loss: 0.04432037356938865 +2024-07-19 14:21:46.910 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 11/50, Train Loss: 0.03577923412350091, Val Loss: 0.04424742714980164 +2024-07-19 14:21:47.473 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 12/50, Train Loss: 0.03578913164409724, Val Loss: 0.04655372426920646 +2024-07-19 14:21:48.061 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 13/50, Train Loss: 0.03546273975887082, Val Loss: 0.04549634587523099 +2024-07-19 14:21:48.602 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 14/50, Train Loss: 0.035470221936702725, Val Loss: 0.04624869427769571 +2024-07-19 14:21:49.133 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 15/50, Train Loss: 0.0353938442570242, Val Loss: 0.043087409255472386 +2024-07-19 14:21:49.653 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 16/50, Train Loss: 0.03570508679205721, Val Loss: 0.0453641326040835 +2024-07-19 14:21:50.174 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 17/50, Train Loss: 0.0351757290688428, Val Loss: 0.04567775271228842 +2024-07-19 14:21:50.704 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 18/50, Train Loss: 0.03522492777556181, Val Loss: 0.04625263936012178 +2024-07-19 14:21:51.249 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 19/50, Train Loss: 0.03527135124260729, Val Loss: 0.04536022296225702 +2024-07-19 14:21:51.825 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 20/50, Train Loss: 0.03511047088964419, Val Loss: 0.04523819060744466 +2024-07-19 14:21:52.374 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 21/50, Train Loss: 0.03503652960062027, Val Loss: 0.04249952839234391 +2024-07-19 14:21:52.987 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 22/50, Train Loss: 0.035233873315155505, Val Loss: 0.04540745304847086 +2024-07-19 14:21:53.576 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 23/50, Train Loss: 0.03493485002016479, Val Loss: 0.04507525003439671 +2024-07-19 14:21:54.155 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 24/50, Train Loss: 0.03498431322249499, Val Loss: 0.04268189116909697 +2024-07-19 14:21:54.753 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 25/50, Train Loss: 0.035032207789746195, Val Loss: 0.04561741151721091 +2024-07-19 14:21:55.313 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 26/50, Train Loss: 0.03490171405402097, Val Loss: 0.045775448551049105 +2024-07-19 14:21:55.883 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 27/50, Train Loss: 0.03479236889291893, Val Loss: 0.04495813138782978 +2024-07-19 14:21:56.512 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 28/50, Train Loss: 0.03463539550588889, Val Loss: 0.04243375990237739 +2024-07-19 14:21:57.092 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 29/50, Train Loss: 0.03503092459656976, Val Loss: 0.044897297850331745 +2024-07-19 14:21:57.683 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 30/50, Train Loss: 0.03479278526184234, Val Loss: 0.04496127764719564 +2024-07-19 14:21:58.273 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 31/50, Train Loss: 0.034699255651371046, Val Loss: 0.04466565607770069 +2024-07-19 14:21:58.864 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 32/50, Train Loss: 0.034535005180673164, Val Loss: 0.044864418740208085 +2024-07-19 14:21:59.456 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 33/50, Train Loss: 0.03481982624666257, Val Loss: 0.043396478820894216 +2024-07-19 14:22:00.017 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 34/50, Train Loss: 0.03529278112744743, Val Loss: 0.04554971982095692 +2024-07-19 14:22:00.593 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 35/50, Train Loss: 0.034798229672014715, Val Loss: 0.044733266421669235 +2024-07-19 14:22:01.120 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 36/50, Train Loss: 0.0345479138364846, Val Loss: 0.04506094567477703 +2024-07-19 14:22:01.642 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 37/50, Train Loss: 0.03446238240735097, Val Loss: 0.044104335980640876 +2024-07-19 14:22:02.167 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 38/50, Train Loss: 0.035165733759376136, Val Loss: 0.04474546473372627 +2024-07-19 14:22:02.692 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 39/50, Train Loss: 0.034524076228792014, Val Loss: 0.04476366564631462 +2024-07-19 14:22:03.210 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 40/50, Train Loss: 0.034634138660674746, Val Loss: 0.045040415650283966 +2024-07-19 14:22:03.770 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 41/50, Train Loss: 0.03450325700369748, Val Loss: 0.04238694130971625 +2024-07-19 14:22:04.373 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 42/50, Train Loss: 0.034725640900433064, Val Loss: 0.04478134733398218 +2024-07-19 14:22:04.950 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 43/50, Train Loss: 0.034751580096781254, Val Loss: 0.04348393509516845 +2024-07-19 14:22:05.512 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 44/50, Train Loss: 0.034809853593734175, Val Loss: 0.04391693157722821 +2024-07-19 14:22:06.075 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 45/50, Train Loss: 0.03449692644856193, Val Loss: 0.04487420789696075 +2024-07-19 14:22:06.664 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 46/50, Train Loss: 0.034196754731237886, Val Loss: 0.04542856890003424 +2024-07-19 14:22:07.246 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 47/50, Train Loss: 0.03423431361602111, Val Loss: 0.04526058050829011 +2024-07-19 14:22:07.858 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 48/50, Train Loss: 0.034146616963500326, Val Loss: 0.04547384406465131 +2024-07-19 14:22:08.386 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 49/50, Train Loss: 0.034110873768275436, Val Loss: 0.043570815661066284 +2024-07-19 14:22:08.966 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 50/50, Train Loss: 0.034275709600611166, Val Loss: 0.045539124893981056 +2024-07-19 14:22:08.966 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Fold 2, MAPE: 4.10% +2024-07-19 14:22:09.088 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Training image saved at metaflow_models//bgd_education_100001_200000_LSTM//train_f2_bgd_education_100001_200000_LSTM.png +2024-07-19 14:22:09.827 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 1/50, Train Loss: 0.03541323283610687, Val Loss: 0.03923451029569716 +2024-07-19 14:22:10.599 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 2/50, Train Loss: 0.03539660934052647, Val Loss: 0.03862792610920764 +2024-07-19 14:22:11.301 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 3/50, Train Loss: 0.0354328228237286, Val Loss: 0.03875982343546442 +2024-07-19 14:22:12.079 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 4/50, Train Loss: 0.03514257509720652, Val Loss: 0.03911786330108707 +2024-07-19 14:22:12.819 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 5/50, Train Loss: 0.03528036772949646, Val Loss: 0.0387982268993919 +2024-07-19 14:22:13.553 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 6/50, Train Loss: 0.03497500961314734, Val Loss: 0.038871500288715236 +2024-07-19 14:22:14.288 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 7/50, Train Loss: 0.03524014030978696, Val Loss: 0.039066010129612846 +2024-07-19 14:22:14.953 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 8/50, Train Loss: 0.03495275921966523, Val Loss: 0.03860098244370641 +2024-07-19 14:22:15.649 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 9/50, Train Loss: 0.03512551439032979, Val Loss: 0.03915777273878858 +2024-07-19 14:22:16.391 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 10/50, Train Loss: 0.03504569566974493, Val Loss: 0.03873792184969863 +2024-07-19 14:22:17.143 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 11/50, Train Loss: 0.03496257754119292, Val Loss: 0.03990044344115902 +2024-07-19 14:22:17.881 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 12/50, Train Loss: 0.0349786701573901, Val Loss: 0.03879910209090323 +2024-07-19 14:22:18.553 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 13/50, Train Loss: 0.03479728430560599, Val Loss: 0.039685492479317894 +2024-07-19 14:22:19.230 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 14/50, Train Loss: 0.034961009755322375, Val Loss: 0.0389660735790794 +2024-07-19 14:22:19.902 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 15/50, Train Loss: 0.03486304629389962, Val Loss: 0.0387408701149193 +2024-07-19 14:22:20.634 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 16/50, Train Loss: 0.034811200076484514, Val Loss: 0.039318751241709735 +2024-07-19 14:22:21.313 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 17/50, Train Loss: 0.03470172625902581, Val Loss: 0.03923226273744493 +2024-07-19 14:22:21.991 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 18/50, Train Loss: 0.034470962794267965, Val Loss: 0.03862141661748693 +2024-07-19 14:22:22.660 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 19/50, Train Loss: 0.03441427487318646, Val Loss: 0.03870197325139432 +2024-07-19 14:22:23.350 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 20/50, Train Loss: 0.03454238562908483, Val Loss: 0.0381052156759275 +2024-07-19 14:22:24.032 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 21/50, Train Loss: 0.03444639965891838, Val Loss: 0.03790567211202673 +2024-07-19 14:22:24.710 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 22/50, Train Loss: 0.03442841751679574, Val Loss: 0.03770956321543938 +2024-07-19 14:22:25.453 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 23/50, Train Loss: 0.03434604107823274, Val Loss: 0.038071452061066755 +2024-07-19 14:22:26.220 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 24/50, Train Loss: 0.034265363116888964, Val Loss: 0.03828899547256328 +2024-07-19 14:22:26.985 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 25/50, Train Loss: 0.03437381157370871, Val Loss: 0.03796148370649364 +2024-07-19 14:22:27.777 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 26/50, Train Loss: 0.03424933181488759, Val Loss: 0.0377789636117381 +2024-07-19 14:22:28.507 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 27/50, Train Loss: 0.03422545872577657, Val Loss: 0.03813745715730899 +2024-07-19 14:22:29.224 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 28/50, Train Loss: 0.03440503616600412, Val Loss: 0.03848662499237705 +2024-07-19 14:22:29.948 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 29/50, Train Loss: 0.03431197570968572, Val Loss: 0.0379898311519945 +2024-07-19 14:22:30.694 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 30/50, Train Loss: 0.034290812131374665, Val Loss: 0.038386582623462416 +2024-07-19 14:22:31.420 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 31/50, Train Loss: 0.0342107298209855, Val Loss: 0.03790342666812845 +2024-07-19 14:22:32.174 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 32/50, Train Loss: 0.03420649326010926, Val Loss: 0.038550745192411785 +2024-07-19 14:22:32.943 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 33/50, Train Loss: 0.03422731024608629, Val Loss: 0.037712036304779956 +2024-07-19 14:22:33.659 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 34/50, Train Loss: 0.03412840547269746, Val Loss: 0.03821161203086376 +2024-07-19 14:22:34.339 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 35/50, Train Loss: 0.03431647195646616, Val Loss: 0.03796323514669328 +2024-07-19 14:22:35.012 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 36/50, Train Loss: 0.03409023170856989, Val Loss: 0.0376332420352343 +2024-07-19 14:22:35.771 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 37/50, Train Loss: 0.034114687831128296, Val Loss: 0.037928362301475296 +2024-07-19 14:22:36.472 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 38/50, Train Loss: 0.034190057713079126, Val Loss: 0.03786536502475674 +2024-07-19 14:22:37.253 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 39/50, Train Loss: 0.03418253029199087, Val Loss: 0.03811935702892574 +2024-07-19 14:22:38.033 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 40/50, Train Loss: 0.034294154813946924, Val Loss: 0.03802486519153054 +2024-07-19 14:22:38.769 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 41/50, Train Loss: 0.03399780089010115, Val Loss: 0.03792449242963984 +2024-07-19 14:22:39.483 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 42/50, Train Loss: 0.03392547140637898, Val Loss: 0.03772180718747345 +2024-07-19 14:22:40.170 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 43/50, Train Loss: 0.03401763792060418, Val Loss: 0.03803059519142718 +2024-07-19 14:22:40.867 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 44/50, Train Loss: 0.03388183524398363, Val Loss: 0.037840195755298074 +2024-07-19 14:22:41.586 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 45/50, Train Loss: 0.03389238272729802, Val Loss: 0.03764701755465688 +2024-07-19 14:22:42.333 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 46/50, Train Loss: 0.033651370312763405, Val Loss: 0.03787680559263036 +2024-07-19 14:22:43.133 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 47/50, Train Loss: 0.03350837661387169, Val Loss: 0.037730130643860715 +2024-07-19 14:22:43.843 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 48/50, Train Loss: 0.033881964391633254, Val Loss: 0.03792419697384577 +2024-07-19 14:22:44.571 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 49/50, Train Loss: 0.03356959419452572, Val Loss: 0.03796375331443709 +2024-07-19 14:22:45.255 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 50/50, Train Loss: 0.03353236148720735, Val Loss: 0.03763998012889076 +2024-07-19 14:22:45.255 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Fold 3, MAPE: 3.48% +2024-07-19 14:22:45.363 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Training image saved at metaflow_models//bgd_education_100001_200000_LSTM//train_f3_bgd_education_100001_200000_LSTM.png +2024-07-19 14:22:46.225 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 1/50, Train Loss: 0.032838061288162905, Val Loss: 0.038485108497175013 +2024-07-19 14:22:47.148 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 2/50, Train Loss: 0.032851251016196965, Val Loss: 0.03818182168981513 +2024-07-19 14:22:48.017 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 3/50, Train Loss: 0.03252848034090066, Val Loss: 0.038187986642525006 +2024-07-19 14:22:48.860 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 4/50, Train Loss: 0.03267227209449469, Val Loss: 0.03854566681626681 +2024-07-19 14:22:49.755 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 5/50, Train Loss: 0.03254420896685058, Val Loss: 0.038197056465857734 +2024-07-19 14:22:50.600 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 6/50, Train Loss: 0.03262228056133448, Val Loss: 0.03841074681966691 +2024-07-19 14:22:51.434 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 7/50, Train Loss: 0.03248444848417581, Val Loss: 0.03848316530520852 +2024-07-19 14:22:52.261 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 8/50, Train Loss: 0.03246714387621198, Val Loss: 0.038210674767961375 +2024-07-19 14:22:53.091 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 9/50, Train Loss: 0.032604404858180454, Val Loss: 0.03831637378882717 +2024-07-19 14:22:53.922 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 10/50, Train Loss: 0.03245715880868854, Val Loss: 0.038174897180618464 +2024-07-19 14:22:54.779 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 11/50, Train Loss: 0.03259714518847701, Val Loss: 0.03847455102446917 +2024-07-19 14:22:55.650 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 12/50, Train Loss: 0.03236372367693828, Val Loss: 0.038157405533097884 +2024-07-19 14:22:56.551 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 13/50, Train Loss: 0.03249208222829051, Val Loss: 0.038550585760055364 +2024-07-19 14:22:57.425 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 14/50, Train Loss: 0.03236195347834747, Val Loss: 0.03846230247133487 +2024-07-19 14:22:58.307 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 15/50, Train Loss: 0.03249949059234215, Val Loss: 0.038620939830670484 +2024-07-19 14:22:59.196 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 16/50, Train Loss: 0.03242783075464623, Val Loss: 0.03857711773063686 +2024-07-19 14:23:00.084 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 17/50, Train Loss: 0.0323618628944342, Val Loss: 0.03797787845738836 +2024-07-19 14:23:00.996 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 18/50, Train Loss: 0.03234404802404262, Val Loss: 0.038503763492445685 +2024-07-19 14:23:01.867 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 19/50, Train Loss: 0.032220752899545235, Val Loss: 0.03864261301586757 +2024-07-19 14:23:02.721 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 20/50, Train Loss: 0.032440686015064245, Val Loss: 0.038552123549822216 +2024-07-19 14:23:03.592 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 21/50, Train Loss: 0.03231899402421582, Val Loss: 0.03774391597992665 +2024-07-19 14:23:04.481 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 22/50, Train Loss: 0.03223549537770041, Val Loss: 0.0379916649513148 +2024-07-19 14:23:05.347 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 23/50, Train Loss: 0.03215981004657326, Val Loss: 0.03833963364564084 +2024-07-19 14:23:06.267 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 24/50, Train Loss: 0.0322440269577143, Val Loss: 0.03768196052594765 +2024-07-19 14:23:07.180 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 25/50, Train Loss: 0.03201882855373097, Val Loss: 0.037650558342402045 +2024-07-19 14:23:08.076 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 26/50, Train Loss: 0.032106583733316305, Val Loss: 0.038069843641809514 +2024-07-19 14:23:08.976 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 27/50, Train Loss: 0.03216760985266704, Val Loss: 0.03737634651966997 +2024-07-19 14:23:09.870 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 28/50, Train Loss: 0.031817121287951104, Val Loss: 0.03750276595756814 +2024-07-19 14:23:10.747 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 29/50, Train Loss: 0.03205042560636015, Val Loss: 0.03739626745919924 +2024-07-19 14:23:11.585 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 30/50, Train Loss: 0.032135412629161565, Val Loss: 0.03765915943360006 +2024-07-19 14:23:12.461 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 31/50, Train Loss: 0.03191574634267734, Val Loss: 0.037397211316872285 +2024-07-19 14:23:13.353 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 32/50, Train Loss: 0.03195711087107986, Val Loss: 0.03758687843140718 +2024-07-19 14:23:14.256 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 33/50, Train Loss: 0.032051153849441925, Val Loss: 0.03710197667415078 +2024-07-19 14:23:15.133 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 34/50, Train Loss: 0.03187861433764408, Val Loss: 0.03714181940901924 +2024-07-19 14:23:15.997 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 35/50, Train Loss: 0.0319259403232526, Val Loss: 0.03740325575140682 +2024-07-19 14:23:16.874 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 36/50, Train Loss: 0.0318708701345783, Val Loss: 0.03731490339379053 +2024-07-19 14:23:17.752 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 37/50, Train Loss: 0.03179589861615018, Val Loss: 0.03796266260984782 +2024-07-19 14:23:18.667 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 38/50, Train Loss: 0.031605588395025704, Val Loss: 0.037191246560699234 +2024-07-19 14:23:19.566 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 39/50, Train Loss: 0.03181515595169513, Val Loss: 0.037614405708941256 +2024-07-19 14:23:20.470 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 40/50, Train Loss: 0.03165443097292395, Val Loss: 0.037285717304896666 +2024-07-19 14:23:21.382 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 41/50, Train Loss: 0.03146892881205121, Val Loss: 0.03743537928204279 +2024-07-19 14:23:22.272 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 42/50, Train Loss: 0.03166266679149735, Val Loss: 0.036977015083303325 +2024-07-19 14:23:23.152 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 43/50, Train Loss: 0.03153451276267623, Val Loss: 0.03778899747978996 +2024-07-19 14:23:24.028 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 44/50, Train Loss: 0.03141946793830657, Val Loss: 0.037221593631280435 +2024-07-19 14:23:24.920 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 45/50, Train Loss: 0.031591366116817184, Val Loss: 0.037270523053971494 +2024-07-19 14:23:25.795 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 46/50, Train Loss: 0.031222030469267577, Val Loss: 0.03706117221028418 +2024-07-19 14:23:26.701 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 47/50, Train Loss: 0.03139344440097665, Val Loss: 0.03685946354793536 +2024-07-19 14:23:27.573 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 48/50, Train Loss: 0.03121786782579435, Val Loss: 0.03716353976444618 +2024-07-19 14:23:28.450 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 49/50, Train Loss: 0.03137351019860624, Val Loss: 0.03657267262806763 +2024-07-19 14:23:29.338 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 50/50, Train Loss: 0.031179830104440122, Val Loss: 0.03632195273766647 +2024-07-19 14:23:29.338 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Fold 4, MAPE: 3.53% +2024-07-19 14:23:29.453 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Training image saved at metaflow_models//bgd_education_100001_200000_LSTM//train_f4_bgd_education_100001_200000_LSTM.png +2024-07-19 14:23:33.615 [6/cross_validate_train/47 (pid 98490)] Task finished successfully. +2024-07-19 14:23:33.648 [6/model_scores/48 (pid 99127)] Task is starting. +2024-07-19 14:23:35.118 [6/model_scores/48 (pid 99127)] INFO:__main__:Average Train Loss across all folds: 0.03833264699360026 +2024-07-19 14:23:39.074 [6/model_scores/48 (pid 99127)] INFO:__main__:Average Validation Loss across all folds: 0.046074004813626 +2024-07-19 14:23:39.074 [6/model_scores/48 (pid 99127)] INFO:__main__:Average MAPE across all folds: 3.79% +2024-07-19 14:23:39.075 [6/model_scores/48 (pid 99127)] Task finished successfully. +2024-07-19 14:23:39.113 [6/validate_model/49 (pid 99176)] Task is starting. +2024-07-19 14:23:40.577 [6/validate_model/49 (pid 99176)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:23:40.768 [6/validate_model/49 (pid 99176)] INFO:__main__:Test Set MAPE: 3.22% +2024-07-19 14:23:41.086 [6/validate_model/49 (pid 99176)] INFO:__main__:Test image saved at metaflow_models//bgd_education_100001_200000_LSTM//test_bgd_education_100001_200000_LSTM.png +2024-07-19 14:23:41.513 [6/validate_model/49 (pid 99176)] Task finished successfully. +2024-07-19 14:23:41.541 [6/log_model/50 (pid 99193)] Task is starting. +2024-07-19 14:23:43.039 [6/log_model/50 (pid 99193)] INFO:__main__:Logging model bgd_education_100001_200000_LSTM +2024-07-19 14:23:43.040 [6/log_model/50 (pid 99193)] INFO:__main__:Model logged at metaflow_models//bgd_education_100001_200000_LSTM//bgd_education_100001_200000_LSTM.pth +2024-07-19 14:23:46.940 [6/log_model/50 (pid 99193)] Task finished successfully. +2024-07-19 14:23:46.975 [6/end/51 (pid 99230)] Task is starting. +2024-07-19 14:23:48.440 [6/end/51 (pid 99230)] INFO:__main__:Pipeline end. +2024-07-19 14:23:48.762 [6/end/51 (pid 99230)] Task finished successfully. +2024-07-19 14:23:48.762 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/6') succeeded: +-- stdout -- +2024-07-19 14:20:32.016 Workflow starting (run-id 6): +2024-07-19 14:20:32.091 [6/start/39 (pid 98257)] Task is starting. +2024-07-19 14:20:33.638 [6/start/39 (pid 98257)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:20:33.934 [6/start/39 (pid 98257)] Task finished successfully. +2024-07-19 14:20:33.966 [6/ingest/40 (pid 98284)] Task is starting. +2024-07-19 14:20:35.426 [6/ingest/40 (pid 98284)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:20:35.459 [6/ingest/40 (pid 98284)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:20:39.484 [6/ingest/40 (pid 98284)] Task finished successfully. +2024-07-19 14:20:39.517 [6/pick_2017_data/41 (pid 98323)] Task is starting. +2024-07-19 14:20:41.019 [6/pick_2017_data/41 (pid 98323)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:20:41.404 [6/pick_2017_data/41 (pid 98323)] Task finished successfully. +2024-07-19 14:20:41.434 [6/fill_missing_data/42 (pid 98334)] Task is starting. +2024-07-19 14:20:42.925 [6/fill_missing_data/42 (pid 98334)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:20:42.941 [6/fill_missing_data/42 (pid 98334)] INFO:__main__:NaN counts per column: +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] INFO:__main__:Panther_education_Jerome 10 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Panther_education_Quintin 12 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Panther_education_Hugh 12 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Panther_education_Alecia 12 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Panther_education_Vincent 12 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Panther_education_Genevieve 387 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Lilly 91 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Andre 0 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Leota 5 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Yolande 1 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Elvira 17 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Gloria 9 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Nilda 1 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Fox_education_Claude 15 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Rat_education_Willie 50 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Rat_education_Eleonora 8760 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Rat_education_Veronica 8760 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Bear_education_Rebecca 46 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Bear_education_Lorie 46 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Bear_education_Zandra 98 +2024-07-19 14:20:42.942 [6/fill_missing_data/42 (pid 98334)] Bear_education_Fannie 177 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] Bear_education_Alvaro 56 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] Lamb_education_Luz 14 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] Cockatoo_education_Eunice 121 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] Cockatoo_education_Evangeline 2278 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] Cockatoo_education_Flora 113 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] Cockatoo_education_Marva 113 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] dtype: int64 +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] --- Logging error --- +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] Traceback (most recent call last): +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] msg = self.format(record) +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] return fmt.format(record) +2024-07-19 14:20:42.943 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:20:42.944 [6/fill_missing_data/42 (pid 98334)] record.message = record.getMessage() +2024-07-19 14:20:42.944 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:20:42.944 [6/fill_missing_data/42 (pid 98334)] msg = msg % self.args +2024-07-19 14:20:42.944 [6/fill_missing_data/42 (pid 98334)] TypeError: not all arguments converted during string formatting +2024-07-19 14:20:42.944 [6/fill_missing_data/42 (pid 98334)] Call stack: +2024-07-19 14:20:42.944 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:20:53.715 [6/fill_missing_data/42 (pid 98334)] BGD_LinearFlow() +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] cli.main(self) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] return func(*args, **kwargs) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] return self.main(*args, **kwargs) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] rv = self.invoke(ctx) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] return callback(*args, **kwargs) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] task.run_step( +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] self._exec_step_function(step_func) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] step_function() +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:20:53.716 [6/fill_missing_data/42 (pid 98334)] Arguments: (21216,) +2024-07-19 14:20:53.717 [6/fill_missing_data/42 (pid 98334)] Task finished successfully. +2024-07-19 14:20:53.748 [6/find_median/43 (pid 98391)] Task is starting. +2024-07-19 14:20:55.222 [6/find_median/43 (pid 98391)] INFO:__main__:Computing and using median.. +2024-07-19 14:20:55.794 [6/find_median/43 (pid 98391)] Task finished successfully. +2024-07-19 14:20:55.827 [6/aggregate_data/44 (pid 98408)] Task is starting. +2024-07-19 14:20:57.299 [6/aggregate_data/44 (pid 98408)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:21:01.195 [6/aggregate_data/44 (pid 98408)] Task finished successfully. +2024-07-19 14:21:01.222 [6/split_data/45 (pid 98447)] Task is starting. +2024-07-19 14:21:02.707 [6/split_data/45 (pid 98447)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:21:06.568 [6/split_data/45 (pid 98447)] Task finished successfully. +2024-07-19 14:21:06.597 [6/make_x_y/46 (pid 98477)] Task is starting. +2024-07-19 14:21:08.412 [6/make_x_y/46 (pid 98477)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:21:08.745 [6/make_x_y/46 (pid 98477)] Shape of y_train: (6978, 1) +2024-07-19 14:21:08.746 [6/make_x_y/46 (pid 98477)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:21:08.746 [6/make_x_y/46 (pid 98477)] Shape of y_test: (1722, 1) +2024-07-19 14:21:08.747 [6/make_x_y/46 (pid 98477)] Task finished successfully. +2024-07-19 14:21:08.780 [6/cross_validate_train/47 (pid 98490)] Task is starting. +2024-07-19 14:21:10.274 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Creating bgd_education_100001_200000_LSTM +2024-07-19 14:21:10.275 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Performing cross validation.. +2024-07-19 14:21:11.022 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 1/50, Train Loss: 0.2290242253928571, Val Loss: 0.18547317566903862 +2024-07-19 14:21:11.221 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 2/50, Train Loss: 0.1568469229984928, Val Loss: 0.17840926469983281 +2024-07-19 14:21:11.440 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 3/50, Train Loss: 0.15967219705517227, Val Loss: 0.17686041061942642 +2024-07-19 14:21:11.640 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 4/50, Train Loss: 0.15351807648265683, Val Loss: 0.16511847602354512 +2024-07-19 14:21:11.836 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 5/50, Train Loss: 0.14102652870319984, Val Loss: 0.14205545630003955 +2024-07-19 14:21:12.039 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 6/50, Train Loss: 0.1201042410086941, Val Loss: 0.10565465225561245 +2024-07-19 14:21:12.245 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 7/50, Train Loss: 0.0995973014348262, Val Loss: 0.10234752619588697 +2024-07-19 14:21:12.449 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 8/50, Train Loss: 0.09455284667578903, Val Loss: 0.10139895331215214 +2024-07-19 14:21:12.654 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 9/50, Train Loss: 0.09109868683122299, Val Loss: 0.0968044484789307 +2024-07-19 14:21:12.863 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 10/50, Train Loss: 0.08455154672265053, Val Loss: 0.09583137023287851 +2024-07-19 14:21:13.065 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 11/50, Train Loss: 0.08622577021250853, Val Loss: 0.09435271230098363 +2024-07-19 14:21:13.266 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 12/50, Train Loss: 0.08256184289584288, Val Loss: 0.09396799391991384 +2024-07-19 14:21:13.471 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 13/50, Train Loss: 0.08097935045087659, Val Loss: 0.09233139223746352 +2024-07-19 14:21:13.675 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 14/50, Train Loss: 0.07897360914865055, Val Loss: 0.09106584155076258 +2024-07-19 14:21:13.879 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 15/50, Train Loss: 0.07772192832183193, Val Loss: 0.09019185904715513 +2024-07-19 14:21:14.080 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 16/50, Train Loss: 0.07662954161296019, Val Loss: 0.09046311273768141 +2024-07-19 14:21:14.283 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 17/50, Train Loss: 0.07497417423370722, Val Loss: 0.08723064592561207 +2024-07-19 14:21:14.484 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 18/50, Train Loss: 0.0739606270516241, Val Loss: 0.08789449356294968 +2024-07-19 14:21:14.696 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 19/50, Train Loss: 0.07253215119645402, Val Loss: 0.08585842275941694 +2024-07-19 14:21:14.905 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 20/50, Train Loss: 0.07144322417475082, Val Loss: 0.08513158811507998 +2024-07-19 14:21:15.119 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 21/50, Train Loss: 0.06991970247110806, Val Loss: 0.0826925003045314 +2024-07-19 14:21:15.382 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 22/50, Train Loss: 0.0686976428370218, Val Loss: 0.0815310943368319 +2024-07-19 14:21:15.586 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 23/50, Train Loss: 0.06714651340971121, Val Loss: 0.07947019840011725 +2024-07-19 14:21:15.790 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 24/50, Train Loss: 0.06511069250267905, Val Loss: 0.0758808489788223 +2024-07-19 14:21:15.998 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 25/50, Train Loss: 0.06366853264940751, Val Loss: 0.07429210106666023 +2024-07-19 14:21:16.203 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 26/50, Train Loss: 0.062396853960849145, Val Loss: 0.07356513513101114 +2024-07-19 14:21:16.410 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 27/50, Train Loss: 0.0616972407175077, Val Loss: 0.0720107143593801 +2024-07-19 14:21:16.617 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 28/50, Train Loss: 0.06048578587738243, Val Loss: 0.071087796241045 +2024-07-19 14:21:16.825 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 29/50, Train Loss: 0.05979411173108462, Val Loss: 0.07083169904512328 +2024-07-19 14:21:17.036 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 30/50, Train Loss: 0.05880772070707502, Val Loss: 0.07007344973248404 +2024-07-19 14:21:17.241 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 31/50, Train Loss: 0.058391931793979696, Val Loss: 0.06941845922453983 +2024-07-19 14:21:17.453 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 32/50, Train Loss: 0.05849923445163546, Val Loss: 0.06877314037567861 +2024-07-19 14:21:17.656 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 33/50, Train Loss: 0.05748753289918642, Val Loss: 0.06863710566146954 +2024-07-19 14:21:17.867 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 34/50, Train Loss: 0.05690814584896371, Val Loss: 0.06796427353008373 +2024-07-19 14:21:18.075 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 35/50, Train Loss: 0.05637689196580165, Val Loss: 0.06801293941365706 +2024-07-19 14:21:18.285 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 36/50, Train Loss: 0.05599819083471556, Val Loss: 0.06755327030613616 +2024-07-19 14:21:18.489 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 37/50, Train Loss: 0.055659780530510725, Val Loss: 0.06706835832950231 +2024-07-19 14:21:18.694 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 38/50, Train Loss: 0.05548331977145092, Val Loss: 0.06685254390578012 +2024-07-19 14:21:18.901 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 39/50, Train Loss: 0.05537126324064023, Val Loss: 0.06664588312442238 +2024-07-19 14:21:19.105 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 40/50, Train Loss: 0.05490350813881771, Val Loss: 0.06653854593231871 +2024-07-19 14:21:19.312 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 41/50, Train Loss: 0.05447409795345487, Val Loss: 0.0659229852057792 +2024-07-19 14:21:19.517 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 42/50, Train Loss: 0.054653490213929, Val Loss: 0.06623860237163466 +2024-07-19 14:21:19.724 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 43/50, Train Loss: 0.054236944966219565, Val Loss: 0.0663274189306272 +2024-07-19 14:21:19.933 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 44/50, Train Loss: 0.0543473794854976, Val Loss: 0.06615865794388023 +2024-07-19 14:21:20.138 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 45/50, Train Loss: 0.05427958322940646, Val Loss: 0.06589078792446368 +2024-07-19 14:21:20.350 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 46/50, Train Loss: 0.05427731281599483, Val Loss: 0.06610595263742111 +2024-07-19 14:21:20.554 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 47/50, Train Loss: 0.05405113181552371, Val Loss: 0.0660479775554425 +2024-07-19 14:21:20.760 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 48/50, Train Loss: 0.053993275036682956, Val Loss: 0.06615109661140957 +2024-07-19 14:21:20.967 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 49/50, Train Loss: 0.054065762440095075, Val Loss: 0.06610826634474702 +2024-07-19 14:21:21.175 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 50/50, Train Loss: 0.05389266763184521, Val Loss: 0.06672814518616006 +2024-07-19 14:21:21.175 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Fold 0, MAPE: 3.99% +2024-07-19 14:21:21.480 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Training image saved at metaflow_models//bgd_education_100001_200000_LSTM//train_f0_bgd_education_100001_200000_LSTM.png +2024-07-19 14:21:21.960 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 1/50, Train Loss: 0.04330459257511243, Val Loss: 0.04837285294323354 +2024-07-19 14:21:22.335 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 2/50, Train Loss: 0.041534934550115504, Val Loss: 0.047411962437468605 +2024-07-19 14:21:22.729 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 3/50, Train Loss: 0.04109089104586268, Val Loss: 0.04660308255335769 +2024-07-19 14:21:23.119 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 4/50, Train Loss: 0.04104277251722061, Val Loss: 0.046273656944568094 +2024-07-19 14:21:23.509 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 5/50, Train Loss: 0.04118943484882786, Val Loss: 0.04669872137743074 +2024-07-19 14:21:23.883 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 6/50, Train Loss: 0.04097841960722453, Val Loss: 0.04611826114155151 +2024-07-19 14:21:24.269 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 7/50, Train Loss: 0.041098919888473535, Val Loss: 0.04556188269241436 +2024-07-19 14:21:24.667 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 8/50, Train Loss: 0.041383351033476935, Val Loss: 0.045782916046477655 +2024-07-19 14:21:25.035 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 9/50, Train Loss: 0.04097921796755431, Val Loss: 0.04539154766983277 +2024-07-19 14:21:25.418 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 10/50, Train Loss: 0.041583621287590834, Val Loss: 0.04551574270668868 +2024-07-19 14:21:25.798 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 11/50, Train Loss: 0.041541365727986376, Val Loss: 0.045614470601887315 +2024-07-19 14:21:26.175 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 12/50, Train Loss: 0.04143375403260532, Val Loss: 0.04545221301550801 +2024-07-19 14:21:26.566 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 13/50, Train Loss: 0.042336332726560226, Val Loss: 0.046172621181687794 +2024-07-19 14:21:26.940 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 14/50, Train Loss: 0.04170034904900479, Val Loss: 0.045320177148725535 +2024-07-19 14:21:27.307 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 15/50, Train Loss: 0.04177752014708846, Val Loss: 0.0451900286952386 +2024-07-19 14:21:27.684 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 16/50, Train Loss: 0.041947208293905, Val Loss: 0.04495062296454971 +2024-07-19 14:21:28.078 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 17/50, Train Loss: 0.04176756976912283, Val Loss: 0.04521587601787335 +2024-07-19 14:21:28.448 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 18/50, Train Loss: 0.041903104684124254, Val Loss: 0.045142337679862976 +2024-07-19 14:21:28.810 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 19/50, Train Loss: 0.042395192619464166, Val Loss: 0.045093173765250155 +2024-07-19 14:21:29.168 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 20/50, Train Loss: 0.04143021538955708, Val Loss: 0.04521403436523837 +2024-07-19 14:21:29.524 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 21/50, Train Loss: 0.042039839959103764, Val Loss: 0.0447104683498273 +2024-07-19 14:21:29.885 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 22/50, Train Loss: 0.04205108385482063, Val Loss: 0.044850716619072736 +2024-07-19 14:21:30.268 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 23/50, Train Loss: 0.04162498099142558, Val Loss: 0.04473233630729688 +2024-07-19 14:21:30.652 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 24/50, Train Loss: 0.04182405966295771, Val Loss: 0.04516326439743106 +2024-07-19 14:21:31.098 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 25/50, Train Loss: 0.04186509062268146, Val Loss: 0.04622493754770305 +2024-07-19 14:21:31.546 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 26/50, Train Loss: 0.041953868117846856, Val Loss: 0.04580752415632879 +2024-07-19 14:21:31.909 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 27/50, Train Loss: 0.04143015999500066, Val Loss: 0.04548831213567708 +2024-07-19 14:21:32.269 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 28/50, Train Loss: 0.041530903939106696, Val Loss: 0.046408250625874545 +2024-07-19 14:21:32.637 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 29/50, Train Loss: 0.04151532082014704, Val Loss: 0.04637291146492636 +2024-07-19 14:21:32.999 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 30/50, Train Loss: 0.040990341020977664, Val Loss: 0.046459057443850746 +2024-07-19 14:21:33.363 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 31/50, Train Loss: 0.04144014734519671, Val Loss: 0.04621450995674004 +2024-07-19 14:21:33.722 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 32/50, Train Loss: 0.04065760610344475, Val Loss: 0.04611682232368637 +2024-07-19 14:21:34.083 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 33/50, Train Loss: 0.04069917883775006, Val Loss: 0.04589583749908048 +2024-07-19 14:21:34.460 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 34/50, Train Loss: 0.04022628257740034, Val Loss: 0.04587580399537409 +2024-07-19 14:21:34.870 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 35/50, Train Loss: 0.04015373726923988, Val Loss: 0.04579420105831043 +2024-07-19 14:21:35.265 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 36/50, Train Loss: 0.04054071129082817, Val Loss: 0.04561642698339514 +2024-07-19 14:21:35.671 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 37/50, Train Loss: 0.04013947545461459, Val Loss: 0.04565703531576169 +2024-07-19 14:21:36.062 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 38/50, Train Loss: 0.0400132218707506, Val Loss: 0.045551677007932924 +2024-07-19 14:21:36.454 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 39/50, Train Loss: 0.03985884173275673, Val Loss: 0.04489880518333332 +2024-07-19 14:21:36.831 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 40/50, Train Loss: 0.03934836854571349, Val Loss: 0.04477375181945595 +2024-07-19 14:21:37.207 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 41/50, Train Loss: 0.0393295479198433, Val Loss: 0.0441797804590818 +2024-07-19 14:21:37.581 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 42/50, Train Loss: 0.039205878947491515, Val Loss: 0.044679776287159405 +2024-07-19 14:21:37.999 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 43/50, Train Loss: 0.039227793069734965, Val Loss: 0.044720933244035053 +2024-07-19 14:21:38.367 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 44/50, Train Loss: 0.038978051317677107, Val Loss: 0.0437415137484267 +2024-07-19 14:21:38.761 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 45/50, Train Loss: 0.03874035414359341, Val Loss: 0.044647996238357315 +2024-07-19 14:21:39.164 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 46/50, Train Loss: 0.03886784745814049, Val Loss: 0.04396667537858357 +2024-07-19 14:21:39.571 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 47/50, Train Loss: 0.03882063483844881, Val Loss: 0.043564553750125135 +2024-07-19 14:21:39.969 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 48/50, Train Loss: 0.03861116350003301, Val Loss: 0.044180603848921286 +2024-07-19 14:21:40.376 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 49/50, Train Loss: 0.038458211194366626, Val Loss: 0.043805053558301284 +2024-07-19 14:21:40.772 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 50/50, Train Loss: 0.038782666143897464, Val Loss: 0.04414082112143169 +2024-07-19 14:21:40.772 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Fold 1, MAPE: 3.86% +2024-07-19 14:21:40.884 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Training image saved at metaflow_models//bgd_education_100001_200000_LSTM//train_f1_bgd_education_100001_200000_LSTM.png +2024-07-19 14:21:41.412 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 1/50, Train Loss: 0.036514850485731255, Val Loss: 0.044348393139001484 +2024-07-19 14:21:41.928 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 2/50, Train Loss: 0.038017219051041384, Val Loss: 0.04324987092734994 +2024-07-19 14:21:42.441 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 3/50, Train Loss: 0.037221413681452924, Val Loss: 0.04630586343842584 +2024-07-19 14:21:42.984 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 4/50, Train Loss: 0.03678547892380844, Val Loss: 0.043399556766490675 +2024-07-19 14:21:43.536 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 5/50, Train Loss: 0.036468016186898405, Val Loss: 0.04312045041572403 +2024-07-19 14:21:44.109 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 6/50, Train Loss: 0.03628976277329705, Val Loss: 0.04336696087911322 +2024-07-19 14:21:44.678 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 7/50, Train Loss: 0.03638057732446627, Val Loss: 0.047419135685305334 +2024-07-19 14:21:45.245 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 8/50, Train Loss: 0.03611578731374307, Val Loss: 0.04663475270609598 +2024-07-19 14:21:45.800 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 9/50, Train Loss: 0.03592768391086296, Val Loss: 0.0463936352548567 +2024-07-19 14:21:46.354 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 10/50, Train Loss: 0.03573310151696205, Val Loss: 0.04432037356938865 +2024-07-19 14:21:46.910 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 11/50, Train Loss: 0.03577923412350091, Val Loss: 0.04424742714980164 +2024-07-19 14:21:47.473 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 12/50, Train Loss: 0.03578913164409724, Val Loss: 0.04655372426920646 +2024-07-19 14:21:48.061 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 13/50, Train Loss: 0.03546273975887082, Val Loss: 0.04549634587523099 +2024-07-19 14:21:48.602 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 14/50, Train Loss: 0.035470221936702725, Val Loss: 0.04624869427769571 +2024-07-19 14:21:49.133 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 15/50, Train Loss: 0.0353938442570242, Val Loss: 0.043087409255472386 +2024-07-19 14:21:49.653 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 16/50, Train Loss: 0.03570508679205721, Val Loss: 0.0453641326040835 +2024-07-19 14:21:50.174 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 17/50, Train Loss: 0.0351757290688428, Val Loss: 0.04567775271228842 +2024-07-19 14:21:50.704 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 18/50, Train Loss: 0.03522492777556181, Val Loss: 0.04625263936012178 +2024-07-19 14:21:51.249 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 19/50, Train Loss: 0.03527135124260729, Val Loss: 0.04536022296225702 +2024-07-19 14:21:51.825 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 20/50, Train Loss: 0.03511047088964419, Val Loss: 0.04523819060744466 +2024-07-19 14:21:52.374 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 21/50, Train Loss: 0.03503652960062027, Val Loss: 0.04249952839234391 +2024-07-19 14:21:52.987 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 22/50, Train Loss: 0.035233873315155505, Val Loss: 0.04540745304847086 +2024-07-19 14:21:53.576 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 23/50, Train Loss: 0.03493485002016479, Val Loss: 0.04507525003439671 +2024-07-19 14:21:54.155 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 24/50, Train Loss: 0.03498431322249499, Val Loss: 0.04268189116909697 +2024-07-19 14:21:54.753 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 25/50, Train Loss: 0.035032207789746195, Val Loss: 0.04561741151721091 +2024-07-19 14:21:55.313 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 26/50, Train Loss: 0.03490171405402097, Val Loss: 0.045775448551049105 +2024-07-19 14:21:55.883 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 27/50, Train Loss: 0.03479236889291893, Val Loss: 0.04495813138782978 +2024-07-19 14:21:56.512 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 28/50, Train Loss: 0.03463539550588889, Val Loss: 0.04243375990237739 +2024-07-19 14:21:57.092 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 29/50, Train Loss: 0.03503092459656976, Val Loss: 0.044897297850331745 +2024-07-19 14:21:57.683 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 30/50, Train Loss: 0.03479278526184234, Val Loss: 0.04496127764719564 +2024-07-19 14:21:58.273 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 31/50, Train Loss: 0.034699255651371046, Val Loss: 0.04466565607770069 +2024-07-19 14:21:58.864 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 32/50, Train Loss: 0.034535005180673164, Val Loss: 0.044864418740208085 +2024-07-19 14:21:59.456 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 33/50, Train Loss: 0.03481982624666257, Val Loss: 0.043396478820894216 +2024-07-19 14:22:00.017 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 34/50, Train Loss: 0.03529278112744743, Val Loss: 0.04554971982095692 +2024-07-19 14:22:00.593 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 35/50, Train Loss: 0.034798229672014715, Val Loss: 0.044733266421669235 +2024-07-19 14:22:01.120 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 36/50, Train Loss: 0.0345479138364846, Val Loss: 0.04506094567477703 +2024-07-19 14:22:01.642 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 37/50, Train Loss: 0.03446238240735097, Val Loss: 0.044104335980640876 +2024-07-19 14:22:02.167 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 38/50, Train Loss: 0.035165733759376136, Val Loss: 0.04474546473372627 +2024-07-19 14:22:02.692 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 39/50, Train Loss: 0.034524076228792014, Val Loss: 0.04476366564631462 +2024-07-19 14:22:03.210 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 40/50, Train Loss: 0.034634138660674746, Val Loss: 0.045040415650283966 +2024-07-19 14:22:03.770 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 41/50, Train Loss: 0.03450325700369748, Val Loss: 0.04238694130971625 +2024-07-19 14:22:04.373 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 42/50, Train Loss: 0.034725640900433064, Val Loss: 0.04478134733398218 +2024-07-19 14:22:04.950 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 43/50, Train Loss: 0.034751580096781254, Val Loss: 0.04348393509516845 +2024-07-19 14:22:05.512 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 44/50, Train Loss: 0.034809853593734175, Val Loss: 0.04391693157722821 +2024-07-19 14:22:06.075 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 45/50, Train Loss: 0.03449692644856193, Val Loss: 0.04487420789696075 +2024-07-19 14:22:06.664 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 46/50, Train Loss: 0.034196754731237886, Val Loss: 0.04542856890003424 +2024-07-19 14:22:07.246 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 47/50, Train Loss: 0.03423431361602111, Val Loss: 0.04526058050829011 +2024-07-19 14:22:07.858 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 48/50, Train Loss: 0.034146616963500326, Val Loss: 0.04547384406465131 +2024-07-19 14:22:08.386 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 49/50, Train Loss: 0.034110873768275436, Val Loss: 0.043570815661066284 +2024-07-19 14:22:08.966 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 50/50, Train Loss: 0.034275709600611166, Val Loss: 0.045539124893981056 +2024-07-19 14:22:08.966 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Fold 2, MAPE: 4.10% +2024-07-19 14:22:09.088 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Training image saved at metaflow_models//bgd_education_100001_200000_LSTM//train_f2_bgd_education_100001_200000_LSTM.png +2024-07-19 14:22:09.827 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 1/50, Train Loss: 0.03541323283610687, Val Loss: 0.03923451029569716 +2024-07-19 14:22:10.599 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 2/50, Train Loss: 0.03539660934052647, Val Loss: 0.03862792610920764 +2024-07-19 14:22:11.301 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 3/50, Train Loss: 0.0354328228237286, Val Loss: 0.03875982343546442 +2024-07-19 14:22:12.079 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 4/50, Train Loss: 0.03514257509720652, Val Loss: 0.03911786330108707 +2024-07-19 14:22:12.819 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 5/50, Train Loss: 0.03528036772949646, Val Loss: 0.0387982268993919 +2024-07-19 14:22:13.553 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 6/50, Train Loss: 0.03497500961314734, Val Loss: 0.038871500288715236 +2024-07-19 14:22:14.288 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 7/50, Train Loss: 0.03524014030978696, Val Loss: 0.039066010129612846 +2024-07-19 14:22:14.953 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 8/50, Train Loss: 0.03495275921966523, Val Loss: 0.03860098244370641 +2024-07-19 14:22:15.649 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 9/50, Train Loss: 0.03512551439032979, Val Loss: 0.03915777273878858 +2024-07-19 14:22:16.391 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 10/50, Train Loss: 0.03504569566974493, Val Loss: 0.03873792184969863 +2024-07-19 14:22:17.143 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 11/50, Train Loss: 0.03496257754119292, Val Loss: 0.03990044344115902 +2024-07-19 14:22:17.881 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 12/50, Train Loss: 0.0349786701573901, Val Loss: 0.03879910209090323 +2024-07-19 14:22:18.553 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 13/50, Train Loss: 0.03479728430560599, Val Loss: 0.039685492479317894 +2024-07-19 14:22:19.230 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 14/50, Train Loss: 0.034961009755322375, Val Loss: 0.0389660735790794 +2024-07-19 14:22:19.902 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 15/50, Train Loss: 0.03486304629389962, Val Loss: 0.0387408701149193 +2024-07-19 14:22:20.634 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 16/50, Train Loss: 0.034811200076484514, Val Loss: 0.039318751241709735 +2024-07-19 14:22:21.313 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 17/50, Train Loss: 0.03470172625902581, Val Loss: 0.03923226273744493 +2024-07-19 14:22:21.991 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 18/50, Train Loss: 0.034470962794267965, Val Loss: 0.03862141661748693 +2024-07-19 14:22:22.660 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 19/50, Train Loss: 0.03441427487318646, Val Loss: 0.03870197325139432 +2024-07-19 14:22:23.350 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 20/50, Train Loss: 0.03454238562908483, Val Loss: 0.0381052156759275 +2024-07-19 14:22:24.032 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 21/50, Train Loss: 0.03444639965891838, Val Loss: 0.03790567211202673 +2024-07-19 14:22:24.710 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 22/50, Train Loss: 0.03442841751679574, Val Loss: 0.03770956321543938 +2024-07-19 14:22:25.453 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 23/50, Train Loss: 0.03434604107823274, Val Loss: 0.038071452061066755 +2024-07-19 14:22:26.220 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 24/50, Train Loss: 0.034265363116888964, Val Loss: 0.03828899547256328 +2024-07-19 14:22:26.985 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 25/50, Train Loss: 0.03437381157370871, Val Loss: 0.03796148370649364 +2024-07-19 14:22:27.777 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 26/50, Train Loss: 0.03424933181488759, Val Loss: 0.0377789636117381 +2024-07-19 14:22:28.507 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 27/50, Train Loss: 0.03422545872577657, Val Loss: 0.03813745715730899 +2024-07-19 14:22:29.224 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 28/50, Train Loss: 0.03440503616600412, Val Loss: 0.03848662499237705 +2024-07-19 14:22:29.948 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 29/50, Train Loss: 0.03431197570968572, Val Loss: 0.0379898311519945 +2024-07-19 14:22:30.694 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 30/50, Train Loss: 0.034290812131374665, Val Loss: 0.038386582623462416 +2024-07-19 14:22:31.420 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 31/50, Train Loss: 0.0342107298209855, Val Loss: 0.03790342666812845 +2024-07-19 14:22:32.174 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 32/50, Train Loss: 0.03420649326010926, Val Loss: 0.038550745192411785 +2024-07-19 14:22:32.943 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 33/50, Train Loss: 0.03422731024608629, Val Loss: 0.037712036304779956 +2024-07-19 14:22:33.659 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 34/50, Train Loss: 0.03412840547269746, Val Loss: 0.03821161203086376 +2024-07-19 14:22:34.339 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 35/50, Train Loss: 0.03431647195646616, Val Loss: 0.03796323514669328 +2024-07-19 14:22:35.012 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 36/50, Train Loss: 0.03409023170856989, Val Loss: 0.0376332420352343 +2024-07-19 14:22:35.771 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 37/50, Train Loss: 0.034114687831128296, Val Loss: 0.037928362301475296 +2024-07-19 14:22:36.472 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 38/50, Train Loss: 0.034190057713079126, Val Loss: 0.03786536502475674 +2024-07-19 14:22:37.253 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 39/50, Train Loss: 0.03418253029199087, Val Loss: 0.03811935702892574 +2024-07-19 14:22:38.033 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 40/50, Train Loss: 0.034294154813946924, Val Loss: 0.03802486519153054 +2024-07-19 14:22:38.769 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 41/50, Train Loss: 0.03399780089010115, Val Loss: 0.03792449242963984 +2024-07-19 14:22:39.483 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 42/50, Train Loss: 0.03392547140637898, Val Loss: 0.03772180718747345 +2024-07-19 14:22:40.170 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 43/50, Train Loss: 0.03401763792060418, Val Loss: 0.03803059519142718 +2024-07-19 14:22:40.867 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 44/50, Train Loss: 0.03388183524398363, Val Loss: 0.037840195755298074 +2024-07-19 14:22:41.586 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 45/50, Train Loss: 0.03389238272729802, Val Loss: 0.03764701755465688 +2024-07-19 14:22:42.333 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 46/50, Train Loss: 0.033651370312763405, Val Loss: 0.03787680559263036 +2024-07-19 14:22:43.133 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 47/50, Train Loss: 0.03350837661387169, Val Loss: 0.037730130643860715 +2024-07-19 14:22:43.843 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 48/50, Train Loss: 0.033881964391633254, Val Loss: 0.03792419697384577 +2024-07-19 14:22:44.571 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 49/50, Train Loss: 0.03356959419452572, Val Loss: 0.03796375331443709 +2024-07-19 14:22:45.255 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 50/50, Train Loss: 0.03353236148720735, Val Loss: 0.03763998012889076 +2024-07-19 14:22:45.255 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Fold 3, MAPE: 3.48% +2024-07-19 14:22:45.363 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Training image saved at metaflow_models//bgd_education_100001_200000_LSTM//train_f3_bgd_education_100001_200000_LSTM.png +2024-07-19 14:22:46.225 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 1/50, Train Loss: 0.032838061288162905, Val Loss: 0.038485108497175013 +2024-07-19 14:22:47.148 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 2/50, Train Loss: 0.032851251016196965, Val Loss: 0.03818182168981513 +2024-07-19 14:22:48.017 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 3/50, Train Loss: 0.03252848034090066, Val Loss: 0.038187986642525006 +2024-07-19 14:22:48.860 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 4/50, Train Loss: 0.03267227209449469, Val Loss: 0.03854566681626681 +2024-07-19 14:22:49.755 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 5/50, Train Loss: 0.03254420896685058, Val Loss: 0.038197056465857734 +2024-07-19 14:22:50.600 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 6/50, Train Loss: 0.03262228056133448, Val Loss: 0.03841074681966691 +2024-07-19 14:22:51.434 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 7/50, Train Loss: 0.03248444848417581, Val Loss: 0.03848316530520852 +2024-07-19 14:22:52.261 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 8/50, Train Loss: 0.03246714387621198, Val Loss: 0.038210674767961375 +2024-07-19 14:22:53.091 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 9/50, Train Loss: 0.032604404858180454, Val Loss: 0.03831637378882717 +2024-07-19 14:22:53.922 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 10/50, Train Loss: 0.03245715880868854, Val Loss: 0.038174897180618464 +2024-07-19 14:22:54.779 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 11/50, Train Loss: 0.03259714518847701, Val Loss: 0.03847455102446917 +2024-07-19 14:22:55.650 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 12/50, Train Loss: 0.03236372367693828, Val Loss: 0.038157405533097884 +2024-07-19 14:22:56.551 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 13/50, Train Loss: 0.03249208222829051, Val Loss: 0.038550585760055364 +2024-07-19 14:22:57.425 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 14/50, Train Loss: 0.03236195347834747, Val Loss: 0.03846230247133487 +2024-07-19 14:22:58.307 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 15/50, Train Loss: 0.03249949059234215, Val Loss: 0.038620939830670484 +2024-07-19 14:22:59.196 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 16/50, Train Loss: 0.03242783075464623, Val Loss: 0.03857711773063686 +2024-07-19 14:23:00.084 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 17/50, Train Loss: 0.0323618628944342, Val Loss: 0.03797787845738836 +2024-07-19 14:23:00.996 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 18/50, Train Loss: 0.03234404802404262, Val Loss: 0.038503763492445685 +2024-07-19 14:23:01.867 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 19/50, Train Loss: 0.032220752899545235, Val Loss: 0.03864261301586757 +2024-07-19 14:23:02.721 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 20/50, Train Loss: 0.032440686015064245, Val Loss: 0.038552123549822216 +2024-07-19 14:23:03.592 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 21/50, Train Loss: 0.03231899402421582, Val Loss: 0.03774391597992665 +2024-07-19 14:23:04.481 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 22/50, Train Loss: 0.03223549537770041, Val Loss: 0.0379916649513148 +2024-07-19 14:23:05.347 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 23/50, Train Loss: 0.03215981004657326, Val Loss: 0.03833963364564084 +2024-07-19 14:23:06.267 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 24/50, Train Loss: 0.0322440269577143, Val Loss: 0.03768196052594765 +2024-07-19 14:23:07.180 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 25/50, Train Loss: 0.03201882855373097, Val Loss: 0.037650558342402045 +2024-07-19 14:23:08.076 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 26/50, Train Loss: 0.032106583733316305, Val Loss: 0.038069843641809514 +2024-07-19 14:23:08.976 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 27/50, Train Loss: 0.03216760985266704, Val Loss: 0.03737634651966997 +2024-07-19 14:23:09.870 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 28/50, Train Loss: 0.031817121287951104, Val Loss: 0.03750276595756814 +2024-07-19 14:23:10.747 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 29/50, Train Loss: 0.03205042560636015, Val Loss: 0.03739626745919924 +2024-07-19 14:23:11.585 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 30/50, Train Loss: 0.032135412629161565, Val Loss: 0.03765915943360006 +2024-07-19 14:23:12.461 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 31/50, Train Loss: 0.03191574634267734, Val Loss: 0.037397211316872285 +2024-07-19 14:23:13.353 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 32/50, Train Loss: 0.03195711087107986, Val Loss: 0.03758687843140718 +2024-07-19 14:23:14.256 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 33/50, Train Loss: 0.032051153849441925, Val Loss: 0.03710197667415078 +2024-07-19 14:23:15.133 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 34/50, Train Loss: 0.03187861433764408, Val Loss: 0.03714181940901924 +2024-07-19 14:23:15.997 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 35/50, Train Loss: 0.0319259403232526, Val Loss: 0.03740325575140682 +2024-07-19 14:23:16.874 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 36/50, Train Loss: 0.0318708701345783, Val Loss: 0.03731490339379053 +2024-07-19 14:23:17.752 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 37/50, Train Loss: 0.03179589861615018, Val Loss: 0.03796266260984782 +2024-07-19 14:23:18.667 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 38/50, Train Loss: 0.031605588395025704, Val Loss: 0.037191246560699234 +2024-07-19 14:23:19.566 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 39/50, Train Loss: 0.03181515595169513, Val Loss: 0.037614405708941256 +2024-07-19 14:23:20.470 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 40/50, Train Loss: 0.03165443097292395, Val Loss: 0.037285717304896666 +2024-07-19 14:23:21.382 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 41/50, Train Loss: 0.03146892881205121, Val Loss: 0.03743537928204279 +2024-07-19 14:23:22.272 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 42/50, Train Loss: 0.03166266679149735, Val Loss: 0.036977015083303325 +2024-07-19 14:23:23.152 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 43/50, Train Loss: 0.03153451276267623, Val Loss: 0.03778899747978996 +2024-07-19 14:23:24.028 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 44/50, Train Loss: 0.03141946793830657, Val Loss: 0.037221593631280435 +2024-07-19 14:23:24.920 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 45/50, Train Loss: 0.031591366116817184, Val Loss: 0.037270523053971494 +2024-07-19 14:23:25.795 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 46/50, Train Loss: 0.031222030469267577, Val Loss: 0.03706117221028418 +2024-07-19 14:23:26.701 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 47/50, Train Loss: 0.03139344440097665, Val Loss: 0.03685946354793536 +2024-07-19 14:23:27.573 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 48/50, Train Loss: 0.03121786782579435, Val Loss: 0.03716353976444618 +2024-07-19 14:23:28.450 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 49/50, Train Loss: 0.03137351019860624, Val Loss: 0.03657267262806763 +2024-07-19 14:23:29.338 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Epoch 50/50, Train Loss: 0.031179830104440122, Val Loss: 0.03632195273766647 +2024-07-19 14:23:29.338 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Fold 4, MAPE: 3.53% +2024-07-19 14:23:29.453 [6/cross_validate_train/47 (pid 98490)] INFO:__main__:Training image saved at metaflow_models//bgd_education_100001_200000_LSTM//train_f4_bgd_education_100001_200000_LSTM.png +2024-07-19 14:23:33.615 [6/cross_validate_train/47 (pid 98490)] Task finished successfully. +2024-07-19 14:23:33.648 [6/model_scores/48 (pid 99127)] Task is starting. +2024-07-19 14:23:35.118 [6/model_scores/48 (pid 99127)] INFO:__main__:Average Train Loss across all folds: 0.03833264699360026 +2024-07-19 14:23:39.074 [6/model_scores/48 (pid 99127)] INFO:__main__:Average Validation Loss across all folds: 0.046074004813626 +2024-07-19 14:23:39.074 [6/model_scores/48 (pid 99127)] INFO:__main__:Average MAPE across all folds: 3.79% +2024-07-19 14:23:39.075 [6/model_scores/48 (pid 99127)] Task finished successfully. +2024-07-19 14:23:39.113 [6/validate_model/49 (pid 99176)] Task is starting. +2024-07-19 14:23:40.577 [6/validate_model/49 (pid 99176)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:23:40.768 [6/validate_model/49 (pid 99176)] INFO:__main__:Test Set MAPE: 3.22% +2024-07-19 14:23:41.086 [6/validate_model/49 (pid 99176)] INFO:__main__:Test image saved at metaflow_models//bgd_education_100001_200000_LSTM//test_bgd_education_100001_200000_LSTM.png +2024-07-19 14:23:41.513 [6/validate_model/49 (pid 99176)] Task finished successfully. +2024-07-19 14:23:41.541 [6/log_model/50 (pid 99193)] Task is starting. +2024-07-19 14:23:43.039 [6/log_model/50 (pid 99193)] INFO:__main__:Logging model bgd_education_100001_200000_LSTM +2024-07-19 14:23:43.040 [6/log_model/50 (pid 99193)] INFO:__main__:Model logged at metaflow_models//bgd_education_100001_200000_LSTM//bgd_education_100001_200000_LSTM.pth +2024-07-19 14:23:46.940 [6/log_model/50 (pid 99193)] Task finished successfully. +2024-07-19 14:23:46.975 [6/end/51 (pid 99230)] Task is starting. +2024-07-19 14:23:48.440 [6/end/51 (pid 99230)] INFO:__main__:Pipeline end. +2024-07-19 14:23:48.762 [6/end/51 (pid 99230)] Task finished successfully. +2024-07-19 14:23:48.762 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/scaler_bgd_education_100001_200000_LSTM.pkl b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/scaler_bgd_education_100001_200000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..cc3dcfb9687ba475a71b9296c8e1a4f93901e05c --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/scaler_bgd_education_100001_200000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:326378ba4d6b42edfbdd8874206ee18b01d232615a8ba75cf881e12e0a85221e +size 557 diff --git a/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/test_bgd_education_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/test_bgd_education_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..da7d4de9cf290d435ee517a8504fe926caf43e05 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/test_bgd_education_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f0_bgd_education_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f0_bgd_education_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..1f6590e49d61612d0a3b570ef47ca5f5cdb4f79c Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f0_bgd_education_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f1_bgd_education_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f1_bgd_education_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..8a452ae9664ab29bf0cf9256648c373e6f31b750 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f1_bgd_education_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f2_bgd_education_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f2_bgd_education_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..2f7c0703f1653b9c49099c2c62106a8792974dde Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f2_bgd_education_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f3_bgd_education_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f3_bgd_education_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..f27f26825915f987247a9a0079c40c0879ddccf8 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f3_bgd_education_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f4_bgd_education_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f4_bgd_education_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..ba01582092c90c521607b1b46be56437b1409ac1 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_100001_200000_LSTM/train_f4_bgd_education_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/bgd_education_10001_25000_LSTM.pth b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/bgd_education_10001_25000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..1ca02889c8a910799dee1412ac8064500263e359 --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/bgd_education_10001_25000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e57a29e3500911df13528c56636ebd5d2610a1cb335e922dab51b08716aaa21b +size 46766 diff --git a/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/output.txt b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..d331039ca764cc2305712fe4da752ee6f1d6fd95 --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/output.txt @@ -0,0 +1,740 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:36:00.155 Workflow starting (run-id 11): +2024-07-19 14:36:00.232 [11/start/109 (pid 3170)] Task is starting. +2024-07-19 14:36:01.720 [11/start/109 (pid 3170)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:36:02.053 [11/start/109 (pid 3170)] Task finished successfully. +2024-07-19 14:36:02.079 [11/ingest/110 (pid 3187)] Task is starting. +2024-07-19 14:36:03.545 [11/ingest/110 (pid 3187)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:36:03.561 [11/ingest/110 (pid 3187)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:36:07.417 [11/ingest/110 (pid 3187)] Task finished successfully. +2024-07-19 14:36:07.448 [11/pick_2017_data/111 (pid 3217)] Task is starting. +2024-07-19 14:36:08.955 [11/pick_2017_data/111 (pid 3217)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:36:09.277 [11/pick_2017_data/111 (pid 3217)] Task finished successfully. +2024-07-19 14:36:09.308 [11/fill_missing_data/112 (pid 3230)] Task is starting. +2024-07-19 14:36:10.763 [11/fill_missing_data/112 (pid 3230)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] INFO:__main__:NaN counts per column: +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] INFO:__main__:Panther_education_Janis 13 +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] Panther_education_Diann 13 +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] Panther_education_Cleopatra 12 +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] Robin_education_Lizbeth 0 +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] Robin_education_Cecilia 0 +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] Robin_education_Takako 0 +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] Fox_education_Melvin 91 +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] dtype: int64 +2024-07-19 14:36:10.770 [11/fill_missing_data/112 (pid 3230)] --- Logging error --- +2024-07-19 14:36:10.770 [11/fill_missing_data/112 (pid 3230)] Traceback (most recent call last): +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] msg = self.format(record) +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] return fmt.format(record) +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] record.message = record.getMessage() +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] msg = msg % self.args +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] TypeError: not all arguments converted during string formatting +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] Call stack: +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] BGD_LinearFlow() +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] cli.main(self) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] return func(*args, **kwargs) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] return self.main(*args, **kwargs) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] rv = self.invoke(ctx) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] return callback(*args, **kwargs) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] task.run_step( +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] self._exec_step_function(step_func) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] step_function() +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:36:11.183 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:36:11.183 [11/fill_missing_data/112 (pid 3230)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:36:11.183 [11/fill_missing_data/112 (pid 3230)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:36:11.183 [11/fill_missing_data/112 (pid 3230)] Arguments: (129,) +2024-07-19 14:36:11.183 [11/fill_missing_data/112 (pid 3230)] Task finished successfully. +2024-07-19 14:36:11.211 [11/find_median/113 (pid 3242)] Task is starting. +2024-07-19 14:36:12.736 [11/find_median/113 (pid 3242)] INFO:__main__:Computing and using median.. +2024-07-19 14:36:13.256 [11/find_median/113 (pid 3242)] Task finished successfully. +2024-07-19 14:36:13.288 [11/aggregate_data/114 (pid 3259)] Task is starting. +2024-07-19 14:36:14.729 [11/aggregate_data/114 (pid 3259)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:36:18.536 [11/aggregate_data/114 (pid 3259)] Task finished successfully. +2024-07-19 14:36:18.564 [11/split_data/115 (pid 3298)] Task is starting. +2024-07-19 14:36:20.047 [11/split_data/115 (pid 3298)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:36:23.950 [11/split_data/115 (pid 3298)] Task finished successfully. +2024-07-19 14:36:23.981 [11/make_x_y/116 (pid 3335)] Task is starting. +2024-07-19 14:36:25.794 [11/make_x_y/116 (pid 3335)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:36:26.113 [11/make_x_y/116 (pid 3335)] Shape of y_train: (6978, 1) +2024-07-19 14:36:26.113 [11/make_x_y/116 (pid 3335)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:36:26.113 [11/make_x_y/116 (pid 3335)] Shape of y_test: (1722, 1) +2024-07-19 14:36:26.114 [11/make_x_y/116 (pid 3335)] Task finished successfully. +2024-07-19 14:36:26.141 [11/cross_validate_train/117 (pid 3346)] Task is starting. +2024-07-19 14:36:27.650 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Creating bgd_education_10001_25000_LSTM +2024-07-19 14:36:27.651 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Performing cross validation.. +2024-07-19 14:36:28.383 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 1/50, Train Loss: 0.19797251766195167, Val Loss: 0.15014330700442596 +2024-07-19 14:36:28.595 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 2/50, Train Loss: 0.17514856189892097, Val Loss: 0.12779866964430422 +2024-07-19 14:36:28.802 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 3/50, Train Loss: 0.14433262965365037, Val Loss: 0.09962357570593422 +2024-07-19 14:36:29.029 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 4/50, Train Loss: 0.1047034091442018, Val Loss: 0.07802563362024925 +2024-07-19 14:36:29.235 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 5/50, Train Loss: 0.09686178653626829, Val Loss: 0.07321215128979168 +2024-07-19 14:36:29.437 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 6/50, Train Loss: 0.09349673150761707, Val Loss: 0.06837816506221488 +2024-07-19 14:36:29.639 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 7/50, Train Loss: 0.0894528161230925, Val Loss: 0.065723525913986 +2024-07-19 14:36:29.836 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 8/50, Train Loss: 0.08772174409917884, Val Loss: 0.06432293345396584 +2024-07-19 14:36:30.037 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 9/50, Train Loss: 0.08584770439444361, Val Loss: 0.06353193687627444 +2024-07-19 14:36:30.237 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 10/50, Train Loss: 0.08212141551681466, Val Loss: 0.0612213125301374 +2024-07-19 14:36:30.441 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 11/50, Train Loss: 0.08023887600850414, Val Loss: 0.06008082436951431 +2024-07-19 14:36:30.660 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 12/50, Train Loss: 0.07849248619498433, Val Loss: 0.058635895064956436 +2024-07-19 14:36:30.862 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 13/50, Train Loss: 0.0776970414696513, Val Loss: 0.05850730403452306 +2024-07-19 14:36:31.058 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 14/50, Train Loss: 0.07597062857569875, Val Loss: 0.05658849625772721 +2024-07-19 14:36:31.261 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 15/50, Train Loss: 0.07479604706168175, Val Loss: 0.05588863462813803 +2024-07-19 14:36:31.461 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 16/50, Train Loss: 0.07304504352646905, Val Loss: 0.055954277918145466 +2024-07-19 14:36:31.663 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 17/50, Train Loss: 0.07126220990274404, Val Loss: 0.0520659259747009 +2024-07-19 14:36:31.869 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 18/50, Train Loss: 0.0708800417849341, Val Loss: 0.05758313804462149 +2024-07-19 14:36:32.074 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 19/50, Train Loss: 0.06929213211343095, Val Loss: 0.05179173836635577 +2024-07-19 14:36:32.288 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 20/50, Train Loss: 0.0687203007574017, Val Loss: 0.04958852914136809 +2024-07-19 14:36:32.497 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 21/50, Train Loss: 0.06795617525239249, Val Loss: 0.04946633695146522 +2024-07-19 14:36:32.705 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 22/50, Train Loss: 0.06701322196907289, Val Loss: 0.04908546125768004 +2024-07-19 14:36:32.928 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 23/50, Train Loss: 0.06661012909702353, Val Loss: 0.04897879406407073 +2024-07-19 14:36:33.137 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 24/50, Train Loss: 0.06591930059162346, Val Loss: 0.04870671688302143 +2024-07-19 14:36:33.337 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 25/50, Train Loss: 0.06576616377443881, Val Loss: 0.04853754827903735 +2024-07-19 14:36:33.540 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 26/50, Train Loss: 0.06593930942786706, Val Loss: 0.049189041746226514 +2024-07-19 14:36:33.746 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 27/50, Train Loss: 0.06563938278201464, Val Loss: 0.0487773884087801 +2024-07-19 14:36:33.950 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 28/50, Train Loss: 0.06580364110099303, Val Loss: 0.04922113285676853 +2024-07-19 14:36:34.154 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 29/50, Train Loss: 0.06594552864899507, Val Loss: 0.04897864006862447 +2024-07-19 14:36:34.354 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 30/50, Train Loss: 0.06536417852181035, Val Loss: 0.04919276774130963 +2024-07-19 14:36:34.557 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 31/50, Train Loss: 0.06636044669997047, Val Loss: 0.049488096170731494 +2024-07-19 14:36:34.758 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 32/50, Train Loss: 0.06568313863229107, Val Loss: 0.04964366127308961 +2024-07-19 14:36:34.963 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 33/50, Train Loss: 0.0659462893130006, Val Loss: 0.04960889182984829 +2024-07-19 14:36:35.171 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 34/50, Train Loss: 0.06579162260970554, Val Loss: 0.04954216694711028 +2024-07-19 14:36:35.374 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 35/50, Train Loss: 0.06606265595434485, Val Loss: 0.05008147964002313 +2024-07-19 14:36:35.580 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 36/50, Train Loss: 0.06632496476978869, Val Loss: 0.049723700141987286 +2024-07-19 14:36:35.784 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 37/50, Train Loss: 0.06577914731728064, Val Loss: 0.049998596209932016 +2024-07-19 14:36:35.988 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 38/50, Train Loss: 0.06703094010417526, Val Loss: 0.051861291650582 +2024-07-19 14:36:36.190 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 39/50, Train Loss: 0.06739073901160343, Val Loss: 0.05196037536134591 +2024-07-19 14:36:36.396 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 40/50, Train Loss: 0.0666744011278088, Val Loss: 0.05074209709827964 +2024-07-19 14:36:36.609 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 41/50, Train Loss: 0.06594693670804436, Val Loss: 0.05069820079449061 +2024-07-19 14:36:36.821 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 42/50, Train Loss: 0.06623190772291776, Val Loss: 0.05083717204429008 +2024-07-19 14:36:37.044 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 43/50, Train Loss: 0.06604887650826492, Val Loss: 0.05004260180568373 +2024-07-19 14:36:37.262 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 44/50, Train Loss: 0.06571391864201508, Val Loss: 0.05029668613664202 +2024-07-19 14:36:37.476 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 45/50, Train Loss: 0.06583269755985285, Val Loss: 0.0499365529599222 +2024-07-19 14:36:37.690 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 46/50, Train Loss: 0.06569903318745059, Val Loss: 0.050371618186299864 +2024-07-19 14:36:37.914 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 47/50, Train Loss: 0.0657938599989221, Val Loss: 0.049684156286152636 +2024-07-19 14:36:38.123 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 48/50, Train Loss: 0.0655475650989526, Val Loss: 0.049675894951498184 +2024-07-19 14:36:38.325 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 49/50, Train Loss: 0.06525311019976397, Val Loss: 0.049747749407951895 +2024-07-19 14:36:38.532 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 50/50, Train Loss: 0.06531366484390723, Val Loss: 0.04972328265776505 +2024-07-19 14:36:38.532 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Fold 0, MAPE: 8.54% +2024-07-19 14:36:38.845 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Training image saved at metaflow_models//bgd_education_10001_25000_LSTM//train_f0_bgd_education_10001_25000_LSTM.png +2024-07-19 14:36:39.298 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 1/50, Train Loss: 0.05334794995923565, Val Loss: 0.04642638986980593 +2024-07-19 14:36:39.654 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 2/50, Train Loss: 0.05263861141180339, Val Loss: 0.04575750850946517 +2024-07-19 14:36:40.055 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 3/50, Train Loss: 0.05268247285219904, Val Loss: 0.04541264373708416 +2024-07-19 14:36:40.451 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 4/50, Train Loss: 0.05254497851104769, Val Loss: 0.04566115276837671 +2024-07-19 14:36:40.837 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 5/50, Train Loss: 0.05252752858788183, Val Loss: 0.04505599707969137 +2024-07-19 14:36:41.223 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 6/50, Train Loss: 0.052530216716536106, Val Loss: 0.04514092393219471 +2024-07-19 14:36:41.584 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 7/50, Train Loss: 0.052383239317226084, Val Loss: 0.045315639392749685 +2024-07-19 14:36:41.954 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 8/50, Train Loss: 0.05266425179394141, Val Loss: 0.04518442374427576 +2024-07-19 14:36:42.334 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 9/50, Train Loss: 0.052271149210529784, Val Loss: 0.04500326358184621 +2024-07-19 14:36:42.697 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 10/50, Train Loss: 0.05226579443742967, Val Loss: 0.045159242896212114 +2024-07-19 14:36:43.075 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 11/50, Train Loss: 0.05236061221014147, Val Loss: 0.045211168459138355 +2024-07-19 14:36:43.436 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 12/50, Train Loss: 0.052199146391390124, Val Loss: 0.04483498094251027 +2024-07-19 14:36:43.800 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 13/50, Train Loss: 0.05225501712156485, Val Loss: 0.04506133803846063 +2024-07-19 14:36:44.176 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 14/50, Train Loss: 0.052129352108052335, Val Loss: 0.04474984763844593 +2024-07-19 14:36:44.540 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 15/50, Train Loss: 0.05236654667413398, Val Loss: 0.04507314202350539 +2024-07-19 14:36:44.904 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 16/50, Train Loss: 0.0522019861342564, Val Loss: 0.044788782308633264 +2024-07-19 14:36:45.272 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 17/50, Train Loss: 0.05237083660106953, Val Loss: 0.04512692806688515 +2024-07-19 14:36:45.641 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 18/50, Train Loss: 0.0520488430477985, Val Loss: 0.04488309085167743 +2024-07-19 14:36:46.005 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 19/50, Train Loss: 0.052236516105189715, Val Loss: 0.045041527850805105 +2024-07-19 14:36:46.373 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 20/50, Train Loss: 0.05227812887360788, Val Loss: 0.04488217231591005 +2024-07-19 14:36:46.736 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 21/50, Train Loss: 0.05202083710632096, Val Loss: 0.044997622988916734 +2024-07-19 14:36:47.121 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 22/50, Train Loss: 0.05204749523266537, Val Loss: 0.04509074054658413 +2024-07-19 14:36:47.473 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 23/50, Train Loss: 0.05197779466844585, Val Loss: 0.0450332592669371 +2024-07-19 14:36:47.839 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 24/50, Train Loss: 0.051840605137691106, Val Loss: 0.04501687725250785 +2024-07-19 14:36:48.236 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 25/50, Train Loss: 0.051779731903990656, Val Loss: 0.04490226643109644 +2024-07-19 14:36:48.604 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 26/50, Train Loss: 0.05178539294188153, Val Loss: 0.04475543079142635 +2024-07-19 14:36:48.972 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 27/50, Train Loss: 0.05210719474476494, Val Loss: 0.04473010022696611 +2024-07-19 14:36:49.336 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 28/50, Train Loss: 0.052195944223706034, Val Loss: 0.044579835960993894 +2024-07-19 14:36:49.696 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 29/50, Train Loss: 0.05178969123796241, Val Loss: 0.04514074783671547 +2024-07-19 14:36:50.093 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 30/50, Train Loss: 0.05163236832475825, Val Loss: 0.04509339078858092 +2024-07-19 14:36:50.445 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 31/50, Train Loss: 0.051571026393403746, Val Loss: 0.04467285525154423 +2024-07-19 14:36:50.806 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 32/50, Train Loss: 0.051809429458967625, Val Loss: 0.04514618731431059 +2024-07-19 14:36:51.157 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 33/50, Train Loss: 0.051458678221049374, Val Loss: 0.044790882566893425 +2024-07-19 14:36:51.511 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 34/50, Train Loss: 0.051378938790461785, Val Loss: 0.045185228054587905 +2024-07-19 14:36:51.867 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 35/50, Train Loss: 0.05162312478235323, Val Loss: 0.044704818342988555 +2024-07-19 14:36:52.221 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 36/50, Train Loss: 0.05129219068546001, Val Loss: 0.04439552616630051 +2024-07-19 14:36:52.578 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 37/50, Train Loss: 0.05135445294212805, Val Loss: 0.04485426601525899 +2024-07-19 14:36:52.954 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 38/50, Train Loss: 0.05116932290567927, Val Loss: 0.044336191705755285 +2024-07-19 14:36:53.318 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 39/50, Train Loss: 0.05148654323938775, Val Loss: 0.04468697460519301 +2024-07-19 14:36:53.687 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 40/50, Train Loss: 0.051213950480092064, Val Loss: 0.04455511946533177 +2024-07-19 14:36:54.057 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 41/50, Train Loss: 0.05108449942343039, Val Loss: 0.044559813029057274 +2024-07-19 14:36:54.427 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 42/50, Train Loss: 0.05150617661643518, Val Loss: 0.0444988407496665 +2024-07-19 14:36:54.794 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 43/50, Train Loss: 0.05069123180455541, Val Loss: 0.044167778228183054 +2024-07-19 14:36:55.163 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 44/50, Train Loss: 0.05113208176542635, Val Loss: 0.04400145584667051 +2024-07-19 14:36:55.555 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 45/50, Train Loss: 0.05073192246156196, Val Loss: 0.04403940326458699 +2024-07-19 14:36:55.950 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 46/50, Train Loss: 0.05077979905046012, Val Loss: 0.04442061423449903 +2024-07-19 14:36:56.348 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 47/50, Train Loss: 0.05096079508633646, Val Loss: 0.04375633481587913 +2024-07-19 14:36:56.756 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 48/50, Train Loss: 0.05056336210810975, Val Loss: 0.043718333884670925 +2024-07-19 14:36:57.128 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 49/50, Train Loss: 0.05064388346692471, Val Loss: 0.043988592066877594 +2024-07-19 14:36:57.508 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 50/50, Train Loss: 0.05075103383868525, Val Loss: 0.04375057984646913 +2024-07-19 14:36:57.508 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Fold 1, MAPE: 9.85% +2024-07-19 14:36:57.615 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Training image saved at metaflow_models//bgd_education_10001_25000_LSTM//train_f1_bgd_education_10001_25000_LSTM.png +2024-07-19 14:36:58.171 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 1/50, Train Loss: 0.04404000382531773, Val Loss: 0.0465345659570114 +2024-07-19 14:36:58.697 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 2/50, Train Loss: 0.044136572866277264, Val Loss: 0.04580656705877265 +2024-07-19 14:36:59.241 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 3/50, Train Loss: 0.04371050685982813, Val Loss: 0.04635051834220822 +2024-07-19 14:36:59.758 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 4/50, Train Loss: 0.04368607864122499, Val Loss: 0.045663217535695515 +2024-07-19 14:37:00.297 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 5/50, Train Loss: 0.043475410393015904, Val Loss: 0.04597710032720823 +2024-07-19 14:37:00.843 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 6/50, Train Loss: 0.04337667211551558, Val Loss: 0.04588827838164729 +2024-07-19 14:37:01.370 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 7/50, Train Loss: 0.04342214592139829, Val Loss: 0.04596300116060553 +2024-07-19 14:37:01.896 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 8/50, Train Loss: 0.043268177133392205, Val Loss: 0.04633869724096479 +2024-07-19 14:37:02.460 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 9/50, Train Loss: 0.04337740670889616, Val Loss: 0.04640790477797792 +2024-07-19 14:37:02.985 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 10/50, Train Loss: 0.04322327451611107, Val Loss: 0.04702417698462267 +2024-07-19 14:37:03.503 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 11/50, Train Loss: 0.0431099208579822, Val Loss: 0.0458704572976441 +2024-07-19 14:37:04.020 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 12/50, Train Loss: 0.042930258099328385, Val Loss: 0.04625923397975999 +2024-07-19 14:37:04.539 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 13/50, Train Loss: 0.04282930036160079, Val Loss: 0.04646803967251971 +2024-07-19 14:37:05.068 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 14/50, Train Loss: 0.042692117697813295, Val Loss: 0.046940902550075506 +2024-07-19 14:37:05.585 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 15/50, Train Loss: 0.04268868071111766, Val Loss: 0.047307459083763326 +2024-07-19 14:37:06.109 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 16/50, Train Loss: 0.04257604655894366, Val Loss: 0.04742255082001557 +2024-07-19 14:37:06.634 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 17/50, Train Loss: 0.042592469941486015, Val Loss: 0.046716608761532885 +2024-07-19 14:37:07.166 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 18/50, Train Loss: 0.04241993789645759, Val Loss: 0.047727875059118144 +2024-07-19 14:37:07.695 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 19/50, Train Loss: 0.04249286038631743, Val Loss: 0.047469788608518804 +2024-07-19 14:37:08.231 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 20/50, Train Loss: 0.042377771183171056, Val Loss: 0.0474879617324552 +2024-07-19 14:37:08.772 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 21/50, Train Loss: 0.04254573786800558, Val Loss: 0.047984037548303604 +2024-07-19 14:37:09.304 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 22/50, Train Loss: 0.04240252986888994, Val Loss: 0.04683976142188987 +2024-07-19 14:37:09.840 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 23/50, Train Loss: 0.04227475742386146, Val Loss: 0.04748447148783787 +2024-07-19 14:37:10.371 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 24/50, Train Loss: 0.042356361550363625, Val Loss: 0.04769487583355324 +2024-07-19 14:37:10.899 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 25/50, Train Loss: 0.04234841879118573, Val Loss: 0.04712859516006869 +2024-07-19 14:37:11.442 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 26/50, Train Loss: 0.042137994922020215, Val Loss: 0.04776595125125872 +2024-07-19 14:37:11.966 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 27/50, Train Loss: 0.042151151902296326, Val Loss: 0.047661575312550004 +2024-07-19 14:37:12.501 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 28/50, Train Loss: 0.04210782862183723, Val Loss: 0.047624003142118454 +2024-07-19 14:37:13.036 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 29/50, Train Loss: 0.04204582108015364, Val Loss: 0.047392892273696696 +2024-07-19 14:37:13.564 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 30/50, Train Loss: 0.04186097998172045, Val Loss: 0.04844735441981135 +2024-07-19 14:37:14.086 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 31/50, Train Loss: 0.04232215082103556, Val Loss: 0.04715585960326968 +2024-07-19 14:37:14.610 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 32/50, Train Loss: 0.04240955893288959, Val Loss: 0.046777633446696644 +2024-07-19 14:37:15.136 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 33/50, Train Loss: 0.041922089406712486, Val Loss: 0.0472343688881075 +2024-07-19 14:37:15.656 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 34/50, Train Loss: 0.041843760419975624, Val Loss: 0.04694130241468146 +2024-07-19 14:37:16.184 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 35/50, Train Loss: 0.041958536427806725, Val Loss: 0.04597180346782143 +2024-07-19 14:37:16.727 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 36/50, Train Loss: 0.04180698523467237, Val Loss: 0.04701597233479087 +2024-07-19 14:37:17.264 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 37/50, Train Loss: 0.0418121226131916, Val Loss: 0.046497784554958344 +2024-07-19 14:37:17.781 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 38/50, Train Loss: 0.04186430288986726, Val Loss: 0.046664330151838226 +2024-07-19 14:37:18.324 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 39/50, Train Loss: 0.042040928470140154, Val Loss: 0.04720185364823084 +2024-07-19 14:37:18.842 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 40/50, Train Loss: 0.041782039353115995, Val Loss: 0.04687651599178443 +2024-07-19 14:37:19.385 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 41/50, Train Loss: 0.04180769309062849, Val Loss: 0.04611809984654994 +2024-07-19 14:37:19.902 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 42/50, Train Loss: 0.041602463664656336, Val Loss: 0.046356425746469886 +2024-07-19 14:37:20.419 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 43/50, Train Loss: 0.04166810585355217, Val Loss: 0.046065169965495936 +2024-07-19 14:37:20.927 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 44/50, Train Loss: 0.04168162462724881, Val Loss: 0.045783290186443844 +2024-07-19 14:37:21.449 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 45/50, Train Loss: 0.04155784819952466, Val Loss: 0.04589605376728483 +2024-07-19 14:37:21.977 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 46/50, Train Loss: 0.0417227621444247, Val Loss: 0.04593709544152827 +2024-07-19 14:37:22.504 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 47/50, Train Loss: 0.04150999102064155, Val Loss: 0.04624788976601652 +2024-07-19 14:37:23.010 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 48/50, Train Loss: 0.0416919909756292, Val Loss: 0.04626096276616728 +2024-07-19 14:37:23.522 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 49/50, Train Loss: 0.041704552468251097, Val Loss: 0.04548898017084276 +2024-07-19 14:37:24.026 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 50/50, Train Loss: 0.04148748745633797, Val Loss: 0.04600072284606663 +2024-07-19 14:37:24.026 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Fold 2, MAPE: 9.56% +2024-07-19 14:37:24.137 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Training image saved at metaflow_models//bgd_education_10001_25000_LSTM//train_f2_bgd_education_10001_25000_LSTM.png +2024-07-19 14:37:24.788 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 1/50, Train Loss: 0.042003396107521775, Val Loss: 0.048093531331097755 +2024-07-19 14:37:25.453 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 2/50, Train Loss: 0.0423362428603107, Val Loss: 0.049148772868352966 +2024-07-19 14:37:26.134 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 3/50, Train Loss: 0.042316786817287746, Val Loss: 0.04776508466818848 +2024-07-19 14:37:26.799 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 4/50, Train Loss: 0.04195858899197758, Val Loss: 0.048976839696233336 +2024-07-19 14:37:27.475 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 5/50, Train Loss: 0.0417982736245206, Val Loss: 0.05142395701762792 +2024-07-19 14:37:28.161 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 6/50, Train Loss: 0.04234177754451967, Val Loss: 0.05565545939513155 +2024-07-19 14:37:28.839 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 7/50, Train Loss: 0.04254441408517018, Val Loss: 0.049254131125839984 +2024-07-19 14:37:29.524 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 8/50, Train Loss: 0.04184044360451094, Val Loss: 0.048744348708439515 +2024-07-19 14:37:30.203 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 9/50, Train Loss: 0.04154440571796404, Val Loss: 0.04896461706910584 +2024-07-19 14:37:30.897 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 10/50, Train Loss: 0.04126234654949544, Val Loss: 0.049303647986537705 +2024-07-19 14:37:31.555 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 11/50, Train Loss: 0.04137610909465241, Val Loss: 0.04697415645460825 +2024-07-19 14:37:32.244 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 12/50, Train Loss: 0.04171608116681853, Val Loss: 0.046724096141956946 +2024-07-19 14:37:32.924 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 13/50, Train Loss: 0.04153271560391335, Val Loss: 0.046922603017977765 +2024-07-19 14:37:33.636 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 14/50, Train Loss: 0.04104690577783813, Val Loss: 0.04816101929424582 +2024-07-19 14:37:34.310 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 15/50, Train Loss: 0.040956567717741615, Val Loss: 0.04762298029822272 +2024-07-19 14:37:34.987 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 16/50, Train Loss: 0.04085094268650633, Val Loss: 0.047943376105379416 +2024-07-19 14:37:35.669 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 17/50, Train Loss: 0.04086437598125984, Val Loss: 0.04691036372772745 +2024-07-19 14:37:36.346 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 18/50, Train Loss: 0.04140452466496866, Val Loss: 0.047208450784957084 +2024-07-19 14:37:37.032 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 19/50, Train Loss: 0.041436192043738, Val Loss: 0.046366857717166074 +2024-07-19 14:37:37.705 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 20/50, Train Loss: 0.04108882712021674, Val Loss: 0.04737649535810625 +2024-07-19 14:37:38.395 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 21/50, Train Loss: 0.040759948222604515, Val Loss: 0.04822838512828221 +2024-07-19 14:37:39.103 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 22/50, Train Loss: 0.04081232077761056, Val Loss: 0.04774841117496426 +2024-07-19 14:37:39.800 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 23/50, Train Loss: 0.04071781578894756, Val Loss: 0.04631766722210356 +2024-07-19 14:37:40.489 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 24/50, Train Loss: 0.04064983148638108, Val Loss: 0.047415908526729895 +2024-07-19 14:37:41.198 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 25/50, Train Loss: 0.040520442598690726, Val Loss: 0.047231852555194416 +2024-07-19 14:37:41.883 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 26/50, Train Loss: 0.041158687706067135, Val Loss: 0.047365163931170025 +2024-07-19 14:37:42.579 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 27/50, Train Loss: 0.040402468319420945, Val Loss: 0.04741986196588825 +2024-07-19 14:37:43.265 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 28/50, Train Loss: 0.04083334808939532, Val Loss: 0.047154563806346944 +2024-07-19 14:37:43.942 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 29/50, Train Loss: 0.04048101116635212, Val Loss: 0.0465971391043953 +2024-07-19 14:37:44.628 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 30/50, Train Loss: 0.040618285434703305, Val Loss: 0.04642675006510438 +2024-07-19 14:37:45.306 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 31/50, Train Loss: 0.040577885503434157, Val Loss: 0.0466159498067321 +2024-07-19 14:37:45.988 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 32/50, Train Loss: 0.04036163250367119, Val Loss: 0.04515554126654122 +2024-07-19 14:37:46.680 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 33/50, Train Loss: 0.0404811700780506, Val Loss: 0.04730850417871733 +2024-07-19 14:37:47.375 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 34/50, Train Loss: 0.04022354106992891, Val Loss: 0.045511294307338225 +2024-07-19 14:37:48.068 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 35/50, Train Loss: 0.04028441600042255, Val Loss: 0.04578603426548275 +2024-07-19 14:37:48.733 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 36/50, Train Loss: 0.0404817765221408, Val Loss: 0.04532950185239315 +2024-07-19 14:37:49.393 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 37/50, Train Loss: 0.04026450746220677, Val Loss: 0.04572357197065611 +2024-07-19 14:37:50.062 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 38/50, Train Loss: 0.0402906309328463, Val Loss: 0.0458902134685903 +2024-07-19 14:37:50.750 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 39/50, Train Loss: 0.0400975430894592, Val Loss: 0.046021908622335746 +2024-07-19 14:37:51.439 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 40/50, Train Loss: 0.04014331483830736, Val Loss: 0.04488803511737166 +2024-07-19 14:37:52.118 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 41/50, Train Loss: 0.0403561287955062, Val Loss: 0.04847647818560536 +2024-07-19 14:37:52.810 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 42/50, Train Loss: 0.04009472369535329, Val Loss: 0.04694345301470241 +2024-07-19 14:37:53.499 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 43/50, Train Loss: 0.039984828065315337, Val Loss: 0.04602525071115107 +2024-07-19 14:37:54.182 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 44/50, Train Loss: 0.0399398756634495, Val Loss: 0.04728977578515942 +2024-07-19 14:37:54.858 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 45/50, Train Loss: 0.040068122290381016, Val Loss: 0.04650278188086845 +2024-07-19 14:37:55.534 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 46/50, Train Loss: 0.03999284265741502, Val Loss: 0.04641680102291945 +2024-07-19 14:37:56.225 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 47/50, Train Loss: 0.040226891879247474, Val Loss: 0.046315215024593716 +2024-07-19 14:37:56.940 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 48/50, Train Loss: 0.03978122479907454, Val Loss: 0.04565055376371822 +2024-07-19 14:37:57.636 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 49/50, Train Loss: 0.03996644038962175, Val Loss: 0.04656269592610565 +2024-07-19 14:37:58.338 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 50/50, Train Loss: 0.039700915781806595, Val Loss: 0.04562826791929232 +2024-07-19 14:37:58.339 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Fold 3, MAPE: 8.39% +2024-07-19 14:37:58.451 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Training image saved at metaflow_models//bgd_education_10001_25000_LSTM//train_f3_bgd_education_10001_25000_LSTM.png +2024-07-19 14:37:59.306 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 1/50, Train Loss: 0.04048666095483925, Val Loss: 0.0443693130100901 +2024-07-19 14:38:00.205 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 2/50, Train Loss: 0.04040848478101767, Val Loss: 0.04501017417154602 +2024-07-19 14:38:01.063 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 3/50, Train Loss: 0.04025171052377958, Val Loss: 0.04429626087280544 +2024-07-19 14:38:01.905 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 4/50, Train Loss: 0.04011439896383128, Val Loss: 0.04445143773950435 +2024-07-19 14:38:02.765 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 5/50, Train Loss: 0.04056780162052466, Val Loss: 0.044704470531763255 +2024-07-19 14:38:03.641 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 6/50, Train Loss: 0.04018341346674568, Val Loss: 0.044805992168147825 +2024-07-19 14:38:04.472 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 7/50, Train Loss: 0.04056522249152045, Val Loss: 0.04543484203718804 +2024-07-19 14:38:05.311 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 8/50, Train Loss: 0.04033097038864271, Val Loss: 0.04517062677926308 +2024-07-19 14:38:06.160 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 9/50, Train Loss: 0.040265387507503504, Val Loss: 0.04535295640596667 +2024-07-19 14:38:06.998 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 10/50, Train Loss: 0.040131162596191025, Val Loss: 0.04656464556181753 +2024-07-19 14:38:07.831 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 11/50, Train Loss: 0.039733095708620415, Val Loss: 0.04575180957043493 +2024-07-19 14:38:08.693 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 12/50, Train Loss: 0.04029662592930126, Val Loss: 0.046208911424351705 +2024-07-19 14:38:09.548 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 13/50, Train Loss: 0.04044299898157408, Val Loss: 0.046735621812577184 +2024-07-19 14:38:10.395 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 14/50, Train Loss: 0.03984693614356629, Val Loss: 0.04533236370598142 +2024-07-19 14:38:11.263 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 15/50, Train Loss: 0.03969116726439897, Val Loss: 0.045837341279194165 +2024-07-19 14:38:12.105 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 16/50, Train Loss: 0.03964883313197028, Val Loss: 0.04540137956674035 +2024-07-19 14:38:12.966 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 17/50, Train Loss: 0.03959229805476063, Val Loss: 0.04571086817697899 +2024-07-19 14:38:13.834 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 18/50, Train Loss: 0.04033251044309729, Val Loss: 0.04575876992296528 +2024-07-19 14:38:14.688 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 19/50, Train Loss: 0.03941042832825538, Val Loss: 0.045973113939367434 +2024-07-19 14:38:15.538 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 20/50, Train Loss: 0.039706775662745095, Val Loss: 0.04625965065851405 +2024-07-19 14:38:16.387 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 21/50, Train Loss: 0.0399324123461086, Val Loss: 0.04617584844094676 +2024-07-19 14:38:17.240 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 22/50, Train Loss: 0.0394917041789945, Val Loss: 0.046894843815951735 +2024-07-19 14:38:18.096 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 23/50, Train Loss: 0.0399548434191844, Val Loss: 0.04584972011680539 +2024-07-19 14:38:18.946 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 24/50, Train Loss: 0.039478440733196646, Val Loss: 0.04816871347862321 +2024-07-19 14:38:19.804 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 25/50, Train Loss: 0.03969186054194694, Val Loss: 0.046538514890582174 +2024-07-19 14:38:20.671 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 26/50, Train Loss: 0.03954760256417832, Val Loss: 0.04690802605772341 +2024-07-19 14:38:21.531 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 27/50, Train Loss: 0.03942867860730205, Val Loss: 0.047776546933361 +2024-07-19 14:38:22.378 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 28/50, Train Loss: 0.039820433041633484, Val Loss: 0.04700441240660242 +2024-07-19 14:38:23.235 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 29/50, Train Loss: 0.04006629556437934, Val Loss: 0.04655849898385035 +2024-07-19 14:38:24.073 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 30/50, Train Loss: 0.03933858941053296, Val Loss: 0.04747857332128931 +2024-07-19 14:38:24.918 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 31/50, Train Loss: 0.03954732533708051, Val Loss: 0.0458545001928468 +2024-07-19 14:38:25.767 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 32/50, Train Loss: 0.039117485080119016, Val Loss: 0.04771461627269919 +2024-07-19 14:38:26.660 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 33/50, Train Loss: 0.03929280494288592, Val Loss: 0.04647941127218105 +2024-07-19 14:38:27.517 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 34/50, Train Loss: 0.03960160928481555, Val Loss: 0.04570236842374544 +2024-07-19 14:38:28.380 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 35/50, Train Loss: 0.039335569694310756, Val Loss: 0.04757520161267068 +2024-07-19 14:38:29.226 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 36/50, Train Loss: 0.03933792484535293, Val Loss: 0.04677716312879646 +2024-07-19 14:38:30.054 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 37/50, Train Loss: 0.03913968432039677, Val Loss: 0.04614680748734925 +2024-07-19 14:38:30.909 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 38/50, Train Loss: 0.03915854449291806, Val Loss: 0.04624960838338813 +2024-07-19 14:38:31.724 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 39/50, Train Loss: 0.03942849607831174, Val Loss: 0.04722887305291118 +2024-07-19 14:38:32.607 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 40/50, Train Loss: 0.039328003025890054, Val Loss: 0.04667228535824531 +2024-07-19 14:38:33.471 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 41/50, Train Loss: 0.03933627342109333, Val Loss: 0.04666313518946235 +2024-07-19 14:38:34.346 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 42/50, Train Loss: 0.03922507592098235, Val Loss: 0.04530063044984598 +2024-07-19 14:38:35.205 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 43/50, Train Loss: 0.03887995594477916, Val Loss: 0.047204315813409316 +2024-07-19 14:38:36.055 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 44/50, Train Loss: 0.03899525369998518, Val Loss: 0.046768640646257915 +2024-07-19 14:38:36.913 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 45/50, Train Loss: 0.03878011919844609, Val Loss: 0.046133944336828346 +2024-07-19 14:38:37.764 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 46/50, Train Loss: 0.03900104761123657, Val Loss: 0.046383683015969956 +2024-07-19 14:38:38.631 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 47/50, Train Loss: 0.03903459161417661, Val Loss: 0.0459853088785265 +2024-07-19 14:38:39.487 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 48/50, Train Loss: 0.03889806409990722, Val Loss: 0.046463447849492766 +2024-07-19 14:38:40.351 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 49/50, Train Loss: 0.039100175155429066, Val Loss: 0.04639131087507751 +2024-07-19 14:38:41.213 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 50/50, Train Loss: 0.03888217382296756, Val Loss: 0.04633332058988713 +2024-07-19 14:38:41.213 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Fold 4, MAPE: 10.29% +2024-07-19 14:38:41.322 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Training image saved at metaflow_models//bgd_education_10001_25000_LSTM//train_f4_bgd_education_10001_25000_LSTM.png +2024-07-19 14:38:45.528 [11/cross_validate_train/117 (pid 3346)] Task finished successfully. +2024-07-19 14:38:45.561 [11/model_scores/118 (pid 3935)] Task is starting. +2024-07-19 14:38:47.027 [11/model_scores/118 (pid 3935)] INFO:__main__:Average Train Loss across all folds: 0.047227055148740926 +2024-07-19 14:38:50.935 [11/model_scores/118 (pid 3935)] INFO:__main__:Average Validation Loss across all folds: 0.04628723477189605 +2024-07-19 14:38:50.935 [11/model_scores/118 (pid 3935)] INFO:__main__:Average MAPE across all folds: 9.33% +2024-07-19 14:38:50.936 [11/model_scores/118 (pid 3935)] Task finished successfully. +2024-07-19 14:38:50.971 [11/validate_model/119 (pid 3974)] Task is starting. +2024-07-19 14:38:52.461 [11/validate_model/119 (pid 3974)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:38:52.565 [11/validate_model/119 (pid 3974)] INFO:__main__:Test Set MAPE: 8.63% +2024-07-19 14:38:52.944 [11/validate_model/119 (pid 3974)] INFO:__main__:Test image saved at metaflow_models//bgd_education_10001_25000_LSTM//test_bgd_education_10001_25000_LSTM.png +2024-07-19 14:38:53.369 [11/validate_model/119 (pid 3974)] Task finished successfully. +2024-07-19 14:38:53.400 [11/log_model/120 (pid 3993)] Task is starting. +2024-07-19 14:38:54.907 [11/log_model/120 (pid 3993)] INFO:__main__:Logging model bgd_education_10001_25000_LSTM +2024-07-19 14:38:54.908 [11/log_model/120 (pid 3993)] INFO:__main__:Model logged at metaflow_models//bgd_education_10001_25000_LSTM//bgd_education_10001_25000_LSTM.pth +2024-07-19 14:38:58.786 [11/log_model/120 (pid 3993)] Task finished successfully. +2024-07-19 14:38:58.818 [11/end/121 (pid 4025)] Task is starting. +2024-07-19 14:39:00.293 [11/end/121 (pid 4025)] INFO:__main__:Pipeline end. +2024-07-19 14:39:00.603 [11/end/121 (pid 4025)] Task finished successfully. +2024-07-19 14:39:00.603 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/11') succeeded: +-- stdout -- +2024-07-19 14:36:00.155 Workflow starting (run-id 11): +2024-07-19 14:36:00.232 [11/start/109 (pid 3170)] Task is starting. +2024-07-19 14:36:01.720 [11/start/109 (pid 3170)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:36:02.053 [11/start/109 (pid 3170)] Task finished successfully. +2024-07-19 14:36:02.079 [11/ingest/110 (pid 3187)] Task is starting. +2024-07-19 14:36:03.545 [11/ingest/110 (pid 3187)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:36:03.561 [11/ingest/110 (pid 3187)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:36:07.417 [11/ingest/110 (pid 3187)] Task finished successfully. +2024-07-19 14:36:07.448 [11/pick_2017_data/111 (pid 3217)] Task is starting. +2024-07-19 14:36:08.955 [11/pick_2017_data/111 (pid 3217)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:36:09.277 [11/pick_2017_data/111 (pid 3217)] Task finished successfully. +2024-07-19 14:36:09.308 [11/fill_missing_data/112 (pid 3230)] Task is starting. +2024-07-19 14:36:10.763 [11/fill_missing_data/112 (pid 3230)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] INFO:__main__:NaN counts per column: +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] INFO:__main__:Panther_education_Janis 13 +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] Panther_education_Diann 13 +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] Panther_education_Cleopatra 12 +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] Robin_education_Lizbeth 0 +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] Robin_education_Cecilia 0 +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] Robin_education_Takako 0 +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] Fox_education_Melvin 91 +2024-07-19 14:36:10.769 [11/fill_missing_data/112 (pid 3230)] dtype: int64 +2024-07-19 14:36:10.770 [11/fill_missing_data/112 (pid 3230)] --- Logging error --- +2024-07-19 14:36:10.770 [11/fill_missing_data/112 (pid 3230)] Traceback (most recent call last): +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] msg = self.format(record) +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] return fmt.format(record) +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] record.message = record.getMessage() +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] msg = msg % self.args +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] TypeError: not all arguments converted during string formatting +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] Call stack: +2024-07-19 14:36:10.771 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] BGD_LinearFlow() +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] cli.main(self) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] return func(*args, **kwargs) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] return self.main(*args, **kwargs) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] rv = self.invoke(ctx) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] return callback(*args, **kwargs) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] task.run_step( +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] self._exec_step_function(step_func) +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] step_function() +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:36:11.182 [11/fill_missing_data/112 (pid 3230)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:36:11.183 [11/fill_missing_data/112 (pid 3230)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:36:11.183 [11/fill_missing_data/112 (pid 3230)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:36:11.183 [11/fill_missing_data/112 (pid 3230)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:36:11.183 [11/fill_missing_data/112 (pid 3230)] Arguments: (129,) +2024-07-19 14:36:11.183 [11/fill_missing_data/112 (pid 3230)] Task finished successfully. +2024-07-19 14:36:11.211 [11/find_median/113 (pid 3242)] Task is starting. +2024-07-19 14:36:12.736 [11/find_median/113 (pid 3242)] INFO:__main__:Computing and using median.. +2024-07-19 14:36:13.256 [11/find_median/113 (pid 3242)] Task finished successfully. +2024-07-19 14:36:13.288 [11/aggregate_data/114 (pid 3259)] Task is starting. +2024-07-19 14:36:14.729 [11/aggregate_data/114 (pid 3259)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:36:18.536 [11/aggregate_data/114 (pid 3259)] Task finished successfully. +2024-07-19 14:36:18.564 [11/split_data/115 (pid 3298)] Task is starting. +2024-07-19 14:36:20.047 [11/split_data/115 (pid 3298)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:36:23.950 [11/split_data/115 (pid 3298)] Task finished successfully. +2024-07-19 14:36:23.981 [11/make_x_y/116 (pid 3335)] Task is starting. +2024-07-19 14:36:25.794 [11/make_x_y/116 (pid 3335)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:36:26.113 [11/make_x_y/116 (pid 3335)] Shape of y_train: (6978, 1) +2024-07-19 14:36:26.113 [11/make_x_y/116 (pid 3335)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:36:26.113 [11/make_x_y/116 (pid 3335)] Shape of y_test: (1722, 1) +2024-07-19 14:36:26.114 [11/make_x_y/116 (pid 3335)] Task finished successfully. +2024-07-19 14:36:26.141 [11/cross_validate_train/117 (pid 3346)] Task is starting. +2024-07-19 14:36:27.650 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Creating bgd_education_10001_25000_LSTM +2024-07-19 14:36:27.651 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Performing cross validation.. +2024-07-19 14:36:28.383 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 1/50, Train Loss: 0.19797251766195167, Val Loss: 0.15014330700442596 +2024-07-19 14:36:28.595 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 2/50, Train Loss: 0.17514856189892097, Val Loss: 0.12779866964430422 +2024-07-19 14:36:28.802 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 3/50, Train Loss: 0.14433262965365037, Val Loss: 0.09962357570593422 +2024-07-19 14:36:29.029 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 4/50, Train Loss: 0.1047034091442018, Val Loss: 0.07802563362024925 +2024-07-19 14:36:29.235 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 5/50, Train Loss: 0.09686178653626829, Val Loss: 0.07321215128979168 +2024-07-19 14:36:29.437 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 6/50, Train Loss: 0.09349673150761707, Val Loss: 0.06837816506221488 +2024-07-19 14:36:29.639 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 7/50, Train Loss: 0.0894528161230925, Val Loss: 0.065723525913986 +2024-07-19 14:36:29.836 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 8/50, Train Loss: 0.08772174409917884, Val Loss: 0.06432293345396584 +2024-07-19 14:36:30.037 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 9/50, Train Loss: 0.08584770439444361, Val Loss: 0.06353193687627444 +2024-07-19 14:36:30.237 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 10/50, Train Loss: 0.08212141551681466, Val Loss: 0.0612213125301374 +2024-07-19 14:36:30.441 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 11/50, Train Loss: 0.08023887600850414, Val Loss: 0.06008082436951431 +2024-07-19 14:36:30.660 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 12/50, Train Loss: 0.07849248619498433, Val Loss: 0.058635895064956436 +2024-07-19 14:36:30.862 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 13/50, Train Loss: 0.0776970414696513, Val Loss: 0.05850730403452306 +2024-07-19 14:36:31.058 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 14/50, Train Loss: 0.07597062857569875, Val Loss: 0.05658849625772721 +2024-07-19 14:36:31.261 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 15/50, Train Loss: 0.07479604706168175, Val Loss: 0.05588863462813803 +2024-07-19 14:36:31.461 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 16/50, Train Loss: 0.07304504352646905, Val Loss: 0.055954277918145466 +2024-07-19 14:36:31.663 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 17/50, Train Loss: 0.07126220990274404, Val Loss: 0.0520659259747009 +2024-07-19 14:36:31.869 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 18/50, Train Loss: 0.0708800417849341, Val Loss: 0.05758313804462149 +2024-07-19 14:36:32.074 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 19/50, Train Loss: 0.06929213211343095, Val Loss: 0.05179173836635577 +2024-07-19 14:36:32.288 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 20/50, Train Loss: 0.0687203007574017, Val Loss: 0.04958852914136809 +2024-07-19 14:36:32.497 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 21/50, Train Loss: 0.06795617525239249, Val Loss: 0.04946633695146522 +2024-07-19 14:36:32.705 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 22/50, Train Loss: 0.06701322196907289, Val Loss: 0.04908546125768004 +2024-07-19 14:36:32.928 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 23/50, Train Loss: 0.06661012909702353, Val Loss: 0.04897879406407073 +2024-07-19 14:36:33.137 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 24/50, Train Loss: 0.06591930059162346, Val Loss: 0.04870671688302143 +2024-07-19 14:36:33.337 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 25/50, Train Loss: 0.06576616377443881, Val Loss: 0.04853754827903735 +2024-07-19 14:36:33.540 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 26/50, Train Loss: 0.06593930942786706, Val Loss: 0.049189041746226514 +2024-07-19 14:36:33.746 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 27/50, Train Loss: 0.06563938278201464, Val Loss: 0.0487773884087801 +2024-07-19 14:36:33.950 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 28/50, Train Loss: 0.06580364110099303, Val Loss: 0.04922113285676853 +2024-07-19 14:36:34.154 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 29/50, Train Loss: 0.06594552864899507, Val Loss: 0.04897864006862447 +2024-07-19 14:36:34.354 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 30/50, Train Loss: 0.06536417852181035, Val Loss: 0.04919276774130963 +2024-07-19 14:36:34.557 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 31/50, Train Loss: 0.06636044669997047, Val Loss: 0.049488096170731494 +2024-07-19 14:36:34.758 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 32/50, Train Loss: 0.06568313863229107, Val Loss: 0.04964366127308961 +2024-07-19 14:36:34.963 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 33/50, Train Loss: 0.0659462893130006, Val Loss: 0.04960889182984829 +2024-07-19 14:36:35.171 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 34/50, Train Loss: 0.06579162260970554, Val Loss: 0.04954216694711028 +2024-07-19 14:36:35.374 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 35/50, Train Loss: 0.06606265595434485, Val Loss: 0.05008147964002313 +2024-07-19 14:36:35.580 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 36/50, Train Loss: 0.06632496476978869, Val Loss: 0.049723700141987286 +2024-07-19 14:36:35.784 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 37/50, Train Loss: 0.06577914731728064, Val Loss: 0.049998596209932016 +2024-07-19 14:36:35.988 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 38/50, Train Loss: 0.06703094010417526, Val Loss: 0.051861291650582 +2024-07-19 14:36:36.190 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 39/50, Train Loss: 0.06739073901160343, Val Loss: 0.05196037536134591 +2024-07-19 14:36:36.396 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 40/50, Train Loss: 0.0666744011278088, Val Loss: 0.05074209709827964 +2024-07-19 14:36:36.609 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 41/50, Train Loss: 0.06594693670804436, Val Loss: 0.05069820079449061 +2024-07-19 14:36:36.821 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 42/50, Train Loss: 0.06623190772291776, Val Loss: 0.05083717204429008 +2024-07-19 14:36:37.044 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 43/50, Train Loss: 0.06604887650826492, Val Loss: 0.05004260180568373 +2024-07-19 14:36:37.262 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 44/50, Train Loss: 0.06571391864201508, Val Loss: 0.05029668613664202 +2024-07-19 14:36:37.476 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 45/50, Train Loss: 0.06583269755985285, Val Loss: 0.0499365529599222 +2024-07-19 14:36:37.690 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 46/50, Train Loss: 0.06569903318745059, Val Loss: 0.050371618186299864 +2024-07-19 14:36:37.914 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 47/50, Train Loss: 0.0657938599989221, Val Loss: 0.049684156286152636 +2024-07-19 14:36:38.123 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 48/50, Train Loss: 0.0655475650989526, Val Loss: 0.049675894951498184 +2024-07-19 14:36:38.325 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 49/50, Train Loss: 0.06525311019976397, Val Loss: 0.049747749407951895 +2024-07-19 14:36:38.532 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 50/50, Train Loss: 0.06531366484390723, Val Loss: 0.04972328265776505 +2024-07-19 14:36:38.532 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Fold 0, MAPE: 8.54% +2024-07-19 14:36:38.845 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Training image saved at metaflow_models//bgd_education_10001_25000_LSTM//train_f0_bgd_education_10001_25000_LSTM.png +2024-07-19 14:36:39.298 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 1/50, Train Loss: 0.05334794995923565, Val Loss: 0.04642638986980593 +2024-07-19 14:36:39.654 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 2/50, Train Loss: 0.05263861141180339, Val Loss: 0.04575750850946517 +2024-07-19 14:36:40.055 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 3/50, Train Loss: 0.05268247285219904, Val Loss: 0.04541264373708416 +2024-07-19 14:36:40.451 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 4/50, Train Loss: 0.05254497851104769, Val Loss: 0.04566115276837671 +2024-07-19 14:36:40.837 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 5/50, Train Loss: 0.05252752858788183, Val Loss: 0.04505599707969137 +2024-07-19 14:36:41.223 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 6/50, Train Loss: 0.052530216716536106, Val Loss: 0.04514092393219471 +2024-07-19 14:36:41.584 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 7/50, Train Loss: 0.052383239317226084, Val Loss: 0.045315639392749685 +2024-07-19 14:36:41.954 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 8/50, Train Loss: 0.05266425179394141, Val Loss: 0.04518442374427576 +2024-07-19 14:36:42.334 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 9/50, Train Loss: 0.052271149210529784, Val Loss: 0.04500326358184621 +2024-07-19 14:36:42.697 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 10/50, Train Loss: 0.05226579443742967, Val Loss: 0.045159242896212114 +2024-07-19 14:36:43.075 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 11/50, Train Loss: 0.05236061221014147, Val Loss: 0.045211168459138355 +2024-07-19 14:36:43.436 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 12/50, Train Loss: 0.052199146391390124, Val Loss: 0.04483498094251027 +2024-07-19 14:36:43.800 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 13/50, Train Loss: 0.05225501712156485, Val Loss: 0.04506133803846063 +2024-07-19 14:36:44.176 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 14/50, Train Loss: 0.052129352108052335, Val Loss: 0.04474984763844593 +2024-07-19 14:36:44.540 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 15/50, Train Loss: 0.05236654667413398, Val Loss: 0.04507314202350539 +2024-07-19 14:36:44.904 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 16/50, Train Loss: 0.0522019861342564, Val Loss: 0.044788782308633264 +2024-07-19 14:36:45.272 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 17/50, Train Loss: 0.05237083660106953, Val Loss: 0.04512692806688515 +2024-07-19 14:36:45.641 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 18/50, Train Loss: 0.0520488430477985, Val Loss: 0.04488309085167743 +2024-07-19 14:36:46.005 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 19/50, Train Loss: 0.052236516105189715, Val Loss: 0.045041527850805105 +2024-07-19 14:36:46.373 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 20/50, Train Loss: 0.05227812887360788, Val Loss: 0.04488217231591005 +2024-07-19 14:36:46.736 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 21/50, Train Loss: 0.05202083710632096, Val Loss: 0.044997622988916734 +2024-07-19 14:36:47.121 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 22/50, Train Loss: 0.05204749523266537, Val Loss: 0.04509074054658413 +2024-07-19 14:36:47.473 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 23/50, Train Loss: 0.05197779466844585, Val Loss: 0.0450332592669371 +2024-07-19 14:36:47.839 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 24/50, Train Loss: 0.051840605137691106, Val Loss: 0.04501687725250785 +2024-07-19 14:36:48.236 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 25/50, Train Loss: 0.051779731903990656, Val Loss: 0.04490226643109644 +2024-07-19 14:36:48.604 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 26/50, Train Loss: 0.05178539294188153, Val Loss: 0.04475543079142635 +2024-07-19 14:36:48.972 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 27/50, Train Loss: 0.05210719474476494, Val Loss: 0.04473010022696611 +2024-07-19 14:36:49.336 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 28/50, Train Loss: 0.052195944223706034, Val Loss: 0.044579835960993894 +2024-07-19 14:36:49.696 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 29/50, Train Loss: 0.05178969123796241, Val Loss: 0.04514074783671547 +2024-07-19 14:36:50.093 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 30/50, Train Loss: 0.05163236832475825, Val Loss: 0.04509339078858092 +2024-07-19 14:36:50.445 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 31/50, Train Loss: 0.051571026393403746, Val Loss: 0.04467285525154423 +2024-07-19 14:36:50.806 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 32/50, Train Loss: 0.051809429458967625, Val Loss: 0.04514618731431059 +2024-07-19 14:36:51.157 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 33/50, Train Loss: 0.051458678221049374, Val Loss: 0.044790882566893425 +2024-07-19 14:36:51.511 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 34/50, Train Loss: 0.051378938790461785, Val Loss: 0.045185228054587905 +2024-07-19 14:36:51.867 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 35/50, Train Loss: 0.05162312478235323, Val Loss: 0.044704818342988555 +2024-07-19 14:36:52.221 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 36/50, Train Loss: 0.05129219068546001, Val Loss: 0.04439552616630051 +2024-07-19 14:36:52.578 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 37/50, Train Loss: 0.05135445294212805, Val Loss: 0.04485426601525899 +2024-07-19 14:36:52.954 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 38/50, Train Loss: 0.05116932290567927, Val Loss: 0.044336191705755285 +2024-07-19 14:36:53.318 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 39/50, Train Loss: 0.05148654323938775, Val Loss: 0.04468697460519301 +2024-07-19 14:36:53.687 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 40/50, Train Loss: 0.051213950480092064, Val Loss: 0.04455511946533177 +2024-07-19 14:36:54.057 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 41/50, Train Loss: 0.05108449942343039, Val Loss: 0.044559813029057274 +2024-07-19 14:36:54.427 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 42/50, Train Loss: 0.05150617661643518, Val Loss: 0.0444988407496665 +2024-07-19 14:36:54.794 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 43/50, Train Loss: 0.05069123180455541, Val Loss: 0.044167778228183054 +2024-07-19 14:36:55.163 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 44/50, Train Loss: 0.05113208176542635, Val Loss: 0.04400145584667051 +2024-07-19 14:36:55.555 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 45/50, Train Loss: 0.05073192246156196, Val Loss: 0.04403940326458699 +2024-07-19 14:36:55.950 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 46/50, Train Loss: 0.05077979905046012, Val Loss: 0.04442061423449903 +2024-07-19 14:36:56.348 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 47/50, Train Loss: 0.05096079508633646, Val Loss: 0.04375633481587913 +2024-07-19 14:36:56.756 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 48/50, Train Loss: 0.05056336210810975, Val Loss: 0.043718333884670925 +2024-07-19 14:36:57.128 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 49/50, Train Loss: 0.05064388346692471, Val Loss: 0.043988592066877594 +2024-07-19 14:36:57.508 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 50/50, Train Loss: 0.05075103383868525, Val Loss: 0.04375057984646913 +2024-07-19 14:36:57.508 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Fold 1, MAPE: 9.85% +2024-07-19 14:36:57.615 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Training image saved at metaflow_models//bgd_education_10001_25000_LSTM//train_f1_bgd_education_10001_25000_LSTM.png +2024-07-19 14:36:58.171 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 1/50, Train Loss: 0.04404000382531773, Val Loss: 0.0465345659570114 +2024-07-19 14:36:58.697 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 2/50, Train Loss: 0.044136572866277264, Val Loss: 0.04580656705877265 +2024-07-19 14:36:59.241 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 3/50, Train Loss: 0.04371050685982813, Val Loss: 0.04635051834220822 +2024-07-19 14:36:59.758 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 4/50, Train Loss: 0.04368607864122499, Val Loss: 0.045663217535695515 +2024-07-19 14:37:00.297 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 5/50, Train Loss: 0.043475410393015904, Val Loss: 0.04597710032720823 +2024-07-19 14:37:00.843 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 6/50, Train Loss: 0.04337667211551558, Val Loss: 0.04588827838164729 +2024-07-19 14:37:01.370 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 7/50, Train Loss: 0.04342214592139829, Val Loss: 0.04596300116060553 +2024-07-19 14:37:01.896 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 8/50, Train Loss: 0.043268177133392205, Val Loss: 0.04633869724096479 +2024-07-19 14:37:02.460 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 9/50, Train Loss: 0.04337740670889616, Val Loss: 0.04640790477797792 +2024-07-19 14:37:02.985 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 10/50, Train Loss: 0.04322327451611107, Val Loss: 0.04702417698462267 +2024-07-19 14:37:03.503 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 11/50, Train Loss: 0.0431099208579822, Val Loss: 0.0458704572976441 +2024-07-19 14:37:04.020 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 12/50, Train Loss: 0.042930258099328385, Val Loss: 0.04625923397975999 +2024-07-19 14:37:04.539 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 13/50, Train Loss: 0.04282930036160079, Val Loss: 0.04646803967251971 +2024-07-19 14:37:05.068 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 14/50, Train Loss: 0.042692117697813295, Val Loss: 0.046940902550075506 +2024-07-19 14:37:05.585 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 15/50, Train Loss: 0.04268868071111766, Val Loss: 0.047307459083763326 +2024-07-19 14:37:06.109 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 16/50, Train Loss: 0.04257604655894366, Val Loss: 0.04742255082001557 +2024-07-19 14:37:06.634 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 17/50, Train Loss: 0.042592469941486015, Val Loss: 0.046716608761532885 +2024-07-19 14:37:07.166 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 18/50, Train Loss: 0.04241993789645759, Val Loss: 0.047727875059118144 +2024-07-19 14:37:07.695 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 19/50, Train Loss: 0.04249286038631743, Val Loss: 0.047469788608518804 +2024-07-19 14:37:08.231 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 20/50, Train Loss: 0.042377771183171056, Val Loss: 0.0474879617324552 +2024-07-19 14:37:08.772 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 21/50, Train Loss: 0.04254573786800558, Val Loss: 0.047984037548303604 +2024-07-19 14:37:09.304 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 22/50, Train Loss: 0.04240252986888994, Val Loss: 0.04683976142188987 +2024-07-19 14:37:09.840 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 23/50, Train Loss: 0.04227475742386146, Val Loss: 0.04748447148783787 +2024-07-19 14:37:10.371 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 24/50, Train Loss: 0.042356361550363625, Val Loss: 0.04769487583355324 +2024-07-19 14:37:10.899 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 25/50, Train Loss: 0.04234841879118573, Val Loss: 0.04712859516006869 +2024-07-19 14:37:11.442 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 26/50, Train Loss: 0.042137994922020215, Val Loss: 0.04776595125125872 +2024-07-19 14:37:11.966 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 27/50, Train Loss: 0.042151151902296326, Val Loss: 0.047661575312550004 +2024-07-19 14:37:12.501 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 28/50, Train Loss: 0.04210782862183723, Val Loss: 0.047624003142118454 +2024-07-19 14:37:13.036 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 29/50, Train Loss: 0.04204582108015364, Val Loss: 0.047392892273696696 +2024-07-19 14:37:13.564 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 30/50, Train Loss: 0.04186097998172045, Val Loss: 0.04844735441981135 +2024-07-19 14:37:14.086 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 31/50, Train Loss: 0.04232215082103556, Val Loss: 0.04715585960326968 +2024-07-19 14:37:14.610 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 32/50, Train Loss: 0.04240955893288959, Val Loss: 0.046777633446696644 +2024-07-19 14:37:15.136 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 33/50, Train Loss: 0.041922089406712486, Val Loss: 0.0472343688881075 +2024-07-19 14:37:15.656 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 34/50, Train Loss: 0.041843760419975624, Val Loss: 0.04694130241468146 +2024-07-19 14:37:16.184 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 35/50, Train Loss: 0.041958536427806725, Val Loss: 0.04597180346782143 +2024-07-19 14:37:16.727 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 36/50, Train Loss: 0.04180698523467237, Val Loss: 0.04701597233479087 +2024-07-19 14:37:17.264 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 37/50, Train Loss: 0.0418121226131916, Val Loss: 0.046497784554958344 +2024-07-19 14:37:17.781 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 38/50, Train Loss: 0.04186430288986726, Val Loss: 0.046664330151838226 +2024-07-19 14:37:18.324 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 39/50, Train Loss: 0.042040928470140154, Val Loss: 0.04720185364823084 +2024-07-19 14:37:18.842 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 40/50, Train Loss: 0.041782039353115995, Val Loss: 0.04687651599178443 +2024-07-19 14:37:19.385 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 41/50, Train Loss: 0.04180769309062849, Val Loss: 0.04611809984654994 +2024-07-19 14:37:19.902 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 42/50, Train Loss: 0.041602463664656336, Val Loss: 0.046356425746469886 +2024-07-19 14:37:20.419 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 43/50, Train Loss: 0.04166810585355217, Val Loss: 0.046065169965495936 +2024-07-19 14:37:20.927 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 44/50, Train Loss: 0.04168162462724881, Val Loss: 0.045783290186443844 +2024-07-19 14:37:21.449 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 45/50, Train Loss: 0.04155784819952466, Val Loss: 0.04589605376728483 +2024-07-19 14:37:21.977 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 46/50, Train Loss: 0.0417227621444247, Val Loss: 0.04593709544152827 +2024-07-19 14:37:22.504 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 47/50, Train Loss: 0.04150999102064155, Val Loss: 0.04624788976601652 +2024-07-19 14:37:23.010 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 48/50, Train Loss: 0.0416919909756292, Val Loss: 0.04626096276616728 +2024-07-19 14:37:23.522 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 49/50, Train Loss: 0.041704552468251097, Val Loss: 0.04548898017084276 +2024-07-19 14:37:24.026 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 50/50, Train Loss: 0.04148748745633797, Val Loss: 0.04600072284606663 +2024-07-19 14:37:24.026 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Fold 2, MAPE: 9.56% +2024-07-19 14:37:24.137 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Training image saved at metaflow_models//bgd_education_10001_25000_LSTM//train_f2_bgd_education_10001_25000_LSTM.png +2024-07-19 14:37:24.788 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 1/50, Train Loss: 0.042003396107521775, Val Loss: 0.048093531331097755 +2024-07-19 14:37:25.453 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 2/50, Train Loss: 0.0423362428603107, Val Loss: 0.049148772868352966 +2024-07-19 14:37:26.134 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 3/50, Train Loss: 0.042316786817287746, Val Loss: 0.04776508466818848 +2024-07-19 14:37:26.799 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 4/50, Train Loss: 0.04195858899197758, Val Loss: 0.048976839696233336 +2024-07-19 14:37:27.475 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 5/50, Train Loss: 0.0417982736245206, Val Loss: 0.05142395701762792 +2024-07-19 14:37:28.161 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 6/50, Train Loss: 0.04234177754451967, Val Loss: 0.05565545939513155 +2024-07-19 14:37:28.839 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 7/50, Train Loss: 0.04254441408517018, Val Loss: 0.049254131125839984 +2024-07-19 14:37:29.524 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 8/50, Train Loss: 0.04184044360451094, Val Loss: 0.048744348708439515 +2024-07-19 14:37:30.203 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 9/50, Train Loss: 0.04154440571796404, Val Loss: 0.04896461706910584 +2024-07-19 14:37:30.897 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 10/50, Train Loss: 0.04126234654949544, Val Loss: 0.049303647986537705 +2024-07-19 14:37:31.555 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 11/50, Train Loss: 0.04137610909465241, Val Loss: 0.04697415645460825 +2024-07-19 14:37:32.244 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 12/50, Train Loss: 0.04171608116681853, Val Loss: 0.046724096141956946 +2024-07-19 14:37:32.924 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 13/50, Train Loss: 0.04153271560391335, Val Loss: 0.046922603017977765 +2024-07-19 14:37:33.636 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 14/50, Train Loss: 0.04104690577783813, Val Loss: 0.04816101929424582 +2024-07-19 14:37:34.310 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 15/50, Train Loss: 0.040956567717741615, Val Loss: 0.04762298029822272 +2024-07-19 14:37:34.987 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 16/50, Train Loss: 0.04085094268650633, Val Loss: 0.047943376105379416 +2024-07-19 14:37:35.669 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 17/50, Train Loss: 0.04086437598125984, Val Loss: 0.04691036372772745 +2024-07-19 14:37:36.346 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 18/50, Train Loss: 0.04140452466496866, Val Loss: 0.047208450784957084 +2024-07-19 14:37:37.032 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 19/50, Train Loss: 0.041436192043738, Val Loss: 0.046366857717166074 +2024-07-19 14:37:37.705 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 20/50, Train Loss: 0.04108882712021674, Val Loss: 0.04737649535810625 +2024-07-19 14:37:38.395 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 21/50, Train Loss: 0.040759948222604515, Val Loss: 0.04822838512828221 +2024-07-19 14:37:39.103 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 22/50, Train Loss: 0.04081232077761056, Val Loss: 0.04774841117496426 +2024-07-19 14:37:39.800 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 23/50, Train Loss: 0.04071781578894756, Val Loss: 0.04631766722210356 +2024-07-19 14:37:40.489 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 24/50, Train Loss: 0.04064983148638108, Val Loss: 0.047415908526729895 +2024-07-19 14:37:41.198 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 25/50, Train Loss: 0.040520442598690726, Val Loss: 0.047231852555194416 +2024-07-19 14:37:41.883 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 26/50, Train Loss: 0.041158687706067135, Val Loss: 0.047365163931170025 +2024-07-19 14:37:42.579 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 27/50, Train Loss: 0.040402468319420945, Val Loss: 0.04741986196588825 +2024-07-19 14:37:43.265 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 28/50, Train Loss: 0.04083334808939532, Val Loss: 0.047154563806346944 +2024-07-19 14:37:43.942 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 29/50, Train Loss: 0.04048101116635212, Val Loss: 0.0465971391043953 +2024-07-19 14:37:44.628 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 30/50, Train Loss: 0.040618285434703305, Val Loss: 0.04642675006510438 +2024-07-19 14:37:45.306 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 31/50, Train Loss: 0.040577885503434157, Val Loss: 0.0466159498067321 +2024-07-19 14:37:45.988 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 32/50, Train Loss: 0.04036163250367119, Val Loss: 0.04515554126654122 +2024-07-19 14:37:46.680 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 33/50, Train Loss: 0.0404811700780506, Val Loss: 0.04730850417871733 +2024-07-19 14:37:47.375 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 34/50, Train Loss: 0.04022354106992891, Val Loss: 0.045511294307338225 +2024-07-19 14:37:48.068 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 35/50, Train Loss: 0.04028441600042255, Val Loss: 0.04578603426548275 +2024-07-19 14:37:48.733 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 36/50, Train Loss: 0.0404817765221408, Val Loss: 0.04532950185239315 +2024-07-19 14:37:49.393 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 37/50, Train Loss: 0.04026450746220677, Val Loss: 0.04572357197065611 +2024-07-19 14:37:50.062 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 38/50, Train Loss: 0.0402906309328463, Val Loss: 0.0458902134685903 +2024-07-19 14:37:50.750 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 39/50, Train Loss: 0.0400975430894592, Val Loss: 0.046021908622335746 +2024-07-19 14:37:51.439 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 40/50, Train Loss: 0.04014331483830736, Val Loss: 0.04488803511737166 +2024-07-19 14:37:52.118 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 41/50, Train Loss: 0.0403561287955062, Val Loss: 0.04847647818560536 +2024-07-19 14:37:52.810 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 42/50, Train Loss: 0.04009472369535329, Val Loss: 0.04694345301470241 +2024-07-19 14:37:53.499 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 43/50, Train Loss: 0.039984828065315337, Val Loss: 0.04602525071115107 +2024-07-19 14:37:54.182 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 44/50, Train Loss: 0.0399398756634495, Val Loss: 0.04728977578515942 +2024-07-19 14:37:54.858 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 45/50, Train Loss: 0.040068122290381016, Val Loss: 0.04650278188086845 +2024-07-19 14:37:55.534 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 46/50, Train Loss: 0.03999284265741502, Val Loss: 0.04641680102291945 +2024-07-19 14:37:56.225 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 47/50, Train Loss: 0.040226891879247474, Val Loss: 0.046315215024593716 +2024-07-19 14:37:56.940 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 48/50, Train Loss: 0.03978122479907454, Val Loss: 0.04565055376371822 +2024-07-19 14:37:57.636 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 49/50, Train Loss: 0.03996644038962175, Val Loss: 0.04656269592610565 +2024-07-19 14:37:58.338 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 50/50, Train Loss: 0.039700915781806595, Val Loss: 0.04562826791929232 +2024-07-19 14:37:58.339 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Fold 3, MAPE: 8.39% +2024-07-19 14:37:58.451 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Training image saved at metaflow_models//bgd_education_10001_25000_LSTM//train_f3_bgd_education_10001_25000_LSTM.png +2024-07-19 14:37:59.306 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 1/50, Train Loss: 0.04048666095483925, Val Loss: 0.0443693130100901 +2024-07-19 14:38:00.205 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 2/50, Train Loss: 0.04040848478101767, Val Loss: 0.04501017417154602 +2024-07-19 14:38:01.063 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 3/50, Train Loss: 0.04025171052377958, Val Loss: 0.04429626087280544 +2024-07-19 14:38:01.905 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 4/50, Train Loss: 0.04011439896383128, Val Loss: 0.04445143773950435 +2024-07-19 14:38:02.765 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 5/50, Train Loss: 0.04056780162052466, Val Loss: 0.044704470531763255 +2024-07-19 14:38:03.641 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 6/50, Train Loss: 0.04018341346674568, Val Loss: 0.044805992168147825 +2024-07-19 14:38:04.472 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 7/50, Train Loss: 0.04056522249152045, Val Loss: 0.04543484203718804 +2024-07-19 14:38:05.311 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 8/50, Train Loss: 0.04033097038864271, Val Loss: 0.04517062677926308 +2024-07-19 14:38:06.160 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 9/50, Train Loss: 0.040265387507503504, Val Loss: 0.04535295640596667 +2024-07-19 14:38:06.998 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 10/50, Train Loss: 0.040131162596191025, Val Loss: 0.04656464556181753 +2024-07-19 14:38:07.831 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 11/50, Train Loss: 0.039733095708620415, Val Loss: 0.04575180957043493 +2024-07-19 14:38:08.693 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 12/50, Train Loss: 0.04029662592930126, Val Loss: 0.046208911424351705 +2024-07-19 14:38:09.548 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 13/50, Train Loss: 0.04044299898157408, Val Loss: 0.046735621812577184 +2024-07-19 14:38:10.395 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 14/50, Train Loss: 0.03984693614356629, Val Loss: 0.04533236370598142 +2024-07-19 14:38:11.263 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 15/50, Train Loss: 0.03969116726439897, Val Loss: 0.045837341279194165 +2024-07-19 14:38:12.105 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 16/50, Train Loss: 0.03964883313197028, Val Loss: 0.04540137956674035 +2024-07-19 14:38:12.966 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 17/50, Train Loss: 0.03959229805476063, Val Loss: 0.04571086817697899 +2024-07-19 14:38:13.834 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 18/50, Train Loss: 0.04033251044309729, Val Loss: 0.04575876992296528 +2024-07-19 14:38:14.688 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 19/50, Train Loss: 0.03941042832825538, Val Loss: 0.045973113939367434 +2024-07-19 14:38:15.538 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 20/50, Train Loss: 0.039706775662745095, Val Loss: 0.04625965065851405 +2024-07-19 14:38:16.387 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 21/50, Train Loss: 0.0399324123461086, Val Loss: 0.04617584844094676 +2024-07-19 14:38:17.240 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 22/50, Train Loss: 0.0394917041789945, Val Loss: 0.046894843815951735 +2024-07-19 14:38:18.096 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 23/50, Train Loss: 0.0399548434191844, Val Loss: 0.04584972011680539 +2024-07-19 14:38:18.946 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 24/50, Train Loss: 0.039478440733196646, Val Loss: 0.04816871347862321 +2024-07-19 14:38:19.804 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 25/50, Train Loss: 0.03969186054194694, Val Loss: 0.046538514890582174 +2024-07-19 14:38:20.671 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 26/50, Train Loss: 0.03954760256417832, Val Loss: 0.04690802605772341 +2024-07-19 14:38:21.531 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 27/50, Train Loss: 0.03942867860730205, Val Loss: 0.047776546933361 +2024-07-19 14:38:22.378 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 28/50, Train Loss: 0.039820433041633484, Val Loss: 0.04700441240660242 +2024-07-19 14:38:23.235 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 29/50, Train Loss: 0.04006629556437934, Val Loss: 0.04655849898385035 +2024-07-19 14:38:24.073 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 30/50, Train Loss: 0.03933858941053296, Val Loss: 0.04747857332128931 +2024-07-19 14:38:24.918 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 31/50, Train Loss: 0.03954732533708051, Val Loss: 0.0458545001928468 +2024-07-19 14:38:25.767 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 32/50, Train Loss: 0.039117485080119016, Val Loss: 0.04771461627269919 +2024-07-19 14:38:26.660 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 33/50, Train Loss: 0.03929280494288592, Val Loss: 0.04647941127218105 +2024-07-19 14:38:27.517 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 34/50, Train Loss: 0.03960160928481555, Val Loss: 0.04570236842374544 +2024-07-19 14:38:28.380 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 35/50, Train Loss: 0.039335569694310756, Val Loss: 0.04757520161267068 +2024-07-19 14:38:29.226 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 36/50, Train Loss: 0.03933792484535293, Val Loss: 0.04677716312879646 +2024-07-19 14:38:30.054 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 37/50, Train Loss: 0.03913968432039677, Val Loss: 0.04614680748734925 +2024-07-19 14:38:30.909 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 38/50, Train Loss: 0.03915854449291806, Val Loss: 0.04624960838338813 +2024-07-19 14:38:31.724 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 39/50, Train Loss: 0.03942849607831174, Val Loss: 0.04722887305291118 +2024-07-19 14:38:32.607 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 40/50, Train Loss: 0.039328003025890054, Val Loss: 0.04667228535824531 +2024-07-19 14:38:33.471 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 41/50, Train Loss: 0.03933627342109333, Val Loss: 0.04666313518946235 +2024-07-19 14:38:34.346 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 42/50, Train Loss: 0.03922507592098235, Val Loss: 0.04530063044984598 +2024-07-19 14:38:35.205 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 43/50, Train Loss: 0.03887995594477916, Val Loss: 0.047204315813409316 +2024-07-19 14:38:36.055 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 44/50, Train Loss: 0.03899525369998518, Val Loss: 0.046768640646257915 +2024-07-19 14:38:36.913 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 45/50, Train Loss: 0.03878011919844609, Val Loss: 0.046133944336828346 +2024-07-19 14:38:37.764 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 46/50, Train Loss: 0.03900104761123657, Val Loss: 0.046383683015969956 +2024-07-19 14:38:38.631 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 47/50, Train Loss: 0.03903459161417661, Val Loss: 0.0459853088785265 +2024-07-19 14:38:39.487 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 48/50, Train Loss: 0.03889806409990722, Val Loss: 0.046463447849492766 +2024-07-19 14:38:40.351 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 49/50, Train Loss: 0.039100175155429066, Val Loss: 0.04639131087507751 +2024-07-19 14:38:41.213 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Epoch 50/50, Train Loss: 0.03888217382296756, Val Loss: 0.04633332058988713 +2024-07-19 14:38:41.213 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Fold 4, MAPE: 10.29% +2024-07-19 14:38:41.322 [11/cross_validate_train/117 (pid 3346)] INFO:__main__:Training image saved at metaflow_models//bgd_education_10001_25000_LSTM//train_f4_bgd_education_10001_25000_LSTM.png +2024-07-19 14:38:45.528 [11/cross_validate_train/117 (pid 3346)] Task finished successfully. +2024-07-19 14:38:45.561 [11/model_scores/118 (pid 3935)] Task is starting. +2024-07-19 14:38:47.027 [11/model_scores/118 (pid 3935)] INFO:__main__:Average Train Loss across all folds: 0.047227055148740926 +2024-07-19 14:38:50.935 [11/model_scores/118 (pid 3935)] INFO:__main__:Average Validation Loss across all folds: 0.04628723477189605 +2024-07-19 14:38:50.935 [11/model_scores/118 (pid 3935)] INFO:__main__:Average MAPE across all folds: 9.33% +2024-07-19 14:38:50.936 [11/model_scores/118 (pid 3935)] Task finished successfully. +2024-07-19 14:38:50.971 [11/validate_model/119 (pid 3974)] Task is starting. +2024-07-19 14:38:52.461 [11/validate_model/119 (pid 3974)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:38:52.565 [11/validate_model/119 (pid 3974)] INFO:__main__:Test Set MAPE: 8.63% +2024-07-19 14:38:52.944 [11/validate_model/119 (pid 3974)] INFO:__main__:Test image saved at metaflow_models//bgd_education_10001_25000_LSTM//test_bgd_education_10001_25000_LSTM.png +2024-07-19 14:38:53.369 [11/validate_model/119 (pid 3974)] Task finished successfully. +2024-07-19 14:38:53.400 [11/log_model/120 (pid 3993)] Task is starting. +2024-07-19 14:38:54.907 [11/log_model/120 (pid 3993)] INFO:__main__:Logging model bgd_education_10001_25000_LSTM +2024-07-19 14:38:54.908 [11/log_model/120 (pid 3993)] INFO:__main__:Model logged at metaflow_models//bgd_education_10001_25000_LSTM//bgd_education_10001_25000_LSTM.pth +2024-07-19 14:38:58.786 [11/log_model/120 (pid 3993)] Task finished successfully. +2024-07-19 14:38:58.818 [11/end/121 (pid 4025)] Task is starting. +2024-07-19 14:39:00.293 [11/end/121 (pid 4025)] INFO:__main__:Pipeline end. +2024-07-19 14:39:00.603 [11/end/121 (pid 4025)] Task finished successfully. +2024-07-19 14:39:00.603 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/scaler_bgd_education_10001_25000_LSTM.pkl b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/scaler_bgd_education_10001_25000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..f9ca4cc736b214bad451e536510c0d9471024c53 --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/scaler_bgd_education_10001_25000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e1c9f69b51b06578c9385bbce2b213877606a94385a94f90e423e36fb51ca2a +size 557 diff --git a/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/test_bgd_education_10001_25000_LSTM.png b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/test_bgd_education_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..bdc0e2aae759b56aca3e496216783be3d203e8a1 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/test_bgd_education_10001_25000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f0_bgd_education_10001_25000_LSTM.png b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f0_bgd_education_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..995c5410b72540ea782ec50ab26a647a83bed64a Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f0_bgd_education_10001_25000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f1_bgd_education_10001_25000_LSTM.png b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f1_bgd_education_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..7024ce1f6e730f5bf42ef3a126529e8a6166abcc Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f1_bgd_education_10001_25000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f2_bgd_education_10001_25000_LSTM.png b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f2_bgd_education_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..463c0435287347dff19867b98d8e19587509d7a6 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f2_bgd_education_10001_25000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f3_bgd_education_10001_25000_LSTM.png b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f3_bgd_education_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..4e665727ba4f9b59d4c4e07c2079a6b457a62890 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f3_bgd_education_10001_25000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f4_bgd_education_10001_25000_LSTM.png b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f4_bgd_education_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..9fb66a28be3546bf3a277b37c0d3ce850454b1e2 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_10001_25000_LSTM/train_f4_bgd_education_10001_25000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/bgd_education_1001_5000_LSTM.pth b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/bgd_education_1001_5000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..8f1fba475dd751154cdccc513c370964ffcc2ddd --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/bgd_education_1001_5000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:919f883702d050a4c2cfdb16cd6c404637116312c19ca6355b2b622b7e0127d2 +size 46746 diff --git a/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/output.txt b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..933a6be0cd1b0e790df842deb2d17eee178d6824 --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/output.txt @@ -0,0 +1,730 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:23:50.718 Workflow starting (run-id 7): +2024-07-19 14:23:50.794 [7/start/53 (pid 99255)] Task is starting. +2024-07-19 14:23:52.330 [7/start/53 (pid 99255)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:23:52.634 [7/start/53 (pid 99255)] Task finished successfully. +2024-07-19 14:23:52.665 [7/ingest/54 (pid 99272)] Task is starting. +2024-07-19 14:23:54.126 [7/ingest/54 (pid 99272)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:23:54.139 [7/ingest/54 (pid 99272)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:23:58.056 [7/ingest/54 (pid 99272)] Task finished successfully. +2024-07-19 14:23:58.089 [7/pick_2017_data/55 (pid 99305)] Task is starting. +2024-07-19 14:23:59.581 [7/pick_2017_data/55 (pid 99305)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:23:59.893 [7/pick_2017_data/55 (pid 99305)] Task finished successfully. +2024-07-19 14:23:59.925 [7/fill_missing_data/56 (pid 99316)] Task is starting. +2024-07-19 14:24:01.435 [7/fill_missing_data/56 (pid 99316)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:24:01.439 [7/fill_missing_data/56 (pid 99316)] INFO:__main__:NaN counts per column: +2024-07-19 14:24:01.439 [7/fill_missing_data/56 (pid 99316)] INFO:__main__:Panther_education_Misty 20 +2024-07-19 14:24:01.439 [7/fill_missing_data/56 (pid 99316)] Panther_education_Jonathan 647 +2024-07-19 14:24:01.439 [7/fill_missing_data/56 (pid 99316)] dtype: int64 +2024-07-19 14:24:01.439 [7/fill_missing_data/56 (pid 99316)] --- Logging error --- +2024-07-19 14:24:01.440 [7/fill_missing_data/56 (pid 99316)] Traceback (most recent call last): +2024-07-19 14:24:01.440 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:24:01.440 [7/fill_missing_data/56 (pid 99316)] msg = self.format(record) +2024-07-19 14:24:01.440 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] return fmt.format(record) +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] record.message = record.getMessage() +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] msg = msg % self.args +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] TypeError: not all arguments converted during string formatting +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] Call stack: +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] BGD_LinearFlow() +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] cli.main(self) +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] return func(*args, **kwargs) +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] return self.main(*args, **kwargs) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] rv = self.invoke(ctx) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] return callback(*args, **kwargs) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] task.run_step( +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] self._exec_step_function(step_func) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] step_function() +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] Arguments: (667,) +2024-07-19 14:24:02.160 [7/fill_missing_data/56 (pid 99316)] Task finished successfully. +2024-07-19 14:24:02.192 [7/find_median/57 (pid 99333)] Task is starting. +2024-07-19 14:24:03.682 [7/find_median/57 (pid 99333)] INFO:__main__:Computing and using median.. +2024-07-19 14:24:04.196 [7/find_median/57 (pid 99333)] Task finished successfully. +2024-07-19 14:24:04.227 [7/aggregate_data/58 (pid 99344)] Task is starting. +2024-07-19 14:24:05.712 [7/aggregate_data/58 (pid 99344)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:24:09.597 [7/aggregate_data/58 (pid 99344)] Task finished successfully. +2024-07-19 14:24:09.625 [7/split_data/59 (pid 99383)] Task is starting. +2024-07-19 14:24:11.139 [7/split_data/59 (pid 99383)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:24:15.044 [7/split_data/59 (pid 99383)] Task finished successfully. +2024-07-19 14:24:15.074 [7/make_x_y/60 (pid 99422)] Task is starting. +2024-07-19 14:24:16.904 [7/make_x_y/60 (pid 99422)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:24:17.226 [7/make_x_y/60 (pid 99422)] Shape of y_train: (6978, 1) +2024-07-19 14:24:17.226 [7/make_x_y/60 (pid 99422)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:24:17.226 [7/make_x_y/60 (pid 99422)] Shape of y_test: (1722, 1) +2024-07-19 14:24:17.227 [7/make_x_y/60 (pid 99422)] Task finished successfully. +2024-07-19 14:24:17.260 [7/cross_validate_train/61 (pid 99439)] Task is starting. +2024-07-19 14:24:18.707 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Creating bgd_education_1001_5000_LSTM +2024-07-19 14:24:18.708 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Performing cross validation.. +2024-07-19 14:24:19.451 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 1/50, Train Loss: 0.1916567465743503, Val Loss: 0.11219305232972712 +2024-07-19 14:24:19.667 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 2/50, Train Loss: 0.11700044461601489, Val Loss: 0.09875198639929295 +2024-07-19 14:24:19.882 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 3/50, Train Loss: 0.11259059185111844, Val Loss: 0.09274196886533015 +2024-07-19 14:24:20.094 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 4/50, Train Loss: 0.10793047307713612, Val Loss: 0.08821646335559923 +2024-07-19 14:24:20.305 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 5/50, Train Loss: 0.1026727043696352, Val Loss: 0.08415179719796052 +2024-07-19 14:24:20.526 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 6/50, Train Loss: 0.09555055100370098, Val Loss: 0.08210076170193183 +2024-07-19 14:24:20.735 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 7/50, Train Loss: 0.08876192514356729, Val Loss: 0.08004550268319813 +2024-07-19 14:24:20.951 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 8/50, Train Loss: 0.07755800366804406, Val Loss: 0.0649598288173611 +2024-07-19 14:24:21.165 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 9/50, Train Loss: 0.07635425630252103, Val Loss: 0.0698615077480271 +2024-07-19 14:24:21.399 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 10/50, Train Loss: 0.06849927082657814, Val Loss: 0.06113914531227704 +2024-07-19 14:24:21.623 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 11/50, Train Loss: 0.0650296599881069, Val Loss: 0.06225554896770297 +2024-07-19 14:24:21.835 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 12/50, Train Loss: 0.06374221924390341, Val Loss: 0.06229889256930029 +2024-07-19 14:24:22.051 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 13/50, Train Loss: 0.0624004856658143, Val Loss: 0.06163083691452 +2024-07-19 14:24:22.261 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 14/50, Train Loss: 0.059987120582042516, Val Loss: 0.057938645719676406 +2024-07-19 14:24:22.478 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 15/50, Train Loss: 0.05748258445512604, Val Loss: 0.05424085888709571 +2024-07-19 14:24:22.702 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 16/50, Train Loss: 0.055913753455152385, Val Loss: 0.05261589762930934 +2024-07-19 14:24:22.919 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 17/50, Train Loss: 0.05609496441241857, Val Loss: 0.05600084903071056 +2024-07-19 14:24:23.135 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 18/50, Train Loss: 0.05543212466747374, Val Loss: 0.05455798988003988 +2024-07-19 14:24:23.353 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 19/50, Train Loss: 0.054271601140499115, Val Loss: 0.05271896392711111 +2024-07-19 14:24:23.579 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 20/50, Train Loss: 0.05319998891571084, Val Loss: 0.05430302129605332 +2024-07-19 14:24:23.788 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 21/50, Train Loss: 0.05189713483323922, Val Loss: 0.04909670040816874 +2024-07-19 14:24:23.999 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 22/50, Train Loss: 0.05069769667209806, Val Loss: 0.049279688228223775 +2024-07-19 14:24:24.211 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 23/50, Train Loss: 0.04844446137950227, Val Loss: 0.044344830553273894 +2024-07-19 14:24:24.419 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 24/50, Train Loss: 0.04682002251816762, Val Loss: 0.04284936627624808 +2024-07-19 14:24:24.628 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 25/50, Train Loss: 0.04540485571566466, Val Loss: 0.04113922884838807 +2024-07-19 14:24:24.840 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 26/50, Train Loss: 0.04449890926480293, Val Loss: 0.0411168037838227 +2024-07-19 14:24:25.055 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 27/50, Train Loss: 0.043910230837158254, Val Loss: 0.03992302154467718 +2024-07-19 14:24:25.268 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 28/50, Train Loss: 0.04343415351232161, Val Loss: 0.03958254997190591 +2024-07-19 14:24:25.478 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 29/50, Train Loss: 0.04315314542602848, Val Loss: 0.039817681485736695 +2024-07-19 14:24:25.686 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 30/50, Train Loss: 0.04298032105371759, Val Loss: 0.03908557110038158 +2024-07-19 14:24:25.900 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 31/50, Train Loss: 0.04276499494507506, Val Loss: 0.03943177423364407 +2024-07-19 14:24:26.108 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 32/50, Train Loss: 0.04271347735177826, Val Loss: 0.03897881812441188 +2024-07-19 14:24:26.327 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 33/50, Train Loss: 0.042818008242426694, Val Loss: 0.038973822107387555 +2024-07-19 14:24:26.556 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 34/50, Train Loss: 0.04225131662914882, Val Loss: 0.03897966879948571 +2024-07-19 14:24:26.769 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 35/50, Train Loss: 0.043036362559006024, Val Loss: 0.03908728000179336 +2024-07-19 14:24:26.983 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 36/50, Train Loss: 0.04238078003195492, Val Loss: 0.038891594982831866 +2024-07-19 14:24:27.198 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 37/50, Train Loss: 0.042852812371141205, Val Loss: 0.0391956298435862 +2024-07-19 14:24:27.408 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 38/50, Train Loss: 0.042413903954061305, Val Loss: 0.03933105265369286 +2024-07-19 14:24:27.618 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 39/50, Train Loss: 0.04373990744352341, Val Loss: 0.03998782400142502 +2024-07-19 14:24:27.833 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 40/50, Train Loss: 0.04306564243460024, Val Loss: 0.03862797398422215 +2024-07-19 14:24:28.033 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 41/50, Train Loss: 0.0427834871854331, Val Loss: 0.03940204800282781 +2024-07-19 14:24:28.237 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 42/50, Train Loss: 0.04246685223502887, Val Loss: 0.03854746457088638 +2024-07-19 14:24:28.441 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 43/50, Train Loss: 0.042586662076614996, Val Loss: 0.03938081759858776 +2024-07-19 14:24:28.647 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 44/50, Train Loss: 0.04251603072358144, Val Loss: 0.03880274446832167 +2024-07-19 14:24:28.878 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 45/50, Train Loss: 0.04323482357368276, Val Loss: 0.03934194489910796 +2024-07-19 14:24:29.091 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 46/50, Train Loss: 0.04244178347289562, Val Loss: 0.03854226361255388 +2024-07-19 14:24:29.294 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 47/50, Train Loss: 0.04263651683121114, Val Loss: 0.039515811194841925 +2024-07-19 14:24:29.494 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 48/50, Train Loss: 0.042379918155839316, Val Loss: 0.03842192578658059 +2024-07-19 14:24:29.694 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 49/50, Train Loss: 0.04261906908170597, Val Loss: 0.03891126934841678 +2024-07-19 14:24:29.897 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 50/50, Train Loss: 0.042252655090713825, Val Loss: 0.03844205322801261 +2024-07-19 14:24:29.897 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Fold 0, MAPE: 6.22% +2024-07-19 14:24:30.192 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Training image saved at metaflow_models//bgd_education_1001_5000_LSTM//train_f0_bgd_education_1001_5000_LSTM.png +2024-07-19 14:24:30.680 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 1/50, Train Loss: 0.04177316307562263, Val Loss: 0.03980722238083143 +2024-07-19 14:24:31.026 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 2/50, Train Loss: 0.04099386413773037, Val Loss: 0.03844464930227479 +2024-07-19 14:24:31.402 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 3/50, Train Loss: 0.04063167505935855, Val Loss: 0.0382033906423965 +2024-07-19 14:24:31.812 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 4/50, Train Loss: 0.04063164269270962, Val Loss: 0.03823104571249034 +2024-07-19 14:24:32.159 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 5/50, Train Loss: 0.04070814132486304, Val Loss: 0.03842459316994693 +2024-07-19 14:24:32.503 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 6/50, Train Loss: 0.04077769095103626, Val Loss: 0.04031615492862624 +2024-07-19 14:24:32.853 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 7/50, Train Loss: 0.041171557844093404, Val Loss: 0.041430508919261595 +2024-07-19 14:24:33.196 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 8/50, Train Loss: 0.04098038931619631, Val Loss: 0.04106781858246069 +2024-07-19 14:24:33.549 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 9/50, Train Loss: 0.04073631767285605, Val Loss: 0.041183961807070554 +2024-07-19 14:24:33.909 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 10/50, Train Loss: 0.04081242810934782, Val Loss: 0.040116567894615034 +2024-07-19 14:24:34.273 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 11/50, Train Loss: 0.040676648779580854, Val Loss: 0.04052399909375487 +2024-07-19 14:24:34.639 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 12/50, Train Loss: 0.04072490446779826, Val Loss: 0.040521673984020144 +2024-07-19 14:24:35.002 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 13/50, Train Loss: 0.040532619717900883, Val Loss: 0.04013547822329644 +2024-07-19 14:24:35.372 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 14/50, Train Loss: 0.04051577076571037, Val Loss: 0.039741102908108686 +2024-07-19 14:24:35.731 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 15/50, Train Loss: 0.04050260831997411, Val Loss: 0.040474538112411626 +2024-07-19 14:24:36.093 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 16/50, Train Loss: 0.040366895420298185, Val Loss: 0.03945050836616271 +2024-07-19 14:24:36.456 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 17/50, Train Loss: 0.040290199079844234, Val Loss: 0.039691239243020884 +2024-07-19 14:24:36.813 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 18/50, Train Loss: 0.04027709199039087, Val Loss: 0.03898047046685541 +2024-07-19 14:24:37.177 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 19/50, Train Loss: 0.040117022989649476, Val Loss: 0.03913570829742664 +2024-07-19 14:24:37.544 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 20/50, Train Loss: 0.04009261759227677, Val Loss: 0.03917710916013331 +2024-07-19 14:24:37.913 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 21/50, Train Loss: 0.04001503455618473, Val Loss: 0.03805493583550324 +2024-07-19 14:24:38.273 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 22/50, Train Loss: 0.040159624223023244, Val Loss: 0.039131235859885406 +2024-07-19 14:24:38.650 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 23/50, Train Loss: 0.03999407595814499, Val Loss: 0.038368095920698064 +2024-07-19 14:24:39.027 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 24/50, Train Loss: 0.040049531548092626, Val Loss: 0.03955929761601461 +2024-07-19 14:24:39.383 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 25/50, Train Loss: 0.03991520458398617, Val Loss: 0.038718996594685154 +2024-07-19 14:24:39.731 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 26/50, Train Loss: 0.03991933816354977, Val Loss: 0.038432981391009445 +2024-07-19 14:24:40.085 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 27/50, Train Loss: 0.04007897163703017, Val Loss: 0.03963574580848217 +2024-07-19 14:24:40.453 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 28/50, Train Loss: 0.039932534443086955, Val Loss: 0.03918811150297925 +2024-07-19 14:24:40.818 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 29/50, Train Loss: 0.03999863792057723, Val Loss: 0.03912399905557568 +2024-07-19 14:24:41.185 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 30/50, Train Loss: 0.03986118524654271, Val Loss: 0.038962654140148614 +2024-07-19 14:24:41.551 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 31/50, Train Loss: 0.039774652328087044, Val Loss: 0.03861557732562761 +2024-07-19 14:24:41.915 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 32/50, Train Loss: 0.03996359259655623, Val Loss: 0.039272655556733545 +2024-07-19 14:24:42.281 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 33/50, Train Loss: 0.03977194955342845, Val Loss: 0.03832149450239297 +2024-07-19 14:24:42.645 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 34/50, Train Loss: 0.039794350004665656, Val Loss: 0.0382290856308631 +2024-07-19 14:24:43.024 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 35/50, Train Loss: 0.039827451543652845, Val Loss: 0.03877044436395974 +2024-07-19 14:24:43.390 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 36/50, Train Loss: 0.03974938103036113, Val Loss: 0.03791680375768526 +2024-07-19 14:24:43.753 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 37/50, Train Loss: 0.039853465130986414, Val Loss: 0.038811220107851804 +2024-07-19 14:24:44.111 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 38/50, Train Loss: 0.03962113482443846, Val Loss: 0.03759448708513299 +2024-07-19 14:24:44.471 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 39/50, Train Loss: 0.04005896134225473, Val Loss: 0.03773767397915189 +2024-07-19 14:24:44.832 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 40/50, Train Loss: 0.04020268688208028, Val Loss: 0.03739121901123105 +2024-07-19 14:24:45.195 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 41/50, Train Loss: 0.03994514559689041, Val Loss: 0.03750981846069162 +2024-07-19 14:24:45.556 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 42/50, Train Loss: 0.0396734962928785, Val Loss: 0.03772126299303931 +2024-07-19 14:24:45.915 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 43/50, Train Loss: 0.039815998266208665, Val Loss: 0.03762353025376797 +2024-07-19 14:24:46.286 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 44/50, Train Loss: 0.04006395250405759, Val Loss: 0.037800789886229744 +2024-07-19 14:24:46.655 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 45/50, Train Loss: 0.03981862820633878, Val Loss: 0.0376366501472689 +2024-07-19 14:24:47.020 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 46/50, Train Loss: 0.0403451339839256, Val Loss: 0.03832893901680772 +2024-07-19 14:24:47.384 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 47/50, Train Loss: 0.03950173004645191, Val Loss: 0.037620299722294546 +2024-07-19 14:24:47.746 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 48/50, Train Loss: 0.03974400774563012, Val Loss: 0.03769724735537091 +2024-07-19 14:24:48.121 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 49/50, Train Loss: 0.039921681115990634, Val Loss: 0.03793534560984856 +2024-07-19 14:24:48.482 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 50/50, Train Loss: 0.03969542092758499, Val Loss: 0.037564677916265825 +2024-07-19 14:24:48.482 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Fold 1, MAPE: 5.50% +2024-07-19 14:24:48.577 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Training image saved at metaflow_models//bgd_education_1001_5000_LSTM//train_f1_bgd_education_1001_5000_LSTM.png +2024-07-19 14:24:49.128 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 1/50, Train Loss: 0.040379010894420475, Val Loss: 0.03072029452871632 +2024-07-19 14:24:49.619 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 2/50, Train Loss: 0.04035430393097075, Val Loss: 0.03616292548139353 +2024-07-19 14:24:50.130 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 3/50, Train Loss: 0.040556894268163224, Val Loss: 0.03608231629068787 +2024-07-19 14:24:50.657 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 4/50, Train Loss: 0.04057450314814394, Val Loss: 0.034129921397244606 +2024-07-19 14:24:51.177 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 5/50, Train Loss: 0.04042946834286505, Val Loss: 0.03531056511643771 +2024-07-19 14:24:51.696 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 6/50, Train Loss: 0.04060216276821765, Val Loss: 0.03521864810908163 +2024-07-19 14:24:52.209 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 7/50, Train Loss: 0.040603294994004745, Val Loss: 0.03626647395258014 +2024-07-19 14:24:52.731 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 8/50, Train Loss: 0.04076183457774195, Val Loss: 0.03285392147262354 +2024-07-19 14:24:53.260 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 9/50, Train Loss: 0.04053776174445044, Val Loss: 0.03274422778269729 +2024-07-19 14:24:53.782 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 10/50, Train Loss: 0.040414251590316946, Val Loss: 0.033596662452092044 +2024-07-19 14:24:54.298 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 11/50, Train Loss: 0.04049847103147344, Val Loss: 0.03178309392486069 +2024-07-19 14:24:54.811 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 12/50, Train Loss: 0.04040929896079681, Val Loss: 0.03245833944025878 +2024-07-19 14:24:55.327 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 13/50, Train Loss: 0.04035328111018647, Val Loss: 0.03204852649690332 +2024-07-19 14:24:55.839 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 14/50, Train Loss: 0.04032940470867536, Val Loss: 0.03201678631877577 +2024-07-19 14:24:56.364 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 15/50, Train Loss: 0.0402753675441173, Val Loss: 0.031298143285754566 +2024-07-19 14:24:56.901 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 16/50, Train Loss: 0.04014254142106934, Val Loss: 0.03237052986750732 +2024-07-19 14:24:57.428 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 17/50, Train Loss: 0.04019162333147092, Val Loss: 0.03290565100473326 +2024-07-19 14:24:57.964 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 18/50, Train Loss: 0.040262150823731316, Val Loss: 0.032516358118202235 +2024-07-19 14:24:58.476 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 19/50, Train Loss: 0.04024829717183655, Val Loss: 0.03279592147147333 +2024-07-19 14:24:58.990 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 20/50, Train Loss: 0.04022143355316737, Val Loss: 0.03113937030571538 +2024-07-19 14:24:59.523 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 21/50, Train Loss: 0.04007315072654323, Val Loss: 0.03262657531209894 +2024-07-19 14:25:00.045 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 22/50, Train Loss: 0.04019140029664744, Val Loss: 0.03244467613262099 +2024-07-19 14:25:00.585 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 23/50, Train Loss: 0.040137549472803416, Val Loss: 0.03223613785529459 +2024-07-19 14:25:01.105 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 24/50, Train Loss: 0.04011798226697878, Val Loss: 0.03220800914474436 +2024-07-19 14:25:01.631 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 25/50, Train Loss: 0.0400710233995183, Val Loss: 0.03245713118765805 +2024-07-19 14:25:02.149 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 26/50, Train Loss: 0.04004379737783562, Val Loss: 0.031947155457896156 +2024-07-19 14:25:02.729 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 27/50, Train Loss: 0.04002391535111449, Val Loss: 0.03230370128074208 +2024-07-19 14:25:03.254 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 28/50, Train Loss: 0.040025780282237314, Val Loss: 0.03165694245615521 +2024-07-19 14:25:03.770 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 29/50, Train Loss: 0.03993531410497698, Val Loss: 0.03152390217056145 +2024-07-19 14:25:04.284 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 30/50, Train Loss: 0.039833273467692464, Val Loss: 0.03219009553258483 +2024-07-19 14:25:04.798 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 31/50, Train Loss: 0.03987728609618815, Val Loss: 0.03333043135903977 +2024-07-19 14:25:05.319 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 32/50, Train Loss: 0.04015843172303655, Val Loss: 0.030264964780291996 +2024-07-19 14:25:05.828 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 33/50, Train Loss: 0.03988233739510179, Val Loss: 0.033061677489329026 +2024-07-19 14:25:06.355 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 34/50, Train Loss: 0.03997780873694203, Val Loss: 0.03151127796720814 +2024-07-19 14:25:06.881 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 35/50, Train Loss: 0.039792781534858726, Val Loss: 0.03183124254684191 +2024-07-19 14:25:07.409 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 36/50, Train Loss: 0.03986643877896395, Val Loss: 0.031001282100741927 +2024-07-19 14:25:07.933 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 37/50, Train Loss: 0.03990289613773877, Val Loss: 0.030404338260760177 +2024-07-19 14:25:08.461 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 38/50, Train Loss: 0.039779071501371534, Val Loss: 0.03073345990599813 +2024-07-19 14:25:08.996 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 39/50, Train Loss: 0.03977495562285185, Val Loss: 0.031000312216378546 +2024-07-19 14:25:09.522 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 40/50, Train Loss: 0.03995233044366945, Val Loss: 0.029732347239513655 +2024-07-19 14:25:10.050 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 41/50, Train Loss: 0.04007476611401547, Val Loss: 0.028727423047294486 +2024-07-19 14:25:10.551 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 42/50, Train Loss: 0.03984022970226678, Val Loss: 0.029049979472482525 +2024-07-19 14:25:11.042 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 43/50, Train Loss: 0.03985665092583407, Val Loss: 0.028623234228910627 +2024-07-19 14:25:11.540 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 44/50, Train Loss: 0.0400168238715692, Val Loss: 0.02822733826532557 +2024-07-19 14:25:12.038 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 45/50, Train Loss: 0.03981765833767978, Val Loss: 0.028605803142528276 +2024-07-19 14:25:12.555 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 46/50, Train Loss: 0.039814714875749564, Val Loss: 0.02831442407458215 +2024-07-19 14:25:13.080 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 47/50, Train Loss: 0.03990847383710471, Val Loss: 0.028071017231087427 +2024-07-19 14:25:13.601 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 48/50, Train Loss: 0.03983083743263375, Val Loss: 0.0282788538952937 +2024-07-19 14:25:14.147 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 49/50, Train Loss: 0.03976830425248905, Val Loss: 0.02814947093862134 +2024-07-19 14:25:14.668 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 50/50, Train Loss: 0.0396361495537514, Val Loss: 0.028662713445924425 +2024-07-19 14:25:14.668 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Fold 2, MAPE: 3.30% +2024-07-19 14:25:14.760 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Training image saved at metaflow_models//bgd_education_1001_5000_LSTM//train_f2_bgd_education_1001_5000_LSTM.png +2024-07-19 14:25:15.467 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 1/50, Train Loss: 0.03604217484108593, Val Loss: 0.027045147493481636 +2024-07-19 14:25:16.150 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 2/50, Train Loss: 0.036136653446528604, Val Loss: 0.026734001481452503 +2024-07-19 14:25:16.794 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 3/50, Train Loss: 0.03596288518189159, Val Loss: 0.026526266910337114 +2024-07-19 14:25:17.424 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 4/50, Train Loss: 0.036023929944797736, Val Loss: 0.026867808824455417 +2024-07-19 14:25:18.075 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 5/50, Train Loss: 0.03583110768781745, Val Loss: 0.02653906202396831 +2024-07-19 14:25:18.738 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 6/50, Train Loss: 0.03608467047778915, Val Loss: 0.026995192860832084 +2024-07-19 14:25:19.430 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 7/50, Train Loss: 0.03589804383785757, Val Loss: 0.026684520564771986 +2024-07-19 14:25:20.102 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 8/50, Train Loss: 0.035891432072712136, Val Loss: 0.026026971487177385 +2024-07-19 14:25:20.793 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 9/50, Train Loss: 0.0359926312995998, Val Loss: 0.02663856855518109 +2024-07-19 14:25:21.465 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 10/50, Train Loss: 0.036139272306471654, Val Loss: 0.02706840795439643 +2024-07-19 14:25:22.141 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 11/50, Train Loss: 0.03584394580365656, Val Loss: 0.027873140885620505 +2024-07-19 14:25:22.808 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 12/50, Train Loss: 0.03598675672092462, Val Loss: 0.02698685525841004 +2024-07-19 14:25:23.483 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 13/50, Train Loss: 0.03593754980789676, Val Loss: 0.026496836965953983 +2024-07-19 14:25:24.151 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 14/50, Train Loss: 0.035931320146542704, Val Loss: 0.02757583573661946 +2024-07-19 14:25:24.820 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 15/50, Train Loss: 0.035876565204601585, Val Loss: 0.027097461845826457 +2024-07-19 14:25:25.489 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 16/50, Train Loss: 0.03593777495831864, Val Loss: 0.027171117027063627 +2024-07-19 14:25:26.157 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 17/50, Train Loss: 0.03586946478215595, Val Loss: 0.026959832103268522 +2024-07-19 14:25:26.839 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 18/50, Train Loss: 0.03588840750696724, Val Loss: 0.027747823328182503 +2024-07-19 14:25:27.512 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 19/50, Train Loss: 0.03588194396244745, Val Loss: 0.027546667871443 +2024-07-19 14:25:28.195 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 20/50, Train Loss: 0.035899621970339184, Val Loss: 0.02725689228926156 +2024-07-19 14:25:28.872 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 21/50, Train Loss: 0.03580395563518348, Val Loss: 0.0274130765952774 +2024-07-19 14:25:29.582 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 22/50, Train Loss: 0.035931353106431356, Val Loss: 0.027223208113699347 +2024-07-19 14:25:30.251 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 23/50, Train Loss: 0.0358927084375428, Val Loss: 0.027108395472168922 +2024-07-19 14:25:30.925 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 24/50, Train Loss: 0.03593332097189476, Val Loss: 0.02625206032314816 +2024-07-19 14:25:31.604 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 25/50, Train Loss: 0.035826941875562276, Val Loss: 0.027807364491997538 +2024-07-19 14:25:32.282 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 26/50, Train Loss: 0.03572934509369813, Val Loss: 0.026302074560442486 +2024-07-19 14:25:32.957 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 27/50, Train Loss: 0.03586209576883136, Val Loss: 0.02688961158934477 +2024-07-19 14:25:33.651 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 28/50, Train Loss: 0.03586143246303274, Val Loss: 0.02701861290512858 +2024-07-19 14:25:34.292 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 29/50, Train Loss: 0.035901242184567535, Val Loss: 0.026337786149736996 +2024-07-19 14:25:34.949 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 30/50, Train Loss: 0.03581035665989126, Val Loss: 0.026866652876944154 +2024-07-19 14:25:35.621 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 31/50, Train Loss: 0.03584954702639825, Val Loss: 0.02668004684351586 +2024-07-19 14:25:36.333 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 32/50, Train Loss: 0.03583317063110944, Val Loss: 0.02679313955878889 +2024-07-19 14:25:37.029 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 33/50, Train Loss: 0.03594405360341276, Val Loss: 0.026249723307587004 +2024-07-19 14:25:37.709 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 34/50, Train Loss: 0.03575762820570436, Val Loss: 0.027353524356274993 +2024-07-19 14:25:38.352 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 35/50, Train Loss: 0.03579685661610063, Val Loss: 0.026278533091818965 +2024-07-19 14:25:39.028 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 36/50, Train Loss: 0.03581486836279908, Val Loss: 0.026951763879608463 +2024-07-19 14:25:39.729 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 37/50, Train Loss: 0.035685197507630884, Val Loss: 0.028171905240899808 +2024-07-19 14:25:40.428 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 38/50, Train Loss: 0.03606069198337524, Val Loss: 0.028475719680254523 +2024-07-19 14:25:41.078 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 39/50, Train Loss: 0.03596790090892209, Val Loss: 0.027612333110458142 +2024-07-19 14:25:41.752 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 40/50, Train Loss: 0.035968022312560716, Val Loss: 0.026973526874506795 +2024-07-19 14:25:42.421 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 41/50, Train Loss: 0.03586559451172409, Val Loss: 0.02643291697510191 +2024-07-19 14:25:43.097 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 42/50, Train Loss: 0.035741464962085634, Val Loss: 0.0261285881939772 +2024-07-19 14:25:43.764 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 43/50, Train Loss: 0.035654164040588764, Val Loss: 0.02596551431594668 +2024-07-19 14:25:44.421 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 44/50, Train Loss: 0.035681500303724856, Val Loss: 0.026437254874287424 +2024-07-19 14:25:45.094 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 45/50, Train Loss: 0.03561333707240347, Val Loss: 0.027275602459102065 +2024-07-19 14:25:45.767 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 46/50, Train Loss: 0.03566870807146985, Val Loss: 0.027847325580345618 +2024-07-19 14:25:46.444 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 47/50, Train Loss: 0.0357320014808378, Val Loss: 0.028088429691018286 +2024-07-19 14:25:47.108 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 48/50, Train Loss: 0.03555107702922127, Val Loss: 0.02789197363764853 +2024-07-19 14:25:47.775 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 49/50, Train Loss: 0.035783722531050444, Val Loss: 0.027412097045295947 +2024-07-19 14:25:48.454 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 50/50, Train Loss: 0.0356381584711577, Val Loss: 0.02715139911585563 +2024-07-19 14:25:48.454 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Fold 3, MAPE: 2.55% +2024-07-19 14:25:48.563 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Training image saved at metaflow_models//bgd_education_1001_5000_LSTM//train_f3_bgd_education_1001_5000_LSTM.png +2024-07-19 14:25:49.427 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 1/50, Train Loss: 0.02939352942221276, Val Loss: 0.029218825826270355 +2024-07-19 14:25:50.240 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 2/50, Train Loss: 0.02925050324136084, Val Loss: 0.02620941205453631 +2024-07-19 14:25:51.035 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 3/50, Train Loss: 0.029029508648378836, Val Loss: 0.02607097547199275 +2024-07-19 14:25:51.837 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 4/50, Train Loss: 0.02896824575817356, Val Loss: 0.026410877666864042 +2024-07-19 14:25:52.621 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 5/50, Train Loss: 0.029013453583632196, Val Loss: 0.02601009655139736 +2024-07-19 14:25:53.402 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 6/50, Train Loss: 0.029017003723880747, Val Loss: 0.026384984117907448 +2024-07-19 14:25:54.184 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 7/50, Train Loss: 0.029011799303998987, Val Loss: 0.02723260792727406 +2024-07-19 14:25:54.969 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 8/50, Train Loss: 0.029005678119854286, Val Loss: 0.02704789624171885 +2024-07-19 14:25:55.757 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 9/50, Train Loss: 0.029001213640875215, Val Loss: 0.026482129633124615 +2024-07-19 14:25:56.534 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 10/50, Train Loss: 0.02903744268261797, Val Loss: 0.026989759323564736 +2024-07-19 14:25:57.320 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 11/50, Train Loss: 0.02903584234293673, Val Loss: 0.027165361969555553 +2024-07-19 14:25:58.131 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 12/50, Train Loss: 0.029038884845859075, Val Loss: 0.026505739918935137 +2024-07-19 14:25:58.959 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 13/50, Train Loss: 0.02902303817221424, Val Loss: 0.027123971917742008 +2024-07-19 14:25:59.786 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 14/50, Train Loss: 0.0290317725298087, Val Loss: 0.026456357231615362 +2024-07-19 14:26:00.632 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 15/50, Train Loss: 0.0290105299573842, Val Loss: 0.02741864518690351 +2024-07-19 14:26:01.489 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 16/50, Train Loss: 0.029072673126522983, Val Loss: 0.025981794690360892 +2024-07-19 14:26:02.318 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 17/50, Train Loss: 0.028963159421806807, Val Loss: 0.02802786572106384 +2024-07-19 14:26:03.147 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 18/50, Train Loss: 0.02908248060822978, Val Loss: 0.026109217590576893 +2024-07-19 14:26:03.974 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 19/50, Train Loss: 0.028891624616725103, Val Loss: 0.025953378805236238 +2024-07-19 14:26:04.792 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 20/50, Train Loss: 0.02897268460019604, Val Loss: 0.02745586130264643 +2024-07-19 14:26:05.645 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 21/50, Train Loss: 0.028980230728348533, Val Loss: 0.02764161004105935 +2024-07-19 14:26:06.463 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 22/50, Train Loss: 0.029274949507153297, Val Loss: 0.026058666533916384 +2024-07-19 14:26:07.274 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 23/50, Train Loss: 0.028972220013511706, Val Loss: 0.026178427078333254 +2024-07-19 14:26:08.097 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 24/50, Train Loss: 0.028851996298756573, Val Loss: 0.026263696305151726 +2024-07-19 14:26:08.927 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 25/50, Train Loss: 0.028924895629573327, Val Loss: 0.02636362546803178 +2024-07-19 14:26:09.757 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 26/50, Train Loss: 0.029113611999571652, Val Loss: 0.026189954296962636 +2024-07-19 14:26:10.614 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 27/50, Train Loss: 0.02912827461937463, Val Loss: 0.025947695346297445 +2024-07-19 14:26:11.459 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 28/50, Train Loss: 0.02905664370385009, Val Loss: 0.026121131572368984 +2024-07-19 14:26:12.286 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 29/50, Train Loss: 0.029089369683188725, Val Loss: 0.026420529226999025 +2024-07-19 14:26:13.110 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 30/50, Train Loss: 0.02900959389120504, Val Loss: 0.025822117295418237 +2024-07-19 14:26:13.931 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 31/50, Train Loss: 0.02894221165903158, Val Loss: 0.026410408242530114 +2024-07-19 14:26:14.784 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 32/50, Train Loss: 0.029110583190161448, Val Loss: 0.02594921534025186 +2024-07-19 14:26:15.614 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 33/50, Train Loss: 0.02901185222051956, Val Loss: 0.026146736524596408 +2024-07-19 14:26:16.455 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 34/50, Train Loss: 0.02892586626214804, Val Loss: 0.02604052839750374 +2024-07-19 14:26:17.276 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 35/50, Train Loss: 0.02900886259829769, Val Loss: 0.025866202582177276 +2024-07-19 14:26:18.099 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 36/50, Train Loss: 0.0290580033427002, Val Loss: 0.028133839066769625 +2024-07-19 14:26:18.892 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 37/50, Train Loss: 0.029137313580856875, Val Loss: 0.026103482632016815 +2024-07-19 14:26:19.701 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 38/50, Train Loss: 0.028968452511785123, Val Loss: 0.02587408041329803 +2024-07-19 14:26:20.495 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 39/50, Train Loss: 0.028924044149999436, Val Loss: 0.025839958742663666 +2024-07-19 14:26:21.285 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 40/50, Train Loss: 0.028959797894848243, Val Loss: 0.025805215099574747 +2024-07-19 14:26:22.078 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 41/50, Train Loss: 0.02886530086602811, Val Loss: 0.025820330867694842 +2024-07-19 14:26:22.860 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 42/50, Train Loss: 0.028903756725632553, Val Loss: 0.02585477246021902 +2024-07-19 14:26:23.664 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 43/50, Train Loss: 0.028855554493410245, Val Loss: 0.026130902102670155 +2024-07-19 14:26:24.464 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 44/50, Train Loss: 0.02883341947857004, Val Loss: 0.026353893474348494 +2024-07-19 14:26:25.259 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 45/50, Train Loss: 0.028983025432942986, Val Loss: 0.026190123671816813 +2024-07-19 14:26:26.038 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 46/50, Train Loss: 0.029034668088450538, Val Loss: 0.02668189729337354 +2024-07-19 14:26:26.823 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 47/50, Train Loss: 0.02906641810313686, Val Loss: 0.025890802763201094 +2024-07-19 14:26:27.631 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 48/50, Train Loss: 0.02885576756671071, Val Loss: 0.026001389767672564 +2024-07-19 14:26:28.461 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 49/50, Train Loss: 0.02892261016397522, Val Loss: 0.02587300314995888 +2024-07-19 14:26:29.296 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 50/50, Train Loss: 0.02880709496541665, Val Loss: 0.02638646508441181 +2024-07-19 14:26:29.297 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Fold 4, MAPE: 3.00% +2024-07-19 14:26:29.398 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Training image saved at metaflow_models//bgd_education_1001_5000_LSTM//train_f4_bgd_education_1001_5000_LSTM.png +2024-07-19 14:26:33.633 [7/cross_validate_train/61 (pid 99439)] Task finished successfully. +2024-07-19 14:26:33.664 [7/model_scores/62 (pid 99994)] Task is starting. +2024-07-19 14:26:35.130 [7/model_scores/62 (pid 99994)] INFO:__main__:Average Train Loss across all folds: 0.03720589580172491 +2024-07-19 14:26:39.024 [7/model_scores/62 (pid 99994)] INFO:__main__:Average Validation Loss across all folds: 0.03164146175809406 +2024-07-19 14:26:39.024 [7/model_scores/62 (pid 99994)] INFO:__main__:Average MAPE across all folds: 4.12% +2024-07-19 14:26:39.026 [7/model_scores/62 (pid 99994)] Task finished successfully. +2024-07-19 14:26:39.060 [7/validate_model/63 (pid 199)] Task is starting. +2024-07-19 14:26:40.540 [7/validate_model/63 (pid 199)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:26:40.646 [7/validate_model/63 (pid 199)] INFO:__main__:Test Set MAPE: 7.20% +2024-07-19 14:26:41.009 [7/validate_model/63 (pid 199)] INFO:__main__:Test image saved at metaflow_models//bgd_education_1001_5000_LSTM//test_bgd_education_1001_5000_LSTM.png +2024-07-19 14:26:41.459 [7/validate_model/63 (pid 199)] Task finished successfully. +2024-07-19 14:26:41.491 [7/log_model/64 (pid 218)] Task is starting. +2024-07-19 14:26:42.953 [7/log_model/64 (pid 218)] INFO:__main__:Logging model bgd_education_1001_5000_LSTM +2024-07-19 14:26:42.954 [7/log_model/64 (pid 218)] INFO:__main__:Model logged at metaflow_models//bgd_education_1001_5000_LSTM//bgd_education_1001_5000_LSTM.pth +2024-07-19 14:26:46.854 [7/log_model/64 (pid 218)] Task finished successfully. +2024-07-19 14:26:46.884 [7/end/65 (pid 269)] Task is starting. +2024-07-19 14:26:48.347 [7/end/65 (pid 269)] INFO:__main__:Pipeline end. +2024-07-19 14:26:48.686 [7/end/65 (pid 269)] Task finished successfully. +2024-07-19 14:26:48.687 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/7') succeeded: +-- stdout -- +2024-07-19 14:23:50.718 Workflow starting (run-id 7): +2024-07-19 14:23:50.794 [7/start/53 (pid 99255)] Task is starting. +2024-07-19 14:23:52.330 [7/start/53 (pid 99255)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:23:52.634 [7/start/53 (pid 99255)] Task finished successfully. +2024-07-19 14:23:52.665 [7/ingest/54 (pid 99272)] Task is starting. +2024-07-19 14:23:54.126 [7/ingest/54 (pid 99272)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:23:54.139 [7/ingest/54 (pid 99272)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:23:58.056 [7/ingest/54 (pid 99272)] Task finished successfully. +2024-07-19 14:23:58.089 [7/pick_2017_data/55 (pid 99305)] Task is starting. +2024-07-19 14:23:59.581 [7/pick_2017_data/55 (pid 99305)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:23:59.893 [7/pick_2017_data/55 (pid 99305)] Task finished successfully. +2024-07-19 14:23:59.925 [7/fill_missing_data/56 (pid 99316)] Task is starting. +2024-07-19 14:24:01.435 [7/fill_missing_data/56 (pid 99316)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:24:01.439 [7/fill_missing_data/56 (pid 99316)] INFO:__main__:NaN counts per column: +2024-07-19 14:24:01.439 [7/fill_missing_data/56 (pid 99316)] INFO:__main__:Panther_education_Misty 20 +2024-07-19 14:24:01.439 [7/fill_missing_data/56 (pid 99316)] Panther_education_Jonathan 647 +2024-07-19 14:24:01.439 [7/fill_missing_data/56 (pid 99316)] dtype: int64 +2024-07-19 14:24:01.439 [7/fill_missing_data/56 (pid 99316)] --- Logging error --- +2024-07-19 14:24:01.440 [7/fill_missing_data/56 (pid 99316)] Traceback (most recent call last): +2024-07-19 14:24:01.440 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:24:01.440 [7/fill_missing_data/56 (pid 99316)] msg = self.format(record) +2024-07-19 14:24:01.440 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] return fmt.format(record) +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] record.message = record.getMessage() +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] msg = msg % self.args +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] TypeError: not all arguments converted during string formatting +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] Call stack: +2024-07-19 14:24:01.441 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] BGD_LinearFlow() +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] cli.main(self) +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] return func(*args, **kwargs) +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:24:02.158 [7/fill_missing_data/56 (pid 99316)] return self.main(*args, **kwargs) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] rv = self.invoke(ctx) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] return callback(*args, **kwargs) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] task.run_step( +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] self._exec_step_function(step_func) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] step_function() +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:24:02.159 [7/fill_missing_data/56 (pid 99316)] Arguments: (667,) +2024-07-19 14:24:02.160 [7/fill_missing_data/56 (pid 99316)] Task finished successfully. +2024-07-19 14:24:02.192 [7/find_median/57 (pid 99333)] Task is starting. +2024-07-19 14:24:03.682 [7/find_median/57 (pid 99333)] INFO:__main__:Computing and using median.. +2024-07-19 14:24:04.196 [7/find_median/57 (pid 99333)] Task finished successfully. +2024-07-19 14:24:04.227 [7/aggregate_data/58 (pid 99344)] Task is starting. +2024-07-19 14:24:05.712 [7/aggregate_data/58 (pid 99344)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:24:09.597 [7/aggregate_data/58 (pid 99344)] Task finished successfully. +2024-07-19 14:24:09.625 [7/split_data/59 (pid 99383)] Task is starting. +2024-07-19 14:24:11.139 [7/split_data/59 (pid 99383)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:24:15.044 [7/split_data/59 (pid 99383)] Task finished successfully. +2024-07-19 14:24:15.074 [7/make_x_y/60 (pid 99422)] Task is starting. +2024-07-19 14:24:16.904 [7/make_x_y/60 (pid 99422)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:24:17.226 [7/make_x_y/60 (pid 99422)] Shape of y_train: (6978, 1) +2024-07-19 14:24:17.226 [7/make_x_y/60 (pid 99422)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:24:17.226 [7/make_x_y/60 (pid 99422)] Shape of y_test: (1722, 1) +2024-07-19 14:24:17.227 [7/make_x_y/60 (pid 99422)] Task finished successfully. +2024-07-19 14:24:17.260 [7/cross_validate_train/61 (pid 99439)] Task is starting. +2024-07-19 14:24:18.707 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Creating bgd_education_1001_5000_LSTM +2024-07-19 14:24:18.708 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Performing cross validation.. +2024-07-19 14:24:19.451 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 1/50, Train Loss: 0.1916567465743503, Val Loss: 0.11219305232972712 +2024-07-19 14:24:19.667 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 2/50, Train Loss: 0.11700044461601489, Val Loss: 0.09875198639929295 +2024-07-19 14:24:19.882 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 3/50, Train Loss: 0.11259059185111844, Val Loss: 0.09274196886533015 +2024-07-19 14:24:20.094 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 4/50, Train Loss: 0.10793047307713612, Val Loss: 0.08821646335559923 +2024-07-19 14:24:20.305 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 5/50, Train Loss: 0.1026727043696352, Val Loss: 0.08415179719796052 +2024-07-19 14:24:20.526 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 6/50, Train Loss: 0.09555055100370098, Val Loss: 0.08210076170193183 +2024-07-19 14:24:20.735 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 7/50, Train Loss: 0.08876192514356729, Val Loss: 0.08004550268319813 +2024-07-19 14:24:20.951 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 8/50, Train Loss: 0.07755800366804406, Val Loss: 0.0649598288173611 +2024-07-19 14:24:21.165 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 9/50, Train Loss: 0.07635425630252103, Val Loss: 0.0698615077480271 +2024-07-19 14:24:21.399 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 10/50, Train Loss: 0.06849927082657814, Val Loss: 0.06113914531227704 +2024-07-19 14:24:21.623 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 11/50, Train Loss: 0.0650296599881069, Val Loss: 0.06225554896770297 +2024-07-19 14:24:21.835 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 12/50, Train Loss: 0.06374221924390341, Val Loss: 0.06229889256930029 +2024-07-19 14:24:22.051 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 13/50, Train Loss: 0.0624004856658143, Val Loss: 0.06163083691452 +2024-07-19 14:24:22.261 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 14/50, Train Loss: 0.059987120582042516, Val Loss: 0.057938645719676406 +2024-07-19 14:24:22.478 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 15/50, Train Loss: 0.05748258445512604, Val Loss: 0.05424085888709571 +2024-07-19 14:24:22.702 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 16/50, Train Loss: 0.055913753455152385, Val Loss: 0.05261589762930934 +2024-07-19 14:24:22.919 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 17/50, Train Loss: 0.05609496441241857, Val Loss: 0.05600084903071056 +2024-07-19 14:24:23.135 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 18/50, Train Loss: 0.05543212466747374, Val Loss: 0.05455798988003988 +2024-07-19 14:24:23.353 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 19/50, Train Loss: 0.054271601140499115, Val Loss: 0.05271896392711111 +2024-07-19 14:24:23.579 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 20/50, Train Loss: 0.05319998891571084, Val Loss: 0.05430302129605332 +2024-07-19 14:24:23.788 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 21/50, Train Loss: 0.05189713483323922, Val Loss: 0.04909670040816874 +2024-07-19 14:24:23.999 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 22/50, Train Loss: 0.05069769667209806, Val Loss: 0.049279688228223775 +2024-07-19 14:24:24.211 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 23/50, Train Loss: 0.04844446137950227, Val Loss: 0.044344830553273894 +2024-07-19 14:24:24.419 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 24/50, Train Loss: 0.04682002251816762, Val Loss: 0.04284936627624808 +2024-07-19 14:24:24.628 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 25/50, Train Loss: 0.04540485571566466, Val Loss: 0.04113922884838807 +2024-07-19 14:24:24.840 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 26/50, Train Loss: 0.04449890926480293, Val Loss: 0.0411168037838227 +2024-07-19 14:24:25.055 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 27/50, Train Loss: 0.043910230837158254, Val Loss: 0.03992302154467718 +2024-07-19 14:24:25.268 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 28/50, Train Loss: 0.04343415351232161, Val Loss: 0.03958254997190591 +2024-07-19 14:24:25.478 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 29/50, Train Loss: 0.04315314542602848, Val Loss: 0.039817681485736695 +2024-07-19 14:24:25.686 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 30/50, Train Loss: 0.04298032105371759, Val Loss: 0.03908557110038158 +2024-07-19 14:24:25.900 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 31/50, Train Loss: 0.04276499494507506, Val Loss: 0.03943177423364407 +2024-07-19 14:24:26.108 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 32/50, Train Loss: 0.04271347735177826, Val Loss: 0.03897881812441188 +2024-07-19 14:24:26.327 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 33/50, Train Loss: 0.042818008242426694, Val Loss: 0.038973822107387555 +2024-07-19 14:24:26.556 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 34/50, Train Loss: 0.04225131662914882, Val Loss: 0.03897966879948571 +2024-07-19 14:24:26.769 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 35/50, Train Loss: 0.043036362559006024, Val Loss: 0.03908728000179336 +2024-07-19 14:24:26.983 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 36/50, Train Loss: 0.04238078003195492, Val Loss: 0.038891594982831866 +2024-07-19 14:24:27.198 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 37/50, Train Loss: 0.042852812371141205, Val Loss: 0.0391956298435862 +2024-07-19 14:24:27.408 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 38/50, Train Loss: 0.042413903954061305, Val Loss: 0.03933105265369286 +2024-07-19 14:24:27.618 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 39/50, Train Loss: 0.04373990744352341, Val Loss: 0.03998782400142502 +2024-07-19 14:24:27.833 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 40/50, Train Loss: 0.04306564243460024, Val Loss: 0.03862797398422215 +2024-07-19 14:24:28.033 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 41/50, Train Loss: 0.0427834871854331, Val Loss: 0.03940204800282781 +2024-07-19 14:24:28.237 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 42/50, Train Loss: 0.04246685223502887, Val Loss: 0.03854746457088638 +2024-07-19 14:24:28.441 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 43/50, Train Loss: 0.042586662076614996, Val Loss: 0.03938081759858776 +2024-07-19 14:24:28.647 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 44/50, Train Loss: 0.04251603072358144, Val Loss: 0.03880274446832167 +2024-07-19 14:24:28.878 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 45/50, Train Loss: 0.04323482357368276, Val Loss: 0.03934194489910796 +2024-07-19 14:24:29.091 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 46/50, Train Loss: 0.04244178347289562, Val Loss: 0.03854226361255388 +2024-07-19 14:24:29.294 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 47/50, Train Loss: 0.04263651683121114, Val Loss: 0.039515811194841925 +2024-07-19 14:24:29.494 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 48/50, Train Loss: 0.042379918155839316, Val Loss: 0.03842192578658059 +2024-07-19 14:24:29.694 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 49/50, Train Loss: 0.04261906908170597, Val Loss: 0.03891126934841678 +2024-07-19 14:24:29.897 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 50/50, Train Loss: 0.042252655090713825, Val Loss: 0.03844205322801261 +2024-07-19 14:24:29.897 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Fold 0, MAPE: 6.22% +2024-07-19 14:24:30.192 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Training image saved at metaflow_models//bgd_education_1001_5000_LSTM//train_f0_bgd_education_1001_5000_LSTM.png +2024-07-19 14:24:30.680 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 1/50, Train Loss: 0.04177316307562263, Val Loss: 0.03980722238083143 +2024-07-19 14:24:31.026 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 2/50, Train Loss: 0.04099386413773037, Val Loss: 0.03844464930227479 +2024-07-19 14:24:31.402 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 3/50, Train Loss: 0.04063167505935855, Val Loss: 0.0382033906423965 +2024-07-19 14:24:31.812 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 4/50, Train Loss: 0.04063164269270962, Val Loss: 0.03823104571249034 +2024-07-19 14:24:32.159 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 5/50, Train Loss: 0.04070814132486304, Val Loss: 0.03842459316994693 +2024-07-19 14:24:32.503 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 6/50, Train Loss: 0.04077769095103626, Val Loss: 0.04031615492862624 +2024-07-19 14:24:32.853 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 7/50, Train Loss: 0.041171557844093404, Val Loss: 0.041430508919261595 +2024-07-19 14:24:33.196 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 8/50, Train Loss: 0.04098038931619631, Val Loss: 0.04106781858246069 +2024-07-19 14:24:33.549 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 9/50, Train Loss: 0.04073631767285605, Val Loss: 0.041183961807070554 +2024-07-19 14:24:33.909 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 10/50, Train Loss: 0.04081242810934782, Val Loss: 0.040116567894615034 +2024-07-19 14:24:34.273 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 11/50, Train Loss: 0.040676648779580854, Val Loss: 0.04052399909375487 +2024-07-19 14:24:34.639 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 12/50, Train Loss: 0.04072490446779826, Val Loss: 0.040521673984020144 +2024-07-19 14:24:35.002 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 13/50, Train Loss: 0.040532619717900883, Val Loss: 0.04013547822329644 +2024-07-19 14:24:35.372 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 14/50, Train Loss: 0.04051577076571037, Val Loss: 0.039741102908108686 +2024-07-19 14:24:35.731 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 15/50, Train Loss: 0.04050260831997411, Val Loss: 0.040474538112411626 +2024-07-19 14:24:36.093 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 16/50, Train Loss: 0.040366895420298185, Val Loss: 0.03945050836616271 +2024-07-19 14:24:36.456 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 17/50, Train Loss: 0.040290199079844234, Val Loss: 0.039691239243020884 +2024-07-19 14:24:36.813 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 18/50, Train Loss: 0.04027709199039087, Val Loss: 0.03898047046685541 +2024-07-19 14:24:37.177 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 19/50, Train Loss: 0.040117022989649476, Val Loss: 0.03913570829742664 +2024-07-19 14:24:37.544 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 20/50, Train Loss: 0.04009261759227677, Val Loss: 0.03917710916013331 +2024-07-19 14:24:37.913 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 21/50, Train Loss: 0.04001503455618473, Val Loss: 0.03805493583550324 +2024-07-19 14:24:38.273 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 22/50, Train Loss: 0.040159624223023244, Val Loss: 0.039131235859885406 +2024-07-19 14:24:38.650 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 23/50, Train Loss: 0.03999407595814499, Val Loss: 0.038368095920698064 +2024-07-19 14:24:39.027 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 24/50, Train Loss: 0.040049531548092626, Val Loss: 0.03955929761601461 +2024-07-19 14:24:39.383 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 25/50, Train Loss: 0.03991520458398617, Val Loss: 0.038718996594685154 +2024-07-19 14:24:39.731 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 26/50, Train Loss: 0.03991933816354977, Val Loss: 0.038432981391009445 +2024-07-19 14:24:40.085 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 27/50, Train Loss: 0.04007897163703017, Val Loss: 0.03963574580848217 +2024-07-19 14:24:40.453 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 28/50, Train Loss: 0.039932534443086955, Val Loss: 0.03918811150297925 +2024-07-19 14:24:40.818 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 29/50, Train Loss: 0.03999863792057723, Val Loss: 0.03912399905557568 +2024-07-19 14:24:41.185 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 30/50, Train Loss: 0.03986118524654271, Val Loss: 0.038962654140148614 +2024-07-19 14:24:41.551 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 31/50, Train Loss: 0.039774652328087044, Val Loss: 0.03861557732562761 +2024-07-19 14:24:41.915 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 32/50, Train Loss: 0.03996359259655623, Val Loss: 0.039272655556733545 +2024-07-19 14:24:42.281 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 33/50, Train Loss: 0.03977194955342845, Val Loss: 0.03832149450239297 +2024-07-19 14:24:42.645 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 34/50, Train Loss: 0.039794350004665656, Val Loss: 0.0382290856308631 +2024-07-19 14:24:43.024 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 35/50, Train Loss: 0.039827451543652845, Val Loss: 0.03877044436395974 +2024-07-19 14:24:43.390 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 36/50, Train Loss: 0.03974938103036113, Val Loss: 0.03791680375768526 +2024-07-19 14:24:43.753 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 37/50, Train Loss: 0.039853465130986414, Val Loss: 0.038811220107851804 +2024-07-19 14:24:44.111 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 38/50, Train Loss: 0.03962113482443846, Val Loss: 0.03759448708513299 +2024-07-19 14:24:44.471 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 39/50, Train Loss: 0.04005896134225473, Val Loss: 0.03773767397915189 +2024-07-19 14:24:44.832 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 40/50, Train Loss: 0.04020268688208028, Val Loss: 0.03739121901123105 +2024-07-19 14:24:45.195 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 41/50, Train Loss: 0.03994514559689041, Val Loss: 0.03750981846069162 +2024-07-19 14:24:45.556 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 42/50, Train Loss: 0.0396734962928785, Val Loss: 0.03772126299303931 +2024-07-19 14:24:45.915 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 43/50, Train Loss: 0.039815998266208665, Val Loss: 0.03762353025376797 +2024-07-19 14:24:46.286 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 44/50, Train Loss: 0.04006395250405759, Val Loss: 0.037800789886229744 +2024-07-19 14:24:46.655 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 45/50, Train Loss: 0.03981862820633878, Val Loss: 0.0376366501472689 +2024-07-19 14:24:47.020 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 46/50, Train Loss: 0.0403451339839256, Val Loss: 0.03832893901680772 +2024-07-19 14:24:47.384 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 47/50, Train Loss: 0.03950173004645191, Val Loss: 0.037620299722294546 +2024-07-19 14:24:47.746 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 48/50, Train Loss: 0.03974400774563012, Val Loss: 0.03769724735537091 +2024-07-19 14:24:48.121 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 49/50, Train Loss: 0.039921681115990634, Val Loss: 0.03793534560984856 +2024-07-19 14:24:48.482 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 50/50, Train Loss: 0.03969542092758499, Val Loss: 0.037564677916265825 +2024-07-19 14:24:48.482 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Fold 1, MAPE: 5.50% +2024-07-19 14:24:48.577 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Training image saved at metaflow_models//bgd_education_1001_5000_LSTM//train_f1_bgd_education_1001_5000_LSTM.png +2024-07-19 14:24:49.128 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 1/50, Train Loss: 0.040379010894420475, Val Loss: 0.03072029452871632 +2024-07-19 14:24:49.619 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 2/50, Train Loss: 0.04035430393097075, Val Loss: 0.03616292548139353 +2024-07-19 14:24:50.130 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 3/50, Train Loss: 0.040556894268163224, Val Loss: 0.03608231629068787 +2024-07-19 14:24:50.657 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 4/50, Train Loss: 0.04057450314814394, Val Loss: 0.034129921397244606 +2024-07-19 14:24:51.177 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 5/50, Train Loss: 0.04042946834286505, Val Loss: 0.03531056511643771 +2024-07-19 14:24:51.696 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 6/50, Train Loss: 0.04060216276821765, Val Loss: 0.03521864810908163 +2024-07-19 14:24:52.209 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 7/50, Train Loss: 0.040603294994004745, Val Loss: 0.03626647395258014 +2024-07-19 14:24:52.731 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 8/50, Train Loss: 0.04076183457774195, Val Loss: 0.03285392147262354 +2024-07-19 14:24:53.260 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 9/50, Train Loss: 0.04053776174445044, Val Loss: 0.03274422778269729 +2024-07-19 14:24:53.782 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 10/50, Train Loss: 0.040414251590316946, Val Loss: 0.033596662452092044 +2024-07-19 14:24:54.298 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 11/50, Train Loss: 0.04049847103147344, Val Loss: 0.03178309392486069 +2024-07-19 14:24:54.811 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 12/50, Train Loss: 0.04040929896079681, Val Loss: 0.03245833944025878 +2024-07-19 14:24:55.327 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 13/50, Train Loss: 0.04035328111018647, Val Loss: 0.03204852649690332 +2024-07-19 14:24:55.839 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 14/50, Train Loss: 0.04032940470867536, Val Loss: 0.03201678631877577 +2024-07-19 14:24:56.364 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 15/50, Train Loss: 0.0402753675441173, Val Loss: 0.031298143285754566 +2024-07-19 14:24:56.901 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 16/50, Train Loss: 0.04014254142106934, Val Loss: 0.03237052986750732 +2024-07-19 14:24:57.428 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 17/50, Train Loss: 0.04019162333147092, Val Loss: 0.03290565100473326 +2024-07-19 14:24:57.964 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 18/50, Train Loss: 0.040262150823731316, Val Loss: 0.032516358118202235 +2024-07-19 14:24:58.476 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 19/50, Train Loss: 0.04024829717183655, Val Loss: 0.03279592147147333 +2024-07-19 14:24:58.990 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 20/50, Train Loss: 0.04022143355316737, Val Loss: 0.03113937030571538 +2024-07-19 14:24:59.523 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 21/50, Train Loss: 0.04007315072654323, Val Loss: 0.03262657531209894 +2024-07-19 14:25:00.045 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 22/50, Train Loss: 0.04019140029664744, Val Loss: 0.03244467613262099 +2024-07-19 14:25:00.585 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 23/50, Train Loss: 0.040137549472803416, Val Loss: 0.03223613785529459 +2024-07-19 14:25:01.105 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 24/50, Train Loss: 0.04011798226697878, Val Loss: 0.03220800914474436 +2024-07-19 14:25:01.631 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 25/50, Train Loss: 0.0400710233995183, Val Loss: 0.03245713118765805 +2024-07-19 14:25:02.149 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 26/50, Train Loss: 0.04004379737783562, Val Loss: 0.031947155457896156 +2024-07-19 14:25:02.729 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 27/50, Train Loss: 0.04002391535111449, Val Loss: 0.03230370128074208 +2024-07-19 14:25:03.254 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 28/50, Train Loss: 0.040025780282237314, Val Loss: 0.03165694245615521 +2024-07-19 14:25:03.770 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 29/50, Train Loss: 0.03993531410497698, Val Loss: 0.03152390217056145 +2024-07-19 14:25:04.284 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 30/50, Train Loss: 0.039833273467692464, Val Loss: 0.03219009553258483 +2024-07-19 14:25:04.798 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 31/50, Train Loss: 0.03987728609618815, Val Loss: 0.03333043135903977 +2024-07-19 14:25:05.319 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 32/50, Train Loss: 0.04015843172303655, Val Loss: 0.030264964780291996 +2024-07-19 14:25:05.828 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 33/50, Train Loss: 0.03988233739510179, Val Loss: 0.033061677489329026 +2024-07-19 14:25:06.355 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 34/50, Train Loss: 0.03997780873694203, Val Loss: 0.03151127796720814 +2024-07-19 14:25:06.881 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 35/50, Train Loss: 0.039792781534858726, Val Loss: 0.03183124254684191 +2024-07-19 14:25:07.409 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 36/50, Train Loss: 0.03986643877896395, Val Loss: 0.031001282100741927 +2024-07-19 14:25:07.933 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 37/50, Train Loss: 0.03990289613773877, Val Loss: 0.030404338260760177 +2024-07-19 14:25:08.461 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 38/50, Train Loss: 0.039779071501371534, Val Loss: 0.03073345990599813 +2024-07-19 14:25:08.996 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 39/50, Train Loss: 0.03977495562285185, Val Loss: 0.031000312216378546 +2024-07-19 14:25:09.522 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 40/50, Train Loss: 0.03995233044366945, Val Loss: 0.029732347239513655 +2024-07-19 14:25:10.050 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 41/50, Train Loss: 0.04007476611401547, Val Loss: 0.028727423047294486 +2024-07-19 14:25:10.551 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 42/50, Train Loss: 0.03984022970226678, Val Loss: 0.029049979472482525 +2024-07-19 14:25:11.042 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 43/50, Train Loss: 0.03985665092583407, Val Loss: 0.028623234228910627 +2024-07-19 14:25:11.540 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 44/50, Train Loss: 0.0400168238715692, Val Loss: 0.02822733826532557 +2024-07-19 14:25:12.038 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 45/50, Train Loss: 0.03981765833767978, Val Loss: 0.028605803142528276 +2024-07-19 14:25:12.555 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 46/50, Train Loss: 0.039814714875749564, Val Loss: 0.02831442407458215 +2024-07-19 14:25:13.080 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 47/50, Train Loss: 0.03990847383710471, Val Loss: 0.028071017231087427 +2024-07-19 14:25:13.601 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 48/50, Train Loss: 0.03983083743263375, Val Loss: 0.0282788538952937 +2024-07-19 14:25:14.147 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 49/50, Train Loss: 0.03976830425248905, Val Loss: 0.02814947093862134 +2024-07-19 14:25:14.668 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 50/50, Train Loss: 0.0396361495537514, Val Loss: 0.028662713445924425 +2024-07-19 14:25:14.668 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Fold 2, MAPE: 3.30% +2024-07-19 14:25:14.760 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Training image saved at metaflow_models//bgd_education_1001_5000_LSTM//train_f2_bgd_education_1001_5000_LSTM.png +2024-07-19 14:25:15.467 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 1/50, Train Loss: 0.03604217484108593, Val Loss: 0.027045147493481636 +2024-07-19 14:25:16.150 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 2/50, Train Loss: 0.036136653446528604, Val Loss: 0.026734001481452503 +2024-07-19 14:25:16.794 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 3/50, Train Loss: 0.03596288518189159, Val Loss: 0.026526266910337114 +2024-07-19 14:25:17.424 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 4/50, Train Loss: 0.036023929944797736, Val Loss: 0.026867808824455417 +2024-07-19 14:25:18.075 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 5/50, Train Loss: 0.03583110768781745, Val Loss: 0.02653906202396831 +2024-07-19 14:25:18.738 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 6/50, Train Loss: 0.03608467047778915, Val Loss: 0.026995192860832084 +2024-07-19 14:25:19.430 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 7/50, Train Loss: 0.03589804383785757, Val Loss: 0.026684520564771986 +2024-07-19 14:25:20.102 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 8/50, Train Loss: 0.035891432072712136, Val Loss: 0.026026971487177385 +2024-07-19 14:25:20.793 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 9/50, Train Loss: 0.0359926312995998, Val Loss: 0.02663856855518109 +2024-07-19 14:25:21.465 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 10/50, Train Loss: 0.036139272306471654, Val Loss: 0.02706840795439643 +2024-07-19 14:25:22.141 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 11/50, Train Loss: 0.03584394580365656, Val Loss: 0.027873140885620505 +2024-07-19 14:25:22.808 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 12/50, Train Loss: 0.03598675672092462, Val Loss: 0.02698685525841004 +2024-07-19 14:25:23.483 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 13/50, Train Loss: 0.03593754980789676, Val Loss: 0.026496836965953983 +2024-07-19 14:25:24.151 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 14/50, Train Loss: 0.035931320146542704, Val Loss: 0.02757583573661946 +2024-07-19 14:25:24.820 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 15/50, Train Loss: 0.035876565204601585, Val Loss: 0.027097461845826457 +2024-07-19 14:25:25.489 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 16/50, Train Loss: 0.03593777495831864, Val Loss: 0.027171117027063627 +2024-07-19 14:25:26.157 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 17/50, Train Loss: 0.03586946478215595, Val Loss: 0.026959832103268522 +2024-07-19 14:25:26.839 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 18/50, Train Loss: 0.03588840750696724, Val Loss: 0.027747823328182503 +2024-07-19 14:25:27.512 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 19/50, Train Loss: 0.03588194396244745, Val Loss: 0.027546667871443 +2024-07-19 14:25:28.195 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 20/50, Train Loss: 0.035899621970339184, Val Loss: 0.02725689228926156 +2024-07-19 14:25:28.872 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 21/50, Train Loss: 0.03580395563518348, Val Loss: 0.0274130765952774 +2024-07-19 14:25:29.582 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 22/50, Train Loss: 0.035931353106431356, Val Loss: 0.027223208113699347 +2024-07-19 14:25:30.251 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 23/50, Train Loss: 0.0358927084375428, Val Loss: 0.027108395472168922 +2024-07-19 14:25:30.925 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 24/50, Train Loss: 0.03593332097189476, Val Loss: 0.02625206032314816 +2024-07-19 14:25:31.604 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 25/50, Train Loss: 0.035826941875562276, Val Loss: 0.027807364491997538 +2024-07-19 14:25:32.282 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 26/50, Train Loss: 0.03572934509369813, Val Loss: 0.026302074560442486 +2024-07-19 14:25:32.957 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 27/50, Train Loss: 0.03586209576883136, Val Loss: 0.02688961158934477 +2024-07-19 14:25:33.651 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 28/50, Train Loss: 0.03586143246303274, Val Loss: 0.02701861290512858 +2024-07-19 14:25:34.292 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 29/50, Train Loss: 0.035901242184567535, Val Loss: 0.026337786149736996 +2024-07-19 14:25:34.949 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 30/50, Train Loss: 0.03581035665989126, Val Loss: 0.026866652876944154 +2024-07-19 14:25:35.621 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 31/50, Train Loss: 0.03584954702639825, Val Loss: 0.02668004684351586 +2024-07-19 14:25:36.333 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 32/50, Train Loss: 0.03583317063110944, Val Loss: 0.02679313955878889 +2024-07-19 14:25:37.029 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 33/50, Train Loss: 0.03594405360341276, Val Loss: 0.026249723307587004 +2024-07-19 14:25:37.709 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 34/50, Train Loss: 0.03575762820570436, Val Loss: 0.027353524356274993 +2024-07-19 14:25:38.352 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 35/50, Train Loss: 0.03579685661610063, Val Loss: 0.026278533091818965 +2024-07-19 14:25:39.028 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 36/50, Train Loss: 0.03581486836279908, Val Loss: 0.026951763879608463 +2024-07-19 14:25:39.729 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 37/50, Train Loss: 0.035685197507630884, Val Loss: 0.028171905240899808 +2024-07-19 14:25:40.428 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 38/50, Train Loss: 0.03606069198337524, Val Loss: 0.028475719680254523 +2024-07-19 14:25:41.078 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 39/50, Train Loss: 0.03596790090892209, Val Loss: 0.027612333110458142 +2024-07-19 14:25:41.752 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 40/50, Train Loss: 0.035968022312560716, Val Loss: 0.026973526874506795 +2024-07-19 14:25:42.421 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 41/50, Train Loss: 0.03586559451172409, Val Loss: 0.02643291697510191 +2024-07-19 14:25:43.097 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 42/50, Train Loss: 0.035741464962085634, Val Loss: 0.0261285881939772 +2024-07-19 14:25:43.764 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 43/50, Train Loss: 0.035654164040588764, Val Loss: 0.02596551431594668 +2024-07-19 14:25:44.421 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 44/50, Train Loss: 0.035681500303724856, Val Loss: 0.026437254874287424 +2024-07-19 14:25:45.094 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 45/50, Train Loss: 0.03561333707240347, Val Loss: 0.027275602459102065 +2024-07-19 14:25:45.767 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 46/50, Train Loss: 0.03566870807146985, Val Loss: 0.027847325580345618 +2024-07-19 14:25:46.444 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 47/50, Train Loss: 0.0357320014808378, Val Loss: 0.028088429691018286 +2024-07-19 14:25:47.108 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 48/50, Train Loss: 0.03555107702922127, Val Loss: 0.02789197363764853 +2024-07-19 14:25:47.775 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 49/50, Train Loss: 0.035783722531050444, Val Loss: 0.027412097045295947 +2024-07-19 14:25:48.454 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 50/50, Train Loss: 0.0356381584711577, Val Loss: 0.02715139911585563 +2024-07-19 14:25:48.454 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Fold 3, MAPE: 2.55% +2024-07-19 14:25:48.563 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Training image saved at metaflow_models//bgd_education_1001_5000_LSTM//train_f3_bgd_education_1001_5000_LSTM.png +2024-07-19 14:25:49.427 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 1/50, Train Loss: 0.02939352942221276, Val Loss: 0.029218825826270355 +2024-07-19 14:25:50.240 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 2/50, Train Loss: 0.02925050324136084, Val Loss: 0.02620941205453631 +2024-07-19 14:25:51.035 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 3/50, Train Loss: 0.029029508648378836, Val Loss: 0.02607097547199275 +2024-07-19 14:25:51.837 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 4/50, Train Loss: 0.02896824575817356, Val Loss: 0.026410877666864042 +2024-07-19 14:25:52.621 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 5/50, Train Loss: 0.029013453583632196, Val Loss: 0.02601009655139736 +2024-07-19 14:25:53.402 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 6/50, Train Loss: 0.029017003723880747, Val Loss: 0.026384984117907448 +2024-07-19 14:25:54.184 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 7/50, Train Loss: 0.029011799303998987, Val Loss: 0.02723260792727406 +2024-07-19 14:25:54.969 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 8/50, Train Loss: 0.029005678119854286, Val Loss: 0.02704789624171885 +2024-07-19 14:25:55.757 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 9/50, Train Loss: 0.029001213640875215, Val Loss: 0.026482129633124615 +2024-07-19 14:25:56.534 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 10/50, Train Loss: 0.02903744268261797, Val Loss: 0.026989759323564736 +2024-07-19 14:25:57.320 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 11/50, Train Loss: 0.02903584234293673, Val Loss: 0.027165361969555553 +2024-07-19 14:25:58.131 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 12/50, Train Loss: 0.029038884845859075, Val Loss: 0.026505739918935137 +2024-07-19 14:25:58.959 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 13/50, Train Loss: 0.02902303817221424, Val Loss: 0.027123971917742008 +2024-07-19 14:25:59.786 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 14/50, Train Loss: 0.0290317725298087, Val Loss: 0.026456357231615362 +2024-07-19 14:26:00.632 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 15/50, Train Loss: 0.0290105299573842, Val Loss: 0.02741864518690351 +2024-07-19 14:26:01.489 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 16/50, Train Loss: 0.029072673126522983, Val Loss: 0.025981794690360892 +2024-07-19 14:26:02.318 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 17/50, Train Loss: 0.028963159421806807, Val Loss: 0.02802786572106384 +2024-07-19 14:26:03.147 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 18/50, Train Loss: 0.02908248060822978, Val Loss: 0.026109217590576893 +2024-07-19 14:26:03.974 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 19/50, Train Loss: 0.028891624616725103, Val Loss: 0.025953378805236238 +2024-07-19 14:26:04.792 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 20/50, Train Loss: 0.02897268460019604, Val Loss: 0.02745586130264643 +2024-07-19 14:26:05.645 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 21/50, Train Loss: 0.028980230728348533, Val Loss: 0.02764161004105935 +2024-07-19 14:26:06.463 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 22/50, Train Loss: 0.029274949507153297, Val Loss: 0.026058666533916384 +2024-07-19 14:26:07.274 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 23/50, Train Loss: 0.028972220013511706, Val Loss: 0.026178427078333254 +2024-07-19 14:26:08.097 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 24/50, Train Loss: 0.028851996298756573, Val Loss: 0.026263696305151726 +2024-07-19 14:26:08.927 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 25/50, Train Loss: 0.028924895629573327, Val Loss: 0.02636362546803178 +2024-07-19 14:26:09.757 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 26/50, Train Loss: 0.029113611999571652, Val Loss: 0.026189954296962636 +2024-07-19 14:26:10.614 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 27/50, Train Loss: 0.02912827461937463, Val Loss: 0.025947695346297445 +2024-07-19 14:26:11.459 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 28/50, Train Loss: 0.02905664370385009, Val Loss: 0.026121131572368984 +2024-07-19 14:26:12.286 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 29/50, Train Loss: 0.029089369683188725, Val Loss: 0.026420529226999025 +2024-07-19 14:26:13.110 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 30/50, Train Loss: 0.02900959389120504, Val Loss: 0.025822117295418237 +2024-07-19 14:26:13.931 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 31/50, Train Loss: 0.02894221165903158, Val Loss: 0.026410408242530114 +2024-07-19 14:26:14.784 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 32/50, Train Loss: 0.029110583190161448, Val Loss: 0.02594921534025186 +2024-07-19 14:26:15.614 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 33/50, Train Loss: 0.02901185222051956, Val Loss: 0.026146736524596408 +2024-07-19 14:26:16.455 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 34/50, Train Loss: 0.02892586626214804, Val Loss: 0.02604052839750374 +2024-07-19 14:26:17.276 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 35/50, Train Loss: 0.02900886259829769, Val Loss: 0.025866202582177276 +2024-07-19 14:26:18.099 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 36/50, Train Loss: 0.0290580033427002, Val Loss: 0.028133839066769625 +2024-07-19 14:26:18.892 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 37/50, Train Loss: 0.029137313580856875, Val Loss: 0.026103482632016815 +2024-07-19 14:26:19.701 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 38/50, Train Loss: 0.028968452511785123, Val Loss: 0.02587408041329803 +2024-07-19 14:26:20.495 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 39/50, Train Loss: 0.028924044149999436, Val Loss: 0.025839958742663666 +2024-07-19 14:26:21.285 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 40/50, Train Loss: 0.028959797894848243, Val Loss: 0.025805215099574747 +2024-07-19 14:26:22.078 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 41/50, Train Loss: 0.02886530086602811, Val Loss: 0.025820330867694842 +2024-07-19 14:26:22.860 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 42/50, Train Loss: 0.028903756725632553, Val Loss: 0.02585477246021902 +2024-07-19 14:26:23.664 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 43/50, Train Loss: 0.028855554493410245, Val Loss: 0.026130902102670155 +2024-07-19 14:26:24.464 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 44/50, Train Loss: 0.02883341947857004, Val Loss: 0.026353893474348494 +2024-07-19 14:26:25.259 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 45/50, Train Loss: 0.028983025432942986, Val Loss: 0.026190123671816813 +2024-07-19 14:26:26.038 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 46/50, Train Loss: 0.029034668088450538, Val Loss: 0.02668189729337354 +2024-07-19 14:26:26.823 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 47/50, Train Loss: 0.02906641810313686, Val Loss: 0.025890802763201094 +2024-07-19 14:26:27.631 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 48/50, Train Loss: 0.02885576756671071, Val Loss: 0.026001389767672564 +2024-07-19 14:26:28.461 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 49/50, Train Loss: 0.02892261016397522, Val Loss: 0.02587300314995888 +2024-07-19 14:26:29.296 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Epoch 50/50, Train Loss: 0.02880709496541665, Val Loss: 0.02638646508441181 +2024-07-19 14:26:29.297 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Fold 4, MAPE: 3.00% +2024-07-19 14:26:29.398 [7/cross_validate_train/61 (pid 99439)] INFO:__main__:Training image saved at metaflow_models//bgd_education_1001_5000_LSTM//train_f4_bgd_education_1001_5000_LSTM.png +2024-07-19 14:26:33.633 [7/cross_validate_train/61 (pid 99439)] Task finished successfully. +2024-07-19 14:26:33.664 [7/model_scores/62 (pid 99994)] Task is starting. +2024-07-19 14:26:35.130 [7/model_scores/62 (pid 99994)] INFO:__main__:Average Train Loss across all folds: 0.03720589580172491 +2024-07-19 14:26:39.024 [7/model_scores/62 (pid 99994)] INFO:__main__:Average Validation Loss across all folds: 0.03164146175809406 +2024-07-19 14:26:39.024 [7/model_scores/62 (pid 99994)] INFO:__main__:Average MAPE across all folds: 4.12% +2024-07-19 14:26:39.026 [7/model_scores/62 (pid 99994)] Task finished successfully. +2024-07-19 14:26:39.060 [7/validate_model/63 (pid 199)] Task is starting. +2024-07-19 14:26:40.540 [7/validate_model/63 (pid 199)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:26:40.646 [7/validate_model/63 (pid 199)] INFO:__main__:Test Set MAPE: 7.20% +2024-07-19 14:26:41.009 [7/validate_model/63 (pid 199)] INFO:__main__:Test image saved at metaflow_models//bgd_education_1001_5000_LSTM//test_bgd_education_1001_5000_LSTM.png +2024-07-19 14:26:41.459 [7/validate_model/63 (pid 199)] Task finished successfully. +2024-07-19 14:26:41.491 [7/log_model/64 (pid 218)] Task is starting. +2024-07-19 14:26:42.953 [7/log_model/64 (pid 218)] INFO:__main__:Logging model bgd_education_1001_5000_LSTM +2024-07-19 14:26:42.954 [7/log_model/64 (pid 218)] INFO:__main__:Model logged at metaflow_models//bgd_education_1001_5000_LSTM//bgd_education_1001_5000_LSTM.pth +2024-07-19 14:26:46.854 [7/log_model/64 (pid 218)] Task finished successfully. +2024-07-19 14:26:46.884 [7/end/65 (pid 269)] Task is starting. +2024-07-19 14:26:48.347 [7/end/65 (pid 269)] INFO:__main__:Pipeline end. +2024-07-19 14:26:48.686 [7/end/65 (pid 269)] Task finished successfully. +2024-07-19 14:26:48.687 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/scaler_bgd_education_1001_5000_LSTM.pkl b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/scaler_bgd_education_1001_5000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..87b9ae19abcef3e5eee96009a648344125dd2c84 --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/scaler_bgd_education_1001_5000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d13cafb792e193188a8f607fd8ca7d7abfc0b33ff16dd9bc9c84b3655798fffe +size 557 diff --git a/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/test_bgd_education_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/test_bgd_education_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..782c7234ee5f55e720e8f27404754e5fb255a2a6 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/test_bgd_education_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f0_bgd_education_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f0_bgd_education_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..26b79ad68129bad08bf2613a2ba93d69c7f849b1 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f0_bgd_education_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f1_bgd_education_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f1_bgd_education_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..868a3917a9c2feba61316dbb54a49bfa825498f6 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f1_bgd_education_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f2_bgd_education_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f2_bgd_education_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..acd2073ac4a9410b2a9f717d5a4467bdf78ecb6f Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f2_bgd_education_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f3_bgd_education_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f3_bgd_education_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..26671472174a3638fa9d276a7578417b4b24a089 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f3_bgd_education_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f4_bgd_education_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f4_bgd_education_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..ff286b3e61f621489d8354c06911e1f5b454349a Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_1001_5000_LSTM/train_f4_bgd_education_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/bgd_education_200001_500000_LSTM.pth b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/bgd_education_200001_500000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..dbcdc220794bd42cae58a75bf94633443cc62907 --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/bgd_education_200001_500000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7bcc9e054639768d5c50be46c0caf9066ea0514ce4e207fe045189d1e45c3e7 +size 46786 diff --git a/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/output.txt b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..27e93f1e1328a5138afc61d6b3e128f30d9c5dff --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/output.txt @@ -0,0 +1,762 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 15:00:25.982 Workflow starting (run-id 19): +2024-07-19 15:00:26.057 [19/start/221 (pid 9945)] Task is starting. +2024-07-19 15:00:27.590 [19/start/221 (pid 9945)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 15:00:27.885 [19/start/221 (pid 9945)] Task finished successfully. +2024-07-19 15:00:27.914 [19/ingest/222 (pid 9961)] Task is starting. +2024-07-19 15:00:29.432 [19/ingest/222 (pid 9961)] INFO:__main__:Fetching dataframe.. +2024-07-19 15:00:29.458 [19/ingest/222 (pid 9961)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 15:00:33.599 [19/ingest/222 (pid 9961)] Task finished successfully. +2024-07-19 15:00:33.629 [19/pick_2017_data/223 (pid 9994)] Task is starting. +2024-07-19 15:00:35.118 [19/pick_2017_data/223 (pid 9994)] INFO:__main__:Picking 2017 data.. +2024-07-19 15:00:35.511 [19/pick_2017_data/223 (pid 9994)] Task finished successfully. +2024-07-19 15:00:35.544 [19/fill_missing_data/224 (pid 10005)] Task is starting. +2024-07-19 15:00:36.997 [19/fill_missing_data/224 (pid 10005)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 15:00:37.009 [19/fill_missing_data/224 (pid 10005)] INFO:__main__:NaN counts per column: +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] INFO:__main__:Fox_education_Melinda 1 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Fox_education_Otilia 15 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Fox_education_Maureen 2 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Fox_education_Leona 2 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Fox_education_Wendell 4 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Rat_education_Lee 1 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Rat_education_Kathryn 1 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Rat_education_Conrad 99 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Rat_education_Beverly 2 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Rat_education_Elsie 48 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Rat_education_Tania 202 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Bear_education_Bulah 36 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Bear_education_Wilton 8 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Moose_education_Florence 32 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Cockatoo_education_Brigitte 114 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Cockatoo_education_Terrence 126 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Cockatoo_education_Janet 113 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Cockatoo_education_Tyler 114 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] dtype: int64 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] --- Logging error --- +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] Traceback (most recent call last): +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] msg = self.format(record) +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] return fmt.format(record) +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] record.message = record.getMessage() +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] msg = msg % self.args +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] TypeError: not all arguments converted during string formatting +2024-07-19 15:00:37.012 [19/fill_missing_data/224 (pid 10005)] Call stack: +2024-07-19 15:00:37.012 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 15:00:37.943 [19/fill_missing_data/224 (pid 10005)] BGD_LinearFlow() +2024-07-19 15:00:37.943 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 15:00:37.943 [19/fill_missing_data/224 (pid 10005)] cli.main(self) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] return func(*args, **kwargs) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] return self.main(*args, **kwargs) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] rv = self.invoke(ctx) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] return callback(*args, **kwargs) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] return f(get_current_context(), *args, **kwargs) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] task.run_step( +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] self._exec_step_function(step_func) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] step_function() +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] self.missing_values = find_nan_counts(self.df) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] Arguments: (920,) +2024-07-19 15:00:37.945 [19/fill_missing_data/224 (pid 10005)] Task finished successfully. +2024-07-19 15:00:37.977 [19/find_median/225 (pid 10016)] Task is starting. +2024-07-19 15:00:39.421 [19/find_median/225 (pid 10016)] INFO:__main__:Computing and using median.. +2024-07-19 15:00:39.976 [19/find_median/225 (pid 10016)] Task finished successfully. +2024-07-19 15:00:40.009 [19/aggregate_data/226 (pid 10029)] Task is starting. +2024-07-19 15:00:41.488 [19/aggregate_data/226 (pid 10029)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 15:00:45.388 [19/aggregate_data/226 (pid 10029)] Task finished successfully. +2024-07-19 15:00:45.420 [19/split_data/227 (pid 10061)] Task is starting. +2024-07-19 15:00:46.917 [19/split_data/227 (pid 10061)] INFO:__main__:Splitting data into test and train... +2024-07-19 15:00:50.881 [19/split_data/227 (pid 10061)] Task finished successfully. +2024-07-19 15:00:50.914 [19/make_x_y/228 (pid 10096)] Task is starting. +2024-07-19 15:00:52.774 [19/make_x_y/228 (pid 10096)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 15:00:53.090 [19/make_x_y/228 (pid 10096)] Shape of y_train: (6978, 1) +2024-07-19 15:00:53.090 [19/make_x_y/228 (pid 10096)] Shape of X_test: (1722, 30, 1) +2024-07-19 15:00:53.090 [19/make_x_y/228 (pid 10096)] Shape of y_test: (1722, 1) +2024-07-19 15:00:53.091 [19/make_x_y/228 (pid 10096)] Task finished successfully. +2024-07-19 15:00:53.119 [19/cross_validate_train/229 (pid 10109)] Task is starting. +2024-07-19 15:00:54.592 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Creating bgd_education_200001_500000_LSTM +2024-07-19 15:00:54.593 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Performing cross validation.. +2024-07-19 15:00:55.344 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 1/50, Train Loss: 0.2795727937608152, Val Loss: 0.2553998127176955 +2024-07-19 15:00:55.565 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 2/50, Train Loss: 0.19171227414060282, Val Loss: 0.22042805278623426 +2024-07-19 15:00:55.779 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 3/50, Train Loss: 0.14744031107103503, Val Loss: 0.14055851565019503 +2024-07-19 15:00:56.007 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 4/50, Train Loss: 0.1152341804794363, Val Loss: 0.11745127894588418 +2024-07-19 15:00:56.286 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 5/50, Train Loss: 0.10321404281500224, Val Loss: 0.10539698047009674 +2024-07-19 15:00:56.531 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 6/50, Train Loss: 0.09758333902101259, Val Loss: 0.10368517544623967 +2024-07-19 15:00:56.746 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 7/50, Train Loss: 0.09341266690879255, Val Loss: 0.10114145641391342 +2024-07-19 15:00:56.965 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 8/50, Train Loss: 0.08679815834841213, Val Loss: 0.10161215650874215 +2024-07-19 15:00:57.179 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 9/50, Train Loss: 0.08204896959501344, Val Loss: 0.09812996798270457 +2024-07-19 15:00:57.395 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 10/50, Train Loss: 0.07698401939627286, Val Loss: 0.08886626423210711 +2024-07-19 15:00:57.608 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 11/50, Train Loss: 0.07343506239153244, Val Loss: 0.08320821177315067 +2024-07-19 15:00:57.820 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 12/50, Train Loss: 0.06991778767189465, Val Loss: 0.08048029515791584 +2024-07-19 15:00:58.032 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 13/50, Train Loss: 0.06747893747445699, Val Loss: 0.07811213566644772 +2024-07-19 15:00:58.248 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 14/50, Train Loss: 0.06597778553495535, Val Loss: 0.07710843543345863 +2024-07-19 15:00:58.468 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 15/50, Train Loss: 0.062873661920831, Val Loss: 0.07661741257116601 +2024-07-19 15:00:58.687 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 16/50, Train Loss: 0.06135316112556973, Val Loss: 0.07576678028783283 +2024-07-19 15:00:58.919 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 17/50, Train Loss: 0.06185922318616429, Val Loss: 0.07485283870954772 +2024-07-19 15:00:59.137 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 18/50, Train Loss: 0.05997582635766751, Val Loss: 0.07492351642734296 +2024-07-19 15:00:59.350 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 19/50, Train Loss: 0.0580943646664555, Val Loss: 0.0733131393790245 +2024-07-19 15:00:59.564 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 20/50, Train Loss: 0.05829750263207668, Val Loss: 0.07319775958721703 +2024-07-19 15:00:59.781 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 21/50, Train Loss: 0.05712913037151904, Val Loss: 0.07303376052830671 +2024-07-19 15:01:00.006 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 22/50, Train Loss: 0.05645292322780635, Val Loss: 0.07265410783725816 +2024-07-19 15:01:00.225 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 23/50, Train Loss: 0.055580250516131115, Val Loss: 0.0719297982349589 +2024-07-19 15:01:00.438 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 24/50, Train Loss: 0.05527542058277775, Val Loss: 0.07351596079565384 +2024-07-19 15:01:00.656 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 25/50, Train Loss: 0.054721263212126656, Val Loss: 0.07298064634606645 +2024-07-19 15:01:00.876 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 26/50, Train Loss: 0.054012626107480075, Val Loss: 0.07709548209567328 +2024-07-19 15:01:01.096 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 27/50, Train Loss: 0.056255677161184514, Val Loss: 0.07281628210802336 +2024-07-19 15:01:01.315 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 28/50, Train Loss: 0.054784086910454, Val Loss: 0.07347180553384729 +2024-07-19 15:01:01.548 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 29/50, Train Loss: 0.05491489735809532, Val Loss: 0.07610180128265072 +2024-07-19 15:01:01.768 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 30/50, Train Loss: 0.05349710603823533, Val Loss: 0.07206555365307911 +2024-07-19 15:01:01.986 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 31/50, Train Loss: 0.05423949840101036, Val Loss: 0.0730027600720122 +2024-07-19 15:01:02.201 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 32/50, Train Loss: 0.05358465005819862, Val Loss: 0.07652336922851768 +2024-07-19 15:01:02.418 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 33/50, Train Loss: 0.05384462709362443, Val Loss: 0.0748652252997901 +2024-07-19 15:01:02.633 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 34/50, Train Loss: 0.053051241749041786, Val Loss: 0.07341169535711005 +2024-07-19 15:01:02.846 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 35/50, Train Loss: 0.053022727370262146, Val Loss: 0.0767369251194838 +2024-07-19 15:01:03.066 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 36/50, Train Loss: 0.052434048539883385, Val Loss: 0.0769988075905555 +2024-07-19 15:01:03.285 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 37/50, Train Loss: 0.05289760866277927, Val Loss: 0.07336339636428936 +2024-07-19 15:01:03.504 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 38/50, Train Loss: 0.05177261378314044, Val Loss: 0.07031769607518171 +2024-07-19 15:01:03.716 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 39/50, Train Loss: 0.05113266670220607, Val Loss: 0.07350688921035947 +2024-07-19 15:01:03.930 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 40/50, Train Loss: 0.05079423817428383, Val Loss: 0.07381996089542234 +2024-07-19 15:01:04.154 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 41/50, Train Loss: 0.05047085277132086, Val Loss: 0.07330619825704678 +2024-07-19 15:01:04.373 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 42/50, Train Loss: 0.05122566203007827, Val Loss: 0.07242836340053661 +2024-07-19 15:01:04.591 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 43/50, Train Loss: 0.049958377472452214, Val Loss: 0.07265533859262595 +2024-07-19 15:01:04.803 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 44/50, Train Loss: 0.05008897326282553, Val Loss: 0.07178826579773748 +2024-07-19 15:01:05.019 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 45/50, Train Loss: 0.04961221695349023, Val Loss: 0.07262175761767335 +2024-07-19 15:01:05.239 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 46/50, Train Loss: 0.05003458412515151, Val Loss: 0.07389596748996426 +2024-07-19 15:01:05.453 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 47/50, Train Loss: 0.0501909767453735, Val Loss: 0.0732781129914361 +2024-07-19 15:01:05.668 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 48/50, Train Loss: 0.04937675897334073, Val Loss: 0.07234235349539164 +2024-07-19 15:01:05.885 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 49/50, Train Loss: 0.05031561378288914, Val Loss: 0.07438138530061052 +2024-07-19 15:01:06.105 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 50/50, Train Loss: 0.04916903457126102, Val Loss: 0.07131404288717218 +2024-07-19 15:01:06.105 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Fold 0, MAPE: 4.16% +2024-07-19 15:01:06.470 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Training image saved at metaflow_models//bgd_education_200001_500000_LSTM//train_f0_bgd_education_200001_500000_LSTM.png +2024-07-19 15:01:06.939 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 1/50, Train Loss: 0.04635363653914569, Val Loss: 0.044321738988966554 +2024-07-19 15:01:07.309 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 2/50, Train Loss: 0.0422619005588636, Val Loss: 0.04258608923771897 +2024-07-19 15:01:07.672 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 3/50, Train Loss: 0.040912010719719, Val Loss: 0.04082525214432059 +2024-07-19 15:01:08.037 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 4/50, Train Loss: 0.040147189306069725, Val Loss: 0.04067501627110146 +2024-07-19 15:01:08.404 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 5/50, Train Loss: 0.03967608970730272, Val Loss: 0.03866671785913609 +2024-07-19 15:01:08.773 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 6/50, Train Loss: 0.03968225710400163, Val Loss: 0.03901251073221903 +2024-07-19 15:01:09.141 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 7/50, Train Loss: 0.03878864707195596, Val Loss: 0.03808037387962277 +2024-07-19 15:01:09.551 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 8/50, Train Loss: 0.0389022673288845, Val Loss: 0.037290268653147926 +2024-07-19 15:01:09.933 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 9/50, Train Loss: 0.038770742841983494, Val Loss: 0.03711498558924005 +2024-07-19 15:01:10.338 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 10/50, Train Loss: 0.03847761735422154, Val Loss: 0.036801717520968336 +2024-07-19 15:01:10.747 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 11/50, Train Loss: 0.03838137080510185, Val Loss: 0.03694817655392595 +2024-07-19 15:01:11.176 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 12/50, Train Loss: 0.038865299155450846, Val Loss: 0.03745274366559209 +2024-07-19 15:01:11.585 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 13/50, Train Loss: 0.03765992797298791, Val Loss: 0.037654957155118116 +2024-07-19 15:01:11.957 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 14/50, Train Loss: 0.03753252758657279, Val Loss: 0.0368750526292904 +2024-07-19 15:01:12.326 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 15/50, Train Loss: 0.03775988899375478, Val Loss: 0.03597762078248166 +2024-07-19 15:01:12.695 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 16/50, Train Loss: 0.03876227270556639, Val Loss: 0.03697385241252345 +2024-07-19 15:01:13.080 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 17/50, Train Loss: 0.03692853514564364, Val Loss: 0.03687166105452422 +2024-07-19 15:01:13.483 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 18/50, Train Loss: 0.036431051178337774, Val Loss: 0.03714102078732606 +2024-07-19 15:01:13.880 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 19/50, Train Loss: 0.03648866524230944, Val Loss: 0.039888138706619676 +2024-07-19 15:01:14.268 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 20/50, Train Loss: 0.036423557552776924, Val Loss: 0.03640783245901804 +2024-07-19 15:01:14.644 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 21/50, Train Loss: 0.03675170934261524, Val Loss: 0.03623121710041085 +2024-07-19 15:01:15.009 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 22/50, Train Loss: 0.037205648723326316, Val Loss: 0.036218440562889385 +2024-07-19 15:01:15.380 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 23/50, Train Loss: 0.03617203738285254, Val Loss: 0.03675446810351836 +2024-07-19 15:01:15.750 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 24/50, Train Loss: 0.036383559289452146, Val Loss: 0.037636214514841906 +2024-07-19 15:01:16.117 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 25/50, Train Loss: 0.03622457155421989, Val Loss: 0.03669833487554176 +2024-07-19 15:01:16.512 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 26/50, Train Loss: 0.03610674429633846, Val Loss: 0.03706885335614552 +2024-07-19 15:01:16.909 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 27/50, Train Loss: 0.03591087292114349, Val Loss: 0.0361508596688509 +2024-07-19 15:01:17.336 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 28/50, Train Loss: 0.03593978408264787, Val Loss: 0.03713957205213405 +2024-07-19 15:01:17.727 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 29/50, Train Loss: 0.03552349544551275, Val Loss: 0.03719294499102477 +2024-07-19 15:01:18.106 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 30/50, Train Loss: 0.035554752238605124, Val Loss: 0.036767234572687664 +2024-07-19 15:01:18.497 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 31/50, Train Loss: 0.035390620796035416, Val Loss: 0.03628811934912527 +2024-07-19 15:01:18.893 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 32/50, Train Loss: 0.03583086154436412, Val Loss: 0.03648493509437587 +2024-07-19 15:01:19.281 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 33/50, Train Loss: 0.03601162002919472, Val Loss: 0.0363114445998862 +2024-07-19 15:01:19.664 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 34/50, Train Loss: 0.03563378491017916, Val Loss: 0.036908247936013584 +2024-07-19 15:01:20.056 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 35/50, Train Loss: 0.035198314089889396, Val Loss: 0.036167270982184925 +2024-07-19 15:01:20.429 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 36/50, Train Loss: 0.036005268077531905, Val Loss: 0.036268325220491435 +2024-07-19 15:01:20.813 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 37/50, Train Loss: 0.03583833330298123, Val Loss: 0.0372508256822019 +2024-07-19 15:01:21.223 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 38/50, Train Loss: 0.035117257182320505, Val Loss: 0.03613410477299948 +2024-07-19 15:01:21.629 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 39/50, Train Loss: 0.03561345087236738, Val Loss: 0.03655813065533702 +2024-07-19 15:01:22.005 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 40/50, Train Loss: 0.03518196430108319, Val Loss: 0.036148580949048735 +2024-07-19 15:01:22.369 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 41/50, Train Loss: 0.03578492815363897, Val Loss: 0.03690243391571818 +2024-07-19 15:01:22.734 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 42/50, Train Loss: 0.035758608748039156, Val Loss: 0.037196072221205044 +2024-07-19 15:01:23.101 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 43/50, Train Loss: 0.03549499967939233, Val Loss: 0.03749300816373245 +2024-07-19 15:01:23.469 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 44/50, Train Loss: 0.03551789153724501, Val Loss: 0.03645555906601854 +2024-07-19 15:01:23.832 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 45/50, Train Loss: 0.03603397679757582, Val Loss: 0.038979268960050634 +2024-07-19 15:01:24.201 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 46/50, Train Loss: 0.03543883505953501, Val Loss: 0.03647838467480363 +2024-07-19 15:01:24.568 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 47/50, Train Loss: 0.0357642265623563, Val Loss: 0.0366441788202202 +2024-07-19 15:01:24.936 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 48/50, Train Loss: 0.03545078078973783, Val Loss: 0.03669398866996572 +2024-07-19 15:01:25.303 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 49/50, Train Loss: 0.03541857662470373, Val Loss: 0.03670534481470649 +2024-07-19 15:01:25.665 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 50/50, Train Loss: 0.035646761729292674, Val Loss: 0.03684569190482836 +2024-07-19 15:01:25.665 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Fold 1, MAPE: 3.00% +2024-07-19 15:01:25.785 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Training image saved at metaflow_models//bgd_education_200001_500000_LSTM//train_f1_bgd_education_200001_500000_LSTM.png +2024-07-19 15:01:26.308 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 1/50, Train Loss: 0.03484535200352019, Val Loss: 0.042070977037420146 +2024-07-19 15:01:26.842 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 2/50, Train Loss: 0.035043519633737474, Val Loss: 0.04222110517927118 +2024-07-19 15:01:27.379 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 3/50, Train Loss: 0.03490393381904472, Val Loss: 0.04208582654796742 +2024-07-19 15:01:27.919 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 4/50, Train Loss: 0.0351485446264798, Val Loss: 0.04238228968067749 +2024-07-19 15:01:28.513 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 5/50, Train Loss: 0.03489725884388794, Val Loss: 0.042608150960625826 +2024-07-19 15:01:29.113 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 6/50, Train Loss: 0.0347920985892415, Val Loss: 0.04203598171069815 +2024-07-19 15:01:29.655 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 7/50, Train Loss: 0.034833384372971274, Val Loss: 0.04250708720772653 +2024-07-19 15:01:30.214 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 8/50, Train Loss: 0.03483030784197829, Val Loss: 0.041932384307320054 +2024-07-19 15:01:30.765 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 9/50, Train Loss: 0.034851012666794384, Val Loss: 0.04179579935766555 +2024-07-19 15:01:31.372 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 10/50, Train Loss: 0.03508155146105723, Val Loss: 0.04224943258875125 +2024-07-19 15:01:31.921 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 11/50, Train Loss: 0.03498839984901927, Val Loss: 0.042225432758395735 +2024-07-19 15:01:32.472 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 12/50, Train Loss: 0.034817058559168466, Val Loss: 0.04192900280090603 +2024-07-19 15:01:33.035 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 13/50, Train Loss: 0.0344406072050333, Val Loss: 0.04291841986815672 +2024-07-19 15:01:33.570 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 14/50, Train Loss: 0.034562362713569945, Val Loss: 0.04250547793265935 +2024-07-19 15:01:34.084 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 15/50, Train Loss: 0.03428239427845586, Val Loss: 0.04204683287723644 +2024-07-19 15:01:34.604 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 16/50, Train Loss: 0.03448919176378033, Val Loss: 0.04266682861221803 +2024-07-19 15:01:35.113 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 17/50, Train Loss: 0.034238501502708955, Val Loss: 0.04221601195230677 +2024-07-19 15:01:35.628 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 18/50, Train Loss: 0.034392935630272736, Val Loss: 0.04182112050821652 +2024-07-19 15:01:36.143 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 19/50, Train Loss: 0.0342449445954778, Val Loss: 0.04231418840385772 +2024-07-19 15:01:36.663 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 20/50, Train Loss: 0.03421588597649878, Val Loss: 0.042654803173767554 +2024-07-19 15:01:37.184 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 21/50, Train Loss: 0.034056090021675284, Val Loss: 0.042073201136411845 +2024-07-19 15:01:37.698 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 22/50, Train Loss: 0.03419949894940311, Val Loss: 0.04245085158460849 +2024-07-19 15:01:38.207 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 23/50, Train Loss: 0.034207310307432306, Val Loss: 0.04332939610892051 +2024-07-19 15:01:38.716 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 24/50, Train Loss: 0.03393973818218166, Val Loss: 0.04301600017257639 +2024-07-19 15:01:39.243 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 25/50, Train Loss: 0.03395122917877002, Val Loss: 0.04296370354053136 +2024-07-19 15:01:39.771 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 26/50, Train Loss: 0.03415754068304192, Val Loss: 0.042666430559915466 +2024-07-19 15:01:40.352 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 27/50, Train Loss: 0.03438727439127185, Val Loss: 0.04226618139324961 +2024-07-19 15:01:40.916 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 28/50, Train Loss: 0.03401304256509651, Val Loss: 0.04235266028223811 +2024-07-19 15:01:41.488 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 29/50, Train Loss: 0.03401394782757217, Val Loss: 0.04247064183692675 +2024-07-19 15:01:42.052 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 30/50, Train Loss: 0.03399710546840321, Val Loss: 0.042624924583612264 +2024-07-19 15:01:42.624 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 31/50, Train Loss: 0.03381948066367344, Val Loss: 0.04329074833642792 +2024-07-19 15:01:43.197 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 32/50, Train Loss: 0.03397453982721676, Val Loss: 0.04271552480153135 +2024-07-19 15:01:43.751 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 33/50, Train Loss: 0.034195392375642605, Val Loss: 0.042458030067988345 +2024-07-19 15:01:44.309 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 34/50, Train Loss: 0.03399828658862548, Val Loss: 0.04234655901185564 +2024-07-19 15:01:44.841 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 35/50, Train Loss: 0.03401756193488836, Val Loss: 0.043631205385601196 +2024-07-19 15:01:45.407 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 36/50, Train Loss: 0.0339673808013851, Val Loss: 0.04300767525627806 +2024-07-19 15:01:45.975 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 37/50, Train Loss: 0.033885592374611986, Val Loss: 0.04316795577068586 +2024-07-19 15:01:46.541 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 38/50, Train Loss: 0.033862389776517045, Val Loss: 0.04370041181509559 +2024-07-19 15:01:47.109 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 39/50, Train Loss: 0.03386598071930083, Val Loss: 0.04322437005671295 +2024-07-19 15:01:47.643 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 40/50, Train Loss: 0.03377843055535446, Val Loss: 0.04238721688051481 +2024-07-19 15:01:48.176 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 41/50, Train Loss: 0.033683919076892464, Val Loss: 0.04312444599093618 +2024-07-19 15:01:48.696 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 42/50, Train Loss: 0.033844105746935714, Val Loss: 0.04257661602585702 +2024-07-19 15:01:49.259 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 43/50, Train Loss: 0.03382570486177098, Val Loss: 0.04312135389930493 +2024-07-19 15:01:49.794 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 44/50, Train Loss: 0.03392111384733157, Val Loss: 0.04316442484992582 +2024-07-19 15:01:50.329 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 45/50, Train Loss: 0.03388677566227588, Val Loss: 0.042958495081276506 +2024-07-19 15:01:50.867 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 46/50, Train Loss: 0.03357374883172187, Val Loss: 0.043274964281433334 +2024-07-19 15:01:51.419 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 47/50, Train Loss: 0.033544211106544194, Val Loss: 0.04369246561986369 +2024-07-19 15:01:51.949 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 48/50, Train Loss: 0.03365839474241842, Val Loss: 0.04415331020749904 +2024-07-19 15:01:52.514 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 49/50, Train Loss: 0.03367334666915915, Val Loss: 0.04328865900232985 +2024-07-19 15:01:53.032 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 50/50, Train Loss: 0.0335878991775892, Val Loss: 0.04394252603319851 +2024-07-19 15:01:53.032 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Fold 2, MAPE: 3.73% +2024-07-19 15:01:53.150 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Training image saved at metaflow_models//bgd_education_200001_500000_LSTM//train_f2_bgd_education_200001_500000_LSTM.png +2024-07-19 15:01:53.816 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 1/50, Train Loss: 0.03533780322193283, Val Loss: 0.045391706397404544 +2024-07-19 15:01:54.476 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 2/50, Train Loss: 0.03651628883121765, Val Loss: 0.04561952310236725 +2024-07-19 15:01:55.134 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 3/50, Train Loss: 0.03603101422219244, Val Loss: 0.045226616432537906 +2024-07-19 15:01:55.793 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 4/50, Train Loss: 0.03627980518320652, Val Loss: 0.04444013475566297 +2024-07-19 15:01:56.539 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 5/50, Train Loss: 0.03611830852874746, Val Loss: 0.04449626053305897 +2024-07-19 15:01:57.289 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 6/50, Train Loss: 0.03576004164523049, Val Loss: 0.04368000336595484 +2024-07-19 15:01:57.951 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 7/50, Train Loss: 0.035976737980054664, Val Loss: 0.04360830270358034 +2024-07-19 15:01:58.651 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 8/50, Train Loss: 0.03545923968649482, Val Loss: 0.043154061545391344 +2024-07-19 15:01:59.365 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 9/50, Train Loss: 0.03476602262625956, Val Loss: 0.0430936252547277 +2024-07-19 15:02:00.105 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 10/50, Train Loss: 0.035093566160393906, Val Loss: 0.042657667015855376 +2024-07-19 15:02:00.816 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 11/50, Train Loss: 0.03407746744788673, Val Loss: 0.04208410390325495 +2024-07-19 15:02:01.585 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 12/50, Train Loss: 0.03435169991539561, Val Loss: 0.04341915410918158 +2024-07-19 15:02:02.368 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 13/50, Train Loss: 0.033701002872102474, Val Loss: 0.042568619690231374 +2024-07-19 15:02:03.092 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 14/50, Train Loss: 0.03351977748209483, Val Loss: 0.0418362681426712 +2024-07-19 15:02:03.797 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 15/50, Train Loss: 0.034134464963556155, Val Loss: 0.04458476019066733 +2024-07-19 15:02:04.498 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 16/50, Train Loss: 0.03336332129212479, Val Loss: 0.04166406221889161 +2024-07-19 15:02:05.182 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 17/50, Train Loss: 0.03308173735970504, Val Loss: 0.04139630572014564 +2024-07-19 15:02:05.898 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 18/50, Train Loss: 0.03332623159385299, Val Loss: 0.04287523222533432 +2024-07-19 15:02:06.663 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 19/50, Train Loss: 0.03311454856844798, Val Loss: 0.04164976072875229 +2024-07-19 15:02:07.402 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 20/50, Train Loss: 0.032886700047664856, Val Loss: 0.0419906275598584 +2024-07-19 15:02:08.091 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 21/50, Train Loss: 0.03257801090303349, Val Loss: 0.042051972670329583 +2024-07-19 15:02:08.855 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 22/50, Train Loss: 0.03246287404470248, Val Loss: 0.04012769561361622 +2024-07-19 15:02:09.689 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 23/50, Train Loss: 0.03236261683784119, Val Loss: 0.04172657359693501 +2024-07-19 15:02:10.435 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 24/50, Train Loss: 0.032438053022304625, Val Loss: 0.04257844710672224 +2024-07-19 15:02:11.218 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 25/50, Train Loss: 0.032299574655927206, Val Loss: 0.04156675114220864 +2024-07-19 15:02:11.933 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 26/50, Train Loss: 0.03258651649349765, Val Loss: 0.04223152260119851 +2024-07-19 15:02:12.757 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 27/50, Train Loss: 0.03250364405549552, Val Loss: 0.043601744883769264 +2024-07-19 15:02:13.762 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 28/50, Train Loss: 0.03259645436877665, Val Loss: 0.04125380843273691 +2024-07-19 15:02:14.612 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 29/50, Train Loss: 0.03216134465924681, Val Loss: 0.041582810113558896 +2024-07-19 15:02:15.623 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 30/50, Train Loss: 0.03232491570078347, Val Loss: 0.04175452918216989 +2024-07-19 15:02:16.542 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 31/50, Train Loss: 0.03251596374360666, Val Loss: 0.04259254285008521 +2024-07-19 15:02:17.242 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 32/50, Train Loss: 0.03214807752264689, Val Loss: 0.041185902884683094 +2024-07-19 15:02:17.952 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 33/50, Train Loss: 0.032190557397034476, Val Loss: 0.042135338676539624 +2024-07-19 15:02:18.668 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 34/50, Train Loss: 0.032117667977940544, Val Loss: 0.04135922272060368 +2024-07-19 15:02:19.639 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 35/50, Train Loss: 0.031965598349191555, Val Loss: 0.04197307323684563 +2024-07-19 15:02:20.395 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 36/50, Train Loss: 0.031812039943896746, Val Loss: 0.04271802567952388 +2024-07-19 15:02:21.102 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 37/50, Train Loss: 0.03195444098992707, Val Loss: 0.04204884317477007 +2024-07-19 15:02:21.865 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 38/50, Train Loss: 0.03197409156454752, Val Loss: 0.04163388036996932 +2024-07-19 15:02:22.559 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 39/50, Train Loss: 0.03164367945482061, Val Loss: 0.04120318490911175 +2024-07-19 15:02:23.251 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 40/50, Train Loss: 0.03123213026085741, Val Loss: 0.041400737255006224 +2024-07-19 15:02:23.962 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 41/50, Train Loss: 0.031414723151350674, Val Loss: 0.040530749470800966 +2024-07-19 15:02:24.673 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 42/50, Train Loss: 0.031386513837090096, Val Loss: 0.04046387220355305 +2024-07-19 15:02:25.382 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 43/50, Train Loss: 0.031187725368223777, Val Loss: 0.04014164491279705 +2024-07-19 15:02:26.154 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 44/50, Train Loss: 0.03133552678388684, Val Loss: 0.04011239514157579 +2024-07-19 15:02:26.893 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 45/50, Train Loss: 0.031370607957448046, Val Loss: 0.04032301983317813 +2024-07-19 15:02:27.615 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 46/50, Train Loss: 0.03113319083716567, Val Loss: 0.04065321053604822 +2024-07-19 15:02:28.337 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 47/50, Train Loss: 0.03089437706472531, Val Loss: 0.039368398588251426 +2024-07-19 15:02:29.031 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 48/50, Train Loss: 0.03127962406341956, Val Loss: 0.040045927404551894 +2024-07-19 15:02:29.791 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 49/50, Train Loss: 0.03086685757981996, Val Loss: 0.039833000231836294 +2024-07-19 15:02:30.497 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 50/50, Train Loss: 0.031004693225179226, Val Loss: 0.039506732813409856 +2024-07-19 15:02:30.497 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Fold 3, MAPE: 3.41% +2024-07-19 15:02:30.614 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Training image saved at metaflow_models//bgd_education_200001_500000_LSTM//train_f3_bgd_education_200001_500000_LSTM.png +2024-07-19 15:02:31.683 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 1/50, Train Loss: 0.031443179779491584, Val Loss: 0.037669179004591866 +2024-07-19 15:02:32.591 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 2/50, Train Loss: 0.031517862291126464, Val Loss: 0.03681419583389888 +2024-07-19 15:02:33.440 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 3/50, Train Loss: 0.03098922924926648, Val Loss: 0.035989561848141054 +2024-07-19 15:02:34.329 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 4/50, Train Loss: 0.0313470854710501, Val Loss: 0.039968535002018954 +2024-07-19 15:02:35.222 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 5/50, Train Loss: 0.031110420766808502, Val Loss: 0.03538994194083923 +2024-07-19 15:02:36.135 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 6/50, Train Loss: 0.0308517536639676, Val Loss: 0.033393917403913835 +2024-07-19 15:02:37.006 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 7/50, Train Loss: 0.03071703186135862, Val Loss: 0.035315987628859444 +2024-07-19 15:02:37.916 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 8/50, Train Loss: 0.03083982612364567, Val Loss: 0.03722010724045135 +2024-07-19 15:02:38.866 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 9/50, Train Loss: 0.030441969750797028, Val Loss: 0.03599978802171913 +2024-07-19 15:02:39.811 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 10/50, Train Loss: 0.03062344185373449, Val Loss: 0.0357284273046094 +2024-07-19 15:02:40.751 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 11/50, Train Loss: 0.030614567142757742, Val Loss: 0.03710809928943982 +2024-07-19 15:02:41.695 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 12/50, Train Loss: 0.030734756096665348, Val Loss: 0.036026523977115345 +2024-07-19 15:02:42.666 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 13/50, Train Loss: 0.030695217983940475, Val Loss: 0.03685534725318084 +2024-07-19 15:02:43.656 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 14/50, Train Loss: 0.03061221180749791, Val Loss: 0.03496624448814908 +2024-07-19 15:02:44.596 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 15/50, Train Loss: 0.030637452230471502, Val Loss: 0.03455335183723553 +2024-07-19 15:02:45.443 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 16/50, Train Loss: 0.030268914337464415, Val Loss: 0.03398721171794711 +2024-07-19 15:02:46.294 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 17/50, Train Loss: 0.030666057480969927, Val Loss: 0.03362577468962283 +2024-07-19 15:02:47.213 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 18/50, Train Loss: 0.030858258379029703, Val Loss: 0.03623508037747564 +2024-07-19 15:02:48.064 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 19/50, Train Loss: 0.03054812734762391, Val Loss: 0.03602022088661387 +2024-07-19 15:02:48.920 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 20/50, Train Loss: 0.030245341038188107, Val Loss: 0.034422971912332484 +2024-07-19 15:02:49.805 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 21/50, Train Loss: 0.030164090537844777, Val Loss: 0.03470357306100227 +2024-07-19 15:02:50.729 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 22/50, Train Loss: 0.03036615780585415, Val Loss: 0.0343612804002053 +2024-07-19 15:02:51.635 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 23/50, Train Loss: 0.029973524689142193, Val Loss: 0.03424259859162408 +2024-07-19 15:02:52.602 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 24/50, Train Loss: 0.03036146058322309, Val Loss: 0.03472343152640639 +2024-07-19 15:02:53.443 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 25/50, Train Loss: 0.03025214170914266, Val Loss: 0.03490695301946756 +2024-07-19 15:02:54.367 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 26/50, Train Loss: 0.03008365573791357, Val Loss: 0.03385200155143802 +2024-07-19 15:02:55.218 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 27/50, Train Loss: 0.03006009679737982, Val Loss: 0.03625129319324687 +2024-07-19 15:02:56.119 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 28/50, Train Loss: 0.0303985540816499, Val Loss: 0.03505451911808671 +2024-07-19 15:02:57.096 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 29/50, Train Loss: 0.030031087828779612, Val Loss: 0.03434658488510428 +2024-07-19 15:02:57.968 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 30/50, Train Loss: 0.029832926860263387, Val Loss: 0.033804026256139215 +2024-07-19 15:02:58.941 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 31/50, Train Loss: 0.029956164038074867, Val Loss: 0.03441849914756981 +2024-07-19 15:02:59.866 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 32/50, Train Loss: 0.02961755932851152, Val Loss: 0.033807614314797764 +2024-07-19 15:03:00.768 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 33/50, Train Loss: 0.029368909797375345, Val Loss: 0.036883563357027804 +2024-07-19 15:03:01.674 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 34/50, Train Loss: 0.029644447486274518, Val Loss: 0.03566247949729095 +2024-07-19 15:03:02.609 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 35/50, Train Loss: 0.029820931445970967, Val Loss: 0.035938499142994754 +2024-07-19 15:03:03.497 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 36/50, Train Loss: 0.0296102957288315, Val Loss: 0.035407029948121796 +2024-07-19 15:03:04.423 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 37/50, Train Loss: 0.029748438294608513, Val Loss: 0.033115260101653436 +2024-07-19 15:03:05.365 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 38/50, Train Loss: 0.029224749767108933, Val Loss: 0.03325011893301397 +2024-07-19 15:03:06.233 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 39/50, Train Loss: 0.02937825574734054, Val Loss: 0.03622921858284924 +2024-07-19 15:03:07.101 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 40/50, Train Loss: 0.02931770870134562, Val Loss: 0.034078495073560124 +2024-07-19 15:03:08.027 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 41/50, Train Loss: 0.029353169980203056, Val Loss: 0.03485715817156676 +2024-07-19 15:03:08.914 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 42/50, Train Loss: 0.029384085360996345, Val Loss: 0.033912326989544404 +2024-07-19 15:03:09.769 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 43/50, Train Loss: 0.029103129242475215, Val Loss: 0.035514358481442604 +2024-07-19 15:03:10.721 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 44/50, Train Loss: 0.02956896047056704, Val Loss: 0.03322898385089797 +2024-07-19 15:03:11.742 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 45/50, Train Loss: 0.029147845488246324, Val Loss: 0.03520839701633196 +2024-07-19 15:03:12.638 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 46/50, Train Loss: 0.029183245269110897, Val Loss: 0.03203725502700419 +2024-07-19 15:03:13.491 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 47/50, Train Loss: 0.028903007957634036, Val Loss: 0.03426266270312103 +2024-07-19 15:03:14.342 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 48/50, Train Loss: 0.029054504420076097, Val Loss: 0.033325880212155545 +2024-07-19 15:03:15.184 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 49/50, Train Loss: 0.028736940672068476, Val Loss: 0.035014562208104776 +2024-07-19 15:03:16.020 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 50/50, Train Loss: 0.028874263924720523, Val Loss: 0.03480861743761075 +2024-07-19 15:03:16.020 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Fold 4, MAPE: 3.04% +2024-07-19 15:03:16.133 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Training image saved at metaflow_models//bgd_education_200001_500000_LSTM//train_f4_bgd_education_200001_500000_LSTM.png +2024-07-19 15:03:20.585 [19/cross_validate_train/229 (pid 10109)] Task finished successfully. +2024-07-19 15:03:20.612 [19/model_scores/230 (pid 10725)] Task is starting. +2024-07-19 15:03:22.115 [19/model_scores/230 (pid 10725)] INFO:__main__:Average Train Loss across all folds: 0.035656530525608535 +2024-07-19 15:03:26.080 [19/model_scores/230 (pid 10725)] INFO:__main__:Average Validation Loss across all folds: 0.04528352221524393 +2024-07-19 15:03:26.080 [19/model_scores/230 (pid 10725)] INFO:__main__:Average MAPE across all folds: 3.47% +2024-07-19 15:03:26.081 [19/model_scores/230 (pid 10725)] Task finished successfully. +2024-07-19 15:03:26.111 [19/validate_model/231 (pid 10750)] Task is starting. +2024-07-19 15:03:27.647 [19/validate_model/231 (pid 10750)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 15:03:27.774 [19/validate_model/231 (pid 10750)] INFO:__main__:Test Set MAPE: 3.29% +2024-07-19 15:03:28.209 [19/validate_model/231 (pid 10750)] INFO:__main__:Test image saved at metaflow_models//bgd_education_200001_500000_LSTM//test_bgd_education_200001_500000_LSTM.png +2024-07-19 15:03:28.639 [19/validate_model/231 (pid 10750)] Task finished successfully. +2024-07-19 15:03:28.668 [19/log_model/232 (pid 10769)] Task is starting. +2024-07-19 15:03:30.240 [19/log_model/232 (pid 10769)] INFO:__main__:Logging model bgd_education_200001_500000_LSTM +2024-07-19 15:03:30.241 [19/log_model/232 (pid 10769)] INFO:__main__:Model logged at metaflow_models//bgd_education_200001_500000_LSTM//bgd_education_200001_500000_LSTM.pth +2024-07-19 15:03:34.303 [19/log_model/232 (pid 10769)] Task finished successfully. +2024-07-19 15:03:34.346 [19/end/233 (pid 10811)] Task is starting. +2024-07-19 15:03:35.874 [19/end/233 (pid 10811)] INFO:__main__:Pipeline end. +2024-07-19 15:03:36.195 [19/end/233 (pid 10811)] Task finished successfully. +2024-07-19 15:03:36.196 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/19') succeeded: +-- stdout -- +2024-07-19 15:00:25.982 Workflow starting (run-id 19): +2024-07-19 15:00:26.057 [19/start/221 (pid 9945)] Task is starting. +2024-07-19 15:00:27.590 [19/start/221 (pid 9945)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 15:00:27.885 [19/start/221 (pid 9945)] Task finished successfully. +2024-07-19 15:00:27.914 [19/ingest/222 (pid 9961)] Task is starting. +2024-07-19 15:00:29.432 [19/ingest/222 (pid 9961)] INFO:__main__:Fetching dataframe.. +2024-07-19 15:00:29.458 [19/ingest/222 (pid 9961)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 15:00:33.599 [19/ingest/222 (pid 9961)] Task finished successfully. +2024-07-19 15:00:33.629 [19/pick_2017_data/223 (pid 9994)] Task is starting. +2024-07-19 15:00:35.118 [19/pick_2017_data/223 (pid 9994)] INFO:__main__:Picking 2017 data.. +2024-07-19 15:00:35.511 [19/pick_2017_data/223 (pid 9994)] Task finished successfully. +2024-07-19 15:00:35.544 [19/fill_missing_data/224 (pid 10005)] Task is starting. +2024-07-19 15:00:36.997 [19/fill_missing_data/224 (pid 10005)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 15:00:37.009 [19/fill_missing_data/224 (pid 10005)] INFO:__main__:NaN counts per column: +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] INFO:__main__:Fox_education_Melinda 1 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Fox_education_Otilia 15 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Fox_education_Maureen 2 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Fox_education_Leona 2 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Fox_education_Wendell 4 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Rat_education_Lee 1 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Rat_education_Kathryn 1 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Rat_education_Conrad 99 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Rat_education_Beverly 2 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Rat_education_Elsie 48 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Rat_education_Tania 202 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Bear_education_Bulah 36 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Bear_education_Wilton 8 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Moose_education_Florence 32 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Cockatoo_education_Brigitte 114 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Cockatoo_education_Terrence 126 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Cockatoo_education_Janet 113 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] Cockatoo_education_Tyler 114 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] dtype: int64 +2024-07-19 15:00:37.010 [19/fill_missing_data/224 (pid 10005)] --- Logging error --- +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] Traceback (most recent call last): +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] msg = self.format(record) +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] return fmt.format(record) +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] record.message = record.getMessage() +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] msg = msg % self.args +2024-07-19 15:00:37.011 [19/fill_missing_data/224 (pid 10005)] TypeError: not all arguments converted during string formatting +2024-07-19 15:00:37.012 [19/fill_missing_data/224 (pid 10005)] Call stack: +2024-07-19 15:00:37.012 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 15:00:37.943 [19/fill_missing_data/224 (pid 10005)] BGD_LinearFlow() +2024-07-19 15:00:37.943 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 15:00:37.943 [19/fill_missing_data/224 (pid 10005)] cli.main(self) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] return func(*args, **kwargs) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] return self.main(*args, **kwargs) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] rv = self.invoke(ctx) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] return callback(*args, **kwargs) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] return f(get_current_context(), *args, **kwargs) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] task.run_step( +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] self._exec_step_function(step_func) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] step_function() +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] self.missing_values = find_nan_counts(self.df) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 15:00:37.944 [19/fill_missing_data/224 (pid 10005)] Arguments: (920,) +2024-07-19 15:00:37.945 [19/fill_missing_data/224 (pid 10005)] Task finished successfully. +2024-07-19 15:00:37.977 [19/find_median/225 (pid 10016)] Task is starting. +2024-07-19 15:00:39.421 [19/find_median/225 (pid 10016)] INFO:__main__:Computing and using median.. +2024-07-19 15:00:39.976 [19/find_median/225 (pid 10016)] Task finished successfully. +2024-07-19 15:00:40.009 [19/aggregate_data/226 (pid 10029)] Task is starting. +2024-07-19 15:00:41.488 [19/aggregate_data/226 (pid 10029)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 15:00:45.388 [19/aggregate_data/226 (pid 10029)] Task finished successfully. +2024-07-19 15:00:45.420 [19/split_data/227 (pid 10061)] Task is starting. +2024-07-19 15:00:46.917 [19/split_data/227 (pid 10061)] INFO:__main__:Splitting data into test and train... +2024-07-19 15:00:50.881 [19/split_data/227 (pid 10061)] Task finished successfully. +2024-07-19 15:00:50.914 [19/make_x_y/228 (pid 10096)] Task is starting. +2024-07-19 15:00:52.774 [19/make_x_y/228 (pid 10096)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 15:00:53.090 [19/make_x_y/228 (pid 10096)] Shape of y_train: (6978, 1) +2024-07-19 15:00:53.090 [19/make_x_y/228 (pid 10096)] Shape of X_test: (1722, 30, 1) +2024-07-19 15:00:53.090 [19/make_x_y/228 (pid 10096)] Shape of y_test: (1722, 1) +2024-07-19 15:00:53.091 [19/make_x_y/228 (pid 10096)] Task finished successfully. +2024-07-19 15:00:53.119 [19/cross_validate_train/229 (pid 10109)] Task is starting. +2024-07-19 15:00:54.592 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Creating bgd_education_200001_500000_LSTM +2024-07-19 15:00:54.593 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Performing cross validation.. +2024-07-19 15:00:55.344 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 1/50, Train Loss: 0.2795727937608152, Val Loss: 0.2553998127176955 +2024-07-19 15:00:55.565 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 2/50, Train Loss: 0.19171227414060282, Val Loss: 0.22042805278623426 +2024-07-19 15:00:55.779 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 3/50, Train Loss: 0.14744031107103503, Val Loss: 0.14055851565019503 +2024-07-19 15:00:56.007 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 4/50, Train Loss: 0.1152341804794363, Val Loss: 0.11745127894588418 +2024-07-19 15:00:56.286 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 5/50, Train Loss: 0.10321404281500224, Val Loss: 0.10539698047009674 +2024-07-19 15:00:56.531 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 6/50, Train Loss: 0.09758333902101259, Val Loss: 0.10368517544623967 +2024-07-19 15:00:56.746 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 7/50, Train Loss: 0.09341266690879255, Val Loss: 0.10114145641391342 +2024-07-19 15:00:56.965 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 8/50, Train Loss: 0.08679815834841213, Val Loss: 0.10161215650874215 +2024-07-19 15:00:57.179 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 9/50, Train Loss: 0.08204896959501344, Val Loss: 0.09812996798270457 +2024-07-19 15:00:57.395 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 10/50, Train Loss: 0.07698401939627286, Val Loss: 0.08886626423210711 +2024-07-19 15:00:57.608 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 11/50, Train Loss: 0.07343506239153244, Val Loss: 0.08320821177315067 +2024-07-19 15:00:57.820 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 12/50, Train Loss: 0.06991778767189465, Val Loss: 0.08048029515791584 +2024-07-19 15:00:58.032 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 13/50, Train Loss: 0.06747893747445699, Val Loss: 0.07811213566644772 +2024-07-19 15:00:58.248 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 14/50, Train Loss: 0.06597778553495535, Val Loss: 0.07710843543345863 +2024-07-19 15:00:58.468 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 15/50, Train Loss: 0.062873661920831, Val Loss: 0.07661741257116601 +2024-07-19 15:00:58.687 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 16/50, Train Loss: 0.06135316112556973, Val Loss: 0.07576678028783283 +2024-07-19 15:00:58.919 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 17/50, Train Loss: 0.06185922318616429, Val Loss: 0.07485283870954772 +2024-07-19 15:00:59.137 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 18/50, Train Loss: 0.05997582635766751, Val Loss: 0.07492351642734296 +2024-07-19 15:00:59.350 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 19/50, Train Loss: 0.0580943646664555, Val Loss: 0.0733131393790245 +2024-07-19 15:00:59.564 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 20/50, Train Loss: 0.05829750263207668, Val Loss: 0.07319775958721703 +2024-07-19 15:00:59.781 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 21/50, Train Loss: 0.05712913037151904, Val Loss: 0.07303376052830671 +2024-07-19 15:01:00.006 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 22/50, Train Loss: 0.05645292322780635, Val Loss: 0.07265410783725816 +2024-07-19 15:01:00.225 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 23/50, Train Loss: 0.055580250516131115, Val Loss: 0.0719297982349589 +2024-07-19 15:01:00.438 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 24/50, Train Loss: 0.05527542058277775, Val Loss: 0.07351596079565384 +2024-07-19 15:01:00.656 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 25/50, Train Loss: 0.054721263212126656, Val Loss: 0.07298064634606645 +2024-07-19 15:01:00.876 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 26/50, Train Loss: 0.054012626107480075, Val Loss: 0.07709548209567328 +2024-07-19 15:01:01.096 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 27/50, Train Loss: 0.056255677161184514, Val Loss: 0.07281628210802336 +2024-07-19 15:01:01.315 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 28/50, Train Loss: 0.054784086910454, Val Loss: 0.07347180553384729 +2024-07-19 15:01:01.548 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 29/50, Train Loss: 0.05491489735809532, Val Loss: 0.07610180128265072 +2024-07-19 15:01:01.768 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 30/50, Train Loss: 0.05349710603823533, Val Loss: 0.07206555365307911 +2024-07-19 15:01:01.986 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 31/50, Train Loss: 0.05423949840101036, Val Loss: 0.0730027600720122 +2024-07-19 15:01:02.201 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 32/50, Train Loss: 0.05358465005819862, Val Loss: 0.07652336922851768 +2024-07-19 15:01:02.418 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 33/50, Train Loss: 0.05384462709362443, Val Loss: 0.0748652252997901 +2024-07-19 15:01:02.633 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 34/50, Train Loss: 0.053051241749041786, Val Loss: 0.07341169535711005 +2024-07-19 15:01:02.846 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 35/50, Train Loss: 0.053022727370262146, Val Loss: 0.0767369251194838 +2024-07-19 15:01:03.066 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 36/50, Train Loss: 0.052434048539883385, Val Loss: 0.0769988075905555 +2024-07-19 15:01:03.285 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 37/50, Train Loss: 0.05289760866277927, Val Loss: 0.07336339636428936 +2024-07-19 15:01:03.504 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 38/50, Train Loss: 0.05177261378314044, Val Loss: 0.07031769607518171 +2024-07-19 15:01:03.716 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 39/50, Train Loss: 0.05113266670220607, Val Loss: 0.07350688921035947 +2024-07-19 15:01:03.930 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 40/50, Train Loss: 0.05079423817428383, Val Loss: 0.07381996089542234 +2024-07-19 15:01:04.154 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 41/50, Train Loss: 0.05047085277132086, Val Loss: 0.07330619825704678 +2024-07-19 15:01:04.373 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 42/50, Train Loss: 0.05122566203007827, Val Loss: 0.07242836340053661 +2024-07-19 15:01:04.591 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 43/50, Train Loss: 0.049958377472452214, Val Loss: 0.07265533859262595 +2024-07-19 15:01:04.803 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 44/50, Train Loss: 0.05008897326282553, Val Loss: 0.07178826579773748 +2024-07-19 15:01:05.019 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 45/50, Train Loss: 0.04961221695349023, Val Loss: 0.07262175761767335 +2024-07-19 15:01:05.239 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 46/50, Train Loss: 0.05003458412515151, Val Loss: 0.07389596748996426 +2024-07-19 15:01:05.453 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 47/50, Train Loss: 0.0501909767453735, Val Loss: 0.0732781129914361 +2024-07-19 15:01:05.668 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 48/50, Train Loss: 0.04937675897334073, Val Loss: 0.07234235349539164 +2024-07-19 15:01:05.885 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 49/50, Train Loss: 0.05031561378288914, Val Loss: 0.07438138530061052 +2024-07-19 15:01:06.105 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 50/50, Train Loss: 0.04916903457126102, Val Loss: 0.07131404288717218 +2024-07-19 15:01:06.105 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Fold 0, MAPE: 4.16% +2024-07-19 15:01:06.470 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Training image saved at metaflow_models//bgd_education_200001_500000_LSTM//train_f0_bgd_education_200001_500000_LSTM.png +2024-07-19 15:01:06.939 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 1/50, Train Loss: 0.04635363653914569, Val Loss: 0.044321738988966554 +2024-07-19 15:01:07.309 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 2/50, Train Loss: 0.0422619005588636, Val Loss: 0.04258608923771897 +2024-07-19 15:01:07.672 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 3/50, Train Loss: 0.040912010719719, Val Loss: 0.04082525214432059 +2024-07-19 15:01:08.037 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 4/50, Train Loss: 0.040147189306069725, Val Loss: 0.04067501627110146 +2024-07-19 15:01:08.404 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 5/50, Train Loss: 0.03967608970730272, Val Loss: 0.03866671785913609 +2024-07-19 15:01:08.773 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 6/50, Train Loss: 0.03968225710400163, Val Loss: 0.03901251073221903 +2024-07-19 15:01:09.141 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 7/50, Train Loss: 0.03878864707195596, Val Loss: 0.03808037387962277 +2024-07-19 15:01:09.551 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 8/50, Train Loss: 0.0389022673288845, Val Loss: 0.037290268653147926 +2024-07-19 15:01:09.933 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 9/50, Train Loss: 0.038770742841983494, Val Loss: 0.03711498558924005 +2024-07-19 15:01:10.338 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 10/50, Train Loss: 0.03847761735422154, Val Loss: 0.036801717520968336 +2024-07-19 15:01:10.747 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 11/50, Train Loss: 0.03838137080510185, Val Loss: 0.03694817655392595 +2024-07-19 15:01:11.176 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 12/50, Train Loss: 0.038865299155450846, Val Loss: 0.03745274366559209 +2024-07-19 15:01:11.585 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 13/50, Train Loss: 0.03765992797298791, Val Loss: 0.037654957155118116 +2024-07-19 15:01:11.957 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 14/50, Train Loss: 0.03753252758657279, Val Loss: 0.0368750526292904 +2024-07-19 15:01:12.326 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 15/50, Train Loss: 0.03775988899375478, Val Loss: 0.03597762078248166 +2024-07-19 15:01:12.695 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 16/50, Train Loss: 0.03876227270556639, Val Loss: 0.03697385241252345 +2024-07-19 15:01:13.080 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 17/50, Train Loss: 0.03692853514564364, Val Loss: 0.03687166105452422 +2024-07-19 15:01:13.483 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 18/50, Train Loss: 0.036431051178337774, Val Loss: 0.03714102078732606 +2024-07-19 15:01:13.880 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 19/50, Train Loss: 0.03648866524230944, Val Loss: 0.039888138706619676 +2024-07-19 15:01:14.268 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 20/50, Train Loss: 0.036423557552776924, Val Loss: 0.03640783245901804 +2024-07-19 15:01:14.644 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 21/50, Train Loss: 0.03675170934261524, Val Loss: 0.03623121710041085 +2024-07-19 15:01:15.009 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 22/50, Train Loss: 0.037205648723326316, Val Loss: 0.036218440562889385 +2024-07-19 15:01:15.380 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 23/50, Train Loss: 0.03617203738285254, Val Loss: 0.03675446810351836 +2024-07-19 15:01:15.750 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 24/50, Train Loss: 0.036383559289452146, Val Loss: 0.037636214514841906 +2024-07-19 15:01:16.117 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 25/50, Train Loss: 0.03622457155421989, Val Loss: 0.03669833487554176 +2024-07-19 15:01:16.512 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 26/50, Train Loss: 0.03610674429633846, Val Loss: 0.03706885335614552 +2024-07-19 15:01:16.909 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 27/50, Train Loss: 0.03591087292114349, Val Loss: 0.0361508596688509 +2024-07-19 15:01:17.336 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 28/50, Train Loss: 0.03593978408264787, Val Loss: 0.03713957205213405 +2024-07-19 15:01:17.727 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 29/50, Train Loss: 0.03552349544551275, Val Loss: 0.03719294499102477 +2024-07-19 15:01:18.106 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 30/50, Train Loss: 0.035554752238605124, Val Loss: 0.036767234572687664 +2024-07-19 15:01:18.497 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 31/50, Train Loss: 0.035390620796035416, Val Loss: 0.03628811934912527 +2024-07-19 15:01:18.893 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 32/50, Train Loss: 0.03583086154436412, Val Loss: 0.03648493509437587 +2024-07-19 15:01:19.281 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 33/50, Train Loss: 0.03601162002919472, Val Loss: 0.0363114445998862 +2024-07-19 15:01:19.664 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 34/50, Train Loss: 0.03563378491017916, Val Loss: 0.036908247936013584 +2024-07-19 15:01:20.056 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 35/50, Train Loss: 0.035198314089889396, Val Loss: 0.036167270982184925 +2024-07-19 15:01:20.429 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 36/50, Train Loss: 0.036005268077531905, Val Loss: 0.036268325220491435 +2024-07-19 15:01:20.813 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 37/50, Train Loss: 0.03583833330298123, Val Loss: 0.0372508256822019 +2024-07-19 15:01:21.223 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 38/50, Train Loss: 0.035117257182320505, Val Loss: 0.03613410477299948 +2024-07-19 15:01:21.629 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 39/50, Train Loss: 0.03561345087236738, Val Loss: 0.03655813065533702 +2024-07-19 15:01:22.005 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 40/50, Train Loss: 0.03518196430108319, Val Loss: 0.036148580949048735 +2024-07-19 15:01:22.369 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 41/50, Train Loss: 0.03578492815363897, Val Loss: 0.03690243391571818 +2024-07-19 15:01:22.734 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 42/50, Train Loss: 0.035758608748039156, Val Loss: 0.037196072221205044 +2024-07-19 15:01:23.101 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 43/50, Train Loss: 0.03549499967939233, Val Loss: 0.03749300816373245 +2024-07-19 15:01:23.469 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 44/50, Train Loss: 0.03551789153724501, Val Loss: 0.03645555906601854 +2024-07-19 15:01:23.832 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 45/50, Train Loss: 0.03603397679757582, Val Loss: 0.038979268960050634 +2024-07-19 15:01:24.201 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 46/50, Train Loss: 0.03543883505953501, Val Loss: 0.03647838467480363 +2024-07-19 15:01:24.568 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 47/50, Train Loss: 0.0357642265623563, Val Loss: 0.0366441788202202 +2024-07-19 15:01:24.936 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 48/50, Train Loss: 0.03545078078973783, Val Loss: 0.03669398866996572 +2024-07-19 15:01:25.303 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 49/50, Train Loss: 0.03541857662470373, Val Loss: 0.03670534481470649 +2024-07-19 15:01:25.665 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 50/50, Train Loss: 0.035646761729292674, Val Loss: 0.03684569190482836 +2024-07-19 15:01:25.665 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Fold 1, MAPE: 3.00% +2024-07-19 15:01:25.785 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Training image saved at metaflow_models//bgd_education_200001_500000_LSTM//train_f1_bgd_education_200001_500000_LSTM.png +2024-07-19 15:01:26.308 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 1/50, Train Loss: 0.03484535200352019, Val Loss: 0.042070977037420146 +2024-07-19 15:01:26.842 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 2/50, Train Loss: 0.035043519633737474, Val Loss: 0.04222110517927118 +2024-07-19 15:01:27.379 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 3/50, Train Loss: 0.03490393381904472, Val Loss: 0.04208582654796742 +2024-07-19 15:01:27.919 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 4/50, Train Loss: 0.0351485446264798, Val Loss: 0.04238228968067749 +2024-07-19 15:01:28.513 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 5/50, Train Loss: 0.03489725884388794, Val Loss: 0.042608150960625826 +2024-07-19 15:01:29.113 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 6/50, Train Loss: 0.0347920985892415, Val Loss: 0.04203598171069815 +2024-07-19 15:01:29.655 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 7/50, Train Loss: 0.034833384372971274, Val Loss: 0.04250708720772653 +2024-07-19 15:01:30.214 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 8/50, Train Loss: 0.03483030784197829, Val Loss: 0.041932384307320054 +2024-07-19 15:01:30.765 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 9/50, Train Loss: 0.034851012666794384, Val Loss: 0.04179579935766555 +2024-07-19 15:01:31.372 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 10/50, Train Loss: 0.03508155146105723, Val Loss: 0.04224943258875125 +2024-07-19 15:01:31.921 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 11/50, Train Loss: 0.03498839984901927, Val Loss: 0.042225432758395735 +2024-07-19 15:01:32.472 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 12/50, Train Loss: 0.034817058559168466, Val Loss: 0.04192900280090603 +2024-07-19 15:01:33.035 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 13/50, Train Loss: 0.0344406072050333, Val Loss: 0.04291841986815672 +2024-07-19 15:01:33.570 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 14/50, Train Loss: 0.034562362713569945, Val Loss: 0.04250547793265935 +2024-07-19 15:01:34.084 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 15/50, Train Loss: 0.03428239427845586, Val Loss: 0.04204683287723644 +2024-07-19 15:01:34.604 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 16/50, Train Loss: 0.03448919176378033, Val Loss: 0.04266682861221803 +2024-07-19 15:01:35.113 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 17/50, Train Loss: 0.034238501502708955, Val Loss: 0.04221601195230677 +2024-07-19 15:01:35.628 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 18/50, Train Loss: 0.034392935630272736, Val Loss: 0.04182112050821652 +2024-07-19 15:01:36.143 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 19/50, Train Loss: 0.0342449445954778, Val Loss: 0.04231418840385772 +2024-07-19 15:01:36.663 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 20/50, Train Loss: 0.03421588597649878, Val Loss: 0.042654803173767554 +2024-07-19 15:01:37.184 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 21/50, Train Loss: 0.034056090021675284, Val Loss: 0.042073201136411845 +2024-07-19 15:01:37.698 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 22/50, Train Loss: 0.03419949894940311, Val Loss: 0.04245085158460849 +2024-07-19 15:01:38.207 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 23/50, Train Loss: 0.034207310307432306, Val Loss: 0.04332939610892051 +2024-07-19 15:01:38.716 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 24/50, Train Loss: 0.03393973818218166, Val Loss: 0.04301600017257639 +2024-07-19 15:01:39.243 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 25/50, Train Loss: 0.03395122917877002, Val Loss: 0.04296370354053136 +2024-07-19 15:01:39.771 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 26/50, Train Loss: 0.03415754068304192, Val Loss: 0.042666430559915466 +2024-07-19 15:01:40.352 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 27/50, Train Loss: 0.03438727439127185, Val Loss: 0.04226618139324961 +2024-07-19 15:01:40.916 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 28/50, Train Loss: 0.03401304256509651, Val Loss: 0.04235266028223811 +2024-07-19 15:01:41.488 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 29/50, Train Loss: 0.03401394782757217, Val Loss: 0.04247064183692675 +2024-07-19 15:01:42.052 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 30/50, Train Loss: 0.03399710546840321, Val Loss: 0.042624924583612264 +2024-07-19 15:01:42.624 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 31/50, Train Loss: 0.03381948066367344, Val Loss: 0.04329074833642792 +2024-07-19 15:01:43.197 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 32/50, Train Loss: 0.03397453982721676, Val Loss: 0.04271552480153135 +2024-07-19 15:01:43.751 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 33/50, Train Loss: 0.034195392375642605, Val Loss: 0.042458030067988345 +2024-07-19 15:01:44.309 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 34/50, Train Loss: 0.03399828658862548, Val Loss: 0.04234655901185564 +2024-07-19 15:01:44.841 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 35/50, Train Loss: 0.03401756193488836, Val Loss: 0.043631205385601196 +2024-07-19 15:01:45.407 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 36/50, Train Loss: 0.0339673808013851, Val Loss: 0.04300767525627806 +2024-07-19 15:01:45.975 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 37/50, Train Loss: 0.033885592374611986, Val Loss: 0.04316795577068586 +2024-07-19 15:01:46.541 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 38/50, Train Loss: 0.033862389776517045, Val Loss: 0.04370041181509559 +2024-07-19 15:01:47.109 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 39/50, Train Loss: 0.03386598071930083, Val Loss: 0.04322437005671295 +2024-07-19 15:01:47.643 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 40/50, Train Loss: 0.03377843055535446, Val Loss: 0.04238721688051481 +2024-07-19 15:01:48.176 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 41/50, Train Loss: 0.033683919076892464, Val Loss: 0.04312444599093618 +2024-07-19 15:01:48.696 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 42/50, Train Loss: 0.033844105746935714, Val Loss: 0.04257661602585702 +2024-07-19 15:01:49.259 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 43/50, Train Loss: 0.03382570486177098, Val Loss: 0.04312135389930493 +2024-07-19 15:01:49.794 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 44/50, Train Loss: 0.03392111384733157, Val Loss: 0.04316442484992582 +2024-07-19 15:01:50.329 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 45/50, Train Loss: 0.03388677566227588, Val Loss: 0.042958495081276506 +2024-07-19 15:01:50.867 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 46/50, Train Loss: 0.03357374883172187, Val Loss: 0.043274964281433334 +2024-07-19 15:01:51.419 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 47/50, Train Loss: 0.033544211106544194, Val Loss: 0.04369246561986369 +2024-07-19 15:01:51.949 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 48/50, Train Loss: 0.03365839474241842, Val Loss: 0.04415331020749904 +2024-07-19 15:01:52.514 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 49/50, Train Loss: 0.03367334666915915, Val Loss: 0.04328865900232985 +2024-07-19 15:01:53.032 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 50/50, Train Loss: 0.0335878991775892, Val Loss: 0.04394252603319851 +2024-07-19 15:01:53.032 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Fold 2, MAPE: 3.73% +2024-07-19 15:01:53.150 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Training image saved at metaflow_models//bgd_education_200001_500000_LSTM//train_f2_bgd_education_200001_500000_LSTM.png +2024-07-19 15:01:53.816 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 1/50, Train Loss: 0.03533780322193283, Val Loss: 0.045391706397404544 +2024-07-19 15:01:54.476 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 2/50, Train Loss: 0.03651628883121765, Val Loss: 0.04561952310236725 +2024-07-19 15:01:55.134 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 3/50, Train Loss: 0.03603101422219244, Val Loss: 0.045226616432537906 +2024-07-19 15:01:55.793 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 4/50, Train Loss: 0.03627980518320652, Val Loss: 0.04444013475566297 +2024-07-19 15:01:56.539 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 5/50, Train Loss: 0.03611830852874746, Val Loss: 0.04449626053305897 +2024-07-19 15:01:57.289 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 6/50, Train Loss: 0.03576004164523049, Val Loss: 0.04368000336595484 +2024-07-19 15:01:57.951 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 7/50, Train Loss: 0.035976737980054664, Val Loss: 0.04360830270358034 +2024-07-19 15:01:58.651 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 8/50, Train Loss: 0.03545923968649482, Val Loss: 0.043154061545391344 +2024-07-19 15:01:59.365 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 9/50, Train Loss: 0.03476602262625956, Val Loss: 0.0430936252547277 +2024-07-19 15:02:00.105 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 10/50, Train Loss: 0.035093566160393906, Val Loss: 0.042657667015855376 +2024-07-19 15:02:00.816 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 11/50, Train Loss: 0.03407746744788673, Val Loss: 0.04208410390325495 +2024-07-19 15:02:01.585 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 12/50, Train Loss: 0.03435169991539561, Val Loss: 0.04341915410918158 +2024-07-19 15:02:02.368 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 13/50, Train Loss: 0.033701002872102474, Val Loss: 0.042568619690231374 +2024-07-19 15:02:03.092 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 14/50, Train Loss: 0.03351977748209483, Val Loss: 0.0418362681426712 +2024-07-19 15:02:03.797 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 15/50, Train Loss: 0.034134464963556155, Val Loss: 0.04458476019066733 +2024-07-19 15:02:04.498 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 16/50, Train Loss: 0.03336332129212479, Val Loss: 0.04166406221889161 +2024-07-19 15:02:05.182 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 17/50, Train Loss: 0.03308173735970504, Val Loss: 0.04139630572014564 +2024-07-19 15:02:05.898 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 18/50, Train Loss: 0.03332623159385299, Val Loss: 0.04287523222533432 +2024-07-19 15:02:06.663 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 19/50, Train Loss: 0.03311454856844798, Val Loss: 0.04164976072875229 +2024-07-19 15:02:07.402 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 20/50, Train Loss: 0.032886700047664856, Val Loss: 0.0419906275598584 +2024-07-19 15:02:08.091 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 21/50, Train Loss: 0.03257801090303349, Val Loss: 0.042051972670329583 +2024-07-19 15:02:08.855 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 22/50, Train Loss: 0.03246287404470248, Val Loss: 0.04012769561361622 +2024-07-19 15:02:09.689 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 23/50, Train Loss: 0.03236261683784119, Val Loss: 0.04172657359693501 +2024-07-19 15:02:10.435 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 24/50, Train Loss: 0.032438053022304625, Val Loss: 0.04257844710672224 +2024-07-19 15:02:11.218 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 25/50, Train Loss: 0.032299574655927206, Val Loss: 0.04156675114220864 +2024-07-19 15:02:11.933 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 26/50, Train Loss: 0.03258651649349765, Val Loss: 0.04223152260119851 +2024-07-19 15:02:12.757 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 27/50, Train Loss: 0.03250364405549552, Val Loss: 0.043601744883769264 +2024-07-19 15:02:13.762 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 28/50, Train Loss: 0.03259645436877665, Val Loss: 0.04125380843273691 +2024-07-19 15:02:14.612 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 29/50, Train Loss: 0.03216134465924681, Val Loss: 0.041582810113558896 +2024-07-19 15:02:15.623 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 30/50, Train Loss: 0.03232491570078347, Val Loss: 0.04175452918216989 +2024-07-19 15:02:16.542 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 31/50, Train Loss: 0.03251596374360666, Val Loss: 0.04259254285008521 +2024-07-19 15:02:17.242 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 32/50, Train Loss: 0.03214807752264689, Val Loss: 0.041185902884683094 +2024-07-19 15:02:17.952 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 33/50, Train Loss: 0.032190557397034476, Val Loss: 0.042135338676539624 +2024-07-19 15:02:18.668 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 34/50, Train Loss: 0.032117667977940544, Val Loss: 0.04135922272060368 +2024-07-19 15:02:19.639 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 35/50, Train Loss: 0.031965598349191555, Val Loss: 0.04197307323684563 +2024-07-19 15:02:20.395 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 36/50, Train Loss: 0.031812039943896746, Val Loss: 0.04271802567952388 +2024-07-19 15:02:21.102 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 37/50, Train Loss: 0.03195444098992707, Val Loss: 0.04204884317477007 +2024-07-19 15:02:21.865 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 38/50, Train Loss: 0.03197409156454752, Val Loss: 0.04163388036996932 +2024-07-19 15:02:22.559 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 39/50, Train Loss: 0.03164367945482061, Val Loss: 0.04120318490911175 +2024-07-19 15:02:23.251 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 40/50, Train Loss: 0.03123213026085741, Val Loss: 0.041400737255006224 +2024-07-19 15:02:23.962 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 41/50, Train Loss: 0.031414723151350674, Val Loss: 0.040530749470800966 +2024-07-19 15:02:24.673 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 42/50, Train Loss: 0.031386513837090096, Val Loss: 0.04046387220355305 +2024-07-19 15:02:25.382 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 43/50, Train Loss: 0.031187725368223777, Val Loss: 0.04014164491279705 +2024-07-19 15:02:26.154 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 44/50, Train Loss: 0.03133552678388684, Val Loss: 0.04011239514157579 +2024-07-19 15:02:26.893 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 45/50, Train Loss: 0.031370607957448046, Val Loss: 0.04032301983317813 +2024-07-19 15:02:27.615 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 46/50, Train Loss: 0.03113319083716567, Val Loss: 0.04065321053604822 +2024-07-19 15:02:28.337 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 47/50, Train Loss: 0.03089437706472531, Val Loss: 0.039368398588251426 +2024-07-19 15:02:29.031 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 48/50, Train Loss: 0.03127962406341956, Val Loss: 0.040045927404551894 +2024-07-19 15:02:29.791 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 49/50, Train Loss: 0.03086685757981996, Val Loss: 0.039833000231836294 +2024-07-19 15:02:30.497 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 50/50, Train Loss: 0.031004693225179226, Val Loss: 0.039506732813409856 +2024-07-19 15:02:30.497 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Fold 3, MAPE: 3.41% +2024-07-19 15:02:30.614 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Training image saved at metaflow_models//bgd_education_200001_500000_LSTM//train_f3_bgd_education_200001_500000_LSTM.png +2024-07-19 15:02:31.683 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 1/50, Train Loss: 0.031443179779491584, Val Loss: 0.037669179004591866 +2024-07-19 15:02:32.591 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 2/50, Train Loss: 0.031517862291126464, Val Loss: 0.03681419583389888 +2024-07-19 15:02:33.440 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 3/50, Train Loss: 0.03098922924926648, Val Loss: 0.035989561848141054 +2024-07-19 15:02:34.329 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 4/50, Train Loss: 0.0313470854710501, Val Loss: 0.039968535002018954 +2024-07-19 15:02:35.222 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 5/50, Train Loss: 0.031110420766808502, Val Loss: 0.03538994194083923 +2024-07-19 15:02:36.135 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 6/50, Train Loss: 0.0308517536639676, Val Loss: 0.033393917403913835 +2024-07-19 15:02:37.006 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 7/50, Train Loss: 0.03071703186135862, Val Loss: 0.035315987628859444 +2024-07-19 15:02:37.916 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 8/50, Train Loss: 0.03083982612364567, Val Loss: 0.03722010724045135 +2024-07-19 15:02:38.866 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 9/50, Train Loss: 0.030441969750797028, Val Loss: 0.03599978802171913 +2024-07-19 15:02:39.811 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 10/50, Train Loss: 0.03062344185373449, Val Loss: 0.0357284273046094 +2024-07-19 15:02:40.751 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 11/50, Train Loss: 0.030614567142757742, Val Loss: 0.03710809928943982 +2024-07-19 15:02:41.695 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 12/50, Train Loss: 0.030734756096665348, Val Loss: 0.036026523977115345 +2024-07-19 15:02:42.666 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 13/50, Train Loss: 0.030695217983940475, Val Loss: 0.03685534725318084 +2024-07-19 15:02:43.656 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 14/50, Train Loss: 0.03061221180749791, Val Loss: 0.03496624448814908 +2024-07-19 15:02:44.596 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 15/50, Train Loss: 0.030637452230471502, Val Loss: 0.03455335183723553 +2024-07-19 15:02:45.443 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 16/50, Train Loss: 0.030268914337464415, Val Loss: 0.03398721171794711 +2024-07-19 15:02:46.294 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 17/50, Train Loss: 0.030666057480969927, Val Loss: 0.03362577468962283 +2024-07-19 15:02:47.213 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 18/50, Train Loss: 0.030858258379029703, Val Loss: 0.03623508037747564 +2024-07-19 15:02:48.064 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 19/50, Train Loss: 0.03054812734762391, Val Loss: 0.03602022088661387 +2024-07-19 15:02:48.920 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 20/50, Train Loss: 0.030245341038188107, Val Loss: 0.034422971912332484 +2024-07-19 15:02:49.805 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 21/50, Train Loss: 0.030164090537844777, Val Loss: 0.03470357306100227 +2024-07-19 15:02:50.729 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 22/50, Train Loss: 0.03036615780585415, Val Loss: 0.0343612804002053 +2024-07-19 15:02:51.635 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 23/50, Train Loss: 0.029973524689142193, Val Loss: 0.03424259859162408 +2024-07-19 15:02:52.602 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 24/50, Train Loss: 0.03036146058322309, Val Loss: 0.03472343152640639 +2024-07-19 15:02:53.443 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 25/50, Train Loss: 0.03025214170914266, Val Loss: 0.03490695301946756 +2024-07-19 15:02:54.367 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 26/50, Train Loss: 0.03008365573791357, Val Loss: 0.03385200155143802 +2024-07-19 15:02:55.218 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 27/50, Train Loss: 0.03006009679737982, Val Loss: 0.03625129319324687 +2024-07-19 15:02:56.119 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 28/50, Train Loss: 0.0303985540816499, Val Loss: 0.03505451911808671 +2024-07-19 15:02:57.096 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 29/50, Train Loss: 0.030031087828779612, Val Loss: 0.03434658488510428 +2024-07-19 15:02:57.968 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 30/50, Train Loss: 0.029832926860263387, Val Loss: 0.033804026256139215 +2024-07-19 15:02:58.941 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 31/50, Train Loss: 0.029956164038074867, Val Loss: 0.03441849914756981 +2024-07-19 15:02:59.866 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 32/50, Train Loss: 0.02961755932851152, Val Loss: 0.033807614314797764 +2024-07-19 15:03:00.768 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 33/50, Train Loss: 0.029368909797375345, Val Loss: 0.036883563357027804 +2024-07-19 15:03:01.674 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 34/50, Train Loss: 0.029644447486274518, Val Loss: 0.03566247949729095 +2024-07-19 15:03:02.609 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 35/50, Train Loss: 0.029820931445970967, Val Loss: 0.035938499142994754 +2024-07-19 15:03:03.497 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 36/50, Train Loss: 0.0296102957288315, Val Loss: 0.035407029948121796 +2024-07-19 15:03:04.423 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 37/50, Train Loss: 0.029748438294608513, Val Loss: 0.033115260101653436 +2024-07-19 15:03:05.365 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 38/50, Train Loss: 0.029224749767108933, Val Loss: 0.03325011893301397 +2024-07-19 15:03:06.233 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 39/50, Train Loss: 0.02937825574734054, Val Loss: 0.03622921858284924 +2024-07-19 15:03:07.101 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 40/50, Train Loss: 0.02931770870134562, Val Loss: 0.034078495073560124 +2024-07-19 15:03:08.027 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 41/50, Train Loss: 0.029353169980203056, Val Loss: 0.03485715817156676 +2024-07-19 15:03:08.914 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 42/50, Train Loss: 0.029384085360996345, Val Loss: 0.033912326989544404 +2024-07-19 15:03:09.769 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 43/50, Train Loss: 0.029103129242475215, Val Loss: 0.035514358481442604 +2024-07-19 15:03:10.721 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 44/50, Train Loss: 0.02956896047056704, Val Loss: 0.03322898385089797 +2024-07-19 15:03:11.742 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 45/50, Train Loss: 0.029147845488246324, Val Loss: 0.03520839701633196 +2024-07-19 15:03:12.638 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 46/50, Train Loss: 0.029183245269110897, Val Loss: 0.03203725502700419 +2024-07-19 15:03:13.491 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 47/50, Train Loss: 0.028903007957634036, Val Loss: 0.03426266270312103 +2024-07-19 15:03:14.342 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 48/50, Train Loss: 0.029054504420076097, Val Loss: 0.033325880212155545 +2024-07-19 15:03:15.184 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 49/50, Train Loss: 0.028736940672068476, Val Loss: 0.035014562208104776 +2024-07-19 15:03:16.020 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Epoch 50/50, Train Loss: 0.028874263924720523, Val Loss: 0.03480861743761075 +2024-07-19 15:03:16.020 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Fold 4, MAPE: 3.04% +2024-07-19 15:03:16.133 [19/cross_validate_train/229 (pid 10109)] INFO:__main__:Training image saved at metaflow_models//bgd_education_200001_500000_LSTM//train_f4_bgd_education_200001_500000_LSTM.png +2024-07-19 15:03:20.585 [19/cross_validate_train/229 (pid 10109)] Task finished successfully. +2024-07-19 15:03:20.612 [19/model_scores/230 (pid 10725)] Task is starting. +2024-07-19 15:03:22.115 [19/model_scores/230 (pid 10725)] INFO:__main__:Average Train Loss across all folds: 0.035656530525608535 +2024-07-19 15:03:26.080 [19/model_scores/230 (pid 10725)] INFO:__main__:Average Validation Loss across all folds: 0.04528352221524393 +2024-07-19 15:03:26.080 [19/model_scores/230 (pid 10725)] INFO:__main__:Average MAPE across all folds: 3.47% +2024-07-19 15:03:26.081 [19/model_scores/230 (pid 10725)] Task finished successfully. +2024-07-19 15:03:26.111 [19/validate_model/231 (pid 10750)] Task is starting. +2024-07-19 15:03:27.647 [19/validate_model/231 (pid 10750)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 15:03:27.774 [19/validate_model/231 (pid 10750)] INFO:__main__:Test Set MAPE: 3.29% +2024-07-19 15:03:28.209 [19/validate_model/231 (pid 10750)] INFO:__main__:Test image saved at metaflow_models//bgd_education_200001_500000_LSTM//test_bgd_education_200001_500000_LSTM.png +2024-07-19 15:03:28.639 [19/validate_model/231 (pid 10750)] Task finished successfully. +2024-07-19 15:03:28.668 [19/log_model/232 (pid 10769)] Task is starting. +2024-07-19 15:03:30.240 [19/log_model/232 (pid 10769)] INFO:__main__:Logging model bgd_education_200001_500000_LSTM +2024-07-19 15:03:30.241 [19/log_model/232 (pid 10769)] INFO:__main__:Model logged at metaflow_models//bgd_education_200001_500000_LSTM//bgd_education_200001_500000_LSTM.pth +2024-07-19 15:03:34.303 [19/log_model/232 (pid 10769)] Task finished successfully. +2024-07-19 15:03:34.346 [19/end/233 (pid 10811)] Task is starting. +2024-07-19 15:03:35.874 [19/end/233 (pid 10811)] INFO:__main__:Pipeline end. +2024-07-19 15:03:36.195 [19/end/233 (pid 10811)] Task finished successfully. +2024-07-19 15:03:36.196 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/scaler_bgd_education_200001_500000_LSTM.pkl b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/scaler_bgd_education_200001_500000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..52f94405b435be871431d66a00ddc049430348ea --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/scaler_bgd_education_200001_500000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09103c14e6aa7a4413481b76fa902cbabc1351c6a6cf3fdaae7c377c433f8e60 +size 557 diff --git a/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/test_bgd_education_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/test_bgd_education_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..6acaa3984a9b04841ac78354e11266b61b405439 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/test_bgd_education_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f0_bgd_education_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f0_bgd_education_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..92f3e1e3a462348da18996bb735ae93390ccf700 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f0_bgd_education_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f1_bgd_education_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f1_bgd_education_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..4a236a54410643095888181932300999a78505fd Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f1_bgd_education_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f2_bgd_education_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f2_bgd_education_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..0b626594e04bab166863795ce9e267bf219cd9e8 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f2_bgd_education_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f3_bgd_education_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f3_bgd_education_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..d5e7e484bee5b9c0014d3e97d7fd464ced6ae4ee Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f3_bgd_education_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f4_bgd_education_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f4_bgd_education_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..e9762c9c687d4b3381ff012ca8da483cfc6f1742 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_200001_500000_LSTM/train_f4_bgd_education_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/bgd_education_25001_50000_LSTM.pth b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/bgd_education_25001_50000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..e6aea2bca9b657ebd230c72017ddae060e079a1e --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/bgd_education_25001_50000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008493586f880600064f5807cda4556b3d5f154d4385e5e5fd0f5532ec5d4326 +size 46766 diff --git a/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/output.txt b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e85692d5fe39c9cc10fe6d1ea6d3b0a9ebafbb6 --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/output.txt @@ -0,0 +1,740 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:54:19.941 Workflow starting (run-id 17): +2024-07-19 14:54:20.015 [17/start/193 (pid 8288)] Task is starting. +2024-07-19 14:54:21.489 [17/start/193 (pid 8288)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:54:21.787 [17/start/193 (pid 8288)] Task finished successfully. +2024-07-19 14:54:21.818 [17/ingest/194 (pid 8299)] Task is starting. +2024-07-19 14:54:23.278 [17/ingest/194 (pid 8299)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:54:23.294 [17/ingest/194 (pid 8299)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:54:27.157 [17/ingest/194 (pid 8299)] Task finished successfully. +2024-07-19 14:54:27.188 [17/pick_2017_data/195 (pid 8330)] Task is starting. +2024-07-19 14:54:28.684 [17/pick_2017_data/195 (pid 8330)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:54:29.012 [17/pick_2017_data/195 (pid 8330)] Task finished successfully. +2024-07-19 14:54:29.046 [17/fill_missing_data/196 (pid 8343)] Task is starting. +2024-07-19 14:54:30.495 [17/fill_missing_data/196 (pid 8343)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] INFO:__main__:NaN counts per column: +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] INFO:__main__:Robin_education_Audrea 0 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] Rat_education_Carmela 50 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] Rat_education_Salvatore 50 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] Rat_education_Candida 50 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] Bear_education_Merrill 129 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] Cockatoo_education_Melanie 117 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] Cockatoo_education_Julia 128 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] dtype: int64 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] --- Logging error --- +2024-07-19 14:54:30.502 [17/fill_missing_data/196 (pid 8343)] Traceback (most recent call last): +2024-07-19 14:54:30.502 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] msg = self.format(record) +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] return fmt.format(record) +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] record.message = record.getMessage() +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] msg = msg % self.args +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] TypeError: not all arguments converted during string formatting +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] Call stack: +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] BGD_LinearFlow() +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] cli.main(self) +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] return func(*args, **kwargs) +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] return self.main(*args, **kwargs) +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] rv = self.invoke(ctx) +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] return callback(*args, **kwargs) +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] task.run_step( +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] self._exec_step_function(step_func) +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] step_function() +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] Arguments: (524,) +2024-07-19 14:54:31.177 [17/fill_missing_data/196 (pid 8343)] Task finished successfully. +2024-07-19 14:54:31.202 [17/find_median/197 (pid 8354)] Task is starting. +2024-07-19 14:54:32.669 [17/find_median/197 (pid 8354)] INFO:__main__:Computing and using median.. +2024-07-19 14:54:33.200 [17/find_median/197 (pid 8354)] Task finished successfully. +2024-07-19 14:54:33.232 [17/aggregate_data/198 (pid 8365)] Task is starting. +2024-07-19 14:54:34.683 [17/aggregate_data/198 (pid 8365)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:54:38.522 [17/aggregate_data/198 (pid 8365)] Task finished successfully. +2024-07-19 14:54:38.556 [17/split_data/199 (pid 8391)] Task is starting. +2024-07-19 14:54:40.033 [17/split_data/199 (pid 8391)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:54:43.894 [17/split_data/199 (pid 8391)] Task finished successfully. +2024-07-19 14:54:43.926 [17/make_x_y/200 (pid 8422)] Task is starting. +2024-07-19 14:54:45.725 [17/make_x_y/200 (pid 8422)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:54:46.042 [17/make_x_y/200 (pid 8422)] Shape of y_train: (6978, 1) +2024-07-19 14:54:46.042 [17/make_x_y/200 (pid 8422)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:54:46.042 [17/make_x_y/200 (pid 8422)] Shape of y_test: (1722, 1) +2024-07-19 14:54:46.043 [17/make_x_y/200 (pid 8422)] Task finished successfully. +2024-07-19 14:54:46.073 [17/cross_validate_train/201 (pid 8433)] Task is starting. +2024-07-19 14:54:47.570 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Creating bgd_education_25001_50000_LSTM +2024-07-19 14:54:47.571 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Performing cross validation.. +2024-07-19 14:54:48.297 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 1/50, Train Loss: 0.210253653796138, Val Loss: 0.15232346770731178 +2024-07-19 14:54:48.495 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 2/50, Train Loss: 0.11067552265484591, Val Loss: 0.13556444861397549 +2024-07-19 14:54:48.702 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 3/50, Train Loss: 0.101068211870419, Val Loss: 0.12094761265089383 +2024-07-19 14:54:48.906 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 4/50, Train Loss: 0.08223779096796706, Val Loss: 0.09917768760508783 +2024-07-19 14:54:49.110 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 5/50, Train Loss: 0.07520086751193614, Val Loss: 0.07955716781922288 +2024-07-19 14:54:49.315 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 6/50, Train Loss: 0.06870060132161991, Val Loss: 0.07154868684104972 +2024-07-19 14:54:49.515 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 7/50, Train Loss: 0.06506882673381148, Val Loss: 0.06716544065322425 +2024-07-19 14:54:49.728 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 8/50, Train Loss: 0.05855770011407298, Val Loss: 0.06516807098445054 +2024-07-19 14:54:49.936 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 9/50, Train Loss: 0.05625982386236255, Val Loss: 0.06335737616629214 +2024-07-19 14:54:50.141 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 10/50, Train Loss: 0.05398298316710704, Val Loss: 0.06254677650694912 +2024-07-19 14:54:50.360 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 11/50, Train Loss: 0.0524061661515687, Val Loss: 0.06085896668200557 +2024-07-19 14:54:50.589 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 12/50, Train Loss: 0.05097178072744125, Val Loss: 0.059791568515671266 +2024-07-19 14:54:50.794 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 13/50, Train Loss: 0.049878996369001026, Val Loss: 0.05889532216698737 +2024-07-19 14:54:50.997 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 14/50, Train Loss: 0.04838161885335639, Val Loss: 0.057259012768800195 +2024-07-19 14:54:51.218 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 15/50, Train Loss: 0.04684341014237017, Val Loss: 0.05435828381293529 +2024-07-19 14:54:51.432 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 16/50, Train Loss: 0.04499817040522356, Val Loss: 0.052721385516830394 +2024-07-19 14:54:51.668 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 17/50, Train Loss: 0.043684580942263476, Val Loss: 0.05092959936607529 +2024-07-19 14:54:51.873 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 18/50, Train Loss: 0.04253423651932059, Val Loss: 0.04947195921999377 +2024-07-19 14:54:52.078 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 19/50, Train Loss: 0.04181925564802982, Val Loss: 0.048017769296829764 +2024-07-19 14:54:52.281 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 20/50, Train Loss: 0.04082770635550086, Val Loss: 0.046874538164686515 +2024-07-19 14:54:52.490 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 21/50, Train Loss: 0.04028654581791646, Val Loss: 0.04656227914666807 +2024-07-19 14:54:52.693 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 22/50, Train Loss: 0.040019006443184776, Val Loss: 0.04533540120197309 +2024-07-19 14:54:52.896 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 23/50, Train Loss: 0.0394609578054499, Val Loss: 0.04454899528944815 +2024-07-19 14:54:53.099 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 24/50, Train Loss: 0.039269531900818284, Val Loss: 0.04424610341320167 +2024-07-19 14:54:53.303 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 25/50, Train Loss: 0.0389671275341833, Val Loss: 0.043418663629406204 +2024-07-19 14:54:53.511 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 26/50, Train Loss: 0.038793059116279754, Val Loss: 0.04317713800717045 +2024-07-19 14:54:53.713 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 27/50, Train Loss: 0.03852548616359363, Val Loss: 0.0424237382673734 +2024-07-19 14:54:53.919 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 28/50, Train Loss: 0.038149746738978335, Val Loss: 0.0420979324828934 +2024-07-19 14:54:54.127 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 29/50, Train Loss: 0.03798592322178789, Val Loss: 0.041731083111183065 +2024-07-19 14:54:54.332 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 30/50, Train Loss: 0.03782013053628239, Val Loss: 0.04137391390631328 +2024-07-19 14:54:54.535 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 31/50, Train Loss: 0.03756760453452935, Val Loss: 0.04126930418046745 +2024-07-19 14:54:54.742 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 32/50, Train Loss: 0.037658096618346265, Val Loss: 0.041186784419256287 +2024-07-19 14:54:54.954 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 33/50, Train Loss: 0.037257223767605985, Val Loss: 0.040700649641252855 +2024-07-19 14:54:55.166 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 34/50, Train Loss: 0.03693211627368991, Val Loss: 0.040487247393340677 +2024-07-19 14:54:55.378 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 35/50, Train Loss: 0.03685563279164804, Val Loss: 0.04029695745054129 +2024-07-19 14:54:55.587 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 36/50, Train Loss: 0.0365223912270488, Val Loss: 0.04002787907784049 +2024-07-19 14:54:55.800 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 37/50, Train Loss: 0.036356117123284855, Val Loss: 0.0397299139483555 +2024-07-19 14:54:56.012 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 38/50, Train Loss: 0.03617874120135565, Val Loss: 0.039546254468528 +2024-07-19 14:54:56.231 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 39/50, Train Loss: 0.03614643276543231, Val Loss: 0.039858857723506724 +2024-07-19 14:54:56.469 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 40/50, Train Loss: 0.03643916159666873, Val Loss: 0.03983810211758356 +2024-07-19 14:54:56.680 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 41/50, Train Loss: 0.03639684093965066, Val Loss: 0.03972390611228105 +2024-07-19 14:54:56.890 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 42/50, Train Loss: 0.03630775092421351, Val Loss: 0.03950428363640566 +2024-07-19 14:54:57.110 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 43/50, Train Loss: 0.03637918965840662, Val Loss: 0.039131978677736746 +2024-07-19 14:54:57.333 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 44/50, Train Loss: 0.03614156954997295, Val Loss: 0.03913189803023596 +2024-07-19 14:54:57.545 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 45/50, Train Loss: 0.035864317235914434, Val Loss: 0.03942965630542587 +2024-07-19 14:54:57.754 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 46/50, Train Loss: 0.03602880949305522, Val Loss: 0.039111940240537796 +2024-07-19 14:54:57.967 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 47/50, Train Loss: 0.0359230026401378, Val Loss: 0.03926914905172747 +2024-07-19 14:54:58.179 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 48/50, Train Loss: 0.036251829030948715, Val Loss: 0.03909407953756887 +2024-07-19 14:54:58.395 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 49/50, Train Loss: 0.03627204814472714, Val Loss: 0.03892551090668987 +2024-07-19 14:54:58.612 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 50/50, Train Loss: 0.035852561629301796, Val Loss: 0.03937741902631682 +2024-07-19 14:54:58.612 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Fold 0, MAPE: 6.24% +2024-07-19 14:54:58.929 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Training image saved at metaflow_models//bgd_education_25001_50000_LSTM//train_f0_bgd_education_25001_50000_LSTM.png +2024-07-19 14:54:59.400 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 1/50, Train Loss: 0.03735808512731774, Val Loss: 0.04247128983607163 +2024-07-19 14:54:59.779 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 2/50, Train Loss: 0.035775540753790774, Val Loss: 0.04047303629183286 +2024-07-19 14:55:00.158 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 3/50, Train Loss: 0.035396638976996894, Val Loss: 0.03986130453444816 +2024-07-19 14:55:00.541 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 4/50, Train Loss: 0.035335586265954254, Val Loss: 0.03970157261937857 +2024-07-19 14:55:00.935 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 5/50, Train Loss: 0.03490786165101071, Val Loss: 0.0393485071238231 +2024-07-19 14:55:01.326 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 6/50, Train Loss: 0.03490685829765176, Val Loss: 0.03913243515165271 +2024-07-19 14:55:01.681 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 7/50, Train Loss: 0.03495582657521718, Val Loss: 0.038984505812058576 +2024-07-19 14:55:02.039 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 8/50, Train Loss: 0.03498596361238662, Val Loss: 0.038790825628549665 +2024-07-19 14:55:02.398 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 9/50, Train Loss: 0.034639475178228664, Val Loss: 0.03886785146755141 +2024-07-19 14:55:02.762 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 10/50, Train Loss: 0.03493176035787145, Val Loss: 0.03882830172173075 +2024-07-19 14:55:03.132 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 11/50, Train Loss: 0.03464553893020708, Val Loss: 0.03841223336152128 +2024-07-19 14:55:03.534 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 12/50, Train Loss: 0.034596583333938086, Val Loss: 0.03831101027694908 +2024-07-19 14:55:03.907 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 13/50, Train Loss: 0.03450317905373769, Val Loss: 0.038225294594225044 +2024-07-19 14:55:04.279 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 14/50, Train Loss: 0.03436679904642578, Val Loss: 0.03787028603255749 +2024-07-19 14:55:04.643 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 15/50, Train Loss: 0.03434273768981842, Val Loss: 0.03782485460711492 +2024-07-19 14:55:05.012 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 16/50, Train Loss: 0.034263977117530285, Val Loss: 0.03784295201704309 +2024-07-19 14:55:05.386 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 17/50, Train Loss: 0.034416933633285025, Val Loss: 0.03780326209458951 +2024-07-19 14:55:05.755 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 18/50, Train Loss: 0.03447335932965148, Val Loss: 0.03758767544216401 +2024-07-19 14:55:06.142 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 19/50, Train Loss: 0.03420685884887225, Val Loss: 0.03777587411270754 +2024-07-19 14:55:06.524 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 20/50, Train Loss: 0.03428246161249811, Val Loss: 0.03771666095063493 +2024-07-19 14:55:06.897 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 21/50, Train Loss: 0.03462679209570362, Val Loss: 0.037985930521343206 +2024-07-19 14:55:07.283 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 22/50, Train Loss: 0.03432882454705565, Val Loss: 0.038106247757536335 +2024-07-19 14:55:07.667 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 23/50, Train Loss: 0.03409349045728984, Val Loss: 0.0377283329395829 +2024-07-19 14:55:08.059 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 24/50, Train Loss: 0.03388397436435908, Val Loss: 0.03783782304742852 +2024-07-19 14:55:08.434 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 25/50, Train Loss: 0.03400442935526371, Val Loss: 0.03770611943626726 +2024-07-19 14:55:08.814 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 26/50, Train Loss: 0.03394740460159844, Val Loss: 0.03753993103935106 +2024-07-19 14:55:09.201 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 27/50, Train Loss: 0.03382874497097649, Val Loss: 0.0375659595419829 +2024-07-19 14:55:09.618 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 28/50, Train Loss: 0.03381643395819892, Val Loss: 0.03740987488748254 +2024-07-19 14:55:09.978 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 29/50, Train Loss: 0.03383404968229875, Val Loss: 0.0373018907030692 +2024-07-19 14:55:10.337 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 30/50, Train Loss: 0.03395948773377562, Val Loss: 0.0375212587013438 +2024-07-19 14:55:10.697 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 31/50, Train Loss: 0.03409901989802514, Val Loss: 0.037542731601845576 +2024-07-19 14:55:11.056 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 32/50, Train Loss: 0.03364674838846677, Val Loss: 0.03741152780885632 +2024-07-19 14:55:11.431 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 33/50, Train Loss: 0.03363111668763912, Val Loss: 0.037372749827399444 +2024-07-19 14:55:11.801 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 34/50, Train Loss: 0.033795704401723324, Val Loss: 0.0372213329113013 +2024-07-19 14:55:12.174 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 35/50, Train Loss: 0.033678719875951335, Val Loss: 0.03735659279029917 +2024-07-19 14:55:12.554 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 36/50, Train Loss: 0.03356770489824145, Val Loss: 0.03751242397403395 +2024-07-19 14:55:12.917 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 37/50, Train Loss: 0.033545724154539304, Val Loss: 0.03804549360899506 +2024-07-19 14:55:13.277 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 38/50, Train Loss: 0.0337248133010652, Val Loss: 0.03787137620855827 +2024-07-19 14:55:13.646 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 39/50, Train Loss: 0.0337415175027635, Val Loss: 0.03733355491547971 +2024-07-19 14:55:14.016 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 40/50, Train Loss: 0.0336338616142126, Val Loss: 0.03731822939841328 +2024-07-19 14:55:14.398 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 41/50, Train Loss: 0.03357311955665889, Val Loss: 0.03728383449787224 +2024-07-19 14:55:14.764 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 42/50, Train Loss: 0.033521077838050174, Val Loss: 0.037164300604647885 +2024-07-19 14:55:15.132 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 43/50, Train Loss: 0.0335718232066664, Val Loss: 0.03717546383976131 +2024-07-19 14:55:15.508 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 44/50, Train Loss: 0.03341593942923905, Val Loss: 0.03702699466029535 +2024-07-19 14:55:15.867 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 45/50, Train Loss: 0.03336903105859887, Val Loss: 0.03744859550450299 +2024-07-19 14:55:16.235 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 46/50, Train Loss: 0.033271234916293455, Val Loss: 0.03712329054503022 +2024-07-19 14:55:16.595 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 47/50, Train Loss: 0.03336869670103674, Val Loss: 0.03710955799230047 +2024-07-19 14:55:16.954 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 48/50, Train Loss: 0.033353330465416386, Val Loss: 0.03703144743937899 +2024-07-19 14:55:17.323 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 49/50, Train Loss: 0.033477062308420874, Val Loss: 0.03697142760093148 +2024-07-19 14:55:17.686 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 50/50, Train Loss: 0.033364646417433266, Val Loss: 0.03718214343629173 +2024-07-19 14:55:17.686 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Fold 1, MAPE: 6.14% +2024-07-19 14:55:17.791 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Training image saved at metaflow_models//bgd_education_25001_50000_LSTM//train_f1_bgd_education_25001_50000_LSTM.png +2024-07-19 14:55:18.330 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 1/50, Train Loss: 0.02700255135582252, Val Loss: 0.03631979805996289 +2024-07-19 14:55:18.868 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 2/50, Train Loss: 0.026909459246830508, Val Loss: 0.03629492036998272 +2024-07-19 14:55:19.393 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 3/50, Train Loss: 0.026576354380019686, Val Loss: 0.036366452135749766 +2024-07-19 14:55:19.923 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 4/50, Train Loss: 0.026611352026123893, Val Loss: 0.03591245906175794 +2024-07-19 14:55:20.455 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 5/50, Train Loss: 0.026638567904857073, Val Loss: 0.035809978515513846 +2024-07-19 14:55:20.985 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 6/50, Train Loss: 0.026353623379360546, Val Loss: 0.03630423757272798 +2024-07-19 14:55:21.564 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 7/50, Train Loss: 0.026496679124168376, Val Loss: 0.035875229441837686 +2024-07-19 14:55:22.089 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 8/50, Train Loss: 0.026409288529645313, Val Loss: 0.03552739538655088 +2024-07-19 14:55:22.629 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 9/50, Train Loss: 0.026328296095810153, Val Loss: 0.036216928069857324 +2024-07-19 14:55:23.154 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 10/50, Train Loss: 0.026358897442167455, Val Loss: 0.03592633123736124 +2024-07-19 14:55:23.691 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 11/50, Train Loss: 0.026516659151424062, Val Loss: 0.03567754462159969 +2024-07-19 14:55:24.221 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 12/50, Train Loss: 0.026236461644822903, Val Loss: 0.03592616397686101 +2024-07-19 14:55:24.744 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 13/50, Train Loss: 0.026213014337488197, Val Loss: 0.0359512706966819 +2024-07-19 14:55:25.277 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 14/50, Train Loss: 0.026231727655977012, Val Loss: 0.03563791065401322 +2024-07-19 14:55:25.801 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 15/50, Train Loss: 0.0261585018936206, Val Loss: 0.03613808934853689 +2024-07-19 14:55:26.344 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 16/50, Train Loss: 0.026295777630399576, Val Loss: 0.0363034160958754 +2024-07-19 14:55:26.878 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 17/50, Train Loss: 0.026368679013103247, Val Loss: 0.03674673893161722 +2024-07-19 14:55:27.410 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 18/50, Train Loss: 0.026292699211361733, Val Loss: 0.03591655521980814 +2024-07-19 14:55:27.941 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 19/50, Train Loss: 0.026242754845456642, Val Loss: 0.03631927410291659 +2024-07-19 14:55:28.469 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 20/50, Train Loss: 0.026138262789357793, Val Loss: 0.03593158900637079 +2024-07-19 14:55:29.028 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 21/50, Train Loss: 0.026071073436601595, Val Loss: 0.03580592064237272 +2024-07-19 14:55:29.558 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 22/50, Train Loss: 0.026036015000532976, Val Loss: 0.0361267345126819 +2024-07-19 14:55:30.084 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 23/50, Train Loss: 0.02602528774772178, Val Loss: 0.03629443155148545 +2024-07-19 14:55:30.640 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 24/50, Train Loss: 0.026130717975849455, Val Loss: 0.03598374757613685 +2024-07-19 14:55:31.180 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 25/50, Train Loss: 0.026060019010169938, Val Loss: 0.03681194983624123 +2024-07-19 14:55:31.716 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 26/50, Train Loss: 0.026504630256782877, Val Loss: 0.036643033545162226 +2024-07-19 14:55:32.249 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 27/50, Train Loss: 0.0261449832723222, Val Loss: 0.03589212179586694 +2024-07-19 14:55:32.775 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 28/50, Train Loss: 0.026010628950528122, Val Loss: 0.036548493027284336 +2024-07-19 14:55:33.316 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 29/50, Train Loss: 0.026206923775713552, Val Loss: 0.03599591079998661 +2024-07-19 14:55:33.855 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 30/50, Train Loss: 0.026037433794276282, Val Loss: 0.03653480852576527 +2024-07-19 14:55:34.390 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 31/50, Train Loss: 0.02600756184282628, Val Loss: 0.03625678341533687 +2024-07-19 14:55:34.912 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 32/50, Train Loss: 0.026078549543903633, Val Loss: 0.035831507446395384 +2024-07-19 14:55:35.451 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 33/50, Train Loss: 0.026022897195070983, Val Loss: 0.03618867504032883 +2024-07-19 14:55:35.973 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 34/50, Train Loss: 0.025926458607004446, Val Loss: 0.03659589044951104 +2024-07-19 14:55:36.507 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 35/50, Train Loss: 0.025927233645184473, Val Loss: 0.035492686126884575 +2024-07-19 14:55:37.028 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 36/50, Train Loss: 0.0258463141085072, Val Loss: 0.03595701529568917 +2024-07-19 14:55:37.580 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 37/50, Train Loss: 0.025903582818467507, Val Loss: 0.036138844248410816 +2024-07-19 14:55:38.102 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 38/50, Train Loss: 0.025882932467555457, Val Loss: 0.03647083512230499 +2024-07-19 14:55:38.612 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 39/50, Train Loss: 0.025869507393376394, Val Loss: 0.036467545590287934 +2024-07-19 14:55:39.126 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 40/50, Train Loss: 0.02585583192888986, Val Loss: 0.03585064884375881 +2024-07-19 14:55:39.633 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 41/50, Train Loss: 0.0258361080407419, Val Loss: 0.03661317569581238 +2024-07-19 14:55:40.139 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 42/50, Train Loss: 0.025853482735427945, Val Loss: 0.036170911345932935 +2024-07-19 14:55:40.656 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 43/50, Train Loss: 0.025871076731180602, Val Loss: 0.03576884202256396 +2024-07-19 14:55:41.184 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 44/50, Train Loss: 0.02577052257785743, Val Loss: 0.036595730866129335 +2024-07-19 14:55:41.695 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 45/50, Train Loss: 0.025879118286750533, Val Loss: 0.036557523936435986 +2024-07-19 14:55:42.206 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 46/50, Train Loss: 0.02584703609516675, Val Loss: 0.035921396335234515 +2024-07-19 14:55:42.717 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 47/50, Train Loss: 0.0257281184789132, Val Loss: 0.0361345675899773 +2024-07-19 14:55:43.222 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 48/50, Train Loss: 0.02569040268320929, Val Loss: 0.0355704470311065 +2024-07-19 14:55:43.744 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 49/50, Train Loss: 0.025592457901009103, Val Loss: 0.03622234723455197 +2024-07-19 14:55:44.245 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 50/50, Train Loss: 0.02570990515364842, Val Loss: 0.0356322978497357 +2024-07-19 14:55:44.246 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Fold 2, MAPE: 6.80% +2024-07-19 14:55:44.354 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Training image saved at metaflow_models//bgd_education_25001_50000_LSTM//train_f2_bgd_education_25001_50000_LSTM.png +2024-07-19 14:55:45.022 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 1/50, Train Loss: 0.02844241789656959, Val Loss: 0.03699542551830008 +2024-07-19 14:55:45.685 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 2/50, Train Loss: 0.02812552805479667, Val Loss: 0.03650042897946126 +2024-07-19 14:55:46.352 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 3/50, Train Loss: 0.02818005718928698, Val Loss: 0.036478422632491264 +2024-07-19 14:55:47.022 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 4/50, Train Loss: 0.028199058064348893, Val Loss: 0.03664444452403365 +2024-07-19 14:55:47.710 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 5/50, Train Loss: 0.028124411590397358, Val Loss: 0.036324207016543764 +2024-07-19 14:55:48.394 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 6/50, Train Loss: 0.028037678616197957, Val Loss: 0.03709630869530343 +2024-07-19 14:55:49.074 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 7/50, Train Loss: 0.028147933838812457, Val Loss: 0.03673314645483687 +2024-07-19 14:55:49.747 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 8/50, Train Loss: 0.02813382277086581, Val Loss: 0.0362883266564962 +2024-07-19 14:55:50.442 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 9/50, Train Loss: 0.027994771819714815, Val Loss: 0.036626839053791924 +2024-07-19 14:55:51.130 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 10/50, Train Loss: 0.028068503990054946, Val Loss: 0.036590108245208454 +2024-07-19 14:55:51.810 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 11/50, Train Loss: 0.028117646335636917, Val Loss: 0.0366756371096582 +2024-07-19 14:55:52.495 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 12/50, Train Loss: 0.028084309720625616, Val Loss: 0.03693731315433979 +2024-07-19 14:55:53.179 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 13/50, Train Loss: 0.02806751764928029, Val Loss: 0.0369145269631534 +2024-07-19 14:55:53.871 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 14/50, Train Loss: 0.02808491831441244, Val Loss: 0.0368526494382201 +2024-07-19 14:55:54.551 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 15/50, Train Loss: 0.028004273670176938, Val Loss: 0.036536900024559046 +2024-07-19 14:55:55.238 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 16/50, Train Loss: 0.028167693837456508, Val Loss: 0.037385636839914964 +2024-07-19 14:55:55.964 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 17/50, Train Loss: 0.028175345328572677, Val Loss: 0.036913412824474474 +2024-07-19 14:55:56.679 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 18/50, Train Loss: 0.027956739807986235, Val Loss: 0.03702825851537086 +2024-07-19 14:55:57.358 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 19/50, Train Loss: 0.028203660309671946, Val Loss: 0.037117413068945344 +2024-07-19 14:55:58.050 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 20/50, Train Loss: 0.028042146004736423, Val Loss: 0.03674114498032911 +2024-07-19 14:55:58.755 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 21/50, Train Loss: 0.028030453020170945, Val Loss: 0.03696005459170084 +2024-07-19 14:55:59.436 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 22/50, Train Loss: 0.027916551274183677, Val Loss: 0.03772085127294869 +2024-07-19 14:56:00.129 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 23/50, Train Loss: 0.02797670286684616, Val Loss: 0.03729388445011667 +2024-07-19 14:56:00.833 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 24/50, Train Loss: 0.028067789314799522, Val Loss: 0.03678603087728088 +2024-07-19 14:56:01.526 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 25/50, Train Loss: 0.02800286321403229, Val Loss: 0.03662727169088415 +2024-07-19 14:56:02.241 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 26/50, Train Loss: 0.027942188352040234, Val Loss: 0.036669728295827236 +2024-07-19 14:56:02.914 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 27/50, Train Loss: 0.02801418433935471, Val Loss: 0.03717371015935331 +2024-07-19 14:56:03.601 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 28/50, Train Loss: 0.028117817450212697, Val Loss: 0.037368637207593466 +2024-07-19 14:56:04.275 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 29/50, Train Loss: 0.028062609126408622, Val Loss: 0.03716815439229076 +2024-07-19 14:56:04.958 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 30/50, Train Loss: 0.02788070076438662, Val Loss: 0.03711219222561733 +2024-07-19 14:56:05.658 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 31/50, Train Loss: 0.027973175769646284, Val Loss: 0.037174953726699225 +2024-07-19 14:56:06.354 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 32/50, Train Loss: 0.028060036073502614, Val Loss: 0.03736528281021763 +2024-07-19 14:56:07.030 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 33/50, Train Loss: 0.02790204938883855, Val Loss: 0.03756842820124852 +2024-07-19 14:56:07.730 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 34/50, Train Loss: 0.027969921498929393, Val Loss: 0.037243571887547906 +2024-07-19 14:56:08.418 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 35/50, Train Loss: 0.02797860208873267, Val Loss: 0.037206102363966605 +2024-07-19 14:56:09.111 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 36/50, Train Loss: 0.02796439041243228, Val Loss: 0.037445823611641255 +2024-07-19 14:56:09.797 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 37/50, Train Loss: 0.028045212205703537, Val Loss: 0.037810641869499874 +2024-07-19 14:56:10.495 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 38/50, Train Loss: 0.028056196051917663, Val Loss: 0.03726152748473593 +2024-07-19 14:56:11.178 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 39/50, Train Loss: 0.02800498266819201, Val Loss: 0.03721037602706535 +2024-07-19 14:56:11.839 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 40/50, Train Loss: 0.02800085785326688, Val Loss: 0.03734740461348682 +2024-07-19 14:56:12.505 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 41/50, Train Loss: 0.028130458942167973, Val Loss: 0.03711381836517437 +2024-07-19 14:56:13.173 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 42/50, Train Loss: 0.02789243562657335, Val Loss: 0.03708082895625282 +2024-07-19 14:56:13.837 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 43/50, Train Loss: 0.027872611685617738, Val Loss: 0.03705456638960419 +2024-07-19 14:56:14.497 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 44/50, Train Loss: 0.027796817426761128, Val Loss: 0.03687993598145407 +2024-07-19 14:56:15.162 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 45/50, Train Loss: 0.027834712699923204, Val Loss: 0.038218498683056316 +2024-07-19 14:56:15.818 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 46/50, Train Loss: 0.02785839452344465, Val Loss: 0.03768714517354965 +2024-07-19 14:56:16.477 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 47/50, Train Loss: 0.02787586373009094, Val Loss: 0.03836427956215433 +2024-07-19 14:56:17.150 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 48/50, Train Loss: 0.02777311909459021, Val Loss: 0.03738930755974473 +2024-07-19 14:56:17.852 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 49/50, Train Loss: 0.027736558476845696, Val Loss: 0.03829316399689462 +2024-07-19 14:56:18.529 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 50/50, Train Loss: 0.0278623886215054, Val Loss: 0.03739816136658192 +2024-07-19 14:56:18.530 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Fold 3, MAPE: 6.83% +2024-07-19 14:56:18.638 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Training image saved at metaflow_models//bgd_education_25001_50000_LSTM//train_f3_bgd_education_25001_50000_LSTM.png +2024-07-19 14:56:19.477 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 1/50, Train Loss: 0.02615581318265298, Val Loss: 0.029918505105416517 +2024-07-19 14:56:20.320 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 2/50, Train Loss: 0.026102762868893997, Val Loss: 0.029438602385690082 +2024-07-19 14:56:21.178 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 3/50, Train Loss: 0.026144700953839244, Val Loss: 0.029435452602400974 +2024-07-19 14:56:22.021 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 4/50, Train Loss: 0.026009904957570874, Val Loss: 0.02862168272101396 +2024-07-19 14:56:22.852 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 5/50, Train Loss: 0.02597316183088409, Val Loss: 0.02828837201200627 +2024-07-19 14:56:23.697 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 6/50, Train Loss: 0.025881486438255715, Val Loss: 0.028207337131371368 +2024-07-19 14:56:24.542 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 7/50, Train Loss: 0.025950897331503065, Val Loss: 0.028037031885941286 +2024-07-19 14:56:25.367 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 8/50, Train Loss: 0.026161291662112368, Val Loss: 0.029008142222222442 +2024-07-19 14:56:26.202 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 9/50, Train Loss: 0.02590150290915927, Val Loss: 0.028260596876812948 +2024-07-19 14:56:27.054 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 10/50, Train Loss: 0.025820778038066167, Val Loss: 0.027823169036088762 +2024-07-19 14:56:27.895 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 11/50, Train Loss: 0.02582659170666075, Val Loss: 0.02733207156730665 +2024-07-19 14:56:28.738 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 12/50, Train Loss: 0.025757598486002328, Val Loss: 0.027676698248330002 +2024-07-19 14:56:29.572 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 13/50, Train Loss: 0.025695684785535047, Val Loss: 0.027519650606287492 +2024-07-19 14:56:30.408 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 14/50, Train Loss: 0.02578713372349739, Val Loss: 0.027730149493829626 +2024-07-19 14:56:31.263 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 15/50, Train Loss: 0.02589557254891638, Val Loss: 0.027531132001329114 +2024-07-19 14:56:32.106 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 16/50, Train Loss: 0.025790297257417178, Val Loss: 0.027613893126112385 +2024-07-19 14:56:32.941 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 17/50, Train Loss: 0.025689932778682353, Val Loss: 0.02763699188929152 +2024-07-19 14:56:33.773 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 18/50, Train Loss: 0.025722068319977313, Val Loss: 0.028131911707286898 +2024-07-19 14:56:34.610 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 19/50, Train Loss: 0.025738957000302744, Val Loss: 0.02828745314901745 +2024-07-19 14:56:35.443 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 20/50, Train Loss: 0.0256473823133242, Val Loss: 0.027018250243083852 +2024-07-19 14:56:36.284 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 21/50, Train Loss: 0.02572441766304629, Val Loss: 0.027546004769769875 +2024-07-19 14:56:37.115 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 22/50, Train Loss: 0.025722391596371002, Val Loss: 0.027996443212032318 +2024-07-19 14:56:37.965 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 23/50, Train Loss: 0.02564610070600123, Val Loss: 0.02756284398807062 +2024-07-19 14:56:38.812 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 24/50, Train Loss: 0.025635666961034576, Val Loss: 0.027836538700235856 +2024-07-19 14:56:39.696 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 25/50, Train Loss: 0.025593872228125623, Val Loss: 0.027457547223044408 +2024-07-19 14:56:40.513 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 26/50, Train Loss: 0.025670238489100893, Val Loss: 0.02794723429188535 +2024-07-19 14:56:41.339 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 27/50, Train Loss: 0.02561525485202015, Val Loss: 0.02722470323882393 +2024-07-19 14:56:42.143 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 28/50, Train Loss: 0.02538210659154824, Val Loss: 0.027136839674534025 +2024-07-19 14:56:42.932 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 29/50, Train Loss: 0.025560421203928336, Val Loss: 0.02752773931904419 +2024-07-19 14:56:43.725 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 30/50, Train Loss: 0.025475701987538693, Val Loss: 0.02745986359848364 +2024-07-19 14:56:44.528 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 31/50, Train Loss: 0.025596583563998177, Val Loss: 0.028904268367064966 +2024-07-19 14:56:45.327 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 32/50, Train Loss: 0.025373543106060433, Val Loss: 0.02716210761384384 +2024-07-19 14:56:46.128 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 33/50, Train Loss: 0.02552218745964078, Val Loss: 0.02747617709777645 +2024-07-19 14:56:46.931 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 34/50, Train Loss: 0.025299538177653, Val Loss: 0.027309661101851915 +2024-07-19 14:56:47.736 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 35/50, Train Loss: 0.025375809622826158, Val Loss: 0.027331299878455496 +2024-07-19 14:56:48.533 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 36/50, Train Loss: 0.025339136145763344, Val Loss: 0.028874377266982117 +2024-07-19 14:56:49.339 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 37/50, Train Loss: 0.02538473321800376, Val Loss: 0.028033967004031747 +2024-07-19 14:56:50.173 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 38/50, Train Loss: 0.02523264148692181, Val Loss: 0.027172616833971965 +2024-07-19 14:56:50.974 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 39/50, Train Loss: 0.02526135115812604, Val Loss: 0.02968959240997965 +2024-07-19 14:56:51.788 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 40/50, Train Loss: 0.025355544412037828, Val Loss: 0.027788555048204756 +2024-07-19 14:56:52.594 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 41/50, Train Loss: 0.02521591376165276, Val Loss: 0.028212614810547314 +2024-07-19 14:56:53.392 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 42/50, Train Loss: 0.02518184440578897, Val Loss: 0.028009698952774744 +2024-07-19 14:56:54.196 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 43/50, Train Loss: 0.025227359905429594, Val Loss: 0.02727566531079041 +2024-07-19 14:56:54.999 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 44/50, Train Loss: 0.025238742985363518, Val Loss: 0.02699819317943341 +2024-07-19 14:56:55.801 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 45/50, Train Loss: 0.025177854829682753, Val Loss: 0.027554945592340584 +2024-07-19 14:56:56.617 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 46/50, Train Loss: 0.025157808725322996, Val Loss: 0.02776139649889759 +2024-07-19 14:56:57.414 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 47/50, Train Loss: 0.025127947376529267, Val Loss: 0.027541116635138925 +2024-07-19 14:56:58.260 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 48/50, Train Loss: 0.02508933388802049, Val Loss: 0.026981024197428614 +2024-07-19 14:56:59.178 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 49/50, Train Loss: 0.024949027921308528, Val Loss: 0.02757847638851082 +2024-07-19 14:57:00.024 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 50/50, Train Loss: 0.025042468380019233, Val Loss: 0.027267007937503827 +2024-07-19 14:57:00.024 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Fold 4, MAPE: 5.88% +2024-07-19 14:57:00.132 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Training image saved at metaflow_models//bgd_education_25001_50000_LSTM//train_f4_bgd_education_25001_50000_LSTM.png +2024-07-19 14:57:04.554 [17/cross_validate_train/201 (pid 8433)] Task finished successfully. +2024-07-19 14:57:04.587 [17/model_scores/202 (pid 8974)] Task is starting. +2024-07-19 14:57:06.103 [17/model_scores/202 (pid 8974)] INFO:__main__:Average Train Loss across all folds: 0.02956639404038162 +2024-07-19 14:57:10.036 [17/model_scores/202 (pid 8974)] INFO:__main__:Average Validation Loss across all folds: 0.035371405923286005 +2024-07-19 14:57:10.036 [17/model_scores/202 (pid 8974)] INFO:__main__:Average MAPE across all folds: 6.38% +2024-07-19 14:57:10.037 [17/model_scores/202 (pid 8974)] Task finished successfully. +2024-07-19 14:57:10.067 [17/validate_model/203 (pid 9000)] Task is starting. +2024-07-19 14:57:11.568 [17/validate_model/203 (pid 9000)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:57:11.671 [17/validate_model/203 (pid 9000)] INFO:__main__:Test Set MAPE: 5.89% +2024-07-19 14:57:12.058 [17/validate_model/203 (pid 9000)] INFO:__main__:Test image saved at metaflow_models//bgd_education_25001_50000_LSTM//test_bgd_education_25001_50000_LSTM.png +2024-07-19 14:57:12.490 [17/validate_model/203 (pid 9000)] Task finished successfully. +2024-07-19 14:57:12.526 [17/log_model/204 (pid 9018)] Task is starting. +2024-07-19 14:57:14.018 [17/log_model/204 (pid 9018)] INFO:__main__:Logging model bgd_education_25001_50000_LSTM +2024-07-19 14:57:14.019 [17/log_model/204 (pid 9018)] INFO:__main__:Model logged at metaflow_models//bgd_education_25001_50000_LSTM//bgd_education_25001_50000_LSTM.pth +2024-07-19 14:57:17.913 [17/log_model/204 (pid 9018)] Task finished successfully. +2024-07-19 14:57:17.943 [17/end/205 (pid 9042)] Task is starting. +2024-07-19 14:57:19.423 [17/end/205 (pid 9042)] INFO:__main__:Pipeline end. +2024-07-19 14:57:19.752 [17/end/205 (pid 9042)] Task finished successfully. +2024-07-19 14:57:19.752 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/17') succeeded: +-- stdout -- +2024-07-19 14:54:19.941 Workflow starting (run-id 17): +2024-07-19 14:54:20.015 [17/start/193 (pid 8288)] Task is starting. +2024-07-19 14:54:21.489 [17/start/193 (pid 8288)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:54:21.787 [17/start/193 (pid 8288)] Task finished successfully. +2024-07-19 14:54:21.818 [17/ingest/194 (pid 8299)] Task is starting. +2024-07-19 14:54:23.278 [17/ingest/194 (pid 8299)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:54:23.294 [17/ingest/194 (pid 8299)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:54:27.157 [17/ingest/194 (pid 8299)] Task finished successfully. +2024-07-19 14:54:27.188 [17/pick_2017_data/195 (pid 8330)] Task is starting. +2024-07-19 14:54:28.684 [17/pick_2017_data/195 (pid 8330)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:54:29.012 [17/pick_2017_data/195 (pid 8330)] Task finished successfully. +2024-07-19 14:54:29.046 [17/fill_missing_data/196 (pid 8343)] Task is starting. +2024-07-19 14:54:30.495 [17/fill_missing_data/196 (pid 8343)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] INFO:__main__:NaN counts per column: +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] INFO:__main__:Robin_education_Audrea 0 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] Rat_education_Carmela 50 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] Rat_education_Salvatore 50 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] Rat_education_Candida 50 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] Bear_education_Merrill 129 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] Cockatoo_education_Melanie 117 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] Cockatoo_education_Julia 128 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] dtype: int64 +2024-07-19 14:54:30.501 [17/fill_missing_data/196 (pid 8343)] --- Logging error --- +2024-07-19 14:54:30.502 [17/fill_missing_data/196 (pid 8343)] Traceback (most recent call last): +2024-07-19 14:54:30.502 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] msg = self.format(record) +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] return fmt.format(record) +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] record.message = record.getMessage() +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] msg = msg % self.args +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] TypeError: not all arguments converted during string formatting +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] Call stack: +2024-07-19 14:54:30.503 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] BGD_LinearFlow() +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] cli.main(self) +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] return func(*args, **kwargs) +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] return self.main(*args, **kwargs) +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] rv = self.invoke(ctx) +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:54:31.175 [17/fill_missing_data/196 (pid 8343)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] return callback(*args, **kwargs) +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] task.run_step( +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] self._exec_step_function(step_func) +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] step_function() +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:54:31.176 [17/fill_missing_data/196 (pid 8343)] Arguments: (524,) +2024-07-19 14:54:31.177 [17/fill_missing_data/196 (pid 8343)] Task finished successfully. +2024-07-19 14:54:31.202 [17/find_median/197 (pid 8354)] Task is starting. +2024-07-19 14:54:32.669 [17/find_median/197 (pid 8354)] INFO:__main__:Computing and using median.. +2024-07-19 14:54:33.200 [17/find_median/197 (pid 8354)] Task finished successfully. +2024-07-19 14:54:33.232 [17/aggregate_data/198 (pid 8365)] Task is starting. +2024-07-19 14:54:34.683 [17/aggregate_data/198 (pid 8365)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:54:38.522 [17/aggregate_data/198 (pid 8365)] Task finished successfully. +2024-07-19 14:54:38.556 [17/split_data/199 (pid 8391)] Task is starting. +2024-07-19 14:54:40.033 [17/split_data/199 (pid 8391)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:54:43.894 [17/split_data/199 (pid 8391)] Task finished successfully. +2024-07-19 14:54:43.926 [17/make_x_y/200 (pid 8422)] Task is starting. +2024-07-19 14:54:45.725 [17/make_x_y/200 (pid 8422)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:54:46.042 [17/make_x_y/200 (pid 8422)] Shape of y_train: (6978, 1) +2024-07-19 14:54:46.042 [17/make_x_y/200 (pid 8422)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:54:46.042 [17/make_x_y/200 (pid 8422)] Shape of y_test: (1722, 1) +2024-07-19 14:54:46.043 [17/make_x_y/200 (pid 8422)] Task finished successfully. +2024-07-19 14:54:46.073 [17/cross_validate_train/201 (pid 8433)] Task is starting. +2024-07-19 14:54:47.570 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Creating bgd_education_25001_50000_LSTM +2024-07-19 14:54:47.571 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Performing cross validation.. +2024-07-19 14:54:48.297 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 1/50, Train Loss: 0.210253653796138, Val Loss: 0.15232346770731178 +2024-07-19 14:54:48.495 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 2/50, Train Loss: 0.11067552265484591, Val Loss: 0.13556444861397549 +2024-07-19 14:54:48.702 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 3/50, Train Loss: 0.101068211870419, Val Loss: 0.12094761265089383 +2024-07-19 14:54:48.906 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 4/50, Train Loss: 0.08223779096796706, Val Loss: 0.09917768760508783 +2024-07-19 14:54:49.110 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 5/50, Train Loss: 0.07520086751193614, Val Loss: 0.07955716781922288 +2024-07-19 14:54:49.315 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 6/50, Train Loss: 0.06870060132161991, Val Loss: 0.07154868684104972 +2024-07-19 14:54:49.515 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 7/50, Train Loss: 0.06506882673381148, Val Loss: 0.06716544065322425 +2024-07-19 14:54:49.728 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 8/50, Train Loss: 0.05855770011407298, Val Loss: 0.06516807098445054 +2024-07-19 14:54:49.936 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 9/50, Train Loss: 0.05625982386236255, Val Loss: 0.06335737616629214 +2024-07-19 14:54:50.141 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 10/50, Train Loss: 0.05398298316710704, Val Loss: 0.06254677650694912 +2024-07-19 14:54:50.360 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 11/50, Train Loss: 0.0524061661515687, Val Loss: 0.06085896668200557 +2024-07-19 14:54:50.589 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 12/50, Train Loss: 0.05097178072744125, Val Loss: 0.059791568515671266 +2024-07-19 14:54:50.794 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 13/50, Train Loss: 0.049878996369001026, Val Loss: 0.05889532216698737 +2024-07-19 14:54:50.997 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 14/50, Train Loss: 0.04838161885335639, Val Loss: 0.057259012768800195 +2024-07-19 14:54:51.218 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 15/50, Train Loss: 0.04684341014237017, Val Loss: 0.05435828381293529 +2024-07-19 14:54:51.432 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 16/50, Train Loss: 0.04499817040522356, Val Loss: 0.052721385516830394 +2024-07-19 14:54:51.668 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 17/50, Train Loss: 0.043684580942263476, Val Loss: 0.05092959936607529 +2024-07-19 14:54:51.873 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 18/50, Train Loss: 0.04253423651932059, Val Loss: 0.04947195921999377 +2024-07-19 14:54:52.078 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 19/50, Train Loss: 0.04181925564802982, Val Loss: 0.048017769296829764 +2024-07-19 14:54:52.281 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 20/50, Train Loss: 0.04082770635550086, Val Loss: 0.046874538164686515 +2024-07-19 14:54:52.490 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 21/50, Train Loss: 0.04028654581791646, Val Loss: 0.04656227914666807 +2024-07-19 14:54:52.693 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 22/50, Train Loss: 0.040019006443184776, Val Loss: 0.04533540120197309 +2024-07-19 14:54:52.896 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 23/50, Train Loss: 0.0394609578054499, Val Loss: 0.04454899528944815 +2024-07-19 14:54:53.099 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 24/50, Train Loss: 0.039269531900818284, Val Loss: 0.04424610341320167 +2024-07-19 14:54:53.303 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 25/50, Train Loss: 0.0389671275341833, Val Loss: 0.043418663629406204 +2024-07-19 14:54:53.511 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 26/50, Train Loss: 0.038793059116279754, Val Loss: 0.04317713800717045 +2024-07-19 14:54:53.713 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 27/50, Train Loss: 0.03852548616359363, Val Loss: 0.0424237382673734 +2024-07-19 14:54:53.919 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 28/50, Train Loss: 0.038149746738978335, Val Loss: 0.0420979324828934 +2024-07-19 14:54:54.127 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 29/50, Train Loss: 0.03798592322178789, Val Loss: 0.041731083111183065 +2024-07-19 14:54:54.332 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 30/50, Train Loss: 0.03782013053628239, Val Loss: 0.04137391390631328 +2024-07-19 14:54:54.535 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 31/50, Train Loss: 0.03756760453452935, Val Loss: 0.04126930418046745 +2024-07-19 14:54:54.742 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 32/50, Train Loss: 0.037658096618346265, Val Loss: 0.041186784419256287 +2024-07-19 14:54:54.954 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 33/50, Train Loss: 0.037257223767605985, Val Loss: 0.040700649641252855 +2024-07-19 14:54:55.166 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 34/50, Train Loss: 0.03693211627368991, Val Loss: 0.040487247393340677 +2024-07-19 14:54:55.378 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 35/50, Train Loss: 0.03685563279164804, Val Loss: 0.04029695745054129 +2024-07-19 14:54:55.587 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 36/50, Train Loss: 0.0365223912270488, Val Loss: 0.04002787907784049 +2024-07-19 14:54:55.800 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 37/50, Train Loss: 0.036356117123284855, Val Loss: 0.0397299139483555 +2024-07-19 14:54:56.012 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 38/50, Train Loss: 0.03617874120135565, Val Loss: 0.039546254468528 +2024-07-19 14:54:56.231 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 39/50, Train Loss: 0.03614643276543231, Val Loss: 0.039858857723506724 +2024-07-19 14:54:56.469 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 40/50, Train Loss: 0.03643916159666873, Val Loss: 0.03983810211758356 +2024-07-19 14:54:56.680 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 41/50, Train Loss: 0.03639684093965066, Val Loss: 0.03972390611228105 +2024-07-19 14:54:56.890 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 42/50, Train Loss: 0.03630775092421351, Val Loss: 0.03950428363640566 +2024-07-19 14:54:57.110 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 43/50, Train Loss: 0.03637918965840662, Val Loss: 0.039131978677736746 +2024-07-19 14:54:57.333 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 44/50, Train Loss: 0.03614156954997295, Val Loss: 0.03913189803023596 +2024-07-19 14:54:57.545 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 45/50, Train Loss: 0.035864317235914434, Val Loss: 0.03942965630542587 +2024-07-19 14:54:57.754 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 46/50, Train Loss: 0.03602880949305522, Val Loss: 0.039111940240537796 +2024-07-19 14:54:57.967 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 47/50, Train Loss: 0.0359230026401378, Val Loss: 0.03926914905172747 +2024-07-19 14:54:58.179 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 48/50, Train Loss: 0.036251829030948715, Val Loss: 0.03909407953756887 +2024-07-19 14:54:58.395 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 49/50, Train Loss: 0.03627204814472714, Val Loss: 0.03892551090668987 +2024-07-19 14:54:58.612 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 50/50, Train Loss: 0.035852561629301796, Val Loss: 0.03937741902631682 +2024-07-19 14:54:58.612 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Fold 0, MAPE: 6.24% +2024-07-19 14:54:58.929 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Training image saved at metaflow_models//bgd_education_25001_50000_LSTM//train_f0_bgd_education_25001_50000_LSTM.png +2024-07-19 14:54:59.400 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 1/50, Train Loss: 0.03735808512731774, Val Loss: 0.04247128983607163 +2024-07-19 14:54:59.779 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 2/50, Train Loss: 0.035775540753790774, Val Loss: 0.04047303629183286 +2024-07-19 14:55:00.158 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 3/50, Train Loss: 0.035396638976996894, Val Loss: 0.03986130453444816 +2024-07-19 14:55:00.541 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 4/50, Train Loss: 0.035335586265954254, Val Loss: 0.03970157261937857 +2024-07-19 14:55:00.935 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 5/50, Train Loss: 0.03490786165101071, Val Loss: 0.0393485071238231 +2024-07-19 14:55:01.326 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 6/50, Train Loss: 0.03490685829765176, Val Loss: 0.03913243515165271 +2024-07-19 14:55:01.681 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 7/50, Train Loss: 0.03495582657521718, Val Loss: 0.038984505812058576 +2024-07-19 14:55:02.039 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 8/50, Train Loss: 0.03498596361238662, Val Loss: 0.038790825628549665 +2024-07-19 14:55:02.398 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 9/50, Train Loss: 0.034639475178228664, Val Loss: 0.03886785146755141 +2024-07-19 14:55:02.762 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 10/50, Train Loss: 0.03493176035787145, Val Loss: 0.03882830172173075 +2024-07-19 14:55:03.132 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 11/50, Train Loss: 0.03464553893020708, Val Loss: 0.03841223336152128 +2024-07-19 14:55:03.534 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 12/50, Train Loss: 0.034596583333938086, Val Loss: 0.03831101027694908 +2024-07-19 14:55:03.907 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 13/50, Train Loss: 0.03450317905373769, Val Loss: 0.038225294594225044 +2024-07-19 14:55:04.279 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 14/50, Train Loss: 0.03436679904642578, Val Loss: 0.03787028603255749 +2024-07-19 14:55:04.643 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 15/50, Train Loss: 0.03434273768981842, Val Loss: 0.03782485460711492 +2024-07-19 14:55:05.012 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 16/50, Train Loss: 0.034263977117530285, Val Loss: 0.03784295201704309 +2024-07-19 14:55:05.386 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 17/50, Train Loss: 0.034416933633285025, Val Loss: 0.03780326209458951 +2024-07-19 14:55:05.755 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 18/50, Train Loss: 0.03447335932965148, Val Loss: 0.03758767544216401 +2024-07-19 14:55:06.142 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 19/50, Train Loss: 0.03420685884887225, Val Loss: 0.03777587411270754 +2024-07-19 14:55:06.524 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 20/50, Train Loss: 0.03428246161249811, Val Loss: 0.03771666095063493 +2024-07-19 14:55:06.897 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 21/50, Train Loss: 0.03462679209570362, Val Loss: 0.037985930521343206 +2024-07-19 14:55:07.283 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 22/50, Train Loss: 0.03432882454705565, Val Loss: 0.038106247757536335 +2024-07-19 14:55:07.667 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 23/50, Train Loss: 0.03409349045728984, Val Loss: 0.0377283329395829 +2024-07-19 14:55:08.059 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 24/50, Train Loss: 0.03388397436435908, Val Loss: 0.03783782304742852 +2024-07-19 14:55:08.434 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 25/50, Train Loss: 0.03400442935526371, Val Loss: 0.03770611943626726 +2024-07-19 14:55:08.814 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 26/50, Train Loss: 0.03394740460159844, Val Loss: 0.03753993103935106 +2024-07-19 14:55:09.201 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 27/50, Train Loss: 0.03382874497097649, Val Loss: 0.0375659595419829 +2024-07-19 14:55:09.618 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 28/50, Train Loss: 0.03381643395819892, Val Loss: 0.03740987488748254 +2024-07-19 14:55:09.978 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 29/50, Train Loss: 0.03383404968229875, Val Loss: 0.0373018907030692 +2024-07-19 14:55:10.337 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 30/50, Train Loss: 0.03395948773377562, Val Loss: 0.0375212587013438 +2024-07-19 14:55:10.697 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 31/50, Train Loss: 0.03409901989802514, Val Loss: 0.037542731601845576 +2024-07-19 14:55:11.056 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 32/50, Train Loss: 0.03364674838846677, Val Loss: 0.03741152780885632 +2024-07-19 14:55:11.431 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 33/50, Train Loss: 0.03363111668763912, Val Loss: 0.037372749827399444 +2024-07-19 14:55:11.801 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 34/50, Train Loss: 0.033795704401723324, Val Loss: 0.0372213329113013 +2024-07-19 14:55:12.174 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 35/50, Train Loss: 0.033678719875951335, Val Loss: 0.03735659279029917 +2024-07-19 14:55:12.554 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 36/50, Train Loss: 0.03356770489824145, Val Loss: 0.03751242397403395 +2024-07-19 14:55:12.917 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 37/50, Train Loss: 0.033545724154539304, Val Loss: 0.03804549360899506 +2024-07-19 14:55:13.277 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 38/50, Train Loss: 0.0337248133010652, Val Loss: 0.03787137620855827 +2024-07-19 14:55:13.646 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 39/50, Train Loss: 0.0337415175027635, Val Loss: 0.03733355491547971 +2024-07-19 14:55:14.016 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 40/50, Train Loss: 0.0336338616142126, Val Loss: 0.03731822939841328 +2024-07-19 14:55:14.398 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 41/50, Train Loss: 0.03357311955665889, Val Loss: 0.03728383449787224 +2024-07-19 14:55:14.764 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 42/50, Train Loss: 0.033521077838050174, Val Loss: 0.037164300604647885 +2024-07-19 14:55:15.132 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 43/50, Train Loss: 0.0335718232066664, Val Loss: 0.03717546383976131 +2024-07-19 14:55:15.508 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 44/50, Train Loss: 0.03341593942923905, Val Loss: 0.03702699466029535 +2024-07-19 14:55:15.867 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 45/50, Train Loss: 0.03336903105859887, Val Loss: 0.03744859550450299 +2024-07-19 14:55:16.235 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 46/50, Train Loss: 0.033271234916293455, Val Loss: 0.03712329054503022 +2024-07-19 14:55:16.595 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 47/50, Train Loss: 0.03336869670103674, Val Loss: 0.03710955799230047 +2024-07-19 14:55:16.954 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 48/50, Train Loss: 0.033353330465416386, Val Loss: 0.03703144743937899 +2024-07-19 14:55:17.323 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 49/50, Train Loss: 0.033477062308420874, Val Loss: 0.03697142760093148 +2024-07-19 14:55:17.686 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 50/50, Train Loss: 0.033364646417433266, Val Loss: 0.03718214343629173 +2024-07-19 14:55:17.686 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Fold 1, MAPE: 6.14% +2024-07-19 14:55:17.791 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Training image saved at metaflow_models//bgd_education_25001_50000_LSTM//train_f1_bgd_education_25001_50000_LSTM.png +2024-07-19 14:55:18.330 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 1/50, Train Loss: 0.02700255135582252, Val Loss: 0.03631979805996289 +2024-07-19 14:55:18.868 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 2/50, Train Loss: 0.026909459246830508, Val Loss: 0.03629492036998272 +2024-07-19 14:55:19.393 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 3/50, Train Loss: 0.026576354380019686, Val Loss: 0.036366452135749766 +2024-07-19 14:55:19.923 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 4/50, Train Loss: 0.026611352026123893, Val Loss: 0.03591245906175794 +2024-07-19 14:55:20.455 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 5/50, Train Loss: 0.026638567904857073, Val Loss: 0.035809978515513846 +2024-07-19 14:55:20.985 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 6/50, Train Loss: 0.026353623379360546, Val Loss: 0.03630423757272798 +2024-07-19 14:55:21.564 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 7/50, Train Loss: 0.026496679124168376, Val Loss: 0.035875229441837686 +2024-07-19 14:55:22.089 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 8/50, Train Loss: 0.026409288529645313, Val Loss: 0.03552739538655088 +2024-07-19 14:55:22.629 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 9/50, Train Loss: 0.026328296095810153, Val Loss: 0.036216928069857324 +2024-07-19 14:55:23.154 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 10/50, Train Loss: 0.026358897442167455, Val Loss: 0.03592633123736124 +2024-07-19 14:55:23.691 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 11/50, Train Loss: 0.026516659151424062, Val Loss: 0.03567754462159969 +2024-07-19 14:55:24.221 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 12/50, Train Loss: 0.026236461644822903, Val Loss: 0.03592616397686101 +2024-07-19 14:55:24.744 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 13/50, Train Loss: 0.026213014337488197, Val Loss: 0.0359512706966819 +2024-07-19 14:55:25.277 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 14/50, Train Loss: 0.026231727655977012, Val Loss: 0.03563791065401322 +2024-07-19 14:55:25.801 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 15/50, Train Loss: 0.0261585018936206, Val Loss: 0.03613808934853689 +2024-07-19 14:55:26.344 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 16/50, Train Loss: 0.026295777630399576, Val Loss: 0.0363034160958754 +2024-07-19 14:55:26.878 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 17/50, Train Loss: 0.026368679013103247, Val Loss: 0.03674673893161722 +2024-07-19 14:55:27.410 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 18/50, Train Loss: 0.026292699211361733, Val Loss: 0.03591655521980814 +2024-07-19 14:55:27.941 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 19/50, Train Loss: 0.026242754845456642, Val Loss: 0.03631927410291659 +2024-07-19 14:55:28.469 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 20/50, Train Loss: 0.026138262789357793, Val Loss: 0.03593158900637079 +2024-07-19 14:55:29.028 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 21/50, Train Loss: 0.026071073436601595, Val Loss: 0.03580592064237272 +2024-07-19 14:55:29.558 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 22/50, Train Loss: 0.026036015000532976, Val Loss: 0.0361267345126819 +2024-07-19 14:55:30.084 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 23/50, Train Loss: 0.02602528774772178, Val Loss: 0.03629443155148545 +2024-07-19 14:55:30.640 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 24/50, Train Loss: 0.026130717975849455, Val Loss: 0.03598374757613685 +2024-07-19 14:55:31.180 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 25/50, Train Loss: 0.026060019010169938, Val Loss: 0.03681194983624123 +2024-07-19 14:55:31.716 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 26/50, Train Loss: 0.026504630256782877, Val Loss: 0.036643033545162226 +2024-07-19 14:55:32.249 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 27/50, Train Loss: 0.0261449832723222, Val Loss: 0.03589212179586694 +2024-07-19 14:55:32.775 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 28/50, Train Loss: 0.026010628950528122, Val Loss: 0.036548493027284336 +2024-07-19 14:55:33.316 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 29/50, Train Loss: 0.026206923775713552, Val Loss: 0.03599591079998661 +2024-07-19 14:55:33.855 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 30/50, Train Loss: 0.026037433794276282, Val Loss: 0.03653480852576527 +2024-07-19 14:55:34.390 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 31/50, Train Loss: 0.02600756184282628, Val Loss: 0.03625678341533687 +2024-07-19 14:55:34.912 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 32/50, Train Loss: 0.026078549543903633, Val Loss: 0.035831507446395384 +2024-07-19 14:55:35.451 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 33/50, Train Loss: 0.026022897195070983, Val Loss: 0.03618867504032883 +2024-07-19 14:55:35.973 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 34/50, Train Loss: 0.025926458607004446, Val Loss: 0.03659589044951104 +2024-07-19 14:55:36.507 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 35/50, Train Loss: 0.025927233645184473, Val Loss: 0.035492686126884575 +2024-07-19 14:55:37.028 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 36/50, Train Loss: 0.0258463141085072, Val Loss: 0.03595701529568917 +2024-07-19 14:55:37.580 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 37/50, Train Loss: 0.025903582818467507, Val Loss: 0.036138844248410816 +2024-07-19 14:55:38.102 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 38/50, Train Loss: 0.025882932467555457, Val Loss: 0.03647083512230499 +2024-07-19 14:55:38.612 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 39/50, Train Loss: 0.025869507393376394, Val Loss: 0.036467545590287934 +2024-07-19 14:55:39.126 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 40/50, Train Loss: 0.02585583192888986, Val Loss: 0.03585064884375881 +2024-07-19 14:55:39.633 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 41/50, Train Loss: 0.0258361080407419, Val Loss: 0.03661317569581238 +2024-07-19 14:55:40.139 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 42/50, Train Loss: 0.025853482735427945, Val Loss: 0.036170911345932935 +2024-07-19 14:55:40.656 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 43/50, Train Loss: 0.025871076731180602, Val Loss: 0.03576884202256396 +2024-07-19 14:55:41.184 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 44/50, Train Loss: 0.02577052257785743, Val Loss: 0.036595730866129335 +2024-07-19 14:55:41.695 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 45/50, Train Loss: 0.025879118286750533, Val Loss: 0.036557523936435986 +2024-07-19 14:55:42.206 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 46/50, Train Loss: 0.02584703609516675, Val Loss: 0.035921396335234515 +2024-07-19 14:55:42.717 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 47/50, Train Loss: 0.0257281184789132, Val Loss: 0.0361345675899773 +2024-07-19 14:55:43.222 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 48/50, Train Loss: 0.02569040268320929, Val Loss: 0.0355704470311065 +2024-07-19 14:55:43.744 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 49/50, Train Loss: 0.025592457901009103, Val Loss: 0.03622234723455197 +2024-07-19 14:55:44.245 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 50/50, Train Loss: 0.02570990515364842, Val Loss: 0.0356322978497357 +2024-07-19 14:55:44.246 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Fold 2, MAPE: 6.80% +2024-07-19 14:55:44.354 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Training image saved at metaflow_models//bgd_education_25001_50000_LSTM//train_f2_bgd_education_25001_50000_LSTM.png +2024-07-19 14:55:45.022 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 1/50, Train Loss: 0.02844241789656959, Val Loss: 0.03699542551830008 +2024-07-19 14:55:45.685 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 2/50, Train Loss: 0.02812552805479667, Val Loss: 0.03650042897946126 +2024-07-19 14:55:46.352 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 3/50, Train Loss: 0.02818005718928698, Val Loss: 0.036478422632491264 +2024-07-19 14:55:47.022 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 4/50, Train Loss: 0.028199058064348893, Val Loss: 0.03664444452403365 +2024-07-19 14:55:47.710 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 5/50, Train Loss: 0.028124411590397358, Val Loss: 0.036324207016543764 +2024-07-19 14:55:48.394 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 6/50, Train Loss: 0.028037678616197957, Val Loss: 0.03709630869530343 +2024-07-19 14:55:49.074 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 7/50, Train Loss: 0.028147933838812457, Val Loss: 0.03673314645483687 +2024-07-19 14:55:49.747 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 8/50, Train Loss: 0.02813382277086581, Val Loss: 0.0362883266564962 +2024-07-19 14:55:50.442 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 9/50, Train Loss: 0.027994771819714815, Val Loss: 0.036626839053791924 +2024-07-19 14:55:51.130 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 10/50, Train Loss: 0.028068503990054946, Val Loss: 0.036590108245208454 +2024-07-19 14:55:51.810 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 11/50, Train Loss: 0.028117646335636917, Val Loss: 0.0366756371096582 +2024-07-19 14:55:52.495 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 12/50, Train Loss: 0.028084309720625616, Val Loss: 0.03693731315433979 +2024-07-19 14:55:53.179 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 13/50, Train Loss: 0.02806751764928029, Val Loss: 0.0369145269631534 +2024-07-19 14:55:53.871 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 14/50, Train Loss: 0.02808491831441244, Val Loss: 0.0368526494382201 +2024-07-19 14:55:54.551 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 15/50, Train Loss: 0.028004273670176938, Val Loss: 0.036536900024559046 +2024-07-19 14:55:55.238 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 16/50, Train Loss: 0.028167693837456508, Val Loss: 0.037385636839914964 +2024-07-19 14:55:55.964 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 17/50, Train Loss: 0.028175345328572677, Val Loss: 0.036913412824474474 +2024-07-19 14:55:56.679 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 18/50, Train Loss: 0.027956739807986235, Val Loss: 0.03702825851537086 +2024-07-19 14:55:57.358 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 19/50, Train Loss: 0.028203660309671946, Val Loss: 0.037117413068945344 +2024-07-19 14:55:58.050 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 20/50, Train Loss: 0.028042146004736423, Val Loss: 0.03674114498032911 +2024-07-19 14:55:58.755 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 21/50, Train Loss: 0.028030453020170945, Val Loss: 0.03696005459170084 +2024-07-19 14:55:59.436 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 22/50, Train Loss: 0.027916551274183677, Val Loss: 0.03772085127294869 +2024-07-19 14:56:00.129 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 23/50, Train Loss: 0.02797670286684616, Val Loss: 0.03729388445011667 +2024-07-19 14:56:00.833 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 24/50, Train Loss: 0.028067789314799522, Val Loss: 0.03678603087728088 +2024-07-19 14:56:01.526 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 25/50, Train Loss: 0.02800286321403229, Val Loss: 0.03662727169088415 +2024-07-19 14:56:02.241 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 26/50, Train Loss: 0.027942188352040234, Val Loss: 0.036669728295827236 +2024-07-19 14:56:02.914 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 27/50, Train Loss: 0.02801418433935471, Val Loss: 0.03717371015935331 +2024-07-19 14:56:03.601 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 28/50, Train Loss: 0.028117817450212697, Val Loss: 0.037368637207593466 +2024-07-19 14:56:04.275 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 29/50, Train Loss: 0.028062609126408622, Val Loss: 0.03716815439229076 +2024-07-19 14:56:04.958 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 30/50, Train Loss: 0.02788070076438662, Val Loss: 0.03711219222561733 +2024-07-19 14:56:05.658 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 31/50, Train Loss: 0.027973175769646284, Val Loss: 0.037174953726699225 +2024-07-19 14:56:06.354 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 32/50, Train Loss: 0.028060036073502614, Val Loss: 0.03736528281021763 +2024-07-19 14:56:07.030 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 33/50, Train Loss: 0.02790204938883855, Val Loss: 0.03756842820124852 +2024-07-19 14:56:07.730 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 34/50, Train Loss: 0.027969921498929393, Val Loss: 0.037243571887547906 +2024-07-19 14:56:08.418 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 35/50, Train Loss: 0.02797860208873267, Val Loss: 0.037206102363966605 +2024-07-19 14:56:09.111 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 36/50, Train Loss: 0.02796439041243228, Val Loss: 0.037445823611641255 +2024-07-19 14:56:09.797 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 37/50, Train Loss: 0.028045212205703537, Val Loss: 0.037810641869499874 +2024-07-19 14:56:10.495 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 38/50, Train Loss: 0.028056196051917663, Val Loss: 0.03726152748473593 +2024-07-19 14:56:11.178 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 39/50, Train Loss: 0.02800498266819201, Val Loss: 0.03721037602706535 +2024-07-19 14:56:11.839 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 40/50, Train Loss: 0.02800085785326688, Val Loss: 0.03734740461348682 +2024-07-19 14:56:12.505 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 41/50, Train Loss: 0.028130458942167973, Val Loss: 0.03711381836517437 +2024-07-19 14:56:13.173 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 42/50, Train Loss: 0.02789243562657335, Val Loss: 0.03708082895625282 +2024-07-19 14:56:13.837 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 43/50, Train Loss: 0.027872611685617738, Val Loss: 0.03705456638960419 +2024-07-19 14:56:14.497 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 44/50, Train Loss: 0.027796817426761128, Val Loss: 0.03687993598145407 +2024-07-19 14:56:15.162 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 45/50, Train Loss: 0.027834712699923204, Val Loss: 0.038218498683056316 +2024-07-19 14:56:15.818 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 46/50, Train Loss: 0.02785839452344465, Val Loss: 0.03768714517354965 +2024-07-19 14:56:16.477 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 47/50, Train Loss: 0.02787586373009094, Val Loss: 0.03836427956215433 +2024-07-19 14:56:17.150 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 48/50, Train Loss: 0.02777311909459021, Val Loss: 0.03738930755974473 +2024-07-19 14:56:17.852 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 49/50, Train Loss: 0.027736558476845696, Val Loss: 0.03829316399689462 +2024-07-19 14:56:18.529 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 50/50, Train Loss: 0.0278623886215054, Val Loss: 0.03739816136658192 +2024-07-19 14:56:18.530 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Fold 3, MAPE: 6.83% +2024-07-19 14:56:18.638 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Training image saved at metaflow_models//bgd_education_25001_50000_LSTM//train_f3_bgd_education_25001_50000_LSTM.png +2024-07-19 14:56:19.477 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 1/50, Train Loss: 0.02615581318265298, Val Loss: 0.029918505105416517 +2024-07-19 14:56:20.320 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 2/50, Train Loss: 0.026102762868893997, Val Loss: 0.029438602385690082 +2024-07-19 14:56:21.178 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 3/50, Train Loss: 0.026144700953839244, Val Loss: 0.029435452602400974 +2024-07-19 14:56:22.021 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 4/50, Train Loss: 0.026009904957570874, Val Loss: 0.02862168272101396 +2024-07-19 14:56:22.852 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 5/50, Train Loss: 0.02597316183088409, Val Loss: 0.02828837201200627 +2024-07-19 14:56:23.697 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 6/50, Train Loss: 0.025881486438255715, Val Loss: 0.028207337131371368 +2024-07-19 14:56:24.542 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 7/50, Train Loss: 0.025950897331503065, Val Loss: 0.028037031885941286 +2024-07-19 14:56:25.367 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 8/50, Train Loss: 0.026161291662112368, Val Loss: 0.029008142222222442 +2024-07-19 14:56:26.202 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 9/50, Train Loss: 0.02590150290915927, Val Loss: 0.028260596876812948 +2024-07-19 14:56:27.054 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 10/50, Train Loss: 0.025820778038066167, Val Loss: 0.027823169036088762 +2024-07-19 14:56:27.895 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 11/50, Train Loss: 0.02582659170666075, Val Loss: 0.02733207156730665 +2024-07-19 14:56:28.738 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 12/50, Train Loss: 0.025757598486002328, Val Loss: 0.027676698248330002 +2024-07-19 14:56:29.572 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 13/50, Train Loss: 0.025695684785535047, Val Loss: 0.027519650606287492 +2024-07-19 14:56:30.408 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 14/50, Train Loss: 0.02578713372349739, Val Loss: 0.027730149493829626 +2024-07-19 14:56:31.263 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 15/50, Train Loss: 0.02589557254891638, Val Loss: 0.027531132001329114 +2024-07-19 14:56:32.106 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 16/50, Train Loss: 0.025790297257417178, Val Loss: 0.027613893126112385 +2024-07-19 14:56:32.941 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 17/50, Train Loss: 0.025689932778682353, Val Loss: 0.02763699188929152 +2024-07-19 14:56:33.773 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 18/50, Train Loss: 0.025722068319977313, Val Loss: 0.028131911707286898 +2024-07-19 14:56:34.610 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 19/50, Train Loss: 0.025738957000302744, Val Loss: 0.02828745314901745 +2024-07-19 14:56:35.443 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 20/50, Train Loss: 0.0256473823133242, Val Loss: 0.027018250243083852 +2024-07-19 14:56:36.284 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 21/50, Train Loss: 0.02572441766304629, Val Loss: 0.027546004769769875 +2024-07-19 14:56:37.115 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 22/50, Train Loss: 0.025722391596371002, Val Loss: 0.027996443212032318 +2024-07-19 14:56:37.965 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 23/50, Train Loss: 0.02564610070600123, Val Loss: 0.02756284398807062 +2024-07-19 14:56:38.812 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 24/50, Train Loss: 0.025635666961034576, Val Loss: 0.027836538700235856 +2024-07-19 14:56:39.696 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 25/50, Train Loss: 0.025593872228125623, Val Loss: 0.027457547223044408 +2024-07-19 14:56:40.513 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 26/50, Train Loss: 0.025670238489100893, Val Loss: 0.02794723429188535 +2024-07-19 14:56:41.339 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 27/50, Train Loss: 0.02561525485202015, Val Loss: 0.02722470323882393 +2024-07-19 14:56:42.143 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 28/50, Train Loss: 0.02538210659154824, Val Loss: 0.027136839674534025 +2024-07-19 14:56:42.932 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 29/50, Train Loss: 0.025560421203928336, Val Loss: 0.02752773931904419 +2024-07-19 14:56:43.725 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 30/50, Train Loss: 0.025475701987538693, Val Loss: 0.02745986359848364 +2024-07-19 14:56:44.528 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 31/50, Train Loss: 0.025596583563998177, Val Loss: 0.028904268367064966 +2024-07-19 14:56:45.327 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 32/50, Train Loss: 0.025373543106060433, Val Loss: 0.02716210761384384 +2024-07-19 14:56:46.128 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 33/50, Train Loss: 0.02552218745964078, Val Loss: 0.02747617709777645 +2024-07-19 14:56:46.931 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 34/50, Train Loss: 0.025299538177653, Val Loss: 0.027309661101851915 +2024-07-19 14:56:47.736 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 35/50, Train Loss: 0.025375809622826158, Val Loss: 0.027331299878455496 +2024-07-19 14:56:48.533 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 36/50, Train Loss: 0.025339136145763344, Val Loss: 0.028874377266982117 +2024-07-19 14:56:49.339 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 37/50, Train Loss: 0.02538473321800376, Val Loss: 0.028033967004031747 +2024-07-19 14:56:50.173 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 38/50, Train Loss: 0.02523264148692181, Val Loss: 0.027172616833971965 +2024-07-19 14:56:50.974 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 39/50, Train Loss: 0.02526135115812604, Val Loss: 0.02968959240997965 +2024-07-19 14:56:51.788 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 40/50, Train Loss: 0.025355544412037828, Val Loss: 0.027788555048204756 +2024-07-19 14:56:52.594 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 41/50, Train Loss: 0.02521591376165276, Val Loss: 0.028212614810547314 +2024-07-19 14:56:53.392 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 42/50, Train Loss: 0.02518184440578897, Val Loss: 0.028009698952774744 +2024-07-19 14:56:54.196 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 43/50, Train Loss: 0.025227359905429594, Val Loss: 0.02727566531079041 +2024-07-19 14:56:54.999 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 44/50, Train Loss: 0.025238742985363518, Val Loss: 0.02699819317943341 +2024-07-19 14:56:55.801 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 45/50, Train Loss: 0.025177854829682753, Val Loss: 0.027554945592340584 +2024-07-19 14:56:56.617 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 46/50, Train Loss: 0.025157808725322996, Val Loss: 0.02776139649889759 +2024-07-19 14:56:57.414 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 47/50, Train Loss: 0.025127947376529267, Val Loss: 0.027541116635138925 +2024-07-19 14:56:58.260 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 48/50, Train Loss: 0.02508933388802049, Val Loss: 0.026981024197428614 +2024-07-19 14:56:59.178 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 49/50, Train Loss: 0.024949027921308528, Val Loss: 0.02757847638851082 +2024-07-19 14:57:00.024 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Epoch 50/50, Train Loss: 0.025042468380019233, Val Loss: 0.027267007937503827 +2024-07-19 14:57:00.024 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Fold 4, MAPE: 5.88% +2024-07-19 14:57:00.132 [17/cross_validate_train/201 (pid 8433)] INFO:__main__:Training image saved at metaflow_models//bgd_education_25001_50000_LSTM//train_f4_bgd_education_25001_50000_LSTM.png +2024-07-19 14:57:04.554 [17/cross_validate_train/201 (pid 8433)] Task finished successfully. +2024-07-19 14:57:04.587 [17/model_scores/202 (pid 8974)] Task is starting. +2024-07-19 14:57:06.103 [17/model_scores/202 (pid 8974)] INFO:__main__:Average Train Loss across all folds: 0.02956639404038162 +2024-07-19 14:57:10.036 [17/model_scores/202 (pid 8974)] INFO:__main__:Average Validation Loss across all folds: 0.035371405923286005 +2024-07-19 14:57:10.036 [17/model_scores/202 (pid 8974)] INFO:__main__:Average MAPE across all folds: 6.38% +2024-07-19 14:57:10.037 [17/model_scores/202 (pid 8974)] Task finished successfully. +2024-07-19 14:57:10.067 [17/validate_model/203 (pid 9000)] Task is starting. +2024-07-19 14:57:11.568 [17/validate_model/203 (pid 9000)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:57:11.671 [17/validate_model/203 (pid 9000)] INFO:__main__:Test Set MAPE: 5.89% +2024-07-19 14:57:12.058 [17/validate_model/203 (pid 9000)] INFO:__main__:Test image saved at metaflow_models//bgd_education_25001_50000_LSTM//test_bgd_education_25001_50000_LSTM.png +2024-07-19 14:57:12.490 [17/validate_model/203 (pid 9000)] Task finished successfully. +2024-07-19 14:57:12.526 [17/log_model/204 (pid 9018)] Task is starting. +2024-07-19 14:57:14.018 [17/log_model/204 (pid 9018)] INFO:__main__:Logging model bgd_education_25001_50000_LSTM +2024-07-19 14:57:14.019 [17/log_model/204 (pid 9018)] INFO:__main__:Model logged at metaflow_models//bgd_education_25001_50000_LSTM//bgd_education_25001_50000_LSTM.pth +2024-07-19 14:57:17.913 [17/log_model/204 (pid 9018)] Task finished successfully. +2024-07-19 14:57:17.943 [17/end/205 (pid 9042)] Task is starting. +2024-07-19 14:57:19.423 [17/end/205 (pid 9042)] INFO:__main__:Pipeline end. +2024-07-19 14:57:19.752 [17/end/205 (pid 9042)] Task finished successfully. +2024-07-19 14:57:19.752 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/scaler_bgd_education_25001_50000_LSTM.pkl b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/scaler_bgd_education_25001_50000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..52b2bdda99bdaed33c90abc9c62a1f450d9eb241 --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/scaler_bgd_education_25001_50000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a24477824923a34abfef8f1f70b4dd448d586853c2e12c207a147cbe71a1bc2c +size 557 diff --git a/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/test_bgd_education_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/test_bgd_education_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..f7ec85a4103db359a0d793ef5e0512f780535310 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/test_bgd_education_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f0_bgd_education_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f0_bgd_education_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..09d4422e9afcc20f7181261afd0b772f1fe995f9 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f0_bgd_education_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f1_bgd_education_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f1_bgd_education_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..9ee063a542c91f3a1b50c8e194684017861ee990 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f1_bgd_education_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f2_bgd_education_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f2_bgd_education_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..c7c2475b3bcc03d53ecaf1e1039ecd9b9f1c0657 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f2_bgd_education_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f3_bgd_education_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f3_bgd_education_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..1037e19ef50be49b55d447f7efc8e63064e14448 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f3_bgd_education_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f4_bgd_education_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f4_bgd_education_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..6d6426bef978040aa18b7e7a095315b22439f84b Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_25001_50000_LSTM/train_f4_bgd_education_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/bgd_education_50001_100000_LSTM.pth b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/bgd_education_50001_100000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..6b411d429026c8701d99faee77993fb69e3538b3 --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/bgd_education_50001_100000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48f5a00d7a5ce36ea5a3089887e4d5d839e599b05dcb81207b0dc67786ffbb7 +size 46776 diff --git a/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/output.txt b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..94bb5ab75394c7deb3c666402c09ad773caaab47 --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/output.txt @@ -0,0 +1,778 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:39:02.697 Workflow starting (run-id 12): +2024-07-19 14:39:02.768 [12/start/123 (pid 4054)] Task is starting. +2024-07-19 14:39:04.201 [12/start/123 (pid 4054)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:39:04.499 [12/start/123 (pid 4054)] Task finished successfully. +2024-07-19 14:39:04.529 [12/ingest/124 (pid 4066)] Task is starting. +2024-07-19 14:39:06.029 [12/ingest/124 (pid 4066)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:39:06.061 [12/ingest/124 (pid 4066)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:39:10.087 [12/ingest/124 (pid 4066)] Task finished successfully. +2024-07-19 14:39:10.120 [12/pick_2017_data/125 (pid 4113)] Task is starting. +2024-07-19 14:39:11.639 [12/pick_2017_data/125 (pid 4113)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:39:11.997 [12/pick_2017_data/125 (pid 4113)] Task finished successfully. +2024-07-19 14:39:12.027 [12/fill_missing_data/126 (pid 4124)] Task is starting. +2024-07-19 14:39:13.499 [12/fill_missing_data/126 (pid 4124)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:39:13.513 [12/fill_missing_data/126 (pid 4124)] INFO:__main__:NaN counts per column: +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] INFO:__main__:Panther_education_Teofila 11 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Annetta 10 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Ivan 12 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Neal 10 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Enriqueta 41 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Shelton 12 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Aurora 10 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Emily 12 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Zelda 12 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Karri 333 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Robin_education_Lashandra 0 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Robin_education_Terrance 0 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Robin_education_Margarito 0 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Robin_education_Kristopher 0 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Fox_education_Jaclyn 13 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Rat_education_Penny 8760 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Rat_education_Calvin 26 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Rat_education_Jacob 50 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Rat_education_Rogelio 50 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Rat_education_Kristie 8760 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Rat_education_Cinthia 5531 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Bear_education_Nanette 38 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Bear_education_Pattie 42 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Bear_education_Leonel 1 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Cockatoo_education_Nelda 113 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Cockatoo_education_Julio 113 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] dtype: int64 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] --- Logging error --- +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] Traceback (most recent call last): +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] msg = self.format(record) +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] return fmt.format(record) +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] record.message = record.getMessage() +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] msg = msg % self.args +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] TypeError: not all arguments converted during string formatting +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] Call stack: +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] BGD_LinearFlow() +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] cli.main(self) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] return func(*args, **kwargs) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] return self.main(*args, **kwargs) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] rv = self.invoke(ctx) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] return callback(*args, **kwargs) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] task.run_step( +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] self._exec_step_function(step_func) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] step_function() +2024-07-19 14:39:25.771 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:39:25.771 [12/fill_missing_data/126 (pid 4124)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:39:25.771 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:39:25.771 [12/fill_missing_data/126 (pid 4124)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:39:25.771 [12/fill_missing_data/126 (pid 4124)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:39:25.771 [12/fill_missing_data/126 (pid 4124)] Arguments: (23960,) +2024-07-19 14:39:25.771 [12/fill_missing_data/126 (pid 4124)] Task finished successfully. +2024-07-19 14:39:25.802 [12/find_median/127 (pid 4200)] Task is starting. +2024-07-19 14:39:27.323 [12/find_median/127 (pid 4200)] INFO:__main__:Computing and using median.. +2024-07-19 14:39:27.879 [12/find_median/127 (pid 4200)] Task finished successfully. +2024-07-19 14:39:27.908 [12/aggregate_data/128 (pid 4217)] Task is starting. +2024-07-19 14:39:29.362 [12/aggregate_data/128 (pid 4217)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:39:33.222 [12/aggregate_data/128 (pid 4217)] Task finished successfully. +2024-07-19 14:39:33.252 [12/split_data/129 (pid 4252)] Task is starting. +2024-07-19 14:39:34.711 [12/split_data/129 (pid 4252)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:39:38.542 [12/split_data/129 (pid 4252)] Task finished successfully. +2024-07-19 14:39:38.574 [12/make_x_y/130 (pid 4296)] Task is starting. +2024-07-19 14:39:40.435 [12/make_x_y/130 (pid 4296)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:39:40.761 [12/make_x_y/130 (pid 4296)] Shape of y_train: (6978, 1) +2024-07-19 14:39:40.761 [12/make_x_y/130 (pid 4296)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:39:40.761 [12/make_x_y/130 (pid 4296)] Shape of y_test: (1722, 1) +2024-07-19 14:39:40.762 [12/make_x_y/130 (pid 4296)] Task finished successfully. +2024-07-19 14:39:40.787 [12/cross_validate_train/131 (pid 4307)] Task is starting. +2024-07-19 14:39:42.255 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Creating bgd_education_50001_100000_LSTM +2024-07-19 14:39:42.255 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Performing cross validation.. +2024-07-19 14:39:42.992 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 1/50, Train Loss: 0.2850223104091915, Val Loss: 0.15468404462208618 +2024-07-19 14:39:43.186 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 2/50, Train Loss: 0.16872507333755493, Val Loss: 0.14755665067885373 +2024-07-19 14:39:43.381 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 3/50, Train Loss: 0.15903342595776995, Val Loss: 0.1384978916596722 +2024-07-19 14:39:43.577 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 4/50, Train Loss: 0.14400170370936394, Val Loss: 0.1207879662916467 +2024-07-19 14:39:43.775 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 5/50, Train Loss: 0.12459759857203509, Val Loss: 0.09098898830848771 +2024-07-19 14:39:43.976 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 6/50, Train Loss: 0.10662660596741212, Val Loss: 0.08505964520815257 +2024-07-19 14:39:44.177 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 7/50, Train Loss: 0.09913271655504768, Val Loss: 0.08207924875455934 +2024-07-19 14:39:44.380 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 8/50, Train Loss: 0.0939679447863553, Val Loss: 0.0770931018365396 +2024-07-19 14:39:44.583 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 9/50, Train Loss: 0.08959214097341976, Val Loss: 0.07283735013491399 +2024-07-19 14:39:44.787 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 10/50, Train Loss: 0.08473402583921277, Val Loss: 0.0686989426612854 +2024-07-19 14:39:44.992 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 11/50, Train Loss: 0.08230556940307489, Val Loss: 0.06761342216585134 +2024-07-19 14:39:45.196 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 12/50, Train Loss: 0.07686905401784021, Val Loss: 0.06428943745590546 +2024-07-19 14:39:45.400 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 13/50, Train Loss: 0.07164572773350252, Val Loss: 0.061131121439708246 +2024-07-19 14:39:45.605 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 14/50, Train Loss: 0.06854941414014713, Val Loss: 0.05981969108452668 +2024-07-19 14:39:45.813 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 15/50, Train Loss: 0.06693346848761714, Val Loss: 0.058588336549095205 +2024-07-19 14:39:46.020 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 16/50, Train Loss: 0.06505562808062579, Val Loss: 0.05733580424173458 +2024-07-19 14:39:46.235 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 17/50, Train Loss: 0.06232279901568954, Val Loss: 0.05653942134734746 +2024-07-19 14:39:46.446 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 18/50, Train Loss: 0.06106718418163222, Val Loss: 0.0553290661726449 +2024-07-19 14:39:46.654 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 19/50, Train Loss: 0.05958450897722631, Val Loss: 0.054826425539480673 +2024-07-19 14:39:46.862 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 20/50, Train Loss: 0.05876876544710752, Val Loss: 0.054020915683862324 +2024-07-19 14:39:47.069 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 21/50, Train Loss: 0.05802183880193813, Val Loss: 0.05340175048725025 +2024-07-19 14:39:47.279 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 22/50, Train Loss: 0.057483518345130456, Val Loss: 0.052228268940706514 +2024-07-19 14:39:47.494 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 23/50, Train Loss: 0.05709782615303993, Val Loss: 0.052041062028021425 +2024-07-19 14:39:47.701 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 24/50, Train Loss: 0.05625700004197456, Val Loss: 0.05106918876235549 +2024-07-19 14:39:47.908 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 25/50, Train Loss: 0.05608342436922563, Val Loss: 0.05069018563104642 +2024-07-19 14:39:48.114 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 26/50, Train Loss: 0.05499607415215389, Val Loss: 0.0501054272659727 +2024-07-19 14:39:48.329 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 27/50, Train Loss: 0.056061126996536516, Val Loss: 0.05075439438223839 +2024-07-19 14:39:48.536 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 28/50, Train Loss: 0.0557386408987883, Val Loss: 0.05314188400233114 +2024-07-19 14:39:48.745 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 29/50, Train Loss: 0.05735199984062363, Val Loss: 0.05610826369878408 +2024-07-19 14:39:48.965 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 30/50, Train Loss: 0.05808619158090772, Val Loss: 0.05159418657422066 +2024-07-19 14:39:49.174 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 31/50, Train Loss: 0.05580685202133011, Val Loss: 0.05435349772105346 +2024-07-19 14:39:49.387 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 32/50, Train Loss: 0.056234620612215354, Val Loss: 0.05105172288981644 +2024-07-19 14:39:49.604 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 33/50, Train Loss: 0.05493177634638709, Val Loss: 0.0521981086883996 +2024-07-19 14:39:49.811 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 34/50, Train Loss: 0.0533360196529208, Val Loss: 0.049535124285801035 +2024-07-19 14:39:50.019 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 35/50, Train Loss: 0.05279064359697136, Val Loss: 0.05043893559156237 +2024-07-19 14:39:50.226 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 36/50, Train Loss: 0.052488695880448494, Val Loss: 0.04821361369780592 +2024-07-19 14:39:50.439 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 37/50, Train Loss: 0.05195822617089426, Val Loss: 0.04961292928940541 +2024-07-19 14:39:50.648 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 38/50, Train Loss: 0.05196576102359875, Val Loss: 0.048136241935394904 +2024-07-19 14:39:50.862 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 39/50, Train Loss: 0.051331216821799405, Val Loss: 0.048374126388414485 +2024-07-19 14:39:51.072 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 40/50, Train Loss: 0.05139743642428437, Val Loss: 0.04757651948445552 +2024-07-19 14:39:51.292 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 41/50, Train Loss: 0.05093286548917358, Val Loss: 0.047920243965612876 +2024-07-19 14:39:51.499 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 42/50, Train Loss: 0.05075657830850498, Val Loss: 0.04680773213103011 +2024-07-19 14:39:51.711 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 43/50, Train Loss: 0.050797991907677136, Val Loss: 0.04711088397212931 +2024-07-19 14:39:51.922 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 44/50, Train Loss: 0.05004948130934625, Val Loss: 0.046413029267175776 +2024-07-19 14:39:52.132 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 45/50, Train Loss: 0.05010368493763176, Val Loss: 0.04668378940707928 +2024-07-19 14:39:52.343 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 46/50, Train Loss: 0.049928566390598145, Val Loss: 0.04681369229345708 +2024-07-19 14:39:52.553 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 47/50, Train Loss: 0.049610088906578115, Val Loss: 0.046889480304073645 +2024-07-19 14:39:52.766 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 48/50, Train Loss: 0.04881093711466403, Val Loss: 0.04522017208305565 +2024-07-19 14:39:52.975 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 49/50, Train Loss: 0.04768343224517397, Val Loss: 0.045070938715660896 +2024-07-19 14:39:53.187 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 50/50, Train Loss: 0.04811886154316567, Val Loss: 0.04564178971624052 +2024-07-19 14:39:53.187 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Fold 0, MAPE: 4.59% +2024-07-19 14:39:53.560 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Training image saved at metaflow_models//bgd_education_50001_100000_LSTM//train_f0_bgd_education_50001_100000_LSTM.png +2024-07-19 14:39:54.025 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 1/50, Train Loss: 0.047302295645214106, Val Loss: 0.04199043751971142 +2024-07-19 14:39:54.378 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 2/50, Train Loss: 0.049362006252759126, Val Loss: 0.03979058422752329 +2024-07-19 14:39:54.733 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 3/50, Train Loss: 0.047681672396521046, Val Loss: 0.04111896128066488 +2024-07-19 14:39:55.125 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 4/50, Train Loss: 0.047196958265075944, Val Loss: 0.040692636088745016 +2024-07-19 14:39:55.479 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 5/50, Train Loss: 0.04629850290613632, Val Loss: 0.04124125002606495 +2024-07-19 14:39:55.832 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 6/50, Train Loss: 0.04649091907457946, Val Loss: 0.040188557795576146 +2024-07-19 14:39:56.188 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 7/50, Train Loss: 0.045798339128290136, Val Loss: 0.03949444841694187 +2024-07-19 14:39:56.545 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 8/50, Train Loss: 0.04500384177145076, Val Loss: 0.04008665177467707 +2024-07-19 14:39:56.900 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 9/50, Train Loss: 0.04500120306668216, Val Loss: 0.03908477054053062 +2024-07-19 14:39:57.261 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 10/50, Train Loss: 0.04446797277012916, Val Loss: 0.0391303954293599 +2024-07-19 14:39:57.616 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 11/50, Train Loss: 0.044094981855317336, Val Loss: 0.03889903833938611 +2024-07-19 14:39:57.971 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 12/50, Train Loss: 0.04454862122258095, Val Loss: 0.03761708832069023 +2024-07-19 14:39:58.333 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 13/50, Train Loss: 0.043415811193520074, Val Loss: 0.038844228042541326 +2024-07-19 14:39:58.687 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 14/50, Train Loss: 0.04364464018646985, Val Loss: 0.0390654248563019 +2024-07-19 14:39:59.041 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 15/50, Train Loss: 0.04355066323219097, Val Loss: 0.038712205214274896 +2024-07-19 14:39:59.396 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 16/50, Train Loss: 0.04303844209301145, Val Loss: 0.03904463879361346 +2024-07-19 14:39:59.753 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 17/50, Train Loss: 0.04296303609360571, Val Loss: 0.03959704205595158 +2024-07-19 14:40:00.109 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 18/50, Train Loss: 0.04331817661654459, Val Loss: 0.03969059607668503 +2024-07-19 14:40:00.466 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 19/50, Train Loss: 0.042499179250165206, Val Loss: 0.03889861113920405 +2024-07-19 14:40:00.830 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 20/50, Train Loss: 0.042653978534349025, Val Loss: 0.04053336633621035 +2024-07-19 14:40:01.187 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 21/50, Train Loss: 0.04311052653683375, Val Loss: 0.03876248842759712 +2024-07-19 14:40:01.544 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 22/50, Train Loss: 0.041988203225478735, Val Loss: 0.039306730585726535 +2024-07-19 14:40:01.899 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 23/50, Train Loss: 0.042205050255950186, Val Loss: 0.04039511195308453 +2024-07-19 14:40:02.258 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 24/50, Train Loss: 0.04243885519059554, Val Loss: 0.03874720008792104 +2024-07-19 14:40:02.615 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 25/50, Train Loss: 0.0417501323231279, Val Loss: 0.03939432479642533 +2024-07-19 14:40:02.972 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 26/50, Train Loss: 0.04203949440015505, Val Loss: 0.03815508779843111 +2024-07-19 14:40:03.334 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 27/50, Train Loss: 0.04111468873611868, Val Loss: 0.03801567761881931 +2024-07-19 14:40:03.691 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 28/50, Train Loss: 0.04128322574271731, Val Loss: 0.0384024860891136 +2024-07-19 14:40:04.048 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 29/50, Train Loss: 0.04137866824150902, Val Loss: 0.03756078221910709 +2024-07-19 14:40:04.405 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 30/50, Train Loss: 0.04107322339733986, Val Loss: 0.039013634158952815 +2024-07-19 14:40:04.762 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 31/50, Train Loss: 0.04068674093546116, Val Loss: 0.038827095935876306 +2024-07-19 14:40:05.120 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 32/50, Train Loss: 0.04012732840564153, Val Loss: 0.0389251900283066 +2024-07-19 14:40:05.479 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 33/50, Train Loss: 0.040233933813359636, Val Loss: 0.03883506755369741 +2024-07-19 14:40:05.839 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 34/50, Train Loss: 0.039885480084443745, Val Loss: 0.037426827777479146 +2024-07-19 14:40:06.202 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 35/50, Train Loss: 0.03923756991551347, Val Loss: 0.03832552949520382 +2024-07-19 14:40:06.563 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 36/50, Train Loss: 0.039025852022922206, Val Loss: 0.03755843221537165 +2024-07-19 14:40:06.922 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 37/50, Train Loss: 0.03889756807929849, Val Loss: 0.037357640578537375 +2024-07-19 14:40:07.280 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 38/50, Train Loss: 0.038324727868176485, Val Loss: 0.03802109227792637 +2024-07-19 14:40:07.639 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 39/50, Train Loss: 0.03864325116044038, Val Loss: 0.0379747790662018 +2024-07-19 14:40:07.997 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 40/50, Train Loss: 0.03791907835394552, Val Loss: 0.03822344103576364 +2024-07-19 14:40:08.365 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 41/50, Train Loss: 0.037701947971770206, Val Loss: 0.03751303925103432 +2024-07-19 14:40:08.726 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 42/50, Train Loss: 0.03772127544124649, Val Loss: 0.037682116535064335 +2024-07-19 14:40:09.089 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 43/50, Train Loss: 0.03728724888538661, Val Loss: 0.03742261925661886 +2024-07-19 14:40:09.453 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 44/50, Train Loss: 0.0374512334341464, Val Loss: 0.03736031040347911 +2024-07-19 14:40:09.841 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 45/50, Train Loss: 0.03756423912023845, Val Loss: 0.03769922910912617 +2024-07-19 14:40:10.211 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 46/50, Train Loss: 0.03656000284197396, Val Loss: 0.03745830778938693 +2024-07-19 14:40:10.579 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 47/50, Train Loss: 0.036823740280041956, Val Loss: 0.0378037999207909 +2024-07-19 14:40:10.971 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 48/50, Train Loss: 0.03720934995233196, Val Loss: 0.03816960465062309 +2024-07-19 14:40:11.339 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 49/50, Train Loss: 0.0367745115128282, Val Loss: 0.037781810639677824 +2024-07-19 14:40:11.705 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 50/50, Train Loss: 0.036502346345414854, Val Loss: 0.03699113821258416 +2024-07-19 14:40:11.706 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Fold 1, MAPE: 4.18% +2024-07-19 14:40:11.815 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Training image saved at metaflow_models//bgd_education_50001_100000_LSTM//train_f1_bgd_education_50001_100000_LSTM.png +2024-07-19 14:40:12.343 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 1/50, Train Loss: 0.03361442449756644, Val Loss: 0.03647007898905793 +2024-07-19 14:40:12.864 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 2/50, Train Loss: 0.033963875320147385, Val Loss: 0.03659768483123264 +2024-07-19 14:40:13.422 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 3/50, Train Loss: 0.034209226207299666, Val Loss: 0.03553311848962629 +2024-07-19 14:40:13.932 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 4/50, Train Loss: 0.03329934007064863, Val Loss: 0.03551754300054666 +2024-07-19 14:40:14.443 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 5/50, Train Loss: 0.033479183505881915, Val Loss: 0.0356774280300817 +2024-07-19 14:40:14.951 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 6/50, Train Loss: 0.03271611019630324, Val Loss: 0.03437266362881338 +2024-07-19 14:40:15.459 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 7/50, Train Loss: 0.03300255521793257, Val Loss: 0.03425698692130076 +2024-07-19 14:40:15.970 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 8/50, Train Loss: 0.03241242432797497, Val Loss: 0.035116665065288544 +2024-07-19 14:40:16.480 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 9/50, Train Loss: 0.033069770156659864, Val Loss: 0.03539621860191629 +2024-07-19 14:40:16.989 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 10/50, Train Loss: 0.032746806943958456, Val Loss: 0.034523295389639365 +2024-07-19 14:40:17.499 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 11/50, Train Loss: 0.03206111363727938, Val Loss: 0.03459458898853611 +2024-07-19 14:40:18.009 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 12/50, Train Loss: 0.03218906973911957, Val Loss: 0.036375796321678804 +2024-07-19 14:40:18.526 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 13/50, Train Loss: 0.03261097588322379, Val Loss: 0.03475069002927961 +2024-07-19 14:40:19.046 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 14/50, Train Loss: 0.03206584167412736, Val Loss: 0.034719463739846204 +2024-07-19 14:40:19.568 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 15/50, Train Loss: 0.031838865781372246, Val Loss: 0.034641745072361584 +2024-07-19 14:40:20.082 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 16/50, Train Loss: 0.03213469098237428, Val Loss: 0.03434439104151081 +2024-07-19 14:40:20.597 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 17/50, Train Loss: 0.031762214716185226, Val Loss: 0.03416135640361825 +2024-07-19 14:40:21.126 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 18/50, Train Loss: 0.03183506447821856, Val Loss: 0.03477410962050025 +2024-07-19 14:40:21.638 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 19/50, Train Loss: 0.031629419292915954, Val Loss: 0.034678790265241184 +2024-07-19 14:40:22.150 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 20/50, Train Loss: 0.03134343974630941, Val Loss: 0.034586170235195675 +2024-07-19 14:40:22.664 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 21/50, Train Loss: 0.0313516738909212, Val Loss: 0.03486314597162041 +2024-07-19 14:40:23.181 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 22/50, Train Loss: 0.031239049797031012, Val Loss: 0.0344475882782324 +2024-07-19 14:40:23.695 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 23/50, Train Loss: 0.03107183323326436, Val Loss: 0.03445386403315776 +2024-07-19 14:40:24.210 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 24/50, Train Loss: 0.03130063617771322, Val Loss: 0.03485686201098803 +2024-07-19 14:40:24.725 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 25/50, Train Loss: 0.03109255131672729, Val Loss: 0.034751519711839186 +2024-07-19 14:40:25.273 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 26/50, Train Loss: 0.03127149986949834, Val Loss: 0.03497422551987944 +2024-07-19 14:40:25.788 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 27/50, Train Loss: 0.031496867656030436, Val Loss: 0.035024823771940695 +2024-07-19 14:40:26.299 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 28/50, Train Loss: 0.03131858046081933, Val Loss: 0.03423873320020534 +2024-07-19 14:40:26.816 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 29/50, Train Loss: 0.03060285369442268, Val Loss: 0.03426395930551194 +2024-07-19 14:40:27.328 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 30/50, Train Loss: 0.030855902656912803, Val Loss: 0.03559582695566319 +2024-07-19 14:40:27.840 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 31/50, Train Loss: 0.030887825922532516, Val Loss: 0.03445777020140274 +2024-07-19 14:40:28.363 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 32/50, Train Loss: 0.030286280099641193, Val Loss: 0.034941038569888554 +2024-07-19 14:40:28.882 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 33/50, Train Loss: 0.030391857586801053, Val Loss: 0.03542176764961835 +2024-07-19 14:40:29.397 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 34/50, Train Loss: 0.03050884377549995, Val Loss: 0.03569539188331849 +2024-07-19 14:40:29.914 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 35/50, Train Loss: 0.030717389691959727, Val Loss: 0.03488872003917758 +2024-07-19 14:40:30.431 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 36/50, Train Loss: 0.030980362065813758, Val Loss: 0.03382692249441469 +2024-07-19 14:40:30.960 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 37/50, Train Loss: 0.03177169177003882, Val Loss: 0.03500015565471069 +2024-07-19 14:40:31.476 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 38/50, Train Loss: 0.030937914397906174, Val Loss: 0.03421722498495836 +2024-07-19 14:40:32.004 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 39/50, Train Loss: 0.030282534235580402, Val Loss: 0.03457818935449059 +2024-07-19 14:40:32.532 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 40/50, Train Loss: 0.030581420118158512, Val Loss: 0.03464668470661383 +2024-07-19 14:40:33.049 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 41/50, Train Loss: 0.030052217163822868, Val Loss: 0.03544255270547158 +2024-07-19 14:40:33.569 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 42/50, Train Loss: 0.030349731377579948, Val Loss: 0.03524298200736175 +2024-07-19 14:40:34.085 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 43/50, Train Loss: 0.030467309870503164, Val Loss: 0.03387928245639479 +2024-07-19 14:40:34.610 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 44/50, Train Loss: 0.03167487513273955, Val Loss: 0.034869388601667176 +2024-07-19 14:40:35.127 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 45/50, Train Loss: 0.030536032264882867, Val Loss: 0.034109061281826045 +2024-07-19 14:40:35.644 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 46/50, Train Loss: 0.029872294735502115, Val Loss: 0.03363624824261343 +2024-07-19 14:40:36.159 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 47/50, Train Loss: 0.031162995320152154, Val Loss: 0.034911459815260525 +2024-07-19 14:40:36.677 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 48/50, Train Loss: 0.03005609293891625, Val Loss: 0.03537702963158891 +2024-07-19 14:40:37.193 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 49/50, Train Loss: 0.029659306850623002, Val Loss: 0.03385094694189123 +2024-07-19 14:40:37.722 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 50/50, Train Loss: 0.029709143750369548, Val Loss: 0.034957634285092354 +2024-07-19 14:40:37.723 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Fold 2, MAPE: 4.10% +2024-07-19 14:40:37.832 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Training image saved at metaflow_models//bgd_education_50001_100000_LSTM//train_f2_bgd_education_50001_100000_LSTM.png +2024-07-19 14:40:38.505 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 1/50, Train Loss: 0.031714478239723266, Val Loss: 0.0352416891806029 +2024-07-19 14:40:39.171 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 2/50, Train Loss: 0.03168144268430259, Val Loss: 0.034559254912105764 +2024-07-19 14:40:39.848 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 3/50, Train Loss: 0.031188533692429327, Val Loss: 0.03456809245855422 +2024-07-19 14:40:40.508 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 4/50, Train Loss: 0.03132395353168249, Val Loss: 0.033971907470274613 +2024-07-19 14:40:41.184 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 5/50, Train Loss: 0.030842332360781217, Val Loss: 0.03408343818139385 +2024-07-19 14:40:41.845 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 6/50, Train Loss: 0.03084529431103027, Val Loss: 0.03454684305029947 +2024-07-19 14:40:42.508 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 7/50, Train Loss: 0.03094339421758913, Val Loss: 0.03358444017735687 +2024-07-19 14:40:43.169 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 8/50, Train Loss: 0.031006967342675548, Val Loss: 0.033699742442852745 +2024-07-19 14:40:43.835 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 9/50, Train Loss: 0.030695272035488528, Val Loss: 0.034767784429965795 +2024-07-19 14:40:44.495 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 10/50, Train Loss: 0.030683036383292447, Val Loss: 0.034090620943823376 +2024-07-19 14:40:45.154 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 11/50, Train Loss: 0.030668784226354672, Val Loss: 0.034861483434970315 +2024-07-19 14:40:45.813 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 12/50, Train Loss: 0.03083236584414358, Val Loss: 0.03416513827805583 +2024-07-19 14:40:46.475 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 13/50, Train Loss: 0.030793064197346773, Val Loss: 0.03388975016974114 +2024-07-19 14:40:47.135 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 14/50, Train Loss: 0.030534902357891816, Val Loss: 0.03383130252965399 +2024-07-19 14:40:47.794 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 15/50, Train Loss: 0.030389184183249734, Val Loss: 0.03350103842849667 +2024-07-19 14:40:48.460 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 16/50, Train Loss: 0.03051339979092144, Val Loss: 0.032889965720273355 +2024-07-19 14:40:49.133 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 17/50, Train Loss: 0.030366024040706353, Val Loss: 0.03356945575089068 +2024-07-19 14:40:49.802 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 18/50, Train Loss: 0.03013071111620289, Val Loss: 0.033113029709941635 +2024-07-19 14:40:50.465 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 19/50, Train Loss: 0.03023486154485647, Val Loss: 0.03416923242243561 +2024-07-19 14:40:51.156 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 20/50, Train Loss: 0.030380775501364716, Val Loss: 0.03302175315046633 +2024-07-19 14:40:51.821 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 21/50, Train Loss: 0.030007396735353013, Val Loss: 0.03301268851233495 +2024-07-19 14:40:52.483 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 22/50, Train Loss: 0.0299651488176968, Val Loss: 0.033730246730752894 +2024-07-19 14:40:53.149 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 23/50, Train Loss: 0.03013358297056123, Val Loss: 0.033000620786805414 +2024-07-19 14:40:53.836 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 24/50, Train Loss: 0.029983725181895578, Val Loss: 0.03294487438491873 +2024-07-19 14:40:54.500 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 25/50, Train Loss: 0.02998867794258954, Val Loss: 0.03403710825620471 +2024-07-19 14:40:55.165 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 26/50, Train Loss: 0.030033769137034677, Val Loss: 0.03386915349275679 +2024-07-19 14:40:55.827 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 27/50, Train Loss: 0.030100154422529755, Val Loss: 0.03410312664267179 +2024-07-19 14:40:56.523 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 28/50, Train Loss: 0.030044794235735722, Val Loss: 0.03294809338812892 +2024-07-19 14:40:57.190 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 29/50, Train Loss: 0.030171722416089824, Val Loss: 0.033321244742822005 +2024-07-19 14:40:57.852 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 30/50, Train Loss: 0.03023084258175876, Val Loss: 0.03334138079269512 +2024-07-19 14:40:58.520 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 31/50, Train Loss: 0.0302897486197826, Val Loss: 0.03308804816490895 +2024-07-19 14:40:59.185 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 32/50, Train Loss: 0.03029872992471473, Val Loss: 0.03309267411964971 +2024-07-19 14:40:59.849 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 33/50, Train Loss: 0.02983922822630569, Val Loss: 0.033087845942055855 +2024-07-19 14:41:00.516 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 34/50, Train Loss: 0.029694228126884322, Val Loss: 0.03244850255951688 +2024-07-19 14:41:01.195 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 35/50, Train Loss: 0.029684534934285568, Val Loss: 0.03280244455546946 +2024-07-19 14:41:01.861 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 36/50, Train Loss: 0.02966438820713187, Val Loss: 0.03283529502113123 +2024-07-19 14:41:02.529 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 37/50, Train Loss: 0.029846148157160576, Val Loss: 0.0326361715088825 +2024-07-19 14:41:03.195 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 38/50, Train Loss: 0.029787162395372782, Val Loss: 0.032691643548172875 +2024-07-19 14:41:03.865 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 39/50, Train Loss: 0.02988602024541326, Val Loss: 0.03294527998848541 +2024-07-19 14:41:04.529 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 40/50, Train Loss: 0.029857643484456898, Val Loss: 0.032895215711480866 +2024-07-19 14:41:05.195 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 41/50, Train Loss: 0.029917359096954945, Val Loss: 0.033596730765861435 +2024-07-19 14:41:05.860 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 42/50, Train Loss: 0.030236697513354966, Val Loss: 0.03367694552887131 +2024-07-19 14:41:06.540 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 43/50, Train Loss: 0.030083383063543332, Val Loss: 0.032240616661068554 +2024-07-19 14:41:07.244 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 44/50, Train Loss: 0.030039682958836425, Val Loss: 0.032941535064900246 +2024-07-19 14:41:07.950 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 45/50, Train Loss: 0.030371362241367772, Val Loss: 0.032219262139217275 +2024-07-19 14:41:08.651 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 46/50, Train Loss: 0.02983069511717313, Val Loss: 0.03198120763172974 +2024-07-19 14:41:09.360 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 47/50, Train Loss: 0.029872267711142153, Val Loss: 0.03275002670046445 +2024-07-19 14:41:10.042 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 48/50, Train Loss: 0.030096674707960593, Val Loss: 0.03245381462211545 +2024-07-19 14:41:10.714 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 49/50, Train Loss: 0.02966067298277192, Val Loss: 0.03251932717457011 +2024-07-19 14:41:11.413 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 50/50, Train Loss: 0.029891694474914302, Val Loss: 0.03314740860180275 +2024-07-19 14:41:11.413 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Fold 3, MAPE: 3.81% +2024-07-19 14:41:11.531 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Training image saved at metaflow_models//bgd_education_50001_100000_LSTM//train_f3_bgd_education_50001_100000_LSTM.png +2024-07-19 14:41:12.370 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 1/50, Train Loss: 0.02993966356574834, Val Loss: 0.02901027155284946 +2024-07-19 14:41:13.214 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 2/50, Train Loss: 0.030013980303000617, Val Loss: 0.028729990275727736 +2024-07-19 14:41:14.060 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 3/50, Train Loss: 0.030130777876455704, Val Loss: 0.02893731405807508 +2024-07-19 14:41:14.927 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 4/50, Train Loss: 0.029797681832460912, Val Loss: 0.029318127781152725 +2024-07-19 14:41:15.793 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 5/50, Train Loss: 0.02997905063023279, Val Loss: 0.028917013793378264 +2024-07-19 14:41:16.660 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 6/50, Train Loss: 0.029855916399385903, Val Loss: 0.029610236552921502 +2024-07-19 14:41:17.537 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 7/50, Train Loss: 0.029796678685470597, Val Loss: 0.029014500260755822 +2024-07-19 14:41:18.410 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 8/50, Train Loss: 0.029753797411263643, Val Loss: 0.0290438198559993 +2024-07-19 14:41:19.297 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 9/50, Train Loss: 0.029949740823972355, Val Loss: 0.02880067574615414 +2024-07-19 14:41:20.177 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 10/50, Train Loss: 0.029535361688461277, Val Loss: 0.02923669947965725 +2024-07-19 14:41:21.069 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 11/50, Train Loss: 0.0296235319513541, Val Loss: 0.02954566664993763 +2024-07-19 14:41:21.950 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 12/50, Train Loss: 0.02971827623608348, Val Loss: 0.028684898908879305 +2024-07-19 14:41:22.825 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 13/50, Train Loss: 0.029823555815760253, Val Loss: 0.028363834311430518 +2024-07-19 14:41:23.837 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 14/50, Train Loss: 0.029747203279000062, Val Loss: 0.029560914716205082 +2024-07-19 14:41:24.658 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 15/50, Train Loss: 0.029399880044326022, Val Loss: 0.02928699507705263 +2024-07-19 14:41:25.476 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 16/50, Train Loss: 0.029467006828021874, Val Loss: 0.029175967229781923 +2024-07-19 14:41:26.311 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 17/50, Train Loss: 0.02965330361173703, Val Loss: 0.029405385054446554 +2024-07-19 14:41:27.173 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 18/50, Train Loss: 0.02956870003797851, Val Loss: 0.028589970759443334 +2024-07-19 14:41:27.990 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 19/50, Train Loss: 0.02970536682591006, Val Loss: 0.028765208515766506 +2024-07-19 14:41:28.819 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 20/50, Train Loss: 0.029465642481387316, Val Loss: 0.02839321653182442 +2024-07-19 14:41:29.650 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 21/50, Train Loss: 0.029523331631015944, Val Loss: 0.028612015919910895 +2024-07-19 14:41:30.477 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 22/50, Train Loss: 0.02951471229175945, Val Loss: 0.029034350822503503 +2024-07-19 14:41:31.309 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 23/50, Train Loss: 0.029632514199385278, Val Loss: 0.029225291583586385 +2024-07-19 14:41:32.125 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 24/50, Train Loss: 0.02956156860422957, Val Loss: 0.028262375728101342 +2024-07-19 14:41:32.947 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 25/50, Train Loss: 0.02959987044252537, Val Loss: 0.028201273113891884 +2024-07-19 14:41:33.771 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 26/50, Train Loss: 0.02928072147603546, Val Loss: 0.028233814883876492 +2024-07-19 14:41:34.587 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 27/50, Train Loss: 0.029230200972121496, Val Loss: 0.028629053887483234 +2024-07-19 14:41:35.411 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 28/50, Train Loss: 0.029374899434764963, Val Loss: 0.02793582604342216 +2024-07-19 14:41:36.230 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 29/50, Train Loss: 0.029346690758817143, Val Loss: 0.02869227427888561 +2024-07-19 14:41:37.048 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 30/50, Train Loss: 0.029288430841496356, Val Loss: 0.028996739133789733 +2024-07-19 14:41:37.866 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 31/50, Train Loss: 0.029331401911574406, Val Loss: 0.028408599312643747 +2024-07-19 14:41:38.689 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 32/50, Train Loss: 0.029349567286752084, Val Loss: 0.028616045928887418 +2024-07-19 14:41:39.510 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 33/50, Train Loss: 0.02931789068280013, Val Loss: 0.028703833200238848 +2024-07-19 14:41:40.330 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 34/50, Train Loss: 0.029218956510853638, Val Loss: 0.02852930486000873 +2024-07-19 14:41:41.187 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 35/50, Train Loss: 0.02913818942321526, Val Loss: 0.028353412761478812 +2024-07-19 14:41:42.003 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 36/50, Train Loss: 0.029173010673660498, Val Loss: 0.028621804170511866 +2024-07-19 14:41:42.822 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 37/50, Train Loss: 0.02928333622045242, Val Loss: 0.02828036661486368 +2024-07-19 14:41:43.665 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 38/50, Train Loss: 0.029260060166592126, Val Loss: 0.027938051149249077 +2024-07-19 14:41:44.513 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 39/50, Train Loss: 0.029178558889735532, Val Loss: 0.02840860580673089 +2024-07-19 14:41:45.360 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 40/50, Train Loss: 0.02901842437971097, Val Loss: 0.02809522658385135 +2024-07-19 14:41:46.195 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 41/50, Train Loss: 0.02900350407523277, Val Loss: 0.028111798990819906 +2024-07-19 14:41:47.016 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 42/50, Train Loss: 0.029044881370942015, Val Loss: 0.028433279360871058 +2024-07-19 14:41:47.841 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 43/50, Train Loss: 0.028978358345249526, Val Loss: 0.028250834527047904 +2024-07-19 14:41:48.668 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 44/50, Train Loss: 0.029080814405620752, Val Loss: 0.028813711543743674 +2024-07-19 14:41:49.505 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 45/50, Train Loss: 0.028732109159886183, Val Loss: 0.028207594126060203 +2024-07-19 14:41:50.338 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 46/50, Train Loss: 0.02901645331223915, Val Loss: 0.02817013260681887 +2024-07-19 14:41:51.186 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 47/50, Train Loss: 0.028591337521652598, Val Loss: 0.028231525390937522 +2024-07-19 14:41:52.012 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 48/50, Train Loss: 0.028692114647928174, Val Loss: 0.028075633620893634 +2024-07-19 14:41:52.842 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 49/50, Train Loss: 0.028604312047648888, Val Loss: 0.028556373675127287 +2024-07-19 14:41:53.703 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 50/50, Train Loss: 0.028685424302878616, Val Loss: 0.02836050485839715 +2024-07-19 14:41:53.703 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Fold 4, MAPE: 3.17% +2024-07-19 14:41:53.814 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Training image saved at metaflow_models//bgd_education_50001_100000_LSTM//train_f4_bgd_education_50001_100000_LSTM.png +2024-07-19 14:41:58.212 [12/cross_validate_train/131 (pid 4307)] Task finished successfully. +2024-07-19 14:41:58.241 [12/model_scores/132 (pid 4940)] Task is starting. +2024-07-19 14:41:59.703 [12/model_scores/132 (pid 4940)] INFO:__main__:Average Train Loss across all folds: 0.0345814940833486 +2024-07-19 14:42:03.626 [12/model_scores/132 (pid 4940)] INFO:__main__:Average Validation Loss across all folds: 0.03581969513482338 +2024-07-19 14:42:03.627 [12/model_scores/132 (pid 4940)] INFO:__main__:Average MAPE across all folds: 3.97% +2024-07-19 14:42:03.627 [12/model_scores/132 (pid 4940)] Task finished successfully. +2024-07-19 14:42:03.655 [12/validate_model/133 (pid 4978)] Task is starting. +2024-07-19 14:42:05.102 [12/validate_model/133 (pid 4978)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:42:05.219 [12/validate_model/133 (pid 4978)] INFO:__main__:Test Set MAPE: 4.08% +2024-07-19 14:42:05.653 [12/validate_model/133 (pid 4978)] INFO:__main__:Test image saved at metaflow_models//bgd_education_50001_100000_LSTM//test_bgd_education_50001_100000_LSTM.png +2024-07-19 14:42:06.070 [12/validate_model/133 (pid 4978)] Task finished successfully. +2024-07-19 14:42:06.098 [12/log_model/134 (pid 4995)] Task is starting. +2024-07-19 14:42:07.547 [12/log_model/134 (pid 4995)] INFO:__main__:Logging model bgd_education_50001_100000_LSTM +2024-07-19 14:42:07.549 [12/log_model/134 (pid 4995)] INFO:__main__:Model logged at metaflow_models//bgd_education_50001_100000_LSTM//bgd_education_50001_100000_LSTM.pth +2024-07-19 14:42:11.496 [12/log_model/134 (pid 4995)] Task finished successfully. +2024-07-19 14:42:11.526 [12/end/135 (pid 5036)] Task is starting. +2024-07-19 14:42:13.004 [12/end/135 (pid 5036)] INFO:__main__:Pipeline end. +2024-07-19 14:42:13.324 [12/end/135 (pid 5036)] Task finished successfully. +2024-07-19 14:42:13.325 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/12') succeeded: +-- stdout -- +2024-07-19 14:39:02.697 Workflow starting (run-id 12): +2024-07-19 14:39:02.768 [12/start/123 (pid 4054)] Task is starting. +2024-07-19 14:39:04.201 [12/start/123 (pid 4054)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:39:04.499 [12/start/123 (pid 4054)] Task finished successfully. +2024-07-19 14:39:04.529 [12/ingest/124 (pid 4066)] Task is starting. +2024-07-19 14:39:06.029 [12/ingest/124 (pid 4066)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:39:06.061 [12/ingest/124 (pid 4066)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:39:10.087 [12/ingest/124 (pid 4066)] Task finished successfully. +2024-07-19 14:39:10.120 [12/pick_2017_data/125 (pid 4113)] Task is starting. +2024-07-19 14:39:11.639 [12/pick_2017_data/125 (pid 4113)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:39:11.997 [12/pick_2017_data/125 (pid 4113)] Task finished successfully. +2024-07-19 14:39:12.027 [12/fill_missing_data/126 (pid 4124)] Task is starting. +2024-07-19 14:39:13.499 [12/fill_missing_data/126 (pid 4124)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:39:13.513 [12/fill_missing_data/126 (pid 4124)] INFO:__main__:NaN counts per column: +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] INFO:__main__:Panther_education_Teofila 11 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Annetta 10 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Ivan 12 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Neal 10 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Enriqueta 41 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Shelton 12 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Aurora 10 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Emily 12 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Zelda 12 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Panther_education_Karri 333 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Robin_education_Lashandra 0 +2024-07-19 14:39:13.514 [12/fill_missing_data/126 (pid 4124)] Robin_education_Terrance 0 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Robin_education_Margarito 0 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Robin_education_Kristopher 0 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Fox_education_Jaclyn 13 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Rat_education_Penny 8760 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Rat_education_Calvin 26 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Rat_education_Jacob 50 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Rat_education_Rogelio 50 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Rat_education_Kristie 8760 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Rat_education_Cinthia 5531 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Bear_education_Nanette 38 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Bear_education_Pattie 42 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Bear_education_Leonel 1 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Cockatoo_education_Nelda 113 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] Cockatoo_education_Julio 113 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] dtype: int64 +2024-07-19 14:39:13.515 [12/fill_missing_data/126 (pid 4124)] --- Logging error --- +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] Traceback (most recent call last): +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] msg = self.format(record) +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] return fmt.format(record) +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] record.message = record.getMessage() +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] msg = msg % self.args +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] TypeError: not all arguments converted during string formatting +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] Call stack: +2024-07-19 14:39:13.517 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] BGD_LinearFlow() +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] cli.main(self) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] return func(*args, **kwargs) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] return self.main(*args, **kwargs) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] rv = self.invoke(ctx) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] return callback(*args, **kwargs) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] task.run_step( +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] self._exec_step_function(step_func) +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:39:25.770 [12/fill_missing_data/126 (pid 4124)] step_function() +2024-07-19 14:39:25.771 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:39:25.771 [12/fill_missing_data/126 (pid 4124)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:39:25.771 [12/fill_missing_data/126 (pid 4124)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:39:25.771 [12/fill_missing_data/126 (pid 4124)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:39:25.771 [12/fill_missing_data/126 (pid 4124)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:39:25.771 [12/fill_missing_data/126 (pid 4124)] Arguments: (23960,) +2024-07-19 14:39:25.771 [12/fill_missing_data/126 (pid 4124)] Task finished successfully. +2024-07-19 14:39:25.802 [12/find_median/127 (pid 4200)] Task is starting. +2024-07-19 14:39:27.323 [12/find_median/127 (pid 4200)] INFO:__main__:Computing and using median.. +2024-07-19 14:39:27.879 [12/find_median/127 (pid 4200)] Task finished successfully. +2024-07-19 14:39:27.908 [12/aggregate_data/128 (pid 4217)] Task is starting. +2024-07-19 14:39:29.362 [12/aggregate_data/128 (pid 4217)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:39:33.222 [12/aggregate_data/128 (pid 4217)] Task finished successfully. +2024-07-19 14:39:33.252 [12/split_data/129 (pid 4252)] Task is starting. +2024-07-19 14:39:34.711 [12/split_data/129 (pid 4252)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:39:38.542 [12/split_data/129 (pid 4252)] Task finished successfully. +2024-07-19 14:39:38.574 [12/make_x_y/130 (pid 4296)] Task is starting. +2024-07-19 14:39:40.435 [12/make_x_y/130 (pid 4296)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:39:40.761 [12/make_x_y/130 (pid 4296)] Shape of y_train: (6978, 1) +2024-07-19 14:39:40.761 [12/make_x_y/130 (pid 4296)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:39:40.761 [12/make_x_y/130 (pid 4296)] Shape of y_test: (1722, 1) +2024-07-19 14:39:40.762 [12/make_x_y/130 (pid 4296)] Task finished successfully. +2024-07-19 14:39:40.787 [12/cross_validate_train/131 (pid 4307)] Task is starting. +2024-07-19 14:39:42.255 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Creating bgd_education_50001_100000_LSTM +2024-07-19 14:39:42.255 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Performing cross validation.. +2024-07-19 14:39:42.992 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 1/50, Train Loss: 0.2850223104091915, Val Loss: 0.15468404462208618 +2024-07-19 14:39:43.186 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 2/50, Train Loss: 0.16872507333755493, Val Loss: 0.14755665067885373 +2024-07-19 14:39:43.381 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 3/50, Train Loss: 0.15903342595776995, Val Loss: 0.1384978916596722 +2024-07-19 14:39:43.577 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 4/50, Train Loss: 0.14400170370936394, Val Loss: 0.1207879662916467 +2024-07-19 14:39:43.775 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 5/50, Train Loss: 0.12459759857203509, Val Loss: 0.09098898830848771 +2024-07-19 14:39:43.976 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 6/50, Train Loss: 0.10662660596741212, Val Loss: 0.08505964520815257 +2024-07-19 14:39:44.177 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 7/50, Train Loss: 0.09913271655504768, Val Loss: 0.08207924875455934 +2024-07-19 14:39:44.380 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 8/50, Train Loss: 0.0939679447863553, Val Loss: 0.0770931018365396 +2024-07-19 14:39:44.583 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 9/50, Train Loss: 0.08959214097341976, Val Loss: 0.07283735013491399 +2024-07-19 14:39:44.787 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 10/50, Train Loss: 0.08473402583921277, Val Loss: 0.0686989426612854 +2024-07-19 14:39:44.992 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 11/50, Train Loss: 0.08230556940307489, Val Loss: 0.06761342216585134 +2024-07-19 14:39:45.196 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 12/50, Train Loss: 0.07686905401784021, Val Loss: 0.06428943745590546 +2024-07-19 14:39:45.400 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 13/50, Train Loss: 0.07164572773350252, Val Loss: 0.061131121439708246 +2024-07-19 14:39:45.605 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 14/50, Train Loss: 0.06854941414014713, Val Loss: 0.05981969108452668 +2024-07-19 14:39:45.813 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 15/50, Train Loss: 0.06693346848761714, Val Loss: 0.058588336549095205 +2024-07-19 14:39:46.020 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 16/50, Train Loss: 0.06505562808062579, Val Loss: 0.05733580424173458 +2024-07-19 14:39:46.235 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 17/50, Train Loss: 0.06232279901568954, Val Loss: 0.05653942134734746 +2024-07-19 14:39:46.446 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 18/50, Train Loss: 0.06106718418163222, Val Loss: 0.0553290661726449 +2024-07-19 14:39:46.654 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 19/50, Train Loss: 0.05958450897722631, Val Loss: 0.054826425539480673 +2024-07-19 14:39:46.862 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 20/50, Train Loss: 0.05876876544710752, Val Loss: 0.054020915683862324 +2024-07-19 14:39:47.069 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 21/50, Train Loss: 0.05802183880193813, Val Loss: 0.05340175048725025 +2024-07-19 14:39:47.279 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 22/50, Train Loss: 0.057483518345130456, Val Loss: 0.052228268940706514 +2024-07-19 14:39:47.494 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 23/50, Train Loss: 0.05709782615303993, Val Loss: 0.052041062028021425 +2024-07-19 14:39:47.701 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 24/50, Train Loss: 0.05625700004197456, Val Loss: 0.05106918876235549 +2024-07-19 14:39:47.908 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 25/50, Train Loss: 0.05608342436922563, Val Loss: 0.05069018563104642 +2024-07-19 14:39:48.114 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 26/50, Train Loss: 0.05499607415215389, Val Loss: 0.0501054272659727 +2024-07-19 14:39:48.329 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 27/50, Train Loss: 0.056061126996536516, Val Loss: 0.05075439438223839 +2024-07-19 14:39:48.536 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 28/50, Train Loss: 0.0557386408987883, Val Loss: 0.05314188400233114 +2024-07-19 14:39:48.745 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 29/50, Train Loss: 0.05735199984062363, Val Loss: 0.05610826369878408 +2024-07-19 14:39:48.965 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 30/50, Train Loss: 0.05808619158090772, Val Loss: 0.05159418657422066 +2024-07-19 14:39:49.174 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 31/50, Train Loss: 0.05580685202133011, Val Loss: 0.05435349772105346 +2024-07-19 14:39:49.387 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 32/50, Train Loss: 0.056234620612215354, Val Loss: 0.05105172288981644 +2024-07-19 14:39:49.604 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 33/50, Train Loss: 0.05493177634638709, Val Loss: 0.0521981086883996 +2024-07-19 14:39:49.811 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 34/50, Train Loss: 0.0533360196529208, Val Loss: 0.049535124285801035 +2024-07-19 14:39:50.019 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 35/50, Train Loss: 0.05279064359697136, Val Loss: 0.05043893559156237 +2024-07-19 14:39:50.226 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 36/50, Train Loss: 0.052488695880448494, Val Loss: 0.04821361369780592 +2024-07-19 14:39:50.439 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 37/50, Train Loss: 0.05195822617089426, Val Loss: 0.04961292928940541 +2024-07-19 14:39:50.648 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 38/50, Train Loss: 0.05196576102359875, Val Loss: 0.048136241935394904 +2024-07-19 14:39:50.862 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 39/50, Train Loss: 0.051331216821799405, Val Loss: 0.048374126388414485 +2024-07-19 14:39:51.072 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 40/50, Train Loss: 0.05139743642428437, Val Loss: 0.04757651948445552 +2024-07-19 14:39:51.292 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 41/50, Train Loss: 0.05093286548917358, Val Loss: 0.047920243965612876 +2024-07-19 14:39:51.499 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 42/50, Train Loss: 0.05075657830850498, Val Loss: 0.04680773213103011 +2024-07-19 14:39:51.711 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 43/50, Train Loss: 0.050797991907677136, Val Loss: 0.04711088397212931 +2024-07-19 14:39:51.922 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 44/50, Train Loss: 0.05004948130934625, Val Loss: 0.046413029267175776 +2024-07-19 14:39:52.132 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 45/50, Train Loss: 0.05010368493763176, Val Loss: 0.04668378940707928 +2024-07-19 14:39:52.343 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 46/50, Train Loss: 0.049928566390598145, Val Loss: 0.04681369229345708 +2024-07-19 14:39:52.553 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 47/50, Train Loss: 0.049610088906578115, Val Loss: 0.046889480304073645 +2024-07-19 14:39:52.766 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 48/50, Train Loss: 0.04881093711466403, Val Loss: 0.04522017208305565 +2024-07-19 14:39:52.975 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 49/50, Train Loss: 0.04768343224517397, Val Loss: 0.045070938715660896 +2024-07-19 14:39:53.187 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 50/50, Train Loss: 0.04811886154316567, Val Loss: 0.04564178971624052 +2024-07-19 14:39:53.187 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Fold 0, MAPE: 4.59% +2024-07-19 14:39:53.560 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Training image saved at metaflow_models//bgd_education_50001_100000_LSTM//train_f0_bgd_education_50001_100000_LSTM.png +2024-07-19 14:39:54.025 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 1/50, Train Loss: 0.047302295645214106, Val Loss: 0.04199043751971142 +2024-07-19 14:39:54.378 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 2/50, Train Loss: 0.049362006252759126, Val Loss: 0.03979058422752329 +2024-07-19 14:39:54.733 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 3/50, Train Loss: 0.047681672396521046, Val Loss: 0.04111896128066488 +2024-07-19 14:39:55.125 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 4/50, Train Loss: 0.047196958265075944, Val Loss: 0.040692636088745016 +2024-07-19 14:39:55.479 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 5/50, Train Loss: 0.04629850290613632, Val Loss: 0.04124125002606495 +2024-07-19 14:39:55.832 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 6/50, Train Loss: 0.04649091907457946, Val Loss: 0.040188557795576146 +2024-07-19 14:39:56.188 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 7/50, Train Loss: 0.045798339128290136, Val Loss: 0.03949444841694187 +2024-07-19 14:39:56.545 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 8/50, Train Loss: 0.04500384177145076, Val Loss: 0.04008665177467707 +2024-07-19 14:39:56.900 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 9/50, Train Loss: 0.04500120306668216, Val Loss: 0.03908477054053062 +2024-07-19 14:39:57.261 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 10/50, Train Loss: 0.04446797277012916, Val Loss: 0.0391303954293599 +2024-07-19 14:39:57.616 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 11/50, Train Loss: 0.044094981855317336, Val Loss: 0.03889903833938611 +2024-07-19 14:39:57.971 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 12/50, Train Loss: 0.04454862122258095, Val Loss: 0.03761708832069023 +2024-07-19 14:39:58.333 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 13/50, Train Loss: 0.043415811193520074, Val Loss: 0.038844228042541326 +2024-07-19 14:39:58.687 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 14/50, Train Loss: 0.04364464018646985, Val Loss: 0.0390654248563019 +2024-07-19 14:39:59.041 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 15/50, Train Loss: 0.04355066323219097, Val Loss: 0.038712205214274896 +2024-07-19 14:39:59.396 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 16/50, Train Loss: 0.04303844209301145, Val Loss: 0.03904463879361346 +2024-07-19 14:39:59.753 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 17/50, Train Loss: 0.04296303609360571, Val Loss: 0.03959704205595158 +2024-07-19 14:40:00.109 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 18/50, Train Loss: 0.04331817661654459, Val Loss: 0.03969059607668503 +2024-07-19 14:40:00.466 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 19/50, Train Loss: 0.042499179250165206, Val Loss: 0.03889861113920405 +2024-07-19 14:40:00.830 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 20/50, Train Loss: 0.042653978534349025, Val Loss: 0.04053336633621035 +2024-07-19 14:40:01.187 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 21/50, Train Loss: 0.04311052653683375, Val Loss: 0.03876248842759712 +2024-07-19 14:40:01.544 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 22/50, Train Loss: 0.041988203225478735, Val Loss: 0.039306730585726535 +2024-07-19 14:40:01.899 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 23/50, Train Loss: 0.042205050255950186, Val Loss: 0.04039511195308453 +2024-07-19 14:40:02.258 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 24/50, Train Loss: 0.04243885519059554, Val Loss: 0.03874720008792104 +2024-07-19 14:40:02.615 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 25/50, Train Loss: 0.0417501323231279, Val Loss: 0.03939432479642533 +2024-07-19 14:40:02.972 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 26/50, Train Loss: 0.04203949440015505, Val Loss: 0.03815508779843111 +2024-07-19 14:40:03.334 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 27/50, Train Loss: 0.04111468873611868, Val Loss: 0.03801567761881931 +2024-07-19 14:40:03.691 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 28/50, Train Loss: 0.04128322574271731, Val Loss: 0.0384024860891136 +2024-07-19 14:40:04.048 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 29/50, Train Loss: 0.04137866824150902, Val Loss: 0.03756078221910709 +2024-07-19 14:40:04.405 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 30/50, Train Loss: 0.04107322339733986, Val Loss: 0.039013634158952815 +2024-07-19 14:40:04.762 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 31/50, Train Loss: 0.04068674093546116, Val Loss: 0.038827095935876306 +2024-07-19 14:40:05.120 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 32/50, Train Loss: 0.04012732840564153, Val Loss: 0.0389251900283066 +2024-07-19 14:40:05.479 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 33/50, Train Loss: 0.040233933813359636, Val Loss: 0.03883506755369741 +2024-07-19 14:40:05.839 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 34/50, Train Loss: 0.039885480084443745, Val Loss: 0.037426827777479146 +2024-07-19 14:40:06.202 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 35/50, Train Loss: 0.03923756991551347, Val Loss: 0.03832552949520382 +2024-07-19 14:40:06.563 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 36/50, Train Loss: 0.039025852022922206, Val Loss: 0.03755843221537165 +2024-07-19 14:40:06.922 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 37/50, Train Loss: 0.03889756807929849, Val Loss: 0.037357640578537375 +2024-07-19 14:40:07.280 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 38/50, Train Loss: 0.038324727868176485, Val Loss: 0.03802109227792637 +2024-07-19 14:40:07.639 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 39/50, Train Loss: 0.03864325116044038, Val Loss: 0.0379747790662018 +2024-07-19 14:40:07.997 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 40/50, Train Loss: 0.03791907835394552, Val Loss: 0.03822344103576364 +2024-07-19 14:40:08.365 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 41/50, Train Loss: 0.037701947971770206, Val Loss: 0.03751303925103432 +2024-07-19 14:40:08.726 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 42/50, Train Loss: 0.03772127544124649, Val Loss: 0.037682116535064335 +2024-07-19 14:40:09.089 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 43/50, Train Loss: 0.03728724888538661, Val Loss: 0.03742261925661886 +2024-07-19 14:40:09.453 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 44/50, Train Loss: 0.0374512334341464, Val Loss: 0.03736031040347911 +2024-07-19 14:40:09.841 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 45/50, Train Loss: 0.03756423912023845, Val Loss: 0.03769922910912617 +2024-07-19 14:40:10.211 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 46/50, Train Loss: 0.03656000284197396, Val Loss: 0.03745830778938693 +2024-07-19 14:40:10.579 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 47/50, Train Loss: 0.036823740280041956, Val Loss: 0.0378037999207909 +2024-07-19 14:40:10.971 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 48/50, Train Loss: 0.03720934995233196, Val Loss: 0.03816960465062309 +2024-07-19 14:40:11.339 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 49/50, Train Loss: 0.0367745115128282, Val Loss: 0.037781810639677824 +2024-07-19 14:40:11.705 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 50/50, Train Loss: 0.036502346345414854, Val Loss: 0.03699113821258416 +2024-07-19 14:40:11.706 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Fold 1, MAPE: 4.18% +2024-07-19 14:40:11.815 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Training image saved at metaflow_models//bgd_education_50001_100000_LSTM//train_f1_bgd_education_50001_100000_LSTM.png +2024-07-19 14:40:12.343 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 1/50, Train Loss: 0.03361442449756644, Val Loss: 0.03647007898905793 +2024-07-19 14:40:12.864 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 2/50, Train Loss: 0.033963875320147385, Val Loss: 0.03659768483123264 +2024-07-19 14:40:13.422 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 3/50, Train Loss: 0.034209226207299666, Val Loss: 0.03553311848962629 +2024-07-19 14:40:13.932 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 4/50, Train Loss: 0.03329934007064863, Val Loss: 0.03551754300054666 +2024-07-19 14:40:14.443 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 5/50, Train Loss: 0.033479183505881915, Val Loss: 0.0356774280300817 +2024-07-19 14:40:14.951 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 6/50, Train Loss: 0.03271611019630324, Val Loss: 0.03437266362881338 +2024-07-19 14:40:15.459 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 7/50, Train Loss: 0.03300255521793257, Val Loss: 0.03425698692130076 +2024-07-19 14:40:15.970 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 8/50, Train Loss: 0.03241242432797497, Val Loss: 0.035116665065288544 +2024-07-19 14:40:16.480 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 9/50, Train Loss: 0.033069770156659864, Val Loss: 0.03539621860191629 +2024-07-19 14:40:16.989 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 10/50, Train Loss: 0.032746806943958456, Val Loss: 0.034523295389639365 +2024-07-19 14:40:17.499 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 11/50, Train Loss: 0.03206111363727938, Val Loss: 0.03459458898853611 +2024-07-19 14:40:18.009 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 12/50, Train Loss: 0.03218906973911957, Val Loss: 0.036375796321678804 +2024-07-19 14:40:18.526 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 13/50, Train Loss: 0.03261097588322379, Val Loss: 0.03475069002927961 +2024-07-19 14:40:19.046 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 14/50, Train Loss: 0.03206584167412736, Val Loss: 0.034719463739846204 +2024-07-19 14:40:19.568 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 15/50, Train Loss: 0.031838865781372246, Val Loss: 0.034641745072361584 +2024-07-19 14:40:20.082 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 16/50, Train Loss: 0.03213469098237428, Val Loss: 0.03434439104151081 +2024-07-19 14:40:20.597 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 17/50, Train Loss: 0.031762214716185226, Val Loss: 0.03416135640361825 +2024-07-19 14:40:21.126 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 18/50, Train Loss: 0.03183506447821856, Val Loss: 0.03477410962050025 +2024-07-19 14:40:21.638 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 19/50, Train Loss: 0.031629419292915954, Val Loss: 0.034678790265241184 +2024-07-19 14:40:22.150 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 20/50, Train Loss: 0.03134343974630941, Val Loss: 0.034586170235195675 +2024-07-19 14:40:22.664 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 21/50, Train Loss: 0.0313516738909212, Val Loss: 0.03486314597162041 +2024-07-19 14:40:23.181 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 22/50, Train Loss: 0.031239049797031012, Val Loss: 0.0344475882782324 +2024-07-19 14:40:23.695 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 23/50, Train Loss: 0.03107183323326436, Val Loss: 0.03445386403315776 +2024-07-19 14:40:24.210 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 24/50, Train Loss: 0.03130063617771322, Val Loss: 0.03485686201098803 +2024-07-19 14:40:24.725 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 25/50, Train Loss: 0.03109255131672729, Val Loss: 0.034751519711839186 +2024-07-19 14:40:25.273 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 26/50, Train Loss: 0.03127149986949834, Val Loss: 0.03497422551987944 +2024-07-19 14:40:25.788 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 27/50, Train Loss: 0.031496867656030436, Val Loss: 0.035024823771940695 +2024-07-19 14:40:26.299 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 28/50, Train Loss: 0.03131858046081933, Val Loss: 0.03423873320020534 +2024-07-19 14:40:26.816 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 29/50, Train Loss: 0.03060285369442268, Val Loss: 0.03426395930551194 +2024-07-19 14:40:27.328 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 30/50, Train Loss: 0.030855902656912803, Val Loss: 0.03559582695566319 +2024-07-19 14:40:27.840 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 31/50, Train Loss: 0.030887825922532516, Val Loss: 0.03445777020140274 +2024-07-19 14:40:28.363 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 32/50, Train Loss: 0.030286280099641193, Val Loss: 0.034941038569888554 +2024-07-19 14:40:28.882 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 33/50, Train Loss: 0.030391857586801053, Val Loss: 0.03542176764961835 +2024-07-19 14:40:29.397 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 34/50, Train Loss: 0.03050884377549995, Val Loss: 0.03569539188331849 +2024-07-19 14:40:29.914 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 35/50, Train Loss: 0.030717389691959727, Val Loss: 0.03488872003917758 +2024-07-19 14:40:30.431 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 36/50, Train Loss: 0.030980362065813758, Val Loss: 0.03382692249441469 +2024-07-19 14:40:30.960 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 37/50, Train Loss: 0.03177169177003882, Val Loss: 0.03500015565471069 +2024-07-19 14:40:31.476 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 38/50, Train Loss: 0.030937914397906174, Val Loss: 0.03421722498495836 +2024-07-19 14:40:32.004 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 39/50, Train Loss: 0.030282534235580402, Val Loss: 0.03457818935449059 +2024-07-19 14:40:32.532 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 40/50, Train Loss: 0.030581420118158512, Val Loss: 0.03464668470661383 +2024-07-19 14:40:33.049 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 41/50, Train Loss: 0.030052217163822868, Val Loss: 0.03544255270547158 +2024-07-19 14:40:33.569 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 42/50, Train Loss: 0.030349731377579948, Val Loss: 0.03524298200736175 +2024-07-19 14:40:34.085 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 43/50, Train Loss: 0.030467309870503164, Val Loss: 0.03387928245639479 +2024-07-19 14:40:34.610 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 44/50, Train Loss: 0.03167487513273955, Val Loss: 0.034869388601667176 +2024-07-19 14:40:35.127 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 45/50, Train Loss: 0.030536032264882867, Val Loss: 0.034109061281826045 +2024-07-19 14:40:35.644 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 46/50, Train Loss: 0.029872294735502115, Val Loss: 0.03363624824261343 +2024-07-19 14:40:36.159 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 47/50, Train Loss: 0.031162995320152154, Val Loss: 0.034911459815260525 +2024-07-19 14:40:36.677 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 48/50, Train Loss: 0.03005609293891625, Val Loss: 0.03537702963158891 +2024-07-19 14:40:37.193 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 49/50, Train Loss: 0.029659306850623002, Val Loss: 0.03385094694189123 +2024-07-19 14:40:37.722 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 50/50, Train Loss: 0.029709143750369548, Val Loss: 0.034957634285092354 +2024-07-19 14:40:37.723 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Fold 2, MAPE: 4.10% +2024-07-19 14:40:37.832 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Training image saved at metaflow_models//bgd_education_50001_100000_LSTM//train_f2_bgd_education_50001_100000_LSTM.png +2024-07-19 14:40:38.505 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 1/50, Train Loss: 0.031714478239723266, Val Loss: 0.0352416891806029 +2024-07-19 14:40:39.171 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 2/50, Train Loss: 0.03168144268430259, Val Loss: 0.034559254912105764 +2024-07-19 14:40:39.848 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 3/50, Train Loss: 0.031188533692429327, Val Loss: 0.03456809245855422 +2024-07-19 14:40:40.508 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 4/50, Train Loss: 0.03132395353168249, Val Loss: 0.033971907470274613 +2024-07-19 14:40:41.184 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 5/50, Train Loss: 0.030842332360781217, Val Loss: 0.03408343818139385 +2024-07-19 14:40:41.845 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 6/50, Train Loss: 0.03084529431103027, Val Loss: 0.03454684305029947 +2024-07-19 14:40:42.508 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 7/50, Train Loss: 0.03094339421758913, Val Loss: 0.03358444017735687 +2024-07-19 14:40:43.169 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 8/50, Train Loss: 0.031006967342675548, Val Loss: 0.033699742442852745 +2024-07-19 14:40:43.835 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 9/50, Train Loss: 0.030695272035488528, Val Loss: 0.034767784429965795 +2024-07-19 14:40:44.495 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 10/50, Train Loss: 0.030683036383292447, Val Loss: 0.034090620943823376 +2024-07-19 14:40:45.154 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 11/50, Train Loss: 0.030668784226354672, Val Loss: 0.034861483434970315 +2024-07-19 14:40:45.813 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 12/50, Train Loss: 0.03083236584414358, Val Loss: 0.03416513827805583 +2024-07-19 14:40:46.475 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 13/50, Train Loss: 0.030793064197346773, Val Loss: 0.03388975016974114 +2024-07-19 14:40:47.135 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 14/50, Train Loss: 0.030534902357891816, Val Loss: 0.03383130252965399 +2024-07-19 14:40:47.794 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 15/50, Train Loss: 0.030389184183249734, Val Loss: 0.03350103842849667 +2024-07-19 14:40:48.460 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 16/50, Train Loss: 0.03051339979092144, Val Loss: 0.032889965720273355 +2024-07-19 14:40:49.133 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 17/50, Train Loss: 0.030366024040706353, Val Loss: 0.03356945575089068 +2024-07-19 14:40:49.802 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 18/50, Train Loss: 0.03013071111620289, Val Loss: 0.033113029709941635 +2024-07-19 14:40:50.465 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 19/50, Train Loss: 0.03023486154485647, Val Loss: 0.03416923242243561 +2024-07-19 14:40:51.156 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 20/50, Train Loss: 0.030380775501364716, Val Loss: 0.03302175315046633 +2024-07-19 14:40:51.821 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 21/50, Train Loss: 0.030007396735353013, Val Loss: 0.03301268851233495 +2024-07-19 14:40:52.483 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 22/50, Train Loss: 0.0299651488176968, Val Loss: 0.033730246730752894 +2024-07-19 14:40:53.149 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 23/50, Train Loss: 0.03013358297056123, Val Loss: 0.033000620786805414 +2024-07-19 14:40:53.836 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 24/50, Train Loss: 0.029983725181895578, Val Loss: 0.03294487438491873 +2024-07-19 14:40:54.500 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 25/50, Train Loss: 0.02998867794258954, Val Loss: 0.03403710825620471 +2024-07-19 14:40:55.165 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 26/50, Train Loss: 0.030033769137034677, Val Loss: 0.03386915349275679 +2024-07-19 14:40:55.827 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 27/50, Train Loss: 0.030100154422529755, Val Loss: 0.03410312664267179 +2024-07-19 14:40:56.523 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 28/50, Train Loss: 0.030044794235735722, Val Loss: 0.03294809338812892 +2024-07-19 14:40:57.190 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 29/50, Train Loss: 0.030171722416089824, Val Loss: 0.033321244742822005 +2024-07-19 14:40:57.852 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 30/50, Train Loss: 0.03023084258175876, Val Loss: 0.03334138079269512 +2024-07-19 14:40:58.520 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 31/50, Train Loss: 0.0302897486197826, Val Loss: 0.03308804816490895 +2024-07-19 14:40:59.185 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 32/50, Train Loss: 0.03029872992471473, Val Loss: 0.03309267411964971 +2024-07-19 14:40:59.849 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 33/50, Train Loss: 0.02983922822630569, Val Loss: 0.033087845942055855 +2024-07-19 14:41:00.516 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 34/50, Train Loss: 0.029694228126884322, Val Loss: 0.03244850255951688 +2024-07-19 14:41:01.195 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 35/50, Train Loss: 0.029684534934285568, Val Loss: 0.03280244455546946 +2024-07-19 14:41:01.861 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 36/50, Train Loss: 0.02966438820713187, Val Loss: 0.03283529502113123 +2024-07-19 14:41:02.529 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 37/50, Train Loss: 0.029846148157160576, Val Loss: 0.0326361715088825 +2024-07-19 14:41:03.195 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 38/50, Train Loss: 0.029787162395372782, Val Loss: 0.032691643548172875 +2024-07-19 14:41:03.865 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 39/50, Train Loss: 0.02988602024541326, Val Loss: 0.03294527998848541 +2024-07-19 14:41:04.529 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 40/50, Train Loss: 0.029857643484456898, Val Loss: 0.032895215711480866 +2024-07-19 14:41:05.195 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 41/50, Train Loss: 0.029917359096954945, Val Loss: 0.033596730765861435 +2024-07-19 14:41:05.860 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 42/50, Train Loss: 0.030236697513354966, Val Loss: 0.03367694552887131 +2024-07-19 14:41:06.540 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 43/50, Train Loss: 0.030083383063543332, Val Loss: 0.032240616661068554 +2024-07-19 14:41:07.244 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 44/50, Train Loss: 0.030039682958836425, Val Loss: 0.032941535064900246 +2024-07-19 14:41:07.950 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 45/50, Train Loss: 0.030371362241367772, Val Loss: 0.032219262139217275 +2024-07-19 14:41:08.651 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 46/50, Train Loss: 0.02983069511717313, Val Loss: 0.03198120763172974 +2024-07-19 14:41:09.360 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 47/50, Train Loss: 0.029872267711142153, Val Loss: 0.03275002670046445 +2024-07-19 14:41:10.042 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 48/50, Train Loss: 0.030096674707960593, Val Loss: 0.03245381462211545 +2024-07-19 14:41:10.714 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 49/50, Train Loss: 0.02966067298277192, Val Loss: 0.03251932717457011 +2024-07-19 14:41:11.413 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 50/50, Train Loss: 0.029891694474914302, Val Loss: 0.03314740860180275 +2024-07-19 14:41:11.413 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Fold 3, MAPE: 3.81% +2024-07-19 14:41:11.531 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Training image saved at metaflow_models//bgd_education_50001_100000_LSTM//train_f3_bgd_education_50001_100000_LSTM.png +2024-07-19 14:41:12.370 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 1/50, Train Loss: 0.02993966356574834, Val Loss: 0.02901027155284946 +2024-07-19 14:41:13.214 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 2/50, Train Loss: 0.030013980303000617, Val Loss: 0.028729990275727736 +2024-07-19 14:41:14.060 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 3/50, Train Loss: 0.030130777876455704, Val Loss: 0.02893731405807508 +2024-07-19 14:41:14.927 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 4/50, Train Loss: 0.029797681832460912, Val Loss: 0.029318127781152725 +2024-07-19 14:41:15.793 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 5/50, Train Loss: 0.02997905063023279, Val Loss: 0.028917013793378264 +2024-07-19 14:41:16.660 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 6/50, Train Loss: 0.029855916399385903, Val Loss: 0.029610236552921502 +2024-07-19 14:41:17.537 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 7/50, Train Loss: 0.029796678685470597, Val Loss: 0.029014500260755822 +2024-07-19 14:41:18.410 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 8/50, Train Loss: 0.029753797411263643, Val Loss: 0.0290438198559993 +2024-07-19 14:41:19.297 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 9/50, Train Loss: 0.029949740823972355, Val Loss: 0.02880067574615414 +2024-07-19 14:41:20.177 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 10/50, Train Loss: 0.029535361688461277, Val Loss: 0.02923669947965725 +2024-07-19 14:41:21.069 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 11/50, Train Loss: 0.0296235319513541, Val Loss: 0.02954566664993763 +2024-07-19 14:41:21.950 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 12/50, Train Loss: 0.02971827623608348, Val Loss: 0.028684898908879305 +2024-07-19 14:41:22.825 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 13/50, Train Loss: 0.029823555815760253, Val Loss: 0.028363834311430518 +2024-07-19 14:41:23.837 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 14/50, Train Loss: 0.029747203279000062, Val Loss: 0.029560914716205082 +2024-07-19 14:41:24.658 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 15/50, Train Loss: 0.029399880044326022, Val Loss: 0.02928699507705263 +2024-07-19 14:41:25.476 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 16/50, Train Loss: 0.029467006828021874, Val Loss: 0.029175967229781923 +2024-07-19 14:41:26.311 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 17/50, Train Loss: 0.02965330361173703, Val Loss: 0.029405385054446554 +2024-07-19 14:41:27.173 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 18/50, Train Loss: 0.02956870003797851, Val Loss: 0.028589970759443334 +2024-07-19 14:41:27.990 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 19/50, Train Loss: 0.02970536682591006, Val Loss: 0.028765208515766506 +2024-07-19 14:41:28.819 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 20/50, Train Loss: 0.029465642481387316, Val Loss: 0.02839321653182442 +2024-07-19 14:41:29.650 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 21/50, Train Loss: 0.029523331631015944, Val Loss: 0.028612015919910895 +2024-07-19 14:41:30.477 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 22/50, Train Loss: 0.02951471229175945, Val Loss: 0.029034350822503503 +2024-07-19 14:41:31.309 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 23/50, Train Loss: 0.029632514199385278, Val Loss: 0.029225291583586385 +2024-07-19 14:41:32.125 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 24/50, Train Loss: 0.02956156860422957, Val Loss: 0.028262375728101342 +2024-07-19 14:41:32.947 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 25/50, Train Loss: 0.02959987044252537, Val Loss: 0.028201273113891884 +2024-07-19 14:41:33.771 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 26/50, Train Loss: 0.02928072147603546, Val Loss: 0.028233814883876492 +2024-07-19 14:41:34.587 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 27/50, Train Loss: 0.029230200972121496, Val Loss: 0.028629053887483234 +2024-07-19 14:41:35.411 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 28/50, Train Loss: 0.029374899434764963, Val Loss: 0.02793582604342216 +2024-07-19 14:41:36.230 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 29/50, Train Loss: 0.029346690758817143, Val Loss: 0.02869227427888561 +2024-07-19 14:41:37.048 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 30/50, Train Loss: 0.029288430841496356, Val Loss: 0.028996739133789733 +2024-07-19 14:41:37.866 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 31/50, Train Loss: 0.029331401911574406, Val Loss: 0.028408599312643747 +2024-07-19 14:41:38.689 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 32/50, Train Loss: 0.029349567286752084, Val Loss: 0.028616045928887418 +2024-07-19 14:41:39.510 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 33/50, Train Loss: 0.02931789068280013, Val Loss: 0.028703833200238848 +2024-07-19 14:41:40.330 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 34/50, Train Loss: 0.029218956510853638, Val Loss: 0.02852930486000873 +2024-07-19 14:41:41.187 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 35/50, Train Loss: 0.02913818942321526, Val Loss: 0.028353412761478812 +2024-07-19 14:41:42.003 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 36/50, Train Loss: 0.029173010673660498, Val Loss: 0.028621804170511866 +2024-07-19 14:41:42.822 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 37/50, Train Loss: 0.02928333622045242, Val Loss: 0.02828036661486368 +2024-07-19 14:41:43.665 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 38/50, Train Loss: 0.029260060166592126, Val Loss: 0.027938051149249077 +2024-07-19 14:41:44.513 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 39/50, Train Loss: 0.029178558889735532, Val Loss: 0.02840860580673089 +2024-07-19 14:41:45.360 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 40/50, Train Loss: 0.02901842437971097, Val Loss: 0.02809522658385135 +2024-07-19 14:41:46.195 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 41/50, Train Loss: 0.02900350407523277, Val Loss: 0.028111798990819906 +2024-07-19 14:41:47.016 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 42/50, Train Loss: 0.029044881370942015, Val Loss: 0.028433279360871058 +2024-07-19 14:41:47.841 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 43/50, Train Loss: 0.028978358345249526, Val Loss: 0.028250834527047904 +2024-07-19 14:41:48.668 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 44/50, Train Loss: 0.029080814405620752, Val Loss: 0.028813711543743674 +2024-07-19 14:41:49.505 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 45/50, Train Loss: 0.028732109159886183, Val Loss: 0.028207594126060203 +2024-07-19 14:41:50.338 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 46/50, Train Loss: 0.02901645331223915, Val Loss: 0.02817013260681887 +2024-07-19 14:41:51.186 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 47/50, Train Loss: 0.028591337521652598, Val Loss: 0.028231525390937522 +2024-07-19 14:41:52.012 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 48/50, Train Loss: 0.028692114647928174, Val Loss: 0.028075633620893634 +2024-07-19 14:41:52.842 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 49/50, Train Loss: 0.028604312047648888, Val Loss: 0.028556373675127287 +2024-07-19 14:41:53.703 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Epoch 50/50, Train Loss: 0.028685424302878616, Val Loss: 0.02836050485839715 +2024-07-19 14:41:53.703 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Fold 4, MAPE: 3.17% +2024-07-19 14:41:53.814 [12/cross_validate_train/131 (pid 4307)] INFO:__main__:Training image saved at metaflow_models//bgd_education_50001_100000_LSTM//train_f4_bgd_education_50001_100000_LSTM.png +2024-07-19 14:41:58.212 [12/cross_validate_train/131 (pid 4307)] Task finished successfully. +2024-07-19 14:41:58.241 [12/model_scores/132 (pid 4940)] Task is starting. +2024-07-19 14:41:59.703 [12/model_scores/132 (pid 4940)] INFO:__main__:Average Train Loss across all folds: 0.0345814940833486 +2024-07-19 14:42:03.626 [12/model_scores/132 (pid 4940)] INFO:__main__:Average Validation Loss across all folds: 0.03581969513482338 +2024-07-19 14:42:03.627 [12/model_scores/132 (pid 4940)] INFO:__main__:Average MAPE across all folds: 3.97% +2024-07-19 14:42:03.627 [12/model_scores/132 (pid 4940)] Task finished successfully. +2024-07-19 14:42:03.655 [12/validate_model/133 (pid 4978)] Task is starting. +2024-07-19 14:42:05.102 [12/validate_model/133 (pid 4978)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:42:05.219 [12/validate_model/133 (pid 4978)] INFO:__main__:Test Set MAPE: 4.08% +2024-07-19 14:42:05.653 [12/validate_model/133 (pid 4978)] INFO:__main__:Test image saved at metaflow_models//bgd_education_50001_100000_LSTM//test_bgd_education_50001_100000_LSTM.png +2024-07-19 14:42:06.070 [12/validate_model/133 (pid 4978)] Task finished successfully. +2024-07-19 14:42:06.098 [12/log_model/134 (pid 4995)] Task is starting. +2024-07-19 14:42:07.547 [12/log_model/134 (pid 4995)] INFO:__main__:Logging model bgd_education_50001_100000_LSTM +2024-07-19 14:42:07.549 [12/log_model/134 (pid 4995)] INFO:__main__:Model logged at metaflow_models//bgd_education_50001_100000_LSTM//bgd_education_50001_100000_LSTM.pth +2024-07-19 14:42:11.496 [12/log_model/134 (pid 4995)] Task finished successfully. +2024-07-19 14:42:11.526 [12/end/135 (pid 5036)] Task is starting. +2024-07-19 14:42:13.004 [12/end/135 (pid 5036)] INFO:__main__:Pipeline end. +2024-07-19 14:42:13.324 [12/end/135 (pid 5036)] Task finished successfully. +2024-07-19 14:42:13.325 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/scaler_bgd_education_50001_100000_LSTM.pkl b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/scaler_bgd_education_50001_100000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..90007b6eb0a36b330275a646166593ae15ab8098 --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/scaler_bgd_education_50001_100000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7901fb66e33e07c1f89ec8c4a2c6325dbc5a44d372b67dae5d0d4dcd8264b91 +size 557 diff --git a/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/test_bgd_education_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/test_bgd_education_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..5d3d3725c9180e5e3ee7603ce6543dce4195eaf5 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/test_bgd_education_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f0_bgd_education_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f0_bgd_education_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..7ac939317144b036273b36818f40ca8319c1d861 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f0_bgd_education_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f1_bgd_education_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f1_bgd_education_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..c381dd1c9bf052d94b5d98efb671261788c86c0a Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f1_bgd_education_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f2_bgd_education_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f2_bgd_education_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..e3b26e98e363dfd2525668f69199a40c89111ff0 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f2_bgd_education_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f3_bgd_education_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f3_bgd_education_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..96fbefa0a56df5aab8fe9ddfcd333c055c5e2f92 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f3_bgd_education_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f4_bgd_education_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f4_bgd_education_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..191fa5ef3d052568eeb6119250253f06e83ffc8d Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_50001_100000_LSTM/train_f4_bgd_education_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/bgd_education_5001_10000_LSTM.pth b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/bgd_education_5001_10000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..831c2961381877469767d5bcdb68792a1a9b3d69 --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/bgd_education_5001_10000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d847b02e5996edae353ea0af806ceb81d5073b0c98b57f91ba226effd8f29a0b +size 46756 diff --git a/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/output.txt b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..44cb1a4f3805f0d242a3c1c6cba944e508375c60 --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/output.txt @@ -0,0 +1,734 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 15:10:00.570 Workflow starting (run-id 22): +2024-07-19 15:10:00.652 [22/start/263 (pid 12711)] Task is starting. +2024-07-19 15:10:02.379 [22/start/263 (pid 12711)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 15:10:02.693 [22/start/263 (pid 12711)] Task finished successfully. +2024-07-19 15:10:02.742 [22/ingest/264 (pid 12727)] Task is starting. +2024-07-19 15:10:04.329 [22/ingest/264 (pid 12727)] INFO:__main__:Fetching dataframe.. +2024-07-19 15:10:04.345 [22/ingest/264 (pid 12727)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 15:10:08.934 [22/ingest/264 (pid 12727)] Task finished successfully. +2024-07-19 15:10:08.968 [22/pick_2017_data/265 (pid 12774)] Task is starting. +2024-07-19 15:10:10.528 [22/pick_2017_data/265 (pid 12774)] INFO:__main__:Picking 2017 data.. +2024-07-19 15:10:10.875 [22/pick_2017_data/265 (pid 12774)] Task finished successfully. +2024-07-19 15:10:10.907 [22/fill_missing_data/266 (pid 12785)] Task is starting. +2024-07-19 15:10:12.527 [22/fill_missing_data/266 (pid 12785)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 15:10:12.532 [22/fill_missing_data/266 (pid 12785)] INFO:__main__:NaN counts per column: +2024-07-19 15:10:12.532 [22/fill_missing_data/266 (pid 12785)] INFO:__main__:Panther_education_Tina 10 +2024-07-19 15:10:12.533 [22/fill_missing_data/266 (pid 12785)] Panther_education_Violet 12 +2024-07-19 15:10:12.533 [22/fill_missing_data/266 (pid 12785)] Panther_education_Rosalie 20 +2024-07-19 15:10:12.533 [22/fill_missing_data/266 (pid 12785)] Panther_education_Mattie 12 +2024-07-19 15:10:12.533 [22/fill_missing_data/266 (pid 12785)] dtype: int64 +2024-07-19 15:10:12.533 [22/fill_missing_data/266 (pid 12785)] --- Logging error --- +2024-07-19 15:10:12.533 [22/fill_missing_data/266 (pid 12785)] Traceback (most recent call last): +2024-07-19 15:10:12.533 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] msg = self.format(record) +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] return fmt.format(record) +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] record.message = record.getMessage() +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] msg = msg % self.args +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] TypeError: not all arguments converted during string formatting +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] Call stack: +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 15:10:12.899 [22/fill_missing_data/266 (pid 12785)] BGD_LinearFlow() +2024-07-19 15:10:12.899 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] cli.main(self) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] return func(*args, **kwargs) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] return self.main(*args, **kwargs) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] rv = self.invoke(ctx) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] return callback(*args, **kwargs) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] return f(get_current_context(), *args, **kwargs) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] task.run_step( +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] self._exec_step_function(step_func) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] step_function() +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] self.missing_values = find_nan_counts(self.df) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] Arguments: (54,) +2024-07-19 15:10:12.901 [22/fill_missing_data/266 (pid 12785)] Task finished successfully. +2024-07-19 15:10:12.930 [22/find_median/267 (pid 12796)] Task is starting. +2024-07-19 15:10:14.519 [22/find_median/267 (pid 12796)] INFO:__main__:Computing and using median.. +2024-07-19 15:10:15.125 [22/find_median/267 (pid 12796)] Task finished successfully. +2024-07-19 15:10:15.155 [22/aggregate_data/268 (pid 12813)] Task is starting. +2024-07-19 15:10:16.799 [22/aggregate_data/268 (pid 12813)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 15:10:20.912 [22/aggregate_data/268 (pid 12813)] Task finished successfully. +2024-07-19 15:10:20.946 [22/split_data/269 (pid 12854)] Task is starting. +2024-07-19 15:10:22.501 [22/split_data/269 (pid 12854)] INFO:__main__:Splitting data into test and train... +2024-07-19 15:10:26.578 [22/split_data/269 (pid 12854)] Task finished successfully. +2024-07-19 15:10:26.606 [22/make_x_y/270 (pid 12894)] Task is starting. +2024-07-19 15:10:28.443 [22/make_x_y/270 (pid 12894)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 15:10:28.759 [22/make_x_y/270 (pid 12894)] Shape of y_train: (6978, 1) +2024-07-19 15:10:28.759 [22/make_x_y/270 (pid 12894)] Shape of X_test: (1722, 30, 1) +2024-07-19 15:10:28.759 [22/make_x_y/270 (pid 12894)] Shape of y_test: (1722, 1) +2024-07-19 15:10:28.760 [22/make_x_y/270 (pid 12894)] Task finished successfully. +2024-07-19 15:10:28.793 [22/cross_validate_train/271 (pid 12905)] Task is starting. +2024-07-19 15:10:30.389 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Creating bgd_education_5001_10000_LSTM +2024-07-19 15:10:30.389 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Performing cross validation.. +2024-07-19 15:10:31.132 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 1/50, Train Loss: 0.3487904154368349, Val Loss: 0.1504301108621262 +2024-07-19 15:10:31.332 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 2/50, Train Loss: 0.09340324947560155, Val Loss: 0.08491465152316802 +2024-07-19 15:10:31.544 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 3/50, Train Loss: 0.07783375670378273, Val Loss: 0.082628423599778 +2024-07-19 15:10:31.752 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 4/50, Train Loss: 0.07650642660824028, Val Loss: 0.08107676930926941 +2024-07-19 15:10:31.965 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 5/50, Train Loss: 0.07670790188618608, Val Loss: 0.08035511251639675 +2024-07-19 15:10:32.176 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 6/50, Train Loss: 0.07590082338130152, Val Loss: 0.07932477575298902 +2024-07-19 15:10:32.388 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 7/50, Train Loss: 0.07532332364369083, Val Loss: 0.07838830130325782 +2024-07-19 15:10:32.588 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 8/50, Train Loss: 0.07464778101122058, Val Loss: 0.07737573659097827 +2024-07-19 15:10:32.799 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 9/50, Train Loss: 0.07379440459850672, Val Loss: 0.07668808585888631 +2024-07-19 15:10:33.016 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 10/50, Train Loss: 0.07260349005259373, Val Loss: 0.07567230340194057 +2024-07-19 15:10:33.214 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 11/50, Train Loss: 0.0718116899197166, Val Loss: 0.07489042829822849 +2024-07-19 15:10:33.422 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 12/50, Train Loss: 0.07034623154715912, Val Loss: 0.07391841780092265 +2024-07-19 15:10:33.617 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 13/50, Train Loss: 0.06868604928053715, Val Loss: 0.0720488540828228 +2024-07-19 15:10:33.818 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 14/50, Train Loss: 0.06671070725329824, Val Loss: 0.07029609372084206 +2024-07-19 15:10:34.012 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 15/50, Train Loss: 0.06538589746766799, Val Loss: 0.06809610772777248 +2024-07-19 15:10:34.217 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 16/50, Train Loss: 0.06315951502403698, Val Loss: 0.06687925625089053 +2024-07-19 15:10:34.420 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 17/50, Train Loss: 0.06168301292770618, Val Loss: 0.06411383975599264 +2024-07-19 15:10:34.617 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 18/50, Train Loss: 0.06024628807161305, Val Loss: 0.0629259442054742 +2024-07-19 15:10:34.815 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 19/50, Train Loss: 0.059225483671636193, Val Loss: 0.061034959162006505 +2024-07-19 15:10:35.009 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 20/50, Train Loss: 0.05785547836205444, Val Loss: 0.06034675008944563 +2024-07-19 15:10:35.219 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 21/50, Train Loss: 0.05737052414868329, Val Loss: 0.05853705480694771 +2024-07-19 15:10:35.445 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 22/50, Train Loss: 0.05558143299375031, Val Loss: 0.058853896083058535 +2024-07-19 15:10:35.663 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 23/50, Train Loss: 0.055037673713790404, Val Loss: 0.05674528577239127 +2024-07-19 15:10:35.879 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 24/50, Train Loss: 0.05369116340738696, Val Loss: 0.056209664389088344 +2024-07-19 15:10:36.087 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 25/50, Train Loss: 0.05300505851974358, Val Loss: 0.055508738081600215 +2024-07-19 15:10:36.308 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 26/50, Train Loss: 0.052146601616530806, Val Loss: 0.054467023526494567 +2024-07-19 15:10:36.533 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 27/50, Train Loss: 0.05121068731957191, Val Loss: 0.05335619109305176 +2024-07-19 15:10:36.748 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 28/50, Train Loss: 0.05096253586580624, Val Loss: 0.05388949046263824 +2024-07-19 15:10:37.004 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 29/50, Train Loss: 0.04984778925977849, Val Loss: 0.05221237680195151 +2024-07-19 15:10:37.202 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 30/50, Train Loss: 0.04908293072839041, Val Loss: 0.05149212086925636 +2024-07-19 15:10:37.400 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 31/50, Train Loss: 0.04975529125816113, Val Loss: 0.05158027180948773 +2024-07-19 15:10:37.596 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 32/50, Train Loss: 0.04901315609144198, Val Loss: 0.05183861213358673 +2024-07-19 15:10:37.793 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 33/50, Train Loss: 0.048300844038257726, Val Loss: 0.050710358682113724 +2024-07-19 15:10:37.993 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 34/50, Train Loss: 0.04895899560604546, Val Loss: 0.052186801928926156 +2024-07-19 15:10:38.195 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 35/50, Train Loss: 0.047960403853574314, Val Loss: 0.05128908117075224 +2024-07-19 15:10:38.394 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 36/50, Train Loss: 0.04808366545350165, Val Loss: 0.05132395406631199 +2024-07-19 15:10:38.594 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 37/50, Train Loss: 0.04762807100809909, Val Loss: 0.05062181336452832 +2024-07-19 15:10:38.789 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 38/50, Train Loss: 0.04779931303818483, Val Loss: 0.05067729778789185 +2024-07-19 15:10:38.988 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 39/50, Train Loss: 0.04816585889941937, Val Loss: 0.051764180380347614 +2024-07-19 15:10:39.188 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 40/50, Train Loss: 0.04735021454256934, Val Loss: 0.05055617606519042 +2024-07-19 15:10:39.405 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 41/50, Train Loss: 0.04797505043648385, Val Loss: 0.05122975164369957 +2024-07-19 15:10:39.608 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 42/50, Train Loss: 0.04753807796215689, Val Loss: 0.05070727872284683 +2024-07-19 15:10:39.803 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 43/50, Train Loss: 0.04759061271073045, Val Loss: 0.05110738209977343 +2024-07-19 15:10:40.000 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 44/50, Train Loss: 0.047405727006293634, Val Loss: 0.0509474599683607 +2024-07-19 15:10:40.201 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 45/50, Train Loss: 0.04754896290801667, Val Loss: 0.051303979865199814 +2024-07-19 15:10:40.396 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 46/50, Train Loss: 0.04737412984910849, Val Loss: 0.051359351925753256 +2024-07-19 15:10:40.592 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 47/50, Train Loss: 0.047604108732697124, Val Loss: 0.051579277106636276 +2024-07-19 15:10:40.789 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 48/50, Train Loss: 0.04735458461014, Val Loss: 0.0516742950657735 +2024-07-19 15:10:40.984 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 49/50, Train Loss: 0.04715056430447746, Val Loss: 0.05111607899134223 +2024-07-19 15:10:41.183 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 50/50, Train Loss: 0.04750083628538493, Val Loss: 0.05175612126854626 +2024-07-19 15:10:41.184 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Fold 0, MAPE: 6.00% +2024-07-19 15:10:41.620 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Training image saved at metaflow_models//bgd_education_5001_10000_LSTM//train_f0_bgd_education_5001_10000_LSTM.png +2024-07-19 15:10:42.052 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 1/50, Train Loss: 0.05059656084910648, Val Loss: 0.057493295067468204 +2024-07-19 15:10:42.446 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 2/50, Train Loss: 0.04969321303579905, Val Loss: 0.05810776237096336 +2024-07-19 15:10:42.825 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 3/50, Train Loss: 0.049622093442164054, Val Loss: 0.05794822651188116 +2024-07-19 15:10:43.222 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 4/50, Train Loss: 0.049395672339078496, Val Loss: 0.0577692174025484 +2024-07-19 15:10:43.595 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 5/50, Train Loss: 0.049498164796665925, Val Loss: 0.05733054539037717 +2024-07-19 15:10:43.961 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 6/50, Train Loss: 0.04926028227663203, Val Loss: 0.05746247775449946 +2024-07-19 15:10:44.331 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 7/50, Train Loss: 0.04922693118146838, Val Loss: 0.05741252724987429 +2024-07-19 15:10:44.690 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 8/50, Train Loss: 0.04906437729727732, Val Loss: 0.05741158067374616 +2024-07-19 15:10:45.057 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 9/50, Train Loss: 0.049083572544463695, Val Loss: 0.0574535489384387 +2024-07-19 15:10:45.424 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 10/50, Train Loss: 0.04901219090472345, Val Loss: 0.05762440197773882 +2024-07-19 15:10:45.794 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 11/50, Train Loss: 0.048959042290098044, Val Loss: 0.05763734987861401 +2024-07-19 15:10:46.175 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 12/50, Train Loss: 0.04903369634220862, Val Loss: 0.05767469430291975 +2024-07-19 15:10:46.526 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 13/50, Train Loss: 0.04900267069572455, Val Loss: 0.05764214598850624 +2024-07-19 15:10:46.872 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 14/50, Train Loss: 0.048855506419523125, Val Loss: 0.05769586900400149 +2024-07-19 15:10:47.233 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 15/50, Train Loss: 0.048891203477978706, Val Loss: 0.05790531917198284 +2024-07-19 15:10:47.586 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 16/50, Train Loss: 0.04889597095651169, Val Loss: 0.057899804383113575 +2024-07-19 15:10:47.933 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 17/50, Train Loss: 0.04888358510622423, Val Loss: 0.057995293138397706 +2024-07-19 15:10:48.305 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 18/50, Train Loss: 0.04873545865898263, Val Loss: 0.058106158532806346 +2024-07-19 15:10:48.730 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 19/50, Train Loss: 0.04875120643067033, Val Loss: 0.058290008354831384 +2024-07-19 15:10:49.102 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 20/50, Train Loss: 0.048641615024168194, Val Loss: 0.05866750591510051 +2024-07-19 15:10:49.470 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 21/50, Train Loss: 0.04858094076179478, Val Loss: 0.05889026282002797 +2024-07-19 15:10:49.876 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 22/50, Train Loss: 0.04883179229314197, Val Loss: 0.05888204034921285 +2024-07-19 15:10:50.250 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 23/50, Train Loss: 0.048552926859422904, Val Loss: 0.05919763501230124 +2024-07-19 15:10:50.621 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 24/50, Train Loss: 0.04860855289415954, Val Loss: 0.059116051809207815 +2024-07-19 15:10:50.988 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 25/50, Train Loss: 0.04865241096648451, Val Loss: 0.05925729266695074 +2024-07-19 15:10:51.377 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 26/50, Train Loss: 0.04863018693070706, Val Loss: 0.059003060029165166 +2024-07-19 15:10:51.751 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 27/50, Train Loss: 0.0487934508144039, Val Loss: 0.05989403695472189 +2024-07-19 15:10:52.105 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 28/50, Train Loss: 0.04847320796896334, Val Loss: 0.06242378554432779 +2024-07-19 15:10:52.501 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 29/50, Train Loss: 0.0484741875927334, Val Loss: 0.06038292764207801 +2024-07-19 15:10:52.901 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 30/50, Train Loss: 0.04880496650321843, Val Loss: 0.06114622829733668 +2024-07-19 15:10:53.313 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 31/50, Train Loss: 0.04850423598840629, Val Loss: 0.06180701591074467 +2024-07-19 15:10:53.668 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 32/50, Train Loss: 0.048693890823689225, Val Loss: 0.06217515735408744 +2024-07-19 15:10:54.027 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 33/50, Train Loss: 0.048408557546057114, Val Loss: 0.062307246583136355 +2024-07-19 15:10:54.437 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 34/50, Train Loss: 0.04866637603367028, Val Loss: 0.0632708550909081 +2024-07-19 15:10:54.813 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 35/50, Train Loss: 0.048672153627219265, Val Loss: 0.06346366735729012 +2024-07-19 15:10:55.172 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 36/50, Train Loss: 0.04861849048876599, Val Loss: 0.06334673890189545 +2024-07-19 15:10:55.539 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 37/50, Train Loss: 0.048998501075253095, Val Loss: 0.06264763436204679 +2024-07-19 15:10:55.911 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 38/50, Train Loss: 0.04882617567806211, Val Loss: 0.06296071178607039 +2024-07-19 15:10:56.282 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 39/50, Train Loss: 0.04884231261500757, Val Loss: 0.06256756458330799 +2024-07-19 15:10:56.636 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 40/50, Train Loss: 0.04875835613028644, Val Loss: 0.06325563858892466 +2024-07-19 15:10:56.992 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 41/50, Train Loss: 0.048736309173376596, Val Loss: 0.06254016899982014 +2024-07-19 15:10:57.343 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 42/50, Train Loss: 0.048663782262026445, Val Loss: 0.06217189042552097 +2024-07-19 15:10:57.696 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 43/50, Train Loss: 0.048670462166813956, Val Loss: 0.06316189180958916 +2024-07-19 15:10:58.049 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 44/50, Train Loss: 0.04876111075282097, Val Loss: 0.06345348981385296 +2024-07-19 15:10:58.427 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 45/50, Train Loss: 0.04865489137193112, Val Loss: 0.06172856295833717 +2024-07-19 15:10:58.781 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 46/50, Train Loss: 0.04865222630945787, Val Loss: 0.06372426676790456 +2024-07-19 15:10:59.134 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 47/50, Train Loss: 0.04863773908925383, Val Loss: 0.06222041062003857 +2024-07-19 15:10:59.498 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 48/50, Train Loss: 0.04846549261208266, Val Loss: 0.06130375879237781 +2024-07-19 15:10:59.851 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 49/50, Train Loss: 0.0485233496619414, Val Loss: 0.06163823675062206 +2024-07-19 15:11:00.191 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 50/50, Train Loss: 0.04847267014931326, Val Loss: 0.0615316218621022 +2024-07-19 15:11:00.191 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Fold 1, MAPE: 6.06% +2024-07-19 15:11:00.300 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Training image saved at metaflow_models//bgd_education_5001_10000_LSTM//train_f1_bgd_education_5001_10000_LSTM.png +2024-07-19 15:11:00.800 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 1/50, Train Loss: 0.04351865490051833, Val Loss: 0.036987850392186966 +2024-07-19 15:11:01.300 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 2/50, Train Loss: 0.0433236080983823, Val Loss: 0.037215989234076964 +2024-07-19 15:11:01.867 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 3/50, Train Loss: 0.04322988504374569, Val Loss: 0.03654429210802993 +2024-07-19 15:11:02.355 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 4/50, Train Loss: 0.04316884170879017, Val Loss: 0.03664320093151685 +2024-07-19 15:11:02.841 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 5/50, Train Loss: 0.04325219291177663, Val Loss: 0.03642050403396826 +2024-07-19 15:11:03.332 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 6/50, Train Loss: 0.04305639661509882, Val Loss: 0.03651475966782183 +2024-07-19 15:11:03.849 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 7/50, Train Loss: 0.042962233603677964, Val Loss: 0.03629917591004758 +2024-07-19 15:11:04.349 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 8/50, Train Loss: 0.0428357977589423, Val Loss: 0.036241511185024236 +2024-07-19 15:11:04.859 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 9/50, Train Loss: 0.04256549064408649, Val Loss: 0.03544857594612483 +2024-07-19 15:11:05.358 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 10/50, Train Loss: 0.04242854319851507, Val Loss: 0.03531738763322701 +2024-07-19 15:11:05.861 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 11/50, Train Loss: 0.04249353688210249, Val Loss: 0.0349110323130279 +2024-07-19 15:11:06.396 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 12/50, Train Loss: 0.04232751308855685, Val Loss: 0.03458774381795445 +2024-07-19 15:11:06.951 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 13/50, Train Loss: 0.042342298630286344, Val Loss: 0.03466787289928745 +2024-07-19 15:11:07.447 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 14/50, Train Loss: 0.04235396051610058, Val Loss: 0.034559022735905005 +2024-07-19 15:11:07.941 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 15/50, Train Loss: 0.04213389591737227, Val Loss: 0.03456200815334513 +2024-07-19 15:11:08.566 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 16/50, Train Loss: 0.042025525613941926, Val Loss: 0.034445005846587384 +2024-07-19 15:11:09.135 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 17/50, Train Loss: 0.04206157680600882, Val Loss: 0.034529130251423734 +2024-07-19 15:11:09.652 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 18/50, Train Loss: 0.042033792050047356, Val Loss: 0.034520219508055096 +2024-07-19 15:11:10.211 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 19/50, Train Loss: 0.04194038071754304, Val Loss: 0.03497170853252347 +2024-07-19 15:11:10.768 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 20/50, Train Loss: 0.042211821624501183, Val Loss: 0.03454244650296263 +2024-07-19 15:11:11.279 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 21/50, Train Loss: 0.041918563588776374, Val Loss: 0.03440668116751555 +2024-07-19 15:11:11.807 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 22/50, Train Loss: 0.04212061329321428, Val Loss: 0.03479244862053845 +2024-07-19 15:11:12.302 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 23/50, Train Loss: 0.04213415201414715, Val Loss: 0.03446698098166569 +2024-07-19 15:11:12.822 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 24/50, Train Loss: 0.04191137582741, Val Loss: 0.0352108352188323 +2024-07-19 15:11:13.312 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 25/50, Train Loss: 0.042279496941376817, Val Loss: 0.03515172689347654 +2024-07-19 15:11:13.820 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 26/50, Train Loss: 0.04216502490030093, Val Loss: 0.035050387670462195 +2024-07-19 15:11:14.331 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 27/50, Train Loss: 0.042185641740533436, Val Loss: 0.03494572684772917 +2024-07-19 15:11:14.863 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 28/50, Train Loss: 0.04214919101108204, Val Loss: 0.03496171423309558 +2024-07-19 15:11:15.383 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 29/50, Train Loss: 0.04206794197247787, Val Loss: 0.03475051861558411 +2024-07-19 15:11:15.893 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 30/50, Train Loss: 0.04216929310086098, Val Loss: 0.03461622391399499 +2024-07-19 15:11:16.420 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 31/50, Train Loss: 0.04208563066680323, Val Loss: 0.034639692135356566 +2024-07-19 15:11:16.916 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 32/50, Train Loss: 0.04206010426648638, Val Loss: 0.034469002706779016 +2024-07-19 15:11:17.409 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 33/50, Train Loss: 0.04202188527719541, Val Loss: 0.034494200671041336 +2024-07-19 15:11:17.914 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 34/50, Train Loss: 0.042123368636450984, Val Loss: 0.03459805350851368 +2024-07-19 15:11:18.410 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 35/50, Train Loss: 0.042009697973050854, Val Loss: 0.034616380577554576 +2024-07-19 15:11:18.899 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 36/50, Train Loss: 0.042153183387761764, Val Loss: 0.03471291523326088 +2024-07-19 15:11:19.394 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 37/50, Train Loss: 0.04204243629832159, Val Loss: 0.03450568443214571 +2024-07-19 15:11:19.893 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 38/50, Train Loss: 0.04188624093817039, Val Loss: 0.03461770406244574 +2024-07-19 15:11:20.389 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 39/50, Train Loss: 0.041951438564468514, Val Loss: 0.03482657414231751 +2024-07-19 15:11:20.882 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 40/50, Train Loss: 0.04190851578658277, Val Loss: 0.034792008985941474 +2024-07-19 15:11:21.382 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 41/50, Train Loss: 0.04196537555280057, Val Loss: 0.034491760203161755 +2024-07-19 15:11:21.886 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 42/50, Train Loss: 0.041855541261082346, Val Loss: 0.034008726527964744 +2024-07-19 15:11:22.371 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 43/50, Train Loss: 0.04174457465044477, Val Loss: 0.03436646862207232 +2024-07-19 15:11:22.879 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 44/50, Train Loss: 0.041726655089719726, Val Loss: 0.03422879729721997 +2024-07-19 15:11:23.378 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 45/50, Train Loss: 0.041738862713629546, Val Loss: 0.03435019368456828 +2024-07-19 15:11:23.865 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 46/50, Train Loss: 0.04163034781813622, Val Loss: 0.03463690586992212 +2024-07-19 15:11:24.411 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 47/50, Train Loss: 0.04170433242212642, Val Loss: 0.03430263013453097 +2024-07-19 15:11:24.920 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 48/50, Train Loss: 0.04161461193791845, Val Loss: 0.034713874948588574 +2024-07-19 15:11:25.453 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 49/50, Train Loss: 0.041594751145352014, Val Loss: 0.03401326725410449 +2024-07-19 15:11:25.955 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 50/50, Train Loss: 0.04153529893268238, Val Loss: 0.0341580935527344 +2024-07-19 15:11:25.955 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Fold 2, MAPE: 3.91% +2024-07-19 15:11:26.068 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Training image saved at metaflow_models//bgd_education_5001_10000_LSTM//train_f2_bgd_education_5001_10000_LSTM.png +2024-07-19 15:11:26.745 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 1/50, Train Loss: 0.039861112118583834, Val Loss: 0.03616976254695171 +2024-07-19 15:11:27.412 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 2/50, Train Loss: 0.03974616132064225, Val Loss: 0.03696948868801465 +2024-07-19 15:11:28.113 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 3/50, Train Loss: 0.03985189293090203, Val Loss: 0.03533843673161558 +2024-07-19 15:11:28.785 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 4/50, Train Loss: 0.0397933748716565, Val Loss: 0.03541259452499248 +2024-07-19 15:11:29.498 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 5/50, Train Loss: 0.03984071130621923, Val Loss: 0.03542895751023615 +2024-07-19 15:11:30.169 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 6/50, Train Loss: 0.039890401741515286, Val Loss: 0.03586760837886784 +2024-07-19 15:11:30.816 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 7/50, Train Loss: 0.039799066439066846, Val Loss: 0.03617530759121921 +2024-07-19 15:11:31.451 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 8/50, Train Loss: 0.039772400543195745, Val Loss: 0.03557591986011814 +2024-07-19 15:11:32.113 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 9/50, Train Loss: 0.03977034197584407, Val Loss: 0.035944028228924084 +2024-07-19 15:11:32.747 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 10/50, Train Loss: 0.03983600719589485, Val Loss: 0.03600195885912792 +2024-07-19 15:11:33.425 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 11/50, Train Loss: 0.039622358429207374, Val Loss: 0.03570799398663882 +2024-07-19 15:11:34.063 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 12/50, Train Loss: 0.0397005648007744, Val Loss: 0.035688913150413615 +2024-07-19 15:11:34.898 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 13/50, Train Loss: 0.03959829207152536, Val Loss: 0.0356857682502753 +2024-07-19 15:11:35.616 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 14/50, Train Loss: 0.039608156474383725, Val Loss: 0.03599809533035433 +2024-07-19 15:11:36.284 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 15/50, Train Loss: 0.03969136221104697, Val Loss: 0.03561291586909745 +2024-07-19 15:11:37.017 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 16/50, Train Loss: 0.03953535833128103, Val Loss: 0.03595681896282209 +2024-07-19 15:11:37.832 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 17/50, Train Loss: 0.039670541665631616, Val Loss: 0.035918739951542905 +2024-07-19 15:11:38.471 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 18/50, Train Loss: 0.03975558131678055, Val Loss: 0.03564240531744184 +2024-07-19 15:11:39.171 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 19/50, Train Loss: 0.039641810160079234, Val Loss: 0.035790090323299974 +2024-07-19 15:11:39.852 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 20/50, Train Loss: 0.03960740771654942, Val Loss: 0.03611077891813742 +2024-07-19 15:11:40.544 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 21/50, Train Loss: 0.0396191133441378, Val Loss: 0.03552875773528138 +2024-07-19 15:11:41.264 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 22/50, Train Loss: 0.03945863829951172, Val Loss: 0.0358195591818642 +2024-07-19 15:11:41.977 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 23/50, Train Loss: 0.03948297268672757, Val Loss: 0.035697450962018325 +2024-07-19 15:11:42.670 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 24/50, Train Loss: 0.039397193820611257, Val Loss: 0.03632051261091555 +2024-07-19 15:11:43.366 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 25/50, Train Loss: 0.03940406527166089, Val Loss: 0.03605685821054755 +2024-07-19 15:11:44.057 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 26/50, Train Loss: 0.03949548233912824, Val Loss: 0.03540676535182708 +2024-07-19 15:11:44.736 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 27/50, Train Loss: 0.03936952612783811, Val Loss: 0.03591281467595616 +2024-07-19 15:11:45.440 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 28/50, Train Loss: 0.0394295166080741, Val Loss: 0.03578155351853048 +2024-07-19 15:11:46.171 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 29/50, Train Loss: 0.03942108307390997, Val Loss: 0.03586573626946758 +2024-07-19 15:11:46.868 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 30/50, Train Loss: 0.039371693902330036, Val Loss: 0.035706437872471034 +2024-07-19 15:11:47.499 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 31/50, Train Loss: 0.03936243919681196, Val Loss: 0.0358820208725897 +2024-07-19 15:11:48.131 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 32/50, Train Loss: 0.0393949085463808, Val Loss: 0.03545384416104974 +2024-07-19 15:11:48.760 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 33/50, Train Loss: 0.03925470497510205, Val Loss: 0.03539790681286438 +2024-07-19 15:11:49.424 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 34/50, Train Loss: 0.03935407612421741, Val Loss: 0.035723214314596075 +2024-07-19 15:11:50.137 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 35/50, Train Loss: 0.039318720542200626, Val Loss: 0.03589929323140029 +2024-07-19 15:11:50.841 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 36/50, Train Loss: 0.03942132084183905, Val Loss: 0.035950738282219785 +2024-07-19 15:11:51.564 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 37/50, Train Loss: 0.03947174068132084, Val Loss: 0.03537022820799737 +2024-07-19 15:11:52.281 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 38/50, Train Loss: 0.03948195725169084, Val Loss: 0.03520747978945036 +2024-07-19 15:11:53.009 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 39/50, Train Loss: 0.03937058860104378, Val Loss: 0.0350287659848864 +2024-07-19 15:11:53.726 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 40/50, Train Loss: 0.039289502312161335, Val Loss: 0.03526764443597278 +2024-07-19 15:11:54.433 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 41/50, Train Loss: 0.03914090812410394, Val Loss: 0.03527663965281602 +2024-07-19 15:11:55.156 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 42/50, Train Loss: 0.039213000567094106, Val Loss: 0.03545380157192011 +2024-07-19 15:11:55.809 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 43/50, Train Loss: 0.0392457152755089, Val Loss: 0.03586274622058546 +2024-07-19 15:11:56.450 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 44/50, Train Loss: 0.03925484076958813, Val Loss: 0.03563839695542245 +2024-07-19 15:11:57.088 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 45/50, Train Loss: 0.03915623114252948, Val Loss: 0.03555101689857405 +2024-07-19 15:11:57.726 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 46/50, Train Loss: 0.03918478220114357, Val Loss: 0.0357494630120896 +2024-07-19 15:11:58.366 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 47/50, Train Loss: 0.039113346589346454, Val Loss: 0.035672878645159105 +2024-07-19 15:11:59.007 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 48/50, Train Loss: 0.03920330996433758, Val Loss: 0.03558997976014743 +2024-07-19 15:11:59.646 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 49/50, Train Loss: 0.03933352677228108, Val Loss: 0.03559948544244509 +2024-07-19 15:12:00.296 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 50/50, Train Loss: 0.03926029614466306, Val Loss: 0.03520782578837227 +2024-07-19 15:12:00.296 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Fold 3, MAPE: 3.79% +2024-07-19 15:12:00.415 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Training image saved at metaflow_models//bgd_education_5001_10000_LSTM//train_f3_bgd_education_5001_10000_LSTM.png +2024-07-19 15:12:01.276 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 1/50, Train Loss: 0.03830476451132979, Val Loss: 0.03763174366306614 +2024-07-19 15:12:02.205 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 2/50, Train Loss: 0.03828347166283773, Val Loss: 0.03852455182051336 +2024-07-19 15:12:03.100 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 3/50, Train Loss: 0.03825940015715557, Val Loss: 0.04018378091623654 +2024-07-19 15:12:03.946 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 4/50, Train Loss: 0.038258554987036265, Val Loss: 0.038875672764874795 +2024-07-19 15:12:04.828 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 5/50, Train Loss: 0.03828805466029015, Val Loss: 0.041510407536013705 +2024-07-19 15:12:05.719 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 6/50, Train Loss: 0.0382633215369104, Val Loss: 0.03773089860742156 +2024-07-19 15:12:06.542 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 7/50, Train Loss: 0.03825469659948415, Val Loss: 0.037893222493899835 +2024-07-19 15:12:07.448 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 8/50, Train Loss: 0.038220773021189064, Val Loss: 0.03780871831082009 +2024-07-19 15:12:08.281 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 9/50, Train Loss: 0.03823311753816657, Val Loss: 0.03820976730738137 +2024-07-19 15:12:09.223 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 10/50, Train Loss: 0.038264117479979334, Val Loss: 0.03820127782386702 +2024-07-19 15:12:10.067 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 11/50, Train Loss: 0.03814569940524442, Val Loss: 0.03833132836262922 +2024-07-19 15:12:10.905 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 12/50, Train Loss: 0.03827244918384067, Val Loss: 0.03877945047979419 +2024-07-19 15:12:11.694 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 13/50, Train Loss: 0.03814185472143875, Val Loss: 0.04062368846624284 +2024-07-19 15:12:12.527 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 14/50, Train Loss: 0.03831108552045547, Val Loss: 0.040933774733865586 +2024-07-19 15:12:13.389 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 15/50, Train Loss: 0.0382036315021361, Val Loss: 0.04082049801945686 +2024-07-19 15:12:14.310 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 16/50, Train Loss: 0.03810891701461195, Val Loss: 0.04466696340288665 +2024-07-19 15:12:15.240 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 17/50, Train Loss: 0.038219915119583135, Val Loss: 0.047445919112981974 +2024-07-19 15:12:16.118 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 18/50, Train Loss: 0.038191597478894085, Val Loss: 0.058710678556078186 +2024-07-19 15:12:17.067 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 19/50, Train Loss: 0.038161262132964294, Val Loss: 0.0465041820362613 +2024-07-19 15:12:17.887 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 20/50, Train Loss: 0.03819928821790349, Val Loss: 0.06850599160266889 +2024-07-19 15:12:18.722 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 21/50, Train Loss: 0.03801273723429704, Val Loss: 0.044121586742836075 +2024-07-19 15:12:19.560 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 22/50, Train Loss: 0.038281563096321546, Val Loss: 0.0648588431445328 +2024-07-19 15:12:20.385 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 23/50, Train Loss: 0.03823446910214293, Val Loss: 0.039053502769486326 +2024-07-19 15:12:21.272 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 24/50, Train Loss: 0.038173682312225246, Val Loss: 0.03910364406938489 +2024-07-19 15:12:22.192 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 25/50, Train Loss: 0.03800107679933637, Val Loss: 0.040842715348746325 +2024-07-19 15:12:23.057 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 26/50, Train Loss: 0.0379967940766569, Val Loss: 0.040404544237094955 +2024-07-19 15:12:23.896 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 27/50, Train Loss: 0.03797568973399453, Val Loss: 0.0396288581494544 +2024-07-19 15:12:24.850 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 28/50, Train Loss: 0.03803582408639428, Val Loss: 0.045553652519309845 +2024-07-19 15:12:25.667 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 29/50, Train Loss: 0.038130681009983625, Val Loss: 0.03937398672506616 +2024-07-19 15:12:26.478 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 30/50, Train Loss: 0.0381206041816008, Val Loss: 0.039080611304254144 +2024-07-19 15:12:27.300 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 31/50, Train Loss: 0.03793556905341345, Val Loss: 0.03814727702253574 +2024-07-19 15:12:28.171 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 32/50, Train Loss: 0.03793709851023588, Val Loss: 0.03786872397806194 +2024-07-19 15:12:29.098 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 33/50, Train Loss: 0.03791558071152194, Val Loss: 0.03785846009850502 +2024-07-19 15:12:29.949 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 34/50, Train Loss: 0.03788399009627628, Val Loss: 0.03800928114435157 +2024-07-19 15:12:30.780 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 35/50, Train Loss: 0.037933932791290044, Val Loss: 0.03838725755544933 +2024-07-19 15:12:31.592 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 36/50, Train Loss: 0.03787803410419396, Val Loss: 0.03835957562802611 +2024-07-19 15:12:32.441 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 37/50, Train Loss: 0.03789826468206369, Val Loss: 0.03884112960784822 +2024-07-19 15:12:33.256 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 38/50, Train Loss: 0.03778490352515991, Val Loss: 0.03996003424195019 +2024-07-19 15:12:34.144 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 39/50, Train Loss: 0.03789105330808805, Val Loss: 0.039600158714362094 +2024-07-19 15:12:35.032 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 40/50, Train Loss: 0.037827471588421, Val Loss: 0.04023261529368323 +2024-07-19 15:12:35.888 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 41/50, Train Loss: 0.037812309370345465, Val Loss: 0.04154009412269335 +2024-07-19 15:12:36.780 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 42/50, Train Loss: 0.03781538487381333, Val Loss: 0.04267935923023804 +2024-07-19 15:12:37.558 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 43/50, Train Loss: 0.03782996432958068, Val Loss: 0.048008259335482445 +2024-07-19 15:12:38.393 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 44/50, Train Loss: 0.03772278159733985, Val Loss: 0.05039336879712504 +2024-07-19 15:12:39.239 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 45/50, Train Loss: 0.03769157154506052, Val Loss: 0.055008542648441086 +2024-07-19 15:12:40.098 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 46/50, Train Loss: 0.03770810581620906, Val Loss: 0.05103882115233589 +2024-07-19 15:12:40.958 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 47/50, Train Loss: 0.037926605462536706, Val Loss: 0.040663577565872994 +2024-07-19 15:12:41.841 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 48/50, Train Loss: 0.03783335611940576, Val Loss: 0.03810556313476047 +2024-07-19 15:12:42.639 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 49/50, Train Loss: 0.037658705427260186, Val Loss: 0.04046885523240309 +2024-07-19 15:12:43.445 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 50/50, Train Loss: 0.03768136729435115, Val Loss: 0.04362055996583926 +2024-07-19 15:12:43.446 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Fold 4, MAPE: 5.56% +2024-07-19 15:12:43.542 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Training image saved at metaflow_models//bgd_education_5001_10000_LSTM//train_f4_bgd_education_5001_10000_LSTM.png +2024-07-19 15:12:47.936 [22/cross_validate_train/271 (pid 12905)] Task finished successfully. +2024-07-19 15:12:47.965 [22/model_scores/272 (pid 13522)] Task is starting. +2024-07-19 15:12:49.428 [22/model_scores/272 (pid 13522)] INFO:__main__:Average Train Loss across all folds: 0.042890093761278954 +2024-07-19 15:12:53.620 [22/model_scores/272 (pid 13522)] INFO:__main__:Average Validation Loss across all folds: 0.045254844487518875 +2024-07-19 15:12:53.620 [22/model_scores/272 (pid 13522)] INFO:__main__:Average MAPE across all folds: 5.06% +2024-07-19 15:12:53.621 [22/model_scores/272 (pid 13522)] Task finished successfully. +2024-07-19 15:12:53.652 [22/validate_model/273 (pid 13549)] Task is starting. +2024-07-19 15:12:55.166 [22/validate_model/273 (pid 13549)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 15:12:55.321 [22/validate_model/273 (pid 13549)] INFO:__main__:Test Set MAPE: 5.20% +2024-07-19 15:12:55.724 [22/validate_model/273 (pid 13549)] INFO:__main__:Test image saved at metaflow_models//bgd_education_5001_10000_LSTM//test_bgd_education_5001_10000_LSTM.png +2024-07-19 15:12:56.170 [22/validate_model/273 (pid 13549)] Task finished successfully. +2024-07-19 15:12:56.197 [22/log_model/274 (pid 13567)] Task is starting. +2024-07-19 15:12:57.706 [22/log_model/274 (pid 13567)] INFO:__main__:Logging model bgd_education_5001_10000_LSTM +2024-07-19 15:12:57.708 [22/log_model/274 (pid 13567)] INFO:__main__:Model logged at metaflow_models//bgd_education_5001_10000_LSTM//bgd_education_5001_10000_LSTM.pth +2024-07-19 15:13:01.619 [22/log_model/274 (pid 13567)] Task finished successfully. +2024-07-19 15:13:01.641 [22/end/275 (pid 13593)] Task is starting. +2024-07-19 15:13:03.151 [22/end/275 (pid 13593)] INFO:__main__:Pipeline end. +2024-07-19 15:13:03.457 [22/end/275 (pid 13593)] Task finished successfully. +2024-07-19 15:13:03.457 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/22') succeeded: +-- stdout -- +2024-07-19 15:10:00.570 Workflow starting (run-id 22): +2024-07-19 15:10:00.652 [22/start/263 (pid 12711)] Task is starting. +2024-07-19 15:10:02.379 [22/start/263 (pid 12711)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 15:10:02.693 [22/start/263 (pid 12711)] Task finished successfully. +2024-07-19 15:10:02.742 [22/ingest/264 (pid 12727)] Task is starting. +2024-07-19 15:10:04.329 [22/ingest/264 (pid 12727)] INFO:__main__:Fetching dataframe.. +2024-07-19 15:10:04.345 [22/ingest/264 (pid 12727)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 15:10:08.934 [22/ingest/264 (pid 12727)] Task finished successfully. +2024-07-19 15:10:08.968 [22/pick_2017_data/265 (pid 12774)] Task is starting. +2024-07-19 15:10:10.528 [22/pick_2017_data/265 (pid 12774)] INFO:__main__:Picking 2017 data.. +2024-07-19 15:10:10.875 [22/pick_2017_data/265 (pid 12774)] Task finished successfully. +2024-07-19 15:10:10.907 [22/fill_missing_data/266 (pid 12785)] Task is starting. +2024-07-19 15:10:12.527 [22/fill_missing_data/266 (pid 12785)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 15:10:12.532 [22/fill_missing_data/266 (pid 12785)] INFO:__main__:NaN counts per column: +2024-07-19 15:10:12.532 [22/fill_missing_data/266 (pid 12785)] INFO:__main__:Panther_education_Tina 10 +2024-07-19 15:10:12.533 [22/fill_missing_data/266 (pid 12785)] Panther_education_Violet 12 +2024-07-19 15:10:12.533 [22/fill_missing_data/266 (pid 12785)] Panther_education_Rosalie 20 +2024-07-19 15:10:12.533 [22/fill_missing_data/266 (pid 12785)] Panther_education_Mattie 12 +2024-07-19 15:10:12.533 [22/fill_missing_data/266 (pid 12785)] dtype: int64 +2024-07-19 15:10:12.533 [22/fill_missing_data/266 (pid 12785)] --- Logging error --- +2024-07-19 15:10:12.533 [22/fill_missing_data/266 (pid 12785)] Traceback (most recent call last): +2024-07-19 15:10:12.533 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] msg = self.format(record) +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] return fmt.format(record) +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] record.message = record.getMessage() +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] msg = msg % self.args +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] TypeError: not all arguments converted during string formatting +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] Call stack: +2024-07-19 15:10:12.535 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 15:10:12.899 [22/fill_missing_data/266 (pid 12785)] BGD_LinearFlow() +2024-07-19 15:10:12.899 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] cli.main(self) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] return func(*args, **kwargs) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] return self.main(*args, **kwargs) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] rv = self.invoke(ctx) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] return callback(*args, **kwargs) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] return f(get_current_context(), *args, **kwargs) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] task.run_step( +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] self._exec_step_function(step_func) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] step_function() +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] self.missing_values = find_nan_counts(self.df) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 15:10:12.900 [22/fill_missing_data/266 (pid 12785)] Arguments: (54,) +2024-07-19 15:10:12.901 [22/fill_missing_data/266 (pid 12785)] Task finished successfully. +2024-07-19 15:10:12.930 [22/find_median/267 (pid 12796)] Task is starting. +2024-07-19 15:10:14.519 [22/find_median/267 (pid 12796)] INFO:__main__:Computing and using median.. +2024-07-19 15:10:15.125 [22/find_median/267 (pid 12796)] Task finished successfully. +2024-07-19 15:10:15.155 [22/aggregate_data/268 (pid 12813)] Task is starting. +2024-07-19 15:10:16.799 [22/aggregate_data/268 (pid 12813)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 15:10:20.912 [22/aggregate_data/268 (pid 12813)] Task finished successfully. +2024-07-19 15:10:20.946 [22/split_data/269 (pid 12854)] Task is starting. +2024-07-19 15:10:22.501 [22/split_data/269 (pid 12854)] INFO:__main__:Splitting data into test and train... +2024-07-19 15:10:26.578 [22/split_data/269 (pid 12854)] Task finished successfully. +2024-07-19 15:10:26.606 [22/make_x_y/270 (pid 12894)] Task is starting. +2024-07-19 15:10:28.443 [22/make_x_y/270 (pid 12894)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 15:10:28.759 [22/make_x_y/270 (pid 12894)] Shape of y_train: (6978, 1) +2024-07-19 15:10:28.759 [22/make_x_y/270 (pid 12894)] Shape of X_test: (1722, 30, 1) +2024-07-19 15:10:28.759 [22/make_x_y/270 (pid 12894)] Shape of y_test: (1722, 1) +2024-07-19 15:10:28.760 [22/make_x_y/270 (pid 12894)] Task finished successfully. +2024-07-19 15:10:28.793 [22/cross_validate_train/271 (pid 12905)] Task is starting. +2024-07-19 15:10:30.389 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Creating bgd_education_5001_10000_LSTM +2024-07-19 15:10:30.389 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Performing cross validation.. +2024-07-19 15:10:31.132 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 1/50, Train Loss: 0.3487904154368349, Val Loss: 0.1504301108621262 +2024-07-19 15:10:31.332 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 2/50, Train Loss: 0.09340324947560155, Val Loss: 0.08491465152316802 +2024-07-19 15:10:31.544 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 3/50, Train Loss: 0.07783375670378273, Val Loss: 0.082628423599778 +2024-07-19 15:10:31.752 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 4/50, Train Loss: 0.07650642660824028, Val Loss: 0.08107676930926941 +2024-07-19 15:10:31.965 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 5/50, Train Loss: 0.07670790188618608, Val Loss: 0.08035511251639675 +2024-07-19 15:10:32.176 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 6/50, Train Loss: 0.07590082338130152, Val Loss: 0.07932477575298902 +2024-07-19 15:10:32.388 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 7/50, Train Loss: 0.07532332364369083, Val Loss: 0.07838830130325782 +2024-07-19 15:10:32.588 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 8/50, Train Loss: 0.07464778101122058, Val Loss: 0.07737573659097827 +2024-07-19 15:10:32.799 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 9/50, Train Loss: 0.07379440459850672, Val Loss: 0.07668808585888631 +2024-07-19 15:10:33.016 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 10/50, Train Loss: 0.07260349005259373, Val Loss: 0.07567230340194057 +2024-07-19 15:10:33.214 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 11/50, Train Loss: 0.0718116899197166, Val Loss: 0.07489042829822849 +2024-07-19 15:10:33.422 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 12/50, Train Loss: 0.07034623154715912, Val Loss: 0.07391841780092265 +2024-07-19 15:10:33.617 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 13/50, Train Loss: 0.06868604928053715, Val Loss: 0.0720488540828228 +2024-07-19 15:10:33.818 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 14/50, Train Loss: 0.06671070725329824, Val Loss: 0.07029609372084206 +2024-07-19 15:10:34.012 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 15/50, Train Loss: 0.06538589746766799, Val Loss: 0.06809610772777248 +2024-07-19 15:10:34.217 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 16/50, Train Loss: 0.06315951502403698, Val Loss: 0.06687925625089053 +2024-07-19 15:10:34.420 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 17/50, Train Loss: 0.06168301292770618, Val Loss: 0.06411383975599264 +2024-07-19 15:10:34.617 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 18/50, Train Loss: 0.06024628807161305, Val Loss: 0.0629259442054742 +2024-07-19 15:10:34.815 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 19/50, Train Loss: 0.059225483671636193, Val Loss: 0.061034959162006505 +2024-07-19 15:10:35.009 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 20/50, Train Loss: 0.05785547836205444, Val Loss: 0.06034675008944563 +2024-07-19 15:10:35.219 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 21/50, Train Loss: 0.05737052414868329, Val Loss: 0.05853705480694771 +2024-07-19 15:10:35.445 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 22/50, Train Loss: 0.05558143299375031, Val Loss: 0.058853896083058535 +2024-07-19 15:10:35.663 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 23/50, Train Loss: 0.055037673713790404, Val Loss: 0.05674528577239127 +2024-07-19 15:10:35.879 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 24/50, Train Loss: 0.05369116340738696, Val Loss: 0.056209664389088344 +2024-07-19 15:10:36.087 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 25/50, Train Loss: 0.05300505851974358, Val Loss: 0.055508738081600215 +2024-07-19 15:10:36.308 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 26/50, Train Loss: 0.052146601616530806, Val Loss: 0.054467023526494567 +2024-07-19 15:10:36.533 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 27/50, Train Loss: 0.05121068731957191, Val Loss: 0.05335619109305176 +2024-07-19 15:10:36.748 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 28/50, Train Loss: 0.05096253586580624, Val Loss: 0.05388949046263824 +2024-07-19 15:10:37.004 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 29/50, Train Loss: 0.04984778925977849, Val Loss: 0.05221237680195151 +2024-07-19 15:10:37.202 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 30/50, Train Loss: 0.04908293072839041, Val Loss: 0.05149212086925636 +2024-07-19 15:10:37.400 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 31/50, Train Loss: 0.04975529125816113, Val Loss: 0.05158027180948773 +2024-07-19 15:10:37.596 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 32/50, Train Loss: 0.04901315609144198, Val Loss: 0.05183861213358673 +2024-07-19 15:10:37.793 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 33/50, Train Loss: 0.048300844038257726, Val Loss: 0.050710358682113724 +2024-07-19 15:10:37.993 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 34/50, Train Loss: 0.04895899560604546, Val Loss: 0.052186801928926156 +2024-07-19 15:10:38.195 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 35/50, Train Loss: 0.047960403853574314, Val Loss: 0.05128908117075224 +2024-07-19 15:10:38.394 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 36/50, Train Loss: 0.04808366545350165, Val Loss: 0.05132395406631199 +2024-07-19 15:10:38.594 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 37/50, Train Loss: 0.04762807100809909, Val Loss: 0.05062181336452832 +2024-07-19 15:10:38.789 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 38/50, Train Loss: 0.04779931303818483, Val Loss: 0.05067729778789185 +2024-07-19 15:10:38.988 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 39/50, Train Loss: 0.04816585889941937, Val Loss: 0.051764180380347614 +2024-07-19 15:10:39.188 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 40/50, Train Loss: 0.04735021454256934, Val Loss: 0.05055617606519042 +2024-07-19 15:10:39.405 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 41/50, Train Loss: 0.04797505043648385, Val Loss: 0.05122975164369957 +2024-07-19 15:10:39.608 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 42/50, Train Loss: 0.04753807796215689, Val Loss: 0.05070727872284683 +2024-07-19 15:10:39.803 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 43/50, Train Loss: 0.04759061271073045, Val Loss: 0.05110738209977343 +2024-07-19 15:10:40.000 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 44/50, Train Loss: 0.047405727006293634, Val Loss: 0.0509474599683607 +2024-07-19 15:10:40.201 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 45/50, Train Loss: 0.04754896290801667, Val Loss: 0.051303979865199814 +2024-07-19 15:10:40.396 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 46/50, Train Loss: 0.04737412984910849, Val Loss: 0.051359351925753256 +2024-07-19 15:10:40.592 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 47/50, Train Loss: 0.047604108732697124, Val Loss: 0.051579277106636276 +2024-07-19 15:10:40.789 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 48/50, Train Loss: 0.04735458461014, Val Loss: 0.0516742950657735 +2024-07-19 15:10:40.984 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 49/50, Train Loss: 0.04715056430447746, Val Loss: 0.05111607899134223 +2024-07-19 15:10:41.183 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 50/50, Train Loss: 0.04750083628538493, Val Loss: 0.05175612126854626 +2024-07-19 15:10:41.184 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Fold 0, MAPE: 6.00% +2024-07-19 15:10:41.620 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Training image saved at metaflow_models//bgd_education_5001_10000_LSTM//train_f0_bgd_education_5001_10000_LSTM.png +2024-07-19 15:10:42.052 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 1/50, Train Loss: 0.05059656084910648, Val Loss: 0.057493295067468204 +2024-07-19 15:10:42.446 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 2/50, Train Loss: 0.04969321303579905, Val Loss: 0.05810776237096336 +2024-07-19 15:10:42.825 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 3/50, Train Loss: 0.049622093442164054, Val Loss: 0.05794822651188116 +2024-07-19 15:10:43.222 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 4/50, Train Loss: 0.049395672339078496, Val Loss: 0.0577692174025484 +2024-07-19 15:10:43.595 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 5/50, Train Loss: 0.049498164796665925, Val Loss: 0.05733054539037717 +2024-07-19 15:10:43.961 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 6/50, Train Loss: 0.04926028227663203, Val Loss: 0.05746247775449946 +2024-07-19 15:10:44.331 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 7/50, Train Loss: 0.04922693118146838, Val Loss: 0.05741252724987429 +2024-07-19 15:10:44.690 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 8/50, Train Loss: 0.04906437729727732, Val Loss: 0.05741158067374616 +2024-07-19 15:10:45.057 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 9/50, Train Loss: 0.049083572544463695, Val Loss: 0.0574535489384387 +2024-07-19 15:10:45.424 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 10/50, Train Loss: 0.04901219090472345, Val Loss: 0.05762440197773882 +2024-07-19 15:10:45.794 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 11/50, Train Loss: 0.048959042290098044, Val Loss: 0.05763734987861401 +2024-07-19 15:10:46.175 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 12/50, Train Loss: 0.04903369634220862, Val Loss: 0.05767469430291975 +2024-07-19 15:10:46.526 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 13/50, Train Loss: 0.04900267069572455, Val Loss: 0.05764214598850624 +2024-07-19 15:10:46.872 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 14/50, Train Loss: 0.048855506419523125, Val Loss: 0.05769586900400149 +2024-07-19 15:10:47.233 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 15/50, Train Loss: 0.048891203477978706, Val Loss: 0.05790531917198284 +2024-07-19 15:10:47.586 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 16/50, Train Loss: 0.04889597095651169, Val Loss: 0.057899804383113575 +2024-07-19 15:10:47.933 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 17/50, Train Loss: 0.04888358510622423, Val Loss: 0.057995293138397706 +2024-07-19 15:10:48.305 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 18/50, Train Loss: 0.04873545865898263, Val Loss: 0.058106158532806346 +2024-07-19 15:10:48.730 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 19/50, Train Loss: 0.04875120643067033, Val Loss: 0.058290008354831384 +2024-07-19 15:10:49.102 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 20/50, Train Loss: 0.048641615024168194, Val Loss: 0.05866750591510051 +2024-07-19 15:10:49.470 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 21/50, Train Loss: 0.04858094076179478, Val Loss: 0.05889026282002797 +2024-07-19 15:10:49.876 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 22/50, Train Loss: 0.04883179229314197, Val Loss: 0.05888204034921285 +2024-07-19 15:10:50.250 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 23/50, Train Loss: 0.048552926859422904, Val Loss: 0.05919763501230124 +2024-07-19 15:10:50.621 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 24/50, Train Loss: 0.04860855289415954, Val Loss: 0.059116051809207815 +2024-07-19 15:10:50.988 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 25/50, Train Loss: 0.04865241096648451, Val Loss: 0.05925729266695074 +2024-07-19 15:10:51.377 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 26/50, Train Loss: 0.04863018693070706, Val Loss: 0.059003060029165166 +2024-07-19 15:10:51.751 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 27/50, Train Loss: 0.0487934508144039, Val Loss: 0.05989403695472189 +2024-07-19 15:10:52.105 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 28/50, Train Loss: 0.04847320796896334, Val Loss: 0.06242378554432779 +2024-07-19 15:10:52.501 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 29/50, Train Loss: 0.0484741875927334, Val Loss: 0.06038292764207801 +2024-07-19 15:10:52.901 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 30/50, Train Loss: 0.04880496650321843, Val Loss: 0.06114622829733668 +2024-07-19 15:10:53.313 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 31/50, Train Loss: 0.04850423598840629, Val Loss: 0.06180701591074467 +2024-07-19 15:10:53.668 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 32/50, Train Loss: 0.048693890823689225, Val Loss: 0.06217515735408744 +2024-07-19 15:10:54.027 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 33/50, Train Loss: 0.048408557546057114, Val Loss: 0.062307246583136355 +2024-07-19 15:10:54.437 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 34/50, Train Loss: 0.04866637603367028, Val Loss: 0.0632708550909081 +2024-07-19 15:10:54.813 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 35/50, Train Loss: 0.048672153627219265, Val Loss: 0.06346366735729012 +2024-07-19 15:10:55.172 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 36/50, Train Loss: 0.04861849048876599, Val Loss: 0.06334673890189545 +2024-07-19 15:10:55.539 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 37/50, Train Loss: 0.048998501075253095, Val Loss: 0.06264763436204679 +2024-07-19 15:10:55.911 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 38/50, Train Loss: 0.04882617567806211, Val Loss: 0.06296071178607039 +2024-07-19 15:10:56.282 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 39/50, Train Loss: 0.04884231261500757, Val Loss: 0.06256756458330799 +2024-07-19 15:10:56.636 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 40/50, Train Loss: 0.04875835613028644, Val Loss: 0.06325563858892466 +2024-07-19 15:10:56.992 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 41/50, Train Loss: 0.048736309173376596, Val Loss: 0.06254016899982014 +2024-07-19 15:10:57.343 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 42/50, Train Loss: 0.048663782262026445, Val Loss: 0.06217189042552097 +2024-07-19 15:10:57.696 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 43/50, Train Loss: 0.048670462166813956, Val Loss: 0.06316189180958916 +2024-07-19 15:10:58.049 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 44/50, Train Loss: 0.04876111075282097, Val Loss: 0.06345348981385296 +2024-07-19 15:10:58.427 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 45/50, Train Loss: 0.04865489137193112, Val Loss: 0.06172856295833717 +2024-07-19 15:10:58.781 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 46/50, Train Loss: 0.04865222630945787, Val Loss: 0.06372426676790456 +2024-07-19 15:10:59.134 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 47/50, Train Loss: 0.04863773908925383, Val Loss: 0.06222041062003857 +2024-07-19 15:10:59.498 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 48/50, Train Loss: 0.04846549261208266, Val Loss: 0.06130375879237781 +2024-07-19 15:10:59.851 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 49/50, Train Loss: 0.0485233496619414, Val Loss: 0.06163823675062206 +2024-07-19 15:11:00.191 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 50/50, Train Loss: 0.04847267014931326, Val Loss: 0.0615316218621022 +2024-07-19 15:11:00.191 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Fold 1, MAPE: 6.06% +2024-07-19 15:11:00.300 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Training image saved at metaflow_models//bgd_education_5001_10000_LSTM//train_f1_bgd_education_5001_10000_LSTM.png +2024-07-19 15:11:00.800 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 1/50, Train Loss: 0.04351865490051833, Val Loss: 0.036987850392186966 +2024-07-19 15:11:01.300 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 2/50, Train Loss: 0.0433236080983823, Val Loss: 0.037215989234076964 +2024-07-19 15:11:01.867 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 3/50, Train Loss: 0.04322988504374569, Val Loss: 0.03654429210802993 +2024-07-19 15:11:02.355 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 4/50, Train Loss: 0.04316884170879017, Val Loss: 0.03664320093151685 +2024-07-19 15:11:02.841 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 5/50, Train Loss: 0.04325219291177663, Val Loss: 0.03642050403396826 +2024-07-19 15:11:03.332 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 6/50, Train Loss: 0.04305639661509882, Val Loss: 0.03651475966782183 +2024-07-19 15:11:03.849 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 7/50, Train Loss: 0.042962233603677964, Val Loss: 0.03629917591004758 +2024-07-19 15:11:04.349 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 8/50, Train Loss: 0.0428357977589423, Val Loss: 0.036241511185024236 +2024-07-19 15:11:04.859 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 9/50, Train Loss: 0.04256549064408649, Val Loss: 0.03544857594612483 +2024-07-19 15:11:05.358 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 10/50, Train Loss: 0.04242854319851507, Val Loss: 0.03531738763322701 +2024-07-19 15:11:05.861 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 11/50, Train Loss: 0.04249353688210249, Val Loss: 0.0349110323130279 +2024-07-19 15:11:06.396 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 12/50, Train Loss: 0.04232751308855685, Val Loss: 0.03458774381795445 +2024-07-19 15:11:06.951 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 13/50, Train Loss: 0.042342298630286344, Val Loss: 0.03466787289928745 +2024-07-19 15:11:07.447 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 14/50, Train Loss: 0.04235396051610058, Val Loss: 0.034559022735905005 +2024-07-19 15:11:07.941 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 15/50, Train Loss: 0.04213389591737227, Val Loss: 0.03456200815334513 +2024-07-19 15:11:08.566 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 16/50, Train Loss: 0.042025525613941926, Val Loss: 0.034445005846587384 +2024-07-19 15:11:09.135 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 17/50, Train Loss: 0.04206157680600882, Val Loss: 0.034529130251423734 +2024-07-19 15:11:09.652 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 18/50, Train Loss: 0.042033792050047356, Val Loss: 0.034520219508055096 +2024-07-19 15:11:10.211 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 19/50, Train Loss: 0.04194038071754304, Val Loss: 0.03497170853252347 +2024-07-19 15:11:10.768 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 20/50, Train Loss: 0.042211821624501183, Val Loss: 0.03454244650296263 +2024-07-19 15:11:11.279 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 21/50, Train Loss: 0.041918563588776374, Val Loss: 0.03440668116751555 +2024-07-19 15:11:11.807 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 22/50, Train Loss: 0.04212061329321428, Val Loss: 0.03479244862053845 +2024-07-19 15:11:12.302 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 23/50, Train Loss: 0.04213415201414715, Val Loss: 0.03446698098166569 +2024-07-19 15:11:12.822 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 24/50, Train Loss: 0.04191137582741, Val Loss: 0.0352108352188323 +2024-07-19 15:11:13.312 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 25/50, Train Loss: 0.042279496941376817, Val Loss: 0.03515172689347654 +2024-07-19 15:11:13.820 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 26/50, Train Loss: 0.04216502490030093, Val Loss: 0.035050387670462195 +2024-07-19 15:11:14.331 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 27/50, Train Loss: 0.042185641740533436, Val Loss: 0.03494572684772917 +2024-07-19 15:11:14.863 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 28/50, Train Loss: 0.04214919101108204, Val Loss: 0.03496171423309558 +2024-07-19 15:11:15.383 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 29/50, Train Loss: 0.04206794197247787, Val Loss: 0.03475051861558411 +2024-07-19 15:11:15.893 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 30/50, Train Loss: 0.04216929310086098, Val Loss: 0.03461622391399499 +2024-07-19 15:11:16.420 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 31/50, Train Loss: 0.04208563066680323, Val Loss: 0.034639692135356566 +2024-07-19 15:11:16.916 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 32/50, Train Loss: 0.04206010426648638, Val Loss: 0.034469002706779016 +2024-07-19 15:11:17.409 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 33/50, Train Loss: 0.04202188527719541, Val Loss: 0.034494200671041336 +2024-07-19 15:11:17.914 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 34/50, Train Loss: 0.042123368636450984, Val Loss: 0.03459805350851368 +2024-07-19 15:11:18.410 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 35/50, Train Loss: 0.042009697973050854, Val Loss: 0.034616380577554576 +2024-07-19 15:11:18.899 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 36/50, Train Loss: 0.042153183387761764, Val Loss: 0.03471291523326088 +2024-07-19 15:11:19.394 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 37/50, Train Loss: 0.04204243629832159, Val Loss: 0.03450568443214571 +2024-07-19 15:11:19.893 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 38/50, Train Loss: 0.04188624093817039, Val Loss: 0.03461770406244574 +2024-07-19 15:11:20.389 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 39/50, Train Loss: 0.041951438564468514, Val Loss: 0.03482657414231751 +2024-07-19 15:11:20.882 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 40/50, Train Loss: 0.04190851578658277, Val Loss: 0.034792008985941474 +2024-07-19 15:11:21.382 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 41/50, Train Loss: 0.04196537555280057, Val Loss: 0.034491760203161755 +2024-07-19 15:11:21.886 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 42/50, Train Loss: 0.041855541261082346, Val Loss: 0.034008726527964744 +2024-07-19 15:11:22.371 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 43/50, Train Loss: 0.04174457465044477, Val Loss: 0.03436646862207232 +2024-07-19 15:11:22.879 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 44/50, Train Loss: 0.041726655089719726, Val Loss: 0.03422879729721997 +2024-07-19 15:11:23.378 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 45/50, Train Loss: 0.041738862713629546, Val Loss: 0.03435019368456828 +2024-07-19 15:11:23.865 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 46/50, Train Loss: 0.04163034781813622, Val Loss: 0.03463690586992212 +2024-07-19 15:11:24.411 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 47/50, Train Loss: 0.04170433242212642, Val Loss: 0.03430263013453097 +2024-07-19 15:11:24.920 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 48/50, Train Loss: 0.04161461193791845, Val Loss: 0.034713874948588574 +2024-07-19 15:11:25.453 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 49/50, Train Loss: 0.041594751145352014, Val Loss: 0.03401326725410449 +2024-07-19 15:11:25.955 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 50/50, Train Loss: 0.04153529893268238, Val Loss: 0.0341580935527344 +2024-07-19 15:11:25.955 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Fold 2, MAPE: 3.91% +2024-07-19 15:11:26.068 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Training image saved at metaflow_models//bgd_education_5001_10000_LSTM//train_f2_bgd_education_5001_10000_LSTM.png +2024-07-19 15:11:26.745 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 1/50, Train Loss: 0.039861112118583834, Val Loss: 0.03616976254695171 +2024-07-19 15:11:27.412 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 2/50, Train Loss: 0.03974616132064225, Val Loss: 0.03696948868801465 +2024-07-19 15:11:28.113 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 3/50, Train Loss: 0.03985189293090203, Val Loss: 0.03533843673161558 +2024-07-19 15:11:28.785 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 4/50, Train Loss: 0.0397933748716565, Val Loss: 0.03541259452499248 +2024-07-19 15:11:29.498 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 5/50, Train Loss: 0.03984071130621923, Val Loss: 0.03542895751023615 +2024-07-19 15:11:30.169 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 6/50, Train Loss: 0.039890401741515286, Val Loss: 0.03586760837886784 +2024-07-19 15:11:30.816 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 7/50, Train Loss: 0.039799066439066846, Val Loss: 0.03617530759121921 +2024-07-19 15:11:31.451 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 8/50, Train Loss: 0.039772400543195745, Val Loss: 0.03557591986011814 +2024-07-19 15:11:32.113 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 9/50, Train Loss: 0.03977034197584407, Val Loss: 0.035944028228924084 +2024-07-19 15:11:32.747 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 10/50, Train Loss: 0.03983600719589485, Val Loss: 0.03600195885912792 +2024-07-19 15:11:33.425 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 11/50, Train Loss: 0.039622358429207374, Val Loss: 0.03570799398663882 +2024-07-19 15:11:34.063 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 12/50, Train Loss: 0.0397005648007744, Val Loss: 0.035688913150413615 +2024-07-19 15:11:34.898 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 13/50, Train Loss: 0.03959829207152536, Val Loss: 0.0356857682502753 +2024-07-19 15:11:35.616 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 14/50, Train Loss: 0.039608156474383725, Val Loss: 0.03599809533035433 +2024-07-19 15:11:36.284 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 15/50, Train Loss: 0.03969136221104697, Val Loss: 0.03561291586909745 +2024-07-19 15:11:37.017 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 16/50, Train Loss: 0.03953535833128103, Val Loss: 0.03595681896282209 +2024-07-19 15:11:37.832 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 17/50, Train Loss: 0.039670541665631616, Val Loss: 0.035918739951542905 +2024-07-19 15:11:38.471 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 18/50, Train Loss: 0.03975558131678055, Val Loss: 0.03564240531744184 +2024-07-19 15:11:39.171 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 19/50, Train Loss: 0.039641810160079234, Val Loss: 0.035790090323299974 +2024-07-19 15:11:39.852 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 20/50, Train Loss: 0.03960740771654942, Val Loss: 0.03611077891813742 +2024-07-19 15:11:40.544 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 21/50, Train Loss: 0.0396191133441378, Val Loss: 0.03552875773528138 +2024-07-19 15:11:41.264 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 22/50, Train Loss: 0.03945863829951172, Val Loss: 0.0358195591818642 +2024-07-19 15:11:41.977 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 23/50, Train Loss: 0.03948297268672757, Val Loss: 0.035697450962018325 +2024-07-19 15:11:42.670 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 24/50, Train Loss: 0.039397193820611257, Val Loss: 0.03632051261091555 +2024-07-19 15:11:43.366 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 25/50, Train Loss: 0.03940406527166089, Val Loss: 0.03605685821054755 +2024-07-19 15:11:44.057 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 26/50, Train Loss: 0.03949548233912824, Val Loss: 0.03540676535182708 +2024-07-19 15:11:44.736 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 27/50, Train Loss: 0.03936952612783811, Val Loss: 0.03591281467595616 +2024-07-19 15:11:45.440 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 28/50, Train Loss: 0.0394295166080741, Val Loss: 0.03578155351853048 +2024-07-19 15:11:46.171 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 29/50, Train Loss: 0.03942108307390997, Val Loss: 0.03586573626946758 +2024-07-19 15:11:46.868 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 30/50, Train Loss: 0.039371693902330036, Val Loss: 0.035706437872471034 +2024-07-19 15:11:47.499 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 31/50, Train Loss: 0.03936243919681196, Val Loss: 0.0358820208725897 +2024-07-19 15:11:48.131 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 32/50, Train Loss: 0.0393949085463808, Val Loss: 0.03545384416104974 +2024-07-19 15:11:48.760 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 33/50, Train Loss: 0.03925470497510205, Val Loss: 0.03539790681286438 +2024-07-19 15:11:49.424 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 34/50, Train Loss: 0.03935407612421741, Val Loss: 0.035723214314596075 +2024-07-19 15:11:50.137 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 35/50, Train Loss: 0.039318720542200626, Val Loss: 0.03589929323140029 +2024-07-19 15:11:50.841 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 36/50, Train Loss: 0.03942132084183905, Val Loss: 0.035950738282219785 +2024-07-19 15:11:51.564 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 37/50, Train Loss: 0.03947174068132084, Val Loss: 0.03537022820799737 +2024-07-19 15:11:52.281 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 38/50, Train Loss: 0.03948195725169084, Val Loss: 0.03520747978945036 +2024-07-19 15:11:53.009 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 39/50, Train Loss: 0.03937058860104378, Val Loss: 0.0350287659848864 +2024-07-19 15:11:53.726 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 40/50, Train Loss: 0.039289502312161335, Val Loss: 0.03526764443597278 +2024-07-19 15:11:54.433 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 41/50, Train Loss: 0.03914090812410394, Val Loss: 0.03527663965281602 +2024-07-19 15:11:55.156 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 42/50, Train Loss: 0.039213000567094106, Val Loss: 0.03545380157192011 +2024-07-19 15:11:55.809 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 43/50, Train Loss: 0.0392457152755089, Val Loss: 0.03586274622058546 +2024-07-19 15:11:56.450 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 44/50, Train Loss: 0.03925484076958813, Val Loss: 0.03563839695542245 +2024-07-19 15:11:57.088 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 45/50, Train Loss: 0.03915623114252948, Val Loss: 0.03555101689857405 +2024-07-19 15:11:57.726 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 46/50, Train Loss: 0.03918478220114357, Val Loss: 0.0357494630120896 +2024-07-19 15:11:58.366 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 47/50, Train Loss: 0.039113346589346454, Val Loss: 0.035672878645159105 +2024-07-19 15:11:59.007 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 48/50, Train Loss: 0.03920330996433758, Val Loss: 0.03558997976014743 +2024-07-19 15:11:59.646 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 49/50, Train Loss: 0.03933352677228108, Val Loss: 0.03559948544244509 +2024-07-19 15:12:00.296 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 50/50, Train Loss: 0.03926029614466306, Val Loss: 0.03520782578837227 +2024-07-19 15:12:00.296 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Fold 3, MAPE: 3.79% +2024-07-19 15:12:00.415 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Training image saved at metaflow_models//bgd_education_5001_10000_LSTM//train_f3_bgd_education_5001_10000_LSTM.png +2024-07-19 15:12:01.276 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 1/50, Train Loss: 0.03830476451132979, Val Loss: 0.03763174366306614 +2024-07-19 15:12:02.205 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 2/50, Train Loss: 0.03828347166283773, Val Loss: 0.03852455182051336 +2024-07-19 15:12:03.100 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 3/50, Train Loss: 0.03825940015715557, Val Loss: 0.04018378091623654 +2024-07-19 15:12:03.946 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 4/50, Train Loss: 0.038258554987036265, Val Loss: 0.038875672764874795 +2024-07-19 15:12:04.828 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 5/50, Train Loss: 0.03828805466029015, Val Loss: 0.041510407536013705 +2024-07-19 15:12:05.719 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 6/50, Train Loss: 0.0382633215369104, Val Loss: 0.03773089860742156 +2024-07-19 15:12:06.542 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 7/50, Train Loss: 0.03825469659948415, Val Loss: 0.037893222493899835 +2024-07-19 15:12:07.448 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 8/50, Train Loss: 0.038220773021189064, Val Loss: 0.03780871831082009 +2024-07-19 15:12:08.281 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 9/50, Train Loss: 0.03823311753816657, Val Loss: 0.03820976730738137 +2024-07-19 15:12:09.223 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 10/50, Train Loss: 0.038264117479979334, Val Loss: 0.03820127782386702 +2024-07-19 15:12:10.067 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 11/50, Train Loss: 0.03814569940524442, Val Loss: 0.03833132836262922 +2024-07-19 15:12:10.905 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 12/50, Train Loss: 0.03827244918384067, Val Loss: 0.03877945047979419 +2024-07-19 15:12:11.694 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 13/50, Train Loss: 0.03814185472143875, Val Loss: 0.04062368846624284 +2024-07-19 15:12:12.527 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 14/50, Train Loss: 0.03831108552045547, Val Loss: 0.040933774733865586 +2024-07-19 15:12:13.389 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 15/50, Train Loss: 0.0382036315021361, Val Loss: 0.04082049801945686 +2024-07-19 15:12:14.310 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 16/50, Train Loss: 0.03810891701461195, Val Loss: 0.04466696340288665 +2024-07-19 15:12:15.240 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 17/50, Train Loss: 0.038219915119583135, Val Loss: 0.047445919112981974 +2024-07-19 15:12:16.118 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 18/50, Train Loss: 0.038191597478894085, Val Loss: 0.058710678556078186 +2024-07-19 15:12:17.067 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 19/50, Train Loss: 0.038161262132964294, Val Loss: 0.0465041820362613 +2024-07-19 15:12:17.887 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 20/50, Train Loss: 0.03819928821790349, Val Loss: 0.06850599160266889 +2024-07-19 15:12:18.722 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 21/50, Train Loss: 0.03801273723429704, Val Loss: 0.044121586742836075 +2024-07-19 15:12:19.560 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 22/50, Train Loss: 0.038281563096321546, Val Loss: 0.0648588431445328 +2024-07-19 15:12:20.385 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 23/50, Train Loss: 0.03823446910214293, Val Loss: 0.039053502769486326 +2024-07-19 15:12:21.272 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 24/50, Train Loss: 0.038173682312225246, Val Loss: 0.03910364406938489 +2024-07-19 15:12:22.192 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 25/50, Train Loss: 0.03800107679933637, Val Loss: 0.040842715348746325 +2024-07-19 15:12:23.057 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 26/50, Train Loss: 0.0379967940766569, Val Loss: 0.040404544237094955 +2024-07-19 15:12:23.896 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 27/50, Train Loss: 0.03797568973399453, Val Loss: 0.0396288581494544 +2024-07-19 15:12:24.850 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 28/50, Train Loss: 0.03803582408639428, Val Loss: 0.045553652519309845 +2024-07-19 15:12:25.667 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 29/50, Train Loss: 0.038130681009983625, Val Loss: 0.03937398672506616 +2024-07-19 15:12:26.478 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 30/50, Train Loss: 0.0381206041816008, Val Loss: 0.039080611304254144 +2024-07-19 15:12:27.300 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 31/50, Train Loss: 0.03793556905341345, Val Loss: 0.03814727702253574 +2024-07-19 15:12:28.171 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 32/50, Train Loss: 0.03793709851023588, Val Loss: 0.03786872397806194 +2024-07-19 15:12:29.098 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 33/50, Train Loss: 0.03791558071152194, Val Loss: 0.03785846009850502 +2024-07-19 15:12:29.949 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 34/50, Train Loss: 0.03788399009627628, Val Loss: 0.03800928114435157 +2024-07-19 15:12:30.780 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 35/50, Train Loss: 0.037933932791290044, Val Loss: 0.03838725755544933 +2024-07-19 15:12:31.592 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 36/50, Train Loss: 0.03787803410419396, Val Loss: 0.03835957562802611 +2024-07-19 15:12:32.441 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 37/50, Train Loss: 0.03789826468206369, Val Loss: 0.03884112960784822 +2024-07-19 15:12:33.256 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 38/50, Train Loss: 0.03778490352515991, Val Loss: 0.03996003424195019 +2024-07-19 15:12:34.144 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 39/50, Train Loss: 0.03789105330808805, Val Loss: 0.039600158714362094 +2024-07-19 15:12:35.032 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 40/50, Train Loss: 0.037827471588421, Val Loss: 0.04023261529368323 +2024-07-19 15:12:35.888 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 41/50, Train Loss: 0.037812309370345465, Val Loss: 0.04154009412269335 +2024-07-19 15:12:36.780 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 42/50, Train Loss: 0.03781538487381333, Val Loss: 0.04267935923023804 +2024-07-19 15:12:37.558 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 43/50, Train Loss: 0.03782996432958068, Val Loss: 0.048008259335482445 +2024-07-19 15:12:38.393 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 44/50, Train Loss: 0.03772278159733985, Val Loss: 0.05039336879712504 +2024-07-19 15:12:39.239 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 45/50, Train Loss: 0.03769157154506052, Val Loss: 0.055008542648441086 +2024-07-19 15:12:40.098 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 46/50, Train Loss: 0.03770810581620906, Val Loss: 0.05103882115233589 +2024-07-19 15:12:40.958 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 47/50, Train Loss: 0.037926605462536706, Val Loss: 0.040663577565872994 +2024-07-19 15:12:41.841 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 48/50, Train Loss: 0.03783335611940576, Val Loss: 0.03810556313476047 +2024-07-19 15:12:42.639 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 49/50, Train Loss: 0.037658705427260186, Val Loss: 0.04046885523240309 +2024-07-19 15:12:43.445 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Epoch 50/50, Train Loss: 0.03768136729435115, Val Loss: 0.04362055996583926 +2024-07-19 15:12:43.446 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Fold 4, MAPE: 5.56% +2024-07-19 15:12:43.542 [22/cross_validate_train/271 (pid 12905)] INFO:__main__:Training image saved at metaflow_models//bgd_education_5001_10000_LSTM//train_f4_bgd_education_5001_10000_LSTM.png +2024-07-19 15:12:47.936 [22/cross_validate_train/271 (pid 12905)] Task finished successfully. +2024-07-19 15:12:47.965 [22/model_scores/272 (pid 13522)] Task is starting. +2024-07-19 15:12:49.428 [22/model_scores/272 (pid 13522)] INFO:__main__:Average Train Loss across all folds: 0.042890093761278954 +2024-07-19 15:12:53.620 [22/model_scores/272 (pid 13522)] INFO:__main__:Average Validation Loss across all folds: 0.045254844487518875 +2024-07-19 15:12:53.620 [22/model_scores/272 (pid 13522)] INFO:__main__:Average MAPE across all folds: 5.06% +2024-07-19 15:12:53.621 [22/model_scores/272 (pid 13522)] Task finished successfully. +2024-07-19 15:12:53.652 [22/validate_model/273 (pid 13549)] Task is starting. +2024-07-19 15:12:55.166 [22/validate_model/273 (pid 13549)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 15:12:55.321 [22/validate_model/273 (pid 13549)] INFO:__main__:Test Set MAPE: 5.20% +2024-07-19 15:12:55.724 [22/validate_model/273 (pid 13549)] INFO:__main__:Test image saved at metaflow_models//bgd_education_5001_10000_LSTM//test_bgd_education_5001_10000_LSTM.png +2024-07-19 15:12:56.170 [22/validate_model/273 (pid 13549)] Task finished successfully. +2024-07-19 15:12:56.197 [22/log_model/274 (pid 13567)] Task is starting. +2024-07-19 15:12:57.706 [22/log_model/274 (pid 13567)] INFO:__main__:Logging model bgd_education_5001_10000_LSTM +2024-07-19 15:12:57.708 [22/log_model/274 (pid 13567)] INFO:__main__:Model logged at metaflow_models//bgd_education_5001_10000_LSTM//bgd_education_5001_10000_LSTM.pth +2024-07-19 15:13:01.619 [22/log_model/274 (pid 13567)] Task finished successfully. +2024-07-19 15:13:01.641 [22/end/275 (pid 13593)] Task is starting. +2024-07-19 15:13:03.151 [22/end/275 (pid 13593)] INFO:__main__:Pipeline end. +2024-07-19 15:13:03.457 [22/end/275 (pid 13593)] Task finished successfully. +2024-07-19 15:13:03.457 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/scaler_bgd_education_5001_10000_LSTM.pkl b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/scaler_bgd_education_5001_10000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..02bef2fa0365982eade1cf1f9c6eab06f60a0e8a --- /dev/null +++ b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/scaler_bgd_education_5001_10000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e587156e784151fd9dc930ba583611242389924eabfaef2f3216c2978834554 +size 557 diff --git a/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/test_bgd_education_5001_10000_LSTM.png b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/test_bgd_education_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..2f37e6a1cdd7b162f80f76668e209069d48f130f Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/test_bgd_education_5001_10000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f0_bgd_education_5001_10000_LSTM.png b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f0_bgd_education_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..21340be3b3ff4b74cbb6d4bd9d2ef80f5fb70977 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f0_bgd_education_5001_10000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f1_bgd_education_5001_10000_LSTM.png b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f1_bgd_education_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..8f57728a037129bc842785d1a1b66f3f110e7b26 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f1_bgd_education_5001_10000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f2_bgd_education_5001_10000_LSTM.png b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f2_bgd_education_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..b21262833a583e41932fc1bc5c3dc24e7eaeeb93 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f2_bgd_education_5001_10000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f3_bgd_education_5001_10000_LSTM.png b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f3_bgd_education_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..6d38d7f1a6be1b45f2fd0f059f7655a5bbd50c39 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f3_bgd_education_5001_10000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f4_bgd_education_5001_10000_LSTM.png b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f4_bgd_education_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..b5b98c51e9568e7418a3dca61254e8653885d9b8 Binary files /dev/null and b/metaflow_models_30hrs/bgd_education_5001_10000_LSTM/train_f4_bgd_education_5001_10000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/bgd_lodging_residential_100001_200000_LSTM.pth b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/bgd_lodging_residential_100001_200000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..864a82ebc41e1755b456e5f36c4b836e7b1b1197 --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/bgd_lodging_residential_100001_200000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9378a1011a4814ee84463effff112ce16b06be9fe0d8bdc1e6f707a8173b78 +size 47078 diff --git a/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/output.txt b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8903f1a08ae7237147101d8cfadd5a4adb3ba53 --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/output.txt @@ -0,0 +1,736 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:32:54.229 Workflow starting (run-id 10): +2024-07-19 14:32:54.316 [10/start/95 (pid 2265)] Task is starting. +2024-07-19 14:32:55.831 [10/start/95 (pid 2265)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:32:56.134 [10/start/95 (pid 2265)] Task finished successfully. +2024-07-19 14:32:56.166 [10/ingest/96 (pid 2282)] Task is starting. +2024-07-19 14:32:57.639 [10/ingest/96 (pid 2282)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:32:57.656 [10/ingest/96 (pid 2282)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:33:01.585 [10/ingest/96 (pid 2282)] Task finished successfully. +2024-07-19 14:33:01.616 [10/pick_2017_data/97 (pid 2315)] Task is starting. +2024-07-19 14:33:03.085 [10/pick_2017_data/97 (pid 2315)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:33:03.404 [10/pick_2017_data/97 (pid 2315)] Task finished successfully. +2024-07-19 14:33:03.434 [10/fill_missing_data/98 (pid 2326)] Task is starting. +2024-07-19 14:33:04.891 [10/fill_missing_data/98 (pid 2326)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] INFO:__main__:NaN counts per column: +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] INFO:__main__:Panther_lodging_Cora 11 +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] Cockatoo_lodging_Kyle 113 +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] Cockatoo_lodging_Lynne 113 +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] Cockatoo_lodging_Tessie 116 +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] Cockatoo_lodging_Elvia 113 +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] dtype: int64 +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] --- Logging error --- +2024-07-19 14:33:04.897 [10/fill_missing_data/98 (pid 2326)] Traceback (most recent call last): +2024-07-19 14:33:04.897 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:33:04.898 [10/fill_missing_data/98 (pid 2326)] msg = self.format(record) +2024-07-19 14:33:04.898 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] return fmt.format(record) +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] record.message = record.getMessage() +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] msg = msg % self.args +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] TypeError: not all arguments converted during string formatting +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] Call stack: +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] BGD_LinearFlow() +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] cli.main(self) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] return func(*args, **kwargs) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] return self.main(*args, **kwargs) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] rv = self.invoke(ctx) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] return callback(*args, **kwargs) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] task.run_step( +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] self._exec_step_function(step_func) +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] step_function() +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] Arguments: (466,) +2024-07-19 14:33:05.517 [10/fill_missing_data/98 (pid 2326)] Task finished successfully. +2024-07-19 14:33:05.548 [10/find_median/99 (pid 2343)] Task is starting. +2024-07-19 14:33:07.024 [10/find_median/99 (pid 2343)] INFO:__main__:Computing and using median.. +2024-07-19 14:33:07.549 [10/find_median/99 (pid 2343)] Task finished successfully. +2024-07-19 14:33:07.579 [10/aggregate_data/100 (pid 2354)] Task is starting. +2024-07-19 14:33:09.048 [10/aggregate_data/100 (pid 2354)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:33:12.940 [10/aggregate_data/100 (pid 2354)] Task finished successfully. +2024-07-19 14:33:12.973 [10/split_data/101 (pid 2393)] Task is starting. +2024-07-19 14:33:14.431 [10/split_data/101 (pid 2393)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:33:18.267 [10/split_data/101 (pid 2393)] Task finished successfully. +2024-07-19 14:33:18.301 [10/make_x_y/102 (pid 2432)] Task is starting. +2024-07-19 14:33:20.133 [10/make_x_y/102 (pid 2432)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:33:20.469 [10/make_x_y/102 (pid 2432)] Shape of y_train: (6978, 1) +2024-07-19 14:33:20.469 [10/make_x_y/102 (pid 2432)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:33:20.469 [10/make_x_y/102 (pid 2432)] Shape of y_test: (1722, 1) +2024-07-19 14:33:20.470 [10/make_x_y/102 (pid 2432)] Task finished successfully. +2024-07-19 14:33:20.534 [10/cross_validate_train/103 (pid 2449)] Task is starting. +2024-07-19 14:33:21.993 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Creating bgd_lodging_residential_100001_200000_LSTM +2024-07-19 14:33:21.993 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Performing cross validation.. +2024-07-19 14:33:22.727 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 1/50, Train Loss: 0.2573811939439258, Val Loss: 0.19799737511454402 +2024-07-19 14:33:22.944 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 2/50, Train Loss: 0.2861157847014633, Val Loss: 0.24014876687244788 +2024-07-19 14:33:23.160 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 3/50, Train Loss: 0.20471928993592392, Val Loss: 0.17790830920676928 +2024-07-19 14:33:23.376 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 4/50, Train Loss: 0.21670476306934613, Val Loss: 0.16203984819553993 +2024-07-19 14:33:23.593 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 5/50, Train Loss: 0.190302662350036, Val Loss: 0.1550289358238916 +2024-07-19 14:33:23.804 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 6/50, Train Loss: 0.16718786038659714, Val Loss: 0.12302181829471846 +2024-07-19 14:33:24.022 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 7/50, Train Loss: 0.12875765652672663, Val Loss: 0.08952840256529886 +2024-07-19 14:33:24.242 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 8/50, Train Loss: 0.1109078952891601, Val Loss: 0.08153894734946457 +2024-07-19 14:33:24.459 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 9/50, Train Loss: 0.1033513162385773, Val Loss: 0.0807091179933097 +2024-07-19 14:33:24.675 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 10/50, Train Loss: 0.09656934173324623, Val Loss: 0.0746792224613396 +2024-07-19 14:33:24.890 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 11/50, Train Loss: 0.08781669545616652, Val Loss: 0.07266800981518384 +2024-07-19 14:33:25.104 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 12/50, Train Loss: 0.08484031687918547, Val Loss: 0.07062664718644039 +2024-07-19 14:33:25.334 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 13/50, Train Loss: 0.08002983144408948, Val Loss: 0.06898082017495825 +2024-07-19 14:33:25.559 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 14/50, Train Loss: 0.07793076185358537, Val Loss: 0.06649795456512554 +2024-07-19 14:33:25.780 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 15/50, Train Loss: 0.0728721776222055, Val Loss: 0.06597167293767671 +2024-07-19 14:33:25.998 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 16/50, Train Loss: 0.07215847090088032, Val Loss: 0.062297465632090696 +2024-07-19 14:33:26.219 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 17/50, Train Loss: 0.06651475632915625, Val Loss: 0.06167202936233701 +2024-07-19 14:33:26.478 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 18/50, Train Loss: 0.06568669175376764, Val Loss: 0.061185842430269394 +2024-07-19 14:33:26.736 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 19/50, Train Loss: 0.06525149035292703, Val Loss: 0.05747682319299595 +2024-07-19 14:33:26.972 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 20/50, Train Loss: 0.05996825319488306, Val Loss: 0.05936352999226467 +2024-07-19 14:33:27.211 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 21/50, Train Loss: 0.061967764301477254, Val Loss: 0.05694101398458352 +2024-07-19 14:33:27.457 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 22/50, Train Loss: 0.05910016319437607, Val Loss: 0.057054399135144984 +2024-07-19 14:33:27.697 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 23/50, Train Loss: 0.06015087165743918, Val Loss: 0.05422223767114652 +2024-07-19 14:33:27.926 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 24/50, Train Loss: 0.05742470411634123, Val Loss: 0.05556834811294401 +2024-07-19 14:33:28.172 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 25/50, Train Loss: 0.059927924309630655, Val Loss: 0.05280016694922705 +2024-07-19 14:33:28.397 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 26/50, Train Loss: 0.05679566659838767, Val Loss: 0.05346729364749547 +2024-07-19 14:33:28.621 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 27/50, Train Loss: 0.05875947014302821, Val Loss: 0.05094328875074516 +2024-07-19 14:33:28.854 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 28/50, Train Loss: 0.05320432122696091, Val Loss: 0.05132568275203576 +2024-07-19 14:33:29.084 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 29/50, Train Loss: 0.05600680652502421, Val Loss: 0.049829640601937834 +2024-07-19 14:33:29.309 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 30/50, Train Loss: 0.05247801064035377, Val Loss: 0.049890498655873375 +2024-07-19 14:33:29.549 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 31/50, Train Loss: 0.05445269600966492, Val Loss: 0.05058373984050106 +2024-07-19 14:33:29.780 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 32/50, Train Loss: 0.052858366555458794, Val Loss: 0.048826257723408775 +2024-07-19 14:33:29.998 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 33/50, Train Loss: 0.05173354424737595, Val Loss: 0.04932535842463777 +2024-07-19 14:33:30.236 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 34/50, Train Loss: 0.05146582681383636, Val Loss: 0.0484187872828664 +2024-07-19 14:33:30.465 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 35/50, Train Loss: 0.05120470908445281, Val Loss: 0.04824176209198462 +2024-07-19 14:33:30.711 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 36/50, Train Loss: 0.05117703682264766, Val Loss: 0.04876224404653987 +2024-07-19 14:33:30.941 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 37/50, Train Loss: 0.05128818267100566, Val Loss: 0.04833808833280125 +2024-07-19 14:33:31.156 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 38/50, Train Loss: 0.05100205258743183, Val Loss: 0.04841460126477319 +2024-07-19 14:33:31.377 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 39/50, Train Loss: 0.05101989748308788, Val Loss: 0.04806516057736165 +2024-07-19 14:33:31.598 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 40/50, Train Loss: 0.050551115258319956, Val Loss: 0.048292268772383 +2024-07-19 14:33:31.809 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 41/50, Train Loss: 0.04983730327237297, Val Loss: 0.048138622496579145 +2024-07-19 14:33:32.056 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 42/50, Train Loss: 0.049155937105014515, Val Loss: 0.04807241401962332 +2024-07-19 14:33:32.310 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 43/50, Train Loss: 0.04905465824177136, Val Loss: 0.047694772280551294 +2024-07-19 14:33:32.542 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 44/50, Train Loss: 0.048746399329723536, Val Loss: 0.04791803355958011 +2024-07-19 14:33:32.764 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 45/50, Train Loss: 0.048621983493904807, Val Loss: 0.04825325068589803 +2024-07-19 14:33:33.005 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 46/50, Train Loss: 0.04846501335300304, Val Loss: 0.0484875505034988 +2024-07-19 14:33:33.254 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 47/50, Train Loss: 0.048770432989742304, Val Loss: 0.04874212747892818 +2024-07-19 14:33:33.498 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 48/50, Train Loss: 0.047429986600134824, Val Loss: 0.04946420090021314 +2024-07-19 14:33:33.727 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 49/50, Train Loss: 0.047217497300054576, Val Loss: 0.04875623616012367 +2024-07-19 14:33:33.957 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 50/50, Train Loss: 0.046792368731788686, Val Loss: 0.048129238389633795 +2024-07-19 14:33:33.957 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Fold 0, MAPE: 4.37% +2024-07-19 14:33:34.328 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_100001_200000_LSTM//train_f0_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-19 14:33:34.792 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 1/50, Train Loss: 0.04509227615717339, Val Loss: 0.05696136272839598 +2024-07-19 14:33:35.156 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 2/50, Train Loss: 0.04646247285992315, Val Loss: 0.05902135291615048 +2024-07-19 14:33:35.523 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 3/50, Train Loss: 0.0473019539901655, Val Loss: 0.06343375196730769 +2024-07-19 14:33:35.909 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 4/50, Train Loss: 0.05275238948325588, Val Loss: 0.059156341125836245 +2024-07-19 14:33:36.273 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 5/50, Train Loss: 0.05520044435581116, Val Loss: 0.05675755622419151 +2024-07-19 14:33:36.634 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 6/50, Train Loss: 0.05240481150374837, Val Loss: 0.05922456276980606 +2024-07-19 14:33:36.993 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 7/50, Train Loss: 0.05162840050785509, Val Loss: 0.05786572588053909 +2024-07-19 14:33:37.353 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 8/50, Train Loss: 0.05210674385706039, Val Loss: 0.058198504653331394 +2024-07-19 14:33:37.713 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 9/50, Train Loss: 0.051825111400182935, Val Loss: 0.05521349528351346 +2024-07-19 14:33:38.078 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 10/50, Train Loss: 0.05088270470908243, Val Loss: 0.05461119769795521 +2024-07-19 14:33:38.442 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 11/50, Train Loss: 0.05102203457220776, Val Loss: 0.054217997334293416 +2024-07-19 14:33:38.818 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 12/50, Train Loss: 0.05052648459191192, Val Loss: 0.05357316126291816 +2024-07-19 14:33:39.181 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 13/50, Train Loss: 0.04914705131253968, Val Loss: 0.05371196356576842 +2024-07-19 14:33:39.559 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 14/50, Train Loss: 0.04956822127920307, Val Loss: 0.05281391407589655 +2024-07-19 14:33:39.919 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 15/50, Train Loss: 0.049389219013591334, Val Loss: 0.05251947599085602 +2024-07-19 14:33:40.285 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 16/50, Train Loss: 0.04909107665697189, Val Loss: 0.052636399361732845 +2024-07-19 14:33:40.698 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 17/50, Train Loss: 0.04829962577109467, Val Loss: 0.051558889750693296 +2024-07-19 14:33:41.100 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 18/50, Train Loss: 0.0476569508853024, Val Loss: 0.05089269638866992 +2024-07-19 14:33:41.510 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 19/50, Train Loss: 0.04744248365192381, Val Loss: 0.05081585331543072 +2024-07-19 14:33:41.902 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 20/50, Train Loss: 0.04715360058088825, Val Loss: 0.05095733762592883 +2024-07-19 14:33:42.326 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 21/50, Train Loss: 0.047139998321255594, Val Loss: 0.05133241737211073 +2024-07-19 14:33:42.718 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 22/50, Train Loss: 0.04684354788432383, Val Loss: 0.05059955067731239 +2024-07-19 14:33:43.097 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 23/50, Train Loss: 0.04667676365232631, Val Loss: 0.04989242302002134 +2024-07-19 14:33:43.486 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 24/50, Train Loss: 0.04639195023130064, Val Loss: 0.05103528056595776 +2024-07-19 14:33:43.862 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 25/50, Train Loss: 0.04677984228179063, Val Loss: 0.05082252802881035 +2024-07-19 14:33:44.227 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 26/50, Train Loss: 0.04651250207975303, Val Loss: 0.04907901796537477 +2024-07-19 14:33:44.595 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 27/50, Train Loss: 0.0460850759983471, Val Loss: 0.04942148329841124 +2024-07-19 14:33:44.957 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 28/50, Train Loss: 0.04617395637276238, Val Loss: 0.04962686157307109 +2024-07-19 14:33:45.316 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 29/50, Train Loss: 0.046237831220847285, Val Loss: 0.04948954686925218 +2024-07-19 14:33:45.679 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 30/50, Train Loss: 0.046263058606075914, Val Loss: 0.04939768523783297 +2024-07-19 14:33:46.075 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 31/50, Train Loss: 0.04621487391525752, Val Loss: 0.04951760736671654 +2024-07-19 14:33:46.442 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 32/50, Train Loss: 0.04601116248801963, Val Loss: 0.04937346732696971 +2024-07-19 14:33:46.811 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 33/50, Train Loss: 0.046132425433152345, Val Loss: 0.04871187681281889 +2024-07-19 14:33:47.172 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 34/50, Train Loss: 0.04594283895439481, Val Loss: 0.04961626040371689 +2024-07-19 14:33:47.536 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 35/50, Train Loss: 0.04620335003590747, Val Loss: 0.049111592407162126 +2024-07-19 14:33:47.896 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 36/50, Train Loss: 0.045716329745642124, Val Loss: 0.04860172843610918 +2024-07-19 14:33:48.259 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 37/50, Train Loss: 0.04590722377577873, Val Loss: 0.04818460748002336 +2024-07-19 14:33:48.621 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 38/50, Train Loss: 0.04549825905937038, Val Loss: 0.04799199285539421 +2024-07-19 14:33:48.980 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 39/50, Train Loss: 0.04573384695367454, Val Loss: 0.04813226574176067 +2024-07-19 14:33:49.343 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 40/50, Train Loss: 0.045958389693947686, Val Loss: 0.04950860193049585 +2024-07-19 14:33:49.702 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 41/50, Train Loss: 0.04632531147297114, Val Loss: 0.047438796307589556 +2024-07-19 14:33:50.069 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 42/50, Train Loss: 0.045161308184878464, Val Loss: 0.04761744290590286 +2024-07-19 14:33:50.433 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 43/50, Train Loss: 0.04542806282741566, Val Loss: 0.04768953220667066 +2024-07-19 14:33:50.805 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 44/50, Train Loss: 0.04569692621390297, Val Loss: 0.04792256542556995 +2024-07-19 14:33:51.172 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 45/50, Train Loss: 0.04547579254801959, Val Loss: 0.046943553849249274 +2024-07-19 14:33:51.540 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 46/50, Train Loss: 0.04534915140638613, Val Loss: 0.04751953110098839 +2024-07-19 14:33:51.916 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 47/50, Train Loss: 0.04494637230487719, Val Loss: 0.047982834380220725 +2024-07-19 14:33:52.316 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 48/50, Train Loss: 0.04507813061753364, Val Loss: 0.04696608254232922 +2024-07-19 14:33:52.683 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 49/50, Train Loss: 0.04467794824748823, Val Loss: 0.046434786120379296 +2024-07-19 14:33:53.047 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 50/50, Train Loss: 0.04406891528465976, Val Loss: 0.04628705394429129 +2024-07-19 14:33:53.047 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Fold 1, MAPE: 4.19% +2024-07-19 14:33:53.167 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_100001_200000_LSTM//train_f1_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-19 14:33:53.722 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 1/50, Train Loss: 0.04341753391040997, Val Loss: 0.03108349271320008 +2024-07-19 14:33:54.232 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 2/50, Train Loss: 0.04382453799586405, Val Loss: 0.0299971645345559 +2024-07-19 14:33:54.797 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 3/50, Train Loss: 0.04357163646173748, Val Loss: 0.03008815968358839 +2024-07-19 14:33:55.309 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 4/50, Train Loss: 0.04338470965793187, Val Loss: 0.030303960565376927 +2024-07-19 14:33:55.824 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 5/50, Train Loss: 0.04343328903513876, Val Loss: 0.029988518890899582 +2024-07-19 14:33:56.360 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 6/50, Train Loss: 0.043376367107372395, Val Loss: 0.0300306070948372 +2024-07-19 14:33:56.926 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 7/50, Train Loss: 0.04338979565284469, Val Loss: 0.030138049903955008 +2024-07-19 14:33:57.472 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 8/50, Train Loss: 0.04303521823815324, Val Loss: 0.03007934081393319 +2024-07-19 14:33:57.995 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 9/50, Train Loss: 0.04331441775641658, Val Loss: 0.03007807663163623 +2024-07-19 14:33:58.544 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 10/50, Train Loss: 0.04294809494167566, Val Loss: 0.030035984828262717 +2024-07-19 14:33:59.053 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 11/50, Train Loss: 0.04520178796215491, Val Loss: 0.030531415061370748 +2024-07-19 14:33:59.569 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 12/50, Train Loss: 0.04306827092712576, Val Loss: 0.031171413792951685 +2024-07-19 14:34:00.097 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 13/50, Train Loss: 0.04315109584819187, Val Loss: 0.030016540121790523 +2024-07-19 14:34:00.658 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 14/50, Train Loss: 0.04411133509129286, Val Loss: 0.03169097398986687 +2024-07-19 14:34:01.192 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 15/50, Train Loss: 0.04304625408893282, Val Loss: 0.03216131645682696 +2024-07-19 14:34:01.749 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 16/50, Train Loss: 0.04332552274519747, Val Loss: 0.03052255657274981 +2024-07-19 14:34:02.328 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 17/50, Train Loss: 0.04248787475411187, Val Loss: 0.030128364577083976 +2024-07-19 14:34:02.863 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 18/50, Train Loss: 0.044398518304594535, Val Loss: 0.030438782798277365 +2024-07-19 14:34:03.395 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 19/50, Train Loss: 0.042729468796063555, Val Loss: 0.03207257349748869 +2024-07-19 14:34:03.924 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 20/50, Train Loss: 0.042634900845587256, Val Loss: 0.030033528225848805 +2024-07-19 14:34:04.460 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 21/50, Train Loss: 0.04378917279907248, Val Loss: 0.03052592491479339 +2024-07-19 14:34:04.996 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 22/50, Train Loss: 0.04263532586734403, Val Loss: 0.03094188670149526 +2024-07-19 14:34:05.533 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 23/50, Train Loss: 0.04230915042148395, Val Loss: 0.030662640727855062 +2024-07-19 14:34:06.061 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 24/50, Train Loss: 0.043862968784841624, Val Loss: 0.029967466822347126 +2024-07-19 14:34:06.599 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 25/50, Train Loss: 0.04257384244013916, Val Loss: 0.032374766881804205 +2024-07-19 14:34:07.135 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 26/50, Train Loss: 0.042502477849749004, Val Loss: 0.031100728372867044 +2024-07-19 14:34:07.668 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 27/50, Train Loss: 0.04233722257512537, Val Loss: 0.03129772877169622 +2024-07-19 14:34:08.204 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 28/50, Train Loss: 0.044108813349157575, Val Loss: 0.029778122876745625 +2024-07-19 14:34:08.744 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 29/50, Train Loss: 0.042232865603132684, Val Loss: 0.03267512420142019 +2024-07-19 14:34:09.305 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 30/50, Train Loss: 0.042573344842954115, Val Loss: 0.02991558691939792 +2024-07-19 14:34:09.849 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 31/50, Train Loss: 0.04205864638259465, Val Loss: 0.03133021803522432 +2024-07-19 14:34:10.387 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 32/50, Train Loss: 0.04356130279431289, Val Loss: 0.029625317308346968 +2024-07-19 14:34:10.944 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 33/50, Train Loss: 0.04191952246156606, Val Loss: 0.03294246497790556 +2024-07-19 14:34:11.498 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 34/50, Train Loss: 0.042447859235107896, Val Loss: 0.029924624977079598 +2024-07-19 14:34:12.037 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 35/50, Train Loss: 0.041734946417537604, Val Loss: 0.031116992411379878 +2024-07-19 14:34:12.589 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 36/50, Train Loss: 0.04183719994669611, Val Loss: 0.030441715784773633 +2024-07-19 14:34:13.133 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 37/50, Train Loss: 0.042753187380731104, Val Loss: 0.029915336594992393 +2024-07-19 14:34:13.664 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 38/50, Train Loss: 0.04175446980040182, Val Loss: 0.03019020429535492 +2024-07-19 14:34:14.235 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 39/50, Train Loss: 0.04156257134269584, Val Loss: 0.029454949035032374 +2024-07-19 14:34:14.743 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 40/50, Train Loss: 0.04134900158440525, Val Loss: 0.02948619765103669 +2024-07-19 14:34:15.254 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 41/50, Train Loss: 0.04369904028082436, Val Loss: 0.029430188968576288 +2024-07-19 14:34:15.761 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 42/50, Train Loss: 0.04154352486472238, Val Loss: 0.02986443812984067 +2024-07-19 14:34:16.302 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 43/50, Train Loss: 0.04334551512517713, Val Loss: 0.0292778094424992 +2024-07-19 14:34:16.853 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 44/50, Train Loss: 0.041387116519564934, Val Loss: 0.029688116263698886 +2024-07-19 14:34:17.400 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 45/50, Train Loss: 0.04124918896704912, Val Loss: 0.029293235366207523 +2024-07-19 14:34:17.937 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 46/50, Train Loss: 0.04103752054612745, Val Loss: 0.029333973479633395 +2024-07-19 14:34:18.487 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 47/50, Train Loss: 0.042911402525549584, Val Loss: 0.029179326585821203 +2024-07-19 14:34:19.028 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 48/50, Train Loss: 0.04124896395951509, Val Loss: 0.02923876658786793 +2024-07-19 14:34:19.568 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 49/50, Train Loss: 0.04143574156544425, Val Loss: 0.02924339979182224 +2024-07-19 14:34:20.106 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 50/50, Train Loss: 0.04335399823771282, Val Loss: 0.029126500761186756 +2024-07-19 14:34:20.106 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Fold 2, MAPE: 3.85% +2024-07-19 14:34:20.209 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_100001_200000_LSTM//train_f2_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-19 14:34:20.932 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 1/50, Train Loss: 0.03735884237549689, Val Loss: 0.03568957959981384 +2024-07-19 14:34:21.644 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 2/50, Train Loss: 0.03755025665773309, Val Loss: 0.0352322784428661 +2024-07-19 14:34:22.351 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 3/50, Train Loss: 0.037321216803146144, Val Loss: 0.034852608283226554 +2024-07-19 14:34:23.042 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 4/50, Train Loss: 0.03713877501655115, Val Loss: 0.03513498679810279 +2024-07-19 14:34:23.735 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 5/50, Train Loss: 0.037336448711432414, Val Loss: 0.03497902392032179 +2024-07-19 14:34:24.436 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 6/50, Train Loss: 0.03741391503239331, Val Loss: 0.034894341023991235 +2024-07-19 14:34:25.124 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 7/50, Train Loss: 0.03720490360147741, Val Loss: 0.034624363824322414 +2024-07-19 14:34:25.848 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 8/50, Train Loss: 0.03714081439610622, Val Loss: 0.034433690101109644 +2024-07-19 14:34:26.567 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 9/50, Train Loss: 0.036708191719722665, Val Loss: 0.03382578187596959 +2024-07-19 14:34:27.260 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 10/50, Train Loss: 0.03700590834710492, Val Loss: 0.033826775748181985 +2024-07-19 14:34:27.923 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 11/50, Train Loss: 0.03664426138139751, Val Loss: 0.033584722418438746 +2024-07-19 14:34:28.589 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 12/50, Train Loss: 0.03697125419132309, Val Loss: 0.03375495206312956 +2024-07-19 14:34:29.253 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 13/50, Train Loss: 0.03720701243473242, Val Loss: 0.033458447285197875 +2024-07-19 14:34:29.914 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 14/50, Train Loss: 0.036797895485356655, Val Loss: 0.03380175616994903 +2024-07-19 14:34:30.602 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 15/50, Train Loss: 0.036960055407340806, Val Loss: 0.03373280598001706 +2024-07-19 14:34:31.321 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 16/50, Train Loss: 0.03704932293127457, Val Loss: 0.034132947415314814 +2024-07-19 14:34:32.044 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 17/50, Train Loss: 0.03712014602624798, Val Loss: 0.033748254419077896 +2024-07-19 14:34:32.754 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 18/50, Train Loss: 0.0370296578318493, Val Loss: 0.03362920441085825 +2024-07-19 14:34:33.473 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 19/50, Train Loss: 0.036947974731048494, Val Loss: 0.03388785238604288 +2024-07-19 14:34:34.157 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 20/50, Train Loss: 0.03707128164218101, Val Loss: 0.033810941351426614 +2024-07-19 14:34:34.854 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 21/50, Train Loss: 0.037235256616179255, Val Loss: 0.0339963718543987 +2024-07-19 14:34:35.544 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 22/50, Train Loss: 0.037510447956825774, Val Loss: 0.03464516413372916 +2024-07-19 14:34:36.232 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 23/50, Train Loss: 0.037245782468570014, Val Loss: 0.03381995695668298 +2024-07-19 14:34:36.934 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 24/50, Train Loss: 0.03687213829476131, Val Loss: 0.03339177211494865 +2024-07-19 14:34:37.637 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 25/50, Train Loss: 0.036604501568546444, Val Loss: 0.03364221454673522 +2024-07-19 14:34:38.344 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 26/50, Train Loss: 0.03675786501485599, Val Loss: 0.03342270561670129 +2024-07-19 14:34:39.030 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 27/50, Train Loss: 0.03642838241608992, Val Loss: 0.033457025168211876 +2024-07-19 14:34:39.762 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 28/50, Train Loss: 0.036670719630608, Val Loss: 0.03344099513078864 +2024-07-19 14:34:40.466 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 29/50, Train Loss: 0.036520875901085874, Val Loss: 0.033807256208682385 +2024-07-19 14:34:41.170 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 30/50, Train Loss: 0.036739103094202606, Val Loss: 0.0335389293503721 +2024-07-19 14:34:41.882 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 31/50, Train Loss: 0.03675526442414481, Val Loss: 0.0332918906383015 +2024-07-19 14:34:42.591 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 32/50, Train Loss: 0.036216421614158646, Val Loss: 0.033587579200094614 +2024-07-19 14:34:43.288 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 33/50, Train Loss: 0.036514263006871286, Val Loss: 0.03331601483797705 +2024-07-19 14:34:44.000 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 34/50, Train Loss: 0.036563289287972124, Val Loss: 0.03376253930902159 +2024-07-19 14:34:44.697 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 35/50, Train Loss: 0.036466067873757994, Val Loss: 0.03340123247707615 +2024-07-19 14:34:45.391 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 36/50, Train Loss: 0.0364148813197772, Val Loss: 0.032918875118264475 +2024-07-19 14:34:46.089 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 37/50, Train Loss: 0.03640070866972004, Val Loss: 0.03357711569028529 +2024-07-19 14:34:46.790 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 38/50, Train Loss: 0.03630105154716397, Val Loss: 0.032917512958315576 +2024-07-19 14:34:47.492 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 39/50, Train Loss: 0.036051463744003476, Val Loss: 0.03335896208630623 +2024-07-19 14:34:48.188 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 40/50, Train Loss: 0.03638444826874423, Val Loss: 0.03321909684234777 +2024-07-19 14:34:48.895 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 41/50, Train Loss: 0.03604304384159511, Val Loss: 0.032967246150144854 +2024-07-19 14:34:49.604 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 42/50, Train Loss: 0.035881315255920365, Val Loss: 0.03296195373341844 +2024-07-19 14:34:50.323 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 43/50, Train Loss: 0.03602960822491409, Val Loss: 0.03275288194669662 +2024-07-19 14:34:51.012 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 44/50, Train Loss: 0.03596000888780372, Val Loss: 0.03284994139008828 +2024-07-19 14:34:51.682 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 45/50, Train Loss: 0.035827257925619, Val Loss: 0.033000169988922974 +2024-07-19 14:34:52.354 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 46/50, Train Loss: 0.035739758479319615, Val Loss: 0.03315131611668983 +2024-07-19 14:34:53.024 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 47/50, Train Loss: 0.03564405781918601, Val Loss: 0.03289410348578885 +2024-07-19 14:34:53.692 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 48/50, Train Loss: 0.036294130302251204, Val Loss: 0.033448905344247014 +2024-07-19 14:34:54.367 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 49/50, Train Loss: 0.035483095252707805, Val Loss: 0.032359962855037804 +2024-07-19 14:34:55.031 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 50/50, Train Loss: 0.03600857857206505, Val Loss: 0.03310826758073794 +2024-07-19 14:34:55.031 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Fold 3, MAPE: 3.90% +2024-07-19 14:34:55.126 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_100001_200000_LSTM//train_f3_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-19 14:34:55.964 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 1/50, Train Loss: 0.034300964880877964, Val Loss: 0.04148340809184152 +2024-07-19 14:34:56.884 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 2/50, Train Loss: 0.03444018793691482, Val Loss: 0.041887375853351644 +2024-07-19 14:34:57.792 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 3/50, Train Loss: 0.033880549836085065, Val Loss: 0.04154592500747861 +2024-07-19 14:34:58.651 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 4/50, Train Loss: 0.03422069897783081, Val Loss: 0.04160289113988747 +2024-07-19 14:34:59.555 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 5/50, Train Loss: 0.03404267780370192, Val Loss: 0.041673823788359356 +2024-07-19 14:35:00.434 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 6/50, Train Loss: 0.03409880740506636, Val Loss: 0.041562739054898955 +2024-07-19 14:35:01.327 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 7/50, Train Loss: 0.034159214911306954, Val Loss: 0.041558633281572444 +2024-07-19 14:35:02.221 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 8/50, Train Loss: 0.034126938510031166, Val Loss: 0.04171160145385845 +2024-07-19 14:35:03.083 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 9/50, Train Loss: 0.034010889673871655, Val Loss: 0.04148724670144352 +2024-07-19 14:35:03.910 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 10/50, Train Loss: 0.03413820673281757, Val Loss: 0.04122658612558971 +2024-07-19 14:35:04.742 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 11/50, Train Loss: 0.03424024518968149, Val Loss: 0.04149726058381635 +2024-07-19 14:35:05.605 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 12/50, Train Loss: 0.033857918316293714, Val Loss: 0.04110004818318663 +2024-07-19 14:35:06.474 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 13/50, Train Loss: 0.034246849233878184, Val Loss: 0.041329613710577424 +2024-07-19 14:35:07.344 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 14/50, Train Loss: 0.034124327396237095, Val Loss: 0.04153471047411094 +2024-07-19 14:35:08.206 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 15/50, Train Loss: 0.034167851572139904, Val Loss: 0.041279991786624934 +2024-07-19 14:35:09.071 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 16/50, Train Loss: 0.03398356027133599, Val Loss: 0.0412844948571276 +2024-07-19 14:35:09.969 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 17/50, Train Loss: 0.03390078807433883, Val Loss: 0.04120256389315064 +2024-07-19 14:35:10.850 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 18/50, Train Loss: 0.0340883018715041, Val Loss: 0.04141043982393033 +2024-07-19 14:35:11.710 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 19/50, Train Loss: 0.033925941868961515, Val Loss: 0.04137840323351525 +2024-07-19 14:35:12.592 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 20/50, Train Loss: 0.03410529309198015, Val Loss: 0.042024088671078555 +2024-07-19 14:35:13.463 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 21/50, Train Loss: 0.034021028148644904, Val Loss: 0.041589165559491596 +2024-07-19 14:35:14.337 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 22/50, Train Loss: 0.03381004223374875, Val Loss: 0.0418233148552276 +2024-07-19 14:35:15.158 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 23/50, Train Loss: 0.03403580653133219, Val Loss: 0.04137243763417811 +2024-07-19 14:35:16.002 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 24/50, Train Loss: 0.03354149760299741, Val Loss: 0.041142631271803703 +2024-07-19 14:35:16.866 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 25/50, Train Loss: 0.0337231093045365, Val Loss: 0.04154422597305195 +2024-07-19 14:35:17.745 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 26/50, Train Loss: 0.03346743582809283, Val Loss: 0.04156209301908274 +2024-07-19 14:35:18.633 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 27/50, Train Loss: 0.03381021107434408, Val Loss: 0.04155943260805027 +2024-07-19 14:35:19.501 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 28/50, Train Loss: 0.03346416017982167, Val Loss: 0.04109151298935349 +2024-07-19 14:35:20.363 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 29/50, Train Loss: 0.033421736036601306, Val Loss: 0.04178621217205718 +2024-07-19 14:35:21.249 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 30/50, Train Loss: 0.033408594207715366, Val Loss: 0.04157645496967677 +2024-07-19 14:35:22.123 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 31/50, Train Loss: 0.03327919627990123, Val Loss: 0.04157169188397962 +2024-07-19 14:35:23.008 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 32/50, Train Loss: 0.033186102022447594, Val Loss: 0.04155635637407367 +2024-07-19 14:35:23.871 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 33/50, Train Loss: 0.03316930421259623, Val Loss: 0.04170583566096989 +2024-07-19 14:35:24.737 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 34/50, Train Loss: 0.03306234342424751, Val Loss: 0.04194515097785641 +2024-07-19 14:35:25.593 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 35/50, Train Loss: 0.03314690613750737, Val Loss: 0.04156076183190217 +2024-07-19 14:35:26.487 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 36/50, Train Loss: 0.03305056442987624, Val Loss: 0.041819613577949034 +2024-07-19 14:35:27.355 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 37/50, Train Loss: 0.03318412851409188, Val Loss: 0.04180518910288811 +2024-07-19 14:35:28.232 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 38/50, Train Loss: 0.033021281304472426, Val Loss: 0.04157909801280176 +2024-07-19 14:35:29.116 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 39/50, Train Loss: 0.03318325573435196, Val Loss: 0.04224841981320768 +2024-07-19 14:35:30.006 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 40/50, Train Loss: 0.033166146404775124, Val Loss: 0.04165615735424531 +2024-07-19 14:35:30.901 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 41/50, Train Loss: 0.03294309568949617, Val Loss: 0.041731564126707414 +2024-07-19 14:35:31.779 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 42/50, Train Loss: 0.03283292321989743, Val Loss: 0.041933025409643714 +2024-07-19 14:35:32.659 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 43/50, Train Loss: 0.0329109801793123, Val Loss: 0.041896709668877964 +2024-07-19 14:35:33.522 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 44/50, Train Loss: 0.03314066376629193, Val Loss: 0.04151706276713191 +2024-07-19 14:35:34.400 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 45/50, Train Loss: 0.033050373127520245, Val Loss: 0.04165739908411696 +2024-07-19 14:35:35.269 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 46/50, Train Loss: 0.03286443047409693, Val Loss: 0.041571314622824256 +2024-07-19 14:35:36.132 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 47/50, Train Loss: 0.03263554875329546, Val Loss: 0.04180756362306105 +2024-07-19 14:35:37.009 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 48/50, Train Loss: 0.0329316243667483, Val Loss: 0.042272731158378964 +2024-07-19 14:35:37.877 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 49/50, Train Loss: 0.03291638353123115, Val Loss: 0.041673440687559744 +2024-07-19 14:35:38.783 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 50/50, Train Loss: 0.03261963085905945, Val Loss: 0.04163251686337832 +2024-07-19 14:35:38.783 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Fold 4, MAPE: 3.95% +2024-07-19 14:35:38.905 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_100001_200000_LSTM//train_f4_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-19 14:35:43.230 [10/cross_validate_train/103 (pid 2449)] Task finished successfully. +2024-07-19 14:35:43.266 [10/model_scores/104 (pid 3052)] Task is starting. +2024-07-19 14:35:44.733 [10/model_scores/104 (pid 3052)] INFO:__main__:Average Train Loss across all folds: 0.04056869833705715 +2024-07-19 14:35:48.596 [10/model_scores/104 (pid 3052)] INFO:__main__:Average Validation Loss across all folds: 0.03965671550784562 +2024-07-19 14:35:48.597 [10/model_scores/104 (pid 3052)] INFO:__main__:Average MAPE across all folds: 4.05% +2024-07-19 14:35:48.597 [10/model_scores/104 (pid 3052)] Task finished successfully. +2024-07-19 14:35:48.626 [10/validate_model/105 (pid 3091)] Task is starting. +2024-07-19 14:35:50.088 [10/validate_model/105 (pid 3091)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:35:50.196 [10/validate_model/105 (pid 3091)] INFO:__main__:Test Set MAPE: 3.92% +2024-07-19 14:35:50.560 [10/validate_model/105 (pid 3091)] INFO:__main__:Test image saved at metaflow_models//bgd_lodging_residential_100001_200000_LSTM//test_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-19 14:35:50.991 [10/validate_model/105 (pid 3091)] Task finished successfully. +2024-07-19 14:35:51.022 [10/log_model/106 (pid 3103)] Task is starting. +2024-07-19 14:35:52.406 [10/log_model/106 (pid 3103)] INFO:__main__:Logging model bgd_lodging_residential_100001_200000_LSTM +2024-07-19 14:35:52.408 [10/log_model/106 (pid 3103)] INFO:__main__:Model logged at metaflow_models//bgd_lodging_residential_100001_200000_LSTM//bgd_lodging_residential_100001_200000_LSTM.pth +2024-07-19 14:35:56.240 [10/log_model/106 (pid 3103)] Task finished successfully. +2024-07-19 14:35:56.269 [10/end/107 (pid 3140)] Task is starting. +2024-07-19 14:35:57.750 [10/end/107 (pid 3140)] INFO:__main__:Pipeline end. +2024-07-19 14:35:58.077 [10/end/107 (pid 3140)] Task finished successfully. +2024-07-19 14:35:58.078 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/10') succeeded: +-- stdout -- +2024-07-19 14:32:54.229 Workflow starting (run-id 10): +2024-07-19 14:32:54.316 [10/start/95 (pid 2265)] Task is starting. +2024-07-19 14:32:55.831 [10/start/95 (pid 2265)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:32:56.134 [10/start/95 (pid 2265)] Task finished successfully. +2024-07-19 14:32:56.166 [10/ingest/96 (pid 2282)] Task is starting. +2024-07-19 14:32:57.639 [10/ingest/96 (pid 2282)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:32:57.656 [10/ingest/96 (pid 2282)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:33:01.585 [10/ingest/96 (pid 2282)] Task finished successfully. +2024-07-19 14:33:01.616 [10/pick_2017_data/97 (pid 2315)] Task is starting. +2024-07-19 14:33:03.085 [10/pick_2017_data/97 (pid 2315)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:33:03.404 [10/pick_2017_data/97 (pid 2315)] Task finished successfully. +2024-07-19 14:33:03.434 [10/fill_missing_data/98 (pid 2326)] Task is starting. +2024-07-19 14:33:04.891 [10/fill_missing_data/98 (pid 2326)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] INFO:__main__:NaN counts per column: +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] INFO:__main__:Panther_lodging_Cora 11 +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] Cockatoo_lodging_Kyle 113 +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] Cockatoo_lodging_Lynne 113 +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] Cockatoo_lodging_Tessie 116 +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] Cockatoo_lodging_Elvia 113 +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] dtype: int64 +2024-07-19 14:33:04.896 [10/fill_missing_data/98 (pid 2326)] --- Logging error --- +2024-07-19 14:33:04.897 [10/fill_missing_data/98 (pid 2326)] Traceback (most recent call last): +2024-07-19 14:33:04.897 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:33:04.898 [10/fill_missing_data/98 (pid 2326)] msg = self.format(record) +2024-07-19 14:33:04.898 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] return fmt.format(record) +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] record.message = record.getMessage() +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] msg = msg % self.args +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] TypeError: not all arguments converted during string formatting +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] Call stack: +2024-07-19 14:33:04.899 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] BGD_LinearFlow() +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] cli.main(self) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] return func(*args, **kwargs) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] return self.main(*args, **kwargs) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] rv = self.invoke(ctx) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] return callback(*args, **kwargs) +2024-07-19 14:33:05.515 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] task.run_step( +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] self._exec_step_function(step_func) +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] step_function() +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:33:05.516 [10/fill_missing_data/98 (pid 2326)] Arguments: (466,) +2024-07-19 14:33:05.517 [10/fill_missing_data/98 (pid 2326)] Task finished successfully. +2024-07-19 14:33:05.548 [10/find_median/99 (pid 2343)] Task is starting. +2024-07-19 14:33:07.024 [10/find_median/99 (pid 2343)] INFO:__main__:Computing and using median.. +2024-07-19 14:33:07.549 [10/find_median/99 (pid 2343)] Task finished successfully. +2024-07-19 14:33:07.579 [10/aggregate_data/100 (pid 2354)] Task is starting. +2024-07-19 14:33:09.048 [10/aggregate_data/100 (pid 2354)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:33:12.940 [10/aggregate_data/100 (pid 2354)] Task finished successfully. +2024-07-19 14:33:12.973 [10/split_data/101 (pid 2393)] Task is starting. +2024-07-19 14:33:14.431 [10/split_data/101 (pid 2393)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:33:18.267 [10/split_data/101 (pid 2393)] Task finished successfully. +2024-07-19 14:33:18.301 [10/make_x_y/102 (pid 2432)] Task is starting. +2024-07-19 14:33:20.133 [10/make_x_y/102 (pid 2432)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:33:20.469 [10/make_x_y/102 (pid 2432)] Shape of y_train: (6978, 1) +2024-07-19 14:33:20.469 [10/make_x_y/102 (pid 2432)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:33:20.469 [10/make_x_y/102 (pid 2432)] Shape of y_test: (1722, 1) +2024-07-19 14:33:20.470 [10/make_x_y/102 (pid 2432)] Task finished successfully. +2024-07-19 14:33:20.534 [10/cross_validate_train/103 (pid 2449)] Task is starting. +2024-07-19 14:33:21.993 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Creating bgd_lodging_residential_100001_200000_LSTM +2024-07-19 14:33:21.993 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Performing cross validation.. +2024-07-19 14:33:22.727 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 1/50, Train Loss: 0.2573811939439258, Val Loss: 0.19799737511454402 +2024-07-19 14:33:22.944 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 2/50, Train Loss: 0.2861157847014633, Val Loss: 0.24014876687244788 +2024-07-19 14:33:23.160 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 3/50, Train Loss: 0.20471928993592392, Val Loss: 0.17790830920676928 +2024-07-19 14:33:23.376 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 4/50, Train Loss: 0.21670476306934613, Val Loss: 0.16203984819553993 +2024-07-19 14:33:23.593 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 5/50, Train Loss: 0.190302662350036, Val Loss: 0.1550289358238916 +2024-07-19 14:33:23.804 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 6/50, Train Loss: 0.16718786038659714, Val Loss: 0.12302181829471846 +2024-07-19 14:33:24.022 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 7/50, Train Loss: 0.12875765652672663, Val Loss: 0.08952840256529886 +2024-07-19 14:33:24.242 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 8/50, Train Loss: 0.1109078952891601, Val Loss: 0.08153894734946457 +2024-07-19 14:33:24.459 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 9/50, Train Loss: 0.1033513162385773, Val Loss: 0.0807091179933097 +2024-07-19 14:33:24.675 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 10/50, Train Loss: 0.09656934173324623, Val Loss: 0.0746792224613396 +2024-07-19 14:33:24.890 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 11/50, Train Loss: 0.08781669545616652, Val Loss: 0.07266800981518384 +2024-07-19 14:33:25.104 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 12/50, Train Loss: 0.08484031687918547, Val Loss: 0.07062664718644039 +2024-07-19 14:33:25.334 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 13/50, Train Loss: 0.08002983144408948, Val Loss: 0.06898082017495825 +2024-07-19 14:33:25.559 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 14/50, Train Loss: 0.07793076185358537, Val Loss: 0.06649795456512554 +2024-07-19 14:33:25.780 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 15/50, Train Loss: 0.0728721776222055, Val Loss: 0.06597167293767671 +2024-07-19 14:33:25.998 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 16/50, Train Loss: 0.07215847090088032, Val Loss: 0.062297465632090696 +2024-07-19 14:33:26.219 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 17/50, Train Loss: 0.06651475632915625, Val Loss: 0.06167202936233701 +2024-07-19 14:33:26.478 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 18/50, Train Loss: 0.06568669175376764, Val Loss: 0.061185842430269394 +2024-07-19 14:33:26.736 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 19/50, Train Loss: 0.06525149035292703, Val Loss: 0.05747682319299595 +2024-07-19 14:33:26.972 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 20/50, Train Loss: 0.05996825319488306, Val Loss: 0.05936352999226467 +2024-07-19 14:33:27.211 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 21/50, Train Loss: 0.061967764301477254, Val Loss: 0.05694101398458352 +2024-07-19 14:33:27.457 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 22/50, Train Loss: 0.05910016319437607, Val Loss: 0.057054399135144984 +2024-07-19 14:33:27.697 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 23/50, Train Loss: 0.06015087165743918, Val Loss: 0.05422223767114652 +2024-07-19 14:33:27.926 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 24/50, Train Loss: 0.05742470411634123, Val Loss: 0.05556834811294401 +2024-07-19 14:33:28.172 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 25/50, Train Loss: 0.059927924309630655, Val Loss: 0.05280016694922705 +2024-07-19 14:33:28.397 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 26/50, Train Loss: 0.05679566659838767, Val Loss: 0.05346729364749547 +2024-07-19 14:33:28.621 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 27/50, Train Loss: 0.05875947014302821, Val Loss: 0.05094328875074516 +2024-07-19 14:33:28.854 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 28/50, Train Loss: 0.05320432122696091, Val Loss: 0.05132568275203576 +2024-07-19 14:33:29.084 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 29/50, Train Loss: 0.05600680652502421, Val Loss: 0.049829640601937834 +2024-07-19 14:33:29.309 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 30/50, Train Loss: 0.05247801064035377, Val Loss: 0.049890498655873375 +2024-07-19 14:33:29.549 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 31/50, Train Loss: 0.05445269600966492, Val Loss: 0.05058373984050106 +2024-07-19 14:33:29.780 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 32/50, Train Loss: 0.052858366555458794, Val Loss: 0.048826257723408775 +2024-07-19 14:33:29.998 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 33/50, Train Loss: 0.05173354424737595, Val Loss: 0.04932535842463777 +2024-07-19 14:33:30.236 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 34/50, Train Loss: 0.05146582681383636, Val Loss: 0.0484187872828664 +2024-07-19 14:33:30.465 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 35/50, Train Loss: 0.05120470908445281, Val Loss: 0.04824176209198462 +2024-07-19 14:33:30.711 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 36/50, Train Loss: 0.05117703682264766, Val Loss: 0.04876224404653987 +2024-07-19 14:33:30.941 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 37/50, Train Loss: 0.05128818267100566, Val Loss: 0.04833808833280125 +2024-07-19 14:33:31.156 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 38/50, Train Loss: 0.05100205258743183, Val Loss: 0.04841460126477319 +2024-07-19 14:33:31.377 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 39/50, Train Loss: 0.05101989748308788, Val Loss: 0.04806516057736165 +2024-07-19 14:33:31.598 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 40/50, Train Loss: 0.050551115258319956, Val Loss: 0.048292268772383 +2024-07-19 14:33:31.809 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 41/50, Train Loss: 0.04983730327237297, Val Loss: 0.048138622496579145 +2024-07-19 14:33:32.056 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 42/50, Train Loss: 0.049155937105014515, Val Loss: 0.04807241401962332 +2024-07-19 14:33:32.310 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 43/50, Train Loss: 0.04905465824177136, Val Loss: 0.047694772280551294 +2024-07-19 14:33:32.542 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 44/50, Train Loss: 0.048746399329723536, Val Loss: 0.04791803355958011 +2024-07-19 14:33:32.764 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 45/50, Train Loss: 0.048621983493904807, Val Loss: 0.04825325068589803 +2024-07-19 14:33:33.005 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 46/50, Train Loss: 0.04846501335300304, Val Loss: 0.0484875505034988 +2024-07-19 14:33:33.254 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 47/50, Train Loss: 0.048770432989742304, Val Loss: 0.04874212747892818 +2024-07-19 14:33:33.498 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 48/50, Train Loss: 0.047429986600134824, Val Loss: 0.04946420090021314 +2024-07-19 14:33:33.727 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 49/50, Train Loss: 0.047217497300054576, Val Loss: 0.04875623616012367 +2024-07-19 14:33:33.957 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 50/50, Train Loss: 0.046792368731788686, Val Loss: 0.048129238389633795 +2024-07-19 14:33:33.957 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Fold 0, MAPE: 4.37% +2024-07-19 14:33:34.328 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_100001_200000_LSTM//train_f0_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-19 14:33:34.792 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 1/50, Train Loss: 0.04509227615717339, Val Loss: 0.05696136272839598 +2024-07-19 14:33:35.156 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 2/50, Train Loss: 0.04646247285992315, Val Loss: 0.05902135291615048 +2024-07-19 14:33:35.523 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 3/50, Train Loss: 0.0473019539901655, Val Loss: 0.06343375196730769 +2024-07-19 14:33:35.909 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 4/50, Train Loss: 0.05275238948325588, Val Loss: 0.059156341125836245 +2024-07-19 14:33:36.273 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 5/50, Train Loss: 0.05520044435581116, Val Loss: 0.05675755622419151 +2024-07-19 14:33:36.634 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 6/50, Train Loss: 0.05240481150374837, Val Loss: 0.05922456276980606 +2024-07-19 14:33:36.993 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 7/50, Train Loss: 0.05162840050785509, Val Loss: 0.05786572588053909 +2024-07-19 14:33:37.353 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 8/50, Train Loss: 0.05210674385706039, Val Loss: 0.058198504653331394 +2024-07-19 14:33:37.713 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 9/50, Train Loss: 0.051825111400182935, Val Loss: 0.05521349528351346 +2024-07-19 14:33:38.078 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 10/50, Train Loss: 0.05088270470908243, Val Loss: 0.05461119769795521 +2024-07-19 14:33:38.442 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 11/50, Train Loss: 0.05102203457220776, Val Loss: 0.054217997334293416 +2024-07-19 14:33:38.818 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 12/50, Train Loss: 0.05052648459191192, Val Loss: 0.05357316126291816 +2024-07-19 14:33:39.181 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 13/50, Train Loss: 0.04914705131253968, Val Loss: 0.05371196356576842 +2024-07-19 14:33:39.559 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 14/50, Train Loss: 0.04956822127920307, Val Loss: 0.05281391407589655 +2024-07-19 14:33:39.919 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 15/50, Train Loss: 0.049389219013591334, Val Loss: 0.05251947599085602 +2024-07-19 14:33:40.285 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 16/50, Train Loss: 0.04909107665697189, Val Loss: 0.052636399361732845 +2024-07-19 14:33:40.698 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 17/50, Train Loss: 0.04829962577109467, Val Loss: 0.051558889750693296 +2024-07-19 14:33:41.100 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 18/50, Train Loss: 0.0476569508853024, Val Loss: 0.05089269638866992 +2024-07-19 14:33:41.510 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 19/50, Train Loss: 0.04744248365192381, Val Loss: 0.05081585331543072 +2024-07-19 14:33:41.902 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 20/50, Train Loss: 0.04715360058088825, Val Loss: 0.05095733762592883 +2024-07-19 14:33:42.326 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 21/50, Train Loss: 0.047139998321255594, Val Loss: 0.05133241737211073 +2024-07-19 14:33:42.718 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 22/50, Train Loss: 0.04684354788432383, Val Loss: 0.05059955067731239 +2024-07-19 14:33:43.097 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 23/50, Train Loss: 0.04667676365232631, Val Loss: 0.04989242302002134 +2024-07-19 14:33:43.486 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 24/50, Train Loss: 0.04639195023130064, Val Loss: 0.05103528056595776 +2024-07-19 14:33:43.862 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 25/50, Train Loss: 0.04677984228179063, Val Loss: 0.05082252802881035 +2024-07-19 14:33:44.227 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 26/50, Train Loss: 0.04651250207975303, Val Loss: 0.04907901796537477 +2024-07-19 14:33:44.595 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 27/50, Train Loss: 0.0460850759983471, Val Loss: 0.04942148329841124 +2024-07-19 14:33:44.957 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 28/50, Train Loss: 0.04617395637276238, Val Loss: 0.04962686157307109 +2024-07-19 14:33:45.316 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 29/50, Train Loss: 0.046237831220847285, Val Loss: 0.04948954686925218 +2024-07-19 14:33:45.679 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 30/50, Train Loss: 0.046263058606075914, Val Loss: 0.04939768523783297 +2024-07-19 14:33:46.075 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 31/50, Train Loss: 0.04621487391525752, Val Loss: 0.04951760736671654 +2024-07-19 14:33:46.442 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 32/50, Train Loss: 0.04601116248801963, Val Loss: 0.04937346732696971 +2024-07-19 14:33:46.811 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 33/50, Train Loss: 0.046132425433152345, Val Loss: 0.04871187681281889 +2024-07-19 14:33:47.172 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 34/50, Train Loss: 0.04594283895439481, Val Loss: 0.04961626040371689 +2024-07-19 14:33:47.536 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 35/50, Train Loss: 0.04620335003590747, Val Loss: 0.049111592407162126 +2024-07-19 14:33:47.896 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 36/50, Train Loss: 0.045716329745642124, Val Loss: 0.04860172843610918 +2024-07-19 14:33:48.259 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 37/50, Train Loss: 0.04590722377577873, Val Loss: 0.04818460748002336 +2024-07-19 14:33:48.621 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 38/50, Train Loss: 0.04549825905937038, Val Loss: 0.04799199285539421 +2024-07-19 14:33:48.980 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 39/50, Train Loss: 0.04573384695367454, Val Loss: 0.04813226574176067 +2024-07-19 14:33:49.343 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 40/50, Train Loss: 0.045958389693947686, Val Loss: 0.04950860193049585 +2024-07-19 14:33:49.702 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 41/50, Train Loss: 0.04632531147297114, Val Loss: 0.047438796307589556 +2024-07-19 14:33:50.069 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 42/50, Train Loss: 0.045161308184878464, Val Loss: 0.04761744290590286 +2024-07-19 14:33:50.433 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 43/50, Train Loss: 0.04542806282741566, Val Loss: 0.04768953220667066 +2024-07-19 14:33:50.805 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 44/50, Train Loss: 0.04569692621390297, Val Loss: 0.04792256542556995 +2024-07-19 14:33:51.172 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 45/50, Train Loss: 0.04547579254801959, Val Loss: 0.046943553849249274 +2024-07-19 14:33:51.540 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 46/50, Train Loss: 0.04534915140638613, Val Loss: 0.04751953110098839 +2024-07-19 14:33:51.916 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 47/50, Train Loss: 0.04494637230487719, Val Loss: 0.047982834380220725 +2024-07-19 14:33:52.316 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 48/50, Train Loss: 0.04507813061753364, Val Loss: 0.04696608254232922 +2024-07-19 14:33:52.683 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 49/50, Train Loss: 0.04467794824748823, Val Loss: 0.046434786120379296 +2024-07-19 14:33:53.047 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 50/50, Train Loss: 0.04406891528465976, Val Loss: 0.04628705394429129 +2024-07-19 14:33:53.047 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Fold 1, MAPE: 4.19% +2024-07-19 14:33:53.167 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_100001_200000_LSTM//train_f1_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-19 14:33:53.722 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 1/50, Train Loss: 0.04341753391040997, Val Loss: 0.03108349271320008 +2024-07-19 14:33:54.232 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 2/50, Train Loss: 0.04382453799586405, Val Loss: 0.0299971645345559 +2024-07-19 14:33:54.797 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 3/50, Train Loss: 0.04357163646173748, Val Loss: 0.03008815968358839 +2024-07-19 14:33:55.309 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 4/50, Train Loss: 0.04338470965793187, Val Loss: 0.030303960565376927 +2024-07-19 14:33:55.824 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 5/50, Train Loss: 0.04343328903513876, Val Loss: 0.029988518890899582 +2024-07-19 14:33:56.360 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 6/50, Train Loss: 0.043376367107372395, Val Loss: 0.0300306070948372 +2024-07-19 14:33:56.926 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 7/50, Train Loss: 0.04338979565284469, Val Loss: 0.030138049903955008 +2024-07-19 14:33:57.472 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 8/50, Train Loss: 0.04303521823815324, Val Loss: 0.03007934081393319 +2024-07-19 14:33:57.995 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 9/50, Train Loss: 0.04331441775641658, Val Loss: 0.03007807663163623 +2024-07-19 14:33:58.544 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 10/50, Train Loss: 0.04294809494167566, Val Loss: 0.030035984828262717 +2024-07-19 14:33:59.053 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 11/50, Train Loss: 0.04520178796215491, Val Loss: 0.030531415061370748 +2024-07-19 14:33:59.569 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 12/50, Train Loss: 0.04306827092712576, Val Loss: 0.031171413792951685 +2024-07-19 14:34:00.097 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 13/50, Train Loss: 0.04315109584819187, Val Loss: 0.030016540121790523 +2024-07-19 14:34:00.658 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 14/50, Train Loss: 0.04411133509129286, Val Loss: 0.03169097398986687 +2024-07-19 14:34:01.192 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 15/50, Train Loss: 0.04304625408893282, Val Loss: 0.03216131645682696 +2024-07-19 14:34:01.749 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 16/50, Train Loss: 0.04332552274519747, Val Loss: 0.03052255657274981 +2024-07-19 14:34:02.328 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 17/50, Train Loss: 0.04248787475411187, Val Loss: 0.030128364577083976 +2024-07-19 14:34:02.863 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 18/50, Train Loss: 0.044398518304594535, Val Loss: 0.030438782798277365 +2024-07-19 14:34:03.395 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 19/50, Train Loss: 0.042729468796063555, Val Loss: 0.03207257349748869 +2024-07-19 14:34:03.924 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 20/50, Train Loss: 0.042634900845587256, Val Loss: 0.030033528225848805 +2024-07-19 14:34:04.460 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 21/50, Train Loss: 0.04378917279907248, Val Loss: 0.03052592491479339 +2024-07-19 14:34:04.996 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 22/50, Train Loss: 0.04263532586734403, Val Loss: 0.03094188670149526 +2024-07-19 14:34:05.533 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 23/50, Train Loss: 0.04230915042148395, Val Loss: 0.030662640727855062 +2024-07-19 14:34:06.061 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 24/50, Train Loss: 0.043862968784841624, Val Loss: 0.029967466822347126 +2024-07-19 14:34:06.599 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 25/50, Train Loss: 0.04257384244013916, Val Loss: 0.032374766881804205 +2024-07-19 14:34:07.135 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 26/50, Train Loss: 0.042502477849749004, Val Loss: 0.031100728372867044 +2024-07-19 14:34:07.668 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 27/50, Train Loss: 0.04233722257512537, Val Loss: 0.03129772877169622 +2024-07-19 14:34:08.204 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 28/50, Train Loss: 0.044108813349157575, Val Loss: 0.029778122876745625 +2024-07-19 14:34:08.744 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 29/50, Train Loss: 0.042232865603132684, Val Loss: 0.03267512420142019 +2024-07-19 14:34:09.305 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 30/50, Train Loss: 0.042573344842954115, Val Loss: 0.02991558691939792 +2024-07-19 14:34:09.849 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 31/50, Train Loss: 0.04205864638259465, Val Loss: 0.03133021803522432 +2024-07-19 14:34:10.387 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 32/50, Train Loss: 0.04356130279431289, Val Loss: 0.029625317308346968 +2024-07-19 14:34:10.944 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 33/50, Train Loss: 0.04191952246156606, Val Loss: 0.03294246497790556 +2024-07-19 14:34:11.498 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 34/50, Train Loss: 0.042447859235107896, Val Loss: 0.029924624977079598 +2024-07-19 14:34:12.037 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 35/50, Train Loss: 0.041734946417537604, Val Loss: 0.031116992411379878 +2024-07-19 14:34:12.589 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 36/50, Train Loss: 0.04183719994669611, Val Loss: 0.030441715784773633 +2024-07-19 14:34:13.133 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 37/50, Train Loss: 0.042753187380731104, Val Loss: 0.029915336594992393 +2024-07-19 14:34:13.664 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 38/50, Train Loss: 0.04175446980040182, Val Loss: 0.03019020429535492 +2024-07-19 14:34:14.235 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 39/50, Train Loss: 0.04156257134269584, Val Loss: 0.029454949035032374 +2024-07-19 14:34:14.743 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 40/50, Train Loss: 0.04134900158440525, Val Loss: 0.02948619765103669 +2024-07-19 14:34:15.254 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 41/50, Train Loss: 0.04369904028082436, Val Loss: 0.029430188968576288 +2024-07-19 14:34:15.761 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 42/50, Train Loss: 0.04154352486472238, Val Loss: 0.02986443812984067 +2024-07-19 14:34:16.302 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 43/50, Train Loss: 0.04334551512517713, Val Loss: 0.0292778094424992 +2024-07-19 14:34:16.853 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 44/50, Train Loss: 0.041387116519564934, Val Loss: 0.029688116263698886 +2024-07-19 14:34:17.400 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 45/50, Train Loss: 0.04124918896704912, Val Loss: 0.029293235366207523 +2024-07-19 14:34:17.937 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 46/50, Train Loss: 0.04103752054612745, Val Loss: 0.029333973479633395 +2024-07-19 14:34:18.487 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 47/50, Train Loss: 0.042911402525549584, Val Loss: 0.029179326585821203 +2024-07-19 14:34:19.028 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 48/50, Train Loss: 0.04124896395951509, Val Loss: 0.02923876658786793 +2024-07-19 14:34:19.568 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 49/50, Train Loss: 0.04143574156544425, Val Loss: 0.02924339979182224 +2024-07-19 14:34:20.106 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 50/50, Train Loss: 0.04335399823771282, Val Loss: 0.029126500761186756 +2024-07-19 14:34:20.106 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Fold 2, MAPE: 3.85% +2024-07-19 14:34:20.209 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_100001_200000_LSTM//train_f2_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-19 14:34:20.932 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 1/50, Train Loss: 0.03735884237549689, Val Loss: 0.03568957959981384 +2024-07-19 14:34:21.644 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 2/50, Train Loss: 0.03755025665773309, Val Loss: 0.0352322784428661 +2024-07-19 14:34:22.351 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 3/50, Train Loss: 0.037321216803146144, Val Loss: 0.034852608283226554 +2024-07-19 14:34:23.042 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 4/50, Train Loss: 0.03713877501655115, Val Loss: 0.03513498679810279 +2024-07-19 14:34:23.735 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 5/50, Train Loss: 0.037336448711432414, Val Loss: 0.03497902392032179 +2024-07-19 14:34:24.436 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 6/50, Train Loss: 0.03741391503239331, Val Loss: 0.034894341023991235 +2024-07-19 14:34:25.124 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 7/50, Train Loss: 0.03720490360147741, Val Loss: 0.034624363824322414 +2024-07-19 14:34:25.848 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 8/50, Train Loss: 0.03714081439610622, Val Loss: 0.034433690101109644 +2024-07-19 14:34:26.567 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 9/50, Train Loss: 0.036708191719722665, Val Loss: 0.03382578187596959 +2024-07-19 14:34:27.260 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 10/50, Train Loss: 0.03700590834710492, Val Loss: 0.033826775748181985 +2024-07-19 14:34:27.923 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 11/50, Train Loss: 0.03664426138139751, Val Loss: 0.033584722418438746 +2024-07-19 14:34:28.589 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 12/50, Train Loss: 0.03697125419132309, Val Loss: 0.03375495206312956 +2024-07-19 14:34:29.253 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 13/50, Train Loss: 0.03720701243473242, Val Loss: 0.033458447285197875 +2024-07-19 14:34:29.914 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 14/50, Train Loss: 0.036797895485356655, Val Loss: 0.03380175616994903 +2024-07-19 14:34:30.602 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 15/50, Train Loss: 0.036960055407340806, Val Loss: 0.03373280598001706 +2024-07-19 14:34:31.321 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 16/50, Train Loss: 0.03704932293127457, Val Loss: 0.034132947415314814 +2024-07-19 14:34:32.044 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 17/50, Train Loss: 0.03712014602624798, Val Loss: 0.033748254419077896 +2024-07-19 14:34:32.754 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 18/50, Train Loss: 0.0370296578318493, Val Loss: 0.03362920441085825 +2024-07-19 14:34:33.473 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 19/50, Train Loss: 0.036947974731048494, Val Loss: 0.03388785238604288 +2024-07-19 14:34:34.157 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 20/50, Train Loss: 0.03707128164218101, Val Loss: 0.033810941351426614 +2024-07-19 14:34:34.854 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 21/50, Train Loss: 0.037235256616179255, Val Loss: 0.0339963718543987 +2024-07-19 14:34:35.544 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 22/50, Train Loss: 0.037510447956825774, Val Loss: 0.03464516413372916 +2024-07-19 14:34:36.232 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 23/50, Train Loss: 0.037245782468570014, Val Loss: 0.03381995695668298 +2024-07-19 14:34:36.934 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 24/50, Train Loss: 0.03687213829476131, Val Loss: 0.03339177211494865 +2024-07-19 14:34:37.637 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 25/50, Train Loss: 0.036604501568546444, Val Loss: 0.03364221454673522 +2024-07-19 14:34:38.344 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 26/50, Train Loss: 0.03675786501485599, Val Loss: 0.03342270561670129 +2024-07-19 14:34:39.030 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 27/50, Train Loss: 0.03642838241608992, Val Loss: 0.033457025168211876 +2024-07-19 14:34:39.762 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 28/50, Train Loss: 0.036670719630608, Val Loss: 0.03344099513078864 +2024-07-19 14:34:40.466 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 29/50, Train Loss: 0.036520875901085874, Val Loss: 0.033807256208682385 +2024-07-19 14:34:41.170 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 30/50, Train Loss: 0.036739103094202606, Val Loss: 0.0335389293503721 +2024-07-19 14:34:41.882 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 31/50, Train Loss: 0.03675526442414481, Val Loss: 0.0332918906383015 +2024-07-19 14:34:42.591 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 32/50, Train Loss: 0.036216421614158646, Val Loss: 0.033587579200094614 +2024-07-19 14:34:43.288 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 33/50, Train Loss: 0.036514263006871286, Val Loss: 0.03331601483797705 +2024-07-19 14:34:44.000 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 34/50, Train Loss: 0.036563289287972124, Val Loss: 0.03376253930902159 +2024-07-19 14:34:44.697 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 35/50, Train Loss: 0.036466067873757994, Val Loss: 0.03340123247707615 +2024-07-19 14:34:45.391 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 36/50, Train Loss: 0.0364148813197772, Val Loss: 0.032918875118264475 +2024-07-19 14:34:46.089 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 37/50, Train Loss: 0.03640070866972004, Val Loss: 0.03357711569028529 +2024-07-19 14:34:46.790 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 38/50, Train Loss: 0.03630105154716397, Val Loss: 0.032917512958315576 +2024-07-19 14:34:47.492 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 39/50, Train Loss: 0.036051463744003476, Val Loss: 0.03335896208630623 +2024-07-19 14:34:48.188 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 40/50, Train Loss: 0.03638444826874423, Val Loss: 0.03321909684234777 +2024-07-19 14:34:48.895 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 41/50, Train Loss: 0.03604304384159511, Val Loss: 0.032967246150144854 +2024-07-19 14:34:49.604 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 42/50, Train Loss: 0.035881315255920365, Val Loss: 0.03296195373341844 +2024-07-19 14:34:50.323 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 43/50, Train Loss: 0.03602960822491409, Val Loss: 0.03275288194669662 +2024-07-19 14:34:51.012 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 44/50, Train Loss: 0.03596000888780372, Val Loss: 0.03284994139008828 +2024-07-19 14:34:51.682 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 45/50, Train Loss: 0.035827257925619, Val Loss: 0.033000169988922974 +2024-07-19 14:34:52.354 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 46/50, Train Loss: 0.035739758479319615, Val Loss: 0.03315131611668983 +2024-07-19 14:34:53.024 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 47/50, Train Loss: 0.03564405781918601, Val Loss: 0.03289410348578885 +2024-07-19 14:34:53.692 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 48/50, Train Loss: 0.036294130302251204, Val Loss: 0.033448905344247014 +2024-07-19 14:34:54.367 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 49/50, Train Loss: 0.035483095252707805, Val Loss: 0.032359962855037804 +2024-07-19 14:34:55.031 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 50/50, Train Loss: 0.03600857857206505, Val Loss: 0.03310826758073794 +2024-07-19 14:34:55.031 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Fold 3, MAPE: 3.90% +2024-07-19 14:34:55.126 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_100001_200000_LSTM//train_f3_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-19 14:34:55.964 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 1/50, Train Loss: 0.034300964880877964, Val Loss: 0.04148340809184152 +2024-07-19 14:34:56.884 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 2/50, Train Loss: 0.03444018793691482, Val Loss: 0.041887375853351644 +2024-07-19 14:34:57.792 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 3/50, Train Loss: 0.033880549836085065, Val Loss: 0.04154592500747861 +2024-07-19 14:34:58.651 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 4/50, Train Loss: 0.03422069897783081, Val Loss: 0.04160289113988747 +2024-07-19 14:34:59.555 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 5/50, Train Loss: 0.03404267780370192, Val Loss: 0.041673823788359356 +2024-07-19 14:35:00.434 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 6/50, Train Loss: 0.03409880740506636, Val Loss: 0.041562739054898955 +2024-07-19 14:35:01.327 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 7/50, Train Loss: 0.034159214911306954, Val Loss: 0.041558633281572444 +2024-07-19 14:35:02.221 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 8/50, Train Loss: 0.034126938510031166, Val Loss: 0.04171160145385845 +2024-07-19 14:35:03.083 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 9/50, Train Loss: 0.034010889673871655, Val Loss: 0.04148724670144352 +2024-07-19 14:35:03.910 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 10/50, Train Loss: 0.03413820673281757, Val Loss: 0.04122658612558971 +2024-07-19 14:35:04.742 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 11/50, Train Loss: 0.03424024518968149, Val Loss: 0.04149726058381635 +2024-07-19 14:35:05.605 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 12/50, Train Loss: 0.033857918316293714, Val Loss: 0.04110004818318663 +2024-07-19 14:35:06.474 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 13/50, Train Loss: 0.034246849233878184, Val Loss: 0.041329613710577424 +2024-07-19 14:35:07.344 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 14/50, Train Loss: 0.034124327396237095, Val Loss: 0.04153471047411094 +2024-07-19 14:35:08.206 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 15/50, Train Loss: 0.034167851572139904, Val Loss: 0.041279991786624934 +2024-07-19 14:35:09.071 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 16/50, Train Loss: 0.03398356027133599, Val Loss: 0.0412844948571276 +2024-07-19 14:35:09.969 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 17/50, Train Loss: 0.03390078807433883, Val Loss: 0.04120256389315064 +2024-07-19 14:35:10.850 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 18/50, Train Loss: 0.0340883018715041, Val Loss: 0.04141043982393033 +2024-07-19 14:35:11.710 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 19/50, Train Loss: 0.033925941868961515, Val Loss: 0.04137840323351525 +2024-07-19 14:35:12.592 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 20/50, Train Loss: 0.03410529309198015, Val Loss: 0.042024088671078555 +2024-07-19 14:35:13.463 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 21/50, Train Loss: 0.034021028148644904, Val Loss: 0.041589165559491596 +2024-07-19 14:35:14.337 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 22/50, Train Loss: 0.03381004223374875, Val Loss: 0.0418233148552276 +2024-07-19 14:35:15.158 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 23/50, Train Loss: 0.03403580653133219, Val Loss: 0.04137243763417811 +2024-07-19 14:35:16.002 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 24/50, Train Loss: 0.03354149760299741, Val Loss: 0.041142631271803703 +2024-07-19 14:35:16.866 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 25/50, Train Loss: 0.0337231093045365, Val Loss: 0.04154422597305195 +2024-07-19 14:35:17.745 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 26/50, Train Loss: 0.03346743582809283, Val Loss: 0.04156209301908274 +2024-07-19 14:35:18.633 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 27/50, Train Loss: 0.03381021107434408, Val Loss: 0.04155943260805027 +2024-07-19 14:35:19.501 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 28/50, Train Loss: 0.03346416017982167, Val Loss: 0.04109151298935349 +2024-07-19 14:35:20.363 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 29/50, Train Loss: 0.033421736036601306, Val Loss: 0.04178621217205718 +2024-07-19 14:35:21.249 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 30/50, Train Loss: 0.033408594207715366, Val Loss: 0.04157645496967677 +2024-07-19 14:35:22.123 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 31/50, Train Loss: 0.03327919627990123, Val Loss: 0.04157169188397962 +2024-07-19 14:35:23.008 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 32/50, Train Loss: 0.033186102022447594, Val Loss: 0.04155635637407367 +2024-07-19 14:35:23.871 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 33/50, Train Loss: 0.03316930421259623, Val Loss: 0.04170583566096989 +2024-07-19 14:35:24.737 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 34/50, Train Loss: 0.03306234342424751, Val Loss: 0.04194515097785641 +2024-07-19 14:35:25.593 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 35/50, Train Loss: 0.03314690613750737, Val Loss: 0.04156076183190217 +2024-07-19 14:35:26.487 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 36/50, Train Loss: 0.03305056442987624, Val Loss: 0.041819613577949034 +2024-07-19 14:35:27.355 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 37/50, Train Loss: 0.03318412851409188, Val Loss: 0.04180518910288811 +2024-07-19 14:35:28.232 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 38/50, Train Loss: 0.033021281304472426, Val Loss: 0.04157909801280176 +2024-07-19 14:35:29.116 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 39/50, Train Loss: 0.03318325573435196, Val Loss: 0.04224841981320768 +2024-07-19 14:35:30.006 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 40/50, Train Loss: 0.033166146404775124, Val Loss: 0.04165615735424531 +2024-07-19 14:35:30.901 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 41/50, Train Loss: 0.03294309568949617, Val Loss: 0.041731564126707414 +2024-07-19 14:35:31.779 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 42/50, Train Loss: 0.03283292321989743, Val Loss: 0.041933025409643714 +2024-07-19 14:35:32.659 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 43/50, Train Loss: 0.0329109801793123, Val Loss: 0.041896709668877964 +2024-07-19 14:35:33.522 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 44/50, Train Loss: 0.03314066376629193, Val Loss: 0.04151706276713191 +2024-07-19 14:35:34.400 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 45/50, Train Loss: 0.033050373127520245, Val Loss: 0.04165739908411696 +2024-07-19 14:35:35.269 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 46/50, Train Loss: 0.03286443047409693, Val Loss: 0.041571314622824256 +2024-07-19 14:35:36.132 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 47/50, Train Loss: 0.03263554875329546, Val Loss: 0.04180756362306105 +2024-07-19 14:35:37.009 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 48/50, Train Loss: 0.0329316243667483, Val Loss: 0.042272731158378964 +2024-07-19 14:35:37.877 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 49/50, Train Loss: 0.03291638353123115, Val Loss: 0.041673440687559744 +2024-07-19 14:35:38.783 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Epoch 50/50, Train Loss: 0.03261963085905945, Val Loss: 0.04163251686337832 +2024-07-19 14:35:38.783 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Fold 4, MAPE: 3.95% +2024-07-19 14:35:38.905 [10/cross_validate_train/103 (pid 2449)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_100001_200000_LSTM//train_f4_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-19 14:35:43.230 [10/cross_validate_train/103 (pid 2449)] Task finished successfully. +2024-07-19 14:35:43.266 [10/model_scores/104 (pid 3052)] Task is starting. +2024-07-19 14:35:44.733 [10/model_scores/104 (pid 3052)] INFO:__main__:Average Train Loss across all folds: 0.04056869833705715 +2024-07-19 14:35:48.596 [10/model_scores/104 (pid 3052)] INFO:__main__:Average Validation Loss across all folds: 0.03965671550784562 +2024-07-19 14:35:48.597 [10/model_scores/104 (pid 3052)] INFO:__main__:Average MAPE across all folds: 4.05% +2024-07-19 14:35:48.597 [10/model_scores/104 (pid 3052)] Task finished successfully. +2024-07-19 14:35:48.626 [10/validate_model/105 (pid 3091)] Task is starting. +2024-07-19 14:35:50.088 [10/validate_model/105 (pid 3091)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:35:50.196 [10/validate_model/105 (pid 3091)] INFO:__main__:Test Set MAPE: 3.92% +2024-07-19 14:35:50.560 [10/validate_model/105 (pid 3091)] INFO:__main__:Test image saved at metaflow_models//bgd_lodging_residential_100001_200000_LSTM//test_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-19 14:35:50.991 [10/validate_model/105 (pid 3091)] Task finished successfully. +2024-07-19 14:35:51.022 [10/log_model/106 (pid 3103)] Task is starting. +2024-07-19 14:35:52.406 [10/log_model/106 (pid 3103)] INFO:__main__:Logging model bgd_lodging_residential_100001_200000_LSTM +2024-07-19 14:35:52.408 [10/log_model/106 (pid 3103)] INFO:__main__:Model logged at metaflow_models//bgd_lodging_residential_100001_200000_LSTM//bgd_lodging_residential_100001_200000_LSTM.pth +2024-07-19 14:35:56.240 [10/log_model/106 (pid 3103)] Task finished successfully. +2024-07-19 14:35:56.269 [10/end/107 (pid 3140)] Task is starting. +2024-07-19 14:35:57.750 [10/end/107 (pid 3140)] INFO:__main__:Pipeline end. +2024-07-19 14:35:58.077 [10/end/107 (pid 3140)] Task finished successfully. +2024-07-19 14:35:58.078 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/scaler_bgd_lodging_residential_100001_200000_LSTM.pkl b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/scaler_bgd_lodging_residential_100001_200000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..2ce0b6d578bbf484cc4b7d39efff56b106209aeb --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/scaler_bgd_lodging_residential_100001_200000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81da6b9e8604e3caf1293c8c71ccfc3754e4c9184598533812f08033a0a116bc +size 557 diff --git a/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/test_bgd_lodging_residential_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/test_bgd_lodging_residential_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..c432e9bfc542949a48a56365e26317bd43a11dd6 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/test_bgd_lodging_residential_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f0_bgd_lodging_residential_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f0_bgd_lodging_residential_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..8494ec98926f6452a4b9a237e63ef7a8278c48d5 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f0_bgd_lodging_residential_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f1_bgd_lodging_residential_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f1_bgd_lodging_residential_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..c2dcd9db1457bf4a22e5489ca5e68d3e31011ccc Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f1_bgd_lodging_residential_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f2_bgd_lodging_residential_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f2_bgd_lodging_residential_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..8b5cd2878b06687548c6a2379340cc4b9e5ee52d Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f2_bgd_lodging_residential_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f3_bgd_lodging_residential_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f3_bgd_lodging_residential_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..eafd6c6319365bafbcd7c22a28c3efbb2a83b411 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f3_bgd_lodging_residential_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f4_bgd_lodging_residential_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f4_bgd_lodging_residential_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..ee62326c4e57e23688d68237fc08fd7fc0d06429 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_100001_200000_LSTM/train_f4_bgd_lodging_residential_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/bgd_lodging_residential_1001_5000_LSTM.pth b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/bgd_lodging_residential_1001_5000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..ab34b866ccb372073465e832734647d41ec45c15 --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/bgd_lodging_residential_1001_5000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e1805b8aa594cbb994520c4c408eb1b2b0b0331be43dcfdd0a0c3f3831c1e0 +size 46846 diff --git a/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/output.txt b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..f99a84fcbefbdcf55873044f70a82bd233b5af59 --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/output.txt @@ -0,0 +1,728 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:26:50.738 Workflow starting (run-id 8): +2024-07-19 14:26:50.811 [8/start/67 (pid 306)] Task is starting. +2024-07-19 14:26:52.283 [8/start/67 (pid 306)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:26:52.583 [8/start/67 (pid 306)] Task finished successfully. +2024-07-19 14:26:52.621 [8/ingest/68 (pid 332)] Task is starting. +2024-07-19 14:26:54.082 [8/ingest/68 (pid 332)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:26:54.094 [8/ingest/68 (pid 332)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:26:57.967 [8/ingest/68 (pid 332)] Task finished successfully. +2024-07-19 14:26:57.997 [8/pick_2017_data/69 (pid 369)] Task is starting. +2024-07-19 14:26:59.507 [8/pick_2017_data/69 (pid 369)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:26:59.816 [8/pick_2017_data/69 (pid 369)] Task finished successfully. +2024-07-19 14:26:59.848 [8/fill_missing_data/70 (pid 384)] Task is starting. +2024-07-19 14:27:01.348 [8/fill_missing_data/70 (pid 384)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:27:01.352 [8/fill_missing_data/70 (pid 384)] INFO:__main__:NaN counts per column: +2024-07-19 14:27:01.352 [8/fill_missing_data/70 (pid 384)] INFO:__main__:Rat_lodging_Jeannette 27 +2024-07-19 14:27:01.352 [8/fill_missing_data/70 (pid 384)] dtype: int64 +2024-07-19 14:27:01.352 [8/fill_missing_data/70 (pid 384)] --- Logging error --- +2024-07-19 14:27:01.353 [8/fill_missing_data/70 (pid 384)] Traceback (most recent call last): +2024-07-19 14:27:01.353 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] msg = self.format(record) +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] return fmt.format(record) +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] record.message = record.getMessage() +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] msg = msg % self.args +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] TypeError: not all arguments converted during string formatting +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] Call stack: +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:27:01.679 [8/fill_missing_data/70 (pid 384)] BGD_LinearFlow() +2024-07-19 14:27:01.679 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] cli.main(self) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] return func(*args, **kwargs) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] return self.main(*args, **kwargs) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] rv = self.invoke(ctx) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] return callback(*args, **kwargs) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] task.run_step( +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] self._exec_step_function(step_func) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] step_function() +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] Arguments: (27,) +2024-07-19 14:27:01.681 [8/fill_missing_data/70 (pid 384)] Task finished successfully. +2024-07-19 14:27:01.712 [8/find_median/71 (pid 408)] Task is starting. +2024-07-19 14:27:03.188 [8/find_median/71 (pid 408)] INFO:__main__:Computing and using median.. +2024-07-19 14:27:03.702 [8/find_median/71 (pid 408)] Task finished successfully. +2024-07-19 14:27:03.733 [8/aggregate_data/72 (pid 441)] Task is starting. +2024-07-19 14:27:05.206 [8/aggregate_data/72 (pid 441)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:27:09.038 [8/aggregate_data/72 (pid 441)] Task finished successfully. +2024-07-19 14:27:09.070 [8/split_data/73 (pid 528)] Task is starting. +2024-07-19 14:27:10.521 [8/split_data/73 (pid 528)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:27:14.414 [8/split_data/73 (pid 528)] Task finished successfully. +2024-07-19 14:27:14.445 [8/make_x_y/74 (pid 570)] Task is starting. +2024-07-19 14:27:16.271 [8/make_x_y/74 (pid 570)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:27:16.581 [8/make_x_y/74 (pid 570)] Shape of y_train: (6978, 1) +2024-07-19 14:27:16.581 [8/make_x_y/74 (pid 570)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:27:16.581 [8/make_x_y/74 (pid 570)] Shape of y_test: (1722, 1) +2024-07-19 14:27:16.582 [8/make_x_y/74 (pid 570)] Task finished successfully. +2024-07-19 14:27:16.613 [8/cross_validate_train/75 (pid 589)] Task is starting. +2024-07-19 14:27:18.095 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Creating bgd_lodging_residential_1001_5000_LSTM +2024-07-19 14:27:18.096 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Performing cross validation.. +2024-07-19 14:27:18.849 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 1/50, Train Loss: 0.17529371169370575, Val Loss: 0.18017139527443293 +2024-07-19 14:27:19.062 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 2/50, Train Loss: 0.151415980144127, Val Loss: 0.19181571709545883 +2024-07-19 14:27:19.276 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 3/50, Train Loss: 0.13537986053002848, Val Loss: 0.17966576856938568 +2024-07-19 14:27:19.485 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 4/50, Train Loss: 0.1343690163984492, Val Loss: 0.17491375624730782 +2024-07-19 14:27:19.708 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 5/50, Train Loss: 0.1262268636476349, Val Loss: 0.15834123238518433 +2024-07-19 14:27:19.922 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 6/50, Train Loss: 0.11992024892085307, Val Loss: 0.14224724099040031 +2024-07-19 14:27:20.144 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 7/50, Train Loss: 0.1121759048184833, Val Loss: 0.12509211495115952 +2024-07-19 14:27:20.369 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 8/50, Train Loss: 0.1070920981064036, Val Loss: 0.11541418620460742 +2024-07-19 14:27:20.595 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 9/50, Train Loss: 0.0974491591993216, Val Loss: 0.104645381908159 +2024-07-19 14:27:20.867 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 10/50, Train Loss: 0.08798110988494512, Val Loss: 0.0906919866196207 +2024-07-19 14:27:21.081 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 11/50, Train Loss: 0.08210518211126328, Val Loss: 0.08154686198041246 +2024-07-19 14:27:21.301 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 12/50, Train Loss: 0.07791825152329497, Val Loss: 0.07682124696470596 +2024-07-19 14:27:21.534 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 13/50, Train Loss: 0.07518505969563045, Val Loss: 0.07216265274060739 +2024-07-19 14:27:21.736 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 14/50, Train Loss: 0.07326598364759136, Val Loss: 0.0685359551697164 +2024-07-19 14:27:21.937 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 15/50, Train Loss: 0.07111561439327292, Val Loss: 0.06443090313995206 +2024-07-19 14:27:22.149 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 16/50, Train Loss: 0.06907058366247125, Val Loss: 0.06232915506572337 +2024-07-19 14:27:22.352 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 17/50, Train Loss: 0.06703986821545137, Val Loss: 0.06018877492563145 +2024-07-19 14:27:22.556 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 18/50, Train Loss: 0.06486519929525014, Val Loss: 0.058627928128919087 +2024-07-19 14:27:22.760 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 19/50, Train Loss: 0.06339036018864529, Val Loss: 0.05692584812641144 +2024-07-19 14:27:22.956 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 20/50, Train Loss: 0.061056009720306136, Val Loss: 0.05594358099876223 +2024-07-19 14:27:23.159 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 21/50, Train Loss: 0.06066493146322869, Val Loss: 0.05423540954251547 +2024-07-19 14:27:23.360 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 22/50, Train Loss: 0.05852417849205636, Val Loss: 0.05341448015659242 +2024-07-19 14:27:23.563 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 23/50, Train Loss: 0.05673171871820012, Val Loss: 0.05272106156759971 +2024-07-19 14:27:23.766 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 24/50, Train Loss: 0.05617404437145671, Val Loss: 0.051652533178393904 +2024-07-19 14:27:23.971 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 25/50, Train Loss: 0.05457017389503685, Val Loss: 0.052325249221679325 +2024-07-19 14:27:24.172 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 26/50, Train Loss: 0.055767570295043895, Val Loss: 0.05182860660794619 +2024-07-19 14:27:24.377 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 27/50, Train Loss: 0.05462800046882114, Val Loss: 0.05173547586073746 +2024-07-19 14:27:24.578 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 28/50, Train Loss: 0.05448231624590384, Val Loss: 0.05123513982304045 +2024-07-19 14:27:24.781 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 29/50, Train Loss: 0.05332062232333261, Val Loss: 0.05093882917552381 +2024-07-19 14:27:24.986 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 30/50, Train Loss: 0.05309248000786111, Val Loss: 0.050746822075263875 +2024-07-19 14:27:25.187 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 31/50, Train Loss: 0.05291555137247653, Val Loss: 0.050671054906136284 +2024-07-19 14:27:25.388 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 32/50, Train Loss: 0.0527415459824575, Val Loss: 0.05071333423256874 +2024-07-19 14:27:25.588 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 33/50, Train Loss: 0.05299535393714905, Val Loss: 0.05075039427626778 +2024-07-19 14:27:25.789 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 34/50, Train Loss: 0.05270274829220127, Val Loss: 0.050688254923836606 +2024-07-19 14:27:25.988 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 35/50, Train Loss: 0.05272943395617846, Val Loss: 0.05078400303987232 +2024-07-19 14:27:26.188 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 36/50, Train Loss: 0.05293800460325705, Val Loss: 0.05079216706390317 +2024-07-19 14:27:26.391 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 37/50, Train Loss: 0.05276278074125986, Val Loss: 0.05066175542369082 +2024-07-19 14:27:26.589 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 38/50, Train Loss: 0.052712464554084314, Val Loss: 0.05068983535307485 +2024-07-19 14:27:26.796 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 39/50, Train Loss: 0.05279959486545743, Val Loss: 0.05088938772678375 +2024-07-19 14:27:27.008 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 40/50, Train Loss: 0.05279426860648233, Val Loss: 0.05073915019228652 +2024-07-19 14:27:27.214 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 41/50, Train Loss: 0.05265075230115169, Val Loss: 0.05054563515492388 +2024-07-19 14:27:27.429 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 42/50, Train Loss: 0.0527459111165356, Val Loss: 0.05047385938264228 +2024-07-19 14:27:27.643 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 43/50, Train Loss: 0.05220162677201065, Val Loss: 0.05074952366585667 +2024-07-19 14:27:27.854 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 44/50, Train Loss: 0.05270068367590775, Val Loss: 0.050618180652727954 +2024-07-19 14:27:28.078 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 45/50, Train Loss: 0.05215156209227201, Val Loss: 0.05088683368789183 +2024-07-19 14:27:28.281 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 46/50, Train Loss: 0.05261397492643949, Val Loss: 0.0506231473708475 +2024-07-19 14:27:28.482 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 47/50, Train Loss: 0.05244274447495873, Val Loss: 0.050738924711539936 +2024-07-19 14:27:28.683 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 48/50, Train Loss: 0.05236302890084885, Val Loss: 0.05069812739620338 +2024-07-19 14:27:28.893 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 49/50, Train Loss: 0.05244475864880794, Val Loss: 0.05064967284734185 +2024-07-19 14:27:29.103 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 50/50, Train Loss: 0.052314591568869515, Val Loss: 0.05073976577133746 +2024-07-19 14:27:29.103 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Fold 0, MAPE: 10.85% +2024-07-19 14:27:29.431 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_1001_5000_LSTM//train_f0_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-19 14:27:29.884 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 1/50, Train Loss: 0.04628469060136847, Val Loss: 0.04378945919106136 +2024-07-19 14:27:30.234 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 2/50, Train Loss: 0.046930487382493606, Val Loss: 0.04300672938493458 +2024-07-19 14:27:30.606 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 3/50, Train Loss: 0.048369883495855005, Val Loss: 0.04293581143625685 +2024-07-19 14:27:31.009 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 4/50, Train Loss: 0.048667929096989436, Val Loss: 0.0441836850667322 +2024-07-19 14:27:31.376 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 5/50, Train Loss: 0.048288468169431165, Val Loss: 0.044095046063129965 +2024-07-19 14:27:31.761 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 6/50, Train Loss: 0.04743771525482609, Val Loss: 0.04359402814628305 +2024-07-19 14:27:32.121 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 7/50, Train Loss: 0.04695900470936951, Val Loss: 0.04382398437607933 +2024-07-19 14:27:32.485 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 8/50, Train Loss: 0.047281747836976834, Val Loss: 0.043961655298197594 +2024-07-19 14:27:32.855 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 9/50, Train Loss: 0.04727268619590426, Val Loss: 0.043858729202199624 +2024-07-19 14:27:33.225 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 10/50, Train Loss: 0.04698601694241779, Val Loss: 0.043519208509777044 +2024-07-19 14:27:33.596 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 11/50, Train Loss: 0.04701379954508723, Val Loss: 0.04385911834401053 +2024-07-19 14:27:33.957 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 12/50, Train Loss: 0.04699924498898526, Val Loss: 0.04376746361722817 +2024-07-19 14:27:34.323 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 13/50, Train Loss: 0.04725603139257594, Val Loss: 0.044051828013884055 +2024-07-19 14:27:34.691 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 14/50, Train Loss: 0.04690265137549132, Val Loss: 0.04378697099919255 +2024-07-19 14:27:35.056 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 15/50, Train Loss: 0.047011312658656136, Val Loss: 0.04370128579840467 +2024-07-19 14:27:35.424 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 16/50, Train Loss: 0.0466022616992258, Val Loss: 0.043481655569898116 +2024-07-19 14:27:35.793 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 17/50, Train Loss: 0.04651422227082187, Val Loss: 0.04348180976671141 +2024-07-19 14:27:36.158 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 18/50, Train Loss: 0.046943840966241, Val Loss: 0.043809811710505873 +2024-07-19 14:27:36.521 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 19/50, Train Loss: 0.046446787142386176, Val Loss: 0.043438879168919614 +2024-07-19 14:27:36.900 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 20/50, Train Loss: 0.046653161335685485, Val Loss: 0.04374453697252918 +2024-07-19 14:27:37.291 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 21/50, Train Loss: 0.046546284543120695, Val Loss: 0.04346553095289179 +2024-07-19 14:27:37.659 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 22/50, Train Loss: 0.046686626281844425, Val Loss: 0.04376776153976853 +2024-07-19 14:27:38.032 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 23/50, Train Loss: 0.046488249546860996, Val Loss: 0.043354485687371845 +2024-07-19 14:27:38.408 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 24/50, Train Loss: 0.0464146758034213, Val Loss: 0.043428586795926094 +2024-07-19 14:27:38.789 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 25/50, Train Loss: 0.04624473415825465, Val Loss: 0.04316908893855037 +2024-07-19 14:27:39.155 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 26/50, Train Loss: 0.04637536107983491, Val Loss: 0.043344773050095584 +2024-07-19 14:27:39.531 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 27/50, Train Loss: 0.046220795570375166, Val Loss: 0.04313388955150101 +2024-07-19 14:27:39.922 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 28/50, Train Loss: 0.046534602594089834, Val Loss: 0.04376341321983853 +2024-07-19 14:27:40.289 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 29/50, Train Loss: 0.04646361496758788, Val Loss: 0.04324426250280561 +2024-07-19 14:27:40.668 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 30/50, Train Loss: 0.046534446846336536, Val Loss: 0.04378407413290965 +2024-07-19 14:27:41.035 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 31/50, Train Loss: 0.04625100466384463, Val Loss: 0.04325971739819726 +2024-07-19 14:27:41.415 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 32/50, Train Loss: 0.04635750451316572, Val Loss: 0.04338217093735128 +2024-07-19 14:27:41.787 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 33/50, Train Loss: 0.04611378681067735, Val Loss: 0.04311302699450705 +2024-07-19 14:27:42.145 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 34/50, Train Loss: 0.04635054281313125, Val Loss: 0.043274337325144456 +2024-07-19 14:27:42.513 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 35/50, Train Loss: 0.046185918841255856, Val Loss: 0.04324063273599824 +2024-07-19 14:27:42.882 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 36/50, Train Loss: 0.04630141628727521, Val Loss: 0.04328898617343323 +2024-07-19 14:27:43.238 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 37/50, Train Loss: 0.04607835340581528, Val Loss: 0.043110378111737804 +2024-07-19 14:27:43.607 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 38/50, Train Loss: 0.04620326136889523, Val Loss: 0.04318626418810438 +2024-07-19 14:27:43.969 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 39/50, Train Loss: 0.046052919394553526, Val Loss: 0.04303877161362687 +2024-07-19 14:27:44.331 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 40/50, Train Loss: 0.04626730451845143, Val Loss: 0.043472773622016646 +2024-07-19 14:27:44.734 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 41/50, Train Loss: 0.046196362616060534, Val Loss: 0.043325963153226954 +2024-07-19 14:27:45.092 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 42/50, Train Loss: 0.046067790064501436, Val Loss: 0.04320833766581239 +2024-07-19 14:27:45.457 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 43/50, Train Loss: 0.04618162700064378, Val Loss: 0.04325370125573229 +2024-07-19 14:27:45.820 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 44/50, Train Loss: 0.04610677464061404, Val Loss: 0.0431640925943046 +2024-07-19 14:27:46.183 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 45/50, Train Loss: 0.04612818089862392, Val Loss: 0.04316053834013842 +2024-07-19 14:27:46.548 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 46/50, Train Loss: 0.04610569476570985, Val Loss: 0.04319191356567112 +2024-07-19 14:27:46.967 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 47/50, Train Loss: 0.046142873902843426, Val Loss: 0.04345162545104284 +2024-07-19 14:27:47.384 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 48/50, Train Loss: 0.04600880915069417, Val Loss: 0.04312184470630175 +2024-07-19 14:27:47.744 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 49/50, Train Loss: 0.04623199402265353, Val Loss: 0.04342518872707277 +2024-07-19 14:27:48.124 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 50/50, Train Loss: 0.04615461680885047, Val Loss: 0.043433812170012576 +2024-07-19 14:27:48.124 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Fold 1, MAPE: 11.94% +2024-07-19 14:27:48.233 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_1001_5000_LSTM//train_f1_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-19 14:27:48.753 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 1/50, Train Loss: 0.0444239135154269, Val Loss: 0.0439270611953091 +2024-07-19 14:27:49.251 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 2/50, Train Loss: 0.04500943613661961, Val Loss: 0.04389030541721228 +2024-07-19 14:27:49.777 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 3/50, Train Loss: 0.045045679248869416, Val Loss: 0.043804299187015845 +2024-07-19 14:27:50.295 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 4/50, Train Loss: 0.04469434200701389, Val Loss: 0.04382970989555926 +2024-07-19 14:27:50.830 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 5/50, Train Loss: 0.044765722294422716, Val Loss: 0.04385200298919871 +2024-07-19 14:27:51.338 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 6/50, Train Loss: 0.04468507309528914, Val Loss: 0.04387974059460936 +2024-07-19 14:27:51.847 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 7/50, Train Loss: 0.04466980340128595, Val Loss: 0.043753520711450965 +2024-07-19 14:27:52.358 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 8/50, Train Loss: 0.04471418496898629, Val Loss: 0.04373663125207295 +2024-07-19 14:27:52.871 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 9/50, Train Loss: 0.04471720292825591, Val Loss: 0.043824051229937655 +2024-07-19 14:27:53.505 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 10/50, Train Loss: 0.044742051512002945, Val Loss: 0.04377835410068164 +2024-07-19 14:27:54.032 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 11/50, Train Loss: 0.04466713372279297, Val Loss: 0.043846211522012145 +2024-07-19 14:27:54.541 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 12/50, Train Loss: 0.04464995686642148, Val Loss: 0.04375983960926533 +2024-07-19 14:27:55.053 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 13/50, Train Loss: 0.044637538408013905, Val Loss: 0.043792301386192035 +2024-07-19 14:27:55.559 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 14/50, Train Loss: 0.04463334286754782, Val Loss: 0.04376611360222907 +2024-07-19 14:27:56.064 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 15/50, Train Loss: 0.044614445705982775, Val Loss: 0.04372948760519157 +2024-07-19 14:27:56.574 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 16/50, Train Loss: 0.044610051065683366, Val Loss: 0.04370225387046466 +2024-07-19 14:27:57.133 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 17/50, Train Loss: 0.044587805663997476, Val Loss: 0.04381276405340916 +2024-07-19 14:27:57.642 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 18/50, Train Loss: 0.04452459742738442, Val Loss: 0.04380295994515355 +2024-07-19 14:27:58.218 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 19/50, Train Loss: 0.04450827164744789, Val Loss: 0.043768617198676675 +2024-07-19 14:27:58.724 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 20/50, Train Loss: 0.044455753470009025, Val Loss: 0.04379036161746528 +2024-07-19 14:27:59.261 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 21/50, Train Loss: 0.044464915262704546, Val Loss: 0.04375118324281396 +2024-07-19 14:27:59.761 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 22/50, Train Loss: 0.04442928811027245, Val Loss: 0.043763595960430196 +2024-07-19 14:28:00.269 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 23/50, Train Loss: 0.04444485872306607, Val Loss: 0.04375398667478884 +2024-07-19 14:28:00.798 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 24/50, Train Loss: 0.04458721630613912, Val Loss: 0.043786694069166444 +2024-07-19 14:28:01.321 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 25/50, Train Loss: 0.04439737905155529, Val Loss: 0.043824197724461555 +2024-07-19 14:28:01.828 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 26/50, Train Loss: 0.04449275964024392, Val Loss: 0.04373090724284585 +2024-07-19 14:28:02.328 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 27/50, Train Loss: 0.044419475763358855, Val Loss: 0.043833364506025575 +2024-07-19 14:28:02.834 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 28/50, Train Loss: 0.0444032561880621, Val Loss: 0.04380373873219297 +2024-07-19 14:28:03.336 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 29/50, Train Loss: 0.04457718912850727, Val Loss: 0.043856330467639745 +2024-07-19 14:28:03.840 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 30/50, Train Loss: 0.04447081632573496, Val Loss: 0.043770487848165875 +2024-07-19 14:28:04.341 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 31/50, Train Loss: 0.044440851716155354, Val Loss: 0.04381448730222277 +2024-07-19 14:28:04.846 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 32/50, Train Loss: 0.04444266811690547, Val Loss: 0.04388442670775426 +2024-07-19 14:28:05.357 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 33/50, Train Loss: 0.04450307573107156, Val Loss: 0.04383657328985833 +2024-07-19 14:28:05.940 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 34/50, Train Loss: 0.04442345794628967, Val Loss: 0.0438870771511181 +2024-07-19 14:28:06.462 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 35/50, Train Loss: 0.044449089636856856, Val Loss: 0.04388564809955455 +2024-07-19 14:28:06.968 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 36/50, Train Loss: 0.04447759118947116, Val Loss: 0.043825722626737645 +2024-07-19 14:28:07.478 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 37/50, Train Loss: 0.044477773965759713, Val Loss: 0.043817557444846306 +2024-07-19 14:28:07.987 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 38/50, Train Loss: 0.044400299713015554, Val Loss: 0.04390113362790765 +2024-07-19 14:28:08.493 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 39/50, Train Loss: 0.04444315431808883, Val Loss: 0.04380947029268419 +2024-07-19 14:28:09.003 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 40/50, Train Loss: 0.04441850842400031, Val Loss: 0.0438781535202587 +2024-07-19 14:28:09.516 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 41/50, Train Loss: 0.04440756372430108, Val Loss: 0.04390840932122759 +2024-07-19 14:28:10.023 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 42/50, Train Loss: 0.04439149085770954, Val Loss: 0.043823376902051875 +2024-07-19 14:28:10.527 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 43/50, Train Loss: 0.04443356012078849, Val Loss: 0.04377235059399862 +2024-07-19 14:28:11.017 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 44/50, Train Loss: 0.04446579304269769, Val Loss: 0.043858905045970065 +2024-07-19 14:28:11.519 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 45/50, Train Loss: 0.04437076799910177, Val Loss: 0.043882201601927344 +2024-07-19 14:28:12.009 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 46/50, Train Loss: 0.04443260285664689, Val Loss: 0.04392915772827896 +2024-07-19 14:28:12.499 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 47/50, Train Loss: 0.044382867081598804, Val Loss: 0.04398642258869635 +2024-07-19 14:28:12.990 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 48/50, Train Loss: 0.04431911574845964, Val Loss: 0.04403285062997728 +2024-07-19 14:28:13.479 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 49/50, Train Loss: 0.044350976564667445, Val Loss: 0.04393654759671237 +2024-07-19 14:28:13.971 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 50/50, Train Loss: 0.044366380978714336, Val Loss: 0.04382018709706294 +2024-07-19 14:28:13.972 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Fold 2, MAPE: 11.51% +2024-07-19 14:28:14.087 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_1001_5000_LSTM//train_f2_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-19 14:28:14.762 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 1/50, Train Loss: 0.0442130109295249, Val Loss: 0.05300989973585348 +2024-07-19 14:28:15.392 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 2/50, Train Loss: 0.04498927957340054, Val Loss: 0.053081842391072095 +2024-07-19 14:28:16.013 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 3/50, Train Loss: 0.04480557335055854, Val Loss: 0.05309825687593705 +2024-07-19 14:28:16.636 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 4/50, Train Loss: 0.044684492102632783, Val Loss: 0.0531049111505618 +2024-07-19 14:28:17.260 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 5/50, Train Loss: 0.044627551920711994, Val Loss: 0.05311569103316681 +2024-07-19 14:28:17.883 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 6/50, Train Loss: 0.04452409715174812, Val Loss: 0.05311130848083947 +2024-07-19 14:28:18.510 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 7/50, Train Loss: 0.04450751034772559, Val Loss: 0.05307959357427584 +2024-07-19 14:28:19.134 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 8/50, Train Loss: 0.044590881910838494, Val Loss: 0.05313850516403044 +2024-07-19 14:28:19.758 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 9/50, Train Loss: 0.044581259588060314, Val Loss: 0.05311770641521828 +2024-07-19 14:28:20.389 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 10/50, Train Loss: 0.04460845225528903, Val Loss: 0.053114292287343254 +2024-07-19 14:28:21.029 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 11/50, Train Loss: 0.0445547600289526, Val Loss: 0.05311752770196747 +2024-07-19 14:28:21.656 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 12/50, Train Loss: 0.04448744599796729, Val Loss: 0.05308371666516807 +2024-07-19 14:28:22.279 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 13/50, Train Loss: 0.04452206074477059, Val Loss: 0.05313275975955499 +2024-07-19 14:28:22.902 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 14/50, Train Loss: 0.04455047558788976, Val Loss: 0.05311561723214549 +2024-07-19 14:28:23.526 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 15/50, Train Loss: 0.044502702822321896, Val Loss: 0.05313604647243345 +2024-07-19 14:28:24.148 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 16/50, Train Loss: 0.044524745288470835, Val Loss: 0.05313297356101307 +2024-07-19 14:28:24.769 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 17/50, Train Loss: 0.04451677810451756, Val Loss: 0.05310822424252291 +2024-07-19 14:28:25.392 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 18/50, Train Loss: 0.04455051327455942, Val Loss: 0.0531449934115281 +2024-07-19 14:28:26.017 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 19/50, Train Loss: 0.044421252960415734, Val Loss: 0.0531103810849222 +2024-07-19 14:28:26.641 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 20/50, Train Loss: 0.04450205358842464, Val Loss: 0.053143118432647476 +2024-07-19 14:28:27.263 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 21/50, Train Loss: 0.044520531462071695, Val Loss: 0.05311329662799835 +2024-07-19 14:28:27.889 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 22/50, Train Loss: 0.044481227646441496, Val Loss: 0.05313447319172524 +2024-07-19 14:28:28.520 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 23/50, Train Loss: 0.04446965070722038, Val Loss: 0.053130778760926145 +2024-07-19 14:28:29.141 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 24/50, Train Loss: 0.04442594394291917, Val Loss: 0.05313113467717493 +2024-07-19 14:28:29.765 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 25/50, Train Loss: 0.044449198225589646, Val Loss: 0.05313109908555005 +2024-07-19 14:28:30.424 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 26/50, Train Loss: 0.04446025945450345, Val Loss: 0.053096713800285314 +2024-07-19 14:28:31.067 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 27/50, Train Loss: 0.0444205737200706, Val Loss: 0.053092000401906064 +2024-07-19 14:28:31.691 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 28/50, Train Loss: 0.04443730322057254, Val Loss: 0.05309457055016144 +2024-07-19 14:28:32.314 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 29/50, Train Loss: 0.04441720932364872, Val Loss: 0.053076994378824495 +2024-07-19 14:28:32.937 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 30/50, Train Loss: 0.04444724848264293, Val Loss: 0.05305821453598705 +2024-07-19 14:28:33.560 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 31/50, Train Loss: 0.04440412541519698, Val Loss: 0.05308451458207659 +2024-07-19 14:28:34.189 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 32/50, Train Loss: 0.04446995235367181, Val Loss: 0.053074583411216736 +2024-07-19 14:28:34.810 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 33/50, Train Loss: 0.04441510337366633, Val Loss: 0.0530736508300981 +2024-07-19 14:28:35.432 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 34/50, Train Loss: 0.04437476388905963, Val Loss: 0.05307480410949604 +2024-07-19 14:28:36.056 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 35/50, Train Loss: 0.04436460245808918, Val Loss: 0.05306660409110624 +2024-07-19 14:28:36.678 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 36/50, Train Loss: 0.044421492642021346, Val Loss: 0.05306819277639325 +2024-07-19 14:28:37.300 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 37/50, Train Loss: 0.04439766488152824, Val Loss: 0.053033879127454116 +2024-07-19 14:28:37.927 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 38/50, Train Loss: 0.04438191024612074, Val Loss: 0.05303118493710015 +2024-07-19 14:28:38.554 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 39/50, Train Loss: 0.04441960441739592, Val Loss: 0.05303577308517855 +2024-07-19 14:28:39.189 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 40/50, Train Loss: 0.044353772133384664, Val Loss: 0.05302406766930142 +2024-07-19 14:28:39.825 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 41/50, Train Loss: 0.044366176903554023, Val Loss: 0.05299924485184051 +2024-07-19 14:28:40.454 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 42/50, Train Loss: 0.04437415421723503, Val Loss: 0.053025144932640565 +2024-07-19 14:28:41.091 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 43/50, Train Loss: 0.04435424173684561, Val Loss: 0.052970736715439205 +2024-07-19 14:28:41.723 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 44/50, Train Loss: 0.04441290389593333, Val Loss: 0.05298588872962707 +2024-07-19 14:28:42.345 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 45/50, Train Loss: 0.04439187234854453, Val Loss: 0.052932372417401626 +2024-07-19 14:28:42.969 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 46/50, Train Loss: 0.044398819517395265, Val Loss: 0.05293089851132921 +2024-07-19 14:28:43.595 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 47/50, Train Loss: 0.044361212010150905, Val Loss: 0.052823011738223 +2024-07-19 14:28:44.217 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 48/50, Train Loss: 0.04436452094822714, Val Loss: 0.052715061786206996 +2024-07-19 14:28:44.843 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 49/50, Train Loss: 0.04426681689203602, Val Loss: 0.05273898590255428 +2024-07-19 14:28:45.465 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 50/50, Train Loss: 0.044035035810650214, Val Loss: 0.052746171433780645 +2024-07-19 14:28:45.466 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Fold 3, MAPE: 13.65% +2024-07-19 14:28:45.580 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_1001_5000_LSTM//train_f3_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-19 14:28:46.385 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 1/50, Train Loss: 0.04570795790097871, Val Loss: 0.04390113181560426 +2024-07-19 14:28:47.191 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 2/50, Train Loss: 0.04611845683961452, Val Loss: 0.04388136396536956 +2024-07-19 14:28:47.988 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 3/50, Train Loss: 0.04585334417092931, Val Loss: 0.04378164398509103 +2024-07-19 14:28:48.764 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 4/50, Train Loss: 0.04585532331327488, Val Loss: 0.04372382984572166 +2024-07-19 14:28:49.546 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 5/50, Train Loss: 0.04589448587784728, Val Loss: 0.04373005430239278 +2024-07-19 14:28:50.330 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 6/50, Train Loss: 0.04577959146719057, Val Loss: 0.043742161093128694 +2024-07-19 14:28:51.115 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 7/50, Train Loss: 0.04577738687314175, Val Loss: 0.043759075522020054 +2024-07-19 14:28:51.891 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 8/50, Train Loss: 0.04576681154155797, Val Loss: 0.04373231887616016 +2024-07-19 14:28:52.673 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 9/50, Train Loss: 0.04574585102171033, Val Loss: 0.04379953438969883 +2024-07-19 14:28:53.459 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 10/50, Train Loss: 0.04569871128014811, Val Loss: 0.04390723228051856 +2024-07-19 14:28:54.259 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 11/50, Train Loss: 0.045836678869858545, Val Loss: 0.04394126819396341 +2024-07-19 14:28:55.048 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 12/50, Train Loss: 0.045649076607283, Val Loss: 0.04401551670319325 +2024-07-19 14:28:55.868 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 13/50, Train Loss: 0.04573874654514449, Val Loss: 0.04403266990305604 +2024-07-19 14:28:56.654 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 14/50, Train Loss: 0.04565024123127971, Val Loss: 0.04417214764131082 +2024-07-19 14:28:57.432 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 15/50, Train Loss: 0.045667586397829946, Val Loss: 0.044260081608553194 +2024-07-19 14:28:58.226 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 16/50, Train Loss: 0.0456713533315521, Val Loss: 0.04483943649039075 +2024-07-19 14:28:59.017 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 17/50, Train Loss: 0.04558169132528397, Val Loss: 0.0444033197253137 +2024-07-19 14:28:59.813 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 18/50, Train Loss: 0.04553932225802443, Val Loss: 0.044587310705636 +2024-07-19 14:29:00.620 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 19/50, Train Loss: 0.04560936863564855, Val Loss: 0.04468088989724984 +2024-07-19 14:29:01.400 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 20/50, Train Loss: 0.04562752441103969, Val Loss: 0.04422147144135591 +2024-07-19 14:29:02.186 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 21/50, Train Loss: 0.04556450862846859, Val Loss: 0.04476281305825388 +2024-07-19 14:29:02.964 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 22/50, Train Loss: 0.04553155853812184, Val Loss: 0.044584301627568296 +2024-07-19 14:29:03.743 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 23/50, Train Loss: 0.045537600703128095, Val Loss: 0.04506977486449319 +2024-07-19 14:29:04.521 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 24/50, Train Loss: 0.045531942590989256, Val Loss: 0.0443658413415825 +2024-07-19 14:29:05.293 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 25/50, Train Loss: 0.04547891526349953, Val Loss: 0.045010879132393246 +2024-07-19 14:29:06.072 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 26/50, Train Loss: 0.045469696510705974, Val Loss: 0.044803617924854565 +2024-07-19 14:29:06.852 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 27/50, Train Loss: 0.045484741075107686, Val Loss: 0.045018652806410916 +2024-07-19 14:29:07.646 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 28/50, Train Loss: 0.045521709003618786, Val Loss: 0.04445854957039292 +2024-07-19 14:29:08.460 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 29/50, Train Loss: 0.045449913561262274, Val Loss: 0.04460891653355714 +2024-07-19 14:29:09.378 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 30/50, Train Loss: 0.04542572407440825, Val Loss: 0.04506077305287928 +2024-07-19 14:29:10.217 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 31/50, Train Loss: 0.045446123753848315, Val Loss: 0.044988815093765386 +2024-07-19 14:29:11.046 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 32/50, Train Loss: 0.04546645700235616, Val Loss: 0.04496264744650673 +2024-07-19 14:29:11.838 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 33/50, Train Loss: 0.04542276347158374, Val Loss: 0.0447256391918337 +2024-07-19 14:29:12.676 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 34/50, Train Loss: 0.045358195286858215, Val Loss: 0.0452349053041355 +2024-07-19 14:29:13.580 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 35/50, Train Loss: 0.04551164801795404, Val Loss: 0.0450804831107726 +2024-07-19 14:29:14.411 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 36/50, Train Loss: 0.04535801729166901, Val Loss: 0.045209021584407705 +2024-07-19 14:29:15.292 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 37/50, Train Loss: 0.04546793096872804, Val Loss: 0.04489468692525013 +2024-07-19 14:29:16.163 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 38/50, Train Loss: 0.045330760785593435, Val Loss: 0.04505518632563385 +2024-07-19 14:29:17.034 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 39/50, Train Loss: 0.04539817477484326, Val Loss: 0.045049932407769 +2024-07-19 14:29:17.907 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 40/50, Train Loss: 0.045388476779827706, Val Loss: 0.04426373727619648 +2024-07-19 14:29:18.802 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 41/50, Train Loss: 0.04534132610801812, Val Loss: 0.044633111589261004 +2024-07-19 14:29:19.679 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 42/50, Train Loss: 0.045297880595611344, Val Loss: 0.04494992885235194 +2024-07-19 14:29:20.542 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 43/50, Train Loss: 0.045284793425637945, Val Loss: 0.044540340936667214 +2024-07-19 14:29:21.423 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 44/50, Train Loss: 0.04519698679815609, Val Loss: 0.04508725553750992 +2024-07-19 14:29:22.263 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 45/50, Train Loss: 0.045311280485283545, Val Loss: 0.04445128047184364 +2024-07-19 14:29:23.126 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 46/50, Train Loss: 0.045142521447205285, Val Loss: 0.045146406099602986 +2024-07-19 14:29:24.017 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 47/50, Train Loss: 0.04520932317885396, Val Loss: 0.044873338494751905 +2024-07-19 14:29:24.898 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 48/50, Train Loss: 0.045188287805233686, Val Loss: 0.04485096953607894 +2024-07-19 14:29:25.781 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 49/50, Train Loss: 0.04512279949427306, Val Loss: 0.044704538040064475 +2024-07-19 14:29:26.640 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 50/50, Train Loss: 0.045130791214223094, Val Loss: 0.04501978544568693 +2024-07-19 14:29:26.640 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Fold 4, MAPE: 14.12% +2024-07-19 14:29:26.752 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_1001_5000_LSTM//train_f4_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-19 14:29:31.525 [8/cross_validate_train/75 (pid 589)] Task finished successfully. +2024-07-19 14:29:31.557 [8/model_scores/76 (pid 1226)] Task is starting. +2024-07-19 14:29:33.127 [8/model_scores/76 (pid 1226)] INFO:__main__:Average Train Loss across all folds: 0.04640028327626152 +2024-07-19 14:29:37.114 [8/model_scores/76 (pid 1226)] INFO:__main__:Average Validation Loss across all folds: 0.04715194438357611 +2024-07-19 14:29:37.115 [8/model_scores/76 (pid 1226)] INFO:__main__:Average MAPE across all folds: 12.41% +2024-07-19 14:29:37.115 [8/model_scores/76 (pid 1226)] Task finished successfully. +2024-07-19 14:29:37.148 [8/validate_model/77 (pid 1268)] Task is starting. +2024-07-19 14:29:38.717 [8/validate_model/77 (pid 1268)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:29:38.844 [8/validate_model/77 (pid 1268)] INFO:__main__:Test Set MAPE: 10.78% +2024-07-19 14:29:39.266 [8/validate_model/77 (pid 1268)] INFO:__main__:Test image saved at metaflow_models//bgd_lodging_residential_1001_5000_LSTM//test_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-19 14:29:39.690 [8/validate_model/77 (pid 1268)] Task finished successfully. +2024-07-19 14:29:39.719 [8/log_model/78 (pid 1292)] Task is starting. +2024-07-19 14:29:41.275 [8/log_model/78 (pid 1292)] INFO:__main__:Logging model bgd_lodging_residential_1001_5000_LSTM +2024-07-19 14:29:41.277 [8/log_model/78 (pid 1292)] INFO:__main__:Model logged at metaflow_models//bgd_lodging_residential_1001_5000_LSTM//bgd_lodging_residential_1001_5000_LSTM.pth +2024-07-19 14:29:45.311 [8/log_model/78 (pid 1292)] Task finished successfully. +2024-07-19 14:29:45.351 [8/end/79 (pid 1333)] Task is starting. +2024-07-19 14:29:46.873 [8/end/79 (pid 1333)] INFO:__main__:Pipeline end. +2024-07-19 14:29:47.250 [8/end/79 (pid 1333)] Task finished successfully. +2024-07-19 14:29:47.250 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/8') succeeded: +-- stdout -- +2024-07-19 14:26:50.738 Workflow starting (run-id 8): +2024-07-19 14:26:50.811 [8/start/67 (pid 306)] Task is starting. +2024-07-19 14:26:52.283 [8/start/67 (pid 306)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:26:52.583 [8/start/67 (pid 306)] Task finished successfully. +2024-07-19 14:26:52.621 [8/ingest/68 (pid 332)] Task is starting. +2024-07-19 14:26:54.082 [8/ingest/68 (pid 332)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:26:54.094 [8/ingest/68 (pid 332)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:26:57.967 [8/ingest/68 (pid 332)] Task finished successfully. +2024-07-19 14:26:57.997 [8/pick_2017_data/69 (pid 369)] Task is starting. +2024-07-19 14:26:59.507 [8/pick_2017_data/69 (pid 369)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:26:59.816 [8/pick_2017_data/69 (pid 369)] Task finished successfully. +2024-07-19 14:26:59.848 [8/fill_missing_data/70 (pid 384)] Task is starting. +2024-07-19 14:27:01.348 [8/fill_missing_data/70 (pid 384)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:27:01.352 [8/fill_missing_data/70 (pid 384)] INFO:__main__:NaN counts per column: +2024-07-19 14:27:01.352 [8/fill_missing_data/70 (pid 384)] INFO:__main__:Rat_lodging_Jeannette 27 +2024-07-19 14:27:01.352 [8/fill_missing_data/70 (pid 384)] dtype: int64 +2024-07-19 14:27:01.352 [8/fill_missing_data/70 (pid 384)] --- Logging error --- +2024-07-19 14:27:01.353 [8/fill_missing_data/70 (pid 384)] Traceback (most recent call last): +2024-07-19 14:27:01.353 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] msg = self.format(record) +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] return fmt.format(record) +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] record.message = record.getMessage() +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] msg = msg % self.args +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] TypeError: not all arguments converted during string formatting +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] Call stack: +2024-07-19 14:27:01.354 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:27:01.679 [8/fill_missing_data/70 (pid 384)] BGD_LinearFlow() +2024-07-19 14:27:01.679 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] cli.main(self) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] return func(*args, **kwargs) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] return self.main(*args, **kwargs) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] rv = self.invoke(ctx) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] return callback(*args, **kwargs) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] task.run_step( +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] self._exec_step_function(step_func) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] step_function() +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:27:01.680 [8/fill_missing_data/70 (pid 384)] Arguments: (27,) +2024-07-19 14:27:01.681 [8/fill_missing_data/70 (pid 384)] Task finished successfully. +2024-07-19 14:27:01.712 [8/find_median/71 (pid 408)] Task is starting. +2024-07-19 14:27:03.188 [8/find_median/71 (pid 408)] INFO:__main__:Computing and using median.. +2024-07-19 14:27:03.702 [8/find_median/71 (pid 408)] Task finished successfully. +2024-07-19 14:27:03.733 [8/aggregate_data/72 (pid 441)] Task is starting. +2024-07-19 14:27:05.206 [8/aggregate_data/72 (pid 441)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:27:09.038 [8/aggregate_data/72 (pid 441)] Task finished successfully. +2024-07-19 14:27:09.070 [8/split_data/73 (pid 528)] Task is starting. +2024-07-19 14:27:10.521 [8/split_data/73 (pid 528)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:27:14.414 [8/split_data/73 (pid 528)] Task finished successfully. +2024-07-19 14:27:14.445 [8/make_x_y/74 (pid 570)] Task is starting. +2024-07-19 14:27:16.271 [8/make_x_y/74 (pid 570)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:27:16.581 [8/make_x_y/74 (pid 570)] Shape of y_train: (6978, 1) +2024-07-19 14:27:16.581 [8/make_x_y/74 (pid 570)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:27:16.581 [8/make_x_y/74 (pid 570)] Shape of y_test: (1722, 1) +2024-07-19 14:27:16.582 [8/make_x_y/74 (pid 570)] Task finished successfully. +2024-07-19 14:27:16.613 [8/cross_validate_train/75 (pid 589)] Task is starting. +2024-07-19 14:27:18.095 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Creating bgd_lodging_residential_1001_5000_LSTM +2024-07-19 14:27:18.096 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Performing cross validation.. +2024-07-19 14:27:18.849 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 1/50, Train Loss: 0.17529371169370575, Val Loss: 0.18017139527443293 +2024-07-19 14:27:19.062 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 2/50, Train Loss: 0.151415980144127, Val Loss: 0.19181571709545883 +2024-07-19 14:27:19.276 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 3/50, Train Loss: 0.13537986053002848, Val Loss: 0.17966576856938568 +2024-07-19 14:27:19.485 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 4/50, Train Loss: 0.1343690163984492, Val Loss: 0.17491375624730782 +2024-07-19 14:27:19.708 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 5/50, Train Loss: 0.1262268636476349, Val Loss: 0.15834123238518433 +2024-07-19 14:27:19.922 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 6/50, Train Loss: 0.11992024892085307, Val Loss: 0.14224724099040031 +2024-07-19 14:27:20.144 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 7/50, Train Loss: 0.1121759048184833, Val Loss: 0.12509211495115952 +2024-07-19 14:27:20.369 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 8/50, Train Loss: 0.1070920981064036, Val Loss: 0.11541418620460742 +2024-07-19 14:27:20.595 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 9/50, Train Loss: 0.0974491591993216, Val Loss: 0.104645381908159 +2024-07-19 14:27:20.867 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 10/50, Train Loss: 0.08798110988494512, Val Loss: 0.0906919866196207 +2024-07-19 14:27:21.081 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 11/50, Train Loss: 0.08210518211126328, Val Loss: 0.08154686198041246 +2024-07-19 14:27:21.301 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 12/50, Train Loss: 0.07791825152329497, Val Loss: 0.07682124696470596 +2024-07-19 14:27:21.534 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 13/50, Train Loss: 0.07518505969563045, Val Loss: 0.07216265274060739 +2024-07-19 14:27:21.736 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 14/50, Train Loss: 0.07326598364759136, Val Loss: 0.0685359551697164 +2024-07-19 14:27:21.937 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 15/50, Train Loss: 0.07111561439327292, Val Loss: 0.06443090313995206 +2024-07-19 14:27:22.149 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 16/50, Train Loss: 0.06907058366247125, Val Loss: 0.06232915506572337 +2024-07-19 14:27:22.352 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 17/50, Train Loss: 0.06703986821545137, Val Loss: 0.06018877492563145 +2024-07-19 14:27:22.556 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 18/50, Train Loss: 0.06486519929525014, Val Loss: 0.058627928128919087 +2024-07-19 14:27:22.760 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 19/50, Train Loss: 0.06339036018864529, Val Loss: 0.05692584812641144 +2024-07-19 14:27:22.956 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 20/50, Train Loss: 0.061056009720306136, Val Loss: 0.05594358099876223 +2024-07-19 14:27:23.159 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 21/50, Train Loss: 0.06066493146322869, Val Loss: 0.05423540954251547 +2024-07-19 14:27:23.360 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 22/50, Train Loss: 0.05852417849205636, Val Loss: 0.05341448015659242 +2024-07-19 14:27:23.563 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 23/50, Train Loss: 0.05673171871820012, Val Loss: 0.05272106156759971 +2024-07-19 14:27:23.766 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 24/50, Train Loss: 0.05617404437145671, Val Loss: 0.051652533178393904 +2024-07-19 14:27:23.971 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 25/50, Train Loss: 0.05457017389503685, Val Loss: 0.052325249221679325 +2024-07-19 14:27:24.172 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 26/50, Train Loss: 0.055767570295043895, Val Loss: 0.05182860660794619 +2024-07-19 14:27:24.377 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 27/50, Train Loss: 0.05462800046882114, Val Loss: 0.05173547586073746 +2024-07-19 14:27:24.578 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 28/50, Train Loss: 0.05448231624590384, Val Loss: 0.05123513982304045 +2024-07-19 14:27:24.781 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 29/50, Train Loss: 0.05332062232333261, Val Loss: 0.05093882917552381 +2024-07-19 14:27:24.986 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 30/50, Train Loss: 0.05309248000786111, Val Loss: 0.050746822075263875 +2024-07-19 14:27:25.187 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 31/50, Train Loss: 0.05291555137247653, Val Loss: 0.050671054906136284 +2024-07-19 14:27:25.388 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 32/50, Train Loss: 0.0527415459824575, Val Loss: 0.05071333423256874 +2024-07-19 14:27:25.588 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 33/50, Train Loss: 0.05299535393714905, Val Loss: 0.05075039427626778 +2024-07-19 14:27:25.789 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 34/50, Train Loss: 0.05270274829220127, Val Loss: 0.050688254923836606 +2024-07-19 14:27:25.988 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 35/50, Train Loss: 0.05272943395617846, Val Loss: 0.05078400303987232 +2024-07-19 14:27:26.188 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 36/50, Train Loss: 0.05293800460325705, Val Loss: 0.05079216706390317 +2024-07-19 14:27:26.391 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 37/50, Train Loss: 0.05276278074125986, Val Loss: 0.05066175542369082 +2024-07-19 14:27:26.589 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 38/50, Train Loss: 0.052712464554084314, Val Loss: 0.05068983535307485 +2024-07-19 14:27:26.796 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 39/50, Train Loss: 0.05279959486545743, Val Loss: 0.05088938772678375 +2024-07-19 14:27:27.008 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 40/50, Train Loss: 0.05279426860648233, Val Loss: 0.05073915019228652 +2024-07-19 14:27:27.214 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 41/50, Train Loss: 0.05265075230115169, Val Loss: 0.05054563515492388 +2024-07-19 14:27:27.429 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 42/50, Train Loss: 0.0527459111165356, Val Loss: 0.05047385938264228 +2024-07-19 14:27:27.643 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 43/50, Train Loss: 0.05220162677201065, Val Loss: 0.05074952366585667 +2024-07-19 14:27:27.854 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 44/50, Train Loss: 0.05270068367590775, Val Loss: 0.050618180652727954 +2024-07-19 14:27:28.078 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 45/50, Train Loss: 0.05215156209227201, Val Loss: 0.05088683368789183 +2024-07-19 14:27:28.281 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 46/50, Train Loss: 0.05261397492643949, Val Loss: 0.0506231473708475 +2024-07-19 14:27:28.482 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 47/50, Train Loss: 0.05244274447495873, Val Loss: 0.050738924711539936 +2024-07-19 14:27:28.683 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 48/50, Train Loss: 0.05236302890084885, Val Loss: 0.05069812739620338 +2024-07-19 14:27:28.893 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 49/50, Train Loss: 0.05244475864880794, Val Loss: 0.05064967284734185 +2024-07-19 14:27:29.103 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 50/50, Train Loss: 0.052314591568869515, Val Loss: 0.05073976577133746 +2024-07-19 14:27:29.103 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Fold 0, MAPE: 10.85% +2024-07-19 14:27:29.431 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_1001_5000_LSTM//train_f0_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-19 14:27:29.884 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 1/50, Train Loss: 0.04628469060136847, Val Loss: 0.04378945919106136 +2024-07-19 14:27:30.234 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 2/50, Train Loss: 0.046930487382493606, Val Loss: 0.04300672938493458 +2024-07-19 14:27:30.606 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 3/50, Train Loss: 0.048369883495855005, Val Loss: 0.04293581143625685 +2024-07-19 14:27:31.009 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 4/50, Train Loss: 0.048667929096989436, Val Loss: 0.0441836850667322 +2024-07-19 14:27:31.376 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 5/50, Train Loss: 0.048288468169431165, Val Loss: 0.044095046063129965 +2024-07-19 14:27:31.761 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 6/50, Train Loss: 0.04743771525482609, Val Loss: 0.04359402814628305 +2024-07-19 14:27:32.121 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 7/50, Train Loss: 0.04695900470936951, Val Loss: 0.04382398437607933 +2024-07-19 14:27:32.485 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 8/50, Train Loss: 0.047281747836976834, Val Loss: 0.043961655298197594 +2024-07-19 14:27:32.855 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 9/50, Train Loss: 0.04727268619590426, Val Loss: 0.043858729202199624 +2024-07-19 14:27:33.225 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 10/50, Train Loss: 0.04698601694241779, Val Loss: 0.043519208509777044 +2024-07-19 14:27:33.596 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 11/50, Train Loss: 0.04701379954508723, Val Loss: 0.04385911834401053 +2024-07-19 14:27:33.957 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 12/50, Train Loss: 0.04699924498898526, Val Loss: 0.04376746361722817 +2024-07-19 14:27:34.323 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 13/50, Train Loss: 0.04725603139257594, Val Loss: 0.044051828013884055 +2024-07-19 14:27:34.691 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 14/50, Train Loss: 0.04690265137549132, Val Loss: 0.04378697099919255 +2024-07-19 14:27:35.056 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 15/50, Train Loss: 0.047011312658656136, Val Loss: 0.04370128579840467 +2024-07-19 14:27:35.424 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 16/50, Train Loss: 0.0466022616992258, Val Loss: 0.043481655569898116 +2024-07-19 14:27:35.793 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 17/50, Train Loss: 0.04651422227082187, Val Loss: 0.04348180976671141 +2024-07-19 14:27:36.158 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 18/50, Train Loss: 0.046943840966241, Val Loss: 0.043809811710505873 +2024-07-19 14:27:36.521 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 19/50, Train Loss: 0.046446787142386176, Val Loss: 0.043438879168919614 +2024-07-19 14:27:36.900 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 20/50, Train Loss: 0.046653161335685485, Val Loss: 0.04374453697252918 +2024-07-19 14:27:37.291 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 21/50, Train Loss: 0.046546284543120695, Val Loss: 0.04346553095289179 +2024-07-19 14:27:37.659 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 22/50, Train Loss: 0.046686626281844425, Val Loss: 0.04376776153976853 +2024-07-19 14:27:38.032 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 23/50, Train Loss: 0.046488249546860996, Val Loss: 0.043354485687371845 +2024-07-19 14:27:38.408 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 24/50, Train Loss: 0.0464146758034213, Val Loss: 0.043428586795926094 +2024-07-19 14:27:38.789 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 25/50, Train Loss: 0.04624473415825465, Val Loss: 0.04316908893855037 +2024-07-19 14:27:39.155 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 26/50, Train Loss: 0.04637536107983491, Val Loss: 0.043344773050095584 +2024-07-19 14:27:39.531 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 27/50, Train Loss: 0.046220795570375166, Val Loss: 0.04313388955150101 +2024-07-19 14:27:39.922 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 28/50, Train Loss: 0.046534602594089834, Val Loss: 0.04376341321983853 +2024-07-19 14:27:40.289 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 29/50, Train Loss: 0.04646361496758788, Val Loss: 0.04324426250280561 +2024-07-19 14:27:40.668 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 30/50, Train Loss: 0.046534446846336536, Val Loss: 0.04378407413290965 +2024-07-19 14:27:41.035 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 31/50, Train Loss: 0.04625100466384463, Val Loss: 0.04325971739819726 +2024-07-19 14:27:41.415 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 32/50, Train Loss: 0.04635750451316572, Val Loss: 0.04338217093735128 +2024-07-19 14:27:41.787 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 33/50, Train Loss: 0.04611378681067735, Val Loss: 0.04311302699450705 +2024-07-19 14:27:42.145 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 34/50, Train Loss: 0.04635054281313125, Val Loss: 0.043274337325144456 +2024-07-19 14:27:42.513 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 35/50, Train Loss: 0.046185918841255856, Val Loss: 0.04324063273599824 +2024-07-19 14:27:42.882 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 36/50, Train Loss: 0.04630141628727521, Val Loss: 0.04328898617343323 +2024-07-19 14:27:43.238 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 37/50, Train Loss: 0.04607835340581528, Val Loss: 0.043110378111737804 +2024-07-19 14:27:43.607 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 38/50, Train Loss: 0.04620326136889523, Val Loss: 0.04318626418810438 +2024-07-19 14:27:43.969 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 39/50, Train Loss: 0.046052919394553526, Val Loss: 0.04303877161362687 +2024-07-19 14:27:44.331 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 40/50, Train Loss: 0.04626730451845143, Val Loss: 0.043472773622016646 +2024-07-19 14:27:44.734 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 41/50, Train Loss: 0.046196362616060534, Val Loss: 0.043325963153226954 +2024-07-19 14:27:45.092 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 42/50, Train Loss: 0.046067790064501436, Val Loss: 0.04320833766581239 +2024-07-19 14:27:45.457 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 43/50, Train Loss: 0.04618162700064378, Val Loss: 0.04325370125573229 +2024-07-19 14:27:45.820 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 44/50, Train Loss: 0.04610677464061404, Val Loss: 0.0431640925943046 +2024-07-19 14:27:46.183 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 45/50, Train Loss: 0.04612818089862392, Val Loss: 0.04316053834013842 +2024-07-19 14:27:46.548 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 46/50, Train Loss: 0.04610569476570985, Val Loss: 0.04319191356567112 +2024-07-19 14:27:46.967 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 47/50, Train Loss: 0.046142873902843426, Val Loss: 0.04345162545104284 +2024-07-19 14:27:47.384 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 48/50, Train Loss: 0.04600880915069417, Val Loss: 0.04312184470630175 +2024-07-19 14:27:47.744 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 49/50, Train Loss: 0.04623199402265353, Val Loss: 0.04342518872707277 +2024-07-19 14:27:48.124 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 50/50, Train Loss: 0.04615461680885047, Val Loss: 0.043433812170012576 +2024-07-19 14:27:48.124 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Fold 1, MAPE: 11.94% +2024-07-19 14:27:48.233 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_1001_5000_LSTM//train_f1_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-19 14:27:48.753 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 1/50, Train Loss: 0.0444239135154269, Val Loss: 0.0439270611953091 +2024-07-19 14:27:49.251 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 2/50, Train Loss: 0.04500943613661961, Val Loss: 0.04389030541721228 +2024-07-19 14:27:49.777 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 3/50, Train Loss: 0.045045679248869416, Val Loss: 0.043804299187015845 +2024-07-19 14:27:50.295 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 4/50, Train Loss: 0.04469434200701389, Val Loss: 0.04382970989555926 +2024-07-19 14:27:50.830 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 5/50, Train Loss: 0.044765722294422716, Val Loss: 0.04385200298919871 +2024-07-19 14:27:51.338 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 6/50, Train Loss: 0.04468507309528914, Val Loss: 0.04387974059460936 +2024-07-19 14:27:51.847 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 7/50, Train Loss: 0.04466980340128595, Val Loss: 0.043753520711450965 +2024-07-19 14:27:52.358 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 8/50, Train Loss: 0.04471418496898629, Val Loss: 0.04373663125207295 +2024-07-19 14:27:52.871 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 9/50, Train Loss: 0.04471720292825591, Val Loss: 0.043824051229937655 +2024-07-19 14:27:53.505 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 10/50, Train Loss: 0.044742051512002945, Val Loss: 0.04377835410068164 +2024-07-19 14:27:54.032 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 11/50, Train Loss: 0.04466713372279297, Val Loss: 0.043846211522012145 +2024-07-19 14:27:54.541 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 12/50, Train Loss: 0.04464995686642148, Val Loss: 0.04375983960926533 +2024-07-19 14:27:55.053 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 13/50, Train Loss: 0.044637538408013905, Val Loss: 0.043792301386192035 +2024-07-19 14:27:55.559 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 14/50, Train Loss: 0.04463334286754782, Val Loss: 0.04376611360222907 +2024-07-19 14:27:56.064 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 15/50, Train Loss: 0.044614445705982775, Val Loss: 0.04372948760519157 +2024-07-19 14:27:56.574 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 16/50, Train Loss: 0.044610051065683366, Val Loss: 0.04370225387046466 +2024-07-19 14:27:57.133 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 17/50, Train Loss: 0.044587805663997476, Val Loss: 0.04381276405340916 +2024-07-19 14:27:57.642 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 18/50, Train Loss: 0.04452459742738442, Val Loss: 0.04380295994515355 +2024-07-19 14:27:58.218 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 19/50, Train Loss: 0.04450827164744789, Val Loss: 0.043768617198676675 +2024-07-19 14:27:58.724 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 20/50, Train Loss: 0.044455753470009025, Val Loss: 0.04379036161746528 +2024-07-19 14:27:59.261 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 21/50, Train Loss: 0.044464915262704546, Val Loss: 0.04375118324281396 +2024-07-19 14:27:59.761 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 22/50, Train Loss: 0.04442928811027245, Val Loss: 0.043763595960430196 +2024-07-19 14:28:00.269 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 23/50, Train Loss: 0.04444485872306607, Val Loss: 0.04375398667478884 +2024-07-19 14:28:00.798 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 24/50, Train Loss: 0.04458721630613912, Val Loss: 0.043786694069166444 +2024-07-19 14:28:01.321 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 25/50, Train Loss: 0.04439737905155529, Val Loss: 0.043824197724461555 +2024-07-19 14:28:01.828 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 26/50, Train Loss: 0.04449275964024392, Val Loss: 0.04373090724284585 +2024-07-19 14:28:02.328 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 27/50, Train Loss: 0.044419475763358855, Val Loss: 0.043833364506025575 +2024-07-19 14:28:02.834 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 28/50, Train Loss: 0.0444032561880621, Val Loss: 0.04380373873219297 +2024-07-19 14:28:03.336 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 29/50, Train Loss: 0.04457718912850727, Val Loss: 0.043856330467639745 +2024-07-19 14:28:03.840 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 30/50, Train Loss: 0.04447081632573496, Val Loss: 0.043770487848165875 +2024-07-19 14:28:04.341 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 31/50, Train Loss: 0.044440851716155354, Val Loss: 0.04381448730222277 +2024-07-19 14:28:04.846 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 32/50, Train Loss: 0.04444266811690547, Val Loss: 0.04388442670775426 +2024-07-19 14:28:05.357 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 33/50, Train Loss: 0.04450307573107156, Val Loss: 0.04383657328985833 +2024-07-19 14:28:05.940 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 34/50, Train Loss: 0.04442345794628967, Val Loss: 0.0438870771511181 +2024-07-19 14:28:06.462 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 35/50, Train Loss: 0.044449089636856856, Val Loss: 0.04388564809955455 +2024-07-19 14:28:06.968 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 36/50, Train Loss: 0.04447759118947116, Val Loss: 0.043825722626737645 +2024-07-19 14:28:07.478 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 37/50, Train Loss: 0.044477773965759713, Val Loss: 0.043817557444846306 +2024-07-19 14:28:07.987 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 38/50, Train Loss: 0.044400299713015554, Val Loss: 0.04390113362790765 +2024-07-19 14:28:08.493 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 39/50, Train Loss: 0.04444315431808883, Val Loss: 0.04380947029268419 +2024-07-19 14:28:09.003 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 40/50, Train Loss: 0.04441850842400031, Val Loss: 0.0438781535202587 +2024-07-19 14:28:09.516 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 41/50, Train Loss: 0.04440756372430108, Val Loss: 0.04390840932122759 +2024-07-19 14:28:10.023 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 42/50, Train Loss: 0.04439149085770954, Val Loss: 0.043823376902051875 +2024-07-19 14:28:10.527 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 43/50, Train Loss: 0.04443356012078849, Val Loss: 0.04377235059399862 +2024-07-19 14:28:11.017 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 44/50, Train Loss: 0.04446579304269769, Val Loss: 0.043858905045970065 +2024-07-19 14:28:11.519 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 45/50, Train Loss: 0.04437076799910177, Val Loss: 0.043882201601927344 +2024-07-19 14:28:12.009 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 46/50, Train Loss: 0.04443260285664689, Val Loss: 0.04392915772827896 +2024-07-19 14:28:12.499 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 47/50, Train Loss: 0.044382867081598804, Val Loss: 0.04398642258869635 +2024-07-19 14:28:12.990 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 48/50, Train Loss: 0.04431911574845964, Val Loss: 0.04403285062997728 +2024-07-19 14:28:13.479 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 49/50, Train Loss: 0.044350976564667445, Val Loss: 0.04393654759671237 +2024-07-19 14:28:13.971 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 50/50, Train Loss: 0.044366380978714336, Val Loss: 0.04382018709706294 +2024-07-19 14:28:13.972 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Fold 2, MAPE: 11.51% +2024-07-19 14:28:14.087 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_1001_5000_LSTM//train_f2_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-19 14:28:14.762 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 1/50, Train Loss: 0.0442130109295249, Val Loss: 0.05300989973585348 +2024-07-19 14:28:15.392 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 2/50, Train Loss: 0.04498927957340054, Val Loss: 0.053081842391072095 +2024-07-19 14:28:16.013 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 3/50, Train Loss: 0.04480557335055854, Val Loss: 0.05309825687593705 +2024-07-19 14:28:16.636 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 4/50, Train Loss: 0.044684492102632783, Val Loss: 0.0531049111505618 +2024-07-19 14:28:17.260 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 5/50, Train Loss: 0.044627551920711994, Val Loss: 0.05311569103316681 +2024-07-19 14:28:17.883 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 6/50, Train Loss: 0.04452409715174812, Val Loss: 0.05311130848083947 +2024-07-19 14:28:18.510 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 7/50, Train Loss: 0.04450751034772559, Val Loss: 0.05307959357427584 +2024-07-19 14:28:19.134 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 8/50, Train Loss: 0.044590881910838494, Val Loss: 0.05313850516403044 +2024-07-19 14:28:19.758 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 9/50, Train Loss: 0.044581259588060314, Val Loss: 0.05311770641521828 +2024-07-19 14:28:20.389 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 10/50, Train Loss: 0.04460845225528903, Val Loss: 0.053114292287343254 +2024-07-19 14:28:21.029 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 11/50, Train Loss: 0.0445547600289526, Val Loss: 0.05311752770196747 +2024-07-19 14:28:21.656 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 12/50, Train Loss: 0.04448744599796729, Val Loss: 0.05308371666516807 +2024-07-19 14:28:22.279 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 13/50, Train Loss: 0.04452206074477059, Val Loss: 0.05313275975955499 +2024-07-19 14:28:22.902 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 14/50, Train Loss: 0.04455047558788976, Val Loss: 0.05311561723214549 +2024-07-19 14:28:23.526 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 15/50, Train Loss: 0.044502702822321896, Val Loss: 0.05313604647243345 +2024-07-19 14:28:24.148 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 16/50, Train Loss: 0.044524745288470835, Val Loss: 0.05313297356101307 +2024-07-19 14:28:24.769 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 17/50, Train Loss: 0.04451677810451756, Val Loss: 0.05310822424252291 +2024-07-19 14:28:25.392 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 18/50, Train Loss: 0.04455051327455942, Val Loss: 0.0531449934115281 +2024-07-19 14:28:26.017 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 19/50, Train Loss: 0.044421252960415734, Val Loss: 0.0531103810849222 +2024-07-19 14:28:26.641 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 20/50, Train Loss: 0.04450205358842464, Val Loss: 0.053143118432647476 +2024-07-19 14:28:27.263 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 21/50, Train Loss: 0.044520531462071695, Val Loss: 0.05311329662799835 +2024-07-19 14:28:27.889 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 22/50, Train Loss: 0.044481227646441496, Val Loss: 0.05313447319172524 +2024-07-19 14:28:28.520 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 23/50, Train Loss: 0.04446965070722038, Val Loss: 0.053130778760926145 +2024-07-19 14:28:29.141 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 24/50, Train Loss: 0.04442594394291917, Val Loss: 0.05313113467717493 +2024-07-19 14:28:29.765 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 25/50, Train Loss: 0.044449198225589646, Val Loss: 0.05313109908555005 +2024-07-19 14:28:30.424 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 26/50, Train Loss: 0.04446025945450345, Val Loss: 0.053096713800285314 +2024-07-19 14:28:31.067 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 27/50, Train Loss: 0.0444205737200706, Val Loss: 0.053092000401906064 +2024-07-19 14:28:31.691 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 28/50, Train Loss: 0.04443730322057254, Val Loss: 0.05309457055016144 +2024-07-19 14:28:32.314 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 29/50, Train Loss: 0.04441720932364872, Val Loss: 0.053076994378824495 +2024-07-19 14:28:32.937 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 30/50, Train Loss: 0.04444724848264293, Val Loss: 0.05305821453598705 +2024-07-19 14:28:33.560 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 31/50, Train Loss: 0.04440412541519698, Val Loss: 0.05308451458207659 +2024-07-19 14:28:34.189 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 32/50, Train Loss: 0.04446995235367181, Val Loss: 0.053074583411216736 +2024-07-19 14:28:34.810 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 33/50, Train Loss: 0.04441510337366633, Val Loss: 0.0530736508300981 +2024-07-19 14:28:35.432 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 34/50, Train Loss: 0.04437476388905963, Val Loss: 0.05307480410949604 +2024-07-19 14:28:36.056 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 35/50, Train Loss: 0.04436460245808918, Val Loss: 0.05306660409110624 +2024-07-19 14:28:36.678 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 36/50, Train Loss: 0.044421492642021346, Val Loss: 0.05306819277639325 +2024-07-19 14:28:37.300 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 37/50, Train Loss: 0.04439766488152824, Val Loss: 0.053033879127454116 +2024-07-19 14:28:37.927 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 38/50, Train Loss: 0.04438191024612074, Val Loss: 0.05303118493710015 +2024-07-19 14:28:38.554 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 39/50, Train Loss: 0.04441960441739592, Val Loss: 0.05303577308517855 +2024-07-19 14:28:39.189 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 40/50, Train Loss: 0.044353772133384664, Val Loss: 0.05302406766930142 +2024-07-19 14:28:39.825 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 41/50, Train Loss: 0.044366176903554023, Val Loss: 0.05299924485184051 +2024-07-19 14:28:40.454 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 42/50, Train Loss: 0.04437415421723503, Val Loss: 0.053025144932640565 +2024-07-19 14:28:41.091 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 43/50, Train Loss: 0.04435424173684561, Val Loss: 0.052970736715439205 +2024-07-19 14:28:41.723 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 44/50, Train Loss: 0.04441290389593333, Val Loss: 0.05298588872962707 +2024-07-19 14:28:42.345 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 45/50, Train Loss: 0.04439187234854453, Val Loss: 0.052932372417401626 +2024-07-19 14:28:42.969 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 46/50, Train Loss: 0.044398819517395265, Val Loss: 0.05293089851132921 +2024-07-19 14:28:43.595 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 47/50, Train Loss: 0.044361212010150905, Val Loss: 0.052823011738223 +2024-07-19 14:28:44.217 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 48/50, Train Loss: 0.04436452094822714, Val Loss: 0.052715061786206996 +2024-07-19 14:28:44.843 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 49/50, Train Loss: 0.04426681689203602, Val Loss: 0.05273898590255428 +2024-07-19 14:28:45.465 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 50/50, Train Loss: 0.044035035810650214, Val Loss: 0.052746171433780645 +2024-07-19 14:28:45.466 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Fold 3, MAPE: 13.65% +2024-07-19 14:28:45.580 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_1001_5000_LSTM//train_f3_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-19 14:28:46.385 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 1/50, Train Loss: 0.04570795790097871, Val Loss: 0.04390113181560426 +2024-07-19 14:28:47.191 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 2/50, Train Loss: 0.04611845683961452, Val Loss: 0.04388136396536956 +2024-07-19 14:28:47.988 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 3/50, Train Loss: 0.04585334417092931, Val Loss: 0.04378164398509103 +2024-07-19 14:28:48.764 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 4/50, Train Loss: 0.04585532331327488, Val Loss: 0.04372382984572166 +2024-07-19 14:28:49.546 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 5/50, Train Loss: 0.04589448587784728, Val Loss: 0.04373005430239278 +2024-07-19 14:28:50.330 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 6/50, Train Loss: 0.04577959146719057, Val Loss: 0.043742161093128694 +2024-07-19 14:28:51.115 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 7/50, Train Loss: 0.04577738687314175, Val Loss: 0.043759075522020054 +2024-07-19 14:28:51.891 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 8/50, Train Loss: 0.04576681154155797, Val Loss: 0.04373231887616016 +2024-07-19 14:28:52.673 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 9/50, Train Loss: 0.04574585102171033, Val Loss: 0.04379953438969883 +2024-07-19 14:28:53.459 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 10/50, Train Loss: 0.04569871128014811, Val Loss: 0.04390723228051856 +2024-07-19 14:28:54.259 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 11/50, Train Loss: 0.045836678869858545, Val Loss: 0.04394126819396341 +2024-07-19 14:28:55.048 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 12/50, Train Loss: 0.045649076607283, Val Loss: 0.04401551670319325 +2024-07-19 14:28:55.868 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 13/50, Train Loss: 0.04573874654514449, Val Loss: 0.04403266990305604 +2024-07-19 14:28:56.654 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 14/50, Train Loss: 0.04565024123127971, Val Loss: 0.04417214764131082 +2024-07-19 14:28:57.432 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 15/50, Train Loss: 0.045667586397829946, Val Loss: 0.044260081608553194 +2024-07-19 14:28:58.226 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 16/50, Train Loss: 0.0456713533315521, Val Loss: 0.04483943649039075 +2024-07-19 14:28:59.017 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 17/50, Train Loss: 0.04558169132528397, Val Loss: 0.0444033197253137 +2024-07-19 14:28:59.813 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 18/50, Train Loss: 0.04553932225802443, Val Loss: 0.044587310705636 +2024-07-19 14:29:00.620 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 19/50, Train Loss: 0.04560936863564855, Val Loss: 0.04468088989724984 +2024-07-19 14:29:01.400 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 20/50, Train Loss: 0.04562752441103969, Val Loss: 0.04422147144135591 +2024-07-19 14:29:02.186 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 21/50, Train Loss: 0.04556450862846859, Val Loss: 0.04476281305825388 +2024-07-19 14:29:02.964 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 22/50, Train Loss: 0.04553155853812184, Val Loss: 0.044584301627568296 +2024-07-19 14:29:03.743 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 23/50, Train Loss: 0.045537600703128095, Val Loss: 0.04506977486449319 +2024-07-19 14:29:04.521 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 24/50, Train Loss: 0.045531942590989256, Val Loss: 0.0443658413415825 +2024-07-19 14:29:05.293 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 25/50, Train Loss: 0.04547891526349953, Val Loss: 0.045010879132393246 +2024-07-19 14:29:06.072 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 26/50, Train Loss: 0.045469696510705974, Val Loss: 0.044803617924854565 +2024-07-19 14:29:06.852 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 27/50, Train Loss: 0.045484741075107686, Val Loss: 0.045018652806410916 +2024-07-19 14:29:07.646 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 28/50, Train Loss: 0.045521709003618786, Val Loss: 0.04445854957039292 +2024-07-19 14:29:08.460 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 29/50, Train Loss: 0.045449913561262274, Val Loss: 0.04460891653355714 +2024-07-19 14:29:09.378 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 30/50, Train Loss: 0.04542572407440825, Val Loss: 0.04506077305287928 +2024-07-19 14:29:10.217 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 31/50, Train Loss: 0.045446123753848315, Val Loss: 0.044988815093765386 +2024-07-19 14:29:11.046 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 32/50, Train Loss: 0.04546645700235616, Val Loss: 0.04496264744650673 +2024-07-19 14:29:11.838 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 33/50, Train Loss: 0.04542276347158374, Val Loss: 0.0447256391918337 +2024-07-19 14:29:12.676 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 34/50, Train Loss: 0.045358195286858215, Val Loss: 0.0452349053041355 +2024-07-19 14:29:13.580 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 35/50, Train Loss: 0.04551164801795404, Val Loss: 0.0450804831107726 +2024-07-19 14:29:14.411 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 36/50, Train Loss: 0.04535801729166901, Val Loss: 0.045209021584407705 +2024-07-19 14:29:15.292 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 37/50, Train Loss: 0.04546793096872804, Val Loss: 0.04489468692525013 +2024-07-19 14:29:16.163 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 38/50, Train Loss: 0.045330760785593435, Val Loss: 0.04505518632563385 +2024-07-19 14:29:17.034 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 39/50, Train Loss: 0.04539817477484326, Val Loss: 0.045049932407769 +2024-07-19 14:29:17.907 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 40/50, Train Loss: 0.045388476779827706, Val Loss: 0.04426373727619648 +2024-07-19 14:29:18.802 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 41/50, Train Loss: 0.04534132610801812, Val Loss: 0.044633111589261004 +2024-07-19 14:29:19.679 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 42/50, Train Loss: 0.045297880595611344, Val Loss: 0.04494992885235194 +2024-07-19 14:29:20.542 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 43/50, Train Loss: 0.045284793425637945, Val Loss: 0.044540340936667214 +2024-07-19 14:29:21.423 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 44/50, Train Loss: 0.04519698679815609, Val Loss: 0.04508725553750992 +2024-07-19 14:29:22.263 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 45/50, Train Loss: 0.045311280485283545, Val Loss: 0.04445128047184364 +2024-07-19 14:29:23.126 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 46/50, Train Loss: 0.045142521447205285, Val Loss: 0.045146406099602986 +2024-07-19 14:29:24.017 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 47/50, Train Loss: 0.04520932317885396, Val Loss: 0.044873338494751905 +2024-07-19 14:29:24.898 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 48/50, Train Loss: 0.045188287805233686, Val Loss: 0.04485096953607894 +2024-07-19 14:29:25.781 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 49/50, Train Loss: 0.04512279949427306, Val Loss: 0.044704538040064475 +2024-07-19 14:29:26.640 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Epoch 50/50, Train Loss: 0.045130791214223094, Val Loss: 0.04501978544568693 +2024-07-19 14:29:26.640 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Fold 4, MAPE: 14.12% +2024-07-19 14:29:26.752 [8/cross_validate_train/75 (pid 589)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_1001_5000_LSTM//train_f4_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-19 14:29:31.525 [8/cross_validate_train/75 (pid 589)] Task finished successfully. +2024-07-19 14:29:31.557 [8/model_scores/76 (pid 1226)] Task is starting. +2024-07-19 14:29:33.127 [8/model_scores/76 (pid 1226)] INFO:__main__:Average Train Loss across all folds: 0.04640028327626152 +2024-07-19 14:29:37.114 [8/model_scores/76 (pid 1226)] INFO:__main__:Average Validation Loss across all folds: 0.04715194438357611 +2024-07-19 14:29:37.115 [8/model_scores/76 (pid 1226)] INFO:__main__:Average MAPE across all folds: 12.41% +2024-07-19 14:29:37.115 [8/model_scores/76 (pid 1226)] Task finished successfully. +2024-07-19 14:29:37.148 [8/validate_model/77 (pid 1268)] Task is starting. +2024-07-19 14:29:38.717 [8/validate_model/77 (pid 1268)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:29:38.844 [8/validate_model/77 (pid 1268)] INFO:__main__:Test Set MAPE: 10.78% +2024-07-19 14:29:39.266 [8/validate_model/77 (pid 1268)] INFO:__main__:Test image saved at metaflow_models//bgd_lodging_residential_1001_5000_LSTM//test_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-19 14:29:39.690 [8/validate_model/77 (pid 1268)] Task finished successfully. +2024-07-19 14:29:39.719 [8/log_model/78 (pid 1292)] Task is starting. +2024-07-19 14:29:41.275 [8/log_model/78 (pid 1292)] INFO:__main__:Logging model bgd_lodging_residential_1001_5000_LSTM +2024-07-19 14:29:41.277 [8/log_model/78 (pid 1292)] INFO:__main__:Model logged at metaflow_models//bgd_lodging_residential_1001_5000_LSTM//bgd_lodging_residential_1001_5000_LSTM.pth +2024-07-19 14:29:45.311 [8/log_model/78 (pid 1292)] Task finished successfully. +2024-07-19 14:29:45.351 [8/end/79 (pid 1333)] Task is starting. +2024-07-19 14:29:46.873 [8/end/79 (pid 1333)] INFO:__main__:Pipeline end. +2024-07-19 14:29:47.250 [8/end/79 (pid 1333)] Task finished successfully. +2024-07-19 14:29:47.250 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/scaler_bgd_lodging_residential_1001_5000_LSTM.pkl b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/scaler_bgd_lodging_residential_1001_5000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..8a2d58b145244b4e8fcf0030b4697b27306d01d0 --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/scaler_bgd_lodging_residential_1001_5000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff66888caaa5e62401acc6c59ae289832156a12b16b2ddc57ff2a01086f8005 +size 557 diff --git a/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/test_bgd_lodging_residential_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/test_bgd_lodging_residential_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..84c9eaac5cb401f896c4fce252deaa7cabe545be Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/test_bgd_lodging_residential_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f0_bgd_lodging_residential_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f0_bgd_lodging_residential_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..7383909c9f7ee2fbd7abc132914131ec8d8f7ffb Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f0_bgd_lodging_residential_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f1_bgd_lodging_residential_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f1_bgd_lodging_residential_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..bb16c32a668a77742ef273d3b35d187f8924d569 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f1_bgd_lodging_residential_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f2_bgd_lodging_residential_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f2_bgd_lodging_residential_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..93781de4cd0a4b476126cb1e1fc25c1fe82dfeda Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f2_bgd_lodging_residential_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f3_bgd_lodging_residential_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f3_bgd_lodging_residential_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..ac4343b0926116a5b95820329fcdd246298dc099 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f3_bgd_lodging_residential_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f4_bgd_lodging_residential_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f4_bgd_lodging_residential_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..b06400db50d3195a4996f1469e405109c3bf1dba Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_1001_5000_LSTM/train_f4_bgd_lodging_residential_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/bgd_lodging_residential_200001_500000_LSTM.pth b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/bgd_lodging_residential_200001_500000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..111a2f008878a8cd16945a436a09faa5d608dbaa --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/bgd_lodging_residential_200001_500000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f851ec746e6fd0c849ef03d5d11e76ac189cb49c835fe7b542eeb146dc7be970 +size 47078 diff --git a/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/output.txt b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..df6c8307b997cb8c2591ed29cda27694acf01300 --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/output.txt @@ -0,0 +1,732 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:51:18.016 Workflow starting (run-id 16): +2024-07-19 14:51:18.085 [16/start/179 (pid 7498)] Task is starting. +2024-07-19 14:51:19.591 [16/start/179 (pid 7498)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:51:19.885 [16/start/179 (pid 7498)] Task finished successfully. +2024-07-19 14:51:19.915 [16/ingest/180 (pid 7511)] Task is starting. +2024-07-19 14:51:21.412 [16/ingest/180 (pid 7511)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:51:21.426 [16/ingest/180 (pid 7511)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:51:25.268 [16/ingest/180 (pid 7511)] Task finished successfully. +2024-07-19 14:51:25.300 [16/pick_2017_data/181 (pid 7542)] Task is starting. +2024-07-19 14:51:26.768 [16/pick_2017_data/181 (pid 7542)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:51:27.080 [16/pick_2017_data/181 (pid 7542)] Task finished successfully. +2024-07-19 14:51:27.108 [16/fill_missing_data/182 (pid 7553)] Task is starting. +2024-07-19 14:51:28.592 [16/fill_missing_data/182 (pid 7553)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:51:28.596 [16/fill_missing_data/182 (pid 7553)] INFO:__main__:NaN counts per column: +2024-07-19 14:51:28.596 [16/fill_missing_data/182 (pid 7553)] INFO:__main__:Panther_lodging_Kara 12 +2024-07-19 14:51:28.596 [16/fill_missing_data/182 (pid 7553)] Panther_lodging_Marisol 10 +2024-07-19 14:51:28.596 [16/fill_missing_data/182 (pid 7553)] Panther_lodging_Kirk 12 +2024-07-19 14:51:28.596 [16/fill_missing_data/182 (pid 7553)] dtype: int64 +2024-07-19 14:51:28.596 [16/fill_missing_data/182 (pid 7553)] --- Logging error --- +2024-07-19 14:51:28.597 [16/fill_missing_data/182 (pid 7553)] Traceback (most recent call last): +2024-07-19 14:51:28.597 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:51:28.597 [16/fill_missing_data/182 (pid 7553)] msg = self.format(record) +2024-07-19 14:51:28.597 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:51:28.597 [16/fill_missing_data/182 (pid 7553)] return fmt.format(record) +2024-07-19 14:51:28.597 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:51:28.598 [16/fill_missing_data/182 (pid 7553)] record.message = record.getMessage() +2024-07-19 14:51:28.598 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:51:28.598 [16/fill_missing_data/182 (pid 7553)] msg = msg % self.args +2024-07-19 14:51:28.598 [16/fill_missing_data/182 (pid 7553)] TypeError: not all arguments converted during string formatting +2024-07-19 14:51:28.598 [16/fill_missing_data/182 (pid 7553)] Call stack: +2024-07-19 14:51:28.598 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] BGD_LinearFlow() +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] cli.main(self) +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] return func(*args, **kwargs) +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] return self.main(*args, **kwargs) +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] rv = self.invoke(ctx) +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] return callback(*args, **kwargs) +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] task.run_step( +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] self._exec_step_function(step_func) +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] step_function() +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] Arguments: (34,) +2024-07-19 14:51:28.934 [16/fill_missing_data/182 (pid 7553)] Task finished successfully. +2024-07-19 14:51:28.962 [16/find_median/183 (pid 7567)] Task is starting. +2024-07-19 14:51:30.458 [16/find_median/183 (pid 7567)] INFO:__main__:Computing and using median.. +2024-07-19 14:51:30.984 [16/find_median/183 (pid 7567)] Task finished successfully. +2024-07-19 14:51:31.016 [16/aggregate_data/184 (pid 7578)] Task is starting. +2024-07-19 14:51:32.508 [16/aggregate_data/184 (pid 7578)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:51:36.455 [16/aggregate_data/184 (pid 7578)] Task finished successfully. +2024-07-19 14:51:36.487 [16/split_data/185 (pid 7603)] Task is starting. +2024-07-19 14:51:38.009 [16/split_data/185 (pid 7603)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:51:41.980 [16/split_data/185 (pid 7603)] Task finished successfully. +2024-07-19 14:51:42.011 [16/make_x_y/186 (pid 7636)] Task is starting. +2024-07-19 14:51:43.849 [16/make_x_y/186 (pid 7636)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:51:44.205 [16/make_x_y/186 (pid 7636)] Shape of y_train: (6978, 1) +2024-07-19 14:51:44.205 [16/make_x_y/186 (pid 7636)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:51:44.205 [16/make_x_y/186 (pid 7636)] Shape of y_test: (1722, 1) +2024-07-19 14:51:44.206 [16/make_x_y/186 (pid 7636)] Task finished successfully. +2024-07-19 14:51:44.234 [16/cross_validate_train/187 (pid 7647)] Task is starting. +2024-07-19 14:51:45.691 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Creating bgd_lodging_residential_200001_500000_LSTM +2024-07-19 14:51:45.691 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Performing cross validation.. +2024-07-19 14:51:46.446 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 1/50, Train Loss: 0.13639682400468234, Val Loss: 0.08929822191193297 +2024-07-19 14:51:46.645 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 2/50, Train Loss: 0.1272569095363488, Val Loss: 0.09530583255597062 +2024-07-19 14:51:46.846 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 3/50, Train Loss: 0.11455602873418783, Val Loss: 0.08921497607150593 +2024-07-19 14:51:47.054 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 4/50, Train Loss: 0.11151042560467848, Val Loss: 0.08544947076085452 +2024-07-19 14:51:47.259 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 5/50, Train Loss: 0.10798607283347361, Val Loss: 0.08139571869695508 +2024-07-19 14:51:47.456 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 6/50, Train Loss: 0.10319318783444327, Val Loss: 0.07649250842026763 +2024-07-19 14:51:47.654 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 7/50, Train Loss: 0.09820524039300713, Val Loss: 0.07164148684289004 +2024-07-19 14:51:47.854 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 8/50, Train Loss: 0.09294899009369514, Val Loss: 0.06759874019268397 +2024-07-19 14:51:48.053 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 9/50, Train Loss: 0.08588672761578818, Val Loss: 0.0631434407991332 +2024-07-19 14:51:48.256 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 10/50, Train Loss: 0.07931801586135014, Val Loss: 0.05786022040489558 +2024-07-19 14:51:48.459 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 11/50, Train Loss: 0.07289088668452727, Val Loss: 0.05248130782431847 +2024-07-19 14:51:48.664 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 12/50, Train Loss: 0.06756766492853293, Val Loss: 0.04897673347511807 +2024-07-19 14:51:48.867 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 13/50, Train Loss: 0.06397610681282508, Val Loss: 0.046925522739420064 +2024-07-19 14:51:49.068 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 14/50, Train Loss: 0.0613761650952133, Val Loss: 0.04551095188268133 +2024-07-19 14:51:49.274 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 15/50, Train Loss: 0.058180369235373834, Val Loss: 0.04420938670031122 +2024-07-19 14:51:49.480 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 16/50, Train Loss: 0.054935764370335115, Val Loss: 0.04297069817580081 +2024-07-19 14:51:49.689 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 17/50, Train Loss: 0.052521968109382165, Val Loss: 0.04206434798401755 +2024-07-19 14:51:49.890 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 18/50, Train Loss: 0.051491036809779504, Val Loss: 0.04152427160659352 +2024-07-19 14:51:50.106 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 19/50, Train Loss: 0.04999550613197121, Val Loss: 0.04102448872416406 +2024-07-19 14:51:50.313 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 20/50, Train Loss: 0.04889022760294579, Val Loss: 0.04066935765582162 +2024-07-19 14:51:50.517 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 21/50, Train Loss: 0.04792082581568409, Val Loss: 0.040288492835856775 +2024-07-19 14:51:50.719 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 22/50, Train Loss: 0.047477679578839124, Val Loss: 0.039975139992059885 +2024-07-19 14:51:50.925 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 23/50, Train Loss: 0.04713772025865477, Val Loss: 0.03970142660310139 +2024-07-19 14:51:51.127 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 24/50, Train Loss: 0.047018221503979454, Val Loss: 0.03949243243078928 +2024-07-19 14:51:51.329 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 25/50, Train Loss: 0.04651236030701045, Val Loss: 0.03921916622769188 +2024-07-19 14:51:51.536 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 26/50, Train Loss: 0.04593863046249828, Val Loss: 0.03900692762958037 +2024-07-19 14:51:51.741 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 27/50, Train Loss: 0.045592911541461945, Val Loss: 0.03879652716018058 +2024-07-19 14:51:51.944 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 28/50, Train Loss: 0.045184459940001774, Val Loss: 0.0385275743398312 +2024-07-19 14:51:52.161 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 29/50, Train Loss: 0.045061856508255005, Val Loss: 0.038336378748755194 +2024-07-19 14:51:52.371 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 30/50, Train Loss: 0.045143995131995227, Val Loss: 0.0381934448975969 +2024-07-19 14:51:52.582 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 31/50, Train Loss: 0.04500078077654581, Val Loss: 0.03801055302893793 +2024-07-19 14:51:52.790 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 32/50, Train Loss: 0.04526101958912772, Val Loss: 0.037936676746687374 +2024-07-19 14:51:53.001 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 33/50, Train Loss: 0.04519308610139666, Val Loss: 0.03781293966882938 +2024-07-19 14:51:53.215 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 34/50, Train Loss: 0.04418459746080476, Val Loss: 0.03731053886381355 +2024-07-19 14:51:53.428 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 35/50, Train Loss: 0.04374576682174528, Val Loss: 0.03692001778934453 +2024-07-19 14:51:53.639 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 36/50, Train Loss: 0.04348050078024735, Val Loss: 0.03716581047990838 +2024-07-19 14:51:53.848 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 37/50, Train Loss: 0.043815249879215215, Val Loss: 0.03735402332165757 +2024-07-19 14:51:54.061 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 38/50, Train Loss: 0.044277224236646213, Val Loss: 0.03693735317603962 +2024-07-19 14:51:54.269 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 39/50, Train Loss: 0.04425072116223541, Val Loss: 0.03666605976586406 +2024-07-19 14:51:54.487 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 40/50, Train Loss: 0.043743576955150916, Val Loss: 0.036158466963349165 +2024-07-19 14:51:54.700 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 41/50, Train Loss: 0.044238307689492766, Val Loss: 0.03609630168491119 +2024-07-19 14:51:54.909 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 42/50, Train Loss: 0.043896383026967176, Val Loss: 0.03617879365747039 +2024-07-19 14:51:55.122 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 43/50, Train Loss: 0.04440001861469166, Val Loss: 0.0364133444287487 +2024-07-19 14:51:55.333 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 44/50, Train Loss: 0.045197564051360696, Val Loss: 0.036758190020918846 +2024-07-19 14:51:55.542 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 45/50, Train Loss: 0.043019460061111965, Val Loss: 0.036331363576086795 +2024-07-19 14:51:55.753 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 46/50, Train Loss: 0.042855671128711186, Val Loss: 0.03598321702431988 +2024-07-19 14:51:55.966 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 47/50, Train Loss: 0.043975552493656006, Val Loss: 0.03605876082705485 +2024-07-19 14:51:56.183 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 48/50, Train Loss: 0.04217787892431826, Val Loss: 0.03599496155574515 +2024-07-19 14:51:56.438 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 49/50, Train Loss: 0.04189601308993391, Val Loss: 0.035473899009662704 +2024-07-19 14:51:56.647 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 50/50, Train Loss: 0.04178503357075356, Val Loss: 0.03540476034017834 +2024-07-19 14:51:56.648 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Fold 0, MAPE: 3.48% +2024-07-19 14:51:56.975 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_200001_500000_LSTM//train_f0_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-19 14:51:57.435 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 1/50, Train Loss: 0.03883322185441239, Val Loss: 0.035989859216922035 +2024-07-19 14:51:57.798 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 2/50, Train Loss: 0.038994520519898365, Val Loss: 0.035738427745732104 +2024-07-19 14:51:58.167 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 3/50, Train Loss: 0.03830618827208264, Val Loss: 0.03516317435817139 +2024-07-19 14:51:58.578 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 4/50, Train Loss: 0.03791828308101386, Val Loss: 0.03453010874422821 +2024-07-19 14:51:58.963 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 5/50, Train Loss: 0.037586854490107055, Val Loss: 0.034116140944329465 +2024-07-19 14:51:59.339 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 6/50, Train Loss: 0.03710370046431071, Val Loss: 0.03387293793462418 +2024-07-19 14:51:59.711 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 7/50, Train Loss: 0.036938688781571714, Val Loss: 0.03376467299421091 +2024-07-19 14:52:00.098 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 8/50, Train Loss: 0.03678860915952349, Val Loss: 0.033455973088338566 +2024-07-19 14:52:00.462 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 9/50, Train Loss: 0.036724876969644465, Val Loss: 0.033668174232180055 +2024-07-19 14:52:00.850 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 10/50, Train Loss: 0.036557089078099764, Val Loss: 0.03354414517210948 +2024-07-19 14:52:01.258 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 11/50, Train Loss: 0.03663316213411011, Val Loss: 0.03363173389555635 +2024-07-19 14:52:01.625 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 12/50, Train Loss: 0.03662711996840288, Val Loss: 0.03365772177238722 +2024-07-19 14:52:02.020 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 13/50, Train Loss: 0.03651273977776913, Val Loss: 0.03347061574459076 +2024-07-19 14:52:02.394 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 14/50, Train Loss: 0.03640795361301671, Val Loss: 0.03340447412149326 +2024-07-19 14:52:02.758 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 15/50, Train Loss: 0.036453998609356685, Val Loss: 0.0334035103788247 +2024-07-19 14:52:03.125 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 16/50, Train Loss: 0.03657419550908755, Val Loss: 0.0332540409589136 +2024-07-19 14:52:03.497 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 17/50, Train Loss: 0.03713421722593373, Val Loss: 0.03338272653117373 +2024-07-19 14:52:03.866 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 18/50, Train Loss: 0.03687616072799245, Val Loss: 0.033201843399453805 +2024-07-19 14:52:04.233 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 19/50, Train Loss: 0.03668527297471484, Val Loss: 0.033154468832386506 +2024-07-19 14:52:04.593 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 20/50, Train Loss: 0.03714927137918668, Val Loss: 0.033685049243472716 +2024-07-19 14:52:04.961 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 21/50, Train Loss: 0.03660919154955916, Val Loss: 0.03290998870255174 +2024-07-19 14:52:05.332 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 22/50, Train Loss: 0.03613734671412266, Val Loss: 0.03289207765782202 +2024-07-19 14:52:05.703 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 23/50, Train Loss: 0.035863063591596196, Val Loss: 0.03305827816193168 +2024-07-19 14:52:06.073 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 24/50, Train Loss: 0.03598052194367533, Val Loss: 0.03296470058125418 +2024-07-19 14:52:06.455 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 25/50, Train Loss: 0.03588178881431279, Val Loss: 0.03281120754577018 +2024-07-19 14:52:06.824 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 26/50, Train Loss: 0.03617944394888943, Val Loss: 0.03300652904687701 +2024-07-19 14:52:07.190 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 27/50, Train Loss: 0.03573896929825822, Val Loss: 0.03293952718377113 +2024-07-19 14:52:07.562 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 28/50, Train Loss: 0.03677203536850132, Val Loss: 0.03317713510949869 +2024-07-19 14:52:07.929 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 29/50, Train Loss: 0.03587800027062631, Val Loss: 0.03298542557938679 +2024-07-19 14:52:08.290 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 30/50, Train Loss: 0.035481457560233874, Val Loss: 0.03297250174187325 +2024-07-19 14:52:08.659 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 31/50, Train Loss: 0.03559462937896382, Val Loss: 0.03280477779539856 +2024-07-19 14:52:09.030 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 32/50, Train Loss: 0.03544480338284414, Val Loss: 0.032660265730039495 +2024-07-19 14:52:09.402 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 33/50, Train Loss: 0.035495408364150625, Val Loss: 0.032781471322114404 +2024-07-19 14:52:09.779 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 34/50, Train Loss: 0.035716595995711954, Val Loss: 0.03272344645213436 +2024-07-19 14:52:10.148 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 35/50, Train Loss: 0.03549618661811907, Val Loss: 0.03277824104234979 +2024-07-19 14:52:10.513 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 36/50, Train Loss: 0.035630750201948704, Val Loss: 0.03273782345491487 +2024-07-19 14:52:10.892 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 37/50, Train Loss: 0.0353584703415224, Val Loss: 0.0326709928544792 +2024-07-19 14:52:11.252 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 38/50, Train Loss: 0.03523914796644694, Val Loss: 0.0326029954830537 +2024-07-19 14:52:11.600 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 39/50, Train Loss: 0.03555540255691907, Val Loss: 0.03247243850617795 +2024-07-19 14:52:11.945 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 40/50, Train Loss: 0.03526781397323086, Val Loss: 0.03289671247271267 +2024-07-19 14:52:12.296 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 41/50, Train Loss: 0.03526730886469149, Val Loss: 0.03264194601089568 +2024-07-19 14:52:12.651 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 42/50, Train Loss: 0.03531340713778587, Val Loss: 0.032620815509879914 +2024-07-19 14:52:13.004 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 43/50, Train Loss: 0.03520570733673768, Val Loss: 0.03235699543477716 +2024-07-19 14:52:13.377 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 44/50, Train Loss: 0.03496968411929803, Val Loss: 0.032557123114128374 +2024-07-19 14:52:13.742 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 45/50, Train Loss: 0.035106477978294845, Val Loss: 0.03250310882120519 +2024-07-19 14:52:14.124 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 46/50, Train Loss: 0.035571811950370055, Val Loss: 0.03239142285609568 +2024-07-19 14:52:14.494 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 47/50, Train Loss: 0.03516160270632946, Val Loss: 0.03284355821843083 +2024-07-19 14:52:14.862 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 48/50, Train Loss: 0.03545083350514713, Val Loss: 0.03226563596242183 +2024-07-19 14:52:15.222 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 49/50, Train Loss: 0.034899799382849914, Val Loss: 0.03321411405262109 +2024-07-19 14:52:15.588 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 50/50, Train Loss: 0.03546014652676778, Val Loss: 0.032369051380334676 +2024-07-19 14:52:15.588 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Fold 1, MAPE: 3.39% +2024-07-19 14:52:15.693 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_200001_500000_LSTM//train_f1_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-19 14:52:16.237 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 1/50, Train Loss: 0.034315847825597635, Val Loss: 0.027226526843937667 +2024-07-19 14:52:16.760 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 2/50, Train Loss: 0.03328067687424746, Val Loss: 0.02709691518464604 +2024-07-19 14:52:17.294 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 3/50, Train Loss: 0.0335557829757983, Val Loss: 0.027573197425619977 +2024-07-19 14:52:17.842 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 4/50, Train Loss: 0.033312088318846446, Val Loss: 0.027651617756566486 +2024-07-19 14:52:18.359 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 5/50, Train Loss: 0.03339259241792289, Val Loss: 0.027108790201915277 +2024-07-19 14:52:18.887 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 6/50, Train Loss: 0.03309577410532669, Val Loss: 0.02668310686744548 +2024-07-19 14:52:19.406 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 7/50, Train Loss: 0.03339762220328504, Val Loss: 0.02700396440923214 +2024-07-19 14:52:19.937 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 8/50, Train Loss: 0.03326833241365173, Val Loss: 0.02786006612350812 +2024-07-19 14:52:20.455 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 9/50, Train Loss: 0.03309867861257358, Val Loss: 0.02668168395757675 +2024-07-19 14:52:20.988 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 10/50, Train Loss: 0.03310948659411885, Val Loss: 0.02729721533486972 +2024-07-19 14:52:21.537 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 11/50, Train Loss: 0.03309561315585267, Val Loss: 0.027028243535676517 +2024-07-19 14:52:22.067 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 12/50, Train Loss: 0.0331036108799956, Val Loss: 0.027071415975287155 +2024-07-19 14:52:22.590 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 13/50, Train Loss: 0.03296322338283062, Val Loss: 0.02680475511462302 +2024-07-19 14:52:23.134 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 14/50, Train Loss: 0.032877118208191614, Val Loss: 0.026870654342142312 +2024-07-19 14:52:23.661 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 15/50, Train Loss: 0.033056245930492875, Val Loss: 0.027375335779947205 +2024-07-19 14:52:24.184 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 16/50, Train Loss: 0.032885188490829685, Val Loss: 0.026193054493617366 +2024-07-19 14:52:24.728 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 17/50, Train Loss: 0.03354296716438098, Val Loss: 0.027203319996998116 +2024-07-19 14:52:25.260 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 18/50, Train Loss: 0.033202409659597004, Val Loss: 0.026450392513259036 +2024-07-19 14:52:25.815 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 19/50, Train Loss: 0.03298370804299008, Val Loss: 0.026311399415135384 +2024-07-19 14:52:26.376 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 20/50, Train Loss: 0.03303104727105661, Val Loss: 0.026442297558124002 +2024-07-19 14:52:26.924 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 21/50, Train Loss: 0.0327680042013526, Val Loss: 0.025926476898225578 +2024-07-19 14:52:27.446 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 22/50, Train Loss: 0.033386404829269106, Val Loss: 0.026957910759626207 +2024-07-19 14:52:27.970 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 23/50, Train Loss: 0.03276635694571517, Val Loss: 0.025988857035298605 +2024-07-19 14:52:28.494 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 24/50, Train Loss: 0.0332360726357861, Val Loss: 0.026542414936262207 +2024-07-19 14:52:29.021 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 25/50, Train Loss: 0.03297171751883897, Val Loss: 0.02659335344828464 +2024-07-19 14:52:29.564 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 26/50, Train Loss: 0.032848280989988286, Val Loss: 0.026391577428659878 +2024-07-19 14:52:30.102 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 27/50, Train Loss: 0.03281668187542395, Val Loss: 0.025856458758180205 +2024-07-19 14:52:30.648 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 28/50, Train Loss: 0.03283892629498785, Val Loss: 0.026255526051327988 +2024-07-19 14:52:31.195 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 29/50, Train Loss: 0.03287476152181625, Val Loss: 0.026262746570078103 +2024-07-19 14:52:31.722 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 30/50, Train Loss: 0.03289079007438638, Val Loss: 0.026341655870547164 +2024-07-19 14:52:32.257 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 31/50, Train Loss: 0.03288343967023221, Val Loss: 0.02613291859224036 +2024-07-19 14:52:32.781 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 32/50, Train Loss: 0.033055946569551124, Val Loss: 0.026408712002071174 +2024-07-19 14:52:33.309 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 33/50, Train Loss: 0.03285056555813009, Val Loss: 0.026054315017284575 +2024-07-19 14:52:33.842 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 34/50, Train Loss: 0.032781020213257184, Val Loss: 0.025929211563355214 +2024-07-19 14:52:34.375 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 35/50, Train Loss: 0.03280191949822686, Val Loss: 0.0259686174827653 +2024-07-19 14:52:34.893 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 36/50, Train Loss: 0.03273126833479513, Val Loss: 0.025808306058516372 +2024-07-19 14:52:35.418 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 37/50, Train Loss: 0.03303757308220322, Val Loss: 0.02611333584866008 +2024-07-19 14:52:35.953 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 38/50, Train Loss: 0.0330771930007772, Val Loss: 0.02597701604905966 +2024-07-19 14:52:36.481 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 39/50, Train Loss: 0.03263580831275745, Val Loss: 0.025865245811842585 +2024-07-19 14:52:37.008 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 40/50, Train Loss: 0.03253064428202131, Val Loss: 0.025899103163061914 +2024-07-19 14:52:37.534 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 41/50, Train Loss: 0.03269772692160173, Val Loss: 0.025943601755677042 +2024-07-19 14:52:38.059 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 42/50, Train Loss: 0.03257248979061842, Val Loss: 0.02583123929798603 +2024-07-19 14:52:38.591 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 43/50, Train Loss: 0.032937960445203564, Val Loss: 0.02578544198862604 +2024-07-19 14:52:39.118 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 44/50, Train Loss: 0.032524043033746154, Val Loss: 0.02579213648631766 +2024-07-19 14:52:39.654 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 45/50, Train Loss: 0.032884924875741656, Val Loss: 0.025893013874018513 +2024-07-19 14:52:40.179 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 46/50, Train Loss: 0.03259207447144118, Val Loss: 0.02580863982439041 +2024-07-19 14:52:40.726 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 47/50, Train Loss: 0.03241321281953292, Val Loss: 0.025807863302730227 +2024-07-19 14:52:41.280 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 48/50, Train Loss: 0.03263749774884094, Val Loss: 0.025757890647730312 +2024-07-19 14:52:41.820 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 49/50, Train Loss: 0.032843024436045774, Val Loss: 0.02582521812134498 +2024-07-19 14:52:42.350 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 50/50, Train Loss: 0.03286385861310092, Val Loss: 0.02607212824797308 +2024-07-19 14:52:42.350 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Fold 2, MAPE: 2.87% +2024-07-19 14:52:42.461 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_200001_500000_LSTM//train_f2_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-19 14:52:43.175 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 1/50, Train Loss: 0.030495494004492075, Val Loss: 0.02508975620809439 +2024-07-19 14:52:43.848 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 2/50, Train Loss: 0.03040877216789004, Val Loss: 0.024624607450253255 +2024-07-19 14:52:44.533 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 3/50, Train Loss: 0.030299611274816403, Val Loss: 0.025079906943279343 +2024-07-19 14:52:45.198 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 4/50, Train Loss: 0.030247573932148004, Val Loss: 0.025008955567672447 +2024-07-19 14:52:45.878 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 5/50, Train Loss: 0.030064355148232146, Val Loss: 0.025022705865872873 +2024-07-19 14:52:46.574 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 6/50, Train Loss: 0.03017637365791079, Val Loss: 0.025260516366845853 +2024-07-19 14:52:47.250 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 7/50, Train Loss: 0.03007363321336165, Val Loss: 0.025378003766810573 +2024-07-19 14:52:47.928 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 8/50, Train Loss: 0.03003110654958307, Val Loss: 0.02542608150759259 +2024-07-19 14:52:48.606 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 9/50, Train Loss: 0.030026474674168514, Val Loss: 0.025462236456774378 +2024-07-19 14:52:49.256 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 10/50, Train Loss: 0.03015393303222444, Val Loss: 0.025360223107241297 +2024-07-19 14:52:49.907 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 11/50, Train Loss: 0.030095849479612424, Val Loss: 0.025227222239246238 +2024-07-19 14:52:50.573 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 12/50, Train Loss: 0.030251020603902536, Val Loss: 0.025602071671872527 +2024-07-19 14:52:51.276 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 13/50, Train Loss: 0.029980323558086403, Val Loss: 0.02575072107484212 +2024-07-19 14:52:51.970 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 14/50, Train Loss: 0.030073853681654963, Val Loss: 0.025934772616302646 +2024-07-19 14:52:52.640 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 15/50, Train Loss: 0.03007994388064293, Val Loss: 0.025564168655389064 +2024-07-19 14:52:53.288 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 16/50, Train Loss: 0.030327332933267503, Val Loss: 0.02597310983047292 +2024-07-19 14:52:53.960 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 17/50, Train Loss: 0.03000796924357953, Val Loss: 0.02612481905600509 +2024-07-19 14:52:54.633 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 18/50, Train Loss: 0.029909235387019915, Val Loss: 0.02608842372491553 +2024-07-19 14:52:55.310 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 19/50, Train Loss: 0.029951033998944172, Val Loss: 0.02611081100798942 +2024-07-19 14:52:55.989 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 20/50, Train Loss: 0.030007602238695915, Val Loss: 0.026121168623904924 +2024-07-19 14:52:56.709 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 21/50, Train Loss: 0.029783644483820218, Val Loss: 0.026411893450327822 +2024-07-19 14:52:57.388 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 22/50, Train Loss: 0.02993579488247633, Val Loss: 0.026375630165676813 +2024-07-19 14:52:58.070 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 23/50, Train Loss: 0.02990572077974881, Val Loss: 0.026310085293811722 +2024-07-19 14:52:58.757 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 24/50, Train Loss: 0.029849388483554534, Val Loss: 0.026176807294423517 +2024-07-19 14:52:59.434 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 25/50, Train Loss: 0.029791391365332147, Val Loss: 0.026725674551483745 +2024-07-19 14:53:00.155 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 26/50, Train Loss: 0.030005785802455796, Val Loss: 0.026612908805947046 +2024-07-19 14:53:00.847 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 27/50, Train Loss: 0.029894606248564916, Val Loss: 0.02661239602477164 +2024-07-19 14:53:01.547 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 28/50, Train Loss: 0.03003410167022519, Val Loss: 0.02701576245394913 +2024-07-19 14:53:02.300 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 29/50, Train Loss: 0.02986019200402988, Val Loss: 0.026806471416273632 +2024-07-19 14:53:02.968 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 30/50, Train Loss: 0.029914302139045442, Val Loss: 0.026887395494693034 +2024-07-19 14:53:03.656 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 31/50, Train Loss: 0.029815647215263485, Val Loss: 0.02660351901038273 +2024-07-19 14:53:04.332 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 32/50, Train Loss: 0.030091576903344016, Val Loss: 0.02709852737953534 +2024-07-19 14:53:05.001 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 33/50, Train Loss: 0.029731907141841436, Val Loss: 0.026740155912734365 +2024-07-19 14:53:05.673 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 34/50, Train Loss: 0.029983614558634693, Val Loss: 0.026978989861704206 +2024-07-19 14:53:06.369 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 35/50, Train Loss: 0.029845530792356353, Val Loss: 0.02704311071618183 +2024-07-19 14:53:07.061 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 36/50, Train Loss: 0.0298754075567608, Val Loss: 0.02746476962961055 +2024-07-19 14:53:07.735 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 37/50, Train Loss: 0.02963713065351117, Val Loss: 0.027195343244317417 +2024-07-19 14:53:08.417 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 38/50, Train Loss: 0.029773716955152275, Val Loss: 0.027161269373184926 +2024-07-19 14:53:09.103 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 39/50, Train Loss: 0.029655110575769045, Val Loss: 0.026909593492746353 +2024-07-19 14:53:09.773 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 40/50, Train Loss: 0.02996036164105347, Val Loss: 0.02773547071862865 +2024-07-19 14:53:10.451 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 41/50, Train Loss: 0.0297810603698639, Val Loss: 0.02688369859714766 +2024-07-19 14:53:11.149 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 42/50, Train Loss: 0.029862143252402135, Val Loss: 0.027453463071504154 +2024-07-19 14:53:11.830 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 43/50, Train Loss: 0.02961493981364247, Val Loss: 0.027002554638562975 +2024-07-19 14:53:12.509 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 44/50, Train Loss: 0.02974361648196227, Val Loss: 0.027662930708076502 +2024-07-19 14:53:13.194 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 45/50, Train Loss: 0.029630737710897238, Val Loss: 0.02666493470000254 +2024-07-19 14:53:13.875 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 46/50, Train Loss: 0.02973604893745625, Val Loss: 0.027107077172479115 +2024-07-19 14:53:14.547 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 47/50, Train Loss: 0.029603168725559157, Val Loss: 0.027413994426260125 +2024-07-19 14:53:15.222 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 48/50, Train Loss: 0.029762643325614603, Val Loss: 0.027831843022156407 +2024-07-19 14:53:15.903 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 49/50, Train Loss: 0.029573479807642224, Val Loss: 0.02707187081309589 +2024-07-19 14:53:16.583 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 50/50, Train Loss: 0.029817523103054255, Val Loss: 0.027621849616234366 +2024-07-19 14:53:16.583 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Fold 3, MAPE: 3.25% +2024-07-19 14:53:16.686 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_200001_500000_LSTM//train_f3_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-19 14:53:17.542 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 1/50, Train Loss: 0.02782610095628015, Val Loss: 0.027444329263793456 +2024-07-19 14:53:18.379 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 2/50, Train Loss: 0.028255238760631164, Val Loss: 0.02733219530735467 +2024-07-19 14:53:19.248 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 3/50, Train Loss: 0.028170341431357705, Val Loss: 0.02760457091436193 +2024-07-19 14:53:20.097 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 4/50, Train Loss: 0.027958317946356077, Val Loss: 0.028054351943570213 +2024-07-19 14:53:20.947 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 5/50, Train Loss: 0.027995683140233978, Val Loss: 0.026911857261045558 +2024-07-19 14:53:21.788 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 6/50, Train Loss: 0.028008333775777737, Val Loss: 0.02783338806113681 +2024-07-19 14:53:22.637 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 7/50, Train Loss: 0.02800845030367702, Val Loss: 0.02755633041866728 +2024-07-19 14:53:23.473 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 8/50, Train Loss: 0.027924497417368733, Val Loss: 0.027577620956140594 +2024-07-19 14:53:24.305 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 9/50, Train Loss: 0.027920985369236914, Val Loss: 0.028007390279624914 +2024-07-19 14:53:25.140 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 10/50, Train Loss: 0.027918328050073687, Val Loss: 0.02755451001025535 +2024-07-19 14:53:25.968 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 11/50, Train Loss: 0.027994437675390924, Val Loss: 0.027832812252076896 +2024-07-19 14:53:26.794 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 12/50, Train Loss: 0.027928778922164832, Val Loss: 0.027196455243471508 +2024-07-19 14:53:27.591 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 13/50, Train Loss: 0.027792047146339337, Val Loss: 0.028606644806426926 +2024-07-19 14:53:28.399 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 14/50, Train Loss: 0.027830950537143826, Val Loss: 0.027719240988025796 +2024-07-19 14:53:29.209 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 15/50, Train Loss: 0.027820064297334832, Val Loss: 0.026688840793999465 +2024-07-19 14:53:30.016 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 16/50, Train Loss: 0.02800365274383144, Val Loss: 0.026812179014086723 +2024-07-19 14:53:30.836 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 17/50, Train Loss: 0.027832586502472122, Val Loss: 0.02682429401052965 +2024-07-19 14:53:31.661 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 18/50, Train Loss: 0.027768546674441504, Val Loss: 0.027050410422521667 +2024-07-19 14:53:32.472 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 19/50, Train Loss: 0.027833106200937388, Val Loss: 0.027154118426748225 +2024-07-19 14:53:33.284 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 20/50, Train Loss: 0.027756711416928977, Val Loss: 0.028034056813733 +2024-07-19 14:53:34.095 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 21/50, Train Loss: 0.02769979107920285, Val Loss: 0.028065817078223098 +2024-07-19 14:53:34.922 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 22/50, Train Loss: 0.02780630612479789, Val Loss: 0.02868759637144772 +2024-07-19 14:53:35.763 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 23/50, Train Loss: 0.027852512384345243, Val Loss: 0.027672602115450678 +2024-07-19 14:53:36.608 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 24/50, Train Loss: 0.027802248137419695, Val Loss: 0.027557776938821818 +2024-07-19 14:53:37.472 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 25/50, Train Loss: 0.027751493799899305, Val Loss: 0.02734276994660094 +2024-07-19 14:53:38.308 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 26/50, Train Loss: 0.027796230637110196, Val Loss: 0.02774095640996018 +2024-07-19 14:53:39.152 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 27/50, Train Loss: 0.027573434758808586, Val Loss: 0.027057257757799047 +2024-07-19 14:53:40.017 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 28/50, Train Loss: 0.02774323545560077, Val Loss: 0.02753541069860394 +2024-07-19 14:53:40.873 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 29/50, Train Loss: 0.027859266489171065, Val Loss: 0.028030261850437603 +2024-07-19 14:53:41.733 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 30/50, Train Loss: 0.02776078332297422, Val Loss: 0.027518619607026513 +2024-07-19 14:53:42.561 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 31/50, Train Loss: 0.02785973561989082, Val Loss: 0.02737908986573284 +2024-07-19 14:53:43.343 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 32/50, Train Loss: 0.0277658323808522, Val Loss: 0.02755247539765126 +2024-07-19 14:53:44.148 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 33/50, Train Loss: 0.02780599118425296, Val Loss: 0.026805909853932018 +2024-07-19 14:53:44.976 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 34/50, Train Loss: 0.027914325338225444, Val Loss: 0.02672783813967898 +2024-07-19 14:53:45.807 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 35/50, Train Loss: 0.02774877743897857, Val Loss: 0.026906808838248253 +2024-07-19 14:53:46.668 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 36/50, Train Loss: 0.02763229727253809, Val Loss: 0.02664607546820834 +2024-07-19 14:53:47.529 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 37/50, Train Loss: 0.027773938182700467, Val Loss: 0.027245088102849754 +2024-07-19 14:53:48.365 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 38/50, Train Loss: 0.027788454195955298, Val Loss: 0.026721359004040022 +2024-07-19 14:53:49.200 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 39/50, Train Loss: 0.02780660617441594, Val Loss: 0.02672383133825418 +2024-07-19 14:53:50.039 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 40/50, Train Loss: 0.027754321080315243, Val Loss: 0.02690797983794599 +2024-07-19 14:53:50.876 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 41/50, Train Loss: 0.02759295985471089, Val Loss: 0.026883586737755184 +2024-07-19 14:53:51.749 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 42/50, Train Loss: 0.02764406333585362, Val Loss: 0.027082930595890897 +2024-07-19 14:53:52.556 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 43/50, Train Loss: 0.02760522947697849, Val Loss: 0.026539199507317028 +2024-07-19 14:53:53.363 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 44/50, Train Loss: 0.027642280375073245, Val Loss: 0.026625013280961965 +2024-07-19 14:53:54.175 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 45/50, Train Loss: 0.027378952120441002, Val Loss: 0.026680428132012084 +2024-07-19 14:53:54.988 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 46/50, Train Loss: 0.02755547635216307, Val Loss: 0.026475046836846584 +2024-07-19 14:53:55.805 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 47/50, Train Loss: 0.027441122712424167, Val Loss: 0.02681978273431997 +2024-07-19 14:53:56.618 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 48/50, Train Loss: 0.02755177878662125, Val Loss: 0.027282387471279583 +2024-07-19 14:53:57.473 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 49/50, Train Loss: 0.027644540459572615, Val Loss: 0.026714704225997667 +2024-07-19 14:53:58.309 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 50/50, Train Loss: 0.027512188847330244, Val Loss: 0.027256074588041048 +2024-07-19 14:53:58.309 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Fold 4, MAPE: 3.23% +2024-07-19 14:53:58.418 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_200001_500000_LSTM//train_f4_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-19 14:54:02.645 [16/cross_validate_train/187 (pid 7647)] Task finished successfully. +2024-07-19 14:54:02.678 [16/model_scores/188 (pid 8196)] Task is starting. +2024-07-19 14:54:04.158 [16/model_scores/188 (pid 8196)] INFO:__main__:Average Train Loss across all folds: 0.03348775013220136 +2024-07-19 14:54:08.054 [16/model_scores/188 (pid 8196)] INFO:__main__:Average Validation Loss across all folds: 0.0297447728345523 +2024-07-19 14:54:08.054 [16/model_scores/188 (pid 8196)] INFO:__main__:Average MAPE across all folds: 3.24% +2024-07-19 14:54:08.055 [16/model_scores/188 (pid 8196)] Task finished successfully. +2024-07-19 14:54:08.085 [16/validate_model/189 (pid 8220)] Task is starting. +2024-07-19 14:54:09.580 [16/validate_model/189 (pid 8220)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:54:09.716 [16/validate_model/189 (pid 8220)] INFO:__main__:Test Set MAPE: 3.50% +2024-07-19 14:54:10.073 [16/validate_model/189 (pid 8220)] INFO:__main__:Test image saved at metaflow_models//bgd_lodging_residential_200001_500000_LSTM//test_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-19 14:54:10.518 [16/validate_model/189 (pid 8220)] Task finished successfully. +2024-07-19 14:54:10.548 [16/log_model/190 (pid 8233)] Task is starting. +2024-07-19 14:54:12.037 [16/log_model/190 (pid 8233)] INFO:__main__:Logging model bgd_lodging_residential_200001_500000_LSTM +2024-07-19 14:54:12.038 [16/log_model/190 (pid 8233)] INFO:__main__:Model logged at metaflow_models//bgd_lodging_residential_200001_500000_LSTM//bgd_lodging_residential_200001_500000_LSTM.pth +2024-07-19 14:54:15.930 [16/log_model/190 (pid 8233)] Task finished successfully. +2024-07-19 14:54:15.962 [16/end/191 (pid 8264)] Task is starting. +2024-07-19 14:54:17.416 [16/end/191 (pid 8264)] INFO:__main__:Pipeline end. +2024-07-19 14:54:17.738 [16/end/191 (pid 8264)] Task finished successfully. +2024-07-19 14:54:17.739 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/16') succeeded: +-- stdout -- +2024-07-19 14:51:18.016 Workflow starting (run-id 16): +2024-07-19 14:51:18.085 [16/start/179 (pid 7498)] Task is starting. +2024-07-19 14:51:19.591 [16/start/179 (pid 7498)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:51:19.885 [16/start/179 (pid 7498)] Task finished successfully. +2024-07-19 14:51:19.915 [16/ingest/180 (pid 7511)] Task is starting. +2024-07-19 14:51:21.412 [16/ingest/180 (pid 7511)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:51:21.426 [16/ingest/180 (pid 7511)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:51:25.268 [16/ingest/180 (pid 7511)] Task finished successfully. +2024-07-19 14:51:25.300 [16/pick_2017_data/181 (pid 7542)] Task is starting. +2024-07-19 14:51:26.768 [16/pick_2017_data/181 (pid 7542)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:51:27.080 [16/pick_2017_data/181 (pid 7542)] Task finished successfully. +2024-07-19 14:51:27.108 [16/fill_missing_data/182 (pid 7553)] Task is starting. +2024-07-19 14:51:28.592 [16/fill_missing_data/182 (pid 7553)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:51:28.596 [16/fill_missing_data/182 (pid 7553)] INFO:__main__:NaN counts per column: +2024-07-19 14:51:28.596 [16/fill_missing_data/182 (pid 7553)] INFO:__main__:Panther_lodging_Kara 12 +2024-07-19 14:51:28.596 [16/fill_missing_data/182 (pid 7553)] Panther_lodging_Marisol 10 +2024-07-19 14:51:28.596 [16/fill_missing_data/182 (pid 7553)] Panther_lodging_Kirk 12 +2024-07-19 14:51:28.596 [16/fill_missing_data/182 (pid 7553)] dtype: int64 +2024-07-19 14:51:28.596 [16/fill_missing_data/182 (pid 7553)] --- Logging error --- +2024-07-19 14:51:28.597 [16/fill_missing_data/182 (pid 7553)] Traceback (most recent call last): +2024-07-19 14:51:28.597 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:51:28.597 [16/fill_missing_data/182 (pid 7553)] msg = self.format(record) +2024-07-19 14:51:28.597 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:51:28.597 [16/fill_missing_data/182 (pid 7553)] return fmt.format(record) +2024-07-19 14:51:28.597 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:51:28.598 [16/fill_missing_data/182 (pid 7553)] record.message = record.getMessage() +2024-07-19 14:51:28.598 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:51:28.598 [16/fill_missing_data/182 (pid 7553)] msg = msg % self.args +2024-07-19 14:51:28.598 [16/fill_missing_data/182 (pid 7553)] TypeError: not all arguments converted during string formatting +2024-07-19 14:51:28.598 [16/fill_missing_data/182 (pid 7553)] Call stack: +2024-07-19 14:51:28.598 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] BGD_LinearFlow() +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] cli.main(self) +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] return func(*args, **kwargs) +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] return self.main(*args, **kwargs) +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] rv = self.invoke(ctx) +2024-07-19 14:51:28.932 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] return callback(*args, **kwargs) +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] task.run_step( +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] self._exec_step_function(step_func) +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] step_function() +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:51:28.933 [16/fill_missing_data/182 (pid 7553)] Arguments: (34,) +2024-07-19 14:51:28.934 [16/fill_missing_data/182 (pid 7553)] Task finished successfully. +2024-07-19 14:51:28.962 [16/find_median/183 (pid 7567)] Task is starting. +2024-07-19 14:51:30.458 [16/find_median/183 (pid 7567)] INFO:__main__:Computing and using median.. +2024-07-19 14:51:30.984 [16/find_median/183 (pid 7567)] Task finished successfully. +2024-07-19 14:51:31.016 [16/aggregate_data/184 (pid 7578)] Task is starting. +2024-07-19 14:51:32.508 [16/aggregate_data/184 (pid 7578)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:51:36.455 [16/aggregate_data/184 (pid 7578)] Task finished successfully. +2024-07-19 14:51:36.487 [16/split_data/185 (pid 7603)] Task is starting. +2024-07-19 14:51:38.009 [16/split_data/185 (pid 7603)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:51:41.980 [16/split_data/185 (pid 7603)] Task finished successfully. +2024-07-19 14:51:42.011 [16/make_x_y/186 (pid 7636)] Task is starting. +2024-07-19 14:51:43.849 [16/make_x_y/186 (pid 7636)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:51:44.205 [16/make_x_y/186 (pid 7636)] Shape of y_train: (6978, 1) +2024-07-19 14:51:44.205 [16/make_x_y/186 (pid 7636)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:51:44.205 [16/make_x_y/186 (pid 7636)] Shape of y_test: (1722, 1) +2024-07-19 14:51:44.206 [16/make_x_y/186 (pid 7636)] Task finished successfully. +2024-07-19 14:51:44.234 [16/cross_validate_train/187 (pid 7647)] Task is starting. +2024-07-19 14:51:45.691 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Creating bgd_lodging_residential_200001_500000_LSTM +2024-07-19 14:51:45.691 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Performing cross validation.. +2024-07-19 14:51:46.446 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 1/50, Train Loss: 0.13639682400468234, Val Loss: 0.08929822191193297 +2024-07-19 14:51:46.645 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 2/50, Train Loss: 0.1272569095363488, Val Loss: 0.09530583255597062 +2024-07-19 14:51:46.846 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 3/50, Train Loss: 0.11455602873418783, Val Loss: 0.08921497607150593 +2024-07-19 14:51:47.054 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 4/50, Train Loss: 0.11151042560467848, Val Loss: 0.08544947076085452 +2024-07-19 14:51:47.259 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 5/50, Train Loss: 0.10798607283347361, Val Loss: 0.08139571869695508 +2024-07-19 14:51:47.456 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 6/50, Train Loss: 0.10319318783444327, Val Loss: 0.07649250842026763 +2024-07-19 14:51:47.654 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 7/50, Train Loss: 0.09820524039300713, Val Loss: 0.07164148684289004 +2024-07-19 14:51:47.854 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 8/50, Train Loss: 0.09294899009369514, Val Loss: 0.06759874019268397 +2024-07-19 14:51:48.053 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 9/50, Train Loss: 0.08588672761578818, Val Loss: 0.0631434407991332 +2024-07-19 14:51:48.256 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 10/50, Train Loss: 0.07931801586135014, Val Loss: 0.05786022040489558 +2024-07-19 14:51:48.459 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 11/50, Train Loss: 0.07289088668452727, Val Loss: 0.05248130782431847 +2024-07-19 14:51:48.664 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 12/50, Train Loss: 0.06756766492853293, Val Loss: 0.04897673347511807 +2024-07-19 14:51:48.867 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 13/50, Train Loss: 0.06397610681282508, Val Loss: 0.046925522739420064 +2024-07-19 14:51:49.068 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 14/50, Train Loss: 0.0613761650952133, Val Loss: 0.04551095188268133 +2024-07-19 14:51:49.274 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 15/50, Train Loss: 0.058180369235373834, Val Loss: 0.04420938670031122 +2024-07-19 14:51:49.480 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 16/50, Train Loss: 0.054935764370335115, Val Loss: 0.04297069817580081 +2024-07-19 14:51:49.689 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 17/50, Train Loss: 0.052521968109382165, Val Loss: 0.04206434798401755 +2024-07-19 14:51:49.890 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 18/50, Train Loss: 0.051491036809779504, Val Loss: 0.04152427160659352 +2024-07-19 14:51:50.106 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 19/50, Train Loss: 0.04999550613197121, Val Loss: 0.04102448872416406 +2024-07-19 14:51:50.313 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 20/50, Train Loss: 0.04889022760294579, Val Loss: 0.04066935765582162 +2024-07-19 14:51:50.517 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 21/50, Train Loss: 0.04792082581568409, Val Loss: 0.040288492835856775 +2024-07-19 14:51:50.719 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 22/50, Train Loss: 0.047477679578839124, Val Loss: 0.039975139992059885 +2024-07-19 14:51:50.925 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 23/50, Train Loss: 0.04713772025865477, Val Loss: 0.03970142660310139 +2024-07-19 14:51:51.127 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 24/50, Train Loss: 0.047018221503979454, Val Loss: 0.03949243243078928 +2024-07-19 14:51:51.329 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 25/50, Train Loss: 0.04651236030701045, Val Loss: 0.03921916622769188 +2024-07-19 14:51:51.536 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 26/50, Train Loss: 0.04593863046249828, Val Loss: 0.03900692762958037 +2024-07-19 14:51:51.741 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 27/50, Train Loss: 0.045592911541461945, Val Loss: 0.03879652716018058 +2024-07-19 14:51:51.944 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 28/50, Train Loss: 0.045184459940001774, Val Loss: 0.0385275743398312 +2024-07-19 14:51:52.161 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 29/50, Train Loss: 0.045061856508255005, Val Loss: 0.038336378748755194 +2024-07-19 14:51:52.371 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 30/50, Train Loss: 0.045143995131995227, Val Loss: 0.0381934448975969 +2024-07-19 14:51:52.582 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 31/50, Train Loss: 0.04500078077654581, Val Loss: 0.03801055302893793 +2024-07-19 14:51:52.790 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 32/50, Train Loss: 0.04526101958912772, Val Loss: 0.037936676746687374 +2024-07-19 14:51:53.001 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 33/50, Train Loss: 0.04519308610139666, Val Loss: 0.03781293966882938 +2024-07-19 14:51:53.215 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 34/50, Train Loss: 0.04418459746080476, Val Loss: 0.03731053886381355 +2024-07-19 14:51:53.428 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 35/50, Train Loss: 0.04374576682174528, Val Loss: 0.03692001778934453 +2024-07-19 14:51:53.639 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 36/50, Train Loss: 0.04348050078024735, Val Loss: 0.03716581047990838 +2024-07-19 14:51:53.848 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 37/50, Train Loss: 0.043815249879215215, Val Loss: 0.03735402332165757 +2024-07-19 14:51:54.061 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 38/50, Train Loss: 0.044277224236646213, Val Loss: 0.03693735317603962 +2024-07-19 14:51:54.269 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 39/50, Train Loss: 0.04425072116223541, Val Loss: 0.03666605976586406 +2024-07-19 14:51:54.487 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 40/50, Train Loss: 0.043743576955150916, Val Loss: 0.036158466963349165 +2024-07-19 14:51:54.700 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 41/50, Train Loss: 0.044238307689492766, Val Loss: 0.03609630168491119 +2024-07-19 14:51:54.909 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 42/50, Train Loss: 0.043896383026967176, Val Loss: 0.03617879365747039 +2024-07-19 14:51:55.122 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 43/50, Train Loss: 0.04440001861469166, Val Loss: 0.0364133444287487 +2024-07-19 14:51:55.333 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 44/50, Train Loss: 0.045197564051360696, Val Loss: 0.036758190020918846 +2024-07-19 14:51:55.542 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 45/50, Train Loss: 0.043019460061111965, Val Loss: 0.036331363576086795 +2024-07-19 14:51:55.753 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 46/50, Train Loss: 0.042855671128711186, Val Loss: 0.03598321702431988 +2024-07-19 14:51:55.966 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 47/50, Train Loss: 0.043975552493656006, Val Loss: 0.03605876082705485 +2024-07-19 14:51:56.183 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 48/50, Train Loss: 0.04217787892431826, Val Loss: 0.03599496155574515 +2024-07-19 14:51:56.438 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 49/50, Train Loss: 0.04189601308993391, Val Loss: 0.035473899009662704 +2024-07-19 14:51:56.647 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 50/50, Train Loss: 0.04178503357075356, Val Loss: 0.03540476034017834 +2024-07-19 14:51:56.648 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Fold 0, MAPE: 3.48% +2024-07-19 14:51:56.975 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_200001_500000_LSTM//train_f0_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-19 14:51:57.435 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 1/50, Train Loss: 0.03883322185441239, Val Loss: 0.035989859216922035 +2024-07-19 14:51:57.798 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 2/50, Train Loss: 0.038994520519898365, Val Loss: 0.035738427745732104 +2024-07-19 14:51:58.167 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 3/50, Train Loss: 0.03830618827208264, Val Loss: 0.03516317435817139 +2024-07-19 14:51:58.578 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 4/50, Train Loss: 0.03791828308101386, Val Loss: 0.03453010874422821 +2024-07-19 14:51:58.963 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 5/50, Train Loss: 0.037586854490107055, Val Loss: 0.034116140944329465 +2024-07-19 14:51:59.339 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 6/50, Train Loss: 0.03710370046431071, Val Loss: 0.03387293793462418 +2024-07-19 14:51:59.711 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 7/50, Train Loss: 0.036938688781571714, Val Loss: 0.03376467299421091 +2024-07-19 14:52:00.098 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 8/50, Train Loss: 0.03678860915952349, Val Loss: 0.033455973088338566 +2024-07-19 14:52:00.462 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 9/50, Train Loss: 0.036724876969644465, Val Loss: 0.033668174232180055 +2024-07-19 14:52:00.850 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 10/50, Train Loss: 0.036557089078099764, Val Loss: 0.03354414517210948 +2024-07-19 14:52:01.258 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 11/50, Train Loss: 0.03663316213411011, Val Loss: 0.03363173389555635 +2024-07-19 14:52:01.625 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 12/50, Train Loss: 0.03662711996840288, Val Loss: 0.03365772177238722 +2024-07-19 14:52:02.020 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 13/50, Train Loss: 0.03651273977776913, Val Loss: 0.03347061574459076 +2024-07-19 14:52:02.394 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 14/50, Train Loss: 0.03640795361301671, Val Loss: 0.03340447412149326 +2024-07-19 14:52:02.758 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 15/50, Train Loss: 0.036453998609356685, Val Loss: 0.0334035103788247 +2024-07-19 14:52:03.125 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 16/50, Train Loss: 0.03657419550908755, Val Loss: 0.0332540409589136 +2024-07-19 14:52:03.497 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 17/50, Train Loss: 0.03713421722593373, Val Loss: 0.03338272653117373 +2024-07-19 14:52:03.866 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 18/50, Train Loss: 0.03687616072799245, Val Loss: 0.033201843399453805 +2024-07-19 14:52:04.233 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 19/50, Train Loss: 0.03668527297471484, Val Loss: 0.033154468832386506 +2024-07-19 14:52:04.593 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 20/50, Train Loss: 0.03714927137918668, Val Loss: 0.033685049243472716 +2024-07-19 14:52:04.961 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 21/50, Train Loss: 0.03660919154955916, Val Loss: 0.03290998870255174 +2024-07-19 14:52:05.332 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 22/50, Train Loss: 0.03613734671412266, Val Loss: 0.03289207765782202 +2024-07-19 14:52:05.703 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 23/50, Train Loss: 0.035863063591596196, Val Loss: 0.03305827816193168 +2024-07-19 14:52:06.073 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 24/50, Train Loss: 0.03598052194367533, Val Loss: 0.03296470058125418 +2024-07-19 14:52:06.455 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 25/50, Train Loss: 0.03588178881431279, Val Loss: 0.03281120754577018 +2024-07-19 14:52:06.824 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 26/50, Train Loss: 0.03617944394888943, Val Loss: 0.03300652904687701 +2024-07-19 14:52:07.190 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 27/50, Train Loss: 0.03573896929825822, Val Loss: 0.03293952718377113 +2024-07-19 14:52:07.562 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 28/50, Train Loss: 0.03677203536850132, Val Loss: 0.03317713510949869 +2024-07-19 14:52:07.929 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 29/50, Train Loss: 0.03587800027062631, Val Loss: 0.03298542557938679 +2024-07-19 14:52:08.290 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 30/50, Train Loss: 0.035481457560233874, Val Loss: 0.03297250174187325 +2024-07-19 14:52:08.659 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 31/50, Train Loss: 0.03559462937896382, Val Loss: 0.03280477779539856 +2024-07-19 14:52:09.030 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 32/50, Train Loss: 0.03544480338284414, Val Loss: 0.032660265730039495 +2024-07-19 14:52:09.402 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 33/50, Train Loss: 0.035495408364150625, Val Loss: 0.032781471322114404 +2024-07-19 14:52:09.779 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 34/50, Train Loss: 0.035716595995711954, Val Loss: 0.03272344645213436 +2024-07-19 14:52:10.148 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 35/50, Train Loss: 0.03549618661811907, Val Loss: 0.03277824104234979 +2024-07-19 14:52:10.513 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 36/50, Train Loss: 0.035630750201948704, Val Loss: 0.03273782345491487 +2024-07-19 14:52:10.892 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 37/50, Train Loss: 0.0353584703415224, Val Loss: 0.0326709928544792 +2024-07-19 14:52:11.252 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 38/50, Train Loss: 0.03523914796644694, Val Loss: 0.0326029954830537 +2024-07-19 14:52:11.600 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 39/50, Train Loss: 0.03555540255691907, Val Loss: 0.03247243850617795 +2024-07-19 14:52:11.945 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 40/50, Train Loss: 0.03526781397323086, Val Loss: 0.03289671247271267 +2024-07-19 14:52:12.296 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 41/50, Train Loss: 0.03526730886469149, Val Loss: 0.03264194601089568 +2024-07-19 14:52:12.651 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 42/50, Train Loss: 0.03531340713778587, Val Loss: 0.032620815509879914 +2024-07-19 14:52:13.004 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 43/50, Train Loss: 0.03520570733673768, Val Loss: 0.03235699543477716 +2024-07-19 14:52:13.377 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 44/50, Train Loss: 0.03496968411929803, Val Loss: 0.032557123114128374 +2024-07-19 14:52:13.742 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 45/50, Train Loss: 0.035106477978294845, Val Loss: 0.03250310882120519 +2024-07-19 14:52:14.124 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 46/50, Train Loss: 0.035571811950370055, Val Loss: 0.03239142285609568 +2024-07-19 14:52:14.494 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 47/50, Train Loss: 0.03516160270632946, Val Loss: 0.03284355821843083 +2024-07-19 14:52:14.862 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 48/50, Train Loss: 0.03545083350514713, Val Loss: 0.03226563596242183 +2024-07-19 14:52:15.222 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 49/50, Train Loss: 0.034899799382849914, Val Loss: 0.03321411405262109 +2024-07-19 14:52:15.588 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 50/50, Train Loss: 0.03546014652676778, Val Loss: 0.032369051380334676 +2024-07-19 14:52:15.588 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Fold 1, MAPE: 3.39% +2024-07-19 14:52:15.693 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_200001_500000_LSTM//train_f1_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-19 14:52:16.237 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 1/50, Train Loss: 0.034315847825597635, Val Loss: 0.027226526843937667 +2024-07-19 14:52:16.760 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 2/50, Train Loss: 0.03328067687424746, Val Loss: 0.02709691518464604 +2024-07-19 14:52:17.294 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 3/50, Train Loss: 0.0335557829757983, Val Loss: 0.027573197425619977 +2024-07-19 14:52:17.842 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 4/50, Train Loss: 0.033312088318846446, Val Loss: 0.027651617756566486 +2024-07-19 14:52:18.359 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 5/50, Train Loss: 0.03339259241792289, Val Loss: 0.027108790201915277 +2024-07-19 14:52:18.887 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 6/50, Train Loss: 0.03309577410532669, Val Loss: 0.02668310686744548 +2024-07-19 14:52:19.406 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 7/50, Train Loss: 0.03339762220328504, Val Loss: 0.02700396440923214 +2024-07-19 14:52:19.937 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 8/50, Train Loss: 0.03326833241365173, Val Loss: 0.02786006612350812 +2024-07-19 14:52:20.455 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 9/50, Train Loss: 0.03309867861257358, Val Loss: 0.02668168395757675 +2024-07-19 14:52:20.988 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 10/50, Train Loss: 0.03310948659411885, Val Loss: 0.02729721533486972 +2024-07-19 14:52:21.537 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 11/50, Train Loss: 0.03309561315585267, Val Loss: 0.027028243535676517 +2024-07-19 14:52:22.067 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 12/50, Train Loss: 0.0331036108799956, Val Loss: 0.027071415975287155 +2024-07-19 14:52:22.590 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 13/50, Train Loss: 0.03296322338283062, Val Loss: 0.02680475511462302 +2024-07-19 14:52:23.134 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 14/50, Train Loss: 0.032877118208191614, Val Loss: 0.026870654342142312 +2024-07-19 14:52:23.661 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 15/50, Train Loss: 0.033056245930492875, Val Loss: 0.027375335779947205 +2024-07-19 14:52:24.184 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 16/50, Train Loss: 0.032885188490829685, Val Loss: 0.026193054493617366 +2024-07-19 14:52:24.728 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 17/50, Train Loss: 0.03354296716438098, Val Loss: 0.027203319996998116 +2024-07-19 14:52:25.260 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 18/50, Train Loss: 0.033202409659597004, Val Loss: 0.026450392513259036 +2024-07-19 14:52:25.815 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 19/50, Train Loss: 0.03298370804299008, Val Loss: 0.026311399415135384 +2024-07-19 14:52:26.376 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 20/50, Train Loss: 0.03303104727105661, Val Loss: 0.026442297558124002 +2024-07-19 14:52:26.924 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 21/50, Train Loss: 0.0327680042013526, Val Loss: 0.025926476898225578 +2024-07-19 14:52:27.446 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 22/50, Train Loss: 0.033386404829269106, Val Loss: 0.026957910759626207 +2024-07-19 14:52:27.970 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 23/50, Train Loss: 0.03276635694571517, Val Loss: 0.025988857035298605 +2024-07-19 14:52:28.494 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 24/50, Train Loss: 0.0332360726357861, Val Loss: 0.026542414936262207 +2024-07-19 14:52:29.021 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 25/50, Train Loss: 0.03297171751883897, Val Loss: 0.02659335344828464 +2024-07-19 14:52:29.564 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 26/50, Train Loss: 0.032848280989988286, Val Loss: 0.026391577428659878 +2024-07-19 14:52:30.102 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 27/50, Train Loss: 0.03281668187542395, Val Loss: 0.025856458758180205 +2024-07-19 14:52:30.648 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 28/50, Train Loss: 0.03283892629498785, Val Loss: 0.026255526051327988 +2024-07-19 14:52:31.195 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 29/50, Train Loss: 0.03287476152181625, Val Loss: 0.026262746570078103 +2024-07-19 14:52:31.722 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 30/50, Train Loss: 0.03289079007438638, Val Loss: 0.026341655870547164 +2024-07-19 14:52:32.257 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 31/50, Train Loss: 0.03288343967023221, Val Loss: 0.02613291859224036 +2024-07-19 14:52:32.781 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 32/50, Train Loss: 0.033055946569551124, Val Loss: 0.026408712002071174 +2024-07-19 14:52:33.309 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 33/50, Train Loss: 0.03285056555813009, Val Loss: 0.026054315017284575 +2024-07-19 14:52:33.842 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 34/50, Train Loss: 0.032781020213257184, Val Loss: 0.025929211563355214 +2024-07-19 14:52:34.375 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 35/50, Train Loss: 0.03280191949822686, Val Loss: 0.0259686174827653 +2024-07-19 14:52:34.893 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 36/50, Train Loss: 0.03273126833479513, Val Loss: 0.025808306058516372 +2024-07-19 14:52:35.418 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 37/50, Train Loss: 0.03303757308220322, Val Loss: 0.02611333584866008 +2024-07-19 14:52:35.953 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 38/50, Train Loss: 0.0330771930007772, Val Loss: 0.02597701604905966 +2024-07-19 14:52:36.481 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 39/50, Train Loss: 0.03263580831275745, Val Loss: 0.025865245811842585 +2024-07-19 14:52:37.008 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 40/50, Train Loss: 0.03253064428202131, Val Loss: 0.025899103163061914 +2024-07-19 14:52:37.534 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 41/50, Train Loss: 0.03269772692160173, Val Loss: 0.025943601755677042 +2024-07-19 14:52:38.059 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 42/50, Train Loss: 0.03257248979061842, Val Loss: 0.02583123929798603 +2024-07-19 14:52:38.591 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 43/50, Train Loss: 0.032937960445203564, Val Loss: 0.02578544198862604 +2024-07-19 14:52:39.118 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 44/50, Train Loss: 0.032524043033746154, Val Loss: 0.02579213648631766 +2024-07-19 14:52:39.654 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 45/50, Train Loss: 0.032884924875741656, Val Loss: 0.025893013874018513 +2024-07-19 14:52:40.179 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 46/50, Train Loss: 0.03259207447144118, Val Loss: 0.02580863982439041 +2024-07-19 14:52:40.726 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 47/50, Train Loss: 0.03241321281953292, Val Loss: 0.025807863302730227 +2024-07-19 14:52:41.280 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 48/50, Train Loss: 0.03263749774884094, Val Loss: 0.025757890647730312 +2024-07-19 14:52:41.820 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 49/50, Train Loss: 0.032843024436045774, Val Loss: 0.02582521812134498 +2024-07-19 14:52:42.350 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 50/50, Train Loss: 0.03286385861310092, Val Loss: 0.02607212824797308 +2024-07-19 14:52:42.350 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Fold 2, MAPE: 2.87% +2024-07-19 14:52:42.461 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_200001_500000_LSTM//train_f2_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-19 14:52:43.175 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 1/50, Train Loss: 0.030495494004492075, Val Loss: 0.02508975620809439 +2024-07-19 14:52:43.848 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 2/50, Train Loss: 0.03040877216789004, Val Loss: 0.024624607450253255 +2024-07-19 14:52:44.533 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 3/50, Train Loss: 0.030299611274816403, Val Loss: 0.025079906943279343 +2024-07-19 14:52:45.198 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 4/50, Train Loss: 0.030247573932148004, Val Loss: 0.025008955567672447 +2024-07-19 14:52:45.878 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 5/50, Train Loss: 0.030064355148232146, Val Loss: 0.025022705865872873 +2024-07-19 14:52:46.574 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 6/50, Train Loss: 0.03017637365791079, Val Loss: 0.025260516366845853 +2024-07-19 14:52:47.250 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 7/50, Train Loss: 0.03007363321336165, Val Loss: 0.025378003766810573 +2024-07-19 14:52:47.928 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 8/50, Train Loss: 0.03003110654958307, Val Loss: 0.02542608150759259 +2024-07-19 14:52:48.606 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 9/50, Train Loss: 0.030026474674168514, Val Loss: 0.025462236456774378 +2024-07-19 14:52:49.256 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 10/50, Train Loss: 0.03015393303222444, Val Loss: 0.025360223107241297 +2024-07-19 14:52:49.907 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 11/50, Train Loss: 0.030095849479612424, Val Loss: 0.025227222239246238 +2024-07-19 14:52:50.573 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 12/50, Train Loss: 0.030251020603902536, Val Loss: 0.025602071671872527 +2024-07-19 14:52:51.276 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 13/50, Train Loss: 0.029980323558086403, Val Loss: 0.02575072107484212 +2024-07-19 14:52:51.970 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 14/50, Train Loss: 0.030073853681654963, Val Loss: 0.025934772616302646 +2024-07-19 14:52:52.640 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 15/50, Train Loss: 0.03007994388064293, Val Loss: 0.025564168655389064 +2024-07-19 14:52:53.288 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 16/50, Train Loss: 0.030327332933267503, Val Loss: 0.02597310983047292 +2024-07-19 14:52:53.960 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 17/50, Train Loss: 0.03000796924357953, Val Loss: 0.02612481905600509 +2024-07-19 14:52:54.633 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 18/50, Train Loss: 0.029909235387019915, Val Loss: 0.02608842372491553 +2024-07-19 14:52:55.310 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 19/50, Train Loss: 0.029951033998944172, Val Loss: 0.02611081100798942 +2024-07-19 14:52:55.989 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 20/50, Train Loss: 0.030007602238695915, Val Loss: 0.026121168623904924 +2024-07-19 14:52:56.709 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 21/50, Train Loss: 0.029783644483820218, Val Loss: 0.026411893450327822 +2024-07-19 14:52:57.388 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 22/50, Train Loss: 0.02993579488247633, Val Loss: 0.026375630165676813 +2024-07-19 14:52:58.070 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 23/50, Train Loss: 0.02990572077974881, Val Loss: 0.026310085293811722 +2024-07-19 14:52:58.757 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 24/50, Train Loss: 0.029849388483554534, Val Loss: 0.026176807294423517 +2024-07-19 14:52:59.434 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 25/50, Train Loss: 0.029791391365332147, Val Loss: 0.026725674551483745 +2024-07-19 14:53:00.155 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 26/50, Train Loss: 0.030005785802455796, Val Loss: 0.026612908805947046 +2024-07-19 14:53:00.847 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 27/50, Train Loss: 0.029894606248564916, Val Loss: 0.02661239602477164 +2024-07-19 14:53:01.547 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 28/50, Train Loss: 0.03003410167022519, Val Loss: 0.02701576245394913 +2024-07-19 14:53:02.300 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 29/50, Train Loss: 0.02986019200402988, Val Loss: 0.026806471416273632 +2024-07-19 14:53:02.968 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 30/50, Train Loss: 0.029914302139045442, Val Loss: 0.026887395494693034 +2024-07-19 14:53:03.656 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 31/50, Train Loss: 0.029815647215263485, Val Loss: 0.02660351901038273 +2024-07-19 14:53:04.332 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 32/50, Train Loss: 0.030091576903344016, Val Loss: 0.02709852737953534 +2024-07-19 14:53:05.001 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 33/50, Train Loss: 0.029731907141841436, Val Loss: 0.026740155912734365 +2024-07-19 14:53:05.673 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 34/50, Train Loss: 0.029983614558634693, Val Loss: 0.026978989861704206 +2024-07-19 14:53:06.369 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 35/50, Train Loss: 0.029845530792356353, Val Loss: 0.02704311071618183 +2024-07-19 14:53:07.061 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 36/50, Train Loss: 0.0298754075567608, Val Loss: 0.02746476962961055 +2024-07-19 14:53:07.735 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 37/50, Train Loss: 0.02963713065351117, Val Loss: 0.027195343244317417 +2024-07-19 14:53:08.417 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 38/50, Train Loss: 0.029773716955152275, Val Loss: 0.027161269373184926 +2024-07-19 14:53:09.103 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 39/50, Train Loss: 0.029655110575769045, Val Loss: 0.026909593492746353 +2024-07-19 14:53:09.773 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 40/50, Train Loss: 0.02996036164105347, Val Loss: 0.02773547071862865 +2024-07-19 14:53:10.451 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 41/50, Train Loss: 0.0297810603698639, Val Loss: 0.02688369859714766 +2024-07-19 14:53:11.149 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 42/50, Train Loss: 0.029862143252402135, Val Loss: 0.027453463071504154 +2024-07-19 14:53:11.830 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 43/50, Train Loss: 0.02961493981364247, Val Loss: 0.027002554638562975 +2024-07-19 14:53:12.509 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 44/50, Train Loss: 0.02974361648196227, Val Loss: 0.027662930708076502 +2024-07-19 14:53:13.194 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 45/50, Train Loss: 0.029630737710897238, Val Loss: 0.02666493470000254 +2024-07-19 14:53:13.875 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 46/50, Train Loss: 0.02973604893745625, Val Loss: 0.027107077172479115 +2024-07-19 14:53:14.547 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 47/50, Train Loss: 0.029603168725559157, Val Loss: 0.027413994426260125 +2024-07-19 14:53:15.222 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 48/50, Train Loss: 0.029762643325614603, Val Loss: 0.027831843022156407 +2024-07-19 14:53:15.903 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 49/50, Train Loss: 0.029573479807642224, Val Loss: 0.02707187081309589 +2024-07-19 14:53:16.583 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 50/50, Train Loss: 0.029817523103054255, Val Loss: 0.027621849616234366 +2024-07-19 14:53:16.583 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Fold 3, MAPE: 3.25% +2024-07-19 14:53:16.686 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_200001_500000_LSTM//train_f3_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-19 14:53:17.542 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 1/50, Train Loss: 0.02782610095628015, Val Loss: 0.027444329263793456 +2024-07-19 14:53:18.379 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 2/50, Train Loss: 0.028255238760631164, Val Loss: 0.02733219530735467 +2024-07-19 14:53:19.248 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 3/50, Train Loss: 0.028170341431357705, Val Loss: 0.02760457091436193 +2024-07-19 14:53:20.097 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 4/50, Train Loss: 0.027958317946356077, Val Loss: 0.028054351943570213 +2024-07-19 14:53:20.947 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 5/50, Train Loss: 0.027995683140233978, Val Loss: 0.026911857261045558 +2024-07-19 14:53:21.788 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 6/50, Train Loss: 0.028008333775777737, Val Loss: 0.02783338806113681 +2024-07-19 14:53:22.637 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 7/50, Train Loss: 0.02800845030367702, Val Loss: 0.02755633041866728 +2024-07-19 14:53:23.473 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 8/50, Train Loss: 0.027924497417368733, Val Loss: 0.027577620956140594 +2024-07-19 14:53:24.305 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 9/50, Train Loss: 0.027920985369236914, Val Loss: 0.028007390279624914 +2024-07-19 14:53:25.140 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 10/50, Train Loss: 0.027918328050073687, Val Loss: 0.02755451001025535 +2024-07-19 14:53:25.968 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 11/50, Train Loss: 0.027994437675390924, Val Loss: 0.027832812252076896 +2024-07-19 14:53:26.794 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 12/50, Train Loss: 0.027928778922164832, Val Loss: 0.027196455243471508 +2024-07-19 14:53:27.591 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 13/50, Train Loss: 0.027792047146339337, Val Loss: 0.028606644806426926 +2024-07-19 14:53:28.399 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 14/50, Train Loss: 0.027830950537143826, Val Loss: 0.027719240988025796 +2024-07-19 14:53:29.209 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 15/50, Train Loss: 0.027820064297334832, Val Loss: 0.026688840793999465 +2024-07-19 14:53:30.016 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 16/50, Train Loss: 0.02800365274383144, Val Loss: 0.026812179014086723 +2024-07-19 14:53:30.836 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 17/50, Train Loss: 0.027832586502472122, Val Loss: 0.02682429401052965 +2024-07-19 14:53:31.661 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 18/50, Train Loss: 0.027768546674441504, Val Loss: 0.027050410422521667 +2024-07-19 14:53:32.472 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 19/50, Train Loss: 0.027833106200937388, Val Loss: 0.027154118426748225 +2024-07-19 14:53:33.284 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 20/50, Train Loss: 0.027756711416928977, Val Loss: 0.028034056813733 +2024-07-19 14:53:34.095 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 21/50, Train Loss: 0.02769979107920285, Val Loss: 0.028065817078223098 +2024-07-19 14:53:34.922 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 22/50, Train Loss: 0.02780630612479789, Val Loss: 0.02868759637144772 +2024-07-19 14:53:35.763 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 23/50, Train Loss: 0.027852512384345243, Val Loss: 0.027672602115450678 +2024-07-19 14:53:36.608 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 24/50, Train Loss: 0.027802248137419695, Val Loss: 0.027557776938821818 +2024-07-19 14:53:37.472 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 25/50, Train Loss: 0.027751493799899305, Val Loss: 0.02734276994660094 +2024-07-19 14:53:38.308 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 26/50, Train Loss: 0.027796230637110196, Val Loss: 0.02774095640996018 +2024-07-19 14:53:39.152 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 27/50, Train Loss: 0.027573434758808586, Val Loss: 0.027057257757799047 +2024-07-19 14:53:40.017 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 28/50, Train Loss: 0.02774323545560077, Val Loss: 0.02753541069860394 +2024-07-19 14:53:40.873 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 29/50, Train Loss: 0.027859266489171065, Val Loss: 0.028030261850437603 +2024-07-19 14:53:41.733 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 30/50, Train Loss: 0.02776078332297422, Val Loss: 0.027518619607026513 +2024-07-19 14:53:42.561 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 31/50, Train Loss: 0.02785973561989082, Val Loss: 0.02737908986573284 +2024-07-19 14:53:43.343 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 32/50, Train Loss: 0.0277658323808522, Val Loss: 0.02755247539765126 +2024-07-19 14:53:44.148 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 33/50, Train Loss: 0.02780599118425296, Val Loss: 0.026805909853932018 +2024-07-19 14:53:44.976 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 34/50, Train Loss: 0.027914325338225444, Val Loss: 0.02672783813967898 +2024-07-19 14:53:45.807 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 35/50, Train Loss: 0.02774877743897857, Val Loss: 0.026906808838248253 +2024-07-19 14:53:46.668 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 36/50, Train Loss: 0.02763229727253809, Val Loss: 0.02664607546820834 +2024-07-19 14:53:47.529 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 37/50, Train Loss: 0.027773938182700467, Val Loss: 0.027245088102849754 +2024-07-19 14:53:48.365 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 38/50, Train Loss: 0.027788454195955298, Val Loss: 0.026721359004040022 +2024-07-19 14:53:49.200 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 39/50, Train Loss: 0.02780660617441594, Val Loss: 0.02672383133825418 +2024-07-19 14:53:50.039 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 40/50, Train Loss: 0.027754321080315243, Val Loss: 0.02690797983794599 +2024-07-19 14:53:50.876 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 41/50, Train Loss: 0.02759295985471089, Val Loss: 0.026883586737755184 +2024-07-19 14:53:51.749 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 42/50, Train Loss: 0.02764406333585362, Val Loss: 0.027082930595890897 +2024-07-19 14:53:52.556 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 43/50, Train Loss: 0.02760522947697849, Val Loss: 0.026539199507317028 +2024-07-19 14:53:53.363 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 44/50, Train Loss: 0.027642280375073245, Val Loss: 0.026625013280961965 +2024-07-19 14:53:54.175 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 45/50, Train Loss: 0.027378952120441002, Val Loss: 0.026680428132012084 +2024-07-19 14:53:54.988 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 46/50, Train Loss: 0.02755547635216307, Val Loss: 0.026475046836846584 +2024-07-19 14:53:55.805 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 47/50, Train Loss: 0.027441122712424167, Val Loss: 0.02681978273431997 +2024-07-19 14:53:56.618 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 48/50, Train Loss: 0.02755177878662125, Val Loss: 0.027282387471279583 +2024-07-19 14:53:57.473 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 49/50, Train Loss: 0.027644540459572615, Val Loss: 0.026714704225997667 +2024-07-19 14:53:58.309 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Epoch 50/50, Train Loss: 0.027512188847330244, Val Loss: 0.027256074588041048 +2024-07-19 14:53:58.309 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Fold 4, MAPE: 3.23% +2024-07-19 14:53:58.418 [16/cross_validate_train/187 (pid 7647)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_200001_500000_LSTM//train_f4_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-19 14:54:02.645 [16/cross_validate_train/187 (pid 7647)] Task finished successfully. +2024-07-19 14:54:02.678 [16/model_scores/188 (pid 8196)] Task is starting. +2024-07-19 14:54:04.158 [16/model_scores/188 (pid 8196)] INFO:__main__:Average Train Loss across all folds: 0.03348775013220136 +2024-07-19 14:54:08.054 [16/model_scores/188 (pid 8196)] INFO:__main__:Average Validation Loss across all folds: 0.0297447728345523 +2024-07-19 14:54:08.054 [16/model_scores/188 (pid 8196)] INFO:__main__:Average MAPE across all folds: 3.24% +2024-07-19 14:54:08.055 [16/model_scores/188 (pid 8196)] Task finished successfully. +2024-07-19 14:54:08.085 [16/validate_model/189 (pid 8220)] Task is starting. +2024-07-19 14:54:09.580 [16/validate_model/189 (pid 8220)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:54:09.716 [16/validate_model/189 (pid 8220)] INFO:__main__:Test Set MAPE: 3.50% +2024-07-19 14:54:10.073 [16/validate_model/189 (pid 8220)] INFO:__main__:Test image saved at metaflow_models//bgd_lodging_residential_200001_500000_LSTM//test_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-19 14:54:10.518 [16/validate_model/189 (pid 8220)] Task finished successfully. +2024-07-19 14:54:10.548 [16/log_model/190 (pid 8233)] Task is starting. +2024-07-19 14:54:12.037 [16/log_model/190 (pid 8233)] INFO:__main__:Logging model bgd_lodging_residential_200001_500000_LSTM +2024-07-19 14:54:12.038 [16/log_model/190 (pid 8233)] INFO:__main__:Model logged at metaflow_models//bgd_lodging_residential_200001_500000_LSTM//bgd_lodging_residential_200001_500000_LSTM.pth +2024-07-19 14:54:15.930 [16/log_model/190 (pid 8233)] Task finished successfully. +2024-07-19 14:54:15.962 [16/end/191 (pid 8264)] Task is starting. +2024-07-19 14:54:17.416 [16/end/191 (pid 8264)] INFO:__main__:Pipeline end. +2024-07-19 14:54:17.738 [16/end/191 (pid 8264)] Task finished successfully. +2024-07-19 14:54:17.739 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/scaler_bgd_lodging_residential_200001_500000_LSTM.pkl b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/scaler_bgd_lodging_residential_200001_500000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..0d8919a46b8c056385ccc7633cb344439befd305 --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/scaler_bgd_lodging_residential_200001_500000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556409ebd4e131c19962d68fab9d6e6d9eb1bb902d350338b99e84c8edb97185 +size 557 diff --git a/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/test_bgd_lodging_residential_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/test_bgd_lodging_residential_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..13054f3d19c11e9db3e9c1fc83f318f723741edf Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/test_bgd_lodging_residential_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f0_bgd_lodging_residential_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f0_bgd_lodging_residential_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..f9f48e93cadf5f19bf23648616110b548b19c15e Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f0_bgd_lodging_residential_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f1_bgd_lodging_residential_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f1_bgd_lodging_residential_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..eb29a767fefd60d0186a75055aef4d7cbb20e6d9 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f1_bgd_lodging_residential_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f2_bgd_lodging_residential_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f2_bgd_lodging_residential_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..b810ffae491a251ff55ab640d41409116eed868c Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f2_bgd_lodging_residential_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f3_bgd_lodging_residential_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f3_bgd_lodging_residential_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..5d9e11aab5cd68fc774980a4ab5c4b4e5f996dbd Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f3_bgd_lodging_residential_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f4_bgd_lodging_residential_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f4_bgd_lodging_residential_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..e9387aaadbcbf57b7b6222584bb93104bc717d4f Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_200001_500000_LSTM/train_f4_bgd_lodging_residential_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/bgd_lodging_residential_25001_50000_LSTM.pth b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/bgd_lodging_residential_25001_50000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..c5ab0d26f6a747077559034fdb9d69758d4f24e3 --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/bgd_lodging_residential_25001_50000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c26257f4940db51c481b7332886dd60118e108cbe507b8cb8277da6f751c650 +size 47058 diff --git a/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/output.txt b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3c505160f7749241503da86612abb161d1635a4 --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/output.txt @@ -0,0 +1,752 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:48:15.987 Workflow starting (run-id 15): +2024-07-19 14:48:16.059 [15/start/165 (pid 6688)] Task is starting. +2024-07-19 14:48:17.556 [15/start/165 (pid 6688)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:48:17.849 [15/start/165 (pid 6688)] Task finished successfully. +2024-07-19 14:48:17.880 [15/ingest/166 (pid 6700)] Task is starting. +2024-07-19 14:48:19.336 [15/ingest/166 (pid 6700)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:48:19.359 [15/ingest/166 (pid 6700)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:48:23.295 [15/ingest/166 (pid 6700)] Task finished successfully. +2024-07-19 14:48:23.330 [15/pick_2017_data/167 (pid 6733)] Task is starting. +2024-07-19 14:48:24.783 [15/pick_2017_data/167 (pid 6733)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:48:25.116 [15/pick_2017_data/167 (pid 6733)] Task finished successfully. +2024-07-19 14:48:25.149 [15/fill_missing_data/168 (pid 6744)] Task is starting. +2024-07-19 14:48:26.607 [15/fill_missing_data/168 (pid 6744)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:48:26.615 [15/fill_missing_data/168 (pid 6744)] INFO:__main__:NaN counts per column: +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] INFO:__main__:Panther_lodging_Hattie 12 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Blaine 12 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Jorge 11 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Jana 10 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Else 10 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Russell 10 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Fausto 10 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Willa 11 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Floyd 11 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Teresita 12 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Robin_lodging_Pricilla 2 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Cockatoo_lodging_Jimmie 1014 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Mouse_lodging_Vicente 1656 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] dtype: int64 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] --- Logging error --- +2024-07-19 14:48:26.617 [15/fill_missing_data/168 (pid 6744)] Traceback (most recent call last): +2024-07-19 14:48:26.617 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:48:26.617 [15/fill_missing_data/168 (pid 6744)] msg = self.format(record) +2024-07-19 14:48:26.617 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] return fmt.format(record) +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] record.message = record.getMessage() +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] msg = msg % self.args +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] TypeError: not all arguments converted during string formatting +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] Call stack: +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] BGD_LinearFlow() +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] cli.main(self) +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] return func(*args, **kwargs) +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] return self.main(*args, **kwargs) +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] rv = self.invoke(ctx) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] return callback(*args, **kwargs) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] task.run_step( +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] self._exec_step_function(step_func) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] step_function() +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] Arguments: (2781,) +2024-07-19 14:48:28.633 [15/fill_missing_data/168 (pid 6744)] Task finished successfully. +2024-07-19 14:48:28.662 [15/find_median/169 (pid 6757)] Task is starting. +2024-07-19 14:48:30.120 [15/find_median/169 (pid 6757)] INFO:__main__:Computing and using median.. +2024-07-19 14:48:30.652 [15/find_median/169 (pid 6757)] Task finished successfully. +2024-07-19 14:48:30.683 [15/aggregate_data/170 (pid 6768)] Task is starting. +2024-07-19 14:48:32.154 [15/aggregate_data/170 (pid 6768)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:48:35.967 [15/aggregate_data/170 (pid 6768)] Task finished successfully. +2024-07-19 14:48:35.996 [15/split_data/171 (pid 6801)] Task is starting. +2024-07-19 14:48:37.457 [15/split_data/171 (pid 6801)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:48:41.332 [15/split_data/171 (pid 6801)] Task finished successfully. +2024-07-19 14:48:41.360 [15/make_x_y/172 (pid 6834)] Task is starting. +2024-07-19 14:48:43.173 [15/make_x_y/172 (pid 6834)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:48:43.497 [15/make_x_y/172 (pid 6834)] Shape of y_train: (6978, 1) +2024-07-19 14:48:43.497 [15/make_x_y/172 (pid 6834)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:48:43.497 [15/make_x_y/172 (pid 6834)] Shape of y_test: (1722, 1) +2024-07-19 14:48:43.498 [15/make_x_y/172 (pid 6834)] Task finished successfully. +2024-07-19 14:48:43.529 [15/cross_validate_train/173 (pid 6845)] Task is starting. +2024-07-19 14:48:45.012 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Creating bgd_lodging_residential_25001_50000_LSTM +2024-07-19 14:48:45.013 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Performing cross validation.. +2024-07-19 14:48:45.763 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 1/50, Train Loss: 0.29609538071058894, Val Loss: 0.133471443645052 +2024-07-19 14:48:45.976 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 2/50, Train Loss: 0.158685413264745, Val Loss: 0.1331576835867521 +2024-07-19 14:48:46.186 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 3/50, Train Loss: 0.14443600550293922, Val Loss: 0.12547258126574592 +2024-07-19 14:48:46.398 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 4/50, Train Loss: 0.13521996563350833, Val Loss: 0.11689740459661226 +2024-07-19 14:48:46.612 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 5/50, Train Loss: 0.12578531525827744, Val Loss: 0.10528747979048136 +2024-07-19 14:48:46.822 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 6/50, Train Loss: 0.11572516568609185, Val Loss: 0.0963912956617974 +2024-07-19 14:48:47.032 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 7/50, Train Loss: 0.10450068931724574, Val Loss: 0.08800760012220692 +2024-07-19 14:48:47.244 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 8/50, Train Loss: 0.09477939456701279, Val Loss: 0.07855899078217712 +2024-07-19 14:48:47.462 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 9/50, Train Loss: 0.08698387725933178, Val Loss: 0.06921711000236305 +2024-07-19 14:48:47.675 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 10/50, Train Loss: 0.08116431327889094, Val Loss: 0.06491831941781817 +2024-07-19 14:48:47.886 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 11/50, Train Loss: 0.07688444429958188, Val Loss: 0.062100873907675616 +2024-07-19 14:48:48.096 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 12/50, Train Loss: 0.07362046696849771, Val Loss: 0.06048434308251819 +2024-07-19 14:48:48.305 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 13/50, Train Loss: 0.07139234577079077, Val Loss: 0.05901558576403437 +2024-07-19 14:48:48.566 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 14/50, Train Loss: 0.06866636187643618, Val Loss: 0.05753975009193291 +2024-07-19 14:48:48.768 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 15/50, Train Loss: 0.06777871385015347, Val Loss: 0.056247607376929874 +2024-07-19 14:48:48.970 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 16/50, Train Loss: 0.06562181672937162, Val Loss: 0.055106988126361695 +2024-07-19 14:48:49.181 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 17/50, Train Loss: 0.06414587715187588, Val Loss: 0.05419152773715354 +2024-07-19 14:48:49.393 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 18/50, Train Loss: 0.06320109691571545, Val Loss: 0.05332334249003513 +2024-07-19 14:48:49.605 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 19/50, Train Loss: 0.06154743602146973, Val Loss: 0.052499881870037804 +2024-07-19 14:48:49.819 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 20/50, Train Loss: 0.06071335978403285, Val Loss: 0.05222078186233301 +2024-07-19 14:48:50.029 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 21/50, Train Loss: 0.06061268532396974, Val Loss: 0.05232847718572294 +2024-07-19 14:48:50.234 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 22/50, Train Loss: 0.060163375443300686, Val Loss: 0.05158976364780117 +2024-07-19 14:48:50.452 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 23/50, Train Loss: 0.05875831268526412, Val Loss: 0.050786840351852214 +2024-07-19 14:48:50.661 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 24/50, Train Loss: 0.05767129902803415, Val Loss: 0.05041764329212743 +2024-07-19 14:48:50.872 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 25/50, Train Loss: 0.056936841760132764, Val Loss: 0.050307036201293405 +2024-07-19 14:48:51.096 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 26/50, Train Loss: 0.05677411081017675, Val Loss: 0.050608790353746026 +2024-07-19 14:48:51.320 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 27/50, Train Loss: 0.056887033068247744, Val Loss: 0.04957450156074923 +2024-07-19 14:48:51.520 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 28/50, Train Loss: 0.05596947408205754, Val Loss: 0.04973977049057548 +2024-07-19 14:48:51.721 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 29/50, Train Loss: 0.05623590548497599, Val Loss: 0.049771688475802135 +2024-07-19 14:48:51.922 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 30/50, Train Loss: 0.05540963524096721, Val Loss: 0.0485408293536386 +2024-07-19 14:48:52.120 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 31/50, Train Loss: 0.05477219100135404, Val Loss: 0.04825245649427981 +2024-07-19 14:48:52.329 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 32/50, Train Loss: 0.05434211640543229, Val Loss: 0.048516896729533736 +2024-07-19 14:48:52.540 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 33/50, Train Loss: 0.05458000674843788, Val Loss: 0.04806337500544819 +2024-07-19 14:48:52.745 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 34/50, Train Loss: 0.054211635746665904, Val Loss: 0.048109599817040806 +2024-07-19 14:48:52.955 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 35/50, Train Loss: 0.05405109682799997, Val Loss: 0.04788366549119756 +2024-07-19 14:48:53.166 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 36/50, Train Loss: 0.05392639527751787, Val Loss: 0.04781094213595261 +2024-07-19 14:48:53.384 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 37/50, Train Loss: 0.05398137308657169, Val Loss: 0.04768660362507846 +2024-07-19 14:48:53.594 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 38/50, Train Loss: 0.053575584060839704, Val Loss: 0.04773307883658925 +2024-07-19 14:48:53.798 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 39/50, Train Loss: 0.05359903050938974, Val Loss: 0.047845441697014345 +2024-07-19 14:48:54.006 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 40/50, Train Loss: 0.05357905895122, Val Loss: 0.04752407721369653 +2024-07-19 14:48:54.216 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 41/50, Train Loss: 0.05322037909079243, Val Loss: 0.04718382294113572 +2024-07-19 14:48:54.424 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 42/50, Train Loss: 0.05305721127503627, Val Loss: 0.0475408659392112 +2024-07-19 14:48:54.630 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 43/50, Train Loss: 0.05296864375673436, Val Loss: 0.04692825040704495 +2024-07-19 14:48:54.840 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 44/50, Train Loss: 0.05274197522148087, Val Loss: 0.04740406718809862 +2024-07-19 14:48:55.049 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 45/50, Train Loss: 0.05273215812505097, Val Loss: 0.04702249139144614 +2024-07-19 14:48:55.257 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 46/50, Train Loss: 0.05225131690904901, Val Loss: 0.047138109702516244 +2024-07-19 14:48:55.470 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 47/50, Train Loss: 0.05230751915557964, Val Loss: 0.04713685261840756 +2024-07-19 14:48:55.689 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 48/50, Train Loss: 0.052273061176812324, Val Loss: 0.04710526205599308 +2024-07-19 14:48:55.898 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 49/50, Train Loss: 0.05273056573964454, Val Loss: 0.046978639136697795 +2024-07-19 14:48:56.108 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 50/50, Train Loss: 0.05156495865132358, Val Loss: 0.04629714666186152 +2024-07-19 14:48:56.108 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Fold 0, MAPE: 3.80% +2024-07-19 14:48:56.520 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_25001_50000_LSTM//train_f0_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-19 14:48:56.937 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 1/50, Train Loss: 0.04905946562959723, Val Loss: 0.0442344419456817 +2024-07-19 14:48:57.302 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 2/50, Train Loss: 0.048032077310019974, Val Loss: 0.042329720246630745 +2024-07-19 14:48:57.669 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 3/50, Train Loss: 0.04661088033694111, Val Loss: 0.03783704914353989 +2024-07-19 14:48:58.051 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 4/50, Train Loss: 0.0462842394712649, Val Loss: 0.03607310032522356 +2024-07-19 14:48:58.421 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 5/50, Train Loss: 0.045513027054193904, Val Loss: 0.03618989109590247 +2024-07-19 14:48:58.791 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 6/50, Train Loss: 0.04488315111766123, Val Loss: 0.03620373341884162 +2024-07-19 14:48:59.146 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 7/50, Train Loss: 0.04496120240488281, Val Loss: 0.03667001265126306 +2024-07-19 14:48:59.514 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 8/50, Train Loss: 0.04578549246469589, Val Loss: 0.03569553510562794 +2024-07-19 14:48:59.878 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 9/50, Train Loss: 0.04569874816153147, Val Loss: 0.035797635747774226 +2024-07-19 14:49:00.260 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 10/50, Train Loss: 0.04482635575002187, Val Loss: 0.03579575170737666 +2024-07-19 14:49:00.740 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 11/50, Train Loss: 0.04523016433295322, Val Loss: 0.0367414282282462 +2024-07-19 14:49:01.156 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 12/50, Train Loss: 0.04523827718596344, Val Loss: 0.036520074297850195 +2024-07-19 14:49:01.536 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 13/50, Train Loss: 0.04476308197497505, Val Loss: 0.03570763550296023 +2024-07-19 14:49:01.906 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 14/50, Train Loss: 0.04429131935108198, Val Loss: 0.03554245441950656 +2024-07-19 14:49:02.295 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 15/50, Train Loss: 0.044378726194574405, Val Loss: 0.036982725449913254 +2024-07-19 14:49:02.676 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 16/50, Train Loss: 0.044677667268743254, Val Loss: 0.036670728058025646 +2024-07-19 14:49:03.047 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 17/50, Train Loss: 0.04357856228845577, Val Loss: 0.03578406834119075 +2024-07-19 14:49:03.428 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 18/50, Train Loss: 0.04352012059766136, Val Loss: 0.035349345438786456 +2024-07-19 14:49:03.785 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 19/50, Train Loss: 0.04329703095024579, Val Loss: 0.03537411182313352 +2024-07-19 14:49:04.143 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 20/50, Train Loss: 0.04336259483474575, Val Loss: 0.03604708722717053 +2024-07-19 14:49:04.509 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 21/50, Train Loss: 0.04351456631740479, Val Loss: 0.03590912331600447 +2024-07-19 14:49:04.883 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 22/50, Train Loss: 0.04349468551474075, Val Loss: 0.03662467158928111 +2024-07-19 14:49:05.369 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 23/50, Train Loss: 0.04341775849971869, Val Loss: 0.03814780123129084 +2024-07-19 14:49:05.742 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 24/50, Train Loss: 0.0433873135902702, Val Loss: 0.03893568839978527 +2024-07-19 14:49:06.115 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 25/50, Train Loss: 0.0436214595165563, Val Loss: 0.03698359213366702 +2024-07-19 14:49:06.471 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 26/50, Train Loss: 0.04318310820484814, Val Loss: 0.038915192355980746 +2024-07-19 14:49:06.828 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 27/50, Train Loss: 0.04373753315781894, Val Loss: 0.03750184832795246 +2024-07-19 14:49:07.182 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 28/50, Train Loss: 0.0433281415384518, Val Loss: 0.04000211683278148 +2024-07-19 14:49:07.535 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 29/50, Train Loss: 0.04319963946122013, Val Loss: 0.04039630097513263 +2024-07-19 14:49:07.889 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 30/50, Train Loss: 0.04336925435249936, Val Loss: 0.040996849285186945 +2024-07-19 14:49:08.242 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 31/50, Train Loss: 0.043356593800325915, Val Loss: 0.04065644091649635 +2024-07-19 14:49:08.605 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 32/50, Train Loss: 0.04322968096765753, Val Loss: 0.03928667493164539 +2024-07-19 14:49:08.954 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 33/50, Train Loss: 0.043086455114287874, Val Loss: 0.03738429095294025 +2024-07-19 14:49:09.314 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 34/50, Train Loss: 0.04280339872898304, Val Loss: 0.036818377472258905 +2024-07-19 14:49:09.666 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 35/50, Train Loss: 0.04341034928005036, Val Loss: 0.037768729534503574 +2024-07-19 14:49:10.034 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 36/50, Train Loss: 0.043476637274231, Val Loss: 0.03848190338829079 +2024-07-19 14:49:10.385 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 37/50, Train Loss: 0.043371815923346234, Val Loss: 0.038000430458703556 +2024-07-19 14:49:10.740 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 38/50, Train Loss: 0.043317374581955885, Val Loss: 0.036825039801565373 +2024-07-19 14:49:11.113 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 39/50, Train Loss: 0.042858513607962494, Val Loss: 0.03774819865420058 +2024-07-19 14:49:11.469 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 40/50, Train Loss: 0.04306521741290615, Val Loss: 0.03880150596032272 +2024-07-19 14:49:11.827 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 41/50, Train Loss: 0.04354357114699606, Val Loss: 0.037078279246752326 +2024-07-19 14:49:12.176 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 42/50, Train Loss: 0.04261372738505063, Val Loss: 0.037524828939019025 +2024-07-19 14:49:12.528 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 43/50, Train Loss: 0.04290603966235298, Val Loss: 0.03747597397179217 +2024-07-19 14:49:12.881 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 44/50, Train Loss: 0.04276288831478929, Val Loss: 0.03796430621799585 +2024-07-19 14:49:13.231 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 45/50, Train Loss: 0.042977513566817324, Val Loss: 0.03753526982020687 +2024-07-19 14:49:13.583 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 46/50, Train Loss: 0.043032302482895655, Val Loss: 0.03635914583463926 +2024-07-19 14:49:13.933 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 47/50, Train Loss: 0.04243714137844844, Val Loss: 0.03733642640951518 +2024-07-19 14:49:14.285 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 48/50, Train Loss: 0.042956641377651525, Val Loss: 0.03705669335416845 +2024-07-19 14:49:14.639 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 49/50, Train Loss: 0.04284396953880787, Val Loss: 0.03674827898676331 +2024-07-19 14:49:14.991 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 50/50, Train Loss: 0.042902890337656624, Val Loss: 0.037539376499685084 +2024-07-19 14:49:14.992 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Fold 1, MAPE: 3.45% +2024-07-19 14:49:15.092 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_25001_50000_LSTM//train_f1_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-19 14:49:15.603 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 1/50, Train Loss: 0.037427363900298424, Val Loss: 0.03441329189651721 +2024-07-19 14:49:16.112 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 2/50, Train Loss: 0.03674868948080323, Val Loss: 0.03337232562134395 +2024-07-19 14:49:16.611 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 3/50, Train Loss: 0.03662990949709307, Val Loss: 0.032321964617113806 +2024-07-19 14:49:17.110 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 4/50, Train Loss: 0.03621066068722443, Val Loss: 0.03291870341510386 +2024-07-19 14:49:17.613 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 5/50, Train Loss: 0.03651202757927505, Val Loss: 0.03316978319875292 +2024-07-19 14:49:18.117 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 6/50, Train Loss: 0.03652354654094035, Val Loss: 0.03248070980850104 +2024-07-19 14:49:18.624 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 7/50, Train Loss: 0.03605265693569725, Val Loss: 0.03253827213838294 +2024-07-19 14:49:19.124 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 8/50, Train Loss: 0.03617948070168495, Val Loss: 0.03251939443116252 +2024-07-19 14:49:19.625 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 9/50, Train Loss: 0.036535820153287865, Val Loss: 0.03314452175353024 +2024-07-19 14:49:20.182 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 10/50, Train Loss: 0.036216413229703905, Val Loss: 0.03237284176252984 +2024-07-19 14:49:20.779 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 11/50, Train Loss: 0.036024924130602314, Val Loss: 0.03252577172541941 +2024-07-19 14:49:21.330 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 12/50, Train Loss: 0.03621500463817607, Val Loss: 0.032969483702972126 +2024-07-19 14:49:21.833 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 13/50, Train Loss: 0.03620938668874177, Val Loss: 0.0324029544418728 +2024-07-19 14:49:22.335 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 14/50, Train Loss: 0.03580917999656363, Val Loss: 0.03256231143667891 +2024-07-19 14:49:22.847 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 15/50, Train Loss: 0.036031909058378504, Val Loss: 0.0328182878627165 +2024-07-19 14:49:23.350 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 16/50, Train Loss: 0.03614002539860931, Val Loss: 0.03278063882041622 +2024-07-19 14:49:23.852 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 17/50, Train Loss: 0.03578879519111731, Val Loss: 0.03276689859056795 +2024-07-19 14:49:24.355 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 18/50, Train Loss: 0.03596395364200527, Val Loss: 0.0322042178563975 +2024-07-19 14:49:24.857 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 19/50, Train Loss: 0.0360962285744873, Val Loss: 0.033070996957453525 +2024-07-19 14:49:25.357 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 20/50, Train Loss: 0.03614415821026672, Val Loss: 0.03228003743129808 +2024-07-19 14:49:25.865 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 21/50, Train Loss: 0.03589857580478896, Val Loss: 0.03256215245739834 +2024-07-19 14:49:26.368 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 22/50, Train Loss: 0.035851095693016595, Val Loss: 0.032300758100039254 +2024-07-19 14:49:26.868 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 23/50, Train Loss: 0.036026606048372656, Val Loss: 0.033023596565062936 +2024-07-19 14:49:27.368 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 24/50, Train Loss: 0.036198393001475114, Val Loss: 0.03246915959627242 +2024-07-19 14:49:27.869 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 25/50, Train Loss: 0.035837877313183115, Val Loss: 0.03292362079829783 +2024-07-19 14:49:28.369 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 26/50, Train Loss: 0.03613898180933161, Val Loss: 0.032964774180908464 +2024-07-19 14:49:28.872 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 27/50, Train Loss: 0.03598429897630757, Val Loss: 0.032188126716662095 +2024-07-19 14:49:29.481 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 28/50, Train Loss: 0.035835988497869536, Val Loss: 0.03294941727575418 +2024-07-19 14:49:30.089 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 29/50, Train Loss: 0.03627380270680243, Val Loss: 0.03242962606049873 +2024-07-19 14:49:30.708 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 30/50, Train Loss: 0.035893063907596195, Val Loss: 0.03251746760026829 +2024-07-19 14:49:31.286 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 31/50, Train Loss: 0.03590423788198016, Val Loss: 0.03260703883259683 +2024-07-19 14:49:31.789 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 32/50, Train Loss: 0.035787292011082175, Val Loss: 0.03232276298709818 +2024-07-19 14:49:32.287 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 33/50, Train Loss: 0.03574143555015326, Val Loss: 0.032868342625128256 +2024-07-19 14:49:32.787 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 34/50, Train Loss: 0.03618441510268233, Val Loss: 0.032908719788129266 +2024-07-19 14:49:33.279 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 35/50, Train Loss: 0.03582671107724309, Val Loss: 0.03178717689336957 +2024-07-19 14:49:33.776 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 36/50, Train Loss: 0.03625363398512656, Val Loss: 0.034116129013332164 +2024-07-19 14:49:34.279 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 37/50, Train Loss: 0.03584526044062593, Val Loss: 0.032476695053078035 +2024-07-19 14:49:34.780 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 38/50, Train Loss: 0.036273345689881935, Val Loss: 0.03380256322388713 +2024-07-19 14:49:35.276 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 39/50, Train Loss: 0.035614694011482324, Val Loss: 0.03255251543344678 +2024-07-19 14:49:35.784 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 40/50, Train Loss: 0.03595858702266758, Val Loss: 0.03328776510583388 +2024-07-19 14:49:36.288 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 41/50, Train Loss: 0.03552223039282994, Val Loss: 0.03267779795301927 +2024-07-19 14:49:36.785 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 42/50, Train Loss: 0.03591960668563843, Val Loss: 0.03346198434765275 +2024-07-19 14:49:37.287 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 43/50, Train Loss: 0.03570306759158319, Val Loss: 0.03208301014996864 +2024-07-19 14:49:37.785 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 44/50, Train Loss: 0.03602295816791329, Val Loss: 0.03367943367039835 +2024-07-19 14:49:38.281 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 45/50, Train Loss: 0.035576696533032436, Val Loss: 0.032857172795244166 +2024-07-19 14:49:38.790 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 46/50, Train Loss: 0.03557431630112908, Val Loss: 0.03246362205292728 +2024-07-19 14:49:39.285 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 47/50, Train Loss: 0.035679107074710455, Val Loss: 0.03310386383452931 +2024-07-19 14:49:39.785 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 48/50, Train Loss: 0.03558332469652999, Val Loss: 0.032368021488592434 +2024-07-19 14:49:40.285 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 49/50, Train Loss: 0.036044488279995596, Val Loss: 0.03457309265394468 +2024-07-19 14:49:40.784 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 50/50, Train Loss: 0.03584212305193597, Val Loss: 0.03280723583255265 +2024-07-19 14:49:40.784 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Fold 2, MAPE: 2.92% +2024-07-19 14:49:40.886 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_25001_50000_LSTM//train_f2_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-19 14:49:41.552 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 1/50, Train Loss: 0.0337380549092203, Val Loss: 0.03401187852629133 +2024-07-19 14:49:42.197 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 2/50, Train Loss: 0.03361425021892949, Val Loss: 0.03368860226426575 +2024-07-19 14:49:42.839 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 3/50, Train Loss: 0.033436239237756765, Val Loss: 0.033311045351060664 +2024-07-19 14:49:43.478 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 4/50, Train Loss: 0.03355391035239174, Val Loss: 0.033588207553367354 +2024-07-19 14:49:44.124 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 5/50, Train Loss: 0.03352079858161407, Val Loss: 0.033595699766600456 +2024-07-19 14:49:44.770 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 6/50, Train Loss: 0.03353839260462212, Val Loss: 0.033147001588666763 +2024-07-19 14:49:45.409 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 7/50, Train Loss: 0.03354275684599599, Val Loss: 0.032212292473461177 +2024-07-19 14:49:46.059 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 8/50, Train Loss: 0.033196603356260956, Val Loss: 0.03288993194095186 +2024-07-19 14:49:46.710 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 9/50, Train Loss: 0.03357768228456174, Val Loss: 0.0331187346396414 +2024-07-19 14:49:47.355 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 10/50, Train Loss: 0.033417801206854926, Val Loss: 0.0327055797584959 +2024-07-19 14:49:48.003 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 11/50, Train Loss: 0.03339280240390807, Val Loss: 0.03168159834033734 +2024-07-19 14:49:48.655 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 12/50, Train Loss: 0.033087672327632364, Val Loss: 0.03267682585361842 +2024-07-19 14:49:49.296 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 13/50, Train Loss: 0.03335056622346787, Val Loss: 0.03254908061510808 +2024-07-19 14:49:49.941 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 14/50, Train Loss: 0.0332554560027098, Val Loss: 0.033184760929764925 +2024-07-19 14:49:50.587 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 15/50, Train Loss: 0.033528970554471016, Val Loss: 0.03142482329260658 +2024-07-19 14:49:51.262 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 16/50, Train Loss: 0.03309465860565231, Val Loss: 0.031715973859300486 +2024-07-19 14:49:51.923 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 17/50, Train Loss: 0.033181500047037044, Val Loss: 0.03180747031158692 +2024-07-19 14:49:52.568 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 18/50, Train Loss: 0.033051934552519285, Val Loss: 0.03208005237015518 +2024-07-19 14:49:53.208 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 19/50, Train Loss: 0.03314609895779254, Val Loss: 0.03208686406346592 +2024-07-19 14:49:53.852 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 20/50, Train Loss: 0.03328119292344949, Val Loss: 0.03174559087366671 +2024-07-19 14:49:54.501 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 21/50, Train Loss: 0.03308350218408932, Val Loss: 0.03214310995630316 +2024-07-19 14:49:55.150 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 22/50, Train Loss: 0.03329298960376684, Val Loss: 0.031809020334401646 +2024-07-19 14:49:55.801 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 23/50, Train Loss: 0.033164361262158173, Val Loss: 0.031962012267998746 +2024-07-19 14:49:56.450 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 24/50, Train Loss: 0.03327390472468448, Val Loss: 0.032469202739161415 +2024-07-19 14:49:57.098 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 25/50, Train Loss: 0.033571601067095586, Val Loss: 0.03200573574852299 +2024-07-19 14:49:57.741 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 26/50, Train Loss: 0.03310891797077166, Val Loss: 0.031802358105778694 +2024-07-19 14:49:58.392 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 27/50, Train Loss: 0.0332449588873615, Val Loss: 0.03241417083788563 +2024-07-19 14:49:59.040 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 28/50, Train Loss: 0.0333118292005503, Val Loss: 0.03164021791638555 +2024-07-19 14:49:59.725 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 29/50, Train Loss: 0.032971994460190404, Val Loss: 0.03178110154899391 +2024-07-19 14:50:00.386 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 30/50, Train Loss: 0.03296188192365512, Val Loss: 0.03213632675642903 +2024-07-19 14:50:01.032 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 31/50, Train Loss: 0.033219964549659864, Val Loss: 0.03175746211530389 +2024-07-19 14:50:01.684 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 32/50, Train Loss: 0.03315332173433614, Val Loss: 0.03197234083671827 +2024-07-19 14:50:02.328 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 33/50, Train Loss: 0.03334496722696987, Val Loss: 0.03205229145650928 +2024-07-19 14:50:02.975 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 34/50, Train Loss: 0.03328428463372465, Val Loss: 0.031721470575477625 +2024-07-19 14:50:03.622 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 35/50, Train Loss: 0.03343012946823688, Val Loss: 0.03137632036531294 +2024-07-19 14:50:04.266 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 36/50, Train Loss: 0.03316554377391322, Val Loss: 0.03169721133402876 +2024-07-19 14:50:04.908 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 37/50, Train Loss: 0.03322318314944636, Val Loss: 0.03165579823827421 +2024-07-19 14:50:05.629 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 38/50, Train Loss: 0.03333412131218061, Val Loss: 0.031728586131656494 +2024-07-19 14:50:06.341 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 39/50, Train Loss: 0.03329804623882248, Val Loss: 0.03199845985383601 +2024-07-19 14:50:07.041 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 40/50, Train Loss: 0.03320899596820547, Val Loss: 0.031706963640612526 +2024-07-19 14:50:07.721 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 41/50, Train Loss: 0.0331786736616329, Val Loss: 0.03178399972416259 +2024-07-19 14:50:08.442 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 42/50, Train Loss: 0.03297875880276504, Val Loss: 0.03181450844213769 +2024-07-19 14:50:09.281 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 43/50, Train Loss: 0.03309660228862338, Val Loss: 0.03190085895963617 +2024-07-19 14:50:09.950 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 44/50, Train Loss: 0.03338518815293704, Val Loss: 0.03192141027869405 +2024-07-19 14:50:10.712 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 45/50, Train Loss: 0.033289694086941955, Val Loss: 0.03202364925999899 +2024-07-19 14:50:11.415 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 46/50, Train Loss: 0.03318220221322693, Val Loss: 0.032088888557376086 +2024-07-19 14:50:12.094 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 47/50, Train Loss: 0.03314451537771176, Val Loss: 0.032106811331736075 +2024-07-19 14:50:12.790 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 48/50, Train Loss: 0.032959516275010696, Val Loss: 0.03155601860300915 +2024-07-19 14:50:13.466 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 49/50, Train Loss: 0.03303840091732675, Val Loss: 0.03190736306478848 +2024-07-19 14:50:14.142 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 50/50, Train Loss: 0.03281411502433762, Val Loss: 0.03223895518159544 +2024-07-19 14:50:14.143 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Fold 3, MAPE: 2.73% +2024-07-19 14:50:14.249 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_25001_50000_LSTM//train_f3_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-19 14:50:15.091 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 1/50, Train Loss: 0.033517370179582104, Val Loss: 0.03079339544716719 +2024-07-19 14:50:15.910 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 2/50, Train Loss: 0.03345423485510624, Val Loss: 0.030583423436493486 +2024-07-19 14:50:16.740 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 3/50, Train Loss: 0.03322279931220052, Val Loss: 0.030762551906141074 +2024-07-19 14:50:17.569 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 4/50, Train Loss: 0.033095447663831844, Val Loss: 0.030357758036336384 +2024-07-19 14:50:18.403 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 5/50, Train Loss: 0.03311775145786149, Val Loss: 0.03012163272580585 +2024-07-19 14:50:19.304 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 6/50, Train Loss: 0.03305453082526123, Val Loss: 0.02998069195529899 +2024-07-19 14:50:20.129 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 7/50, Train Loss: 0.03309563538673651, Val Loss: 0.02977028755924186 +2024-07-19 14:50:21.003 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 8/50, Train Loss: 0.03307400773801319, Val Loss: 0.029726678505539894 +2024-07-19 14:50:21.948 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 9/50, Train Loss: 0.033066330395720815, Val Loss: 0.030394295029140806 +2024-07-19 14:50:22.776 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 10/50, Train Loss: 0.03312509703439671, Val Loss: 0.030344695910005957 +2024-07-19 14:50:23.676 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 11/50, Train Loss: 0.032937069065295733, Val Loss: 0.02896080775236761 +2024-07-19 14:50:24.539 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 12/50, Train Loss: 0.032984896562993526, Val Loss: 0.030442994641693862 +2024-07-19 14:50:25.400 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 13/50, Train Loss: 0.03297886766165822, Val Loss: 0.030045921486374493 +2024-07-19 14:50:26.237 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 14/50, Train Loss: 0.032980249022839817, Val Loss: 0.029726763180381543 +2024-07-19 14:50:27.112 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 15/50, Train Loss: 0.03311510073471364, Val Loss: 0.030789373241163587 +2024-07-19 14:50:27.922 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 16/50, Train Loss: 0.03302103533808674, Val Loss: 0.029948200829125738 +2024-07-19 14:50:28.762 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 17/50, Train Loss: 0.032924363149104866, Val Loss: 0.029771354905254132 +2024-07-19 14:50:29.594 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 18/50, Train Loss: 0.033037666963147264, Val Loss: 0.03002424961006319 +2024-07-19 14:50:30.445 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 19/50, Train Loss: 0.03301810143658748, Val Loss: 0.030696416676447198 +2024-07-19 14:50:31.276 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 20/50, Train Loss: 0.033056249002833944, Val Loss: 0.030641308608087333 +2024-07-19 14:50:32.094 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 21/50, Train Loss: 0.032946344649234974, Val Loss: 0.03024175954428879 +2024-07-19 14:50:32.915 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 22/50, Train Loss: 0.03291331319097471, Val Loss: 0.029925842391880782 +2024-07-19 14:50:33.761 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 23/50, Train Loss: 0.0329896374963797, Val Loss: 0.03150044905172812 +2024-07-19 14:50:34.598 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 24/50, Train Loss: 0.033040200923006614, Val Loss: 0.030886846619683342 +2024-07-19 14:50:35.441 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 25/50, Train Loss: 0.03302466785432873, Val Loss: 0.0308670237459041 +2024-07-19 14:50:36.281 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 26/50, Train Loss: 0.032946338559818135, Val Loss: 0.03106278009914063 +2024-07-19 14:50:37.120 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 27/50, Train Loss: 0.03301511730507507, Val Loss: 0.031066214716112293 +2024-07-19 14:50:37.952 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 28/50, Train Loss: 0.03305353134215533, Val Loss: 0.03102381789201015 +2024-07-19 14:50:38.778 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 29/50, Train Loss: 0.03301248747527927, Val Loss: 0.030995652230607497 +2024-07-19 14:50:39.595 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 30/50, Train Loss: 0.03309734084817407, Val Loss: 0.03145947851039268 +2024-07-19 14:50:40.442 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 31/50, Train Loss: 0.03307788711614334, Val Loss: 0.03130457832201107 +2024-07-19 14:50:41.282 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 32/50, Train Loss: 0.033145779508401405, Val Loss: 0.03135268032752179 +2024-07-19 14:50:42.103 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 33/50, Train Loss: 0.03306620699036252, Val Loss: 0.03188880039630709 +2024-07-19 14:50:42.923 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 34/50, Train Loss: 0.033117854896073155, Val Loss: 0.03145552965233455 +2024-07-19 14:50:43.742 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 35/50, Train Loss: 0.03297621932822269, Val Loss: 0.03099103211551099 +2024-07-19 14:50:44.559 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 36/50, Train Loss: 0.032984077388031795, Val Loss: 0.031232127617742564 +2024-07-19 14:50:45.378 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 37/50, Train Loss: 0.033224654742158376, Val Loss: 0.032204403315444254 +2024-07-19 14:50:46.236 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 38/50, Train Loss: 0.03315661478132664, Val Loss: 0.03212677133647171 +2024-07-19 14:50:47.063 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 39/50, Train Loss: 0.03311177987891894, Val Loss: 0.03143035570109213 +2024-07-19 14:50:47.879 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 40/50, Train Loss: 0.03303269441188364, Val Loss: 0.03263004375873385 +2024-07-19 14:50:48.715 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 41/50, Train Loss: 0.033159382825533115, Val Loss: 0.0319255857250175 +2024-07-19 14:50:49.535 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 42/50, Train Loss: 0.033016246549048264, Val Loss: 0.031328940814411316 +2024-07-19 14:50:50.355 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 43/50, Train Loss: 0.03304534744225688, Val Loss: 0.03169950601216909 +2024-07-19 14:50:51.197 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 44/50, Train Loss: 0.03310850204306317, Val Loss: 0.03221467081960794 +2024-07-19 14:50:52.023 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 45/50, Train Loss: 0.033052245902081764, Val Loss: 0.03218612165467159 +2024-07-19 14:50:52.851 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 46/50, Train Loss: 0.03301752352534414, Val Loss: 0.03207533776357367 +2024-07-19 14:50:53.682 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 47/50, Train Loss: 0.033043163971832164, Val Loss: 0.03160188548468255 +2024-07-19 14:50:54.497 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 48/50, Train Loss: 0.03283798241230485, Val Loss: 0.03069651378570376 +2024-07-19 14:50:55.321 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 49/50, Train Loss: 0.032806622877635146, Val Loss: 0.03171076545038739 +2024-07-19 14:50:56.178 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 50/50, Train Loss: 0.03305490610732154, Val Loss: 0.03288673730315389 +2024-07-19 14:50:56.178 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Fold 4, MAPE: 2.91% +2024-07-19 14:50:56.284 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_25001_50000_LSTM//train_f4_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-19 14:51:00.729 [15/cross_validate_train/173 (pid 6845)] Task finished successfully. +2024-07-19 14:51:00.761 [15/model_scores/174 (pid 7408)] Task is starting. +2024-07-19 14:51:02.266 [15/model_scores/174 (pid 7408)] INFO:__main__:Average Train Loss across all folds: 0.03923579863451506 +2024-07-19 14:51:06.110 [15/model_scores/174 (pid 7408)] INFO:__main__:Average Validation Loss across all folds: 0.03635389029576972 +2024-07-19 14:51:06.110 [15/model_scores/174 (pid 7408)] INFO:__main__:Average MAPE across all folds: 3.16% +2024-07-19 14:51:06.111 [15/model_scores/174 (pid 7408)] Task finished successfully. +2024-07-19 14:51:06.139 [15/validate_model/175 (pid 7432)] Task is starting. +2024-07-19 14:51:07.630 [15/validate_model/175 (pid 7432)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:51:07.777 [15/validate_model/175 (pid 7432)] INFO:__main__:Test Set MAPE: 4.22% +2024-07-19 14:51:08.179 [15/validate_model/175 (pid 7432)] INFO:__main__:Test image saved at metaflow_models//bgd_lodging_residential_25001_50000_LSTM//test_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-19 14:51:08.594 [15/validate_model/175 (pid 7432)] Task finished successfully. +2024-07-19 14:51:08.625 [15/log_model/176 (pid 7445)] Task is starting. +2024-07-19 14:51:10.090 [15/log_model/176 (pid 7445)] INFO:__main__:Logging model bgd_lodging_residential_25001_50000_LSTM +2024-07-19 14:51:10.092 [15/log_model/176 (pid 7445)] INFO:__main__:Model logged at metaflow_models//bgd_lodging_residential_25001_50000_LSTM//bgd_lodging_residential_25001_50000_LSTM.pth +2024-07-19 14:51:13.956 [15/log_model/176 (pid 7445)] Task finished successfully. +2024-07-19 14:51:13.986 [15/end/177 (pid 7476)] Task is starting. +2024-07-19 14:51:15.437 [15/end/177 (pid 7476)] INFO:__main__:Pipeline end. +2024-07-19 14:51:15.750 [15/end/177 (pid 7476)] Task finished successfully. +2024-07-19 14:51:15.751 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/15') succeeded: +-- stdout -- +2024-07-19 14:48:15.987 Workflow starting (run-id 15): +2024-07-19 14:48:16.059 [15/start/165 (pid 6688)] Task is starting. +2024-07-19 14:48:17.556 [15/start/165 (pid 6688)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:48:17.849 [15/start/165 (pid 6688)] Task finished successfully. +2024-07-19 14:48:17.880 [15/ingest/166 (pid 6700)] Task is starting. +2024-07-19 14:48:19.336 [15/ingest/166 (pid 6700)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:48:19.359 [15/ingest/166 (pid 6700)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:48:23.295 [15/ingest/166 (pid 6700)] Task finished successfully. +2024-07-19 14:48:23.330 [15/pick_2017_data/167 (pid 6733)] Task is starting. +2024-07-19 14:48:24.783 [15/pick_2017_data/167 (pid 6733)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:48:25.116 [15/pick_2017_data/167 (pid 6733)] Task finished successfully. +2024-07-19 14:48:25.149 [15/fill_missing_data/168 (pid 6744)] Task is starting. +2024-07-19 14:48:26.607 [15/fill_missing_data/168 (pid 6744)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:48:26.615 [15/fill_missing_data/168 (pid 6744)] INFO:__main__:NaN counts per column: +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] INFO:__main__:Panther_lodging_Hattie 12 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Blaine 12 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Jorge 11 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Jana 10 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Else 10 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Russell 10 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Fausto 10 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Willa 11 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Floyd 11 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Panther_lodging_Teresita 12 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Robin_lodging_Pricilla 2 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Cockatoo_lodging_Jimmie 1014 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] Mouse_lodging_Vicente 1656 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] dtype: int64 +2024-07-19 14:48:26.616 [15/fill_missing_data/168 (pid 6744)] --- Logging error --- +2024-07-19 14:48:26.617 [15/fill_missing_data/168 (pid 6744)] Traceback (most recent call last): +2024-07-19 14:48:26.617 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:48:26.617 [15/fill_missing_data/168 (pid 6744)] msg = self.format(record) +2024-07-19 14:48:26.617 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] return fmt.format(record) +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] record.message = record.getMessage() +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] msg = msg % self.args +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] TypeError: not all arguments converted during string formatting +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] Call stack: +2024-07-19 14:48:26.618 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] BGD_LinearFlow() +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] cli.main(self) +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] return func(*args, **kwargs) +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] return self.main(*args, **kwargs) +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:48:28.631 [15/fill_missing_data/168 (pid 6744)] rv = self.invoke(ctx) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] return callback(*args, **kwargs) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] task.run_step( +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] self._exec_step_function(step_func) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] step_function() +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:48:28.632 [15/fill_missing_data/168 (pid 6744)] Arguments: (2781,) +2024-07-19 14:48:28.633 [15/fill_missing_data/168 (pid 6744)] Task finished successfully. +2024-07-19 14:48:28.662 [15/find_median/169 (pid 6757)] Task is starting. +2024-07-19 14:48:30.120 [15/find_median/169 (pid 6757)] INFO:__main__:Computing and using median.. +2024-07-19 14:48:30.652 [15/find_median/169 (pid 6757)] Task finished successfully. +2024-07-19 14:48:30.683 [15/aggregate_data/170 (pid 6768)] Task is starting. +2024-07-19 14:48:32.154 [15/aggregate_data/170 (pid 6768)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:48:35.967 [15/aggregate_data/170 (pid 6768)] Task finished successfully. +2024-07-19 14:48:35.996 [15/split_data/171 (pid 6801)] Task is starting. +2024-07-19 14:48:37.457 [15/split_data/171 (pid 6801)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:48:41.332 [15/split_data/171 (pid 6801)] Task finished successfully. +2024-07-19 14:48:41.360 [15/make_x_y/172 (pid 6834)] Task is starting. +2024-07-19 14:48:43.173 [15/make_x_y/172 (pid 6834)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:48:43.497 [15/make_x_y/172 (pid 6834)] Shape of y_train: (6978, 1) +2024-07-19 14:48:43.497 [15/make_x_y/172 (pid 6834)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:48:43.497 [15/make_x_y/172 (pid 6834)] Shape of y_test: (1722, 1) +2024-07-19 14:48:43.498 [15/make_x_y/172 (pid 6834)] Task finished successfully. +2024-07-19 14:48:43.529 [15/cross_validate_train/173 (pid 6845)] Task is starting. +2024-07-19 14:48:45.012 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Creating bgd_lodging_residential_25001_50000_LSTM +2024-07-19 14:48:45.013 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Performing cross validation.. +2024-07-19 14:48:45.763 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 1/50, Train Loss: 0.29609538071058894, Val Loss: 0.133471443645052 +2024-07-19 14:48:45.976 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 2/50, Train Loss: 0.158685413264745, Val Loss: 0.1331576835867521 +2024-07-19 14:48:46.186 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 3/50, Train Loss: 0.14443600550293922, Val Loss: 0.12547258126574592 +2024-07-19 14:48:46.398 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 4/50, Train Loss: 0.13521996563350833, Val Loss: 0.11689740459661226 +2024-07-19 14:48:46.612 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 5/50, Train Loss: 0.12578531525827744, Val Loss: 0.10528747979048136 +2024-07-19 14:48:46.822 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 6/50, Train Loss: 0.11572516568609185, Val Loss: 0.0963912956617974 +2024-07-19 14:48:47.032 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 7/50, Train Loss: 0.10450068931724574, Val Loss: 0.08800760012220692 +2024-07-19 14:48:47.244 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 8/50, Train Loss: 0.09477939456701279, Val Loss: 0.07855899078217712 +2024-07-19 14:48:47.462 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 9/50, Train Loss: 0.08698387725933178, Val Loss: 0.06921711000236305 +2024-07-19 14:48:47.675 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 10/50, Train Loss: 0.08116431327889094, Val Loss: 0.06491831941781817 +2024-07-19 14:48:47.886 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 11/50, Train Loss: 0.07688444429958188, Val Loss: 0.062100873907675616 +2024-07-19 14:48:48.096 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 12/50, Train Loss: 0.07362046696849771, Val Loss: 0.06048434308251819 +2024-07-19 14:48:48.305 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 13/50, Train Loss: 0.07139234577079077, Val Loss: 0.05901558576403437 +2024-07-19 14:48:48.566 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 14/50, Train Loss: 0.06866636187643618, Val Loss: 0.05753975009193291 +2024-07-19 14:48:48.768 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 15/50, Train Loss: 0.06777871385015347, Val Loss: 0.056247607376929874 +2024-07-19 14:48:48.970 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 16/50, Train Loss: 0.06562181672937162, Val Loss: 0.055106988126361695 +2024-07-19 14:48:49.181 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 17/50, Train Loss: 0.06414587715187588, Val Loss: 0.05419152773715354 +2024-07-19 14:48:49.393 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 18/50, Train Loss: 0.06320109691571545, Val Loss: 0.05332334249003513 +2024-07-19 14:48:49.605 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 19/50, Train Loss: 0.06154743602146973, Val Loss: 0.052499881870037804 +2024-07-19 14:48:49.819 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 20/50, Train Loss: 0.06071335978403285, Val Loss: 0.05222078186233301 +2024-07-19 14:48:50.029 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 21/50, Train Loss: 0.06061268532396974, Val Loss: 0.05232847718572294 +2024-07-19 14:48:50.234 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 22/50, Train Loss: 0.060163375443300686, Val Loss: 0.05158976364780117 +2024-07-19 14:48:50.452 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 23/50, Train Loss: 0.05875831268526412, Val Loss: 0.050786840351852214 +2024-07-19 14:48:50.661 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 24/50, Train Loss: 0.05767129902803415, Val Loss: 0.05041764329212743 +2024-07-19 14:48:50.872 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 25/50, Train Loss: 0.056936841760132764, Val Loss: 0.050307036201293405 +2024-07-19 14:48:51.096 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 26/50, Train Loss: 0.05677411081017675, Val Loss: 0.050608790353746026 +2024-07-19 14:48:51.320 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 27/50, Train Loss: 0.056887033068247744, Val Loss: 0.04957450156074923 +2024-07-19 14:48:51.520 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 28/50, Train Loss: 0.05596947408205754, Val Loss: 0.04973977049057548 +2024-07-19 14:48:51.721 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 29/50, Train Loss: 0.05623590548497599, Val Loss: 0.049771688475802135 +2024-07-19 14:48:51.922 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 30/50, Train Loss: 0.05540963524096721, Val Loss: 0.0485408293536386 +2024-07-19 14:48:52.120 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 31/50, Train Loss: 0.05477219100135404, Val Loss: 0.04825245649427981 +2024-07-19 14:48:52.329 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 32/50, Train Loss: 0.05434211640543229, Val Loss: 0.048516896729533736 +2024-07-19 14:48:52.540 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 33/50, Train Loss: 0.05458000674843788, Val Loss: 0.04806337500544819 +2024-07-19 14:48:52.745 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 34/50, Train Loss: 0.054211635746665904, Val Loss: 0.048109599817040806 +2024-07-19 14:48:52.955 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 35/50, Train Loss: 0.05405109682799997, Val Loss: 0.04788366549119756 +2024-07-19 14:48:53.166 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 36/50, Train Loss: 0.05392639527751787, Val Loss: 0.04781094213595261 +2024-07-19 14:48:53.384 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 37/50, Train Loss: 0.05398137308657169, Val Loss: 0.04768660362507846 +2024-07-19 14:48:53.594 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 38/50, Train Loss: 0.053575584060839704, Val Loss: 0.04773307883658925 +2024-07-19 14:48:53.798 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 39/50, Train Loss: 0.05359903050938974, Val Loss: 0.047845441697014345 +2024-07-19 14:48:54.006 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 40/50, Train Loss: 0.05357905895122, Val Loss: 0.04752407721369653 +2024-07-19 14:48:54.216 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 41/50, Train Loss: 0.05322037909079243, Val Loss: 0.04718382294113572 +2024-07-19 14:48:54.424 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 42/50, Train Loss: 0.05305721127503627, Val Loss: 0.0475408659392112 +2024-07-19 14:48:54.630 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 43/50, Train Loss: 0.05296864375673436, Val Loss: 0.04692825040704495 +2024-07-19 14:48:54.840 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 44/50, Train Loss: 0.05274197522148087, Val Loss: 0.04740406718809862 +2024-07-19 14:48:55.049 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 45/50, Train Loss: 0.05273215812505097, Val Loss: 0.04702249139144614 +2024-07-19 14:48:55.257 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 46/50, Train Loss: 0.05225131690904901, Val Loss: 0.047138109702516244 +2024-07-19 14:48:55.470 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 47/50, Train Loss: 0.05230751915557964, Val Loss: 0.04713685261840756 +2024-07-19 14:48:55.689 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 48/50, Train Loss: 0.052273061176812324, Val Loss: 0.04710526205599308 +2024-07-19 14:48:55.898 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 49/50, Train Loss: 0.05273056573964454, Val Loss: 0.046978639136697795 +2024-07-19 14:48:56.108 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 50/50, Train Loss: 0.05156495865132358, Val Loss: 0.04629714666186152 +2024-07-19 14:48:56.108 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Fold 0, MAPE: 3.80% +2024-07-19 14:48:56.520 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_25001_50000_LSTM//train_f0_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-19 14:48:56.937 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 1/50, Train Loss: 0.04905946562959723, Val Loss: 0.0442344419456817 +2024-07-19 14:48:57.302 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 2/50, Train Loss: 0.048032077310019974, Val Loss: 0.042329720246630745 +2024-07-19 14:48:57.669 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 3/50, Train Loss: 0.04661088033694111, Val Loss: 0.03783704914353989 +2024-07-19 14:48:58.051 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 4/50, Train Loss: 0.0462842394712649, Val Loss: 0.03607310032522356 +2024-07-19 14:48:58.421 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 5/50, Train Loss: 0.045513027054193904, Val Loss: 0.03618989109590247 +2024-07-19 14:48:58.791 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 6/50, Train Loss: 0.04488315111766123, Val Loss: 0.03620373341884162 +2024-07-19 14:48:59.146 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 7/50, Train Loss: 0.04496120240488281, Val Loss: 0.03667001265126306 +2024-07-19 14:48:59.514 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 8/50, Train Loss: 0.04578549246469589, Val Loss: 0.03569553510562794 +2024-07-19 14:48:59.878 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 9/50, Train Loss: 0.04569874816153147, Val Loss: 0.035797635747774226 +2024-07-19 14:49:00.260 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 10/50, Train Loss: 0.04482635575002187, Val Loss: 0.03579575170737666 +2024-07-19 14:49:00.740 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 11/50, Train Loss: 0.04523016433295322, Val Loss: 0.0367414282282462 +2024-07-19 14:49:01.156 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 12/50, Train Loss: 0.04523827718596344, Val Loss: 0.036520074297850195 +2024-07-19 14:49:01.536 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 13/50, Train Loss: 0.04476308197497505, Val Loss: 0.03570763550296023 +2024-07-19 14:49:01.906 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 14/50, Train Loss: 0.04429131935108198, Val Loss: 0.03554245441950656 +2024-07-19 14:49:02.295 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 15/50, Train Loss: 0.044378726194574405, Val Loss: 0.036982725449913254 +2024-07-19 14:49:02.676 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 16/50, Train Loss: 0.044677667268743254, Val Loss: 0.036670728058025646 +2024-07-19 14:49:03.047 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 17/50, Train Loss: 0.04357856228845577, Val Loss: 0.03578406834119075 +2024-07-19 14:49:03.428 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 18/50, Train Loss: 0.04352012059766136, Val Loss: 0.035349345438786456 +2024-07-19 14:49:03.785 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 19/50, Train Loss: 0.04329703095024579, Val Loss: 0.03537411182313352 +2024-07-19 14:49:04.143 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 20/50, Train Loss: 0.04336259483474575, Val Loss: 0.03604708722717053 +2024-07-19 14:49:04.509 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 21/50, Train Loss: 0.04351456631740479, Val Loss: 0.03590912331600447 +2024-07-19 14:49:04.883 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 22/50, Train Loss: 0.04349468551474075, Val Loss: 0.03662467158928111 +2024-07-19 14:49:05.369 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 23/50, Train Loss: 0.04341775849971869, Val Loss: 0.03814780123129084 +2024-07-19 14:49:05.742 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 24/50, Train Loss: 0.0433873135902702, Val Loss: 0.03893568839978527 +2024-07-19 14:49:06.115 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 25/50, Train Loss: 0.0436214595165563, Val Loss: 0.03698359213366702 +2024-07-19 14:49:06.471 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 26/50, Train Loss: 0.04318310820484814, Val Loss: 0.038915192355980746 +2024-07-19 14:49:06.828 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 27/50, Train Loss: 0.04373753315781894, Val Loss: 0.03750184832795246 +2024-07-19 14:49:07.182 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 28/50, Train Loss: 0.0433281415384518, Val Loss: 0.04000211683278148 +2024-07-19 14:49:07.535 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 29/50, Train Loss: 0.04319963946122013, Val Loss: 0.04039630097513263 +2024-07-19 14:49:07.889 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 30/50, Train Loss: 0.04336925435249936, Val Loss: 0.040996849285186945 +2024-07-19 14:49:08.242 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 31/50, Train Loss: 0.043356593800325915, Val Loss: 0.04065644091649635 +2024-07-19 14:49:08.605 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 32/50, Train Loss: 0.04322968096765753, Val Loss: 0.03928667493164539 +2024-07-19 14:49:08.954 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 33/50, Train Loss: 0.043086455114287874, Val Loss: 0.03738429095294025 +2024-07-19 14:49:09.314 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 34/50, Train Loss: 0.04280339872898304, Val Loss: 0.036818377472258905 +2024-07-19 14:49:09.666 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 35/50, Train Loss: 0.04341034928005036, Val Loss: 0.037768729534503574 +2024-07-19 14:49:10.034 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 36/50, Train Loss: 0.043476637274231, Val Loss: 0.03848190338829079 +2024-07-19 14:49:10.385 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 37/50, Train Loss: 0.043371815923346234, Val Loss: 0.038000430458703556 +2024-07-19 14:49:10.740 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 38/50, Train Loss: 0.043317374581955885, Val Loss: 0.036825039801565373 +2024-07-19 14:49:11.113 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 39/50, Train Loss: 0.042858513607962494, Val Loss: 0.03774819865420058 +2024-07-19 14:49:11.469 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 40/50, Train Loss: 0.04306521741290615, Val Loss: 0.03880150596032272 +2024-07-19 14:49:11.827 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 41/50, Train Loss: 0.04354357114699606, Val Loss: 0.037078279246752326 +2024-07-19 14:49:12.176 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 42/50, Train Loss: 0.04261372738505063, Val Loss: 0.037524828939019025 +2024-07-19 14:49:12.528 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 43/50, Train Loss: 0.04290603966235298, Val Loss: 0.03747597397179217 +2024-07-19 14:49:12.881 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 44/50, Train Loss: 0.04276288831478929, Val Loss: 0.03796430621799585 +2024-07-19 14:49:13.231 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 45/50, Train Loss: 0.042977513566817324, Val Loss: 0.03753526982020687 +2024-07-19 14:49:13.583 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 46/50, Train Loss: 0.043032302482895655, Val Loss: 0.03635914583463926 +2024-07-19 14:49:13.933 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 47/50, Train Loss: 0.04243714137844844, Val Loss: 0.03733642640951518 +2024-07-19 14:49:14.285 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 48/50, Train Loss: 0.042956641377651525, Val Loss: 0.03705669335416845 +2024-07-19 14:49:14.639 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 49/50, Train Loss: 0.04284396953880787, Val Loss: 0.03674827898676331 +2024-07-19 14:49:14.991 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 50/50, Train Loss: 0.042902890337656624, Val Loss: 0.037539376499685084 +2024-07-19 14:49:14.992 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Fold 1, MAPE: 3.45% +2024-07-19 14:49:15.092 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_25001_50000_LSTM//train_f1_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-19 14:49:15.603 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 1/50, Train Loss: 0.037427363900298424, Val Loss: 0.03441329189651721 +2024-07-19 14:49:16.112 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 2/50, Train Loss: 0.03674868948080323, Val Loss: 0.03337232562134395 +2024-07-19 14:49:16.611 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 3/50, Train Loss: 0.03662990949709307, Val Loss: 0.032321964617113806 +2024-07-19 14:49:17.110 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 4/50, Train Loss: 0.03621066068722443, Val Loss: 0.03291870341510386 +2024-07-19 14:49:17.613 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 5/50, Train Loss: 0.03651202757927505, Val Loss: 0.03316978319875292 +2024-07-19 14:49:18.117 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 6/50, Train Loss: 0.03652354654094035, Val Loss: 0.03248070980850104 +2024-07-19 14:49:18.624 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 7/50, Train Loss: 0.03605265693569725, Val Loss: 0.03253827213838294 +2024-07-19 14:49:19.124 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 8/50, Train Loss: 0.03617948070168495, Val Loss: 0.03251939443116252 +2024-07-19 14:49:19.625 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 9/50, Train Loss: 0.036535820153287865, Val Loss: 0.03314452175353024 +2024-07-19 14:49:20.182 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 10/50, Train Loss: 0.036216413229703905, Val Loss: 0.03237284176252984 +2024-07-19 14:49:20.779 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 11/50, Train Loss: 0.036024924130602314, Val Loss: 0.03252577172541941 +2024-07-19 14:49:21.330 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 12/50, Train Loss: 0.03621500463817607, Val Loss: 0.032969483702972126 +2024-07-19 14:49:21.833 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 13/50, Train Loss: 0.03620938668874177, Val Loss: 0.0324029544418728 +2024-07-19 14:49:22.335 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 14/50, Train Loss: 0.03580917999656363, Val Loss: 0.03256231143667891 +2024-07-19 14:49:22.847 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 15/50, Train Loss: 0.036031909058378504, Val Loss: 0.0328182878627165 +2024-07-19 14:49:23.350 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 16/50, Train Loss: 0.03614002539860931, Val Loss: 0.03278063882041622 +2024-07-19 14:49:23.852 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 17/50, Train Loss: 0.03578879519111731, Val Loss: 0.03276689859056795 +2024-07-19 14:49:24.355 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 18/50, Train Loss: 0.03596395364200527, Val Loss: 0.0322042178563975 +2024-07-19 14:49:24.857 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 19/50, Train Loss: 0.0360962285744873, Val Loss: 0.033070996957453525 +2024-07-19 14:49:25.357 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 20/50, Train Loss: 0.03614415821026672, Val Loss: 0.03228003743129808 +2024-07-19 14:49:25.865 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 21/50, Train Loss: 0.03589857580478896, Val Loss: 0.03256215245739834 +2024-07-19 14:49:26.368 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 22/50, Train Loss: 0.035851095693016595, Val Loss: 0.032300758100039254 +2024-07-19 14:49:26.868 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 23/50, Train Loss: 0.036026606048372656, Val Loss: 0.033023596565062936 +2024-07-19 14:49:27.368 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 24/50, Train Loss: 0.036198393001475114, Val Loss: 0.03246915959627242 +2024-07-19 14:49:27.869 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 25/50, Train Loss: 0.035837877313183115, Val Loss: 0.03292362079829783 +2024-07-19 14:49:28.369 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 26/50, Train Loss: 0.03613898180933161, Val Loss: 0.032964774180908464 +2024-07-19 14:49:28.872 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 27/50, Train Loss: 0.03598429897630757, Val Loss: 0.032188126716662095 +2024-07-19 14:49:29.481 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 28/50, Train Loss: 0.035835988497869536, Val Loss: 0.03294941727575418 +2024-07-19 14:49:30.089 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 29/50, Train Loss: 0.03627380270680243, Val Loss: 0.03242962606049873 +2024-07-19 14:49:30.708 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 30/50, Train Loss: 0.035893063907596195, Val Loss: 0.03251746760026829 +2024-07-19 14:49:31.286 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 31/50, Train Loss: 0.03590423788198016, Val Loss: 0.03260703883259683 +2024-07-19 14:49:31.789 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 32/50, Train Loss: 0.035787292011082175, Val Loss: 0.03232276298709818 +2024-07-19 14:49:32.287 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 33/50, Train Loss: 0.03574143555015326, Val Loss: 0.032868342625128256 +2024-07-19 14:49:32.787 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 34/50, Train Loss: 0.03618441510268233, Val Loss: 0.032908719788129266 +2024-07-19 14:49:33.279 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 35/50, Train Loss: 0.03582671107724309, Val Loss: 0.03178717689336957 +2024-07-19 14:49:33.776 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 36/50, Train Loss: 0.03625363398512656, Val Loss: 0.034116129013332164 +2024-07-19 14:49:34.279 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 37/50, Train Loss: 0.03584526044062593, Val Loss: 0.032476695053078035 +2024-07-19 14:49:34.780 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 38/50, Train Loss: 0.036273345689881935, Val Loss: 0.03380256322388713 +2024-07-19 14:49:35.276 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 39/50, Train Loss: 0.035614694011482324, Val Loss: 0.03255251543344678 +2024-07-19 14:49:35.784 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 40/50, Train Loss: 0.03595858702266758, Val Loss: 0.03328776510583388 +2024-07-19 14:49:36.288 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 41/50, Train Loss: 0.03552223039282994, Val Loss: 0.03267779795301927 +2024-07-19 14:49:36.785 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 42/50, Train Loss: 0.03591960668563843, Val Loss: 0.03346198434765275 +2024-07-19 14:49:37.287 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 43/50, Train Loss: 0.03570306759158319, Val Loss: 0.03208301014996864 +2024-07-19 14:49:37.785 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 44/50, Train Loss: 0.03602295816791329, Val Loss: 0.03367943367039835 +2024-07-19 14:49:38.281 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 45/50, Train Loss: 0.035576696533032436, Val Loss: 0.032857172795244166 +2024-07-19 14:49:38.790 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 46/50, Train Loss: 0.03557431630112908, Val Loss: 0.03246362205292728 +2024-07-19 14:49:39.285 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 47/50, Train Loss: 0.035679107074710455, Val Loss: 0.03310386383452931 +2024-07-19 14:49:39.785 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 48/50, Train Loss: 0.03558332469652999, Val Loss: 0.032368021488592434 +2024-07-19 14:49:40.285 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 49/50, Train Loss: 0.036044488279995596, Val Loss: 0.03457309265394468 +2024-07-19 14:49:40.784 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 50/50, Train Loss: 0.03584212305193597, Val Loss: 0.03280723583255265 +2024-07-19 14:49:40.784 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Fold 2, MAPE: 2.92% +2024-07-19 14:49:40.886 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_25001_50000_LSTM//train_f2_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-19 14:49:41.552 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 1/50, Train Loss: 0.0337380549092203, Val Loss: 0.03401187852629133 +2024-07-19 14:49:42.197 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 2/50, Train Loss: 0.03361425021892949, Val Loss: 0.03368860226426575 +2024-07-19 14:49:42.839 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 3/50, Train Loss: 0.033436239237756765, Val Loss: 0.033311045351060664 +2024-07-19 14:49:43.478 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 4/50, Train Loss: 0.03355391035239174, Val Loss: 0.033588207553367354 +2024-07-19 14:49:44.124 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 5/50, Train Loss: 0.03352079858161407, Val Loss: 0.033595699766600456 +2024-07-19 14:49:44.770 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 6/50, Train Loss: 0.03353839260462212, Val Loss: 0.033147001588666763 +2024-07-19 14:49:45.409 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 7/50, Train Loss: 0.03354275684599599, Val Loss: 0.032212292473461177 +2024-07-19 14:49:46.059 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 8/50, Train Loss: 0.033196603356260956, Val Loss: 0.03288993194095186 +2024-07-19 14:49:46.710 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 9/50, Train Loss: 0.03357768228456174, Val Loss: 0.0331187346396414 +2024-07-19 14:49:47.355 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 10/50, Train Loss: 0.033417801206854926, Val Loss: 0.0327055797584959 +2024-07-19 14:49:48.003 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 11/50, Train Loss: 0.03339280240390807, Val Loss: 0.03168159834033734 +2024-07-19 14:49:48.655 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 12/50, Train Loss: 0.033087672327632364, Val Loss: 0.03267682585361842 +2024-07-19 14:49:49.296 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 13/50, Train Loss: 0.03335056622346787, Val Loss: 0.03254908061510808 +2024-07-19 14:49:49.941 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 14/50, Train Loss: 0.0332554560027098, Val Loss: 0.033184760929764925 +2024-07-19 14:49:50.587 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 15/50, Train Loss: 0.033528970554471016, Val Loss: 0.03142482329260658 +2024-07-19 14:49:51.262 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 16/50, Train Loss: 0.03309465860565231, Val Loss: 0.031715973859300486 +2024-07-19 14:49:51.923 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 17/50, Train Loss: 0.033181500047037044, Val Loss: 0.03180747031158692 +2024-07-19 14:49:52.568 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 18/50, Train Loss: 0.033051934552519285, Val Loss: 0.03208005237015518 +2024-07-19 14:49:53.208 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 19/50, Train Loss: 0.03314609895779254, Val Loss: 0.03208686406346592 +2024-07-19 14:49:53.852 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 20/50, Train Loss: 0.03328119292344949, Val Loss: 0.03174559087366671 +2024-07-19 14:49:54.501 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 21/50, Train Loss: 0.03308350218408932, Val Loss: 0.03214310995630316 +2024-07-19 14:49:55.150 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 22/50, Train Loss: 0.03329298960376684, Val Loss: 0.031809020334401646 +2024-07-19 14:49:55.801 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 23/50, Train Loss: 0.033164361262158173, Val Loss: 0.031962012267998746 +2024-07-19 14:49:56.450 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 24/50, Train Loss: 0.03327390472468448, Val Loss: 0.032469202739161415 +2024-07-19 14:49:57.098 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 25/50, Train Loss: 0.033571601067095586, Val Loss: 0.03200573574852299 +2024-07-19 14:49:57.741 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 26/50, Train Loss: 0.03310891797077166, Val Loss: 0.031802358105778694 +2024-07-19 14:49:58.392 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 27/50, Train Loss: 0.0332449588873615, Val Loss: 0.03241417083788563 +2024-07-19 14:49:59.040 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 28/50, Train Loss: 0.0333118292005503, Val Loss: 0.03164021791638555 +2024-07-19 14:49:59.725 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 29/50, Train Loss: 0.032971994460190404, Val Loss: 0.03178110154899391 +2024-07-19 14:50:00.386 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 30/50, Train Loss: 0.03296188192365512, Val Loss: 0.03213632675642903 +2024-07-19 14:50:01.032 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 31/50, Train Loss: 0.033219964549659864, Val Loss: 0.03175746211530389 +2024-07-19 14:50:01.684 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 32/50, Train Loss: 0.03315332173433614, Val Loss: 0.03197234083671827 +2024-07-19 14:50:02.328 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 33/50, Train Loss: 0.03334496722696987, Val Loss: 0.03205229145650928 +2024-07-19 14:50:02.975 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 34/50, Train Loss: 0.03328428463372465, Val Loss: 0.031721470575477625 +2024-07-19 14:50:03.622 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 35/50, Train Loss: 0.03343012946823688, Val Loss: 0.03137632036531294 +2024-07-19 14:50:04.266 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 36/50, Train Loss: 0.03316554377391322, Val Loss: 0.03169721133402876 +2024-07-19 14:50:04.908 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 37/50, Train Loss: 0.03322318314944636, Val Loss: 0.03165579823827421 +2024-07-19 14:50:05.629 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 38/50, Train Loss: 0.03333412131218061, Val Loss: 0.031728586131656494 +2024-07-19 14:50:06.341 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 39/50, Train Loss: 0.03329804623882248, Val Loss: 0.03199845985383601 +2024-07-19 14:50:07.041 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 40/50, Train Loss: 0.03320899596820547, Val Loss: 0.031706963640612526 +2024-07-19 14:50:07.721 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 41/50, Train Loss: 0.0331786736616329, Val Loss: 0.03178399972416259 +2024-07-19 14:50:08.442 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 42/50, Train Loss: 0.03297875880276504, Val Loss: 0.03181450844213769 +2024-07-19 14:50:09.281 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 43/50, Train Loss: 0.03309660228862338, Val Loss: 0.03190085895963617 +2024-07-19 14:50:09.950 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 44/50, Train Loss: 0.03338518815293704, Val Loss: 0.03192141027869405 +2024-07-19 14:50:10.712 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 45/50, Train Loss: 0.033289694086941955, Val Loss: 0.03202364925999899 +2024-07-19 14:50:11.415 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 46/50, Train Loss: 0.03318220221322693, Val Loss: 0.032088888557376086 +2024-07-19 14:50:12.094 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 47/50, Train Loss: 0.03314451537771176, Val Loss: 0.032106811331736075 +2024-07-19 14:50:12.790 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 48/50, Train Loss: 0.032959516275010696, Val Loss: 0.03155601860300915 +2024-07-19 14:50:13.466 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 49/50, Train Loss: 0.03303840091732675, Val Loss: 0.03190736306478848 +2024-07-19 14:50:14.142 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 50/50, Train Loss: 0.03281411502433762, Val Loss: 0.03223895518159544 +2024-07-19 14:50:14.143 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Fold 3, MAPE: 2.73% +2024-07-19 14:50:14.249 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_25001_50000_LSTM//train_f3_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-19 14:50:15.091 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 1/50, Train Loss: 0.033517370179582104, Val Loss: 0.03079339544716719 +2024-07-19 14:50:15.910 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 2/50, Train Loss: 0.03345423485510624, Val Loss: 0.030583423436493486 +2024-07-19 14:50:16.740 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 3/50, Train Loss: 0.03322279931220052, Val Loss: 0.030762551906141074 +2024-07-19 14:50:17.569 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 4/50, Train Loss: 0.033095447663831844, Val Loss: 0.030357758036336384 +2024-07-19 14:50:18.403 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 5/50, Train Loss: 0.03311775145786149, Val Loss: 0.03012163272580585 +2024-07-19 14:50:19.304 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 6/50, Train Loss: 0.03305453082526123, Val Loss: 0.02998069195529899 +2024-07-19 14:50:20.129 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 7/50, Train Loss: 0.03309563538673651, Val Loss: 0.02977028755924186 +2024-07-19 14:50:21.003 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 8/50, Train Loss: 0.03307400773801319, Val Loss: 0.029726678505539894 +2024-07-19 14:50:21.948 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 9/50, Train Loss: 0.033066330395720815, Val Loss: 0.030394295029140806 +2024-07-19 14:50:22.776 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 10/50, Train Loss: 0.03312509703439671, Val Loss: 0.030344695910005957 +2024-07-19 14:50:23.676 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 11/50, Train Loss: 0.032937069065295733, Val Loss: 0.02896080775236761 +2024-07-19 14:50:24.539 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 12/50, Train Loss: 0.032984896562993526, Val Loss: 0.030442994641693862 +2024-07-19 14:50:25.400 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 13/50, Train Loss: 0.03297886766165822, Val Loss: 0.030045921486374493 +2024-07-19 14:50:26.237 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 14/50, Train Loss: 0.032980249022839817, Val Loss: 0.029726763180381543 +2024-07-19 14:50:27.112 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 15/50, Train Loss: 0.03311510073471364, Val Loss: 0.030789373241163587 +2024-07-19 14:50:27.922 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 16/50, Train Loss: 0.03302103533808674, Val Loss: 0.029948200829125738 +2024-07-19 14:50:28.762 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 17/50, Train Loss: 0.032924363149104866, Val Loss: 0.029771354905254132 +2024-07-19 14:50:29.594 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 18/50, Train Loss: 0.033037666963147264, Val Loss: 0.03002424961006319 +2024-07-19 14:50:30.445 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 19/50, Train Loss: 0.03301810143658748, Val Loss: 0.030696416676447198 +2024-07-19 14:50:31.276 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 20/50, Train Loss: 0.033056249002833944, Val Loss: 0.030641308608087333 +2024-07-19 14:50:32.094 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 21/50, Train Loss: 0.032946344649234974, Val Loss: 0.03024175954428879 +2024-07-19 14:50:32.915 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 22/50, Train Loss: 0.03291331319097471, Val Loss: 0.029925842391880782 +2024-07-19 14:50:33.761 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 23/50, Train Loss: 0.0329896374963797, Val Loss: 0.03150044905172812 +2024-07-19 14:50:34.598 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 24/50, Train Loss: 0.033040200923006614, Val Loss: 0.030886846619683342 +2024-07-19 14:50:35.441 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 25/50, Train Loss: 0.03302466785432873, Val Loss: 0.0308670237459041 +2024-07-19 14:50:36.281 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 26/50, Train Loss: 0.032946338559818135, Val Loss: 0.03106278009914063 +2024-07-19 14:50:37.120 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 27/50, Train Loss: 0.03301511730507507, Val Loss: 0.031066214716112293 +2024-07-19 14:50:37.952 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 28/50, Train Loss: 0.03305353134215533, Val Loss: 0.03102381789201015 +2024-07-19 14:50:38.778 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 29/50, Train Loss: 0.03301248747527927, Val Loss: 0.030995652230607497 +2024-07-19 14:50:39.595 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 30/50, Train Loss: 0.03309734084817407, Val Loss: 0.03145947851039268 +2024-07-19 14:50:40.442 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 31/50, Train Loss: 0.03307788711614334, Val Loss: 0.03130457832201107 +2024-07-19 14:50:41.282 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 32/50, Train Loss: 0.033145779508401405, Val Loss: 0.03135268032752179 +2024-07-19 14:50:42.103 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 33/50, Train Loss: 0.03306620699036252, Val Loss: 0.03188880039630709 +2024-07-19 14:50:42.923 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 34/50, Train Loss: 0.033117854896073155, Val Loss: 0.03145552965233455 +2024-07-19 14:50:43.742 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 35/50, Train Loss: 0.03297621932822269, Val Loss: 0.03099103211551099 +2024-07-19 14:50:44.559 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 36/50, Train Loss: 0.032984077388031795, Val Loss: 0.031232127617742564 +2024-07-19 14:50:45.378 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 37/50, Train Loss: 0.033224654742158376, Val Loss: 0.032204403315444254 +2024-07-19 14:50:46.236 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 38/50, Train Loss: 0.03315661478132664, Val Loss: 0.03212677133647171 +2024-07-19 14:50:47.063 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 39/50, Train Loss: 0.03311177987891894, Val Loss: 0.03143035570109213 +2024-07-19 14:50:47.879 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 40/50, Train Loss: 0.03303269441188364, Val Loss: 0.03263004375873385 +2024-07-19 14:50:48.715 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 41/50, Train Loss: 0.033159382825533115, Val Loss: 0.0319255857250175 +2024-07-19 14:50:49.535 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 42/50, Train Loss: 0.033016246549048264, Val Loss: 0.031328940814411316 +2024-07-19 14:50:50.355 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 43/50, Train Loss: 0.03304534744225688, Val Loss: 0.03169950601216909 +2024-07-19 14:50:51.197 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 44/50, Train Loss: 0.03310850204306317, Val Loss: 0.03221467081960794 +2024-07-19 14:50:52.023 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 45/50, Train Loss: 0.033052245902081764, Val Loss: 0.03218612165467159 +2024-07-19 14:50:52.851 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 46/50, Train Loss: 0.03301752352534414, Val Loss: 0.03207533776357367 +2024-07-19 14:50:53.682 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 47/50, Train Loss: 0.033043163971832164, Val Loss: 0.03160188548468255 +2024-07-19 14:50:54.497 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 48/50, Train Loss: 0.03283798241230485, Val Loss: 0.03069651378570376 +2024-07-19 14:50:55.321 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 49/50, Train Loss: 0.032806622877635146, Val Loss: 0.03171076545038739 +2024-07-19 14:50:56.178 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Epoch 50/50, Train Loss: 0.03305490610732154, Val Loss: 0.03288673730315389 +2024-07-19 14:50:56.178 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Fold 4, MAPE: 2.91% +2024-07-19 14:50:56.284 [15/cross_validate_train/173 (pid 6845)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_25001_50000_LSTM//train_f4_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-19 14:51:00.729 [15/cross_validate_train/173 (pid 6845)] Task finished successfully. +2024-07-19 14:51:00.761 [15/model_scores/174 (pid 7408)] Task is starting. +2024-07-19 14:51:02.266 [15/model_scores/174 (pid 7408)] INFO:__main__:Average Train Loss across all folds: 0.03923579863451506 +2024-07-19 14:51:06.110 [15/model_scores/174 (pid 7408)] INFO:__main__:Average Validation Loss across all folds: 0.03635389029576972 +2024-07-19 14:51:06.110 [15/model_scores/174 (pid 7408)] INFO:__main__:Average MAPE across all folds: 3.16% +2024-07-19 14:51:06.111 [15/model_scores/174 (pid 7408)] Task finished successfully. +2024-07-19 14:51:06.139 [15/validate_model/175 (pid 7432)] Task is starting. +2024-07-19 14:51:07.630 [15/validate_model/175 (pid 7432)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:51:07.777 [15/validate_model/175 (pid 7432)] INFO:__main__:Test Set MAPE: 4.22% +2024-07-19 14:51:08.179 [15/validate_model/175 (pid 7432)] INFO:__main__:Test image saved at metaflow_models//bgd_lodging_residential_25001_50000_LSTM//test_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-19 14:51:08.594 [15/validate_model/175 (pid 7432)] Task finished successfully. +2024-07-19 14:51:08.625 [15/log_model/176 (pid 7445)] Task is starting. +2024-07-19 14:51:10.090 [15/log_model/176 (pid 7445)] INFO:__main__:Logging model bgd_lodging_residential_25001_50000_LSTM +2024-07-19 14:51:10.092 [15/log_model/176 (pid 7445)] INFO:__main__:Model logged at metaflow_models//bgd_lodging_residential_25001_50000_LSTM//bgd_lodging_residential_25001_50000_LSTM.pth +2024-07-19 14:51:13.956 [15/log_model/176 (pid 7445)] Task finished successfully. +2024-07-19 14:51:13.986 [15/end/177 (pid 7476)] Task is starting. +2024-07-19 14:51:15.437 [15/end/177 (pid 7476)] INFO:__main__:Pipeline end. +2024-07-19 14:51:15.750 [15/end/177 (pid 7476)] Task finished successfully. +2024-07-19 14:51:15.751 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/scaler_bgd_lodging_residential_25001_50000_LSTM.pkl b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/scaler_bgd_lodging_residential_25001_50000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..ee57e779e6d1e5f13e5e93eae3493fa4d66b65d5 --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/scaler_bgd_lodging_residential_25001_50000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696d4b5f882458ab57d7d813bafc92847fb4c499bbbac8c829290bb8667926b5 +size 557 diff --git a/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/test_bgd_lodging_residential_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/test_bgd_lodging_residential_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..a1ec0d960dc50b4ac1a3a0a978381c8abcc89656 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/test_bgd_lodging_residential_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f0_bgd_lodging_residential_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f0_bgd_lodging_residential_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..6de64cd44e880cf6f91ecd8546568b5dda382051 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f0_bgd_lodging_residential_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f1_bgd_lodging_residential_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f1_bgd_lodging_residential_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..0124b9a0d6925fcfdbae640ca7d775ce33c60042 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f1_bgd_lodging_residential_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f2_bgd_lodging_residential_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f2_bgd_lodging_residential_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..4fd14c97a5cb044ed4b9921676237487355d7375 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f2_bgd_lodging_residential_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f3_bgd_lodging_residential_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f3_bgd_lodging_residential_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..bf12aeca673f9f7c2ea7d62881fc09ed69d95cfc Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f3_bgd_lodging_residential_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f4_bgd_lodging_residential_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f4_bgd_lodging_residential_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..3c3d746cb889f26d1be710eca8b16e0e662ba711 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_25001_50000_LSTM/train_f4_bgd_lodging_residential_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/bgd_lodging_residential_50001_100000_LSTM.pth b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/bgd_lodging_residential_50001_100000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..c786e300b8d473f30750eefd44f5dd839d724df3 --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/bgd_lodging_residential_50001_100000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ebac715b7b7e71032c51c31aa51eb262dacaef270ae9c0f4b4a304d7d8ff36 +size 47068 diff --git a/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/output.txt b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..1db566ea237da72b8f82779626c86b4edd201419 --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/output.txt @@ -0,0 +1,758 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 15:06:55.318 Workflow starting (run-id 21): +2024-07-19 15:06:55.396 [21/start/249 (pid 11752)] Task is starting. +2024-07-19 15:06:57.050 [21/start/249 (pid 11752)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 15:06:57.381 [21/start/249 (pid 11752)] Task finished successfully. +2024-07-19 15:06:57.417 [21/ingest/250 (pid 11763)] Task is starting. +2024-07-19 15:06:58.990 [21/ingest/250 (pid 11763)] INFO:__main__:Fetching dataframe.. +2024-07-19 15:06:59.015 [21/ingest/250 (pid 11763)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 15:07:03.102 [21/ingest/250 (pid 11763)] Task finished successfully. +2024-07-19 15:07:03.131 [21/pick_2017_data/251 (pid 11803)] Task is starting. +2024-07-19 15:07:04.636 [21/pick_2017_data/251 (pid 11803)] INFO:__main__:Picking 2017 data.. +2024-07-19 15:07:05.005 [21/pick_2017_data/251 (pid 11803)] Task finished successfully. +2024-07-19 15:07:05.037 [21/fill_missing_data/252 (pid 11820)] Task is starting. +2024-07-19 15:07:06.519 [21/fill_missing_data/252 (pid 11820)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] INFO:__main__:NaN counts per column: +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] INFO:__main__:Panther_lodging_Edison 11 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Awilda 12 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Gale 11 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Cornelia 11 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Alita 11 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Sonja 12 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Kaitlin 12 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Edmond 11 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Tracie 11 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Robin_lodging_Celia 0 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Fox_lodging_Wallace 1 +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] Fox_lodging_Alana 1 +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] Fox_lodging_Winifred 1 +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] Bear_lodging_Erick 38 +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] Cockatoo_lodging_Raphael 113 +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] Cockatoo_lodging_Josephine 121 +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] dtype: int64 +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] --- Logging error --- +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] Traceback (most recent call last): +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] msg = self.format(record) +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] return fmt.format(record) +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] record.message = record.getMessage() +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] msg = msg % self.args +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] TypeError: not all arguments converted during string formatting +2024-07-19 15:07:06.533 [21/fill_missing_data/252 (pid 11820)] Call stack: +2024-07-19 15:07:06.533 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] BGD_LinearFlow() +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] cli.main(self) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] return func(*args, **kwargs) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] return self.main(*args, **kwargs) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] rv = self.invoke(ctx) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] return callback(*args, **kwargs) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] return f(get_current_context(), *args, **kwargs) +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] task.run_step( +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] self._exec_step_function(step_func) +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] step_function() +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] self.missing_values = find_nan_counts(self.df) +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] Arguments: (377,) +2024-07-19 15:07:07.115 [21/fill_missing_data/252 (pid 11820)] Task finished successfully. +2024-07-19 15:07:07.149 [21/find_median/253 (pid 11831)] Task is starting. +2024-07-19 15:07:08.649 [21/find_median/253 (pid 11831)] INFO:__main__:Computing and using median.. +2024-07-19 15:07:09.237 [21/find_median/253 (pid 11831)] Task finished successfully. +2024-07-19 15:07:09.273 [21/aggregate_data/254 (pid 11844)] Task is starting. +2024-07-19 15:07:10.821 [21/aggregate_data/254 (pid 11844)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 15:07:14.790 [21/aggregate_data/254 (pid 11844)] Task finished successfully. +2024-07-19 15:07:14.825 [21/split_data/255 (pid 11882)] Task is starting. +2024-07-19 15:07:16.321 [21/split_data/255 (pid 11882)] INFO:__main__:Splitting data into test and train... +2024-07-19 15:07:20.262 [21/split_data/255 (pid 11882)] Task finished successfully. +2024-07-19 15:07:20.292 [21/make_x_y/256 (pid 11920)] Task is starting. +2024-07-19 15:07:22.198 [21/make_x_y/256 (pid 11920)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 15:07:22.529 [21/make_x_y/256 (pid 11920)] Shape of y_train: (6978, 1) +2024-07-19 15:07:22.529 [21/make_x_y/256 (pid 11920)] Shape of X_test: (1722, 30, 1) +2024-07-19 15:07:22.529 [21/make_x_y/256 (pid 11920)] Shape of y_test: (1722, 1) +2024-07-19 15:07:22.530 [21/make_x_y/256 (pid 11920)] Task finished successfully. +2024-07-19 15:07:22.564 [21/cross_validate_train/257 (pid 11931)] Task is starting. +2024-07-19 15:07:24.081 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Creating bgd_lodging_residential_50001_100000_LSTM +2024-07-19 15:07:24.082 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Performing cross validation.. +2024-07-19 15:07:24.874 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 1/50, Train Loss: 0.23172284400946386, Val Loss: 0.13723267695388278 +2024-07-19 15:07:25.079 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 2/50, Train Loss: 0.1770363655444738, Val Loss: 0.13293678112126686 +2024-07-19 15:07:25.323 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 3/50, Train Loss: 0.1694473040265006, Val Loss: 0.1264794829326707 +2024-07-19 15:07:25.558 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 4/50, Train Loss: 0.1574935005927408, Val Loss: 0.11758632676021473 +2024-07-19 15:07:25.784 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 5/50, Train Loss: 0.14805388893630053, Val Loss: 0.11040457297821303 +2024-07-19 15:07:26.010 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 6/50, Train Loss: 0.13625720505778854, Val Loss: 0.09715872358631443 +2024-07-19 15:07:26.228 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 7/50, Train Loss: 0.11694260384585406, Val Loss: 0.07272799947374575 +2024-07-19 15:07:26.443 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 8/50, Train Loss: 0.102768039985283, Val Loss: 0.06577321715854309 +2024-07-19 15:07:26.658 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 9/50, Train Loss: 0.09387700118728586, Val Loss: 0.06222181918250548 +2024-07-19 15:07:26.875 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 10/50, Train Loss: 0.08451076737932257, Val Loss: 0.059790784241379916 +2024-07-19 15:07:27.089 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 11/50, Train Loss: 0.07841297057834831, Val Loss: 0.060603358354922886 +2024-07-19 15:07:27.296 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 12/50, Train Loss: 0.07517865320315233, Val Loss: 0.059959271368948186 +2024-07-19 15:07:27.505 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 13/50, Train Loss: 0.06772615196737083, Val Loss: 0.057523332838271116 +2024-07-19 15:07:27.729 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 14/50, Train Loss: 0.06302648792798454, Val Loss: 0.0560025710713219 +2024-07-19 15:07:27.954 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 15/50, Train Loss: 0.06045486999524606, Val Loss: 0.05512172034060633 +2024-07-19 15:07:28.176 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 16/50, Train Loss: 0.05713765715827813, Val Loss: 0.05488860748104147 +2024-07-19 15:07:28.388 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 17/50, Train Loss: 0.05417719916314692, Val Loss: 0.0538550438107671 +2024-07-19 15:07:28.601 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 18/50, Train Loss: 0.05223381841504896, Val Loss: 0.05312795645079097 +2024-07-19 15:07:28.814 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 19/50, Train Loss: 0.050447822875670484, Val Loss: 0.0520397298843474 +2024-07-19 15:07:29.035 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 20/50, Train Loss: 0.0493064646080539, Val Loss: 0.05115149975628466 +2024-07-19 15:07:29.261 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 21/50, Train Loss: 0.04845370609011199, Val Loss: 0.05065879507644756 +2024-07-19 15:07:29.496 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 22/50, Train Loss: 0.04748700282259567, Val Loss: 0.04976483877446201 +2024-07-19 15:07:29.722 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 23/50, Train Loss: 0.04557695355568383, Val Loss: 0.048067611868719794 +2024-07-19 15:07:29.947 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 24/50, Train Loss: 0.04494652710855007, Val Loss: 0.048174130050717176 +2024-07-19 15:07:30.182 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 25/50, Train Loss: 0.04634863435215241, Val Loss: 0.049680528709211864 +2024-07-19 15:07:30.437 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 26/50, Train Loss: 0.04607764933560345, Val Loss: 0.0468242342609006 +2024-07-19 15:07:30.691 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 27/50, Train Loss: 0.043991595003250485, Val Loss: 0.045925209953172785 +2024-07-19 15:07:30.934 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 28/50, Train Loss: 0.04403570228935899, Val Loss: 0.047522489384219456 +2024-07-19 15:07:31.161 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 29/50, Train Loss: 0.04266033190730456, Val Loss: 0.04599029963483681 +2024-07-19 15:07:31.392 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 30/50, Train Loss: 0.042594226228224265, Val Loss: 0.04561603562654676 +2024-07-19 15:07:31.628 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 31/50, Train Loss: 0.042963690904749406, Val Loss: 0.04809575840025335 +2024-07-19 15:07:31.861 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 32/50, Train Loss: 0.04171066288207028, Val Loss: 0.046062791216615086 +2024-07-19 15:07:32.107 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 33/50, Train Loss: 0.04133397954944018, Val Loss: 0.04460161274953468 +2024-07-19 15:07:32.332 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 34/50, Train Loss: 0.041339120349368534, Val Loss: 0.047837845578386974 +2024-07-19 15:07:32.554 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 35/50, Train Loss: 0.04035055274898942, Val Loss: 0.04420940336343404 +2024-07-19 15:07:32.772 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 36/50, Train Loss: 0.04154724532083885, Val Loss: 0.04544108632851292 +2024-07-19 15:07:32.992 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 37/50, Train Loss: 0.042086077703012, Val Loss: 0.045099059069478836 +2024-07-19 15:07:33.225 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 38/50, Train Loss: 0.04046610345107478, Val Loss: 0.044838043684894975 +2024-07-19 15:07:33.444 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 39/50, Train Loss: 0.040111112232143815, Val Loss: 0.04460942684798627 +2024-07-19 15:07:33.661 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 40/50, Train Loss: 0.04005925015017793, Val Loss: 0.046205616984012966 +2024-07-19 15:07:33.887 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 41/50, Train Loss: 0.039297943632747676, Val Loss: 0.04348769899759743 +2024-07-19 15:07:34.104 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 42/50, Train Loss: 0.04027998261153698, Val Loss: 0.043889932737157154 +2024-07-19 15:07:34.324 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 43/50, Train Loss: 0.04030377332221817, Val Loss: 0.042980366915061664 +2024-07-19 15:07:34.538 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 44/50, Train Loss: 0.03923941720780488, Val Loss: 0.04426667300631871 +2024-07-19 15:07:34.755 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 45/50, Train Loss: 0.04099750196611559, Val Loss: 0.04576913861406816 +2024-07-19 15:07:34.971 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 46/50, Train Loss: 0.03905187657958752, Val Loss: 0.04299506041649226 +2024-07-19 15:07:35.187 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 47/50, Train Loss: 0.038572238405814044, Val Loss: 0.04303382095452901 +2024-07-19 15:07:35.405 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 48/50, Train Loss: 0.03835057376607044, Val Loss: 0.04297692650878752 +2024-07-19 15:07:35.621 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 49/50, Train Loss: 0.03842062241322285, Val Loss: 0.042833202140959536 +2024-07-19 15:07:35.853 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 50/50, Train Loss: 0.03833934760375603, Val Loss: 0.04200404338740014 +2024-07-19 15:07:35.854 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Fold 0, MAPE: 3.21% +2024-07-19 15:07:36.233 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_50001_100000_LSTM//train_f0_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-19 15:07:36.679 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 1/50, Train Loss: 0.03691841067414578, Val Loss: 0.03965695665494816 +2024-07-19 15:07:37.039 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 2/50, Train Loss: 0.03858288857218337, Val Loss: 0.040171995104567426 +2024-07-19 15:07:37.394 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 3/50, Train Loss: 0.04319456046166485, Val Loss: 0.03407213872147573 +2024-07-19 15:07:37.798 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 4/50, Train Loss: 0.04621623772872637, Val Loss: 0.0327195984286231 +2024-07-19 15:07:38.198 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 5/50, Train Loss: 0.04322377541293836, Val Loss: 0.03166458962132802 +2024-07-19 15:07:38.560 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 6/50, Train Loss: 0.04140656132710307, Val Loss: 0.031186714063625078 +2024-07-19 15:07:38.924 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 7/50, Train Loss: 0.039866092933775625, Val Loss: 0.030979045641583366 +2024-07-19 15:07:39.298 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 8/50, Train Loss: 0.03926853218103108, Val Loss: 0.030612823779921274 +2024-07-19 15:07:39.661 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 9/50, Train Loss: 0.038462128005411524, Val Loss: 0.030278474948293454 +2024-07-19 15:07:40.017 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 10/50, Train Loss: 0.03772029464375483, Val Loss: 0.029914286037957347 +2024-07-19 15:07:40.426 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 11/50, Train Loss: 0.03818209415735447, Val Loss: 0.030169345992239745 +2024-07-19 15:07:40.788 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 12/50, Train Loss: 0.0384114909764022, Val Loss: 0.030113593448658247 +2024-07-19 15:07:41.143 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 13/50, Train Loss: 0.037466859955289596, Val Loss: 0.029858266783727182 +2024-07-19 15:07:41.515 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 14/50, Train Loss: 0.037907563685758476, Val Loss: 0.03026368952280766 +2024-07-19 15:07:41.875 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 15/50, Train Loss: 0.03774497244660169, Val Loss: 0.0299373466420818 +2024-07-19 15:07:42.256 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 16/50, Train Loss: 0.03758526481177709, Val Loss: 0.02984210300083096 +2024-07-19 15:07:42.621 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 17/50, Train Loss: 0.037777811237802245, Val Loss: 0.030194996025513957 +2024-07-19 15:07:43.006 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 18/50, Train Loss: 0.03777669995308739, Val Loss: 0.029824583766025467 +2024-07-19 15:07:43.365 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 19/50, Train Loss: 0.03715394853218777, Val Loss: 0.02988868629610216 +2024-07-19 15:07:43.738 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 20/50, Train Loss: 0.03783857590225462, Val Loss: 0.029753003319775737 +2024-07-19 15:07:44.098 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 21/50, Train Loss: 0.03726623416559337, Val Loss: 0.030014032397318532 +2024-07-19 15:07:44.468 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 22/50, Train Loss: 0.03737833190148007, Val Loss: 0.029488900575686147 +2024-07-19 15:07:44.827 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 23/50, Train Loss: 0.037080843129182514, Val Loss: 0.030268647884194914 +2024-07-19 15:07:45.184 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 24/50, Train Loss: 0.03756886919679707, Val Loss: 0.029447719152714755 +2024-07-19 15:07:45.544 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 25/50, Train Loss: 0.03690172137360867, Val Loss: 0.029924464084812114 +2024-07-19 15:07:45.912 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 26/50, Train Loss: 0.037609904060420925, Val Loss: 0.029527792203668003 +2024-07-19 15:07:46.287 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 27/50, Train Loss: 0.03665734317204724, Val Loss: 0.029444642012586463 +2024-07-19 15:07:46.654 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 28/50, Train Loss: 0.03651971326605098, Val Loss: 0.029481898842228425 +2024-07-19 15:07:47.031 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 29/50, Train Loss: 0.0371395540359902, Val Loss: 0.02935918088297586 +2024-07-19 15:07:47.404 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 30/50, Train Loss: 0.03665558210484786, Val Loss: 0.029381788159544404 +2024-07-19 15:07:47.767 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 31/50, Train Loss: 0.03664250595316495, Val Loss: 0.029477007485724783 +2024-07-19 15:07:48.140 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 32/50, Train Loss: 0.036667506070169685, Val Loss: 0.02914847418464519 +2024-07-19 15:07:48.502 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 33/50, Train Loss: 0.03653246638913677, Val Loss: 0.02956532148291936 +2024-07-19 15:07:48.876 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 34/50, Train Loss: 0.03694799953229623, Val Loss: 0.029212542633349832 +2024-07-19 15:07:49.252 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 35/50, Train Loss: 0.036517594468920195, Val Loss: 0.029396216510920913 +2024-07-19 15:07:49.632 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 36/50, Train Loss: 0.03656588599391996, Val Loss: 0.029253443954764185 +2024-07-19 15:07:50.022 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 37/50, Train Loss: 0.03624129928138158, Val Loss: 0.028897492064012063 +2024-07-19 15:07:50.407 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 38/50, Train Loss: 0.036123789311067696, Val Loss: 0.028943878976074425 +2024-07-19 15:07:50.788 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 39/50, Train Loss: 0.03618693448705216, Val Loss: 0.02861131073252575 +2024-07-19 15:07:51.173 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 40/50, Train Loss: 0.036158784305396145, Val Loss: 0.02927373646682984 +2024-07-19 15:07:51.557 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 41/50, Train Loss: 0.036898419643714, Val Loss: 0.02933420245913235 +2024-07-19 15:07:51.971 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 42/50, Train Loss: 0.03635414740810656, Val Loss: 0.02900273463613278 +2024-07-19 15:07:52.375 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 43/50, Train Loss: 0.03629064166994944, Val Loss: 0.0290324656745872 +2024-07-19 15:07:52.772 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 44/50, Train Loss: 0.03623168581254678, Val Loss: 0.02902222444882264 +2024-07-19 15:07:53.135 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 45/50, Train Loss: 0.03605560940524487, Val Loss: 0.028783524257911218 +2024-07-19 15:07:53.563 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 46/50, Train Loss: 0.0360042160657579, Val Loss: 0.028742486006907514 +2024-07-19 15:07:54.012 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 47/50, Train Loss: 0.03596948240309546, Val Loss: 0.02850926450982287 +2024-07-19 15:07:54.429 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 48/50, Train Loss: 0.03619782491395735, Val Loss: 0.02907513263257774 +2024-07-19 15:07:54.835 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 49/50, Train Loss: 0.03591022303659622, Val Loss: 0.028768615243402688 +2024-07-19 15:07:55.246 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 50/50, Train Loss: 0.03594836786593476, Val Loss: 0.02866804846436591 +2024-07-19 15:07:55.247 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Fold 1, MAPE: 2.59% +2024-07-19 15:07:55.350 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_50001_100000_LSTM//train_f1_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-19 15:07:55.892 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 1/50, Train Loss: 0.03284657419743863, Val Loss: 0.026962225149209436 +2024-07-19 15:07:56.515 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 2/50, Train Loss: 0.03319052644073963, Val Loss: 0.02725166057211322 +2024-07-19 15:07:57.134 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 3/50, Train Loss: 0.033492202853614636, Val Loss: 0.02785103249590139 +2024-07-19 15:07:57.782 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 4/50, Train Loss: 0.03394023857333443, Val Loss: 0.028803946651719713 +2024-07-19 15:07:58.329 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 5/50, Train Loss: 0.03449669023129073, Val Loss: 0.028049901228498767 +2024-07-19 15:07:58.837 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 6/50, Train Loss: 0.03325154097242789, Val Loss: 0.027292471681092237 +2024-07-19 15:07:59.344 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 7/50, Train Loss: 0.03298386479304596, Val Loss: 0.02691302468647828 +2024-07-19 15:07:59.852 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 8/50, Train Loss: 0.032677863809195434, Val Loss: 0.026939499468819517 +2024-07-19 15:08:00.353 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 9/50, Train Loss: 0.03251879448917779, Val Loss: 0.02723120807393177 +2024-07-19 15:08:00.855 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 10/50, Train Loss: 0.03249187831851569, Val Loss: 0.027072894965877402 +2024-07-19 15:08:01.363 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 11/50, Train Loss: 0.03272138449617407, Val Loss: 0.027573701900404854 +2024-07-19 15:08:01.888 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 12/50, Train Loss: 0.03268267224458131, Val Loss: 0.027320606734704326 +2024-07-19 15:08:02.388 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 13/50, Train Loss: 0.03254770504480058, Val Loss: 0.027382628388098768 +2024-07-19 15:08:02.888 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 14/50, Train Loss: 0.03248326695439491, Val Loss: 0.02751048609010271 +2024-07-19 15:08:03.392 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 15/50, Train Loss: 0.03247955363582481, Val Loss: 0.027793610116114486 +2024-07-19 15:08:03.897 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 16/50, Train Loss: 0.03379338521679694, Val Loss: 0.028678540794833285 +2024-07-19 15:08:04.398 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 17/50, Train Loss: 0.03384105845947157, Val Loss: 0.02834725586345067 +2024-07-19 15:08:04.913 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 18/50, Train Loss: 0.03323688041418791, Val Loss: 0.0275260131000667 +2024-07-19 15:08:05.415 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 19/50, Train Loss: 0.032805321856655856, Val Loss: 0.02725411075595263 +2024-07-19 15:08:05.919 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 20/50, Train Loss: 0.03283616542308168, Val Loss: 0.027724323743903958 +2024-07-19 15:08:06.425 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 21/50, Train Loss: 0.03297987578606064, Val Loss: 0.027476239647414233 +2024-07-19 15:08:06.924 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 22/50, Train Loss: 0.0327053504911336, Val Loss: 0.027710098773241043 +2024-07-19 15:08:07.432 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 23/50, Train Loss: 0.03231213033537973, Val Loss: 0.02674155934034167 +2024-07-19 15:08:07.930 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 24/50, Train Loss: 0.03269786172631112, Val Loss: 0.02725680746339463 +2024-07-19 15:08:08.432 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 25/50, Train Loss: 0.032789245942099525, Val Loss: 0.027945296939563106 +2024-07-19 15:08:08.933 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 26/50, Train Loss: 0.032941222986714404, Val Loss: 0.02743089516219255 +2024-07-19 15:08:09.440 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 27/50, Train Loss: 0.032398582419211217, Val Loss: 0.027058065894085007 +2024-07-19 15:08:09.945 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 28/50, Train Loss: 0.03245893982662396, Val Loss: 0.027539115801856324 +2024-07-19 15:08:10.446 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 29/50, Train Loss: 0.03220607709478248, Val Loss: 0.026841242118058977 +2024-07-19 15:08:10.961 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 30/50, Train Loss: 0.03239655447277156, Val Loss: 0.027476858951755473 +2024-07-19 15:08:11.464 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 31/50, Train Loss: 0.03235514143651182, Val Loss: 0.026989137200084893 +2024-07-19 15:08:11.973 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 32/50, Train Loss: 0.0324674072929404, Val Loss: 0.027107016258948558 +2024-07-19 15:08:12.474 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 33/50, Train Loss: 0.032139169018376955, Val Loss: 0.026979818789137376 +2024-07-19 15:08:12.981 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 34/50, Train Loss: 0.032224813069809566, Val Loss: 0.026923665072064142 +2024-07-19 15:08:13.490 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 35/50, Train Loss: 0.032079896906560115, Val Loss: 0.02698343901618107 +2024-07-19 15:08:13.989 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 36/50, Train Loss: 0.032157680730928076, Val Loss: 0.0270770505775471 +2024-07-19 15:08:14.493 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 37/50, Train Loss: 0.03206351529806852, Val Loss: 0.026656729748120177 +2024-07-19 15:08:14.993 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 38/50, Train Loss: 0.03247079803523692, Val Loss: 0.02686392334667412 +2024-07-19 15:08:15.498 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 39/50, Train Loss: 0.03190780690109188, Val Loss: 0.02670071500580053 +2024-07-19 15:08:15.999 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 40/50, Train Loss: 0.032117162306200375, Val Loss: 0.02664681035723235 +2024-07-19 15:08:16.513 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 41/50, Train Loss: 0.03214940855448896, Val Loss: 0.026902963835242634 +2024-07-19 15:08:17.012 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 42/50, Train Loss: 0.03207944379272786, Val Loss: 0.02735171462031635 +2024-07-19 15:08:17.520 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 43/50, Train Loss: 0.03207829660651359, Val Loss: 0.026867992068464693 +2024-07-19 15:08:18.020 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 44/50, Train Loss: 0.032114232280714944, Val Loss: 0.027031073799809895 +2024-07-19 15:08:18.520 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 45/50, Train Loss: 0.03218822443688458, Val Loss: 0.027418308664818068 +2024-07-19 15:08:19.027 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 46/50, Train Loss: 0.03255900313908404, Val Loss: 0.027783909762227856 +2024-07-19 15:08:19.530 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 47/50, Train Loss: 0.033505328981713815, Val Loss: 0.027738534719557374 +2024-07-19 15:08:20.039 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 48/50, Train Loss: 0.03269326199184765, Val Loss: 0.027306135492147627 +2024-07-19 15:08:20.536 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 49/50, Train Loss: 0.032510936598886146, Val Loss: 0.027263404096703272 +2024-07-19 15:08:21.050 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 50/50, Train Loss: 0.03248160362920978, Val Loss: 0.02759102012055951 +2024-07-19 15:08:21.050 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Fold 2, MAPE: 2.72% +2024-07-19 15:08:21.151 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_50001_100000_LSTM//train_f2_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-19 15:08:21.827 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 1/50, Train Loss: 0.03143719473394425, Val Loss: 0.03325181721231422 +2024-07-19 15:08:22.525 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 2/50, Train Loss: 0.03141124073211869, Val Loss: 0.03264639652460008 +2024-07-19 15:08:23.215 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 3/50, Train Loss: 0.03118399558716441, Val Loss: 0.03275497610101829 +2024-07-19 15:08:23.877 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 4/50, Train Loss: 0.031056913738585497, Val Loss: 0.03263888835302881 +2024-07-19 15:08:24.526 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 5/50, Train Loss: 0.031052326464591776, Val Loss: 0.03288822570765341 +2024-07-19 15:08:25.172 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 6/50, Train Loss: 0.031022890394374933, Val Loss: 0.033459308733408515 +2024-07-19 15:08:25.826 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 7/50, Train Loss: 0.030926810526480414, Val Loss: 0.033248726228201714 +2024-07-19 15:08:26.479 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 8/50, Train Loss: 0.030922568607309908, Val Loss: 0.03336223612564641 +2024-07-19 15:08:27.147 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 9/50, Train Loss: 0.03094955439334863, Val Loss: 0.033638637311555246 +2024-07-19 15:08:27.830 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 10/50, Train Loss: 0.03088520048824075, Val Loss: 0.03364362899918814 +2024-07-19 15:08:28.504 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 11/50, Train Loss: 0.031008098274469376, Val Loss: 0.03279340977000224 +2024-07-19 15:08:29.180 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 12/50, Train Loss: 0.03088138082817401, Val Loss: 0.032836162460011406 +2024-07-19 15:08:29.853 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 13/50, Train Loss: 0.030725294813411692, Val Loss: 0.03356996772659791 +2024-07-19 15:08:30.574 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 14/50, Train Loss: 0.03083240937390556, Val Loss: 0.03310372932134448 +2024-07-19 15:08:31.263 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 15/50, Train Loss: 0.030876555429031588, Val Loss: 0.03306398143035334 +2024-07-19 15:08:31.966 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 16/50, Train Loss: 0.030815946729215858, Val Loss: 0.033493411047635854 +2024-07-19 15:08:32.635 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 17/50, Train Loss: 0.030785274245355227, Val Loss: 0.0331235607028813 +2024-07-19 15:08:33.304 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 18/50, Train Loss: 0.030667328428834267, Val Loss: 0.033277808965460676 +2024-07-19 15:08:33.986 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 19/50, Train Loss: 0.030588042016511094, Val Loss: 0.03349242434912437 +2024-07-19 15:08:34.659 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 20/50, Train Loss: 0.030898660395855773, Val Loss: 0.033911087726419036 +2024-07-19 15:08:35.328 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 21/50, Train Loss: 0.030854704292261437, Val Loss: 0.033362910403190435 +2024-07-19 15:08:36.015 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 22/50, Train Loss: 0.030864284067631583, Val Loss: 0.03325284071065284 +2024-07-19 15:08:36.688 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 23/50, Train Loss: 0.030634783705926105, Val Loss: 0.03316149850552146 +2024-07-19 15:08:37.357 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 24/50, Train Loss: 0.030682338758894843, Val Loss: 0.033662087560908216 +2024-07-19 15:08:38.028 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 25/50, Train Loss: 0.030756638768090778, Val Loss: 0.03355310444493551 +2024-07-19 15:08:38.692 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 26/50, Train Loss: 0.03076883587884168, Val Loss: 0.0338616246810636 +2024-07-19 15:08:39.366 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 27/50, Train Loss: 0.030680379970637085, Val Loss: 0.03376196732593549 +2024-07-19 15:08:40.048 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 28/50, Train Loss: 0.03053968994278614, Val Loss: 0.0338327358602672 +2024-07-19 15:08:40.721 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 29/50, Train Loss: 0.03051279486501462, Val Loss: 0.033848778218836396 +2024-07-19 15:08:41.411 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 30/50, Train Loss: 0.03062904539377722, Val Loss: 0.03362319990992546 +2024-07-19 15:08:42.093 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 31/50, Train Loss: 0.030384240238225623, Val Loss: 0.033124699030776285 +2024-07-19 15:08:42.766 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 32/50, Train Loss: 0.03039158790129913, Val Loss: 0.03376814556887021 +2024-07-19 15:08:43.433 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 33/50, Train Loss: 0.030225026842257748, Val Loss: 0.033511999742807566 +2024-07-19 15:08:44.106 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 34/50, Train Loss: 0.03031433705393582, Val Loss: 0.034048809191665134 +2024-07-19 15:08:44.810 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 35/50, Train Loss: 0.030204135171864946, Val Loss: 0.033645546265147826 +2024-07-19 15:08:45.469 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 36/50, Train Loss: 0.030288311155283288, Val Loss: 0.03347506469770058 +2024-07-19 15:08:46.145 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 37/50, Train Loss: 0.030116484168763846, Val Loss: 0.033819376969256916 +2024-07-19 15:08:46.811 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 38/50, Train Loss: 0.03018917647279697, Val Loss: 0.03408045648924402 +2024-07-19 15:08:47.482 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 39/50, Train Loss: 0.030269162002185435, Val Loss: 0.03455443272518145 +2024-07-19 15:08:48.158 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 40/50, Train Loss: 0.030154332186873644, Val Loss: 0.03453944482513376 +2024-07-19 15:08:48.829 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 41/50, Train Loss: 0.030144967406681957, Val Loss: 0.03442783089908394 +2024-07-19 15:08:49.508 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 42/50, Train Loss: 0.030163660313780993, Val Loss: 0.03365449672816573 +2024-07-19 15:08:50.190 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 43/50, Train Loss: 0.030053700333180493, Val Loss: 0.03411884626021256 +2024-07-19 15:08:50.866 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 44/50, Train Loss: 0.030257333542079958, Val Loss: 0.03322340608448596 +2024-07-19 15:08:51.577 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 45/50, Train Loss: 0.02978156415158755, Val Loss: 0.03418839586949026 +2024-07-19 15:08:52.264 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 46/50, Train Loss: 0.030096869201284564, Val Loss: 0.03353581990341883 +2024-07-19 15:08:52.943 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 47/50, Train Loss: 0.03010225538419534, Val Loss: 0.033397554092713305 +2024-07-19 15:08:53.599 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 48/50, Train Loss: 0.03009593272454118, Val Loss: 0.03317842194558801 +2024-07-19 15:08:54.265 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 49/50, Train Loss: 0.029913274418205432, Val Loss: 0.032902567722910156 +2024-07-19 15:08:54.927 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 50/50, Train Loss: 0.029875071681015296, Val Loss: 0.033104389100461394 +2024-07-19 15:08:54.928 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Fold 3, MAPE: 3.04% +2024-07-19 15:08:55.027 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_50001_100000_LSTM//train_f3_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-19 15:08:55.833 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 1/50, Train Loss: 0.030065400541279014, Val Loss: 0.041756289734228236 +2024-07-19 15:08:56.676 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 2/50, Train Loss: 0.029463400383694813, Val Loss: 0.04309492658924412 +2024-07-19 15:08:57.508 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 3/50, Train Loss: 0.029696096492173907, Val Loss: 0.04494181637828414 +2024-07-19 15:08:58.336 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 4/50, Train Loss: 0.029684728973514433, Val Loss: 0.04671531825049503 +2024-07-19 15:08:59.174 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 5/50, Train Loss: 0.029769239102868914, Val Loss: 0.049228780273650144 +2024-07-19 15:09:00.001 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 6/50, Train Loss: 0.02984181845274109, Val Loss: 0.04747025779372937 +2024-07-19 15:09:00.845 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 7/50, Train Loss: 0.029819623515992374, Val Loss: 0.04813301412237657 +2024-07-19 15:09:01.740 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 8/50, Train Loss: 0.029876574976267396, Val Loss: 0.04631947816626446 +2024-07-19 15:09:02.605 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 9/50, Train Loss: 0.029787088539656045, Val Loss: 0.04661983100546373 +2024-07-19 15:09:03.425 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 10/50, Train Loss: 0.029840404618081157, Val Loss: 0.041625653016003406 +2024-07-19 15:09:04.262 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 11/50, Train Loss: 0.029527508121516024, Val Loss: 0.0449652313380628 +2024-07-19 15:09:05.095 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 12/50, Train Loss: 0.029486024051208745, Val Loss: 0.0397438297702654 +2024-07-19 15:09:05.923 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 13/50, Train Loss: 0.029411714247704206, Val Loss: 0.04358296876622213 +2024-07-19 15:09:06.748 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 14/50, Train Loss: 0.029357634955546358, Val Loss: 0.04119713473561648 +2024-07-19 15:09:07.576 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 15/50, Train Loss: 0.02938381040079908, Val Loss: 0.04185626237980417 +2024-07-19 15:09:08.414 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 16/50, Train Loss: 0.02940556095851647, Val Loss: 0.041051585781010425 +2024-07-19 15:09:09.253 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 17/50, Train Loss: 0.029397498539925276, Val Loss: 0.0438032744301332 +2024-07-19 15:09:10.088 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 18/50, Train Loss: 0.02930669509549881, Val Loss: 0.03881567132634085 +2024-07-19 15:09:10.925 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 19/50, Train Loss: 0.02922665622023927, Val Loss: 0.041825865621905066 +2024-07-19 15:09:11.777 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 20/50, Train Loss: 0.02931192871899559, Val Loss: 0.04026881132174183 +2024-07-19 15:09:12.604 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 21/50, Train Loss: 0.029067123319012123, Val Loss: 0.03932534767365133 +2024-07-19 15:09:13.448 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 22/50, Train Loss: 0.02917080069124535, Val Loss: 0.0414111273916992 +2024-07-19 15:09:14.279 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 23/50, Train Loss: 0.02918580048052328, Val Loss: 0.0374753057856012 +2024-07-19 15:09:15.108 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 24/50, Train Loss: 0.029192409703282865, Val Loss: 0.04317062801203212 +2024-07-19 15:09:15.937 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 25/50, Train Loss: 0.029179408834162323, Val Loss: 0.04006489683446046 +2024-07-19 15:09:16.772 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 26/50, Train Loss: 0.02917934877920773, Val Loss: 0.043181130813585746 +2024-07-19 15:09:17.572 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 27/50, Train Loss: 0.029163486221907557, Val Loss: 0.04314817115664482 +2024-07-19 15:09:18.376 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 28/50, Train Loss: 0.029116089542775034, Val Loss: 0.039087463975758165 +2024-07-19 15:09:19.179 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 29/50, Train Loss: 0.02897516094598469, Val Loss: 0.03962500745782981 +2024-07-19 15:09:19.981 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 30/50, Train Loss: 0.028971569290241368, Val Loss: 0.0383226953044131 +2024-07-19 15:09:20.784 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 31/50, Train Loss: 0.02892070619266603, Val Loss: 0.036943493864020786 +2024-07-19 15:09:21.607 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 32/50, Train Loss: 0.029043317905494144, Val Loss: 0.04008657006999931 +2024-07-19 15:09:22.421 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 33/50, Train Loss: 0.02902827032708696, Val Loss: 0.0369392587627108 +2024-07-19 15:09:23.225 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 34/50, Train Loss: 0.028924308850296905, Val Loss: 0.0381389702292713 +2024-07-19 15:09:24.054 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 35/50, Train Loss: 0.028894581059300966, Val Loss: 0.037027892077694066 +2024-07-19 15:09:24.875 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 36/50, Train Loss: 0.028907178558286402, Val Loss: 0.03805289830307703 +2024-07-19 15:09:25.702 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 37/50, Train Loss: 0.028870226641359565, Val Loss: 0.03770607991798504 +2024-07-19 15:09:26.550 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 38/50, Train Loss: 0.028746044790310846, Val Loss: 0.035673930083174966 +2024-07-19 15:09:27.378 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 39/50, Train Loss: 0.028798783970689707, Val Loss: 0.036790621995523166 +2024-07-19 15:09:28.208 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 40/50, Train Loss: 0.028687764516939503, Val Loss: 0.036270944854697666 +2024-07-19 15:09:29.049 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 41/50, Train Loss: 0.02876419936317009, Val Loss: 0.03828186305189455 +2024-07-19 15:09:29.871 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 42/50, Train Loss: 0.02872197841202001, Val Loss: 0.03571414177280825 +2024-07-19 15:09:30.689 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 43/50, Train Loss: 0.028685245703864885, Val Loss: 0.03503877055403348 +2024-07-19 15:09:31.537 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 44/50, Train Loss: 0.02861067196251927, Val Loss: 0.03425022743239596 +2024-07-19 15:09:32.391 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 45/50, Train Loss: 0.02867555620844711, Val Loss: 0.03782854974269867 +2024-07-19 15:09:33.225 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 46/50, Train Loss: 0.02851995676858248, Val Loss: 0.03629346212019791 +2024-07-19 15:09:34.061 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 47/50, Train Loss: 0.02872170727433903, Val Loss: 0.03671510628349072 +2024-07-19 15:09:34.892 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 48/50, Train Loss: 0.028647470600125225, Val Loss: 0.03591037496320299 +2024-07-19 15:09:35.720 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 49/50, Train Loss: 0.028668901755136776, Val Loss: 0.037055213809818834 +2024-07-19 15:09:36.559 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 50/50, Train Loss: 0.028548789410186664, Val Loss: 0.03678788979713981 +2024-07-19 15:09:36.559 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Fold 4, MAPE: 3.05% +2024-07-19 15:09:36.668 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_50001_100000_LSTM//train_f4_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-19 15:09:41.222 [21/cross_validate_train/257 (pid 11931)] Task finished successfully. +2024-07-19 15:09:41.247 [21/model_scores/258 (pid 12521)] Task is starting. +2024-07-19 15:09:42.839 [21/model_scores/258 (pid 12521)] INFO:__main__:Average Train Loss across all folds: 0.0330386360380205 +2024-07-19 15:09:47.118 [21/model_scores/258 (pid 12521)] INFO:__main__:Average Validation Loss across all folds: 0.03363107817398535 +2024-07-19 15:09:47.119 [21/model_scores/258 (pid 12521)] INFO:__main__:Average MAPE across all folds: 2.92% +2024-07-19 15:09:47.120 [21/model_scores/258 (pid 12521)] Task finished successfully. +2024-07-19 15:09:47.153 [21/validate_model/259 (pid 12569)] Task is starting. +2024-07-19 15:09:48.670 [21/validate_model/259 (pid 12569)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 15:09:48.875 [21/validate_model/259 (pid 12569)] INFO:__main__:Test Set MAPE: 3.95% +2024-07-19 15:09:49.294 [21/validate_model/259 (pid 12569)] INFO:__main__:Test image saved at metaflow_models//bgd_lodging_residential_50001_100000_LSTM//test_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-19 15:09:49.809 [21/validate_model/259 (pid 12569)] Task finished successfully. +2024-07-19 15:09:49.853 [21/log_model/260 (pid 12589)] Task is starting. +2024-07-19 15:09:51.427 [21/log_model/260 (pid 12589)] INFO:__main__:Logging model bgd_lodging_residential_50001_100000_LSTM +2024-07-19 15:09:51.428 [21/log_model/260 (pid 12589)] INFO:__main__:Model logged at metaflow_models//bgd_lodging_residential_50001_100000_LSTM//bgd_lodging_residential_50001_100000_LSTM.pth +2024-07-19 15:09:55.679 [21/log_model/260 (pid 12589)] Task finished successfully. +2024-07-19 15:09:55.706 [21/end/261 (pid 12629)] Task is starting. +2024-07-19 15:09:57.242 [21/end/261 (pid 12629)] INFO:__main__:Pipeline end. +2024-07-19 15:09:57.564 [21/end/261 (pid 12629)] Task finished successfully. +2024-07-19 15:09:57.564 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/21') succeeded: +-- stdout -- +2024-07-19 15:06:55.318 Workflow starting (run-id 21): +2024-07-19 15:06:55.396 [21/start/249 (pid 11752)] Task is starting. +2024-07-19 15:06:57.050 [21/start/249 (pid 11752)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 15:06:57.381 [21/start/249 (pid 11752)] Task finished successfully. +2024-07-19 15:06:57.417 [21/ingest/250 (pid 11763)] Task is starting. +2024-07-19 15:06:58.990 [21/ingest/250 (pid 11763)] INFO:__main__:Fetching dataframe.. +2024-07-19 15:06:59.015 [21/ingest/250 (pid 11763)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 15:07:03.102 [21/ingest/250 (pid 11763)] Task finished successfully. +2024-07-19 15:07:03.131 [21/pick_2017_data/251 (pid 11803)] Task is starting. +2024-07-19 15:07:04.636 [21/pick_2017_data/251 (pid 11803)] INFO:__main__:Picking 2017 data.. +2024-07-19 15:07:05.005 [21/pick_2017_data/251 (pid 11803)] Task finished successfully. +2024-07-19 15:07:05.037 [21/fill_missing_data/252 (pid 11820)] Task is starting. +2024-07-19 15:07:06.519 [21/fill_missing_data/252 (pid 11820)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] INFO:__main__:NaN counts per column: +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] INFO:__main__:Panther_lodging_Edison 11 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Awilda 12 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Gale 11 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Cornelia 11 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Alita 11 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Sonja 12 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Kaitlin 12 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Edmond 11 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Panther_lodging_Tracie 11 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Robin_lodging_Celia 0 +2024-07-19 15:07:06.530 [21/fill_missing_data/252 (pid 11820)] Fox_lodging_Wallace 1 +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] Fox_lodging_Alana 1 +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] Fox_lodging_Winifred 1 +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] Bear_lodging_Erick 38 +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] Cockatoo_lodging_Raphael 113 +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] Cockatoo_lodging_Josephine 121 +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] dtype: int64 +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] --- Logging error --- +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] Traceback (most recent call last): +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] msg = self.format(record) +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] return fmt.format(record) +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] record.message = record.getMessage() +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] msg = msg % self.args +2024-07-19 15:07:06.531 [21/fill_missing_data/252 (pid 11820)] TypeError: not all arguments converted during string formatting +2024-07-19 15:07:06.533 [21/fill_missing_data/252 (pid 11820)] Call stack: +2024-07-19 15:07:06.533 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] BGD_LinearFlow() +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] cli.main(self) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] return func(*args, **kwargs) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] return self.main(*args, **kwargs) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] rv = self.invoke(ctx) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] return callback(*args, **kwargs) +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 15:07:07.113 [21/fill_missing_data/252 (pid 11820)] return f(get_current_context(), *args, **kwargs) +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] task.run_step( +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] self._exec_step_function(step_func) +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] step_function() +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] self.missing_values = find_nan_counts(self.df) +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 15:07:07.114 [21/fill_missing_data/252 (pid 11820)] Arguments: (377,) +2024-07-19 15:07:07.115 [21/fill_missing_data/252 (pid 11820)] Task finished successfully. +2024-07-19 15:07:07.149 [21/find_median/253 (pid 11831)] Task is starting. +2024-07-19 15:07:08.649 [21/find_median/253 (pid 11831)] INFO:__main__:Computing and using median.. +2024-07-19 15:07:09.237 [21/find_median/253 (pid 11831)] Task finished successfully. +2024-07-19 15:07:09.273 [21/aggregate_data/254 (pid 11844)] Task is starting. +2024-07-19 15:07:10.821 [21/aggregate_data/254 (pid 11844)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 15:07:14.790 [21/aggregate_data/254 (pid 11844)] Task finished successfully. +2024-07-19 15:07:14.825 [21/split_data/255 (pid 11882)] Task is starting. +2024-07-19 15:07:16.321 [21/split_data/255 (pid 11882)] INFO:__main__:Splitting data into test and train... +2024-07-19 15:07:20.262 [21/split_data/255 (pid 11882)] Task finished successfully. +2024-07-19 15:07:20.292 [21/make_x_y/256 (pid 11920)] Task is starting. +2024-07-19 15:07:22.198 [21/make_x_y/256 (pid 11920)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 15:07:22.529 [21/make_x_y/256 (pid 11920)] Shape of y_train: (6978, 1) +2024-07-19 15:07:22.529 [21/make_x_y/256 (pid 11920)] Shape of X_test: (1722, 30, 1) +2024-07-19 15:07:22.529 [21/make_x_y/256 (pid 11920)] Shape of y_test: (1722, 1) +2024-07-19 15:07:22.530 [21/make_x_y/256 (pid 11920)] Task finished successfully. +2024-07-19 15:07:22.564 [21/cross_validate_train/257 (pid 11931)] Task is starting. +2024-07-19 15:07:24.081 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Creating bgd_lodging_residential_50001_100000_LSTM +2024-07-19 15:07:24.082 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Performing cross validation.. +2024-07-19 15:07:24.874 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 1/50, Train Loss: 0.23172284400946386, Val Loss: 0.13723267695388278 +2024-07-19 15:07:25.079 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 2/50, Train Loss: 0.1770363655444738, Val Loss: 0.13293678112126686 +2024-07-19 15:07:25.323 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 3/50, Train Loss: 0.1694473040265006, Val Loss: 0.1264794829326707 +2024-07-19 15:07:25.558 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 4/50, Train Loss: 0.1574935005927408, Val Loss: 0.11758632676021473 +2024-07-19 15:07:25.784 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 5/50, Train Loss: 0.14805388893630053, Val Loss: 0.11040457297821303 +2024-07-19 15:07:26.010 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 6/50, Train Loss: 0.13625720505778854, Val Loss: 0.09715872358631443 +2024-07-19 15:07:26.228 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 7/50, Train Loss: 0.11694260384585406, Val Loss: 0.07272799947374575 +2024-07-19 15:07:26.443 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 8/50, Train Loss: 0.102768039985283, Val Loss: 0.06577321715854309 +2024-07-19 15:07:26.658 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 9/50, Train Loss: 0.09387700118728586, Val Loss: 0.06222181918250548 +2024-07-19 15:07:26.875 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 10/50, Train Loss: 0.08451076737932257, Val Loss: 0.059790784241379916 +2024-07-19 15:07:27.089 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 11/50, Train Loss: 0.07841297057834831, Val Loss: 0.060603358354922886 +2024-07-19 15:07:27.296 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 12/50, Train Loss: 0.07517865320315233, Val Loss: 0.059959271368948186 +2024-07-19 15:07:27.505 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 13/50, Train Loss: 0.06772615196737083, Val Loss: 0.057523332838271116 +2024-07-19 15:07:27.729 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 14/50, Train Loss: 0.06302648792798454, Val Loss: 0.0560025710713219 +2024-07-19 15:07:27.954 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 15/50, Train Loss: 0.06045486999524606, Val Loss: 0.05512172034060633 +2024-07-19 15:07:28.176 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 16/50, Train Loss: 0.05713765715827813, Val Loss: 0.05488860748104147 +2024-07-19 15:07:28.388 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 17/50, Train Loss: 0.05417719916314692, Val Loss: 0.0538550438107671 +2024-07-19 15:07:28.601 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 18/50, Train Loss: 0.05223381841504896, Val Loss: 0.05312795645079097 +2024-07-19 15:07:28.814 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 19/50, Train Loss: 0.050447822875670484, Val Loss: 0.0520397298843474 +2024-07-19 15:07:29.035 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 20/50, Train Loss: 0.0493064646080539, Val Loss: 0.05115149975628466 +2024-07-19 15:07:29.261 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 21/50, Train Loss: 0.04845370609011199, Val Loss: 0.05065879507644756 +2024-07-19 15:07:29.496 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 22/50, Train Loss: 0.04748700282259567, Val Loss: 0.04976483877446201 +2024-07-19 15:07:29.722 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 23/50, Train Loss: 0.04557695355568383, Val Loss: 0.048067611868719794 +2024-07-19 15:07:29.947 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 24/50, Train Loss: 0.04494652710855007, Val Loss: 0.048174130050717176 +2024-07-19 15:07:30.182 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 25/50, Train Loss: 0.04634863435215241, Val Loss: 0.049680528709211864 +2024-07-19 15:07:30.437 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 26/50, Train Loss: 0.04607764933560345, Val Loss: 0.0468242342609006 +2024-07-19 15:07:30.691 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 27/50, Train Loss: 0.043991595003250485, Val Loss: 0.045925209953172785 +2024-07-19 15:07:30.934 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 28/50, Train Loss: 0.04403570228935899, Val Loss: 0.047522489384219456 +2024-07-19 15:07:31.161 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 29/50, Train Loss: 0.04266033190730456, Val Loss: 0.04599029963483681 +2024-07-19 15:07:31.392 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 30/50, Train Loss: 0.042594226228224265, Val Loss: 0.04561603562654676 +2024-07-19 15:07:31.628 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 31/50, Train Loss: 0.042963690904749406, Val Loss: 0.04809575840025335 +2024-07-19 15:07:31.861 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 32/50, Train Loss: 0.04171066288207028, Val Loss: 0.046062791216615086 +2024-07-19 15:07:32.107 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 33/50, Train Loss: 0.04133397954944018, Val Loss: 0.04460161274953468 +2024-07-19 15:07:32.332 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 34/50, Train Loss: 0.041339120349368534, Val Loss: 0.047837845578386974 +2024-07-19 15:07:32.554 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 35/50, Train Loss: 0.04035055274898942, Val Loss: 0.04420940336343404 +2024-07-19 15:07:32.772 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 36/50, Train Loss: 0.04154724532083885, Val Loss: 0.04544108632851292 +2024-07-19 15:07:32.992 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 37/50, Train Loss: 0.042086077703012, Val Loss: 0.045099059069478836 +2024-07-19 15:07:33.225 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 38/50, Train Loss: 0.04046610345107478, Val Loss: 0.044838043684894975 +2024-07-19 15:07:33.444 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 39/50, Train Loss: 0.040111112232143815, Val Loss: 0.04460942684798627 +2024-07-19 15:07:33.661 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 40/50, Train Loss: 0.04005925015017793, Val Loss: 0.046205616984012966 +2024-07-19 15:07:33.887 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 41/50, Train Loss: 0.039297943632747676, Val Loss: 0.04348769899759743 +2024-07-19 15:07:34.104 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 42/50, Train Loss: 0.04027998261153698, Val Loss: 0.043889932737157154 +2024-07-19 15:07:34.324 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 43/50, Train Loss: 0.04030377332221817, Val Loss: 0.042980366915061664 +2024-07-19 15:07:34.538 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 44/50, Train Loss: 0.03923941720780488, Val Loss: 0.04426667300631871 +2024-07-19 15:07:34.755 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 45/50, Train Loss: 0.04099750196611559, Val Loss: 0.04576913861406816 +2024-07-19 15:07:34.971 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 46/50, Train Loss: 0.03905187657958752, Val Loss: 0.04299506041649226 +2024-07-19 15:07:35.187 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 47/50, Train Loss: 0.038572238405814044, Val Loss: 0.04303382095452901 +2024-07-19 15:07:35.405 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 48/50, Train Loss: 0.03835057376607044, Val Loss: 0.04297692650878752 +2024-07-19 15:07:35.621 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 49/50, Train Loss: 0.03842062241322285, Val Loss: 0.042833202140959536 +2024-07-19 15:07:35.853 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 50/50, Train Loss: 0.03833934760375603, Val Loss: 0.04200404338740014 +2024-07-19 15:07:35.854 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Fold 0, MAPE: 3.21% +2024-07-19 15:07:36.233 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_50001_100000_LSTM//train_f0_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-19 15:07:36.679 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 1/50, Train Loss: 0.03691841067414578, Val Loss: 0.03965695665494816 +2024-07-19 15:07:37.039 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 2/50, Train Loss: 0.03858288857218337, Val Loss: 0.040171995104567426 +2024-07-19 15:07:37.394 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 3/50, Train Loss: 0.04319456046166485, Val Loss: 0.03407213872147573 +2024-07-19 15:07:37.798 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 4/50, Train Loss: 0.04621623772872637, Val Loss: 0.0327195984286231 +2024-07-19 15:07:38.198 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 5/50, Train Loss: 0.04322377541293836, Val Loss: 0.03166458962132802 +2024-07-19 15:07:38.560 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 6/50, Train Loss: 0.04140656132710307, Val Loss: 0.031186714063625078 +2024-07-19 15:07:38.924 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 7/50, Train Loss: 0.039866092933775625, Val Loss: 0.030979045641583366 +2024-07-19 15:07:39.298 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 8/50, Train Loss: 0.03926853218103108, Val Loss: 0.030612823779921274 +2024-07-19 15:07:39.661 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 9/50, Train Loss: 0.038462128005411524, Val Loss: 0.030278474948293454 +2024-07-19 15:07:40.017 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 10/50, Train Loss: 0.03772029464375483, Val Loss: 0.029914286037957347 +2024-07-19 15:07:40.426 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 11/50, Train Loss: 0.03818209415735447, Val Loss: 0.030169345992239745 +2024-07-19 15:07:40.788 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 12/50, Train Loss: 0.0384114909764022, Val Loss: 0.030113593448658247 +2024-07-19 15:07:41.143 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 13/50, Train Loss: 0.037466859955289596, Val Loss: 0.029858266783727182 +2024-07-19 15:07:41.515 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 14/50, Train Loss: 0.037907563685758476, Val Loss: 0.03026368952280766 +2024-07-19 15:07:41.875 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 15/50, Train Loss: 0.03774497244660169, Val Loss: 0.0299373466420818 +2024-07-19 15:07:42.256 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 16/50, Train Loss: 0.03758526481177709, Val Loss: 0.02984210300083096 +2024-07-19 15:07:42.621 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 17/50, Train Loss: 0.037777811237802245, Val Loss: 0.030194996025513957 +2024-07-19 15:07:43.006 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 18/50, Train Loss: 0.03777669995308739, Val Loss: 0.029824583766025467 +2024-07-19 15:07:43.365 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 19/50, Train Loss: 0.03715394853218777, Val Loss: 0.02988868629610216 +2024-07-19 15:07:43.738 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 20/50, Train Loss: 0.03783857590225462, Val Loss: 0.029753003319775737 +2024-07-19 15:07:44.098 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 21/50, Train Loss: 0.03726623416559337, Val Loss: 0.030014032397318532 +2024-07-19 15:07:44.468 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 22/50, Train Loss: 0.03737833190148007, Val Loss: 0.029488900575686147 +2024-07-19 15:07:44.827 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 23/50, Train Loss: 0.037080843129182514, Val Loss: 0.030268647884194914 +2024-07-19 15:07:45.184 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 24/50, Train Loss: 0.03756886919679707, Val Loss: 0.029447719152714755 +2024-07-19 15:07:45.544 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 25/50, Train Loss: 0.03690172137360867, Val Loss: 0.029924464084812114 +2024-07-19 15:07:45.912 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 26/50, Train Loss: 0.037609904060420925, Val Loss: 0.029527792203668003 +2024-07-19 15:07:46.287 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 27/50, Train Loss: 0.03665734317204724, Val Loss: 0.029444642012586463 +2024-07-19 15:07:46.654 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 28/50, Train Loss: 0.03651971326605098, Val Loss: 0.029481898842228425 +2024-07-19 15:07:47.031 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 29/50, Train Loss: 0.0371395540359902, Val Loss: 0.02935918088297586 +2024-07-19 15:07:47.404 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 30/50, Train Loss: 0.03665558210484786, Val Loss: 0.029381788159544404 +2024-07-19 15:07:47.767 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 31/50, Train Loss: 0.03664250595316495, Val Loss: 0.029477007485724783 +2024-07-19 15:07:48.140 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 32/50, Train Loss: 0.036667506070169685, Val Loss: 0.02914847418464519 +2024-07-19 15:07:48.502 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 33/50, Train Loss: 0.03653246638913677, Val Loss: 0.02956532148291936 +2024-07-19 15:07:48.876 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 34/50, Train Loss: 0.03694799953229623, Val Loss: 0.029212542633349832 +2024-07-19 15:07:49.252 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 35/50, Train Loss: 0.036517594468920195, Val Loss: 0.029396216510920913 +2024-07-19 15:07:49.632 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 36/50, Train Loss: 0.03656588599391996, Val Loss: 0.029253443954764185 +2024-07-19 15:07:50.022 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 37/50, Train Loss: 0.03624129928138158, Val Loss: 0.028897492064012063 +2024-07-19 15:07:50.407 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 38/50, Train Loss: 0.036123789311067696, Val Loss: 0.028943878976074425 +2024-07-19 15:07:50.788 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 39/50, Train Loss: 0.03618693448705216, Val Loss: 0.02861131073252575 +2024-07-19 15:07:51.173 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 40/50, Train Loss: 0.036158784305396145, Val Loss: 0.02927373646682984 +2024-07-19 15:07:51.557 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 41/50, Train Loss: 0.036898419643714, Val Loss: 0.02933420245913235 +2024-07-19 15:07:51.971 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 42/50, Train Loss: 0.03635414740810656, Val Loss: 0.02900273463613278 +2024-07-19 15:07:52.375 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 43/50, Train Loss: 0.03629064166994944, Val Loss: 0.0290324656745872 +2024-07-19 15:07:52.772 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 44/50, Train Loss: 0.03623168581254678, Val Loss: 0.02902222444882264 +2024-07-19 15:07:53.135 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 45/50, Train Loss: 0.03605560940524487, Val Loss: 0.028783524257911218 +2024-07-19 15:07:53.563 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 46/50, Train Loss: 0.0360042160657579, Val Loss: 0.028742486006907514 +2024-07-19 15:07:54.012 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 47/50, Train Loss: 0.03596948240309546, Val Loss: 0.02850926450982287 +2024-07-19 15:07:54.429 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 48/50, Train Loss: 0.03619782491395735, Val Loss: 0.02907513263257774 +2024-07-19 15:07:54.835 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 49/50, Train Loss: 0.03591022303659622, Val Loss: 0.028768615243402688 +2024-07-19 15:07:55.246 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 50/50, Train Loss: 0.03594836786593476, Val Loss: 0.02866804846436591 +2024-07-19 15:07:55.247 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Fold 1, MAPE: 2.59% +2024-07-19 15:07:55.350 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_50001_100000_LSTM//train_f1_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-19 15:07:55.892 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 1/50, Train Loss: 0.03284657419743863, Val Loss: 0.026962225149209436 +2024-07-19 15:07:56.515 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 2/50, Train Loss: 0.03319052644073963, Val Loss: 0.02725166057211322 +2024-07-19 15:07:57.134 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 3/50, Train Loss: 0.033492202853614636, Val Loss: 0.02785103249590139 +2024-07-19 15:07:57.782 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 4/50, Train Loss: 0.03394023857333443, Val Loss: 0.028803946651719713 +2024-07-19 15:07:58.329 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 5/50, Train Loss: 0.03449669023129073, Val Loss: 0.028049901228498767 +2024-07-19 15:07:58.837 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 6/50, Train Loss: 0.03325154097242789, Val Loss: 0.027292471681092237 +2024-07-19 15:07:59.344 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 7/50, Train Loss: 0.03298386479304596, Val Loss: 0.02691302468647828 +2024-07-19 15:07:59.852 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 8/50, Train Loss: 0.032677863809195434, Val Loss: 0.026939499468819517 +2024-07-19 15:08:00.353 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 9/50, Train Loss: 0.03251879448917779, Val Loss: 0.02723120807393177 +2024-07-19 15:08:00.855 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 10/50, Train Loss: 0.03249187831851569, Val Loss: 0.027072894965877402 +2024-07-19 15:08:01.363 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 11/50, Train Loss: 0.03272138449617407, Val Loss: 0.027573701900404854 +2024-07-19 15:08:01.888 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 12/50, Train Loss: 0.03268267224458131, Val Loss: 0.027320606734704326 +2024-07-19 15:08:02.388 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 13/50, Train Loss: 0.03254770504480058, Val Loss: 0.027382628388098768 +2024-07-19 15:08:02.888 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 14/50, Train Loss: 0.03248326695439491, Val Loss: 0.02751048609010271 +2024-07-19 15:08:03.392 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 15/50, Train Loss: 0.03247955363582481, Val Loss: 0.027793610116114486 +2024-07-19 15:08:03.897 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 16/50, Train Loss: 0.03379338521679694, Val Loss: 0.028678540794833285 +2024-07-19 15:08:04.398 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 17/50, Train Loss: 0.03384105845947157, Val Loss: 0.02834725586345067 +2024-07-19 15:08:04.913 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 18/50, Train Loss: 0.03323688041418791, Val Loss: 0.0275260131000667 +2024-07-19 15:08:05.415 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 19/50, Train Loss: 0.032805321856655856, Val Loss: 0.02725411075595263 +2024-07-19 15:08:05.919 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 20/50, Train Loss: 0.03283616542308168, Val Loss: 0.027724323743903958 +2024-07-19 15:08:06.425 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 21/50, Train Loss: 0.03297987578606064, Val Loss: 0.027476239647414233 +2024-07-19 15:08:06.924 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 22/50, Train Loss: 0.0327053504911336, Val Loss: 0.027710098773241043 +2024-07-19 15:08:07.432 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 23/50, Train Loss: 0.03231213033537973, Val Loss: 0.02674155934034167 +2024-07-19 15:08:07.930 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 24/50, Train Loss: 0.03269786172631112, Val Loss: 0.02725680746339463 +2024-07-19 15:08:08.432 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 25/50, Train Loss: 0.032789245942099525, Val Loss: 0.027945296939563106 +2024-07-19 15:08:08.933 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 26/50, Train Loss: 0.032941222986714404, Val Loss: 0.02743089516219255 +2024-07-19 15:08:09.440 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 27/50, Train Loss: 0.032398582419211217, Val Loss: 0.027058065894085007 +2024-07-19 15:08:09.945 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 28/50, Train Loss: 0.03245893982662396, Val Loss: 0.027539115801856324 +2024-07-19 15:08:10.446 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 29/50, Train Loss: 0.03220607709478248, Val Loss: 0.026841242118058977 +2024-07-19 15:08:10.961 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 30/50, Train Loss: 0.03239655447277156, Val Loss: 0.027476858951755473 +2024-07-19 15:08:11.464 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 31/50, Train Loss: 0.03235514143651182, Val Loss: 0.026989137200084893 +2024-07-19 15:08:11.973 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 32/50, Train Loss: 0.0324674072929404, Val Loss: 0.027107016258948558 +2024-07-19 15:08:12.474 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 33/50, Train Loss: 0.032139169018376955, Val Loss: 0.026979818789137376 +2024-07-19 15:08:12.981 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 34/50, Train Loss: 0.032224813069809566, Val Loss: 0.026923665072064142 +2024-07-19 15:08:13.490 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 35/50, Train Loss: 0.032079896906560115, Val Loss: 0.02698343901618107 +2024-07-19 15:08:13.989 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 36/50, Train Loss: 0.032157680730928076, Val Loss: 0.0270770505775471 +2024-07-19 15:08:14.493 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 37/50, Train Loss: 0.03206351529806852, Val Loss: 0.026656729748120177 +2024-07-19 15:08:14.993 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 38/50, Train Loss: 0.03247079803523692, Val Loss: 0.02686392334667412 +2024-07-19 15:08:15.498 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 39/50, Train Loss: 0.03190780690109188, Val Loss: 0.02670071500580053 +2024-07-19 15:08:15.999 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 40/50, Train Loss: 0.032117162306200375, Val Loss: 0.02664681035723235 +2024-07-19 15:08:16.513 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 41/50, Train Loss: 0.03214940855448896, Val Loss: 0.026902963835242634 +2024-07-19 15:08:17.012 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 42/50, Train Loss: 0.03207944379272786, Val Loss: 0.02735171462031635 +2024-07-19 15:08:17.520 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 43/50, Train Loss: 0.03207829660651359, Val Loss: 0.026867992068464693 +2024-07-19 15:08:18.020 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 44/50, Train Loss: 0.032114232280714944, Val Loss: 0.027031073799809895 +2024-07-19 15:08:18.520 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 45/50, Train Loss: 0.03218822443688458, Val Loss: 0.027418308664818068 +2024-07-19 15:08:19.027 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 46/50, Train Loss: 0.03255900313908404, Val Loss: 0.027783909762227856 +2024-07-19 15:08:19.530 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 47/50, Train Loss: 0.033505328981713815, Val Loss: 0.027738534719557374 +2024-07-19 15:08:20.039 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 48/50, Train Loss: 0.03269326199184765, Val Loss: 0.027306135492147627 +2024-07-19 15:08:20.536 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 49/50, Train Loss: 0.032510936598886146, Val Loss: 0.027263404096703272 +2024-07-19 15:08:21.050 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 50/50, Train Loss: 0.03248160362920978, Val Loss: 0.02759102012055951 +2024-07-19 15:08:21.050 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Fold 2, MAPE: 2.72% +2024-07-19 15:08:21.151 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_50001_100000_LSTM//train_f2_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-19 15:08:21.827 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 1/50, Train Loss: 0.03143719473394425, Val Loss: 0.03325181721231422 +2024-07-19 15:08:22.525 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 2/50, Train Loss: 0.03141124073211869, Val Loss: 0.03264639652460008 +2024-07-19 15:08:23.215 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 3/50, Train Loss: 0.03118399558716441, Val Loss: 0.03275497610101829 +2024-07-19 15:08:23.877 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 4/50, Train Loss: 0.031056913738585497, Val Loss: 0.03263888835302881 +2024-07-19 15:08:24.526 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 5/50, Train Loss: 0.031052326464591776, Val Loss: 0.03288822570765341 +2024-07-19 15:08:25.172 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 6/50, Train Loss: 0.031022890394374933, Val Loss: 0.033459308733408515 +2024-07-19 15:08:25.826 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 7/50, Train Loss: 0.030926810526480414, Val Loss: 0.033248726228201714 +2024-07-19 15:08:26.479 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 8/50, Train Loss: 0.030922568607309908, Val Loss: 0.03336223612564641 +2024-07-19 15:08:27.147 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 9/50, Train Loss: 0.03094955439334863, Val Loss: 0.033638637311555246 +2024-07-19 15:08:27.830 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 10/50, Train Loss: 0.03088520048824075, Val Loss: 0.03364362899918814 +2024-07-19 15:08:28.504 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 11/50, Train Loss: 0.031008098274469376, Val Loss: 0.03279340977000224 +2024-07-19 15:08:29.180 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 12/50, Train Loss: 0.03088138082817401, Val Loss: 0.032836162460011406 +2024-07-19 15:08:29.853 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 13/50, Train Loss: 0.030725294813411692, Val Loss: 0.03356996772659791 +2024-07-19 15:08:30.574 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 14/50, Train Loss: 0.03083240937390556, Val Loss: 0.03310372932134448 +2024-07-19 15:08:31.263 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 15/50, Train Loss: 0.030876555429031588, Val Loss: 0.03306398143035334 +2024-07-19 15:08:31.966 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 16/50, Train Loss: 0.030815946729215858, Val Loss: 0.033493411047635854 +2024-07-19 15:08:32.635 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 17/50, Train Loss: 0.030785274245355227, Val Loss: 0.0331235607028813 +2024-07-19 15:08:33.304 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 18/50, Train Loss: 0.030667328428834267, Val Loss: 0.033277808965460676 +2024-07-19 15:08:33.986 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 19/50, Train Loss: 0.030588042016511094, Val Loss: 0.03349242434912437 +2024-07-19 15:08:34.659 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 20/50, Train Loss: 0.030898660395855773, Val Loss: 0.033911087726419036 +2024-07-19 15:08:35.328 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 21/50, Train Loss: 0.030854704292261437, Val Loss: 0.033362910403190435 +2024-07-19 15:08:36.015 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 22/50, Train Loss: 0.030864284067631583, Val Loss: 0.03325284071065284 +2024-07-19 15:08:36.688 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 23/50, Train Loss: 0.030634783705926105, Val Loss: 0.03316149850552146 +2024-07-19 15:08:37.357 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 24/50, Train Loss: 0.030682338758894843, Val Loss: 0.033662087560908216 +2024-07-19 15:08:38.028 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 25/50, Train Loss: 0.030756638768090778, Val Loss: 0.03355310444493551 +2024-07-19 15:08:38.692 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 26/50, Train Loss: 0.03076883587884168, Val Loss: 0.0338616246810636 +2024-07-19 15:08:39.366 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 27/50, Train Loss: 0.030680379970637085, Val Loss: 0.03376196732593549 +2024-07-19 15:08:40.048 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 28/50, Train Loss: 0.03053968994278614, Val Loss: 0.0338327358602672 +2024-07-19 15:08:40.721 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 29/50, Train Loss: 0.03051279486501462, Val Loss: 0.033848778218836396 +2024-07-19 15:08:41.411 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 30/50, Train Loss: 0.03062904539377722, Val Loss: 0.03362319990992546 +2024-07-19 15:08:42.093 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 31/50, Train Loss: 0.030384240238225623, Val Loss: 0.033124699030776285 +2024-07-19 15:08:42.766 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 32/50, Train Loss: 0.03039158790129913, Val Loss: 0.03376814556887021 +2024-07-19 15:08:43.433 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 33/50, Train Loss: 0.030225026842257748, Val Loss: 0.033511999742807566 +2024-07-19 15:08:44.106 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 34/50, Train Loss: 0.03031433705393582, Val Loss: 0.034048809191665134 +2024-07-19 15:08:44.810 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 35/50, Train Loss: 0.030204135171864946, Val Loss: 0.033645546265147826 +2024-07-19 15:08:45.469 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 36/50, Train Loss: 0.030288311155283288, Val Loss: 0.03347506469770058 +2024-07-19 15:08:46.145 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 37/50, Train Loss: 0.030116484168763846, Val Loss: 0.033819376969256916 +2024-07-19 15:08:46.811 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 38/50, Train Loss: 0.03018917647279697, Val Loss: 0.03408045648924402 +2024-07-19 15:08:47.482 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 39/50, Train Loss: 0.030269162002185435, Val Loss: 0.03455443272518145 +2024-07-19 15:08:48.158 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 40/50, Train Loss: 0.030154332186873644, Val Loss: 0.03453944482513376 +2024-07-19 15:08:48.829 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 41/50, Train Loss: 0.030144967406681957, Val Loss: 0.03442783089908394 +2024-07-19 15:08:49.508 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 42/50, Train Loss: 0.030163660313780993, Val Loss: 0.03365449672816573 +2024-07-19 15:08:50.190 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 43/50, Train Loss: 0.030053700333180493, Val Loss: 0.03411884626021256 +2024-07-19 15:08:50.866 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 44/50, Train Loss: 0.030257333542079958, Val Loss: 0.03322340608448596 +2024-07-19 15:08:51.577 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 45/50, Train Loss: 0.02978156415158755, Val Loss: 0.03418839586949026 +2024-07-19 15:08:52.264 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 46/50, Train Loss: 0.030096869201284564, Val Loss: 0.03353581990341883 +2024-07-19 15:08:52.943 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 47/50, Train Loss: 0.03010225538419534, Val Loss: 0.033397554092713305 +2024-07-19 15:08:53.599 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 48/50, Train Loss: 0.03009593272454118, Val Loss: 0.03317842194558801 +2024-07-19 15:08:54.265 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 49/50, Train Loss: 0.029913274418205432, Val Loss: 0.032902567722910156 +2024-07-19 15:08:54.927 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 50/50, Train Loss: 0.029875071681015296, Val Loss: 0.033104389100461394 +2024-07-19 15:08:54.928 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Fold 3, MAPE: 3.04% +2024-07-19 15:08:55.027 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_50001_100000_LSTM//train_f3_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-19 15:08:55.833 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 1/50, Train Loss: 0.030065400541279014, Val Loss: 0.041756289734228236 +2024-07-19 15:08:56.676 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 2/50, Train Loss: 0.029463400383694813, Val Loss: 0.04309492658924412 +2024-07-19 15:08:57.508 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 3/50, Train Loss: 0.029696096492173907, Val Loss: 0.04494181637828414 +2024-07-19 15:08:58.336 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 4/50, Train Loss: 0.029684728973514433, Val Loss: 0.04671531825049503 +2024-07-19 15:08:59.174 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 5/50, Train Loss: 0.029769239102868914, Val Loss: 0.049228780273650144 +2024-07-19 15:09:00.001 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 6/50, Train Loss: 0.02984181845274109, Val Loss: 0.04747025779372937 +2024-07-19 15:09:00.845 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 7/50, Train Loss: 0.029819623515992374, Val Loss: 0.04813301412237657 +2024-07-19 15:09:01.740 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 8/50, Train Loss: 0.029876574976267396, Val Loss: 0.04631947816626446 +2024-07-19 15:09:02.605 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 9/50, Train Loss: 0.029787088539656045, Val Loss: 0.04661983100546373 +2024-07-19 15:09:03.425 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 10/50, Train Loss: 0.029840404618081157, Val Loss: 0.041625653016003406 +2024-07-19 15:09:04.262 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 11/50, Train Loss: 0.029527508121516024, Val Loss: 0.0449652313380628 +2024-07-19 15:09:05.095 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 12/50, Train Loss: 0.029486024051208745, Val Loss: 0.0397438297702654 +2024-07-19 15:09:05.923 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 13/50, Train Loss: 0.029411714247704206, Val Loss: 0.04358296876622213 +2024-07-19 15:09:06.748 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 14/50, Train Loss: 0.029357634955546358, Val Loss: 0.04119713473561648 +2024-07-19 15:09:07.576 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 15/50, Train Loss: 0.02938381040079908, Val Loss: 0.04185626237980417 +2024-07-19 15:09:08.414 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 16/50, Train Loss: 0.02940556095851647, Val Loss: 0.041051585781010425 +2024-07-19 15:09:09.253 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 17/50, Train Loss: 0.029397498539925276, Val Loss: 0.0438032744301332 +2024-07-19 15:09:10.088 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 18/50, Train Loss: 0.02930669509549881, Val Loss: 0.03881567132634085 +2024-07-19 15:09:10.925 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 19/50, Train Loss: 0.02922665622023927, Val Loss: 0.041825865621905066 +2024-07-19 15:09:11.777 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 20/50, Train Loss: 0.02931192871899559, Val Loss: 0.04026881132174183 +2024-07-19 15:09:12.604 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 21/50, Train Loss: 0.029067123319012123, Val Loss: 0.03932534767365133 +2024-07-19 15:09:13.448 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 22/50, Train Loss: 0.02917080069124535, Val Loss: 0.0414111273916992 +2024-07-19 15:09:14.279 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 23/50, Train Loss: 0.02918580048052328, Val Loss: 0.0374753057856012 +2024-07-19 15:09:15.108 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 24/50, Train Loss: 0.029192409703282865, Val Loss: 0.04317062801203212 +2024-07-19 15:09:15.937 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 25/50, Train Loss: 0.029179408834162323, Val Loss: 0.04006489683446046 +2024-07-19 15:09:16.772 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 26/50, Train Loss: 0.02917934877920773, Val Loss: 0.043181130813585746 +2024-07-19 15:09:17.572 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 27/50, Train Loss: 0.029163486221907557, Val Loss: 0.04314817115664482 +2024-07-19 15:09:18.376 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 28/50, Train Loss: 0.029116089542775034, Val Loss: 0.039087463975758165 +2024-07-19 15:09:19.179 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 29/50, Train Loss: 0.02897516094598469, Val Loss: 0.03962500745782981 +2024-07-19 15:09:19.981 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 30/50, Train Loss: 0.028971569290241368, Val Loss: 0.0383226953044131 +2024-07-19 15:09:20.784 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 31/50, Train Loss: 0.02892070619266603, Val Loss: 0.036943493864020786 +2024-07-19 15:09:21.607 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 32/50, Train Loss: 0.029043317905494144, Val Loss: 0.04008657006999931 +2024-07-19 15:09:22.421 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 33/50, Train Loss: 0.02902827032708696, Val Loss: 0.0369392587627108 +2024-07-19 15:09:23.225 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 34/50, Train Loss: 0.028924308850296905, Val Loss: 0.0381389702292713 +2024-07-19 15:09:24.054 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 35/50, Train Loss: 0.028894581059300966, Val Loss: 0.037027892077694066 +2024-07-19 15:09:24.875 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 36/50, Train Loss: 0.028907178558286402, Val Loss: 0.03805289830307703 +2024-07-19 15:09:25.702 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 37/50, Train Loss: 0.028870226641359565, Val Loss: 0.03770607991798504 +2024-07-19 15:09:26.550 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 38/50, Train Loss: 0.028746044790310846, Val Loss: 0.035673930083174966 +2024-07-19 15:09:27.378 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 39/50, Train Loss: 0.028798783970689707, Val Loss: 0.036790621995523166 +2024-07-19 15:09:28.208 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 40/50, Train Loss: 0.028687764516939503, Val Loss: 0.036270944854697666 +2024-07-19 15:09:29.049 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 41/50, Train Loss: 0.02876419936317009, Val Loss: 0.03828186305189455 +2024-07-19 15:09:29.871 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 42/50, Train Loss: 0.02872197841202001, Val Loss: 0.03571414177280825 +2024-07-19 15:09:30.689 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 43/50, Train Loss: 0.028685245703864885, Val Loss: 0.03503877055403348 +2024-07-19 15:09:31.537 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 44/50, Train Loss: 0.02861067196251927, Val Loss: 0.03425022743239596 +2024-07-19 15:09:32.391 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 45/50, Train Loss: 0.02867555620844711, Val Loss: 0.03782854974269867 +2024-07-19 15:09:33.225 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 46/50, Train Loss: 0.02851995676858248, Val Loss: 0.03629346212019791 +2024-07-19 15:09:34.061 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 47/50, Train Loss: 0.02872170727433903, Val Loss: 0.03671510628349072 +2024-07-19 15:09:34.892 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 48/50, Train Loss: 0.028647470600125225, Val Loss: 0.03591037496320299 +2024-07-19 15:09:35.720 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 49/50, Train Loss: 0.028668901755136776, Val Loss: 0.037055213809818834 +2024-07-19 15:09:36.559 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Epoch 50/50, Train Loss: 0.028548789410186664, Val Loss: 0.03678788979713981 +2024-07-19 15:09:36.559 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Fold 4, MAPE: 3.05% +2024-07-19 15:09:36.668 [21/cross_validate_train/257 (pid 11931)] INFO:__main__:Training image saved at metaflow_models//bgd_lodging_residential_50001_100000_LSTM//train_f4_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-19 15:09:41.222 [21/cross_validate_train/257 (pid 11931)] Task finished successfully. +2024-07-19 15:09:41.247 [21/model_scores/258 (pid 12521)] Task is starting. +2024-07-19 15:09:42.839 [21/model_scores/258 (pid 12521)] INFO:__main__:Average Train Loss across all folds: 0.0330386360380205 +2024-07-19 15:09:47.118 [21/model_scores/258 (pid 12521)] INFO:__main__:Average Validation Loss across all folds: 0.03363107817398535 +2024-07-19 15:09:47.119 [21/model_scores/258 (pid 12521)] INFO:__main__:Average MAPE across all folds: 2.92% +2024-07-19 15:09:47.120 [21/model_scores/258 (pid 12521)] Task finished successfully. +2024-07-19 15:09:47.153 [21/validate_model/259 (pid 12569)] Task is starting. +2024-07-19 15:09:48.670 [21/validate_model/259 (pid 12569)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 15:09:48.875 [21/validate_model/259 (pid 12569)] INFO:__main__:Test Set MAPE: 3.95% +2024-07-19 15:09:49.294 [21/validate_model/259 (pid 12569)] INFO:__main__:Test image saved at metaflow_models//bgd_lodging_residential_50001_100000_LSTM//test_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-19 15:09:49.809 [21/validate_model/259 (pid 12569)] Task finished successfully. +2024-07-19 15:09:49.853 [21/log_model/260 (pid 12589)] Task is starting. +2024-07-19 15:09:51.427 [21/log_model/260 (pid 12589)] INFO:__main__:Logging model bgd_lodging_residential_50001_100000_LSTM +2024-07-19 15:09:51.428 [21/log_model/260 (pid 12589)] INFO:__main__:Model logged at metaflow_models//bgd_lodging_residential_50001_100000_LSTM//bgd_lodging_residential_50001_100000_LSTM.pth +2024-07-19 15:09:55.679 [21/log_model/260 (pid 12589)] Task finished successfully. +2024-07-19 15:09:55.706 [21/end/261 (pid 12629)] Task is starting. +2024-07-19 15:09:57.242 [21/end/261 (pid 12629)] INFO:__main__:Pipeline end. +2024-07-19 15:09:57.564 [21/end/261 (pid 12629)] Task finished successfully. +2024-07-19 15:09:57.564 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/scaler_bgd_lodging_residential_50001_100000_LSTM.pkl b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/scaler_bgd_lodging_residential_50001_100000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..58fcdc6dbc906063fa920f62f339da85bd6a609b --- /dev/null +++ b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/scaler_bgd_lodging_residential_50001_100000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8147ab2934ef3cc0a13a9cb3fc7c78cbea0c482d7bddc441489b81b674184582 +size 557 diff --git a/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/test_bgd_lodging_residential_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/test_bgd_lodging_residential_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..393260693c5c79bfb67ee3d6b1b6e0497ab1a433 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/test_bgd_lodging_residential_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f0_bgd_lodging_residential_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f0_bgd_lodging_residential_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..d7a61004ae5fa3489bb5362a7ad60099f4a1ab68 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f0_bgd_lodging_residential_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f1_bgd_lodging_residential_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f1_bgd_lodging_residential_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..ee60efbbcf6c20beb8292258c90ff68b6240c3e7 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f1_bgd_lodging_residential_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f2_bgd_lodging_residential_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f2_bgd_lodging_residential_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..56145f237bc212fa37fd1ddddb67ed59744d5189 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f2_bgd_lodging_residential_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f3_bgd_lodging_residential_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f3_bgd_lodging_residential_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..ef2cd6d68e258d6edc044a200e7135605fe16051 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f3_bgd_lodging_residential_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f4_bgd_lodging_residential_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f4_bgd_lodging_residential_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..b5d2d3583b080ecb465bd6cc2736153a6298dd68 Binary files /dev/null and b/metaflow_models_30hrs/bgd_lodging_residential_50001_100000_LSTM/train_f4_bgd_lodging_residential_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/bgd_office_100001_200000_LSTM.pth b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/bgd_office_100001_200000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..68d83ba69df717bc5e9583e0c1d71ad1d1e0c473 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/bgd_office_100001_200000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7dd0c85239796ec22032d17688b522aeccaeadbcc218df13243e2b971a9928d +size 46756 diff --git a/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/output.txt b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..18d4c26bd19129c5c4a723019da89c2dd9d716f9 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/output.txt @@ -0,0 +1,738 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 15:03:38.602 Workflow starting (run-id 20): +2024-07-19 15:03:38.692 [20/start/235 (pid 10833)] Task is starting. +2024-07-19 15:03:40.180 [20/start/235 (pid 10833)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 15:03:40.480 [20/start/235 (pid 10833)] Task finished successfully. +2024-07-19 15:03:40.507 [20/ingest/236 (pid 10847)] Task is starting. +2024-07-19 15:03:41.978 [20/ingest/236 (pid 10847)] INFO:__main__:Fetching dataframe.. +2024-07-19 15:03:41.994 [20/ingest/236 (pid 10847)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 15:03:46.009 [20/ingest/236 (pid 10847)] Task finished successfully. +2024-07-19 15:03:46.042 [20/pick_2017_data/237 (pid 10871)] Task is starting. +2024-07-19 15:03:47.531 [20/pick_2017_data/237 (pid 10871)] INFO:__main__:Picking 2017 data.. +2024-07-19 15:03:47.850 [20/pick_2017_data/237 (pid 10871)] Task finished successfully. +2024-07-19 15:03:47.880 [20/fill_missing_data/238 (pid 10882)] Task is starting. +2024-07-19 15:03:49.396 [20/fill_missing_data/238 (pid 10882)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] INFO:__main__:NaN counts per column: +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] INFO:__main__:Panther_office_Patti 12 +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] Fox_office_Israel 2 +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] Fox_office_Thelma 1 +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] Fox_office_Yong 1 +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] Shrew_office_Sherill 8160 +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] Cockatoo_office_Laila 113 +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] dtype: int64 +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] --- Logging error --- +2024-07-19 15:03:49.403 [20/fill_missing_data/238 (pid 10882)] Traceback (most recent call last): +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] msg = self.format(record) +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] return fmt.format(record) +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] record.message = record.getMessage() +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] msg = msg % self.args +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] TypeError: not all arguments converted during string formatting +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] Call stack: +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] BGD_LinearFlow() +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] cli.main(self) +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] return func(*args, **kwargs) +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] return self.main(*args, **kwargs) +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] rv = self.invoke(ctx) +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] return callback(*args, **kwargs) +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] return f(get_current_context(), *args, **kwargs) +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] task.run_step( +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] self._exec_step_function(step_func) +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] step_function() +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] self.missing_values = find_nan_counts(self.df) +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] Arguments: (8289,) +2024-07-19 15:03:54.970 [20/fill_missing_data/238 (pid 10882)] Task finished successfully. +2024-07-19 15:03:55.005 [20/find_median/239 (pid 10918)] Task is starting. +2024-07-19 15:03:56.671 [20/find_median/239 (pid 10918)] INFO:__main__:Computing and using median.. +2024-07-19 15:03:57.235 [20/find_median/239 (pid 10918)] Task finished successfully. +2024-07-19 15:03:57.272 [20/aggregate_data/240 (pid 10929)] Task is starting. +2024-07-19 15:03:58.833 [20/aggregate_data/240 (pid 10929)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 15:04:03.109 [20/aggregate_data/240 (pid 10929)] Task finished successfully. +2024-07-19 15:04:03.150 [20/split_data/241 (pid 10963)] Task is starting. +2024-07-19 15:04:04.737 [20/split_data/241 (pid 10963)] INFO:__main__:Splitting data into test and train... +2024-07-19 15:04:09.075 [20/split_data/241 (pid 10963)] Task finished successfully. +2024-07-19 15:04:09.109 [20/make_x_y/242 (pid 10996)] Task is starting. +2024-07-19 15:04:11.017 [20/make_x_y/242 (pid 10996)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 15:04:11.334 [20/make_x_y/242 (pid 10996)] Shape of y_train: (6978, 1) +2024-07-19 15:04:11.335 [20/make_x_y/242 (pid 10996)] Shape of X_test: (1722, 30, 1) +2024-07-19 15:04:11.335 [20/make_x_y/242 (pid 10996)] Shape of y_test: (1722, 1) +2024-07-19 15:04:11.335 [20/make_x_y/242 (pid 10996)] Task finished successfully. +2024-07-19 15:04:11.377 [20/cross_validate_train/243 (pid 11007)] Task is starting. +2024-07-19 15:04:12.893 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Creating bgd_office_100001_200000_LSTM +2024-07-19 15:04:12.893 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Performing cross validation.. +2024-07-19 15:04:13.629 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 1/50, Train Loss: 0.22051807513108124, Val Loss: 0.20894332612688477 +2024-07-19 15:04:13.832 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 2/50, Train Loss: 0.16673750148431674, Val Loss: 0.2027353728945191 +2024-07-19 15:04:14.036 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 3/50, Train Loss: 0.15841711936770259, Val Loss: 0.19125719851738698 +2024-07-19 15:04:14.236 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 4/50, Train Loss: 0.1505677776562201, Val Loss: 0.17681309278752352 +2024-07-19 15:04:14.437 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 5/50, Train Loss: 0.13887177790338928, Val Loss: 0.15915971611802643 +2024-07-19 15:04:14.638 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 6/50, Train Loss: 0.12444062994138615, Val Loss: 0.13642362555539286 +2024-07-19 15:04:14.844 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 7/50, Train Loss: 0.10800282234275663, Val Loss: 0.11122423249322015 +2024-07-19 15:04:15.050 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 8/50, Train Loss: 0.09182280694713464, Val Loss: 0.09367193946161785 +2024-07-19 15:04:15.259 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 9/50, Train Loss: 0.07980609755661036, Val Loss: 0.08064176212694193 +2024-07-19 15:04:15.462 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 10/50, Train Loss: 0.07159114679371989, Val Loss: 0.07490520712894362 +2024-07-19 15:04:15.671 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 11/50, Train Loss: 0.06589491625089904, Val Loss: 0.07246203670227849 +2024-07-19 15:04:15.880 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 12/50, Train Loss: 0.06271088687149254, Val Loss: 0.07040249052885417 +2024-07-19 15:04:16.090 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 13/50, Train Loss: 0.06146150318956053, Val Loss: 0.06839599480500093 +2024-07-19 15:04:16.297 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 14/50, Train Loss: 0.059325599036103974, Val Loss: 0.06588667168005093 +2024-07-19 15:04:16.511 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 15/50, Train Loss: 0.05739834280432882, Val Loss: 0.062200058553669904 +2024-07-19 15:04:16.719 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 16/50, Train Loss: 0.054848532670655765, Val Loss: 0.057534159840764224 +2024-07-19 15:04:16.930 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 17/50, Train Loss: 0.05356457074348991, Val Loss: 0.05823123857781694 +2024-07-19 15:04:17.161 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 18/50, Train Loss: 0.05185830985774865, Val Loss: 0.05639139180247848 +2024-07-19 15:04:17.370 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 19/50, Train Loss: 0.05103402166954569, Val Loss: 0.05566032240922387 +2024-07-19 15:04:17.581 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 20/50, Train Loss: 0.04945431448317863, Val Loss: 0.05374738563959663 +2024-07-19 15:04:17.800 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 21/50, Train Loss: 0.0490799493886329, Val Loss: 0.053918201879069615 +2024-07-19 15:04:18.055 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 22/50, Train Loss: 0.04887011491164968, Val Loss: 0.05276128508754679 +2024-07-19 15:04:18.263 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 23/50, Train Loss: 0.048132216507518616, Val Loss: 0.05265031452919986 +2024-07-19 15:04:18.485 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 24/50, Train Loss: 0.04725554011560775, Val Loss: 0.05202306273418504 +2024-07-19 15:04:18.741 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 25/50, Train Loss: 0.04721999399968096, Val Loss: 0.05217398874260284 +2024-07-19 15:04:18.966 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 26/50, Train Loss: 0.047141274789700635, Val Loss: 0.05137668006323479 +2024-07-19 15:04:19.213 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 27/50, Train Loss: 0.046701939273122196, Val Loss: 0.05125140821611559 +2024-07-19 15:04:19.444 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 28/50, Train Loss: 0.0465934595747574, Val Loss: 0.05083693110862294 +2024-07-19 15:04:19.678 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 29/50, Train Loss: 0.0467741669633904, Val Loss: 0.05135998552715456 +2024-07-19 15:04:19.895 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 30/50, Train Loss: 0.047124902541572984, Val Loss: 0.052036435016103694 +2024-07-19 15:04:20.113 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 31/50, Train Loss: 0.04664094972650747, Val Loss: 0.05149007830265406 +2024-07-19 15:04:20.339 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 32/50, Train Loss: 0.0460965013181841, Val Loss: 0.05084559452292081 +2024-07-19 15:04:20.564 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 33/50, Train Loss: 0.04628829768783337, Val Loss: 0.05145802318647101 +2024-07-19 15:04:20.782 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 34/50, Train Loss: 0.04600103431054064, Val Loss: 0.05107333068106625 +2024-07-19 15:04:21.005 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 35/50, Train Loss: 0.04556651181868605, Val Loss: 0.05101458667903333 +2024-07-19 15:04:21.234 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 36/50, Train Loss: 0.045553858970870845, Val Loss: 0.049576145168897266 +2024-07-19 15:04:21.477 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 37/50, Train Loss: 0.045344224954779085, Val Loss: 0.04992755734034487 +2024-07-19 15:04:21.689 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 38/50, Train Loss: 0.045119905038862616, Val Loss: 0.049637310206890106 +2024-07-19 15:04:21.923 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 39/50, Train Loss: 0.04490954408774505, Val Loss: 0.049608065570528444 +2024-07-19 15:04:22.154 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 40/50, Train Loss: 0.04513425390059884, Val Loss: 0.05064853633175025 +2024-07-19 15:04:22.392 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 41/50, Train Loss: 0.044714017796355324, Val Loss: 0.04983583223578092 +2024-07-19 15:04:22.618 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 42/50, Train Loss: 0.044401397274152654, Val Loss: 0.04989018985951269 +2024-07-19 15:04:22.881 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 43/50, Train Loss: 0.044275715947151184, Val Loss: 0.04884836812679832 +2024-07-19 15:04:23.107 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 44/50, Train Loss: 0.044261341612484004, Val Loss: 0.049829600932630336 +2024-07-19 15:04:23.348 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 45/50, Train Loss: 0.04452549691337186, Val Loss: 0.05002056203178457 +2024-07-19 15:04:23.581 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 46/50, Train Loss: 0.04424509995088384, Val Loss: 0.04926751966814737 +2024-07-19 15:04:23.810 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 47/50, Train Loss: 0.04376789559987751, Val Loss: 0.049345272417004045 +2024-07-19 15:04:24.031 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 48/50, Train Loss: 0.043705321898734245, Val Loss: 0.048671035347758115 +2024-07-19 15:04:24.256 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 49/50, Train Loss: 0.04356037191039807, Val Loss: 0.04884819263542021 +2024-07-19 15:04:24.474 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 50/50, Train Loss: 0.0434772117516479, Val Loss: 0.04910292667714325 +2024-07-19 15:04:24.475 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Fold 0, MAPE: 3.12% +2024-07-19 15:04:24.879 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Training image saved at metaflow_models//bgd_office_100001_200000_LSTM//train_f0_bgd_office_100001_200000_LSTM.png +2024-07-19 15:04:25.360 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 1/50, Train Loss: 0.03778495800311435, Val Loss: 0.03697498505179946 +2024-07-19 15:04:25.758 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 2/50, Train Loss: 0.03474674812734944, Val Loss: 0.03679163351252272 +2024-07-19 15:04:26.140 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 3/50, Train Loss: 0.03437305369401631, Val Loss: 0.036372508450939846 +2024-07-19 15:04:26.512 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 4/50, Train Loss: 0.034444131518471734, Val Loss: 0.036487265766875165 +2024-07-19 15:04:26.886 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 5/50, Train Loss: 0.03418701616664455, Val Loss: 0.0374384693600036 +2024-07-19 15:04:27.255 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 6/50, Train Loss: 0.034248468351282486, Val Loss: 0.036932942734376806 +2024-07-19 15:04:27.614 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 7/50, Train Loss: 0.03418012945721411, Val Loss: 0.03627522908956618 +2024-07-19 15:04:27.979 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 8/50, Train Loss: 0.03399808758436001, Val Loss: 0.03630018123501056 +2024-07-19 15:04:28.367 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 9/50, Train Loss: 0.03391705420225451, Val Loss: 0.036740118083921636 +2024-07-19 15:04:28.727 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 10/50, Train Loss: 0.033979463097575595, Val Loss: 0.03611701439965416 +2024-07-19 15:04:29.093 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 11/50, Train Loss: 0.03386713801691794, Val Loss: 0.03581275161657784 +2024-07-19 15:04:29.455 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 12/50, Train Loss: 0.03407375466027488, Val Loss: 0.03564470014660745 +2024-07-19 15:04:29.818 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 13/50, Train Loss: 0.033608462508410625, Val Loss: 0.03628034532271527 +2024-07-19 15:04:30.183 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 14/50, Train Loss: 0.03397657298674322, Val Loss: 0.03537570232072392 +2024-07-19 15:04:30.540 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 15/50, Train Loss: 0.033759173669227184, Val Loss: 0.036235580925603174 +2024-07-19 15:04:30.906 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 16/50, Train Loss: 0.03381541330520421, Val Loss: 0.03510202069741648 +2024-07-19 15:04:31.308 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 17/50, Train Loss: 0.03357582672001564, Val Loss: 0.03552474016071977 +2024-07-19 15:04:31.705 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 18/50, Train Loss: 0.03376928316301679, Val Loss: 0.03528517978014173 +2024-07-19 15:04:32.061 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 19/50, Train Loss: 0.03381640091538429, Val Loss: 0.03534810184626966 +2024-07-19 15:04:32.460 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 20/50, Train Loss: 0.03361596284459715, Val Loss: 0.03602873559135038 +2024-07-19 15:04:32.819 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 21/50, Train Loss: 0.03388456819094207, Val Loss: 0.03527952207101358 +2024-07-19 15:04:33.230 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 22/50, Train Loss: 0.033798712548123645, Val Loss: 0.035350980941911005 +2024-07-19 15:04:33.665 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 23/50, Train Loss: 0.03389199226074023, Val Loss: 0.035186866550026716 +2024-07-19 15:04:34.110 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 24/50, Train Loss: 0.03386023053771829, Val Loss: 0.03547220677137375 +2024-07-19 15:04:34.494 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 25/50, Train Loss: 0.03386075521678957, Val Loss: 0.036545604316366685 +2024-07-19 15:04:34.893 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 26/50, Train Loss: 0.033598018988762815, Val Loss: 0.03521154760508924 +2024-07-19 15:04:35.263 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 27/50, Train Loss: 0.03367832642405817, Val Loss: 0.037128651262940585 +2024-07-19 15:04:35.697 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 28/50, Train Loss: 0.03361387726889081, Val Loss: 0.03674327561984191 +2024-07-19 15:04:36.128 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 29/50, Train Loss: 0.03350615052327718, Val Loss: 0.03650352237997828 +2024-07-19 15:04:36.587 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 30/50, Train Loss: 0.033624106023001345, Val Loss: 0.03586091242126516 +2024-07-19 15:04:37.039 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 31/50, Train Loss: 0.03359356867021894, Val Loss: 0.03605796366527274 +2024-07-19 15:04:37.451 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 32/50, Train Loss: 0.03359832900435957, Val Loss: 0.035957647185470606 +2024-07-19 15:04:37.831 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 33/50, Train Loss: 0.03344714667086732, Val Loss: 0.03553736084014983 +2024-07-19 15:04:38.199 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 34/50, Train Loss: 0.03341620759910917, Val Loss: 0.03582756120610882 +2024-07-19 15:04:38.580 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 35/50, Train Loss: 0.03348831299131047, Val Loss: 0.03531536142769698 +2024-07-19 15:04:38.990 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 36/50, Train Loss: 0.033417190897138155, Val Loss: 0.036743583208000336 +2024-07-19 15:04:39.419 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 37/50, Train Loss: 0.033365762754254145, Val Loss: 0.03610508103628416 +2024-07-19 15:04:39.818 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 38/50, Train Loss: 0.03353390995770285, Val Loss: 0.03636853905344332 +2024-07-19 15:04:40.227 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 39/50, Train Loss: 0.033305466710908775, Val Loss: 0.036950567183462346 +2024-07-19 15:04:40.595 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 40/50, Train Loss: 0.03320965933779331, Val Loss: 0.03584048630216637 +2024-07-19 15:04:40.982 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 41/50, Train Loss: 0.033523265476504416, Val Loss: 0.036946685481313114 +2024-07-19 15:04:41.408 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 42/50, Train Loss: 0.03327380748440142, Val Loss: 0.03610821732798138 +2024-07-19 15:04:41.787 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 43/50, Train Loss: 0.03343278759044327, Val Loss: 0.036713732406497 +2024-07-19 15:04:42.183 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 44/50, Train Loss: 0.03328438853360202, Val Loss: 0.03512465178563788 +2024-07-19 15:04:42.586 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 45/50, Train Loss: 0.03339382674391955, Val Loss: 0.03777418527248744 +2024-07-19 15:04:43.008 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 46/50, Train Loss: 0.03340626770809089, Val Loss: 0.03645892431204383 +2024-07-19 15:04:43.434 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 47/50, Train Loss: 0.03327846907283345, Val Loss: 0.03712782752070878 +2024-07-19 15:04:43.861 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 48/50, Train Loss: 0.03333836972509345, Val Loss: 0.03646465531877569 +2024-07-19 15:04:44.292 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 49/50, Train Loss: 0.033157114041586444, Val Loss: 0.035372285726102626 +2024-07-19 15:04:44.712 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 50/50, Train Loss: 0.03328947705050854, Val Loss: 0.03690278912718232 +2024-07-19 15:04:44.713 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Fold 1, MAPE: 3.10% +2024-07-19 15:04:44.826 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Training image saved at metaflow_models//bgd_office_100001_200000_LSTM//train_f1_bgd_office_100001_200000_LSTM.png +2024-07-19 15:04:45.428 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 1/50, Train Loss: 0.033992910181934184, Val Loss: 0.03778290471716507 +2024-07-19 15:04:45.980 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 2/50, Train Loss: 0.03421246497468515, Val Loss: 0.036948209779488074 +2024-07-19 15:04:46.539 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 3/50, Train Loss: 0.0340930217707699, Val Loss: 0.03762249024333181 +2024-07-19 15:04:47.113 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 4/50, Train Loss: 0.034169380265203386, Val Loss: 0.03895337799110928 +2024-07-19 15:04:47.685 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 5/50, Train Loss: 0.03414974481883374, Val Loss: 0.03873740035939861 +2024-07-19 15:04:48.240 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 6/50, Train Loss: 0.034084078872745685, Val Loss: 0.0396696971477689 +2024-07-19 15:04:48.809 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 7/50, Train Loss: 0.03412064967507666, Val Loss: 0.038916462629630756 +2024-07-19 15:04:49.395 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 8/50, Train Loss: 0.03406939382918856, Val Loss: 0.03787894607395739 +2024-07-19 15:04:49.948 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 9/50, Train Loss: 0.0343369398266077, Val Loss: 0.0389757630591457 +2024-07-19 15:04:50.498 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 10/50, Train Loss: 0.034363040802153674, Val Loss: 0.038146908722213796 +2024-07-19 15:04:51.071 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 11/50, Train Loss: 0.03403322486714883, Val Loss: 0.03799205072022773 +2024-07-19 15:04:51.681 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 12/50, Train Loss: 0.034152346629310736, Val Loss: 0.03845872020197881 +2024-07-19 15:04:52.288 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 13/50, Train Loss: 0.03414537105709314, Val Loss: 0.03760621716847291 +2024-07-19 15:04:52.831 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 14/50, Train Loss: 0.03390700014477426, Val Loss: 0.037048049170423196 +2024-07-19 15:04:53.348 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 15/50, Train Loss: 0.03367912102152001, Val Loss: 0.03795033069075765 +2024-07-19 15:04:53.921 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 16/50, Train Loss: 0.03387156704610044, Val Loss: 0.03566478071986018 +2024-07-19 15:04:54.469 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 17/50, Train Loss: 0.03367345490577546, Val Loss: 0.03699902117856451 +2024-07-19 15:04:55.036 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 18/50, Train Loss: 0.033856854536993934, Val Loss: 0.03640585161141447 +2024-07-19 15:04:55.637 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 19/50, Train Loss: 0.03358889577740973, Val Loss: 0.03646297697481271 +2024-07-19 15:04:56.176 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 20/50, Train Loss: 0.033673276481303305, Val Loss: 0.03663841614852081 +2024-07-19 15:04:56.691 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 21/50, Train Loss: 0.033524274910715496, Val Loss: 0.03624023476967941 +2024-07-19 15:04:57.233 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 22/50, Train Loss: 0.03348589898510413, Val Loss: 0.03747692014518622 +2024-07-19 15:04:57.751 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 23/50, Train Loss: 0.0336133786900477, Val Loss: 0.03674786266040157 +2024-07-19 15:04:58.339 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 24/50, Train Loss: 0.033640589920634574, Val Loss: 0.03563247621059418 +2024-07-19 15:04:58.933 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 25/50, Train Loss: 0.03348538064482537, Val Loss: 0.03609674282976099 +2024-07-19 15:04:59.506 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 26/50, Train Loss: 0.03344505224376917, Val Loss: 0.03744146539955526 +2024-07-19 15:05:00.068 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 27/50, Train Loss: 0.03345149636945941, Val Loss: 0.03766221130216444 +2024-07-19 15:05:00.603 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 28/50, Train Loss: 0.033652798577465795, Val Loss: 0.038970451802015305 +2024-07-19 15:05:01.182 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 29/50, Train Loss: 0.03364307843148708, Val Loss: 0.036924600248803965 +2024-07-19 15:05:01.753 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 30/50, Train Loss: 0.033388902399350294, Val Loss: 0.037922784786772086 +2024-07-19 15:05:02.303 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 31/50, Train Loss: 0.03329612385820259, Val Loss: 0.038749088306684755 +2024-07-19 15:05:02.899 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 32/50, Train Loss: 0.033412226831371135, Val Loss: 0.03903967353540498 +2024-07-19 15:05:03.463 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 33/50, Train Loss: 0.03342379047112031, Val Loss: 0.037283063438293094 +2024-07-19 15:05:04.034 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 34/50, Train Loss: 0.033151222494515506, Val Loss: 0.03713772657352525 +2024-07-19 15:05:04.610 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 35/50, Train Loss: 0.03305325868793509, Val Loss: 0.03731859445169165 +2024-07-19 15:05:05.168 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 36/50, Train Loss: 0.03318720012903213, Val Loss: 0.036858791183378245 +2024-07-19 15:05:05.739 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 37/50, Train Loss: 0.03320913492617282, Val Loss: 0.03684778290020453 +2024-07-19 15:05:06.314 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 38/50, Train Loss: 0.03309409752149473, Val Loss: 0.036249691771494376 +2024-07-19 15:05:06.887 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 39/50, Train Loss: 0.03290876905349168, Val Loss: 0.03644594207808778 +2024-07-19 15:05:07.465 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 40/50, Train Loss: 0.03305529569360343, Val Loss: 0.0356642171941899 +2024-07-19 15:05:08.037 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 41/50, Train Loss: 0.03290475754236633, Val Loss: 0.03553217775314241 +2024-07-19 15:05:08.608 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 42/50, Train Loss: 0.03293954818086191, Val Loss: 0.03571064981657106 +2024-07-19 15:05:09.155 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 43/50, Train Loss: 0.032853249460458755, Val Loss: 0.03474176529090147 +2024-07-19 15:05:09.718 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 44/50, Train Loss: 0.03269164768809622, Val Loss: 0.035044060063523216 +2024-07-19 15:05:10.254 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 45/50, Train Loss: 0.03270389310676943, Val Loss: 0.03465378797940306 +2024-07-19 15:05:10.779 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 46/50, Train Loss: 0.03253585482862863, Val Loss: 0.03490107274941496 +2024-07-19 15:05:11.304 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 47/50, Train Loss: 0.03254574987698685, Val Loss: 0.03353578088855421 +2024-07-19 15:05:11.835 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 48/50, Train Loss: 0.03261636146767573, Val Loss: 0.035109018655242144 +2024-07-19 15:05:12.346 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 49/50, Train Loss: 0.03233315644955093, Val Loss: 0.033628128267623285 +2024-07-19 15:05:12.860 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 50/50, Train Loss: 0.03230973793701692, Val Loss: 0.036514184865597134 +2024-07-19 15:05:12.860 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Fold 2, MAPE: 3.13% +2024-07-19 15:05:12.974 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Training image saved at metaflow_models//bgd_office_100001_200000_LSTM//train_f2_bgd_office_100001_200000_LSTM.png +2024-07-19 15:05:13.668 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 1/50, Train Loss: 0.03242336695835198, Val Loss: 0.03450817217093867 +2024-07-19 15:05:14.337 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 2/50, Train Loss: 0.03282030264859739, Val Loss: 0.034796220980383256 +2024-07-19 15:05:15.002 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 3/50, Train Loss: 0.0329081532609177, Val Loss: 0.034897001107802264 +2024-07-19 15:05:15.716 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 4/50, Train Loss: 0.03267539875607376, Val Loss: 0.034790985185552285 +2024-07-19 15:05:16.461 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 5/50, Train Loss: 0.03249495630854205, Val Loss: 0.03467844028932017 +2024-07-19 15:05:17.178 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 6/50, Train Loss: 0.03259864408675939, Val Loss: 0.03454528094546215 +2024-07-19 15:05:17.870 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 7/50, Train Loss: 0.03243467087972246, Val Loss: 0.03495785820524435 +2024-07-19 15:05:18.562 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 8/50, Train Loss: 0.03242964106165383, Val Loss: 0.0354102602278864 +2024-07-19 15:05:19.253 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 9/50, Train Loss: 0.03232113578139919, Val Loss: 0.03612752515520599 +2024-07-19 15:05:19.942 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 10/50, Train Loss: 0.03238344867394803, Val Loss: 0.03534756349147977 +2024-07-19 15:05:20.657 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 11/50, Train Loss: 0.03242085329320741, Val Loss: 0.03535835741943604 +2024-07-19 15:05:21.412 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 12/50, Train Loss: 0.03227444183183451, Val Loss: 0.03610511330535283 +2024-07-19 15:05:22.106 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 13/50, Train Loss: 0.032267728412192165, Val Loss: 0.03601612563471537 +2024-07-19 15:05:22.822 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 14/50, Train Loss: 0.03236875054107545, Val Loss: 0.034587826428783906 +2024-07-19 15:05:23.576 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 15/50, Train Loss: 0.032192084670373024, Val Loss: 0.035022251257622566 +2024-07-19 15:05:24.285 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 16/50, Train Loss: 0.03230213607367996, Val Loss: 0.03508244706569491 +2024-07-19 15:05:24.985 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 17/50, Train Loss: 0.032142746198463114, Val Loss: 0.03509444768565732 +2024-07-19 15:05:25.702 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 18/50, Train Loss: 0.03213106999046182, Val Loss: 0.03505076080359317 +2024-07-19 15:05:26.437 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 19/50, Train Loss: 0.032008334165056274, Val Loss: 0.03520019135966494 +2024-07-19 15:05:27.141 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 20/50, Train Loss: 0.0322155202547573, Val Loss: 0.0351067840851642 +2024-07-19 15:05:27.866 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 21/50, Train Loss: 0.03211436754934592, Val Loss: 0.03521169626430885 +2024-07-19 15:05:28.631 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 22/50, Train Loss: 0.03196873344889242, Val Loss: 0.03538857586681843 +2024-07-19 15:05:29.330 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 23/50, Train Loss: 0.031986959010668815, Val Loss: 0.035096256414780744 +2024-07-19 15:05:30.052 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 24/50, Train Loss: 0.03192849626943265, Val Loss: 0.03494441036034275 +2024-07-19 15:05:30.721 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 25/50, Train Loss: 0.03197148008501693, Val Loss: 0.03461912148506255 +2024-07-19 15:05:31.400 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 26/50, Train Loss: 0.03193311915056755, Val Loss: 0.03467562432224686 +2024-07-19 15:05:32.107 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 27/50, Train Loss: 0.03190821150241241, Val Loss: 0.034974245958634326 +2024-07-19 15:05:32.832 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 28/50, Train Loss: 0.0318369590103218, Val Loss: 0.034856003432257754 +2024-07-19 15:05:33.579 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 29/50, Train Loss: 0.031688885316763026, Val Loss: 0.035789405524327945 +2024-07-19 15:05:34.332 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 30/50, Train Loss: 0.03177323402862434, Val Loss: 0.034805993977430706 +2024-07-19 15:05:35.033 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 31/50, Train Loss: 0.03175239937303409, Val Loss: 0.03591634232450176 +2024-07-19 15:05:35.695 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 32/50, Train Loss: 0.03179091748411525, Val Loss: 0.0346492497200096 +2024-07-19 15:05:36.359 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 33/50, Train Loss: 0.03169943198357543, Val Loss: 0.034730664177520854 +2024-07-19 15:05:37.022 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 34/50, Train Loss: 0.03158569602576429, Val Loss: 0.035013900717368 +2024-07-19 15:05:37.757 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 35/50, Train Loss: 0.031632579429304766, Val Loss: 0.034209955231966196 +2024-07-19 15:05:38.412 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 36/50, Train Loss: 0.03161256451618998, Val Loss: 0.03602859745355877 +2024-07-19 15:05:39.159 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 37/50, Train Loss: 0.03163247583561564, Val Loss: 0.03453959585041613 +2024-07-19 15:05:39.868 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 38/50, Train Loss: 0.03159788045521877, Val Loss: 0.0341755964768094 +2024-07-19 15:05:40.554 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 39/50, Train Loss: 0.031584409601374035, Val Loss: 0.03433180675917381 +2024-07-19 15:05:41.224 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 40/50, Train Loss: 0.03170514175642843, Val Loss: 0.03536844006865411 +2024-07-19 15:05:41.918 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 41/50, Train Loss: 0.03166758470645506, Val Loss: 0.0341823830495815 +2024-07-19 15:05:42.646 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 42/50, Train Loss: 0.03155848820221751, Val Loss: 0.03580384968301734 +2024-07-19 15:05:43.437 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 43/50, Train Loss: 0.03145702781589472, Val Loss: 0.03593112835408868 +2024-07-19 15:05:44.205 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 44/50, Train Loss: 0.031561740941993176, Val Loss: 0.03391018821983724 +2024-07-19 15:05:45.036 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 45/50, Train Loss: 0.03134914824407395, Val Loss: 0.03480877450390442 +2024-07-19 15:05:45.748 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 46/50, Train Loss: 0.03124282154420467, Val Loss: 0.035161242140708746 +2024-07-19 15:05:46.471 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 47/50, Train Loss: 0.031372548833693545, Val Loss: 0.035921500441995824 +2024-07-19 15:05:47.204 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 48/50, Train Loss: 0.03139642396405952, Val Loss: 0.03590870890262965 +2024-07-19 15:05:47.981 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 49/50, Train Loss: 0.031408888249568744, Val Loss: 0.03536273312528391 +2024-07-19 15:05:48.653 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 50/50, Train Loss: 0.03140532869641503, Val Loss: 0.0347340189524599 +2024-07-19 15:05:48.653 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Fold 3, MAPE: 3.00% +2024-07-19 15:05:48.771 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Training image saved at metaflow_models//bgd_office_100001_200000_LSTM//train_f3_bgd_office_100001_200000_LSTM.png +2024-07-19 15:05:49.656 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 1/50, Train Loss: 0.03206203449108116, Val Loss: 0.03427512153379015 +2024-07-19 15:05:50.487 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 2/50, Train Loss: 0.032144001633911345, Val Loss: 0.03461489876782572 +2024-07-19 15:05:51.325 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 3/50, Train Loss: 0.032027375393107044, Val Loss: 0.034241186706600965 +2024-07-19 15:05:52.318 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 4/50, Train Loss: 0.03197281567154677, Val Loss: 0.03392369078623282 +2024-07-19 15:05:53.188 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 5/50, Train Loss: 0.03189765007982215, Val Loss: 0.03381440622379651 +2024-07-19 15:05:54.159 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 6/50, Train Loss: 0.03194233584780615, Val Loss: 0.03334465210099478 +2024-07-19 15:05:55.043 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 7/50, Train Loss: 0.031881585420406124, Val Loss: 0.033445099570058485 +2024-07-19 15:05:56.045 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 8/50, Train Loss: 0.031604400191169515, Val Loss: 0.03318368291129937 +2024-07-19 15:05:56.954 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 9/50, Train Loss: 0.03155753704217764, Val Loss: 0.033051886419589456 +2024-07-19 15:05:57.797 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 10/50, Train Loss: 0.03158475200717266, Val Loss: 0.03309836364477067 +2024-07-19 15:05:58.639 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 11/50, Train Loss: 0.03166326075014505, Val Loss: 0.03282695807315208 +2024-07-19 15:05:59.533 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 12/50, Train Loss: 0.03147767251869152, Val Loss: 0.032430804611460584 +2024-07-19 15:06:00.389 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 13/50, Train Loss: 0.03150470882326692, Val Loss: 0.03210866149212863 +2024-07-19 15:06:01.264 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 14/50, Train Loss: 0.031278802429909235, Val Loss: 0.03195805882884038 +2024-07-19 15:06:02.247 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 15/50, Train Loss: 0.03128842737239141, Val Loss: 0.03203856491961995 +2024-07-19 15:06:03.192 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 16/50, Train Loss: 0.03132894339428826, Val Loss: 0.031399934024021435 +2024-07-19 15:06:04.061 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 17/50, Train Loss: 0.031323373747559696, Val Loss: 0.03175336746750651 +2024-07-19 15:06:04.954 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 18/50, Train Loss: 0.0313276665817414, Val Loss: 0.03157056973794022 +2024-07-19 15:06:05.788 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 19/50, Train Loss: 0.031147447629616812, Val Loss: 0.031525186137170404 +2024-07-19 15:06:06.677 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 20/50, Train Loss: 0.031454809787836706, Val Loss: 0.03185088081738433 +2024-07-19 15:06:07.612 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 21/50, Train Loss: 0.03135252208704804, Val Loss: 0.03252655695620421 +2024-07-19 15:06:08.541 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 22/50, Train Loss: 0.031066397071949074, Val Loss: 0.03191425173065147 +2024-07-19 15:06:09.456 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 23/50, Train Loss: 0.03143867369290892, Val Loss: 0.03144056188899118 +2024-07-19 15:06:10.370 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 24/50, Train Loss: 0.031048668046983387, Val Loss: 0.03161308229775042 +2024-07-19 15:06:11.264 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 25/50, Train Loss: 0.03108062699519016, Val Loss: 0.031214665319468524 +2024-07-19 15:06:12.109 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 26/50, Train Loss: 0.03099949582183099, Val Loss: 0.031117027927492116 +2024-07-19 15:06:13.035 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 27/50, Train Loss: 0.03135027919619621, Val Loss: 0.03164626225023656 +2024-07-19 15:06:13.893 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 28/50, Train Loss: 0.03120255379190484, Val Loss: 0.03147612366120558 +2024-07-19 15:06:14.719 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 29/50, Train Loss: 0.03103009163105226, Val Loss: 0.03114617938125456 +2024-07-19 15:06:15.537 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 30/50, Train Loss: 0.031008349762267465, Val Loss: 0.03130588237498257 +2024-07-19 15:06:16.366 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 31/50, Train Loss: 0.031208040632798778, Val Loss: 0.031702035383598226 +2024-07-19 15:06:17.186 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 32/50, Train Loss: 0.031031583282318743, Val Loss: 0.03176306193140713 +2024-07-19 15:06:18.049 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 33/50, Train Loss: 0.030815215812034006, Val Loss: 0.03148386305248415 +2024-07-19 15:06:18.905 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 34/50, Train Loss: 0.030503174290060997, Val Loss: 0.031228294394708967 +2024-07-19 15:06:19.722 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 35/50, Train Loss: 0.030439020062868413, Val Loss: 0.03148252365959657 +2024-07-19 15:06:20.555 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 36/50, Train Loss: 0.030517715418322402, Val Loss: 0.0318017481146632 +2024-07-19 15:06:21.379 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 37/50, Train Loss: 0.03041485905811027, Val Loss: 0.03158246192174989 +2024-07-19 15:06:22.212 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 38/50, Train Loss: 0.03046865445039757, Val Loss: 0.032406606988326925 +2024-07-19 15:06:23.033 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 39/50, Train Loss: 0.03034750512381504, Val Loss: 0.03254436958279159 +2024-07-19 15:06:23.869 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 40/50, Train Loss: 0.030670746311463496, Val Loss: 0.03256113112375543 +2024-07-19 15:06:24.693 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 41/50, Train Loss: 0.03029606760489744, Val Loss: 0.0310743613218939 +2024-07-19 15:06:25.539 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 42/50, Train Loss: 0.030511576088738966, Val Loss: 0.030686570180428994 +2024-07-19 15:06:26.451 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 43/50, Train Loss: 0.03027239773463417, Val Loss: 0.030948984814254014 +2024-07-19 15:06:27.305 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 44/50, Train Loss: 0.030290189547116285, Val Loss: 0.03167498836646209 +2024-07-19 15:06:28.155 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 45/50, Train Loss: 0.030204887399552287, Val Loss: 0.0313763283696529 +2024-07-19 15:06:29.033 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 46/50, Train Loss: 0.03022897921011343, Val Loss: 0.03213181386928301 +2024-07-19 15:06:29.858 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 47/50, Train Loss: 0.030217446908764132, Val Loss: 0.031220321669369132 +2024-07-19 15:06:30.740 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 48/50, Train Loss: 0.030187979647582703, Val Loss: 0.031600392448741035 +2024-07-19 15:06:31.664 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 49/50, Train Loss: 0.030238494062079832, Val Loss: 0.03180714651338152 +2024-07-19 15:06:32.555 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 50/50, Train Loss: 0.030053015409426374, Val Loss: 0.03153329025450591 +2024-07-19 15:06:32.555 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Fold 4, MAPE: 2.74% +2024-07-19 15:06:32.678 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Training image saved at metaflow_models//bgd_office_100001_200000_LSTM//train_f4_bgd_office_100001_200000_LSTM.png +2024-07-19 15:06:37.220 [20/cross_validate_train/243 (pid 11007)] Task finished successfully. +2024-07-19 15:06:37.253 [20/model_scores/244 (pid 11628)] Task is starting. +2024-07-19 15:06:38.720 [20/model_scores/244 (pid 11628)] INFO:__main__:Average Train Loss across all folds: 0.03410695416900295 +2024-07-19 15:06:42.884 [20/model_scores/244 (pid 11628)] INFO:__main__:Average Validation Loss across all folds: 0.0377574419753777 +2024-07-19 15:06:42.884 [20/model_scores/244 (pid 11628)] INFO:__main__:Average MAPE across all folds: 3.02% +2024-07-19 15:06:42.885 [20/model_scores/244 (pid 11628)] Task finished successfully. +2024-07-19 15:06:42.919 [20/validate_model/245 (pid 11667)] Task is starting. +2024-07-19 15:06:44.498 [20/validate_model/245 (pid 11667)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 15:06:44.646 [20/validate_model/245 (pid 11667)] INFO:__main__:Test Set MAPE: 2.97% +2024-07-19 15:06:45.040 [20/validate_model/245 (pid 11667)] INFO:__main__:Test image saved at metaflow_models//bgd_office_100001_200000_LSTM//test_bgd_office_100001_200000_LSTM.png +2024-07-19 15:06:45.453 [20/validate_model/245 (pid 11667)] Task finished successfully. +2024-07-19 15:06:45.481 [20/log_model/246 (pid 11684)] Task is starting. +2024-07-19 15:06:46.947 [20/log_model/246 (pid 11684)] INFO:__main__:Logging model bgd_office_100001_200000_LSTM +2024-07-19 15:06:46.948 [20/log_model/246 (pid 11684)] INFO:__main__:Model logged at metaflow_models//bgd_office_100001_200000_LSTM//bgd_office_100001_200000_LSTM.pth +2024-07-19 15:06:50.826 [20/log_model/246 (pid 11684)] Task finished successfully. +2024-07-19 15:06:50.859 [20/end/247 (pid 11723)] Task is starting. +2024-07-19 15:06:52.417 [20/end/247 (pid 11723)] INFO:__main__:Pipeline end. +2024-07-19 15:06:52.751 [20/end/247 (pid 11723)] Task finished successfully. +2024-07-19 15:06:52.751 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/20') succeeded: +-- stdout -- +2024-07-19 15:03:38.602 Workflow starting (run-id 20): +2024-07-19 15:03:38.692 [20/start/235 (pid 10833)] Task is starting. +2024-07-19 15:03:40.180 [20/start/235 (pid 10833)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 15:03:40.480 [20/start/235 (pid 10833)] Task finished successfully. +2024-07-19 15:03:40.507 [20/ingest/236 (pid 10847)] Task is starting. +2024-07-19 15:03:41.978 [20/ingest/236 (pid 10847)] INFO:__main__:Fetching dataframe.. +2024-07-19 15:03:41.994 [20/ingest/236 (pid 10847)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 15:03:46.009 [20/ingest/236 (pid 10847)] Task finished successfully. +2024-07-19 15:03:46.042 [20/pick_2017_data/237 (pid 10871)] Task is starting. +2024-07-19 15:03:47.531 [20/pick_2017_data/237 (pid 10871)] INFO:__main__:Picking 2017 data.. +2024-07-19 15:03:47.850 [20/pick_2017_data/237 (pid 10871)] Task finished successfully. +2024-07-19 15:03:47.880 [20/fill_missing_data/238 (pid 10882)] Task is starting. +2024-07-19 15:03:49.396 [20/fill_missing_data/238 (pid 10882)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] INFO:__main__:NaN counts per column: +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] INFO:__main__:Panther_office_Patti 12 +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] Fox_office_Israel 2 +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] Fox_office_Thelma 1 +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] Fox_office_Yong 1 +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] Shrew_office_Sherill 8160 +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] Cockatoo_office_Laila 113 +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] dtype: int64 +2024-07-19 15:03:49.402 [20/fill_missing_data/238 (pid 10882)] --- Logging error --- +2024-07-19 15:03:49.403 [20/fill_missing_data/238 (pid 10882)] Traceback (most recent call last): +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] msg = self.format(record) +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] return fmt.format(record) +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] record.message = record.getMessage() +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] msg = msg % self.args +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] TypeError: not all arguments converted during string formatting +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] Call stack: +2024-07-19 15:03:49.404 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] BGD_LinearFlow() +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] cli.main(self) +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] return func(*args, **kwargs) +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] return self.main(*args, **kwargs) +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] rv = self.invoke(ctx) +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 15:03:54.968 [20/fill_missing_data/238 (pid 10882)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] return callback(*args, **kwargs) +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] return f(get_current_context(), *args, **kwargs) +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] task.run_step( +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] self._exec_step_function(step_func) +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] step_function() +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] self.missing_values = find_nan_counts(self.df) +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 15:03:54.969 [20/fill_missing_data/238 (pid 10882)] Arguments: (8289,) +2024-07-19 15:03:54.970 [20/fill_missing_data/238 (pid 10882)] Task finished successfully. +2024-07-19 15:03:55.005 [20/find_median/239 (pid 10918)] Task is starting. +2024-07-19 15:03:56.671 [20/find_median/239 (pid 10918)] INFO:__main__:Computing and using median.. +2024-07-19 15:03:57.235 [20/find_median/239 (pid 10918)] Task finished successfully. +2024-07-19 15:03:57.272 [20/aggregate_data/240 (pid 10929)] Task is starting. +2024-07-19 15:03:58.833 [20/aggregate_data/240 (pid 10929)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 15:04:03.109 [20/aggregate_data/240 (pid 10929)] Task finished successfully. +2024-07-19 15:04:03.150 [20/split_data/241 (pid 10963)] Task is starting. +2024-07-19 15:04:04.737 [20/split_data/241 (pid 10963)] INFO:__main__:Splitting data into test and train... +2024-07-19 15:04:09.075 [20/split_data/241 (pid 10963)] Task finished successfully. +2024-07-19 15:04:09.109 [20/make_x_y/242 (pid 10996)] Task is starting. +2024-07-19 15:04:11.017 [20/make_x_y/242 (pid 10996)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 15:04:11.334 [20/make_x_y/242 (pid 10996)] Shape of y_train: (6978, 1) +2024-07-19 15:04:11.335 [20/make_x_y/242 (pid 10996)] Shape of X_test: (1722, 30, 1) +2024-07-19 15:04:11.335 [20/make_x_y/242 (pid 10996)] Shape of y_test: (1722, 1) +2024-07-19 15:04:11.335 [20/make_x_y/242 (pid 10996)] Task finished successfully. +2024-07-19 15:04:11.377 [20/cross_validate_train/243 (pid 11007)] Task is starting. +2024-07-19 15:04:12.893 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Creating bgd_office_100001_200000_LSTM +2024-07-19 15:04:12.893 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Performing cross validation.. +2024-07-19 15:04:13.629 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 1/50, Train Loss: 0.22051807513108124, Val Loss: 0.20894332612688477 +2024-07-19 15:04:13.832 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 2/50, Train Loss: 0.16673750148431674, Val Loss: 0.2027353728945191 +2024-07-19 15:04:14.036 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 3/50, Train Loss: 0.15841711936770259, Val Loss: 0.19125719851738698 +2024-07-19 15:04:14.236 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 4/50, Train Loss: 0.1505677776562201, Val Loss: 0.17681309278752352 +2024-07-19 15:04:14.437 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 5/50, Train Loss: 0.13887177790338928, Val Loss: 0.15915971611802643 +2024-07-19 15:04:14.638 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 6/50, Train Loss: 0.12444062994138615, Val Loss: 0.13642362555539286 +2024-07-19 15:04:14.844 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 7/50, Train Loss: 0.10800282234275663, Val Loss: 0.11122423249322015 +2024-07-19 15:04:15.050 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 8/50, Train Loss: 0.09182280694713464, Val Loss: 0.09367193946161785 +2024-07-19 15:04:15.259 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 9/50, Train Loss: 0.07980609755661036, Val Loss: 0.08064176212694193 +2024-07-19 15:04:15.462 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 10/50, Train Loss: 0.07159114679371989, Val Loss: 0.07490520712894362 +2024-07-19 15:04:15.671 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 11/50, Train Loss: 0.06589491625089904, Val Loss: 0.07246203670227849 +2024-07-19 15:04:15.880 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 12/50, Train Loss: 0.06271088687149254, Val Loss: 0.07040249052885417 +2024-07-19 15:04:16.090 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 13/50, Train Loss: 0.06146150318956053, Val Loss: 0.06839599480500093 +2024-07-19 15:04:16.297 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 14/50, Train Loss: 0.059325599036103974, Val Loss: 0.06588667168005093 +2024-07-19 15:04:16.511 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 15/50, Train Loss: 0.05739834280432882, Val Loss: 0.062200058553669904 +2024-07-19 15:04:16.719 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 16/50, Train Loss: 0.054848532670655765, Val Loss: 0.057534159840764224 +2024-07-19 15:04:16.930 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 17/50, Train Loss: 0.05356457074348991, Val Loss: 0.05823123857781694 +2024-07-19 15:04:17.161 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 18/50, Train Loss: 0.05185830985774865, Val Loss: 0.05639139180247848 +2024-07-19 15:04:17.370 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 19/50, Train Loss: 0.05103402166954569, Val Loss: 0.05566032240922387 +2024-07-19 15:04:17.581 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 20/50, Train Loss: 0.04945431448317863, Val Loss: 0.05374738563959663 +2024-07-19 15:04:17.800 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 21/50, Train Loss: 0.0490799493886329, Val Loss: 0.053918201879069615 +2024-07-19 15:04:18.055 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 22/50, Train Loss: 0.04887011491164968, Val Loss: 0.05276128508754679 +2024-07-19 15:04:18.263 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 23/50, Train Loss: 0.048132216507518616, Val Loss: 0.05265031452919986 +2024-07-19 15:04:18.485 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 24/50, Train Loss: 0.04725554011560775, Val Loss: 0.05202306273418504 +2024-07-19 15:04:18.741 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 25/50, Train Loss: 0.04721999399968096, Val Loss: 0.05217398874260284 +2024-07-19 15:04:18.966 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 26/50, Train Loss: 0.047141274789700635, Val Loss: 0.05137668006323479 +2024-07-19 15:04:19.213 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 27/50, Train Loss: 0.046701939273122196, Val Loss: 0.05125140821611559 +2024-07-19 15:04:19.444 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 28/50, Train Loss: 0.0465934595747574, Val Loss: 0.05083693110862294 +2024-07-19 15:04:19.678 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 29/50, Train Loss: 0.0467741669633904, Val Loss: 0.05135998552715456 +2024-07-19 15:04:19.895 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 30/50, Train Loss: 0.047124902541572984, Val Loss: 0.052036435016103694 +2024-07-19 15:04:20.113 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 31/50, Train Loss: 0.04664094972650747, Val Loss: 0.05149007830265406 +2024-07-19 15:04:20.339 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 32/50, Train Loss: 0.0460965013181841, Val Loss: 0.05084559452292081 +2024-07-19 15:04:20.564 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 33/50, Train Loss: 0.04628829768783337, Val Loss: 0.05145802318647101 +2024-07-19 15:04:20.782 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 34/50, Train Loss: 0.04600103431054064, Val Loss: 0.05107333068106625 +2024-07-19 15:04:21.005 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 35/50, Train Loss: 0.04556651181868605, Val Loss: 0.05101458667903333 +2024-07-19 15:04:21.234 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 36/50, Train Loss: 0.045553858970870845, Val Loss: 0.049576145168897266 +2024-07-19 15:04:21.477 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 37/50, Train Loss: 0.045344224954779085, Val Loss: 0.04992755734034487 +2024-07-19 15:04:21.689 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 38/50, Train Loss: 0.045119905038862616, Val Loss: 0.049637310206890106 +2024-07-19 15:04:21.923 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 39/50, Train Loss: 0.04490954408774505, Val Loss: 0.049608065570528444 +2024-07-19 15:04:22.154 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 40/50, Train Loss: 0.04513425390059884, Val Loss: 0.05064853633175025 +2024-07-19 15:04:22.392 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 41/50, Train Loss: 0.044714017796355324, Val Loss: 0.04983583223578092 +2024-07-19 15:04:22.618 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 42/50, Train Loss: 0.044401397274152654, Val Loss: 0.04989018985951269 +2024-07-19 15:04:22.881 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 43/50, Train Loss: 0.044275715947151184, Val Loss: 0.04884836812679832 +2024-07-19 15:04:23.107 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 44/50, Train Loss: 0.044261341612484004, Val Loss: 0.049829600932630336 +2024-07-19 15:04:23.348 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 45/50, Train Loss: 0.04452549691337186, Val Loss: 0.05002056203178457 +2024-07-19 15:04:23.581 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 46/50, Train Loss: 0.04424509995088384, Val Loss: 0.04926751966814737 +2024-07-19 15:04:23.810 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 47/50, Train Loss: 0.04376789559987751, Val Loss: 0.049345272417004045 +2024-07-19 15:04:24.031 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 48/50, Train Loss: 0.043705321898734245, Val Loss: 0.048671035347758115 +2024-07-19 15:04:24.256 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 49/50, Train Loss: 0.04356037191039807, Val Loss: 0.04884819263542021 +2024-07-19 15:04:24.474 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 50/50, Train Loss: 0.0434772117516479, Val Loss: 0.04910292667714325 +2024-07-19 15:04:24.475 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Fold 0, MAPE: 3.12% +2024-07-19 15:04:24.879 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Training image saved at metaflow_models//bgd_office_100001_200000_LSTM//train_f0_bgd_office_100001_200000_LSTM.png +2024-07-19 15:04:25.360 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 1/50, Train Loss: 0.03778495800311435, Val Loss: 0.03697498505179946 +2024-07-19 15:04:25.758 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 2/50, Train Loss: 0.03474674812734944, Val Loss: 0.03679163351252272 +2024-07-19 15:04:26.140 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 3/50, Train Loss: 0.03437305369401631, Val Loss: 0.036372508450939846 +2024-07-19 15:04:26.512 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 4/50, Train Loss: 0.034444131518471734, Val Loss: 0.036487265766875165 +2024-07-19 15:04:26.886 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 5/50, Train Loss: 0.03418701616664455, Val Loss: 0.0374384693600036 +2024-07-19 15:04:27.255 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 6/50, Train Loss: 0.034248468351282486, Val Loss: 0.036932942734376806 +2024-07-19 15:04:27.614 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 7/50, Train Loss: 0.03418012945721411, Val Loss: 0.03627522908956618 +2024-07-19 15:04:27.979 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 8/50, Train Loss: 0.03399808758436001, Val Loss: 0.03630018123501056 +2024-07-19 15:04:28.367 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 9/50, Train Loss: 0.03391705420225451, Val Loss: 0.036740118083921636 +2024-07-19 15:04:28.727 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 10/50, Train Loss: 0.033979463097575595, Val Loss: 0.03611701439965416 +2024-07-19 15:04:29.093 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 11/50, Train Loss: 0.03386713801691794, Val Loss: 0.03581275161657784 +2024-07-19 15:04:29.455 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 12/50, Train Loss: 0.03407375466027488, Val Loss: 0.03564470014660745 +2024-07-19 15:04:29.818 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 13/50, Train Loss: 0.033608462508410625, Val Loss: 0.03628034532271527 +2024-07-19 15:04:30.183 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 14/50, Train Loss: 0.03397657298674322, Val Loss: 0.03537570232072392 +2024-07-19 15:04:30.540 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 15/50, Train Loss: 0.033759173669227184, Val Loss: 0.036235580925603174 +2024-07-19 15:04:30.906 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 16/50, Train Loss: 0.03381541330520421, Val Loss: 0.03510202069741648 +2024-07-19 15:04:31.308 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 17/50, Train Loss: 0.03357582672001564, Val Loss: 0.03552474016071977 +2024-07-19 15:04:31.705 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 18/50, Train Loss: 0.03376928316301679, Val Loss: 0.03528517978014173 +2024-07-19 15:04:32.061 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 19/50, Train Loss: 0.03381640091538429, Val Loss: 0.03534810184626966 +2024-07-19 15:04:32.460 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 20/50, Train Loss: 0.03361596284459715, Val Loss: 0.03602873559135038 +2024-07-19 15:04:32.819 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 21/50, Train Loss: 0.03388456819094207, Val Loss: 0.03527952207101358 +2024-07-19 15:04:33.230 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 22/50, Train Loss: 0.033798712548123645, Val Loss: 0.035350980941911005 +2024-07-19 15:04:33.665 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 23/50, Train Loss: 0.03389199226074023, Val Loss: 0.035186866550026716 +2024-07-19 15:04:34.110 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 24/50, Train Loss: 0.03386023053771829, Val Loss: 0.03547220677137375 +2024-07-19 15:04:34.494 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 25/50, Train Loss: 0.03386075521678957, Val Loss: 0.036545604316366685 +2024-07-19 15:04:34.893 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 26/50, Train Loss: 0.033598018988762815, Val Loss: 0.03521154760508924 +2024-07-19 15:04:35.263 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 27/50, Train Loss: 0.03367832642405817, Val Loss: 0.037128651262940585 +2024-07-19 15:04:35.697 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 28/50, Train Loss: 0.03361387726889081, Val Loss: 0.03674327561984191 +2024-07-19 15:04:36.128 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 29/50, Train Loss: 0.03350615052327718, Val Loss: 0.03650352237997828 +2024-07-19 15:04:36.587 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 30/50, Train Loss: 0.033624106023001345, Val Loss: 0.03586091242126516 +2024-07-19 15:04:37.039 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 31/50, Train Loss: 0.03359356867021894, Val Loss: 0.03605796366527274 +2024-07-19 15:04:37.451 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 32/50, Train Loss: 0.03359832900435957, Val Loss: 0.035957647185470606 +2024-07-19 15:04:37.831 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 33/50, Train Loss: 0.03344714667086732, Val Loss: 0.03553736084014983 +2024-07-19 15:04:38.199 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 34/50, Train Loss: 0.03341620759910917, Val Loss: 0.03582756120610882 +2024-07-19 15:04:38.580 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 35/50, Train Loss: 0.03348831299131047, Val Loss: 0.03531536142769698 +2024-07-19 15:04:38.990 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 36/50, Train Loss: 0.033417190897138155, Val Loss: 0.036743583208000336 +2024-07-19 15:04:39.419 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 37/50, Train Loss: 0.033365762754254145, Val Loss: 0.03610508103628416 +2024-07-19 15:04:39.818 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 38/50, Train Loss: 0.03353390995770285, Val Loss: 0.03636853905344332 +2024-07-19 15:04:40.227 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 39/50, Train Loss: 0.033305466710908775, Val Loss: 0.036950567183462346 +2024-07-19 15:04:40.595 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 40/50, Train Loss: 0.03320965933779331, Val Loss: 0.03584048630216637 +2024-07-19 15:04:40.982 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 41/50, Train Loss: 0.033523265476504416, Val Loss: 0.036946685481313114 +2024-07-19 15:04:41.408 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 42/50, Train Loss: 0.03327380748440142, Val Loss: 0.03610821732798138 +2024-07-19 15:04:41.787 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 43/50, Train Loss: 0.03343278759044327, Val Loss: 0.036713732406497 +2024-07-19 15:04:42.183 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 44/50, Train Loss: 0.03328438853360202, Val Loss: 0.03512465178563788 +2024-07-19 15:04:42.586 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 45/50, Train Loss: 0.03339382674391955, Val Loss: 0.03777418527248744 +2024-07-19 15:04:43.008 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 46/50, Train Loss: 0.03340626770809089, Val Loss: 0.03645892431204383 +2024-07-19 15:04:43.434 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 47/50, Train Loss: 0.03327846907283345, Val Loss: 0.03712782752070878 +2024-07-19 15:04:43.861 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 48/50, Train Loss: 0.03333836972509345, Val Loss: 0.03646465531877569 +2024-07-19 15:04:44.292 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 49/50, Train Loss: 0.033157114041586444, Val Loss: 0.035372285726102626 +2024-07-19 15:04:44.712 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 50/50, Train Loss: 0.03328947705050854, Val Loss: 0.03690278912718232 +2024-07-19 15:04:44.713 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Fold 1, MAPE: 3.10% +2024-07-19 15:04:44.826 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Training image saved at metaflow_models//bgd_office_100001_200000_LSTM//train_f1_bgd_office_100001_200000_LSTM.png +2024-07-19 15:04:45.428 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 1/50, Train Loss: 0.033992910181934184, Val Loss: 0.03778290471716507 +2024-07-19 15:04:45.980 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 2/50, Train Loss: 0.03421246497468515, Val Loss: 0.036948209779488074 +2024-07-19 15:04:46.539 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 3/50, Train Loss: 0.0340930217707699, Val Loss: 0.03762249024333181 +2024-07-19 15:04:47.113 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 4/50, Train Loss: 0.034169380265203386, Val Loss: 0.03895337799110928 +2024-07-19 15:04:47.685 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 5/50, Train Loss: 0.03414974481883374, Val Loss: 0.03873740035939861 +2024-07-19 15:04:48.240 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 6/50, Train Loss: 0.034084078872745685, Val Loss: 0.0396696971477689 +2024-07-19 15:04:48.809 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 7/50, Train Loss: 0.03412064967507666, Val Loss: 0.038916462629630756 +2024-07-19 15:04:49.395 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 8/50, Train Loss: 0.03406939382918856, Val Loss: 0.03787894607395739 +2024-07-19 15:04:49.948 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 9/50, Train Loss: 0.0343369398266077, Val Loss: 0.0389757630591457 +2024-07-19 15:04:50.498 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 10/50, Train Loss: 0.034363040802153674, Val Loss: 0.038146908722213796 +2024-07-19 15:04:51.071 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 11/50, Train Loss: 0.03403322486714883, Val Loss: 0.03799205072022773 +2024-07-19 15:04:51.681 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 12/50, Train Loss: 0.034152346629310736, Val Loss: 0.03845872020197881 +2024-07-19 15:04:52.288 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 13/50, Train Loss: 0.03414537105709314, Val Loss: 0.03760621716847291 +2024-07-19 15:04:52.831 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 14/50, Train Loss: 0.03390700014477426, Val Loss: 0.037048049170423196 +2024-07-19 15:04:53.348 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 15/50, Train Loss: 0.03367912102152001, Val Loss: 0.03795033069075765 +2024-07-19 15:04:53.921 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 16/50, Train Loss: 0.03387156704610044, Val Loss: 0.03566478071986018 +2024-07-19 15:04:54.469 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 17/50, Train Loss: 0.03367345490577546, Val Loss: 0.03699902117856451 +2024-07-19 15:04:55.036 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 18/50, Train Loss: 0.033856854536993934, Val Loss: 0.03640585161141447 +2024-07-19 15:04:55.637 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 19/50, Train Loss: 0.03358889577740973, Val Loss: 0.03646297697481271 +2024-07-19 15:04:56.176 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 20/50, Train Loss: 0.033673276481303305, Val Loss: 0.03663841614852081 +2024-07-19 15:04:56.691 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 21/50, Train Loss: 0.033524274910715496, Val Loss: 0.03624023476967941 +2024-07-19 15:04:57.233 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 22/50, Train Loss: 0.03348589898510413, Val Loss: 0.03747692014518622 +2024-07-19 15:04:57.751 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 23/50, Train Loss: 0.0336133786900477, Val Loss: 0.03674786266040157 +2024-07-19 15:04:58.339 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 24/50, Train Loss: 0.033640589920634574, Val Loss: 0.03563247621059418 +2024-07-19 15:04:58.933 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 25/50, Train Loss: 0.03348538064482537, Val Loss: 0.03609674282976099 +2024-07-19 15:04:59.506 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 26/50, Train Loss: 0.03344505224376917, Val Loss: 0.03744146539955526 +2024-07-19 15:05:00.068 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 27/50, Train Loss: 0.03345149636945941, Val Loss: 0.03766221130216444 +2024-07-19 15:05:00.603 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 28/50, Train Loss: 0.033652798577465795, Val Loss: 0.038970451802015305 +2024-07-19 15:05:01.182 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 29/50, Train Loss: 0.03364307843148708, Val Loss: 0.036924600248803965 +2024-07-19 15:05:01.753 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 30/50, Train Loss: 0.033388902399350294, Val Loss: 0.037922784786772086 +2024-07-19 15:05:02.303 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 31/50, Train Loss: 0.03329612385820259, Val Loss: 0.038749088306684755 +2024-07-19 15:05:02.899 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 32/50, Train Loss: 0.033412226831371135, Val Loss: 0.03903967353540498 +2024-07-19 15:05:03.463 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 33/50, Train Loss: 0.03342379047112031, Val Loss: 0.037283063438293094 +2024-07-19 15:05:04.034 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 34/50, Train Loss: 0.033151222494515506, Val Loss: 0.03713772657352525 +2024-07-19 15:05:04.610 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 35/50, Train Loss: 0.03305325868793509, Val Loss: 0.03731859445169165 +2024-07-19 15:05:05.168 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 36/50, Train Loss: 0.03318720012903213, Val Loss: 0.036858791183378245 +2024-07-19 15:05:05.739 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 37/50, Train Loss: 0.03320913492617282, Val Loss: 0.03684778290020453 +2024-07-19 15:05:06.314 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 38/50, Train Loss: 0.03309409752149473, Val Loss: 0.036249691771494376 +2024-07-19 15:05:06.887 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 39/50, Train Loss: 0.03290876905349168, Val Loss: 0.03644594207808778 +2024-07-19 15:05:07.465 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 40/50, Train Loss: 0.03305529569360343, Val Loss: 0.0356642171941899 +2024-07-19 15:05:08.037 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 41/50, Train Loss: 0.03290475754236633, Val Loss: 0.03553217775314241 +2024-07-19 15:05:08.608 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 42/50, Train Loss: 0.03293954818086191, Val Loss: 0.03571064981657106 +2024-07-19 15:05:09.155 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 43/50, Train Loss: 0.032853249460458755, Val Loss: 0.03474176529090147 +2024-07-19 15:05:09.718 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 44/50, Train Loss: 0.03269164768809622, Val Loss: 0.035044060063523216 +2024-07-19 15:05:10.254 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 45/50, Train Loss: 0.03270389310676943, Val Loss: 0.03465378797940306 +2024-07-19 15:05:10.779 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 46/50, Train Loss: 0.03253585482862863, Val Loss: 0.03490107274941496 +2024-07-19 15:05:11.304 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 47/50, Train Loss: 0.03254574987698685, Val Loss: 0.03353578088855421 +2024-07-19 15:05:11.835 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 48/50, Train Loss: 0.03261636146767573, Val Loss: 0.035109018655242144 +2024-07-19 15:05:12.346 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 49/50, Train Loss: 0.03233315644955093, Val Loss: 0.033628128267623285 +2024-07-19 15:05:12.860 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 50/50, Train Loss: 0.03230973793701692, Val Loss: 0.036514184865597134 +2024-07-19 15:05:12.860 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Fold 2, MAPE: 3.13% +2024-07-19 15:05:12.974 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Training image saved at metaflow_models//bgd_office_100001_200000_LSTM//train_f2_bgd_office_100001_200000_LSTM.png +2024-07-19 15:05:13.668 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 1/50, Train Loss: 0.03242336695835198, Val Loss: 0.03450817217093867 +2024-07-19 15:05:14.337 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 2/50, Train Loss: 0.03282030264859739, Val Loss: 0.034796220980383256 +2024-07-19 15:05:15.002 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 3/50, Train Loss: 0.0329081532609177, Val Loss: 0.034897001107802264 +2024-07-19 15:05:15.716 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 4/50, Train Loss: 0.03267539875607376, Val Loss: 0.034790985185552285 +2024-07-19 15:05:16.461 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 5/50, Train Loss: 0.03249495630854205, Val Loss: 0.03467844028932017 +2024-07-19 15:05:17.178 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 6/50, Train Loss: 0.03259864408675939, Val Loss: 0.03454528094546215 +2024-07-19 15:05:17.870 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 7/50, Train Loss: 0.03243467087972246, Val Loss: 0.03495785820524435 +2024-07-19 15:05:18.562 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 8/50, Train Loss: 0.03242964106165383, Val Loss: 0.0354102602278864 +2024-07-19 15:05:19.253 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 9/50, Train Loss: 0.03232113578139919, Val Loss: 0.03612752515520599 +2024-07-19 15:05:19.942 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 10/50, Train Loss: 0.03238344867394803, Val Loss: 0.03534756349147977 +2024-07-19 15:05:20.657 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 11/50, Train Loss: 0.03242085329320741, Val Loss: 0.03535835741943604 +2024-07-19 15:05:21.412 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 12/50, Train Loss: 0.03227444183183451, Val Loss: 0.03610511330535283 +2024-07-19 15:05:22.106 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 13/50, Train Loss: 0.032267728412192165, Val Loss: 0.03601612563471537 +2024-07-19 15:05:22.822 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 14/50, Train Loss: 0.03236875054107545, Val Loss: 0.034587826428783906 +2024-07-19 15:05:23.576 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 15/50, Train Loss: 0.032192084670373024, Val Loss: 0.035022251257622566 +2024-07-19 15:05:24.285 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 16/50, Train Loss: 0.03230213607367996, Val Loss: 0.03508244706569491 +2024-07-19 15:05:24.985 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 17/50, Train Loss: 0.032142746198463114, Val Loss: 0.03509444768565732 +2024-07-19 15:05:25.702 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 18/50, Train Loss: 0.03213106999046182, Val Loss: 0.03505076080359317 +2024-07-19 15:05:26.437 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 19/50, Train Loss: 0.032008334165056274, Val Loss: 0.03520019135966494 +2024-07-19 15:05:27.141 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 20/50, Train Loss: 0.0322155202547573, Val Loss: 0.0351067840851642 +2024-07-19 15:05:27.866 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 21/50, Train Loss: 0.03211436754934592, Val Loss: 0.03521169626430885 +2024-07-19 15:05:28.631 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 22/50, Train Loss: 0.03196873344889242, Val Loss: 0.03538857586681843 +2024-07-19 15:05:29.330 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 23/50, Train Loss: 0.031986959010668815, Val Loss: 0.035096256414780744 +2024-07-19 15:05:30.052 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 24/50, Train Loss: 0.03192849626943265, Val Loss: 0.03494441036034275 +2024-07-19 15:05:30.721 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 25/50, Train Loss: 0.03197148008501693, Val Loss: 0.03461912148506255 +2024-07-19 15:05:31.400 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 26/50, Train Loss: 0.03193311915056755, Val Loss: 0.03467562432224686 +2024-07-19 15:05:32.107 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 27/50, Train Loss: 0.03190821150241241, Val Loss: 0.034974245958634326 +2024-07-19 15:05:32.832 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 28/50, Train Loss: 0.0318369590103218, Val Loss: 0.034856003432257754 +2024-07-19 15:05:33.579 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 29/50, Train Loss: 0.031688885316763026, Val Loss: 0.035789405524327945 +2024-07-19 15:05:34.332 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 30/50, Train Loss: 0.03177323402862434, Val Loss: 0.034805993977430706 +2024-07-19 15:05:35.033 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 31/50, Train Loss: 0.03175239937303409, Val Loss: 0.03591634232450176 +2024-07-19 15:05:35.695 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 32/50, Train Loss: 0.03179091748411525, Val Loss: 0.0346492497200096 +2024-07-19 15:05:36.359 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 33/50, Train Loss: 0.03169943198357543, Val Loss: 0.034730664177520854 +2024-07-19 15:05:37.022 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 34/50, Train Loss: 0.03158569602576429, Val Loss: 0.035013900717368 +2024-07-19 15:05:37.757 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 35/50, Train Loss: 0.031632579429304766, Val Loss: 0.034209955231966196 +2024-07-19 15:05:38.412 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 36/50, Train Loss: 0.03161256451618998, Val Loss: 0.03602859745355877 +2024-07-19 15:05:39.159 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 37/50, Train Loss: 0.03163247583561564, Val Loss: 0.03453959585041613 +2024-07-19 15:05:39.868 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 38/50, Train Loss: 0.03159788045521877, Val Loss: 0.0341755964768094 +2024-07-19 15:05:40.554 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 39/50, Train Loss: 0.031584409601374035, Val Loss: 0.03433180675917381 +2024-07-19 15:05:41.224 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 40/50, Train Loss: 0.03170514175642843, Val Loss: 0.03536844006865411 +2024-07-19 15:05:41.918 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 41/50, Train Loss: 0.03166758470645506, Val Loss: 0.0341823830495815 +2024-07-19 15:05:42.646 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 42/50, Train Loss: 0.03155848820221751, Val Loss: 0.03580384968301734 +2024-07-19 15:05:43.437 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 43/50, Train Loss: 0.03145702781589472, Val Loss: 0.03593112835408868 +2024-07-19 15:05:44.205 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 44/50, Train Loss: 0.031561740941993176, Val Loss: 0.03391018821983724 +2024-07-19 15:05:45.036 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 45/50, Train Loss: 0.03134914824407395, Val Loss: 0.03480877450390442 +2024-07-19 15:05:45.748 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 46/50, Train Loss: 0.03124282154420467, Val Loss: 0.035161242140708746 +2024-07-19 15:05:46.471 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 47/50, Train Loss: 0.031372548833693545, Val Loss: 0.035921500441995824 +2024-07-19 15:05:47.204 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 48/50, Train Loss: 0.03139642396405952, Val Loss: 0.03590870890262965 +2024-07-19 15:05:47.981 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 49/50, Train Loss: 0.031408888249568744, Val Loss: 0.03536273312528391 +2024-07-19 15:05:48.653 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 50/50, Train Loss: 0.03140532869641503, Val Loss: 0.0347340189524599 +2024-07-19 15:05:48.653 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Fold 3, MAPE: 3.00% +2024-07-19 15:05:48.771 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Training image saved at metaflow_models//bgd_office_100001_200000_LSTM//train_f3_bgd_office_100001_200000_LSTM.png +2024-07-19 15:05:49.656 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 1/50, Train Loss: 0.03206203449108116, Val Loss: 0.03427512153379015 +2024-07-19 15:05:50.487 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 2/50, Train Loss: 0.032144001633911345, Val Loss: 0.03461489876782572 +2024-07-19 15:05:51.325 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 3/50, Train Loss: 0.032027375393107044, Val Loss: 0.034241186706600965 +2024-07-19 15:05:52.318 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 4/50, Train Loss: 0.03197281567154677, Val Loss: 0.03392369078623282 +2024-07-19 15:05:53.188 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 5/50, Train Loss: 0.03189765007982215, Val Loss: 0.03381440622379651 +2024-07-19 15:05:54.159 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 6/50, Train Loss: 0.03194233584780615, Val Loss: 0.03334465210099478 +2024-07-19 15:05:55.043 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 7/50, Train Loss: 0.031881585420406124, Val Loss: 0.033445099570058485 +2024-07-19 15:05:56.045 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 8/50, Train Loss: 0.031604400191169515, Val Loss: 0.03318368291129937 +2024-07-19 15:05:56.954 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 9/50, Train Loss: 0.03155753704217764, Val Loss: 0.033051886419589456 +2024-07-19 15:05:57.797 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 10/50, Train Loss: 0.03158475200717266, Val Loss: 0.03309836364477067 +2024-07-19 15:05:58.639 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 11/50, Train Loss: 0.03166326075014505, Val Loss: 0.03282695807315208 +2024-07-19 15:05:59.533 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 12/50, Train Loss: 0.03147767251869152, Val Loss: 0.032430804611460584 +2024-07-19 15:06:00.389 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 13/50, Train Loss: 0.03150470882326692, Val Loss: 0.03210866149212863 +2024-07-19 15:06:01.264 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 14/50, Train Loss: 0.031278802429909235, Val Loss: 0.03195805882884038 +2024-07-19 15:06:02.247 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 15/50, Train Loss: 0.03128842737239141, Val Loss: 0.03203856491961995 +2024-07-19 15:06:03.192 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 16/50, Train Loss: 0.03132894339428826, Val Loss: 0.031399934024021435 +2024-07-19 15:06:04.061 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 17/50, Train Loss: 0.031323373747559696, Val Loss: 0.03175336746750651 +2024-07-19 15:06:04.954 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 18/50, Train Loss: 0.0313276665817414, Val Loss: 0.03157056973794022 +2024-07-19 15:06:05.788 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 19/50, Train Loss: 0.031147447629616812, Val Loss: 0.031525186137170404 +2024-07-19 15:06:06.677 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 20/50, Train Loss: 0.031454809787836706, Val Loss: 0.03185088081738433 +2024-07-19 15:06:07.612 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 21/50, Train Loss: 0.03135252208704804, Val Loss: 0.03252655695620421 +2024-07-19 15:06:08.541 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 22/50, Train Loss: 0.031066397071949074, Val Loss: 0.03191425173065147 +2024-07-19 15:06:09.456 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 23/50, Train Loss: 0.03143867369290892, Val Loss: 0.03144056188899118 +2024-07-19 15:06:10.370 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 24/50, Train Loss: 0.031048668046983387, Val Loss: 0.03161308229775042 +2024-07-19 15:06:11.264 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 25/50, Train Loss: 0.03108062699519016, Val Loss: 0.031214665319468524 +2024-07-19 15:06:12.109 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 26/50, Train Loss: 0.03099949582183099, Val Loss: 0.031117027927492116 +2024-07-19 15:06:13.035 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 27/50, Train Loss: 0.03135027919619621, Val Loss: 0.03164626225023656 +2024-07-19 15:06:13.893 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 28/50, Train Loss: 0.03120255379190484, Val Loss: 0.03147612366120558 +2024-07-19 15:06:14.719 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 29/50, Train Loss: 0.03103009163105226, Val Loss: 0.03114617938125456 +2024-07-19 15:06:15.537 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 30/50, Train Loss: 0.031008349762267465, Val Loss: 0.03130588237498257 +2024-07-19 15:06:16.366 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 31/50, Train Loss: 0.031208040632798778, Val Loss: 0.031702035383598226 +2024-07-19 15:06:17.186 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 32/50, Train Loss: 0.031031583282318743, Val Loss: 0.03176306193140713 +2024-07-19 15:06:18.049 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 33/50, Train Loss: 0.030815215812034006, Val Loss: 0.03148386305248415 +2024-07-19 15:06:18.905 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 34/50, Train Loss: 0.030503174290060997, Val Loss: 0.031228294394708967 +2024-07-19 15:06:19.722 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 35/50, Train Loss: 0.030439020062868413, Val Loss: 0.03148252365959657 +2024-07-19 15:06:20.555 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 36/50, Train Loss: 0.030517715418322402, Val Loss: 0.0318017481146632 +2024-07-19 15:06:21.379 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 37/50, Train Loss: 0.03041485905811027, Val Loss: 0.03158246192174989 +2024-07-19 15:06:22.212 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 38/50, Train Loss: 0.03046865445039757, Val Loss: 0.032406606988326925 +2024-07-19 15:06:23.033 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 39/50, Train Loss: 0.03034750512381504, Val Loss: 0.03254436958279159 +2024-07-19 15:06:23.869 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 40/50, Train Loss: 0.030670746311463496, Val Loss: 0.03256113112375543 +2024-07-19 15:06:24.693 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 41/50, Train Loss: 0.03029606760489744, Val Loss: 0.0310743613218939 +2024-07-19 15:06:25.539 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 42/50, Train Loss: 0.030511576088738966, Val Loss: 0.030686570180428994 +2024-07-19 15:06:26.451 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 43/50, Train Loss: 0.03027239773463417, Val Loss: 0.030948984814254014 +2024-07-19 15:06:27.305 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 44/50, Train Loss: 0.030290189547116285, Val Loss: 0.03167498836646209 +2024-07-19 15:06:28.155 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 45/50, Train Loss: 0.030204887399552287, Val Loss: 0.0313763283696529 +2024-07-19 15:06:29.033 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 46/50, Train Loss: 0.03022897921011343, Val Loss: 0.03213181386928301 +2024-07-19 15:06:29.858 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 47/50, Train Loss: 0.030217446908764132, Val Loss: 0.031220321669369132 +2024-07-19 15:06:30.740 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 48/50, Train Loss: 0.030187979647582703, Val Loss: 0.031600392448741035 +2024-07-19 15:06:31.664 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 49/50, Train Loss: 0.030238494062079832, Val Loss: 0.03180714651338152 +2024-07-19 15:06:32.555 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Epoch 50/50, Train Loss: 0.030053015409426374, Val Loss: 0.03153329025450591 +2024-07-19 15:06:32.555 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Fold 4, MAPE: 2.74% +2024-07-19 15:06:32.678 [20/cross_validate_train/243 (pid 11007)] INFO:__main__:Training image saved at metaflow_models//bgd_office_100001_200000_LSTM//train_f4_bgd_office_100001_200000_LSTM.png +2024-07-19 15:06:37.220 [20/cross_validate_train/243 (pid 11007)] Task finished successfully. +2024-07-19 15:06:37.253 [20/model_scores/244 (pid 11628)] Task is starting. +2024-07-19 15:06:38.720 [20/model_scores/244 (pid 11628)] INFO:__main__:Average Train Loss across all folds: 0.03410695416900295 +2024-07-19 15:06:42.884 [20/model_scores/244 (pid 11628)] INFO:__main__:Average Validation Loss across all folds: 0.0377574419753777 +2024-07-19 15:06:42.884 [20/model_scores/244 (pid 11628)] INFO:__main__:Average MAPE across all folds: 3.02% +2024-07-19 15:06:42.885 [20/model_scores/244 (pid 11628)] Task finished successfully. +2024-07-19 15:06:42.919 [20/validate_model/245 (pid 11667)] Task is starting. +2024-07-19 15:06:44.498 [20/validate_model/245 (pid 11667)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 15:06:44.646 [20/validate_model/245 (pid 11667)] INFO:__main__:Test Set MAPE: 2.97% +2024-07-19 15:06:45.040 [20/validate_model/245 (pid 11667)] INFO:__main__:Test image saved at metaflow_models//bgd_office_100001_200000_LSTM//test_bgd_office_100001_200000_LSTM.png +2024-07-19 15:06:45.453 [20/validate_model/245 (pid 11667)] Task finished successfully. +2024-07-19 15:06:45.481 [20/log_model/246 (pid 11684)] Task is starting. +2024-07-19 15:06:46.947 [20/log_model/246 (pid 11684)] INFO:__main__:Logging model bgd_office_100001_200000_LSTM +2024-07-19 15:06:46.948 [20/log_model/246 (pid 11684)] INFO:__main__:Model logged at metaflow_models//bgd_office_100001_200000_LSTM//bgd_office_100001_200000_LSTM.pth +2024-07-19 15:06:50.826 [20/log_model/246 (pid 11684)] Task finished successfully. +2024-07-19 15:06:50.859 [20/end/247 (pid 11723)] Task is starting. +2024-07-19 15:06:52.417 [20/end/247 (pid 11723)] INFO:__main__:Pipeline end. +2024-07-19 15:06:52.751 [20/end/247 (pid 11723)] Task finished successfully. +2024-07-19 15:06:52.751 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/scaler_bgd_office_100001_200000_LSTM.pkl b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/scaler_bgd_office_100001_200000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..499f74d1982e09e0c14b4992cb73c34482902998 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/scaler_bgd_office_100001_200000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7e5646146264627513757d3ee74a1deeefce28e6f9845f4f17eb6bc5f4ca75b +size 557 diff --git a/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/test_bgd_office_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/test_bgd_office_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..19c2086f1dc5fbad013f850e75549094c4e4d7ad Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/test_bgd_office_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f0_bgd_office_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f0_bgd_office_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..9278b5634280868e0b2a50a0bec6ddbb5c17e438 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f0_bgd_office_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f1_bgd_office_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f1_bgd_office_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..19a9687e28d2b47e8a8a939733586c5fe7a70793 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f1_bgd_office_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f2_bgd_office_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f2_bgd_office_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..317e13cd9a9b48f786a92831fb64670a8963734e Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f2_bgd_office_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f3_bgd_office_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f3_bgd_office_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..fee9b13f61f2b75a90d89a07b8e45a90d848f730 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f3_bgd_office_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f4_bgd_office_100001_200000_LSTM.png b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f4_bgd_office_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..d4225599bfaa1ccdee60b069814a610fb711775d Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_100001_200000_LSTM/train_f4_bgd_office_100001_200000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/bgd_office_10001_25000_LSTM.pth b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/bgd_office_10001_25000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..08b872ffeb03586680b9bb8b7a2e65caa4a412e0 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/bgd_office_10001_25000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be3c5eea32d62afe78a150b0a89d341c626f141e8d6eab6fc3e882e47904f7a3 +size 46736 diff --git a/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/output.txt b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..b26e8d16f83b9ca109795ef31030e6343a131181 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/output.txt @@ -0,0 +1,738 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:57:22.144 Workflow starting (run-id 18): +2024-07-19 14:57:22.212 [18/start/207 (pid 9066)] Task is starting. +2024-07-19 14:57:23.700 [18/start/207 (pid 9066)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:57:24.000 [18/start/207 (pid 9066)] Task finished successfully. +2024-07-19 14:57:24.031 [18/ingest/208 (pid 9077)] Task is starting. +2024-07-19 14:57:25.485 [18/ingest/208 (pid 9077)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:57:25.501 [18/ingest/208 (pid 9077)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:57:29.437 [18/ingest/208 (pid 9077)] Task finished successfully. +2024-07-19 14:57:29.471 [18/pick_2017_data/209 (pid 9111)] Task is starting. +2024-07-19 14:57:30.937 [18/pick_2017_data/209 (pid 9111)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:57:31.279 [18/pick_2017_data/209 (pid 9111)] Task finished successfully. +2024-07-19 14:57:31.304 [18/fill_missing_data/210 (pid 9122)] Task is starting. +2024-07-19 14:57:32.792 [18/fill_missing_data/210 (pid 9122)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] INFO:__main__:NaN counts per column: +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] INFO:__main__:Panther_office_Larry 12 +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] Panther_office_Christian 12 +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] Panther_office_Christin 586 +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] Panther_office_Antonette 11 +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] Panther_office_Lois 11 +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] Cockatoo_office_Lorraine 127 +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] dtype: int64 +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] --- Logging error --- +2024-07-19 14:57:32.799 [18/fill_missing_data/210 (pid 9122)] Traceback (most recent call last): +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] msg = self.format(record) +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] return fmt.format(record) +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] record.message = record.getMessage() +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] msg = msg % self.args +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] TypeError: not all arguments converted during string formatting +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] Call stack: +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:57:33.577 [18/fill_missing_data/210 (pid 9122)] BGD_LinearFlow() +2024-07-19 14:57:33.577 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] cli.main(self) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] return func(*args, **kwargs) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] return self.main(*args, **kwargs) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] rv = self.invoke(ctx) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] return callback(*args, **kwargs) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] task.run_step( +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] self._exec_step_function(step_func) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] step_function() +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] Arguments: (759,) +2024-07-19 14:57:33.579 [18/fill_missing_data/210 (pid 9122)] Task finished successfully. +2024-07-19 14:57:33.611 [18/find_median/211 (pid 9133)] Task is starting. +2024-07-19 14:57:35.062 [18/find_median/211 (pid 9133)] INFO:__main__:Computing and using median.. +2024-07-19 14:57:35.583 [18/find_median/211 (pid 9133)] Task finished successfully. +2024-07-19 14:57:35.615 [18/aggregate_data/212 (pid 9144)] Task is starting. +2024-07-19 14:57:37.090 [18/aggregate_data/212 (pid 9144)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:57:41.000 [18/aggregate_data/212 (pid 9144)] Task finished successfully. +2024-07-19 14:57:41.030 [18/split_data/213 (pid 9191)] Task is starting. +2024-07-19 14:57:42.626 [18/split_data/213 (pid 9191)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:57:46.550 [18/split_data/213 (pid 9191)] Task finished successfully. +2024-07-19 14:57:46.581 [18/make_x_y/214 (pid 9215)] Task is starting. +2024-07-19 14:57:48.392 [18/make_x_y/214 (pid 9215)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:57:48.727 [18/make_x_y/214 (pid 9215)] Shape of y_train: (6978, 1) +2024-07-19 14:57:48.727 [18/make_x_y/214 (pid 9215)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:57:48.727 [18/make_x_y/214 (pid 9215)] Shape of y_test: (1722, 1) +2024-07-19 14:57:48.728 [18/make_x_y/214 (pid 9215)] Task finished successfully. +2024-07-19 14:57:48.758 [18/cross_validate_train/215 (pid 9228)] Task is starting. +2024-07-19 14:57:50.409 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Creating bgd_office_10001_25000_LSTM +2024-07-19 14:57:50.410 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Performing cross validation.. +2024-07-19 14:57:51.163 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 1/50, Train Loss: 0.23613959913318222, Val Loss: 0.22244590802772626 +2024-07-19 14:57:51.362 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 2/50, Train Loss: 0.18771031076038205, Val Loss: 0.2397762170514545 +2024-07-19 14:57:51.554 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 3/50, Train Loss: 0.17855382489191518, Val Loss: 0.22495955994000305 +2024-07-19 14:57:51.747 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 4/50, Train Loss: 0.17317514222215963, Val Loss: 0.21685959922300801 +2024-07-19 14:57:51.941 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 5/50, Train Loss: 0.1649817331014453, Val Loss: 0.20089382235262845 +2024-07-19 14:57:52.136 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 6/50, Train Loss: 0.15394637894791527, Val Loss: 0.1803951690325866 +2024-07-19 14:57:52.331 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 7/50, Train Loss: 0.14199134002666217, Val Loss: 0.1583203482064041 +2024-07-19 14:57:52.531 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 8/50, Train Loss: 0.13142160447062673, Val Loss: 0.1447641992488423 +2024-07-19 14:57:52.727 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 9/50, Train Loss: 0.12581352829127698, Val Loss: 0.1345554050561544 +2024-07-19 14:57:52.926 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 10/50, Train Loss: 0.1196861687946964, Val Loss: 0.1251680099883595 +2024-07-19 14:57:53.125 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 11/50, Train Loss: 0.11279146776006028, Val Loss: 0.11794815615222261 +2024-07-19 14:57:53.325 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 12/50, Train Loss: 0.10713112173048225, Val Loss: 0.11341760267277022 +2024-07-19 14:57:53.528 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 13/50, Train Loss: 0.09669979762386631, Val Loss: 0.10412074303304827 +2024-07-19 14:57:53.730 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 14/50, Train Loss: 0.09051437212808712, Val Loss: 0.09566759398660145 +2024-07-19 14:57:53.934 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 15/50, Train Loss: 0.08518019570289431, Val Loss: 0.0905040634443631 +2024-07-19 14:57:54.139 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 16/50, Train Loss: 0.08263347126744888, Val Loss: 0.08691048199260556 +2024-07-19 14:57:54.343 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 17/50, Train Loss: 0.07805504629740843, Val Loss: 0.0853388478627076 +2024-07-19 14:57:54.550 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 18/50, Train Loss: 0.07646385811873384, Val Loss: 0.08374947822979979 +2024-07-19 14:57:54.756 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 19/50, Train Loss: 0.07286598674348883, Val Loss: 0.07921743825883479 +2024-07-19 14:57:54.962 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 20/50, Train Loss: 0.07035658387718974, Val Loss: 0.0789049421814648 +2024-07-19 14:57:55.169 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 21/50, Train Loss: 0.06793668694995544, Val Loss: 0.07791057420340744 +2024-07-19 14:57:55.377 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 22/50, Train Loss: 0.06791162148520753, Val Loss: 0.07638883872612102 +2024-07-19 14:57:55.583 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 23/50, Train Loss: 0.06669793519619349, Val Loss: 0.07350633736397769 +2024-07-19 14:57:55.789 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 24/50, Train Loss: 0.06685718018058184, Val Loss: 0.07268598756274662 +2024-07-19 14:57:55.997 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 25/50, Train Loss: 0.06541540393152752, Val Loss: 0.07282158923712936 +2024-07-19 14:57:56.205 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 26/50, Train Loss: 0.06520482283589002, Val Loss: 0.07236596921811232 +2024-07-19 14:57:56.412 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 27/50, Train Loss: 0.06443626624909607, Val Loss: 0.07347217987518052 +2024-07-19 14:57:56.620 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 28/50, Train Loss: 0.0641430060605745, Val Loss: 0.07645190446763425 +2024-07-19 14:57:56.827 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 29/50, Train Loss: 0.0625817498846634, Val Loss: 0.07450473590477093 +2024-07-19 14:57:57.044 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 30/50, Train Loss: 0.0623113886528724, Val Loss: 0.07211428045018299 +2024-07-19 14:57:57.253 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 31/50, Train Loss: 0.06196620345518396, Val Loss: 0.07270038299061157 +2024-07-19 14:57:57.460 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 32/50, Train Loss: 0.06295141547515586, Val Loss: 0.07255839717549246 +2024-07-19 14:57:57.675 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 33/50, Train Loss: 0.061496917661782856, Val Loss: 0.07186511299900107 +2024-07-19 14:57:57.883 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 34/50, Train Loss: 0.06169114322275729, Val Loss: 0.07073213482225263 +2024-07-19 14:57:58.094 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 35/50, Train Loss: 0.06044646835810429, Val Loss: 0.07278961285546019 +2024-07-19 14:57:58.310 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 36/50, Train Loss: 0.06156730339736552, Val Loss: 0.07009899092687143 +2024-07-19 14:57:58.519 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 37/50, Train Loss: 0.06078703550470842, Val Loss: 0.06901145756647394 +2024-07-19 14:57:58.733 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 38/50, Train Loss: 0.06081894815370843, Val Loss: 0.07062985305045102 +2024-07-19 14:57:58.941 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 39/50, Train Loss: 0.05991216013963158, Val Loss: 0.07097475653564608 +2024-07-19 14:57:59.148 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 40/50, Train Loss: 0.060582540929317474, Val Loss: 0.07090997796606373 +2024-07-19 14:57:59.367 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 41/50, Train Loss: 0.05994679074029665, Val Loss: 0.07002822541304536 +2024-07-19 14:57:59.575 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 42/50, Train Loss: 0.060176406559106464, Val Loss: 0.07058829783990576 +2024-07-19 14:57:59.783 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 43/50, Train Loss: 0.06043357130240749, Val Loss: 0.07299553653275645 +2024-07-19 14:57:59.991 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 44/50, Train Loss: 0.059323670896323955, Val Loss: 0.06967687455786241 +2024-07-19 14:58:00.201 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 45/50, Train Loss: 0.06033422244158951, Val Loss: 0.0712501216377761 +2024-07-19 14:58:00.410 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 46/50, Train Loss: 0.0594202146135472, Val Loss: 0.06990604193226711 +2024-07-19 14:58:00.621 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 47/50, Train Loss: 0.05831363334043606, Val Loss: 0.0706148829210449 +2024-07-19 14:58:00.832 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 48/50, Train Loss: 0.05867641771564613, Val Loss: 0.07224772024799038 +2024-07-19 14:58:01.042 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 49/50, Train Loss: 0.05858523871850323, Val Loss: 0.0714752653966079 +2024-07-19 14:58:01.273 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 50/50, Train Loss: 0.05851657034174816, Val Loss: 0.06976325135376002 +2024-07-19 14:58:01.274 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Fold 0, MAPE: 9.19% +2024-07-19 14:58:01.669 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Training image saved at metaflow_models//bgd_office_10001_25000_LSTM//train_f0_bgd_office_10001_25000_LSTM.png +2024-07-19 14:58:02.120 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 1/50, Train Loss: 0.06317975902802324, Val Loss: 0.06311380087926581 +2024-07-19 14:58:02.476 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 2/50, Train Loss: 0.06243600533024905, Val Loss: 0.061902661379930134 +2024-07-19 14:58:02.833 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 3/50, Train Loss: 0.06081351954234789, Val Loss: 0.06215337976007848 +2024-07-19 14:58:03.198 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 4/50, Train Loss: 0.06057688129478938, Val Loss: 0.06096097091967995 +2024-07-19 14:58:03.554 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 5/50, Train Loss: 0.05991148637378053, Val Loss: 0.05966690001455513 +2024-07-19 14:58:03.909 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 6/50, Train Loss: 0.05948448431206076, Val Loss: 0.057960350469157505 +2024-07-19 14:58:04.264 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 7/50, Train Loss: 0.05896213609878331, Val Loss: 0.058515130265339 +2024-07-19 14:58:04.660 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 8/50, Train Loss: 0.05917717399050112, Val Loss: 0.058762226958532594 +2024-07-19 14:58:05.015 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 9/50, Train Loss: 0.05802600728730633, Val Loss: 0.059187681993117205 +2024-07-19 14:58:05.372 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 10/50, Train Loss: 0.05844068129176963, Val Loss: 0.05710205949238829 +2024-07-19 14:58:05.727 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 11/50, Train Loss: 0.057950840318856174, Val Loss: 0.056931579636560904 +2024-07-19 14:58:06.082 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 12/50, Train Loss: 0.0571959573928624, Val Loss: 0.057217411596227334 +2024-07-19 14:58:06.440 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 13/50, Train Loss: 0.05786354161084515, Val Loss: 0.056396091709265836 +2024-07-19 14:58:06.798 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 14/50, Train Loss: 0.05684887383082141, Val Loss: 0.05630980180324735 +2024-07-19 14:58:07.154 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 15/50, Train Loss: 0.0565238893032074, Val Loss: 0.05548553047953425 +2024-07-19 14:58:07.511 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 16/50, Train Loss: 0.056855905647963695, Val Loss: 0.054665847908000685 +2024-07-19 14:58:07.866 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 17/50, Train Loss: 0.05643019223049896, Val Loss: 0.05450059735291713 +2024-07-19 14:58:08.226 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 18/50, Train Loss: 0.05635001745126019, Val Loss: 0.053785480156138134 +2024-07-19 14:58:08.581 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 19/50, Train Loss: 0.05553350281225492, Val Loss: 0.053251549098137264 +2024-07-19 14:58:08.941 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 20/50, Train Loss: 0.055642049861689136, Val Loss: 0.053848716757587484 +2024-07-19 14:58:09.300 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 21/50, Train Loss: 0.05369573091603305, Val Loss: 0.05390590268212396 +2024-07-19 14:58:09.669 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 22/50, Train Loss: 0.054593426672971415, Val Loss: 0.05368551843472429 +2024-07-19 14:58:10.040 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 23/50, Train Loss: 0.05398379674513046, Val Loss: 0.05304912387116535 +2024-07-19 14:58:10.402 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 24/50, Train Loss: 0.05456835848011383, Val Loss: 0.054166920080378246 +2024-07-19 14:58:10.774 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 25/50, Train Loss: 0.05367756548197302, Val Loss: 0.05295584003466207 +2024-07-19 14:58:11.152 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 26/50, Train Loss: 0.05320286199654618, Val Loss: 0.05365222501190933 +2024-07-19 14:58:11.534 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 27/50, Train Loss: 0.052953454372409274, Val Loss: 0.053476702119853045 +2024-07-19 14:58:11.897 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 28/50, Train Loss: 0.052461166138926596, Val Loss: 0.05384557261257558 +2024-07-19 14:58:12.258 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 29/50, Train Loss: 0.05231512419573248, Val Loss: 0.0533070491777884 +2024-07-19 14:58:12.618 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 30/50, Train Loss: 0.05218169644270858, Val Loss: 0.05315884212787087 +2024-07-19 14:58:12.980 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 31/50, Train Loss: 0.051805270299927826, Val Loss: 0.053819606835777696 +2024-07-19 14:58:13.345 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 32/50, Train Loss: 0.05216592062928089, Val Loss: 0.05360953912541673 +2024-07-19 14:58:13.708 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 33/50, Train Loss: 0.051988623934249356, Val Loss: 0.054029091689232235 +2024-07-19 14:58:14.068 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 34/50, Train Loss: 0.05190934353087046, Val Loss: 0.05397433314371754 +2024-07-19 14:58:14.428 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 35/50, Train Loss: 0.051909356186651205, Val Loss: 0.05358070316346916 +2024-07-19 14:58:14.787 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 36/50, Train Loss: 0.05137369067293324, Val Loss: 0.05349087866174208 +2024-07-19 14:58:15.150 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 37/50, Train Loss: 0.05156265005265197, Val Loss: 0.05398150694531363 +2024-07-19 14:58:15.511 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 38/50, Train Loss: 0.051906507870514096, Val Loss: 0.05461743101477623 +2024-07-19 14:58:15.875 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 39/50, Train Loss: 0.052095210715515976, Val Loss: 0.054320331662893295 +2024-07-19 14:58:16.236 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 40/50, Train Loss: 0.05167883471266864, Val Loss: 0.05401049836261852 +2024-07-19 14:58:16.596 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 41/50, Train Loss: 0.05161468980655278, Val Loss: 0.05448611936456448 +2024-07-19 14:58:16.956 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 42/50, Train Loss: 0.050890823392427134, Val Loss: 0.05369841065761205 +2024-07-19 14:58:17.314 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 43/50, Train Loss: 0.0511045840198863, Val Loss: 0.0541135031427886 +2024-07-19 14:58:17.676 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 44/50, Train Loss: 0.05095216121575604, Val Loss: 0.053726013749837875 +2024-07-19 14:58:18.045 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 45/50, Train Loss: 0.05031775484142238, Val Loss: 0.05339856657224733 +2024-07-19 14:58:18.424 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 46/50, Train Loss: 0.05072886200800334, Val Loss: 0.05354421394499573 +2024-07-19 14:58:18.805 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 47/50, Train Loss: 0.050390454442941976, Val Loss: 0.05353916365955327 +2024-07-19 14:58:19.178 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 48/50, Train Loss: 0.0508781152024661, Val Loss: 0.05349261454633764 +2024-07-19 14:58:19.553 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 49/50, Train Loss: 0.0504486486826041, Val Loss: 0.05311184527503478 +2024-07-19 14:58:19.929 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 50/50, Train Loss: 0.05007886325251566, Val Loss: 0.05337187426315772 +2024-07-19 14:58:19.930 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Fold 1, MAPE: 7.34% +2024-07-19 14:58:20.051 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Training image saved at metaflow_models//bgd_office_10001_25000_LSTM//train_f1_bgd_office_10001_25000_LSTM.png +2024-07-19 14:58:20.664 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 1/50, Train Loss: 0.050287845866246655, Val Loss: 0.05163839157368686 +2024-07-19 14:58:21.195 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 2/50, Train Loss: 0.05045382173901254, Val Loss: 0.05079885833972209 +2024-07-19 14:58:21.726 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 3/50, Train Loss: 0.05030186459083449, Val Loss: 0.05139069188688252 +2024-07-19 14:58:22.237 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 4/50, Train Loss: 0.04991493665359237, Val Loss: 0.05050991495718827 +2024-07-19 14:58:22.744 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 5/50, Train Loss: 0.05064188333397562, Val Loss: 0.050660212599747886 +2024-07-19 14:58:23.251 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 6/50, Train Loss: 0.05005033828995444, Val Loss: 0.05182413112472843 +2024-07-19 14:58:23.767 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 7/50, Train Loss: 0.04993554787202315, Val Loss: 0.051036614723302225 +2024-07-19 14:58:24.273 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 8/50, Train Loss: 0.05008730007843538, Val Loss: 0.051161483634968065 +2024-07-19 14:58:24.782 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 9/50, Train Loss: 0.050187455422498965, Val Loss: 0.051601361080601406 +2024-07-19 14:58:25.293 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 10/50, Train Loss: 0.04953917356377298, Val Loss: 0.05115580337273108 +2024-07-19 14:58:25.806 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 11/50, Train Loss: 0.0496366465294903, Val Loss: 0.05099138949771185 +2024-07-19 14:58:26.320 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 12/50, Train Loss: 0.04926381727511232, Val Loss: 0.05039520934224129 +2024-07-19 14:58:26.830 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 13/50, Train Loss: 0.049422519010576337, Val Loss: 0.051073932063740654 +2024-07-19 14:58:27.343 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 14/50, Train Loss: 0.04886933829296719, Val Loss: 0.050537745594172866 +2024-07-19 14:58:27.854 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 15/50, Train Loss: 0.049488766034218395, Val Loss: 0.05075571222885235 +2024-07-19 14:58:28.370 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 16/50, Train Loss: 0.04900039444592866, Val Loss: 0.050613508031174946 +2024-07-19 14:58:28.906 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 17/50, Train Loss: 0.04879162723029202, Val Loss: 0.05108971450779889 +2024-07-19 14:58:29.416 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 18/50, Train Loss: 0.04888390434736555, Val Loss: 0.05031139574743606 +2024-07-19 14:58:29.933 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 19/50, Train Loss: 0.04867624660784548, Val Loss: 0.05083795818122658 +2024-07-19 14:58:30.448 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 20/50, Train Loss: 0.04908681643957442, Val Loss: 0.051669263255757256 +2024-07-19 14:58:30.972 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 21/50, Train Loss: 0.04793893689797683, Val Loss: 0.050454595503774846 +2024-07-19 14:58:31.514 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 22/50, Train Loss: 0.048465282503854144, Val Loss: 0.05152278725762625 +2024-07-19 14:58:32.029 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 23/50, Train Loss: 0.04858999208293178, Val Loss: 0.05018548184149974 +2024-07-19 14:58:32.543 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 24/50, Train Loss: 0.04830965301529928, Val Loss: 0.051246391558969345 +2024-07-19 14:58:33.058 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 25/50, Train Loss: 0.04792634067548947, Val Loss: 0.05031234871696781 +2024-07-19 14:58:33.572 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 26/50, Train Loss: 0.04831380188803781, Val Loss: 0.05091741389116725 +2024-07-19 14:58:34.087 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 27/50, Train Loss: 0.04776170473884452, Val Loss: 0.04993724309512087 +2024-07-19 14:58:34.602 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 28/50, Train Loss: 0.04745778512548317, Val Loss: 0.050526079595894426 +2024-07-19 14:58:35.126 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 29/50, Train Loss: 0.047632946785200726, Val Loss: 0.05037584165866311 +2024-07-19 14:58:35.640 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 30/50, Train Loss: 0.047640057128261436, Val Loss: 0.05000522017881677 +2024-07-19 14:58:36.155 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 31/50, Train Loss: 0.04730862643231045, Val Loss: 0.05006555618869292 +2024-07-19 14:58:36.671 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 32/50, Train Loss: 0.047779206338931214, Val Loss: 0.04978496520905881 +2024-07-19 14:58:37.187 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 33/50, Train Loss: 0.04779677321626381, Val Loss: 0.05050263483379338 +2024-07-19 14:58:37.703 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 34/50, Train Loss: 0.047439175793393094, Val Loss: 0.05015160244058918 +2024-07-19 14:58:38.222 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 35/50, Train Loss: 0.04774392817846753, Val Loss: 0.051841675631097844 +2024-07-19 14:58:38.743 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 36/50, Train Loss: 0.047339655916121874, Val Loss: 0.05017961038125528 +2024-07-19 14:58:39.257 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 37/50, Train Loss: 0.04716619883071293, Val Loss: 0.05020768739081718 +2024-07-19 14:58:39.786 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 38/50, Train Loss: 0.046335709433663975, Val Loss: 0.05055695520462217 +2024-07-19 14:58:40.310 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 39/50, Train Loss: 0.04731594293632291, Val Loss: 0.049853984266519547 +2024-07-19 14:58:40.830 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 40/50, Train Loss: 0.04677424904975024, Val Loss: 0.05133116990327835 +2024-07-19 14:58:41.362 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 41/50, Train Loss: 0.04683950072662397, Val Loss: 0.049817967958546976 +2024-07-19 14:58:41.881 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 42/50, Train Loss: 0.04621985332871025, Val Loss: 0.05021604130396972 +2024-07-19 14:58:42.425 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 43/50, Train Loss: 0.04690661430358887, Val Loss: 0.05025324044195381 +2024-07-19 14:58:42.951 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 44/50, Train Loss: 0.046054843626916406, Val Loss: 0.05093077358764571 +2024-07-19 14:58:43.467 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 45/50, Train Loss: 0.046195636842061176, Val Loss: 0.04957375262637396 +2024-07-19 14:58:43.985 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 46/50, Train Loss: 0.04553540587763895, Val Loss: 0.05098643566708307 +2024-07-19 14:58:44.500 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 47/50, Train Loss: 0.04601356556469744, Val Loss: 0.05012981160669713 +2024-07-19 14:58:45.020 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 48/50, Train Loss: 0.04591671101410281, Val Loss: 0.04990395702220298 +2024-07-19 14:58:45.535 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 49/50, Train Loss: 0.0457148966294798, Val Loss: 0.04979404283536447 +2024-07-19 14:58:46.057 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 50/50, Train Loss: 0.04770176090638746, Val Loss: 0.05135850165341351 +2024-07-19 14:58:46.057 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Fold 2, MAPE: 7.53% +2024-07-19 14:58:46.169 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Training image saved at metaflow_models//bgd_office_10001_25000_LSTM//train_f2_bgd_office_10001_25000_LSTM.png +2024-07-19 14:58:46.848 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 1/50, Train Loss: 0.04361688645480022, Val Loss: 0.03486228855075063 +2024-07-19 14:58:47.510 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 2/50, Train Loss: 0.043523249624628724, Val Loss: 0.03523270453552942 +2024-07-19 14:58:48.209 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 3/50, Train Loss: 0.04320996956363933, Val Loss: 0.035509966565547765 +2024-07-19 14:58:48.883 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 4/50, Train Loss: 0.043154920374796, Val Loss: 0.034689087722752546 +2024-07-19 14:58:49.546 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 5/50, Train Loss: 0.042955824033650634, Val Loss: 0.03485991312442599 +2024-07-19 14:58:50.214 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 6/50, Train Loss: 0.04273296180755308, Val Loss: 0.03445880235852422 +2024-07-19 14:58:50.879 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 7/50, Train Loss: 0.04270137466286143, Val Loss: 0.034989655219219824 +2024-07-19 14:58:51.556 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 8/50, Train Loss: 0.04366599874290293, Val Loss: 0.03468887578393962 +2024-07-19 14:58:52.228 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 9/50, Train Loss: 0.042753099935920275, Val Loss: 0.03470009585490098 +2024-07-19 14:58:52.899 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 10/50, Train Loss: 0.04262916399293566, Val Loss: 0.03435937159166143 +2024-07-19 14:58:53.570 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 11/50, Train Loss: 0.04312792101441181, Val Loss: 0.0350572250884127 +2024-07-19 14:58:54.237 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 12/50, Train Loss: 0.04296557240392247, Val Loss: 0.034662190422012996 +2024-07-19 14:58:54.912 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 13/50, Train Loss: 0.042816014718009186, Val Loss: 0.034444715626336435 +2024-07-19 14:58:55.578 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 14/50, Train Loss: 0.04265409553653165, Val Loss: 0.034953870936422736 +2024-07-19 14:58:56.247 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 15/50, Train Loss: 0.04286983530100894, Val Loss: 0.034124192655891984 +2024-07-19 14:58:56.916 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 16/50, Train Loss: 0.04251653366811471, Val Loss: 0.034712723330468744 +2024-07-19 14:58:57.586 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 17/50, Train Loss: 0.042516868650811175, Val Loss: 0.03444969331895983 +2024-07-19 14:58:58.263 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 18/50, Train Loss: 0.042425119496677835, Val Loss: 0.03428805392940302 +2024-07-19 14:58:58.938 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 19/50, Train Loss: 0.04277400242496435, Val Loss: 0.03397627799092112 +2024-07-19 14:58:59.607 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 20/50, Train Loss: 0.044131624078607726, Val Loss: 0.03383761855798799 +2024-07-19 14:59:00.286 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 21/50, Train Loss: 0.042737106180252275, Val Loss: 0.03454250761786023 +2024-07-19 14:59:00.964 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 22/50, Train Loss: 0.04245451405287197, Val Loss: 0.03469755636477793 +2024-07-19 14:59:01.658 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 23/50, Train Loss: 0.04241424648422901, Val Loss: 0.034842843693253155 +2024-07-19 14:59:02.329 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 24/50, Train Loss: 0.0425749531730193, Val Loss: 0.03502099981179108 +2024-07-19 14:59:03.000 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 25/50, Train Loss: 0.04276445584550296, Val Loss: 0.03495993797440786 +2024-07-19 14:59:03.670 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 26/50, Train Loss: 0.04191286697320334, Val Loss: 0.03431283692653115 +2024-07-19 14:59:04.341 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 27/50, Train Loss: 0.04209968863590939, Val Loss: 0.03516521239401521 +2024-07-19 14:59:05.012 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 28/50, Train Loss: 0.041843844118387735, Val Loss: 0.03493967078424789 +2024-07-19 14:59:05.701 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 29/50, Train Loss: 0.04204172578525461, Val Loss: 0.034356363520428944 +2024-07-19 14:59:06.374 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 30/50, Train Loss: 0.04180211046940251, Val Loss: 0.03393082335792683 +2024-07-19 14:59:07.054 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 31/50, Train Loss: 0.04129668447661073, Val Loss: 0.035162271529033375 +2024-07-19 14:59:07.725 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 32/50, Train Loss: 0.041630331771320674, Val Loss: 0.03415568037008917 +2024-07-19 14:59:08.407 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 33/50, Train Loss: 0.04132424393183973, Val Loss: 0.03441898932529462 +2024-07-19 14:59:09.092 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 34/50, Train Loss: 0.04110549678643272, Val Loss: 0.034492879803921725 +2024-07-19 14:59:09.781 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 35/50, Train Loss: 0.0411613632172142, Val Loss: 0.03424864790930941 +2024-07-19 14:59:10.476 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 36/50, Train Loss: 0.04101164420837001, Val Loss: 0.03372235248821813 +2024-07-19 14:59:11.154 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 37/50, Train Loss: 0.040821616499595446, Val Loss: 0.034562681222686895 +2024-07-19 14:59:11.844 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 38/50, Train Loss: 0.040557416194207864, Val Loss: 0.035012757959398066 +2024-07-19 14:59:12.522 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 39/50, Train Loss: 0.04111876430576795, Val Loss: 0.03528603936570722 +2024-07-19 14:59:13.201 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 40/50, Train Loss: 0.04112497877890933, Val Loss: 0.036033100624744956 +2024-07-19 14:59:13.881 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 41/50, Train Loss: 0.04066681443420175, Val Loss: 0.03511285157622518 +2024-07-19 14:59:14.589 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 42/50, Train Loss: 0.04035343218288601, Val Loss: 0.034858939112038224 +2024-07-19 14:59:15.260 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 43/50, Train Loss: 0.040384429672809495, Val Loss: 0.03608760046395096 +2024-07-19 14:59:15.935 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 44/50, Train Loss: 0.04003268213661974, Val Loss: 0.03642219138910641 +2024-07-19 14:59:16.630 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 45/50, Train Loss: 0.039810228531491264, Val Loss: 0.03510882025836287 +2024-07-19 14:59:17.305 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 46/50, Train Loss: 0.039944870116775985, Val Loss: 0.035157010563322016 +2024-07-19 14:59:17.980 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 47/50, Train Loss: 0.03981029215485674, Val Loss: 0.03628345458088694 +2024-07-19 14:59:18.661 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 48/50, Train Loss: 0.04077521840442125, Val Loss: 0.03526528597482153 +2024-07-19 14:59:19.343 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 49/50, Train Loss: 0.04007849200590424, Val Loss: 0.03544755914324039 +2024-07-19 14:59:20.018 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 50/50, Train Loss: 0.039688524216005244, Val Loss: 0.03563398218436821 +2024-07-19 14:59:20.018 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Fold 3, MAPE: 5.85% +2024-07-19 14:59:20.132 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Training image saved at metaflow_models//bgd_office_10001_25000_LSTM//train_f3_bgd_office_10001_25000_LSTM.png +2024-07-19 14:59:20.972 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 1/50, Train Loss: 0.03856641514697573, Val Loss: 0.03685808473744908 +2024-07-19 14:59:21.816 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 2/50, Train Loss: 0.038508422375953456, Val Loss: 0.037911017651896216 +2024-07-19 14:59:22.653 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 3/50, Train Loss: 0.03834911423561337, Val Loss: 0.03678606078028679 +2024-07-19 14:59:23.490 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 4/50, Train Loss: 0.038193164771975395, Val Loss: 0.036347746496667735 +2024-07-19 14:59:24.324 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 5/50, Train Loss: 0.03725643517388092, Val Loss: 0.03639628310259935 +2024-07-19 14:59:25.170 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 6/50, Train Loss: 0.03770450836272685, Val Loss: 0.036466405450089556 +2024-07-19 14:59:26.005 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 7/50, Train Loss: 0.03737064593236197, Val Loss: 0.03604099894496235 +2024-07-19 14:59:26.847 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 8/50, Train Loss: 0.037108913278923586, Val Loss: 0.03581043368054403 +2024-07-19 14:59:27.681 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 9/50, Train Loss: 0.037155651252020847, Val Loss: 0.035868351977016474 +2024-07-19 14:59:28.520 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 10/50, Train Loss: 0.03697002386408193, Val Loss: 0.03638218056309868 +2024-07-19 14:59:29.358 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 11/50, Train Loss: 0.03691142210020469, Val Loss: 0.0366836503349446 +2024-07-19 14:59:30.194 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 12/50, Train Loss: 0.03708273175448834, Val Loss: 0.03633406113933872 +2024-07-19 14:59:31.030 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 13/50, Train Loss: 0.036569045846360726, Val Loss: 0.03597361423276566 +2024-07-19 14:59:31.888 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 14/50, Train Loss: 0.036940722716051144, Val Loss: 0.03665047546697629 +2024-07-19 14:59:32.735 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 15/50, Train Loss: 0.03683136173288573, Val Loss: 0.03703065855881652 +2024-07-19 14:59:33.572 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 16/50, Train Loss: 0.03688890655821824, Val Loss: 0.03691185165095974 +2024-07-19 14:59:34.412 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 17/50, Train Loss: 0.03690421668259979, Val Loss: 0.03641704500124261 +2024-07-19 14:59:35.249 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 18/50, Train Loss: 0.0365876300403705, Val Loss: 0.03687674673022451 +2024-07-19 14:59:36.093 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 19/50, Train Loss: 0.036848704832104534, Val Loss: 0.036455368723821 +2024-07-19 14:59:36.937 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 20/50, Train Loss: 0.03701678046363068, Val Loss: 0.03617934600726978 +2024-07-19 14:59:37.775 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 21/50, Train Loss: 0.03625960132250419, Val Loss: 0.036501319223159065 +2024-07-19 14:59:38.620 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 22/50, Train Loss: 0.036173074547160455, Val Loss: 0.03626129313095196 +2024-07-19 14:59:39.488 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 23/50, Train Loss: 0.036133619639408456, Val Loss: 0.03596512978342739 +2024-07-19 14:59:40.341 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 24/50, Train Loss: 0.03671737015247345, Val Loss: 0.03671666667670817 +2024-07-19 14:59:41.188 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 25/50, Train Loss: 0.03633973438415553, Val Loss: 0.036622934748192094 +2024-07-19 14:59:42.042 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 26/50, Train Loss: 0.03582475115391579, Val Loss: 0.0364915897717347 +2024-07-19 14:59:42.881 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 27/50, Train Loss: 0.03596847203488533, Val Loss: 0.03680292813963181 +2024-07-19 14:59:43.724 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 28/50, Train Loss: 0.035981949408548874, Val Loss: 0.03748798516352434 +2024-07-19 14:59:44.562 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 29/50, Train Loss: 0.035850611105970626, Val Loss: 0.03598053692965894 +2024-07-19 14:59:45.396 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 30/50, Train Loss: 0.03609642777387258, Val Loss: 0.036515514794233685 +2024-07-19 14:59:46.237 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 31/50, Train Loss: 0.03569815650705125, Val Loss: 0.03701090555940125 +2024-07-19 14:59:47.077 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 32/50, Train Loss: 0.03565339642771325, Val Loss: 0.03665545799240873 +2024-07-19 14:59:47.919 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 33/50, Train Loss: 0.03588374234367531, Val Loss: 0.037116542508876 +2024-07-19 14:59:48.778 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 34/50, Train Loss: 0.03541427518108061, Val Loss: 0.03726013452821487 +2024-07-19 14:59:49.617 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 35/50, Train Loss: 0.03527148828360733, Val Loss: 0.0368464724538294 +2024-07-19 14:59:50.462 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 36/50, Train Loss: 0.03526937902219348, Val Loss: 0.03731134080806294 +2024-07-19 14:59:51.309 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 37/50, Train Loss: 0.03594903797320612, Val Loss: 0.03701157747088252 +2024-07-19 14:59:52.151 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 38/50, Train Loss: 0.03552131401886652, Val Loss: 0.0373892670346273 +2024-07-19 14:59:52.995 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 39/50, Train Loss: 0.03534687704478319, Val Loss: 0.03720197801453036 +2024-07-19 14:59:53.864 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 40/50, Train Loss: 0.035220339577031, Val Loss: 0.03723935526166413 +2024-07-19 14:59:54.714 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 41/50, Train Loss: 0.03553481194303258, Val Loss: 0.037157685772792715 +2024-07-19 14:59:55.586 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 42/50, Train Loss: 0.035249218211642334, Val Loss: 0.03675258517063953 +2024-07-19 14:59:56.465 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 43/50, Train Loss: 0.03526883182412648, Val Loss: 0.03698248894432107 +2024-07-19 14:59:57.321 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 44/50, Train Loss: 0.03482650254167371, Val Loss: 0.03732548195969414 +2024-07-19 14:59:58.270 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 45/50, Train Loss: 0.03504830320457836, Val Loss: 0.036766579727063306 +2024-07-19 14:59:59.193 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 46/50, Train Loss: 0.035277169422952684, Val Loss: 0.03717020551699239 +2024-07-19 15:00:00.151 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 47/50, Train Loss: 0.03477214352524543, Val Loss: 0.0369438555192303 +2024-07-19 15:00:01.085 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 48/50, Train Loss: 0.034904294913368564, Val Loss: 0.03685305227298994 +2024-07-19 15:00:01.960 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 49/50, Train Loss: 0.035110261485717456, Val Loss: 0.037046543146307405 +2024-07-19 15:00:02.834 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 50/50, Train Loss: 0.03471566118545585, Val Loss: 0.03718984474402827 +2024-07-19 15:00:02.834 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Fold 4, MAPE: 5.69% +2024-07-19 15:00:02.947 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Training image saved at metaflow_models//bgd_office_10001_25000_LSTM//train_f4_bgd_office_10001_25000_LSTM.png +2024-07-19 15:00:07.496 [18/cross_validate_train/215 (pid 9228)] Task finished successfully. +2024-07-19 15:00:07.533 [18/model_scores/216 (pid 9813)] Task is starting. +2024-07-19 15:00:09.093 [18/model_scores/216 (pid 9813)] INFO:__main__:Average Train Loss across all folds: 0.046140275980422474 +2024-07-19 15:00:13.264 [18/model_scores/216 (pid 9813)] INFO:__main__:Average Validation Loss across all folds: 0.049463490839745536 +2024-07-19 15:00:13.264 [18/model_scores/216 (pid 9813)] INFO:__main__:Average MAPE across all folds: 7.12% +2024-07-19 15:00:13.265 [18/model_scores/216 (pid 9813)] Task finished successfully. +2024-07-19 15:00:13.296 [18/validate_model/217 (pid 9867)] Task is starting. +2024-07-19 15:00:14.804 [18/validate_model/217 (pid 9867)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 15:00:14.921 [18/validate_model/217 (pid 9867)] INFO:__main__:Test Set MAPE: 8.01% +2024-07-19 15:00:15.324 [18/validate_model/217 (pid 9867)] INFO:__main__:Test image saved at metaflow_models//bgd_office_10001_25000_LSTM//test_bgd_office_10001_25000_LSTM.png +2024-07-19 15:00:15.777 [18/validate_model/217 (pid 9867)] Task finished successfully. +2024-07-19 15:00:15.809 [18/log_model/218 (pid 9884)] Task is starting. +2024-07-19 15:00:17.322 [18/log_model/218 (pid 9884)] INFO:__main__:Logging model bgd_office_10001_25000_LSTM +2024-07-19 15:00:17.323 [18/log_model/218 (pid 9884)] INFO:__main__:Model logged at metaflow_models//bgd_office_10001_25000_LSTM//bgd_office_10001_25000_LSTM.pth +2024-07-19 15:00:21.535 [18/log_model/218 (pid 9884)] Task finished successfully. +2024-07-19 15:00:21.566 [18/end/219 (pid 9919)] Task is starting. +2024-07-19 15:00:23.225 [18/end/219 (pid 9919)] INFO:__main__:Pipeline end. +2024-07-19 15:00:23.559 [18/end/219 (pid 9919)] Task finished successfully. +2024-07-19 15:00:23.560 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/18') succeeded: +-- stdout -- +2024-07-19 14:57:22.144 Workflow starting (run-id 18): +2024-07-19 14:57:22.212 [18/start/207 (pid 9066)] Task is starting. +2024-07-19 14:57:23.700 [18/start/207 (pid 9066)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:57:24.000 [18/start/207 (pid 9066)] Task finished successfully. +2024-07-19 14:57:24.031 [18/ingest/208 (pid 9077)] Task is starting. +2024-07-19 14:57:25.485 [18/ingest/208 (pid 9077)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:57:25.501 [18/ingest/208 (pid 9077)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:57:29.437 [18/ingest/208 (pid 9077)] Task finished successfully. +2024-07-19 14:57:29.471 [18/pick_2017_data/209 (pid 9111)] Task is starting. +2024-07-19 14:57:30.937 [18/pick_2017_data/209 (pid 9111)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:57:31.279 [18/pick_2017_data/209 (pid 9111)] Task finished successfully. +2024-07-19 14:57:31.304 [18/fill_missing_data/210 (pid 9122)] Task is starting. +2024-07-19 14:57:32.792 [18/fill_missing_data/210 (pid 9122)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] INFO:__main__:NaN counts per column: +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] INFO:__main__:Panther_office_Larry 12 +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] Panther_office_Christian 12 +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] Panther_office_Christin 586 +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] Panther_office_Antonette 11 +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] Panther_office_Lois 11 +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] Cockatoo_office_Lorraine 127 +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] dtype: int64 +2024-07-19 14:57:32.798 [18/fill_missing_data/210 (pid 9122)] --- Logging error --- +2024-07-19 14:57:32.799 [18/fill_missing_data/210 (pid 9122)] Traceback (most recent call last): +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] msg = self.format(record) +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] return fmt.format(record) +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] record.message = record.getMessage() +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] msg = msg % self.args +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] TypeError: not all arguments converted during string formatting +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] Call stack: +2024-07-19 14:57:32.800 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:57:33.577 [18/fill_missing_data/210 (pid 9122)] BGD_LinearFlow() +2024-07-19 14:57:33.577 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] cli.main(self) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] return func(*args, **kwargs) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] return self.main(*args, **kwargs) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] rv = self.invoke(ctx) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] return callback(*args, **kwargs) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] task.run_step( +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] self._exec_step_function(step_func) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] step_function() +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:57:33.578 [18/fill_missing_data/210 (pid 9122)] Arguments: (759,) +2024-07-19 14:57:33.579 [18/fill_missing_data/210 (pid 9122)] Task finished successfully. +2024-07-19 14:57:33.611 [18/find_median/211 (pid 9133)] Task is starting. +2024-07-19 14:57:35.062 [18/find_median/211 (pid 9133)] INFO:__main__:Computing and using median.. +2024-07-19 14:57:35.583 [18/find_median/211 (pid 9133)] Task finished successfully. +2024-07-19 14:57:35.615 [18/aggregate_data/212 (pid 9144)] Task is starting. +2024-07-19 14:57:37.090 [18/aggregate_data/212 (pid 9144)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:57:41.000 [18/aggregate_data/212 (pid 9144)] Task finished successfully. +2024-07-19 14:57:41.030 [18/split_data/213 (pid 9191)] Task is starting. +2024-07-19 14:57:42.626 [18/split_data/213 (pid 9191)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:57:46.550 [18/split_data/213 (pid 9191)] Task finished successfully. +2024-07-19 14:57:46.581 [18/make_x_y/214 (pid 9215)] Task is starting. +2024-07-19 14:57:48.392 [18/make_x_y/214 (pid 9215)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:57:48.727 [18/make_x_y/214 (pid 9215)] Shape of y_train: (6978, 1) +2024-07-19 14:57:48.727 [18/make_x_y/214 (pid 9215)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:57:48.727 [18/make_x_y/214 (pid 9215)] Shape of y_test: (1722, 1) +2024-07-19 14:57:48.728 [18/make_x_y/214 (pid 9215)] Task finished successfully. +2024-07-19 14:57:48.758 [18/cross_validate_train/215 (pid 9228)] Task is starting. +2024-07-19 14:57:50.409 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Creating bgd_office_10001_25000_LSTM +2024-07-19 14:57:50.410 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Performing cross validation.. +2024-07-19 14:57:51.163 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 1/50, Train Loss: 0.23613959913318222, Val Loss: 0.22244590802772626 +2024-07-19 14:57:51.362 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 2/50, Train Loss: 0.18771031076038205, Val Loss: 0.2397762170514545 +2024-07-19 14:57:51.554 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 3/50, Train Loss: 0.17855382489191518, Val Loss: 0.22495955994000305 +2024-07-19 14:57:51.747 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 4/50, Train Loss: 0.17317514222215963, Val Loss: 0.21685959922300801 +2024-07-19 14:57:51.941 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 5/50, Train Loss: 0.1649817331014453, Val Loss: 0.20089382235262845 +2024-07-19 14:57:52.136 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 6/50, Train Loss: 0.15394637894791527, Val Loss: 0.1803951690325866 +2024-07-19 14:57:52.331 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 7/50, Train Loss: 0.14199134002666217, Val Loss: 0.1583203482064041 +2024-07-19 14:57:52.531 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 8/50, Train Loss: 0.13142160447062673, Val Loss: 0.1447641992488423 +2024-07-19 14:57:52.727 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 9/50, Train Loss: 0.12581352829127698, Val Loss: 0.1345554050561544 +2024-07-19 14:57:52.926 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 10/50, Train Loss: 0.1196861687946964, Val Loss: 0.1251680099883595 +2024-07-19 14:57:53.125 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 11/50, Train Loss: 0.11279146776006028, Val Loss: 0.11794815615222261 +2024-07-19 14:57:53.325 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 12/50, Train Loss: 0.10713112173048225, Val Loss: 0.11341760267277022 +2024-07-19 14:57:53.528 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 13/50, Train Loss: 0.09669979762386631, Val Loss: 0.10412074303304827 +2024-07-19 14:57:53.730 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 14/50, Train Loss: 0.09051437212808712, Val Loss: 0.09566759398660145 +2024-07-19 14:57:53.934 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 15/50, Train Loss: 0.08518019570289431, Val Loss: 0.0905040634443631 +2024-07-19 14:57:54.139 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 16/50, Train Loss: 0.08263347126744888, Val Loss: 0.08691048199260556 +2024-07-19 14:57:54.343 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 17/50, Train Loss: 0.07805504629740843, Val Loss: 0.0853388478627076 +2024-07-19 14:57:54.550 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 18/50, Train Loss: 0.07646385811873384, Val Loss: 0.08374947822979979 +2024-07-19 14:57:54.756 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 19/50, Train Loss: 0.07286598674348883, Val Loss: 0.07921743825883479 +2024-07-19 14:57:54.962 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 20/50, Train Loss: 0.07035658387718974, Val Loss: 0.0789049421814648 +2024-07-19 14:57:55.169 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 21/50, Train Loss: 0.06793668694995544, Val Loss: 0.07791057420340744 +2024-07-19 14:57:55.377 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 22/50, Train Loss: 0.06791162148520753, Val Loss: 0.07638883872612102 +2024-07-19 14:57:55.583 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 23/50, Train Loss: 0.06669793519619349, Val Loss: 0.07350633736397769 +2024-07-19 14:57:55.789 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 24/50, Train Loss: 0.06685718018058184, Val Loss: 0.07268598756274662 +2024-07-19 14:57:55.997 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 25/50, Train Loss: 0.06541540393152752, Val Loss: 0.07282158923712936 +2024-07-19 14:57:56.205 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 26/50, Train Loss: 0.06520482283589002, Val Loss: 0.07236596921811232 +2024-07-19 14:57:56.412 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 27/50, Train Loss: 0.06443626624909607, Val Loss: 0.07347217987518052 +2024-07-19 14:57:56.620 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 28/50, Train Loss: 0.0641430060605745, Val Loss: 0.07645190446763425 +2024-07-19 14:57:56.827 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 29/50, Train Loss: 0.0625817498846634, Val Loss: 0.07450473590477093 +2024-07-19 14:57:57.044 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 30/50, Train Loss: 0.0623113886528724, Val Loss: 0.07211428045018299 +2024-07-19 14:57:57.253 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 31/50, Train Loss: 0.06196620345518396, Val Loss: 0.07270038299061157 +2024-07-19 14:57:57.460 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 32/50, Train Loss: 0.06295141547515586, Val Loss: 0.07255839717549246 +2024-07-19 14:57:57.675 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 33/50, Train Loss: 0.061496917661782856, Val Loss: 0.07186511299900107 +2024-07-19 14:57:57.883 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 34/50, Train Loss: 0.06169114322275729, Val Loss: 0.07073213482225263 +2024-07-19 14:57:58.094 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 35/50, Train Loss: 0.06044646835810429, Val Loss: 0.07278961285546019 +2024-07-19 14:57:58.310 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 36/50, Train Loss: 0.06156730339736552, Val Loss: 0.07009899092687143 +2024-07-19 14:57:58.519 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 37/50, Train Loss: 0.06078703550470842, Val Loss: 0.06901145756647394 +2024-07-19 14:57:58.733 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 38/50, Train Loss: 0.06081894815370843, Val Loss: 0.07062985305045102 +2024-07-19 14:57:58.941 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 39/50, Train Loss: 0.05991216013963158, Val Loss: 0.07097475653564608 +2024-07-19 14:57:59.148 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 40/50, Train Loss: 0.060582540929317474, Val Loss: 0.07090997796606373 +2024-07-19 14:57:59.367 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 41/50, Train Loss: 0.05994679074029665, Val Loss: 0.07002822541304536 +2024-07-19 14:57:59.575 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 42/50, Train Loss: 0.060176406559106464, Val Loss: 0.07058829783990576 +2024-07-19 14:57:59.783 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 43/50, Train Loss: 0.06043357130240749, Val Loss: 0.07299553653275645 +2024-07-19 14:57:59.991 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 44/50, Train Loss: 0.059323670896323955, Val Loss: 0.06967687455786241 +2024-07-19 14:58:00.201 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 45/50, Train Loss: 0.06033422244158951, Val Loss: 0.0712501216377761 +2024-07-19 14:58:00.410 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 46/50, Train Loss: 0.0594202146135472, Val Loss: 0.06990604193226711 +2024-07-19 14:58:00.621 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 47/50, Train Loss: 0.05831363334043606, Val Loss: 0.0706148829210449 +2024-07-19 14:58:00.832 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 48/50, Train Loss: 0.05867641771564613, Val Loss: 0.07224772024799038 +2024-07-19 14:58:01.042 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 49/50, Train Loss: 0.05858523871850323, Val Loss: 0.0714752653966079 +2024-07-19 14:58:01.273 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 50/50, Train Loss: 0.05851657034174816, Val Loss: 0.06976325135376002 +2024-07-19 14:58:01.274 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Fold 0, MAPE: 9.19% +2024-07-19 14:58:01.669 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Training image saved at metaflow_models//bgd_office_10001_25000_LSTM//train_f0_bgd_office_10001_25000_LSTM.png +2024-07-19 14:58:02.120 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 1/50, Train Loss: 0.06317975902802324, Val Loss: 0.06311380087926581 +2024-07-19 14:58:02.476 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 2/50, Train Loss: 0.06243600533024905, Val Loss: 0.061902661379930134 +2024-07-19 14:58:02.833 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 3/50, Train Loss: 0.06081351954234789, Val Loss: 0.06215337976007848 +2024-07-19 14:58:03.198 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 4/50, Train Loss: 0.06057688129478938, Val Loss: 0.06096097091967995 +2024-07-19 14:58:03.554 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 5/50, Train Loss: 0.05991148637378053, Val Loss: 0.05966690001455513 +2024-07-19 14:58:03.909 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 6/50, Train Loss: 0.05948448431206076, Val Loss: 0.057960350469157505 +2024-07-19 14:58:04.264 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 7/50, Train Loss: 0.05896213609878331, Val Loss: 0.058515130265339 +2024-07-19 14:58:04.660 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 8/50, Train Loss: 0.05917717399050112, Val Loss: 0.058762226958532594 +2024-07-19 14:58:05.015 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 9/50, Train Loss: 0.05802600728730633, Val Loss: 0.059187681993117205 +2024-07-19 14:58:05.372 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 10/50, Train Loss: 0.05844068129176963, Val Loss: 0.05710205949238829 +2024-07-19 14:58:05.727 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 11/50, Train Loss: 0.057950840318856174, Val Loss: 0.056931579636560904 +2024-07-19 14:58:06.082 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 12/50, Train Loss: 0.0571959573928624, Val Loss: 0.057217411596227334 +2024-07-19 14:58:06.440 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 13/50, Train Loss: 0.05786354161084515, Val Loss: 0.056396091709265836 +2024-07-19 14:58:06.798 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 14/50, Train Loss: 0.05684887383082141, Val Loss: 0.05630980180324735 +2024-07-19 14:58:07.154 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 15/50, Train Loss: 0.0565238893032074, Val Loss: 0.05548553047953425 +2024-07-19 14:58:07.511 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 16/50, Train Loss: 0.056855905647963695, Val Loss: 0.054665847908000685 +2024-07-19 14:58:07.866 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 17/50, Train Loss: 0.05643019223049896, Val Loss: 0.05450059735291713 +2024-07-19 14:58:08.226 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 18/50, Train Loss: 0.05635001745126019, Val Loss: 0.053785480156138134 +2024-07-19 14:58:08.581 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 19/50, Train Loss: 0.05553350281225492, Val Loss: 0.053251549098137264 +2024-07-19 14:58:08.941 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 20/50, Train Loss: 0.055642049861689136, Val Loss: 0.053848716757587484 +2024-07-19 14:58:09.300 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 21/50, Train Loss: 0.05369573091603305, Val Loss: 0.05390590268212396 +2024-07-19 14:58:09.669 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 22/50, Train Loss: 0.054593426672971415, Val Loss: 0.05368551843472429 +2024-07-19 14:58:10.040 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 23/50, Train Loss: 0.05398379674513046, Val Loss: 0.05304912387116535 +2024-07-19 14:58:10.402 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 24/50, Train Loss: 0.05456835848011383, Val Loss: 0.054166920080378246 +2024-07-19 14:58:10.774 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 25/50, Train Loss: 0.05367756548197302, Val Loss: 0.05295584003466207 +2024-07-19 14:58:11.152 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 26/50, Train Loss: 0.05320286199654618, Val Loss: 0.05365222501190933 +2024-07-19 14:58:11.534 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 27/50, Train Loss: 0.052953454372409274, Val Loss: 0.053476702119853045 +2024-07-19 14:58:11.897 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 28/50, Train Loss: 0.052461166138926596, Val Loss: 0.05384557261257558 +2024-07-19 14:58:12.258 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 29/50, Train Loss: 0.05231512419573248, Val Loss: 0.0533070491777884 +2024-07-19 14:58:12.618 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 30/50, Train Loss: 0.05218169644270858, Val Loss: 0.05315884212787087 +2024-07-19 14:58:12.980 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 31/50, Train Loss: 0.051805270299927826, Val Loss: 0.053819606835777696 +2024-07-19 14:58:13.345 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 32/50, Train Loss: 0.05216592062928089, Val Loss: 0.05360953912541673 +2024-07-19 14:58:13.708 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 33/50, Train Loss: 0.051988623934249356, Val Loss: 0.054029091689232235 +2024-07-19 14:58:14.068 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 34/50, Train Loss: 0.05190934353087046, Val Loss: 0.05397433314371754 +2024-07-19 14:58:14.428 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 35/50, Train Loss: 0.051909356186651205, Val Loss: 0.05358070316346916 +2024-07-19 14:58:14.787 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 36/50, Train Loss: 0.05137369067293324, Val Loss: 0.05349087866174208 +2024-07-19 14:58:15.150 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 37/50, Train Loss: 0.05156265005265197, Val Loss: 0.05398150694531363 +2024-07-19 14:58:15.511 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 38/50, Train Loss: 0.051906507870514096, Val Loss: 0.05461743101477623 +2024-07-19 14:58:15.875 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 39/50, Train Loss: 0.052095210715515976, Val Loss: 0.054320331662893295 +2024-07-19 14:58:16.236 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 40/50, Train Loss: 0.05167883471266864, Val Loss: 0.05401049836261852 +2024-07-19 14:58:16.596 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 41/50, Train Loss: 0.05161468980655278, Val Loss: 0.05448611936456448 +2024-07-19 14:58:16.956 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 42/50, Train Loss: 0.050890823392427134, Val Loss: 0.05369841065761205 +2024-07-19 14:58:17.314 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 43/50, Train Loss: 0.0511045840198863, Val Loss: 0.0541135031427886 +2024-07-19 14:58:17.676 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 44/50, Train Loss: 0.05095216121575604, Val Loss: 0.053726013749837875 +2024-07-19 14:58:18.045 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 45/50, Train Loss: 0.05031775484142238, Val Loss: 0.05339856657224733 +2024-07-19 14:58:18.424 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 46/50, Train Loss: 0.05072886200800334, Val Loss: 0.05354421394499573 +2024-07-19 14:58:18.805 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 47/50, Train Loss: 0.050390454442941976, Val Loss: 0.05353916365955327 +2024-07-19 14:58:19.178 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 48/50, Train Loss: 0.0508781152024661, Val Loss: 0.05349261454633764 +2024-07-19 14:58:19.553 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 49/50, Train Loss: 0.0504486486826041, Val Loss: 0.05311184527503478 +2024-07-19 14:58:19.929 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 50/50, Train Loss: 0.05007886325251566, Val Loss: 0.05337187426315772 +2024-07-19 14:58:19.930 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Fold 1, MAPE: 7.34% +2024-07-19 14:58:20.051 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Training image saved at metaflow_models//bgd_office_10001_25000_LSTM//train_f1_bgd_office_10001_25000_LSTM.png +2024-07-19 14:58:20.664 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 1/50, Train Loss: 0.050287845866246655, Val Loss: 0.05163839157368686 +2024-07-19 14:58:21.195 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 2/50, Train Loss: 0.05045382173901254, Val Loss: 0.05079885833972209 +2024-07-19 14:58:21.726 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 3/50, Train Loss: 0.05030186459083449, Val Loss: 0.05139069188688252 +2024-07-19 14:58:22.237 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 4/50, Train Loss: 0.04991493665359237, Val Loss: 0.05050991495718827 +2024-07-19 14:58:22.744 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 5/50, Train Loss: 0.05064188333397562, Val Loss: 0.050660212599747886 +2024-07-19 14:58:23.251 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 6/50, Train Loss: 0.05005033828995444, Val Loss: 0.05182413112472843 +2024-07-19 14:58:23.767 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 7/50, Train Loss: 0.04993554787202315, Val Loss: 0.051036614723302225 +2024-07-19 14:58:24.273 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 8/50, Train Loss: 0.05008730007843538, Val Loss: 0.051161483634968065 +2024-07-19 14:58:24.782 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 9/50, Train Loss: 0.050187455422498965, Val Loss: 0.051601361080601406 +2024-07-19 14:58:25.293 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 10/50, Train Loss: 0.04953917356377298, Val Loss: 0.05115580337273108 +2024-07-19 14:58:25.806 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 11/50, Train Loss: 0.0496366465294903, Val Loss: 0.05099138949771185 +2024-07-19 14:58:26.320 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 12/50, Train Loss: 0.04926381727511232, Val Loss: 0.05039520934224129 +2024-07-19 14:58:26.830 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 13/50, Train Loss: 0.049422519010576337, Val Loss: 0.051073932063740654 +2024-07-19 14:58:27.343 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 14/50, Train Loss: 0.04886933829296719, Val Loss: 0.050537745594172866 +2024-07-19 14:58:27.854 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 15/50, Train Loss: 0.049488766034218395, Val Loss: 0.05075571222885235 +2024-07-19 14:58:28.370 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 16/50, Train Loss: 0.04900039444592866, Val Loss: 0.050613508031174946 +2024-07-19 14:58:28.906 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 17/50, Train Loss: 0.04879162723029202, Val Loss: 0.05108971450779889 +2024-07-19 14:58:29.416 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 18/50, Train Loss: 0.04888390434736555, Val Loss: 0.05031139574743606 +2024-07-19 14:58:29.933 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 19/50, Train Loss: 0.04867624660784548, Val Loss: 0.05083795818122658 +2024-07-19 14:58:30.448 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 20/50, Train Loss: 0.04908681643957442, Val Loss: 0.051669263255757256 +2024-07-19 14:58:30.972 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 21/50, Train Loss: 0.04793893689797683, Val Loss: 0.050454595503774846 +2024-07-19 14:58:31.514 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 22/50, Train Loss: 0.048465282503854144, Val Loss: 0.05152278725762625 +2024-07-19 14:58:32.029 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 23/50, Train Loss: 0.04858999208293178, Val Loss: 0.05018548184149974 +2024-07-19 14:58:32.543 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 24/50, Train Loss: 0.04830965301529928, Val Loss: 0.051246391558969345 +2024-07-19 14:58:33.058 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 25/50, Train Loss: 0.04792634067548947, Val Loss: 0.05031234871696781 +2024-07-19 14:58:33.572 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 26/50, Train Loss: 0.04831380188803781, Val Loss: 0.05091741389116725 +2024-07-19 14:58:34.087 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 27/50, Train Loss: 0.04776170473884452, Val Loss: 0.04993724309512087 +2024-07-19 14:58:34.602 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 28/50, Train Loss: 0.04745778512548317, Val Loss: 0.050526079595894426 +2024-07-19 14:58:35.126 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 29/50, Train Loss: 0.047632946785200726, Val Loss: 0.05037584165866311 +2024-07-19 14:58:35.640 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 30/50, Train Loss: 0.047640057128261436, Val Loss: 0.05000522017881677 +2024-07-19 14:58:36.155 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 31/50, Train Loss: 0.04730862643231045, Val Loss: 0.05006555618869292 +2024-07-19 14:58:36.671 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 32/50, Train Loss: 0.047779206338931214, Val Loss: 0.04978496520905881 +2024-07-19 14:58:37.187 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 33/50, Train Loss: 0.04779677321626381, Val Loss: 0.05050263483379338 +2024-07-19 14:58:37.703 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 34/50, Train Loss: 0.047439175793393094, Val Loss: 0.05015160244058918 +2024-07-19 14:58:38.222 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 35/50, Train Loss: 0.04774392817846753, Val Loss: 0.051841675631097844 +2024-07-19 14:58:38.743 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 36/50, Train Loss: 0.047339655916121874, Val Loss: 0.05017961038125528 +2024-07-19 14:58:39.257 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 37/50, Train Loss: 0.04716619883071293, Val Loss: 0.05020768739081718 +2024-07-19 14:58:39.786 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 38/50, Train Loss: 0.046335709433663975, Val Loss: 0.05055695520462217 +2024-07-19 14:58:40.310 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 39/50, Train Loss: 0.04731594293632291, Val Loss: 0.049853984266519547 +2024-07-19 14:58:40.830 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 40/50, Train Loss: 0.04677424904975024, Val Loss: 0.05133116990327835 +2024-07-19 14:58:41.362 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 41/50, Train Loss: 0.04683950072662397, Val Loss: 0.049817967958546976 +2024-07-19 14:58:41.881 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 42/50, Train Loss: 0.04621985332871025, Val Loss: 0.05021604130396972 +2024-07-19 14:58:42.425 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 43/50, Train Loss: 0.04690661430358887, Val Loss: 0.05025324044195381 +2024-07-19 14:58:42.951 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 44/50, Train Loss: 0.046054843626916406, Val Loss: 0.05093077358764571 +2024-07-19 14:58:43.467 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 45/50, Train Loss: 0.046195636842061176, Val Loss: 0.04957375262637396 +2024-07-19 14:58:43.985 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 46/50, Train Loss: 0.04553540587763895, Val Loss: 0.05098643566708307 +2024-07-19 14:58:44.500 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 47/50, Train Loss: 0.04601356556469744, Val Loss: 0.05012981160669713 +2024-07-19 14:58:45.020 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 48/50, Train Loss: 0.04591671101410281, Val Loss: 0.04990395702220298 +2024-07-19 14:58:45.535 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 49/50, Train Loss: 0.0457148966294798, Val Loss: 0.04979404283536447 +2024-07-19 14:58:46.057 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 50/50, Train Loss: 0.04770176090638746, Val Loss: 0.05135850165341351 +2024-07-19 14:58:46.057 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Fold 2, MAPE: 7.53% +2024-07-19 14:58:46.169 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Training image saved at metaflow_models//bgd_office_10001_25000_LSTM//train_f2_bgd_office_10001_25000_LSTM.png +2024-07-19 14:58:46.848 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 1/50, Train Loss: 0.04361688645480022, Val Loss: 0.03486228855075063 +2024-07-19 14:58:47.510 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 2/50, Train Loss: 0.043523249624628724, Val Loss: 0.03523270453552942 +2024-07-19 14:58:48.209 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 3/50, Train Loss: 0.04320996956363933, Val Loss: 0.035509966565547765 +2024-07-19 14:58:48.883 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 4/50, Train Loss: 0.043154920374796, Val Loss: 0.034689087722752546 +2024-07-19 14:58:49.546 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 5/50, Train Loss: 0.042955824033650634, Val Loss: 0.03485991312442599 +2024-07-19 14:58:50.214 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 6/50, Train Loss: 0.04273296180755308, Val Loss: 0.03445880235852422 +2024-07-19 14:58:50.879 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 7/50, Train Loss: 0.04270137466286143, Val Loss: 0.034989655219219824 +2024-07-19 14:58:51.556 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 8/50, Train Loss: 0.04366599874290293, Val Loss: 0.03468887578393962 +2024-07-19 14:58:52.228 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 9/50, Train Loss: 0.042753099935920275, Val Loss: 0.03470009585490098 +2024-07-19 14:58:52.899 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 10/50, Train Loss: 0.04262916399293566, Val Loss: 0.03435937159166143 +2024-07-19 14:58:53.570 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 11/50, Train Loss: 0.04312792101441181, Val Loss: 0.0350572250884127 +2024-07-19 14:58:54.237 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 12/50, Train Loss: 0.04296557240392247, Val Loss: 0.034662190422012996 +2024-07-19 14:58:54.912 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 13/50, Train Loss: 0.042816014718009186, Val Loss: 0.034444715626336435 +2024-07-19 14:58:55.578 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 14/50, Train Loss: 0.04265409553653165, Val Loss: 0.034953870936422736 +2024-07-19 14:58:56.247 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 15/50, Train Loss: 0.04286983530100894, Val Loss: 0.034124192655891984 +2024-07-19 14:58:56.916 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 16/50, Train Loss: 0.04251653366811471, Val Loss: 0.034712723330468744 +2024-07-19 14:58:57.586 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 17/50, Train Loss: 0.042516868650811175, Val Loss: 0.03444969331895983 +2024-07-19 14:58:58.263 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 18/50, Train Loss: 0.042425119496677835, Val Loss: 0.03428805392940302 +2024-07-19 14:58:58.938 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 19/50, Train Loss: 0.04277400242496435, Val Loss: 0.03397627799092112 +2024-07-19 14:58:59.607 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 20/50, Train Loss: 0.044131624078607726, Val Loss: 0.03383761855798799 +2024-07-19 14:59:00.286 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 21/50, Train Loss: 0.042737106180252275, Val Loss: 0.03454250761786023 +2024-07-19 14:59:00.964 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 22/50, Train Loss: 0.04245451405287197, Val Loss: 0.03469755636477793 +2024-07-19 14:59:01.658 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 23/50, Train Loss: 0.04241424648422901, Val Loss: 0.034842843693253155 +2024-07-19 14:59:02.329 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 24/50, Train Loss: 0.0425749531730193, Val Loss: 0.03502099981179108 +2024-07-19 14:59:03.000 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 25/50, Train Loss: 0.04276445584550296, Val Loss: 0.03495993797440786 +2024-07-19 14:59:03.670 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 26/50, Train Loss: 0.04191286697320334, Val Loss: 0.03431283692653115 +2024-07-19 14:59:04.341 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 27/50, Train Loss: 0.04209968863590939, Val Loss: 0.03516521239401521 +2024-07-19 14:59:05.012 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 28/50, Train Loss: 0.041843844118387735, Val Loss: 0.03493967078424789 +2024-07-19 14:59:05.701 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 29/50, Train Loss: 0.04204172578525461, Val Loss: 0.034356363520428944 +2024-07-19 14:59:06.374 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 30/50, Train Loss: 0.04180211046940251, Val Loss: 0.03393082335792683 +2024-07-19 14:59:07.054 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 31/50, Train Loss: 0.04129668447661073, Val Loss: 0.035162271529033375 +2024-07-19 14:59:07.725 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 32/50, Train Loss: 0.041630331771320674, Val Loss: 0.03415568037008917 +2024-07-19 14:59:08.407 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 33/50, Train Loss: 0.04132424393183973, Val Loss: 0.03441898932529462 +2024-07-19 14:59:09.092 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 34/50, Train Loss: 0.04110549678643272, Val Loss: 0.034492879803921725 +2024-07-19 14:59:09.781 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 35/50, Train Loss: 0.0411613632172142, Val Loss: 0.03424864790930941 +2024-07-19 14:59:10.476 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 36/50, Train Loss: 0.04101164420837001, Val Loss: 0.03372235248821813 +2024-07-19 14:59:11.154 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 37/50, Train Loss: 0.040821616499595446, Val Loss: 0.034562681222686895 +2024-07-19 14:59:11.844 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 38/50, Train Loss: 0.040557416194207864, Val Loss: 0.035012757959398066 +2024-07-19 14:59:12.522 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 39/50, Train Loss: 0.04111876430576795, Val Loss: 0.03528603936570722 +2024-07-19 14:59:13.201 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 40/50, Train Loss: 0.04112497877890933, Val Loss: 0.036033100624744956 +2024-07-19 14:59:13.881 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 41/50, Train Loss: 0.04066681443420175, Val Loss: 0.03511285157622518 +2024-07-19 14:59:14.589 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 42/50, Train Loss: 0.04035343218288601, Val Loss: 0.034858939112038224 +2024-07-19 14:59:15.260 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 43/50, Train Loss: 0.040384429672809495, Val Loss: 0.03608760046395096 +2024-07-19 14:59:15.935 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 44/50, Train Loss: 0.04003268213661974, Val Loss: 0.03642219138910641 +2024-07-19 14:59:16.630 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 45/50, Train Loss: 0.039810228531491264, Val Loss: 0.03510882025836287 +2024-07-19 14:59:17.305 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 46/50, Train Loss: 0.039944870116775985, Val Loss: 0.035157010563322016 +2024-07-19 14:59:17.980 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 47/50, Train Loss: 0.03981029215485674, Val Loss: 0.03628345458088694 +2024-07-19 14:59:18.661 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 48/50, Train Loss: 0.04077521840442125, Val Loss: 0.03526528597482153 +2024-07-19 14:59:19.343 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 49/50, Train Loss: 0.04007849200590424, Val Loss: 0.03544755914324039 +2024-07-19 14:59:20.018 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 50/50, Train Loss: 0.039688524216005244, Val Loss: 0.03563398218436821 +2024-07-19 14:59:20.018 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Fold 3, MAPE: 5.85% +2024-07-19 14:59:20.132 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Training image saved at metaflow_models//bgd_office_10001_25000_LSTM//train_f3_bgd_office_10001_25000_LSTM.png +2024-07-19 14:59:20.972 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 1/50, Train Loss: 0.03856641514697573, Val Loss: 0.03685808473744908 +2024-07-19 14:59:21.816 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 2/50, Train Loss: 0.038508422375953456, Val Loss: 0.037911017651896216 +2024-07-19 14:59:22.653 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 3/50, Train Loss: 0.03834911423561337, Val Loss: 0.03678606078028679 +2024-07-19 14:59:23.490 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 4/50, Train Loss: 0.038193164771975395, Val Loss: 0.036347746496667735 +2024-07-19 14:59:24.324 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 5/50, Train Loss: 0.03725643517388092, Val Loss: 0.03639628310259935 +2024-07-19 14:59:25.170 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 6/50, Train Loss: 0.03770450836272685, Val Loss: 0.036466405450089556 +2024-07-19 14:59:26.005 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 7/50, Train Loss: 0.03737064593236197, Val Loss: 0.03604099894496235 +2024-07-19 14:59:26.847 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 8/50, Train Loss: 0.037108913278923586, Val Loss: 0.03581043368054403 +2024-07-19 14:59:27.681 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 9/50, Train Loss: 0.037155651252020847, Val Loss: 0.035868351977016474 +2024-07-19 14:59:28.520 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 10/50, Train Loss: 0.03697002386408193, Val Loss: 0.03638218056309868 +2024-07-19 14:59:29.358 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 11/50, Train Loss: 0.03691142210020469, Val Loss: 0.0366836503349446 +2024-07-19 14:59:30.194 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 12/50, Train Loss: 0.03708273175448834, Val Loss: 0.03633406113933872 +2024-07-19 14:59:31.030 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 13/50, Train Loss: 0.036569045846360726, Val Loss: 0.03597361423276566 +2024-07-19 14:59:31.888 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 14/50, Train Loss: 0.036940722716051144, Val Loss: 0.03665047546697629 +2024-07-19 14:59:32.735 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 15/50, Train Loss: 0.03683136173288573, Val Loss: 0.03703065855881652 +2024-07-19 14:59:33.572 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 16/50, Train Loss: 0.03688890655821824, Val Loss: 0.03691185165095974 +2024-07-19 14:59:34.412 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 17/50, Train Loss: 0.03690421668259979, Val Loss: 0.03641704500124261 +2024-07-19 14:59:35.249 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 18/50, Train Loss: 0.0365876300403705, Val Loss: 0.03687674673022451 +2024-07-19 14:59:36.093 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 19/50, Train Loss: 0.036848704832104534, Val Loss: 0.036455368723821 +2024-07-19 14:59:36.937 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 20/50, Train Loss: 0.03701678046363068, Val Loss: 0.03617934600726978 +2024-07-19 14:59:37.775 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 21/50, Train Loss: 0.03625960132250419, Val Loss: 0.036501319223159065 +2024-07-19 14:59:38.620 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 22/50, Train Loss: 0.036173074547160455, Val Loss: 0.03626129313095196 +2024-07-19 14:59:39.488 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 23/50, Train Loss: 0.036133619639408456, Val Loss: 0.03596512978342739 +2024-07-19 14:59:40.341 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 24/50, Train Loss: 0.03671737015247345, Val Loss: 0.03671666667670817 +2024-07-19 14:59:41.188 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 25/50, Train Loss: 0.03633973438415553, Val Loss: 0.036622934748192094 +2024-07-19 14:59:42.042 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 26/50, Train Loss: 0.03582475115391579, Val Loss: 0.0364915897717347 +2024-07-19 14:59:42.881 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 27/50, Train Loss: 0.03596847203488533, Val Loss: 0.03680292813963181 +2024-07-19 14:59:43.724 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 28/50, Train Loss: 0.035981949408548874, Val Loss: 0.03748798516352434 +2024-07-19 14:59:44.562 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 29/50, Train Loss: 0.035850611105970626, Val Loss: 0.03598053692965894 +2024-07-19 14:59:45.396 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 30/50, Train Loss: 0.03609642777387258, Val Loss: 0.036515514794233685 +2024-07-19 14:59:46.237 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 31/50, Train Loss: 0.03569815650705125, Val Loss: 0.03701090555940125 +2024-07-19 14:59:47.077 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 32/50, Train Loss: 0.03565339642771325, Val Loss: 0.03665545799240873 +2024-07-19 14:59:47.919 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 33/50, Train Loss: 0.03588374234367531, Val Loss: 0.037116542508876 +2024-07-19 14:59:48.778 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 34/50, Train Loss: 0.03541427518108061, Val Loss: 0.03726013452821487 +2024-07-19 14:59:49.617 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 35/50, Train Loss: 0.03527148828360733, Val Loss: 0.0368464724538294 +2024-07-19 14:59:50.462 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 36/50, Train Loss: 0.03526937902219348, Val Loss: 0.03731134080806294 +2024-07-19 14:59:51.309 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 37/50, Train Loss: 0.03594903797320612, Val Loss: 0.03701157747088252 +2024-07-19 14:59:52.151 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 38/50, Train Loss: 0.03552131401886652, Val Loss: 0.0373892670346273 +2024-07-19 14:59:52.995 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 39/50, Train Loss: 0.03534687704478319, Val Loss: 0.03720197801453036 +2024-07-19 14:59:53.864 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 40/50, Train Loss: 0.035220339577031, Val Loss: 0.03723935526166413 +2024-07-19 14:59:54.714 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 41/50, Train Loss: 0.03553481194303258, Val Loss: 0.037157685772792715 +2024-07-19 14:59:55.586 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 42/50, Train Loss: 0.035249218211642334, Val Loss: 0.03675258517063953 +2024-07-19 14:59:56.465 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 43/50, Train Loss: 0.03526883182412648, Val Loss: 0.03698248894432107 +2024-07-19 14:59:57.321 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 44/50, Train Loss: 0.03482650254167371, Val Loss: 0.03732548195969414 +2024-07-19 14:59:58.270 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 45/50, Train Loss: 0.03504830320457836, Val Loss: 0.036766579727063306 +2024-07-19 14:59:59.193 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 46/50, Train Loss: 0.035277169422952684, Val Loss: 0.03717020551699239 +2024-07-19 15:00:00.151 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 47/50, Train Loss: 0.03477214352524543, Val Loss: 0.0369438555192303 +2024-07-19 15:00:01.085 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 48/50, Train Loss: 0.034904294913368564, Val Loss: 0.03685305227298994 +2024-07-19 15:00:01.960 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 49/50, Train Loss: 0.035110261485717456, Val Loss: 0.037046543146307405 +2024-07-19 15:00:02.834 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Epoch 50/50, Train Loss: 0.03471566118545585, Val Loss: 0.03718984474402827 +2024-07-19 15:00:02.834 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Fold 4, MAPE: 5.69% +2024-07-19 15:00:02.947 [18/cross_validate_train/215 (pid 9228)] INFO:__main__:Training image saved at metaflow_models//bgd_office_10001_25000_LSTM//train_f4_bgd_office_10001_25000_LSTM.png +2024-07-19 15:00:07.496 [18/cross_validate_train/215 (pid 9228)] Task finished successfully. +2024-07-19 15:00:07.533 [18/model_scores/216 (pid 9813)] Task is starting. +2024-07-19 15:00:09.093 [18/model_scores/216 (pid 9813)] INFO:__main__:Average Train Loss across all folds: 0.046140275980422474 +2024-07-19 15:00:13.264 [18/model_scores/216 (pid 9813)] INFO:__main__:Average Validation Loss across all folds: 0.049463490839745536 +2024-07-19 15:00:13.264 [18/model_scores/216 (pid 9813)] INFO:__main__:Average MAPE across all folds: 7.12% +2024-07-19 15:00:13.265 [18/model_scores/216 (pid 9813)] Task finished successfully. +2024-07-19 15:00:13.296 [18/validate_model/217 (pid 9867)] Task is starting. +2024-07-19 15:00:14.804 [18/validate_model/217 (pid 9867)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 15:00:14.921 [18/validate_model/217 (pid 9867)] INFO:__main__:Test Set MAPE: 8.01% +2024-07-19 15:00:15.324 [18/validate_model/217 (pid 9867)] INFO:__main__:Test image saved at metaflow_models//bgd_office_10001_25000_LSTM//test_bgd_office_10001_25000_LSTM.png +2024-07-19 15:00:15.777 [18/validate_model/217 (pid 9867)] Task finished successfully. +2024-07-19 15:00:15.809 [18/log_model/218 (pid 9884)] Task is starting. +2024-07-19 15:00:17.322 [18/log_model/218 (pid 9884)] INFO:__main__:Logging model bgd_office_10001_25000_LSTM +2024-07-19 15:00:17.323 [18/log_model/218 (pid 9884)] INFO:__main__:Model logged at metaflow_models//bgd_office_10001_25000_LSTM//bgd_office_10001_25000_LSTM.pth +2024-07-19 15:00:21.535 [18/log_model/218 (pid 9884)] Task finished successfully. +2024-07-19 15:00:21.566 [18/end/219 (pid 9919)] Task is starting. +2024-07-19 15:00:23.225 [18/end/219 (pid 9919)] INFO:__main__:Pipeline end. +2024-07-19 15:00:23.559 [18/end/219 (pid 9919)] Task finished successfully. +2024-07-19 15:00:23.560 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/scaler_bgd_office_10001_25000_LSTM.pkl b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/scaler_bgd_office_10001_25000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..ce0738e21a9e5095de6febeb9bf90d735392e328 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/scaler_bgd_office_10001_25000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f447c671af3f956b0950a4176f0e94e6caeef719dfdd282f703b785ac2357a56 +size 557 diff --git a/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/test_bgd_office_10001_25000_LSTM.png b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/test_bgd_office_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..eb6082b4820fb424e512313b477977d6603ebae4 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/test_bgd_office_10001_25000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f0_bgd_office_10001_25000_LSTM.png b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f0_bgd_office_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..4ced641c69eb71357c0edf1f3cf75b667e70a786 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f0_bgd_office_10001_25000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f1_bgd_office_10001_25000_LSTM.png b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f1_bgd_office_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..fbba8b7ae3368fee488e6404fba33c3d0445b1d1 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f1_bgd_office_10001_25000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f2_bgd_office_10001_25000_LSTM.png b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f2_bgd_office_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..d0099734af6370177c6c4be6d62701e59e4734f3 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f2_bgd_office_10001_25000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f3_bgd_office_10001_25000_LSTM.png b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f3_bgd_office_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..5f8e010bc22cbe69b93983aa8351c46f4c0d1290 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f3_bgd_office_10001_25000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f4_bgd_office_10001_25000_LSTM.png b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f4_bgd_office_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..26e021f8b564482e94b02911ae2c47380a5a23ab Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_10001_25000_LSTM/train_f4_bgd_office_10001_25000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/bgd_office_1001_5000_LSTM.pth b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/bgd_office_1001_5000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..71012374971fc8ead6438434e22bc4d906d58a16 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/bgd_office_1001_5000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e342fc917313cdd3aab4a6c5ab5ecfe87b298d3fff9a7a13ab02edaeb6964a2 +size 46652 diff --git a/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/output.txt b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..07e4c984f54348a687cc312d50f139eddac4447e --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/output.txt @@ -0,0 +1,730 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:45:15.001 Workflow starting (run-id 14): +2024-07-19 14:45:15.072 [14/start/151 (pid 5924)] Task is starting. +2024-07-19 14:45:16.567 [14/start/151 (pid 5924)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:45:16.864 [14/start/151 (pid 5924)] Task finished successfully. +2024-07-19 14:45:16.897 [14/ingest/152 (pid 5928)] Task is starting. +2024-07-19 14:45:18.356 [14/ingest/152 (pid 5928)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:45:18.369 [14/ingest/152 (pid 5928)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:45:22.243 [14/ingest/152 (pid 5928)] Task finished successfully. +2024-07-19 14:45:22.276 [14/pick_2017_data/153 (pid 5961)] Task is starting. +2024-07-19 14:45:23.727 [14/pick_2017_data/153 (pid 5961)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:45:24.044 [14/pick_2017_data/153 (pid 5961)] Task finished successfully. +2024-07-19 14:45:24.075 [14/fill_missing_data/154 (pid 5972)] Task is starting. +2024-07-19 14:45:25.565 [14/fill_missing_data/154 (pid 5972)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:45:25.569 [14/fill_missing_data/154 (pid 5972)] INFO:__main__:NaN counts per column: +2024-07-19 14:45:25.569 [14/fill_missing_data/154 (pid 5972)] INFO:__main__:Panther_office_Hannah 12 +2024-07-19 14:45:25.570 [14/fill_missing_data/154 (pid 5972)] Panther_office_Danica 10 +2024-07-19 14:45:25.570 [14/fill_missing_data/154 (pid 5972)] dtype: int64 +2024-07-19 14:45:25.570 [14/fill_missing_data/154 (pid 5972)] --- Logging error --- +2024-07-19 14:45:25.571 [14/fill_missing_data/154 (pid 5972)] Traceback (most recent call last): +2024-07-19 14:45:25.571 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:45:25.571 [14/fill_missing_data/154 (pid 5972)] msg = self.format(record) +2024-07-19 14:45:25.571 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] return fmt.format(record) +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] record.message = record.getMessage() +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] msg = msg % self.args +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] TypeError: not all arguments converted during string formatting +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] Call stack: +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:45:25.891 [14/fill_missing_data/154 (pid 5972)] BGD_LinearFlow() +2024-07-19 14:45:25.891 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:45:25.891 [14/fill_missing_data/154 (pid 5972)] cli.main(self) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] return func(*args, **kwargs) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] return self.main(*args, **kwargs) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] rv = self.invoke(ctx) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] return callback(*args, **kwargs) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] task.run_step( +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] self._exec_step_function(step_func) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] step_function() +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] Arguments: (22,) +2024-07-19 14:45:25.893 [14/fill_missing_data/154 (pid 5972)] Task finished successfully. +2024-07-19 14:45:25.923 [14/find_median/155 (pid 5983)] Task is starting. +2024-07-19 14:45:27.408 [14/find_median/155 (pid 5983)] INFO:__main__:Computing and using median.. +2024-07-19 14:45:27.920 [14/find_median/155 (pid 5983)] Task finished successfully. +2024-07-19 14:45:27.951 [14/aggregate_data/156 (pid 5994)] Task is starting. +2024-07-19 14:45:29.421 [14/aggregate_data/156 (pid 5994)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:45:33.245 [14/aggregate_data/156 (pid 5994)] Task finished successfully. +2024-07-19 14:45:33.279 [14/split_data/157 (pid 6027)] Task is starting. +2024-07-19 14:45:34.800 [14/split_data/157 (pid 6027)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:45:38.645 [14/split_data/157 (pid 6027)] Task finished successfully. +2024-07-19 14:45:38.678 [14/make_x_y/158 (pid 6053)] Task is starting. +2024-07-19 14:45:40.518 [14/make_x_y/158 (pid 6053)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:45:40.840 [14/make_x_y/158 (pid 6053)] Shape of y_train: (6978, 1) +2024-07-19 14:45:40.841 [14/make_x_y/158 (pid 6053)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:45:40.841 [14/make_x_y/158 (pid 6053)] Shape of y_test: (1722, 1) +2024-07-19 14:45:40.841 [14/make_x_y/158 (pid 6053)] Task finished successfully. +2024-07-19 14:45:40.878 [14/cross_validate_train/159 (pid 6064)] Task is starting. +2024-07-19 14:45:42.342 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Creating bgd_office_1001_5000_LSTM +2024-07-19 14:45:42.342 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Performing cross validation.. +2024-07-19 14:45:43.070 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 1/50, Train Loss: 0.09809599534885304, Val Loss: 0.09609978625903258 +2024-07-19 14:45:43.277 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 2/50, Train Loss: 0.0921810642891639, Val Loss: 0.08910396141377655 +2024-07-19 14:45:43.484 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 3/50, Train Loss: 0.08531243122510009, Val Loss: 0.08015610438746375 +2024-07-19 14:45:43.691 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 4/50, Train Loss: 0.07457188667880522, Val Loss: 0.06626429821591119 +2024-07-19 14:45:43.907 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 5/50, Train Loss: 0.06072673986892443, Val Loss: 0.05529348461611851 +2024-07-19 14:45:44.121 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 6/50, Train Loss: 0.05757858206492823, Val Loss: 0.05260232755461255 +2024-07-19 14:45:44.327 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 7/50, Train Loss: 0.05477722190521859, Val Loss: 0.050957065579053516 +2024-07-19 14:45:44.535 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 8/50, Train Loss: 0.05261252155980548, Val Loss: 0.04975927887937507 +2024-07-19 14:45:44.755 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 9/50, Train Loss: 0.05104047105320402, Val Loss: 0.048993778138144595 +2024-07-19 14:45:44.965 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 10/50, Train Loss: 0.049328868805959415, Val Loss: 0.048321997394432895 +2024-07-19 14:45:45.181 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 11/50, Train Loss: 0.04804400656674359, Val Loss: 0.048236351762268995 +2024-07-19 14:45:45.394 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 12/50, Train Loss: 0.047293323620751095, Val Loss: 0.0484976171943787 +2024-07-19 14:45:45.608 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 13/50, Train Loss: 0.04649329925509724, Val Loss: 0.04679758076530856 +2024-07-19 14:45:45.815 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 14/50, Train Loss: 0.04580807066648393, Val Loss: 0.046505114516696415 +2024-07-19 14:45:46.035 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 15/50, Train Loss: 0.045479460141143284, Val Loss: 0.04648769581438722 +2024-07-19 14:45:46.250 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 16/50, Train Loss: 0.04499115085078252, Val Loss: 0.04586634039878845 +2024-07-19 14:45:46.459 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 17/50, Train Loss: 0.044786085097773654, Val Loss: 0.045417030115385316 +2024-07-19 14:45:46.671 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 18/50, Train Loss: 0.044674927670810674, Val Loss: 0.045754440279828536 +2024-07-19 14:45:46.884 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 19/50, Train Loss: 0.043789207079523315, Val Loss: 0.04453314136008959 +2024-07-19 14:45:47.101 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 20/50, Train Loss: 0.0435479212350942, Val Loss: 0.04485708842607769 +2024-07-19 14:45:47.315 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 21/50, Train Loss: 0.04279580697215892, Val Loss: 0.043275218859717655 +2024-07-19 14:45:47.524 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 22/50, Train Loss: 0.042326755418970775, Val Loss: 0.04199169173433974 +2024-07-19 14:45:47.734 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 23/50, Train Loss: 0.042202121653669586, Val Loss: 0.041856270937903506 +2024-07-19 14:45:47.951 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 24/50, Train Loss: 0.04206115244006788, Val Loss: 0.04189615283866186 +2024-07-19 14:45:48.164 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 25/50, Train Loss: 0.04175174004725508, Val Loss: 0.041303969164555136 +2024-07-19 14:45:48.384 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 26/50, Train Loss: 0.0414202866219991, Val Loss: 0.04141482912205361 +2024-07-19 14:45:48.602 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 27/50, Train Loss: 0.04114876637184942, Val Loss: 0.04075538507989935 +2024-07-19 14:45:48.812 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 28/50, Train Loss: 0.04087927494500134, Val Loss: 0.04039941738183434 +2024-07-19 14:45:49.032 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 29/50, Train Loss: 0.041186407107759164, Val Loss: 0.0408015022608074 +2024-07-19 14:45:49.244 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 30/50, Train Loss: 0.041057887310917314, Val Loss: 0.04099068272154074 +2024-07-19 14:45:49.461 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 31/50, Train Loss: 0.04106969104425327, Val Loss: 0.04103982901653728 +2024-07-19 14:45:49.677 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 32/50, Train Loss: 0.04102435866622506, Val Loss: 0.04057020930623686 +2024-07-19 14:45:49.890 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 33/50, Train Loss: 0.040800173641056627, Val Loss: 0.04047278098359301 +2024-07-19 14:45:50.103 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 34/50, Train Loss: 0.040750628437947585, Val Loss: 0.04034773043885424 +2024-07-19 14:45:50.314 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 35/50, Train Loss: 0.04049582573006282, Val Loss: 0.04015014109176558 +2024-07-19 14:45:50.533 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 36/50, Train Loss: 0.040776897876246554, Val Loss: 0.04053579925282581 +2024-07-19 14:45:50.750 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 37/50, Train Loss: 0.0405887232438938, Val Loss: 0.04068150119604291 +2024-07-19 14:45:50.997 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 38/50, Train Loss: 0.040711043352210846, Val Loss: 0.04027205549583242 +2024-07-19 14:45:51.203 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 39/50, Train Loss: 0.04082861273373301, Val Loss: 0.039604014138112195 +2024-07-19 14:45:51.406 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 40/50, Train Loss: 0.040350467218337835, Val Loss: 0.03991883248090744 +2024-07-19 14:45:51.619 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 41/50, Train Loss: 0.04041987768298871, Val Loss: 0.03999179959095813 +2024-07-19 14:45:51.830 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 42/50, Train Loss: 0.04044819963038773, Val Loss: 0.03994654959722145 +2024-07-19 14:45:52.045 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 43/50, Train Loss: 0.04032494938252745, Val Loss: 0.040007246104446614 +2024-07-19 14:45:52.258 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 44/50, Train Loss: 0.04039527488419333, Val Loss: 0.039891839681847674 +2024-07-19 14:45:52.472 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 45/50, Train Loss: 0.040431173342103895, Val Loss: 0.03968654084648635 +2024-07-19 14:45:52.684 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 46/50, Train Loss: 0.040527063799468244, Val Loss: 0.039381592861703923 +2024-07-19 14:45:52.893 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 47/50, Train Loss: 0.04030640357853593, Val Loss: 0.03937564805351399 +2024-07-19 14:45:53.111 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 48/50, Train Loss: 0.040423825282502816, Val Loss: 0.03927307037284245 +2024-07-19 14:45:53.329 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 49/50, Train Loss: 0.039995146009164886, Val Loss: 0.039784042315708625 +2024-07-19 14:45:53.548 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 50/50, Train Loss: 0.04027160810860428, Val Loss: 0.03961172669723227 +2024-07-19 14:45:53.549 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Fold 0, MAPE: 13.11% +2024-07-19 14:45:53.873 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Training image saved at metaflow_models//bgd_office_1001_5000_LSTM//train_f0_bgd_office_1001_5000_LSTM.png +2024-07-19 14:45:54.343 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 1/50, Train Loss: 0.04068863422495045, Val Loss: 0.04825360338027413 +2024-07-19 14:45:54.718 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 2/50, Train Loss: 0.039849430935023585, Val Loss: 0.047600043937563896 +2024-07-19 14:45:55.088 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 3/50, Train Loss: 0.03976892049692265, Val Loss: 0.04757953133132007 +2024-07-19 14:45:55.461 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 4/50, Train Loss: 0.039879781589524384, Val Loss: 0.04738680107166638 +2024-07-19 14:45:55.834 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 5/50, Train Loss: 0.04009785707274528, Val Loss: 0.0473587813006865 +2024-07-19 14:45:56.206 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 6/50, Train Loss: 0.0399857880037329, Val Loss: 0.0473733873584786 +2024-07-19 14:45:56.597 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 7/50, Train Loss: 0.040191570233094366, Val Loss: 0.04731545224785805 +2024-07-19 14:45:56.968 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 8/50, Train Loss: 0.040059746281333165, Val Loss: 0.047449247307471326 +2024-07-19 14:45:57.342 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 9/50, Train Loss: 0.04014019185855781, Val Loss: 0.047472828093010025 +2024-07-19 14:45:57.714 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 10/50, Train Loss: 0.040288828721601666, Val Loss: 0.047183092733895454 +2024-07-19 14:45:58.078 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 11/50, Train Loss: 0.040351457153893495, Val Loss: 0.047414877930203 +2024-07-19 14:45:58.459 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 12/50, Train Loss: 0.04035120906486903, Val Loss: 0.047653614920941556 +2024-07-19 14:45:58.828 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 13/50, Train Loss: 0.04024219622656907, Val Loss: 0.04734494642832795 +2024-07-19 14:45:59.190 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 14/50, Train Loss: 0.039960931093521314, Val Loss: 0.04771625321056392 +2024-07-19 14:45:59.560 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 15/50, Train Loss: 0.03998607744092811, Val Loss: 0.04774816721879147 +2024-07-19 14:45:59.930 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 16/50, Train Loss: 0.03985973286812436, Val Loss: 0.04756600963505539 +2024-07-19 14:46:00.301 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 17/50, Train Loss: 0.04003280579839667, Val Loss: 0.047673694235650266 +2024-07-19 14:46:00.676 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 18/50, Train Loss: 0.0396543518474249, Val Loss: 0.0472108121155887 +2024-07-19 14:46:01.081 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 19/50, Train Loss: 0.039477175765045704, Val Loss: 0.04749146164269061 +2024-07-19 14:46:01.451 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 20/50, Train Loss: 0.039529207251863936, Val Loss: 0.047249186633003724 +2024-07-19 14:46:01.827 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 21/50, Train Loss: 0.03923158735445101, Val Loss: 0.04712751658784377 +2024-07-19 14:46:02.217 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 22/50, Train Loss: 0.03951379067379318, Val Loss: 0.04735471554905982 +2024-07-19 14:46:02.587 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 23/50, Train Loss: 0.03891396308190202, Val Loss: 0.047080826870090256 +2024-07-19 14:46:02.956 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 24/50, Train Loss: 0.03930349979702741, Val Loss: 0.0473065076244844 +2024-07-19 14:46:03.322 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 25/50, Train Loss: 0.03924155010752482, Val Loss: 0.04727228403695532 +2024-07-19 14:46:03.690 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 26/50, Train Loss: 0.03893423590758075, Val Loss: 0.04696703475673456 +2024-07-19 14:46:04.060 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 27/50, Train Loss: 0.03903102446092318, Val Loss: 0.04702478757983929 +2024-07-19 14:46:04.437 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 28/50, Train Loss: 0.03897663828444808, Val Loss: 0.04698357570010263 +2024-07-19 14:46:04.815 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 29/50, Train Loss: 0.03882731050763228, Val Loss: 0.047113634796964156 +2024-07-19 14:46:05.177 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 30/50, Train Loss: 0.03884846763047453, Val Loss: 0.04709778142136496 +2024-07-19 14:46:05.538 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 31/50, Train Loss: 0.03901006021115878, Val Loss: 0.04708808444037631 +2024-07-19 14:46:05.907 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 32/50, Train Loss: 0.038857988630459736, Val Loss: 0.047331234742258046 +2024-07-19 14:46:06.274 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 33/50, Train Loss: 0.03877751820095598, Val Loss: 0.04692259375509378 +2024-07-19 14:46:06.636 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 34/50, Train Loss: 0.03886658384477439, Val Loss: 0.04702767060213798 +2024-07-19 14:46:07.002 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 35/50, Train Loss: 0.038767311033116626, Val Loss: 0.04734986602655939 +2024-07-19 14:46:07.376 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 36/50, Train Loss: 0.03862420262845412, Val Loss: 0.046977549086551405 +2024-07-19 14:46:07.743 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 37/50, Train Loss: 0.03879187312232305, Val Loss: 0.04714394169482025 +2024-07-19 14:46:08.105 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 38/50, Train Loss: 0.03864029498949443, Val Loss: 0.04687384863358897 +2024-07-19 14:46:08.478 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 39/50, Train Loss: 0.0387750359838956, Val Loss: 0.046922705664828014 +2024-07-19 14:46:08.851 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 40/50, Train Loss: 0.03870706895544921, Val Loss: 0.0468875366590313 +2024-07-19 14:46:09.228 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 41/50, Train Loss: 0.03868495782658662, Val Loss: 0.04740967103154273 +2024-07-19 14:46:09.597 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 42/50, Train Loss: 0.038519878884496754, Val Loss: 0.04718850940667294 +2024-07-19 14:46:09.975 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 43/50, Train Loss: 0.03847690158817049, Val Loss: 0.04715959002842774 +2024-07-19 14:46:10.341 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 44/50, Train Loss: 0.038519081136543454, Val Loss: 0.047358214351776486 +2024-07-19 14:46:10.707 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 45/50, Train Loss: 0.03844158040129975, Val Loss: 0.04745865351444966 +2024-07-19 14:46:11.094 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 46/50, Train Loss: 0.03850739365060852, Val Loss: 0.0478238076273654 +2024-07-19 14:46:11.458 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 47/50, Train Loss: 0.038435243708017756, Val Loss: 0.04700215714606079 +2024-07-19 14:46:11.825 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 48/50, Train Loss: 0.038431019432944795, Val Loss: 0.047380810150423565 +2024-07-19 14:46:12.189 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 49/50, Train Loss: 0.03833923134187313, Val Loss: 0.0471691391053232 +2024-07-19 14:46:12.575 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 50/50, Train Loss: 0.03861514142114822, Val Loss: 0.04731174321794832 +2024-07-19 14:46:12.575 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Fold 1, MAPE: 13.88% +2024-07-19 14:46:12.685 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Training image saved at metaflow_models//bgd_office_1001_5000_LSTM//train_f1_bgd_office_1001_5000_LSTM.png +2024-07-19 14:46:13.182 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 1/50, Train Loss: 0.042240628024393864, Val Loss: 0.053329318862509086 +2024-07-19 14:46:13.677 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 2/50, Train Loss: 0.04279964945533059, Val Loss: 0.05398329120834131 +2024-07-19 14:46:14.179 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 3/50, Train Loss: 0.04262663076885722, Val Loss: 0.05325589102466364 +2024-07-19 14:46:14.686 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 4/50, Train Loss: 0.042348298887637525, Val Loss: 0.0529615949537303 +2024-07-19 14:46:15.192 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 5/50, Train Loss: 0.04229655408046462, Val Loss: 0.052981566738437964 +2024-07-19 14:46:15.704 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 6/50, Train Loss: 0.04216192357919433, Val Loss: 0.0531544995469016 +2024-07-19 14:46:16.217 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 7/50, Train Loss: 0.04204509344629266, Val Loss: 0.05300181505043764 +2024-07-19 14:46:16.732 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 8/50, Train Loss: 0.04204746858978813, Val Loss: 0.053049603175069834 +2024-07-19 14:46:17.248 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 9/50, Train Loss: 0.04198027053339915, Val Loss: 0.052981648040381635 +2024-07-19 14:46:17.771 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 10/50, Train Loss: 0.041870806755667386, Val Loss: 0.053030685496491356 +2024-07-19 14:46:18.290 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 11/50, Train Loss: 0.04183089291168885, Val Loss: 0.05283539621411143 +2024-07-19 14:46:18.813 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 12/50, Train Loss: 0.041767449609257955, Val Loss: 0.05295984059370853 +2024-07-19 14:46:19.327 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 13/50, Train Loss: 0.04189459631558169, Val Loss: 0.05316980535516868 +2024-07-19 14:46:19.851 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 14/50, Train Loss: 0.04169598781419071, Val Loss: 0.052944270541539065 +2024-07-19 14:46:20.354 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 15/50, Train Loss: 0.041817008331418035, Val Loss: 0.053024664974293194 +2024-07-19 14:46:20.856 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 16/50, Train Loss: 0.041665823037990116, Val Loss: 0.05290544833484534 +2024-07-19 14:46:21.369 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 17/50, Train Loss: 0.041726371959190475, Val Loss: 0.05295065055425103 +2024-07-19 14:46:21.874 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 18/50, Train Loss: 0.04165567567741329, Val Loss: 0.05274237390305545 +2024-07-19 14:46:22.394 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 19/50, Train Loss: 0.04170915819704533, Val Loss: 0.052890924132756284 +2024-07-19 14:46:22.931 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 20/50, Train Loss: 0.04146583354608579, Val Loss: 0.053890823411780434 +2024-07-19 14:46:23.456 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 21/50, Train Loss: 0.041692766377871684, Val Loss: 0.05281021748040173 +2024-07-19 14:46:23.982 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 22/50, Train Loss: 0.04150891375135292, Val Loss: 0.05289549984641977 +2024-07-19 14:46:24.499 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 23/50, Train Loss: 0.04153581727296114, Val Loss: 0.052957261635645014 +2024-07-19 14:46:25.029 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 24/50, Train Loss: 0.041456244555725295, Val Loss: 0.05284202149188196 +2024-07-19 14:46:25.549 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 25/50, Train Loss: 0.04143907332962209, Val Loss: 0.05317692690201708 +2024-07-19 14:46:26.073 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 26/50, Train Loss: 0.04139049393548207, Val Loss: 0.053243703435401656 +2024-07-19 14:46:26.618 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 27/50, Train Loss: 0.041398868675936354, Val Loss: 0.05380719275893392 +2024-07-19 14:46:27.139 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 28/50, Train Loss: 0.0411798059432344, Val Loss: 0.053528004904856555 +2024-07-19 14:46:27.657 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 29/50, Train Loss: 0.04120219034904783, Val Loss: 0.05371077247970813 +2024-07-19 14:46:28.176 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 30/50, Train Loss: 0.04120572084052996, Val Loss: 0.05391668447771588 +2024-07-19 14:46:28.708 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 31/50, Train Loss: 0.041182414035905494, Val Loss: 0.053596034343983676 +2024-07-19 14:46:29.221 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 32/50, Train Loss: 0.04215179503980008, Val Loss: 0.052009192521910406 +2024-07-19 14:46:29.753 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 33/50, Train Loss: 0.041502822224389425, Val Loss: 0.05306116139163842 +2024-07-19 14:46:30.276 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 34/50, Train Loss: 0.04099973191253164, Val Loss: 0.05276042545163954 +2024-07-19 14:46:30.805 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 35/50, Train Loss: 0.040668804621831936, Val Loss: 0.05312804636117574 +2024-07-19 14:46:31.354 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 36/50, Train Loss: 0.0409858759153973, Val Loss: 0.052963262071480624 +2024-07-19 14:46:31.887 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 37/50, Train Loss: 0.04164853468537331, Val Loss: 0.052242101144951744 +2024-07-19 14:46:32.414 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 38/50, Train Loss: 0.041162860359657896, Val Loss: 0.05263559525278774 +2024-07-19 14:46:32.939 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 39/50, Train Loss: 0.04049232288856398, Val Loss: 0.052899213860163816 +2024-07-19 14:46:33.471 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 40/50, Train Loss: 0.040617500330236825, Val Loss: 0.053153493819204534 +2024-07-19 14:46:34.001 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 41/50, Train Loss: 0.04163928246972236, Val Loss: 0.05254730184537333 +2024-07-19 14:46:34.523 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 42/50, Train Loss: 0.041126584363254635, Val Loss: 0.05299272247262903 +2024-07-19 14:46:35.061 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 43/50, Train Loss: 0.04060779174959118, Val Loss: 0.05281121787187215 +2024-07-19 14:46:35.583 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 44/50, Train Loss: 0.04056420818140561, Val Loss: 0.05482973661777135 +2024-07-19 14:46:36.115 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 45/50, Train Loss: 0.04146989175880497, Val Loss: 0.05390089558991226 +2024-07-19 14:46:36.641 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 46/50, Train Loss: 0.04107264046641913, Val Loss: 0.05300888751406927 +2024-07-19 14:46:37.171 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 47/50, Train Loss: 0.040456281195987355, Val Loss: 0.0532697832866295 +2024-07-19 14:46:37.694 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 48/50, Train Loss: 0.04057954824952917, Val Loss: 0.05451437075798576 +2024-07-19 14:46:38.213 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 49/50, Train Loss: 0.041413849338211794, Val Loss: 0.052947369177599214 +2024-07-19 14:46:38.751 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 50/50, Train Loss: 0.040910580043088306, Val Loss: 0.052794808169474475 +2024-07-19 14:46:38.751 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Fold 2, MAPE: 14.20% +2024-07-19 14:46:38.864 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Training image saved at metaflow_models//bgd_office_1001_5000_LSTM//train_f2_bgd_office_1001_5000_LSTM.png +2024-07-19 14:46:39.568 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 1/50, Train Loss: 0.0439119229909696, Val Loss: 0.052130125563692405 +2024-07-19 14:46:40.260 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 2/50, Train Loss: 0.04401090026718296, Val Loss: 0.05255313791535996 +2024-07-19 14:46:40.947 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 3/50, Train Loss: 0.04383017057680512, Val Loss: 0.0530949186634373 +2024-07-19 14:46:41.621 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 4/50, Train Loss: 0.043587921365891416, Val Loss: 0.053217186819057204 +2024-07-19 14:46:42.301 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 5/50, Train Loss: 0.043644655164178106, Val Loss: 0.05338382358486588 +2024-07-19 14:46:42.972 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 6/50, Train Loss: 0.043418489741033885, Val Loss: 0.05332616726691659 +2024-07-19 14:46:43.640 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 7/50, Train Loss: 0.04352456373353935, Val Loss: 0.05371098492193867 +2024-07-19 14:46:44.318 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 8/50, Train Loss: 0.04332311765278039, Val Loss: 0.05305845008508579 +2024-07-19 14:46:44.996 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 9/50, Train Loss: 0.04344272906955791, Val Loss: 0.053216295971258265 +2024-07-19 14:46:45.697 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 10/50, Train Loss: 0.043447360587752844, Val Loss: 0.055372969524280446 +2024-07-19 14:46:46.396 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 11/50, Train Loss: 0.04316192213445902, Val Loss: 0.05309695609518 +2024-07-19 14:46:47.043 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 12/50, Train Loss: 0.043334516454232884, Val Loss: 0.05599851896231239 +2024-07-19 14:46:47.695 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 13/50, Train Loss: 0.04307890841609811, Val Loss: 0.05311467287105483 +2024-07-19 14:46:48.382 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 14/50, Train Loss: 0.04321856688299816, Val Loss: 0.05285755534832542 +2024-07-19 14:46:49.034 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 15/50, Train Loss: 0.04320863169962413, Val Loss: 0.05516831415730554 +2024-07-19 14:46:49.688 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 16/50, Train Loss: 0.043119119097516964, Val Loss: 0.054786852586108284 +2024-07-19 14:46:50.333 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 17/50, Train Loss: 0.04300480001695352, Val Loss: 0.053595168163647525 +2024-07-19 14:46:50.997 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 18/50, Train Loss: 0.04313774362257491, Val Loss: 0.05355984415556934 +2024-07-19 14:46:51.657 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 19/50, Train Loss: 0.04308692563631355, Val Loss: 0.053336675807430935 +2024-07-19 14:46:52.338 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 20/50, Train Loss: 0.043058748854553866, Val Loss: 0.053400897597138945 +2024-07-19 14:46:53.002 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 21/50, Train Loss: 0.04305626647164152, Val Loss: 0.053509547601680495 +2024-07-19 14:46:53.669 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 22/50, Train Loss: 0.04287391116408861, Val Loss: 0.05300403829361942 +2024-07-19 14:46:54.351 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 23/50, Train Loss: 0.04299934196911038, Val Loss: 0.05289465138638342 +2024-07-19 14:46:55.028 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 24/50, Train Loss: 0.042966031239763516, Val Loss: 0.05247904028038721 +2024-07-19 14:46:55.692 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 25/50, Train Loss: 0.0429366267452093, Val Loss: 0.05314115082492699 +2024-07-19 14:46:56.386 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 26/50, Train Loss: 0.04269329984098265, Val Loss: 0.052893582530118326 +2024-07-19 14:46:57.061 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 27/50, Train Loss: 0.042663636068775226, Val Loss: 0.05324885631735261 +2024-07-19 14:46:57.726 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 28/50, Train Loss: 0.04280186168951531, Val Loss: 0.0531066992395633 +2024-07-19 14:46:58.407 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 29/50, Train Loss: 0.04269930985692429, Val Loss: 0.052072827276345844 +2024-07-19 14:46:59.086 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 30/50, Train Loss: 0.042757361821115836, Val Loss: 0.052650737601357536 +2024-07-19 14:46:59.770 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 31/50, Train Loss: 0.04279716426430091, Val Loss: 0.052557753348672714 +2024-07-19 14:47:00.456 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 32/50, Train Loss: 0.042738642951805295, Val Loss: 0.052781361583116894 +2024-07-19 14:47:01.169 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 33/50, Train Loss: 0.042536443124895226, Val Loss: 0.05273876852683119 +2024-07-19 14:47:01.851 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 34/50, Train Loss: 0.042703561459298, Val Loss: 0.05224596044501743 +2024-07-19 14:47:02.523 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 35/50, Train Loss: 0.04252652045696566, Val Loss: 0.05212172382586711 +2024-07-19 14:47:03.218 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 36/50, Train Loss: 0.04262070901283663, Val Loss: 0.052366690961895765 +2024-07-19 14:47:03.883 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 37/50, Train Loss: 0.042513715039479406, Val Loss: 0.05210983128966512 +2024-07-19 14:47:04.561 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 38/50, Train Loss: 0.04259630629461106, Val Loss: 0.05235275747002782 +2024-07-19 14:47:05.241 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 39/50, Train Loss: 0.04247006891320829, Val Loss: 0.05205432718267312 +2024-07-19 14:47:05.917 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 40/50, Train Loss: 0.04242683637070738, Val Loss: 0.0520880947241912 +2024-07-19 14:47:06.590 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 41/50, Train Loss: 0.0426866180480343, Val Loss: 0.05217636044363718 +2024-07-19 14:47:07.264 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 42/50, Train Loss: 0.04235790574234234, Val Loss: 0.051339726794410394 +2024-07-19 14:47:07.944 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 43/50, Train Loss: 0.04253011032275549, Val Loss: 0.051731857798389486 +2024-07-19 14:47:08.625 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 44/50, Train Loss: 0.04246654011921523, Val Loss: 0.051456901169306526 +2024-07-19 14:47:09.324 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 45/50, Train Loss: 0.04248669919596143, Val Loss: 0.05144310551317963 +2024-07-19 14:47:10.013 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 46/50, Train Loss: 0.04269587214117589, Val Loss: 0.05146371482594593 +2024-07-19 14:47:10.716 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 47/50, Train Loss: 0.04253866207109739, Val Loss: 0.05186100143033105 +2024-07-19 14:47:11.411 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 48/50, Train Loss: 0.04224654955610837, Val Loss: 0.05123689307554348 +2024-07-19 14:47:12.079 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 49/50, Train Loss: 0.04237171661823171, Val Loss: 0.05159825187277149 +2024-07-19 14:47:12.766 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 50/50, Train Loss: 0.042376199979590225, Val Loss: 0.05118925174748575 +2024-07-19 14:47:12.766 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Fold 3, MAPE: 12.17% +2024-07-19 14:47:12.876 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Training image saved at metaflow_models//bgd_office_1001_5000_LSTM//train_f3_bgd_office_1001_5000_LSTM.png +2024-07-19 14:47:13.713 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 1/50, Train Loss: 0.04387854681360525, Val Loss: 0.04829203136063911 +2024-07-19 14:47:14.566 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 2/50, Train Loss: 0.043930873008711, Val Loss: 0.04862339996002816 +2024-07-19 14:47:15.404 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 3/50, Train Loss: 0.044073996850504324, Val Loss: 0.0487346848019877 +2024-07-19 14:47:16.238 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 4/50, Train Loss: 0.04381015473608296, Val Loss: 0.04848403755474735 +2024-07-19 14:47:17.064 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 5/50, Train Loss: 0.04372034928055255, Val Loss: 0.04827119213705127 +2024-07-19 14:47:17.896 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 6/50, Train Loss: 0.043656410823402166, Val Loss: 0.04832318707092388 +2024-07-19 14:47:18.739 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 7/50, Train Loss: 0.043589643867952485, Val Loss: 0.048943697349042505 +2024-07-19 14:47:19.571 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 8/50, Train Loss: 0.043555404704350695, Val Loss: 0.04865176608232227 +2024-07-19 14:47:20.413 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 9/50, Train Loss: 0.043542923037331184, Val Loss: 0.04851633270044584 +2024-07-19 14:47:21.251 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 10/50, Train Loss: 0.04343506456403942, Val Loss: 0.04815936939337769 +2024-07-19 14:47:22.084 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 11/50, Train Loss: 0.04337330384609791, Val Loss: 0.04836308407421048 +2024-07-19 14:47:22.926 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 12/50, Train Loss: 0.04332723802180736, Val Loss: 0.0481182299554348 +2024-07-19 14:47:23.758 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 13/50, Train Loss: 0.043301254065686856, Val Loss: 0.048075872397906075 +2024-07-19 14:47:24.591 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 14/50, Train Loss: 0.043196861611699666, Val Loss: 0.04769059899892356 +2024-07-19 14:47:25.429 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 15/50, Train Loss: 0.04315913428685495, Val Loss: 0.04797008220811148 +2024-07-19 14:47:26.262 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 16/50, Train Loss: 0.04304134677890893, Val Loss: 0.047971939970109914 +2024-07-19 14:47:27.123 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 17/50, Train Loss: 0.04316089633381465, Val Loss: 0.047991703188902626 +2024-07-19 14:47:27.950 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 18/50, Train Loss: 0.043115180548648914, Val Loss: 0.04810053965932614 +2024-07-19 14:47:28.784 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 19/50, Train Loss: 0.04309621781806697, Val Loss: 0.04851909721823963 +2024-07-19 14:47:29.607 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 20/50, Train Loss: 0.04303319312140837, Val Loss: 0.048752599018248355 +2024-07-19 14:47:30.444 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 21/50, Train Loss: 0.043006295716942665, Val Loss: 0.04821831083579643 +2024-07-19 14:47:31.292 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 22/50, Train Loss: 0.04294613825034473, Val Loss: 0.048219076433294525 +2024-07-19 14:47:32.144 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 23/50, Train Loss: 0.042932906065259006, Val Loss: 0.04870044022194437 +2024-07-19 14:47:32.971 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 24/50, Train Loss: 0.04308061247466357, Val Loss: 0.0476750137938841 +2024-07-19 14:47:33.805 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 25/50, Train Loss: 0.042885685595427894, Val Loss: 0.048415592594726664 +2024-07-19 14:47:34.642 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 26/50, Train Loss: 0.042932526515489754, Val Loss: 0.048396365062610525 +2024-07-19 14:47:35.477 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 27/50, Train Loss: 0.04292536618003806, Val Loss: 0.048924737030992635 +2024-07-19 14:47:36.309 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 28/50, Train Loss: 0.04281486371777706, Val Loss: 0.04938842763973249 +2024-07-19 14:47:37.142 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 29/50, Train Loss: 0.04300436095058263, Val Loss: 0.04915239108172623 +2024-07-19 14:47:37.969 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 30/50, Train Loss: 0.04291156958788633, Val Loss: 0.04912568372045014 +2024-07-19 14:47:38.813 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 31/50, Train Loss: 0.04272612156141754, Val Loss: 0.04871384462190641 +2024-07-19 14:47:39.637 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 32/50, Train Loss: 0.04278498763157116, Val Loss: 0.04896751559666685 +2024-07-19 14:47:40.482 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 33/50, Train Loss: 0.042758786283269686, Val Loss: 0.048765088758758596 +2024-07-19 14:47:41.346 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 34/50, Train Loss: 0.042629484312383684, Val Loss: 0.04727981823521692 +2024-07-19 14:47:42.184 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 35/50, Train Loss: 0.0426013672847178, Val Loss: 0.048737764610229314 +2024-07-19 14:47:43.028 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 36/50, Train Loss: 0.04245999694423198, Val Loss: 0.049264370791009954 +2024-07-19 14:47:43.868 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 37/50, Train Loss: 0.04249493586370251, Val Loss: 0.04894187165474569 +2024-07-19 14:47:44.697 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 38/50, Train Loss: 0.04263384065560096, Val Loss: 0.04814499072931908 +2024-07-19 14:47:45.540 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 39/50, Train Loss: 0.042422779283107635, Val Loss: 0.04807103989092079 +2024-07-19 14:47:46.374 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 40/50, Train Loss: 0.04249545829472961, Val Loss: 0.0486022174559735 +2024-07-19 14:47:47.218 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 41/50, Train Loss: 0.042495142008372386, Val Loss: 0.048311765179843515 +2024-07-19 14:47:48.054 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 42/50, Train Loss: 0.042240213531141095, Val Loss: 0.04852834796986064 +2024-07-19 14:47:48.884 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 43/50, Train Loss: 0.04235231581625048, Val Loss: 0.04908933636505861 +2024-07-19 14:47:49.694 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 44/50, Train Loss: 0.04227170046255156, Val Loss: 0.04854232863195845 +2024-07-19 14:47:50.527 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 45/50, Train Loss: 0.04220095255340521, Val Loss: 0.04773039974876352 +2024-07-19 14:47:51.356 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 46/50, Train Loss: 0.04234805545042995, Val Loss: 0.048855364322662354 +2024-07-19 14:47:52.172 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 47/50, Train Loss: 0.042079878014072286, Val Loss: 0.04855721881864844 +2024-07-19 14:47:52.994 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 48/50, Train Loss: 0.04194534861656663, Val Loss: 0.048665336157019075 +2024-07-19 14:47:53.812 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 49/50, Train Loss: 0.04208429285662842, Val Loss: 0.04823533032794256 +2024-07-19 14:47:54.630 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 50/50, Train Loss: 0.04193822182919625, Val Loss: 0.04836349325204218 +2024-07-19 14:47:54.630 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Fold 4, MAPE: 13.62% +2024-07-19 14:47:54.741 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Training image saved at metaflow_models//bgd_office_1001_5000_LSTM//train_f4_bgd_office_1001_5000_LSTM.png +2024-07-19 14:47:58.844 [14/cross_validate_train/159 (pid 6064)] Task finished successfully. +2024-07-19 14:47:58.873 [14/model_scores/160 (pid 6596)] Task is starting. +2024-07-19 14:48:00.353 [14/model_scores/160 (pid 6596)] INFO:__main__:Average Train Loss across all folds: 0.040822350276325456 +2024-07-19 14:48:04.218 [14/model_scores/160 (pid 6596)] INFO:__main__:Average Validation Loss across all folds: 0.04785420461683661 +2024-07-19 14:48:04.218 [14/model_scores/160 (pid 6596)] INFO:__main__:Average MAPE across all folds: 13.40% +2024-07-19 14:48:04.219 [14/model_scores/160 (pid 6596)] Task finished successfully. +2024-07-19 14:48:04.250 [14/validate_model/161 (pid 6621)] Task is starting. +2024-07-19 14:48:05.741 [14/validate_model/161 (pid 6621)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:48:05.891 [14/validate_model/161 (pid 6621)] INFO:__main__:Test Set MAPE: 16.09% +2024-07-19 14:48:06.184 [14/validate_model/161 (pid 6621)] INFO:__main__:Test image saved at metaflow_models//bgd_office_1001_5000_LSTM//test_bgd_office_1001_5000_LSTM.png +2024-07-19 14:48:06.633 [14/validate_model/161 (pid 6621)] Task finished successfully. +2024-07-19 14:48:06.668 [14/log_model/162 (pid 6632)] Task is starting. +2024-07-19 14:48:08.124 [14/log_model/162 (pid 6632)] INFO:__main__:Logging model bgd_office_1001_5000_LSTM +2024-07-19 14:48:08.125 [14/log_model/162 (pid 6632)] INFO:__main__:Model logged at metaflow_models//bgd_office_1001_5000_LSTM//bgd_office_1001_5000_LSTM.pth +2024-07-19 14:48:12.010 [14/log_model/162 (pid 6632)] Task finished successfully. +2024-07-19 14:48:12.038 [14/end/163 (pid 6666)] Task is starting. +2024-07-19 14:48:13.532 [14/end/163 (pid 6666)] INFO:__main__:Pipeline end. +2024-07-19 14:48:13.847 [14/end/163 (pid 6666)] Task finished successfully. +2024-07-19 14:48:13.848 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/14') succeeded: +-- stdout -- +2024-07-19 14:45:15.001 Workflow starting (run-id 14): +2024-07-19 14:45:15.072 [14/start/151 (pid 5924)] Task is starting. +2024-07-19 14:45:16.567 [14/start/151 (pid 5924)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:45:16.864 [14/start/151 (pid 5924)] Task finished successfully. +2024-07-19 14:45:16.897 [14/ingest/152 (pid 5928)] Task is starting. +2024-07-19 14:45:18.356 [14/ingest/152 (pid 5928)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:45:18.369 [14/ingest/152 (pid 5928)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:45:22.243 [14/ingest/152 (pid 5928)] Task finished successfully. +2024-07-19 14:45:22.276 [14/pick_2017_data/153 (pid 5961)] Task is starting. +2024-07-19 14:45:23.727 [14/pick_2017_data/153 (pid 5961)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:45:24.044 [14/pick_2017_data/153 (pid 5961)] Task finished successfully. +2024-07-19 14:45:24.075 [14/fill_missing_data/154 (pid 5972)] Task is starting. +2024-07-19 14:45:25.565 [14/fill_missing_data/154 (pid 5972)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:45:25.569 [14/fill_missing_data/154 (pid 5972)] INFO:__main__:NaN counts per column: +2024-07-19 14:45:25.569 [14/fill_missing_data/154 (pid 5972)] INFO:__main__:Panther_office_Hannah 12 +2024-07-19 14:45:25.570 [14/fill_missing_data/154 (pid 5972)] Panther_office_Danica 10 +2024-07-19 14:45:25.570 [14/fill_missing_data/154 (pid 5972)] dtype: int64 +2024-07-19 14:45:25.570 [14/fill_missing_data/154 (pid 5972)] --- Logging error --- +2024-07-19 14:45:25.571 [14/fill_missing_data/154 (pid 5972)] Traceback (most recent call last): +2024-07-19 14:45:25.571 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:45:25.571 [14/fill_missing_data/154 (pid 5972)] msg = self.format(record) +2024-07-19 14:45:25.571 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] return fmt.format(record) +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] record.message = record.getMessage() +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] msg = msg % self.args +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] TypeError: not all arguments converted during string formatting +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] Call stack: +2024-07-19 14:45:25.572 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:45:25.891 [14/fill_missing_data/154 (pid 5972)] BGD_LinearFlow() +2024-07-19 14:45:25.891 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:45:25.891 [14/fill_missing_data/154 (pid 5972)] cli.main(self) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] return func(*args, **kwargs) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] return self.main(*args, **kwargs) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] rv = self.invoke(ctx) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] return callback(*args, **kwargs) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] task.run_step( +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] self._exec_step_function(step_func) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] step_function() +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:45:25.892 [14/fill_missing_data/154 (pid 5972)] Arguments: (22,) +2024-07-19 14:45:25.893 [14/fill_missing_data/154 (pid 5972)] Task finished successfully. +2024-07-19 14:45:25.923 [14/find_median/155 (pid 5983)] Task is starting. +2024-07-19 14:45:27.408 [14/find_median/155 (pid 5983)] INFO:__main__:Computing and using median.. +2024-07-19 14:45:27.920 [14/find_median/155 (pid 5983)] Task finished successfully. +2024-07-19 14:45:27.951 [14/aggregate_data/156 (pid 5994)] Task is starting. +2024-07-19 14:45:29.421 [14/aggregate_data/156 (pid 5994)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:45:33.245 [14/aggregate_data/156 (pid 5994)] Task finished successfully. +2024-07-19 14:45:33.279 [14/split_data/157 (pid 6027)] Task is starting. +2024-07-19 14:45:34.800 [14/split_data/157 (pid 6027)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:45:38.645 [14/split_data/157 (pid 6027)] Task finished successfully. +2024-07-19 14:45:38.678 [14/make_x_y/158 (pid 6053)] Task is starting. +2024-07-19 14:45:40.518 [14/make_x_y/158 (pid 6053)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:45:40.840 [14/make_x_y/158 (pid 6053)] Shape of y_train: (6978, 1) +2024-07-19 14:45:40.841 [14/make_x_y/158 (pid 6053)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:45:40.841 [14/make_x_y/158 (pid 6053)] Shape of y_test: (1722, 1) +2024-07-19 14:45:40.841 [14/make_x_y/158 (pid 6053)] Task finished successfully. +2024-07-19 14:45:40.878 [14/cross_validate_train/159 (pid 6064)] Task is starting. +2024-07-19 14:45:42.342 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Creating bgd_office_1001_5000_LSTM +2024-07-19 14:45:42.342 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Performing cross validation.. +2024-07-19 14:45:43.070 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 1/50, Train Loss: 0.09809599534885304, Val Loss: 0.09609978625903258 +2024-07-19 14:45:43.277 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 2/50, Train Loss: 0.0921810642891639, Val Loss: 0.08910396141377655 +2024-07-19 14:45:43.484 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 3/50, Train Loss: 0.08531243122510009, Val Loss: 0.08015610438746375 +2024-07-19 14:45:43.691 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 4/50, Train Loss: 0.07457188667880522, Val Loss: 0.06626429821591119 +2024-07-19 14:45:43.907 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 5/50, Train Loss: 0.06072673986892443, Val Loss: 0.05529348461611851 +2024-07-19 14:45:44.121 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 6/50, Train Loss: 0.05757858206492823, Val Loss: 0.05260232755461255 +2024-07-19 14:45:44.327 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 7/50, Train Loss: 0.05477722190521859, Val Loss: 0.050957065579053516 +2024-07-19 14:45:44.535 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 8/50, Train Loss: 0.05261252155980548, Val Loss: 0.04975927887937507 +2024-07-19 14:45:44.755 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 9/50, Train Loss: 0.05104047105320402, Val Loss: 0.048993778138144595 +2024-07-19 14:45:44.965 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 10/50, Train Loss: 0.049328868805959415, Val Loss: 0.048321997394432895 +2024-07-19 14:45:45.181 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 11/50, Train Loss: 0.04804400656674359, Val Loss: 0.048236351762268995 +2024-07-19 14:45:45.394 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 12/50, Train Loss: 0.047293323620751095, Val Loss: 0.0484976171943787 +2024-07-19 14:45:45.608 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 13/50, Train Loss: 0.04649329925509724, Val Loss: 0.04679758076530856 +2024-07-19 14:45:45.815 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 14/50, Train Loss: 0.04580807066648393, Val Loss: 0.046505114516696415 +2024-07-19 14:45:46.035 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 15/50, Train Loss: 0.045479460141143284, Val Loss: 0.04648769581438722 +2024-07-19 14:45:46.250 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 16/50, Train Loss: 0.04499115085078252, Val Loss: 0.04586634039878845 +2024-07-19 14:45:46.459 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 17/50, Train Loss: 0.044786085097773654, Val Loss: 0.045417030115385316 +2024-07-19 14:45:46.671 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 18/50, Train Loss: 0.044674927670810674, Val Loss: 0.045754440279828536 +2024-07-19 14:45:46.884 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 19/50, Train Loss: 0.043789207079523315, Val Loss: 0.04453314136008959 +2024-07-19 14:45:47.101 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 20/50, Train Loss: 0.0435479212350942, Val Loss: 0.04485708842607769 +2024-07-19 14:45:47.315 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 21/50, Train Loss: 0.04279580697215892, Val Loss: 0.043275218859717655 +2024-07-19 14:45:47.524 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 22/50, Train Loss: 0.042326755418970775, Val Loss: 0.04199169173433974 +2024-07-19 14:45:47.734 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 23/50, Train Loss: 0.042202121653669586, Val Loss: 0.041856270937903506 +2024-07-19 14:45:47.951 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 24/50, Train Loss: 0.04206115244006788, Val Loss: 0.04189615283866186 +2024-07-19 14:45:48.164 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 25/50, Train Loss: 0.04175174004725508, Val Loss: 0.041303969164555136 +2024-07-19 14:45:48.384 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 26/50, Train Loss: 0.0414202866219991, Val Loss: 0.04141482912205361 +2024-07-19 14:45:48.602 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 27/50, Train Loss: 0.04114876637184942, Val Loss: 0.04075538507989935 +2024-07-19 14:45:48.812 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 28/50, Train Loss: 0.04087927494500134, Val Loss: 0.04039941738183434 +2024-07-19 14:45:49.032 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 29/50, Train Loss: 0.041186407107759164, Val Loss: 0.0408015022608074 +2024-07-19 14:45:49.244 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 30/50, Train Loss: 0.041057887310917314, Val Loss: 0.04099068272154074 +2024-07-19 14:45:49.461 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 31/50, Train Loss: 0.04106969104425327, Val Loss: 0.04103982901653728 +2024-07-19 14:45:49.677 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 32/50, Train Loss: 0.04102435866622506, Val Loss: 0.04057020930623686 +2024-07-19 14:45:49.890 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 33/50, Train Loss: 0.040800173641056627, Val Loss: 0.04047278098359301 +2024-07-19 14:45:50.103 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 34/50, Train Loss: 0.040750628437947585, Val Loss: 0.04034773043885424 +2024-07-19 14:45:50.314 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 35/50, Train Loss: 0.04049582573006282, Val Loss: 0.04015014109176558 +2024-07-19 14:45:50.533 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 36/50, Train Loss: 0.040776897876246554, Val Loss: 0.04053579925282581 +2024-07-19 14:45:50.750 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 37/50, Train Loss: 0.0405887232438938, Val Loss: 0.04068150119604291 +2024-07-19 14:45:50.997 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 38/50, Train Loss: 0.040711043352210846, Val Loss: 0.04027205549583242 +2024-07-19 14:45:51.203 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 39/50, Train Loss: 0.04082861273373301, Val Loss: 0.039604014138112195 +2024-07-19 14:45:51.406 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 40/50, Train Loss: 0.040350467218337835, Val Loss: 0.03991883248090744 +2024-07-19 14:45:51.619 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 41/50, Train Loss: 0.04041987768298871, Val Loss: 0.03999179959095813 +2024-07-19 14:45:51.830 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 42/50, Train Loss: 0.04044819963038773, Val Loss: 0.03994654959722145 +2024-07-19 14:45:52.045 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 43/50, Train Loss: 0.04032494938252745, Val Loss: 0.040007246104446614 +2024-07-19 14:45:52.258 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 44/50, Train Loss: 0.04039527488419333, Val Loss: 0.039891839681847674 +2024-07-19 14:45:52.472 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 45/50, Train Loss: 0.040431173342103895, Val Loss: 0.03968654084648635 +2024-07-19 14:45:52.684 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 46/50, Train Loss: 0.040527063799468244, Val Loss: 0.039381592861703923 +2024-07-19 14:45:52.893 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 47/50, Train Loss: 0.04030640357853593, Val Loss: 0.03937564805351399 +2024-07-19 14:45:53.111 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 48/50, Train Loss: 0.040423825282502816, Val Loss: 0.03927307037284245 +2024-07-19 14:45:53.329 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 49/50, Train Loss: 0.039995146009164886, Val Loss: 0.039784042315708625 +2024-07-19 14:45:53.548 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 50/50, Train Loss: 0.04027160810860428, Val Loss: 0.03961172669723227 +2024-07-19 14:45:53.549 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Fold 0, MAPE: 13.11% +2024-07-19 14:45:53.873 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Training image saved at metaflow_models//bgd_office_1001_5000_LSTM//train_f0_bgd_office_1001_5000_LSTM.png +2024-07-19 14:45:54.343 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 1/50, Train Loss: 0.04068863422495045, Val Loss: 0.04825360338027413 +2024-07-19 14:45:54.718 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 2/50, Train Loss: 0.039849430935023585, Val Loss: 0.047600043937563896 +2024-07-19 14:45:55.088 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 3/50, Train Loss: 0.03976892049692265, Val Loss: 0.04757953133132007 +2024-07-19 14:45:55.461 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 4/50, Train Loss: 0.039879781589524384, Val Loss: 0.04738680107166638 +2024-07-19 14:45:55.834 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 5/50, Train Loss: 0.04009785707274528, Val Loss: 0.0473587813006865 +2024-07-19 14:45:56.206 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 6/50, Train Loss: 0.0399857880037329, Val Loss: 0.0473733873584786 +2024-07-19 14:45:56.597 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 7/50, Train Loss: 0.040191570233094366, Val Loss: 0.04731545224785805 +2024-07-19 14:45:56.968 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 8/50, Train Loss: 0.040059746281333165, Val Loss: 0.047449247307471326 +2024-07-19 14:45:57.342 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 9/50, Train Loss: 0.04014019185855781, Val Loss: 0.047472828093010025 +2024-07-19 14:45:57.714 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 10/50, Train Loss: 0.040288828721601666, Val Loss: 0.047183092733895454 +2024-07-19 14:45:58.078 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 11/50, Train Loss: 0.040351457153893495, Val Loss: 0.047414877930203 +2024-07-19 14:45:58.459 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 12/50, Train Loss: 0.04035120906486903, Val Loss: 0.047653614920941556 +2024-07-19 14:45:58.828 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 13/50, Train Loss: 0.04024219622656907, Val Loss: 0.04734494642832795 +2024-07-19 14:45:59.190 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 14/50, Train Loss: 0.039960931093521314, Val Loss: 0.04771625321056392 +2024-07-19 14:45:59.560 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 15/50, Train Loss: 0.03998607744092811, Val Loss: 0.04774816721879147 +2024-07-19 14:45:59.930 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 16/50, Train Loss: 0.03985973286812436, Val Loss: 0.04756600963505539 +2024-07-19 14:46:00.301 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 17/50, Train Loss: 0.04003280579839667, Val Loss: 0.047673694235650266 +2024-07-19 14:46:00.676 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 18/50, Train Loss: 0.0396543518474249, Val Loss: 0.0472108121155887 +2024-07-19 14:46:01.081 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 19/50, Train Loss: 0.039477175765045704, Val Loss: 0.04749146164269061 +2024-07-19 14:46:01.451 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 20/50, Train Loss: 0.039529207251863936, Val Loss: 0.047249186633003724 +2024-07-19 14:46:01.827 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 21/50, Train Loss: 0.03923158735445101, Val Loss: 0.04712751658784377 +2024-07-19 14:46:02.217 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 22/50, Train Loss: 0.03951379067379318, Val Loss: 0.04735471554905982 +2024-07-19 14:46:02.587 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 23/50, Train Loss: 0.03891396308190202, Val Loss: 0.047080826870090256 +2024-07-19 14:46:02.956 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 24/50, Train Loss: 0.03930349979702741, Val Loss: 0.0473065076244844 +2024-07-19 14:46:03.322 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 25/50, Train Loss: 0.03924155010752482, Val Loss: 0.04727228403695532 +2024-07-19 14:46:03.690 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 26/50, Train Loss: 0.03893423590758075, Val Loss: 0.04696703475673456 +2024-07-19 14:46:04.060 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 27/50, Train Loss: 0.03903102446092318, Val Loss: 0.04702478757983929 +2024-07-19 14:46:04.437 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 28/50, Train Loss: 0.03897663828444808, Val Loss: 0.04698357570010263 +2024-07-19 14:46:04.815 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 29/50, Train Loss: 0.03882731050763228, Val Loss: 0.047113634796964156 +2024-07-19 14:46:05.177 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 30/50, Train Loss: 0.03884846763047453, Val Loss: 0.04709778142136496 +2024-07-19 14:46:05.538 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 31/50, Train Loss: 0.03901006021115878, Val Loss: 0.04708808444037631 +2024-07-19 14:46:05.907 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 32/50, Train Loss: 0.038857988630459736, Val Loss: 0.047331234742258046 +2024-07-19 14:46:06.274 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 33/50, Train Loss: 0.03877751820095598, Val Loss: 0.04692259375509378 +2024-07-19 14:46:06.636 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 34/50, Train Loss: 0.03886658384477439, Val Loss: 0.04702767060213798 +2024-07-19 14:46:07.002 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 35/50, Train Loss: 0.038767311033116626, Val Loss: 0.04734986602655939 +2024-07-19 14:46:07.376 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 36/50, Train Loss: 0.03862420262845412, Val Loss: 0.046977549086551405 +2024-07-19 14:46:07.743 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 37/50, Train Loss: 0.03879187312232305, Val Loss: 0.04714394169482025 +2024-07-19 14:46:08.105 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 38/50, Train Loss: 0.03864029498949443, Val Loss: 0.04687384863358897 +2024-07-19 14:46:08.478 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 39/50, Train Loss: 0.0387750359838956, Val Loss: 0.046922705664828014 +2024-07-19 14:46:08.851 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 40/50, Train Loss: 0.03870706895544921, Val Loss: 0.0468875366590313 +2024-07-19 14:46:09.228 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 41/50, Train Loss: 0.03868495782658662, Val Loss: 0.04740967103154273 +2024-07-19 14:46:09.597 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 42/50, Train Loss: 0.038519878884496754, Val Loss: 0.04718850940667294 +2024-07-19 14:46:09.975 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 43/50, Train Loss: 0.03847690158817049, Val Loss: 0.04715959002842774 +2024-07-19 14:46:10.341 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 44/50, Train Loss: 0.038519081136543454, Val Loss: 0.047358214351776486 +2024-07-19 14:46:10.707 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 45/50, Train Loss: 0.03844158040129975, Val Loss: 0.04745865351444966 +2024-07-19 14:46:11.094 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 46/50, Train Loss: 0.03850739365060852, Val Loss: 0.0478238076273654 +2024-07-19 14:46:11.458 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 47/50, Train Loss: 0.038435243708017756, Val Loss: 0.04700215714606079 +2024-07-19 14:46:11.825 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 48/50, Train Loss: 0.038431019432944795, Val Loss: 0.047380810150423565 +2024-07-19 14:46:12.189 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 49/50, Train Loss: 0.03833923134187313, Val Loss: 0.0471691391053232 +2024-07-19 14:46:12.575 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 50/50, Train Loss: 0.03861514142114822, Val Loss: 0.04731174321794832 +2024-07-19 14:46:12.575 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Fold 1, MAPE: 13.88% +2024-07-19 14:46:12.685 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Training image saved at metaflow_models//bgd_office_1001_5000_LSTM//train_f1_bgd_office_1001_5000_LSTM.png +2024-07-19 14:46:13.182 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 1/50, Train Loss: 0.042240628024393864, Val Loss: 0.053329318862509086 +2024-07-19 14:46:13.677 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 2/50, Train Loss: 0.04279964945533059, Val Loss: 0.05398329120834131 +2024-07-19 14:46:14.179 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 3/50, Train Loss: 0.04262663076885722, Val Loss: 0.05325589102466364 +2024-07-19 14:46:14.686 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 4/50, Train Loss: 0.042348298887637525, Val Loss: 0.0529615949537303 +2024-07-19 14:46:15.192 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 5/50, Train Loss: 0.04229655408046462, Val Loss: 0.052981566738437964 +2024-07-19 14:46:15.704 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 6/50, Train Loss: 0.04216192357919433, Val Loss: 0.0531544995469016 +2024-07-19 14:46:16.217 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 7/50, Train Loss: 0.04204509344629266, Val Loss: 0.05300181505043764 +2024-07-19 14:46:16.732 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 8/50, Train Loss: 0.04204746858978813, Val Loss: 0.053049603175069834 +2024-07-19 14:46:17.248 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 9/50, Train Loss: 0.04198027053339915, Val Loss: 0.052981648040381635 +2024-07-19 14:46:17.771 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 10/50, Train Loss: 0.041870806755667386, Val Loss: 0.053030685496491356 +2024-07-19 14:46:18.290 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 11/50, Train Loss: 0.04183089291168885, Val Loss: 0.05283539621411143 +2024-07-19 14:46:18.813 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 12/50, Train Loss: 0.041767449609257955, Val Loss: 0.05295984059370853 +2024-07-19 14:46:19.327 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 13/50, Train Loss: 0.04189459631558169, Val Loss: 0.05316980535516868 +2024-07-19 14:46:19.851 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 14/50, Train Loss: 0.04169598781419071, Val Loss: 0.052944270541539065 +2024-07-19 14:46:20.354 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 15/50, Train Loss: 0.041817008331418035, Val Loss: 0.053024664974293194 +2024-07-19 14:46:20.856 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 16/50, Train Loss: 0.041665823037990116, Val Loss: 0.05290544833484534 +2024-07-19 14:46:21.369 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 17/50, Train Loss: 0.041726371959190475, Val Loss: 0.05295065055425103 +2024-07-19 14:46:21.874 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 18/50, Train Loss: 0.04165567567741329, Val Loss: 0.05274237390305545 +2024-07-19 14:46:22.394 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 19/50, Train Loss: 0.04170915819704533, Val Loss: 0.052890924132756284 +2024-07-19 14:46:22.931 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 20/50, Train Loss: 0.04146583354608579, Val Loss: 0.053890823411780434 +2024-07-19 14:46:23.456 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 21/50, Train Loss: 0.041692766377871684, Val Loss: 0.05281021748040173 +2024-07-19 14:46:23.982 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 22/50, Train Loss: 0.04150891375135292, Val Loss: 0.05289549984641977 +2024-07-19 14:46:24.499 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 23/50, Train Loss: 0.04153581727296114, Val Loss: 0.052957261635645014 +2024-07-19 14:46:25.029 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 24/50, Train Loss: 0.041456244555725295, Val Loss: 0.05284202149188196 +2024-07-19 14:46:25.549 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 25/50, Train Loss: 0.04143907332962209, Val Loss: 0.05317692690201708 +2024-07-19 14:46:26.073 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 26/50, Train Loss: 0.04139049393548207, Val Loss: 0.053243703435401656 +2024-07-19 14:46:26.618 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 27/50, Train Loss: 0.041398868675936354, Val Loss: 0.05380719275893392 +2024-07-19 14:46:27.139 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 28/50, Train Loss: 0.0411798059432344, Val Loss: 0.053528004904856555 +2024-07-19 14:46:27.657 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 29/50, Train Loss: 0.04120219034904783, Val Loss: 0.05371077247970813 +2024-07-19 14:46:28.176 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 30/50, Train Loss: 0.04120572084052996, Val Loss: 0.05391668447771588 +2024-07-19 14:46:28.708 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 31/50, Train Loss: 0.041182414035905494, Val Loss: 0.053596034343983676 +2024-07-19 14:46:29.221 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 32/50, Train Loss: 0.04215179503980008, Val Loss: 0.052009192521910406 +2024-07-19 14:46:29.753 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 33/50, Train Loss: 0.041502822224389425, Val Loss: 0.05306116139163842 +2024-07-19 14:46:30.276 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 34/50, Train Loss: 0.04099973191253164, Val Loss: 0.05276042545163954 +2024-07-19 14:46:30.805 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 35/50, Train Loss: 0.040668804621831936, Val Loss: 0.05312804636117574 +2024-07-19 14:46:31.354 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 36/50, Train Loss: 0.0409858759153973, Val Loss: 0.052963262071480624 +2024-07-19 14:46:31.887 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 37/50, Train Loss: 0.04164853468537331, Val Loss: 0.052242101144951744 +2024-07-19 14:46:32.414 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 38/50, Train Loss: 0.041162860359657896, Val Loss: 0.05263559525278774 +2024-07-19 14:46:32.939 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 39/50, Train Loss: 0.04049232288856398, Val Loss: 0.052899213860163816 +2024-07-19 14:46:33.471 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 40/50, Train Loss: 0.040617500330236825, Val Loss: 0.053153493819204534 +2024-07-19 14:46:34.001 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 41/50, Train Loss: 0.04163928246972236, Val Loss: 0.05254730184537333 +2024-07-19 14:46:34.523 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 42/50, Train Loss: 0.041126584363254635, Val Loss: 0.05299272247262903 +2024-07-19 14:46:35.061 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 43/50, Train Loss: 0.04060779174959118, Val Loss: 0.05281121787187215 +2024-07-19 14:46:35.583 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 44/50, Train Loss: 0.04056420818140561, Val Loss: 0.05482973661777135 +2024-07-19 14:46:36.115 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 45/50, Train Loss: 0.04146989175880497, Val Loss: 0.05390089558991226 +2024-07-19 14:46:36.641 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 46/50, Train Loss: 0.04107264046641913, Val Loss: 0.05300888751406927 +2024-07-19 14:46:37.171 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 47/50, Train Loss: 0.040456281195987355, Val Loss: 0.0532697832866295 +2024-07-19 14:46:37.694 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 48/50, Train Loss: 0.04057954824952917, Val Loss: 0.05451437075798576 +2024-07-19 14:46:38.213 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 49/50, Train Loss: 0.041413849338211794, Val Loss: 0.052947369177599214 +2024-07-19 14:46:38.751 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 50/50, Train Loss: 0.040910580043088306, Val Loss: 0.052794808169474475 +2024-07-19 14:46:38.751 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Fold 2, MAPE: 14.20% +2024-07-19 14:46:38.864 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Training image saved at metaflow_models//bgd_office_1001_5000_LSTM//train_f2_bgd_office_1001_5000_LSTM.png +2024-07-19 14:46:39.568 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 1/50, Train Loss: 0.0439119229909696, Val Loss: 0.052130125563692405 +2024-07-19 14:46:40.260 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 2/50, Train Loss: 0.04401090026718296, Val Loss: 0.05255313791535996 +2024-07-19 14:46:40.947 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 3/50, Train Loss: 0.04383017057680512, Val Loss: 0.0530949186634373 +2024-07-19 14:46:41.621 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 4/50, Train Loss: 0.043587921365891416, Val Loss: 0.053217186819057204 +2024-07-19 14:46:42.301 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 5/50, Train Loss: 0.043644655164178106, Val Loss: 0.05338382358486588 +2024-07-19 14:46:42.972 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 6/50, Train Loss: 0.043418489741033885, Val Loss: 0.05332616726691659 +2024-07-19 14:46:43.640 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 7/50, Train Loss: 0.04352456373353935, Val Loss: 0.05371098492193867 +2024-07-19 14:46:44.318 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 8/50, Train Loss: 0.04332311765278039, Val Loss: 0.05305845008508579 +2024-07-19 14:46:44.996 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 9/50, Train Loss: 0.04344272906955791, Val Loss: 0.053216295971258265 +2024-07-19 14:46:45.697 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 10/50, Train Loss: 0.043447360587752844, Val Loss: 0.055372969524280446 +2024-07-19 14:46:46.396 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 11/50, Train Loss: 0.04316192213445902, Val Loss: 0.05309695609518 +2024-07-19 14:46:47.043 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 12/50, Train Loss: 0.043334516454232884, Val Loss: 0.05599851896231239 +2024-07-19 14:46:47.695 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 13/50, Train Loss: 0.04307890841609811, Val Loss: 0.05311467287105483 +2024-07-19 14:46:48.382 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 14/50, Train Loss: 0.04321856688299816, Val Loss: 0.05285755534832542 +2024-07-19 14:46:49.034 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 15/50, Train Loss: 0.04320863169962413, Val Loss: 0.05516831415730554 +2024-07-19 14:46:49.688 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 16/50, Train Loss: 0.043119119097516964, Val Loss: 0.054786852586108284 +2024-07-19 14:46:50.333 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 17/50, Train Loss: 0.04300480001695352, Val Loss: 0.053595168163647525 +2024-07-19 14:46:50.997 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 18/50, Train Loss: 0.04313774362257491, Val Loss: 0.05355984415556934 +2024-07-19 14:46:51.657 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 19/50, Train Loss: 0.04308692563631355, Val Loss: 0.053336675807430935 +2024-07-19 14:46:52.338 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 20/50, Train Loss: 0.043058748854553866, Val Loss: 0.053400897597138945 +2024-07-19 14:46:53.002 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 21/50, Train Loss: 0.04305626647164152, Val Loss: 0.053509547601680495 +2024-07-19 14:46:53.669 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 22/50, Train Loss: 0.04287391116408861, Val Loss: 0.05300403829361942 +2024-07-19 14:46:54.351 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 23/50, Train Loss: 0.04299934196911038, Val Loss: 0.05289465138638342 +2024-07-19 14:46:55.028 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 24/50, Train Loss: 0.042966031239763516, Val Loss: 0.05247904028038721 +2024-07-19 14:46:55.692 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 25/50, Train Loss: 0.0429366267452093, Val Loss: 0.05314115082492699 +2024-07-19 14:46:56.386 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 26/50, Train Loss: 0.04269329984098265, Val Loss: 0.052893582530118326 +2024-07-19 14:46:57.061 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 27/50, Train Loss: 0.042663636068775226, Val Loss: 0.05324885631735261 +2024-07-19 14:46:57.726 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 28/50, Train Loss: 0.04280186168951531, Val Loss: 0.0531066992395633 +2024-07-19 14:46:58.407 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 29/50, Train Loss: 0.04269930985692429, Val Loss: 0.052072827276345844 +2024-07-19 14:46:59.086 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 30/50, Train Loss: 0.042757361821115836, Val Loss: 0.052650737601357536 +2024-07-19 14:46:59.770 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 31/50, Train Loss: 0.04279716426430091, Val Loss: 0.052557753348672714 +2024-07-19 14:47:00.456 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 32/50, Train Loss: 0.042738642951805295, Val Loss: 0.052781361583116894 +2024-07-19 14:47:01.169 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 33/50, Train Loss: 0.042536443124895226, Val Loss: 0.05273876852683119 +2024-07-19 14:47:01.851 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 34/50, Train Loss: 0.042703561459298, Val Loss: 0.05224596044501743 +2024-07-19 14:47:02.523 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 35/50, Train Loss: 0.04252652045696566, Val Loss: 0.05212172382586711 +2024-07-19 14:47:03.218 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 36/50, Train Loss: 0.04262070901283663, Val Loss: 0.052366690961895765 +2024-07-19 14:47:03.883 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 37/50, Train Loss: 0.042513715039479406, Val Loss: 0.05210983128966512 +2024-07-19 14:47:04.561 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 38/50, Train Loss: 0.04259630629461106, Val Loss: 0.05235275747002782 +2024-07-19 14:47:05.241 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 39/50, Train Loss: 0.04247006891320829, Val Loss: 0.05205432718267312 +2024-07-19 14:47:05.917 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 40/50, Train Loss: 0.04242683637070738, Val Loss: 0.0520880947241912 +2024-07-19 14:47:06.590 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 41/50, Train Loss: 0.0426866180480343, Val Loss: 0.05217636044363718 +2024-07-19 14:47:07.264 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 42/50, Train Loss: 0.04235790574234234, Val Loss: 0.051339726794410394 +2024-07-19 14:47:07.944 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 43/50, Train Loss: 0.04253011032275549, Val Loss: 0.051731857798389486 +2024-07-19 14:47:08.625 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 44/50, Train Loss: 0.04246654011921523, Val Loss: 0.051456901169306526 +2024-07-19 14:47:09.324 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 45/50, Train Loss: 0.04248669919596143, Val Loss: 0.05144310551317963 +2024-07-19 14:47:10.013 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 46/50, Train Loss: 0.04269587214117589, Val Loss: 0.05146371482594593 +2024-07-19 14:47:10.716 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 47/50, Train Loss: 0.04253866207109739, Val Loss: 0.05186100143033105 +2024-07-19 14:47:11.411 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 48/50, Train Loss: 0.04224654955610837, Val Loss: 0.05123689307554348 +2024-07-19 14:47:12.079 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 49/50, Train Loss: 0.04237171661823171, Val Loss: 0.05159825187277149 +2024-07-19 14:47:12.766 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 50/50, Train Loss: 0.042376199979590225, Val Loss: 0.05118925174748575 +2024-07-19 14:47:12.766 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Fold 3, MAPE: 12.17% +2024-07-19 14:47:12.876 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Training image saved at metaflow_models//bgd_office_1001_5000_LSTM//train_f3_bgd_office_1001_5000_LSTM.png +2024-07-19 14:47:13.713 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 1/50, Train Loss: 0.04387854681360525, Val Loss: 0.04829203136063911 +2024-07-19 14:47:14.566 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 2/50, Train Loss: 0.043930873008711, Val Loss: 0.04862339996002816 +2024-07-19 14:47:15.404 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 3/50, Train Loss: 0.044073996850504324, Val Loss: 0.0487346848019877 +2024-07-19 14:47:16.238 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 4/50, Train Loss: 0.04381015473608296, Val Loss: 0.04848403755474735 +2024-07-19 14:47:17.064 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 5/50, Train Loss: 0.04372034928055255, Val Loss: 0.04827119213705127 +2024-07-19 14:47:17.896 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 6/50, Train Loss: 0.043656410823402166, Val Loss: 0.04832318707092388 +2024-07-19 14:47:18.739 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 7/50, Train Loss: 0.043589643867952485, Val Loss: 0.048943697349042505 +2024-07-19 14:47:19.571 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 8/50, Train Loss: 0.043555404704350695, Val Loss: 0.04865176608232227 +2024-07-19 14:47:20.413 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 9/50, Train Loss: 0.043542923037331184, Val Loss: 0.04851633270044584 +2024-07-19 14:47:21.251 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 10/50, Train Loss: 0.04343506456403942, Val Loss: 0.04815936939337769 +2024-07-19 14:47:22.084 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 11/50, Train Loss: 0.04337330384609791, Val Loss: 0.04836308407421048 +2024-07-19 14:47:22.926 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 12/50, Train Loss: 0.04332723802180736, Val Loss: 0.0481182299554348 +2024-07-19 14:47:23.758 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 13/50, Train Loss: 0.043301254065686856, Val Loss: 0.048075872397906075 +2024-07-19 14:47:24.591 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 14/50, Train Loss: 0.043196861611699666, Val Loss: 0.04769059899892356 +2024-07-19 14:47:25.429 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 15/50, Train Loss: 0.04315913428685495, Val Loss: 0.04797008220811148 +2024-07-19 14:47:26.262 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 16/50, Train Loss: 0.04304134677890893, Val Loss: 0.047971939970109914 +2024-07-19 14:47:27.123 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 17/50, Train Loss: 0.04316089633381465, Val Loss: 0.047991703188902626 +2024-07-19 14:47:27.950 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 18/50, Train Loss: 0.043115180548648914, Val Loss: 0.04810053965932614 +2024-07-19 14:47:28.784 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 19/50, Train Loss: 0.04309621781806697, Val Loss: 0.04851909721823963 +2024-07-19 14:47:29.607 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 20/50, Train Loss: 0.04303319312140837, Val Loss: 0.048752599018248355 +2024-07-19 14:47:30.444 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 21/50, Train Loss: 0.043006295716942665, Val Loss: 0.04821831083579643 +2024-07-19 14:47:31.292 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 22/50, Train Loss: 0.04294613825034473, Val Loss: 0.048219076433294525 +2024-07-19 14:47:32.144 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 23/50, Train Loss: 0.042932906065259006, Val Loss: 0.04870044022194437 +2024-07-19 14:47:32.971 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 24/50, Train Loss: 0.04308061247466357, Val Loss: 0.0476750137938841 +2024-07-19 14:47:33.805 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 25/50, Train Loss: 0.042885685595427894, Val Loss: 0.048415592594726664 +2024-07-19 14:47:34.642 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 26/50, Train Loss: 0.042932526515489754, Val Loss: 0.048396365062610525 +2024-07-19 14:47:35.477 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 27/50, Train Loss: 0.04292536618003806, Val Loss: 0.048924737030992635 +2024-07-19 14:47:36.309 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 28/50, Train Loss: 0.04281486371777706, Val Loss: 0.04938842763973249 +2024-07-19 14:47:37.142 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 29/50, Train Loss: 0.04300436095058263, Val Loss: 0.04915239108172623 +2024-07-19 14:47:37.969 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 30/50, Train Loss: 0.04291156958788633, Val Loss: 0.04912568372045014 +2024-07-19 14:47:38.813 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 31/50, Train Loss: 0.04272612156141754, Val Loss: 0.04871384462190641 +2024-07-19 14:47:39.637 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 32/50, Train Loss: 0.04278498763157116, Val Loss: 0.04896751559666685 +2024-07-19 14:47:40.482 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 33/50, Train Loss: 0.042758786283269686, Val Loss: 0.048765088758758596 +2024-07-19 14:47:41.346 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 34/50, Train Loss: 0.042629484312383684, Val Loss: 0.04727981823521692 +2024-07-19 14:47:42.184 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 35/50, Train Loss: 0.0426013672847178, Val Loss: 0.048737764610229314 +2024-07-19 14:47:43.028 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 36/50, Train Loss: 0.04245999694423198, Val Loss: 0.049264370791009954 +2024-07-19 14:47:43.868 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 37/50, Train Loss: 0.04249493586370251, Val Loss: 0.04894187165474569 +2024-07-19 14:47:44.697 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 38/50, Train Loss: 0.04263384065560096, Val Loss: 0.04814499072931908 +2024-07-19 14:47:45.540 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 39/50, Train Loss: 0.042422779283107635, Val Loss: 0.04807103989092079 +2024-07-19 14:47:46.374 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 40/50, Train Loss: 0.04249545829472961, Val Loss: 0.0486022174559735 +2024-07-19 14:47:47.218 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 41/50, Train Loss: 0.042495142008372386, Val Loss: 0.048311765179843515 +2024-07-19 14:47:48.054 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 42/50, Train Loss: 0.042240213531141095, Val Loss: 0.04852834796986064 +2024-07-19 14:47:48.884 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 43/50, Train Loss: 0.04235231581625048, Val Loss: 0.04908933636505861 +2024-07-19 14:47:49.694 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 44/50, Train Loss: 0.04227170046255156, Val Loss: 0.04854232863195845 +2024-07-19 14:47:50.527 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 45/50, Train Loss: 0.04220095255340521, Val Loss: 0.04773039974876352 +2024-07-19 14:47:51.356 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 46/50, Train Loss: 0.04234805545042995, Val Loss: 0.048855364322662354 +2024-07-19 14:47:52.172 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 47/50, Train Loss: 0.042079878014072286, Val Loss: 0.04855721881864844 +2024-07-19 14:47:52.994 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 48/50, Train Loss: 0.04194534861656663, Val Loss: 0.048665336157019075 +2024-07-19 14:47:53.812 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 49/50, Train Loss: 0.04208429285662842, Val Loss: 0.04823533032794256 +2024-07-19 14:47:54.630 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Epoch 50/50, Train Loss: 0.04193822182919625, Val Loss: 0.04836349325204218 +2024-07-19 14:47:54.630 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Fold 4, MAPE: 13.62% +2024-07-19 14:47:54.741 [14/cross_validate_train/159 (pid 6064)] INFO:__main__:Training image saved at metaflow_models//bgd_office_1001_5000_LSTM//train_f4_bgd_office_1001_5000_LSTM.png +2024-07-19 14:47:58.844 [14/cross_validate_train/159 (pid 6064)] Task finished successfully. +2024-07-19 14:47:58.873 [14/model_scores/160 (pid 6596)] Task is starting. +2024-07-19 14:48:00.353 [14/model_scores/160 (pid 6596)] INFO:__main__:Average Train Loss across all folds: 0.040822350276325456 +2024-07-19 14:48:04.218 [14/model_scores/160 (pid 6596)] INFO:__main__:Average Validation Loss across all folds: 0.04785420461683661 +2024-07-19 14:48:04.218 [14/model_scores/160 (pid 6596)] INFO:__main__:Average MAPE across all folds: 13.40% +2024-07-19 14:48:04.219 [14/model_scores/160 (pid 6596)] Task finished successfully. +2024-07-19 14:48:04.250 [14/validate_model/161 (pid 6621)] Task is starting. +2024-07-19 14:48:05.741 [14/validate_model/161 (pid 6621)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:48:05.891 [14/validate_model/161 (pid 6621)] INFO:__main__:Test Set MAPE: 16.09% +2024-07-19 14:48:06.184 [14/validate_model/161 (pid 6621)] INFO:__main__:Test image saved at metaflow_models//bgd_office_1001_5000_LSTM//test_bgd_office_1001_5000_LSTM.png +2024-07-19 14:48:06.633 [14/validate_model/161 (pid 6621)] Task finished successfully. +2024-07-19 14:48:06.668 [14/log_model/162 (pid 6632)] Task is starting. +2024-07-19 14:48:08.124 [14/log_model/162 (pid 6632)] INFO:__main__:Logging model bgd_office_1001_5000_LSTM +2024-07-19 14:48:08.125 [14/log_model/162 (pid 6632)] INFO:__main__:Model logged at metaflow_models//bgd_office_1001_5000_LSTM//bgd_office_1001_5000_LSTM.pth +2024-07-19 14:48:12.010 [14/log_model/162 (pid 6632)] Task finished successfully. +2024-07-19 14:48:12.038 [14/end/163 (pid 6666)] Task is starting. +2024-07-19 14:48:13.532 [14/end/163 (pid 6666)] INFO:__main__:Pipeline end. +2024-07-19 14:48:13.847 [14/end/163 (pid 6666)] Task finished successfully. +2024-07-19 14:48:13.848 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/scaler_bgd_office_1001_5000_LSTM.pkl b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/scaler_bgd_office_1001_5000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..50ead97388e4b4331f2ddb7819c5c0962c41563e --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/scaler_bgd_office_1001_5000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3383d9dc804183103a43a29bc4d0fa36d8888d6b7c7dc1ecc02b9eab8905f1c3 +size 557 diff --git a/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/test_bgd_office_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/test_bgd_office_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..67007a2fb796cf09e1b86826da11e54fd7179a2b Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/test_bgd_office_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f0_bgd_office_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f0_bgd_office_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..b1a8fbc92e29d20bec57186b5eca2674309a03fb Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f0_bgd_office_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f1_bgd_office_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f1_bgd_office_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..1064fe43c6754f1f4169efcb9dc59c9afbca94a5 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f1_bgd_office_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f2_bgd_office_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f2_bgd_office_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..a288b04f923f6bedc665583834808e3b6a097ace Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f2_bgd_office_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f3_bgd_office_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f3_bgd_office_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..74845bb78137f22e62d5cc0764c34ef5db317c20 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f3_bgd_office_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f4_bgd_office_1001_5000_LSTM.png b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f4_bgd_office_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..d09f4c4e4ba105e4dd008d54773bc07d37854414 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_1001_5000_LSTM/train_f4_bgd_office_1001_5000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/bgd_office_200001_500000_LSTM.pth b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/bgd_office_200001_500000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..1012d5105d8f28502048e17c12bf434020949253 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/bgd_office_200001_500000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5128d3362d144e1b9a2f6476b6cdd5e76265aa17c6da96de0208c83391b62315 +size 46756 diff --git a/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/output.txt b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cbfba1ae2e5bca6699c8621abc71dc482ae818e --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/output.txt @@ -0,0 +1,734 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:17:22.813 Workflow starting (run-id 5): +2024-07-19 14:17:22.888 [5/start/25 (pid 97323)] Task is starting. +2024-07-19 14:17:24.313 [5/start/25 (pid 97323)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:17:24.606 [5/start/25 (pid 97323)] Task finished successfully. +2024-07-19 14:17:24.643 [5/ingest/26 (pid 97334)] Task is starting. +2024-07-19 14:17:26.052 [5/ingest/26 (pid 97334)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:17:26.067 [5/ingest/26 (pid 97334)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:17:29.889 [5/ingest/26 (pid 97334)] Task finished successfully. +2024-07-19 14:17:29.923 [5/pick_2017_data/27 (pid 97376)] Task is starting. +2024-07-19 14:17:31.470 [5/pick_2017_data/27 (pid 97376)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:17:31.837 [5/pick_2017_data/27 (pid 97376)] Task finished successfully. +2024-07-19 14:17:31.866 [5/fill_missing_data/28 (pid 97402)] Task is starting. +2024-07-19 14:17:33.423 [5/fill_missing_data/28 (pid 97402)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:17:33.428 [5/fill_missing_data/28 (pid 97402)] INFO:__main__:NaN counts per column: +2024-07-19 14:17:33.428 [5/fill_missing_data/28 (pid 97402)] INFO:__main__:Rat_office_Adele 27 +2024-07-19 14:17:33.428 [5/fill_missing_data/28 (pid 97402)] Rat_office_Lora 25 +2024-07-19 14:17:33.428 [5/fill_missing_data/28 (pid 97402)] Rat_office_Jill 218 +2024-07-19 14:17:33.428 [5/fill_missing_data/28 (pid 97402)] Rat_office_Avis 277 +2024-07-19 14:17:33.428 [5/fill_missing_data/28 (pid 97402)] dtype: int64 +2024-07-19 14:17:33.429 [5/fill_missing_data/28 (pid 97402)] --- Logging error --- +2024-07-19 14:17:33.429 [5/fill_missing_data/28 (pid 97402)] Traceback (most recent call last): +2024-07-19 14:17:33.429 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] msg = self.format(record) +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] return fmt.format(record) +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] record.message = record.getMessage() +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] msg = msg % self.args +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] TypeError: not all arguments converted during string formatting +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] Call stack: +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:17:34.103 [5/fill_missing_data/28 (pid 97402)] BGD_LinearFlow() +2024-07-19 14:17:34.103 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:17:34.103 [5/fill_missing_data/28 (pid 97402)] cli.main(self) +2024-07-19 14:17:34.103 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:17:34.103 [5/fill_missing_data/28 (pid 97402)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:17:34.103 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:17:34.103 [5/fill_missing_data/28 (pid 97402)] return func(*args, **kwargs) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] return self.main(*args, **kwargs) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] rv = self.invoke(ctx) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] return callback(*args, **kwargs) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] task.run_step( +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] self._exec_step_function(step_func) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] step_function() +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] Arguments: (547,) +2024-07-19 14:17:34.105 [5/fill_missing_data/28 (pid 97402)] Task finished successfully. +2024-07-19 14:17:34.138 [5/find_median/29 (pid 97420)] Task is starting. +2024-07-19 14:17:35.645 [5/find_median/29 (pid 97420)] INFO:__main__:Computing and using median.. +2024-07-19 14:17:36.213 [5/find_median/29 (pid 97420)] Task finished successfully. +2024-07-19 14:17:36.241 [5/aggregate_data/30 (pid 97431)] Task is starting. +2024-07-19 14:17:37.772 [5/aggregate_data/30 (pid 97431)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:17:41.715 [5/aggregate_data/30 (pid 97431)] Task finished successfully. +2024-07-19 14:17:41.749 [5/split_data/31 (pid 97466)] Task is starting. +2024-07-19 14:17:43.228 [5/split_data/31 (pid 97466)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:17:47.200 [5/split_data/31 (pid 97466)] Task finished successfully. +2024-07-19 14:17:47.227 [5/make_x_y/32 (pid 97507)] Task is starting. +2024-07-19 14:17:49.129 [5/make_x_y/32 (pid 97507)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:17:49.456 [5/make_x_y/32 (pid 97507)] Shape of y_train: (6978, 1) +2024-07-19 14:17:49.456 [5/make_x_y/32 (pid 97507)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:17:49.456 [5/make_x_y/32 (pid 97507)] Shape of y_test: (1722, 1) +2024-07-19 14:17:49.457 [5/make_x_y/32 (pid 97507)] Task finished successfully. +2024-07-19 14:17:49.492 [5/cross_validate_train/33 (pid 97530)] Task is starting. +2024-07-19 14:17:51.061 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Creating bgd_office_200001_500000_LSTM +2024-07-19 14:17:51.062 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Performing cross validation.. +2024-07-19 14:17:51.835 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 1/50, Train Loss: 0.24041377249601725, Val Loss: 0.14985616686376366 +2024-07-19 14:17:52.045 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 2/50, Train Loss: 0.174270930725175, Val Loss: 0.13745318982448126 +2024-07-19 14:17:52.258 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 3/50, Train Loss: 0.16514272867022334, Val Loss: 0.12656845509804585 +2024-07-19 14:17:52.466 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 4/50, Train Loss: 0.1398985419623755, Val Loss: 0.0885003902068412 +2024-07-19 14:17:52.680 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 5/50, Train Loss: 0.1042147709711178, Val Loss: 0.0822408970546078 +2024-07-19 14:17:52.923 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 6/50, Train Loss: 0.08324737544800784, Val Loss: 0.07133461086935289 +2024-07-19 14:17:53.128 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 7/50, Train Loss: 0.07891104516346713, Val Loss: 0.06701055279857404 +2024-07-19 14:17:53.332 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 8/50, Train Loss: 0.07552335683155705, Val Loss: 0.06485003109618619 +2024-07-19 14:17:53.536 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 9/50, Train Loss: 0.07299944053630571, Val Loss: 0.062358206716945044 +2024-07-19 14:17:53.758 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 10/50, Train Loss: 0.07011313117235093, Val Loss: 0.06111018039990921 +2024-07-19 14:17:53.972 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 11/50, Train Loss: 0.06713395157979953, Val Loss: 0.05757082940859569 +2024-07-19 14:17:54.180 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 12/50, Train Loss: 0.0639777307876864, Val Loss: 0.053427663128319626 +2024-07-19 14:17:54.393 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 13/50, Train Loss: 0.060529350831701946, Val Loss: 0.05045030834908421 +2024-07-19 14:17:54.605 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 14/50, Train Loss: 0.05691778737850286, Val Loss: 0.04826545169123927 +2024-07-19 14:17:54.813 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 15/50, Train Loss: 0.053411469618613656, Val Loss: 0.042543641039849936 +2024-07-19 14:17:55.031 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 16/50, Train Loss: 0.04868668393307441, Val Loss: 0.039518800866160844 +2024-07-19 14:17:55.237 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 17/50, Train Loss: 0.04622172232012491, Val Loss: 0.03838533709278783 +2024-07-19 14:17:55.449 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 18/50, Train Loss: 0.043847303258607515, Val Loss: 0.03734340969901029 +2024-07-19 14:17:55.679 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 19/50, Train Loss: 0.04379419129140474, Val Loss: 0.036580929469719935 +2024-07-19 14:17:55.896 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 20/50, Train Loss: 0.041029408448249906, Val Loss: 0.03519850809479485 +2024-07-19 14:17:56.108 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 21/50, Train Loss: 0.04152367966299927, Val Loss: 0.03665682413564945 +2024-07-19 14:17:56.349 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 22/50, Train Loss: 0.04015210666064475, Val Loss: 0.03549372849079806 +2024-07-19 14:17:56.586 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 23/50, Train Loss: 0.039798206951771234, Val Loss: 0.03626672036291377 +2024-07-19 14:17:56.795 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 24/50, Train Loss: 0.04000126316237289, Val Loss: 0.03511689992218807 +2024-07-19 14:17:57.027 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 25/50, Train Loss: 0.040356148839802354, Val Loss: 0.03541684416248589 +2024-07-19 14:17:57.240 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 26/50, Train Loss: 0.03995979652815574, Val Loss: 0.035240186353188915 +2024-07-19 14:17:57.478 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 27/50, Train Loss: 0.04071345464704004, Val Loss: 0.035492503235267626 +2024-07-19 14:17:57.705 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 28/50, Train Loss: 0.03963590639869909, Val Loss: 0.03419752615327771 +2024-07-19 14:17:57.910 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 29/50, Train Loss: 0.039772226072445106, Val Loss: 0.03445200103561621 +2024-07-19 14:17:58.119 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 30/50, Train Loss: 0.03943236340844148, Val Loss: 0.03424520991943978 +2024-07-19 14:17:58.326 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 31/50, Train Loss: 0.039564018842537664, Val Loss: 0.03450917812517366 +2024-07-19 14:17:58.530 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 32/50, Train Loss: 0.03926838813601313, Val Loss: 0.03446034822814368 +2024-07-19 14:17:58.743 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 33/50, Train Loss: 0.03909471276140696, Val Loss: 0.03470752264901593 +2024-07-19 14:17:58.956 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 34/50, Train Loss: 0.03914451672116647, Val Loss: 0.03417263696020519 +2024-07-19 14:17:59.184 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 35/50, Train Loss: 0.03886183613055461, Val Loss: 0.035670943331678175 +2024-07-19 14:17:59.403 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 36/50, Train Loss: 0.03944698570145143, Val Loss: 0.034594849028901475 +2024-07-19 14:17:59.610 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 37/50, Train Loss: 0.03982380571196208, Val Loss: 0.03955128111851376 +2024-07-19 14:17:59.819 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 38/50, Train Loss: 0.039970205744376056, Val Loss: 0.03703601567729099 +2024-07-19 14:18:00.026 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 39/50, Train Loss: 0.03909702236587937, Val Loss: 0.035156490986008905 +2024-07-19 14:18:00.262 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 40/50, Train Loss: 0.03904698444278659, Val Loss: 0.03584776818752289 +2024-07-19 14:18:00.477 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 41/50, Train Loss: 0.03865109585426949, Val Loss: 0.03491601750657365 +2024-07-19 14:18:00.687 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 42/50, Train Loss: 0.03849976882338524, Val Loss: 0.034170819144393946 +2024-07-19 14:18:00.896 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 43/50, Train Loss: 0.03850785557281326, Val Loss: 0.03492999650739335 +2024-07-19 14:18:01.104 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 44/50, Train Loss: 0.038335793425102495, Val Loss: 0.033455287874047016 +2024-07-19 14:18:01.312 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 45/50, Train Loss: 0.03816605145363389, Val Loss: 0.03400961057962598 +2024-07-19 14:18:01.527 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 46/50, Train Loss: 0.038152173085994015, Val Loss: 0.033525125375269235 +2024-07-19 14:18:01.748 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 47/50, Train Loss: 0.03802576917852905, Val Loss: 0.03336751492492653 +2024-07-19 14:18:01.983 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 48/50, Train Loss: 0.03807818829207807, Val Loss: 0.033441780122450075 +2024-07-19 14:18:02.227 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 49/50, Train Loss: 0.0378667973988765, Val Loss: 0.0332762160640512 +2024-07-19 14:18:02.459 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 50/50, Train Loss: 0.03788204856116224, Val Loss: 0.03287220908630941 +2024-07-19 14:18:02.459 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Fold 0, MAPE: 5.35% +2024-07-19 14:18:02.843 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Training image saved at metaflow_models//bgd_office_200001_500000_LSTM//train_f0_bgd_office_200001_500000_LSTM.png +2024-07-19 14:18:03.359 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 1/50, Train Loss: 0.033457568011004225, Val Loss: 0.023250195424298983 +2024-07-19 14:18:03.752 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 2/50, Train Loss: 0.03338611393860758, Val Loss: 0.02343250363058335 +2024-07-19 14:18:04.162 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 3/50, Train Loss: 0.03290835529412717, Val Loss: 0.02279762507139428 +2024-07-19 14:18:04.558 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 4/50, Train Loss: 0.03269908217432564, Val Loss: 0.023625564144773258 +2024-07-19 14:18:04.960 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 5/50, Train Loss: 0.03294809796681551, Val Loss: 0.02393883337090547 +2024-07-19 14:18:05.347 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 6/50, Train Loss: 0.03350115925941157, Val Loss: 0.02297022462998693 +2024-07-19 14:18:05.747 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 7/50, Train Loss: 0.033473305008693104, Val Loss: 0.022829633193543634 +2024-07-19 14:18:06.138 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 8/50, Train Loss: 0.033266355002885814, Val Loss: 0.023071568421516066 +2024-07-19 14:18:06.541 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 9/50, Train Loss: 0.032976780967046954, Val Loss: 0.023225531523191446 +2024-07-19 14:18:06.925 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 10/50, Train Loss: 0.03243458153016559, Val Loss: 0.023411250320842136 +2024-07-19 14:18:07.325 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 11/50, Train Loss: 0.03266711062305186, Val Loss: 0.022815906832850463 +2024-07-19 14:18:07.711 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 12/50, Train Loss: 0.03235540884763819, Val Loss: 0.022812412346939783 +2024-07-19 14:18:08.090 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 13/50, Train Loss: 0.03242244270362266, Val Loss: 0.022725612843862257 +2024-07-19 14:18:08.489 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 14/50, Train Loss: 0.032123278686138866, Val Loss: 0.022604831003558798 +2024-07-19 14:18:08.873 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 15/50, Train Loss: 0.032204427175887236, Val Loss: 0.022657097178838542 +2024-07-19 14:18:09.265 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 16/50, Train Loss: 0.03204825243670238, Val Loss: 0.02320377017698578 +2024-07-19 14:18:09.646 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 17/50, Train Loss: 0.03241263921946695, Val Loss: 0.022713724473440968 +2024-07-19 14:18:10.029 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 18/50, Train Loss: 0.031634568045400595, Val Loss: 0.02325140146186223 +2024-07-19 14:18:10.434 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 19/50, Train Loss: 0.0314598497232958, Val Loss: 0.0228492152449247 +2024-07-19 14:18:10.814 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 20/50, Train Loss: 0.031580925963768, Val Loss: 0.022880509948811016 +2024-07-19 14:18:11.199 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 21/50, Train Loss: 0.03140850275856991, Val Loss: 0.02284553921403917 +2024-07-19 14:18:11.592 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 22/50, Train Loss: 0.031302339767348274, Val Loss: 0.023092539301393804 +2024-07-19 14:18:11.979 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 23/50, Train Loss: 0.031390213114145686, Val Loss: 0.023086188927393506 +2024-07-19 14:18:12.378 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 24/50, Train Loss: 0.031338777609985984, Val Loss: 0.023420398916445068 +2024-07-19 14:18:12.771 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 25/50, Train Loss: 0.031066937786718346, Val Loss: 0.022920704824296204 +2024-07-19 14:18:13.159 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 26/50, Train Loss: 0.0309630912945491, Val Loss: 0.02332716960006872 +2024-07-19 14:18:13.564 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 27/50, Train Loss: 0.030701655626603184, Val Loss: 0.023116933269979986 +2024-07-19 14:18:13.954 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 28/50, Train Loss: 0.030521246158096888, Val Loss: 0.0230763562376032 +2024-07-19 14:18:14.349 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 29/50, Train Loss: 0.030889277690893984, Val Loss: 0.023234765624275077 +2024-07-19 14:18:14.733 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 30/50, Train Loss: 0.030411785021934607, Val Loss: 0.02352057699416135 +2024-07-19 14:18:15.116 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 31/50, Train Loss: 0.03015654540480408, Val Loss: 0.02327679910671872 +2024-07-19 14:18:15.504 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 32/50, Train Loss: 0.030976185077571706, Val Loss: 0.02533084954563025 +2024-07-19 14:18:15.878 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 33/50, Train Loss: 0.03122871172014777, Val Loss: 0.022950732300209033 +2024-07-19 14:18:16.276 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 34/50, Train Loss: 0.03032047293876132, Val Loss: 0.02323844676484933 +2024-07-19 14:18:16.653 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 35/50, Train Loss: 0.03017161413389322, Val Loss: 0.0231267206270147 +2024-07-19 14:18:17.061 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 36/50, Train Loss: 0.029903449826197675, Val Loss: 0.022736967151128763 +2024-07-19 14:18:17.468 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 37/50, Train Loss: 0.02971597127488827, Val Loss: 0.02238949969712947 +2024-07-19 14:18:17.860 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 38/50, Train Loss: 0.029759777193149067, Val Loss: 0.022470596259006777 +2024-07-19 14:18:18.250 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 39/50, Train Loss: 0.030162993620774927, Val Loss: 0.024439906550420297 +2024-07-19 14:18:18.636 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 40/50, Train Loss: 0.02975731728955695, Val Loss: 0.022498513144013042 +2024-07-19 14:18:19.025 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 41/50, Train Loss: 0.029440980047395784, Val Loss: 0.022402853163815028 +2024-07-19 14:18:19.414 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 42/50, Train Loss: 0.029113767687741616, Val Loss: 0.022757305990199785 +2024-07-19 14:18:19.803 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 43/50, Train Loss: 0.029145723553246832, Val Loss: 0.022413763406409604 +2024-07-19 14:18:20.194 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 44/50, Train Loss: 0.029114490394059517, Val Loss: 0.022338518860271654 +2024-07-19 14:18:20.584 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 45/50, Train Loss: 0.029288121014323137, Val Loss: 0.02322175570235059 +2024-07-19 14:18:20.977 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 46/50, Train Loss: 0.029061105134195252, Val Loss: 0.022459190389191783 +2024-07-19 14:18:21.363 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 47/50, Train Loss: 0.02919017800372349, Val Loss: 0.022296912968158722 +2024-07-19 14:18:21.743 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 48/50, Train Loss: 0.028861269514293294, Val Loss: 0.0223506325478288 +2024-07-19 14:18:22.135 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 49/50, Train Loss: 0.028417650878123226, Val Loss: 0.022008715260371164 +2024-07-19 14:18:22.522 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 50/50, Train Loss: 0.028586077969521284, Val Loss: 0.022340595596344083 +2024-07-19 14:18:22.523 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Fold 1, MAPE: 4.46% +2024-07-19 14:18:22.626 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Training image saved at metaflow_models//bgd_office_200001_500000_LSTM//train_f1_bgd_office_200001_500000_LSTM.png +2024-07-19 14:18:23.194 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 1/50, Train Loss: 0.0265192956706001, Val Loss: 0.026168377642091865 +2024-07-19 14:18:23.733 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 2/50, Train Loss: 0.02709930390542881, Val Loss: 0.02677129259383356 +2024-07-19 14:18:24.328 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 3/50, Train Loss: 0.026930768923325972, Val Loss: 0.025784892986553745 +2024-07-19 14:18:24.873 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 4/50, Train Loss: 0.02671109847724438, Val Loss: 0.026423762476927525 +2024-07-19 14:18:25.418 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 5/50, Train Loss: 0.02724853565662422, Val Loss: 0.028241092011936614 +2024-07-19 14:18:25.966 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 6/50, Train Loss: 0.02697212311693213, Val Loss: 0.026899716061716143 +2024-07-19 14:18:26.534 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 7/50, Train Loss: 0.02701664340089668, Val Loss: 0.027072448812022403 +2024-07-19 14:18:27.078 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 8/50, Train Loss: 0.026816516695544124, Val Loss: 0.026842632909884322 +2024-07-19 14:18:27.633 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 9/50, Train Loss: 0.026722005191682413, Val Loss: 0.027247026613032497 +2024-07-19 14:18:28.184 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 10/50, Train Loss: 0.02685056205161593, Val Loss: 0.02744024377819654 +2024-07-19 14:18:28.731 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 11/50, Train Loss: 0.026344642707739365, Val Loss: 0.026298018600288277 +2024-07-19 14:18:29.277 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 12/50, Train Loss: 0.026192974028262227, Val Loss: 0.02670338052652172 +2024-07-19 14:18:29.819 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 13/50, Train Loss: 0.026060876381498847, Val Loss: 0.0257422971614712 +2024-07-19 14:18:30.384 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 14/50, Train Loss: 0.02626224234700203, Val Loss: 0.02693941504568667 +2024-07-19 14:18:30.934 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 15/50, Train Loss: 0.025859851970083333, Val Loss: 0.026762802279680163 +2024-07-19 14:18:31.497 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 16/50, Train Loss: 0.025951821661808275, Val Loss: 0.026355444176776988 +2024-07-19 14:18:32.075 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 17/50, Train Loss: 0.025814919152551078, Val Loss: 0.026439856511314173 +2024-07-19 14:18:32.649 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 18/50, Train Loss: 0.02569799080745063, Val Loss: 0.02544330757715412 +2024-07-19 14:18:33.233 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 19/50, Train Loss: 0.025684892873025753, Val Loss: 0.02801267191062908 +2024-07-19 14:18:33.799 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 20/50, Train Loss: 0.025516674443232742, Val Loss: 0.026035187136683915 +2024-07-19 14:18:34.364 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 21/50, Train Loss: 0.02546275552277538, Val Loss: 0.026108074027138786 +2024-07-19 14:18:34.917 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 22/50, Train Loss: 0.025479529950429094, Val Loss: 0.025856394748631363 +2024-07-19 14:18:35.473 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 23/50, Train Loss: 0.025433892401104625, Val Loss: 0.028811354542503487 +2024-07-19 14:18:36.039 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 24/50, Train Loss: 0.02540159500627355, Val Loss: 0.02788843622280134 +2024-07-19 14:18:36.606 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 25/50, Train Loss: 0.02562600827606564, Val Loss: 0.025253448006067727 +2024-07-19 14:18:37.163 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 26/50, Train Loss: 0.025277050775052472, Val Loss: 0.02611185539815877 +2024-07-19 14:18:37.747 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 27/50, Train Loss: 0.025533752583644608, Val Loss: 0.029371014368292446 +2024-07-19 14:18:38.298 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 28/50, Train Loss: 0.025418919828635724, Val Loss: 0.02591160385290513 +2024-07-19 14:18:38.856 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 29/50, Train Loss: 0.025199664549224756, Val Loss: 0.02821684820023743 +2024-07-19 14:18:39.429 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 30/50, Train Loss: 0.025476913154125213, Val Loss: 0.026161422953009605 +2024-07-19 14:18:39.999 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 31/50, Train Loss: 0.02519607068547471, Val Loss: 0.027802651622206777 +2024-07-19 14:18:40.572 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 32/50, Train Loss: 0.02477704485116357, Val Loss: 0.025003314848888566 +2024-07-19 14:18:41.144 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 33/50, Train Loss: 0.02504693390801549, Val Loss: 0.026095457425391353 +2024-07-19 14:18:41.686 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 34/50, Train Loss: 0.024968558008020576, Val Loss: 0.025491037431198196 +2024-07-19 14:18:42.204 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 35/50, Train Loss: 0.02503654120743952, Val Loss: 0.02753047355626886 +2024-07-19 14:18:42.744 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 36/50, Train Loss: 0.024837488063018432, Val Loss: 0.025830480496625643 +2024-07-19 14:18:43.315 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 37/50, Train Loss: 0.024710719702257352, Val Loss: 0.02680121150773925 +2024-07-19 14:18:43.868 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 38/50, Train Loss: 0.024909322183917868, Val Loss: 0.025688319592862517 +2024-07-19 14:18:44.439 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 39/50, Train Loss: 0.024676112589341673, Val Loss: 0.02553668197848507 +2024-07-19 14:18:44.985 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 40/50, Train Loss: 0.02495007046329027, Val Loss: 0.024042897656358576 +2024-07-19 14:18:45.506 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 41/50, Train Loss: 0.024787023714320226, Val Loss: 0.024837256132348162 +2024-07-19 14:18:46.033 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 42/50, Train Loss: 0.02475914050062949, Val Loss: 0.02563383722224751 +2024-07-19 14:18:46.559 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 43/50, Train Loss: 0.025153806124051863, Val Loss: 0.027227409712567523 +2024-07-19 14:18:47.087 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 44/50, Train Loss: 0.024108262275430288, Val Loss: 0.026355074894790713 +2024-07-19 14:18:47.622 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 45/50, Train Loss: 0.024389088259671222, Val Loss: 0.025018165064220492 +2024-07-19 14:18:48.187 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 46/50, Train Loss: 0.02406123664907434, Val Loss: 0.025835181359906454 +2024-07-19 14:18:48.743 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 47/50, Train Loss: 0.024596373999322, Val Loss: 0.02451009109515596 +2024-07-19 14:18:49.264 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 48/50, Train Loss: 0.02411365166560493, Val Loss: 0.024518747511949088 +2024-07-19 14:18:49.789 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 49/50, Train Loss: 0.0245200166224756, Val Loss: 0.025300944223999977 +2024-07-19 14:18:50.316 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 50/50, Train Loss: 0.024060493932020935, Val Loss: 0.024334238011490653 +2024-07-19 14:18:50.316 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Fold 2, MAPE: 6.89% +2024-07-19 14:18:50.426 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Training image saved at metaflow_models//bgd_office_200001_500000_LSTM//train_f2_bgd_office_200001_500000_LSTM.png +2024-07-19 14:18:51.104 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 1/50, Train Loss: 0.023761683618905, Val Loss: 0.020353224015215766 +2024-07-19 14:18:51.784 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 2/50, Train Loss: 0.024048549397402023, Val Loss: 0.019672950553531583 +2024-07-19 14:18:52.457 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 3/50, Train Loss: 0.023987157321343683, Val Loss: 0.019948233825129433 +2024-07-19 14:18:53.173 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 4/50, Train Loss: 0.02374100453883716, Val Loss: 0.019675150501063547 +2024-07-19 14:18:53.910 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 5/50, Train Loss: 0.023947153572146208, Val Loss: 0.019654307703210694 +2024-07-19 14:18:54.595 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 6/50, Train Loss: 0.023686065925412798, Val Loss: 0.01983023273783761 +2024-07-19 14:18:55.280 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 7/50, Train Loss: 0.023600264643765474, Val Loss: 0.019333629654972134 +2024-07-19 14:18:55.968 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 8/50, Train Loss: 0.023411812844418296, Val Loss: 0.01919047481606941 +2024-07-19 14:18:56.712 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 9/50, Train Loss: 0.023310159862500755, Val Loss: 0.01938264097741528 +2024-07-19 14:18:57.447 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 10/50, Train Loss: 0.023354554880563528, Val Loss: 0.019806999990062135 +2024-07-19 14:18:58.174 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 11/50, Train Loss: 0.02324361616924201, Val Loss: 0.019136279387198186 +2024-07-19 14:18:58.879 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 12/50, Train Loss: 0.02349641258917647, Val Loss: 0.01880644994309625 +2024-07-19 14:18:59.590 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 13/50, Train Loss: 0.023054544207933424, Val Loss: 0.019483086212563352 +2024-07-19 14:19:00.343 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 14/50, Train Loss: 0.023218782924830098, Val Loss: 0.019785369784143324 +2024-07-19 14:19:01.062 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 15/50, Train Loss: 0.02327230552606897, Val Loss: 0.019466301407413306 +2024-07-19 14:19:01.781 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 16/50, Train Loss: 0.023344384975195545, Val Loss: 0.01905415078146836 +2024-07-19 14:19:02.504 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 17/50, Train Loss: 0.02339744616350899, Val Loss: 0.019182931921268638 +2024-07-19 14:19:03.224 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 18/50, Train Loss: 0.022927067433930422, Val Loss: 0.019114655392194115 +2024-07-19 14:19:03.975 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 19/50, Train Loss: 0.023549885862213495, Val Loss: 0.01977354274886484 +2024-07-19 14:19:04.684 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 20/50, Train Loss: 0.022827080757140298, Val Loss: 0.019578613454123605 +2024-07-19 14:19:05.399 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 21/50, Train Loss: 0.022903527378755277, Val Loss: 0.019705197698361165 +2024-07-19 14:19:06.111 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 22/50, Train Loss: 0.02337277938981783, Val Loss: 0.020212310171258206 +2024-07-19 14:19:06.845 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 23/50, Train Loss: 0.023007697368372385, Val Loss: 0.020018939470016473 +2024-07-19 14:19:07.536 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 24/50, Train Loss: 0.022806456532609994, Val Loss: 0.01924021656599802 +2024-07-19 14:19:08.221 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 25/50, Train Loss: 0.02327952082332683, Val Loss: 0.020123171267678607 +2024-07-19 14:19:08.916 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 26/50, Train Loss: 0.023075208635618016, Val Loss: 0.01971338389793763 +2024-07-19 14:19:09.606 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 27/50, Train Loss: 0.02293081036513697, Val Loss: 0.019549878679115226 +2024-07-19 14:19:10.345 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 28/50, Train Loss: 0.022900777109834836, Val Loss: 0.02045260411309632 +2024-07-19 14:19:11.063 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 29/50, Train Loss: 0.022899298472585133, Val Loss: 0.020117253744723024 +2024-07-19 14:19:11.786 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 30/50, Train Loss: 0.022864797273778343, Val Loss: 0.01937931142999111 +2024-07-19 14:19:12.523 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 31/50, Train Loss: 0.022839188952101012, Val Loss: 0.01926577799777324 +2024-07-19 14:19:13.255 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 32/50, Train Loss: 0.0230145132207401, Val Loss: 0.018693721639244137 +2024-07-19 14:19:13.968 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 33/50, Train Loss: 0.022541900516219744, Val Loss: 0.01876790023635368 +2024-07-19 14:19:14.677 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 34/50, Train Loss: 0.022476908578601195, Val Loss: 0.018885986489319318 +2024-07-19 14:19:15.376 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 35/50, Train Loss: 0.022934169387317276, Val Loss: 0.019087406403913692 +2024-07-19 14:19:16.104 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 36/50, Train Loss: 0.022775279979974236, Val Loss: 0.019147804623620736 +2024-07-19 14:19:16.834 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 37/50, Train Loss: 0.022457697014133, Val Loss: 0.01971465097488584 +2024-07-19 14:19:17.567 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 38/50, Train Loss: 0.022723959388900292, Val Loss: 0.01935567971746865 +2024-07-19 14:19:18.291 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 39/50, Train Loss: 0.022740294978226702, Val Loss: 0.0196790624208547 +2024-07-19 14:19:18.995 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 40/50, Train Loss: 0.022654213457789323, Val Loss: 0.018974916178833793 +2024-07-19 14:19:19.714 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 41/50, Train Loss: 0.022608732020048653, Val Loss: 0.019057436355364485 +2024-07-19 14:19:20.451 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 42/50, Train Loss: 0.022390873684892305, Val Loss: 0.01949104216151141 +2024-07-19 14:19:21.171 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 43/50, Train Loss: 0.02242031529520268, Val Loss: 0.019414012446194083 +2024-07-19 14:19:21.903 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 44/50, Train Loss: 0.02249725104934753, Val Loss: 0.01919838326756616 +2024-07-19 14:19:22.633 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 45/50, Train Loss: 0.022774025619234126, Val Loss: 0.019311863262004948 +2024-07-19 14:19:23.368 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 46/50, Train Loss: 0.022489981307992585, Val Loss: 0.0198085169005837 +2024-07-19 14:19:24.084 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 47/50, Train Loss: 0.022287729330207794, Val Loss: 0.019125572884002247 +2024-07-19 14:19:24.796 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 48/50, Train Loss: 0.02244955956400053, Val Loss: 0.01961213113689745 +2024-07-19 14:19:25.511 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 49/50, Train Loss: 0.022686825140239033, Val Loss: 0.01881609482036249 +2024-07-19 14:19:26.226 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 50/50, Train Loss: 0.022523691341893314, Val Loss: 0.018737275776377803 +2024-07-19 14:19:26.226 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Fold 3, MAPE: 5.54% +2024-07-19 14:19:26.333 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Training image saved at metaflow_models//bgd_office_200001_500000_LSTM//train_f3_bgd_office_200001_500000_LSTM.png +2024-07-19 14:19:27.228 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 1/50, Train Loss: 0.020966291228043183, Val Loss: 0.017292196786886937 +2024-07-19 14:19:28.112 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 2/50, Train Loss: 0.020868138225933353, Val Loss: 0.018236180125559505 +2024-07-19 14:19:29.047 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 3/50, Train Loss: 0.02128679237768545, Val Loss: 0.01804117438056179 +2024-07-19 14:19:30.022 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 4/50, Train Loss: 0.021138251475109667, Val Loss: 0.01776564633473754 +2024-07-19 14:19:30.872 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 5/50, Train Loss: 0.021304377086030748, Val Loss: 0.01721894782590302 +2024-07-19 14:19:31.709 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 6/50, Train Loss: 0.02077099058654282, Val Loss: 0.017201104528597883 +2024-07-19 14:19:32.543 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 7/50, Train Loss: 0.021494537471681015, Val Loss: 0.017723489766688767 +2024-07-19 14:19:33.371 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 8/50, Train Loss: 0.02079493064525445, Val Loss: 0.01801640761865152 +2024-07-19 14:19:34.269 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 9/50, Train Loss: 0.020693872251885605, Val Loss: 0.017301008621281064 +2024-07-19 14:19:35.137 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 10/50, Train Loss: 0.02102246364466027, Val Loss: 0.018616876199942182 +2024-07-19 14:19:35.978 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 11/50, Train Loss: 0.02086511873998321, Val Loss: 0.017455621836455288 +2024-07-19 14:19:36.859 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 12/50, Train Loss: 0.0207808430813212, Val Loss: 0.01828377535314979 +2024-07-19 14:19:37.762 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 13/50, Train Loss: 0.02069950348871586, Val Loss: 0.017546289877311605 +2024-07-19 14:19:38.655 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 14/50, Train Loss: 0.020848731512899746, Val Loss: 0.01731279379109273 +2024-07-19 14:19:39.558 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 15/50, Train Loss: 0.020665603178133676, Val Loss: 0.01729828426362695 +2024-07-19 14:19:40.476 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 16/50, Train Loss: 0.020603618431058558, Val Loss: 0.01902280664826567 +2024-07-19 14:19:41.366 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 17/50, Train Loss: 0.020956627425870726, Val Loss: 0.016859024486227614 +2024-07-19 14:19:42.250 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 18/50, Train Loss: 0.02058450277168099, Val Loss: 0.016655177532418353 +2024-07-19 14:19:43.275 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 19/50, Train Loss: 0.020454870383408697, Val Loss: 0.017157300488670934 +2024-07-19 14:19:44.176 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 20/50, Train Loss: 0.020266917738858817, Val Loss: 0.018528546080798715 +2024-07-19 14:19:45.052 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 21/50, Train Loss: 0.020360741234681273, Val Loss: 0.017622210085392 +2024-07-19 14:19:45.976 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 22/50, Train Loss: 0.020173290519268958, Val Loss: 0.017194635662678127 +2024-07-19 14:19:46.884 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 23/50, Train Loss: 0.020975842672799314, Val Loss: 0.017280656869548397 +2024-07-19 14:19:47.787 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 24/50, Train Loss: 0.020519256776014527, Val Loss: 0.017918127689611266 +2024-07-19 14:19:48.690 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 25/50, Train Loss: 0.02029465268632131, Val Loss: 0.017155095846769778 +2024-07-19 14:19:49.536 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 26/50, Train Loss: 0.02027841692196799, Val Loss: 0.0168646820191596 +2024-07-19 14:19:50.380 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 27/50, Train Loss: 0.020480851491831324, Val Loss: 0.016776867789795268 +2024-07-19 14:19:51.211 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 28/50, Train Loss: 0.02021278078913443, Val Loss: 0.01903555469235053 +2024-07-19 14:19:52.074 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 29/50, Train Loss: 0.020572450060581605, Val Loss: 0.017996865802922764 +2024-07-19 14:19:52.965 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 30/50, Train Loss: 0.01993675406633334, Val Loss: 0.01834861805813538 +2024-07-19 14:19:53.879 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 31/50, Train Loss: 0.020267705540530957, Val Loss: 0.01859995352758749 +2024-07-19 14:19:54.755 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 32/50, Train Loss: 0.020269143407918758, Val Loss: 0.018324867973255145 +2024-07-19 14:19:55.638 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 33/50, Train Loss: 0.020317000336945057, Val Loss: 0.018424512742943055 +2024-07-19 14:19:56.550 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 34/50, Train Loss: 0.02025487749571247, Val Loss: 0.01855045838935955 +2024-07-19 14:19:57.456 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 35/50, Train Loss: 0.019815392004182704, Val Loss: 0.018690798028900817 +2024-07-19 14:19:58.335 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 36/50, Train Loss: 0.019913956957899933, Val Loss: 0.018017886911292334 +2024-07-19 14:19:59.178 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 37/50, Train Loss: 0.019866467980606543, Val Loss: 0.018686320280303825 +2024-07-19 14:20:00.054 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 38/50, Train Loss: 0.01999924093699799, Val Loss: 0.019134095215515512 +2024-07-19 14:20:00.971 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 39/50, Train Loss: 0.020102694083087066, Val Loss: 0.017489750844401283 +2024-07-19 14:20:01.877 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 40/50, Train Loss: 0.01973894839226217, Val Loss: 0.017136227616385835 +2024-07-19 14:20:02.786 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 41/50, Train Loss: 0.019801566712455927, Val Loss: 0.0176036049284645 +2024-07-19 14:20:03.682 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 42/50, Train Loss: 0.019708771366052903, Val Loss: 0.017721634056117083 +2024-07-19 14:20:04.563 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 43/50, Train Loss: 0.019653054389202004, Val Loss: 0.017290880903601646 +2024-07-19 14:20:05.445 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 44/50, Train Loss: 0.01984641259628256, Val Loss: 0.018505897624669847 +2024-07-19 14:20:06.344 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 45/50, Train Loss: 0.019901092228182888, Val Loss: 0.01831401129429405 +2024-07-19 14:20:07.232 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 46/50, Train Loss: 0.019925251592892212, Val Loss: 0.01728154791871438 +2024-07-19 14:20:08.132 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 47/50, Train Loss: 0.01974717081667712, Val Loss: 0.017958771261210378 +2024-07-19 14:20:09.057 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 48/50, Train Loss: 0.019702622800001075, Val Loss: 0.017471337816803843 +2024-07-19 14:20:09.951 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 49/50, Train Loss: 0.01961183455608949, Val Loss: 0.018254837826699823 +2024-07-19 14:20:10.830 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 50/50, Train Loss: 0.019621882157830093, Val Loss: 0.017316731624305248 +2024-07-19 14:20:10.830 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Fold 4, MAPE: 4.77% +2024-07-19 14:20:10.941 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Training image saved at metaflow_models//bgd_office_200001_500000_LSTM//train_f4_bgd_office_200001_500000_LSTM.png +2024-07-19 14:20:15.055 [5/cross_validate_train/33 (pid 97530)] Task finished successfully. +2024-07-19 14:20:15.087 [5/model_scores/34 (pid 98140)] Task is starting. +2024-07-19 14:20:16.562 [5/model_scores/34 (pid 98140)] INFO:__main__:Average Train Loss across all folds: 0.026534838792485575 +2024-07-19 14:20:20.423 [5/model_scores/34 (pid 98140)] INFO:__main__:Average Validation Loss across all folds: 0.02312021001896544 +2024-07-19 14:20:20.424 [5/model_scores/34 (pid 98140)] INFO:__main__:Average MAPE across all folds: 5.40% +2024-07-19 14:20:20.424 [5/model_scores/34 (pid 98140)] Task finished successfully. +2024-07-19 14:20:20.452 [5/validate_model/35 (pid 98179)] Task is starting. +2024-07-19 14:20:21.899 [5/validate_model/35 (pid 98179)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:20:21.998 [5/validate_model/35 (pid 98179)] INFO:__main__:Test Set MAPE: 5.68% +2024-07-19 14:20:22.377 [5/validate_model/35 (pid 98179)] INFO:__main__:Test image saved at metaflow_models//bgd_office_200001_500000_LSTM//test_bgd_office_200001_500000_LSTM.png +2024-07-19 14:20:22.801 [5/validate_model/35 (pid 98179)] Task finished successfully. +2024-07-19 14:20:22.833 [5/log_model/36 (pid 98196)] Task is starting. +2024-07-19 14:20:24.318 [5/log_model/36 (pid 98196)] INFO:__main__:Logging model bgd_office_200001_500000_LSTM +2024-07-19 14:20:24.319 [5/log_model/36 (pid 98196)] INFO:__main__:Model logged at metaflow_models//bgd_office_200001_500000_LSTM//bgd_office_200001_500000_LSTM.pth +2024-07-19 14:20:28.213 [5/log_model/36 (pid 98196)] Task finished successfully. +2024-07-19 14:20:28.244 [5/end/37 (pid 98228)] Task is starting. +2024-07-19 14:20:29.743 [5/end/37 (pid 98228)] INFO:__main__:Pipeline end. +2024-07-19 14:20:30.066 [5/end/37 (pid 98228)] Task finished successfully. +2024-07-19 14:20:30.067 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/5') succeeded: +-- stdout -- +2024-07-19 14:17:22.813 Workflow starting (run-id 5): +2024-07-19 14:17:22.888 [5/start/25 (pid 97323)] Task is starting. +2024-07-19 14:17:24.313 [5/start/25 (pid 97323)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:17:24.606 [5/start/25 (pid 97323)] Task finished successfully. +2024-07-19 14:17:24.643 [5/ingest/26 (pid 97334)] Task is starting. +2024-07-19 14:17:26.052 [5/ingest/26 (pid 97334)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:17:26.067 [5/ingest/26 (pid 97334)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:17:29.889 [5/ingest/26 (pid 97334)] Task finished successfully. +2024-07-19 14:17:29.923 [5/pick_2017_data/27 (pid 97376)] Task is starting. +2024-07-19 14:17:31.470 [5/pick_2017_data/27 (pid 97376)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:17:31.837 [5/pick_2017_data/27 (pid 97376)] Task finished successfully. +2024-07-19 14:17:31.866 [5/fill_missing_data/28 (pid 97402)] Task is starting. +2024-07-19 14:17:33.423 [5/fill_missing_data/28 (pid 97402)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:17:33.428 [5/fill_missing_data/28 (pid 97402)] INFO:__main__:NaN counts per column: +2024-07-19 14:17:33.428 [5/fill_missing_data/28 (pid 97402)] INFO:__main__:Rat_office_Adele 27 +2024-07-19 14:17:33.428 [5/fill_missing_data/28 (pid 97402)] Rat_office_Lora 25 +2024-07-19 14:17:33.428 [5/fill_missing_data/28 (pid 97402)] Rat_office_Jill 218 +2024-07-19 14:17:33.428 [5/fill_missing_data/28 (pid 97402)] Rat_office_Avis 277 +2024-07-19 14:17:33.428 [5/fill_missing_data/28 (pid 97402)] dtype: int64 +2024-07-19 14:17:33.429 [5/fill_missing_data/28 (pid 97402)] --- Logging error --- +2024-07-19 14:17:33.429 [5/fill_missing_data/28 (pid 97402)] Traceback (most recent call last): +2024-07-19 14:17:33.429 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] msg = self.format(record) +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] return fmt.format(record) +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] record.message = record.getMessage() +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] msg = msg % self.args +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] TypeError: not all arguments converted during string formatting +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] Call stack: +2024-07-19 14:17:33.430 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:17:34.103 [5/fill_missing_data/28 (pid 97402)] BGD_LinearFlow() +2024-07-19 14:17:34.103 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:17:34.103 [5/fill_missing_data/28 (pid 97402)] cli.main(self) +2024-07-19 14:17:34.103 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:17:34.103 [5/fill_missing_data/28 (pid 97402)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:17:34.103 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:17:34.103 [5/fill_missing_data/28 (pid 97402)] return func(*args, **kwargs) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] return self.main(*args, **kwargs) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] rv = self.invoke(ctx) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] return callback(*args, **kwargs) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] task.run_step( +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] self._exec_step_function(step_func) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] step_function() +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:17:34.104 [5/fill_missing_data/28 (pid 97402)] Arguments: (547,) +2024-07-19 14:17:34.105 [5/fill_missing_data/28 (pid 97402)] Task finished successfully. +2024-07-19 14:17:34.138 [5/find_median/29 (pid 97420)] Task is starting. +2024-07-19 14:17:35.645 [5/find_median/29 (pid 97420)] INFO:__main__:Computing and using median.. +2024-07-19 14:17:36.213 [5/find_median/29 (pid 97420)] Task finished successfully. +2024-07-19 14:17:36.241 [5/aggregate_data/30 (pid 97431)] Task is starting. +2024-07-19 14:17:37.772 [5/aggregate_data/30 (pid 97431)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:17:41.715 [5/aggregate_data/30 (pid 97431)] Task finished successfully. +2024-07-19 14:17:41.749 [5/split_data/31 (pid 97466)] Task is starting. +2024-07-19 14:17:43.228 [5/split_data/31 (pid 97466)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:17:47.200 [5/split_data/31 (pid 97466)] Task finished successfully. +2024-07-19 14:17:47.227 [5/make_x_y/32 (pid 97507)] Task is starting. +2024-07-19 14:17:49.129 [5/make_x_y/32 (pid 97507)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:17:49.456 [5/make_x_y/32 (pid 97507)] Shape of y_train: (6978, 1) +2024-07-19 14:17:49.456 [5/make_x_y/32 (pid 97507)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:17:49.456 [5/make_x_y/32 (pid 97507)] Shape of y_test: (1722, 1) +2024-07-19 14:17:49.457 [5/make_x_y/32 (pid 97507)] Task finished successfully. +2024-07-19 14:17:49.492 [5/cross_validate_train/33 (pid 97530)] Task is starting. +2024-07-19 14:17:51.061 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Creating bgd_office_200001_500000_LSTM +2024-07-19 14:17:51.062 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Performing cross validation.. +2024-07-19 14:17:51.835 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 1/50, Train Loss: 0.24041377249601725, Val Loss: 0.14985616686376366 +2024-07-19 14:17:52.045 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 2/50, Train Loss: 0.174270930725175, Val Loss: 0.13745318982448126 +2024-07-19 14:17:52.258 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 3/50, Train Loss: 0.16514272867022334, Val Loss: 0.12656845509804585 +2024-07-19 14:17:52.466 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 4/50, Train Loss: 0.1398985419623755, Val Loss: 0.0885003902068412 +2024-07-19 14:17:52.680 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 5/50, Train Loss: 0.1042147709711178, Val Loss: 0.0822408970546078 +2024-07-19 14:17:52.923 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 6/50, Train Loss: 0.08324737544800784, Val Loss: 0.07133461086935289 +2024-07-19 14:17:53.128 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 7/50, Train Loss: 0.07891104516346713, Val Loss: 0.06701055279857404 +2024-07-19 14:17:53.332 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 8/50, Train Loss: 0.07552335683155705, Val Loss: 0.06485003109618619 +2024-07-19 14:17:53.536 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 9/50, Train Loss: 0.07299944053630571, Val Loss: 0.062358206716945044 +2024-07-19 14:17:53.758 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 10/50, Train Loss: 0.07011313117235093, Val Loss: 0.06111018039990921 +2024-07-19 14:17:53.972 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 11/50, Train Loss: 0.06713395157979953, Val Loss: 0.05757082940859569 +2024-07-19 14:17:54.180 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 12/50, Train Loss: 0.0639777307876864, Val Loss: 0.053427663128319626 +2024-07-19 14:17:54.393 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 13/50, Train Loss: 0.060529350831701946, Val Loss: 0.05045030834908421 +2024-07-19 14:17:54.605 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 14/50, Train Loss: 0.05691778737850286, Val Loss: 0.04826545169123927 +2024-07-19 14:17:54.813 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 15/50, Train Loss: 0.053411469618613656, Val Loss: 0.042543641039849936 +2024-07-19 14:17:55.031 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 16/50, Train Loss: 0.04868668393307441, Val Loss: 0.039518800866160844 +2024-07-19 14:17:55.237 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 17/50, Train Loss: 0.04622172232012491, Val Loss: 0.03838533709278783 +2024-07-19 14:17:55.449 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 18/50, Train Loss: 0.043847303258607515, Val Loss: 0.03734340969901029 +2024-07-19 14:17:55.679 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 19/50, Train Loss: 0.04379419129140474, Val Loss: 0.036580929469719935 +2024-07-19 14:17:55.896 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 20/50, Train Loss: 0.041029408448249906, Val Loss: 0.03519850809479485 +2024-07-19 14:17:56.108 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 21/50, Train Loss: 0.04152367966299927, Val Loss: 0.03665682413564945 +2024-07-19 14:17:56.349 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 22/50, Train Loss: 0.04015210666064475, Val Loss: 0.03549372849079806 +2024-07-19 14:17:56.586 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 23/50, Train Loss: 0.039798206951771234, Val Loss: 0.03626672036291377 +2024-07-19 14:17:56.795 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 24/50, Train Loss: 0.04000126316237289, Val Loss: 0.03511689992218807 +2024-07-19 14:17:57.027 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 25/50, Train Loss: 0.040356148839802354, Val Loss: 0.03541684416248589 +2024-07-19 14:17:57.240 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 26/50, Train Loss: 0.03995979652815574, Val Loss: 0.035240186353188915 +2024-07-19 14:17:57.478 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 27/50, Train Loss: 0.04071345464704004, Val Loss: 0.035492503235267626 +2024-07-19 14:17:57.705 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 28/50, Train Loss: 0.03963590639869909, Val Loss: 0.03419752615327771 +2024-07-19 14:17:57.910 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 29/50, Train Loss: 0.039772226072445106, Val Loss: 0.03445200103561621 +2024-07-19 14:17:58.119 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 30/50, Train Loss: 0.03943236340844148, Val Loss: 0.03424520991943978 +2024-07-19 14:17:58.326 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 31/50, Train Loss: 0.039564018842537664, Val Loss: 0.03450917812517366 +2024-07-19 14:17:58.530 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 32/50, Train Loss: 0.03926838813601313, Val Loss: 0.03446034822814368 +2024-07-19 14:17:58.743 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 33/50, Train Loss: 0.03909471276140696, Val Loss: 0.03470752264901593 +2024-07-19 14:17:58.956 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 34/50, Train Loss: 0.03914451672116647, Val Loss: 0.03417263696020519 +2024-07-19 14:17:59.184 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 35/50, Train Loss: 0.03886183613055461, Val Loss: 0.035670943331678175 +2024-07-19 14:17:59.403 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 36/50, Train Loss: 0.03944698570145143, Val Loss: 0.034594849028901475 +2024-07-19 14:17:59.610 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 37/50, Train Loss: 0.03982380571196208, Val Loss: 0.03955128111851376 +2024-07-19 14:17:59.819 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 38/50, Train Loss: 0.039970205744376056, Val Loss: 0.03703601567729099 +2024-07-19 14:18:00.026 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 39/50, Train Loss: 0.03909702236587937, Val Loss: 0.035156490986008905 +2024-07-19 14:18:00.262 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 40/50, Train Loss: 0.03904698444278659, Val Loss: 0.03584776818752289 +2024-07-19 14:18:00.477 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 41/50, Train Loss: 0.03865109585426949, Val Loss: 0.03491601750657365 +2024-07-19 14:18:00.687 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 42/50, Train Loss: 0.03849976882338524, Val Loss: 0.034170819144393946 +2024-07-19 14:18:00.896 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 43/50, Train Loss: 0.03850785557281326, Val Loss: 0.03492999650739335 +2024-07-19 14:18:01.104 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 44/50, Train Loss: 0.038335793425102495, Val Loss: 0.033455287874047016 +2024-07-19 14:18:01.312 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 45/50, Train Loss: 0.03816605145363389, Val Loss: 0.03400961057962598 +2024-07-19 14:18:01.527 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 46/50, Train Loss: 0.038152173085994015, Val Loss: 0.033525125375269235 +2024-07-19 14:18:01.748 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 47/50, Train Loss: 0.03802576917852905, Val Loss: 0.03336751492492653 +2024-07-19 14:18:01.983 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 48/50, Train Loss: 0.03807818829207807, Val Loss: 0.033441780122450075 +2024-07-19 14:18:02.227 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 49/50, Train Loss: 0.0378667973988765, Val Loss: 0.0332762160640512 +2024-07-19 14:18:02.459 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 50/50, Train Loss: 0.03788204856116224, Val Loss: 0.03287220908630941 +2024-07-19 14:18:02.459 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Fold 0, MAPE: 5.35% +2024-07-19 14:18:02.843 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Training image saved at metaflow_models//bgd_office_200001_500000_LSTM//train_f0_bgd_office_200001_500000_LSTM.png +2024-07-19 14:18:03.359 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 1/50, Train Loss: 0.033457568011004225, Val Loss: 0.023250195424298983 +2024-07-19 14:18:03.752 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 2/50, Train Loss: 0.03338611393860758, Val Loss: 0.02343250363058335 +2024-07-19 14:18:04.162 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 3/50, Train Loss: 0.03290835529412717, Val Loss: 0.02279762507139428 +2024-07-19 14:18:04.558 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 4/50, Train Loss: 0.03269908217432564, Val Loss: 0.023625564144773258 +2024-07-19 14:18:04.960 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 5/50, Train Loss: 0.03294809796681551, Val Loss: 0.02393883337090547 +2024-07-19 14:18:05.347 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 6/50, Train Loss: 0.03350115925941157, Val Loss: 0.02297022462998693 +2024-07-19 14:18:05.747 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 7/50, Train Loss: 0.033473305008693104, Val Loss: 0.022829633193543634 +2024-07-19 14:18:06.138 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 8/50, Train Loss: 0.033266355002885814, Val Loss: 0.023071568421516066 +2024-07-19 14:18:06.541 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 9/50, Train Loss: 0.032976780967046954, Val Loss: 0.023225531523191446 +2024-07-19 14:18:06.925 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 10/50, Train Loss: 0.03243458153016559, Val Loss: 0.023411250320842136 +2024-07-19 14:18:07.325 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 11/50, Train Loss: 0.03266711062305186, Val Loss: 0.022815906832850463 +2024-07-19 14:18:07.711 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 12/50, Train Loss: 0.03235540884763819, Val Loss: 0.022812412346939783 +2024-07-19 14:18:08.090 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 13/50, Train Loss: 0.03242244270362266, Val Loss: 0.022725612843862257 +2024-07-19 14:18:08.489 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 14/50, Train Loss: 0.032123278686138866, Val Loss: 0.022604831003558798 +2024-07-19 14:18:08.873 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 15/50, Train Loss: 0.032204427175887236, Val Loss: 0.022657097178838542 +2024-07-19 14:18:09.265 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 16/50, Train Loss: 0.03204825243670238, Val Loss: 0.02320377017698578 +2024-07-19 14:18:09.646 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 17/50, Train Loss: 0.03241263921946695, Val Loss: 0.022713724473440968 +2024-07-19 14:18:10.029 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 18/50, Train Loss: 0.031634568045400595, Val Loss: 0.02325140146186223 +2024-07-19 14:18:10.434 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 19/50, Train Loss: 0.0314598497232958, Val Loss: 0.0228492152449247 +2024-07-19 14:18:10.814 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 20/50, Train Loss: 0.031580925963768, Val Loss: 0.022880509948811016 +2024-07-19 14:18:11.199 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 21/50, Train Loss: 0.03140850275856991, Val Loss: 0.02284553921403917 +2024-07-19 14:18:11.592 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 22/50, Train Loss: 0.031302339767348274, Val Loss: 0.023092539301393804 +2024-07-19 14:18:11.979 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 23/50, Train Loss: 0.031390213114145686, Val Loss: 0.023086188927393506 +2024-07-19 14:18:12.378 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 24/50, Train Loss: 0.031338777609985984, Val Loss: 0.023420398916445068 +2024-07-19 14:18:12.771 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 25/50, Train Loss: 0.031066937786718346, Val Loss: 0.022920704824296204 +2024-07-19 14:18:13.159 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 26/50, Train Loss: 0.0309630912945491, Val Loss: 0.02332716960006872 +2024-07-19 14:18:13.564 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 27/50, Train Loss: 0.030701655626603184, Val Loss: 0.023116933269979986 +2024-07-19 14:18:13.954 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 28/50, Train Loss: 0.030521246158096888, Val Loss: 0.0230763562376032 +2024-07-19 14:18:14.349 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 29/50, Train Loss: 0.030889277690893984, Val Loss: 0.023234765624275077 +2024-07-19 14:18:14.733 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 30/50, Train Loss: 0.030411785021934607, Val Loss: 0.02352057699416135 +2024-07-19 14:18:15.116 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 31/50, Train Loss: 0.03015654540480408, Val Loss: 0.02327679910671872 +2024-07-19 14:18:15.504 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 32/50, Train Loss: 0.030976185077571706, Val Loss: 0.02533084954563025 +2024-07-19 14:18:15.878 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 33/50, Train Loss: 0.03122871172014777, Val Loss: 0.022950732300209033 +2024-07-19 14:18:16.276 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 34/50, Train Loss: 0.03032047293876132, Val Loss: 0.02323844676484933 +2024-07-19 14:18:16.653 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 35/50, Train Loss: 0.03017161413389322, Val Loss: 0.0231267206270147 +2024-07-19 14:18:17.061 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 36/50, Train Loss: 0.029903449826197675, Val Loss: 0.022736967151128763 +2024-07-19 14:18:17.468 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 37/50, Train Loss: 0.02971597127488827, Val Loss: 0.02238949969712947 +2024-07-19 14:18:17.860 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 38/50, Train Loss: 0.029759777193149067, Val Loss: 0.022470596259006777 +2024-07-19 14:18:18.250 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 39/50, Train Loss: 0.030162993620774927, Val Loss: 0.024439906550420297 +2024-07-19 14:18:18.636 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 40/50, Train Loss: 0.02975731728955695, Val Loss: 0.022498513144013042 +2024-07-19 14:18:19.025 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 41/50, Train Loss: 0.029440980047395784, Val Loss: 0.022402853163815028 +2024-07-19 14:18:19.414 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 42/50, Train Loss: 0.029113767687741616, Val Loss: 0.022757305990199785 +2024-07-19 14:18:19.803 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 43/50, Train Loss: 0.029145723553246832, Val Loss: 0.022413763406409604 +2024-07-19 14:18:20.194 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 44/50, Train Loss: 0.029114490394059517, Val Loss: 0.022338518860271654 +2024-07-19 14:18:20.584 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 45/50, Train Loss: 0.029288121014323137, Val Loss: 0.02322175570235059 +2024-07-19 14:18:20.977 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 46/50, Train Loss: 0.029061105134195252, Val Loss: 0.022459190389191783 +2024-07-19 14:18:21.363 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 47/50, Train Loss: 0.02919017800372349, Val Loss: 0.022296912968158722 +2024-07-19 14:18:21.743 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 48/50, Train Loss: 0.028861269514293294, Val Loss: 0.0223506325478288 +2024-07-19 14:18:22.135 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 49/50, Train Loss: 0.028417650878123226, Val Loss: 0.022008715260371164 +2024-07-19 14:18:22.522 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 50/50, Train Loss: 0.028586077969521284, Val Loss: 0.022340595596344083 +2024-07-19 14:18:22.523 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Fold 1, MAPE: 4.46% +2024-07-19 14:18:22.626 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Training image saved at metaflow_models//bgd_office_200001_500000_LSTM//train_f1_bgd_office_200001_500000_LSTM.png +2024-07-19 14:18:23.194 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 1/50, Train Loss: 0.0265192956706001, Val Loss: 0.026168377642091865 +2024-07-19 14:18:23.733 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 2/50, Train Loss: 0.02709930390542881, Val Loss: 0.02677129259383356 +2024-07-19 14:18:24.328 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 3/50, Train Loss: 0.026930768923325972, Val Loss: 0.025784892986553745 +2024-07-19 14:18:24.873 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 4/50, Train Loss: 0.02671109847724438, Val Loss: 0.026423762476927525 +2024-07-19 14:18:25.418 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 5/50, Train Loss: 0.02724853565662422, Val Loss: 0.028241092011936614 +2024-07-19 14:18:25.966 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 6/50, Train Loss: 0.02697212311693213, Val Loss: 0.026899716061716143 +2024-07-19 14:18:26.534 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 7/50, Train Loss: 0.02701664340089668, Val Loss: 0.027072448812022403 +2024-07-19 14:18:27.078 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 8/50, Train Loss: 0.026816516695544124, Val Loss: 0.026842632909884322 +2024-07-19 14:18:27.633 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 9/50, Train Loss: 0.026722005191682413, Val Loss: 0.027247026613032497 +2024-07-19 14:18:28.184 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 10/50, Train Loss: 0.02685056205161593, Val Loss: 0.02744024377819654 +2024-07-19 14:18:28.731 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 11/50, Train Loss: 0.026344642707739365, Val Loss: 0.026298018600288277 +2024-07-19 14:18:29.277 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 12/50, Train Loss: 0.026192974028262227, Val Loss: 0.02670338052652172 +2024-07-19 14:18:29.819 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 13/50, Train Loss: 0.026060876381498847, Val Loss: 0.0257422971614712 +2024-07-19 14:18:30.384 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 14/50, Train Loss: 0.02626224234700203, Val Loss: 0.02693941504568667 +2024-07-19 14:18:30.934 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 15/50, Train Loss: 0.025859851970083333, Val Loss: 0.026762802279680163 +2024-07-19 14:18:31.497 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 16/50, Train Loss: 0.025951821661808275, Val Loss: 0.026355444176776988 +2024-07-19 14:18:32.075 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 17/50, Train Loss: 0.025814919152551078, Val Loss: 0.026439856511314173 +2024-07-19 14:18:32.649 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 18/50, Train Loss: 0.02569799080745063, Val Loss: 0.02544330757715412 +2024-07-19 14:18:33.233 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 19/50, Train Loss: 0.025684892873025753, Val Loss: 0.02801267191062908 +2024-07-19 14:18:33.799 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 20/50, Train Loss: 0.025516674443232742, Val Loss: 0.026035187136683915 +2024-07-19 14:18:34.364 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 21/50, Train Loss: 0.02546275552277538, Val Loss: 0.026108074027138786 +2024-07-19 14:18:34.917 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 22/50, Train Loss: 0.025479529950429094, Val Loss: 0.025856394748631363 +2024-07-19 14:18:35.473 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 23/50, Train Loss: 0.025433892401104625, Val Loss: 0.028811354542503487 +2024-07-19 14:18:36.039 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 24/50, Train Loss: 0.02540159500627355, Val Loss: 0.02788843622280134 +2024-07-19 14:18:36.606 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 25/50, Train Loss: 0.02562600827606564, Val Loss: 0.025253448006067727 +2024-07-19 14:18:37.163 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 26/50, Train Loss: 0.025277050775052472, Val Loss: 0.02611185539815877 +2024-07-19 14:18:37.747 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 27/50, Train Loss: 0.025533752583644608, Val Loss: 0.029371014368292446 +2024-07-19 14:18:38.298 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 28/50, Train Loss: 0.025418919828635724, Val Loss: 0.02591160385290513 +2024-07-19 14:18:38.856 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 29/50, Train Loss: 0.025199664549224756, Val Loss: 0.02821684820023743 +2024-07-19 14:18:39.429 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 30/50, Train Loss: 0.025476913154125213, Val Loss: 0.026161422953009605 +2024-07-19 14:18:39.999 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 31/50, Train Loss: 0.02519607068547471, Val Loss: 0.027802651622206777 +2024-07-19 14:18:40.572 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 32/50, Train Loss: 0.02477704485116357, Val Loss: 0.025003314848888566 +2024-07-19 14:18:41.144 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 33/50, Train Loss: 0.02504693390801549, Val Loss: 0.026095457425391353 +2024-07-19 14:18:41.686 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 34/50, Train Loss: 0.024968558008020576, Val Loss: 0.025491037431198196 +2024-07-19 14:18:42.204 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 35/50, Train Loss: 0.02503654120743952, Val Loss: 0.02753047355626886 +2024-07-19 14:18:42.744 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 36/50, Train Loss: 0.024837488063018432, Val Loss: 0.025830480496625643 +2024-07-19 14:18:43.315 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 37/50, Train Loss: 0.024710719702257352, Val Loss: 0.02680121150773925 +2024-07-19 14:18:43.868 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 38/50, Train Loss: 0.024909322183917868, Val Loss: 0.025688319592862517 +2024-07-19 14:18:44.439 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 39/50, Train Loss: 0.024676112589341673, Val Loss: 0.02553668197848507 +2024-07-19 14:18:44.985 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 40/50, Train Loss: 0.02495007046329027, Val Loss: 0.024042897656358576 +2024-07-19 14:18:45.506 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 41/50, Train Loss: 0.024787023714320226, Val Loss: 0.024837256132348162 +2024-07-19 14:18:46.033 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 42/50, Train Loss: 0.02475914050062949, Val Loss: 0.02563383722224751 +2024-07-19 14:18:46.559 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 43/50, Train Loss: 0.025153806124051863, Val Loss: 0.027227409712567523 +2024-07-19 14:18:47.087 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 44/50, Train Loss: 0.024108262275430288, Val Loss: 0.026355074894790713 +2024-07-19 14:18:47.622 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 45/50, Train Loss: 0.024389088259671222, Val Loss: 0.025018165064220492 +2024-07-19 14:18:48.187 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 46/50, Train Loss: 0.02406123664907434, Val Loss: 0.025835181359906454 +2024-07-19 14:18:48.743 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 47/50, Train Loss: 0.024596373999322, Val Loss: 0.02451009109515596 +2024-07-19 14:18:49.264 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 48/50, Train Loss: 0.02411365166560493, Val Loss: 0.024518747511949088 +2024-07-19 14:18:49.789 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 49/50, Train Loss: 0.0245200166224756, Val Loss: 0.025300944223999977 +2024-07-19 14:18:50.316 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 50/50, Train Loss: 0.024060493932020935, Val Loss: 0.024334238011490653 +2024-07-19 14:18:50.316 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Fold 2, MAPE: 6.89% +2024-07-19 14:18:50.426 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Training image saved at metaflow_models//bgd_office_200001_500000_LSTM//train_f2_bgd_office_200001_500000_LSTM.png +2024-07-19 14:18:51.104 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 1/50, Train Loss: 0.023761683618905, Val Loss: 0.020353224015215766 +2024-07-19 14:18:51.784 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 2/50, Train Loss: 0.024048549397402023, Val Loss: 0.019672950553531583 +2024-07-19 14:18:52.457 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 3/50, Train Loss: 0.023987157321343683, Val Loss: 0.019948233825129433 +2024-07-19 14:18:53.173 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 4/50, Train Loss: 0.02374100453883716, Val Loss: 0.019675150501063547 +2024-07-19 14:18:53.910 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 5/50, Train Loss: 0.023947153572146208, Val Loss: 0.019654307703210694 +2024-07-19 14:18:54.595 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 6/50, Train Loss: 0.023686065925412798, Val Loss: 0.01983023273783761 +2024-07-19 14:18:55.280 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 7/50, Train Loss: 0.023600264643765474, Val Loss: 0.019333629654972134 +2024-07-19 14:18:55.968 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 8/50, Train Loss: 0.023411812844418296, Val Loss: 0.01919047481606941 +2024-07-19 14:18:56.712 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 9/50, Train Loss: 0.023310159862500755, Val Loss: 0.01938264097741528 +2024-07-19 14:18:57.447 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 10/50, Train Loss: 0.023354554880563528, Val Loss: 0.019806999990062135 +2024-07-19 14:18:58.174 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 11/50, Train Loss: 0.02324361616924201, Val Loss: 0.019136279387198186 +2024-07-19 14:18:58.879 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 12/50, Train Loss: 0.02349641258917647, Val Loss: 0.01880644994309625 +2024-07-19 14:18:59.590 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 13/50, Train Loss: 0.023054544207933424, Val Loss: 0.019483086212563352 +2024-07-19 14:19:00.343 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 14/50, Train Loss: 0.023218782924830098, Val Loss: 0.019785369784143324 +2024-07-19 14:19:01.062 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 15/50, Train Loss: 0.02327230552606897, Val Loss: 0.019466301407413306 +2024-07-19 14:19:01.781 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 16/50, Train Loss: 0.023344384975195545, Val Loss: 0.01905415078146836 +2024-07-19 14:19:02.504 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 17/50, Train Loss: 0.02339744616350899, Val Loss: 0.019182931921268638 +2024-07-19 14:19:03.224 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 18/50, Train Loss: 0.022927067433930422, Val Loss: 0.019114655392194115 +2024-07-19 14:19:03.975 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 19/50, Train Loss: 0.023549885862213495, Val Loss: 0.01977354274886484 +2024-07-19 14:19:04.684 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 20/50, Train Loss: 0.022827080757140298, Val Loss: 0.019578613454123605 +2024-07-19 14:19:05.399 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 21/50, Train Loss: 0.022903527378755277, Val Loss: 0.019705197698361165 +2024-07-19 14:19:06.111 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 22/50, Train Loss: 0.02337277938981783, Val Loss: 0.020212310171258206 +2024-07-19 14:19:06.845 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 23/50, Train Loss: 0.023007697368372385, Val Loss: 0.020018939470016473 +2024-07-19 14:19:07.536 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 24/50, Train Loss: 0.022806456532609994, Val Loss: 0.01924021656599802 +2024-07-19 14:19:08.221 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 25/50, Train Loss: 0.02327952082332683, Val Loss: 0.020123171267678607 +2024-07-19 14:19:08.916 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 26/50, Train Loss: 0.023075208635618016, Val Loss: 0.01971338389793763 +2024-07-19 14:19:09.606 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 27/50, Train Loss: 0.02293081036513697, Val Loss: 0.019549878679115226 +2024-07-19 14:19:10.345 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 28/50, Train Loss: 0.022900777109834836, Val Loss: 0.02045260411309632 +2024-07-19 14:19:11.063 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 29/50, Train Loss: 0.022899298472585133, Val Loss: 0.020117253744723024 +2024-07-19 14:19:11.786 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 30/50, Train Loss: 0.022864797273778343, Val Loss: 0.01937931142999111 +2024-07-19 14:19:12.523 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 31/50, Train Loss: 0.022839188952101012, Val Loss: 0.01926577799777324 +2024-07-19 14:19:13.255 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 32/50, Train Loss: 0.0230145132207401, Val Loss: 0.018693721639244137 +2024-07-19 14:19:13.968 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 33/50, Train Loss: 0.022541900516219744, Val Loss: 0.01876790023635368 +2024-07-19 14:19:14.677 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 34/50, Train Loss: 0.022476908578601195, Val Loss: 0.018885986489319318 +2024-07-19 14:19:15.376 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 35/50, Train Loss: 0.022934169387317276, Val Loss: 0.019087406403913692 +2024-07-19 14:19:16.104 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 36/50, Train Loss: 0.022775279979974236, Val Loss: 0.019147804623620736 +2024-07-19 14:19:16.834 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 37/50, Train Loss: 0.022457697014133, Val Loss: 0.01971465097488584 +2024-07-19 14:19:17.567 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 38/50, Train Loss: 0.022723959388900292, Val Loss: 0.01935567971746865 +2024-07-19 14:19:18.291 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 39/50, Train Loss: 0.022740294978226702, Val Loss: 0.0196790624208547 +2024-07-19 14:19:18.995 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 40/50, Train Loss: 0.022654213457789323, Val Loss: 0.018974916178833793 +2024-07-19 14:19:19.714 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 41/50, Train Loss: 0.022608732020048653, Val Loss: 0.019057436355364485 +2024-07-19 14:19:20.451 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 42/50, Train Loss: 0.022390873684892305, Val Loss: 0.01949104216151141 +2024-07-19 14:19:21.171 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 43/50, Train Loss: 0.02242031529520268, Val Loss: 0.019414012446194083 +2024-07-19 14:19:21.903 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 44/50, Train Loss: 0.02249725104934753, Val Loss: 0.01919838326756616 +2024-07-19 14:19:22.633 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 45/50, Train Loss: 0.022774025619234126, Val Loss: 0.019311863262004948 +2024-07-19 14:19:23.368 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 46/50, Train Loss: 0.022489981307992585, Val Loss: 0.0198085169005837 +2024-07-19 14:19:24.084 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 47/50, Train Loss: 0.022287729330207794, Val Loss: 0.019125572884002247 +2024-07-19 14:19:24.796 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 48/50, Train Loss: 0.02244955956400053, Val Loss: 0.01961213113689745 +2024-07-19 14:19:25.511 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 49/50, Train Loss: 0.022686825140239033, Val Loss: 0.01881609482036249 +2024-07-19 14:19:26.226 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 50/50, Train Loss: 0.022523691341893314, Val Loss: 0.018737275776377803 +2024-07-19 14:19:26.226 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Fold 3, MAPE: 5.54% +2024-07-19 14:19:26.333 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Training image saved at metaflow_models//bgd_office_200001_500000_LSTM//train_f3_bgd_office_200001_500000_LSTM.png +2024-07-19 14:19:27.228 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 1/50, Train Loss: 0.020966291228043183, Val Loss: 0.017292196786886937 +2024-07-19 14:19:28.112 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 2/50, Train Loss: 0.020868138225933353, Val Loss: 0.018236180125559505 +2024-07-19 14:19:29.047 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 3/50, Train Loss: 0.02128679237768545, Val Loss: 0.01804117438056179 +2024-07-19 14:19:30.022 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 4/50, Train Loss: 0.021138251475109667, Val Loss: 0.01776564633473754 +2024-07-19 14:19:30.872 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 5/50, Train Loss: 0.021304377086030748, Val Loss: 0.01721894782590302 +2024-07-19 14:19:31.709 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 6/50, Train Loss: 0.02077099058654282, Val Loss: 0.017201104528597883 +2024-07-19 14:19:32.543 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 7/50, Train Loss: 0.021494537471681015, Val Loss: 0.017723489766688767 +2024-07-19 14:19:33.371 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 8/50, Train Loss: 0.02079493064525445, Val Loss: 0.01801640761865152 +2024-07-19 14:19:34.269 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 9/50, Train Loss: 0.020693872251885605, Val Loss: 0.017301008621281064 +2024-07-19 14:19:35.137 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 10/50, Train Loss: 0.02102246364466027, Val Loss: 0.018616876199942182 +2024-07-19 14:19:35.978 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 11/50, Train Loss: 0.02086511873998321, Val Loss: 0.017455621836455288 +2024-07-19 14:19:36.859 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 12/50, Train Loss: 0.0207808430813212, Val Loss: 0.01828377535314979 +2024-07-19 14:19:37.762 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 13/50, Train Loss: 0.02069950348871586, Val Loss: 0.017546289877311605 +2024-07-19 14:19:38.655 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 14/50, Train Loss: 0.020848731512899746, Val Loss: 0.01731279379109273 +2024-07-19 14:19:39.558 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 15/50, Train Loss: 0.020665603178133676, Val Loss: 0.01729828426362695 +2024-07-19 14:19:40.476 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 16/50, Train Loss: 0.020603618431058558, Val Loss: 0.01902280664826567 +2024-07-19 14:19:41.366 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 17/50, Train Loss: 0.020956627425870726, Val Loss: 0.016859024486227614 +2024-07-19 14:19:42.250 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 18/50, Train Loss: 0.02058450277168099, Val Loss: 0.016655177532418353 +2024-07-19 14:19:43.275 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 19/50, Train Loss: 0.020454870383408697, Val Loss: 0.017157300488670934 +2024-07-19 14:19:44.176 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 20/50, Train Loss: 0.020266917738858817, Val Loss: 0.018528546080798715 +2024-07-19 14:19:45.052 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 21/50, Train Loss: 0.020360741234681273, Val Loss: 0.017622210085392 +2024-07-19 14:19:45.976 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 22/50, Train Loss: 0.020173290519268958, Val Loss: 0.017194635662678127 +2024-07-19 14:19:46.884 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 23/50, Train Loss: 0.020975842672799314, Val Loss: 0.017280656869548397 +2024-07-19 14:19:47.787 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 24/50, Train Loss: 0.020519256776014527, Val Loss: 0.017918127689611266 +2024-07-19 14:19:48.690 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 25/50, Train Loss: 0.02029465268632131, Val Loss: 0.017155095846769778 +2024-07-19 14:19:49.536 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 26/50, Train Loss: 0.02027841692196799, Val Loss: 0.0168646820191596 +2024-07-19 14:19:50.380 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 27/50, Train Loss: 0.020480851491831324, Val Loss: 0.016776867789795268 +2024-07-19 14:19:51.211 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 28/50, Train Loss: 0.02021278078913443, Val Loss: 0.01903555469235053 +2024-07-19 14:19:52.074 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 29/50, Train Loss: 0.020572450060581605, Val Loss: 0.017996865802922764 +2024-07-19 14:19:52.965 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 30/50, Train Loss: 0.01993675406633334, Val Loss: 0.01834861805813538 +2024-07-19 14:19:53.879 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 31/50, Train Loss: 0.020267705540530957, Val Loss: 0.01859995352758749 +2024-07-19 14:19:54.755 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 32/50, Train Loss: 0.020269143407918758, Val Loss: 0.018324867973255145 +2024-07-19 14:19:55.638 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 33/50, Train Loss: 0.020317000336945057, Val Loss: 0.018424512742943055 +2024-07-19 14:19:56.550 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 34/50, Train Loss: 0.02025487749571247, Val Loss: 0.01855045838935955 +2024-07-19 14:19:57.456 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 35/50, Train Loss: 0.019815392004182704, Val Loss: 0.018690798028900817 +2024-07-19 14:19:58.335 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 36/50, Train Loss: 0.019913956957899933, Val Loss: 0.018017886911292334 +2024-07-19 14:19:59.178 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 37/50, Train Loss: 0.019866467980606543, Val Loss: 0.018686320280303825 +2024-07-19 14:20:00.054 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 38/50, Train Loss: 0.01999924093699799, Val Loss: 0.019134095215515512 +2024-07-19 14:20:00.971 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 39/50, Train Loss: 0.020102694083087066, Val Loss: 0.017489750844401283 +2024-07-19 14:20:01.877 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 40/50, Train Loss: 0.01973894839226217, Val Loss: 0.017136227616385835 +2024-07-19 14:20:02.786 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 41/50, Train Loss: 0.019801566712455927, Val Loss: 0.0176036049284645 +2024-07-19 14:20:03.682 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 42/50, Train Loss: 0.019708771366052903, Val Loss: 0.017721634056117083 +2024-07-19 14:20:04.563 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 43/50, Train Loss: 0.019653054389202004, Val Loss: 0.017290880903601646 +2024-07-19 14:20:05.445 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 44/50, Train Loss: 0.01984641259628256, Val Loss: 0.018505897624669847 +2024-07-19 14:20:06.344 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 45/50, Train Loss: 0.019901092228182888, Val Loss: 0.01831401129429405 +2024-07-19 14:20:07.232 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 46/50, Train Loss: 0.019925251592892212, Val Loss: 0.01728154791871438 +2024-07-19 14:20:08.132 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 47/50, Train Loss: 0.01974717081667712, Val Loss: 0.017958771261210378 +2024-07-19 14:20:09.057 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 48/50, Train Loss: 0.019702622800001075, Val Loss: 0.017471337816803843 +2024-07-19 14:20:09.951 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 49/50, Train Loss: 0.01961183455608949, Val Loss: 0.018254837826699823 +2024-07-19 14:20:10.830 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Epoch 50/50, Train Loss: 0.019621882157830093, Val Loss: 0.017316731624305248 +2024-07-19 14:20:10.830 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Fold 4, MAPE: 4.77% +2024-07-19 14:20:10.941 [5/cross_validate_train/33 (pid 97530)] INFO:__main__:Training image saved at metaflow_models//bgd_office_200001_500000_LSTM//train_f4_bgd_office_200001_500000_LSTM.png +2024-07-19 14:20:15.055 [5/cross_validate_train/33 (pid 97530)] Task finished successfully. +2024-07-19 14:20:15.087 [5/model_scores/34 (pid 98140)] Task is starting. +2024-07-19 14:20:16.562 [5/model_scores/34 (pid 98140)] INFO:__main__:Average Train Loss across all folds: 0.026534838792485575 +2024-07-19 14:20:20.423 [5/model_scores/34 (pid 98140)] INFO:__main__:Average Validation Loss across all folds: 0.02312021001896544 +2024-07-19 14:20:20.424 [5/model_scores/34 (pid 98140)] INFO:__main__:Average MAPE across all folds: 5.40% +2024-07-19 14:20:20.424 [5/model_scores/34 (pid 98140)] Task finished successfully. +2024-07-19 14:20:20.452 [5/validate_model/35 (pid 98179)] Task is starting. +2024-07-19 14:20:21.899 [5/validate_model/35 (pid 98179)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:20:21.998 [5/validate_model/35 (pid 98179)] INFO:__main__:Test Set MAPE: 5.68% +2024-07-19 14:20:22.377 [5/validate_model/35 (pid 98179)] INFO:__main__:Test image saved at metaflow_models//bgd_office_200001_500000_LSTM//test_bgd_office_200001_500000_LSTM.png +2024-07-19 14:20:22.801 [5/validate_model/35 (pid 98179)] Task finished successfully. +2024-07-19 14:20:22.833 [5/log_model/36 (pid 98196)] Task is starting. +2024-07-19 14:20:24.318 [5/log_model/36 (pid 98196)] INFO:__main__:Logging model bgd_office_200001_500000_LSTM +2024-07-19 14:20:24.319 [5/log_model/36 (pid 98196)] INFO:__main__:Model logged at metaflow_models//bgd_office_200001_500000_LSTM//bgd_office_200001_500000_LSTM.pth +2024-07-19 14:20:28.213 [5/log_model/36 (pid 98196)] Task finished successfully. +2024-07-19 14:20:28.244 [5/end/37 (pid 98228)] Task is starting. +2024-07-19 14:20:29.743 [5/end/37 (pid 98228)] INFO:__main__:Pipeline end. +2024-07-19 14:20:30.066 [5/end/37 (pid 98228)] Task finished successfully. +2024-07-19 14:20:30.067 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/scaler_bgd_office_200001_500000_LSTM.pkl b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/scaler_bgd_office_200001_500000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..72365ce56dbbe79ca9936a8bc5d61ecf91db3e9f --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/scaler_bgd_office_200001_500000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3305430ecabc9cb62e3aa059ed712abef0e52929ff9fbc9bb3c9eda6db5b7fa3 +size 557 diff --git a/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/test_bgd_office_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/test_bgd_office_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..76fb5ebe111d06fb668a4e04f2fd58a64e5ec9ec Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/test_bgd_office_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f0_bgd_office_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f0_bgd_office_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..b967797c67df0c51c615da8b9ab3ef7ce6d1c3fb Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f0_bgd_office_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f1_bgd_office_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f1_bgd_office_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..7d697ba837636e5d984ef251a43b051a371f23df Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f1_bgd_office_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f2_bgd_office_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f2_bgd_office_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..eed2ea82a52bec4fbb5d3f33dd02a447fa11b166 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f2_bgd_office_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f3_bgd_office_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f3_bgd_office_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..635f20c28b1df6ab0800250ea6bf1a7e853032a8 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f3_bgd_office_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f4_bgd_office_200001_500000_LSTM.png b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f4_bgd_office_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..674d0b51e59f43d64ff2a449a74a1f724e0d34c6 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_200001_500000_LSTM/train_f4_bgd_office_200001_500000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/bgd_office_25001_50000_LSTM.pth b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/bgd_office_25001_50000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..919fb2afc4950e5e59fa7dfd0f74010956792c98 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/bgd_office_25001_50000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6069e6e87af84db79da16a665d91f09dcab3663cbb00cef24792b96f335af204 +size 46736 diff --git a/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/output.txt b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..307c302d34ee6b523ce8630b3884b87c921cdc6e --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/output.txt @@ -0,0 +1,744 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:29:49.428 Workflow starting (run-id 9): +2024-07-19 14:29:49.526 [9/start/81 (pid 1362)] Task is starting. +2024-07-19 14:29:51.158 [9/start/81 (pid 1362)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:29:51.472 [9/start/81 (pid 1362)] Task finished successfully. +2024-07-19 14:29:51.505 [9/ingest/82 (pid 1379)] Task is starting. +2024-07-19 14:29:53.082 [9/ingest/82 (pid 1379)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:29:53.100 [9/ingest/82 (pid 1379)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:29:57.008 [9/ingest/82 (pid 1379)] Task finished successfully. +2024-07-19 14:29:57.041 [9/pick_2017_data/83 (pid 1416)] Task is starting. +2024-07-19 14:29:58.509 [9/pick_2017_data/83 (pid 1416)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:29:58.838 [9/pick_2017_data/83 (pid 1416)] Task finished successfully. +2024-07-19 14:29:58.867 [9/fill_missing_data/84 (pid 1430)] Task is starting. +2024-07-19 14:30:00.364 [9/fill_missing_data/84 (pid 1430)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:30:00.371 [9/fill_missing_data/84 (pid 1430)] INFO:__main__:NaN counts per column: +2024-07-19 14:30:00.371 [9/fill_missing_data/84 (pid 1430)] INFO:__main__:Panther_office_Catherine 12 +2024-07-19 14:30:00.371 [9/fill_missing_data/84 (pid 1430)] Panther_office_Lauretta 11 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Panther_office_Karla 11 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Panther_office_Ruthie 10 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Panther_office_Shauna 12 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Panther_office_Clementine 10 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Robin_office_Serena 0 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Fox_office_Brandy 2 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Rat_office_Loyd 26 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] dtype: int64 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] --- Logging error --- +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Traceback (most recent call last): +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] msg = self.format(record) +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] return fmt.format(record) +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] record.message = record.getMessage() +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] msg = msg % self.args +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] TypeError: not all arguments converted during string formatting +2024-07-19 14:30:00.374 [9/fill_missing_data/84 (pid 1430)] Call stack: +2024-07-19 14:30:00.374 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] BGD_LinearFlow() +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] cli.main(self) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] return func(*args, **kwargs) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] return self.main(*args, **kwargs) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] rv = self.invoke(ctx) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] return callback(*args, **kwargs) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] task.run_step( +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] self._exec_step_function(step_func) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:30:00.786 [9/fill_missing_data/84 (pid 1430)] step_function() +2024-07-19 14:30:00.786 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:30:00.786 [9/fill_missing_data/84 (pid 1430)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:30:00.786 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:30:00.786 [9/fill_missing_data/84 (pid 1430)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:30:00.786 [9/fill_missing_data/84 (pid 1430)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:30:00.786 [9/fill_missing_data/84 (pid 1430)] Arguments: (94,) +2024-07-19 14:30:00.787 [9/fill_missing_data/84 (pid 1430)] Task finished successfully. +2024-07-19 14:30:00.818 [9/find_median/85 (pid 1447)] Task is starting. +2024-07-19 14:30:02.307 [9/find_median/85 (pid 1447)] INFO:__main__:Computing and using median.. +2024-07-19 14:30:02.841 [9/find_median/85 (pid 1447)] Task finished successfully. +2024-07-19 14:30:02.871 [9/aggregate_data/86 (pid 1458)] Task is starting. +2024-07-19 14:30:04.349 [9/aggregate_data/86 (pid 1458)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:30:08.247 [9/aggregate_data/86 (pid 1458)] Task finished successfully. +2024-07-19 14:30:08.278 [9/split_data/87 (pid 1491)] Task is starting. +2024-07-19 14:30:09.750 [9/split_data/87 (pid 1491)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:30:13.665 [9/split_data/87 (pid 1491)] Task finished successfully. +2024-07-19 14:30:13.696 [9/make_x_y/88 (pid 1528)] Task is starting. +2024-07-19 14:30:15.548 [9/make_x_y/88 (pid 1528)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:30:15.873 [9/make_x_y/88 (pid 1528)] Shape of y_train: (6978, 1) +2024-07-19 14:30:15.873 [9/make_x_y/88 (pid 1528)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:30:15.873 [9/make_x_y/88 (pid 1528)] Shape of y_test: (1722, 1) +2024-07-19 14:30:15.874 [9/make_x_y/88 (pid 1528)] Task finished successfully. +2024-07-19 14:30:15.908 [9/cross_validate_train/89 (pid 1545)] Task is starting. +2024-07-19 14:30:17.362 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Creating bgd_office_25001_50000_LSTM +2024-07-19 14:30:17.362 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Performing cross validation.. +2024-07-19 14:30:18.126 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 1/50, Train Loss: 0.2411043080123695, Val Loss: 0.1982934225249935 +2024-07-19 14:30:18.326 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 2/50, Train Loss: 0.1666804523886861, Val Loss: 0.18666537005353617 +2024-07-19 14:30:18.528 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 3/50, Train Loss: 0.15279356923860474, Val Loss: 0.16832918895257487 +2024-07-19 14:30:18.734 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 4/50, Train Loss: 0.13939391751144384, Val Loss: 0.14460659248603358 +2024-07-19 14:30:18.935 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 5/50, Train Loss: 0.11544256949344196, Val Loss: 0.10731746497991923 +2024-07-19 14:30:19.141 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 6/50, Train Loss: 0.09192138155167168, Val Loss: 0.0901704443668997 +2024-07-19 14:30:19.345 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 7/50, Train Loss: 0.08091556321124772, Val Loss: 0.08525304667450287 +2024-07-19 14:30:19.551 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 8/50, Train Loss: 0.07427322552413554, Val Loss: 0.08013206065909283 +2024-07-19 14:30:19.757 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 9/50, Train Loss: 0.07061284347563176, Val Loss: 0.07556573895586503 +2024-07-19 14:30:19.962 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 10/50, Train Loss: 0.0688692494421392, Val Loss: 0.07235620251378498 +2024-07-19 14:30:20.173 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 11/50, Train Loss: 0.06695490788567711, Val Loss: 0.06988507423650574 +2024-07-19 14:30:20.377 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 12/50, Train Loss: 0.06513680165281167, Val Loss: 0.06774293258786201 +2024-07-19 14:30:20.591 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 13/50, Train Loss: 0.06361012336974209, Val Loss: 0.06566662356458805 +2024-07-19 14:30:20.801 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 14/50, Train Loss: 0.06179614843347588, Val Loss: 0.06396382070473723 +2024-07-19 14:30:21.051 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 15/50, Train Loss: 0.05984314787830856, Val Loss: 0.06222653207746712 +2024-07-19 14:30:21.257 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 16/50, Train Loss: 0.059436092807634455, Val Loss: 0.060037479861765296 +2024-07-19 14:30:21.460 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 17/50, Train Loss: 0.05794590258517781, Val Loss: 0.05843482629672901 +2024-07-19 14:30:21.663 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 18/50, Train Loss: 0.05465928263760902, Val Loss: 0.05494578112218831 +2024-07-19 14:30:21.869 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 19/50, Train Loss: 0.05101071564933738, Val Loss: 0.053321883787174486 +2024-07-19 14:30:22.077 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 20/50, Train Loss: 0.04999477990173005, Val Loss: 0.05400671064853668 +2024-07-19 14:30:22.297 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 21/50, Train Loss: 0.048661521359069926, Val Loss: 0.05170492415089865 +2024-07-19 14:30:22.517 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 22/50, Train Loss: 0.04864632459105672, Val Loss: 0.05071148870361818 +2024-07-19 14:30:22.738 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 23/50, Train Loss: 0.04835465409465738, Val Loss: 0.051567943917738425 +2024-07-19 14:30:22.959 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 24/50, Train Loss: 0.04860036523156875, Val Loss: 0.05030358758931224 +2024-07-19 14:30:23.178 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 25/50, Train Loss: 0.04670011649864751, Val Loss: 0.04990712548228535 +2024-07-19 14:30:23.398 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 26/50, Train Loss: 0.04680141288082342, Val Loss: 0.05050339242695151 +2024-07-19 14:30:23.621 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 27/50, Train Loss: 0.04660548838610585, Val Loss: 0.049618581611965154 +2024-07-19 14:30:23.844 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 28/50, Train Loss: 0.04637764097266906, Val Loss: 0.04959781920990428 +2024-07-19 14:30:24.060 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 29/50, Train Loss: 0.04658608908790189, Val Loss: 0.04872501998938419 +2024-07-19 14:30:24.276 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 30/50, Train Loss: 0.045892284478287436, Val Loss: 0.04951654470248802 +2024-07-19 14:30:24.490 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 31/50, Train Loss: 0.04614292306674493, Val Loss: 0.04886094621709875 +2024-07-19 14:30:24.714 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 32/50, Train Loss: 0.045617587109272544, Val Loss: 0.04877983587416443 +2024-07-19 14:30:24.931 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 33/50, Train Loss: 0.04614818216981115, Val Loss: 0.0483912785311003 +2024-07-19 14:30:25.155 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 34/50, Train Loss: 0.04559002288088605, Val Loss: 0.049119755978117116 +2024-07-19 14:30:25.372 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 35/50, Train Loss: 0.046544026281382586, Val Loss: 0.0486609128278655 +2024-07-19 14:30:25.596 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 36/50, Train Loss: 0.045880976158219414, Val Loss: 0.047703858666323325 +2024-07-19 14:30:25.816 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 37/50, Train Loss: 0.0452447118791374, Val Loss: 0.049222526367048956 +2024-07-19 14:30:26.037 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 38/50, Train Loss: 0.04656435111285867, Val Loss: 0.04751381222662088 +2024-07-19 14:30:26.259 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 39/50, Train Loss: 0.04469429706600872, Val Loss: 0.048495627033549385 +2024-07-19 14:30:26.502 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 40/50, Train Loss: 0.04528278500043057, Val Loss: 0.04757828124471613 +2024-07-19 14:30:26.727 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 41/50, Train Loss: 0.044906614096583544, Val Loss: 0.04942371741541334 +2024-07-19 14:30:26.948 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 42/50, Train Loss: 0.0454907528049237, Val Loss: 0.04745729458895889 +2024-07-19 14:30:27.164 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 43/50, Train Loss: 0.04520673747803714, Val Loss: 0.05000676224763329 +2024-07-19 14:30:27.383 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 44/50, Train Loss: 0.045674172506944555, Val Loss: 0.04735002973796548 +2024-07-19 14:30:27.601 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 45/50, Train Loss: 0.044768547085491384, Val Loss: 0.047680532559752464 +2024-07-19 14:30:27.819 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 46/50, Train Loss: 0.04538480247798804, Val Loss: 0.04688265647839855 +2024-07-19 14:30:28.047 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 47/50, Train Loss: 0.044974268590276305, Val Loss: 0.04708538692746613 +2024-07-19 14:30:28.269 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 48/50, Train Loss: 0.04467426723725087, Val Loss: 0.04749933564783754 +2024-07-19 14:30:28.498 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 49/50, Train Loss: 0.044526354434925156, Val Loss: 0.04712350288959774 +2024-07-19 14:30:28.724 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 50/50, Train Loss: 0.045267038953465386, Val Loss: 0.047576551854207706 +2024-07-19 14:30:28.724 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Fold 0, MAPE: 5.72% +2024-07-19 14:30:29.129 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Training image saved at metaflow_models//bgd_office_25001_50000_LSTM//train_f0_bgd_office_25001_50000_LSTM.png +2024-07-19 14:30:29.576 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 1/50, Train Loss: 0.0375898380904165, Val Loss: 0.042766962401770255 +2024-07-19 14:30:29.952 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 2/50, Train Loss: 0.03625356176332252, Val Loss: 0.04179070300951197 +2024-07-19 14:30:30.348 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 3/50, Train Loss: 0.03623522116407139, Val Loss: 0.041475318926008975 +2024-07-19 14:30:30.804 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 4/50, Train Loss: 0.0361577654640152, Val Loss: 0.040980807832769445 +2024-07-19 14:30:31.185 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 5/50, Train Loss: 0.03584209224847082, Val Loss: 0.04095432580121466 +2024-07-19 14:30:31.565 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 6/50, Train Loss: 0.03601062180448885, Val Loss: 0.04097502890068132 +2024-07-19 14:30:31.945 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 7/50, Train Loss: 0.036045723684030036, Val Loss: 0.04073104086155827 +2024-07-19 14:30:32.318 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 8/50, Train Loss: 0.03590443676771366, Val Loss: 0.040308336551124986 +2024-07-19 14:30:32.717 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 9/50, Train Loss: 0.035897055589785315, Val Loss: 0.04043162946362753 +2024-07-19 14:30:33.094 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 10/50, Train Loss: 0.03561624897363251, Val Loss: 0.04042375193455735 +2024-07-19 14:30:33.484 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 11/50, Train Loss: 0.03602133563732448, Val Loss: 0.040042563618437665 +2024-07-19 14:30:33.861 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 12/50, Train Loss: 0.03640883724677236, Val Loss: 0.04071635345148074 +2024-07-19 14:30:34.240 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 13/50, Train Loss: 0.03615685562564902, Val Loss: 0.04039505713090703 +2024-07-19 14:30:34.615 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 14/50, Train Loss: 0.03613462316969486, Val Loss: 0.04090555422511455 +2024-07-19 14:30:34.993 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 15/50, Train Loss: 0.036308887325329324, Val Loss: 0.041004603728652 +2024-07-19 14:30:35.366 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 16/50, Train Loss: 0.03586862894566092, Val Loss: 0.040500363234329866 +2024-07-19 14:30:35.743 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 17/50, Train Loss: 0.036019826665112414, Val Loss: 0.04178046792544223 +2024-07-19 14:30:36.128 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 18/50, Train Loss: 0.036088225852749116, Val Loss: 0.041523266659193744 +2024-07-19 14:30:36.499 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 19/50, Train Loss: 0.035634723300599074, Val Loss: 0.04099634000276391 +2024-07-19 14:30:36.875 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 20/50, Train Loss: 0.03553904177085178, Val Loss: 0.04099792851185476 +2024-07-19 14:30:37.251 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 21/50, Train Loss: 0.03534293488586602, Val Loss: 0.04199756369800181 +2024-07-19 14:30:37.634 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 22/50, Train Loss: 0.03578042858981923, Val Loss: 0.040888524538761864 +2024-07-19 14:30:38.012 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 23/50, Train Loss: 0.03546477889973823, Val Loss: 0.04148408289797403 +2024-07-19 14:30:38.392 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 24/50, Train Loss: 0.03571294368027824, Val Loss: 0.041224262224057236 +2024-07-19 14:30:38.771 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 25/50, Train Loss: 0.03556226229626838, Val Loss: 0.041434538777212836 +2024-07-19 14:30:39.154 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 26/50, Train Loss: 0.03548461265147549, Val Loss: 0.041043698032562796 +2024-07-19 14:30:39.531 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 27/50, Train Loss: 0.035430273551442855, Val Loss: 0.04186810799748511 +2024-07-19 14:30:39.914 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 28/50, Train Loss: 0.035319432947937754, Val Loss: 0.04139260298295601 +2024-07-19 14:30:40.301 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 29/50, Train Loss: 0.03524095858511043, Val Loss: 0.04148610724085892 +2024-07-19 14:30:40.696 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 30/50, Train Loss: 0.03522677956888937, Val Loss: 0.04145718260189971 +2024-07-19 14:30:41.058 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 31/50, Train Loss: 0.035276364790250175, Val Loss: 0.041759430405658646 +2024-07-19 14:30:41.425 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 32/50, Train Loss: 0.035147184480543006, Val Loss: 0.0412947896968674 +2024-07-19 14:30:41.801 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 33/50, Train Loss: 0.03519949597651011, Val Loss: 0.04173251905956784 +2024-07-19 14:30:42.175 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 34/50, Train Loss: 0.03540394531741534, Val Loss: 0.04152540953175442 +2024-07-19 14:30:42.557 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 35/50, Train Loss: 0.035311842541376204, Val Loss: 0.04085618564607324 +2024-07-19 14:30:42.944 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 36/50, Train Loss: 0.034974685780806085, Val Loss: 0.04159064175611412 +2024-07-19 14:30:43.325 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 37/50, Train Loss: 0.03527295431249762, Val Loss: 0.04089373961795826 +2024-07-19 14:30:43.703 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 38/50, Train Loss: 0.035132881891849925, Val Loss: 0.041594123467803 +2024-07-19 14:30:44.076 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 39/50, Train Loss: 0.03497271239757538, Val Loss: 0.041406259393772564 +2024-07-19 14:30:44.450 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 40/50, Train Loss: 0.03536598279766024, Val Loss: 0.041579856562453346 +2024-07-19 14:30:44.826 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 41/50, Train Loss: 0.035070266702199634, Val Loss: 0.04118102104277224 +2024-07-19 14:30:45.200 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 42/50, Train Loss: 0.034771697493652776, Val Loss: 0.04101797334245733 +2024-07-19 14:30:45.576 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 43/50, Train Loss: 0.03527654995759056, Val Loss: 0.04099809967384145 +2024-07-19 14:30:45.973 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 44/50, Train Loss: 0.03515337126916402, Val Loss: 0.041095702833420525 +2024-07-19 14:30:46.357 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 45/50, Train Loss: 0.03456655366677944, Val Loss: 0.041323633335933495 +2024-07-19 14:30:46.728 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 46/50, Train Loss: 0.035379162287875396, Val Loss: 0.041158848165257556 +2024-07-19 14:30:47.102 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 47/50, Train Loss: 0.034988973978651715, Val Loss: 0.04120030692098914 +2024-07-19 14:30:47.483 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 48/50, Train Loss: 0.03473727055506347, Val Loss: 0.04141009639243822 +2024-07-19 14:30:47.870 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 49/50, Train Loss: 0.03542868606746197, Val Loss: 0.041231530466796576 +2024-07-19 14:30:48.251 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 50/50, Train Loss: 0.03477797618977828, Val Loss: 0.041216474001270695 +2024-07-19 14:30:48.252 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Fold 1, MAPE: 6.71% +2024-07-19 14:30:48.362 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Training image saved at metaflow_models//bgd_office_25001_50000_LSTM//train_f1_bgd_office_25001_50000_LSTM.png +2024-07-19 14:30:48.928 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 1/50, Train Loss: 0.03596212699670683, Val Loss: 0.04915169737226254 +2024-07-19 14:30:49.467 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 2/50, Train Loss: 0.036658840474079954, Val Loss: 0.0489582917275461 +2024-07-19 14:30:50.018 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 3/50, Train Loss: 0.03596602075479247, Val Loss: 0.050737032717144165 +2024-07-19 14:30:50.532 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 4/50, Train Loss: 0.03675883913582022, Val Loss: 0.048938507264530334 +2024-07-19 14:30:51.065 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 5/50, Train Loss: 0.03616106972437013, Val Loss: 0.0491198820842279 +2024-07-19 14:30:51.575 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 6/50, Train Loss: 0.03591449110006744, Val Loss: 0.05111696309334523 +2024-07-19 14:30:52.082 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 7/50, Train Loss: 0.036048046397891914, Val Loss: 0.049237335151111755 +2024-07-19 14:30:52.596 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 8/50, Train Loss: 0.0360980077562007, Val Loss: 0.050906139501446 +2024-07-19 14:30:53.112 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 9/50, Train Loss: 0.03630266223441471, Val Loss: 0.048727128352667834 +2024-07-19 14:30:53.625 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 10/50, Train Loss: 0.03596617003733461, Val Loss: 0.049283782724995874 +2024-07-19 14:30:54.135 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 11/50, Train Loss: 0.03575265995142135, Val Loss: 0.0509831778503753 +2024-07-19 14:30:54.643 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 12/50, Train Loss: 0.03585810090669177, Val Loss: 0.04911706641920515 +2024-07-19 14:30:55.156 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 13/50, Train Loss: 0.035910891098054974, Val Loss: 0.05083998332957964 +2024-07-19 14:30:55.665 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 14/50, Train Loss: 0.03583277853375132, Val Loss: 0.049420576643299415 +2024-07-19 14:30:56.182 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 15/50, Train Loss: 0.03581767939031124, Val Loss: 0.05145013256854302 +2024-07-19 14:30:56.697 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 16/50, Train Loss: 0.035960990774699234, Val Loss: 0.04980041247767371 +2024-07-19 14:30:57.222 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 17/50, Train Loss: 0.036190798971801996, Val Loss: 0.049366624421767286 +2024-07-19 14:30:57.765 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 18/50, Train Loss: 0.035886613669043235, Val Loss: 0.0498221013191584 +2024-07-19 14:30:58.300 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 19/50, Train Loss: 0.03565007451583039, Val Loss: 0.049473103890950616 +2024-07-19 14:30:58.850 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 20/50, Train Loss: 0.03583005985922434, Val Loss: 0.050133345850013396 +2024-07-19 14:30:59.393 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 21/50, Train Loss: 0.035586104736748066, Val Loss: 0.04953660901535202 +2024-07-19 14:30:59.930 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 22/50, Train Loss: 0.03547329701991244, Val Loss: 0.05035234967599044 +2024-07-19 14:31:00.470 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 23/50, Train Loss: 0.03553993818773465, Val Loss: 0.049093108573878136 +2024-07-19 14:31:01.036 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 24/50, Train Loss: 0.035441017362543126, Val Loss: 0.049651115578976834 +2024-07-19 14:31:01.562 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 25/50, Train Loss: 0.03555330334400589, Val Loss: 0.049225902436552824 +2024-07-19 14:31:02.117 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 26/50, Train Loss: 0.035303377656435424, Val Loss: 0.04922402680322931 +2024-07-19 14:31:02.683 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 27/50, Train Loss: 0.03544001704589887, Val Loss: 0.0498025119304657 +2024-07-19 14:31:03.220 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 28/50, Train Loss: 0.03539737818593329, Val Loss: 0.049614563030568326 +2024-07-19 14:31:03.744 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 29/50, Train Loss: 0.0355251660909165, Val Loss: 0.0509173275550475 +2024-07-19 14:31:04.276 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 30/50, Train Loss: 0.03522000863132152, Val Loss: 0.04998770179982121 +2024-07-19 14:31:04.809 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 31/50, Train Loss: 0.03593574652278965, Val Loss: 0.05015983065036503 +2024-07-19 14:31:05.341 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 32/50, Train Loss: 0.03537278606302359, Val Loss: 0.04974857878846091 +2024-07-19 14:31:05.866 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 33/50, Train Loss: 0.0355815496973016, Val Loss: 0.04962015016054785 +2024-07-19 14:31:06.402 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 34/50, Train Loss: 0.03496508806605231, Val Loss: 0.0500763366250573 +2024-07-19 14:31:06.936 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 35/50, Train Loss: 0.035869935290379955, Val Loss: 0.04914127119086884 +2024-07-19 14:31:07.464 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 36/50, Train Loss: 0.0350075481290167, Val Loss: 0.04917960910982377 +2024-07-19 14:31:08.003 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 37/50, Train Loss: 0.03552915316752412, Val Loss: 0.049239800236112366 +2024-07-19 14:31:08.536 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 38/50, Train Loss: 0.03449945602227341, Val Loss: 0.049478746547892284 +2024-07-19 14:31:09.080 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 39/50, Train Loss: 0.03476712376895276, Val Loss: 0.04972002232396925 +2024-07-19 14:31:09.603 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 40/50, Train Loss: 0.03550278644331477, Val Loss: 0.05024611073974017 +2024-07-19 14:31:10.140 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 41/50, Train Loss: 0.03462627059356733, Val Loss: 0.04968121008494416 +2024-07-19 14:31:10.695 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 42/50, Train Loss: 0.03463746366853064, Val Loss: 0.050292073069392026 +2024-07-19 14:31:11.216 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 43/50, Train Loss: 0.03539477859369733, Val Loss: 0.04940112010651344 +2024-07-19 14:31:11.726 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 44/50, Train Loss: 0.03502592129463499, Val Loss: 0.049224302021635545 +2024-07-19 14:31:12.236 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 45/50, Train Loss: 0.034476058134301144, Val Loss: 0.04972339914859952 +2024-07-19 14:31:12.753 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 46/50, Train Loss: 0.03462292037226937, Val Loss: 0.04990174002139955 +2024-07-19 14:31:13.268 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 47/50, Train Loss: 0.03454759998077696, Val Loss: 0.049881968798266875 +2024-07-19 14:31:13.778 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 48/50, Train Loss: 0.03575593825768341, Val Loss: 0.04988888887738859 +2024-07-19 14:31:14.295 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 49/50, Train Loss: 0.03422727462073619, Val Loss: 0.049935190460166416 +2024-07-19 14:31:14.808 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 50/50, Train Loss: 0.034959769900888206, Val Loss: 0.04964777343981975 +2024-07-19 14:31:14.809 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Fold 2, MAPE: 7.53% +2024-07-19 14:31:14.915 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Training image saved at metaflow_models//bgd_office_25001_50000_LSTM//train_f2_bgd_office_25001_50000_LSTM.png +2024-07-19 14:31:15.581 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 1/50, Train Loss: 0.033804765838670404, Val Loss: 0.03821185498020133 +2024-07-19 14:31:16.286 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 2/50, Train Loss: 0.03409390427070121, Val Loss: 0.03812626608320185 +2024-07-19 14:31:16.978 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 3/50, Train Loss: 0.03378917218173203, Val Loss: 0.03788223228341824 +2024-07-19 14:31:17.668 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 4/50, Train Loss: 0.0337151448267882, Val Loss: 0.037303233418512986 +2024-07-19 14:31:18.365 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 5/50, Train Loss: 0.033651485611773925, Val Loss: 0.037772739859851634 +2024-07-19 14:31:19.075 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 6/50, Train Loss: 0.03378883272103251, Val Loss: 0.03875540962090363 +2024-07-19 14:31:19.770 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 7/50, Train Loss: 0.03369364445416691, Val Loss: 0.03827184524286438 +2024-07-19 14:31:20.492 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 8/50, Train Loss: 0.03379005170746209, Val Loss: 0.038356362766510735 +2024-07-19 14:31:21.223 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 9/50, Train Loss: 0.03370336075122022, Val Loss: 0.038013376597617124 +2024-07-19 14:31:21.920 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 10/50, Train Loss: 0.0336257294649641, Val Loss: 0.03829043429042842 +2024-07-19 14:31:22.604 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 11/50, Train Loss: 0.033758762254290385, Val Loss: 0.03861991154986459 +2024-07-19 14:31:23.309 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 12/50, Train Loss: 0.033864082806832986, Val Loss: 0.03867377627741646 +2024-07-19 14:31:23.989 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 13/50, Train Loss: 0.03382326780550488, Val Loss: 0.03921609955864984 +2024-07-19 14:31:24.689 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 14/50, Train Loss: 0.03396538019894737, Val Loss: 0.040194136568823376 +2024-07-19 14:31:25.378 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 15/50, Train Loss: 0.033939190285458956, Val Loss: 0.03943898347583977 +2024-07-19 14:31:26.068 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 16/50, Train Loss: 0.03398126065220735, Val Loss: 0.039744173654833355 +2024-07-19 14:31:26.785 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 17/50, Train Loss: 0.03391716849339539, Val Loss: 0.04075674551564294 +2024-07-19 14:31:27.474 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 18/50, Train Loss: 0.03396253477884074, Val Loss: 0.03980795193362881 +2024-07-19 14:31:28.180 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 19/50, Train Loss: 0.033888908792031956, Val Loss: 0.03955284299681316 +2024-07-19 14:31:28.866 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 20/50, Train Loss: 0.033708019749810025, Val Loss: 0.0390066452626441 +2024-07-19 14:31:29.545 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 21/50, Train Loss: 0.03355397213862775, Val Loss: 0.038118168459953486 +2024-07-19 14:31:30.248 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 22/50, Train Loss: 0.033720798018605336, Val Loss: 0.038870778387865505 +2024-07-19 14:31:30.953 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 23/50, Train Loss: 0.03356232096071113, Val Loss: 0.04029802741432512 +2024-07-19 14:31:31.646 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 24/50, Train Loss: 0.03373591073673882, Val Loss: 0.03947029282917847 +2024-07-19 14:31:32.343 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 25/50, Train Loss: 0.03357920893914487, Val Loss: 0.038841547243095735 +2024-07-19 14:31:33.052 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 26/50, Train Loss: 0.033548140337001785, Val Loss: 0.039679048683595015 +2024-07-19 14:31:33.762 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 27/50, Train Loss: 0.033782496767705436, Val Loss: 0.03879136758277545 +2024-07-19 14:31:34.452 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 28/50, Train Loss: 0.033544733093362554, Val Loss: 0.03990676153350521 +2024-07-19 14:31:35.144 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 29/50, Train Loss: 0.03386857081204653, Val Loss: 0.04006980394793523 +2024-07-19 14:31:35.840 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 30/50, Train Loss: 0.033660653506545984, Val Loss: 0.03993366245885153 +2024-07-19 14:31:36.534 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 31/50, Train Loss: 0.03361143409083151, Val Loss: 0.03910201390248698 +2024-07-19 14:31:37.224 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 32/50, Train Loss: 0.03377576895721563, Val Loss: 0.03949950776390127 +2024-07-19 14:31:37.928 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 33/50, Train Loss: 0.03355860013565789, Val Loss: 0.03927390846247609 +2024-07-19 14:31:38.636 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 34/50, Train Loss: 0.03353629434761936, Val Loss: 0.03892646830629658 +2024-07-19 14:31:39.335 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 35/50, Train Loss: 0.033507023568022744, Val Loss: 0.03902818000799901 +2024-07-19 14:31:40.028 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 36/50, Train Loss: 0.03360950703770943, Val Loss: 0.038201367633568274 +2024-07-19 14:31:40.754 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 37/50, Train Loss: 0.033303462485591434, Val Loss: 0.03758006905381744 +2024-07-19 14:31:41.458 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 38/50, Train Loss: 0.03345217111788384, Val Loss: 0.03884168522986206 +2024-07-19 14:31:42.144 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 39/50, Train Loss: 0.0335149966142051, Val Loss: 0.03993108501104084 +2024-07-19 14:31:42.839 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 40/50, Train Loss: 0.033698038453210705, Val Loss: 0.03912432763624836 +2024-07-19 14:31:43.539 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 41/50, Train Loss: 0.03339759603602021, Val Loss: 0.0384521815623786 +2024-07-19 14:31:44.222 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 42/50, Train Loss: 0.033533674575490495, Val Loss: 0.037907105593665225 +2024-07-19 14:31:44.915 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 43/50, Train Loss: 0.03321764904571927, Val Loss: 0.038173250602306544 +2024-07-19 14:31:45.605 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 44/50, Train Loss: 0.033518995164753235, Val Loss: 0.039418724239677995 +2024-07-19 14:31:46.302 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 45/50, Train Loss: 0.033362666502186694, Val Loss: 0.037834987145017936 +2024-07-19 14:31:46.994 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 46/50, Train Loss: 0.03318282667777105, Val Loss: 0.037741432218132795 +2024-07-19 14:31:47.697 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 47/50, Train Loss: 0.03332455301249068, Val Loss: 0.03757700470049639 +2024-07-19 14:31:48.395 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 48/50, Train Loss: 0.033115759581225375, Val Loss: 0.038036222896865896 +2024-07-19 14:31:49.116 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 49/50, Train Loss: 0.0331638717309457, Val Loss: 0.03831202773427641 +2024-07-19 14:31:49.831 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 50/50, Train Loss: 0.03319264372989331, Val Loss: 0.03755410805948683 +2024-07-19 14:31:49.831 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Fold 3, MAPE: 6.20% +2024-07-19 14:31:49.936 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Training image saved at metaflow_models//bgd_office_25001_50000_LSTM//train_f3_bgd_office_25001_50000_LSTM.png +2024-07-19 14:31:50.824 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 1/50, Train Loss: 0.03358389359417852, Val Loss: 0.030784952630465094 +2024-07-19 14:31:51.749 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 2/50, Train Loss: 0.03345880969069325, Val Loss: 0.03076920602974054 +2024-07-19 14:31:52.616 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 3/50, Train Loss: 0.03328852007513518, Val Loss: 0.030905048992182757 +2024-07-19 14:31:53.494 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 4/50, Train Loss: 0.033202437729994344, Val Loss: 0.030947538948542363 +2024-07-19 14:31:54.326 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 5/50, Train Loss: 0.033063637461144844, Val Loss: 0.031017169809421978 +2024-07-19 14:31:55.159 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 6/50, Train Loss: 0.033127085418327824, Val Loss: 0.03137223201023566 +2024-07-19 14:31:56.000 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 7/50, Train Loss: 0.033066717406304985, Val Loss: 0.03066628919662656 +2024-07-19 14:31:56.875 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 8/50, Train Loss: 0.032876422408722586, Val Loss: 0.03151136757554235 +2024-07-19 14:31:57.723 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 9/50, Train Loss: 0.03294193329146275, Val Loss: 0.031332930449295686 +2024-07-19 14:31:58.573 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 10/50, Train Loss: 0.032954595737404876, Val Loss: 0.031213215879491857 +2024-07-19 14:31:59.429 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 11/50, Train Loss: 0.0328868314634067, Val Loss: 0.03142554237431771 +2024-07-19 14:32:00.275 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 12/50, Train Loss: 0.03298124160290092, Val Loss: 0.03141630028147955 +2024-07-19 14:32:01.149 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 13/50, Train Loss: 0.03288602933369495, Val Loss: 0.03171389439218753 +2024-07-19 14:32:02.005 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 14/50, Train Loss: 0.032893364962476954, Val Loss: 0.031458326137146435 +2024-07-19 14:32:02.885 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 15/50, Train Loss: 0.032917257879379686, Val Loss: 0.03230044905196976 +2024-07-19 14:32:03.730 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 16/50, Train Loss: 0.032940233581709666, Val Loss: 0.03148923069238663 +2024-07-19 14:32:04.571 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 17/50, Train Loss: 0.0328530901684784, Val Loss: 0.03154916819688436 +2024-07-19 14:32:05.407 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 18/50, Train Loss: 0.03269836843873446, Val Loss: 0.031588985559505386 +2024-07-19 14:32:06.251 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 19/50, Train Loss: 0.0328140328587084, Val Loss: 0.0316216388868319 +2024-07-19 14:32:07.092 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 20/50, Train Loss: 0.032678337716548655, Val Loss: 0.03198609103423518 +2024-07-19 14:32:07.941 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 21/50, Train Loss: 0.032702113286806986, Val Loss: 0.03202494712093392 +2024-07-19 14:32:08.793 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 22/50, Train Loss: 0.03278338409202931, Val Loss: 0.031170900860750996 +2024-07-19 14:32:09.664 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 23/50, Train Loss: 0.0326189702366489, Val Loss: 0.031211250537150615 +2024-07-19 14:32:10.518 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 24/50, Train Loss: 0.032560914171511655, Val Loss: 0.03116124913700529 +2024-07-19 14:32:11.400 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 25/50, Train Loss: 0.032485561476058356, Val Loss: 0.031253322858262704 +2024-07-19 14:32:12.242 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 26/50, Train Loss: 0.032441389337591414, Val Loss: 0.03103955079977577 +2024-07-19 14:32:13.096 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 27/50, Train Loss: 0.03255885568764675, Val Loss: 0.03083661515769121 +2024-07-19 14:32:13.936 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 28/50, Train Loss: 0.03252620938755981, Val Loss: 0.031259421007456004 +2024-07-19 14:32:14.821 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 29/50, Train Loss: 0.03250524974786318, Val Loss: 0.031248337161299343 +2024-07-19 14:32:15.675 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 30/50, Train Loss: 0.03230494469056254, Val Loss: 0.03137839464722453 +2024-07-19 14:32:16.528 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 31/50, Train Loss: 0.03236330566149983, Val Loss: 0.0312798545771354 +2024-07-19 14:32:17.367 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 32/50, Train Loss: 0.032353947235905865, Val Loss: 0.030839880223612528 +2024-07-19 14:32:18.231 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 33/50, Train Loss: 0.0324455493917832, Val Loss: 0.0310876104175239 +2024-07-19 14:32:19.106 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 34/50, Train Loss: 0.03210285792618499, Val Loss: 0.031018761011797027 +2024-07-19 14:32:20.005 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 35/50, Train Loss: 0.032100621032641156, Val Loss: 0.030567970932335466 +2024-07-19 14:32:20.872 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 36/50, Train Loss: 0.03221928276592395, Val Loss: 0.030839307384716498 +2024-07-19 14:32:21.743 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 37/50, Train Loss: 0.03214517037210229, Val Loss: 0.031043236974526097 +2024-07-19 14:32:22.594 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 38/50, Train Loss: 0.03214831564800589, Val Loss: 0.030630332442957 +2024-07-19 14:32:23.464 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 39/50, Train Loss: 0.0321743451365894, Val Loss: 0.030813902666842617 +2024-07-19 14:32:24.318 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 40/50, Train Loss: 0.03214138750355322, Val Loss: 0.030647165922297014 +2024-07-19 14:32:25.164 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 41/50, Train Loss: 0.03246167574364405, Val Loss: 0.030444257263396238 +2024-07-19 14:32:26.018 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 42/50, Train Loss: 0.03227538240889272, Val Loss: 0.030407710000872612 +2024-07-19 14:32:26.899 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 43/50, Train Loss: 0.03198179998690938, Val Loss: 0.030845018053376996 +2024-07-19 14:32:27.758 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 44/50, Train Loss: 0.03228839588157096, Val Loss: 0.030225369022101968 +2024-07-19 14:32:28.617 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 45/50, Train Loss: 0.032153839618991036, Val Loss: 0.030312629315901448 +2024-07-19 14:32:29.436 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 46/50, Train Loss: 0.032077833564931546, Val Loss: 0.030547385733272578 +2024-07-19 14:32:30.271 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 47/50, Train Loss: 0.0318223693930022, Val Loss: 0.030610014357276866 +2024-07-19 14:32:31.143 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 48/50, Train Loss: 0.031753819538178026, Val Loss: 0.03079543514428912 +2024-07-19 14:32:32.007 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 49/50, Train Loss: 0.031741600340375535, Val Loss: 0.030768901663454803 +2024-07-19 14:32:32.864 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 50/50, Train Loss: 0.03173835581721186, Val Loss: 0.030452936384323483 +2024-07-19 14:32:32.865 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Fold 4, MAPE: 5.51% +2024-07-19 14:32:32.977 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Training image saved at metaflow_models//bgd_office_25001_50000_LSTM//train_f4_bgd_office_25001_50000_LSTM.png +2024-07-19 14:32:37.063 [9/cross_validate_train/89 (pid 1545)] Task finished successfully. +2024-07-19 14:32:37.092 [9/model_scores/90 (pid 2120)] Task is starting. +2024-07-19 14:32:38.554 [9/model_scores/90 (pid 2120)] INFO:__main__:Average Train Loss across all folds: 0.0359871569182474 +2024-07-19 14:32:42.543 [9/model_scores/90 (pid 2120)] INFO:__main__:Average Validation Loss across all folds: 0.04128956874782169 +2024-07-19 14:32:42.543 [9/model_scores/90 (pid 2120)] INFO:__main__:Average MAPE across all folds: 6.33% +2024-07-19 14:32:42.544 [9/model_scores/90 (pid 2120)] Task finished successfully. +2024-07-19 14:32:42.582 [9/validate_model/91 (pid 2184)] Task is starting. +2024-07-19 14:32:44.076 [9/validate_model/91 (pid 2184)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:32:44.174 [9/validate_model/91 (pid 2184)] INFO:__main__:Test Set MAPE: 5.83% +2024-07-19 14:32:44.503 [9/validate_model/91 (pid 2184)] INFO:__main__:Test image saved at metaflow_models//bgd_office_25001_50000_LSTM//test_bgd_office_25001_50000_LSTM.png +2024-07-19 14:32:44.956 [9/validate_model/91 (pid 2184)] Task finished successfully. +2024-07-19 14:32:44.991 [9/log_model/92 (pid 2201)] Task is starting. +2024-07-19 14:32:46.476 [9/log_model/92 (pid 2201)] INFO:__main__:Logging model bgd_office_25001_50000_LSTM +2024-07-19 14:32:46.477 [9/log_model/92 (pid 2201)] INFO:__main__:Model logged at metaflow_models//bgd_office_25001_50000_LSTM//bgd_office_25001_50000_LSTM.pth +2024-07-19 14:32:50.366 [9/log_model/92 (pid 2201)] Task finished successfully. +2024-07-19 14:32:50.398 [9/end/93 (pid 2242)] Task is starting. +2024-07-19 14:32:51.866 [9/end/93 (pid 2242)] INFO:__main__:Pipeline end. +2024-07-19 14:32:52.189 [9/end/93 (pid 2242)] Task finished successfully. +2024-07-19 14:32:52.190 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/9') succeeded: +-- stdout -- +2024-07-19 14:29:49.428 Workflow starting (run-id 9): +2024-07-19 14:29:49.526 [9/start/81 (pid 1362)] Task is starting. +2024-07-19 14:29:51.158 [9/start/81 (pid 1362)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:29:51.472 [9/start/81 (pid 1362)] Task finished successfully. +2024-07-19 14:29:51.505 [9/ingest/82 (pid 1379)] Task is starting. +2024-07-19 14:29:53.082 [9/ingest/82 (pid 1379)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:29:53.100 [9/ingest/82 (pid 1379)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:29:57.008 [9/ingest/82 (pid 1379)] Task finished successfully. +2024-07-19 14:29:57.041 [9/pick_2017_data/83 (pid 1416)] Task is starting. +2024-07-19 14:29:58.509 [9/pick_2017_data/83 (pid 1416)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:29:58.838 [9/pick_2017_data/83 (pid 1416)] Task finished successfully. +2024-07-19 14:29:58.867 [9/fill_missing_data/84 (pid 1430)] Task is starting. +2024-07-19 14:30:00.364 [9/fill_missing_data/84 (pid 1430)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:30:00.371 [9/fill_missing_data/84 (pid 1430)] INFO:__main__:NaN counts per column: +2024-07-19 14:30:00.371 [9/fill_missing_data/84 (pid 1430)] INFO:__main__:Panther_office_Catherine 12 +2024-07-19 14:30:00.371 [9/fill_missing_data/84 (pid 1430)] Panther_office_Lauretta 11 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Panther_office_Karla 11 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Panther_office_Ruthie 10 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Panther_office_Shauna 12 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Panther_office_Clementine 10 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Robin_office_Serena 0 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Fox_office_Brandy 2 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Rat_office_Loyd 26 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] dtype: int64 +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] --- Logging error --- +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] Traceback (most recent call last): +2024-07-19 14:30:00.372 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] msg = self.format(record) +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] return fmt.format(record) +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] record.message = record.getMessage() +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] msg = msg % self.args +2024-07-19 14:30:00.373 [9/fill_missing_data/84 (pid 1430)] TypeError: not all arguments converted during string formatting +2024-07-19 14:30:00.374 [9/fill_missing_data/84 (pid 1430)] Call stack: +2024-07-19 14:30:00.374 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] BGD_LinearFlow() +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] cli.main(self) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] return func(*args, **kwargs) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] return self.main(*args, **kwargs) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] rv = self.invoke(ctx) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] return callback(*args, **kwargs) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] task.run_step( +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] self._exec_step_function(step_func) +2024-07-19 14:30:00.785 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:30:00.786 [9/fill_missing_data/84 (pid 1430)] step_function() +2024-07-19 14:30:00.786 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:30:00.786 [9/fill_missing_data/84 (pid 1430)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:30:00.786 [9/fill_missing_data/84 (pid 1430)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:30:00.786 [9/fill_missing_data/84 (pid 1430)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:30:00.786 [9/fill_missing_data/84 (pid 1430)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:30:00.786 [9/fill_missing_data/84 (pid 1430)] Arguments: (94,) +2024-07-19 14:30:00.787 [9/fill_missing_data/84 (pid 1430)] Task finished successfully. +2024-07-19 14:30:00.818 [9/find_median/85 (pid 1447)] Task is starting. +2024-07-19 14:30:02.307 [9/find_median/85 (pid 1447)] INFO:__main__:Computing and using median.. +2024-07-19 14:30:02.841 [9/find_median/85 (pid 1447)] Task finished successfully. +2024-07-19 14:30:02.871 [9/aggregate_data/86 (pid 1458)] Task is starting. +2024-07-19 14:30:04.349 [9/aggregate_data/86 (pid 1458)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:30:08.247 [9/aggregate_data/86 (pid 1458)] Task finished successfully. +2024-07-19 14:30:08.278 [9/split_data/87 (pid 1491)] Task is starting. +2024-07-19 14:30:09.750 [9/split_data/87 (pid 1491)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:30:13.665 [9/split_data/87 (pid 1491)] Task finished successfully. +2024-07-19 14:30:13.696 [9/make_x_y/88 (pid 1528)] Task is starting. +2024-07-19 14:30:15.548 [9/make_x_y/88 (pid 1528)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:30:15.873 [9/make_x_y/88 (pid 1528)] Shape of y_train: (6978, 1) +2024-07-19 14:30:15.873 [9/make_x_y/88 (pid 1528)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:30:15.873 [9/make_x_y/88 (pid 1528)] Shape of y_test: (1722, 1) +2024-07-19 14:30:15.874 [9/make_x_y/88 (pid 1528)] Task finished successfully. +2024-07-19 14:30:15.908 [9/cross_validate_train/89 (pid 1545)] Task is starting. +2024-07-19 14:30:17.362 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Creating bgd_office_25001_50000_LSTM +2024-07-19 14:30:17.362 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Performing cross validation.. +2024-07-19 14:30:18.126 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 1/50, Train Loss: 0.2411043080123695, Val Loss: 0.1982934225249935 +2024-07-19 14:30:18.326 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 2/50, Train Loss: 0.1666804523886861, Val Loss: 0.18666537005353617 +2024-07-19 14:30:18.528 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 3/50, Train Loss: 0.15279356923860474, Val Loss: 0.16832918895257487 +2024-07-19 14:30:18.734 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 4/50, Train Loss: 0.13939391751144384, Val Loss: 0.14460659248603358 +2024-07-19 14:30:18.935 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 5/50, Train Loss: 0.11544256949344196, Val Loss: 0.10731746497991923 +2024-07-19 14:30:19.141 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 6/50, Train Loss: 0.09192138155167168, Val Loss: 0.0901704443668997 +2024-07-19 14:30:19.345 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 7/50, Train Loss: 0.08091556321124772, Val Loss: 0.08525304667450287 +2024-07-19 14:30:19.551 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 8/50, Train Loss: 0.07427322552413554, Val Loss: 0.08013206065909283 +2024-07-19 14:30:19.757 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 9/50, Train Loss: 0.07061284347563176, Val Loss: 0.07556573895586503 +2024-07-19 14:30:19.962 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 10/50, Train Loss: 0.0688692494421392, Val Loss: 0.07235620251378498 +2024-07-19 14:30:20.173 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 11/50, Train Loss: 0.06695490788567711, Val Loss: 0.06988507423650574 +2024-07-19 14:30:20.377 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 12/50, Train Loss: 0.06513680165281167, Val Loss: 0.06774293258786201 +2024-07-19 14:30:20.591 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 13/50, Train Loss: 0.06361012336974209, Val Loss: 0.06566662356458805 +2024-07-19 14:30:20.801 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 14/50, Train Loss: 0.06179614843347588, Val Loss: 0.06396382070473723 +2024-07-19 14:30:21.051 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 15/50, Train Loss: 0.05984314787830856, Val Loss: 0.06222653207746712 +2024-07-19 14:30:21.257 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 16/50, Train Loss: 0.059436092807634455, Val Loss: 0.060037479861765296 +2024-07-19 14:30:21.460 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 17/50, Train Loss: 0.05794590258517781, Val Loss: 0.05843482629672901 +2024-07-19 14:30:21.663 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 18/50, Train Loss: 0.05465928263760902, Val Loss: 0.05494578112218831 +2024-07-19 14:30:21.869 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 19/50, Train Loss: 0.05101071564933738, Val Loss: 0.053321883787174486 +2024-07-19 14:30:22.077 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 20/50, Train Loss: 0.04999477990173005, Val Loss: 0.05400671064853668 +2024-07-19 14:30:22.297 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 21/50, Train Loss: 0.048661521359069926, Val Loss: 0.05170492415089865 +2024-07-19 14:30:22.517 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 22/50, Train Loss: 0.04864632459105672, Val Loss: 0.05071148870361818 +2024-07-19 14:30:22.738 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 23/50, Train Loss: 0.04835465409465738, Val Loss: 0.051567943917738425 +2024-07-19 14:30:22.959 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 24/50, Train Loss: 0.04860036523156875, Val Loss: 0.05030358758931224 +2024-07-19 14:30:23.178 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 25/50, Train Loss: 0.04670011649864751, Val Loss: 0.04990712548228535 +2024-07-19 14:30:23.398 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 26/50, Train Loss: 0.04680141288082342, Val Loss: 0.05050339242695151 +2024-07-19 14:30:23.621 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 27/50, Train Loss: 0.04660548838610585, Val Loss: 0.049618581611965154 +2024-07-19 14:30:23.844 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 28/50, Train Loss: 0.04637764097266906, Val Loss: 0.04959781920990428 +2024-07-19 14:30:24.060 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 29/50, Train Loss: 0.04658608908790189, Val Loss: 0.04872501998938419 +2024-07-19 14:30:24.276 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 30/50, Train Loss: 0.045892284478287436, Val Loss: 0.04951654470248802 +2024-07-19 14:30:24.490 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 31/50, Train Loss: 0.04614292306674493, Val Loss: 0.04886094621709875 +2024-07-19 14:30:24.714 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 32/50, Train Loss: 0.045617587109272544, Val Loss: 0.04877983587416443 +2024-07-19 14:30:24.931 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 33/50, Train Loss: 0.04614818216981115, Val Loss: 0.0483912785311003 +2024-07-19 14:30:25.155 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 34/50, Train Loss: 0.04559002288088605, Val Loss: 0.049119755978117116 +2024-07-19 14:30:25.372 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 35/50, Train Loss: 0.046544026281382586, Val Loss: 0.0486609128278655 +2024-07-19 14:30:25.596 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 36/50, Train Loss: 0.045880976158219414, Val Loss: 0.047703858666323325 +2024-07-19 14:30:25.816 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 37/50, Train Loss: 0.0452447118791374, Val Loss: 0.049222526367048956 +2024-07-19 14:30:26.037 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 38/50, Train Loss: 0.04656435111285867, Val Loss: 0.04751381222662088 +2024-07-19 14:30:26.259 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 39/50, Train Loss: 0.04469429706600872, Val Loss: 0.048495627033549385 +2024-07-19 14:30:26.502 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 40/50, Train Loss: 0.04528278500043057, Val Loss: 0.04757828124471613 +2024-07-19 14:30:26.727 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 41/50, Train Loss: 0.044906614096583544, Val Loss: 0.04942371741541334 +2024-07-19 14:30:26.948 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 42/50, Train Loss: 0.0454907528049237, Val Loss: 0.04745729458895889 +2024-07-19 14:30:27.164 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 43/50, Train Loss: 0.04520673747803714, Val Loss: 0.05000676224763329 +2024-07-19 14:30:27.383 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 44/50, Train Loss: 0.045674172506944555, Val Loss: 0.04735002973796548 +2024-07-19 14:30:27.601 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 45/50, Train Loss: 0.044768547085491384, Val Loss: 0.047680532559752464 +2024-07-19 14:30:27.819 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 46/50, Train Loss: 0.04538480247798804, Val Loss: 0.04688265647839855 +2024-07-19 14:30:28.047 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 47/50, Train Loss: 0.044974268590276305, Val Loss: 0.04708538692746613 +2024-07-19 14:30:28.269 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 48/50, Train Loss: 0.04467426723725087, Val Loss: 0.04749933564783754 +2024-07-19 14:30:28.498 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 49/50, Train Loss: 0.044526354434925156, Val Loss: 0.04712350288959774 +2024-07-19 14:30:28.724 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 50/50, Train Loss: 0.045267038953465386, Val Loss: 0.047576551854207706 +2024-07-19 14:30:28.724 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Fold 0, MAPE: 5.72% +2024-07-19 14:30:29.129 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Training image saved at metaflow_models//bgd_office_25001_50000_LSTM//train_f0_bgd_office_25001_50000_LSTM.png +2024-07-19 14:30:29.576 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 1/50, Train Loss: 0.0375898380904165, Val Loss: 0.042766962401770255 +2024-07-19 14:30:29.952 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 2/50, Train Loss: 0.03625356176332252, Val Loss: 0.04179070300951197 +2024-07-19 14:30:30.348 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 3/50, Train Loss: 0.03623522116407139, Val Loss: 0.041475318926008975 +2024-07-19 14:30:30.804 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 4/50, Train Loss: 0.0361577654640152, Val Loss: 0.040980807832769445 +2024-07-19 14:30:31.185 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 5/50, Train Loss: 0.03584209224847082, Val Loss: 0.04095432580121466 +2024-07-19 14:30:31.565 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 6/50, Train Loss: 0.03601062180448885, Val Loss: 0.04097502890068132 +2024-07-19 14:30:31.945 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 7/50, Train Loss: 0.036045723684030036, Val Loss: 0.04073104086155827 +2024-07-19 14:30:32.318 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 8/50, Train Loss: 0.03590443676771366, Val Loss: 0.040308336551124986 +2024-07-19 14:30:32.717 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 9/50, Train Loss: 0.035897055589785315, Val Loss: 0.04043162946362753 +2024-07-19 14:30:33.094 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 10/50, Train Loss: 0.03561624897363251, Val Loss: 0.04042375193455735 +2024-07-19 14:30:33.484 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 11/50, Train Loss: 0.03602133563732448, Val Loss: 0.040042563618437665 +2024-07-19 14:30:33.861 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 12/50, Train Loss: 0.03640883724677236, Val Loss: 0.04071635345148074 +2024-07-19 14:30:34.240 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 13/50, Train Loss: 0.03615685562564902, Val Loss: 0.04039505713090703 +2024-07-19 14:30:34.615 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 14/50, Train Loss: 0.03613462316969486, Val Loss: 0.04090555422511455 +2024-07-19 14:30:34.993 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 15/50, Train Loss: 0.036308887325329324, Val Loss: 0.041004603728652 +2024-07-19 14:30:35.366 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 16/50, Train Loss: 0.03586862894566092, Val Loss: 0.040500363234329866 +2024-07-19 14:30:35.743 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 17/50, Train Loss: 0.036019826665112414, Val Loss: 0.04178046792544223 +2024-07-19 14:30:36.128 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 18/50, Train Loss: 0.036088225852749116, Val Loss: 0.041523266659193744 +2024-07-19 14:30:36.499 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 19/50, Train Loss: 0.035634723300599074, Val Loss: 0.04099634000276391 +2024-07-19 14:30:36.875 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 20/50, Train Loss: 0.03553904177085178, Val Loss: 0.04099792851185476 +2024-07-19 14:30:37.251 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 21/50, Train Loss: 0.03534293488586602, Val Loss: 0.04199756369800181 +2024-07-19 14:30:37.634 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 22/50, Train Loss: 0.03578042858981923, Val Loss: 0.040888524538761864 +2024-07-19 14:30:38.012 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 23/50, Train Loss: 0.03546477889973823, Val Loss: 0.04148408289797403 +2024-07-19 14:30:38.392 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 24/50, Train Loss: 0.03571294368027824, Val Loss: 0.041224262224057236 +2024-07-19 14:30:38.771 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 25/50, Train Loss: 0.03556226229626838, Val Loss: 0.041434538777212836 +2024-07-19 14:30:39.154 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 26/50, Train Loss: 0.03548461265147549, Val Loss: 0.041043698032562796 +2024-07-19 14:30:39.531 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 27/50, Train Loss: 0.035430273551442855, Val Loss: 0.04186810799748511 +2024-07-19 14:30:39.914 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 28/50, Train Loss: 0.035319432947937754, Val Loss: 0.04139260298295601 +2024-07-19 14:30:40.301 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 29/50, Train Loss: 0.03524095858511043, Val Loss: 0.04148610724085892 +2024-07-19 14:30:40.696 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 30/50, Train Loss: 0.03522677956888937, Val Loss: 0.04145718260189971 +2024-07-19 14:30:41.058 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 31/50, Train Loss: 0.035276364790250175, Val Loss: 0.041759430405658646 +2024-07-19 14:30:41.425 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 32/50, Train Loss: 0.035147184480543006, Val Loss: 0.0412947896968674 +2024-07-19 14:30:41.801 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 33/50, Train Loss: 0.03519949597651011, Val Loss: 0.04173251905956784 +2024-07-19 14:30:42.175 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 34/50, Train Loss: 0.03540394531741534, Val Loss: 0.04152540953175442 +2024-07-19 14:30:42.557 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 35/50, Train Loss: 0.035311842541376204, Val Loss: 0.04085618564607324 +2024-07-19 14:30:42.944 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 36/50, Train Loss: 0.034974685780806085, Val Loss: 0.04159064175611412 +2024-07-19 14:30:43.325 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 37/50, Train Loss: 0.03527295431249762, Val Loss: 0.04089373961795826 +2024-07-19 14:30:43.703 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 38/50, Train Loss: 0.035132881891849925, Val Loss: 0.041594123467803 +2024-07-19 14:30:44.076 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 39/50, Train Loss: 0.03497271239757538, Val Loss: 0.041406259393772564 +2024-07-19 14:30:44.450 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 40/50, Train Loss: 0.03536598279766024, Val Loss: 0.041579856562453346 +2024-07-19 14:30:44.826 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 41/50, Train Loss: 0.035070266702199634, Val Loss: 0.04118102104277224 +2024-07-19 14:30:45.200 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 42/50, Train Loss: 0.034771697493652776, Val Loss: 0.04101797334245733 +2024-07-19 14:30:45.576 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 43/50, Train Loss: 0.03527654995759056, Val Loss: 0.04099809967384145 +2024-07-19 14:30:45.973 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 44/50, Train Loss: 0.03515337126916402, Val Loss: 0.041095702833420525 +2024-07-19 14:30:46.357 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 45/50, Train Loss: 0.03456655366677944, Val Loss: 0.041323633335933495 +2024-07-19 14:30:46.728 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 46/50, Train Loss: 0.035379162287875396, Val Loss: 0.041158848165257556 +2024-07-19 14:30:47.102 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 47/50, Train Loss: 0.034988973978651715, Val Loss: 0.04120030692098914 +2024-07-19 14:30:47.483 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 48/50, Train Loss: 0.03473727055506347, Val Loss: 0.04141009639243822 +2024-07-19 14:30:47.870 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 49/50, Train Loss: 0.03542868606746197, Val Loss: 0.041231530466796576 +2024-07-19 14:30:48.251 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 50/50, Train Loss: 0.03477797618977828, Val Loss: 0.041216474001270695 +2024-07-19 14:30:48.252 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Fold 1, MAPE: 6.71% +2024-07-19 14:30:48.362 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Training image saved at metaflow_models//bgd_office_25001_50000_LSTM//train_f1_bgd_office_25001_50000_LSTM.png +2024-07-19 14:30:48.928 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 1/50, Train Loss: 0.03596212699670683, Val Loss: 0.04915169737226254 +2024-07-19 14:30:49.467 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 2/50, Train Loss: 0.036658840474079954, Val Loss: 0.0489582917275461 +2024-07-19 14:30:50.018 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 3/50, Train Loss: 0.03596602075479247, Val Loss: 0.050737032717144165 +2024-07-19 14:30:50.532 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 4/50, Train Loss: 0.03675883913582022, Val Loss: 0.048938507264530334 +2024-07-19 14:30:51.065 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 5/50, Train Loss: 0.03616106972437013, Val Loss: 0.0491198820842279 +2024-07-19 14:30:51.575 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 6/50, Train Loss: 0.03591449110006744, Val Loss: 0.05111696309334523 +2024-07-19 14:30:52.082 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 7/50, Train Loss: 0.036048046397891914, Val Loss: 0.049237335151111755 +2024-07-19 14:30:52.596 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 8/50, Train Loss: 0.0360980077562007, Val Loss: 0.050906139501446 +2024-07-19 14:30:53.112 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 9/50, Train Loss: 0.03630266223441471, Val Loss: 0.048727128352667834 +2024-07-19 14:30:53.625 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 10/50, Train Loss: 0.03596617003733461, Val Loss: 0.049283782724995874 +2024-07-19 14:30:54.135 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 11/50, Train Loss: 0.03575265995142135, Val Loss: 0.0509831778503753 +2024-07-19 14:30:54.643 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 12/50, Train Loss: 0.03585810090669177, Val Loss: 0.04911706641920515 +2024-07-19 14:30:55.156 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 13/50, Train Loss: 0.035910891098054974, Val Loss: 0.05083998332957964 +2024-07-19 14:30:55.665 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 14/50, Train Loss: 0.03583277853375132, Val Loss: 0.049420576643299415 +2024-07-19 14:30:56.182 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 15/50, Train Loss: 0.03581767939031124, Val Loss: 0.05145013256854302 +2024-07-19 14:30:56.697 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 16/50, Train Loss: 0.035960990774699234, Val Loss: 0.04980041247767371 +2024-07-19 14:30:57.222 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 17/50, Train Loss: 0.036190798971801996, Val Loss: 0.049366624421767286 +2024-07-19 14:30:57.765 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 18/50, Train Loss: 0.035886613669043235, Val Loss: 0.0498221013191584 +2024-07-19 14:30:58.300 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 19/50, Train Loss: 0.03565007451583039, Val Loss: 0.049473103890950616 +2024-07-19 14:30:58.850 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 20/50, Train Loss: 0.03583005985922434, Val Loss: 0.050133345850013396 +2024-07-19 14:30:59.393 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 21/50, Train Loss: 0.035586104736748066, Val Loss: 0.04953660901535202 +2024-07-19 14:30:59.930 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 22/50, Train Loss: 0.03547329701991244, Val Loss: 0.05035234967599044 +2024-07-19 14:31:00.470 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 23/50, Train Loss: 0.03553993818773465, Val Loss: 0.049093108573878136 +2024-07-19 14:31:01.036 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 24/50, Train Loss: 0.035441017362543126, Val Loss: 0.049651115578976834 +2024-07-19 14:31:01.562 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 25/50, Train Loss: 0.03555330334400589, Val Loss: 0.049225902436552824 +2024-07-19 14:31:02.117 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 26/50, Train Loss: 0.035303377656435424, Val Loss: 0.04922402680322931 +2024-07-19 14:31:02.683 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 27/50, Train Loss: 0.03544001704589887, Val Loss: 0.0498025119304657 +2024-07-19 14:31:03.220 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 28/50, Train Loss: 0.03539737818593329, Val Loss: 0.049614563030568326 +2024-07-19 14:31:03.744 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 29/50, Train Loss: 0.0355251660909165, Val Loss: 0.0509173275550475 +2024-07-19 14:31:04.276 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 30/50, Train Loss: 0.03522000863132152, Val Loss: 0.04998770179982121 +2024-07-19 14:31:04.809 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 31/50, Train Loss: 0.03593574652278965, Val Loss: 0.05015983065036503 +2024-07-19 14:31:05.341 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 32/50, Train Loss: 0.03537278606302359, Val Loss: 0.04974857878846091 +2024-07-19 14:31:05.866 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 33/50, Train Loss: 0.0355815496973016, Val Loss: 0.04962015016054785 +2024-07-19 14:31:06.402 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 34/50, Train Loss: 0.03496508806605231, Val Loss: 0.0500763366250573 +2024-07-19 14:31:06.936 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 35/50, Train Loss: 0.035869935290379955, Val Loss: 0.04914127119086884 +2024-07-19 14:31:07.464 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 36/50, Train Loss: 0.0350075481290167, Val Loss: 0.04917960910982377 +2024-07-19 14:31:08.003 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 37/50, Train Loss: 0.03552915316752412, Val Loss: 0.049239800236112366 +2024-07-19 14:31:08.536 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 38/50, Train Loss: 0.03449945602227341, Val Loss: 0.049478746547892284 +2024-07-19 14:31:09.080 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 39/50, Train Loss: 0.03476712376895276, Val Loss: 0.04972002232396925 +2024-07-19 14:31:09.603 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 40/50, Train Loss: 0.03550278644331477, Val Loss: 0.05024611073974017 +2024-07-19 14:31:10.140 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 41/50, Train Loss: 0.03462627059356733, Val Loss: 0.04968121008494416 +2024-07-19 14:31:10.695 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 42/50, Train Loss: 0.03463746366853064, Val Loss: 0.050292073069392026 +2024-07-19 14:31:11.216 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 43/50, Train Loss: 0.03539477859369733, Val Loss: 0.04940112010651344 +2024-07-19 14:31:11.726 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 44/50, Train Loss: 0.03502592129463499, Val Loss: 0.049224302021635545 +2024-07-19 14:31:12.236 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 45/50, Train Loss: 0.034476058134301144, Val Loss: 0.04972339914859952 +2024-07-19 14:31:12.753 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 46/50, Train Loss: 0.03462292037226937, Val Loss: 0.04990174002139955 +2024-07-19 14:31:13.268 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 47/50, Train Loss: 0.03454759998077696, Val Loss: 0.049881968798266875 +2024-07-19 14:31:13.778 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 48/50, Train Loss: 0.03575593825768341, Val Loss: 0.04988888887738859 +2024-07-19 14:31:14.295 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 49/50, Train Loss: 0.03422727462073619, Val Loss: 0.049935190460166416 +2024-07-19 14:31:14.808 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 50/50, Train Loss: 0.034959769900888206, Val Loss: 0.04964777343981975 +2024-07-19 14:31:14.809 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Fold 2, MAPE: 7.53% +2024-07-19 14:31:14.915 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Training image saved at metaflow_models//bgd_office_25001_50000_LSTM//train_f2_bgd_office_25001_50000_LSTM.png +2024-07-19 14:31:15.581 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 1/50, Train Loss: 0.033804765838670404, Val Loss: 0.03821185498020133 +2024-07-19 14:31:16.286 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 2/50, Train Loss: 0.03409390427070121, Val Loss: 0.03812626608320185 +2024-07-19 14:31:16.978 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 3/50, Train Loss: 0.03378917218173203, Val Loss: 0.03788223228341824 +2024-07-19 14:31:17.668 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 4/50, Train Loss: 0.0337151448267882, Val Loss: 0.037303233418512986 +2024-07-19 14:31:18.365 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 5/50, Train Loss: 0.033651485611773925, Val Loss: 0.037772739859851634 +2024-07-19 14:31:19.075 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 6/50, Train Loss: 0.03378883272103251, Val Loss: 0.03875540962090363 +2024-07-19 14:31:19.770 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 7/50, Train Loss: 0.03369364445416691, Val Loss: 0.03827184524286438 +2024-07-19 14:31:20.492 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 8/50, Train Loss: 0.03379005170746209, Val Loss: 0.038356362766510735 +2024-07-19 14:31:21.223 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 9/50, Train Loss: 0.03370336075122022, Val Loss: 0.038013376597617124 +2024-07-19 14:31:21.920 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 10/50, Train Loss: 0.0336257294649641, Val Loss: 0.03829043429042842 +2024-07-19 14:31:22.604 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 11/50, Train Loss: 0.033758762254290385, Val Loss: 0.03861991154986459 +2024-07-19 14:31:23.309 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 12/50, Train Loss: 0.033864082806832986, Val Loss: 0.03867377627741646 +2024-07-19 14:31:23.989 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 13/50, Train Loss: 0.03382326780550488, Val Loss: 0.03921609955864984 +2024-07-19 14:31:24.689 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 14/50, Train Loss: 0.03396538019894737, Val Loss: 0.040194136568823376 +2024-07-19 14:31:25.378 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 15/50, Train Loss: 0.033939190285458956, Val Loss: 0.03943898347583977 +2024-07-19 14:31:26.068 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 16/50, Train Loss: 0.03398126065220735, Val Loss: 0.039744173654833355 +2024-07-19 14:31:26.785 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 17/50, Train Loss: 0.03391716849339539, Val Loss: 0.04075674551564294 +2024-07-19 14:31:27.474 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 18/50, Train Loss: 0.03396253477884074, Val Loss: 0.03980795193362881 +2024-07-19 14:31:28.180 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 19/50, Train Loss: 0.033888908792031956, Val Loss: 0.03955284299681316 +2024-07-19 14:31:28.866 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 20/50, Train Loss: 0.033708019749810025, Val Loss: 0.0390066452626441 +2024-07-19 14:31:29.545 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 21/50, Train Loss: 0.03355397213862775, Val Loss: 0.038118168459953486 +2024-07-19 14:31:30.248 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 22/50, Train Loss: 0.033720798018605336, Val Loss: 0.038870778387865505 +2024-07-19 14:31:30.953 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 23/50, Train Loss: 0.03356232096071113, Val Loss: 0.04029802741432512 +2024-07-19 14:31:31.646 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 24/50, Train Loss: 0.03373591073673882, Val Loss: 0.03947029282917847 +2024-07-19 14:31:32.343 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 25/50, Train Loss: 0.03357920893914487, Val Loss: 0.038841547243095735 +2024-07-19 14:31:33.052 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 26/50, Train Loss: 0.033548140337001785, Val Loss: 0.039679048683595015 +2024-07-19 14:31:33.762 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 27/50, Train Loss: 0.033782496767705436, Val Loss: 0.03879136758277545 +2024-07-19 14:31:34.452 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 28/50, Train Loss: 0.033544733093362554, Val Loss: 0.03990676153350521 +2024-07-19 14:31:35.144 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 29/50, Train Loss: 0.03386857081204653, Val Loss: 0.04006980394793523 +2024-07-19 14:31:35.840 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 30/50, Train Loss: 0.033660653506545984, Val Loss: 0.03993366245885153 +2024-07-19 14:31:36.534 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 31/50, Train Loss: 0.03361143409083151, Val Loss: 0.03910201390248698 +2024-07-19 14:31:37.224 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 32/50, Train Loss: 0.03377576895721563, Val Loss: 0.03949950776390127 +2024-07-19 14:31:37.928 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 33/50, Train Loss: 0.03355860013565789, Val Loss: 0.03927390846247609 +2024-07-19 14:31:38.636 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 34/50, Train Loss: 0.03353629434761936, Val Loss: 0.03892646830629658 +2024-07-19 14:31:39.335 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 35/50, Train Loss: 0.033507023568022744, Val Loss: 0.03902818000799901 +2024-07-19 14:31:40.028 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 36/50, Train Loss: 0.03360950703770943, Val Loss: 0.038201367633568274 +2024-07-19 14:31:40.754 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 37/50, Train Loss: 0.033303462485591434, Val Loss: 0.03758006905381744 +2024-07-19 14:31:41.458 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 38/50, Train Loss: 0.03345217111788384, Val Loss: 0.03884168522986206 +2024-07-19 14:31:42.144 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 39/50, Train Loss: 0.0335149966142051, Val Loss: 0.03993108501104084 +2024-07-19 14:31:42.839 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 40/50, Train Loss: 0.033698038453210705, Val Loss: 0.03912432763624836 +2024-07-19 14:31:43.539 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 41/50, Train Loss: 0.03339759603602021, Val Loss: 0.0384521815623786 +2024-07-19 14:31:44.222 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 42/50, Train Loss: 0.033533674575490495, Val Loss: 0.037907105593665225 +2024-07-19 14:31:44.915 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 43/50, Train Loss: 0.03321764904571927, Val Loss: 0.038173250602306544 +2024-07-19 14:31:45.605 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 44/50, Train Loss: 0.033518995164753235, Val Loss: 0.039418724239677995 +2024-07-19 14:31:46.302 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 45/50, Train Loss: 0.033362666502186694, Val Loss: 0.037834987145017936 +2024-07-19 14:31:46.994 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 46/50, Train Loss: 0.03318282667777105, Val Loss: 0.037741432218132795 +2024-07-19 14:31:47.697 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 47/50, Train Loss: 0.03332455301249068, Val Loss: 0.03757700470049639 +2024-07-19 14:31:48.395 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 48/50, Train Loss: 0.033115759581225375, Val Loss: 0.038036222896865896 +2024-07-19 14:31:49.116 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 49/50, Train Loss: 0.0331638717309457, Val Loss: 0.03831202773427641 +2024-07-19 14:31:49.831 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 50/50, Train Loss: 0.03319264372989331, Val Loss: 0.03755410805948683 +2024-07-19 14:31:49.831 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Fold 3, MAPE: 6.20% +2024-07-19 14:31:49.936 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Training image saved at metaflow_models//bgd_office_25001_50000_LSTM//train_f3_bgd_office_25001_50000_LSTM.png +2024-07-19 14:31:50.824 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 1/50, Train Loss: 0.03358389359417852, Val Loss: 0.030784952630465094 +2024-07-19 14:31:51.749 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 2/50, Train Loss: 0.03345880969069325, Val Loss: 0.03076920602974054 +2024-07-19 14:31:52.616 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 3/50, Train Loss: 0.03328852007513518, Val Loss: 0.030905048992182757 +2024-07-19 14:31:53.494 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 4/50, Train Loss: 0.033202437729994344, Val Loss: 0.030947538948542363 +2024-07-19 14:31:54.326 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 5/50, Train Loss: 0.033063637461144844, Val Loss: 0.031017169809421978 +2024-07-19 14:31:55.159 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 6/50, Train Loss: 0.033127085418327824, Val Loss: 0.03137223201023566 +2024-07-19 14:31:56.000 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 7/50, Train Loss: 0.033066717406304985, Val Loss: 0.03066628919662656 +2024-07-19 14:31:56.875 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 8/50, Train Loss: 0.032876422408722586, Val Loss: 0.03151136757554235 +2024-07-19 14:31:57.723 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 9/50, Train Loss: 0.03294193329146275, Val Loss: 0.031332930449295686 +2024-07-19 14:31:58.573 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 10/50, Train Loss: 0.032954595737404876, Val Loss: 0.031213215879491857 +2024-07-19 14:31:59.429 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 11/50, Train Loss: 0.0328868314634067, Val Loss: 0.03142554237431771 +2024-07-19 14:32:00.275 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 12/50, Train Loss: 0.03298124160290092, Val Loss: 0.03141630028147955 +2024-07-19 14:32:01.149 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 13/50, Train Loss: 0.03288602933369495, Val Loss: 0.03171389439218753 +2024-07-19 14:32:02.005 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 14/50, Train Loss: 0.032893364962476954, Val Loss: 0.031458326137146435 +2024-07-19 14:32:02.885 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 15/50, Train Loss: 0.032917257879379686, Val Loss: 0.03230044905196976 +2024-07-19 14:32:03.730 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 16/50, Train Loss: 0.032940233581709666, Val Loss: 0.03148923069238663 +2024-07-19 14:32:04.571 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 17/50, Train Loss: 0.0328530901684784, Val Loss: 0.03154916819688436 +2024-07-19 14:32:05.407 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 18/50, Train Loss: 0.03269836843873446, Val Loss: 0.031588985559505386 +2024-07-19 14:32:06.251 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 19/50, Train Loss: 0.0328140328587084, Val Loss: 0.0316216388868319 +2024-07-19 14:32:07.092 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 20/50, Train Loss: 0.032678337716548655, Val Loss: 0.03198609103423518 +2024-07-19 14:32:07.941 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 21/50, Train Loss: 0.032702113286806986, Val Loss: 0.03202494712093392 +2024-07-19 14:32:08.793 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 22/50, Train Loss: 0.03278338409202931, Val Loss: 0.031170900860750996 +2024-07-19 14:32:09.664 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 23/50, Train Loss: 0.0326189702366489, Val Loss: 0.031211250537150615 +2024-07-19 14:32:10.518 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 24/50, Train Loss: 0.032560914171511655, Val Loss: 0.03116124913700529 +2024-07-19 14:32:11.400 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 25/50, Train Loss: 0.032485561476058356, Val Loss: 0.031253322858262704 +2024-07-19 14:32:12.242 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 26/50, Train Loss: 0.032441389337591414, Val Loss: 0.03103955079977577 +2024-07-19 14:32:13.096 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 27/50, Train Loss: 0.03255885568764675, Val Loss: 0.03083661515769121 +2024-07-19 14:32:13.936 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 28/50, Train Loss: 0.03252620938755981, Val Loss: 0.031259421007456004 +2024-07-19 14:32:14.821 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 29/50, Train Loss: 0.03250524974786318, Val Loss: 0.031248337161299343 +2024-07-19 14:32:15.675 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 30/50, Train Loss: 0.03230494469056254, Val Loss: 0.03137839464722453 +2024-07-19 14:32:16.528 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 31/50, Train Loss: 0.03236330566149983, Val Loss: 0.0312798545771354 +2024-07-19 14:32:17.367 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 32/50, Train Loss: 0.032353947235905865, Val Loss: 0.030839880223612528 +2024-07-19 14:32:18.231 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 33/50, Train Loss: 0.0324455493917832, Val Loss: 0.0310876104175239 +2024-07-19 14:32:19.106 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 34/50, Train Loss: 0.03210285792618499, Val Loss: 0.031018761011797027 +2024-07-19 14:32:20.005 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 35/50, Train Loss: 0.032100621032641156, Val Loss: 0.030567970932335466 +2024-07-19 14:32:20.872 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 36/50, Train Loss: 0.03221928276592395, Val Loss: 0.030839307384716498 +2024-07-19 14:32:21.743 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 37/50, Train Loss: 0.03214517037210229, Val Loss: 0.031043236974526097 +2024-07-19 14:32:22.594 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 38/50, Train Loss: 0.03214831564800589, Val Loss: 0.030630332442957 +2024-07-19 14:32:23.464 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 39/50, Train Loss: 0.0321743451365894, Val Loss: 0.030813902666842617 +2024-07-19 14:32:24.318 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 40/50, Train Loss: 0.03214138750355322, Val Loss: 0.030647165922297014 +2024-07-19 14:32:25.164 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 41/50, Train Loss: 0.03246167574364405, Val Loss: 0.030444257263396238 +2024-07-19 14:32:26.018 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 42/50, Train Loss: 0.03227538240889272, Val Loss: 0.030407710000872612 +2024-07-19 14:32:26.899 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 43/50, Train Loss: 0.03198179998690938, Val Loss: 0.030845018053376996 +2024-07-19 14:32:27.758 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 44/50, Train Loss: 0.03228839588157096, Val Loss: 0.030225369022101968 +2024-07-19 14:32:28.617 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 45/50, Train Loss: 0.032153839618991036, Val Loss: 0.030312629315901448 +2024-07-19 14:32:29.436 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 46/50, Train Loss: 0.032077833564931546, Val Loss: 0.030547385733272578 +2024-07-19 14:32:30.271 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 47/50, Train Loss: 0.0318223693930022, Val Loss: 0.030610014357276866 +2024-07-19 14:32:31.143 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 48/50, Train Loss: 0.031753819538178026, Val Loss: 0.03079543514428912 +2024-07-19 14:32:32.007 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 49/50, Train Loss: 0.031741600340375535, Val Loss: 0.030768901663454803 +2024-07-19 14:32:32.864 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Epoch 50/50, Train Loss: 0.03173835581721186, Val Loss: 0.030452936384323483 +2024-07-19 14:32:32.865 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Fold 4, MAPE: 5.51% +2024-07-19 14:32:32.977 [9/cross_validate_train/89 (pid 1545)] INFO:__main__:Training image saved at metaflow_models//bgd_office_25001_50000_LSTM//train_f4_bgd_office_25001_50000_LSTM.png +2024-07-19 14:32:37.063 [9/cross_validate_train/89 (pid 1545)] Task finished successfully. +2024-07-19 14:32:37.092 [9/model_scores/90 (pid 2120)] Task is starting. +2024-07-19 14:32:38.554 [9/model_scores/90 (pid 2120)] INFO:__main__:Average Train Loss across all folds: 0.0359871569182474 +2024-07-19 14:32:42.543 [9/model_scores/90 (pid 2120)] INFO:__main__:Average Validation Loss across all folds: 0.04128956874782169 +2024-07-19 14:32:42.543 [9/model_scores/90 (pid 2120)] INFO:__main__:Average MAPE across all folds: 6.33% +2024-07-19 14:32:42.544 [9/model_scores/90 (pid 2120)] Task finished successfully. +2024-07-19 14:32:42.582 [9/validate_model/91 (pid 2184)] Task is starting. +2024-07-19 14:32:44.076 [9/validate_model/91 (pid 2184)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:32:44.174 [9/validate_model/91 (pid 2184)] INFO:__main__:Test Set MAPE: 5.83% +2024-07-19 14:32:44.503 [9/validate_model/91 (pid 2184)] INFO:__main__:Test image saved at metaflow_models//bgd_office_25001_50000_LSTM//test_bgd_office_25001_50000_LSTM.png +2024-07-19 14:32:44.956 [9/validate_model/91 (pid 2184)] Task finished successfully. +2024-07-19 14:32:44.991 [9/log_model/92 (pid 2201)] Task is starting. +2024-07-19 14:32:46.476 [9/log_model/92 (pid 2201)] INFO:__main__:Logging model bgd_office_25001_50000_LSTM +2024-07-19 14:32:46.477 [9/log_model/92 (pid 2201)] INFO:__main__:Model logged at metaflow_models//bgd_office_25001_50000_LSTM//bgd_office_25001_50000_LSTM.pth +2024-07-19 14:32:50.366 [9/log_model/92 (pid 2201)] Task finished successfully. +2024-07-19 14:32:50.398 [9/end/93 (pid 2242)] Task is starting. +2024-07-19 14:32:51.866 [9/end/93 (pid 2242)] INFO:__main__:Pipeline end. +2024-07-19 14:32:52.189 [9/end/93 (pid 2242)] Task finished successfully. +2024-07-19 14:32:52.190 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/scaler_bgd_office_25001_50000_LSTM.pkl b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/scaler_bgd_office_25001_50000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..0e36acb33888847304a9da555fa842687bbd7817 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/scaler_bgd_office_25001_50000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd926191f81d78a4a56ccc6d6a78a4c2ee8eac0ea7d5a9724186bf1025835343 +size 557 diff --git a/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/test_bgd_office_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/test_bgd_office_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..4850682a0357c79f18543981748b4108dfd5c030 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/test_bgd_office_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f0_bgd_office_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f0_bgd_office_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..6f79e783499f5f1a84c99cc5b0e1c7c6ac01a7a8 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f0_bgd_office_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f1_bgd_office_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f1_bgd_office_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..03877eb9330be237b2db6307c87e867072e9eb9c Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f1_bgd_office_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f2_bgd_office_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f2_bgd_office_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..579c967717a85d04bc89d0c4bddf06567cd47b85 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f2_bgd_office_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f3_bgd_office_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f3_bgd_office_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..c2b189f5c73f52745d84b8d36e0fd12ac98c8962 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f3_bgd_office_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f4_bgd_office_25001_50000_LSTM.png b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f4_bgd_office_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..bb4c025541619f8ee6cba0c4322ae9e8605f56d0 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_25001_50000_LSTM/train_f4_bgd_office_25001_50000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/bgd_office_50001_100000_LSTM.pth b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/bgd_office_50001_100000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..e189dce516ef71acff3f0072c70d838d18369c21 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/bgd_office_50001_100000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9800903f2a1a368da6d282b97d9c4f2844027804cdde35e819987253c5ea36b +size 46746 diff --git a/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/output.txt b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..06de7a8fa73fbb2ff6eb1770946c733eb1fc397b --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/output.txt @@ -0,0 +1,736 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:42:15.474 Workflow starting (run-id 13): +2024-07-19 14:42:15.543 [13/start/137 (pid 5064)] Task is starting. +2024-07-19 14:42:17.008 [13/start/137 (pid 5064)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:42:17.302 [13/start/137 (pid 5064)] Task finished successfully. +2024-07-19 14:42:17.334 [13/ingest/138 (pid 5075)] Task is starting. +2024-07-19 14:42:18.793 [13/ingest/138 (pid 5075)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:42:18.809 [13/ingest/138 (pid 5075)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:42:22.789 [13/ingest/138 (pid 5075)] Task finished successfully. +2024-07-19 14:42:22.818 [13/pick_2017_data/139 (pid 5107)] Task is starting. +2024-07-19 14:42:24.291 [13/pick_2017_data/139 (pid 5107)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:42:24.608 [13/pick_2017_data/139 (pid 5107)] Task finished successfully. +2024-07-19 14:42:24.637 [13/fill_missing_data/140 (pid 5118)] Task is starting. +2024-07-19 14:42:26.101 [13/fill_missing_data/140 (pid 5118)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:42:26.106 [13/fill_missing_data/140 (pid 5118)] INFO:__main__:NaN counts per column: +2024-07-19 14:42:26.106 [13/fill_missing_data/140 (pid 5118)] INFO:__main__:Panther_office_Garth 11 +2024-07-19 14:42:26.106 [13/fill_missing_data/140 (pid 5118)] Fox_office_Vicki 3 +2024-07-19 14:42:26.106 [13/fill_missing_data/140 (pid 5118)] Fox_office_Joy 1 +2024-07-19 14:42:26.106 [13/fill_missing_data/140 (pid 5118)] Cockatoo_office_Margaret 112 +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] Cockatoo_office_Ada 359 +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] dtype: int64 +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] --- Logging error --- +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] Traceback (most recent call last): +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] msg = self.format(record) +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] return fmt.format(record) +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:42:26.109 [13/fill_missing_data/140 (pid 5118)] record.message = record.getMessage() +2024-07-19 14:42:26.110 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:42:26.110 [13/fill_missing_data/140 (pid 5118)] msg = msg % self.args +2024-07-19 14:42:26.110 [13/fill_missing_data/140 (pid 5118)] TypeError: not all arguments converted during string formatting +2024-07-19 14:42:26.110 [13/fill_missing_data/140 (pid 5118)] Call stack: +2024-07-19 14:42:26.110 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] BGD_LinearFlow() +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] cli.main(self) +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] return func(*args, **kwargs) +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] return self.main(*args, **kwargs) +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] rv = self.invoke(ctx) +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] return callback(*args, **kwargs) +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] task.run_step( +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] self._exec_step_function(step_func) +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] step_function() +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] Arguments: (486,) +2024-07-19 14:42:26.701 [13/fill_missing_data/140 (pid 5118)] Task finished successfully. +2024-07-19 14:42:26.734 [13/find_median/141 (pid 5135)] Task is starting. +2024-07-19 14:42:28.197 [13/find_median/141 (pid 5135)] INFO:__main__:Computing and using median.. +2024-07-19 14:42:28.726 [13/find_median/141 (pid 5135)] Task finished successfully. +2024-07-19 14:42:28.758 [13/aggregate_data/142 (pid 5148)] Task is starting. +2024-07-19 14:42:30.192 [13/aggregate_data/142 (pid 5148)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:42:34.121 [13/aggregate_data/142 (pid 5148)] Task finished successfully. +2024-07-19 14:42:34.153 [13/split_data/143 (pid 5187)] Task is starting. +2024-07-19 14:42:35.616 [13/split_data/143 (pid 5187)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:42:39.487 [13/split_data/143 (pid 5187)] Task finished successfully. +2024-07-19 14:42:39.518 [13/make_x_y/144 (pid 5219)] Task is starting. +2024-07-19 14:42:41.356 [13/make_x_y/144 (pid 5219)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:42:41.676 [13/make_x_y/144 (pid 5219)] Shape of y_train: (6978, 1) +2024-07-19 14:42:41.676 [13/make_x_y/144 (pid 5219)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:42:41.676 [13/make_x_y/144 (pid 5219)] Shape of y_test: (1722, 1) +2024-07-19 14:42:41.677 [13/make_x_y/144 (pid 5219)] Task finished successfully. +2024-07-19 14:42:41.706 [13/cross_validate_train/145 (pid 5243)] Task is starting. +2024-07-19 14:42:43.120 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Creating bgd_office_50001_100000_LSTM +2024-07-19 14:42:43.121 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Performing cross validation.. +2024-07-19 14:42:43.867 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 1/50, Train Loss: 0.1925904785056372, Val Loss: 0.19090472544367248 +2024-07-19 14:42:44.061 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 2/50, Train Loss: 0.1462239535978517, Val Loss: 0.16847594062218796 +2024-07-19 14:42:44.254 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 3/50, Train Loss: 0.13970092563210307, Val Loss: 0.16013210125871608 +2024-07-19 14:42:44.446 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 4/50, Train Loss: 0.13213679330373132, Val Loss: 0.1523448426175762 +2024-07-19 14:42:44.640 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 5/50, Train Loss: 0.12233060568168357, Val Loss: 0.14601967866356308 +2024-07-19 14:42:44.834 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 6/50, Train Loss: 0.1143149638397468, Val Loss: 0.1381308927729323 +2024-07-19 14:42:45.027 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 7/50, Train Loss: 0.10749859226917899, Val Loss: 0.1273511818333252 +2024-07-19 14:42:45.219 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 8/50, Train Loss: 0.09924391561464684, Val Loss: 0.10840205747533489 +2024-07-19 14:42:45.413 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 9/50, Train Loss: 0.0875864271577951, Val Loss: 0.08429269180507273 +2024-07-19 14:42:45.609 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 10/50, Train Loss: 0.07592501390624691, Val Loss: 0.06976674789109745 +2024-07-19 14:42:45.806 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 11/50, Train Loss: 0.06797439106614203, Val Loss: 0.06565792415593122 +2024-07-19 14:42:46.010 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 12/50, Train Loss: 0.06518684342704914, Val Loss: 0.06627484340522741 +2024-07-19 14:42:46.239 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 13/50, Train Loss: 0.06065152585506439, Val Loss: 0.06684576292094346 +2024-07-19 14:42:46.441 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 14/50, Train Loss: 0.059187717735767365, Val Loss: 0.06547561907083602 +2024-07-19 14:42:46.641 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 15/50, Train Loss: 0.0577208537205651, Val Loss: 0.06492214413309419 +2024-07-19 14:42:46.839 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 16/50, Train Loss: 0.05667957945449932, Val Loss: 0.06472016805531206 +2024-07-19 14:42:47.037 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 17/50, Train Loss: 0.054339103803441334, Val Loss: 0.06291021059292394 +2024-07-19 14:42:47.233 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 18/50, Train Loss: 0.05234519462730434, Val Loss: 0.0627968257947548 +2024-07-19 14:42:47.433 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 19/50, Train Loss: 0.050983646230117696, Val Loss: 0.06065158545970917 +2024-07-19 14:42:47.630 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 20/50, Train Loss: 0.04975943398234006, Val Loss: 0.0587636418137196 +2024-07-19 14:42:47.827 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 21/50, Train Loss: 0.0481333539292619, Val Loss: 0.058116502606788197 +2024-07-19 14:42:48.025 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 22/50, Train Loss: 0.04676053290431564, Val Loss: 0.056848294932294534 +2024-07-19 14:42:48.226 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 23/50, Train Loss: 0.04572351065439147, Val Loss: 0.05595270327820971 +2024-07-19 14:42:48.440 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 24/50, Train Loss: 0.0448418161454233, Val Loss: 0.05599829312917348 +2024-07-19 14:42:48.643 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 25/50, Train Loss: 0.044202320730766735, Val Loss: 0.057262391506417376 +2024-07-19 14:42:48.844 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 26/50, Train Loss: 0.04392330202500563, Val Loss: 0.053255448872978624 +2024-07-19 14:42:49.058 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 27/50, Train Loss: 0.04325294172441637, Val Loss: 0.05411020334105234 +2024-07-19 14:42:49.258 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 28/50, Train Loss: 0.04246986506355775, Val Loss: 0.05120088144935466 +2024-07-19 14:42:49.465 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 29/50, Train Loss: 0.042011468897800185, Val Loss: 0.05112376834291059 +2024-07-19 14:42:49.686 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 30/50, Train Loss: 0.04057558293680887, Val Loss: 0.05035094035839712 +2024-07-19 14:42:49.896 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 31/50, Train Loss: 0.04026703179083966, Val Loss: 0.04803471458522049 +2024-07-19 14:42:50.098 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 32/50, Train Loss: 0.03983597704083533, Val Loss: 0.0489877273605482 +2024-07-19 14:42:50.300 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 33/50, Train Loss: 0.038953302025392246, Val Loss: 0.04966096804049369 +2024-07-19 14:42:50.501 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 34/50, Train Loss: 0.03916567121003125, Val Loss: 0.04771798270175586 +2024-07-19 14:42:50.707 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 35/50, Train Loss: 0.039077963478661874, Val Loss: 0.04689896061412386 +2024-07-19 14:42:50.913 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 36/50, Train Loss: 0.03828985520915405, Val Loss: 0.047229027727971204 +2024-07-19 14:42:51.116 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 37/50, Train Loss: 0.037424901903078366, Val Loss: 0.04872786550707108 +2024-07-19 14:42:51.322 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 38/50, Train Loss: 0.03739604952971678, Val Loss: 0.04582632604885746 +2024-07-19 14:42:51.527 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 39/50, Train Loss: 0.037089267896639334, Val Loss: 0.04523916889888209 +2024-07-19 14:42:51.731 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 40/50, Train Loss: 0.0364293693187269, Val Loss: 0.046238641632167066 +2024-07-19 14:42:51.935 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 41/50, Train Loss: 0.03612832156186168, Val Loss: 0.04242839709528395 +2024-07-19 14:42:52.137 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 42/50, Train Loss: 0.03477421141154057, Val Loss: 0.04328433801797596 +2024-07-19 14:42:52.340 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 43/50, Train Loss: 0.03434890931522524, Val Loss: 0.042337232042808794 +2024-07-19 14:42:52.542 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 44/50, Train Loss: 0.033713165066532186, Val Loss: 0.039592132375047016 +2024-07-19 14:42:52.746 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 45/50, Train Loss: 0.0333144073248715, Val Loss: 0.04241808111200462 +2024-07-19 14:42:52.949 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 46/50, Train Loss: 0.03337191312095603, Val Loss: 0.042099711862770284 +2024-07-19 14:42:53.153 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 47/50, Train Loss: 0.03400275604547681, Val Loss: 0.039888748999785735 +2024-07-19 14:42:53.358 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 48/50, Train Loss: 0.03338780772645731, Val Loss: 0.0408003757632262 +2024-07-19 14:42:53.560 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 49/50, Train Loss: 0.03392318374401814, Val Loss: 0.037661531990444336 +2024-07-19 14:42:53.766 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 50/50, Train Loss: 0.03336877395977845, Val Loss: 0.0378873996637963 +2024-07-19 14:42:53.766 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Fold 0, MAPE: 3.62% +2024-07-19 14:42:54.166 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Training image saved at metaflow_models//bgd_office_50001_100000_LSTM//train_f0_bgd_office_50001_100000_LSTM.png +2024-07-19 14:42:54.602 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 1/50, Train Loss: 0.028956992526168693, Val Loss: 0.029809903756186768 +2024-07-19 14:42:54.944 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 2/50, Train Loss: 0.028489734326833733, Val Loss: 0.03260588666071763 +2024-07-19 14:42:55.288 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 3/50, Train Loss: 0.027038623502299394, Val Loss: 0.029266591762771476 +2024-07-19 14:42:55.663 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 4/50, Train Loss: 0.02675328820892801, Val Loss: 0.028577003426648474 +2024-07-19 14:42:56.008 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 5/50, Train Loss: 0.026647059706180063, Val Loss: 0.028710622541807795 +2024-07-19 14:42:56.353 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 6/50, Train Loss: 0.026669824891404747, Val Loss: 0.0292212629338374 +2024-07-19 14:42:56.698 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 7/50, Train Loss: 0.026541242937315, Val Loss: 0.026609572959510056 +2024-07-19 14:42:57.042 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 8/50, Train Loss: 0.026022822315460197, Val Loss: 0.02621001855948487 +2024-07-19 14:42:57.385 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 9/50, Train Loss: 0.025892002316676592, Val Loss: 0.025510938259194028 +2024-07-19 14:42:57.732 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 10/50, Train Loss: 0.02562962927893825, Val Loss: 0.026210922672337777 +2024-07-19 14:42:58.078 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 11/50, Train Loss: 0.02514438438293052, Val Loss: 0.025836799042047682 +2024-07-19 14:42:58.433 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 12/50, Train Loss: 0.024789877057279627, Val Loss: 0.024799355884661544 +2024-07-19 14:42:58.778 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 13/50, Train Loss: 0.024847779129568027, Val Loss: 0.024297335663357296 +2024-07-19 14:42:59.122 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 14/50, Train Loss: 0.02440482324423039, Val Loss: 0.026292032537025375 +2024-07-19 14:42:59.468 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 15/50, Train Loss: 0.024242349504812123, Val Loss: 0.024027712064216267 +2024-07-19 14:42:59.814 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 16/50, Train Loss: 0.023960514963693814, Val Loss: 0.02471120217563333 +2024-07-19 14:43:00.161 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 17/50, Train Loss: 0.024181957139748418, Val Loss: 0.02454730838134482 +2024-07-19 14:43:00.509 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 18/50, Train Loss: 0.02448246505570738, Val Loss: 0.02490662073565496 +2024-07-19 14:43:00.856 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 19/50, Train Loss: 0.024031249040814294, Val Loss: 0.024513625816718954 +2024-07-19 14:43:01.222 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 20/50, Train Loss: 0.024561444157096622, Val Loss: 0.024578480754752417 +2024-07-19 14:43:01.570 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 21/50, Train Loss: 0.024427927124683987, Val Loss: 0.02407655379156003 +2024-07-19 14:43:01.920 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 22/50, Train Loss: 0.02354106358061098, Val Loss: 0.02423121835533026 +2024-07-19 14:43:02.266 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 23/50, Train Loss: 0.023711179332067706, Val Loss: 0.024494691122625326 +2024-07-19 14:43:02.613 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 24/50, Train Loss: 0.023368214486702663, Val Loss: 0.02413155042843239 +2024-07-19 14:43:02.959 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 25/50, Train Loss: 0.023598907974688974, Val Loss: 0.023229745317351173 +2024-07-19 14:43:03.307 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 26/50, Train Loss: 0.023779044399828943, Val Loss: 0.024959717826867425 +2024-07-19 14:43:03.654 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 27/50, Train Loss: 0.02384100601791519, Val Loss: 0.022903002899240802 +2024-07-19 14:43:04.005 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 28/50, Train Loss: 0.024132402371360013, Val Loss: 0.023642998616639023 +2024-07-19 14:43:04.351 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 29/50, Train Loss: 0.023404973954574703, Val Loss: 0.023642284644616617 +2024-07-19 14:43:04.700 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 30/50, Train Loss: 0.023822732920413963, Val Loss: 0.02354461417810337 +2024-07-19 14:43:05.048 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 31/50, Train Loss: 0.02342860578010752, Val Loss: 0.023514193130304683 +2024-07-19 14:43:05.396 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 32/50, Train Loss: 0.02338448280392036, Val Loss: 0.024192453160680628 +2024-07-19 14:43:05.744 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 33/50, Train Loss: 0.023398475887330426, Val Loss: 0.023595092843311863 +2024-07-19 14:43:06.092 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 34/50, Train Loss: 0.023258010984385666, Val Loss: 0.024116791860275977 +2024-07-19 14:43:06.438 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 35/50, Train Loss: 0.023105705361047835, Val Loss: 0.022663378987360646 +2024-07-19 14:43:06.785 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 36/50, Train Loss: 0.023401906280076667, Val Loss: 0.02311899930842825 +2024-07-19 14:43:07.131 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 37/50, Train Loss: 0.023306697568766875, Val Loss: 0.022911260080699984 +2024-07-19 14:43:07.476 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 38/50, Train Loss: 0.02350208724606527, Val Loss: 0.02320990985813173 +2024-07-19 14:43:07.822 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 39/50, Train Loss: 0.023519721877289144, Val Loss: 0.023652922991361167 +2024-07-19 14:43:08.180 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 40/50, Train Loss: 0.023682730246896613, Val Loss: 0.02320770504003441 +2024-07-19 14:43:08.533 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 41/50, Train Loss: 0.023209124931121525, Val Loss: 0.02297649099617391 +2024-07-19 14:43:08.880 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 42/50, Train Loss: 0.023456244104324956, Val Loss: 0.02268744635118826 +2024-07-19 14:43:09.238 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 43/50, Train Loss: 0.023551014800594277, Val Loss: 0.02322241905573252 +2024-07-19 14:43:09.587 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 44/50, Train Loss: 0.023217913350217962, Val Loss: 0.02269512729568256 +2024-07-19 14:43:09.945 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 45/50, Train Loss: 0.023337422028081874, Val Loss: 0.022622848835748596 +2024-07-19 14:43:10.292 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 46/50, Train Loss: 0.02328857173505303, Val Loss: 0.022595079691224807 +2024-07-19 14:43:10.641 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 47/50, Train Loss: 0.023196081452275794, Val Loss: 0.022926562188847643 +2024-07-19 14:43:11.004 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 48/50, Train Loss: 0.023042820802290146, Val Loss: 0.02213803175333384 +2024-07-19 14:43:11.356 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 49/50, Train Loss: 0.023129919556620186, Val Loss: 0.022297390283563652 +2024-07-19 14:43:11.704 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 50/50, Train Loss: 0.02289706353761562, Val Loss: 0.022164603443564596 +2024-07-19 14:43:11.704 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Fold 1, MAPE: 2.43% +2024-07-19 14:43:11.809 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Training image saved at metaflow_models//bgd_office_50001_100000_LSTM//train_f1_bgd_office_50001_100000_LSTM.png +2024-07-19 14:43:12.458 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 1/50, Train Loss: 0.021122389557686718, Val Loss: 0.021627053693943733 +2024-07-19 14:43:13.123 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 2/50, Train Loss: 0.021042469787326726, Val Loss: 0.020541017547853896 +2024-07-19 14:43:13.640 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 3/50, Train Loss: 0.020907512747428632, Val Loss: 0.020192689665064618 +2024-07-19 14:43:14.143 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 4/50, Train Loss: 0.020685610302131285, Val Loss: 0.020445660461445112 +2024-07-19 14:43:14.637 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 5/50, Train Loss: 0.02085316264155236, Val Loss: 0.01957377849297749 +2024-07-19 14:43:15.160 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 6/50, Train Loss: 0.020215809031982314, Val Loss: 0.020049406114864995 +2024-07-19 14:43:15.656 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 7/50, Train Loss: 0.020683732950551943, Val Loss: 0.020603583294998954 +2024-07-19 14:43:16.156 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 8/50, Train Loss: 0.020534594255414877, Val Loss: 0.019418045022600406 +2024-07-19 14:43:16.653 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 9/50, Train Loss: 0.02013622753491456, Val Loss: 0.020314658815796312 +2024-07-19 14:43:17.150 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 10/50, Train Loss: 0.020593312425030902, Val Loss: 0.020474467829272553 +2024-07-19 14:43:17.647 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 11/50, Train Loss: 0.020634947751056065, Val Loss: 0.020018064744166425 +2024-07-19 14:43:18.147 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 12/50, Train Loss: 0.02043102438646284, Val Loss: 0.020667132317415765 +2024-07-19 14:43:18.655 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 13/50, Train Loss: 0.0204350578090684, Val Loss: 0.020569424421803373 +2024-07-19 14:43:19.154 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 14/50, Train Loss: 0.020557354119690983, Val Loss: 0.020349445450748946 +2024-07-19 14:43:19.651 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 15/50, Train Loss: 0.020645641400055453, Val Loss: 0.019767497213104286 +2024-07-19 14:43:20.148 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 16/50, Train Loss: 0.02076378624716943, Val Loss: 0.01986310016867277 +2024-07-19 14:43:20.649 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 17/50, Train Loss: 0.0203440808521753, Val Loss: 0.021171512686320254 +2024-07-19 14:43:21.154 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 18/50, Train Loss: 0.020266222454268824, Val Loss: 0.020514418723414075 +2024-07-19 14:43:21.651 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 19/50, Train Loss: 0.0203473958525468, Val Loss: 0.02096384293022188 +2024-07-19 14:43:22.152 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 20/50, Train Loss: 0.02024898043071682, Val Loss: 0.020740893996647886 +2024-07-19 14:43:22.665 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 21/50, Train Loss: 0.020380304973911155, Val Loss: 0.019742524075145658 +2024-07-19 14:43:23.176 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 22/50, Train Loss: 0.020345489418303424, Val Loss: 0.019452370073948358 +2024-07-19 14:43:23.687 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 23/50, Train Loss: 0.02008511581542817, Val Loss: 0.019882529319540876 +2024-07-19 14:43:24.199 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 24/50, Train Loss: 0.020665209164673633, Val Loss: 0.019871549378778483 +2024-07-19 14:43:24.703 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 25/50, Train Loss: 0.02026711833578619, Val Loss: 0.01987376914837876 +2024-07-19 14:43:25.209 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 26/50, Train Loss: 0.02016716187142513, Val Loss: 0.01984159937883551 +2024-07-19 14:43:25.715 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 27/50, Train Loss: 0.020072923829271033, Val Loss: 0.020447223044529155 +2024-07-19 14:43:26.243 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 28/50, Train Loss: 0.02037978506731716, Val Loss: 0.020113940224856942 +2024-07-19 14:43:26.867 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 29/50, Train Loss: 0.019850091813978822, Val Loss: 0.02022164554108639 +2024-07-19 14:43:27.401 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 30/50, Train Loss: 0.020012779034335505, Val Loss: 0.020508017416137295 +2024-07-19 14:43:27.963 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 31/50, Train Loss: 0.019671974703669548, Val Loss: 0.019829955858153267 +2024-07-19 14:43:28.500 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 32/50, Train Loss: 0.019931794000281527, Val Loss: 0.02058578551923101 +2024-07-19 14:43:29.022 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 33/50, Train Loss: 0.01999402256174521, Val Loss: 0.020659337172637116 +2024-07-19 14:43:29.564 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 34/50, Train Loss: 0.02015667883679271, Val Loss: 0.020865855939887667 +2024-07-19 14:43:30.085 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 35/50, Train Loss: 0.019928110086105087, Val Loss: 0.0196026985004947 +2024-07-19 14:43:30.622 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 36/50, Train Loss: 0.020045487413352187, Val Loss: 0.020352268792890215 +2024-07-19 14:43:31.148 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 37/50, Train Loss: 0.02019956721500917, Val Loss: 0.019732317761392205 +2024-07-19 14:43:31.649 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 38/50, Train Loss: 0.02019080367277969, Val Loss: 0.019418000444971228 +2024-07-19 14:43:32.148 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 39/50, Train Loss: 0.02003044614737684, Val Loss: 0.01948345809973575 +2024-07-19 14:43:32.655 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 40/50, Train Loss: 0.019882809700952336, Val Loss: 0.01977963831175018 +2024-07-19 14:43:33.151 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 41/50, Train Loss: 0.02032929211008278, Val Loss: 0.021207170208563674 +2024-07-19 14:43:33.650 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 42/50, Train Loss: 0.02025966343723915, Val Loss: 0.020069412308166158 +2024-07-19 14:43:34.151 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 43/50, Train Loss: 0.020047149002890695, Val Loss: 0.019932168183495868 +2024-07-19 14:43:34.651 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 44/50, Train Loss: 0.01955950450660153, Val Loss: 0.019852884969598538 +2024-07-19 14:43:35.147 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 45/50, Train Loss: 0.020027523961934177, Val Loss: 0.019532825017498957 +2024-07-19 14:43:35.641 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 46/50, Train Loss: 0.019825394155288285, Val Loss: 0.020230693490924063 +2024-07-19 14:43:36.137 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 47/50, Train Loss: 0.019936397688632663, Val Loss: 0.019859043604417426 +2024-07-19 14:43:36.637 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 48/50, Train Loss: 0.019983363735743543, Val Loss: 0.01976074799391869 +2024-07-19 14:43:37.132 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 49/50, Train Loss: 0.01995925788174976, Val Loss: 0.02017134735109033 +2024-07-19 14:43:37.628 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 50/50, Train Loss: 0.01968541962348602, Val Loss: 0.019611610351382074 +2024-07-19 14:43:37.628 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Fold 2, MAPE: 2.03% +2024-07-19 14:43:37.735 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Training image saved at metaflow_models//bgd_office_50001_100000_LSTM//train_f2_bgd_office_50001_100000_LSTM.png +2024-07-19 14:43:38.392 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 1/50, Train Loss: 0.01777930419943104, Val Loss: 0.021290958305267064 +2024-07-19 14:43:39.046 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 2/50, Train Loss: 0.018450505986860762, Val Loss: 0.021299229280368703 +2024-07-19 14:43:39.704 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 3/50, Train Loss: 0.01839085123565507, Val Loss: 0.023341749064825678 +2024-07-19 14:43:40.355 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 4/50, Train Loss: 0.01799860039139039, Val Loss: 0.02169445451550387 +2024-07-19 14:43:41.016 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 5/50, Train Loss: 0.018190067338004504, Val Loss: 0.022501127593017912 +2024-07-19 14:43:41.658 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 6/50, Train Loss: 0.0181908290897024, Val Loss: 0.022221883406510223 +2024-07-19 14:43:42.303 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 7/50, Train Loss: 0.017889362740751407, Val Loss: 0.021567783167434705 +2024-07-19 14:43:42.943 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 8/50, Train Loss: 0.018070338568203663, Val Loss: 0.021831051219959517 +2024-07-19 14:43:43.586 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 9/50, Train Loss: 0.01807053088631532, Val Loss: 0.022655849470882804 +2024-07-19 14:43:44.233 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 10/50, Train Loss: 0.01791232646991537, Val Loss: 0.02128646067167456 +2024-07-19 14:43:44.882 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 11/50, Train Loss: 0.017838130456280625, Val Loss: 0.02127184610612489 +2024-07-19 14:43:45.681 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 12/50, Train Loss: 0.01795337564783962, Val Loss: 0.02185423964181462 +2024-07-19 14:43:46.492 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 13/50, Train Loss: 0.017751700149160134, Val Loss: 0.022034003877559223 +2024-07-19 14:43:47.270 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 14/50, Train Loss: 0.017717150480116475, Val Loss: 0.021469391328660218 +2024-07-19 14:43:47.994 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 15/50, Train Loss: 0.01795505387198231, Val Loss: 0.021881726847307104 +2024-07-19 14:43:48.642 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 16/50, Train Loss: 0.017864203112429543, Val Loss: 0.022117573516191664 +2024-07-19 14:43:49.286 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 17/50, Train Loss: 0.017896959577266076, Val Loss: 0.021714715136064065 +2024-07-19 14:43:49.929 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 18/50, Train Loss: 0.01796214302287322, Val Loss: 0.022312497820805858 +2024-07-19 14:43:50.576 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 19/50, Train Loss: 0.01777519620572255, Val Loss: 0.021690011578234466 +2024-07-19 14:43:51.230 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 20/50, Train Loss: 0.017690379689256214, Val Loss: 0.022416882518980955 +2024-07-19 14:43:51.889 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 21/50, Train Loss: 0.017698623775823475, Val Loss: 0.021821649543739653 +2024-07-19 14:43:52.543 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 22/50, Train Loss: 0.017656979865509355, Val Loss: 0.021609662402723287 +2024-07-19 14:43:53.190 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 23/50, Train Loss: 0.017753953694633832, Val Loss: 0.02159393480601343 +2024-07-19 14:43:53.860 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 24/50, Train Loss: 0.017795396375482622, Val Loss: 0.02213567596029591 +2024-07-19 14:43:54.530 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 25/50, Train Loss: 0.0176772018256661, Val Loss: 0.02195051750419913 +2024-07-19 14:43:55.183 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 26/50, Train Loss: 0.01760199953712625, Val Loss: 0.02173818733442474 +2024-07-19 14:43:55.838 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 27/50, Train Loss: 0.01761214159531136, Val Loss: 0.02202296689958186 +2024-07-19 14:43:56.497 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 28/50, Train Loss: 0.017891161807187615, Val Loss: 0.02187630453625241 +2024-07-19 14:43:57.177 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 29/50, Train Loss: 0.017818110899310815, Val Loss: 0.02144518884754664 +2024-07-19 14:43:57.861 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 30/50, Train Loss: 0.01760377994521636, Val Loss: 0.02166213175734958 +2024-07-19 14:43:58.542 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 31/50, Train Loss: 0.01742834264846289, Val Loss: 0.0216019171214587 +2024-07-19 14:43:59.190 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 32/50, Train Loss: 0.017528770070471992, Val Loss: 0.021316662481105007 +2024-07-19 14:43:59.843 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 33/50, Train Loss: 0.01746361215968859, Val Loss: 0.021742849988309113 +2024-07-19 14:44:00.521 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 34/50, Train Loss: 0.017636621696236608, Val Loss: 0.023074948153383023 +2024-07-19 14:44:01.247 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 35/50, Train Loss: 0.017447457827423532, Val Loss: 0.021373842565997225 +2024-07-19 14:44:01.921 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 36/50, Train Loss: 0.017347828325598617, Val Loss: 0.02138789718014163 +2024-07-19 14:44:02.597 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 37/50, Train Loss: 0.017586806431820947, Val Loss: 0.022716667402434994 +2024-07-19 14:44:03.281 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 38/50, Train Loss: 0.01752419274121727, Val Loss: 0.02205404155963176 +2024-07-19 14:44:03.965 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 39/50, Train Loss: 0.01757891002838334, Val Loss: 0.02264981480264986 +2024-07-19 14:44:04.645 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 40/50, Train Loss: 0.017453785934676863, Val Loss: 0.022026799770223128 +2024-07-19 14:44:05.320 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 41/50, Train Loss: 0.01752547885304036, Val Loss: 0.02177751056749273 +2024-07-19 14:44:05.984 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 42/50, Train Loss: 0.017365518459820584, Val Loss: 0.021495696710976394 +2024-07-19 14:44:06.673 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 43/50, Train Loss: 0.01727434151410444, Val Loss: 0.02147925499121885 +2024-07-19 14:44:07.342 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 44/50, Train Loss: 0.0174966274556538, Val Loss: 0.021526254436655623 +2024-07-19 14:44:08.012 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 45/50, Train Loss: 0.017268157768229098, Val Loss: 0.02270070443282256 +2024-07-19 14:44:08.688 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 46/50, Train Loss: 0.017451469473898, Val Loss: 0.02173769733289609 +2024-07-19 14:44:09.372 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 47/50, Train Loss: 0.017312146672239043, Val Loss: 0.022724961408892193 +2024-07-19 14:44:10.062 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 48/50, Train Loss: 0.017371964787630593, Val Loss: 0.021862957198676224 +2024-07-19 14:44:10.754 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 49/50, Train Loss: 0.017368726827816604, Val Loss: 0.021643520609752553 +2024-07-19 14:44:11.457 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 50/50, Train Loss: 0.017295719251955208, Val Loss: 0.02237895626977489 +2024-07-19 14:44:11.458 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Fold 3, MAPE: 2.94% +2024-07-19 14:44:11.560 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Training image saved at metaflow_models//bgd_office_50001_100000_LSTM//train_f3_bgd_office_50001_100000_LSTM.png +2024-07-19 14:44:12.400 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 1/50, Train Loss: 0.017496534408285067, Val Loss: 0.019292997322171122 +2024-07-19 14:44:13.254 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 2/50, Train Loss: 0.017176715872035578, Val Loss: 0.017694292866901773 +2024-07-19 14:44:14.092 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 3/50, Train Loss: 0.017541697126004722, Val Loss: 0.01856650912983192 +2024-07-19 14:44:14.925 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 4/50, Train Loss: 0.01748062203546147, Val Loss: 0.018465196940343123 +2024-07-19 14:44:15.752 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 5/50, Train Loss: 0.017276629764627623, Val Loss: 0.01813782681081746 +2024-07-19 14:44:16.571 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 6/50, Train Loss: 0.017257785588339136, Val Loss: 0.018357779327276592 +2024-07-19 14:44:17.460 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 7/50, Train Loss: 0.017283319956162474, Val Loss: 0.018190716770855157 +2024-07-19 14:44:18.276 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 8/50, Train Loss: 0.017285179561720446, Val Loss: 0.018161517341394682 +2024-07-19 14:44:19.083 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 9/50, Train Loss: 0.01717507832038861, Val Loss: 0.018667739715326478 +2024-07-19 14:44:19.883 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 10/50, Train Loss: 0.017049270047509408, Val Loss: 0.01844594645238406 +2024-07-19 14:44:20.682 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 11/50, Train Loss: 0.01724658705867254, Val Loss: 0.018508192252468417 +2024-07-19 14:44:21.487 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 12/50, Train Loss: 0.016998015359494384, Val Loss: 0.01800026575959212 +2024-07-19 14:44:22.302 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 13/50, Train Loss: 0.016903294122440148, Val Loss: 0.01726066421818089 +2024-07-19 14:44:23.130 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 14/50, Train Loss: 0.017176514036011892, Val Loss: 0.01724932576856903 +2024-07-19 14:44:23.953 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 15/50, Train Loss: 0.01698941376142122, Val Loss: 0.01928118976286134 +2024-07-19 14:44:24.798 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 16/50, Train Loss: 0.01701115176163532, Val Loss: 0.01778379875562481 +2024-07-19 14:44:25.620 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 17/50, Train Loss: 0.017177359415934637, Val Loss: 0.018352462532552512 +2024-07-19 14:44:26.479 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 18/50, Train Loss: 0.016909499192139604, Val Loss: 0.017157002276665455 +2024-07-19 14:44:27.302 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 19/50, Train Loss: 0.016831260921617786, Val Loss: 0.0179862697180864 +2024-07-19 14:44:28.127 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 20/50, Train Loss: 0.017021648115017912, Val Loss: 0.01767357438802719 +2024-07-19 14:44:28.970 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 21/50, Train Loss: 0.016904539423534176, Val Loss: 0.018085192159019613 +2024-07-19 14:44:29.805 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 22/50, Train Loss: 0.016909414083584325, Val Loss: 0.017075016641536274 +2024-07-19 14:44:30.640 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 23/50, Train Loss: 0.016760815308521408, Val Loss: 0.017692005412804114 +2024-07-19 14:44:31.506 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 24/50, Train Loss: 0.016904076310591057, Val Loss: 0.01817923887456591 +2024-07-19 14:44:32.349 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 25/50, Train Loss: 0.016856767728433503, Val Loss: 0.01694048734734187 +2024-07-19 14:44:33.213 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 26/50, Train Loss: 0.017186752653547695, Val Loss: 0.017556296737008804 +2024-07-19 14:44:34.052 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 27/50, Train Loss: 0.016749934625944922, Val Loss: 0.017014465722683315 +2024-07-19 14:44:34.859 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 28/50, Train Loss: 0.016967840262453307, Val Loss: 0.018215341166265914 +2024-07-19 14:44:35.664 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 29/50, Train Loss: 0.016735224078849448, Val Loss: 0.018893816407669236 +2024-07-19 14:44:36.471 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 30/50, Train Loss: 0.01677233961175431, Val Loss: 0.017205397522932774 +2024-07-19 14:44:37.276 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 31/50, Train Loss: 0.01671286287543538, Val Loss: 0.018059280524785455 +2024-07-19 14:44:38.105 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 32/50, Train Loss: 0.016798258385528904, Val Loss: 0.018013313211299276 +2024-07-19 14:44:38.948 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 33/50, Train Loss: 0.016681102749246817, Val Loss: 0.018348381225321744 +2024-07-19 14:44:39.805 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 34/50, Train Loss: 0.01675543038604351, Val Loss: 0.01813726653219075 +2024-07-19 14:44:40.661 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 35/50, Train Loss: 0.016674815671989224, Val Loss: 0.017476505700599502 +2024-07-19 14:44:41.515 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 36/50, Train Loss: 0.016719872740885384, Val Loss: 0.017921717585744085 +2024-07-19 14:44:42.356 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 37/50, Train Loss: 0.01658942567819095, Val Loss: 0.018726988066289876 +2024-07-19 14:44:43.195 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 38/50, Train Loss: 0.016734124145951573, Val Loss: 0.01750779232463321 +2024-07-19 14:44:44.098 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 39/50, Train Loss: 0.01674379323926437, Val Loss: 0.01849731938863123 +2024-07-19 14:44:44.934 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 40/50, Train Loss: 0.01644666987256362, Val Loss: 0.017427559790981782 +2024-07-19 14:44:45.762 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 41/50, Train Loss: 0.016616149089084223, Val Loss: 0.017732819265409094 +2024-07-19 14:44:46.605 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 42/50, Train Loss: 0.01666674195471537, Val Loss: 0.019024942221271025 +2024-07-19 14:44:47.443 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 43/50, Train Loss: 0.01654942609513035, Val Loss: 0.018592765756152773 +2024-07-19 14:44:48.268 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 44/50, Train Loss: 0.01647688756993675, Val Loss: 0.018697691275864035 +2024-07-19 14:44:49.117 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 45/50, Train Loss: 0.01660749080826293, Val Loss: 0.02083219774067402 +2024-07-19 14:44:49.960 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 46/50, Train Loss: 0.016517565856882178, Val Loss: 0.01829148448903013 +2024-07-19 14:44:50.829 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 47/50, Train Loss: 0.016590714991952363, Val Loss: 0.017384443734143232 +2024-07-19 14:44:51.655 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 48/50, Train Loss: 0.01640476175880694, Val Loss: 0.020685223560478236 +2024-07-19 14:44:52.488 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 49/50, Train Loss: 0.01644515860211718, Val Loss: 0.01750486676354666 +2024-07-19 14:44:53.325 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 50/50, Train Loss: 0.01636274883544052, Val Loss: 0.017718884540168015 +2024-07-19 14:44:53.325 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Fold 4, MAPE: 2.43% +2024-07-19 14:44:53.430 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Training image saved at metaflow_models//bgd_office_50001_100000_LSTM//train_f4_bgd_office_50001_100000_LSTM.png +2024-07-19 14:44:57.824 [13/cross_validate_train/145 (pid 5243)] Task finished successfully. +2024-07-19 14:44:57.858 [13/model_scores/146 (pid 5822)] Task is starting. +2024-07-19 14:44:59.304 [13/model_scores/146 (pid 5822)] INFO:__main__:Average Train Loss across all folds: 0.021921945041655164 +2024-07-19 14:45:03.188 [13/model_scores/146 (pid 5822)] INFO:__main__:Average Validation Loss across all folds: 0.023952290853737172 +2024-07-19 14:45:03.188 [13/model_scores/146 (pid 5822)] INFO:__main__:Average MAPE across all folds: 2.69% +2024-07-19 14:45:03.189 [13/model_scores/146 (pid 5822)] Task finished successfully. +2024-07-19 14:45:03.220 [13/validate_model/147 (pid 5857)] Task is starting. +2024-07-19 14:45:04.704 [13/validate_model/147 (pid 5857)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:45:04.809 [13/validate_model/147 (pid 5857)] INFO:__main__:Test Set MAPE: 3.79% +2024-07-19 14:45:05.172 [13/validate_model/147 (pid 5857)] INFO:__main__:Test image saved at metaflow_models//bgd_office_50001_100000_LSTM//test_bgd_office_50001_100000_LSTM.png +2024-07-19 14:45:05.606 [13/validate_model/147 (pid 5857)] Task finished successfully. +2024-07-19 14:45:05.636 [13/log_model/148 (pid 5868)] Task is starting. +2024-07-19 14:45:07.125 [13/log_model/148 (pid 5868)] INFO:__main__:Logging model bgd_office_50001_100000_LSTM +2024-07-19 14:45:07.127 [13/log_model/148 (pid 5868)] INFO:__main__:Model logged at metaflow_models//bgd_office_50001_100000_LSTM//bgd_office_50001_100000_LSTM.pth +2024-07-19 14:45:11.020 [13/log_model/148 (pid 5868)] Task finished successfully. +2024-07-19 14:45:11.045 [13/end/149 (pid 5902)] Task is starting. +2024-07-19 14:45:12.537 [13/end/149 (pid 5902)] INFO:__main__:Pipeline end. +2024-07-19 14:45:12.852 [13/end/149 (pid 5902)] Task finished successfully. +2024-07-19 14:45:12.853 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/13') succeeded: +-- stdout -- +2024-07-19 14:42:15.474 Workflow starting (run-id 13): +2024-07-19 14:42:15.543 [13/start/137 (pid 5064)] Task is starting. +2024-07-19 14:42:17.008 [13/start/137 (pid 5064)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:42:17.302 [13/start/137 (pid 5064)] Task finished successfully. +2024-07-19 14:42:17.334 [13/ingest/138 (pid 5075)] Task is starting. +2024-07-19 14:42:18.793 [13/ingest/138 (pid 5075)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:42:18.809 [13/ingest/138 (pid 5075)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:42:22.789 [13/ingest/138 (pid 5075)] Task finished successfully. +2024-07-19 14:42:22.818 [13/pick_2017_data/139 (pid 5107)] Task is starting. +2024-07-19 14:42:24.291 [13/pick_2017_data/139 (pid 5107)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:42:24.608 [13/pick_2017_data/139 (pid 5107)] Task finished successfully. +2024-07-19 14:42:24.637 [13/fill_missing_data/140 (pid 5118)] Task is starting. +2024-07-19 14:42:26.101 [13/fill_missing_data/140 (pid 5118)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:42:26.106 [13/fill_missing_data/140 (pid 5118)] INFO:__main__:NaN counts per column: +2024-07-19 14:42:26.106 [13/fill_missing_data/140 (pid 5118)] INFO:__main__:Panther_office_Garth 11 +2024-07-19 14:42:26.106 [13/fill_missing_data/140 (pid 5118)] Fox_office_Vicki 3 +2024-07-19 14:42:26.106 [13/fill_missing_data/140 (pid 5118)] Fox_office_Joy 1 +2024-07-19 14:42:26.106 [13/fill_missing_data/140 (pid 5118)] Cockatoo_office_Margaret 112 +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] Cockatoo_office_Ada 359 +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] dtype: int64 +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] --- Logging error --- +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] Traceback (most recent call last): +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] msg = self.format(record) +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] return fmt.format(record) +2024-07-19 14:42:26.107 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:42:26.109 [13/fill_missing_data/140 (pid 5118)] record.message = record.getMessage() +2024-07-19 14:42:26.110 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:42:26.110 [13/fill_missing_data/140 (pid 5118)] msg = msg % self.args +2024-07-19 14:42:26.110 [13/fill_missing_data/140 (pid 5118)] TypeError: not all arguments converted during string formatting +2024-07-19 14:42:26.110 [13/fill_missing_data/140 (pid 5118)] Call stack: +2024-07-19 14:42:26.110 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] BGD_LinearFlow() +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] cli.main(self) +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] return func(*args, **kwargs) +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] return self.main(*args, **kwargs) +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] rv = self.invoke(ctx) +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:42:26.699 [13/fill_missing_data/140 (pid 5118)] return callback(*args, **kwargs) +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] task.run_step( +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] self._exec_step_function(step_func) +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] step_function() +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:42:26.700 [13/fill_missing_data/140 (pid 5118)] Arguments: (486,) +2024-07-19 14:42:26.701 [13/fill_missing_data/140 (pid 5118)] Task finished successfully. +2024-07-19 14:42:26.734 [13/find_median/141 (pid 5135)] Task is starting. +2024-07-19 14:42:28.197 [13/find_median/141 (pid 5135)] INFO:__main__:Computing and using median.. +2024-07-19 14:42:28.726 [13/find_median/141 (pid 5135)] Task finished successfully. +2024-07-19 14:42:28.758 [13/aggregate_data/142 (pid 5148)] Task is starting. +2024-07-19 14:42:30.192 [13/aggregate_data/142 (pid 5148)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:42:34.121 [13/aggregate_data/142 (pid 5148)] Task finished successfully. +2024-07-19 14:42:34.153 [13/split_data/143 (pid 5187)] Task is starting. +2024-07-19 14:42:35.616 [13/split_data/143 (pid 5187)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:42:39.487 [13/split_data/143 (pid 5187)] Task finished successfully. +2024-07-19 14:42:39.518 [13/make_x_y/144 (pid 5219)] Task is starting. +2024-07-19 14:42:41.356 [13/make_x_y/144 (pid 5219)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:42:41.676 [13/make_x_y/144 (pid 5219)] Shape of y_train: (6978, 1) +2024-07-19 14:42:41.676 [13/make_x_y/144 (pid 5219)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:42:41.676 [13/make_x_y/144 (pid 5219)] Shape of y_test: (1722, 1) +2024-07-19 14:42:41.677 [13/make_x_y/144 (pid 5219)] Task finished successfully. +2024-07-19 14:42:41.706 [13/cross_validate_train/145 (pid 5243)] Task is starting. +2024-07-19 14:42:43.120 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Creating bgd_office_50001_100000_LSTM +2024-07-19 14:42:43.121 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Performing cross validation.. +2024-07-19 14:42:43.867 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 1/50, Train Loss: 0.1925904785056372, Val Loss: 0.19090472544367248 +2024-07-19 14:42:44.061 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 2/50, Train Loss: 0.1462239535978517, Val Loss: 0.16847594062218796 +2024-07-19 14:42:44.254 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 3/50, Train Loss: 0.13970092563210307, Val Loss: 0.16013210125871608 +2024-07-19 14:42:44.446 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 4/50, Train Loss: 0.13213679330373132, Val Loss: 0.1523448426175762 +2024-07-19 14:42:44.640 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 5/50, Train Loss: 0.12233060568168357, Val Loss: 0.14601967866356308 +2024-07-19 14:42:44.834 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 6/50, Train Loss: 0.1143149638397468, Val Loss: 0.1381308927729323 +2024-07-19 14:42:45.027 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 7/50, Train Loss: 0.10749859226917899, Val Loss: 0.1273511818333252 +2024-07-19 14:42:45.219 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 8/50, Train Loss: 0.09924391561464684, Val Loss: 0.10840205747533489 +2024-07-19 14:42:45.413 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 9/50, Train Loss: 0.0875864271577951, Val Loss: 0.08429269180507273 +2024-07-19 14:42:45.609 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 10/50, Train Loss: 0.07592501390624691, Val Loss: 0.06976674789109745 +2024-07-19 14:42:45.806 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 11/50, Train Loss: 0.06797439106614203, Val Loss: 0.06565792415593122 +2024-07-19 14:42:46.010 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 12/50, Train Loss: 0.06518684342704914, Val Loss: 0.06627484340522741 +2024-07-19 14:42:46.239 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 13/50, Train Loss: 0.06065152585506439, Val Loss: 0.06684576292094346 +2024-07-19 14:42:46.441 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 14/50, Train Loss: 0.059187717735767365, Val Loss: 0.06547561907083602 +2024-07-19 14:42:46.641 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 15/50, Train Loss: 0.0577208537205651, Val Loss: 0.06492214413309419 +2024-07-19 14:42:46.839 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 16/50, Train Loss: 0.05667957945449932, Val Loss: 0.06472016805531206 +2024-07-19 14:42:47.037 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 17/50, Train Loss: 0.054339103803441334, Val Loss: 0.06291021059292394 +2024-07-19 14:42:47.233 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 18/50, Train Loss: 0.05234519462730434, Val Loss: 0.0627968257947548 +2024-07-19 14:42:47.433 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 19/50, Train Loss: 0.050983646230117696, Val Loss: 0.06065158545970917 +2024-07-19 14:42:47.630 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 20/50, Train Loss: 0.04975943398234006, Val Loss: 0.0587636418137196 +2024-07-19 14:42:47.827 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 21/50, Train Loss: 0.0481333539292619, Val Loss: 0.058116502606788197 +2024-07-19 14:42:48.025 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 22/50, Train Loss: 0.04676053290431564, Val Loss: 0.056848294932294534 +2024-07-19 14:42:48.226 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 23/50, Train Loss: 0.04572351065439147, Val Loss: 0.05595270327820971 +2024-07-19 14:42:48.440 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 24/50, Train Loss: 0.0448418161454233, Val Loss: 0.05599829312917348 +2024-07-19 14:42:48.643 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 25/50, Train Loss: 0.044202320730766735, Val Loss: 0.057262391506417376 +2024-07-19 14:42:48.844 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 26/50, Train Loss: 0.04392330202500563, Val Loss: 0.053255448872978624 +2024-07-19 14:42:49.058 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 27/50, Train Loss: 0.04325294172441637, Val Loss: 0.05411020334105234 +2024-07-19 14:42:49.258 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 28/50, Train Loss: 0.04246986506355775, Val Loss: 0.05120088144935466 +2024-07-19 14:42:49.465 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 29/50, Train Loss: 0.042011468897800185, Val Loss: 0.05112376834291059 +2024-07-19 14:42:49.686 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 30/50, Train Loss: 0.04057558293680887, Val Loss: 0.05035094035839712 +2024-07-19 14:42:49.896 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 31/50, Train Loss: 0.04026703179083966, Val Loss: 0.04803471458522049 +2024-07-19 14:42:50.098 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 32/50, Train Loss: 0.03983597704083533, Val Loss: 0.0489877273605482 +2024-07-19 14:42:50.300 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 33/50, Train Loss: 0.038953302025392246, Val Loss: 0.04966096804049369 +2024-07-19 14:42:50.501 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 34/50, Train Loss: 0.03916567121003125, Val Loss: 0.04771798270175586 +2024-07-19 14:42:50.707 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 35/50, Train Loss: 0.039077963478661874, Val Loss: 0.04689896061412386 +2024-07-19 14:42:50.913 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 36/50, Train Loss: 0.03828985520915405, Val Loss: 0.047229027727971204 +2024-07-19 14:42:51.116 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 37/50, Train Loss: 0.037424901903078366, Val Loss: 0.04872786550707108 +2024-07-19 14:42:51.322 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 38/50, Train Loss: 0.03739604952971678, Val Loss: 0.04582632604885746 +2024-07-19 14:42:51.527 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 39/50, Train Loss: 0.037089267896639334, Val Loss: 0.04523916889888209 +2024-07-19 14:42:51.731 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 40/50, Train Loss: 0.0364293693187269, Val Loss: 0.046238641632167066 +2024-07-19 14:42:51.935 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 41/50, Train Loss: 0.03612832156186168, Val Loss: 0.04242839709528395 +2024-07-19 14:42:52.137 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 42/50, Train Loss: 0.03477421141154057, Val Loss: 0.04328433801797596 +2024-07-19 14:42:52.340 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 43/50, Train Loss: 0.03434890931522524, Val Loss: 0.042337232042808794 +2024-07-19 14:42:52.542 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 44/50, Train Loss: 0.033713165066532186, Val Loss: 0.039592132375047016 +2024-07-19 14:42:52.746 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 45/50, Train Loss: 0.0333144073248715, Val Loss: 0.04241808111200462 +2024-07-19 14:42:52.949 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 46/50, Train Loss: 0.03337191312095603, Val Loss: 0.042099711862770284 +2024-07-19 14:42:53.153 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 47/50, Train Loss: 0.03400275604547681, Val Loss: 0.039888748999785735 +2024-07-19 14:42:53.358 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 48/50, Train Loss: 0.03338780772645731, Val Loss: 0.0408003757632262 +2024-07-19 14:42:53.560 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 49/50, Train Loss: 0.03392318374401814, Val Loss: 0.037661531990444336 +2024-07-19 14:42:53.766 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 50/50, Train Loss: 0.03336877395977845, Val Loss: 0.0378873996637963 +2024-07-19 14:42:53.766 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Fold 0, MAPE: 3.62% +2024-07-19 14:42:54.166 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Training image saved at metaflow_models//bgd_office_50001_100000_LSTM//train_f0_bgd_office_50001_100000_LSTM.png +2024-07-19 14:42:54.602 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 1/50, Train Loss: 0.028956992526168693, Val Loss: 0.029809903756186768 +2024-07-19 14:42:54.944 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 2/50, Train Loss: 0.028489734326833733, Val Loss: 0.03260588666071763 +2024-07-19 14:42:55.288 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 3/50, Train Loss: 0.027038623502299394, Val Loss: 0.029266591762771476 +2024-07-19 14:42:55.663 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 4/50, Train Loss: 0.02675328820892801, Val Loss: 0.028577003426648474 +2024-07-19 14:42:56.008 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 5/50, Train Loss: 0.026647059706180063, Val Loss: 0.028710622541807795 +2024-07-19 14:42:56.353 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 6/50, Train Loss: 0.026669824891404747, Val Loss: 0.0292212629338374 +2024-07-19 14:42:56.698 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 7/50, Train Loss: 0.026541242937315, Val Loss: 0.026609572959510056 +2024-07-19 14:42:57.042 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 8/50, Train Loss: 0.026022822315460197, Val Loss: 0.02621001855948487 +2024-07-19 14:42:57.385 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 9/50, Train Loss: 0.025892002316676592, Val Loss: 0.025510938259194028 +2024-07-19 14:42:57.732 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 10/50, Train Loss: 0.02562962927893825, Val Loss: 0.026210922672337777 +2024-07-19 14:42:58.078 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 11/50, Train Loss: 0.02514438438293052, Val Loss: 0.025836799042047682 +2024-07-19 14:42:58.433 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 12/50, Train Loss: 0.024789877057279627, Val Loss: 0.024799355884661544 +2024-07-19 14:42:58.778 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 13/50, Train Loss: 0.024847779129568027, Val Loss: 0.024297335663357296 +2024-07-19 14:42:59.122 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 14/50, Train Loss: 0.02440482324423039, Val Loss: 0.026292032537025375 +2024-07-19 14:42:59.468 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 15/50, Train Loss: 0.024242349504812123, Val Loss: 0.024027712064216267 +2024-07-19 14:42:59.814 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 16/50, Train Loss: 0.023960514963693814, Val Loss: 0.02471120217563333 +2024-07-19 14:43:00.161 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 17/50, Train Loss: 0.024181957139748418, Val Loss: 0.02454730838134482 +2024-07-19 14:43:00.509 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 18/50, Train Loss: 0.02448246505570738, Val Loss: 0.02490662073565496 +2024-07-19 14:43:00.856 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 19/50, Train Loss: 0.024031249040814294, Val Loss: 0.024513625816718954 +2024-07-19 14:43:01.222 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 20/50, Train Loss: 0.024561444157096622, Val Loss: 0.024578480754752417 +2024-07-19 14:43:01.570 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 21/50, Train Loss: 0.024427927124683987, Val Loss: 0.02407655379156003 +2024-07-19 14:43:01.920 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 22/50, Train Loss: 0.02354106358061098, Val Loss: 0.02423121835533026 +2024-07-19 14:43:02.266 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 23/50, Train Loss: 0.023711179332067706, Val Loss: 0.024494691122625326 +2024-07-19 14:43:02.613 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 24/50, Train Loss: 0.023368214486702663, Val Loss: 0.02413155042843239 +2024-07-19 14:43:02.959 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 25/50, Train Loss: 0.023598907974688974, Val Loss: 0.023229745317351173 +2024-07-19 14:43:03.307 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 26/50, Train Loss: 0.023779044399828943, Val Loss: 0.024959717826867425 +2024-07-19 14:43:03.654 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 27/50, Train Loss: 0.02384100601791519, Val Loss: 0.022903002899240802 +2024-07-19 14:43:04.005 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 28/50, Train Loss: 0.024132402371360013, Val Loss: 0.023642998616639023 +2024-07-19 14:43:04.351 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 29/50, Train Loss: 0.023404973954574703, Val Loss: 0.023642284644616617 +2024-07-19 14:43:04.700 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 30/50, Train Loss: 0.023822732920413963, Val Loss: 0.02354461417810337 +2024-07-19 14:43:05.048 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 31/50, Train Loss: 0.02342860578010752, Val Loss: 0.023514193130304683 +2024-07-19 14:43:05.396 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 32/50, Train Loss: 0.02338448280392036, Val Loss: 0.024192453160680628 +2024-07-19 14:43:05.744 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 33/50, Train Loss: 0.023398475887330426, Val Loss: 0.023595092843311863 +2024-07-19 14:43:06.092 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 34/50, Train Loss: 0.023258010984385666, Val Loss: 0.024116791860275977 +2024-07-19 14:43:06.438 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 35/50, Train Loss: 0.023105705361047835, Val Loss: 0.022663378987360646 +2024-07-19 14:43:06.785 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 36/50, Train Loss: 0.023401906280076667, Val Loss: 0.02311899930842825 +2024-07-19 14:43:07.131 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 37/50, Train Loss: 0.023306697568766875, Val Loss: 0.022911260080699984 +2024-07-19 14:43:07.476 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 38/50, Train Loss: 0.02350208724606527, Val Loss: 0.02320990985813173 +2024-07-19 14:43:07.822 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 39/50, Train Loss: 0.023519721877289144, Val Loss: 0.023652922991361167 +2024-07-19 14:43:08.180 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 40/50, Train Loss: 0.023682730246896613, Val Loss: 0.02320770504003441 +2024-07-19 14:43:08.533 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 41/50, Train Loss: 0.023209124931121525, Val Loss: 0.02297649099617391 +2024-07-19 14:43:08.880 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 42/50, Train Loss: 0.023456244104324956, Val Loss: 0.02268744635118826 +2024-07-19 14:43:09.238 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 43/50, Train Loss: 0.023551014800594277, Val Loss: 0.02322241905573252 +2024-07-19 14:43:09.587 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 44/50, Train Loss: 0.023217913350217962, Val Loss: 0.02269512729568256 +2024-07-19 14:43:09.945 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 45/50, Train Loss: 0.023337422028081874, Val Loss: 0.022622848835748596 +2024-07-19 14:43:10.292 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 46/50, Train Loss: 0.02328857173505303, Val Loss: 0.022595079691224807 +2024-07-19 14:43:10.641 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 47/50, Train Loss: 0.023196081452275794, Val Loss: 0.022926562188847643 +2024-07-19 14:43:11.004 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 48/50, Train Loss: 0.023042820802290146, Val Loss: 0.02213803175333384 +2024-07-19 14:43:11.356 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 49/50, Train Loss: 0.023129919556620186, Val Loss: 0.022297390283563652 +2024-07-19 14:43:11.704 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 50/50, Train Loss: 0.02289706353761562, Val Loss: 0.022164603443564596 +2024-07-19 14:43:11.704 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Fold 1, MAPE: 2.43% +2024-07-19 14:43:11.809 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Training image saved at metaflow_models//bgd_office_50001_100000_LSTM//train_f1_bgd_office_50001_100000_LSTM.png +2024-07-19 14:43:12.458 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 1/50, Train Loss: 0.021122389557686718, Val Loss: 0.021627053693943733 +2024-07-19 14:43:13.123 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 2/50, Train Loss: 0.021042469787326726, Val Loss: 0.020541017547853896 +2024-07-19 14:43:13.640 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 3/50, Train Loss: 0.020907512747428632, Val Loss: 0.020192689665064618 +2024-07-19 14:43:14.143 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 4/50, Train Loss: 0.020685610302131285, Val Loss: 0.020445660461445112 +2024-07-19 14:43:14.637 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 5/50, Train Loss: 0.02085316264155236, Val Loss: 0.01957377849297749 +2024-07-19 14:43:15.160 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 6/50, Train Loss: 0.020215809031982314, Val Loss: 0.020049406114864995 +2024-07-19 14:43:15.656 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 7/50, Train Loss: 0.020683732950551943, Val Loss: 0.020603583294998954 +2024-07-19 14:43:16.156 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 8/50, Train Loss: 0.020534594255414877, Val Loss: 0.019418045022600406 +2024-07-19 14:43:16.653 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 9/50, Train Loss: 0.02013622753491456, Val Loss: 0.020314658815796312 +2024-07-19 14:43:17.150 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 10/50, Train Loss: 0.020593312425030902, Val Loss: 0.020474467829272553 +2024-07-19 14:43:17.647 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 11/50, Train Loss: 0.020634947751056065, Val Loss: 0.020018064744166425 +2024-07-19 14:43:18.147 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 12/50, Train Loss: 0.02043102438646284, Val Loss: 0.020667132317415765 +2024-07-19 14:43:18.655 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 13/50, Train Loss: 0.0204350578090684, Val Loss: 0.020569424421803373 +2024-07-19 14:43:19.154 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 14/50, Train Loss: 0.020557354119690983, Val Loss: 0.020349445450748946 +2024-07-19 14:43:19.651 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 15/50, Train Loss: 0.020645641400055453, Val Loss: 0.019767497213104286 +2024-07-19 14:43:20.148 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 16/50, Train Loss: 0.02076378624716943, Val Loss: 0.01986310016867277 +2024-07-19 14:43:20.649 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 17/50, Train Loss: 0.0203440808521753, Val Loss: 0.021171512686320254 +2024-07-19 14:43:21.154 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 18/50, Train Loss: 0.020266222454268824, Val Loss: 0.020514418723414075 +2024-07-19 14:43:21.651 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 19/50, Train Loss: 0.0203473958525468, Val Loss: 0.02096384293022188 +2024-07-19 14:43:22.152 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 20/50, Train Loss: 0.02024898043071682, Val Loss: 0.020740893996647886 +2024-07-19 14:43:22.665 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 21/50, Train Loss: 0.020380304973911155, Val Loss: 0.019742524075145658 +2024-07-19 14:43:23.176 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 22/50, Train Loss: 0.020345489418303424, Val Loss: 0.019452370073948358 +2024-07-19 14:43:23.687 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 23/50, Train Loss: 0.02008511581542817, Val Loss: 0.019882529319540876 +2024-07-19 14:43:24.199 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 24/50, Train Loss: 0.020665209164673633, Val Loss: 0.019871549378778483 +2024-07-19 14:43:24.703 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 25/50, Train Loss: 0.02026711833578619, Val Loss: 0.01987376914837876 +2024-07-19 14:43:25.209 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 26/50, Train Loss: 0.02016716187142513, Val Loss: 0.01984159937883551 +2024-07-19 14:43:25.715 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 27/50, Train Loss: 0.020072923829271033, Val Loss: 0.020447223044529155 +2024-07-19 14:43:26.243 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 28/50, Train Loss: 0.02037978506731716, Val Loss: 0.020113940224856942 +2024-07-19 14:43:26.867 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 29/50, Train Loss: 0.019850091813978822, Val Loss: 0.02022164554108639 +2024-07-19 14:43:27.401 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 30/50, Train Loss: 0.020012779034335505, Val Loss: 0.020508017416137295 +2024-07-19 14:43:27.963 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 31/50, Train Loss: 0.019671974703669548, Val Loss: 0.019829955858153267 +2024-07-19 14:43:28.500 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 32/50, Train Loss: 0.019931794000281527, Val Loss: 0.02058578551923101 +2024-07-19 14:43:29.022 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 33/50, Train Loss: 0.01999402256174521, Val Loss: 0.020659337172637116 +2024-07-19 14:43:29.564 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 34/50, Train Loss: 0.02015667883679271, Val Loss: 0.020865855939887667 +2024-07-19 14:43:30.085 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 35/50, Train Loss: 0.019928110086105087, Val Loss: 0.0196026985004947 +2024-07-19 14:43:30.622 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 36/50, Train Loss: 0.020045487413352187, Val Loss: 0.020352268792890215 +2024-07-19 14:43:31.148 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 37/50, Train Loss: 0.02019956721500917, Val Loss: 0.019732317761392205 +2024-07-19 14:43:31.649 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 38/50, Train Loss: 0.02019080367277969, Val Loss: 0.019418000444971228 +2024-07-19 14:43:32.148 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 39/50, Train Loss: 0.02003044614737684, Val Loss: 0.01948345809973575 +2024-07-19 14:43:32.655 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 40/50, Train Loss: 0.019882809700952336, Val Loss: 0.01977963831175018 +2024-07-19 14:43:33.151 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 41/50, Train Loss: 0.02032929211008278, Val Loss: 0.021207170208563674 +2024-07-19 14:43:33.650 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 42/50, Train Loss: 0.02025966343723915, Val Loss: 0.020069412308166158 +2024-07-19 14:43:34.151 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 43/50, Train Loss: 0.020047149002890695, Val Loss: 0.019932168183495868 +2024-07-19 14:43:34.651 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 44/50, Train Loss: 0.01955950450660153, Val Loss: 0.019852884969598538 +2024-07-19 14:43:35.147 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 45/50, Train Loss: 0.020027523961934177, Val Loss: 0.019532825017498957 +2024-07-19 14:43:35.641 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 46/50, Train Loss: 0.019825394155288285, Val Loss: 0.020230693490924063 +2024-07-19 14:43:36.137 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 47/50, Train Loss: 0.019936397688632663, Val Loss: 0.019859043604417426 +2024-07-19 14:43:36.637 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 48/50, Train Loss: 0.019983363735743543, Val Loss: 0.01976074799391869 +2024-07-19 14:43:37.132 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 49/50, Train Loss: 0.01995925788174976, Val Loss: 0.02017134735109033 +2024-07-19 14:43:37.628 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 50/50, Train Loss: 0.01968541962348602, Val Loss: 0.019611610351382074 +2024-07-19 14:43:37.628 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Fold 2, MAPE: 2.03% +2024-07-19 14:43:37.735 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Training image saved at metaflow_models//bgd_office_50001_100000_LSTM//train_f2_bgd_office_50001_100000_LSTM.png +2024-07-19 14:43:38.392 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 1/50, Train Loss: 0.01777930419943104, Val Loss: 0.021290958305267064 +2024-07-19 14:43:39.046 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 2/50, Train Loss: 0.018450505986860762, Val Loss: 0.021299229280368703 +2024-07-19 14:43:39.704 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 3/50, Train Loss: 0.01839085123565507, Val Loss: 0.023341749064825678 +2024-07-19 14:43:40.355 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 4/50, Train Loss: 0.01799860039139039, Val Loss: 0.02169445451550387 +2024-07-19 14:43:41.016 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 5/50, Train Loss: 0.018190067338004504, Val Loss: 0.022501127593017912 +2024-07-19 14:43:41.658 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 6/50, Train Loss: 0.0181908290897024, Val Loss: 0.022221883406510223 +2024-07-19 14:43:42.303 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 7/50, Train Loss: 0.017889362740751407, Val Loss: 0.021567783167434705 +2024-07-19 14:43:42.943 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 8/50, Train Loss: 0.018070338568203663, Val Loss: 0.021831051219959517 +2024-07-19 14:43:43.586 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 9/50, Train Loss: 0.01807053088631532, Val Loss: 0.022655849470882804 +2024-07-19 14:43:44.233 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 10/50, Train Loss: 0.01791232646991537, Val Loss: 0.02128646067167456 +2024-07-19 14:43:44.882 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 11/50, Train Loss: 0.017838130456280625, Val Loss: 0.02127184610612489 +2024-07-19 14:43:45.681 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 12/50, Train Loss: 0.01795337564783962, Val Loss: 0.02185423964181462 +2024-07-19 14:43:46.492 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 13/50, Train Loss: 0.017751700149160134, Val Loss: 0.022034003877559223 +2024-07-19 14:43:47.270 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 14/50, Train Loss: 0.017717150480116475, Val Loss: 0.021469391328660218 +2024-07-19 14:43:47.994 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 15/50, Train Loss: 0.01795505387198231, Val Loss: 0.021881726847307104 +2024-07-19 14:43:48.642 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 16/50, Train Loss: 0.017864203112429543, Val Loss: 0.022117573516191664 +2024-07-19 14:43:49.286 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 17/50, Train Loss: 0.017896959577266076, Val Loss: 0.021714715136064065 +2024-07-19 14:43:49.929 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 18/50, Train Loss: 0.01796214302287322, Val Loss: 0.022312497820805858 +2024-07-19 14:43:50.576 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 19/50, Train Loss: 0.01777519620572255, Val Loss: 0.021690011578234466 +2024-07-19 14:43:51.230 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 20/50, Train Loss: 0.017690379689256214, Val Loss: 0.022416882518980955 +2024-07-19 14:43:51.889 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 21/50, Train Loss: 0.017698623775823475, Val Loss: 0.021821649543739653 +2024-07-19 14:43:52.543 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 22/50, Train Loss: 0.017656979865509355, Val Loss: 0.021609662402723287 +2024-07-19 14:43:53.190 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 23/50, Train Loss: 0.017753953694633832, Val Loss: 0.02159393480601343 +2024-07-19 14:43:53.860 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 24/50, Train Loss: 0.017795396375482622, Val Loss: 0.02213567596029591 +2024-07-19 14:43:54.530 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 25/50, Train Loss: 0.0176772018256661, Val Loss: 0.02195051750419913 +2024-07-19 14:43:55.183 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 26/50, Train Loss: 0.01760199953712625, Val Loss: 0.02173818733442474 +2024-07-19 14:43:55.838 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 27/50, Train Loss: 0.01761214159531136, Val Loss: 0.02202296689958186 +2024-07-19 14:43:56.497 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 28/50, Train Loss: 0.017891161807187615, Val Loss: 0.02187630453625241 +2024-07-19 14:43:57.177 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 29/50, Train Loss: 0.017818110899310815, Val Loss: 0.02144518884754664 +2024-07-19 14:43:57.861 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 30/50, Train Loss: 0.01760377994521636, Val Loss: 0.02166213175734958 +2024-07-19 14:43:58.542 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 31/50, Train Loss: 0.01742834264846289, Val Loss: 0.0216019171214587 +2024-07-19 14:43:59.190 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 32/50, Train Loss: 0.017528770070471992, Val Loss: 0.021316662481105007 +2024-07-19 14:43:59.843 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 33/50, Train Loss: 0.01746361215968859, Val Loss: 0.021742849988309113 +2024-07-19 14:44:00.521 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 34/50, Train Loss: 0.017636621696236608, Val Loss: 0.023074948153383023 +2024-07-19 14:44:01.247 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 35/50, Train Loss: 0.017447457827423532, Val Loss: 0.021373842565997225 +2024-07-19 14:44:01.921 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 36/50, Train Loss: 0.017347828325598617, Val Loss: 0.02138789718014163 +2024-07-19 14:44:02.597 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 37/50, Train Loss: 0.017586806431820947, Val Loss: 0.022716667402434994 +2024-07-19 14:44:03.281 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 38/50, Train Loss: 0.01752419274121727, Val Loss: 0.02205404155963176 +2024-07-19 14:44:03.965 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 39/50, Train Loss: 0.01757891002838334, Val Loss: 0.02264981480264986 +2024-07-19 14:44:04.645 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 40/50, Train Loss: 0.017453785934676863, Val Loss: 0.022026799770223128 +2024-07-19 14:44:05.320 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 41/50, Train Loss: 0.01752547885304036, Val Loss: 0.02177751056749273 +2024-07-19 14:44:05.984 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 42/50, Train Loss: 0.017365518459820584, Val Loss: 0.021495696710976394 +2024-07-19 14:44:06.673 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 43/50, Train Loss: 0.01727434151410444, Val Loss: 0.02147925499121885 +2024-07-19 14:44:07.342 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 44/50, Train Loss: 0.0174966274556538, Val Loss: 0.021526254436655623 +2024-07-19 14:44:08.012 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 45/50, Train Loss: 0.017268157768229098, Val Loss: 0.02270070443282256 +2024-07-19 14:44:08.688 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 46/50, Train Loss: 0.017451469473898, Val Loss: 0.02173769733289609 +2024-07-19 14:44:09.372 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 47/50, Train Loss: 0.017312146672239043, Val Loss: 0.022724961408892193 +2024-07-19 14:44:10.062 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 48/50, Train Loss: 0.017371964787630593, Val Loss: 0.021862957198676224 +2024-07-19 14:44:10.754 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 49/50, Train Loss: 0.017368726827816604, Val Loss: 0.021643520609752553 +2024-07-19 14:44:11.457 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 50/50, Train Loss: 0.017295719251955208, Val Loss: 0.02237895626977489 +2024-07-19 14:44:11.458 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Fold 3, MAPE: 2.94% +2024-07-19 14:44:11.560 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Training image saved at metaflow_models//bgd_office_50001_100000_LSTM//train_f3_bgd_office_50001_100000_LSTM.png +2024-07-19 14:44:12.400 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 1/50, Train Loss: 0.017496534408285067, Val Loss: 0.019292997322171122 +2024-07-19 14:44:13.254 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 2/50, Train Loss: 0.017176715872035578, Val Loss: 0.017694292866901773 +2024-07-19 14:44:14.092 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 3/50, Train Loss: 0.017541697126004722, Val Loss: 0.01856650912983192 +2024-07-19 14:44:14.925 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 4/50, Train Loss: 0.01748062203546147, Val Loss: 0.018465196940343123 +2024-07-19 14:44:15.752 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 5/50, Train Loss: 0.017276629764627623, Val Loss: 0.01813782681081746 +2024-07-19 14:44:16.571 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 6/50, Train Loss: 0.017257785588339136, Val Loss: 0.018357779327276592 +2024-07-19 14:44:17.460 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 7/50, Train Loss: 0.017283319956162474, Val Loss: 0.018190716770855157 +2024-07-19 14:44:18.276 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 8/50, Train Loss: 0.017285179561720446, Val Loss: 0.018161517341394682 +2024-07-19 14:44:19.083 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 9/50, Train Loss: 0.01717507832038861, Val Loss: 0.018667739715326478 +2024-07-19 14:44:19.883 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 10/50, Train Loss: 0.017049270047509408, Val Loss: 0.01844594645238406 +2024-07-19 14:44:20.682 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 11/50, Train Loss: 0.01724658705867254, Val Loss: 0.018508192252468417 +2024-07-19 14:44:21.487 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 12/50, Train Loss: 0.016998015359494384, Val Loss: 0.01800026575959212 +2024-07-19 14:44:22.302 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 13/50, Train Loss: 0.016903294122440148, Val Loss: 0.01726066421818089 +2024-07-19 14:44:23.130 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 14/50, Train Loss: 0.017176514036011892, Val Loss: 0.01724932576856903 +2024-07-19 14:44:23.953 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 15/50, Train Loss: 0.01698941376142122, Val Loss: 0.01928118976286134 +2024-07-19 14:44:24.798 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 16/50, Train Loss: 0.01701115176163532, Val Loss: 0.01778379875562481 +2024-07-19 14:44:25.620 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 17/50, Train Loss: 0.017177359415934637, Val Loss: 0.018352462532552512 +2024-07-19 14:44:26.479 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 18/50, Train Loss: 0.016909499192139604, Val Loss: 0.017157002276665455 +2024-07-19 14:44:27.302 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 19/50, Train Loss: 0.016831260921617786, Val Loss: 0.0179862697180864 +2024-07-19 14:44:28.127 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 20/50, Train Loss: 0.017021648115017912, Val Loss: 0.01767357438802719 +2024-07-19 14:44:28.970 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 21/50, Train Loss: 0.016904539423534176, Val Loss: 0.018085192159019613 +2024-07-19 14:44:29.805 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 22/50, Train Loss: 0.016909414083584325, Val Loss: 0.017075016641536274 +2024-07-19 14:44:30.640 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 23/50, Train Loss: 0.016760815308521408, Val Loss: 0.017692005412804114 +2024-07-19 14:44:31.506 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 24/50, Train Loss: 0.016904076310591057, Val Loss: 0.01817923887456591 +2024-07-19 14:44:32.349 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 25/50, Train Loss: 0.016856767728433503, Val Loss: 0.01694048734734187 +2024-07-19 14:44:33.213 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 26/50, Train Loss: 0.017186752653547695, Val Loss: 0.017556296737008804 +2024-07-19 14:44:34.052 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 27/50, Train Loss: 0.016749934625944922, Val Loss: 0.017014465722683315 +2024-07-19 14:44:34.859 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 28/50, Train Loss: 0.016967840262453307, Val Loss: 0.018215341166265914 +2024-07-19 14:44:35.664 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 29/50, Train Loss: 0.016735224078849448, Val Loss: 0.018893816407669236 +2024-07-19 14:44:36.471 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 30/50, Train Loss: 0.01677233961175431, Val Loss: 0.017205397522932774 +2024-07-19 14:44:37.276 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 31/50, Train Loss: 0.01671286287543538, Val Loss: 0.018059280524785455 +2024-07-19 14:44:38.105 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 32/50, Train Loss: 0.016798258385528904, Val Loss: 0.018013313211299276 +2024-07-19 14:44:38.948 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 33/50, Train Loss: 0.016681102749246817, Val Loss: 0.018348381225321744 +2024-07-19 14:44:39.805 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 34/50, Train Loss: 0.01675543038604351, Val Loss: 0.01813726653219075 +2024-07-19 14:44:40.661 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 35/50, Train Loss: 0.016674815671989224, Val Loss: 0.017476505700599502 +2024-07-19 14:44:41.515 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 36/50, Train Loss: 0.016719872740885384, Val Loss: 0.017921717585744085 +2024-07-19 14:44:42.356 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 37/50, Train Loss: 0.01658942567819095, Val Loss: 0.018726988066289876 +2024-07-19 14:44:43.195 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 38/50, Train Loss: 0.016734124145951573, Val Loss: 0.01750779232463321 +2024-07-19 14:44:44.098 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 39/50, Train Loss: 0.01674379323926437, Val Loss: 0.01849731938863123 +2024-07-19 14:44:44.934 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 40/50, Train Loss: 0.01644666987256362, Val Loss: 0.017427559790981782 +2024-07-19 14:44:45.762 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 41/50, Train Loss: 0.016616149089084223, Val Loss: 0.017732819265409094 +2024-07-19 14:44:46.605 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 42/50, Train Loss: 0.01666674195471537, Val Loss: 0.019024942221271025 +2024-07-19 14:44:47.443 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 43/50, Train Loss: 0.01654942609513035, Val Loss: 0.018592765756152773 +2024-07-19 14:44:48.268 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 44/50, Train Loss: 0.01647688756993675, Val Loss: 0.018697691275864035 +2024-07-19 14:44:49.117 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 45/50, Train Loss: 0.01660749080826293, Val Loss: 0.02083219774067402 +2024-07-19 14:44:49.960 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 46/50, Train Loss: 0.016517565856882178, Val Loss: 0.01829148448903013 +2024-07-19 14:44:50.829 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 47/50, Train Loss: 0.016590714991952363, Val Loss: 0.017384443734143232 +2024-07-19 14:44:51.655 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 48/50, Train Loss: 0.01640476175880694, Val Loss: 0.020685223560478236 +2024-07-19 14:44:52.488 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 49/50, Train Loss: 0.01644515860211718, Val Loss: 0.01750486676354666 +2024-07-19 14:44:53.325 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Epoch 50/50, Train Loss: 0.01636274883544052, Val Loss: 0.017718884540168015 +2024-07-19 14:44:53.325 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Fold 4, MAPE: 2.43% +2024-07-19 14:44:53.430 [13/cross_validate_train/145 (pid 5243)] INFO:__main__:Training image saved at metaflow_models//bgd_office_50001_100000_LSTM//train_f4_bgd_office_50001_100000_LSTM.png +2024-07-19 14:44:57.824 [13/cross_validate_train/145 (pid 5243)] Task finished successfully. +2024-07-19 14:44:57.858 [13/model_scores/146 (pid 5822)] Task is starting. +2024-07-19 14:44:59.304 [13/model_scores/146 (pid 5822)] INFO:__main__:Average Train Loss across all folds: 0.021921945041655164 +2024-07-19 14:45:03.188 [13/model_scores/146 (pid 5822)] INFO:__main__:Average Validation Loss across all folds: 0.023952290853737172 +2024-07-19 14:45:03.188 [13/model_scores/146 (pid 5822)] INFO:__main__:Average MAPE across all folds: 2.69% +2024-07-19 14:45:03.189 [13/model_scores/146 (pid 5822)] Task finished successfully. +2024-07-19 14:45:03.220 [13/validate_model/147 (pid 5857)] Task is starting. +2024-07-19 14:45:04.704 [13/validate_model/147 (pid 5857)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:45:04.809 [13/validate_model/147 (pid 5857)] INFO:__main__:Test Set MAPE: 3.79% +2024-07-19 14:45:05.172 [13/validate_model/147 (pid 5857)] INFO:__main__:Test image saved at metaflow_models//bgd_office_50001_100000_LSTM//test_bgd_office_50001_100000_LSTM.png +2024-07-19 14:45:05.606 [13/validate_model/147 (pid 5857)] Task finished successfully. +2024-07-19 14:45:05.636 [13/log_model/148 (pid 5868)] Task is starting. +2024-07-19 14:45:07.125 [13/log_model/148 (pid 5868)] INFO:__main__:Logging model bgd_office_50001_100000_LSTM +2024-07-19 14:45:07.127 [13/log_model/148 (pid 5868)] INFO:__main__:Model logged at metaflow_models//bgd_office_50001_100000_LSTM//bgd_office_50001_100000_LSTM.pth +2024-07-19 14:45:11.020 [13/log_model/148 (pid 5868)] Task finished successfully. +2024-07-19 14:45:11.045 [13/end/149 (pid 5902)] Task is starting. +2024-07-19 14:45:12.537 [13/end/149 (pid 5902)] INFO:__main__:Pipeline end. +2024-07-19 14:45:12.852 [13/end/149 (pid 5902)] Task finished successfully. +2024-07-19 14:45:12.853 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/scaler_bgd_office_50001_100000_LSTM.pkl b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/scaler_bgd_office_50001_100000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..6483bd9f896ee517b0cbb436487d724923b00de5 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/scaler_bgd_office_50001_100000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de24219943de9a448595d7091232b21e08ec05cc7cf4e4bd84b69522e055ddff +size 557 diff --git a/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/test_bgd_office_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/test_bgd_office_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..e64faa194cb30208ba69cedbadfd5ea49ef8aa6f Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/test_bgd_office_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f0_bgd_office_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f0_bgd_office_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..3acdee46b964e963b33f1bf0210de0cc8d6b55c2 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f0_bgd_office_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f1_bgd_office_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f1_bgd_office_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..2f2e976d05fb6c9cf9f56304ba7833cfd1ec1f41 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f1_bgd_office_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f2_bgd_office_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f2_bgd_office_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..2ff4a3a08bbe9239b5ccbb6e161e958d12aecdae Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f2_bgd_office_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f3_bgd_office_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f3_bgd_office_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..f01e3d9b7b71553e6425a589704f64b4af73bc6e Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f3_bgd_office_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f4_bgd_office_50001_100000_LSTM.png b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f4_bgd_office_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..7be59b34c9e50178118166cd1f969b2d2ee9797b Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_50001_100000_LSTM/train_f4_bgd_office_50001_100000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/bgd_office_5001_10000_LSTM.pth b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/bgd_office_5001_10000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..a9117bb740acb63d7b636b7adc6513f84e5b7461 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/bgd_office_5001_10000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecefae9ef583c85f49f61e8cb61996edb97748ce44f290fb534aec03f9098afb +size 46726 diff --git a/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/output.txt b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..283a8e62597a0715beb6caa13a5fd677a8e5eaf4 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/output.txt @@ -0,0 +1,730 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-19 14:14:06.268 Workflow starting (run-id 4): +2024-07-19 14:14:06.336 [4/start/11 (pid 96293)] Task is starting. +2024-07-19 14:14:07.899 [4/start/11 (pid 96293)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:14:08.212 [4/start/11 (pid 96293)] Task finished successfully. +2024-07-19 14:14:08.248 [4/ingest/12 (pid 96306)] Task is starting. +2024-07-19 14:14:09.815 [4/ingest/12 (pid 96306)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:14:09.834 [4/ingest/12 (pid 96306)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:14:13.841 [4/ingest/12 (pid 96306)] Task finished successfully. +2024-07-19 14:14:13.870 [4/pick_2017_data/13 (pid 96344)] Task is starting. +2024-07-19 14:14:15.328 [4/pick_2017_data/13 (pid 96344)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:14:15.693 [4/pick_2017_data/13 (pid 96344)] Task finished successfully. +2024-07-19 14:14:15.729 [4/fill_missing_data/14 (pid 96361)] Task is starting. +2024-07-19 14:14:17.255 [4/fill_missing_data/14 (pid 96361)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:14:17.259 [4/fill_missing_data/14 (pid 96361)] INFO:__main__:NaN counts per column: +2024-07-19 14:14:17.259 [4/fill_missing_data/14 (pid 96361)] INFO:__main__:Panther_office_Jeane 11 +2024-07-19 14:14:17.260 [4/fill_missing_data/14 (pid 96361)] Fox_office_Molly 14 +2024-07-19 14:14:17.260 [4/fill_missing_data/14 (pid 96361)] dtype: int64 +2024-07-19 14:14:17.260 [4/fill_missing_data/14 (pid 96361)] --- Logging error --- +2024-07-19 14:14:17.260 [4/fill_missing_data/14 (pid 96361)] Traceback (most recent call last): +2024-07-19 14:14:17.260 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] msg = self.format(record) +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] return fmt.format(record) +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] record.message = record.getMessage() +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] msg = msg % self.args +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] TypeError: not all arguments converted during string formatting +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] Call stack: +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 338, in +2024-07-19 14:14:17.601 [4/fill_missing_data/14 (pid 96361)] BGD_LinearFlow() +2024-07-19 14:14:17.601 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] cli.main(self) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] return func(*args, **kwargs) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] return self.main(*args, **kwargs) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] rv = self.invoke(ctx) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] return callback(*args, **kwargs) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] task.run_step( +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] self._exec_step_function(step_func) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] step_function() +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 293, in find_nan_counts +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] Arguments: (25,) +2024-07-19 14:14:17.603 [4/fill_missing_data/14 (pid 96361)] Task finished successfully. +2024-07-19 14:14:17.634 [4/find_median/15 (pid 96375)] Task is starting. +2024-07-19 14:14:19.131 [4/find_median/15 (pid 96375)] INFO:__main__:Computing and using median.. +2024-07-19 14:14:23.367 [4/find_median/15 (pid 96375)] Task finished successfully. +2024-07-19 14:14:23.410 [4/aggregate_data/16 (pid 96412)] Task is starting. +2024-07-19 14:14:24.978 [4/aggregate_data/16 (pid 96412)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:14:28.915 [4/aggregate_data/16 (pid 96412)] Task finished successfully. +2024-07-19 14:14:28.948 [4/split_data/17 (pid 96454)] Task is starting. +2024-07-19 14:14:30.506 [4/split_data/17 (pid 96454)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:14:34.655 [4/split_data/17 (pid 96454)] Task finished successfully. +2024-07-19 14:14:34.688 [4/make_x_y/18 (pid 96508)] Task is starting. +2024-07-19 14:14:36.534 [4/make_x_y/18 (pid 96508)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:14:36.868 [4/make_x_y/18 (pid 96508)] Shape of y_train: (6978, 1) +2024-07-19 14:14:36.869 [4/make_x_y/18 (pid 96508)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:14:36.869 [4/make_x_y/18 (pid 96508)] Shape of y_test: (1722, 1) +2024-07-19 14:14:36.870 [4/make_x_y/18 (pid 96508)] Task finished successfully. +2024-07-19 14:14:36.901 [4/cross_validate_train/19 (pid 96519)] Task is starting. +2024-07-19 14:14:38.433 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Creating bgd_office_5001_10000_LSTM +2024-07-19 14:14:38.439 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Performing cross validation.. +2024-07-19 14:14:39.246 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 1/50, Train Loss: 0.16203000940181114, Val Loss: 0.1922409442832341 +2024-07-19 14:14:39.458 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 2/50, Train Loss: 0.1416931651734017, Val Loss: 0.1781616579439189 +2024-07-19 14:14:39.667 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 3/50, Train Loss: 0.1298109187266311, Val Loss: 0.1571031186628986 +2024-07-19 14:14:39.924 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 4/50, Train Loss: 0.11355213085944588, Val Loss: 0.14448746052142736 +2024-07-19 14:14:40.171 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 5/50, Train Loss: 0.10125793335405556, Val Loss: 0.11571843891933158 +2024-07-19 14:14:40.381 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 6/50, Train Loss: 0.09287719227172234, Val Loss: 0.10782610564618497 +2024-07-19 14:14:40.588 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 7/50, Train Loss: 0.08740200092260902, Val Loss: 0.10538950673228986 +2024-07-19 14:14:40.803 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 8/50, Train Loss: 0.08388594819887264, Val Loss: 0.09795235983423285 +2024-07-19 14:14:41.065 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 9/50, Train Loss: 0.08034013846033328, Val Loss: 0.09180947000513205 +2024-07-19 14:14:41.284 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 10/50, Train Loss: 0.07814430817961693, Val Loss: 0.08906013679665488 +2024-07-19 14:14:41.498 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 11/50, Train Loss: 0.07707412611391093, Val Loss: 0.08731881921758523 +2024-07-19 14:14:41.736 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 12/50, Train Loss: 0.07553791571911928, Val Loss: 0.08455759473145008 +2024-07-19 14:14:42.038 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 13/50, Train Loss: 0.07392452279659542, Val Loss: 0.08159772654038829 +2024-07-19 14:14:42.303 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 14/50, Train Loss: 0.0729562705130996, Val Loss: 0.0811724426174486 +2024-07-19 14:14:42.518 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 15/50, Train Loss: 0.07249809781441817, Val Loss: 0.08034730662365218 +2024-07-19 14:14:42.765 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 16/50, Train Loss: 0.07229844697222516, Val Loss: 0.07956160046160221 +2024-07-19 14:14:43.060 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 17/50, Train Loss: 0.07252534252364894, Val Loss: 0.07892688459439857 +2024-07-19 14:14:43.280 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 18/50, Train Loss: 0.07146479813633738, Val Loss: 0.07825706773311705 +2024-07-19 14:14:43.492 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 19/50, Train Loss: 0.07090265313918526, Val Loss: 0.07718522071435645 +2024-07-19 14:14:43.699 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 20/50, Train Loss: 0.07065520994365215, Val Loss: 0.07653905808724262 +2024-07-19 14:14:43.926 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 21/50, Train Loss: 0.07069830722301393, Val Loss: 0.07625097066566751 +2024-07-19 14:14:44.160 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 22/50, Train Loss: 0.07054027195113736, Val Loss: 0.07578937810015034 +2024-07-19 14:14:44.376 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 23/50, Train Loss: 0.07045918224832497, Val Loss: 0.07581883235960393 +2024-07-19 14:14:44.582 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 24/50, Train Loss: 0.0708071138407733, Val Loss: 0.07674658142432973 +2024-07-19 14:14:44.803 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 25/50, Train Loss: 0.07065108982292381, Val Loss: 0.07542189301268475 +2024-07-19 14:14:45.034 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 26/50, Train Loss: 0.06983529192370337, Val Loss: 0.07688491630393106 +2024-07-19 14:14:45.255 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 27/50, Train Loss: 0.07013445959199925, Val Loss: 0.0765864984006495 +2024-07-19 14:14:45.466 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 28/50, Train Loss: 0.06938207743538392, Val Loss: 0.07365528111522263 +2024-07-19 14:14:45.676 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 29/50, Train Loss: 0.06961931207695522, Val Loss: 0.07490282878279686 +2024-07-19 14:14:45.900 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 30/50, Train Loss: 0.06863148913190172, Val Loss: 0.07312130515237113 +2024-07-19 14:14:46.124 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 31/50, Train Loss: 0.06929061524066571, Val Loss: 0.07371933717985411 +2024-07-19 14:14:46.350 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 32/50, Train Loss: 0.06796647381742259, Val Loss: 0.07196685128115318 +2024-07-19 14:14:46.563 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 33/50, Train Loss: 0.06927827111369855, Val Loss: 0.0739982921026043 +2024-07-19 14:14:46.775 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 34/50, Train Loss: 0.06840905620137581, Val Loss: 0.07202307527532449 +2024-07-19 14:14:47.006 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 35/50, Train Loss: 0.06889288210486239, Val Loss: 0.07325148683142017 +2024-07-19 14:14:47.232 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 36/50, Train Loss: 0.06767036803570148, Val Loss: 0.07198865575766242 +2024-07-19 14:14:47.446 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 37/50, Train Loss: 0.06879350716701231, Val Loss: 0.07345680414220772 +2024-07-19 14:14:47.664 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 38/50, Train Loss: 0.0682773631871552, Val Loss: 0.07253474273995773 +2024-07-19 14:14:47.894 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 39/50, Train Loss: 0.06808704882860184, Val Loss: 0.07255164141187796 +2024-07-19 14:14:48.122 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 40/50, Train Loss: 0.06834994958763993, Val Loss: 0.07212706705605662 +2024-07-19 14:14:48.345 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 41/50, Train Loss: 0.06774899431479138, Val Loss: 0.07168224312969156 +2024-07-19 14:14:48.567 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 42/50, Train Loss: 0.06768561967623395, Val Loss: 0.07179453475652514 +2024-07-19 14:14:48.787 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 43/50, Train Loss: 0.06791974566373471, Val Loss: 0.07232053613139165 +2024-07-19 14:14:49.028 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 44/50, Train Loss: 0.0679358185797527, Val Loss: 0.071945064474602 +2024-07-19 14:14:49.258 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 45/50, Train Loss: 0.06727149503657946, Val Loss: 0.07134972039509464 +2024-07-19 14:14:49.471 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 46/50, Train Loss: 0.06717176161505081, Val Loss: 0.07137600941633856 +2024-07-19 14:14:49.688 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 47/50, Train Loss: 0.06723483425338526, Val Loss: 0.07157543613701253 +2024-07-19 14:14:49.916 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 48/50, Train Loss: 0.06713028367910837, Val Loss: 0.07181098226558517 +2024-07-19 14:14:50.149 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 49/50, Train Loss: 0.06791499340151613, Val Loss: 0.07270951126072858 +2024-07-19 14:14:50.389 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 50/50, Train Loss: 0.06681277980474201, Val Loss: 0.07290090091929242 +2024-07-19 14:14:50.389 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Fold 0, MAPE: 12.97% +2024-07-19 14:14:50.803 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Training image saved at metaflow_models//bgd_office_5001_10000_LSTM//train_f0_bgd_office_5001_10000_LSTM.png +2024-07-19 14:14:51.299 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 1/50, Train Loss: 0.05786436395592069, Val Loss: 0.07398187046920932 +2024-07-19 14:14:51.680 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 2/50, Train Loss: 0.05806823381005901, Val Loss: 0.07391176025408346 +2024-07-19 14:14:52.100 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 3/50, Train Loss: 0.057608646353426045, Val Loss: 0.07314111075892642 +2024-07-19 14:14:52.476 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 4/50, Train Loss: 0.05744350061126768, Val Loss: 0.07252011810605591 +2024-07-19 14:14:52.842 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 5/50, Train Loss: 0.05726793546178569, Val Loss: 0.07270813773612718 +2024-07-19 14:14:53.228 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 6/50, Train Loss: 0.057085634336794075, Val Loss: 0.0718057399263253 +2024-07-19 14:14:53.600 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 7/50, Train Loss: 0.05699222286116995, Val Loss: 0.07189404395585125 +2024-07-19 14:14:54.043 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 8/50, Train Loss: 0.057152872407579255, Val Loss: 0.0723251004678172 +2024-07-19 14:14:54.423 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 9/50, Train Loss: 0.057290528747827224, Val Loss: 0.07235604393723849 +2024-07-19 14:14:54.804 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 10/50, Train Loss: 0.056777712519038216, Val Loss: 0.07172362229509933 +2024-07-19 14:14:55.205 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 11/50, Train Loss: 0.056828740384582785, Val Loss: 0.07154294410468759 +2024-07-19 14:14:55.577 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 12/50, Train Loss: 0.05709598651028251, Val Loss: 0.07214346638805158 +2024-07-19 14:14:55.951 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 13/50, Train Loss: 0.05675058591192308, Val Loss: 0.07115256776278084 +2024-07-19 14:14:56.335 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 14/50, Train Loss: 0.05665966569867036, Val Loss: 0.07256806646851269 +2024-07-19 14:14:56.705 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 15/50, Train Loss: 0.056992904385169074, Val Loss: 0.07188012400591695 +2024-07-19 14:14:57.089 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 16/50, Train Loss: 0.05669378708690813, Val Loss: 0.07255616758924884 +2024-07-19 14:14:57.468 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 17/50, Train Loss: 0.05699590921453009, Val Loss: 0.07139619887881987 +2024-07-19 14:14:57.848 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 18/50, Train Loss: 0.056450507437733756, Val Loss: 0.07070618882976673 +2024-07-19 14:14:58.252 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 19/50, Train Loss: 0.05658697564001769, Val Loss: 0.07273969159939804 +2024-07-19 14:14:58.636 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 20/50, Train Loss: 0.056464429600291875, Val Loss: 0.07052819677502722 +2024-07-19 14:14:59.086 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 21/50, Train Loss: 0.05606647542588515, Val Loss: 0.07020778198902672 +2024-07-19 14:14:59.468 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 22/50, Train Loss: 0.056263708011948896, Val Loss: 0.06978408156617268 +2024-07-19 14:14:59.844 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 23/50, Train Loss: 0.05607826457907484, Val Loss: 0.07067877587837142 +2024-07-19 14:15:00.259 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 24/50, Train Loss: 0.05623136481193647, Val Loss: 0.07032328174525015 +2024-07-19 14:15:00.680 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 25/50, Train Loss: 0.05560719897996073, Val Loss: 0.06980995265011852 +2024-07-19 14:15:01.142 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 26/50, Train Loss: 0.05611312973683011, Val Loss: 0.07024384813534247 +2024-07-19 14:15:01.541 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 27/50, Train Loss: 0.05578277422089691, Val Loss: 0.0699750062178921 +2024-07-19 14:15:01.922 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 28/50, Train Loss: 0.05582645798280631, Val Loss: 0.06984248344559928 +2024-07-19 14:15:02.310 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 29/50, Train Loss: 0.05564931137104557, Val Loss: 0.07064480853040477 +2024-07-19 14:15:02.674 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 30/50, Train Loss: 0.05557461037007097, Val Loss: 0.07031039083124818 +2024-07-19 14:15:03.053 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 31/50, Train Loss: 0.055845983390224306, Val Loss: 0.07088419140593426 +2024-07-19 14:15:03.434 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 32/50, Train Loss: 0.0554891141157036, Val Loss: 0.0703029738286057 +2024-07-19 14:15:03.800 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 33/50, Train Loss: 0.05519278580960754, Val Loss: 0.07052152971359524 +2024-07-19 14:15:04.201 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 34/50, Train Loss: 0.05557915324676935, Val Loss: 0.07137835569478371 +2024-07-19 14:15:04.601 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 35/50, Train Loss: 0.05578293962633773, Val Loss: 0.07190706837620284 +2024-07-19 14:15:05.086 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 36/50, Train Loss: 0.05566465972016935, Val Loss: 0.07161765243556048 +2024-07-19 14:15:05.481 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 37/50, Train Loss: 0.05542567987250139, Val Loss: 0.07193346215865097 +2024-07-19 14:15:05.920 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 38/50, Train Loss: 0.055710990134983845, Val Loss: 0.0705378699947048 +2024-07-19 14:15:06.313 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 39/50, Train Loss: 0.05523706904982459, Val Loss: 0.07128124694163734 +2024-07-19 14:15:06.711 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 40/50, Train Loss: 0.05528623025149924, Val Loss: 0.07072144495071592 +2024-07-19 14:15:07.099 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 41/50, Train Loss: 0.05507588124999853, Val Loss: 0.07137931651763015 +2024-07-19 14:15:07.516 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 42/50, Train Loss: 0.05547851481002896, Val Loss: 0.0737523202457138 +2024-07-19 14:15:07.899 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 43/50, Train Loss: 0.05540252636403662, Val Loss: 0.07245571699899596 +2024-07-19 14:15:08.287 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 44/50, Train Loss: 0.05533737025848807, Val Loss: 0.07202723013186776 +2024-07-19 14:15:08.693 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 45/50, Train Loss: 0.054752885925341145, Val Loss: 0.07144581899046898 +2024-07-19 14:15:09.090 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 46/50, Train Loss: 0.05485944393767069, Val Loss: 0.07236309248853375 +2024-07-19 14:15:09.478 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 47/50, Train Loss: 0.05503574173183066, Val Loss: 0.07302098972974597 +2024-07-19 14:15:09.866 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 48/50, Train Loss: 0.054693739567819526, Val Loss: 0.07294834646824244 +2024-07-19 14:15:10.296 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 49/50, Train Loss: 0.054673316135798414, Val Loss: 0.078580553316184 +2024-07-19 14:15:10.670 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 50/50, Train Loss: 0.05479013734841592, Val Loss: 0.07439483274277803 +2024-07-19 14:15:10.670 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Fold 1, MAPE: 14.39% +2024-07-19 14:15:10.785 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Training image saved at metaflow_models//bgd_office_5001_10000_LSTM//train_f1_bgd_office_5001_10000_LSTM.png +2024-07-19 14:15:11.393 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 1/50, Train Loss: 0.0461178124289621, Val Loss: 0.06560851734232258 +2024-07-19 14:15:11.913 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 2/50, Train Loss: 0.04669453798877922, Val Loss: 0.06460567956437936 +2024-07-19 14:15:12.463 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 3/50, Train Loss: 0.045589527259157464, Val Loss: 0.06375925393926131 +2024-07-19 14:15:12.995 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 4/50, Train Loss: 0.04575585292821581, Val Loss: 0.06403002057325195 +2024-07-19 14:15:13.551 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 5/50, Train Loss: 0.04610115546225147, Val Loss: 0.06364303625918724 +2024-07-19 14:15:14.092 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 6/50, Train Loss: 0.04587563388049602, Val Loss: 0.06325468572007643 +2024-07-19 14:15:14.692 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 7/50, Train Loss: 0.04586927172812549, Val Loss: 0.06380007028378346 +2024-07-19 14:15:15.226 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 8/50, Train Loss: 0.045541504660451954, Val Loss: 0.06270208687999763 +2024-07-19 14:15:15.773 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 9/50, Train Loss: 0.04548781327903271, Val Loss: 0.06431136189683063 +2024-07-19 14:15:16.384 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 10/50, Train Loss: 0.04547011996196075, Val Loss: 0.06353091926792183 +2024-07-19 14:15:16.947 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 11/50, Train Loss: 0.04568007209084251, Val Loss: 0.06251816713326686 +2024-07-19 14:15:17.541 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 12/50, Train Loss: 0.04538155471567403, Val Loss: 0.06376491351103461 +2024-07-19 14:15:18.066 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 13/50, Train Loss: 0.0452290875244547, Val Loss: 0.06358062209108391 +2024-07-19 14:15:18.596 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 14/50, Train Loss: 0.045490725787187165, Val Loss: 0.06255802507134708 +2024-07-19 14:15:19.132 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 15/50, Train Loss: 0.04526920918036591, Val Loss: 0.06378014224606592 +2024-07-19 14:15:19.659 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 16/50, Train Loss: 0.04493802182207053, Val Loss: 0.06364507429503105 +2024-07-19 14:15:20.260 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 17/50, Train Loss: 0.0450061346234923, Val Loss: 0.06443067967287593 +2024-07-19 14:15:20.775 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 18/50, Train Loss: 0.045120823798193176, Val Loss: 0.063977226212218 +2024-07-19 14:15:21.318 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 19/50, Train Loss: 0.04508563810959458, Val Loss: 0.06278543748162888 +2024-07-19 14:15:21.887 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 20/50, Train Loss: 0.04501507380469279, Val Loss: 0.06430690040862239 +2024-07-19 14:15:22.433 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 21/50, Train Loss: 0.04469922429627993, Val Loss: 0.0636055758978064 +2024-07-19 14:15:22.943 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 22/50, Train Loss: 0.04477725850248879, Val Loss: 0.0634472679749534 +2024-07-19 14:15:23.482 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 23/50, Train Loss: 0.044814844014631074, Val Loss: 0.06383027941794009 +2024-07-19 14:15:24.066 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 24/50, Train Loss: 0.045007208523086525, Val Loss: 0.06310074907299634 +2024-07-19 14:15:24.633 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 25/50, Train Loss: 0.044549164743247355, Val Loss: 0.0653180450301718 +2024-07-19 14:15:25.285 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 26/50, Train Loss: 0.04481812029738318, Val Loss: 0.06359165101437955 +2024-07-19 14:15:25.816 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 27/50, Train Loss: 0.04509443699128248, Val Loss: 0.06333014223019819 +2024-07-19 14:15:26.428 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 28/50, Train Loss: 0.044394913349639284, Val Loss: 0.06542166674862036 +2024-07-19 14:15:26.965 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 29/50, Train Loss: 0.04452056518163194, Val Loss: 0.06263209083998525 +2024-07-19 14:15:27.541 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 30/50, Train Loss: 0.04466074887155132, Val Loss: 0.06197570858372224 +2024-07-19 14:15:28.148 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 31/50, Train Loss: 0.0443401652303609, Val Loss: 0.0638135043350426 +2024-07-19 14:15:28.708 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 32/50, Train Loss: 0.044397844170982186, Val Loss: 0.06304139462677208 +2024-07-19 14:15:29.298 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 33/50, Train Loss: 0.04422123406759717, Val Loss: 0.06389215367065894 +2024-07-19 14:15:29.815 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 34/50, Train Loss: 0.04397372507744215, Val Loss: 0.06392062913525749 +2024-07-19 14:15:30.419 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 35/50, Train Loss: 0.044336990834298456, Val Loss: 0.06238567909678897 +2024-07-19 14:15:30.936 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 36/50, Train Loss: 0.044367209153080525, Val Loss: 0.06212647797892223 +2024-07-19 14:15:31.493 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 37/50, Train Loss: 0.04396814378825101, Val Loss: 0.06295357966745221 +2024-07-19 14:15:32.024 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 38/50, Train Loss: 0.044076940171759234, Val Loss: 0.06407885479967336 +2024-07-19 14:15:32.566 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 39/50, Train Loss: 0.04362663198262453, Val Loss: 0.06178098569649297 +2024-07-19 14:15:33.125 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 40/50, Train Loss: 0.044214831478893754, Val Loss: 0.06223207732310166 +2024-07-19 14:15:33.656 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 41/50, Train Loss: 0.04392009380019524, Val Loss: 0.061752787262604046 +2024-07-19 14:15:34.193 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 42/50, Train Loss: 0.043853343557566406, Val Loss: 0.06319310224136791 +2024-07-19 14:15:34.723 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 43/50, Train Loss: 0.04388158246874809, Val Loss: 0.06202480685267899 +2024-07-19 14:15:35.253 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 44/50, Train Loss: 0.04407827319069342, Val Loss: 0.06184125344294149 +2024-07-19 14:15:35.779 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 45/50, Train Loss: 0.04389087489213456, Val Loss: 0.06271709078872525 +2024-07-19 14:15:36.328 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 46/50, Train Loss: 0.04370488784360615, Val Loss: 0.06113324238843209 +2024-07-19 14:15:36.858 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 47/50, Train Loss: 0.04412318264896219, Val Loss: 0.06283871305955423 +2024-07-19 14:15:37.397 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 48/50, Train Loss: 0.043378034149381246, Val Loss: 0.0625886593416736 +2024-07-19 14:15:37.922 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 49/50, Train Loss: 0.04350906910205429, Val Loss: 0.06147742059987944 +2024-07-19 14:15:38.498 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 50/50, Train Loss: 0.043689714397557755, Val Loss: 0.06191247691576545 +2024-07-19 14:15:38.498 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Fold 2, MAPE: 12.12% +2024-07-19 14:15:38.613 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Training image saved at metaflow_models//bgd_office_5001_10000_LSTM//train_f2_bgd_office_5001_10000_LSTM.png +2024-07-19 14:15:39.328 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 1/50, Train Loss: 0.043202793174614645, Val Loss: 0.059413765229888865 +2024-07-19 14:15:40.017 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 2/50, Train Loss: 0.04315264518564082, Val Loss: 0.05798281653708703 +2024-07-19 14:15:40.752 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 3/50, Train Loss: 0.04245520726943465, Val Loss: 0.05802843362294339 +2024-07-19 14:15:41.491 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 4/50, Train Loss: 0.04263736104133398, Val Loss: 0.05738675126151459 +2024-07-19 14:15:42.203 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 5/50, Train Loss: 0.04250246275548045, Val Loss: 0.05689432336067831 +2024-07-19 14:15:42.938 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 6/50, Train Loss: 0.0424878202531844, Val Loss: 0.056478868616191114 +2024-07-19 14:15:43.654 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 7/50, Train Loss: 0.0422870721668005, Val Loss: 0.05703119999049483 +2024-07-19 14:15:44.356 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 8/50, Train Loss: 0.041785748857264854, Val Loss: 0.05634359204889955 +2024-07-19 14:15:45.041 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 9/50, Train Loss: 0.04181478400906063, Val Loss: 0.05631694982986193 +2024-07-19 14:15:45.782 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 10/50, Train Loss: 0.04213386982015959, Val Loss: 0.05657825991511345 +2024-07-19 14:15:46.561 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 11/50, Train Loss: 0.04194922135402895, Val Loss: 0.056211780656028436 +2024-07-19 14:15:47.277 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 12/50, Train Loss: 0.04228399307403254, Val Loss: 0.05694341669614251 +2024-07-19 14:15:47.990 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 13/50, Train Loss: 0.0417706776435857, Val Loss: 0.05640346833781616 +2024-07-19 14:15:48.789 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 14/50, Train Loss: 0.04210997992258978, Val Loss: 0.056584730996070684 +2024-07-19 14:15:49.629 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 15/50, Train Loss: 0.04163654621894637, Val Loss: 0.05608823678984835 +2024-07-19 14:15:50.328 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 16/50, Train Loss: 0.04148483883640538, Val Loss: 0.05607329817438448 +2024-07-19 14:15:51.009 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 17/50, Train Loss: 0.041442714899472176, Val Loss: 0.05599854594549617 +2024-07-19 14:15:51.711 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 18/50, Train Loss: 0.04152793915023747, Val Loss: 0.057550965380427 +2024-07-19 14:15:52.392 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 19/50, Train Loss: 0.041237776741793714, Val Loss: 0.056811976724782505 +2024-07-19 14:15:53.057 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 20/50, Train Loss: 0.04134030315438158, Val Loss: 0.05633625267325221 +2024-07-19 14:15:53.749 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 21/50, Train Loss: 0.04109187095668422, Val Loss: 0.05617245679368844 +2024-07-19 14:15:54.427 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 22/50, Train Loss: 0.04075368902684279, Val Loss: 0.05673670436482172 +2024-07-19 14:15:55.123 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 23/50, Train Loss: 0.041237907216259063, Val Loss: 0.05657261750988058 +2024-07-19 14:15:55.884 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 24/50, Train Loss: 0.04060930477085281, Val Loss: 0.05588792370179215 +2024-07-19 14:15:56.618 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 25/50, Train Loss: 0.04090670029926177, Val Loss: 0.057530118404208005 +2024-07-19 14:15:57.309 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 26/50, Train Loss: 0.0402734500725996, Val Loss: 0.056239796349325695 +2024-07-19 14:15:58.003 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 27/50, Train Loss: 0.04035561538161072, Val Loss: 0.05489177639419968 +2024-07-19 14:15:58.829 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 28/50, Train Loss: 0.04005007018424468, Val Loss: 0.05614896380418056 +2024-07-19 14:15:59.532 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 29/50, Train Loss: 0.04026872377638539, Val Loss: 0.05601893189186986 +2024-07-19 14:16:00.226 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 30/50, Train Loss: 0.039819884426534585, Val Loss: 0.05525648961397442 +2024-07-19 14:16:00.935 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 31/50, Train Loss: 0.03979253880552029, Val Loss: 0.054485296427800846 +2024-07-19 14:16:01.685 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 32/50, Train Loss: 0.03982646886437927, Val Loss: 0.0550543622592011 +2024-07-19 14:16:02.378 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 33/50, Train Loss: 0.0399034966408492, Val Loss: 0.0550058917520014 +2024-07-19 14:16:03.147 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 34/50, Train Loss: 0.03963154545436575, Val Loss: 0.05489961923779668 +2024-07-19 14:16:03.961 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 35/50, Train Loss: 0.03958770392258486, Val Loss: 0.05457469851181314 +2024-07-19 14:16:04.694 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 36/50, Train Loss: 0.03934006404437839, Val Loss: 0.053883175290114174 +2024-07-19 14:16:05.406 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 37/50, Train Loss: 0.0394920101708235, Val Loss: 0.054423501966772855 +2024-07-19 14:16:06.192 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 38/50, Train Loss: 0.03932235699325596, Val Loss: 0.054403959496601206 +2024-07-19 14:16:06.931 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 39/50, Train Loss: 0.03926791331080133, Val Loss: 0.05419276186541931 +2024-07-19 14:16:07.646 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 40/50, Train Loss: 0.03922091751703865, Val Loss: 0.05384578560856548 +2024-07-19 14:16:08.419 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 41/50, Train Loss: 0.03939335932317253, Val Loss: 0.05392885721615843 +2024-07-19 14:16:09.128 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 42/50, Train Loss: 0.039231587571334346, Val Loss: 0.053902931259693324 +2024-07-19 14:16:09.837 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 43/50, Train Loss: 0.03926686613425, Val Loss: 0.05414339869811728 +2024-07-19 14:16:10.571 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 44/50, Train Loss: 0.03901027165327783, Val Loss: 0.053564446802074846 +2024-07-19 14:16:11.281 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 45/50, Train Loss: 0.03873874440355456, Val Loss: 0.05406204928216096 +2024-07-19 14:16:11.972 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 46/50, Train Loss: 0.038862628843125004, Val Loss: 0.054228339746997166 +2024-07-19 14:16:12.662 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 47/50, Train Loss: 0.03879705999582393, Val Loss: 0.05383217818028218 +2024-07-19 14:16:13.332 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 48/50, Train Loss: 0.038768352392091324, Val Loss: 0.055113328067032064 +2024-07-19 14:16:14.098 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 49/50, Train Loss: 0.038773733752537266, Val Loss: 0.05350424671495283 +2024-07-19 14:16:14.819 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 50/50, Train Loss: 0.03881172682732752, Val Loss: 0.05386759733428826 +2024-07-19 14:16:14.819 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Fold 3, MAPE: 11.29% +2024-07-19 14:16:14.940 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Training image saved at metaflow_models//bgd_office_5001_10000_LSTM//train_f3_bgd_office_5001_10000_LSTM.png +2024-07-19 14:16:15.845 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 1/50, Train Loss: 0.04154350495498095, Val Loss: 0.048235162387828566 +2024-07-19 14:16:16.744 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 2/50, Train Loss: 0.041218342019019874, Val Loss: 0.04749060341635266 +2024-07-19 14:16:17.632 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 3/50, Train Loss: 0.041134801237833696, Val Loss: 0.04832341521978378 +2024-07-19 14:16:18.511 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 4/50, Train Loss: 0.04090976394242146, Val Loss: 0.05003790245265574 +2024-07-19 14:16:19.395 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 5/50, Train Loss: 0.04094087341697989, Val Loss: 0.04798139551201382 +2024-07-19 14:16:20.310 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 6/50, Train Loss: 0.040661494697925155, Val Loss: 0.0486257334013243 +2024-07-19 14:16:21.210 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 7/50, Train Loss: 0.040521499050965346, Val Loss: 0.04822335679184746 +2024-07-19 14:16:22.104 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 8/50, Train Loss: 0.040299927544585626, Val Loss: 0.048710804130579974 +2024-07-19 14:16:23.072 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 9/50, Train Loss: 0.04031709613339914, Val Loss: 0.04819450889890258 +2024-07-19 14:16:24.102 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 10/50, Train Loss: 0.039989662128961184, Val Loss: 0.04853224291189297 +2024-07-19 14:16:25.055 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 11/50, Train Loss: 0.03994342169959794, Val Loss: 0.04790532896043481 +2024-07-19 14:16:25.957 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 12/50, Train Loss: 0.03988504161352067, Val Loss: 0.047681372864423574 +2024-07-19 14:16:26.840 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 13/50, Train Loss: 0.03993333756647349, Val Loss: 0.04727326605368305 +2024-07-19 14:16:27.723 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 14/50, Train Loss: 0.03980405008481754, Val Loss: 0.04805368104496518 +2024-07-19 14:16:28.626 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 15/50, Train Loss: 0.039713771701636875, Val Loss: 0.04726092497239242 +2024-07-19 14:16:29.506 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 16/50, Train Loss: 0.03971896197769668, Val Loss: 0.047208856036131445 +2024-07-19 14:16:30.443 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 17/50, Train Loss: 0.03958576668186912, Val Loss: 0.046851477208169734 +2024-07-19 14:16:31.322 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 18/50, Train Loss: 0.03937824676325033, Val Loss: 0.04700873371817776 +2024-07-19 14:16:32.196 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 19/50, Train Loss: 0.039171159285335586, Val Loss: 0.048007951193564644 +2024-07-19 14:16:33.139 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 20/50, Train Loss: 0.039269027865624855, Val Loss: 0.04723423674098543 +2024-07-19 14:16:34.022 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 21/50, Train Loss: 0.03954425099009013, Val Loss: 0.04678839890638719 +2024-07-19 14:16:34.964 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 22/50, Train Loss: 0.039164102114327665, Val Loss: 0.04757624376263168 +2024-07-19 14:16:35.940 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 23/50, Train Loss: 0.03911880705157643, Val Loss: 0.04763565942443706 +2024-07-19 14:16:36.813 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 24/50, Train Loss: 0.038790487413100164, Val Loss: 0.04680503728623326 +2024-07-19 14:16:37.693 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 25/50, Train Loss: 0.03919735860980147, Val Loss: 0.04804201414053504 +2024-07-19 14:16:38.620 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 26/50, Train Loss: 0.039228448135123314, Val Loss: 0.047447635666341394 +2024-07-19 14:16:39.623 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 27/50, Train Loss: 0.03881626523478509, Val Loss: 0.0472640832634391 +2024-07-19 14:16:40.538 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 28/50, Train Loss: 0.03869759135593016, Val Loss: 0.047833593260194804 +2024-07-19 14:16:41.430 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 29/50, Train Loss: 0.038953015237923834, Val Loss: 0.04760505742317921 +2024-07-19 14:16:42.335 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 30/50, Train Loss: 0.03864491854507763, Val Loss: 0.047958312958881665 +2024-07-19 14:16:43.213 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 31/50, Train Loss: 0.038443688420926804, Val Loss: 0.04688504962502299 +2024-07-19 14:16:44.108 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 32/50, Train Loss: 0.03877932167673422, Val Loss: 0.046834571991820596 +2024-07-19 14:16:45.024 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 33/50, Train Loss: 0.038448928765809305, Val Loss: 0.047913064374714286 +2024-07-19 14:16:45.902 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 34/50, Train Loss: 0.038458533091265915, Val Loss: 0.047371644778428854 +2024-07-19 14:16:46.803 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 35/50, Train Loss: 0.038270751889385696, Val Loss: 0.047140694902958094 +2024-07-19 14:16:47.723 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 36/50, Train Loss: 0.038253171827418955, Val Loss: 0.0474181699793081 +2024-07-19 14:16:48.666 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 37/50, Train Loss: 0.03828359839946523, Val Loss: 0.046519691627976055 +2024-07-19 14:16:49.564 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 38/50, Train Loss: 0.03792785318148742, Val Loss: 0.046395046133044605 +2024-07-19 14:16:50.503 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 39/50, Train Loss: 0.03832638645442305, Val Loss: 0.04738106784989705 +2024-07-19 14:16:51.408 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 40/50, Train Loss: 0.03834745938541716, Val Loss: 0.047955402349298064 +2024-07-19 14:16:52.326 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 41/50, Train Loss: 0.038004052016761276, Val Loss: 0.04623659518924919 +2024-07-19 14:16:53.224 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 42/50, Train Loss: 0.03787051048129797, Val Loss: 0.04800058644566987 +2024-07-19 14:16:54.117 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 43/50, Train Loss: 0.0380733590624244, Val Loss: 0.04788026686858486 +2024-07-19 14:16:55.007 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 44/50, Train Loss: 0.03778992593800137, Val Loss: 0.04644654671082626 +2024-07-19 14:16:55.884 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 45/50, Train Loss: 0.03784676774783612, Val Loss: 0.04731920160151817 +2024-07-19 14:16:56.792 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 46/50, Train Loss: 0.0377631387366289, Val Loss: 0.04649016885338603 +2024-07-19 14:16:57.751 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 47/50, Train Loss: 0.03778581991587039, Val Loss: 0.046338824555277824 +2024-07-19 14:16:58.663 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 48/50, Train Loss: 0.037583307665005165, Val Loss: 0.04720881062786322 +2024-07-19 14:16:59.558 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 49/50, Train Loss: 0.037557494174177336, Val Loss: 0.04718323706372364 +2024-07-19 14:17:00.495 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 50/50, Train Loss: 0.0375787640645445, Val Loss: 0.04633492266608251 +2024-07-19 14:17:00.496 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Fold 4, MAPE: 11.10% +2024-07-19 14:17:00.610 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Training image saved at metaflow_models//bgd_office_5001_10000_LSTM//train_f4_bgd_office_5001_10000_LSTM.png +2024-07-19 14:17:05.237 [4/cross_validate_train/19 (pid 96519)] Task finished successfully. +2024-07-19 14:17:05.269 [4/model_scores/20 (pid 97202)] Task is starting. +2024-07-19 14:17:06.796 [4/model_scores/20 (pid 97202)] INFO:__main__:Average Train Loss across all folds: 0.04833662448851754 +2024-07-19 14:17:10.771 [4/model_scores/20 (pid 97202)] INFO:__main__:Average Validation Loss across all folds: 0.061882146115641336 +2024-07-19 14:17:10.772 [4/model_scores/20 (pid 97202)] INFO:__main__:Average MAPE across all folds: 12.37% +2024-07-19 14:17:10.773 [4/model_scores/20 (pid 97202)] Task finished successfully. +2024-07-19 14:17:10.803 [4/validate_model/21 (pid 97241)] Task is starting. +2024-07-19 14:17:12.364 [4/validate_model/21 (pid 97241)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:17:12.508 [4/validate_model/21 (pid 97241)] INFO:__main__:Test Set MAPE: 9.55% +2024-07-19 14:17:12.882 [4/validate_model/21 (pid 97241)] INFO:__main__:Test image saved at metaflow_models//bgd_office_5001_10000_LSTM//test_bgd_office_5001_10000_LSTM.png +2024-07-19 14:17:13.314 [4/validate_model/21 (pid 97241)] Task finished successfully. +2024-07-19 14:17:13.347 [4/log_model/22 (pid 97258)] Task is starting. +2024-07-19 14:17:14.867 [4/log_model/22 (pid 97258)] INFO:__main__:Logging model bgd_office_5001_10000_LSTM +2024-07-19 14:17:14.869 [4/log_model/22 (pid 97258)] INFO:__main__:Model logged at metaflow_models//bgd_office_5001_10000_LSTM//bgd_office_5001_10000_LSTM.pth +2024-07-19 14:17:19.014 [4/log_model/22 (pid 97258)] Task finished successfully. +2024-07-19 14:17:19.043 [4/end/23 (pid 97302)] Task is starting. +2024-07-19 14:17:20.545 [4/end/23 (pid 97302)] INFO:__main__:Pipeline end. +2024-07-19 14:17:20.921 [4/end/23 (pid 97302)] Task finished successfully. +2024-07-19 14:17:20.921 Done! +Starting Metaflow run. +✅ Run('BGD_LinearFlow/4') succeeded: +-- stdout -- +2024-07-19 14:14:06.268 Workflow starting (run-id 4): +2024-07-19 14:14:06.336 [4/start/11 (pid 96293)] Task is starting. +2024-07-19 14:14:07.899 [4/start/11 (pid 96293)] INFO:__main__:Starting BGD linear flow.. +2024-07-19 14:14:08.212 [4/start/11 (pid 96293)] Task finished successfully. +2024-07-19 14:14:08.248 [4/ingest/12 (pid 96306)] Task is starting. +2024-07-19 14:14:09.815 [4/ingest/12 (pid 96306)] INFO:__main__:Fetching dataframe.. +2024-07-19 14:14:09.834 [4/ingest/12 (pid 96306)] INFO:__main__:Dataframe fetching complete.. +2024-07-19 14:14:13.841 [4/ingest/12 (pid 96306)] Task finished successfully. +2024-07-19 14:14:13.870 [4/pick_2017_data/13 (pid 96344)] Task is starting. +2024-07-19 14:14:15.328 [4/pick_2017_data/13 (pid 96344)] INFO:__main__:Picking 2017 data.. +2024-07-19 14:14:15.693 [4/pick_2017_data/13 (pid 96344)] Task finished successfully. +2024-07-19 14:14:15.729 [4/fill_missing_data/14 (pid 96361)] Task is starting. +2024-07-19 14:14:17.255 [4/fill_missing_data/14 (pid 96361)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-19 14:14:17.259 [4/fill_missing_data/14 (pid 96361)] INFO:__main__:NaN counts per column: +2024-07-19 14:14:17.259 [4/fill_missing_data/14 (pid 96361)] INFO:__main__:Panther_office_Jeane 11 +2024-07-19 14:14:17.260 [4/fill_missing_data/14 (pid 96361)] Fox_office_Molly 14 +2024-07-19 14:14:17.260 [4/fill_missing_data/14 (pid 96361)] dtype: int64 +2024-07-19 14:14:17.260 [4/fill_missing_data/14 (pid 96361)] --- Logging error --- +2024-07-19 14:14:17.260 [4/fill_missing_data/14 (pid 96361)] Traceback (most recent call last): +2024-07-19 14:14:17.260 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] msg = self.format(record) +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] return fmt.format(record) +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] record.message = record.getMessage() +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] msg = msg % self.args +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] TypeError: not all arguments converted during string formatting +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] Call stack: +2024-07-19 14:14:17.262 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 338, in +2024-07-19 14:14:17.601 [4/fill_missing_data/14 (pid 96361)] BGD_LinearFlow() +2024-07-19 14:14:17.601 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] cli.main(self) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] return func(*args, **kwargs) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] return self.main(*args, **kwargs) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] rv = self.invoke(ctx) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] return ctx.invoke(self.callback, **ctx.params) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] return callback(*args, **kwargs) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] return f(get_current_context(), *args, **kwargs) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] task.run_step( +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] self._exec_step_function(step_func) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] step_function() +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] self.missing_values = find_nan_counts(self.df) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 293, in find_nan_counts +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-19 14:14:17.602 [4/fill_missing_data/14 (pid 96361)] Arguments: (25,) +2024-07-19 14:14:17.603 [4/fill_missing_data/14 (pid 96361)] Task finished successfully. +2024-07-19 14:14:17.634 [4/find_median/15 (pid 96375)] Task is starting. +2024-07-19 14:14:19.131 [4/find_median/15 (pid 96375)] INFO:__main__:Computing and using median.. +2024-07-19 14:14:23.367 [4/find_median/15 (pid 96375)] Task finished successfully. +2024-07-19 14:14:23.410 [4/aggregate_data/16 (pid 96412)] Task is starting. +2024-07-19 14:14:24.978 [4/aggregate_data/16 (pid 96412)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-19 14:14:28.915 [4/aggregate_data/16 (pid 96412)] Task finished successfully. +2024-07-19 14:14:28.948 [4/split_data/17 (pid 96454)] Task is starting. +2024-07-19 14:14:30.506 [4/split_data/17 (pid 96454)] INFO:__main__:Splitting data into test and train... +2024-07-19 14:14:34.655 [4/split_data/17 (pid 96454)] Task finished successfully. +2024-07-19 14:14:34.688 [4/make_x_y/18 (pid 96508)] Task is starting. +2024-07-19 14:14:36.534 [4/make_x_y/18 (pid 96508)] INFO:__main__:Shape of X_train: (6978, 30, 1) +2024-07-19 14:14:36.868 [4/make_x_y/18 (pid 96508)] Shape of y_train: (6978, 1) +2024-07-19 14:14:36.869 [4/make_x_y/18 (pid 96508)] Shape of X_test: (1722, 30, 1) +2024-07-19 14:14:36.869 [4/make_x_y/18 (pid 96508)] Shape of y_test: (1722, 1) +2024-07-19 14:14:36.870 [4/make_x_y/18 (pid 96508)] Task finished successfully. +2024-07-19 14:14:36.901 [4/cross_validate_train/19 (pid 96519)] Task is starting. +2024-07-19 14:14:38.433 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Creating bgd_office_5001_10000_LSTM +2024-07-19 14:14:38.439 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Performing cross validation.. +2024-07-19 14:14:39.246 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 1/50, Train Loss: 0.16203000940181114, Val Loss: 0.1922409442832341 +2024-07-19 14:14:39.458 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 2/50, Train Loss: 0.1416931651734017, Val Loss: 0.1781616579439189 +2024-07-19 14:14:39.667 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 3/50, Train Loss: 0.1298109187266311, Val Loss: 0.1571031186628986 +2024-07-19 14:14:39.924 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 4/50, Train Loss: 0.11355213085944588, Val Loss: 0.14448746052142736 +2024-07-19 14:14:40.171 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 5/50, Train Loss: 0.10125793335405556, Val Loss: 0.11571843891933158 +2024-07-19 14:14:40.381 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 6/50, Train Loss: 0.09287719227172234, Val Loss: 0.10782610564618497 +2024-07-19 14:14:40.588 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 7/50, Train Loss: 0.08740200092260902, Val Loss: 0.10538950673228986 +2024-07-19 14:14:40.803 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 8/50, Train Loss: 0.08388594819887264, Val Loss: 0.09795235983423285 +2024-07-19 14:14:41.065 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 9/50, Train Loss: 0.08034013846033328, Val Loss: 0.09180947000513205 +2024-07-19 14:14:41.284 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 10/50, Train Loss: 0.07814430817961693, Val Loss: 0.08906013679665488 +2024-07-19 14:14:41.498 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 11/50, Train Loss: 0.07707412611391093, Val Loss: 0.08731881921758523 +2024-07-19 14:14:41.736 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 12/50, Train Loss: 0.07553791571911928, Val Loss: 0.08455759473145008 +2024-07-19 14:14:42.038 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 13/50, Train Loss: 0.07392452279659542, Val Loss: 0.08159772654038829 +2024-07-19 14:14:42.303 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 14/50, Train Loss: 0.0729562705130996, Val Loss: 0.0811724426174486 +2024-07-19 14:14:42.518 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 15/50, Train Loss: 0.07249809781441817, Val Loss: 0.08034730662365218 +2024-07-19 14:14:42.765 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 16/50, Train Loss: 0.07229844697222516, Val Loss: 0.07956160046160221 +2024-07-19 14:14:43.060 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 17/50, Train Loss: 0.07252534252364894, Val Loss: 0.07892688459439857 +2024-07-19 14:14:43.280 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 18/50, Train Loss: 0.07146479813633738, Val Loss: 0.07825706773311705 +2024-07-19 14:14:43.492 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 19/50, Train Loss: 0.07090265313918526, Val Loss: 0.07718522071435645 +2024-07-19 14:14:43.699 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 20/50, Train Loss: 0.07065520994365215, Val Loss: 0.07653905808724262 +2024-07-19 14:14:43.926 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 21/50, Train Loss: 0.07069830722301393, Val Loss: 0.07625097066566751 +2024-07-19 14:14:44.160 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 22/50, Train Loss: 0.07054027195113736, Val Loss: 0.07578937810015034 +2024-07-19 14:14:44.376 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 23/50, Train Loss: 0.07045918224832497, Val Loss: 0.07581883235960393 +2024-07-19 14:14:44.582 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 24/50, Train Loss: 0.0708071138407733, Val Loss: 0.07674658142432973 +2024-07-19 14:14:44.803 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 25/50, Train Loss: 0.07065108982292381, Val Loss: 0.07542189301268475 +2024-07-19 14:14:45.034 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 26/50, Train Loss: 0.06983529192370337, Val Loss: 0.07688491630393106 +2024-07-19 14:14:45.255 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 27/50, Train Loss: 0.07013445959199925, Val Loss: 0.0765864984006495 +2024-07-19 14:14:45.466 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 28/50, Train Loss: 0.06938207743538392, Val Loss: 0.07365528111522263 +2024-07-19 14:14:45.676 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 29/50, Train Loss: 0.06961931207695522, Val Loss: 0.07490282878279686 +2024-07-19 14:14:45.900 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 30/50, Train Loss: 0.06863148913190172, Val Loss: 0.07312130515237113 +2024-07-19 14:14:46.124 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 31/50, Train Loss: 0.06929061524066571, Val Loss: 0.07371933717985411 +2024-07-19 14:14:46.350 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 32/50, Train Loss: 0.06796647381742259, Val Loss: 0.07196685128115318 +2024-07-19 14:14:46.563 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 33/50, Train Loss: 0.06927827111369855, Val Loss: 0.0739982921026043 +2024-07-19 14:14:46.775 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 34/50, Train Loss: 0.06840905620137581, Val Loss: 0.07202307527532449 +2024-07-19 14:14:47.006 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 35/50, Train Loss: 0.06889288210486239, Val Loss: 0.07325148683142017 +2024-07-19 14:14:47.232 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 36/50, Train Loss: 0.06767036803570148, Val Loss: 0.07198865575766242 +2024-07-19 14:14:47.446 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 37/50, Train Loss: 0.06879350716701231, Val Loss: 0.07345680414220772 +2024-07-19 14:14:47.664 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 38/50, Train Loss: 0.0682773631871552, Val Loss: 0.07253474273995773 +2024-07-19 14:14:47.894 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 39/50, Train Loss: 0.06808704882860184, Val Loss: 0.07255164141187796 +2024-07-19 14:14:48.122 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 40/50, Train Loss: 0.06834994958763993, Val Loss: 0.07212706705605662 +2024-07-19 14:14:48.345 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 41/50, Train Loss: 0.06774899431479138, Val Loss: 0.07168224312969156 +2024-07-19 14:14:48.567 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 42/50, Train Loss: 0.06768561967623395, Val Loss: 0.07179453475652514 +2024-07-19 14:14:48.787 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 43/50, Train Loss: 0.06791974566373471, Val Loss: 0.07232053613139165 +2024-07-19 14:14:49.028 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 44/50, Train Loss: 0.0679358185797527, Val Loss: 0.071945064474602 +2024-07-19 14:14:49.258 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 45/50, Train Loss: 0.06727149503657946, Val Loss: 0.07134972039509464 +2024-07-19 14:14:49.471 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 46/50, Train Loss: 0.06717176161505081, Val Loss: 0.07137600941633856 +2024-07-19 14:14:49.688 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 47/50, Train Loss: 0.06723483425338526, Val Loss: 0.07157543613701253 +2024-07-19 14:14:49.916 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 48/50, Train Loss: 0.06713028367910837, Val Loss: 0.07181098226558517 +2024-07-19 14:14:50.149 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 49/50, Train Loss: 0.06791499340151613, Val Loss: 0.07270951126072858 +2024-07-19 14:14:50.389 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 50/50, Train Loss: 0.06681277980474201, Val Loss: 0.07290090091929242 +2024-07-19 14:14:50.389 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Fold 0, MAPE: 12.97% +2024-07-19 14:14:50.803 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Training image saved at metaflow_models//bgd_office_5001_10000_LSTM//train_f0_bgd_office_5001_10000_LSTM.png +2024-07-19 14:14:51.299 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 1/50, Train Loss: 0.05786436395592069, Val Loss: 0.07398187046920932 +2024-07-19 14:14:51.680 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 2/50, Train Loss: 0.05806823381005901, Val Loss: 0.07391176025408346 +2024-07-19 14:14:52.100 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 3/50, Train Loss: 0.057608646353426045, Val Loss: 0.07314111075892642 +2024-07-19 14:14:52.476 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 4/50, Train Loss: 0.05744350061126768, Val Loss: 0.07252011810605591 +2024-07-19 14:14:52.842 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 5/50, Train Loss: 0.05726793546178569, Val Loss: 0.07270813773612718 +2024-07-19 14:14:53.228 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 6/50, Train Loss: 0.057085634336794075, Val Loss: 0.0718057399263253 +2024-07-19 14:14:53.600 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 7/50, Train Loss: 0.05699222286116995, Val Loss: 0.07189404395585125 +2024-07-19 14:14:54.043 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 8/50, Train Loss: 0.057152872407579255, Val Loss: 0.0723251004678172 +2024-07-19 14:14:54.423 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 9/50, Train Loss: 0.057290528747827224, Val Loss: 0.07235604393723849 +2024-07-19 14:14:54.804 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 10/50, Train Loss: 0.056777712519038216, Val Loss: 0.07172362229509933 +2024-07-19 14:14:55.205 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 11/50, Train Loss: 0.056828740384582785, Val Loss: 0.07154294410468759 +2024-07-19 14:14:55.577 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 12/50, Train Loss: 0.05709598651028251, Val Loss: 0.07214346638805158 +2024-07-19 14:14:55.951 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 13/50, Train Loss: 0.05675058591192308, Val Loss: 0.07115256776278084 +2024-07-19 14:14:56.335 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 14/50, Train Loss: 0.05665966569867036, Val Loss: 0.07256806646851269 +2024-07-19 14:14:56.705 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 15/50, Train Loss: 0.056992904385169074, Val Loss: 0.07188012400591695 +2024-07-19 14:14:57.089 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 16/50, Train Loss: 0.05669378708690813, Val Loss: 0.07255616758924884 +2024-07-19 14:14:57.468 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 17/50, Train Loss: 0.05699590921453009, Val Loss: 0.07139619887881987 +2024-07-19 14:14:57.848 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 18/50, Train Loss: 0.056450507437733756, Val Loss: 0.07070618882976673 +2024-07-19 14:14:58.252 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 19/50, Train Loss: 0.05658697564001769, Val Loss: 0.07273969159939804 +2024-07-19 14:14:58.636 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 20/50, Train Loss: 0.056464429600291875, Val Loss: 0.07052819677502722 +2024-07-19 14:14:59.086 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 21/50, Train Loss: 0.05606647542588515, Val Loss: 0.07020778198902672 +2024-07-19 14:14:59.468 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 22/50, Train Loss: 0.056263708011948896, Val Loss: 0.06978408156617268 +2024-07-19 14:14:59.844 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 23/50, Train Loss: 0.05607826457907484, Val Loss: 0.07067877587837142 +2024-07-19 14:15:00.259 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 24/50, Train Loss: 0.05623136481193647, Val Loss: 0.07032328174525015 +2024-07-19 14:15:00.680 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 25/50, Train Loss: 0.05560719897996073, Val Loss: 0.06980995265011852 +2024-07-19 14:15:01.142 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 26/50, Train Loss: 0.05611312973683011, Val Loss: 0.07024384813534247 +2024-07-19 14:15:01.541 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 27/50, Train Loss: 0.05578277422089691, Val Loss: 0.0699750062178921 +2024-07-19 14:15:01.922 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 28/50, Train Loss: 0.05582645798280631, Val Loss: 0.06984248344559928 +2024-07-19 14:15:02.310 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 29/50, Train Loss: 0.05564931137104557, Val Loss: 0.07064480853040477 +2024-07-19 14:15:02.674 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 30/50, Train Loss: 0.05557461037007097, Val Loss: 0.07031039083124818 +2024-07-19 14:15:03.053 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 31/50, Train Loss: 0.055845983390224306, Val Loss: 0.07088419140593426 +2024-07-19 14:15:03.434 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 32/50, Train Loss: 0.0554891141157036, Val Loss: 0.0703029738286057 +2024-07-19 14:15:03.800 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 33/50, Train Loss: 0.05519278580960754, Val Loss: 0.07052152971359524 +2024-07-19 14:15:04.201 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 34/50, Train Loss: 0.05557915324676935, Val Loss: 0.07137835569478371 +2024-07-19 14:15:04.601 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 35/50, Train Loss: 0.05578293962633773, Val Loss: 0.07190706837620284 +2024-07-19 14:15:05.086 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 36/50, Train Loss: 0.05566465972016935, Val Loss: 0.07161765243556048 +2024-07-19 14:15:05.481 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 37/50, Train Loss: 0.05542567987250139, Val Loss: 0.07193346215865097 +2024-07-19 14:15:05.920 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 38/50, Train Loss: 0.055710990134983845, Val Loss: 0.0705378699947048 +2024-07-19 14:15:06.313 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 39/50, Train Loss: 0.05523706904982459, Val Loss: 0.07128124694163734 +2024-07-19 14:15:06.711 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 40/50, Train Loss: 0.05528623025149924, Val Loss: 0.07072144495071592 +2024-07-19 14:15:07.099 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 41/50, Train Loss: 0.05507588124999853, Val Loss: 0.07137931651763015 +2024-07-19 14:15:07.516 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 42/50, Train Loss: 0.05547851481002896, Val Loss: 0.0737523202457138 +2024-07-19 14:15:07.899 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 43/50, Train Loss: 0.05540252636403662, Val Loss: 0.07245571699899596 +2024-07-19 14:15:08.287 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 44/50, Train Loss: 0.05533737025848807, Val Loss: 0.07202723013186776 +2024-07-19 14:15:08.693 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 45/50, Train Loss: 0.054752885925341145, Val Loss: 0.07144581899046898 +2024-07-19 14:15:09.090 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 46/50, Train Loss: 0.05485944393767069, Val Loss: 0.07236309248853375 +2024-07-19 14:15:09.478 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 47/50, Train Loss: 0.05503574173183066, Val Loss: 0.07302098972974597 +2024-07-19 14:15:09.866 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 48/50, Train Loss: 0.054693739567819526, Val Loss: 0.07294834646824244 +2024-07-19 14:15:10.296 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 49/50, Train Loss: 0.054673316135798414, Val Loss: 0.078580553316184 +2024-07-19 14:15:10.670 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 50/50, Train Loss: 0.05479013734841592, Val Loss: 0.07439483274277803 +2024-07-19 14:15:10.670 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Fold 1, MAPE: 14.39% +2024-07-19 14:15:10.785 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Training image saved at metaflow_models//bgd_office_5001_10000_LSTM//train_f1_bgd_office_5001_10000_LSTM.png +2024-07-19 14:15:11.393 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 1/50, Train Loss: 0.0461178124289621, Val Loss: 0.06560851734232258 +2024-07-19 14:15:11.913 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 2/50, Train Loss: 0.04669453798877922, Val Loss: 0.06460567956437936 +2024-07-19 14:15:12.463 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 3/50, Train Loss: 0.045589527259157464, Val Loss: 0.06375925393926131 +2024-07-19 14:15:12.995 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 4/50, Train Loss: 0.04575585292821581, Val Loss: 0.06403002057325195 +2024-07-19 14:15:13.551 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 5/50, Train Loss: 0.04610115546225147, Val Loss: 0.06364303625918724 +2024-07-19 14:15:14.092 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 6/50, Train Loss: 0.04587563388049602, Val Loss: 0.06325468572007643 +2024-07-19 14:15:14.692 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 7/50, Train Loss: 0.04586927172812549, Val Loss: 0.06380007028378346 +2024-07-19 14:15:15.226 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 8/50, Train Loss: 0.045541504660451954, Val Loss: 0.06270208687999763 +2024-07-19 14:15:15.773 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 9/50, Train Loss: 0.04548781327903271, Val Loss: 0.06431136189683063 +2024-07-19 14:15:16.384 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 10/50, Train Loss: 0.04547011996196075, Val Loss: 0.06353091926792183 +2024-07-19 14:15:16.947 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 11/50, Train Loss: 0.04568007209084251, Val Loss: 0.06251816713326686 +2024-07-19 14:15:17.541 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 12/50, Train Loss: 0.04538155471567403, Val Loss: 0.06376491351103461 +2024-07-19 14:15:18.066 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 13/50, Train Loss: 0.0452290875244547, Val Loss: 0.06358062209108391 +2024-07-19 14:15:18.596 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 14/50, Train Loss: 0.045490725787187165, Val Loss: 0.06255802507134708 +2024-07-19 14:15:19.132 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 15/50, Train Loss: 0.04526920918036591, Val Loss: 0.06378014224606592 +2024-07-19 14:15:19.659 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 16/50, Train Loss: 0.04493802182207053, Val Loss: 0.06364507429503105 +2024-07-19 14:15:20.260 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 17/50, Train Loss: 0.0450061346234923, Val Loss: 0.06443067967287593 +2024-07-19 14:15:20.775 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 18/50, Train Loss: 0.045120823798193176, Val Loss: 0.063977226212218 +2024-07-19 14:15:21.318 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 19/50, Train Loss: 0.04508563810959458, Val Loss: 0.06278543748162888 +2024-07-19 14:15:21.887 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 20/50, Train Loss: 0.04501507380469279, Val Loss: 0.06430690040862239 +2024-07-19 14:15:22.433 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 21/50, Train Loss: 0.04469922429627993, Val Loss: 0.0636055758978064 +2024-07-19 14:15:22.943 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 22/50, Train Loss: 0.04477725850248879, Val Loss: 0.0634472679749534 +2024-07-19 14:15:23.482 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 23/50, Train Loss: 0.044814844014631074, Val Loss: 0.06383027941794009 +2024-07-19 14:15:24.066 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 24/50, Train Loss: 0.045007208523086525, Val Loss: 0.06310074907299634 +2024-07-19 14:15:24.633 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 25/50, Train Loss: 0.044549164743247355, Val Loss: 0.0653180450301718 +2024-07-19 14:15:25.285 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 26/50, Train Loss: 0.04481812029738318, Val Loss: 0.06359165101437955 +2024-07-19 14:15:25.816 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 27/50, Train Loss: 0.04509443699128248, Val Loss: 0.06333014223019819 +2024-07-19 14:15:26.428 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 28/50, Train Loss: 0.044394913349639284, Val Loss: 0.06542166674862036 +2024-07-19 14:15:26.965 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 29/50, Train Loss: 0.04452056518163194, Val Loss: 0.06263209083998525 +2024-07-19 14:15:27.541 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 30/50, Train Loss: 0.04466074887155132, Val Loss: 0.06197570858372224 +2024-07-19 14:15:28.148 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 31/50, Train Loss: 0.0443401652303609, Val Loss: 0.0638135043350426 +2024-07-19 14:15:28.708 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 32/50, Train Loss: 0.044397844170982186, Val Loss: 0.06304139462677208 +2024-07-19 14:15:29.298 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 33/50, Train Loss: 0.04422123406759717, Val Loss: 0.06389215367065894 +2024-07-19 14:15:29.815 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 34/50, Train Loss: 0.04397372507744215, Val Loss: 0.06392062913525749 +2024-07-19 14:15:30.419 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 35/50, Train Loss: 0.044336990834298456, Val Loss: 0.06238567909678897 +2024-07-19 14:15:30.936 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 36/50, Train Loss: 0.044367209153080525, Val Loss: 0.06212647797892223 +2024-07-19 14:15:31.493 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 37/50, Train Loss: 0.04396814378825101, Val Loss: 0.06295357966745221 +2024-07-19 14:15:32.024 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 38/50, Train Loss: 0.044076940171759234, Val Loss: 0.06407885479967336 +2024-07-19 14:15:32.566 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 39/50, Train Loss: 0.04362663198262453, Val Loss: 0.06178098569649297 +2024-07-19 14:15:33.125 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 40/50, Train Loss: 0.044214831478893754, Val Loss: 0.06223207732310166 +2024-07-19 14:15:33.656 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 41/50, Train Loss: 0.04392009380019524, Val Loss: 0.061752787262604046 +2024-07-19 14:15:34.193 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 42/50, Train Loss: 0.043853343557566406, Val Loss: 0.06319310224136791 +2024-07-19 14:15:34.723 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 43/50, Train Loss: 0.04388158246874809, Val Loss: 0.06202480685267899 +2024-07-19 14:15:35.253 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 44/50, Train Loss: 0.04407827319069342, Val Loss: 0.06184125344294149 +2024-07-19 14:15:35.779 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 45/50, Train Loss: 0.04389087489213456, Val Loss: 0.06271709078872525 +2024-07-19 14:15:36.328 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 46/50, Train Loss: 0.04370488784360615, Val Loss: 0.06113324238843209 +2024-07-19 14:15:36.858 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 47/50, Train Loss: 0.04412318264896219, Val Loss: 0.06283871305955423 +2024-07-19 14:15:37.397 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 48/50, Train Loss: 0.043378034149381246, Val Loss: 0.0625886593416736 +2024-07-19 14:15:37.922 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 49/50, Train Loss: 0.04350906910205429, Val Loss: 0.06147742059987944 +2024-07-19 14:15:38.498 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 50/50, Train Loss: 0.043689714397557755, Val Loss: 0.06191247691576545 +2024-07-19 14:15:38.498 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Fold 2, MAPE: 12.12% +2024-07-19 14:15:38.613 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Training image saved at metaflow_models//bgd_office_5001_10000_LSTM//train_f2_bgd_office_5001_10000_LSTM.png +2024-07-19 14:15:39.328 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 1/50, Train Loss: 0.043202793174614645, Val Loss: 0.059413765229888865 +2024-07-19 14:15:40.017 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 2/50, Train Loss: 0.04315264518564082, Val Loss: 0.05798281653708703 +2024-07-19 14:15:40.752 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 3/50, Train Loss: 0.04245520726943465, Val Loss: 0.05802843362294339 +2024-07-19 14:15:41.491 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 4/50, Train Loss: 0.04263736104133398, Val Loss: 0.05738675126151459 +2024-07-19 14:15:42.203 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 5/50, Train Loss: 0.04250246275548045, Val Loss: 0.05689432336067831 +2024-07-19 14:15:42.938 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 6/50, Train Loss: 0.0424878202531844, Val Loss: 0.056478868616191114 +2024-07-19 14:15:43.654 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 7/50, Train Loss: 0.0422870721668005, Val Loss: 0.05703119999049483 +2024-07-19 14:15:44.356 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 8/50, Train Loss: 0.041785748857264854, Val Loss: 0.05634359204889955 +2024-07-19 14:15:45.041 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 9/50, Train Loss: 0.04181478400906063, Val Loss: 0.05631694982986193 +2024-07-19 14:15:45.782 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 10/50, Train Loss: 0.04213386982015959, Val Loss: 0.05657825991511345 +2024-07-19 14:15:46.561 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 11/50, Train Loss: 0.04194922135402895, Val Loss: 0.056211780656028436 +2024-07-19 14:15:47.277 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 12/50, Train Loss: 0.04228399307403254, Val Loss: 0.05694341669614251 +2024-07-19 14:15:47.990 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 13/50, Train Loss: 0.0417706776435857, Val Loss: 0.05640346833781616 +2024-07-19 14:15:48.789 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 14/50, Train Loss: 0.04210997992258978, Val Loss: 0.056584730996070684 +2024-07-19 14:15:49.629 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 15/50, Train Loss: 0.04163654621894637, Val Loss: 0.05608823678984835 +2024-07-19 14:15:50.328 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 16/50, Train Loss: 0.04148483883640538, Val Loss: 0.05607329817438448 +2024-07-19 14:15:51.009 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 17/50, Train Loss: 0.041442714899472176, Val Loss: 0.05599854594549617 +2024-07-19 14:15:51.711 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 18/50, Train Loss: 0.04152793915023747, Val Loss: 0.057550965380427 +2024-07-19 14:15:52.392 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 19/50, Train Loss: 0.041237776741793714, Val Loss: 0.056811976724782505 +2024-07-19 14:15:53.057 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 20/50, Train Loss: 0.04134030315438158, Val Loss: 0.05633625267325221 +2024-07-19 14:15:53.749 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 21/50, Train Loss: 0.04109187095668422, Val Loss: 0.05617245679368844 +2024-07-19 14:15:54.427 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 22/50, Train Loss: 0.04075368902684279, Val Loss: 0.05673670436482172 +2024-07-19 14:15:55.123 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 23/50, Train Loss: 0.041237907216259063, Val Loss: 0.05657261750988058 +2024-07-19 14:15:55.884 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 24/50, Train Loss: 0.04060930477085281, Val Loss: 0.05588792370179215 +2024-07-19 14:15:56.618 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 25/50, Train Loss: 0.04090670029926177, Val Loss: 0.057530118404208005 +2024-07-19 14:15:57.309 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 26/50, Train Loss: 0.0402734500725996, Val Loss: 0.056239796349325695 +2024-07-19 14:15:58.003 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 27/50, Train Loss: 0.04035561538161072, Val Loss: 0.05489177639419968 +2024-07-19 14:15:58.829 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 28/50, Train Loss: 0.04005007018424468, Val Loss: 0.05614896380418056 +2024-07-19 14:15:59.532 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 29/50, Train Loss: 0.04026872377638539, Val Loss: 0.05601893189186986 +2024-07-19 14:16:00.226 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 30/50, Train Loss: 0.039819884426534585, Val Loss: 0.05525648961397442 +2024-07-19 14:16:00.935 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 31/50, Train Loss: 0.03979253880552029, Val Loss: 0.054485296427800846 +2024-07-19 14:16:01.685 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 32/50, Train Loss: 0.03982646886437927, Val Loss: 0.0550543622592011 +2024-07-19 14:16:02.378 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 33/50, Train Loss: 0.0399034966408492, Val Loss: 0.0550058917520014 +2024-07-19 14:16:03.147 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 34/50, Train Loss: 0.03963154545436575, Val Loss: 0.05489961923779668 +2024-07-19 14:16:03.961 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 35/50, Train Loss: 0.03958770392258486, Val Loss: 0.05457469851181314 +2024-07-19 14:16:04.694 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 36/50, Train Loss: 0.03934006404437839, Val Loss: 0.053883175290114174 +2024-07-19 14:16:05.406 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 37/50, Train Loss: 0.0394920101708235, Val Loss: 0.054423501966772855 +2024-07-19 14:16:06.192 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 38/50, Train Loss: 0.03932235699325596, Val Loss: 0.054403959496601206 +2024-07-19 14:16:06.931 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 39/50, Train Loss: 0.03926791331080133, Val Loss: 0.05419276186541931 +2024-07-19 14:16:07.646 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 40/50, Train Loss: 0.03922091751703865, Val Loss: 0.05384578560856548 +2024-07-19 14:16:08.419 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 41/50, Train Loss: 0.03939335932317253, Val Loss: 0.05392885721615843 +2024-07-19 14:16:09.128 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 42/50, Train Loss: 0.039231587571334346, Val Loss: 0.053902931259693324 +2024-07-19 14:16:09.837 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 43/50, Train Loss: 0.03926686613425, Val Loss: 0.05414339869811728 +2024-07-19 14:16:10.571 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 44/50, Train Loss: 0.03901027165327783, Val Loss: 0.053564446802074846 +2024-07-19 14:16:11.281 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 45/50, Train Loss: 0.03873874440355456, Val Loss: 0.05406204928216096 +2024-07-19 14:16:11.972 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 46/50, Train Loss: 0.038862628843125004, Val Loss: 0.054228339746997166 +2024-07-19 14:16:12.662 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 47/50, Train Loss: 0.03879705999582393, Val Loss: 0.05383217818028218 +2024-07-19 14:16:13.332 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 48/50, Train Loss: 0.038768352392091324, Val Loss: 0.055113328067032064 +2024-07-19 14:16:14.098 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 49/50, Train Loss: 0.038773733752537266, Val Loss: 0.05350424671495283 +2024-07-19 14:16:14.819 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 50/50, Train Loss: 0.03881172682732752, Val Loss: 0.05386759733428826 +2024-07-19 14:16:14.819 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Fold 3, MAPE: 11.29% +2024-07-19 14:16:14.940 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Training image saved at metaflow_models//bgd_office_5001_10000_LSTM//train_f3_bgd_office_5001_10000_LSTM.png +2024-07-19 14:16:15.845 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 1/50, Train Loss: 0.04154350495498095, Val Loss: 0.048235162387828566 +2024-07-19 14:16:16.744 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 2/50, Train Loss: 0.041218342019019874, Val Loss: 0.04749060341635266 +2024-07-19 14:16:17.632 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 3/50, Train Loss: 0.041134801237833696, Val Loss: 0.04832341521978378 +2024-07-19 14:16:18.511 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 4/50, Train Loss: 0.04090976394242146, Val Loss: 0.05003790245265574 +2024-07-19 14:16:19.395 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 5/50, Train Loss: 0.04094087341697989, Val Loss: 0.04798139551201382 +2024-07-19 14:16:20.310 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 6/50, Train Loss: 0.040661494697925155, Val Loss: 0.0486257334013243 +2024-07-19 14:16:21.210 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 7/50, Train Loss: 0.040521499050965346, Val Loss: 0.04822335679184746 +2024-07-19 14:16:22.104 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 8/50, Train Loss: 0.040299927544585626, Val Loss: 0.048710804130579974 +2024-07-19 14:16:23.072 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 9/50, Train Loss: 0.04031709613339914, Val Loss: 0.04819450889890258 +2024-07-19 14:16:24.102 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 10/50, Train Loss: 0.039989662128961184, Val Loss: 0.04853224291189297 +2024-07-19 14:16:25.055 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 11/50, Train Loss: 0.03994342169959794, Val Loss: 0.04790532896043481 +2024-07-19 14:16:25.957 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 12/50, Train Loss: 0.03988504161352067, Val Loss: 0.047681372864423574 +2024-07-19 14:16:26.840 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 13/50, Train Loss: 0.03993333756647349, Val Loss: 0.04727326605368305 +2024-07-19 14:16:27.723 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 14/50, Train Loss: 0.03980405008481754, Val Loss: 0.04805368104496518 +2024-07-19 14:16:28.626 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 15/50, Train Loss: 0.039713771701636875, Val Loss: 0.04726092497239242 +2024-07-19 14:16:29.506 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 16/50, Train Loss: 0.03971896197769668, Val Loss: 0.047208856036131445 +2024-07-19 14:16:30.443 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 17/50, Train Loss: 0.03958576668186912, Val Loss: 0.046851477208169734 +2024-07-19 14:16:31.322 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 18/50, Train Loss: 0.03937824676325033, Val Loss: 0.04700873371817776 +2024-07-19 14:16:32.196 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 19/50, Train Loss: 0.039171159285335586, Val Loss: 0.048007951193564644 +2024-07-19 14:16:33.139 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 20/50, Train Loss: 0.039269027865624855, Val Loss: 0.04723423674098543 +2024-07-19 14:16:34.022 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 21/50, Train Loss: 0.03954425099009013, Val Loss: 0.04678839890638719 +2024-07-19 14:16:34.964 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 22/50, Train Loss: 0.039164102114327665, Val Loss: 0.04757624376263168 +2024-07-19 14:16:35.940 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 23/50, Train Loss: 0.03911880705157643, Val Loss: 0.04763565942443706 +2024-07-19 14:16:36.813 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 24/50, Train Loss: 0.038790487413100164, Val Loss: 0.04680503728623326 +2024-07-19 14:16:37.693 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 25/50, Train Loss: 0.03919735860980147, Val Loss: 0.04804201414053504 +2024-07-19 14:16:38.620 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 26/50, Train Loss: 0.039228448135123314, Val Loss: 0.047447635666341394 +2024-07-19 14:16:39.623 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 27/50, Train Loss: 0.03881626523478509, Val Loss: 0.0472640832634391 +2024-07-19 14:16:40.538 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 28/50, Train Loss: 0.03869759135593016, Val Loss: 0.047833593260194804 +2024-07-19 14:16:41.430 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 29/50, Train Loss: 0.038953015237923834, Val Loss: 0.04760505742317921 +2024-07-19 14:16:42.335 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 30/50, Train Loss: 0.03864491854507763, Val Loss: 0.047958312958881665 +2024-07-19 14:16:43.213 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 31/50, Train Loss: 0.038443688420926804, Val Loss: 0.04688504962502299 +2024-07-19 14:16:44.108 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 32/50, Train Loss: 0.03877932167673422, Val Loss: 0.046834571991820596 +2024-07-19 14:16:45.024 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 33/50, Train Loss: 0.038448928765809305, Val Loss: 0.047913064374714286 +2024-07-19 14:16:45.902 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 34/50, Train Loss: 0.038458533091265915, Val Loss: 0.047371644778428854 +2024-07-19 14:16:46.803 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 35/50, Train Loss: 0.038270751889385696, Val Loss: 0.047140694902958094 +2024-07-19 14:16:47.723 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 36/50, Train Loss: 0.038253171827418955, Val Loss: 0.0474181699793081 +2024-07-19 14:16:48.666 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 37/50, Train Loss: 0.03828359839946523, Val Loss: 0.046519691627976055 +2024-07-19 14:16:49.564 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 38/50, Train Loss: 0.03792785318148742, Val Loss: 0.046395046133044605 +2024-07-19 14:16:50.503 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 39/50, Train Loss: 0.03832638645442305, Val Loss: 0.04738106784989705 +2024-07-19 14:16:51.408 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 40/50, Train Loss: 0.03834745938541716, Val Loss: 0.047955402349298064 +2024-07-19 14:16:52.326 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 41/50, Train Loss: 0.038004052016761276, Val Loss: 0.04623659518924919 +2024-07-19 14:16:53.224 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 42/50, Train Loss: 0.03787051048129797, Val Loss: 0.04800058644566987 +2024-07-19 14:16:54.117 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 43/50, Train Loss: 0.0380733590624244, Val Loss: 0.04788026686858486 +2024-07-19 14:16:55.007 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 44/50, Train Loss: 0.03778992593800137, Val Loss: 0.04644654671082626 +2024-07-19 14:16:55.884 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 45/50, Train Loss: 0.03784676774783612, Val Loss: 0.04731920160151817 +2024-07-19 14:16:56.792 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 46/50, Train Loss: 0.0377631387366289, Val Loss: 0.04649016885338603 +2024-07-19 14:16:57.751 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 47/50, Train Loss: 0.03778581991587039, Val Loss: 0.046338824555277824 +2024-07-19 14:16:58.663 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 48/50, Train Loss: 0.037583307665005165, Val Loss: 0.04720881062786322 +2024-07-19 14:16:59.558 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 49/50, Train Loss: 0.037557494174177336, Val Loss: 0.04718323706372364 +2024-07-19 14:17:00.495 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Epoch 50/50, Train Loss: 0.0375787640645445, Val Loss: 0.04633492266608251 +2024-07-19 14:17:00.496 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Fold 4, MAPE: 11.10% +2024-07-19 14:17:00.610 [4/cross_validate_train/19 (pid 96519)] INFO:__main__:Training image saved at metaflow_models//bgd_office_5001_10000_LSTM//train_f4_bgd_office_5001_10000_LSTM.png +2024-07-19 14:17:05.237 [4/cross_validate_train/19 (pid 96519)] Task finished successfully. +2024-07-19 14:17:05.269 [4/model_scores/20 (pid 97202)] Task is starting. +2024-07-19 14:17:06.796 [4/model_scores/20 (pid 97202)] INFO:__main__:Average Train Loss across all folds: 0.04833662448851754 +2024-07-19 14:17:10.771 [4/model_scores/20 (pid 97202)] INFO:__main__:Average Validation Loss across all folds: 0.061882146115641336 +2024-07-19 14:17:10.772 [4/model_scores/20 (pid 97202)] INFO:__main__:Average MAPE across all folds: 12.37% +2024-07-19 14:17:10.773 [4/model_scores/20 (pid 97202)] Task finished successfully. +2024-07-19 14:17:10.803 [4/validate_model/21 (pid 97241)] Task is starting. +2024-07-19 14:17:12.364 [4/validate_model/21 (pid 97241)] INFO:__main__:Validating LSTM on test set.. +2024-07-19 14:17:12.508 [4/validate_model/21 (pid 97241)] INFO:__main__:Test Set MAPE: 9.55% +2024-07-19 14:17:12.882 [4/validate_model/21 (pid 97241)] INFO:__main__:Test image saved at metaflow_models//bgd_office_5001_10000_LSTM//test_bgd_office_5001_10000_LSTM.png +2024-07-19 14:17:13.314 [4/validate_model/21 (pid 97241)] Task finished successfully. +2024-07-19 14:17:13.347 [4/log_model/22 (pid 97258)] Task is starting. +2024-07-19 14:17:14.867 [4/log_model/22 (pid 97258)] INFO:__main__:Logging model bgd_office_5001_10000_LSTM +2024-07-19 14:17:14.869 [4/log_model/22 (pid 97258)] INFO:__main__:Model logged at metaflow_models//bgd_office_5001_10000_LSTM//bgd_office_5001_10000_LSTM.pth +2024-07-19 14:17:19.014 [4/log_model/22 (pid 97258)] Task finished successfully. +2024-07-19 14:17:19.043 [4/end/23 (pid 97302)] Task is starting. +2024-07-19 14:17:20.545 [4/end/23 (pid 97302)] INFO:__main__:Pipeline end. +2024-07-19 14:17:20.921 [4/end/23 (pid 97302)] Task finished successfully. +2024-07-19 14:17:20.921 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/scaler_bgd_office_5001_10000_LSTM.pkl b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/scaler_bgd_office_5001_10000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..9e79f9f611cab4bcbd876ec580edaf5873d19c24 --- /dev/null +++ b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/scaler_bgd_office_5001_10000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9f2878714784ea383a245bdb3e0737ef63b45b928b09e2cda72ec229b6c165 +size 557 diff --git a/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/test_bgd_office_5001_10000_LSTM.png b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/test_bgd_office_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..d28c7189c69680deb9f3a645b8274e4defc771b6 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/test_bgd_office_5001_10000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f0_bgd_office_5001_10000_LSTM.png b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f0_bgd_office_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..12137d970abebaffb4e8e02627898de206c08573 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f0_bgd_office_5001_10000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f1_bgd_office_5001_10000_LSTM.png b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f1_bgd_office_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..069b06c0b07899cb708f5ec7bbbdce68217b36f9 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f1_bgd_office_5001_10000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f2_bgd_office_5001_10000_LSTM.png b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f2_bgd_office_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..b72103cdee8073be9bd75d3300a836f734ae59ca Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f2_bgd_office_5001_10000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f3_bgd_office_5001_10000_LSTM.png b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f3_bgd_office_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..f20f1cece48c2c8c589aae10f2eeeddbdf439bf2 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f3_bgd_office_5001_10000_LSTM.png differ diff --git a/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f4_bgd_office_5001_10000_LSTM.png b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f4_bgd_office_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..f7e3fd8d95575f33be47734971fbc0dd4eefc0c8 Binary files /dev/null and b/metaflow_models_30hrs/bgd_office_5001_10000_LSTM/train_f4_bgd_office_5001_10000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/bgd_education_100001_200000_LSTM.pth b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/bgd_education_100001_200000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..55ae45616e4e77eb4e5b9f19011b2944b05ccf34 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/bgd_education_100001_200000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36af7e26cc8e345dc25d17080f7463f42b0be14047188185aad525f0e3ba39b6 +size 46786 diff --git a/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/output.txt b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..97f48d69a9e88cf5b31cc13d7b404aabc733f315 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/output.txt @@ -0,0 +1,803 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-22 22:52:09.579 Workflow starting (run-id 40): +2024-07-22 22:52:09.663 [40/start/379 (pid 17544)] Task is starting. +2024-07-22 22:52:11.227 [40/start/379 (pid 17544)] INFO:__main__:Starting BGD linear flow.. +2024-07-22 22:52:11.524 [40/start/379 (pid 17544)] Task finished successfully. +2024-07-22 22:52:11.553 [40/ingest/380 (pid 17562)] Task is starting. +2024-07-22 22:52:13.114 [40/ingest/380 (pid 17562)] INFO:__main__:Fetching dataframe.. +2024-07-22 22:52:13.150 [40/ingest/380 (pid 17562)] INFO:__main__:Dataframe fetching complete.. +2024-07-22 22:52:17.192 [40/ingest/380 (pid 17562)] Task finished successfully. +2024-07-22 22:52:17.222 [40/pick_2017_data/381 (pid 17602)] Task is starting. +2024-07-22 22:52:18.712 [40/pick_2017_data/381 (pid 17602)] INFO:__main__:Picking 2017 data.. +2024-07-22 22:52:19.062 [40/pick_2017_data/381 (pid 17602)] Task finished successfully. +2024-07-22 22:52:19.097 [40/fill_missing_data/382 (pid 17613)] Task is starting. +2024-07-22 22:52:20.571 [40/fill_missing_data/382 (pid 17613)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-22 22:52:20.588 [40/fill_missing_data/382 (pid 17613)] INFO:__main__:NaN counts per column: +2024-07-22 22:52:20.588 [40/fill_missing_data/382 (pid 17613)] INFO:__main__:Panther_education_Jerome 10 +2024-07-22 22:52:20.588 [40/fill_missing_data/382 (pid 17613)] Panther_education_Quintin 12 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Panther_education_Hugh 12 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Panther_education_Alecia 12 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Panther_education_Vincent 12 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Panther_education_Genevieve 387 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Lilly 91 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Andre 0 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Leota 5 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Yolande 1 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Elvira 17 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Gloria 9 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Nilda 1 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Claude 15 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Rat_education_Willie 50 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Rat_education_Eleonora 8760 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Rat_education_Veronica 8760 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Bear_education_Rebecca 46 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Bear_education_Lorie 46 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Bear_education_Zandra 98 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Bear_education_Fannie 177 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Bear_education_Alvaro 56 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Lamb_education_Luz 14 +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] Cockatoo_education_Eunice 121 +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] Cockatoo_education_Evangeline 2278 +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] Cockatoo_education_Flora 113 +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] Cockatoo_education_Marva 113 +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] dtype: int64 +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] --- Logging error --- +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] Traceback (most recent call last): +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] msg = self.format(record) +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] return fmt.format(record) +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] record.message = record.getMessage() +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] msg = msg % self.args +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] TypeError: not all arguments converted during string formatting +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] Call stack: +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] BGD_LinearFlow() +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] cli.main(self) +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] return func(*args, **kwargs) +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] return self.main(*args, **kwargs) +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] rv = self.invoke(ctx) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] return ctx.invoke(self.callback, **ctx.params) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] return callback(*args, **kwargs) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] return f(get_current_context(), *args, **kwargs) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] task.run_step( +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] self._exec_step_function(step_func) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] step_function() +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] self.missing_values = find_nan_counts(self.df) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] Arguments: (21216,) +2024-07-22 22:52:31.203 [40/fill_missing_data/382 (pid 17613)] Task finished successfully. +2024-07-22 22:52:31.233 [40/find_median/383 (pid 17667)] Task is starting. +2024-07-22 22:52:32.708 [40/find_median/383 (pid 17667)] INFO:__main__:Computing and using median.. +2024-07-22 22:52:33.242 [40/find_median/383 (pid 17667)] Task finished successfully. +2024-07-22 22:52:33.276 [40/aggregate_data/384 (pid 17680)] Task is starting. +2024-07-22 22:52:34.767 [40/aggregate_data/384 (pid 17680)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-22 22:52:38.908 [40/aggregate_data/384 (pid 17680)] Task finished successfully. +2024-07-22 22:52:38.944 [40/split_data/385 (pid 17711)] Task is starting. +2024-07-22 22:52:40.507 [40/split_data/385 (pid 17711)] INFO:__main__:Splitting data into test and train... +2024-07-22 22:52:44.505 [40/split_data/385 (pid 17711)] Task finished successfully. +2024-07-22 22:52:44.537 [40/make_x_y/386 (pid 17745)] Task is starting. +2024-07-22 22:52:46.486 [40/make_x_y/386 (pid 17745)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-22 22:52:46.918 [40/make_x_y/386 (pid 17745)] Shape of y_train: (6648, 1) +2024-07-22 22:52:46.918 [40/make_x_y/386 (pid 17745)] Shape of X_test: (1392, 360, 1) +2024-07-22 22:52:46.918 [40/make_x_y/386 (pid 17745)] Shape of y_test: (1392, 1) +2024-07-22 22:52:46.919 [40/make_x_y/386 (pid 17745)] Task finished successfully. +2024-07-22 22:52:46.957 [40/cross_validate_train/387 (pid 17756)] Task is starting. +2024-07-22 22:52:48.474 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Creating bgd_education_100001_200000_LSTM +2024-07-22 22:52:48.475 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Performing cross validation.. +2024-07-22 22:52:51.021 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 1/50, Train Loss: 0.31996905973979406, Val Loss: 0.1840203304375921 +2024-07-22 22:52:52.971 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 2/50, Train Loss: 0.16663339883089065, Val Loss: 0.17506074692521775 +2024-07-22 22:52:55.117 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 3/50, Train Loss: 0.15396276925291333, Val Loss: 0.16497530777539526 +2024-07-22 22:52:57.170 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 4/50, Train Loss: 0.13834882846900395, Val Loss: 0.1466408362346036 +2024-07-22 22:52:59.165 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 5/50, Train Loss: 0.11090353003570012, Val Loss: 0.10664195929254805 +2024-07-22 22:53:01.118 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 6/50, Train Loss: 0.08668706842831203, Val Loss: 0.1116373068520001 +2024-07-22 22:53:03.057 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 7/50, Train Loss: 0.08581864493233816, Val Loss: 0.11036727321999414 +2024-07-22 22:53:05.026 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 8/50, Train Loss: 0.08287862411567143, Val Loss: 0.10657423713377544 +2024-07-22 22:53:07.000 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 9/50, Train Loss: 0.08128111213445663, Val Loss: 0.10438554074083056 +2024-07-22 22:53:08.950 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 10/50, Train Loss: 0.08043713101318904, Val Loss: 0.10156598005975996 +2024-07-22 22:53:10.900 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 11/50, Train Loss: 0.07896844819188117, Val Loss: 0.1013604012983186 +2024-07-22 22:53:13.054 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 12/50, Train Loss: 0.07815910407475063, Val Loss: 0.10015960655042104 +2024-07-22 22:53:15.138 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 13/50, Train Loss: 0.077041643006461, Val Loss: 0.09729340608630861 +2024-07-22 22:53:17.138 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 14/50, Train Loss: 0.07630255775792258, Val Loss: 0.09653095219816481 +2024-07-22 22:53:19.143 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 15/50, Train Loss: 0.0753671258687973, Val Loss: 0.09566783649580819 +2024-07-22 22:53:21.131 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 16/50, Train Loss: 0.07452698796987534, Val Loss: 0.09476773525987353 +2024-07-22 22:53:23.134 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 17/50, Train Loss: 0.07366045830505234, Val Loss: 0.09241099389536041 +2024-07-22 22:53:25.188 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 18/50, Train Loss: 0.07251332082918711, Val Loss: 0.09195521399378777 +2024-07-22 22:53:27.171 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 19/50, Train Loss: 0.07155865090233939, Val Loss: 0.09066115011061941 +2024-07-22 22:53:29.153 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 20/50, Train Loss: 0.07013552231448038, Val Loss: 0.0916327314717429 +2024-07-22 22:53:31.164 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 21/50, Train Loss: 0.06861114203929901, Val Loss: 0.09208135349409921 +2024-07-22 22:53:33.180 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 22/50, Train Loss: 0.06801536977291107, Val Loss: 0.09249895034091814 +2024-07-22 22:53:35.160 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 23/50, Train Loss: 0.06694701707788876, Val Loss: 0.09177764398711068 +2024-07-22 22:53:37.161 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 24/50, Train Loss: 0.06593452862330845, Val Loss: 0.09110930828111512 +2024-07-22 22:53:39.226 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 25/50, Train Loss: 0.06473139056137629, Val Loss: 0.08945466897317342 +2024-07-22 22:53:41.313 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 26/50, Train Loss: 0.06364469357899256, Val Loss: 0.08867037849766868 +2024-07-22 22:53:43.366 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 27/50, Train Loss: 0.062152683522020066, Val Loss: 0.08590305468865804 +2024-07-22 22:53:45.425 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 28/50, Train Loss: 0.06233032526714461, Val Loss: 0.08592178928000586 +2024-07-22 22:53:47.438 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 29/50, Train Loss: 0.06074522552745683, Val Loss: 0.083306501273598 +2024-07-22 22:53:49.446 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 30/50, Train Loss: 0.06122182043535369, Val Loss: 0.08431072447981153 +2024-07-22 22:53:51.480 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 31/50, Train Loss: 0.06001076336417879, Val Loss: 0.08262301970805441 +2024-07-22 22:53:53.577 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 32/50, Train Loss: 0.05997633284756115, Val Loss: 0.08205088526010514 +2024-07-22 22:53:55.634 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 33/50, Train Loss: 0.05928763183099883, Val Loss: 0.0819566364799227 +2024-07-22 22:53:57.703 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 34/50, Train Loss: 0.05934253601091249, Val Loss: 0.08227393041763986 +2024-07-22 22:53:59.735 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 35/50, Train Loss: 0.058695220095770696, Val Loss: 0.08065630133662904 +2024-07-22 22:54:01.819 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 36/50, Train Loss: 0.05804288632103375, Val Loss: 0.07755907103419304 +2024-07-22 22:54:03.889 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 37/50, Train Loss: 0.057739378086158206, Val Loss: 0.07565930805036 +2024-07-22 22:54:05.956 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 38/50, Train Loss: 0.05803697194371905, Val Loss: 0.07709121597664696 +2024-07-22 22:54:08.007 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 39/50, Train Loss: 0.05713364237121173, Val Loss: 0.07739347102386611 +2024-07-22 22:54:10.056 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 40/50, Train Loss: 0.05639954007097653, Val Loss: 0.07487426698207855 +2024-07-22 22:54:12.073 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 41/50, Train Loss: 0.05678249640124185, Val Loss: 0.07374259137681552 +2024-07-22 22:54:14.119 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 42/50, Train Loss: 0.056411336255925044, Val Loss: 0.07432271774326052 +2024-07-22 22:54:16.164 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 43/50, Train Loss: 0.05591645794255393, Val Loss: 0.07603417613676616 +2024-07-22 22:54:18.276 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 44/50, Train Loss: 0.05551972229565893, Val Loss: 0.07180862575769424 +2024-07-22 22:54:20.347 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 45/50, Train Loss: 0.055181132789169036, Val Loss: 0.07344499719994409 +2024-07-22 22:54:22.403 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 46/50, Train Loss: 0.05520857200026512, Val Loss: 0.07275435573288373 +2024-07-22 22:54:24.466 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 47/50, Train Loss: 0.05514354716454233, Val Loss: 0.07210893503257207 +2024-07-22 22:54:26.555 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 48/50, Train Loss: 0.054793201493365425, Val Loss: 0.07220807373523712 +2024-07-22 22:54:28.636 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 49/50, Train Loss: 0.054658115761620656, Val Loss: 0.07189978041819163 +2024-07-22 22:54:30.682 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 50/50, Train Loss: 0.05396808364561626, Val Loss: 0.07125656540904726 +2024-07-22 22:54:30.683 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Fold 0, MAPE: 4.27% +2024-07-22 22:54:31.042 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_100001_200000_LSTM//train_f0_bgd_education_100001_200000_LSTM.png +2024-07-22 22:54:34.707 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 1/50, Train Loss: 0.043159557080694605, Val Loss: 0.04963809001658644 +2024-07-22 22:54:38.267 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 2/50, Train Loss: 0.042711521605295795, Val Loss: 0.05033119235719953 +2024-07-22 22:54:41.843 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 3/50, Train Loss: 0.043669006148619315, Val Loss: 0.048919460283858435 +2024-07-22 22:54:45.427 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 4/50, Train Loss: 0.044208129069634845, Val Loss: 0.04595269198928561 +2024-07-22 22:54:48.953 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 5/50, Train Loss: 0.04320225955120155, Val Loss: 0.04512728846498898 +2024-07-22 22:54:52.488 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 6/50, Train Loss: 0.04239952119865588, Val Loss: 0.044856016976492746 +2024-07-22 22:54:56.081 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 7/50, Train Loss: 0.04196871891617775, Val Loss: 0.04427068941295147 +2024-07-22 22:54:59.649 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 8/50, Train Loss: 0.041896508048687664, Val Loss: 0.04412070182817323 +2024-07-22 22:55:03.293 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 9/50, Train Loss: 0.041706227670822826, Val Loss: 0.04398605711758137 +2024-07-22 22:55:06.914 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 10/50, Train Loss: 0.04176439802561487, Val Loss: 0.04417539217642375 +2024-07-22 22:55:10.531 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 11/50, Train Loss: 0.04144728428551129, Val Loss: 0.043935654418809075 +2024-07-22 22:55:14.131 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 12/50, Train Loss: 0.04153031227844102, Val Loss: 0.04411105854170663 +2024-07-22 22:55:17.777 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 13/50, Train Loss: 0.04143984520009586, Val Loss: 0.0434479933232069 +2024-07-22 22:55:21.519 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 14/50, Train Loss: 0.041500303761235306, Val Loss: 0.04332215860486031 +2024-07-22 22:55:25.212 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 15/50, Train Loss: 0.04134374143821853, Val Loss: 0.04348833401288305 +2024-07-22 22:55:28.843 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 16/50, Train Loss: 0.04178518134036235, Val Loss: 0.04310657930161272 +2024-07-22 22:55:32.433 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 17/50, Train Loss: 0.04104262409465653, Val Loss: 0.04327593839594296 +2024-07-22 22:55:36.020 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 18/50, Train Loss: 0.04116021615586111, Val Loss: 0.04361757327403341 +2024-07-22 22:55:39.527 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 19/50, Train Loss: 0.04127038799758468, Val Loss: 0.043125337415507864 +2024-07-22 22:55:43.157 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 20/50, Train Loss: 0.04126580823212862, Val Loss: 0.042951703656997 +2024-07-22 22:55:46.734 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 21/50, Train Loss: 0.04138210003397295, Val Loss: 0.04309558394764151 +2024-07-22 22:55:50.326 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 22/50, Train Loss: 0.04122614623712642, Val Loss: 0.04305405542254448 +2024-07-22 22:55:53.980 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 23/50, Train Loss: 0.04155052203152861, Val Loss: 0.043280147814324925 +2024-07-22 22:55:57.500 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 24/50, Train Loss: 0.04189187373433794, Val Loss: 0.043067874386906624 +2024-07-22 22:56:01.088 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 25/50, Train Loss: 0.04161414216671671, Val Loss: 0.043684265709349086 +2024-07-22 22:56:04.615 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 26/50, Train Loss: 0.04171914141625166, Val Loss: 0.043621766088264326 +2024-07-22 22:56:08.215 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 27/50, Train Loss: 0.04150928610137531, Val Loss: 0.04349187734935965 +2024-07-22 22:56:11.767 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 28/50, Train Loss: 0.04200382570603064, Val Loss: 0.04547918045095035 +2024-07-22 22:56:15.374 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 29/50, Train Loss: 0.04189170399414641, Val Loss: 0.04431274373616491 +2024-07-22 22:56:18.934 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 30/50, Train Loss: 0.04167057733450617, Val Loss: 0.04421384962541716 +2024-07-22 22:56:22.514 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 31/50, Train Loss: 0.04187453870794603, Val Loss: 0.046456132935626164 +2024-07-22 22:56:26.108 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 32/50, Train Loss: 0.04201572199485132, Val Loss: 0.04510679723961013 +2024-07-22 22:56:29.653 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 33/50, Train Loss: 0.04225461980594056, Val Loss: 0.04732585889952523 +2024-07-22 22:56:33.212 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 34/50, Train Loss: 0.04260143768042326, Val Loss: 0.04750754332968167 +2024-07-22 22:56:36.739 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 35/50, Train Loss: 0.0426232550027115, Val Loss: 0.04773164199931281 +2024-07-22 22:56:40.300 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 36/50, Train Loss: 0.0422615699203951, Val Loss: 0.04598383020077433 +2024-07-22 22:56:43.892 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 37/50, Train Loss: 0.04200061344142471, Val Loss: 0.046148331782647545 +2024-07-22 22:56:47.481 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 38/50, Train Loss: 0.04201765379735402, Val Loss: 0.04517134130001068 +2024-07-22 22:56:51.051 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 39/50, Train Loss: 0.041700980226908414, Val Loss: 0.04519530311226845 +2024-07-22 22:56:54.634 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 40/50, Train Loss: 0.04182568910930838, Val Loss: 0.0452870674431324 +2024-07-22 22:56:58.280 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 41/50, Train Loss: 0.04157418313303164, Val Loss: 0.04525736565036433 +2024-07-22 22:57:01.893 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 42/50, Train Loss: 0.041711383579032764, Val Loss: 0.0461633773786681 +2024-07-22 22:57:05.462 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 43/50, Train Loss: 0.04194288054215056, Val Loss: 0.045775455236434934 +2024-07-22 22:57:09.046 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 44/50, Train Loss: 0.04154285064765385, Val Loss: 0.04582292512059212 +2024-07-22 22:57:12.619 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 45/50, Train Loss: 0.04167681107563632, Val Loss: 0.046593815726893285 +2024-07-22 22:57:12.619 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 22:57:12.619 No tasks are waiting in the queue. +2024-07-22 22:57:12.620 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 22:57:16.252 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 46/50, Train Loss: 0.04157113565930298, Val Loss: 0.046076824090310504 +2024-07-22 22:57:19.834 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 47/50, Train Loss: 0.04129437373152801, Val Loss: 0.0445980933627912 +2024-07-22 22:57:23.467 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 48/50, Train Loss: 0.04114676325448922, Val Loss: 0.04482925651328904 +2024-07-22 22:57:27.067 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 49/50, Train Loss: 0.0410305077742253, Val Loss: 0.044769599927323205 +2024-07-22 22:57:30.631 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 50/50, Train Loss: 0.04091664347797632, Val Loss: 0.04467083950127874 +2024-07-22 22:57:30.631 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Fold 1, MAPE: 4.00% +2024-07-22 22:57:30.742 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_100001_200000_LSTM//train_f1_bgd_education_100001_200000_LSTM.png +2024-07-22 22:57:35.809 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 1/50, Train Loss: 0.03784452140546189, Val Loss: 0.04296782006110464 +2024-07-22 22:57:40.876 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 2/50, Train Loss: 0.03776764803422758, Val Loss: 0.044557560022388185 +2024-07-22 22:57:46.002 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 3/50, Train Loss: 0.03845455386460973, Val Loss: 0.04497621666107859 +2024-07-22 22:57:51.138 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 4/50, Train Loss: 0.038020692801532835, Val Loss: 0.043887455122811454 +2024-07-22 22:57:56.234 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 5/50, Train Loss: 0.03781556848508234, Val Loss: 0.04402006215282849 +2024-07-22 22:58:01.288 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 6/50, Train Loss: 0.03786635585129261, Val Loss: 0.04383295955402511 +2024-07-22 22:58:06.468 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 7/50, Train Loss: 0.037787822558759496, Val Loss: 0.04366104054663863 +2024-07-22 22:58:11.593 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 8/50, Train Loss: 0.03740457259118557, Val Loss: 0.04489260491515909 +2024-07-22 22:58:16.778 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 9/50, Train Loss: 0.03775223201284042, Val Loss: 0.04544279644531863 +2024-07-22 22:58:21.953 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 10/50, Train Loss: 0.03777195316237899, Val Loss: 0.045225019061139654 +2024-07-22 22:58:27.009 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 11/50, Train Loss: 0.03806824729634592, Val Loss: 0.04514482404504504 +2024-07-22 22:58:32.148 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 12/50, Train Loss: 0.037749514162827, Val Loss: 0.04531003428356988 +2024-07-22 22:58:37.226 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 13/50, Train Loss: 0.037477432302414224, Val Loss: 0.04578581691852638 +2024-07-22 22:58:42.362 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 14/50, Train Loss: 0.03752222766454976, Val Loss: 0.04550463402909892 +2024-07-22 22:58:47.500 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 15/50, Train Loss: 0.03749526232982484, Val Loss: 0.04507541917264461 +2024-07-22 22:58:52.581 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 16/50, Train Loss: 0.037267291166174873, Val Loss: 0.04515816308557987 +2024-07-22 22:58:57.611 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 17/50, Train Loss: 0.037166689844945304, Val Loss: 0.04478575539376054 +2024-07-22 22:59:02.703 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 18/50, Train Loss: 0.03765342506365134, Val Loss: 0.0447231010134731 +2024-07-22 22:59:07.714 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 19/50, Train Loss: 0.03705986958140364, Val Loss: 0.044713873522622245 +2024-07-22 22:59:12.811 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 20/50, Train Loss: 0.03728924808092415, Val Loss: 0.04573613367974758 +2024-07-22 22:59:17.795 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 21/50, Train Loss: 0.03709496851437367, Val Loss: 0.04506596949483667 +2024-07-22 22:59:23.080 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 22/50, Train Loss: 0.0371895983385352, Val Loss: 0.04486414311187608 +2024-07-22 22:59:28.155 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 23/50, Train Loss: 0.036945981510843225, Val Loss: 0.044816154507654055 +2024-07-22 22:59:33.087 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 24/50, Train Loss: 0.037200943316118076, Val Loss: 0.04594492028866495 +2024-07-22 22:59:38.015 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 25/50, Train Loss: 0.036883921917671196, Val Loss: 0.04502357696848256 +2024-07-22 22:59:43.017 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 26/50, Train Loss: 0.03657078388361977, Val Loss: 0.04398630453007562 +2024-07-22 22:59:47.949 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 27/50, Train Loss: 0.036556238774210215, Val Loss: 0.04449438835893359 +2024-07-22 22:59:52.892 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 28/50, Train Loss: 0.0365045214465891, Val Loss: 0.04478672205337456 +2024-07-22 22:59:57.809 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 29/50, Train Loss: 0.036768537784854956, Val Loss: 0.044541775807738306 +2024-07-22 23:00:02.728 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 30/50, Train Loss: 0.036330597331890695, Val Loss: 0.04474579042622021 +2024-07-22 23:00:07.640 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 31/50, Train Loss: 0.03623273032001005, Val Loss: 0.04396518059074879 +2024-07-22 23:00:12.529 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 32/50, Train Loss: 0.03636485832528426, Val Loss: 0.043968403073293826 +2024-07-22 23:00:17.481 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 33/50, Train Loss: 0.03606205156001334, Val Loss: 0.043726257873432976 +2024-07-22 23:00:22.438 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 34/50, Train Loss: 0.036030223521475606, Val Loss: 0.04396170265972614 +2024-07-22 23:00:27.353 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 35/50, Train Loss: 0.03628679382829712, Val Loss: 0.04390907282275813 +2024-07-22 23:00:32.268 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 36/50, Train Loss: 0.03641126320983928, Val Loss: 0.04462824894913605 +2024-07-22 23:00:37.214 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 37/50, Train Loss: 0.03604276650227033, Val Loss: 0.04389420683894839 +2024-07-22 23:00:42.136 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 38/50, Train Loss: 0.036049696455638, Val Loss: 0.042978952452540395 +2024-07-22 23:00:47.085 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 39/50, Train Loss: 0.03587579132559208, Val Loss: 0.043961679243615694 +2024-07-22 23:00:52.008 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 40/50, Train Loss: 0.03592156278542601, Val Loss: 0.0437362543706383 +2024-07-22 23:00:56.958 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 41/50, Train Loss: 0.03602377764092615, Val Loss: 0.04261076961244856 +2024-07-22 23:01:01.886 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 42/50, Train Loss: 0.03569685415221521, Val Loss: 0.0428829416100468 +2024-07-22 23:01:06.807 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 43/50, Train Loss: 0.03586912837524254, Val Loss: 0.04283483608492783 +2024-07-22 23:01:11.739 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 44/50, Train Loss: 0.03557829263333518, Val Loss: 0.04225723221898079 +2024-07-22 23:01:16.659 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 45/50, Train Loss: 0.03573774019829356, Val Loss: 0.042893690828766144 +2024-07-22 23:01:21.598 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 46/50, Train Loss: 0.035726024894616924, Val Loss: 0.043177383180175506 +2024-07-22 23:01:26.521 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 47/50, Train Loss: 0.035572321798938975, Val Loss: 0.04198591171630791 +2024-07-22 23:01:31.434 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 48/50, Train Loss: 0.035317351056549415, Val Loss: 0.041939386938299454 +2024-07-22 23:01:36.345 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 49/50, Train Loss: 0.03562265593343629, Val Loss: 0.04336170665919781 +2024-07-22 23:01:41.304 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 50/50, Train Loss: 0.03541046728451665, Val Loss: 0.04177663374160017 +2024-07-22 23:01:41.304 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Fold 2, MAPE: 3.72% +2024-07-22 23:01:41.413 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_100001_200000_LSTM//train_f2_bgd_education_100001_200000_LSTM.png +2024-07-22 23:01:47.814 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 1/50, Train Loss: 0.03603586128396954, Val Loss: 0.04286128463489669 +2024-07-22 23:01:54.189 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 2/50, Train Loss: 0.03623739336516789, Val Loss: 0.04314203251685415 +2024-07-22 23:02:00.577 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 3/50, Train Loss: 0.03592344074637341, Val Loss: 0.04366774032158511 +2024-07-22 23:02:06.957 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 4/50, Train Loss: 0.03613432334642187, Val Loss: 0.04308317585715226 +2024-07-22 23:02:13.350 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 5/50, Train Loss: 0.035808095855892993, Val Loss: 0.0435895636677742 +2024-07-22 23:02:13.350 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:02:13.350 No tasks are waiting in the queue. +2024-07-22 23:02:13.350 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 23:02:19.735 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 6/50, Train Loss: 0.03599994210191339, Val Loss: 0.04236560905618327 +2024-07-22 23:02:26.184 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 7/50, Train Loss: 0.035565704294889096, Val Loss: 0.04354264172060149 +2024-07-22 23:02:32.579 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 8/50, Train Loss: 0.03592917601839244, Val Loss: 0.04302945898047515 +2024-07-22 23:02:38.946 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 9/50, Train Loss: 0.03566661483789091, Val Loss: 0.042363042224730765 +2024-07-22 23:02:45.321 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 10/50, Train Loss: 0.035517857403313514, Val Loss: 0.042768394414867676 +2024-07-22 23:02:51.671 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 11/50, Train Loss: 0.035489266188882235, Val Loss: 0.04313265133116927 +2024-07-22 23:02:58.071 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 12/50, Train Loss: 0.03563990548467465, Val Loss: 0.043202703233276095 +2024-07-22 23:03:04.461 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 13/50, Train Loss: 0.03531105650200261, Val Loss: 0.044642577905740055 +2024-07-22 23:03:10.817 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 14/50, Train Loss: 0.035570586582632374, Val Loss: 0.0423524913511106 +2024-07-22 23:03:17.194 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 15/50, Train Loss: 0.03512096816419269, Val Loss: 0.04379383682140282 +2024-07-22 23:03:23.600 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 16/50, Train Loss: 0.03533845926842672, Val Loss: 0.04225238135882786 +2024-07-22 23:03:29.970 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 17/50, Train Loss: 0.03507652145763524, Val Loss: 0.042356650531291964 +2024-07-22 23:03:36.416 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 18/50, Train Loss: 0.03508124308888432, Val Loss: 0.043618049898317884 +2024-07-22 23:03:42.801 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 19/50, Train Loss: 0.035072733896027365, Val Loss: 0.043253274421606744 +2024-07-22 23:03:49.221 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 20/50, Train Loss: 0.03514848232751699, Val Loss: 0.04285851355109896 +2024-07-22 23:03:55.592 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 21/50, Train Loss: 0.03505125998271455, Val Loss: 0.04233632683753967 +2024-07-22 23:04:01.953 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 22/50, Train Loss: 0.035159203056380046, Val Loss: 0.04271462128630706 +2024-07-22 23:04:08.328 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 23/50, Train Loss: 0.034868209039886223, Val Loss: 0.042641934539590566 +2024-07-22 23:04:14.710 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 24/50, Train Loss: 0.03509451593640897, Val Loss: 0.04243529641202518 +2024-07-22 23:04:21.147 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 25/50, Train Loss: 0.03475065313601237, Val Loss: 0.04213879534176418 +2024-07-22 23:04:27.538 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 26/50, Train Loss: 0.034721204783204646, Val Loss: 0.04159941055944988 +2024-07-22 23:04:33.909 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 27/50, Train Loss: 0.03485177734719335, Val Loss: 0.04229704248053687 +2024-07-22 23:04:40.316 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 28/50, Train Loss: 0.034772727986891495, Val Loss: 0.0415714005274432 +2024-07-22 23:04:46.678 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 29/50, Train Loss: 0.03497311179425648, Val Loss: 0.04171802609094551 +2024-07-22 23:04:53.022 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 30/50, Train Loss: 0.034710310386131996, Val Loss: 0.04183070579809802 +2024-07-22 23:04:59.407 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 31/50, Train Loss: 0.034648895357474147, Val Loss: 0.04188235769314425 +2024-07-22 23:05:05.828 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 32/50, Train Loss: 0.03490442683478054, Val Loss: 0.04268402803157057 +2024-07-22 23:05:12.219 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 33/50, Train Loss: 0.034736811726106154, Val Loss: 0.04196803186620985 +2024-07-22 23:05:18.614 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 34/50, Train Loss: 0.034907049439150656, Val Loss: 0.040496814676693506 +2024-07-22 23:05:25.034 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 35/50, Train Loss: 0.03478089433243806, Val Loss: 0.041611649468541144 +2024-07-22 23:05:31.418 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 36/50, Train Loss: 0.03477374757740566, Val Loss: 0.040973748213478496 +2024-07-22 23:05:37.817 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 37/50, Train Loss: 0.03478993401735378, Val Loss: 0.04085526540875435 +2024-07-22 23:05:44.277 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 38/50, Train Loss: 0.03482541801046125, Val Loss: 0.04190541197146688 +2024-07-22 23:05:50.647 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 39/50, Train Loss: 0.0344469852665131, Val Loss: 0.04117461411016328 +2024-07-22 23:05:57.028 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 40/50, Train Loss: 0.03440932996517463, Val Loss: 0.04135409700019019 +2024-07-22 23:06:03.428 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 41/50, Train Loss: 0.034715233451063685, Val Loss: 0.04157194010913372 +2024-07-22 23:06:09.817 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 42/50, Train Loss: 0.03473799409036585, Val Loss: 0.04168800179447447 +2024-07-22 23:06:16.247 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 43/50, Train Loss: 0.03464812683544571, Val Loss: 0.04101217027221407 +2024-07-22 23:06:22.652 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 44/50, Train Loss: 0.034375507505141574, Val Loss: 0.041000400696481976 +2024-07-22 23:06:29.119 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 45/50, Train Loss: 0.034422467817827096, Val Loss: 0.0407430357166699 +2024-07-22 23:06:35.558 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 46/50, Train Loss: 0.03433913304704985, Val Loss: 0.04204192129628999 +2024-07-22 23:06:41.996 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 47/50, Train Loss: 0.03424115921203181, Val Loss: 0.041547271715743204 +2024-07-22 23:06:48.440 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 48/50, Train Loss: 0.0341519581408595, Val Loss: 0.04184306710958481 +2024-07-22 23:06:54.883 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 49/50, Train Loss: 0.034071584024446475, Val Loss: 0.04112110755273274 +2024-07-22 23:07:01.317 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 50/50, Train Loss: 0.033888312170563414, Val Loss: 0.0414448191012655 +2024-07-22 23:07:01.317 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Fold 3, MAPE: 3.89% +2024-07-22 23:07:01.425 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_100001_200000_LSTM//train_f3_bgd_education_100001_200000_LSTM.png +2024-07-22 23:07:09.324 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 1/50, Train Loss: 0.0327660137808871, Val Loss: 0.03770779834261962 +2024-07-22 23:07:17.216 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 2/50, Train Loss: 0.03340058196764225, Val Loss: 0.037529511377215385 +2024-07-22 23:07:17.216 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:07:17.216 No tasks are waiting in the queue. +2024-07-22 23:07:17.216 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 23:07:25.148 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 3/50, Train Loss: 0.03356473416025783, Val Loss: 0.037309247787509645 +2024-07-22 23:07:33.040 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 4/50, Train Loss: 0.03359000228516672, Val Loss: 0.0374959940889052 +2024-07-22 23:07:40.971 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 5/50, Train Loss: 0.03330588350928892, Val Loss: 0.037409062843237605 +2024-07-22 23:07:48.877 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 6/50, Train Loss: 0.0332231098068771, Val Loss: 0.03726787332977567 +2024-07-22 23:07:56.792 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 7/50, Train Loss: 0.033211261215994416, Val Loss: 0.0374316472027983 +2024-07-22 23:08:04.682 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 8/50, Train Loss: 0.03309370285092757, Val Loss: 0.037352581481848446 +2024-07-22 23:08:12.646 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 9/50, Train Loss: 0.03308981227763425, Val Loss: 0.03723639941641262 +2024-07-22 23:08:20.567 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 10/50, Train Loss: 0.03299942928441297, Val Loss: 0.03707539652075086 +2024-07-22 23:08:28.464 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 11/50, Train Loss: 0.03307779135460826, Val Loss: 0.03736449112849576 +2024-07-22 23:08:36.359 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 12/50, Train Loss: 0.032996634674397694, Val Loss: 0.0372108557926757 +2024-07-22 23:08:44.279 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 13/50, Train Loss: 0.03279306910846425, Val Loss: 0.0370618177311761 +2024-07-22 23:08:52.213 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 14/50, Train Loss: 0.03263338543902868, Val Loss: 0.03710555423583303 +2024-07-22 23:09:00.169 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 15/50, Train Loss: 0.03288968656768744, Val Loss: 0.037117358509983336 +2024-07-22 23:09:08.104 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 16/50, Train Loss: 0.03270517362431548, Val Loss: 0.03687117701130254 +2024-07-22 23:09:16.057 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 17/50, Train Loss: 0.0327760075036993, Val Loss: 0.03673465214669704 +2024-07-22 23:09:24.009 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 18/50, Train Loss: 0.032274754835699485, Val Loss: 0.036757465824484824 +2024-07-22 23:09:31.955 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 19/50, Train Loss: 0.03265999349626316, Val Loss: 0.0370995258646352 +2024-07-22 23:09:39.921 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 20/50, Train Loss: 0.03246423996042931, Val Loss: 0.037038433498569896 +2024-07-22 23:09:47.843 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 21/50, Train Loss: 0.03236298948183827, Val Loss: 0.03667700673852648 +2024-07-22 23:09:55.794 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 22/50, Train Loss: 0.03236128140947428, Val Loss: 0.03685222933334964 +2024-07-22 23:10:03.741 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 23/50, Train Loss: 0.03262812782335898, Val Loss: 0.0366101755627564 +2024-07-22 23:10:11.709 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 24/50, Train Loss: 0.032734230952872624, Val Loss: 0.03687864728271961 +2024-07-22 23:10:19.680 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 25/50, Train Loss: 0.03253410943922983, Val Loss: 0.03714971962784018 +2024-07-22 23:10:27.661 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 26/50, Train Loss: 0.03240962890137372, Val Loss: 0.03692837032888617 +2024-07-22 23:10:35.628 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 27/50, Train Loss: 0.03235989576740854, Val Loss: 0.03652392881257194 +2024-07-22 23:10:43.561 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 28/50, Train Loss: 0.03226458784406898, Val Loss: 0.036577564531138966 +2024-07-22 23:10:51.537 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 29/50, Train Loss: 0.03224696771338068, Val Loss: 0.03695375914020198 +2024-07-22 23:10:59.607 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 30/50, Train Loss: 0.032379637375987806, Val Loss: 0.03628644427018506 +2024-07-22 23:11:07.632 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 31/50, Train Loss: 0.03219889395538418, Val Loss: 0.03660346610205514 +2024-07-22 23:11:15.675 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 32/50, Train Loss: 0.032143064100166846, Val Loss: 0.03648373979542937 +2024-07-22 23:11:23.732 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 33/50, Train Loss: 0.03207461645120177, Val Loss: 0.03634240733725684 +2024-07-22 23:11:31.758 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 34/50, Train Loss: 0.03211809199132111, Val Loss: 0.03646971966539111 +2024-07-22 23:11:39.895 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 35/50, Train Loss: 0.03217346008181914, Val Loss: 0.036524963059595655 +2024-07-22 23:11:47.977 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 36/50, Train Loss: 0.03212858835534974, Val Loss: 0.03682753544832979 +2024-07-22 23:11:56.063 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 37/50, Train Loss: 0.03230174156655183, Val Loss: 0.03655032818870885 +2024-07-22 23:12:04.180 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 38/50, Train Loss: 0.03192040830550865, Val Loss: 0.03619904087058135 +2024-07-22 23:12:12.184 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 39/50, Train Loss: 0.03209691586765064, Val Loss: 0.03712307938507625 +2024-07-22 23:12:20.319 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 40/50, Train Loss: 0.03206456787670138, Val Loss: 0.03646235322313649 +2024-07-22 23:12:20.319 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:12:20.319 No tasks are waiting in the queue. +2024-07-22 23:12:20.319 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 23:12:28.409 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 41/50, Train Loss: 0.031899956162034095, Val Loss: 0.036565032548138074 +2024-07-22 23:12:36.456 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 42/50, Train Loss: 0.03211891626532393, Val Loss: 0.03613007616783891 +2024-07-22 23:12:44.543 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 43/50, Train Loss: 0.032114151319296194, Val Loss: 0.03629956687135356 +2024-07-22 23:12:52.608 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 44/50, Train Loss: 0.032001098949761914, Val Loss: 0.03639864644833973 +2024-07-22 23:13:00.730 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 45/50, Train Loss: 0.03224488065160554, Val Loss: 0.03655561666403498 +2024-07-22 23:13:08.795 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 46/50, Train Loss: 0.03220062759629954, Val Loss: 0.03701041724000658 +2024-07-22 23:13:16.824 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 47/50, Train Loss: 0.03216264402258328, Val Loss: 0.036629470331328254 +2024-07-22 23:13:24.909 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 48/50, Train Loss: 0.0320576818702721, Val Loss: 0.036729418113827704 +2024-07-22 23:13:33.026 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 49/50, Train Loss: 0.03197341174658003, Val Loss: 0.036513652758938926 +2024-07-22 23:13:41.174 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 50/50, Train Loss: 0.032135657570057215, Val Loss: 0.03660748755293233 +2024-07-22 23:13:41.175 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Fold 4, MAPE: 3.54% +2024-07-22 23:13:41.284 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_100001_200000_LSTM//train_f4_bgd_education_100001_200000_LSTM.png +2024-07-22 23:13:45.875 [40/cross_validate_train/387 (pid 17756)] Task finished successfully. +2024-07-22 23:13:45.907 [40/model_scores/388 (pid 22688)] Task is starting. +2024-07-22 23:13:47.381 [40/model_scores/388 (pid 22688)] INFO:__main__:Average Train Loss across all folds: 0.03926383282974597 +2024-07-22 23:13:51.416 [40/model_scores/388 (pid 22688)] INFO:__main__:Average Validation Loss across all folds: 0.0471512690612248 +2024-07-22 23:13:51.416 [40/model_scores/388 (pid 22688)] INFO:__main__:Average MAPE across all folds: 3.89% +2024-07-22 23:13:51.417 [40/model_scores/388 (pid 22688)] Task finished successfully. +2024-07-22 23:13:51.451 [40/validate_model/389 (pid 22722)] Task is starting. +2024-07-22 23:13:52.968 [40/validate_model/389 (pid 22722)] INFO:__main__:Validating LSTM on test set.. +2024-07-22 23:13:53.708 [40/validate_model/389 (pid 22722)] INFO:__main__:Test Set MAPE: 3.42% +2024-07-22 23:13:54.070 [40/validate_model/389 (pid 22722)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_education_100001_200000_LSTM//test_bgd_education_100001_200000_LSTM.png +2024-07-22 23:13:54.529 [40/validate_model/389 (pid 22722)] Task finished successfully. +2024-07-22 23:13:54.557 [40/log_model/390 (pid 22735)] Task is starting. +2024-07-22 23:13:56.079 [40/log_model/390 (pid 22735)] INFO:__main__:Logging model bgd_education_100001_200000_LSTM +2024-07-22 23:13:56.080 [40/log_model/390 (pid 22735)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_education_100001_200000_LSTM//bgd_education_100001_200000_LSTM.pth +2024-07-22 23:14:00.068 [40/log_model/390 (pid 22735)] Task finished successfully. +2024-07-22 23:14:00.100 [40/end/391 (pid 22767)] Task is starting. +2024-07-22 23:14:01.557 [40/end/391 (pid 22767)] INFO:__main__:Pipeline end. +2024-07-22 23:14:01.871 [40/end/391 (pid 22767)] Task finished successfully. +2024-07-22 23:14:01.871 Done! +✅ Run('BGD_LinearFlow/40') succeeded: +-- stdout -- +2024-07-22 22:52:09.579 Workflow starting (run-id 40): +2024-07-22 22:52:09.663 [40/start/379 (pid 17544)] Task is starting. +2024-07-22 22:52:11.227 [40/start/379 (pid 17544)] INFO:__main__:Starting BGD linear flow.. +2024-07-22 22:52:11.524 [40/start/379 (pid 17544)] Task finished successfully. +2024-07-22 22:52:11.553 [40/ingest/380 (pid 17562)] Task is starting. +2024-07-22 22:52:13.114 [40/ingest/380 (pid 17562)] INFO:__main__:Fetching dataframe.. +2024-07-22 22:52:13.150 [40/ingest/380 (pid 17562)] INFO:__main__:Dataframe fetching complete.. +2024-07-22 22:52:17.192 [40/ingest/380 (pid 17562)] Task finished successfully. +2024-07-22 22:52:17.222 [40/pick_2017_data/381 (pid 17602)] Task is starting. +2024-07-22 22:52:18.712 [40/pick_2017_data/381 (pid 17602)] INFO:__main__:Picking 2017 data.. +2024-07-22 22:52:19.062 [40/pick_2017_data/381 (pid 17602)] Task finished successfully. +2024-07-22 22:52:19.097 [40/fill_missing_data/382 (pid 17613)] Task is starting. +2024-07-22 22:52:20.571 [40/fill_missing_data/382 (pid 17613)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-22 22:52:20.588 [40/fill_missing_data/382 (pid 17613)] INFO:__main__:NaN counts per column: +2024-07-22 22:52:20.588 [40/fill_missing_data/382 (pid 17613)] INFO:__main__:Panther_education_Jerome 10 +2024-07-22 22:52:20.588 [40/fill_missing_data/382 (pid 17613)] Panther_education_Quintin 12 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Panther_education_Hugh 12 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Panther_education_Alecia 12 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Panther_education_Vincent 12 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Panther_education_Genevieve 387 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Lilly 91 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Andre 0 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Leota 5 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Yolande 1 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Elvira 17 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Gloria 9 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Nilda 1 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Fox_education_Claude 15 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Rat_education_Willie 50 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Rat_education_Eleonora 8760 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Rat_education_Veronica 8760 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Bear_education_Rebecca 46 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Bear_education_Lorie 46 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Bear_education_Zandra 98 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Bear_education_Fannie 177 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Bear_education_Alvaro 56 +2024-07-22 22:52:20.589 [40/fill_missing_data/382 (pid 17613)] Lamb_education_Luz 14 +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] Cockatoo_education_Eunice 121 +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] Cockatoo_education_Evangeline 2278 +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] Cockatoo_education_Flora 113 +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] Cockatoo_education_Marva 113 +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] dtype: int64 +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] --- Logging error --- +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] Traceback (most recent call last): +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] msg = self.format(record) +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] return fmt.format(record) +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] record.message = record.getMessage() +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] msg = msg % self.args +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] TypeError: not all arguments converted during string formatting +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] Call stack: +2024-07-22 22:52:20.590 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] BGD_LinearFlow() +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] cli.main(self) +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] return func(*args, **kwargs) +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] return self.main(*args, **kwargs) +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-22 22:52:31.201 [40/fill_missing_data/382 (pid 17613)] rv = self.invoke(ctx) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] return ctx.invoke(self.callback, **ctx.params) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] return callback(*args, **kwargs) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] return f(get_current_context(), *args, **kwargs) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] task.run_step( +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] self._exec_step_function(step_func) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] step_function() +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] self.missing_values = find_nan_counts(self.df) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-22 22:52:31.202 [40/fill_missing_data/382 (pid 17613)] Arguments: (21216,) +2024-07-22 22:52:31.203 [40/fill_missing_data/382 (pid 17613)] Task finished successfully. +2024-07-22 22:52:31.233 [40/find_median/383 (pid 17667)] Task is starting. +2024-07-22 22:52:32.708 [40/find_median/383 (pid 17667)] INFO:__main__:Computing and using median.. +2024-07-22 22:52:33.242 [40/find_median/383 (pid 17667)] Task finished successfully. +2024-07-22 22:52:33.276 [40/aggregate_data/384 (pid 17680)] Task is starting. +2024-07-22 22:52:34.767 [40/aggregate_data/384 (pid 17680)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-22 22:52:38.908 [40/aggregate_data/384 (pid 17680)] Task finished successfully. +2024-07-22 22:52:38.944 [40/split_data/385 (pid 17711)] Task is starting. +2024-07-22 22:52:40.507 [40/split_data/385 (pid 17711)] INFO:__main__:Splitting data into test and train... +2024-07-22 22:52:44.505 [40/split_data/385 (pid 17711)] Task finished successfully. +2024-07-22 22:52:44.537 [40/make_x_y/386 (pid 17745)] Task is starting. +2024-07-22 22:52:46.486 [40/make_x_y/386 (pid 17745)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-22 22:52:46.918 [40/make_x_y/386 (pid 17745)] Shape of y_train: (6648, 1) +2024-07-22 22:52:46.918 [40/make_x_y/386 (pid 17745)] Shape of X_test: (1392, 360, 1) +2024-07-22 22:52:46.918 [40/make_x_y/386 (pid 17745)] Shape of y_test: (1392, 1) +2024-07-22 22:52:46.919 [40/make_x_y/386 (pid 17745)] Task finished successfully. +2024-07-22 22:52:46.957 [40/cross_validate_train/387 (pid 17756)] Task is starting. +2024-07-22 22:52:48.474 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Creating bgd_education_100001_200000_LSTM +2024-07-22 22:52:48.475 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Performing cross validation.. +2024-07-22 22:52:51.021 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 1/50, Train Loss: 0.31996905973979406, Val Loss: 0.1840203304375921 +2024-07-22 22:52:52.971 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 2/50, Train Loss: 0.16663339883089065, Val Loss: 0.17506074692521775 +2024-07-22 22:52:55.117 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 3/50, Train Loss: 0.15396276925291333, Val Loss: 0.16497530777539526 +2024-07-22 22:52:57.170 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 4/50, Train Loss: 0.13834882846900395, Val Loss: 0.1466408362346036 +2024-07-22 22:52:59.165 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 5/50, Train Loss: 0.11090353003570012, Val Loss: 0.10664195929254805 +2024-07-22 22:53:01.118 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 6/50, Train Loss: 0.08668706842831203, Val Loss: 0.1116373068520001 +2024-07-22 22:53:03.057 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 7/50, Train Loss: 0.08581864493233816, Val Loss: 0.11036727321999414 +2024-07-22 22:53:05.026 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 8/50, Train Loss: 0.08287862411567143, Val Loss: 0.10657423713377544 +2024-07-22 22:53:07.000 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 9/50, Train Loss: 0.08128111213445663, Val Loss: 0.10438554074083056 +2024-07-22 22:53:08.950 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 10/50, Train Loss: 0.08043713101318904, Val Loss: 0.10156598005975996 +2024-07-22 22:53:10.900 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 11/50, Train Loss: 0.07896844819188117, Val Loss: 0.1013604012983186 +2024-07-22 22:53:13.054 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 12/50, Train Loss: 0.07815910407475063, Val Loss: 0.10015960655042104 +2024-07-22 22:53:15.138 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 13/50, Train Loss: 0.077041643006461, Val Loss: 0.09729340608630861 +2024-07-22 22:53:17.138 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 14/50, Train Loss: 0.07630255775792258, Val Loss: 0.09653095219816481 +2024-07-22 22:53:19.143 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 15/50, Train Loss: 0.0753671258687973, Val Loss: 0.09566783649580819 +2024-07-22 22:53:21.131 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 16/50, Train Loss: 0.07452698796987534, Val Loss: 0.09476773525987353 +2024-07-22 22:53:23.134 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 17/50, Train Loss: 0.07366045830505234, Val Loss: 0.09241099389536041 +2024-07-22 22:53:25.188 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 18/50, Train Loss: 0.07251332082918711, Val Loss: 0.09195521399378777 +2024-07-22 22:53:27.171 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 19/50, Train Loss: 0.07155865090233939, Val Loss: 0.09066115011061941 +2024-07-22 22:53:29.153 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 20/50, Train Loss: 0.07013552231448038, Val Loss: 0.0916327314717429 +2024-07-22 22:53:31.164 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 21/50, Train Loss: 0.06861114203929901, Val Loss: 0.09208135349409921 +2024-07-22 22:53:33.180 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 22/50, Train Loss: 0.06801536977291107, Val Loss: 0.09249895034091814 +2024-07-22 22:53:35.160 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 23/50, Train Loss: 0.06694701707788876, Val Loss: 0.09177764398711068 +2024-07-22 22:53:37.161 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 24/50, Train Loss: 0.06593452862330845, Val Loss: 0.09110930828111512 +2024-07-22 22:53:39.226 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 25/50, Train Loss: 0.06473139056137629, Val Loss: 0.08945466897317342 +2024-07-22 22:53:41.313 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 26/50, Train Loss: 0.06364469357899256, Val Loss: 0.08867037849766868 +2024-07-22 22:53:43.366 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 27/50, Train Loss: 0.062152683522020066, Val Loss: 0.08590305468865804 +2024-07-22 22:53:45.425 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 28/50, Train Loss: 0.06233032526714461, Val Loss: 0.08592178928000586 +2024-07-22 22:53:47.438 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 29/50, Train Loss: 0.06074522552745683, Val Loss: 0.083306501273598 +2024-07-22 22:53:49.446 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 30/50, Train Loss: 0.06122182043535369, Val Loss: 0.08431072447981153 +2024-07-22 22:53:51.480 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 31/50, Train Loss: 0.06001076336417879, Val Loss: 0.08262301970805441 +2024-07-22 22:53:53.577 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 32/50, Train Loss: 0.05997633284756115, Val Loss: 0.08205088526010514 +2024-07-22 22:53:55.634 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 33/50, Train Loss: 0.05928763183099883, Val Loss: 0.0819566364799227 +2024-07-22 22:53:57.703 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 34/50, Train Loss: 0.05934253601091249, Val Loss: 0.08227393041763986 +2024-07-22 22:53:59.735 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 35/50, Train Loss: 0.058695220095770696, Val Loss: 0.08065630133662904 +2024-07-22 22:54:01.819 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 36/50, Train Loss: 0.05804288632103375, Val Loss: 0.07755907103419304 +2024-07-22 22:54:03.889 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 37/50, Train Loss: 0.057739378086158206, Val Loss: 0.07565930805036 +2024-07-22 22:54:05.956 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 38/50, Train Loss: 0.05803697194371905, Val Loss: 0.07709121597664696 +2024-07-22 22:54:08.007 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 39/50, Train Loss: 0.05713364237121173, Val Loss: 0.07739347102386611 +2024-07-22 22:54:10.056 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 40/50, Train Loss: 0.05639954007097653, Val Loss: 0.07487426698207855 +2024-07-22 22:54:12.073 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 41/50, Train Loss: 0.05678249640124185, Val Loss: 0.07374259137681552 +2024-07-22 22:54:14.119 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 42/50, Train Loss: 0.056411336255925044, Val Loss: 0.07432271774326052 +2024-07-22 22:54:16.164 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 43/50, Train Loss: 0.05591645794255393, Val Loss: 0.07603417613676616 +2024-07-22 22:54:18.276 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 44/50, Train Loss: 0.05551972229565893, Val Loss: 0.07180862575769424 +2024-07-22 22:54:20.347 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 45/50, Train Loss: 0.055181132789169036, Val Loss: 0.07344499719994409 +2024-07-22 22:54:22.403 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 46/50, Train Loss: 0.05520857200026512, Val Loss: 0.07275435573288373 +2024-07-22 22:54:24.466 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 47/50, Train Loss: 0.05514354716454233, Val Loss: 0.07210893503257207 +2024-07-22 22:54:26.555 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 48/50, Train Loss: 0.054793201493365425, Val Loss: 0.07220807373523712 +2024-07-22 22:54:28.636 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 49/50, Train Loss: 0.054658115761620656, Val Loss: 0.07189978041819163 +2024-07-22 22:54:30.682 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 50/50, Train Loss: 0.05396808364561626, Val Loss: 0.07125656540904726 +2024-07-22 22:54:30.683 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Fold 0, MAPE: 4.27% +2024-07-22 22:54:31.042 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_100001_200000_LSTM//train_f0_bgd_education_100001_200000_LSTM.png +2024-07-22 22:54:34.707 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 1/50, Train Loss: 0.043159557080694605, Val Loss: 0.04963809001658644 +2024-07-22 22:54:38.267 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 2/50, Train Loss: 0.042711521605295795, Val Loss: 0.05033119235719953 +2024-07-22 22:54:41.843 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 3/50, Train Loss: 0.043669006148619315, Val Loss: 0.048919460283858435 +2024-07-22 22:54:45.427 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 4/50, Train Loss: 0.044208129069634845, Val Loss: 0.04595269198928561 +2024-07-22 22:54:48.953 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 5/50, Train Loss: 0.04320225955120155, Val Loss: 0.04512728846498898 +2024-07-22 22:54:52.488 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 6/50, Train Loss: 0.04239952119865588, Val Loss: 0.044856016976492746 +2024-07-22 22:54:56.081 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 7/50, Train Loss: 0.04196871891617775, Val Loss: 0.04427068941295147 +2024-07-22 22:54:59.649 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 8/50, Train Loss: 0.041896508048687664, Val Loss: 0.04412070182817323 +2024-07-22 22:55:03.293 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 9/50, Train Loss: 0.041706227670822826, Val Loss: 0.04398605711758137 +2024-07-22 22:55:06.914 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 10/50, Train Loss: 0.04176439802561487, Val Loss: 0.04417539217642375 +2024-07-22 22:55:10.531 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 11/50, Train Loss: 0.04144728428551129, Val Loss: 0.043935654418809075 +2024-07-22 22:55:14.131 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 12/50, Train Loss: 0.04153031227844102, Val Loss: 0.04411105854170663 +2024-07-22 22:55:17.777 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 13/50, Train Loss: 0.04143984520009586, Val Loss: 0.0434479933232069 +2024-07-22 22:55:21.519 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 14/50, Train Loss: 0.041500303761235306, Val Loss: 0.04332215860486031 +2024-07-22 22:55:25.212 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 15/50, Train Loss: 0.04134374143821853, Val Loss: 0.04348833401288305 +2024-07-22 22:55:28.843 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 16/50, Train Loss: 0.04178518134036235, Val Loss: 0.04310657930161272 +2024-07-22 22:55:32.433 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 17/50, Train Loss: 0.04104262409465653, Val Loss: 0.04327593839594296 +2024-07-22 22:55:36.020 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 18/50, Train Loss: 0.04116021615586111, Val Loss: 0.04361757327403341 +2024-07-22 22:55:39.527 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 19/50, Train Loss: 0.04127038799758468, Val Loss: 0.043125337415507864 +2024-07-22 22:55:43.157 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 20/50, Train Loss: 0.04126580823212862, Val Loss: 0.042951703656997 +2024-07-22 22:55:46.734 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 21/50, Train Loss: 0.04138210003397295, Val Loss: 0.04309558394764151 +2024-07-22 22:55:50.326 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 22/50, Train Loss: 0.04122614623712642, Val Loss: 0.04305405542254448 +2024-07-22 22:55:53.980 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 23/50, Train Loss: 0.04155052203152861, Val Loss: 0.043280147814324925 +2024-07-22 22:55:57.500 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 24/50, Train Loss: 0.04189187373433794, Val Loss: 0.043067874386906624 +2024-07-22 22:56:01.088 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 25/50, Train Loss: 0.04161414216671671, Val Loss: 0.043684265709349086 +2024-07-22 22:56:04.615 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 26/50, Train Loss: 0.04171914141625166, Val Loss: 0.043621766088264326 +2024-07-22 22:56:08.215 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 27/50, Train Loss: 0.04150928610137531, Val Loss: 0.04349187734935965 +2024-07-22 22:56:11.767 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 28/50, Train Loss: 0.04200382570603064, Val Loss: 0.04547918045095035 +2024-07-22 22:56:15.374 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 29/50, Train Loss: 0.04189170399414641, Val Loss: 0.04431274373616491 +2024-07-22 22:56:18.934 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 30/50, Train Loss: 0.04167057733450617, Val Loss: 0.04421384962541716 +2024-07-22 22:56:22.514 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 31/50, Train Loss: 0.04187453870794603, Val Loss: 0.046456132935626164 +2024-07-22 22:56:26.108 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 32/50, Train Loss: 0.04201572199485132, Val Loss: 0.04510679723961013 +2024-07-22 22:56:29.653 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 33/50, Train Loss: 0.04225461980594056, Val Loss: 0.04732585889952523 +2024-07-22 22:56:33.212 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 34/50, Train Loss: 0.04260143768042326, Val Loss: 0.04750754332968167 +2024-07-22 22:56:36.739 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 35/50, Train Loss: 0.0426232550027115, Val Loss: 0.04773164199931281 +2024-07-22 22:56:40.300 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 36/50, Train Loss: 0.0422615699203951, Val Loss: 0.04598383020077433 +2024-07-22 22:56:43.892 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 37/50, Train Loss: 0.04200061344142471, Val Loss: 0.046148331782647545 +2024-07-22 22:56:47.481 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 38/50, Train Loss: 0.04201765379735402, Val Loss: 0.04517134130001068 +2024-07-22 22:56:51.051 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 39/50, Train Loss: 0.041700980226908414, Val Loss: 0.04519530311226845 +2024-07-22 22:56:54.634 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 40/50, Train Loss: 0.04182568910930838, Val Loss: 0.0452870674431324 +2024-07-22 22:56:58.280 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 41/50, Train Loss: 0.04157418313303164, Val Loss: 0.04525736565036433 +2024-07-22 22:57:01.893 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 42/50, Train Loss: 0.041711383579032764, Val Loss: 0.0461633773786681 +2024-07-22 22:57:05.462 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 43/50, Train Loss: 0.04194288054215056, Val Loss: 0.045775455236434934 +2024-07-22 22:57:09.046 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 44/50, Train Loss: 0.04154285064765385, Val Loss: 0.04582292512059212 +2024-07-22 22:57:12.619 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 45/50, Train Loss: 0.04167681107563632, Val Loss: 0.046593815726893285 +2024-07-22 22:57:12.619 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 22:57:12.619 No tasks are waiting in the queue. +2024-07-22 22:57:12.620 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 22:57:16.252 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 46/50, Train Loss: 0.04157113565930298, Val Loss: 0.046076824090310504 +2024-07-22 22:57:19.834 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 47/50, Train Loss: 0.04129437373152801, Val Loss: 0.0445980933627912 +2024-07-22 22:57:23.467 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 48/50, Train Loss: 0.04114676325448922, Val Loss: 0.04482925651328904 +2024-07-22 22:57:27.067 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 49/50, Train Loss: 0.0410305077742253, Val Loss: 0.044769599927323205 +2024-07-22 22:57:30.631 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 50/50, Train Loss: 0.04091664347797632, Val Loss: 0.04467083950127874 +2024-07-22 22:57:30.631 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Fold 1, MAPE: 4.00% +2024-07-22 22:57:30.742 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_100001_200000_LSTM//train_f1_bgd_education_100001_200000_LSTM.png +2024-07-22 22:57:35.809 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 1/50, Train Loss: 0.03784452140546189, Val Loss: 0.04296782006110464 +2024-07-22 22:57:40.876 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 2/50, Train Loss: 0.03776764803422758, Val Loss: 0.044557560022388185 +2024-07-22 22:57:46.002 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 3/50, Train Loss: 0.03845455386460973, Val Loss: 0.04497621666107859 +2024-07-22 22:57:51.138 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 4/50, Train Loss: 0.038020692801532835, Val Loss: 0.043887455122811454 +2024-07-22 22:57:56.234 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 5/50, Train Loss: 0.03781556848508234, Val Loss: 0.04402006215282849 +2024-07-22 22:58:01.288 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 6/50, Train Loss: 0.03786635585129261, Val Loss: 0.04383295955402511 +2024-07-22 22:58:06.468 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 7/50, Train Loss: 0.037787822558759496, Val Loss: 0.04366104054663863 +2024-07-22 22:58:11.593 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 8/50, Train Loss: 0.03740457259118557, Val Loss: 0.04489260491515909 +2024-07-22 22:58:16.778 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 9/50, Train Loss: 0.03775223201284042, Val Loss: 0.04544279644531863 +2024-07-22 22:58:21.953 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 10/50, Train Loss: 0.03777195316237899, Val Loss: 0.045225019061139654 +2024-07-22 22:58:27.009 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 11/50, Train Loss: 0.03806824729634592, Val Loss: 0.04514482404504504 +2024-07-22 22:58:32.148 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 12/50, Train Loss: 0.037749514162827, Val Loss: 0.04531003428356988 +2024-07-22 22:58:37.226 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 13/50, Train Loss: 0.037477432302414224, Val Loss: 0.04578581691852638 +2024-07-22 22:58:42.362 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 14/50, Train Loss: 0.03752222766454976, Val Loss: 0.04550463402909892 +2024-07-22 22:58:47.500 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 15/50, Train Loss: 0.03749526232982484, Val Loss: 0.04507541917264461 +2024-07-22 22:58:52.581 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 16/50, Train Loss: 0.037267291166174873, Val Loss: 0.04515816308557987 +2024-07-22 22:58:57.611 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 17/50, Train Loss: 0.037166689844945304, Val Loss: 0.04478575539376054 +2024-07-22 22:59:02.703 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 18/50, Train Loss: 0.03765342506365134, Val Loss: 0.0447231010134731 +2024-07-22 22:59:07.714 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 19/50, Train Loss: 0.03705986958140364, Val Loss: 0.044713873522622245 +2024-07-22 22:59:12.811 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 20/50, Train Loss: 0.03728924808092415, Val Loss: 0.04573613367974758 +2024-07-22 22:59:17.795 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 21/50, Train Loss: 0.03709496851437367, Val Loss: 0.04506596949483667 +2024-07-22 22:59:23.080 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 22/50, Train Loss: 0.0371895983385352, Val Loss: 0.04486414311187608 +2024-07-22 22:59:28.155 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 23/50, Train Loss: 0.036945981510843225, Val Loss: 0.044816154507654055 +2024-07-22 22:59:33.087 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 24/50, Train Loss: 0.037200943316118076, Val Loss: 0.04594492028866495 +2024-07-22 22:59:38.015 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 25/50, Train Loss: 0.036883921917671196, Val Loss: 0.04502357696848256 +2024-07-22 22:59:43.017 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 26/50, Train Loss: 0.03657078388361977, Val Loss: 0.04398630453007562 +2024-07-22 22:59:47.949 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 27/50, Train Loss: 0.036556238774210215, Val Loss: 0.04449438835893359 +2024-07-22 22:59:52.892 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 28/50, Train Loss: 0.0365045214465891, Val Loss: 0.04478672205337456 +2024-07-22 22:59:57.809 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 29/50, Train Loss: 0.036768537784854956, Val Loss: 0.044541775807738306 +2024-07-22 23:00:02.728 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 30/50, Train Loss: 0.036330597331890695, Val Loss: 0.04474579042622021 +2024-07-22 23:00:07.640 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 31/50, Train Loss: 0.03623273032001005, Val Loss: 0.04396518059074879 +2024-07-22 23:00:12.529 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 32/50, Train Loss: 0.03636485832528426, Val Loss: 0.043968403073293826 +2024-07-22 23:00:17.481 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 33/50, Train Loss: 0.03606205156001334, Val Loss: 0.043726257873432976 +2024-07-22 23:00:22.438 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 34/50, Train Loss: 0.036030223521475606, Val Loss: 0.04396170265972614 +2024-07-22 23:00:27.353 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 35/50, Train Loss: 0.03628679382829712, Val Loss: 0.04390907282275813 +2024-07-22 23:00:32.268 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 36/50, Train Loss: 0.03641126320983928, Val Loss: 0.04462824894913605 +2024-07-22 23:00:37.214 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 37/50, Train Loss: 0.03604276650227033, Val Loss: 0.04389420683894839 +2024-07-22 23:00:42.136 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 38/50, Train Loss: 0.036049696455638, Val Loss: 0.042978952452540395 +2024-07-22 23:00:47.085 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 39/50, Train Loss: 0.03587579132559208, Val Loss: 0.043961679243615694 +2024-07-22 23:00:52.008 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 40/50, Train Loss: 0.03592156278542601, Val Loss: 0.0437362543706383 +2024-07-22 23:00:56.958 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 41/50, Train Loss: 0.03602377764092615, Val Loss: 0.04261076961244856 +2024-07-22 23:01:01.886 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 42/50, Train Loss: 0.03569685415221521, Val Loss: 0.0428829416100468 +2024-07-22 23:01:06.807 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 43/50, Train Loss: 0.03586912837524254, Val Loss: 0.04283483608492783 +2024-07-22 23:01:11.739 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 44/50, Train Loss: 0.03557829263333518, Val Loss: 0.04225723221898079 +2024-07-22 23:01:16.659 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 45/50, Train Loss: 0.03573774019829356, Val Loss: 0.042893690828766144 +2024-07-22 23:01:21.598 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 46/50, Train Loss: 0.035726024894616924, Val Loss: 0.043177383180175506 +2024-07-22 23:01:26.521 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 47/50, Train Loss: 0.035572321798938975, Val Loss: 0.04198591171630791 +2024-07-22 23:01:31.434 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 48/50, Train Loss: 0.035317351056549415, Val Loss: 0.041939386938299454 +2024-07-22 23:01:36.345 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 49/50, Train Loss: 0.03562265593343629, Val Loss: 0.04336170665919781 +2024-07-22 23:01:41.304 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 50/50, Train Loss: 0.03541046728451665, Val Loss: 0.04177663374160017 +2024-07-22 23:01:41.304 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Fold 2, MAPE: 3.72% +2024-07-22 23:01:41.413 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_100001_200000_LSTM//train_f2_bgd_education_100001_200000_LSTM.png +2024-07-22 23:01:47.814 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 1/50, Train Loss: 0.03603586128396954, Val Loss: 0.04286128463489669 +2024-07-22 23:01:54.189 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 2/50, Train Loss: 0.03623739336516789, Val Loss: 0.04314203251685415 +2024-07-22 23:02:00.577 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 3/50, Train Loss: 0.03592344074637341, Val Loss: 0.04366774032158511 +2024-07-22 23:02:06.957 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 4/50, Train Loss: 0.03613432334642187, Val Loss: 0.04308317585715226 +2024-07-22 23:02:13.350 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 5/50, Train Loss: 0.035808095855892993, Val Loss: 0.0435895636677742 +2024-07-22 23:02:13.350 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:02:13.350 No tasks are waiting in the queue. +2024-07-22 23:02:13.350 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 23:02:19.735 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 6/50, Train Loss: 0.03599994210191339, Val Loss: 0.04236560905618327 +2024-07-22 23:02:26.184 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 7/50, Train Loss: 0.035565704294889096, Val Loss: 0.04354264172060149 +2024-07-22 23:02:32.579 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 8/50, Train Loss: 0.03592917601839244, Val Loss: 0.04302945898047515 +2024-07-22 23:02:38.946 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 9/50, Train Loss: 0.03566661483789091, Val Loss: 0.042363042224730765 +2024-07-22 23:02:45.321 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 10/50, Train Loss: 0.035517857403313514, Val Loss: 0.042768394414867676 +2024-07-22 23:02:51.671 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 11/50, Train Loss: 0.035489266188882235, Val Loss: 0.04313265133116927 +2024-07-22 23:02:58.071 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 12/50, Train Loss: 0.03563990548467465, Val Loss: 0.043202703233276095 +2024-07-22 23:03:04.461 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 13/50, Train Loss: 0.03531105650200261, Val Loss: 0.044642577905740055 +2024-07-22 23:03:10.817 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 14/50, Train Loss: 0.035570586582632374, Val Loss: 0.0423524913511106 +2024-07-22 23:03:17.194 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 15/50, Train Loss: 0.03512096816419269, Val Loss: 0.04379383682140282 +2024-07-22 23:03:23.600 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 16/50, Train Loss: 0.03533845926842672, Val Loss: 0.04225238135882786 +2024-07-22 23:03:29.970 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 17/50, Train Loss: 0.03507652145763524, Val Loss: 0.042356650531291964 +2024-07-22 23:03:36.416 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 18/50, Train Loss: 0.03508124308888432, Val Loss: 0.043618049898317884 +2024-07-22 23:03:42.801 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 19/50, Train Loss: 0.035072733896027365, Val Loss: 0.043253274421606744 +2024-07-22 23:03:49.221 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 20/50, Train Loss: 0.03514848232751699, Val Loss: 0.04285851355109896 +2024-07-22 23:03:55.592 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 21/50, Train Loss: 0.03505125998271455, Val Loss: 0.04233632683753967 +2024-07-22 23:04:01.953 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 22/50, Train Loss: 0.035159203056380046, Val Loss: 0.04271462128630706 +2024-07-22 23:04:08.328 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 23/50, Train Loss: 0.034868209039886223, Val Loss: 0.042641934539590566 +2024-07-22 23:04:14.710 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 24/50, Train Loss: 0.03509451593640897, Val Loss: 0.04243529641202518 +2024-07-22 23:04:21.147 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 25/50, Train Loss: 0.03475065313601237, Val Loss: 0.04213879534176418 +2024-07-22 23:04:27.538 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 26/50, Train Loss: 0.034721204783204646, Val Loss: 0.04159941055944988 +2024-07-22 23:04:33.909 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 27/50, Train Loss: 0.03485177734719335, Val Loss: 0.04229704248053687 +2024-07-22 23:04:40.316 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 28/50, Train Loss: 0.034772727986891495, Val Loss: 0.0415714005274432 +2024-07-22 23:04:46.678 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 29/50, Train Loss: 0.03497311179425648, Val Loss: 0.04171802609094551 +2024-07-22 23:04:53.022 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 30/50, Train Loss: 0.034710310386131996, Val Loss: 0.04183070579809802 +2024-07-22 23:04:59.407 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 31/50, Train Loss: 0.034648895357474147, Val Loss: 0.04188235769314425 +2024-07-22 23:05:05.828 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 32/50, Train Loss: 0.03490442683478054, Val Loss: 0.04268402803157057 +2024-07-22 23:05:12.219 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 33/50, Train Loss: 0.034736811726106154, Val Loss: 0.04196803186620985 +2024-07-22 23:05:18.614 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 34/50, Train Loss: 0.034907049439150656, Val Loss: 0.040496814676693506 +2024-07-22 23:05:25.034 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 35/50, Train Loss: 0.03478089433243806, Val Loss: 0.041611649468541144 +2024-07-22 23:05:31.418 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 36/50, Train Loss: 0.03477374757740566, Val Loss: 0.040973748213478496 +2024-07-22 23:05:37.817 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 37/50, Train Loss: 0.03478993401735378, Val Loss: 0.04085526540875435 +2024-07-22 23:05:44.277 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 38/50, Train Loss: 0.03482541801046125, Val Loss: 0.04190541197146688 +2024-07-22 23:05:50.647 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 39/50, Train Loss: 0.0344469852665131, Val Loss: 0.04117461411016328 +2024-07-22 23:05:57.028 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 40/50, Train Loss: 0.03440932996517463, Val Loss: 0.04135409700019019 +2024-07-22 23:06:03.428 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 41/50, Train Loss: 0.034715233451063685, Val Loss: 0.04157194010913372 +2024-07-22 23:06:09.817 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 42/50, Train Loss: 0.03473799409036585, Val Loss: 0.04168800179447447 +2024-07-22 23:06:16.247 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 43/50, Train Loss: 0.03464812683544571, Val Loss: 0.04101217027221407 +2024-07-22 23:06:22.652 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 44/50, Train Loss: 0.034375507505141574, Val Loss: 0.041000400696481976 +2024-07-22 23:06:29.119 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 45/50, Train Loss: 0.034422467817827096, Val Loss: 0.0407430357166699 +2024-07-22 23:06:35.558 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 46/50, Train Loss: 0.03433913304704985, Val Loss: 0.04204192129628999 +2024-07-22 23:06:41.996 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 47/50, Train Loss: 0.03424115921203181, Val Loss: 0.041547271715743204 +2024-07-22 23:06:48.440 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 48/50, Train Loss: 0.0341519581408595, Val Loss: 0.04184306710958481 +2024-07-22 23:06:54.883 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 49/50, Train Loss: 0.034071584024446475, Val Loss: 0.04112110755273274 +2024-07-22 23:07:01.317 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 50/50, Train Loss: 0.033888312170563414, Val Loss: 0.0414448191012655 +2024-07-22 23:07:01.317 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Fold 3, MAPE: 3.89% +2024-07-22 23:07:01.425 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_100001_200000_LSTM//train_f3_bgd_education_100001_200000_LSTM.png +2024-07-22 23:07:09.324 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 1/50, Train Loss: 0.0327660137808871, Val Loss: 0.03770779834261962 +2024-07-22 23:07:17.216 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 2/50, Train Loss: 0.03340058196764225, Val Loss: 0.037529511377215385 +2024-07-22 23:07:17.216 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:07:17.216 No tasks are waiting in the queue. +2024-07-22 23:07:17.216 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 23:07:25.148 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 3/50, Train Loss: 0.03356473416025783, Val Loss: 0.037309247787509645 +2024-07-22 23:07:33.040 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 4/50, Train Loss: 0.03359000228516672, Val Loss: 0.0374959940889052 +2024-07-22 23:07:40.971 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 5/50, Train Loss: 0.03330588350928892, Val Loss: 0.037409062843237605 +2024-07-22 23:07:48.877 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 6/50, Train Loss: 0.0332231098068771, Val Loss: 0.03726787332977567 +2024-07-22 23:07:56.792 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 7/50, Train Loss: 0.033211261215994416, Val Loss: 0.0374316472027983 +2024-07-22 23:08:04.682 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 8/50, Train Loss: 0.03309370285092757, Val Loss: 0.037352581481848446 +2024-07-22 23:08:12.646 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 9/50, Train Loss: 0.03308981227763425, Val Loss: 0.03723639941641262 +2024-07-22 23:08:20.567 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 10/50, Train Loss: 0.03299942928441297, Val Loss: 0.03707539652075086 +2024-07-22 23:08:28.464 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 11/50, Train Loss: 0.03307779135460826, Val Loss: 0.03736449112849576 +2024-07-22 23:08:36.359 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 12/50, Train Loss: 0.032996634674397694, Val Loss: 0.0372108557926757 +2024-07-22 23:08:44.279 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 13/50, Train Loss: 0.03279306910846425, Val Loss: 0.0370618177311761 +2024-07-22 23:08:52.213 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 14/50, Train Loss: 0.03263338543902868, Val Loss: 0.03710555423583303 +2024-07-22 23:09:00.169 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 15/50, Train Loss: 0.03288968656768744, Val Loss: 0.037117358509983336 +2024-07-22 23:09:08.104 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 16/50, Train Loss: 0.03270517362431548, Val Loss: 0.03687117701130254 +2024-07-22 23:09:16.057 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 17/50, Train Loss: 0.0327760075036993, Val Loss: 0.03673465214669704 +2024-07-22 23:09:24.009 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 18/50, Train Loss: 0.032274754835699485, Val Loss: 0.036757465824484824 +2024-07-22 23:09:31.955 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 19/50, Train Loss: 0.03265999349626316, Val Loss: 0.0370995258646352 +2024-07-22 23:09:39.921 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 20/50, Train Loss: 0.03246423996042931, Val Loss: 0.037038433498569896 +2024-07-22 23:09:47.843 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 21/50, Train Loss: 0.03236298948183827, Val Loss: 0.03667700673852648 +2024-07-22 23:09:55.794 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 22/50, Train Loss: 0.03236128140947428, Val Loss: 0.03685222933334964 +2024-07-22 23:10:03.741 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 23/50, Train Loss: 0.03262812782335898, Val Loss: 0.0366101755627564 +2024-07-22 23:10:11.709 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 24/50, Train Loss: 0.032734230952872624, Val Loss: 0.03687864728271961 +2024-07-22 23:10:19.680 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 25/50, Train Loss: 0.03253410943922983, Val Loss: 0.03714971962784018 +2024-07-22 23:10:27.661 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 26/50, Train Loss: 0.03240962890137372, Val Loss: 0.03692837032888617 +2024-07-22 23:10:35.628 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 27/50, Train Loss: 0.03235989576740854, Val Loss: 0.03652392881257194 +2024-07-22 23:10:43.561 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 28/50, Train Loss: 0.03226458784406898, Val Loss: 0.036577564531138966 +2024-07-22 23:10:51.537 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 29/50, Train Loss: 0.03224696771338068, Val Loss: 0.03695375914020198 +2024-07-22 23:10:59.607 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 30/50, Train Loss: 0.032379637375987806, Val Loss: 0.03628644427018506 +2024-07-22 23:11:07.632 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 31/50, Train Loss: 0.03219889395538418, Val Loss: 0.03660346610205514 +2024-07-22 23:11:15.675 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 32/50, Train Loss: 0.032143064100166846, Val Loss: 0.03648373979542937 +2024-07-22 23:11:23.732 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 33/50, Train Loss: 0.03207461645120177, Val Loss: 0.03634240733725684 +2024-07-22 23:11:31.758 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 34/50, Train Loss: 0.03211809199132111, Val Loss: 0.03646971966539111 +2024-07-22 23:11:39.895 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 35/50, Train Loss: 0.03217346008181914, Val Loss: 0.036524963059595655 +2024-07-22 23:11:47.977 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 36/50, Train Loss: 0.03212858835534974, Val Loss: 0.03682753544832979 +2024-07-22 23:11:56.063 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 37/50, Train Loss: 0.03230174156655183, Val Loss: 0.03655032818870885 +2024-07-22 23:12:04.180 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 38/50, Train Loss: 0.03192040830550865, Val Loss: 0.03619904087058135 +2024-07-22 23:12:12.184 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 39/50, Train Loss: 0.03209691586765064, Val Loss: 0.03712307938507625 +2024-07-22 23:12:20.319 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 40/50, Train Loss: 0.03206456787670138, Val Loss: 0.03646235322313649 +2024-07-22 23:12:20.319 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:12:20.319 No tasks are waiting in the queue. +2024-07-22 23:12:20.319 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 23:12:28.409 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 41/50, Train Loss: 0.031899956162034095, Val Loss: 0.036565032548138074 +2024-07-22 23:12:36.456 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 42/50, Train Loss: 0.03211891626532393, Val Loss: 0.03613007616783891 +2024-07-22 23:12:44.543 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 43/50, Train Loss: 0.032114151319296194, Val Loss: 0.03629956687135356 +2024-07-22 23:12:52.608 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 44/50, Train Loss: 0.032001098949761914, Val Loss: 0.03639864644833973 +2024-07-22 23:13:00.730 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 45/50, Train Loss: 0.03224488065160554, Val Loss: 0.03655561666403498 +2024-07-22 23:13:08.795 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 46/50, Train Loss: 0.03220062759629954, Val Loss: 0.03701041724000658 +2024-07-22 23:13:16.824 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 47/50, Train Loss: 0.03216264402258328, Val Loss: 0.036629470331328254 +2024-07-22 23:13:24.909 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 48/50, Train Loss: 0.0320576818702721, Val Loss: 0.036729418113827704 +2024-07-22 23:13:33.026 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 49/50, Train Loss: 0.03197341174658003, Val Loss: 0.036513652758938926 +2024-07-22 23:13:41.174 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Epoch 50/50, Train Loss: 0.032135657570057215, Val Loss: 0.03660748755293233 +2024-07-22 23:13:41.175 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Fold 4, MAPE: 3.54% +2024-07-22 23:13:41.284 [40/cross_validate_train/387 (pid 17756)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_100001_200000_LSTM//train_f4_bgd_education_100001_200000_LSTM.png +2024-07-22 23:13:45.875 [40/cross_validate_train/387 (pid 17756)] Task finished successfully. +2024-07-22 23:13:45.907 [40/model_scores/388 (pid 22688)] Task is starting. +2024-07-22 23:13:47.381 [40/model_scores/388 (pid 22688)] INFO:__main__:Average Train Loss across all folds: 0.03926383282974597 +2024-07-22 23:13:51.416 [40/model_scores/388 (pid 22688)] INFO:__main__:Average Validation Loss across all folds: 0.0471512690612248 +2024-07-22 23:13:51.416 [40/model_scores/388 (pid 22688)] INFO:__main__:Average MAPE across all folds: 3.89% +2024-07-22 23:13:51.417 [40/model_scores/388 (pid 22688)] Task finished successfully. +2024-07-22 23:13:51.451 [40/validate_model/389 (pid 22722)] Task is starting. +2024-07-22 23:13:52.968 [40/validate_model/389 (pid 22722)] INFO:__main__:Validating LSTM on test set.. +2024-07-22 23:13:53.708 [40/validate_model/389 (pid 22722)] INFO:__main__:Test Set MAPE: 3.42% +2024-07-22 23:13:54.070 [40/validate_model/389 (pid 22722)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_education_100001_200000_LSTM//test_bgd_education_100001_200000_LSTM.png +2024-07-22 23:13:54.529 [40/validate_model/389 (pid 22722)] Task finished successfully. +2024-07-22 23:13:54.557 [40/log_model/390 (pid 22735)] Task is starting. +2024-07-22 23:13:56.079 [40/log_model/390 (pid 22735)] INFO:__main__:Logging model bgd_education_100001_200000_LSTM +2024-07-22 23:13:56.080 [40/log_model/390 (pid 22735)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_education_100001_200000_LSTM//bgd_education_100001_200000_LSTM.pth +2024-07-22 23:14:00.068 [40/log_model/390 (pid 22735)] Task finished successfully. +2024-07-22 23:14:00.100 [40/end/391 (pid 22767)] Task is starting. +2024-07-22 23:14:01.557 [40/end/391 (pid 22767)] INFO:__main__:Pipeline end. +2024-07-22 23:14:01.871 [40/end/391 (pid 22767)] Task finished successfully. +2024-07-22 23:14:01.871 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/scaler_bgd_education_100001_200000_LSTM.pkl b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/scaler_bgd_education_100001_200000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..527b937f64d5dd84b14de8d6544e8225ac54c329 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/scaler_bgd_education_100001_200000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7183b75b48c021f2f11eab06e4465438daad3d6b0e3b05d47c2784c29bb8625 +size 557 diff --git a/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/test_bgd_education_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/test_bgd_education_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..75d10fd0d3964fa84b1a7984f2ba43260b4f8e79 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/test_bgd_education_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f0_bgd_education_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f0_bgd_education_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb3a5a79c50419ff4c13540a151751149784d7a Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f0_bgd_education_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f1_bgd_education_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f1_bgd_education_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..a4885d6869f364d7f7e19afc5580fd5d39c720d8 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f1_bgd_education_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f2_bgd_education_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f2_bgd_education_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..e88cbf924298ded929b763d8875c22dad209e9e9 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f2_bgd_education_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f3_bgd_education_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f3_bgd_education_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..16160efeba773ffefb6f01c1bf14d04e31098fb3 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f3_bgd_education_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f4_bgd_education_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f4_bgd_education_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..7582adbbf305c78aea55eaca6a9644787ac1d1bb Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_100001_200000_LSTM/train_f4_bgd_education_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/bgd_education_10001_25000_LSTM.pth b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/bgd_education_10001_25000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..b91a1841cc48c88b4e881bf2c051f74052bcd761 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/bgd_education_10001_25000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdf1d966a0123d289a5bcebe8b3a87500a2d3babdf1c6d6b04732b476ac8061b +size 46766 diff --git a/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/output.txt b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..e67e4baa069052a7180a8d96abdae70130f84176 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/output.txt @@ -0,0 +1,773 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-23 00:52:25.830 Workflow starting (run-id 45): +2024-07-23 00:52:25.908 [45/start/449 (pid 42495)] Task is starting. +2024-07-23 00:52:27.383 [45/start/449 (pid 42495)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 00:52:27.676 [45/start/449 (pid 42495)] Task finished successfully. +2024-07-23 00:52:27.709 [45/ingest/450 (pid 42506)] Task is starting. +2024-07-23 00:52:29.175 [45/ingest/450 (pid 42506)] INFO:__main__:Fetching dataframe.. +2024-07-23 00:52:29.192 [45/ingest/450 (pid 42506)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 00:52:33.026 [45/ingest/450 (pid 42506)] Task finished successfully. +2024-07-23 00:52:33.059 [45/pick_2017_data/451 (pid 42532)] Task is starting. +2024-07-23 00:52:34.491 [45/pick_2017_data/451 (pid 42532)] INFO:__main__:Picking 2017 data.. +2024-07-23 00:52:34.791 [45/pick_2017_data/451 (pid 42532)] Task finished successfully. +2024-07-23 00:52:34.822 [45/fill_missing_data/452 (pid 42543)] Task is starting. +2024-07-23 00:52:36.296 [45/fill_missing_data/452 (pid 42543)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 00:52:36.302 [45/fill_missing_data/452 (pid 42543)] INFO:__main__:NaN counts per column: +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] INFO:__main__:Panther_education_Janis 13 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] Panther_education_Diann 13 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] Panther_education_Cleopatra 12 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] Robin_education_Lizbeth 0 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] Robin_education_Cecilia 0 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] Robin_education_Takako 0 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] Fox_education_Melvin 91 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] dtype: int64 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] --- Logging error --- +2024-07-23 00:52:36.304 [45/fill_missing_data/452 (pid 42543)] Traceback (most recent call last): +2024-07-23 00:52:36.304 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] msg = self.format(record) +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] return fmt.format(record) +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] record.message = record.getMessage() +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] msg = msg % self.args +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] TypeError: not all arguments converted during string formatting +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] Call stack: +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 00:52:36.678 [45/fill_missing_data/452 (pid 42543)] BGD_LinearFlow() +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] cli.main(self) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] return func(*args, **kwargs) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] return self.main(*args, **kwargs) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] rv = self.invoke(ctx) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] return callback(*args, **kwargs) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] return f(get_current_context(), *args, **kwargs) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] task.run_step( +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] self._exec_step_function(step_func) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] step_function() +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] self.missing_values = find_nan_counts(self.df) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] Arguments: (129,) +2024-07-23 00:52:36.680 [45/fill_missing_data/452 (pid 42543)] Task finished successfully. +2024-07-23 00:52:36.707 [45/find_median/453 (pid 42555)] Task is starting. +2024-07-23 00:52:38.146 [45/find_median/453 (pid 42555)] INFO:__main__:Computing and using median.. +2024-07-23 00:52:38.646 [45/find_median/453 (pid 42555)] Task finished successfully. +2024-07-23 00:52:38.672 [45/aggregate_data/454 (pid 42568)] Task is starting. +2024-07-23 00:52:40.102 [45/aggregate_data/454 (pid 42568)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 00:52:43.902 [45/aggregate_data/454 (pid 42568)] Task finished successfully. +2024-07-23 00:52:43.933 [45/split_data/455 (pid 42600)] Task is starting. +2024-07-23 00:52:45.382 [45/split_data/455 (pid 42600)] INFO:__main__:Splitting data into test and train... +2024-07-23 00:52:49.213 [45/split_data/455 (pid 42600)] Task finished successfully. +2024-07-23 00:52:49.242 [45/make_x_y/456 (pid 42626)] Task is starting. +2024-07-23 00:52:51.040 [45/make_x_y/456 (pid 42626)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 00:52:51.420 [45/make_x_y/456 (pid 42626)] Shape of y_train: (6648, 1) +2024-07-23 00:52:51.420 [45/make_x_y/456 (pid 42626)] Shape of X_test: (1392, 360, 1) +2024-07-23 00:52:51.420 [45/make_x_y/456 (pid 42626)] Shape of y_test: (1392, 1) +2024-07-23 00:52:51.421 [45/make_x_y/456 (pid 42626)] Task finished successfully. +2024-07-23 00:52:51.451 [45/cross_validate_train/457 (pid 42637)] Task is starting. +2024-07-23 00:52:52.889 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Creating bgd_education_10001_25000_LSTM +2024-07-23 00:52:52.889 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Performing cross validation.. +2024-07-23 00:52:55.333 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 1/50, Train Loss: 0.2742498242429325, Val Loss: 0.14981632509401865 +2024-07-23 00:52:57.219 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 2/50, Train Loss: 0.1927961160029684, Val Loss: 0.12341376819780894 +2024-07-23 00:52:59.100 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 3/50, Train Loss: 0.16590243173497063, Val Loss: 0.1061523654631206 +2024-07-23 00:53:01.020 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 4/50, Train Loss: 0.1225645763533456, Val Loss: 0.08300029401268277 +2024-07-23 00:53:02.928 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 5/50, Train Loss: 0.10553079204899925, Val Loss: 0.0738789184817246 +2024-07-23 00:53:04.834 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 6/50, Train Loss: 0.10183924936822482, Val Loss: 0.07069527368460382 +2024-07-23 00:53:06.732 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 7/50, Train Loss: 0.09918497641171728, Val Loss: 0.07003099258456912 +2024-07-23 00:53:08.654 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 8/50, Train Loss: 0.09648231182779585, Val Loss: 0.06725220094834056 +2024-07-23 00:53:10.557 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 9/50, Train Loss: 0.09393054246902466, Val Loss: 0.06358396634459496 +2024-07-23 00:53:12.468 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 10/50, Train Loss: 0.09090719244309835, Val Loss: 0.058556802251509256 +2024-07-23 00:53:14.369 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 11/50, Train Loss: 0.08774043555770601, Val Loss: 0.054735121130943296 +2024-07-23 00:53:16.290 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 12/50, Train Loss: 0.08500197987471309, Val Loss: 0.05257592041577611 +2024-07-23 00:53:18.219 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 13/50, Train Loss: 0.08260354708348001, Val Loss: 0.05762656841959272 +2024-07-23 00:53:20.141 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 14/50, Train Loss: 0.08145126562033381, Val Loss: 0.05980594498770578 +2024-07-23 00:53:22.079 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 15/50, Train Loss: 0.08040611892938614, Val Loss: 0.060752142327172416 +2024-07-23 00:53:24.003 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 16/50, Train Loss: 0.07910525149532727, Val Loss: 0.05762568611119475 +2024-07-23 00:53:25.942 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 17/50, Train Loss: 0.07785626011235373, Val Loss: 0.06268025828259331 +2024-07-23 00:53:27.881 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 18/50, Train Loss: 0.07722814993134566, Val Loss: 0.054772559127637316 +2024-07-23 00:53:29.834 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 19/50, Train Loss: 0.07597860933414527, Val Loss: 0.05765705992068563 +2024-07-23 00:53:31.784 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 20/50, Train Loss: 0.07561368644237518, Val Loss: 0.04947747444467885 +2024-07-23 00:53:33.733 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 21/50, Train Loss: 0.07564851098826954, Val Loss: 0.06328872633831842 +2024-07-23 00:53:35.664 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 22/50, Train Loss: 0.07418848595448903, Val Loss: 0.05238516575523785 +2024-07-23 00:53:37.617 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 23/50, Train Loss: 0.0731627218425274, Val Loss: 0.049458163976669314 +2024-07-23 00:53:39.577 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 24/50, Train Loss: 0.07307468626116004, Val Loss: 0.050710594121898926 +2024-07-23 00:53:41.542 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 25/50, Train Loss: 0.0722153966980321, Val Loss: 0.05166670445884977 +2024-07-23 00:53:43.527 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 26/50, Train Loss: 0.0731568272624697, Val Loss: 0.05372377293450492 +2024-07-23 00:53:45.479 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 27/50, Train Loss: 0.07302996585411685, Val Loss: 0.05158262566796371 +2024-07-23 00:53:47.438 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 28/50, Train Loss: 0.07120498482670103, Val Loss: 0.05220412580030305 +2024-07-23 00:53:49.401 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 29/50, Train Loss: 0.07111140941934926, Val Loss: 0.052527467533946035 +2024-07-23 00:53:51.389 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 30/50, Train Loss: 0.0702713279319661, Val Loss: 0.053371841087937355 +2024-07-23 00:53:53.330 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 31/50, Train Loss: 0.07073943944914, Val Loss: 0.05016407274774143 +2024-07-23 00:53:55.287 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 32/50, Train Loss: 0.07063717682446752, Val Loss: 0.05285714683788163 +2024-07-23 00:53:57.241 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 33/50, Train Loss: 0.07082017085381917, Val Loss: 0.05142665058374405 +2024-07-23 00:53:59.202 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 34/50, Train Loss: 0.070141419715115, Val Loss: 0.05175628944167069 +2024-07-23 00:54:01.182 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 35/50, Train Loss: 0.07075057269207069, Val Loss: 0.05120695648448808 +2024-07-23 00:54:03.131 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 36/50, Train Loss: 0.06991532503494195, Val Loss: 0.05095589735678264 +2024-07-23 00:54:05.081 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 37/50, Train Loss: 0.06997715745653425, Val Loss: 0.04931220822036266 +2024-07-23 00:54:07.036 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 38/50, Train Loss: 0.07002505484436239, Val Loss: 0.049278124634708674 +2024-07-23 00:54:08.999 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 39/50, Train Loss: 0.06923612750002316, Val Loss: 0.05008379263537271 +2024-07-23 00:54:10.986 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 40/50, Train Loss: 0.06929227661873613, Val Loss: 0.04979824668594769 +2024-07-23 00:54:12.951 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 41/50, Train Loss: 0.06905109765274184, Val Loss: 0.04954189801854747 +2024-07-23 00:54:14.916 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 42/50, Train Loss: 0.06843298950365612, Val Loss: 0.048929829842277936 +2024-07-23 00:54:16.903 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 43/50, Train Loss: 0.06763870162623269, Val Loss: 0.04739284068346024 +2024-07-23 00:54:18.878 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 44/50, Train Loss: 0.06862997960831438, Val Loss: 0.04832689820655755 +2024-07-23 00:54:20.840 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 45/50, Train Loss: 0.06879466415515968, Val Loss: 0.04675206659095628 +2024-07-23 00:54:22.818 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 46/50, Train Loss: 0.06850098339574677, Val Loss: 0.047711606696248056 +2024-07-23 00:54:24.773 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 47/50, Train Loss: 0.06819461328642709, Val Loss: 0.04659286082855293 +2024-07-23 00:54:26.742 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 48/50, Train Loss: 0.06759799341005938, Val Loss: 0.0462062523833343 +2024-07-23 00:54:28.702 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 49/50, Train Loss: 0.06769145035317965, Val Loss: 0.044231301013912476 +2024-07-23 00:54:30.668 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 50/50, Train Loss: 0.06679273785224983, Val Loss: 0.04617991474057947 +2024-07-23 00:54:30.668 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Fold 0, MAPE: 9.07% +2024-07-23 00:54:30.955 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_10001_25000_LSTM//train_f0_bgd_education_10001_25000_LSTM.png +2024-07-23 00:54:34.432 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 1/50, Train Loss: 0.050436495537204404, Val Loss: 0.04753168315759727 +2024-07-23 00:54:37.836 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 2/50, Train Loss: 0.0498606463894248, Val Loss: 0.04528055547603539 +2024-07-23 00:54:41.261 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 3/50, Train Loss: 0.04996283727564982, Val Loss: 0.0459914531558752 +2024-07-23 00:54:44.711 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 4/50, Train Loss: 0.05049619733222893, Val Loss: 0.045287280529737475 +2024-07-23 00:54:48.125 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 5/50, Train Loss: 0.050306548470897335, Val Loss: 0.04585141230906759 +2024-07-23 00:54:51.583 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 6/50, Train Loss: 0.050265369165156566, Val Loss: 0.046278295506324084 +2024-07-23 00:54:54.982 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 7/50, Train Loss: 0.04992741359663861, Val Loss: 0.04643704763480595 +2024-07-23 00:54:58.435 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 8/50, Train Loss: 0.0493812315964273, Val Loss: 0.045198359553303036 +2024-07-23 00:55:01.911 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 9/50, Train Loss: 0.049478110830698696, Val Loss: 0.04556171340601785 +2024-07-23 00:55:05.326 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 10/50, Train Loss: 0.04935910970504795, Val Loss: 0.046057494463665145 +2024-07-23 00:55:08.722 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 11/50, Train Loss: 0.04958147297480277, Val Loss: 0.04638226112084729 +2024-07-23 00:55:12.172 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 12/50, Train Loss: 0.04929779621639422, Val Loss: 0.046232452296784944 +2024-07-23 00:55:15.575 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 13/50, Train Loss: 0.049429116318268435, Val Loss: 0.04650677219033241 +2024-07-23 00:55:19.059 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 14/50, Train Loss: 0.04922556116112641, Val Loss: 0.045976025398288455 +2024-07-23 00:55:22.500 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 15/50, Train Loss: 0.04895559261952128, Val Loss: 0.04635446114199502 +2024-07-23 00:55:25.898 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 16/50, Train Loss: 0.04941495654306242, Val Loss: 0.04644906063164984 +2024-07-23 00:55:29.309 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 17/50, Train Loss: 0.048902816910828865, Val Loss: 0.04593551605939865 +2024-07-23 00:55:32.737 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 18/50, Train Loss: 0.04873398199145283, Val Loss: 0.04574159697762557 +2024-07-23 00:55:36.128 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 19/50, Train Loss: 0.048642638698220254, Val Loss: 0.04685032170798097 +2024-07-23 00:55:39.540 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 20/50, Train Loss: 0.04911893433226006, Val Loss: 0.046212215987699375 +2024-07-23 00:55:42.940 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 21/50, Train Loss: 0.04868716930172273, Val Loss: 0.04538930154272488 +2024-07-23 00:55:46.328 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 22/50, Train Loss: 0.04846084431878158, Val Loss: 0.04563657125192029 +2024-07-23 00:55:49.732 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 23/50, Train Loss: 0.04903509579598904, Val Loss: 0.0459544625133276 +2024-07-23 00:55:53.151 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 24/50, Train Loss: 0.04863889935825552, Val Loss: 0.04515314852552754 +2024-07-23 00:55:56.572 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 25/50, Train Loss: 0.0485505203849503, Val Loss: 0.04546924201505525 +2024-07-23 00:55:59.958 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 26/50, Train Loss: 0.04834953921713999, Val Loss: 0.046480755028980116 +2024-07-23 00:56:03.364 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 27/50, Train Loss: 0.048276394020233836, Val Loss: 0.045557322991745815 +2024-07-23 00:56:06.764 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 28/50, Train Loss: 0.04833293857851199, Val Loss: 0.04533875302544662 +2024-07-23 00:56:10.146 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 29/50, Train Loss: 0.048210086354187554, Val Loss: 0.04514821618795395 +2024-07-23 00:56:13.528 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 30/50, Train Loss: 0.048499406235558644, Val Loss: 0.04452250711619854 +2024-07-23 00:56:16.906 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 31/50, Train Loss: 0.047860605455935, Val Loss: 0.04463467959846769 +2024-07-23 00:56:20.306 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 32/50, Train Loss: 0.04794613591262272, Val Loss: 0.0443013571202755 +2024-07-23 00:56:23.690 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 33/50, Train Loss: 0.047941371319549425, Val Loss: 0.04480058172983783 +2024-07-23 00:56:27.077 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 34/50, Train Loss: 0.048113507271877354, Val Loss: 0.0441423662006855 +2024-07-23 00:56:30.465 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 35/50, Train Loss: 0.048027105469788826, Val Loss: 0.044157218347702705 +2024-07-23 00:56:33.872 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 36/50, Train Loss: 0.048176274608288494, Val Loss: 0.044376468339136665 +2024-07-23 00:56:37.277 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 37/50, Train Loss: 0.04848030241472381, Val Loss: 0.04483052917889186 +2024-07-23 00:56:40.678 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 38/50, Train Loss: 0.04808220690382378, Val Loss: 0.04441698060504028 +2024-07-23 00:56:44.085 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 39/50, Train Loss: 0.04761285425296852, Val Loss: 0.044021529917206086 +2024-07-23 00:56:47.471 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 40/50, Train Loss: 0.0478300240156906, Val Loss: 0.04393901154398918 +2024-07-23 00:56:50.885 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 41/50, Train Loss: 0.04781910276838711, Val Loss: 0.044451323790209635 +2024-07-23 00:56:54.305 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 42/50, Train Loss: 0.04785116147249937, Val Loss: 0.04408333152532577 +2024-07-23 00:56:57.726 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 43/50, Train Loss: 0.047956587533865655, Val Loss: 0.04476764819451741 +2024-07-23 00:57:01.159 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 44/50, Train Loss: 0.04784979711153677, Val Loss: 0.04435501332793917 +2024-07-23 00:57:04.572 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 45/50, Train Loss: 0.04809859746268817, Val Loss: 0.04459266034620149 +2024-07-23 00:57:07.971 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 46/50, Train Loss: 0.04792746497052056, Val Loss: 0.04478750180985246 +2024-07-23 00:57:11.389 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 47/50, Train Loss: 0.04751101737575872, Val Loss: 0.04463599467916148 +2024-07-23 00:57:14.813 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 48/50, Train Loss: 0.047348296642303465, Val Loss: 0.04504764122622354 +2024-07-23 00:57:18.200 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 49/50, Train Loss: 0.04754456654191017, Val Loss: 0.044812559389642306 +2024-07-23 00:57:21.627 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 50/50, Train Loss: 0.0472435292920896, Val Loss: 0.04434594538594995 +2024-07-23 00:57:21.628 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Fold 1, MAPE: 9.94% +2024-07-23 00:57:21.733 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_10001_25000_LSTM//train_f1_bgd_education_10001_25000_LSTM.png +2024-07-23 00:57:26.633 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 1/50, Train Loss: 0.042782419683555, Val Loss: 0.04807568783206599 +2024-07-23 00:57:26.633 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:57:26.633 No tasks are waiting in the queue. +2024-07-23 00:57:26.633 4 steps have not started: log_model, model_scores, end, validate_model. +2024-07-23 00:57:31.472 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 2/50, Train Loss: 0.042850045290274114, Val Loss: 0.0489625483751297 +2024-07-23 00:57:36.306 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 3/50, Train Loss: 0.04295843596068712, Val Loss: 0.04953178811286177 +2024-07-23 00:57:41.211 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 4/50, Train Loss: 0.043092007659232386, Val Loss: 0.04857517635183675 +2024-07-23 00:57:46.058 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 5/50, Train Loss: 0.042783362038720116, Val Loss: 0.04961144014128617 +2024-07-23 00:57:50.904 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 6/50, Train Loss: 0.04284397904904416, Val Loss: 0.048345883722816195 +2024-07-23 00:57:55.795 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 7/50, Train Loss: 0.04281889109943922, Val Loss: 0.04864982105791569 +2024-07-23 00:58:00.649 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 8/50, Train Loss: 0.04270466449312293, Val Loss: 0.04781588044549737 +2024-07-23 00:58:05.508 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 9/50, Train Loss: 0.04270033866095428, Val Loss: 0.04829323600445475 +2024-07-23 00:58:10.377 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 10/50, Train Loss: 0.0426479357187278, Val Loss: 0.047751236600535256 +2024-07-23 00:58:15.269 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 11/50, Train Loss: 0.04255337216174947, Val Loss: 0.04771060650902135 +2024-07-23 00:58:20.117 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 12/50, Train Loss: 0.04262992583859999, Val Loss: 0.048544909751841 +2024-07-23 00:58:24.992 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 13/50, Train Loss: 0.04214328283873888, Val Loss: 0.04932210168668202 +2024-07-23 00:58:29.932 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 14/50, Train Loss: 0.04258453281811224, Val Loss: 0.04798815436661243 +2024-07-23 00:58:34.791 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 15/50, Train Loss: 0.042304900636036806, Val Loss: 0.04818075895309448 +2024-07-23 00:58:39.645 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 16/50, Train Loss: 0.04237449002595475, Val Loss: 0.04750055692025593 +2024-07-23 00:58:44.534 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 17/50, Train Loss: 0.0424131928369976, Val Loss: 0.04905632697045803 +2024-07-23 00:58:49.397 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 18/50, Train Loss: 0.042048178774376326, Val Loss: 0.049133631640246936 +2024-07-23 00:58:54.269 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 19/50, Train Loss: 0.04223630117037548, Val Loss: 0.04708261543086597 +2024-07-23 00:58:59.126 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 20/50, Train Loss: 0.042188651429919094, Val Loss: 0.04857780044632298 +2024-07-23 00:59:03.990 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 21/50, Train Loss: 0.04209438874386251, Val Loss: 0.048346205321805814 +2024-07-23 00:59:08.849 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 22/50, Train Loss: 0.0421341172634409, Val Loss: 0.048517641850880214 +2024-07-23 00:59:13.733 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 23/50, Train Loss: 0.0419776351012003, Val Loss: 0.04735629521310329 +2024-07-23 00:59:18.625 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 24/50, Train Loss: 0.042203685823971264, Val Loss: 0.047641956486872264 +2024-07-23 00:59:23.503 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 25/50, Train Loss: 0.04189306793089669, Val Loss: 0.04808366841503552 +2024-07-23 00:59:28.362 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 26/50, Train Loss: 0.04191071617130477, Val Loss: 0.04887852163187095 +2024-07-23 00:59:33.245 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 27/50, Train Loss: 0.04197455408911292, Val Loss: 0.047641818491475925 +2024-07-23 00:59:38.150 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 28/50, Train Loss: 0.04191352349992555, Val Loss: 0.04721706626670701 +2024-07-23 00:59:43.076 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 29/50, Train Loss: 0.04206318109152982, Val Loss: 0.04740581443267209 +2024-07-23 00:59:47.986 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 30/50, Train Loss: 0.04201230824065323, Val Loss: 0.04687431550451687 +2024-07-23 00:59:52.889 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 31/50, Train Loss: 0.04207293972229728, Val Loss: 0.04834118724933693 +2024-07-23 00:59:57.796 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 32/50, Train Loss: 0.04185533623855848, Val Loss: 0.047146442426102504 +2024-07-23 01:00:02.701 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 33/50, Train Loss: 0.04177865563318706, Val Loss: 0.04797964080103806 +2024-07-23 01:00:07.556 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 34/50, Train Loss: 0.0416349249247175, Val Loss: 0.04786436488585813 +2024-07-23 01:00:12.448 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 35/50, Train Loss: 0.04164800660398144, Val Loss: 0.04815390674131257 +2024-07-23 01:00:17.302 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 36/50, Train Loss: 0.04166410256248827, Val Loss: 0.046801262242453436 +2024-07-23 01:00:22.187 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 37/50, Train Loss: 0.04168705898337066, Val Loss: 0.0472988987075431 +2024-07-23 01:00:27.091 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 38/50, Train Loss: 0.04140605743472966, Val Loss: 0.04869560471602848 +2024-07-23 01:00:31.952 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 39/50, Train Loss: 0.041708130980483614, Val Loss: 0.04710710671331201 +2024-07-23 01:00:36.791 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 40/50, Train Loss: 0.04140352276870264, Val Loss: 0.047460112880383216 +2024-07-23 01:00:41.678 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 41/50, Train Loss: 0.04129835540572038, Val Loss: 0.046277002883808954 +2024-07-23 01:00:46.540 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 42/50, Train Loss: 0.04134287824854255, Val Loss: 0.047446497955492564 +2024-07-23 01:00:51.420 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 43/50, Train Loss: 0.04139549716805609, Val Loss: 0.0473619595170021 +2024-07-23 01:00:56.299 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 44/50, Train Loss: 0.041347859624343425, Val Loss: 0.046484094432422095 +2024-07-23 01:01:01.197 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 45/50, Train Loss: 0.04108574911235617, Val Loss: 0.047822041543466705 +2024-07-23 01:01:06.071 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 46/50, Train Loss: 0.04102615125548954, Val Loss: 0.04676231678043093 +2024-07-23 01:01:10.933 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 47/50, Train Loss: 0.04108887855321742, Val Loss: 0.046433350390621596 +2024-07-23 01:01:15.803 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 48/50, Train Loss: 0.041062992495986134, Val Loss: 0.04677935881274087 +2024-07-23 01:01:20.655 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 49/50, Train Loss: 0.04099689397172859, Val Loss: 0.046653759373085836 +2024-07-23 01:01:25.534 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 50/50, Train Loss: 0.04115279769310011, Val Loss: 0.04708787633904389 +2024-07-23 01:01:25.534 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Fold 2, MAPE: 9.58% +2024-07-23 01:01:25.643 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_10001_25000_LSTM//train_f2_bgd_education_10001_25000_LSTM.png +2024-07-23 01:01:32.034 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 1/50, Train Loss: 0.04147653568455641, Val Loss: 0.04742225600140435 +2024-07-23 01:01:38.380 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 2/50, Train Loss: 0.04188365486564396, Val Loss: 0.047041129107986177 +2024-07-23 01:01:44.721 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 3/50, Train Loss: 0.04161923366645686, Val Loss: 0.04716712640864509 +2024-07-23 01:01:51.074 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 4/50, Train Loss: 0.04171469932247838, Val Loss: 0.04702029622026852 +2024-07-23 01:01:57.412 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 5/50, Train Loss: 0.04165565871077476, Val Loss: 0.04691629047904696 +2024-07-23 01:02:03.757 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 6/50, Train Loss: 0.04144151266262257, Val Loss: 0.046925026391233714 +2024-07-23 01:02:10.167 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 7/50, Train Loss: 0.041623148062139105, Val Loss: 0.046585140111190936 +2024-07-23 01:02:16.531 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 8/50, Train Loss: 0.04147191152727003, Val Loss: 0.046907463403684756 +2024-07-23 01:02:22.868 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 9/50, Train Loss: 0.04144172174789065, Val Loss: 0.04702987133392266 +2024-07-23 01:02:29.187 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 10/50, Train Loss: 0.04167458567795136, Val Loss: 0.04726261597658907 +2024-07-23 01:02:29.188 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 01:02:29.188 No tasks are waiting in the queue. +2024-07-23 01:02:29.188 4 steps have not started: log_model, model_scores, end, validate_model. +2024-07-23 01:02:35.577 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 11/50, Train Loss: 0.04136173348043033, Val Loss: 0.04687401029680457 +2024-07-23 01:02:41.922 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 12/50, Train Loss: 0.04148492447549491, Val Loss: 0.047470742676939286 +2024-07-23 01:02:48.251 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 13/50, Train Loss: 0.04145321400045491, Val Loss: 0.048247464267270904 +2024-07-23 01:02:54.618 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 14/50, Train Loss: 0.041305123540244515, Val Loss: 0.046741715871862 +2024-07-23 01:03:00.958 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 15/50, Train Loss: 0.041363127717225674, Val Loss: 0.048064229690602846 +2024-07-23 01:03:07.346 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 16/50, Train Loss: 0.0410594623267865, Val Loss: 0.04672041695032801 +2024-07-23 01:03:13.793 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 17/50, Train Loss: 0.04102945875832074, Val Loss: 0.04789709613791534 +2024-07-23 01:03:20.116 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 18/50, Train Loss: 0.04106797004560772, Val Loss: 0.047548861641969 +2024-07-23 01:03:26.485 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 19/50, Train Loss: 0.041017561052128566, Val Loss: 0.04706039418067251 +2024-07-23 01:03:32.854 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 20/50, Train Loss: 0.04075400846199595, Val Loss: 0.04718764850071498 +2024-07-23 01:03:39.325 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 21/50, Train Loss: 0.04116499111753145, Val Loss: 0.0466777501893895 +2024-07-23 01:03:45.686 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 22/50, Train Loss: 0.04099749056823391, Val Loss: 0.04666295035609177 +2024-07-23 01:03:52.039 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 23/50, Train Loss: 0.04092949790973886, Val Loss: 0.04729488119482994 +2024-07-23 01:03:58.399 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 24/50, Train Loss: 0.04068477877931629, Val Loss: 0.04761925265192986 +2024-07-23 01:04:04.784 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 25/50, Train Loss: 0.04068050946263101, Val Loss: 0.04610155304627759 +2024-07-23 01:04:11.168 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 26/50, Train Loss: 0.040640782310272294, Val Loss: 0.04848877925957952 +2024-07-23 01:04:17.558 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 27/50, Train Loss: 0.04049759330026966, Val Loss: 0.04738385762487139 +2024-07-23 01:04:23.956 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 28/50, Train Loss: 0.040560216234206296, Val Loss: 0.04695437029004097 +2024-07-23 01:04:30.296 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 29/50, Train Loss: 0.040570685814181676, Val Loss: 0.047347862805639 +2024-07-23 01:04:36.680 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 30/50, Train Loss: 0.04047157983932135, Val Loss: 0.046701666606324056 +2024-07-23 01:04:43.127 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 31/50, Train Loss: 0.04030906962458607, Val Loss: 0.04626571078385625 +2024-07-23 01:04:49.580 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 32/50, Train Loss: 0.040186551721136776, Val Loss: 0.046712881912078175 +2024-07-23 01:04:55.992 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 33/50, Train Loss: 0.04034964051499641, Val Loss: 0.04848650667284216 +2024-07-23 01:05:02.458 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 34/50, Train Loss: 0.040975315965336864, Val Loss: 0.04624775690691812 +2024-07-23 01:05:08.847 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 35/50, Train Loss: 0.040429220970371646, Val Loss: 0.045910284987517765 +2024-07-23 01:05:15.255 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 36/50, Train Loss: 0.0400283864612202, Val Loss: 0.046033066670809475 +2024-07-23 01:05:21.674 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 37/50, Train Loss: 0.03992179345687945, Val Loss: 0.04598101888384138 +2024-07-23 01:05:28.065 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 38/50, Train Loss: 0.04007960794319352, Val Loss: 0.046153008618525095 +2024-07-23 01:05:34.487 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 39/50, Train Loss: 0.03993269412530412, Val Loss: 0.04696149586566857 +2024-07-23 01:05:40.953 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 40/50, Train Loss: 0.04009979854759981, Val Loss: 0.04611445606819221 +2024-07-23 01:05:47.387 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 41/50, Train Loss: 0.040028413302070805, Val Loss: 0.045508188807538576 +2024-07-23 01:05:53.865 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 42/50, Train Loss: 0.03992193839479265, Val Loss: 0.047540506507669174 +2024-07-23 01:06:00.303 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 43/50, Train Loss: 0.03981791536504631, Val Loss: 0.04523720118616308 +2024-07-23 01:06:06.741 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 44/50, Train Loss: 0.039852545790963895, Val Loss: 0.046213723133717265 +2024-07-23 01:06:13.199 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 45/50, Train Loss: 0.03976323048202254, Val Loss: 0.04601864995700972 +2024-07-23 01:06:19.652 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 46/50, Train Loss: 0.03965043351590205, Val Loss: 0.045541493807520185 +2024-07-23 01:06:26.108 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 47/50, Train Loss: 0.03961210959195662, Val Loss: 0.04557865400399481 +2024-07-23 01:06:32.566 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 48/50, Train Loss: 0.0395906934608444, Val Loss: 0.04645983720464366 +2024-07-23 01:06:38.988 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 49/50, Train Loss: 0.03934630151275251, Val Loss: 0.046243545785546306 +2024-07-23 01:06:45.443 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 50/50, Train Loss: 0.039742475764142526, Val Loss: 0.04751145105276789 +2024-07-23 01:06:45.443 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Fold 3, MAPE: 9.13% +2024-07-23 01:06:45.554 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_10001_25000_LSTM//train_f3_bgd_education_10001_25000_LSTM.png +2024-07-23 01:06:53.498 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 1/50, Train Loss: 0.040442160020271935, Val Loss: 0.0432755710291011 +2024-07-23 01:07:01.448 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 2/50, Train Loss: 0.040331355702859915, Val Loss: 0.04327840182398047 +2024-07-23 01:07:09.377 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 3/50, Train Loss: 0.04010084715682542, Val Loss: 0.04285589578960623 +2024-07-23 01:07:17.297 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 4/50, Train Loss: 0.04023487849867549, Val Loss: 0.04245368566896234 +2024-07-23 01:07:25.263 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 5/50, Train Loss: 0.04000691595305314, Val Loss: 0.04380141092198236 +2024-07-23 01:07:33.182 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 6/50, Train Loss: 0.04008639804034055, Val Loss: 0.0429489903151989 +2024-07-23 01:07:33.182 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 01:07:33.182 No tasks are waiting in the queue. +2024-07-23 01:07:33.182 4 steps have not started: log_model, model_scores, end, validate_model. +2024-07-23 01:07:41.155 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 7/50, Train Loss: 0.03967945921052804, Val Loss: 0.04308420361152717 +2024-07-23 01:07:49.111 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 8/50, Train Loss: 0.039786600379337525, Val Loss: 0.042659750953316686 +2024-07-23 01:07:57.061 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 9/50, Train Loss: 0.039553411454818714, Val Loss: 0.04288352020084858 +2024-07-23 01:08:05.089 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 10/50, Train Loss: 0.0396889127555421, Val Loss: 0.04330358930996486 +2024-07-23 01:08:13.061 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 11/50, Train Loss: 0.04012569249875244, Val Loss: 0.042589771029140265 +2024-07-23 01:08:21.006 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 12/50, Train Loss: 0.039653281831107605, Val Loss: 0.04318141367818628 +2024-07-23 01:08:28.925 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 13/50, Train Loss: 0.03965639671974484, Val Loss: 0.04314267630023616 +2024-07-23 01:08:36.938 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 14/50, Train Loss: 0.03994322059697461, Val Loss: 0.04270251866962228 +2024-07-23 01:08:44.890 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 15/50, Train Loss: 0.039562795899979686, Val Loss: 0.04224897207958358 +2024-07-23 01:08:52.822 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 16/50, Train Loss: 0.03943179837888342, Val Loss: 0.043041090347937176 +2024-07-23 01:09:00.772 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 17/50, Train Loss: 0.039458933479056275, Val Loss: 0.04332430559609617 +2024-07-23 01:09:08.745 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 18/50, Train Loss: 0.03973101519433589, Val Loss: 0.04345747546425888 +2024-07-23 01:09:16.704 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 19/50, Train Loss: 0.03955002744607199, Val Loss: 0.04290186874568462 +2024-07-23 01:09:24.658 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 20/50, Train Loss: 0.03984231652756189, Val Loss: 0.04370916299521923 +2024-07-23 01:09:32.607 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 21/50, Train Loss: 0.03949014125284792, Val Loss: 0.043018301257065364 +2024-07-23 01:09:40.589 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 22/50, Train Loss: 0.03953830874257389, Val Loss: 0.04364108661455768 +2024-07-23 01:09:48.576 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 23/50, Train Loss: 0.03931790050761453, Val Loss: 0.04219228117061513 +2024-07-23 01:09:56.828 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 24/50, Train Loss: 0.039664506912231445, Val Loss: 0.042757929489016536 +2024-07-23 01:17:51.219 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 25/50, Train Loss: 0.039485734341473414, Val Loss: 0.042976754557873524 +2024-07-23 01:17:51.219 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 01:17:51.219 No tasks are waiting in the queue. +2024-07-23 01:17:51.219 4 steps have not started: log_model, model_scores, end, validate_model. +2024-07-23 01:17:59.464 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 26/50, Train Loss: 0.03936592075202999, Val Loss: 0.042696320505014485 +2024-07-23 01:18:07.659 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 27/50, Train Loss: 0.039201099468373704, Val Loss: 0.043035722098180226 +2024-07-23 01:18:15.860 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 28/50, Train Loss: 0.03960300474588213, Val Loss: 0.04331897481211594 +2024-07-23 01:18:24.047 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 29/50, Train Loss: 0.03979957864844594, Val Loss: 0.043566267006099224 +2024-07-23 01:20:02.472 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 30/50, Train Loss: 0.03943665720650862, Val Loss: 0.04314741375190871 +2024-07-23 01:20:10.393 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 31/50, Train Loss: 0.05293416487181495, Val Loss: 0.05078156755438873 +2024-07-23 01:20:18.301 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 32/50, Train Loss: 0.05025918173721467, Val Loss: 0.05156035710658346 +2024-07-23 01:20:26.106 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 33/50, Train Loss: 0.04966265309987397, Val Loss: 0.049600416900856155 +2024-07-23 01:20:33.958 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 34/50, Train Loss: 0.04916031736794902, Val Loss: 0.04933631680905819 +2024-07-23 01:20:41.808 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 35/50, Train Loss: 0.04836809233730209, Val Loss: 0.04784338511526585 +2024-07-23 01:28:28.384 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 36/50, Train Loss: 0.04808329830438584, Val Loss: 0.047692688554525374 +2024-07-23 01:28:28.384 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 01:28:28.384 No tasks are waiting in the queue. +2024-07-23 01:28:28.384 4 steps have not started: log_model, model_scores, end, validate_model. +2024-07-23 01:28:36.210 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 37/50, Train Loss: 0.04728785856230848, Val Loss: 0.047287216463259285 +2024-07-23 01:28:44.097 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 38/50, Train Loss: 0.046943332486111544, Val Loss: 0.04750085462416921 +2024-07-23 01:28:52.048 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 39/50, Train Loss: 0.04668932140472977, Val Loss: 0.047122967562505176 +2024-07-23 01:28:59.952 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 40/50, Train Loss: 0.04649350306169055, Val Loss: 0.04722421972879342 +2024-07-23 01:29:07.849 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 41/50, Train Loss: 0.046086543860534825, Val Loss: 0.048302422729986055 +2024-07-23 01:29:15.793 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 42/50, Train Loss: 0.046047106064085304, Val Loss: 0.04694121245826994 +2024-07-23 01:29:23.786 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 43/50, Train Loss: 0.045374412935269975, Val Loss: 0.04579995258578232 +2024-07-23 01:29:31.760 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 44/50, Train Loss: 0.04529352475428718, Val Loss: 0.045824338256248404 +2024-07-23 01:29:39.729 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 45/50, Train Loss: 0.0449054769893316, Val Loss: 0.045134689605661804 +2024-07-23 01:29:47.678 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 46/50, Train Loss: 0.044855712324209596, Val Loss: 0.044760145779166906 +2024-07-23 01:29:55.686 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 47/50, Train Loss: 0.044557407476949966, Val Loss: 0.043304139216031344 +2024-07-23 01:30:03.639 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 48/50, Train Loss: 0.04412384766914036, Val Loss: 0.042991738420511995 +2024-07-23 01:30:11.688 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 49/50, Train Loss: 0.04382641060042313, Val Loss: 0.0434383401381118 +2024-07-23 01:30:19.671 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 50/50, Train Loss: 0.04369584385348463, Val Loss: 0.044858934144888604 +2024-07-23 01:30:19.671 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Fold 4, MAPE: 9.83% +2024-07-23 01:30:19.779 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_10001_25000_LSTM//train_f4_bgd_education_10001_25000_LSTM.png +2024-07-23 01:30:23.940 [45/cross_validate_train/457 (pid 42637)] Task finished successfully. +2024-07-23 01:30:23.970 [45/model_scores/458 (pid 47385)] Task is starting. +2024-07-23 01:30:25.341 [45/model_scores/458 (pid 47385)] INFO:__main__:Average Train Loss across all folds: 0.04772547689101334 +2024-07-23 01:30:28.988 [45/model_scores/458 (pid 47385)] INFO:__main__:Average Validation Loss across all folds: 0.04599682433264596 +2024-07-23 01:30:28.989 [45/model_scores/458 (pid 47385)] INFO:__main__:Average MAPE across all folds: 9.51% +2024-07-23 01:30:28.990 [45/model_scores/458 (pid 47385)] Task finished successfully. +2024-07-23 01:30:29.017 [45/validate_model/459 (pid 47418)] Task is starting. +2024-07-23 01:30:30.387 [45/validate_model/459 (pid 47418)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 01:30:31.157 [45/validate_model/459 (pid 47418)] INFO:__main__:Test Set MAPE: 8.58% +2024-07-23 01:30:31.494 [45/validate_model/459 (pid 47418)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_education_10001_25000_LSTM//test_bgd_education_10001_25000_LSTM.png +2024-07-23 01:30:31.927 [45/validate_model/459 (pid 47418)] Task finished successfully. +2024-07-23 01:30:31.954 [45/log_model/460 (pid 47429)] Task is starting. +2024-07-23 01:30:33.375 [45/log_model/460 (pid 47429)] INFO:__main__:Logging model bgd_education_10001_25000_LSTM +2024-07-23 01:30:33.376 [45/log_model/460 (pid 47429)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_education_10001_25000_LSTM//bgd_education_10001_25000_LSTM.pth +2024-07-23 01:36:58.277 [45/log_model/460 (pid 47429)] Task finished successfully. +2024-07-23 01:36:58.309 [45/end/461 (pid 47469)] Task is starting. +2024-07-23 01:36:58.309 1 task is running: end (1 running; 0 done). +2024-07-23 01:36:58.309 No tasks are waiting in the queue. +2024-07-23 01:36:59.686 [45/end/461 (pid 47469)] INFO:__main__:Pipeline end. +2024-07-23 01:36:59.992 [45/end/461 (pid 47469)] Task finished successfully. +2024-07-23 01:36:59.993 Done! +✅ Run('BGD_LinearFlow/45') succeeded: +-- stdout -- +2024-07-23 00:52:25.830 Workflow starting (run-id 45): +2024-07-23 00:52:25.908 [45/start/449 (pid 42495)] Task is starting. +2024-07-23 00:52:27.383 [45/start/449 (pid 42495)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 00:52:27.676 [45/start/449 (pid 42495)] Task finished successfully. +2024-07-23 00:52:27.709 [45/ingest/450 (pid 42506)] Task is starting. +2024-07-23 00:52:29.175 [45/ingest/450 (pid 42506)] INFO:__main__:Fetching dataframe.. +2024-07-23 00:52:29.192 [45/ingest/450 (pid 42506)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 00:52:33.026 [45/ingest/450 (pid 42506)] Task finished successfully. +2024-07-23 00:52:33.059 [45/pick_2017_data/451 (pid 42532)] Task is starting. +2024-07-23 00:52:34.491 [45/pick_2017_data/451 (pid 42532)] INFO:__main__:Picking 2017 data.. +2024-07-23 00:52:34.791 [45/pick_2017_data/451 (pid 42532)] Task finished successfully. +2024-07-23 00:52:34.822 [45/fill_missing_data/452 (pid 42543)] Task is starting. +2024-07-23 00:52:36.296 [45/fill_missing_data/452 (pid 42543)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 00:52:36.302 [45/fill_missing_data/452 (pid 42543)] INFO:__main__:NaN counts per column: +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] INFO:__main__:Panther_education_Janis 13 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] Panther_education_Diann 13 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] Panther_education_Cleopatra 12 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] Robin_education_Lizbeth 0 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] Robin_education_Cecilia 0 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] Robin_education_Takako 0 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] Fox_education_Melvin 91 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] dtype: int64 +2024-07-23 00:52:36.303 [45/fill_missing_data/452 (pid 42543)] --- Logging error --- +2024-07-23 00:52:36.304 [45/fill_missing_data/452 (pid 42543)] Traceback (most recent call last): +2024-07-23 00:52:36.304 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] msg = self.format(record) +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] return fmt.format(record) +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] record.message = record.getMessage() +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] msg = msg % self.args +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] TypeError: not all arguments converted during string formatting +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] Call stack: +2024-07-23 00:52:36.305 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 00:52:36.678 [45/fill_missing_data/452 (pid 42543)] BGD_LinearFlow() +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] cli.main(self) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] return func(*args, **kwargs) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] return self.main(*args, **kwargs) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] rv = self.invoke(ctx) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] return callback(*args, **kwargs) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] return f(get_current_context(), *args, **kwargs) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] task.run_step( +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] self._exec_step_function(step_func) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] step_function() +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] self.missing_values = find_nan_counts(self.df) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 00:52:36.679 [45/fill_missing_data/452 (pid 42543)] Arguments: (129,) +2024-07-23 00:52:36.680 [45/fill_missing_data/452 (pid 42543)] Task finished successfully. +2024-07-23 00:52:36.707 [45/find_median/453 (pid 42555)] Task is starting. +2024-07-23 00:52:38.146 [45/find_median/453 (pid 42555)] INFO:__main__:Computing and using median.. +2024-07-23 00:52:38.646 [45/find_median/453 (pid 42555)] Task finished successfully. +2024-07-23 00:52:38.672 [45/aggregate_data/454 (pid 42568)] Task is starting. +2024-07-23 00:52:40.102 [45/aggregate_data/454 (pid 42568)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 00:52:43.902 [45/aggregate_data/454 (pid 42568)] Task finished successfully. +2024-07-23 00:52:43.933 [45/split_data/455 (pid 42600)] Task is starting. +2024-07-23 00:52:45.382 [45/split_data/455 (pid 42600)] INFO:__main__:Splitting data into test and train... +2024-07-23 00:52:49.213 [45/split_data/455 (pid 42600)] Task finished successfully. +2024-07-23 00:52:49.242 [45/make_x_y/456 (pid 42626)] Task is starting. +2024-07-23 00:52:51.040 [45/make_x_y/456 (pid 42626)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 00:52:51.420 [45/make_x_y/456 (pid 42626)] Shape of y_train: (6648, 1) +2024-07-23 00:52:51.420 [45/make_x_y/456 (pid 42626)] Shape of X_test: (1392, 360, 1) +2024-07-23 00:52:51.420 [45/make_x_y/456 (pid 42626)] Shape of y_test: (1392, 1) +2024-07-23 00:52:51.421 [45/make_x_y/456 (pid 42626)] Task finished successfully. +2024-07-23 00:52:51.451 [45/cross_validate_train/457 (pid 42637)] Task is starting. +2024-07-23 00:52:52.889 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Creating bgd_education_10001_25000_LSTM +2024-07-23 00:52:52.889 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Performing cross validation.. +2024-07-23 00:52:55.333 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 1/50, Train Loss: 0.2742498242429325, Val Loss: 0.14981632509401865 +2024-07-23 00:52:57.219 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 2/50, Train Loss: 0.1927961160029684, Val Loss: 0.12341376819780894 +2024-07-23 00:52:59.100 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 3/50, Train Loss: 0.16590243173497063, Val Loss: 0.1061523654631206 +2024-07-23 00:53:01.020 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 4/50, Train Loss: 0.1225645763533456, Val Loss: 0.08300029401268277 +2024-07-23 00:53:02.928 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 5/50, Train Loss: 0.10553079204899925, Val Loss: 0.0738789184817246 +2024-07-23 00:53:04.834 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 6/50, Train Loss: 0.10183924936822482, Val Loss: 0.07069527368460382 +2024-07-23 00:53:06.732 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 7/50, Train Loss: 0.09918497641171728, Val Loss: 0.07003099258456912 +2024-07-23 00:53:08.654 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 8/50, Train Loss: 0.09648231182779585, Val Loss: 0.06725220094834056 +2024-07-23 00:53:10.557 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 9/50, Train Loss: 0.09393054246902466, Val Loss: 0.06358396634459496 +2024-07-23 00:53:12.468 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 10/50, Train Loss: 0.09090719244309835, Val Loss: 0.058556802251509256 +2024-07-23 00:53:14.369 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 11/50, Train Loss: 0.08774043555770601, Val Loss: 0.054735121130943296 +2024-07-23 00:53:16.290 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 12/50, Train Loss: 0.08500197987471309, Val Loss: 0.05257592041577611 +2024-07-23 00:53:18.219 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 13/50, Train Loss: 0.08260354708348001, Val Loss: 0.05762656841959272 +2024-07-23 00:53:20.141 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 14/50, Train Loss: 0.08145126562033381, Val Loss: 0.05980594498770578 +2024-07-23 00:53:22.079 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 15/50, Train Loss: 0.08040611892938614, Val Loss: 0.060752142327172416 +2024-07-23 00:53:24.003 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 16/50, Train Loss: 0.07910525149532727, Val Loss: 0.05762568611119475 +2024-07-23 00:53:25.942 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 17/50, Train Loss: 0.07785626011235373, Val Loss: 0.06268025828259331 +2024-07-23 00:53:27.881 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 18/50, Train Loss: 0.07722814993134566, Val Loss: 0.054772559127637316 +2024-07-23 00:53:29.834 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 19/50, Train Loss: 0.07597860933414527, Val Loss: 0.05765705992068563 +2024-07-23 00:53:31.784 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 20/50, Train Loss: 0.07561368644237518, Val Loss: 0.04947747444467885 +2024-07-23 00:53:33.733 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 21/50, Train Loss: 0.07564851098826954, Val Loss: 0.06328872633831842 +2024-07-23 00:53:35.664 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 22/50, Train Loss: 0.07418848595448903, Val Loss: 0.05238516575523785 +2024-07-23 00:53:37.617 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 23/50, Train Loss: 0.0731627218425274, Val Loss: 0.049458163976669314 +2024-07-23 00:53:39.577 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 24/50, Train Loss: 0.07307468626116004, Val Loss: 0.050710594121898926 +2024-07-23 00:53:41.542 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 25/50, Train Loss: 0.0722153966980321, Val Loss: 0.05166670445884977 +2024-07-23 00:53:43.527 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 26/50, Train Loss: 0.0731568272624697, Val Loss: 0.05372377293450492 +2024-07-23 00:53:45.479 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 27/50, Train Loss: 0.07302996585411685, Val Loss: 0.05158262566796371 +2024-07-23 00:53:47.438 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 28/50, Train Loss: 0.07120498482670103, Val Loss: 0.05220412580030305 +2024-07-23 00:53:49.401 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 29/50, Train Loss: 0.07111140941934926, Val Loss: 0.052527467533946035 +2024-07-23 00:53:51.389 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 30/50, Train Loss: 0.0702713279319661, Val Loss: 0.053371841087937355 +2024-07-23 00:53:53.330 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 31/50, Train Loss: 0.07073943944914, Val Loss: 0.05016407274774143 +2024-07-23 00:53:55.287 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 32/50, Train Loss: 0.07063717682446752, Val Loss: 0.05285714683788163 +2024-07-23 00:53:57.241 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 33/50, Train Loss: 0.07082017085381917, Val Loss: 0.05142665058374405 +2024-07-23 00:53:59.202 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 34/50, Train Loss: 0.070141419715115, Val Loss: 0.05175628944167069 +2024-07-23 00:54:01.182 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 35/50, Train Loss: 0.07075057269207069, Val Loss: 0.05120695648448808 +2024-07-23 00:54:03.131 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 36/50, Train Loss: 0.06991532503494195, Val Loss: 0.05095589735678264 +2024-07-23 00:54:05.081 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 37/50, Train Loss: 0.06997715745653425, Val Loss: 0.04931220822036266 +2024-07-23 00:54:07.036 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 38/50, Train Loss: 0.07002505484436239, Val Loss: 0.049278124634708674 +2024-07-23 00:54:08.999 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 39/50, Train Loss: 0.06923612750002316, Val Loss: 0.05008379263537271 +2024-07-23 00:54:10.986 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 40/50, Train Loss: 0.06929227661873613, Val Loss: 0.04979824668594769 +2024-07-23 00:54:12.951 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 41/50, Train Loss: 0.06905109765274184, Val Loss: 0.04954189801854747 +2024-07-23 00:54:14.916 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 42/50, Train Loss: 0.06843298950365612, Val Loss: 0.048929829842277936 +2024-07-23 00:54:16.903 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 43/50, Train Loss: 0.06763870162623269, Val Loss: 0.04739284068346024 +2024-07-23 00:54:18.878 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 44/50, Train Loss: 0.06862997960831438, Val Loss: 0.04832689820655755 +2024-07-23 00:54:20.840 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 45/50, Train Loss: 0.06879466415515968, Val Loss: 0.04675206659095628 +2024-07-23 00:54:22.818 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 46/50, Train Loss: 0.06850098339574677, Val Loss: 0.047711606696248056 +2024-07-23 00:54:24.773 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 47/50, Train Loss: 0.06819461328642709, Val Loss: 0.04659286082855293 +2024-07-23 00:54:26.742 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 48/50, Train Loss: 0.06759799341005938, Val Loss: 0.0462062523833343 +2024-07-23 00:54:28.702 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 49/50, Train Loss: 0.06769145035317965, Val Loss: 0.044231301013912476 +2024-07-23 00:54:30.668 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 50/50, Train Loss: 0.06679273785224983, Val Loss: 0.04617991474057947 +2024-07-23 00:54:30.668 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Fold 0, MAPE: 9.07% +2024-07-23 00:54:30.955 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_10001_25000_LSTM//train_f0_bgd_education_10001_25000_LSTM.png +2024-07-23 00:54:34.432 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 1/50, Train Loss: 0.050436495537204404, Val Loss: 0.04753168315759727 +2024-07-23 00:54:37.836 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 2/50, Train Loss: 0.0498606463894248, Val Loss: 0.04528055547603539 +2024-07-23 00:54:41.261 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 3/50, Train Loss: 0.04996283727564982, Val Loss: 0.0459914531558752 +2024-07-23 00:54:44.711 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 4/50, Train Loss: 0.05049619733222893, Val Loss: 0.045287280529737475 +2024-07-23 00:54:48.125 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 5/50, Train Loss: 0.050306548470897335, Val Loss: 0.04585141230906759 +2024-07-23 00:54:51.583 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 6/50, Train Loss: 0.050265369165156566, Val Loss: 0.046278295506324084 +2024-07-23 00:54:54.982 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 7/50, Train Loss: 0.04992741359663861, Val Loss: 0.04643704763480595 +2024-07-23 00:54:58.435 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 8/50, Train Loss: 0.0493812315964273, Val Loss: 0.045198359553303036 +2024-07-23 00:55:01.911 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 9/50, Train Loss: 0.049478110830698696, Val Loss: 0.04556171340601785 +2024-07-23 00:55:05.326 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 10/50, Train Loss: 0.04935910970504795, Val Loss: 0.046057494463665145 +2024-07-23 00:55:08.722 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 11/50, Train Loss: 0.04958147297480277, Val Loss: 0.04638226112084729 +2024-07-23 00:55:12.172 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 12/50, Train Loss: 0.04929779621639422, Val Loss: 0.046232452296784944 +2024-07-23 00:55:15.575 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 13/50, Train Loss: 0.049429116318268435, Val Loss: 0.04650677219033241 +2024-07-23 00:55:19.059 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 14/50, Train Loss: 0.04922556116112641, Val Loss: 0.045976025398288455 +2024-07-23 00:55:22.500 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 15/50, Train Loss: 0.04895559261952128, Val Loss: 0.04635446114199502 +2024-07-23 00:55:25.898 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 16/50, Train Loss: 0.04941495654306242, Val Loss: 0.04644906063164984 +2024-07-23 00:55:29.309 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 17/50, Train Loss: 0.048902816910828865, Val Loss: 0.04593551605939865 +2024-07-23 00:55:32.737 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 18/50, Train Loss: 0.04873398199145283, Val Loss: 0.04574159697762557 +2024-07-23 00:55:36.128 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 19/50, Train Loss: 0.048642638698220254, Val Loss: 0.04685032170798097 +2024-07-23 00:55:39.540 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 20/50, Train Loss: 0.04911893433226006, Val Loss: 0.046212215987699375 +2024-07-23 00:55:42.940 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 21/50, Train Loss: 0.04868716930172273, Val Loss: 0.04538930154272488 +2024-07-23 00:55:46.328 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 22/50, Train Loss: 0.04846084431878158, Val Loss: 0.04563657125192029 +2024-07-23 00:55:49.732 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 23/50, Train Loss: 0.04903509579598904, Val Loss: 0.0459544625133276 +2024-07-23 00:55:53.151 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 24/50, Train Loss: 0.04863889935825552, Val Loss: 0.04515314852552754 +2024-07-23 00:55:56.572 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 25/50, Train Loss: 0.0485505203849503, Val Loss: 0.04546924201505525 +2024-07-23 00:55:59.958 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 26/50, Train Loss: 0.04834953921713999, Val Loss: 0.046480755028980116 +2024-07-23 00:56:03.364 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 27/50, Train Loss: 0.048276394020233836, Val Loss: 0.045557322991745815 +2024-07-23 00:56:06.764 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 28/50, Train Loss: 0.04833293857851199, Val Loss: 0.04533875302544662 +2024-07-23 00:56:10.146 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 29/50, Train Loss: 0.048210086354187554, Val Loss: 0.04514821618795395 +2024-07-23 00:56:13.528 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 30/50, Train Loss: 0.048499406235558644, Val Loss: 0.04452250711619854 +2024-07-23 00:56:16.906 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 31/50, Train Loss: 0.047860605455935, Val Loss: 0.04463467959846769 +2024-07-23 00:56:20.306 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 32/50, Train Loss: 0.04794613591262272, Val Loss: 0.0443013571202755 +2024-07-23 00:56:23.690 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 33/50, Train Loss: 0.047941371319549425, Val Loss: 0.04480058172983783 +2024-07-23 00:56:27.077 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 34/50, Train Loss: 0.048113507271877354, Val Loss: 0.0441423662006855 +2024-07-23 00:56:30.465 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 35/50, Train Loss: 0.048027105469788826, Val Loss: 0.044157218347702705 +2024-07-23 00:56:33.872 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 36/50, Train Loss: 0.048176274608288494, Val Loss: 0.044376468339136665 +2024-07-23 00:56:37.277 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 37/50, Train Loss: 0.04848030241472381, Val Loss: 0.04483052917889186 +2024-07-23 00:56:40.678 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 38/50, Train Loss: 0.04808220690382378, Val Loss: 0.04441698060504028 +2024-07-23 00:56:44.085 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 39/50, Train Loss: 0.04761285425296852, Val Loss: 0.044021529917206086 +2024-07-23 00:56:47.471 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 40/50, Train Loss: 0.0478300240156906, Val Loss: 0.04393901154398918 +2024-07-23 00:56:50.885 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 41/50, Train Loss: 0.04781910276838711, Val Loss: 0.044451323790209635 +2024-07-23 00:56:54.305 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 42/50, Train Loss: 0.04785116147249937, Val Loss: 0.04408333152532577 +2024-07-23 00:56:57.726 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 43/50, Train Loss: 0.047956587533865655, Val Loss: 0.04476764819451741 +2024-07-23 00:57:01.159 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 44/50, Train Loss: 0.04784979711153677, Val Loss: 0.04435501332793917 +2024-07-23 00:57:04.572 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 45/50, Train Loss: 0.04809859746268817, Val Loss: 0.04459266034620149 +2024-07-23 00:57:07.971 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 46/50, Train Loss: 0.04792746497052056, Val Loss: 0.04478750180985246 +2024-07-23 00:57:11.389 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 47/50, Train Loss: 0.04751101737575872, Val Loss: 0.04463599467916148 +2024-07-23 00:57:14.813 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 48/50, Train Loss: 0.047348296642303465, Val Loss: 0.04504764122622354 +2024-07-23 00:57:18.200 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 49/50, Train Loss: 0.04754456654191017, Val Loss: 0.044812559389642306 +2024-07-23 00:57:21.627 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 50/50, Train Loss: 0.0472435292920896, Val Loss: 0.04434594538594995 +2024-07-23 00:57:21.628 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Fold 1, MAPE: 9.94% +2024-07-23 00:57:21.733 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_10001_25000_LSTM//train_f1_bgd_education_10001_25000_LSTM.png +2024-07-23 00:57:26.633 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 1/50, Train Loss: 0.042782419683555, Val Loss: 0.04807568783206599 +2024-07-23 00:57:26.633 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:57:26.633 No tasks are waiting in the queue. +2024-07-23 00:57:26.633 4 steps have not started: log_model, model_scores, end, validate_model. +2024-07-23 00:57:31.472 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 2/50, Train Loss: 0.042850045290274114, Val Loss: 0.0489625483751297 +2024-07-23 00:57:36.306 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 3/50, Train Loss: 0.04295843596068712, Val Loss: 0.04953178811286177 +2024-07-23 00:57:41.211 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 4/50, Train Loss: 0.043092007659232386, Val Loss: 0.04857517635183675 +2024-07-23 00:57:46.058 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 5/50, Train Loss: 0.042783362038720116, Val Loss: 0.04961144014128617 +2024-07-23 00:57:50.904 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 6/50, Train Loss: 0.04284397904904416, Val Loss: 0.048345883722816195 +2024-07-23 00:57:55.795 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 7/50, Train Loss: 0.04281889109943922, Val Loss: 0.04864982105791569 +2024-07-23 00:58:00.649 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 8/50, Train Loss: 0.04270466449312293, Val Loss: 0.04781588044549737 +2024-07-23 00:58:05.508 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 9/50, Train Loss: 0.04270033866095428, Val Loss: 0.04829323600445475 +2024-07-23 00:58:10.377 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 10/50, Train Loss: 0.0426479357187278, Val Loss: 0.047751236600535256 +2024-07-23 00:58:15.269 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 11/50, Train Loss: 0.04255337216174947, Val Loss: 0.04771060650902135 +2024-07-23 00:58:20.117 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 12/50, Train Loss: 0.04262992583859999, Val Loss: 0.048544909751841 +2024-07-23 00:58:24.992 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 13/50, Train Loss: 0.04214328283873888, Val Loss: 0.04932210168668202 +2024-07-23 00:58:29.932 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 14/50, Train Loss: 0.04258453281811224, Val Loss: 0.04798815436661243 +2024-07-23 00:58:34.791 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 15/50, Train Loss: 0.042304900636036806, Val Loss: 0.04818075895309448 +2024-07-23 00:58:39.645 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 16/50, Train Loss: 0.04237449002595475, Val Loss: 0.04750055692025593 +2024-07-23 00:58:44.534 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 17/50, Train Loss: 0.0424131928369976, Val Loss: 0.04905632697045803 +2024-07-23 00:58:49.397 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 18/50, Train Loss: 0.042048178774376326, Val Loss: 0.049133631640246936 +2024-07-23 00:58:54.269 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 19/50, Train Loss: 0.04223630117037548, Val Loss: 0.04708261543086597 +2024-07-23 00:58:59.126 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 20/50, Train Loss: 0.042188651429919094, Val Loss: 0.04857780044632298 +2024-07-23 00:59:03.990 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 21/50, Train Loss: 0.04209438874386251, Val Loss: 0.048346205321805814 +2024-07-23 00:59:08.849 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 22/50, Train Loss: 0.0421341172634409, Val Loss: 0.048517641850880214 +2024-07-23 00:59:13.733 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 23/50, Train Loss: 0.0419776351012003, Val Loss: 0.04735629521310329 +2024-07-23 00:59:18.625 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 24/50, Train Loss: 0.042203685823971264, Val Loss: 0.047641956486872264 +2024-07-23 00:59:23.503 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 25/50, Train Loss: 0.04189306793089669, Val Loss: 0.04808366841503552 +2024-07-23 00:59:28.362 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 26/50, Train Loss: 0.04191071617130477, Val Loss: 0.04887852163187095 +2024-07-23 00:59:33.245 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 27/50, Train Loss: 0.04197455408911292, Val Loss: 0.047641818491475925 +2024-07-23 00:59:38.150 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 28/50, Train Loss: 0.04191352349992555, Val Loss: 0.04721706626670701 +2024-07-23 00:59:43.076 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 29/50, Train Loss: 0.04206318109152982, Val Loss: 0.04740581443267209 +2024-07-23 00:59:47.986 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 30/50, Train Loss: 0.04201230824065323, Val Loss: 0.04687431550451687 +2024-07-23 00:59:52.889 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 31/50, Train Loss: 0.04207293972229728, Val Loss: 0.04834118724933693 +2024-07-23 00:59:57.796 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 32/50, Train Loss: 0.04185533623855848, Val Loss: 0.047146442426102504 +2024-07-23 01:00:02.701 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 33/50, Train Loss: 0.04177865563318706, Val Loss: 0.04797964080103806 +2024-07-23 01:00:07.556 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 34/50, Train Loss: 0.0416349249247175, Val Loss: 0.04786436488585813 +2024-07-23 01:00:12.448 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 35/50, Train Loss: 0.04164800660398144, Val Loss: 0.04815390674131257 +2024-07-23 01:00:17.302 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 36/50, Train Loss: 0.04166410256248827, Val Loss: 0.046801262242453436 +2024-07-23 01:00:22.187 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 37/50, Train Loss: 0.04168705898337066, Val Loss: 0.0472988987075431 +2024-07-23 01:00:27.091 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 38/50, Train Loss: 0.04140605743472966, Val Loss: 0.04869560471602848 +2024-07-23 01:00:31.952 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 39/50, Train Loss: 0.041708130980483614, Val Loss: 0.04710710671331201 +2024-07-23 01:00:36.791 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 40/50, Train Loss: 0.04140352276870264, Val Loss: 0.047460112880383216 +2024-07-23 01:00:41.678 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 41/50, Train Loss: 0.04129835540572038, Val Loss: 0.046277002883808954 +2024-07-23 01:00:46.540 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 42/50, Train Loss: 0.04134287824854255, Val Loss: 0.047446497955492564 +2024-07-23 01:00:51.420 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 43/50, Train Loss: 0.04139549716805609, Val Loss: 0.0473619595170021 +2024-07-23 01:00:56.299 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 44/50, Train Loss: 0.041347859624343425, Val Loss: 0.046484094432422095 +2024-07-23 01:01:01.197 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 45/50, Train Loss: 0.04108574911235617, Val Loss: 0.047822041543466705 +2024-07-23 01:01:06.071 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 46/50, Train Loss: 0.04102615125548954, Val Loss: 0.04676231678043093 +2024-07-23 01:01:10.933 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 47/50, Train Loss: 0.04108887855321742, Val Loss: 0.046433350390621596 +2024-07-23 01:01:15.803 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 48/50, Train Loss: 0.041062992495986134, Val Loss: 0.04677935881274087 +2024-07-23 01:01:20.655 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 49/50, Train Loss: 0.04099689397172859, Val Loss: 0.046653759373085836 +2024-07-23 01:01:25.534 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 50/50, Train Loss: 0.04115279769310011, Val Loss: 0.04708787633904389 +2024-07-23 01:01:25.534 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Fold 2, MAPE: 9.58% +2024-07-23 01:01:25.643 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_10001_25000_LSTM//train_f2_bgd_education_10001_25000_LSTM.png +2024-07-23 01:01:32.034 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 1/50, Train Loss: 0.04147653568455641, Val Loss: 0.04742225600140435 +2024-07-23 01:01:38.380 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 2/50, Train Loss: 0.04188365486564396, Val Loss: 0.047041129107986177 +2024-07-23 01:01:44.721 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 3/50, Train Loss: 0.04161923366645686, Val Loss: 0.04716712640864509 +2024-07-23 01:01:51.074 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 4/50, Train Loss: 0.04171469932247838, Val Loss: 0.04702029622026852 +2024-07-23 01:01:57.412 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 5/50, Train Loss: 0.04165565871077476, Val Loss: 0.04691629047904696 +2024-07-23 01:02:03.757 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 6/50, Train Loss: 0.04144151266262257, Val Loss: 0.046925026391233714 +2024-07-23 01:02:10.167 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 7/50, Train Loss: 0.041623148062139105, Val Loss: 0.046585140111190936 +2024-07-23 01:02:16.531 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 8/50, Train Loss: 0.04147191152727003, Val Loss: 0.046907463403684756 +2024-07-23 01:02:22.868 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 9/50, Train Loss: 0.04144172174789065, Val Loss: 0.04702987133392266 +2024-07-23 01:02:29.187 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 10/50, Train Loss: 0.04167458567795136, Val Loss: 0.04726261597658907 +2024-07-23 01:02:29.188 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 01:02:29.188 No tasks are waiting in the queue. +2024-07-23 01:02:29.188 4 steps have not started: log_model, model_scores, end, validate_model. +2024-07-23 01:02:35.577 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 11/50, Train Loss: 0.04136173348043033, Val Loss: 0.04687401029680457 +2024-07-23 01:02:41.922 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 12/50, Train Loss: 0.04148492447549491, Val Loss: 0.047470742676939286 +2024-07-23 01:02:48.251 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 13/50, Train Loss: 0.04145321400045491, Val Loss: 0.048247464267270904 +2024-07-23 01:02:54.618 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 14/50, Train Loss: 0.041305123540244515, Val Loss: 0.046741715871862 +2024-07-23 01:03:00.958 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 15/50, Train Loss: 0.041363127717225674, Val Loss: 0.048064229690602846 +2024-07-23 01:03:07.346 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 16/50, Train Loss: 0.0410594623267865, Val Loss: 0.04672041695032801 +2024-07-23 01:03:13.793 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 17/50, Train Loss: 0.04102945875832074, Val Loss: 0.04789709613791534 +2024-07-23 01:03:20.116 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 18/50, Train Loss: 0.04106797004560772, Val Loss: 0.047548861641969 +2024-07-23 01:03:26.485 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 19/50, Train Loss: 0.041017561052128566, Val Loss: 0.04706039418067251 +2024-07-23 01:03:32.854 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 20/50, Train Loss: 0.04075400846199595, Val Loss: 0.04718764850071498 +2024-07-23 01:03:39.325 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 21/50, Train Loss: 0.04116499111753145, Val Loss: 0.0466777501893895 +2024-07-23 01:03:45.686 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 22/50, Train Loss: 0.04099749056823391, Val Loss: 0.04666295035609177 +2024-07-23 01:03:52.039 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 23/50, Train Loss: 0.04092949790973886, Val Loss: 0.04729488119482994 +2024-07-23 01:03:58.399 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 24/50, Train Loss: 0.04068477877931629, Val Loss: 0.04761925265192986 +2024-07-23 01:04:04.784 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 25/50, Train Loss: 0.04068050946263101, Val Loss: 0.04610155304627759 +2024-07-23 01:04:11.168 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 26/50, Train Loss: 0.040640782310272294, Val Loss: 0.04848877925957952 +2024-07-23 01:04:17.558 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 27/50, Train Loss: 0.04049759330026966, Val Loss: 0.04738385762487139 +2024-07-23 01:04:23.956 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 28/50, Train Loss: 0.040560216234206296, Val Loss: 0.04695437029004097 +2024-07-23 01:04:30.296 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 29/50, Train Loss: 0.040570685814181676, Val Loss: 0.047347862805639 +2024-07-23 01:04:36.680 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 30/50, Train Loss: 0.04047157983932135, Val Loss: 0.046701666606324056 +2024-07-23 01:04:43.127 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 31/50, Train Loss: 0.04030906962458607, Val Loss: 0.04626571078385625 +2024-07-23 01:04:49.580 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 32/50, Train Loss: 0.040186551721136776, Val Loss: 0.046712881912078175 +2024-07-23 01:04:55.992 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 33/50, Train Loss: 0.04034964051499641, Val Loss: 0.04848650667284216 +2024-07-23 01:05:02.458 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 34/50, Train Loss: 0.040975315965336864, Val Loss: 0.04624775690691812 +2024-07-23 01:05:08.847 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 35/50, Train Loss: 0.040429220970371646, Val Loss: 0.045910284987517765 +2024-07-23 01:05:15.255 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 36/50, Train Loss: 0.0400283864612202, Val Loss: 0.046033066670809475 +2024-07-23 01:05:21.674 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 37/50, Train Loss: 0.03992179345687945, Val Loss: 0.04598101888384138 +2024-07-23 01:05:28.065 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 38/50, Train Loss: 0.04007960794319352, Val Loss: 0.046153008618525095 +2024-07-23 01:05:34.487 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 39/50, Train Loss: 0.03993269412530412, Val Loss: 0.04696149586566857 +2024-07-23 01:05:40.953 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 40/50, Train Loss: 0.04009979854759981, Val Loss: 0.04611445606819221 +2024-07-23 01:05:47.387 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 41/50, Train Loss: 0.040028413302070805, Val Loss: 0.045508188807538576 +2024-07-23 01:05:53.865 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 42/50, Train Loss: 0.03992193839479265, Val Loss: 0.047540506507669174 +2024-07-23 01:06:00.303 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 43/50, Train Loss: 0.03981791536504631, Val Loss: 0.04523720118616308 +2024-07-23 01:06:06.741 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 44/50, Train Loss: 0.039852545790963895, Val Loss: 0.046213723133717265 +2024-07-23 01:06:13.199 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 45/50, Train Loss: 0.03976323048202254, Val Loss: 0.04601864995700972 +2024-07-23 01:06:19.652 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 46/50, Train Loss: 0.03965043351590205, Val Loss: 0.045541493807520185 +2024-07-23 01:06:26.108 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 47/50, Train Loss: 0.03961210959195662, Val Loss: 0.04557865400399481 +2024-07-23 01:06:32.566 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 48/50, Train Loss: 0.0395906934608444, Val Loss: 0.04645983720464366 +2024-07-23 01:06:38.988 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 49/50, Train Loss: 0.03934630151275251, Val Loss: 0.046243545785546306 +2024-07-23 01:06:45.443 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 50/50, Train Loss: 0.039742475764142526, Val Loss: 0.04751145105276789 +2024-07-23 01:06:45.443 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Fold 3, MAPE: 9.13% +2024-07-23 01:06:45.554 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_10001_25000_LSTM//train_f3_bgd_education_10001_25000_LSTM.png +2024-07-23 01:06:53.498 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 1/50, Train Loss: 0.040442160020271935, Val Loss: 0.0432755710291011 +2024-07-23 01:07:01.448 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 2/50, Train Loss: 0.040331355702859915, Val Loss: 0.04327840182398047 +2024-07-23 01:07:09.377 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 3/50, Train Loss: 0.04010084715682542, Val Loss: 0.04285589578960623 +2024-07-23 01:07:17.297 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 4/50, Train Loss: 0.04023487849867549, Val Loss: 0.04245368566896234 +2024-07-23 01:07:25.263 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 5/50, Train Loss: 0.04000691595305314, Val Loss: 0.04380141092198236 +2024-07-23 01:07:33.182 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 6/50, Train Loss: 0.04008639804034055, Val Loss: 0.0429489903151989 +2024-07-23 01:07:33.182 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 01:07:33.182 No tasks are waiting in the queue. +2024-07-23 01:07:33.182 4 steps have not started: log_model, model_scores, end, validate_model. +2024-07-23 01:07:41.155 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 7/50, Train Loss: 0.03967945921052804, Val Loss: 0.04308420361152717 +2024-07-23 01:07:49.111 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 8/50, Train Loss: 0.039786600379337525, Val Loss: 0.042659750953316686 +2024-07-23 01:07:57.061 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 9/50, Train Loss: 0.039553411454818714, Val Loss: 0.04288352020084858 +2024-07-23 01:08:05.089 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 10/50, Train Loss: 0.0396889127555421, Val Loss: 0.04330358930996486 +2024-07-23 01:08:13.061 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 11/50, Train Loss: 0.04012569249875244, Val Loss: 0.042589771029140265 +2024-07-23 01:08:21.006 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 12/50, Train Loss: 0.039653281831107605, Val Loss: 0.04318141367818628 +2024-07-23 01:08:28.925 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 13/50, Train Loss: 0.03965639671974484, Val Loss: 0.04314267630023616 +2024-07-23 01:08:36.938 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 14/50, Train Loss: 0.03994322059697461, Val Loss: 0.04270251866962228 +2024-07-23 01:08:44.890 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 15/50, Train Loss: 0.039562795899979686, Val Loss: 0.04224897207958358 +2024-07-23 01:08:52.822 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 16/50, Train Loss: 0.03943179837888342, Val Loss: 0.043041090347937176 +2024-07-23 01:09:00.772 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 17/50, Train Loss: 0.039458933479056275, Val Loss: 0.04332430559609617 +2024-07-23 01:09:08.745 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 18/50, Train Loss: 0.03973101519433589, Val Loss: 0.04345747546425888 +2024-07-23 01:09:16.704 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 19/50, Train Loss: 0.03955002744607199, Val Loss: 0.04290186874568462 +2024-07-23 01:09:24.658 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 20/50, Train Loss: 0.03984231652756189, Val Loss: 0.04370916299521923 +2024-07-23 01:09:32.607 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 21/50, Train Loss: 0.03949014125284792, Val Loss: 0.043018301257065364 +2024-07-23 01:09:40.589 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 22/50, Train Loss: 0.03953830874257389, Val Loss: 0.04364108661455768 +2024-07-23 01:09:48.576 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 23/50, Train Loss: 0.03931790050761453, Val Loss: 0.04219228117061513 +2024-07-23 01:09:56.828 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 24/50, Train Loss: 0.039664506912231445, Val Loss: 0.042757929489016536 +2024-07-23 01:17:51.219 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 25/50, Train Loss: 0.039485734341473414, Val Loss: 0.042976754557873524 +2024-07-23 01:17:51.219 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 01:17:51.219 No tasks are waiting in the queue. +2024-07-23 01:17:51.219 4 steps have not started: log_model, model_scores, end, validate_model. +2024-07-23 01:17:59.464 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 26/50, Train Loss: 0.03936592075202999, Val Loss: 0.042696320505014485 +2024-07-23 01:18:07.659 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 27/50, Train Loss: 0.039201099468373704, Val Loss: 0.043035722098180226 +2024-07-23 01:18:15.860 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 28/50, Train Loss: 0.03960300474588213, Val Loss: 0.04331897481211594 +2024-07-23 01:18:24.047 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 29/50, Train Loss: 0.03979957864844594, Val Loss: 0.043566267006099224 +2024-07-23 01:20:02.472 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 30/50, Train Loss: 0.03943665720650862, Val Loss: 0.04314741375190871 +2024-07-23 01:20:10.393 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 31/50, Train Loss: 0.05293416487181495, Val Loss: 0.05078156755438873 +2024-07-23 01:20:18.301 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 32/50, Train Loss: 0.05025918173721467, Val Loss: 0.05156035710658346 +2024-07-23 01:20:26.106 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 33/50, Train Loss: 0.04966265309987397, Val Loss: 0.049600416900856155 +2024-07-23 01:20:33.958 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 34/50, Train Loss: 0.04916031736794902, Val Loss: 0.04933631680905819 +2024-07-23 01:20:41.808 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 35/50, Train Loss: 0.04836809233730209, Val Loss: 0.04784338511526585 +2024-07-23 01:28:28.384 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 36/50, Train Loss: 0.04808329830438584, Val Loss: 0.047692688554525374 +2024-07-23 01:28:28.384 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 01:28:28.384 No tasks are waiting in the queue. +2024-07-23 01:28:28.384 4 steps have not started: log_model, model_scores, end, validate_model. +2024-07-23 01:28:36.210 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 37/50, Train Loss: 0.04728785856230848, Val Loss: 0.047287216463259285 +2024-07-23 01:28:44.097 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 38/50, Train Loss: 0.046943332486111544, Val Loss: 0.04750085462416921 +2024-07-23 01:28:52.048 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 39/50, Train Loss: 0.04668932140472977, Val Loss: 0.047122967562505176 +2024-07-23 01:28:59.952 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 40/50, Train Loss: 0.04649350306169055, Val Loss: 0.04722421972879342 +2024-07-23 01:29:07.849 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 41/50, Train Loss: 0.046086543860534825, Val Loss: 0.048302422729986055 +2024-07-23 01:29:15.793 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 42/50, Train Loss: 0.046047106064085304, Val Loss: 0.04694121245826994 +2024-07-23 01:29:23.786 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 43/50, Train Loss: 0.045374412935269975, Val Loss: 0.04579995258578232 +2024-07-23 01:29:31.760 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 44/50, Train Loss: 0.04529352475428718, Val Loss: 0.045824338256248404 +2024-07-23 01:29:39.729 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 45/50, Train Loss: 0.0449054769893316, Val Loss: 0.045134689605661804 +2024-07-23 01:29:47.678 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 46/50, Train Loss: 0.044855712324209596, Val Loss: 0.044760145779166906 +2024-07-23 01:29:55.686 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 47/50, Train Loss: 0.044557407476949966, Val Loss: 0.043304139216031344 +2024-07-23 01:30:03.639 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 48/50, Train Loss: 0.04412384766914036, Val Loss: 0.042991738420511995 +2024-07-23 01:30:11.688 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 49/50, Train Loss: 0.04382641060042313, Val Loss: 0.0434383401381118 +2024-07-23 01:30:19.671 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Epoch 50/50, Train Loss: 0.04369584385348463, Val Loss: 0.044858934144888604 +2024-07-23 01:30:19.671 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Fold 4, MAPE: 9.83% +2024-07-23 01:30:19.779 [45/cross_validate_train/457 (pid 42637)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_10001_25000_LSTM//train_f4_bgd_education_10001_25000_LSTM.png +2024-07-23 01:30:23.940 [45/cross_validate_train/457 (pid 42637)] Task finished successfully. +2024-07-23 01:30:23.970 [45/model_scores/458 (pid 47385)] Task is starting. +2024-07-23 01:30:25.341 [45/model_scores/458 (pid 47385)] INFO:__main__:Average Train Loss across all folds: 0.04772547689101334 +2024-07-23 01:30:28.988 [45/model_scores/458 (pid 47385)] INFO:__main__:Average Validation Loss across all folds: 0.04599682433264596 +2024-07-23 01:30:28.989 [45/model_scores/458 (pid 47385)] INFO:__main__:Average MAPE across all folds: 9.51% +2024-07-23 01:30:28.990 [45/model_scores/458 (pid 47385)] Task finished successfully. +2024-07-23 01:30:29.017 [45/validate_model/459 (pid 47418)] Task is starting. +2024-07-23 01:30:30.387 [45/validate_model/459 (pid 47418)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 01:30:31.157 [45/validate_model/459 (pid 47418)] INFO:__main__:Test Set MAPE: 8.58% +2024-07-23 01:30:31.494 [45/validate_model/459 (pid 47418)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_education_10001_25000_LSTM//test_bgd_education_10001_25000_LSTM.png +2024-07-23 01:30:31.927 [45/validate_model/459 (pid 47418)] Task finished successfully. +2024-07-23 01:30:31.954 [45/log_model/460 (pid 47429)] Task is starting. +2024-07-23 01:30:33.375 [45/log_model/460 (pid 47429)] INFO:__main__:Logging model bgd_education_10001_25000_LSTM +2024-07-23 01:30:33.376 [45/log_model/460 (pid 47429)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_education_10001_25000_LSTM//bgd_education_10001_25000_LSTM.pth +2024-07-23 01:36:58.277 [45/log_model/460 (pid 47429)] Task finished successfully. +2024-07-23 01:36:58.309 [45/end/461 (pid 47469)] Task is starting. +2024-07-23 01:36:58.309 1 task is running: end (1 running; 0 done). +2024-07-23 01:36:58.309 No tasks are waiting in the queue. +2024-07-23 01:36:59.686 [45/end/461 (pid 47469)] INFO:__main__:Pipeline end. +2024-07-23 01:36:59.992 [45/end/461 (pid 47469)] Task finished successfully. +2024-07-23 01:36:59.993 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/scaler_bgd_education_10001_25000_LSTM.pkl b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/scaler_bgd_education_10001_25000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..a19818eacc901c86b142dc6eb46c18c14b10b504 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/scaler_bgd_education_10001_25000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7389e91b71c76f69a9203d79e2a6fef9695af46a12a183eeb32fd610ebecd69b +size 557 diff --git a/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/test_bgd_education_10001_25000_LSTM.png b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/test_bgd_education_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..9d6132a7234b8f71e257b7e307ef1e7e64deadcf Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/test_bgd_education_10001_25000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f0_bgd_education_10001_25000_LSTM.png b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f0_bgd_education_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..748277036e2360d323a3258d3b4a9b2f49a46871 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f0_bgd_education_10001_25000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f1_bgd_education_10001_25000_LSTM.png b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f1_bgd_education_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..8844fa479b448c3d52504e817d7a833ac2103d38 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f1_bgd_education_10001_25000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f2_bgd_education_10001_25000_LSTM.png b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f2_bgd_education_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..afceb8c982fe8a95a800e8bdf53fd4102feb5929 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f2_bgd_education_10001_25000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f3_bgd_education_10001_25000_LSTM.png b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f3_bgd_education_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..ffe8391b6f3c2b35b70e43fed1124589a96447a9 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f3_bgd_education_10001_25000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f4_bgd_education_10001_25000_LSTM.png b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f4_bgd_education_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..c9b8db687d7f23f582e1b0bb3c162d35dff49442 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_10001_25000_LSTM/train_f4_bgd_education_10001_25000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/bgd_education_1001_5000_LSTM.pth b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/bgd_education_1001_5000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..48d1a40dfbcd4f4b33d185e2a492aa2129fc0810 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/bgd_education_1001_5000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a0a1b5c81ef08b8320ba2f9421d819c5bb150a3f1c4715498b238633c42b94 +size 46746 diff --git a/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/output.txt b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..f676c82ddaadbf6540112b6644d7c0faf6aafcee --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/output.txt @@ -0,0 +1,759 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-22 23:14:03.952 Workflow starting (run-id 41): +2024-07-22 23:14:04.017 [41/start/393 (pid 22791)] Task is starting. +2024-07-22 23:14:05.498 [41/start/393 (pid 22791)] INFO:__main__:Starting BGD linear flow.. +2024-07-22 23:14:05.818 [41/start/393 (pid 22791)] Task finished successfully. +2024-07-22 23:14:05.843 [41/ingest/394 (pid 22802)] Task is starting. +2024-07-22 23:14:07.314 [41/ingest/394 (pid 22802)] INFO:__main__:Fetching dataframe.. +2024-07-22 23:14:07.328 [41/ingest/394 (pid 22802)] INFO:__main__:Dataframe fetching complete.. +2024-07-22 23:14:11.141 [41/ingest/394 (pid 22802)] Task finished successfully. +2024-07-22 23:14:11.176 [41/pick_2017_data/395 (pid 22839)] Task is starting. +2024-07-22 23:14:12.657 [41/pick_2017_data/395 (pid 22839)] INFO:__main__:Picking 2017 data.. +2024-07-22 23:14:12.967 [41/pick_2017_data/395 (pid 22839)] Task finished successfully. +2024-07-22 23:14:12.997 [41/fill_missing_data/396 (pid 22852)] Task is starting. +2024-07-22 23:14:14.458 [41/fill_missing_data/396 (pid 22852)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-22 23:14:14.463 [41/fill_missing_data/396 (pid 22852)] INFO:__main__:NaN counts per column: +2024-07-22 23:14:14.463 [41/fill_missing_data/396 (pid 22852)] INFO:__main__:Panther_education_Misty 20 +2024-07-22 23:14:14.463 [41/fill_missing_data/396 (pid 22852)] Panther_education_Jonathan 647 +2024-07-22 23:14:14.463 [41/fill_missing_data/396 (pid 22852)] dtype: int64 +2024-07-22 23:14:14.463 [41/fill_missing_data/396 (pid 22852)] --- Logging error --- +2024-07-22 23:14:14.464 [41/fill_missing_data/396 (pid 22852)] Traceback (most recent call last): +2024-07-22 23:14:14.464 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] msg = self.format(record) +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] return fmt.format(record) +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] record.message = record.getMessage() +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] msg = msg % self.args +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] TypeError: not all arguments converted during string formatting +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] Call stack: +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] BGD_LinearFlow() +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] cli.main(self) +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] return func(*args, **kwargs) +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] return self.main(*args, **kwargs) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] rv = self.invoke(ctx) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] return ctx.invoke(self.callback, **ctx.params) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] return callback(*args, **kwargs) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] return f(get_current_context(), *args, **kwargs) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] task.run_step( +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] self._exec_step_function(step_func) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] step_function() +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] self.missing_values = find_nan_counts(self.df) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] Arguments: (667,) +2024-07-22 23:14:15.171 [41/fill_missing_data/396 (pid 22852)] Task finished successfully. +2024-07-22 23:14:15.207 [41/find_median/397 (pid 22865)] Task is starting. +2024-07-22 23:14:57.770 [41/find_median/397 (pid 22865)] INFO:__main__:Computing and using median.. +2024-07-22 23:14:58.667 [41/find_median/397 (pid 22865)] Task finished successfully. +2024-07-22 23:14:58.710 [41/aggregate_data/398 (pid 22879)] Task is starting. +2024-07-22 23:15:00.159 [41/aggregate_data/398 (pid 22879)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-22 23:15:03.935 [41/aggregate_data/398 (pid 22879)] Task finished successfully. +2024-07-22 23:15:03.967 [41/split_data/399 (pid 22912)] Task is starting. +2024-07-22 23:15:05.808 [41/split_data/399 (pid 22912)] INFO:__main__:Splitting data into test and train... +2024-07-22 23:15:10.734 [41/split_data/399 (pid 22912)] Task finished successfully. +2024-07-22 23:15:10.765 [41/make_x_y/400 (pid 22945)] Task is starting. +2024-07-22 23:15:12.553 [41/make_x_y/400 (pid 22945)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-22 23:15:12.960 [41/make_x_y/400 (pid 22945)] Shape of y_train: (6648, 1) +2024-07-22 23:15:12.960 [41/make_x_y/400 (pid 22945)] Shape of X_test: (1392, 360, 1) +2024-07-22 23:15:12.960 [41/make_x_y/400 (pid 22945)] Shape of y_test: (1392, 1) +2024-07-22 23:15:12.961 [41/make_x_y/400 (pid 22945)] Task finished successfully. +2024-07-22 23:15:12.994 [41/cross_validate_train/401 (pid 22956)] Task is starting. +2024-07-22 23:15:14.447 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Creating bgd_education_1001_5000_LSTM +2024-07-22 23:15:14.447 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Performing cross validation.. +2024-07-22 23:15:16.945 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 1/50, Train Loss: 0.23844603832278932, Val Loss: 0.11745713097708566 +2024-07-22 23:15:18.841 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 2/50, Train Loss: 0.1248673745564052, Val Loss: 0.16311834252306393 +2024-07-22 23:15:20.752 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 3/50, Train Loss: 0.13246745020151138, Val Loss: 0.11229337485773223 +2024-07-22 23:15:22.649 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 4/50, Train Loss: 0.12135674549000604, Val Loss: 0.11706960573792458 +2024-07-22 23:15:24.542 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 5/50, Train Loss: 0.11353808364697865, Val Loss: 0.11735751458576747 +2024-07-22 23:15:26.496 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 6/50, Train Loss: 0.10865136001791273, Val Loss: 0.1183809295296669 +2024-07-22 23:15:28.431 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 7/50, Train Loss: 0.10680570251175335, Val Loss: 0.11275234573653765 +2024-07-22 23:15:30.384 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 8/50, Train Loss: 0.10292662382125854, Val Loss: 0.11349320528762681 +2024-07-22 23:15:32.313 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 9/50, Train Loss: 0.100266382843256, Val Loss: 0.10984032079577447 +2024-07-22 23:15:34.243 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 10/50, Train Loss: 0.09553019127675465, Val Loss: 0.11273064102445329 +2024-07-22 23:15:36.181 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 11/50, Train Loss: 0.09314211830496788, Val Loss: 0.10928705824272973 +2024-07-22 23:15:38.159 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 12/50, Train Loss: 0.08872548107589995, Val Loss: 0.10757055122937476 +2024-07-22 23:15:40.109 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 13/50, Train Loss: 0.08347886694329125, Val Loss: 0.10455316549965314 +2024-07-22 23:15:42.099 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 14/50, Train Loss: 0.07885710054210254, Val Loss: 0.10020135257925306 +2024-07-22 23:15:44.027 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 15/50, Train Loss: 0.07483141289225646, Val Loss: 0.09395351101245199 +2024-07-22 23:19:44.632 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 16/50, Train Loss: 0.06941010004707746, Val Loss: 0.07727980773363795 +2024-07-22 23:19:44.632 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:19:44.632 No tasks are waiting in the queue. +2024-07-22 23:19:44.632 4 steps have not started: end, validate_model, model_scores, log_model. +2024-07-22 23:19:46.556 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 17/50, Train Loss: 0.06318688467144966, Val Loss: 0.05348245538771153 +2024-07-22 23:19:48.500 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 18/50, Train Loss: 0.056310589664748736, Val Loss: 0.04586413430848292 +2024-07-22 23:19:50.402 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 19/50, Train Loss: 0.05406644328364304, Val Loss: 0.04726298403527055 +2024-07-22 23:19:52.311 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 20/50, Train Loss: 0.05328482820519379, Val Loss: 0.04533301224665982 +2024-07-22 23:19:54.216 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 21/50, Train Loss: 0.05221842538033213, Val Loss: 0.04596072890396629 +2024-07-22 23:19:56.119 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 22/50, Train Loss: 0.05150213316082954, Val Loss: 0.0451941276501332 +2024-07-22 23:19:58.063 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 23/50, Train Loss: 0.0507684408554009, Val Loss: 0.044439891912043096 +2024-07-22 23:19:59.989 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 24/50, Train Loss: 0.05036718398332596, Val Loss: 0.043051764289183274 +2024-07-22 23:20:01.922 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 25/50, Train Loss: 0.04978153939758028, Val Loss: 0.04289085963474853 +2024-07-22 23:20:03.839 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 26/50, Train Loss: 0.049183270069105285, Val Loss: 0.04320616950946195 +2024-07-22 23:20:05.763 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 27/50, Train Loss: 0.048618835264018605, Val Loss: 0.043593842030635904 +2024-07-22 23:20:07.692 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 28/50, Train Loss: 0.04815941777612482, Val Loss: 0.04313587149871247 +2024-07-22 23:20:09.612 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 29/50, Train Loss: 0.04772150277027062, Val Loss: 0.043147561300013744 +2024-07-22 23:20:11.507 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 30/50, Train Loss: 0.047097518401486536, Val Loss: 0.0426808983619724 +2024-07-22 23:20:13.423 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 31/50, Train Loss: 0.04668276911335332, Val Loss: 0.04225211420229503 +2024-07-22 23:20:15.346 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 32/50, Train Loss: 0.046265304195029396, Val Loss: 0.04137167502194643 +2024-07-22 23:20:17.262 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 33/50, Train Loss: 0.045997871139219826, Val Loss: 0.04076770357787609 +2024-07-22 23:20:19.224 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 34/50, Train Loss: 0.04586539465401854, Val Loss: 0.039805090320961814 +2024-07-22 23:20:21.138 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 35/50, Train Loss: 0.0452691808875118, Val Loss: 0.040048704163304395 +2024-07-22 23:20:23.077 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 36/50, Train Loss: 0.04524641196642603, Val Loss: 0.040473649251673904 +2024-07-22 23:20:24.995 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 37/50, Train Loss: 0.04493607729673386, Val Loss: 0.040866776236466 +2024-07-22 23:20:26.915 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 38/50, Train Loss: 0.044788743768419535, Val Loss: 0.040107797219284945 +2024-07-22 23:20:28.879 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 39/50, Train Loss: 0.04466301729636533, Val Loss: 0.03994958507163184 +2024-07-22 23:20:30.801 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 40/50, Train Loss: 0.044561815368277684, Val Loss: 0.039539940069828715 +2024-07-22 23:20:34.880 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 41/50, Train Loss: 0.044359402997153144, Val Loss: 0.0392955092979329 +2024-07-22 23:20:36.786 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 42/50, Train Loss: 0.04453124148505075, Val Loss: 0.04012269776846681 +2024-07-22 23:20:38.757 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 43/50, Train Loss: 0.04453773487891469, Val Loss: 0.039773778138416156 +2024-07-22 23:20:40.660 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 44/50, Train Loss: 0.04453379602304527, Val Loss: 0.040075573750904626 +2024-07-22 23:20:42.590 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 45/50, Train Loss: 0.044442568027547424, Val Loss: 0.039434704344187464 +2024-07-22 23:20:44.505 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 46/50, Train Loss: 0.04436403518276555, Val Loss: 0.039266541520399705 +2024-07-22 23:20:46.420 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 47/50, Train Loss: 0.04435105440872056, Val Loss: 0.039094666045691284 +2024-07-22 23:20:48.376 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 48/50, Train Loss: 0.04431589038244316, Val Loss: 0.03935509342700243 +2024-07-22 23:20:50.289 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 49/50, Train Loss: 0.04428167215415409, Val Loss: 0.03977243980126721 +2024-07-22 23:20:52.214 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 50/50, Train Loss: 0.04432824216783047, Val Loss: 0.0403047080550875 +2024-07-22 23:20:52.214 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Fold 0, MAPE: 7.10% +2024-07-22 23:20:52.548 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_1001_5000_LSTM//train_f0_bgd_education_1001_5000_LSTM.png +2024-07-22 23:20:55.973 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 1/50, Train Loss: 0.04227846638698663, Val Loss: 0.04244649559259415 +2024-07-22 23:20:59.320 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 2/50, Train Loss: 0.04108594051961388, Val Loss: 0.03944830974297864 +2024-07-22 23:21:02.670 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 3/50, Train Loss: 0.041268110222050125, Val Loss: 0.040276124754122324 +2024-07-22 23:21:06.019 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 4/50, Train Loss: 0.04141135181167296, Val Loss: 0.040868111912693295 +2024-07-22 23:21:09.371 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 5/50, Train Loss: 0.04116869817620942, Val Loss: 0.04211319025073733 +2024-07-22 23:21:12.734 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 6/50, Train Loss: 0.041207646325762785, Val Loss: 0.04263857826590538 +2024-07-22 23:21:16.100 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 7/50, Train Loss: 0.04110247269272804, Val Loss: 0.04099526990737234 +2024-07-22 23:21:19.481 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 8/50, Train Loss: 0.041098746484411613, Val Loss: 0.04141126839177949 +2024-07-22 23:23:38.152 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 9/50, Train Loss: 0.04105042280363185, Val Loss: 0.04218813351222447 +2024-07-22 23:23:41.547 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 10/50, Train Loss: 0.04110074020656092, Val Loss: 0.04163396315915244 +2024-07-22 23:23:44.904 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 11/50, Train Loss: 0.04101666088349053, Val Loss: 0.04211120307445526 +2024-07-22 23:23:48.277 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 12/50, Train Loss: 0.040954597121370694, Val Loss: 0.04161417580076626 +2024-07-22 23:23:51.607 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 13/50, Train Loss: 0.04066544163173863, Val Loss: 0.04158962443470955 +2024-07-22 23:23:54.959 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 14/50, Train Loss: 0.041014241121177165, Val Loss: 0.04128930563373225 +2024-07-22 23:23:58.323 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 15/50, Train Loss: 0.04078382567635604, Val Loss: 0.040937975155455726 +2024-07-22 23:24:01.639 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 16/50, Train Loss: 0.04084470174940569, Val Loss: 0.041514602463160244 +2024-07-22 23:24:04.992 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 17/50, Train Loss: 0.04070551996784551, Val Loss: 0.041251180320978166 +2024-07-22 23:24:08.360 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 18/50, Train Loss: 0.04068833777148809, Val Loss: 0.041255838104656765 +2024-07-22 23:24:11.716 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 19/50, Train Loss: 0.04060099704989365, Val Loss: 0.04132931376142161 +2024-07-22 23:24:15.060 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 20/50, Train Loss: 0.04078049139518823, Val Loss: 0.04152276441454887 +2024-07-22 23:24:18.450 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 21/50, Train Loss: 0.04075131964470659, Val Loss: 0.04181132699762072 +2024-07-22 23:24:21.811 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 22/50, Train Loss: 0.04065820312659655, Val Loss: 0.041647477660860334 +2024-07-22 23:25:51.727 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 23/50, Train Loss: 0.04058743485116533, Val Loss: 0.04288804233074188 +2024-07-22 23:25:51.727 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:25:51.727 No tasks are waiting in the queue. +2024-07-22 23:25:51.727 4 steps have not started: end, validate_model, model_scores, log_model. +2024-07-22 23:25:55.127 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 24/50, Train Loss: 0.04059955912775227, Val Loss: 0.04284549898334912 +2024-07-22 23:25:58.666 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 25/50, Train Loss: 0.04058681757056287, Val Loss: 0.04194032134754317 +2024-07-22 23:26:02.087 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 26/50, Train Loss: 0.040666645392775536, Val Loss: 0.041181398928165434 +2024-07-22 23:26:05.473 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 27/50, Train Loss: 0.040502563185457675, Val Loss: 0.04163104056247643 +2024-07-22 23:26:08.845 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 28/50, Train Loss: 0.04052436097658106, Val Loss: 0.04166373743542603 +2024-07-22 23:26:12.257 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 29/50, Train Loss: 0.04047479020165545, Val Loss: 0.04184691395078387 +2024-07-22 23:26:15.672 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 30/50, Train Loss: 0.04042936486325094, Val Loss: 0.04300464476857867 +2024-07-22 23:26:19.067 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 31/50, Train Loss: 0.040535404719412325, Val Loss: 0.041784523214612686 +2024-07-22 23:26:22.485 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 32/50, Train Loss: 0.040416923218539784, Val Loss: 0.04243765255170209 +2024-07-22 23:26:25.850 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 33/50, Train Loss: 0.04020933463637318, Val Loss: 0.0400979395955801 +2024-07-22 23:26:29.253 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 34/50, Train Loss: 0.04021579683093088, Val Loss: 0.04112591354974678 +2024-07-22 23:26:32.630 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 35/50, Train Loss: 0.040118811239621466, Val Loss: 0.04004326393561704 +2024-07-22 23:26:36.037 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 36/50, Train Loss: 0.039957411800112044, Val Loss: 0.03972843262766089 +2024-07-22 23:26:39.454 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 37/50, Train Loss: 0.03995712929006134, Val Loss: 0.03929509100105081 +2024-07-22 23:26:42.874 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 38/50, Train Loss: 0.04005200977304152, Val Loss: 0.039875152174915586 +2024-07-22 23:26:46.220 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 39/50, Train Loss: 0.040309887964810644, Val Loss: 0.040212058063064306 +2024-07-22 23:26:49.620 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 40/50, Train Loss: 0.04080633686057159, Val Loss: 0.041995115152427126 +2024-07-22 23:26:53.038 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 41/50, Train Loss: 0.04038008754806859, Val Loss: 0.0403859301337174 +2024-07-22 23:26:56.435 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 42/50, Train Loss: 0.03997199669746416, Val Loss: 0.04000776122723307 +2024-07-22 23:26:59.909 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 43/50, Train Loss: 0.04023916266326393, Val Loss: 0.04193918758205005 +2024-07-22 23:27:03.316 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 44/50, Train Loss: 0.04045405789677586, Val Loss: 0.04032174551061222 +2024-07-22 23:27:06.662 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 45/50, Train Loss: 0.04004376017089401, Val Loss: 0.04011315086058208 +2024-07-22 23:27:10.160 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 46/50, Train Loss: 0.04012474697083235, Val Loss: 0.0422972673284156 +2024-07-22 23:27:13.517 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 47/50, Train Loss: 0.04007433744679604, Val Loss: 0.04330742933920451 +2024-07-22 23:27:16.885 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 48/50, Train Loss: 0.04002835014835, Val Loss: 0.04270298241504601 +2024-07-22 23:27:20.226 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 49/50, Train Loss: 0.040049633556710824, Val Loss: 0.04380314908921719 +2024-07-22 23:27:23.563 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 50/50, Train Loss: 0.040057722173099004, Val Loss: 0.04157210003052439 +2024-07-22 23:27:23.563 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Fold 1, MAPE: 5.56% +2024-07-22 23:27:23.657 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_1001_5000_LSTM//train_f1_bgd_education_1001_5000_LSTM.png +2024-07-22 23:27:28.441 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 1/50, Train Loss: 0.039298454944330916, Val Loss: 0.02781063009585653 +2024-07-22 23:27:33.315 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 2/50, Train Loss: 0.039358295571918674, Val Loss: 0.027226911378758295 +2024-07-22 23:27:38.044 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 3/50, Train Loss: 0.039053308338714905, Val Loss: 0.027158314575042045 +2024-07-22 23:27:42.750 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 4/50, Train Loss: 0.03911650656328465, Val Loss: 0.027164922654628755 +2024-07-22 23:27:47.454 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 5/50, Train Loss: 0.039075266632538005, Val Loss: 0.027066608145833015 +2024-07-22 23:27:52.204 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 6/50, Train Loss: 0.03886612327411198, Val Loss: 0.027109011794839585 +2024-07-22 23:27:56.929 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 7/50, Train Loss: 0.038756078153920286, Val Loss: 0.027076857377375876 +2024-07-22 23:28:01.632 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 8/50, Train Loss: 0.038926126095108114, Val Loss: 0.027042039377348764 +2024-07-22 23:28:06.355 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 9/50, Train Loss: 0.03888223157264292, Val Loss: 0.027173618865864616 +2024-07-22 23:28:11.138 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 10/50, Train Loss: 0.03901149112229737, Val Loss: 0.027086202161652702 +2024-07-22 23:28:15.858 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 11/50, Train Loss: 0.0386835489816104, Val Loss: 0.027008601278066636 +2024-07-22 23:28:20.597 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 12/50, Train Loss: 0.03869291245400046, Val Loss: 0.02703202542449747 +2024-07-22 23:28:25.320 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 13/50, Train Loss: 0.03871046122199354, Val Loss: 0.02714952975511551 +2024-07-22 23:28:30.047 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 14/50, Train Loss: 0.03859319906825057, Val Loss: 0.02705501371196338 +2024-07-22 23:28:34.777 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 15/50, Train Loss: 0.03867987222754611, Val Loss: 0.02700208696935858 +2024-07-22 23:28:39.519 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 16/50, Train Loss: 0.03884354138818498, Val Loss: 0.02711310674037252 +2024-07-22 23:28:44.273 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 17/50, Train Loss: 0.03880679732761704, Val Loss: 0.027017018305403845 +2024-07-22 23:28:49.040 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 18/50, Train Loss: 0.03851998341269791, Val Loss: 0.02714391414608274 +2024-07-22 23:28:53.786 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 19/50, Train Loss: 0.03875031694769859, Val Loss: 0.027090771975261826 +2024-07-22 23:28:58.503 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 20/50, Train Loss: 0.03849669970357074, Val Loss: 0.027023381952728544 +2024-07-22 23:29:03.234 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 21/50, Train Loss: 0.03851240640506148, Val Loss: 0.027023928027067864 +2024-07-22 23:29:07.959 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 22/50, Train Loss: 0.03862167494550634, Val Loss: 0.0269876878708601 +2024-07-22 23:29:12.708 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 23/50, Train Loss: 0.038620749407877714, Val Loss: 0.02701615978564535 +2024-07-22 23:29:17.466 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 24/50, Train Loss: 0.03833018940909264, Val Loss: 0.02696883151573794 +2024-07-22 23:29:22.215 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 25/50, Train Loss: 0.03834826424897004, Val Loss: 0.027027393824287822 +2024-07-22 23:29:26.935 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 26/50, Train Loss: 0.038411148313361294, Val Loss: 0.02698687884424414 +2024-07-22 23:29:31.684 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 27/50, Train Loss: 0.03846851183782117, Val Loss: 0.027156290890915053 +2024-07-22 23:29:36.427 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 28/50, Train Loss: 0.038413664299206667, Val Loss: 0.02702914300773825 +2024-07-22 23:29:41.195 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 29/50, Train Loss: 0.03846996388613032, Val Loss: 0.026946776200618063 +2024-07-22 23:29:45.957 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 30/50, Train Loss: 0.038510383187363356, Val Loss: 0.02694903111883572 +2024-07-22 23:29:50.700 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 31/50, Train Loss: 0.03845440353660916, Val Loss: 0.026996071317366192 +2024-07-22 23:29:55.448 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 32/50, Train Loss: 0.0384357825297719, Val Loss: 0.026973761405263627 +2024-07-22 23:30:00.173 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 33/50, Train Loss: 0.03842593028317564, Val Loss: 0.02694731301495007 +2024-07-22 23:30:04.917 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 34/50, Train Loss: 0.0384057447887384, Val Loss: 0.026948797064168112 +2024-07-22 23:30:09.644 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 35/50, Train Loss: 0.03844547029942847, Val Loss: 0.026926936901041438 +2024-07-22 23:30:14.404 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 36/50, Train Loss: 0.03841585675791766, Val Loss: 0.02702523193189076 +2024-07-22 23:30:19.135 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 37/50, Train Loss: 0.038292590636186875, Val Loss: 0.02698346653154918 +2024-07-22 23:30:23.842 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 38/50, Train Loss: 0.03837788227694826, Val Loss: 0.026921264827251434 +2024-07-22 23:30:28.574 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 39/50, Train Loss: 0.03819730173115833, Val Loss: 0.026992419149194445 +2024-07-22 23:30:33.334 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 40/50, Train Loss: 0.038324664472244106, Val Loss: 0.026913884973951748 +2024-07-22 23:30:38.078 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 41/50, Train Loss: 0.0382904847815203, Val Loss: 0.027021638144339832 +2024-07-22 23:30:42.820 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 42/50, Train Loss: 0.038352816320884116, Val Loss: 0.027019586733409335 +2024-07-22 23:30:47.570 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 43/50, Train Loss: 0.03831666743812653, Val Loss: 0.026952993018286568 +2024-07-22 23:30:52.317 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 44/50, Train Loss: 0.03837714073821329, Val Loss: 0.0270306262586798 +2024-07-22 23:30:52.317 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:30:52.317 No tasks are waiting in the queue. +2024-07-22 23:30:52.317 4 steps have not started: end, validate_model, model_scores, log_model. +2024-07-22 23:30:57.059 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 45/50, Train Loss: 0.03818621672689915, Val Loss: 0.027022254786321094 +2024-07-22 23:31:01.839 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 46/50, Train Loss: 0.03839223503242605, Val Loss: 0.02690503405673163 +2024-07-22 23:31:06.558 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 47/50, Train Loss: 0.03834683095248273, Val Loss: 0.026983794782842907 +2024-07-22 23:31:11.329 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 48/50, Train Loss: 0.03853007020034756, Val Loss: 0.02696817974959101 +2024-07-22 23:31:16.052 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 49/50, Train Loss: 0.03851705460021129, Val Loss: 0.026956388247864588 +2024-07-22 23:31:20.816 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 50/50, Train Loss: 0.038181469426490366, Val Loss: 0.026930303392665726 +2024-07-22 23:31:20.817 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Fold 2, MAPE: 3.10% +2024-07-22 23:31:20.926 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_1001_5000_LSTM//train_f2_bgd_education_1001_5000_LSTM.png +2024-07-22 23:31:27.089 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 1/50, Train Loss: 0.035579174314793065, Val Loss: 0.027204112974660737 +2024-07-22 23:31:33.309 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 2/50, Train Loss: 0.036315893962068094, Val Loss: 0.02754156110542161 +2024-07-22 23:31:39.485 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 3/50, Train Loss: 0.03593814129800462, Val Loss: 0.027213407307863237 +2024-07-22 23:31:45.632 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 4/50, Train Loss: 0.03593079665367552, Val Loss: 0.027977825860892022 +2024-07-22 23:31:51.794 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 5/50, Train Loss: 0.03603699129986034, Val Loss: 0.02771444868828569 +2024-07-22 23:31:57.977 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 6/50, Train Loss: 0.03581103473472938, Val Loss: 0.027080851633633884 +2024-07-22 23:32:04.208 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 7/50, Train Loss: 0.03592387187502367, Val Loss: 0.028022803738713263 +2024-07-22 23:32:10.380 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 8/50, Train Loss: 0.035918856287549296, Val Loss: 0.027370743027755193 +2024-07-22 23:32:16.516 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 9/50, Train Loss: 0.0360593727367709, Val Loss: 0.02780430998120989 +2024-07-22 23:32:22.744 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 10/50, Train Loss: 0.0358158114681141, Val Loss: 0.028041969346148627 +2024-07-22 23:32:28.904 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 11/50, Train Loss: 0.035912107173755446, Val Loss: 0.026960393147809163 +2024-07-22 23:32:35.114 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 12/50, Train Loss: 0.035584724039214546, Val Loss: 0.027951586406145777 +2024-07-22 23:32:41.297 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 13/50, Train Loss: 0.03624557764034906, Val Loss: 0.0278280854757343 +2024-07-22 23:32:47.435 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 14/50, Train Loss: 0.03608941999029556, Val Loss: 0.0275885491498879 +2024-07-22 23:32:53.622 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 15/50, Train Loss: 0.035878532432126915, Val Loss: 0.0275612862514598 +2024-07-22 23:32:59.762 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 16/50, Train Loss: 0.035949635574017924, Val Loss: 0.02725987226835319 +2024-07-22 23:33:05.915 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 17/50, Train Loss: 0.03589650302482166, Val Loss: 0.0272409767976829 +2024-07-22 23:33:12.169 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 18/50, Train Loss: 0.03568927224779086, Val Loss: 0.02742875676069941 +2024-07-22 23:33:18.294 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 19/50, Train Loss: 0.035866911033932254, Val Loss: 0.027331642700093133 +2024-07-22 23:33:24.465 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 20/50, Train Loss: 0.03569290433883024, Val Loss: 0.027860797462718828 +2024-07-22 23:33:30.646 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 21/50, Train Loss: 0.0355577637716163, Val Loss: 0.027462800059999737 +2024-07-22 23:33:36.811 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 22/50, Train Loss: 0.03554776558156708, Val Loss: 0.027353985128658158 +2024-07-22 23:33:43.023 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 23/50, Train Loss: 0.03552175667002904, Val Loss: 0.027300798573664256 +2024-07-22 23:33:49.185 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 24/50, Train Loss: 0.03572892078714405, Val Loss: 0.027826931327581406 +2024-07-22 23:33:55.374 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 25/50, Train Loss: 0.03571042698546708, Val Loss: 0.027830421552062036 +2024-07-22 23:34:01.528 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 26/50, Train Loss: 0.035654343456941115, Val Loss: 0.027723051767264095 +2024-07-22 23:34:07.646 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 27/50, Train Loss: 0.03553226408582154, Val Loss: 0.027884573436209134 +2024-07-22 23:34:13.845 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 28/50, Train Loss: 0.035627657902701726, Val Loss: 0.02715140629027571 +2024-07-22 23:34:20.036 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 29/50, Train Loss: 0.03545942157506943, Val Loss: 0.027634649298020772 +2024-07-22 23:34:26.212 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 30/50, Train Loss: 0.035636767932622555, Val Loss: 0.027681637768234527 +2024-07-22 23:34:32.412 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 31/50, Train Loss: 0.035535603962677846, Val Loss: 0.027721708374364034 +2024-07-22 23:34:38.606 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 32/50, Train Loss: 0.035512187317174544, Val Loss: 0.02747222919549261 +2024-07-22 23:34:44.802 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 33/50, Train Loss: 0.035684775902802564, Val Loss: 0.026733562563146865 +2024-07-22 23:34:51.015 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 34/50, Train Loss: 0.035437206650595014, Val Loss: 0.02700998139168535 +2024-07-22 23:34:57.177 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 35/50, Train Loss: 0.03533642836879912, Val Loss: 0.0271640985671963 +2024-07-22 23:35:03.368 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 36/50, Train Loss: 0.03533931133478022, Val Loss: 0.02812940872141293 +2024-07-22 23:35:09.536 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 37/50, Train Loss: 0.03548345054171497, Val Loss: 0.02750066359128271 +2024-07-22 23:35:15.743 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 38/50, Train Loss: 0.03558765000683798, Val Loss: 0.027459716690438136 +2024-07-22 23:35:21.932 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 39/50, Train Loss: 0.03546507580862414, Val Loss: 0.027247142578874315 +2024-07-22 23:35:28.104 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 40/50, Train Loss: 0.03521239606114172, Val Loss: 0.02702173196843692 +2024-07-22 23:35:34.304 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 41/50, Train Loss: 0.03539481081014915, Val Loss: 0.027292561743940624 +2024-07-22 23:35:40.492 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 42/50, Train Loss: 0.035266914679635344, Val Loss: 0.027144998578088626 +2024-07-22 23:35:46.865 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 43/50, Train Loss: 0.03548388528175277, Val Loss: 0.02732955345085689 +2024-07-22 23:35:53.129 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 44/50, Train Loss: 0.03564466202376987, Val Loss: 0.027627663473997796 +2024-07-22 23:35:53.129 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:35:53.129 No tasks are waiting in the queue. +2024-07-22 23:35:53.129 4 steps have not started: end, validate_model, model_scores, log_model. +2024-07-22 23:35:59.385 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 45/50, Train Loss: 0.035390319965994184, Val Loss: 0.027445755366768156 +2024-07-22 23:36:05.587 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 46/50, Train Loss: 0.03530425112694502, Val Loss: 0.02756736305143152 +2024-07-22 23:36:11.787 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 47/50, Train Loss: 0.035441908884873925, Val Loss: 0.02777573045875345 +2024-07-22 23:36:17.951 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 48/50, Train Loss: 0.03550269161250523, Val Loss: 0.02700630511556353 +2024-07-22 23:36:24.163 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 49/50, Train Loss: 0.03528364442905291, Val Loss: 0.027245071743215832 +2024-07-22 23:36:30.432 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 50/50, Train Loss: 0.03529104550884996, Val Loss: 0.027507279387542178 +2024-07-22 23:36:30.432 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Fold 3, MAPE: 2.59% +2024-07-22 23:36:30.559 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_1001_5000_LSTM//train_f3_bgd_education_1001_5000_LSTM.png +2024-07-22 23:36:38.216 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 1/50, Train Loss: 0.028354394881204628, Val Loss: 0.025141086402748314 +2024-07-22 23:36:45.835 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 2/50, Train Loss: 0.028618579109509785, Val Loss: 0.025100437844438214 +2024-07-22 23:36:53.425 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 3/50, Train Loss: 0.028505329818775255, Val Loss: 0.025102285348943303 +2024-07-22 23:37:01.079 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 4/50, Train Loss: 0.028280183030613536, Val Loss: 0.02507099394819566 +2024-07-22 23:37:08.679 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 5/50, Train Loss: 0.028405748227418495, Val Loss: 0.02519373308335032 +2024-07-22 23:37:16.262 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 6/50, Train Loss: 0.028456811921606803, Val Loss: 0.025073193226541793 +2024-07-22 23:37:23.913 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 7/50, Train Loss: 0.02835153832753328, Val Loss: 0.025274662167898247 +2024-07-22 23:37:31.516 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 8/50, Train Loss: 0.02834901829175223, Val Loss: 0.025081913279635566 +2024-07-22 23:37:39.116 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 9/50, Train Loss: 0.028370676872630913, Val Loss: 0.025216722621449403 +2024-07-22 23:37:46.702 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 10/50, Train Loss: 0.02854201008683477, Val Loss: 0.025128368022186414 +2024-07-22 23:37:54.321 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 11/50, Train Loss: 0.028354992292521673, Val Loss: 0.025090237094887665 +2024-07-22 23:38:01.972 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 12/50, Train Loss: 0.028381942059502178, Val Loss: 0.025231531049524036 +2024-07-22 23:38:09.612 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 13/50, Train Loss: 0.028559849174671817, Val Loss: 0.025176908794258324 +2024-07-22 23:38:17.189 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 14/50, Train Loss: 0.02844682473946234, Val Loss: 0.02513815989451749 +2024-07-22 23:38:24.801 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 15/50, Train Loss: 0.028320465445646953, Val Loss: 0.025219415075012616 +2024-07-22 23:38:32.428 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 16/50, Train Loss: 0.028330557064378058, Val Loss: 0.02505513759596007 +2024-07-22 23:38:40.042 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 17/50, Train Loss: 0.028544834392123866, Val Loss: 0.025127086815025124 +2024-07-22 23:38:47.665 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 18/50, Train Loss: 0.02847543162368666, Val Loss: 0.025128263607621194 +2024-07-22 23:38:55.286 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 19/50, Train Loss: 0.028404510885091692, Val Loss: 0.02511448511587722 +2024-07-22 23:39:02.925 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 20/50, Train Loss: 0.028328373514372725, Val Loss: 0.025090275438768524 +2024-07-22 23:39:10.526 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 21/50, Train Loss: 0.02827734762438755, Val Loss: 0.025170206039079598 +2024-07-22 23:39:18.184 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 22/50, Train Loss: 0.028358964886430693, Val Loss: 0.025307855755090713 +2024-07-22 23:39:25.868 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 23/50, Train Loss: 0.02825179562807597, Val Loss: 0.025128695421985217 +2024-07-22 23:39:33.465 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 24/50, Train Loss: 0.02830087088433833, Val Loss: 0.025283809565007687 +2024-07-22 23:39:41.075 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 25/50, Train Loss: 0.028282704554369736, Val Loss: 0.025204904749989508 +2024-07-22 23:39:48.691 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 26/50, Train Loss: 0.028291453858944535, Val Loss: 0.025093889848462173 +2024-07-22 23:39:56.318 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 27/50, Train Loss: 0.02835300770834431, Val Loss: 0.025292689938630375 +2024-07-22 23:40:03.947 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 28/50, Train Loss: 0.028171646076886134, Val Loss: 0.02510658678199564 +2024-07-22 23:40:11.603 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 29/50, Train Loss: 0.02821880393265479, Val Loss: 0.02505731854055609 +2024-07-22 23:40:19.198 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 30/50, Train Loss: 0.028210143505156726, Val Loss: 0.025078851436930043 +2024-07-22 23:40:26.894 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 31/50, Train Loss: 0.02829894679330889, Val Loss: 0.025066361922238555 +2024-07-22 23:40:34.532 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 32/50, Train Loss: 0.028234097892525553, Val Loss: 0.025068412641329425 +2024-07-22 23:40:42.154 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 33/50, Train Loss: 0.028262082546221458, Val Loss: 0.025226685112076146 +2024-07-22 23:40:49.784 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 34/50, Train Loss: 0.028246224119231618, Val Loss: 0.02521861344575882 +2024-07-22 23:40:57.415 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 35/50, Train Loss: 0.028211617563990342, Val Loss: 0.025214590850685323 +2024-07-22 23:40:57.415 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:40:57.415 No tasks are waiting in the queue. +2024-07-22 23:40:57.415 4 steps have not started: end, validate_model, model_scores, log_model. +2024-07-22 23:41:05.042 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 36/50, Train Loss: 0.028221357324770813, Val Loss: 0.025145808766995157 +2024-07-22 23:41:12.698 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 37/50, Train Loss: 0.028175434070885522, Val Loss: 0.02502914055117539 +2024-07-22 23:41:20.340 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 38/50, Train Loss: 0.028240342565608777, Val Loss: 0.025155717586832386 +2024-07-22 23:41:27.953 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 39/50, Train Loss: 0.028214504267891932, Val Loss: 0.025160714079226765 +2024-07-22 23:41:35.597 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 40/50, Train Loss: 0.028172479348321414, Val Loss: 0.025278688461652824 +2024-07-22 23:41:43.232 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 41/50, Train Loss: 0.02812522818901758, Val Loss: 0.025176646347556796 +2024-07-22 23:41:50.880 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 42/50, Train Loss: 0.028228303133884722, Val Loss: 0.02517246287316084 +2024-07-22 23:41:58.519 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 43/50, Train Loss: 0.028235915106260914, Val Loss: 0.02504360710403749 +2024-07-22 23:42:06.216 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 44/50, Train Loss: 0.028171033775112753, Val Loss: 0.02499994646225657 +2024-07-22 23:42:13.859 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 45/50, Train Loss: 0.028161545637352712, Val Loss: 0.02506519476217883 +2024-07-22 23:42:21.542 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 46/50, Train Loss: 0.028065000168294055, Val Loss: 0.025045109859534672 +2024-07-22 23:42:29.154 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 47/50, Train Loss: 0.02805374759709698, Val Loss: 0.025133096612989902 +2024-07-22 23:42:36.801 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 48/50, Train Loss: 0.028189723005239992, Val Loss: 0.025102563654737814 +2024-07-22 23:42:44.456 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 49/50, Train Loss: 0.028196418422392046, Val Loss: 0.025081932225397657 +2024-07-22 23:42:52.098 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 50/50, Train Loss: 0.0281544190339059, Val Loss: 0.025034326128661633 +2024-07-22 23:42:52.098 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Fold 4, MAPE: 2.88% +2024-07-22 23:42:52.198 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_1001_5000_LSTM//train_f4_bgd_education_1001_5000_LSTM.png +2024-07-22 23:42:56.685 [41/cross_validate_train/401 (pid 22956)] Task finished successfully. +2024-07-22 23:42:56.713 [41/model_scores/402 (pid 27559)] Task is starting. +2024-07-22 23:42:58.178 [41/model_scores/402 (pid 27559)] INFO:__main__:Average Train Loss across all folds: 0.03720257966203514 +2024-07-22 23:43:02.044 [41/model_scores/402 (pid 27559)] INFO:__main__:Average Validation Loss across all folds: 0.03226974339889628 +2024-07-22 23:43:02.045 [41/model_scores/402 (pid 27559)] INFO:__main__:Average MAPE across all folds: 4.24% +2024-07-22 23:43:02.045 [41/model_scores/402 (pid 27559)] Task finished successfully. +2024-07-22 23:43:02.076 [41/validate_model/403 (pid 27592)] Task is starting. +2024-07-22 23:43:03.554 [41/validate_model/403 (pid 27592)] INFO:__main__:Validating LSTM on test set.. +2024-07-22 23:43:04.271 [41/validate_model/403 (pid 27592)] INFO:__main__:Test Set MAPE: 6.38% +2024-07-22 23:43:04.619 [41/validate_model/403 (pid 27592)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_education_1001_5000_LSTM//test_bgd_education_1001_5000_LSTM.png +2024-07-22 23:43:05.055 [41/validate_model/403 (pid 27592)] Task finished successfully. +2024-07-22 23:43:05.085 [41/log_model/404 (pid 27605)] Task is starting. +2024-07-22 23:43:06.571 [41/log_model/404 (pid 27605)] INFO:__main__:Logging model bgd_education_1001_5000_LSTM +2024-07-22 23:43:06.572 [41/log_model/404 (pid 27605)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_education_1001_5000_LSTM//bgd_education_1001_5000_LSTM.pth +2024-07-22 23:43:10.476 [41/log_model/404 (pid 27605)] Task finished successfully. +2024-07-22 23:43:10.503 [41/end/405 (pid 27641)] Task is starting. +2024-07-22 23:43:11.966 [41/end/405 (pid 27641)] INFO:__main__:Pipeline end. +2024-07-22 23:43:12.273 [41/end/405 (pid 27641)] Task finished successfully. +2024-07-22 23:43:12.274 Done! +✅ Run('BGD_LinearFlow/41') succeeded: +-- stdout -- +2024-07-22 23:14:03.952 Workflow starting (run-id 41): +2024-07-22 23:14:04.017 [41/start/393 (pid 22791)] Task is starting. +2024-07-22 23:14:05.498 [41/start/393 (pid 22791)] INFO:__main__:Starting BGD linear flow.. +2024-07-22 23:14:05.818 [41/start/393 (pid 22791)] Task finished successfully. +2024-07-22 23:14:05.843 [41/ingest/394 (pid 22802)] Task is starting. +2024-07-22 23:14:07.314 [41/ingest/394 (pid 22802)] INFO:__main__:Fetching dataframe.. +2024-07-22 23:14:07.328 [41/ingest/394 (pid 22802)] INFO:__main__:Dataframe fetching complete.. +2024-07-22 23:14:11.141 [41/ingest/394 (pid 22802)] Task finished successfully. +2024-07-22 23:14:11.176 [41/pick_2017_data/395 (pid 22839)] Task is starting. +2024-07-22 23:14:12.657 [41/pick_2017_data/395 (pid 22839)] INFO:__main__:Picking 2017 data.. +2024-07-22 23:14:12.967 [41/pick_2017_data/395 (pid 22839)] Task finished successfully. +2024-07-22 23:14:12.997 [41/fill_missing_data/396 (pid 22852)] Task is starting. +2024-07-22 23:14:14.458 [41/fill_missing_data/396 (pid 22852)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-22 23:14:14.463 [41/fill_missing_data/396 (pid 22852)] INFO:__main__:NaN counts per column: +2024-07-22 23:14:14.463 [41/fill_missing_data/396 (pid 22852)] INFO:__main__:Panther_education_Misty 20 +2024-07-22 23:14:14.463 [41/fill_missing_data/396 (pid 22852)] Panther_education_Jonathan 647 +2024-07-22 23:14:14.463 [41/fill_missing_data/396 (pid 22852)] dtype: int64 +2024-07-22 23:14:14.463 [41/fill_missing_data/396 (pid 22852)] --- Logging error --- +2024-07-22 23:14:14.464 [41/fill_missing_data/396 (pid 22852)] Traceback (most recent call last): +2024-07-22 23:14:14.464 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] msg = self.format(record) +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] return fmt.format(record) +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] record.message = record.getMessage() +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] msg = msg % self.args +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] TypeError: not all arguments converted during string formatting +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] Call stack: +2024-07-22 23:14:14.465 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] BGD_LinearFlow() +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] cli.main(self) +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] return func(*args, **kwargs) +2024-07-22 23:14:15.169 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] return self.main(*args, **kwargs) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] rv = self.invoke(ctx) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] return ctx.invoke(self.callback, **ctx.params) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] return callback(*args, **kwargs) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] return f(get_current_context(), *args, **kwargs) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] task.run_step( +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] self._exec_step_function(step_func) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] step_function() +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] self.missing_values = find_nan_counts(self.df) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-22 23:14:15.170 [41/fill_missing_data/396 (pid 22852)] Arguments: (667,) +2024-07-22 23:14:15.171 [41/fill_missing_data/396 (pid 22852)] Task finished successfully. +2024-07-22 23:14:15.207 [41/find_median/397 (pid 22865)] Task is starting. +2024-07-22 23:14:57.770 [41/find_median/397 (pid 22865)] INFO:__main__:Computing and using median.. +2024-07-22 23:14:58.667 [41/find_median/397 (pid 22865)] Task finished successfully. +2024-07-22 23:14:58.710 [41/aggregate_data/398 (pid 22879)] Task is starting. +2024-07-22 23:15:00.159 [41/aggregate_data/398 (pid 22879)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-22 23:15:03.935 [41/aggregate_data/398 (pid 22879)] Task finished successfully. +2024-07-22 23:15:03.967 [41/split_data/399 (pid 22912)] Task is starting. +2024-07-22 23:15:05.808 [41/split_data/399 (pid 22912)] INFO:__main__:Splitting data into test and train... +2024-07-22 23:15:10.734 [41/split_data/399 (pid 22912)] Task finished successfully. +2024-07-22 23:15:10.765 [41/make_x_y/400 (pid 22945)] Task is starting. +2024-07-22 23:15:12.553 [41/make_x_y/400 (pid 22945)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-22 23:15:12.960 [41/make_x_y/400 (pid 22945)] Shape of y_train: (6648, 1) +2024-07-22 23:15:12.960 [41/make_x_y/400 (pid 22945)] Shape of X_test: (1392, 360, 1) +2024-07-22 23:15:12.960 [41/make_x_y/400 (pid 22945)] Shape of y_test: (1392, 1) +2024-07-22 23:15:12.961 [41/make_x_y/400 (pid 22945)] Task finished successfully. +2024-07-22 23:15:12.994 [41/cross_validate_train/401 (pid 22956)] Task is starting. +2024-07-22 23:15:14.447 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Creating bgd_education_1001_5000_LSTM +2024-07-22 23:15:14.447 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Performing cross validation.. +2024-07-22 23:15:16.945 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 1/50, Train Loss: 0.23844603832278932, Val Loss: 0.11745713097708566 +2024-07-22 23:15:18.841 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 2/50, Train Loss: 0.1248673745564052, Val Loss: 0.16311834252306393 +2024-07-22 23:15:20.752 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 3/50, Train Loss: 0.13246745020151138, Val Loss: 0.11229337485773223 +2024-07-22 23:15:22.649 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 4/50, Train Loss: 0.12135674549000604, Val Loss: 0.11706960573792458 +2024-07-22 23:15:24.542 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 5/50, Train Loss: 0.11353808364697865, Val Loss: 0.11735751458576747 +2024-07-22 23:15:26.496 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 6/50, Train Loss: 0.10865136001791273, Val Loss: 0.1183809295296669 +2024-07-22 23:15:28.431 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 7/50, Train Loss: 0.10680570251175335, Val Loss: 0.11275234573653765 +2024-07-22 23:15:30.384 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 8/50, Train Loss: 0.10292662382125854, Val Loss: 0.11349320528762681 +2024-07-22 23:15:32.313 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 9/50, Train Loss: 0.100266382843256, Val Loss: 0.10984032079577447 +2024-07-22 23:15:34.243 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 10/50, Train Loss: 0.09553019127675465, Val Loss: 0.11273064102445329 +2024-07-22 23:15:36.181 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 11/50, Train Loss: 0.09314211830496788, Val Loss: 0.10928705824272973 +2024-07-22 23:15:38.159 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 12/50, Train Loss: 0.08872548107589995, Val Loss: 0.10757055122937476 +2024-07-22 23:15:40.109 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 13/50, Train Loss: 0.08347886694329125, Val Loss: 0.10455316549965314 +2024-07-22 23:15:42.099 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 14/50, Train Loss: 0.07885710054210254, Val Loss: 0.10020135257925306 +2024-07-22 23:15:44.027 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 15/50, Train Loss: 0.07483141289225646, Val Loss: 0.09395351101245199 +2024-07-22 23:19:44.632 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 16/50, Train Loss: 0.06941010004707746, Val Loss: 0.07727980773363795 +2024-07-22 23:19:44.632 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:19:44.632 No tasks are waiting in the queue. +2024-07-22 23:19:44.632 4 steps have not started: end, validate_model, model_scores, log_model. +2024-07-22 23:19:46.556 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 17/50, Train Loss: 0.06318688467144966, Val Loss: 0.05348245538771153 +2024-07-22 23:19:48.500 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 18/50, Train Loss: 0.056310589664748736, Val Loss: 0.04586413430848292 +2024-07-22 23:19:50.402 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 19/50, Train Loss: 0.05406644328364304, Val Loss: 0.04726298403527055 +2024-07-22 23:19:52.311 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 20/50, Train Loss: 0.05328482820519379, Val Loss: 0.04533301224665982 +2024-07-22 23:19:54.216 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 21/50, Train Loss: 0.05221842538033213, Val Loss: 0.04596072890396629 +2024-07-22 23:19:56.119 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 22/50, Train Loss: 0.05150213316082954, Val Loss: 0.0451941276501332 +2024-07-22 23:19:58.063 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 23/50, Train Loss: 0.0507684408554009, Val Loss: 0.044439891912043096 +2024-07-22 23:19:59.989 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 24/50, Train Loss: 0.05036718398332596, Val Loss: 0.043051764289183274 +2024-07-22 23:20:01.922 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 25/50, Train Loss: 0.04978153939758028, Val Loss: 0.04289085963474853 +2024-07-22 23:20:03.839 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 26/50, Train Loss: 0.049183270069105285, Val Loss: 0.04320616950946195 +2024-07-22 23:20:05.763 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 27/50, Train Loss: 0.048618835264018605, Val Loss: 0.043593842030635904 +2024-07-22 23:20:07.692 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 28/50, Train Loss: 0.04815941777612482, Val Loss: 0.04313587149871247 +2024-07-22 23:20:09.612 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 29/50, Train Loss: 0.04772150277027062, Val Loss: 0.043147561300013744 +2024-07-22 23:20:11.507 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 30/50, Train Loss: 0.047097518401486536, Val Loss: 0.0426808983619724 +2024-07-22 23:20:13.423 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 31/50, Train Loss: 0.04668276911335332, Val Loss: 0.04225211420229503 +2024-07-22 23:20:15.346 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 32/50, Train Loss: 0.046265304195029396, Val Loss: 0.04137167502194643 +2024-07-22 23:20:17.262 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 33/50, Train Loss: 0.045997871139219826, Val Loss: 0.04076770357787609 +2024-07-22 23:20:19.224 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 34/50, Train Loss: 0.04586539465401854, Val Loss: 0.039805090320961814 +2024-07-22 23:20:21.138 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 35/50, Train Loss: 0.0452691808875118, Val Loss: 0.040048704163304395 +2024-07-22 23:20:23.077 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 36/50, Train Loss: 0.04524641196642603, Val Loss: 0.040473649251673904 +2024-07-22 23:20:24.995 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 37/50, Train Loss: 0.04493607729673386, Val Loss: 0.040866776236466 +2024-07-22 23:20:26.915 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 38/50, Train Loss: 0.044788743768419535, Val Loss: 0.040107797219284945 +2024-07-22 23:20:28.879 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 39/50, Train Loss: 0.04466301729636533, Val Loss: 0.03994958507163184 +2024-07-22 23:20:30.801 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 40/50, Train Loss: 0.044561815368277684, Val Loss: 0.039539940069828715 +2024-07-22 23:20:34.880 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 41/50, Train Loss: 0.044359402997153144, Val Loss: 0.0392955092979329 +2024-07-22 23:20:36.786 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 42/50, Train Loss: 0.04453124148505075, Val Loss: 0.04012269776846681 +2024-07-22 23:20:38.757 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 43/50, Train Loss: 0.04453773487891469, Val Loss: 0.039773778138416156 +2024-07-22 23:20:40.660 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 44/50, Train Loss: 0.04453379602304527, Val Loss: 0.040075573750904626 +2024-07-22 23:20:42.590 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 45/50, Train Loss: 0.044442568027547424, Val Loss: 0.039434704344187464 +2024-07-22 23:20:44.505 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 46/50, Train Loss: 0.04436403518276555, Val Loss: 0.039266541520399705 +2024-07-22 23:20:46.420 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 47/50, Train Loss: 0.04435105440872056, Val Loss: 0.039094666045691284 +2024-07-22 23:20:48.376 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 48/50, Train Loss: 0.04431589038244316, Val Loss: 0.03935509342700243 +2024-07-22 23:20:50.289 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 49/50, Train Loss: 0.04428167215415409, Val Loss: 0.03977243980126721 +2024-07-22 23:20:52.214 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 50/50, Train Loss: 0.04432824216783047, Val Loss: 0.0403047080550875 +2024-07-22 23:20:52.214 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Fold 0, MAPE: 7.10% +2024-07-22 23:20:52.548 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_1001_5000_LSTM//train_f0_bgd_education_1001_5000_LSTM.png +2024-07-22 23:20:55.973 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 1/50, Train Loss: 0.04227846638698663, Val Loss: 0.04244649559259415 +2024-07-22 23:20:59.320 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 2/50, Train Loss: 0.04108594051961388, Val Loss: 0.03944830974297864 +2024-07-22 23:21:02.670 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 3/50, Train Loss: 0.041268110222050125, Val Loss: 0.040276124754122324 +2024-07-22 23:21:06.019 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 4/50, Train Loss: 0.04141135181167296, Val Loss: 0.040868111912693295 +2024-07-22 23:21:09.371 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 5/50, Train Loss: 0.04116869817620942, Val Loss: 0.04211319025073733 +2024-07-22 23:21:12.734 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 6/50, Train Loss: 0.041207646325762785, Val Loss: 0.04263857826590538 +2024-07-22 23:21:16.100 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 7/50, Train Loss: 0.04110247269272804, Val Loss: 0.04099526990737234 +2024-07-22 23:21:19.481 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 8/50, Train Loss: 0.041098746484411613, Val Loss: 0.04141126839177949 +2024-07-22 23:23:38.152 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 9/50, Train Loss: 0.04105042280363185, Val Loss: 0.04218813351222447 +2024-07-22 23:23:41.547 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 10/50, Train Loss: 0.04110074020656092, Val Loss: 0.04163396315915244 +2024-07-22 23:23:44.904 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 11/50, Train Loss: 0.04101666088349053, Val Loss: 0.04211120307445526 +2024-07-22 23:23:48.277 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 12/50, Train Loss: 0.040954597121370694, Val Loss: 0.04161417580076626 +2024-07-22 23:23:51.607 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 13/50, Train Loss: 0.04066544163173863, Val Loss: 0.04158962443470955 +2024-07-22 23:23:54.959 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 14/50, Train Loss: 0.041014241121177165, Val Loss: 0.04128930563373225 +2024-07-22 23:23:58.323 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 15/50, Train Loss: 0.04078382567635604, Val Loss: 0.040937975155455726 +2024-07-22 23:24:01.639 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 16/50, Train Loss: 0.04084470174940569, Val Loss: 0.041514602463160244 +2024-07-22 23:24:04.992 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 17/50, Train Loss: 0.04070551996784551, Val Loss: 0.041251180320978166 +2024-07-22 23:24:08.360 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 18/50, Train Loss: 0.04068833777148809, Val Loss: 0.041255838104656765 +2024-07-22 23:24:11.716 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 19/50, Train Loss: 0.04060099704989365, Val Loss: 0.04132931376142161 +2024-07-22 23:24:15.060 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 20/50, Train Loss: 0.04078049139518823, Val Loss: 0.04152276441454887 +2024-07-22 23:24:18.450 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 21/50, Train Loss: 0.04075131964470659, Val Loss: 0.04181132699762072 +2024-07-22 23:24:21.811 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 22/50, Train Loss: 0.04065820312659655, Val Loss: 0.041647477660860334 +2024-07-22 23:25:51.727 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 23/50, Train Loss: 0.04058743485116533, Val Loss: 0.04288804233074188 +2024-07-22 23:25:51.727 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:25:51.727 No tasks are waiting in the queue. +2024-07-22 23:25:51.727 4 steps have not started: end, validate_model, model_scores, log_model. +2024-07-22 23:25:55.127 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 24/50, Train Loss: 0.04059955912775227, Val Loss: 0.04284549898334912 +2024-07-22 23:25:58.666 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 25/50, Train Loss: 0.04058681757056287, Val Loss: 0.04194032134754317 +2024-07-22 23:26:02.087 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 26/50, Train Loss: 0.040666645392775536, Val Loss: 0.041181398928165434 +2024-07-22 23:26:05.473 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 27/50, Train Loss: 0.040502563185457675, Val Loss: 0.04163104056247643 +2024-07-22 23:26:08.845 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 28/50, Train Loss: 0.04052436097658106, Val Loss: 0.04166373743542603 +2024-07-22 23:26:12.257 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 29/50, Train Loss: 0.04047479020165545, Val Loss: 0.04184691395078387 +2024-07-22 23:26:15.672 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 30/50, Train Loss: 0.04042936486325094, Val Loss: 0.04300464476857867 +2024-07-22 23:26:19.067 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 31/50, Train Loss: 0.040535404719412325, Val Loss: 0.041784523214612686 +2024-07-22 23:26:22.485 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 32/50, Train Loss: 0.040416923218539784, Val Loss: 0.04243765255170209 +2024-07-22 23:26:25.850 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 33/50, Train Loss: 0.04020933463637318, Val Loss: 0.0400979395955801 +2024-07-22 23:26:29.253 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 34/50, Train Loss: 0.04021579683093088, Val Loss: 0.04112591354974678 +2024-07-22 23:26:32.630 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 35/50, Train Loss: 0.040118811239621466, Val Loss: 0.04004326393561704 +2024-07-22 23:26:36.037 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 36/50, Train Loss: 0.039957411800112044, Val Loss: 0.03972843262766089 +2024-07-22 23:26:39.454 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 37/50, Train Loss: 0.03995712929006134, Val Loss: 0.03929509100105081 +2024-07-22 23:26:42.874 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 38/50, Train Loss: 0.04005200977304152, Val Loss: 0.039875152174915586 +2024-07-22 23:26:46.220 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 39/50, Train Loss: 0.040309887964810644, Val Loss: 0.040212058063064306 +2024-07-22 23:26:49.620 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 40/50, Train Loss: 0.04080633686057159, Val Loss: 0.041995115152427126 +2024-07-22 23:26:53.038 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 41/50, Train Loss: 0.04038008754806859, Val Loss: 0.0403859301337174 +2024-07-22 23:26:56.435 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 42/50, Train Loss: 0.03997199669746416, Val Loss: 0.04000776122723307 +2024-07-22 23:26:59.909 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 43/50, Train Loss: 0.04023916266326393, Val Loss: 0.04193918758205005 +2024-07-22 23:27:03.316 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 44/50, Train Loss: 0.04045405789677586, Val Loss: 0.04032174551061222 +2024-07-22 23:27:06.662 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 45/50, Train Loss: 0.04004376017089401, Val Loss: 0.04011315086058208 +2024-07-22 23:27:10.160 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 46/50, Train Loss: 0.04012474697083235, Val Loss: 0.0422972673284156 +2024-07-22 23:27:13.517 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 47/50, Train Loss: 0.04007433744679604, Val Loss: 0.04330742933920451 +2024-07-22 23:27:16.885 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 48/50, Train Loss: 0.04002835014835, Val Loss: 0.04270298241504601 +2024-07-22 23:27:20.226 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 49/50, Train Loss: 0.040049633556710824, Val Loss: 0.04380314908921719 +2024-07-22 23:27:23.563 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 50/50, Train Loss: 0.040057722173099004, Val Loss: 0.04157210003052439 +2024-07-22 23:27:23.563 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Fold 1, MAPE: 5.56% +2024-07-22 23:27:23.657 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_1001_5000_LSTM//train_f1_bgd_education_1001_5000_LSTM.png +2024-07-22 23:27:28.441 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 1/50, Train Loss: 0.039298454944330916, Val Loss: 0.02781063009585653 +2024-07-22 23:27:33.315 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 2/50, Train Loss: 0.039358295571918674, Val Loss: 0.027226911378758295 +2024-07-22 23:27:38.044 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 3/50, Train Loss: 0.039053308338714905, Val Loss: 0.027158314575042045 +2024-07-22 23:27:42.750 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 4/50, Train Loss: 0.03911650656328465, Val Loss: 0.027164922654628755 +2024-07-22 23:27:47.454 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 5/50, Train Loss: 0.039075266632538005, Val Loss: 0.027066608145833015 +2024-07-22 23:27:52.204 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 6/50, Train Loss: 0.03886612327411198, Val Loss: 0.027109011794839585 +2024-07-22 23:27:56.929 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 7/50, Train Loss: 0.038756078153920286, Val Loss: 0.027076857377375876 +2024-07-22 23:28:01.632 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 8/50, Train Loss: 0.038926126095108114, Val Loss: 0.027042039377348764 +2024-07-22 23:28:06.355 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 9/50, Train Loss: 0.03888223157264292, Val Loss: 0.027173618865864616 +2024-07-22 23:28:11.138 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 10/50, Train Loss: 0.03901149112229737, Val Loss: 0.027086202161652702 +2024-07-22 23:28:15.858 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 11/50, Train Loss: 0.0386835489816104, Val Loss: 0.027008601278066636 +2024-07-22 23:28:20.597 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 12/50, Train Loss: 0.03869291245400046, Val Loss: 0.02703202542449747 +2024-07-22 23:28:25.320 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 13/50, Train Loss: 0.03871046122199354, Val Loss: 0.02714952975511551 +2024-07-22 23:28:30.047 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 14/50, Train Loss: 0.03859319906825057, Val Loss: 0.02705501371196338 +2024-07-22 23:28:34.777 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 15/50, Train Loss: 0.03867987222754611, Val Loss: 0.02700208696935858 +2024-07-22 23:28:39.519 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 16/50, Train Loss: 0.03884354138818498, Val Loss: 0.02711310674037252 +2024-07-22 23:28:44.273 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 17/50, Train Loss: 0.03880679732761704, Val Loss: 0.027017018305403845 +2024-07-22 23:28:49.040 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 18/50, Train Loss: 0.03851998341269791, Val Loss: 0.02714391414608274 +2024-07-22 23:28:53.786 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 19/50, Train Loss: 0.03875031694769859, Val Loss: 0.027090771975261826 +2024-07-22 23:28:58.503 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 20/50, Train Loss: 0.03849669970357074, Val Loss: 0.027023381952728544 +2024-07-22 23:29:03.234 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 21/50, Train Loss: 0.03851240640506148, Val Loss: 0.027023928027067864 +2024-07-22 23:29:07.959 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 22/50, Train Loss: 0.03862167494550634, Val Loss: 0.0269876878708601 +2024-07-22 23:29:12.708 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 23/50, Train Loss: 0.038620749407877714, Val Loss: 0.02701615978564535 +2024-07-22 23:29:17.466 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 24/50, Train Loss: 0.03833018940909264, Val Loss: 0.02696883151573794 +2024-07-22 23:29:22.215 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 25/50, Train Loss: 0.03834826424897004, Val Loss: 0.027027393824287822 +2024-07-22 23:29:26.935 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 26/50, Train Loss: 0.038411148313361294, Val Loss: 0.02698687884424414 +2024-07-22 23:29:31.684 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 27/50, Train Loss: 0.03846851183782117, Val Loss: 0.027156290890915053 +2024-07-22 23:29:36.427 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 28/50, Train Loss: 0.038413664299206667, Val Loss: 0.02702914300773825 +2024-07-22 23:29:41.195 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 29/50, Train Loss: 0.03846996388613032, Val Loss: 0.026946776200618063 +2024-07-22 23:29:45.957 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 30/50, Train Loss: 0.038510383187363356, Val Loss: 0.02694903111883572 +2024-07-22 23:29:50.700 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 31/50, Train Loss: 0.03845440353660916, Val Loss: 0.026996071317366192 +2024-07-22 23:29:55.448 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 32/50, Train Loss: 0.0384357825297719, Val Loss: 0.026973761405263627 +2024-07-22 23:30:00.173 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 33/50, Train Loss: 0.03842593028317564, Val Loss: 0.02694731301495007 +2024-07-22 23:30:04.917 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 34/50, Train Loss: 0.0384057447887384, Val Loss: 0.026948797064168112 +2024-07-22 23:30:09.644 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 35/50, Train Loss: 0.03844547029942847, Val Loss: 0.026926936901041438 +2024-07-22 23:30:14.404 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 36/50, Train Loss: 0.03841585675791766, Val Loss: 0.02702523193189076 +2024-07-22 23:30:19.135 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 37/50, Train Loss: 0.038292590636186875, Val Loss: 0.02698346653154918 +2024-07-22 23:30:23.842 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 38/50, Train Loss: 0.03837788227694826, Val Loss: 0.026921264827251434 +2024-07-22 23:30:28.574 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 39/50, Train Loss: 0.03819730173115833, Val Loss: 0.026992419149194445 +2024-07-22 23:30:33.334 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 40/50, Train Loss: 0.038324664472244106, Val Loss: 0.026913884973951748 +2024-07-22 23:30:38.078 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 41/50, Train Loss: 0.0382904847815203, Val Loss: 0.027021638144339832 +2024-07-22 23:30:42.820 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 42/50, Train Loss: 0.038352816320884116, Val Loss: 0.027019586733409335 +2024-07-22 23:30:47.570 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 43/50, Train Loss: 0.03831666743812653, Val Loss: 0.026952993018286568 +2024-07-22 23:30:52.317 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 44/50, Train Loss: 0.03837714073821329, Val Loss: 0.0270306262586798 +2024-07-22 23:30:52.317 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:30:52.317 No tasks are waiting in the queue. +2024-07-22 23:30:52.317 4 steps have not started: end, validate_model, model_scores, log_model. +2024-07-22 23:30:57.059 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 45/50, Train Loss: 0.03818621672689915, Val Loss: 0.027022254786321094 +2024-07-22 23:31:01.839 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 46/50, Train Loss: 0.03839223503242605, Val Loss: 0.02690503405673163 +2024-07-22 23:31:06.558 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 47/50, Train Loss: 0.03834683095248273, Val Loss: 0.026983794782842907 +2024-07-22 23:31:11.329 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 48/50, Train Loss: 0.03853007020034756, Val Loss: 0.02696817974959101 +2024-07-22 23:31:16.052 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 49/50, Train Loss: 0.03851705460021129, Val Loss: 0.026956388247864588 +2024-07-22 23:31:20.816 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 50/50, Train Loss: 0.038181469426490366, Val Loss: 0.026930303392665726 +2024-07-22 23:31:20.817 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Fold 2, MAPE: 3.10% +2024-07-22 23:31:20.926 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_1001_5000_LSTM//train_f2_bgd_education_1001_5000_LSTM.png +2024-07-22 23:31:27.089 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 1/50, Train Loss: 0.035579174314793065, Val Loss: 0.027204112974660737 +2024-07-22 23:31:33.309 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 2/50, Train Loss: 0.036315893962068094, Val Loss: 0.02754156110542161 +2024-07-22 23:31:39.485 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 3/50, Train Loss: 0.03593814129800462, Val Loss: 0.027213407307863237 +2024-07-22 23:31:45.632 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 4/50, Train Loss: 0.03593079665367552, Val Loss: 0.027977825860892022 +2024-07-22 23:31:51.794 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 5/50, Train Loss: 0.03603699129986034, Val Loss: 0.02771444868828569 +2024-07-22 23:31:57.977 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 6/50, Train Loss: 0.03581103473472938, Val Loss: 0.027080851633633884 +2024-07-22 23:32:04.208 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 7/50, Train Loss: 0.03592387187502367, Val Loss: 0.028022803738713263 +2024-07-22 23:32:10.380 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 8/50, Train Loss: 0.035918856287549296, Val Loss: 0.027370743027755193 +2024-07-22 23:32:16.516 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 9/50, Train Loss: 0.0360593727367709, Val Loss: 0.02780430998120989 +2024-07-22 23:32:22.744 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 10/50, Train Loss: 0.0358158114681141, Val Loss: 0.028041969346148627 +2024-07-22 23:32:28.904 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 11/50, Train Loss: 0.035912107173755446, Val Loss: 0.026960393147809163 +2024-07-22 23:32:35.114 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 12/50, Train Loss: 0.035584724039214546, Val Loss: 0.027951586406145777 +2024-07-22 23:32:41.297 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 13/50, Train Loss: 0.03624557764034906, Val Loss: 0.0278280854757343 +2024-07-22 23:32:47.435 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 14/50, Train Loss: 0.03608941999029556, Val Loss: 0.0275885491498879 +2024-07-22 23:32:53.622 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 15/50, Train Loss: 0.035878532432126915, Val Loss: 0.0275612862514598 +2024-07-22 23:32:59.762 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 16/50, Train Loss: 0.035949635574017924, Val Loss: 0.02725987226835319 +2024-07-22 23:33:05.915 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 17/50, Train Loss: 0.03589650302482166, Val Loss: 0.0272409767976829 +2024-07-22 23:33:12.169 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 18/50, Train Loss: 0.03568927224779086, Val Loss: 0.02742875676069941 +2024-07-22 23:33:18.294 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 19/50, Train Loss: 0.035866911033932254, Val Loss: 0.027331642700093133 +2024-07-22 23:33:24.465 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 20/50, Train Loss: 0.03569290433883024, Val Loss: 0.027860797462718828 +2024-07-22 23:33:30.646 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 21/50, Train Loss: 0.0355577637716163, Val Loss: 0.027462800059999737 +2024-07-22 23:33:36.811 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 22/50, Train Loss: 0.03554776558156708, Val Loss: 0.027353985128658158 +2024-07-22 23:33:43.023 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 23/50, Train Loss: 0.03552175667002904, Val Loss: 0.027300798573664256 +2024-07-22 23:33:49.185 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 24/50, Train Loss: 0.03572892078714405, Val Loss: 0.027826931327581406 +2024-07-22 23:33:55.374 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 25/50, Train Loss: 0.03571042698546708, Val Loss: 0.027830421552062036 +2024-07-22 23:34:01.528 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 26/50, Train Loss: 0.035654343456941115, Val Loss: 0.027723051767264095 +2024-07-22 23:34:07.646 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 27/50, Train Loss: 0.03553226408582154, Val Loss: 0.027884573436209134 +2024-07-22 23:34:13.845 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 28/50, Train Loss: 0.035627657902701726, Val Loss: 0.02715140629027571 +2024-07-22 23:34:20.036 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 29/50, Train Loss: 0.03545942157506943, Val Loss: 0.027634649298020772 +2024-07-22 23:34:26.212 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 30/50, Train Loss: 0.035636767932622555, Val Loss: 0.027681637768234527 +2024-07-22 23:34:32.412 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 31/50, Train Loss: 0.035535603962677846, Val Loss: 0.027721708374364034 +2024-07-22 23:34:38.606 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 32/50, Train Loss: 0.035512187317174544, Val Loss: 0.02747222919549261 +2024-07-22 23:34:44.802 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 33/50, Train Loss: 0.035684775902802564, Val Loss: 0.026733562563146865 +2024-07-22 23:34:51.015 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 34/50, Train Loss: 0.035437206650595014, Val Loss: 0.02700998139168535 +2024-07-22 23:34:57.177 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 35/50, Train Loss: 0.03533642836879912, Val Loss: 0.0271640985671963 +2024-07-22 23:35:03.368 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 36/50, Train Loss: 0.03533931133478022, Val Loss: 0.02812940872141293 +2024-07-22 23:35:09.536 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 37/50, Train Loss: 0.03548345054171497, Val Loss: 0.02750066359128271 +2024-07-22 23:35:15.743 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 38/50, Train Loss: 0.03558765000683798, Val Loss: 0.027459716690438136 +2024-07-22 23:35:21.932 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 39/50, Train Loss: 0.03546507580862414, Val Loss: 0.027247142578874315 +2024-07-22 23:35:28.104 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 40/50, Train Loss: 0.03521239606114172, Val Loss: 0.02702173196843692 +2024-07-22 23:35:34.304 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 41/50, Train Loss: 0.03539481081014915, Val Loss: 0.027292561743940624 +2024-07-22 23:35:40.492 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 42/50, Train Loss: 0.035266914679635344, Val Loss: 0.027144998578088626 +2024-07-22 23:35:46.865 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 43/50, Train Loss: 0.03548388528175277, Val Loss: 0.02732955345085689 +2024-07-22 23:35:53.129 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 44/50, Train Loss: 0.03564466202376987, Val Loss: 0.027627663473997796 +2024-07-22 23:35:53.129 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:35:53.129 No tasks are waiting in the queue. +2024-07-22 23:35:53.129 4 steps have not started: end, validate_model, model_scores, log_model. +2024-07-22 23:35:59.385 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 45/50, Train Loss: 0.035390319965994184, Val Loss: 0.027445755366768156 +2024-07-22 23:36:05.587 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 46/50, Train Loss: 0.03530425112694502, Val Loss: 0.02756736305143152 +2024-07-22 23:36:11.787 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 47/50, Train Loss: 0.035441908884873925, Val Loss: 0.02777573045875345 +2024-07-22 23:36:17.951 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 48/50, Train Loss: 0.03550269161250523, Val Loss: 0.02700630511556353 +2024-07-22 23:36:24.163 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 49/50, Train Loss: 0.03528364442905291, Val Loss: 0.027245071743215832 +2024-07-22 23:36:30.432 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 50/50, Train Loss: 0.03529104550884996, Val Loss: 0.027507279387542178 +2024-07-22 23:36:30.432 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Fold 3, MAPE: 2.59% +2024-07-22 23:36:30.559 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_1001_5000_LSTM//train_f3_bgd_education_1001_5000_LSTM.png +2024-07-22 23:36:38.216 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 1/50, Train Loss: 0.028354394881204628, Val Loss: 0.025141086402748314 +2024-07-22 23:36:45.835 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 2/50, Train Loss: 0.028618579109509785, Val Loss: 0.025100437844438214 +2024-07-22 23:36:53.425 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 3/50, Train Loss: 0.028505329818775255, Val Loss: 0.025102285348943303 +2024-07-22 23:37:01.079 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 4/50, Train Loss: 0.028280183030613536, Val Loss: 0.02507099394819566 +2024-07-22 23:37:08.679 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 5/50, Train Loss: 0.028405748227418495, Val Loss: 0.02519373308335032 +2024-07-22 23:37:16.262 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 6/50, Train Loss: 0.028456811921606803, Val Loss: 0.025073193226541793 +2024-07-22 23:37:23.913 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 7/50, Train Loss: 0.02835153832753328, Val Loss: 0.025274662167898247 +2024-07-22 23:37:31.516 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 8/50, Train Loss: 0.02834901829175223, Val Loss: 0.025081913279635566 +2024-07-22 23:37:39.116 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 9/50, Train Loss: 0.028370676872630913, Val Loss: 0.025216722621449403 +2024-07-22 23:37:46.702 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 10/50, Train Loss: 0.02854201008683477, Val Loss: 0.025128368022186414 +2024-07-22 23:37:54.321 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 11/50, Train Loss: 0.028354992292521673, Val Loss: 0.025090237094887665 +2024-07-22 23:38:01.972 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 12/50, Train Loss: 0.028381942059502178, Val Loss: 0.025231531049524036 +2024-07-22 23:38:09.612 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 13/50, Train Loss: 0.028559849174671817, Val Loss: 0.025176908794258324 +2024-07-22 23:38:17.189 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 14/50, Train Loss: 0.02844682473946234, Val Loss: 0.02513815989451749 +2024-07-22 23:38:24.801 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 15/50, Train Loss: 0.028320465445646953, Val Loss: 0.025219415075012616 +2024-07-22 23:38:32.428 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 16/50, Train Loss: 0.028330557064378058, Val Loss: 0.02505513759596007 +2024-07-22 23:38:40.042 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 17/50, Train Loss: 0.028544834392123866, Val Loss: 0.025127086815025124 +2024-07-22 23:38:47.665 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 18/50, Train Loss: 0.02847543162368666, Val Loss: 0.025128263607621194 +2024-07-22 23:38:55.286 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 19/50, Train Loss: 0.028404510885091692, Val Loss: 0.02511448511587722 +2024-07-22 23:39:02.925 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 20/50, Train Loss: 0.028328373514372725, Val Loss: 0.025090275438768524 +2024-07-22 23:39:10.526 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 21/50, Train Loss: 0.02827734762438755, Val Loss: 0.025170206039079598 +2024-07-22 23:39:18.184 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 22/50, Train Loss: 0.028358964886430693, Val Loss: 0.025307855755090713 +2024-07-22 23:39:25.868 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 23/50, Train Loss: 0.02825179562807597, Val Loss: 0.025128695421985217 +2024-07-22 23:39:33.465 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 24/50, Train Loss: 0.02830087088433833, Val Loss: 0.025283809565007687 +2024-07-22 23:39:41.075 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 25/50, Train Loss: 0.028282704554369736, Val Loss: 0.025204904749989508 +2024-07-22 23:39:48.691 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 26/50, Train Loss: 0.028291453858944535, Val Loss: 0.025093889848462173 +2024-07-22 23:39:56.318 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 27/50, Train Loss: 0.02835300770834431, Val Loss: 0.025292689938630375 +2024-07-22 23:40:03.947 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 28/50, Train Loss: 0.028171646076886134, Val Loss: 0.02510658678199564 +2024-07-22 23:40:11.603 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 29/50, Train Loss: 0.02821880393265479, Val Loss: 0.02505731854055609 +2024-07-22 23:40:19.198 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 30/50, Train Loss: 0.028210143505156726, Val Loss: 0.025078851436930043 +2024-07-22 23:40:26.894 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 31/50, Train Loss: 0.02829894679330889, Val Loss: 0.025066361922238555 +2024-07-22 23:40:34.532 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 32/50, Train Loss: 0.028234097892525553, Val Loss: 0.025068412641329425 +2024-07-22 23:40:42.154 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 33/50, Train Loss: 0.028262082546221458, Val Loss: 0.025226685112076146 +2024-07-22 23:40:49.784 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 34/50, Train Loss: 0.028246224119231618, Val Loss: 0.02521861344575882 +2024-07-22 23:40:57.415 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 35/50, Train Loss: 0.028211617563990342, Val Loss: 0.025214590850685323 +2024-07-22 23:40:57.415 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:40:57.415 No tasks are waiting in the queue. +2024-07-22 23:40:57.415 4 steps have not started: end, validate_model, model_scores, log_model. +2024-07-22 23:41:05.042 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 36/50, Train Loss: 0.028221357324770813, Val Loss: 0.025145808766995157 +2024-07-22 23:41:12.698 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 37/50, Train Loss: 0.028175434070885522, Val Loss: 0.02502914055117539 +2024-07-22 23:41:20.340 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 38/50, Train Loss: 0.028240342565608777, Val Loss: 0.025155717586832386 +2024-07-22 23:41:27.953 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 39/50, Train Loss: 0.028214504267891932, Val Loss: 0.025160714079226765 +2024-07-22 23:41:35.597 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 40/50, Train Loss: 0.028172479348321414, Val Loss: 0.025278688461652824 +2024-07-22 23:41:43.232 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 41/50, Train Loss: 0.02812522818901758, Val Loss: 0.025176646347556796 +2024-07-22 23:41:50.880 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 42/50, Train Loss: 0.028228303133884722, Val Loss: 0.02517246287316084 +2024-07-22 23:41:58.519 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 43/50, Train Loss: 0.028235915106260914, Val Loss: 0.02504360710403749 +2024-07-22 23:42:06.216 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 44/50, Train Loss: 0.028171033775112753, Val Loss: 0.02499994646225657 +2024-07-22 23:42:13.859 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 45/50, Train Loss: 0.028161545637352712, Val Loss: 0.02506519476217883 +2024-07-22 23:42:21.542 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 46/50, Train Loss: 0.028065000168294055, Val Loss: 0.025045109859534672 +2024-07-22 23:42:29.154 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 47/50, Train Loss: 0.02805374759709698, Val Loss: 0.025133096612989902 +2024-07-22 23:42:36.801 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 48/50, Train Loss: 0.028189723005239992, Val Loss: 0.025102563654737814 +2024-07-22 23:42:44.456 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 49/50, Train Loss: 0.028196418422392046, Val Loss: 0.025081932225397657 +2024-07-22 23:42:52.098 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Epoch 50/50, Train Loss: 0.0281544190339059, Val Loss: 0.025034326128661633 +2024-07-22 23:42:52.098 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Fold 4, MAPE: 2.88% +2024-07-22 23:42:52.198 [41/cross_validate_train/401 (pid 22956)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_1001_5000_LSTM//train_f4_bgd_education_1001_5000_LSTM.png +2024-07-22 23:42:56.685 [41/cross_validate_train/401 (pid 22956)] Task finished successfully. +2024-07-22 23:42:56.713 [41/model_scores/402 (pid 27559)] Task is starting. +2024-07-22 23:42:58.178 [41/model_scores/402 (pid 27559)] INFO:__main__:Average Train Loss across all folds: 0.03720257966203514 +2024-07-22 23:43:02.044 [41/model_scores/402 (pid 27559)] INFO:__main__:Average Validation Loss across all folds: 0.03226974339889628 +2024-07-22 23:43:02.045 [41/model_scores/402 (pid 27559)] INFO:__main__:Average MAPE across all folds: 4.24% +2024-07-22 23:43:02.045 [41/model_scores/402 (pid 27559)] Task finished successfully. +2024-07-22 23:43:02.076 [41/validate_model/403 (pid 27592)] Task is starting. +2024-07-22 23:43:03.554 [41/validate_model/403 (pid 27592)] INFO:__main__:Validating LSTM on test set.. +2024-07-22 23:43:04.271 [41/validate_model/403 (pid 27592)] INFO:__main__:Test Set MAPE: 6.38% +2024-07-22 23:43:04.619 [41/validate_model/403 (pid 27592)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_education_1001_5000_LSTM//test_bgd_education_1001_5000_LSTM.png +2024-07-22 23:43:05.055 [41/validate_model/403 (pid 27592)] Task finished successfully. +2024-07-22 23:43:05.085 [41/log_model/404 (pid 27605)] Task is starting. +2024-07-22 23:43:06.571 [41/log_model/404 (pid 27605)] INFO:__main__:Logging model bgd_education_1001_5000_LSTM +2024-07-22 23:43:06.572 [41/log_model/404 (pid 27605)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_education_1001_5000_LSTM//bgd_education_1001_5000_LSTM.pth +2024-07-22 23:43:10.476 [41/log_model/404 (pid 27605)] Task finished successfully. +2024-07-22 23:43:10.503 [41/end/405 (pid 27641)] Task is starting. +2024-07-22 23:43:11.966 [41/end/405 (pid 27641)] INFO:__main__:Pipeline end. +2024-07-22 23:43:12.273 [41/end/405 (pid 27641)] Task finished successfully. +2024-07-22 23:43:12.274 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/scaler_bgd_education_1001_5000_LSTM.pkl b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/scaler_bgd_education_1001_5000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..8c2a2ef1ff1acc5c8a2df6e767bacbcd4dfb8183 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/scaler_bgd_education_1001_5000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bf5ad0b00b7232adda0314b7f12bca9d1e981fb95642c0ec2554e9f6b7ebedf +size 557 diff --git a/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/test_bgd_education_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/test_bgd_education_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..c21fad5b0a65417779c71695038af3ebc1c3ce3b Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/test_bgd_education_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f0_bgd_education_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f0_bgd_education_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..b109a879b6e51ead31c5dda9a7af084e8388d5c1 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f0_bgd_education_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f1_bgd_education_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f1_bgd_education_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..a4610809d2725760b9ea62e674d7128724228342 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f1_bgd_education_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f2_bgd_education_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f2_bgd_education_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..28d071c1038df055be840bf34088f0c87b456360 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f2_bgd_education_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f3_bgd_education_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f3_bgd_education_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..aeec94b6b03f0a6afa8fafb2fd9569f2df384bec Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f3_bgd_education_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f4_bgd_education_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f4_bgd_education_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..dcca354627eb851bc9a6eda7a3a60742841a919a Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_1001_5000_LSTM/train_f4_bgd_education_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/bgd_education_200001_500000_LSTM.pth b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/bgd_education_200001_500000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..9ff747f3c54cb57583d65c057a444eab726dccc1 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/bgd_education_200001_500000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86ac5744b687b151ebd423286f5bb73f5fd826f00bad0b20c7de45770a77f38 +size 46786 diff --git a/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/output.txt b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..51160e7e64385bb6242c54c1c4f54c0884b224c2 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/output.txt @@ -0,0 +1,785 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-23 06:30:52.976 Workflow starting (run-id 53): +2024-07-23 06:30:53.042 [53/start/561 (pid 82270)] Task is starting. +2024-07-23 06:30:54.514 [53/start/561 (pid 82270)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 06:30:54.811 [53/start/561 (pid 82270)] Task finished successfully. +2024-07-23 06:30:54.840 [53/ingest/562 (pid 82281)] Task is starting. +2024-07-23 06:30:56.369 [53/ingest/562 (pid 82281)] INFO:__main__:Fetching dataframe.. +2024-07-23 06:30:56.395 [53/ingest/562 (pid 82281)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 06:31:00.255 [53/ingest/562 (pid 82281)] Task finished successfully. +2024-07-23 06:31:00.284 [53/pick_2017_data/563 (pid 82314)] Task is starting. +2024-07-23 06:31:01.715 [53/pick_2017_data/563 (pid 82314)] INFO:__main__:Picking 2017 data.. +2024-07-23 06:31:02.039 [53/pick_2017_data/563 (pid 82314)] Task finished successfully. +2024-07-23 06:31:02.070 [53/fill_missing_data/564 (pid 82326)] Task is starting. +2024-07-23 06:31:03.552 [53/fill_missing_data/564 (pid 82326)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 06:31:03.565 [53/fill_missing_data/564 (pid 82326)] INFO:__main__:NaN counts per column: +2024-07-23 06:31:03.565 [53/fill_missing_data/564 (pid 82326)] INFO:__main__:Fox_education_Melinda 1 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Fox_education_Otilia 15 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Fox_education_Maureen 2 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Fox_education_Leona 2 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Fox_education_Wendell 4 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Rat_education_Lee 1 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Rat_education_Kathryn 1 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Rat_education_Conrad 99 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Rat_education_Beverly 2 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Rat_education_Elsie 48 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Rat_education_Tania 202 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Bear_education_Bulah 36 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Bear_education_Wilton 8 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Moose_education_Florence 32 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Cockatoo_education_Brigitte 114 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Cockatoo_education_Terrence 126 +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] Cockatoo_education_Janet 113 +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] Cockatoo_education_Tyler 114 +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] dtype: int64 +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] --- Logging error --- +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] Traceback (most recent call last): +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] msg = self.format(record) +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] return fmt.format(record) +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] record.message = record.getMessage() +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] msg = msg % self.args +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] TypeError: not all arguments converted during string formatting +2024-07-23 06:31:03.568 [53/fill_missing_data/564 (pid 82326)] Call stack: +2024-07-23 06:31:03.568 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 06:31:04.469 [53/fill_missing_data/564 (pid 82326)] BGD_LinearFlow() +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] cli.main(self) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] return func(*args, **kwargs) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] return self.main(*args, **kwargs) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] rv = self.invoke(ctx) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] return callback(*args, **kwargs) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] return f(get_current_context(), *args, **kwargs) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] task.run_step( +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] self._exec_step_function(step_func) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] step_function() +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] self.missing_values = find_nan_counts(self.df) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] Arguments: (920,) +2024-07-23 06:31:04.471 [53/fill_missing_data/564 (pid 82326)] Task finished successfully. +2024-07-23 06:31:04.502 [53/find_median/565 (pid 82337)] Task is starting. +2024-07-23 06:31:05.948 [53/find_median/565 (pid 82337)] INFO:__main__:Computing and using median.. +2024-07-23 06:31:06.473 [53/find_median/565 (pid 82337)] Task finished successfully. +2024-07-23 06:31:06.503 [53/aggregate_data/566 (pid 82348)] Task is starting. +2024-07-23 06:31:07.970 [53/aggregate_data/566 (pid 82348)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 06:31:11.861 [53/aggregate_data/566 (pid 82348)] Task finished successfully. +2024-07-23 06:31:11.889 [53/split_data/567 (pid 82376)] Task is starting. +2024-07-23 06:31:13.361 [53/split_data/567 (pid 82376)] INFO:__main__:Splitting data into test and train... +2024-07-23 06:31:17.195 [53/split_data/567 (pid 82376)] Task finished successfully. +2024-07-23 06:31:17.227 [53/make_x_y/568 (pid 82407)] Task is starting. +2024-07-23 06:31:19.028 [53/make_x_y/568 (pid 82407)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 06:31:19.426 [53/make_x_y/568 (pid 82407)] Shape of y_train: (6648, 1) +2024-07-23 06:31:19.426 [53/make_x_y/568 (pid 82407)] Shape of X_test: (1392, 360, 1) +2024-07-23 06:31:19.426 [53/make_x_y/568 (pid 82407)] Shape of y_test: (1392, 1) +2024-07-23 06:31:19.427 [53/make_x_y/568 (pid 82407)] Task finished successfully. +2024-07-23 06:31:19.458 [53/cross_validate_train/569 (pid 82420)] Task is starting. +2024-07-23 06:31:20.918 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Creating bgd_education_200001_500000_LSTM +2024-07-23 06:31:20.919 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Performing cross validation.. +2024-07-23 06:31:23.402 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 1/50, Train Loss: 0.2931846869843347, Val Loss: 0.2356158618416105 +2024-07-23 06:31:25.280 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 2/50, Train Loss: 0.21336559568132674, Val Loss: 0.21285719211612428 +2024-07-23 06:31:27.197 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 3/50, Train Loss: 0.1815904398049627, Val Loss: 0.14310754942042486 +2024-07-23 06:31:29.116 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 4/50, Train Loss: 0.11655992014067514, Val Loss: 0.10903373743806566 +2024-07-23 06:31:31.026 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 5/50, Train Loss: 0.10418041348457337, Val Loss: 0.09841924969639097 +2024-07-23 06:31:32.956 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 6/50, Train Loss: 0.09943507143429348, Val Loss: 0.09418841110808508 +2024-07-23 06:31:34.873 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 7/50, Train Loss: 0.09806099981069565, Val Loss: 0.09378543730293001 +2024-07-23 06:31:36.798 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 8/50, Train Loss: 0.09833468986409051, Val Loss: 0.09455367646047047 +2024-07-23 06:31:38.711 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 9/50, Train Loss: 0.09225019429411208, Val Loss: 0.090434601690088 +2024-07-23 06:31:40.653 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 10/50, Train Loss: 0.08806583774941308, Val Loss: 0.0892255248767989 +2024-07-23 06:31:42.600 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 11/50, Train Loss: 0.08685887604951859, Val Loss: 0.09578325620719365 +2024-07-23 06:31:44.525 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 12/50, Train Loss: 0.086441884296281, Val Loss: 0.09087377062865666 +2024-07-23 06:31:46.453 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 13/50, Train Loss: 0.08216054226670946, Val Loss: 0.08805969016892569 +2024-07-23 06:31:48.394 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 14/50, Train Loss: 0.07895769051143102, Val Loss: 0.08652703889778682 +2024-07-23 06:31:50.320 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 15/50, Train Loss: 0.0756925639297281, Val Loss: 0.08290374960218157 +2024-07-23 06:31:52.274 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 16/50, Train Loss: 0.07388057623590742, Val Loss: 0.08280622788837978 +2024-07-23 06:31:54.204 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 17/50, Train Loss: 0.07181485944560596, Val Loss: 0.07744642687695368 +2024-07-23 06:31:56.147 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 18/50, Train Loss: 0.0678231948188373, Val Loss: 0.07277991973928043 +2024-07-23 06:31:58.087 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 19/50, Train Loss: 0.06739177735788482, Val Loss: 0.07518124931624957 +2024-07-23 06:32:00.046 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 20/50, Train Loss: 0.06540748210889953, Val Loss: 0.07201618392552649 +2024-07-23 06:32:01.993 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 21/50, Train Loss: 0.06487172661083085, Val Loss: 0.07191302201577596 +2024-07-23 06:32:03.931 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 22/50, Train Loss: 0.06367171928286552, Val Loss: 0.07036021990435463 +2024-07-23 06:32:05.858 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 23/50, Train Loss: 0.06422835226569856, Val Loss: 0.06973599993756839 +2024-07-23 06:32:07.793 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 24/50, Train Loss: 0.06363873077290398, Val Loss: 0.06831075538481984 +2024-07-23 06:32:09.727 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 25/50, Train Loss: 0.061793734239680424, Val Loss: 0.06787852389471871 +2024-07-23 06:32:11.712 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 26/50, Train Loss: 0.06199963816574642, Val Loss: 0.0672924822994641 +2024-07-23 06:32:13.653 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 27/50, Train Loss: 0.0611384925033365, Val Loss: 0.06665609351226262 +2024-07-23 06:32:15.596 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 28/50, Train Loss: 0.06101419712815966, Val Loss: 0.07004098679338183 +2024-07-23 06:32:17.527 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 29/50, Train Loss: 0.05980004008327212, Val Loss: 0.06563973682267325 +2024-07-23 06:32:19.469 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 30/50, Train Loss: 0.05983312151261738, Val Loss: 0.0663305054817881 +2024-07-23 06:32:21.402 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 31/50, Train Loss: 0.05887234870876585, Val Loss: 0.06627116597124509 +2024-07-23 06:32:23.347 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 32/50, Train Loss: 0.05898657590150833, Val Loss: 0.06493858726961273 +2024-07-23 06:32:25.276 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 33/50, Train Loss: 0.05762061114822115, Val Loss: 0.06598136691110475 +2024-07-23 06:32:27.201 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 34/50, Train Loss: 0.0577747245984418, Val Loss: 0.06459762762699808 +2024-07-23 06:32:29.127 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 35/50, Train Loss: 0.05741517139332635, Val Loss: 0.06381235186542783 +2024-07-23 06:32:31.077 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 36/50, Train Loss: 0.05716598214847701, Val Loss: 0.06454261136906488 +2024-07-23 06:32:33.050 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 37/50, Train Loss: 0.05655300532068525, Val Loss: 0.06478135202612195 +2024-07-23 06:32:34.990 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 38/50, Train Loss: 0.056893359124660495, Val Loss: 0.06443402160491263 +2024-07-23 06:32:36.916 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 39/50, Train Loss: 0.056331367577825274, Val Loss: 0.06299003809690476 +2024-07-23 06:32:38.845 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 40/50, Train Loss: 0.05526718220540455, Val Loss: 0.06193936073354312 +2024-07-23 06:32:40.786 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 41/50, Train Loss: 0.055702255559819086, Val Loss: 0.06553158600415503 +2024-07-23 06:32:42.730 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 42/50, Train Loss: 0.05537918039730617, Val Loss: 0.062054855270045145 +2024-07-23 06:32:44.675 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 43/50, Train Loss: 0.05495700410434178, Val Loss: 0.062206249364784784 +2024-07-23 06:32:46.608 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 44/50, Train Loss: 0.05489419134599822, Val Loss: 0.06179385568414416 +2024-07-23 06:32:48.535 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 45/50, Train Loss: 0.0549073943070003, Val Loss: 0.062394092551299504 +2024-07-23 06:32:50.475 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 46/50, Train Loss: 0.0542687785412584, Val Loss: 0.0620409760091986 +2024-07-23 06:32:52.441 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 47/50, Train Loss: 0.054821524130446574, Val Loss: 0.0626456893980503 +2024-07-23 06:32:54.388 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 48/50, Train Loss: 0.053795794610466276, Val Loss: 0.0605634517967701 +2024-07-23 06:32:56.343 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 49/50, Train Loss: 0.0539094440639019, Val Loss: 0.061043324640819005 +2024-07-23 06:32:58.286 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 50/50, Train Loss: 0.05373890740530832, Val Loss: 0.06051351970859936 +2024-07-23 06:32:58.286 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Fold 0, MAPE: 3.57% +2024-07-23 06:32:58.614 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_200001_500000_LSTM//train_f0_bgd_education_200001_500000_LSTM.png +2024-07-23 06:33:02.116 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 1/50, Train Loss: 0.04459742446030889, Val Loss: 0.036853198068482536 +2024-07-23 06:33:05.487 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 2/50, Train Loss: 0.04070289036525147, Val Loss: 0.04035822701241289 +2024-07-23 06:33:08.893 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 3/50, Train Loss: 0.03996643251074212, Val Loss: 0.037234033910291536 +2024-07-23 06:33:12.339 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 4/50, Train Loss: 0.04007398531373058, Val Loss: 0.041917316509144646 +2024-07-23 06:33:15.727 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 5/50, Train Loss: 0.04019101397799594, Val Loss: 0.040634045430592125 +2024-07-23 06:33:19.099 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 6/50, Train Loss: 0.039900046613599575, Val Loss: 0.03990379912512643 +2024-07-23 06:33:22.505 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 7/50, Train Loss: 0.03956319612583944, Val Loss: 0.037777887125100405 +2024-07-23 06:33:25.900 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 8/50, Train Loss: 0.03925129718014172, Val Loss: 0.03928126538438456 +2024-07-23 06:33:29.289 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 9/50, Train Loss: 0.03926748133131436, Val Loss: 0.03884371492479529 +2024-07-23 06:33:32.703 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 10/50, Train Loss: 0.03839530069380999, Val Loss: 0.03931940464036805 +2024-07-23 06:33:36.109 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 11/50, Train Loss: 0.03867984592382397, Val Loss: 0.03823947161436081 +2024-07-23 06:33:39.506 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 12/50, Train Loss: 0.038425245002976484, Val Loss: 0.038281208276748656 +2024-07-23 06:33:42.905 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 13/50, Train Loss: 0.03821553795465401, Val Loss: 0.03801602614777429 +2024-07-23 06:33:46.307 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 14/50, Train Loss: 0.038275244326463766, Val Loss: 0.037987614689128736 +2024-07-23 06:33:49.713 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 15/50, Train Loss: 0.0382511026092938, Val Loss: 0.03777937016316823 +2024-07-23 06:33:53.146 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 16/50, Train Loss: 0.03793979095561164, Val Loss: 0.037939730712345666 +2024-07-23 06:33:56.540 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 17/50, Train Loss: 0.03840637691318989, Val Loss: 0.03875497265585831 +2024-07-23 06:33:59.955 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 18/50, Train Loss: 0.03857958731906755, Val Loss: 0.03781678197639329 +2024-07-23 06:34:03.382 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 19/50, Train Loss: 0.037579817830451896, Val Loss: 0.03814658985606262 +2024-07-23 06:34:06.780 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 20/50, Train Loss: 0.037932680919766426, Val Loss: 0.03771916936550822 +2024-07-23 06:34:10.189 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 21/50, Train Loss: 0.03775286278022187, Val Loss: 0.03830743453332356 +2024-07-23 06:34:13.638 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 22/50, Train Loss: 0.03778443450906447, Val Loss: 0.03713155963591167 +2024-07-23 06:34:17.059 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 23/50, Train Loss: 0.03724108817321914, Val Loss: 0.03819600412888186 +2024-07-23 06:34:20.464 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 24/50, Train Loss: 0.037443473456161364, Val Loss: 0.03932046645453998 +2024-07-23 06:34:23.860 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 25/50, Train Loss: 0.03708649764635733, Val Loss: 0.04039735533297062 +2024-07-23 06:34:27.259 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 26/50, Train Loss: 0.03722459812249456, Val Loss: 0.03807787863271577 +2024-07-23 06:34:30.667 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 27/50, Train Loss: 0.03722575165863548, Val Loss: 0.03901361376047134 +2024-07-23 06:34:34.075 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 28/50, Train Loss: 0.037302585425121444, Val Loss: 0.03905039424342768 +2024-07-23 06:34:37.468 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 29/50, Train Loss: 0.0374914662912488, Val Loss: 0.03813816479274205 +2024-07-23 06:34:40.860 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 30/50, Train Loss: 0.03714829816349915, Val Loss: 0.03936898883964334 +2024-07-23 06:34:44.284 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 31/50, Train Loss: 0.037129316266093934, Val Loss: 0.03929929110620703 +2024-07-23 06:34:47.708 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 32/50, Train Loss: 0.03761820652123008, Val Loss: 0.03888864703476429 +2024-07-23 06:34:51.116 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 33/50, Train Loss: 0.03722772590283837, Val Loss: 0.03963653913566045 +2024-07-23 06:34:54.541 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 34/50, Train Loss: 0.03721564726105758, Val Loss: 0.037438321911862915 +2024-07-23 06:34:57.946 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 35/50, Train Loss: 0.0369414639792272, Val Loss: 0.038796911601509367 +2024-07-23 06:35:01.362 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 36/50, Train Loss: 0.03697996174118349, Val Loss: 0.03839609138667584 +2024-07-23 06:35:04.790 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 37/50, Train Loss: 0.036906300698007856, Val Loss: 0.038883061494146075 +2024-07-23 06:35:08.199 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 38/50, Train Loss: 0.03660383823194674, Val Loss: 0.038076040095516614 +2024-07-23 06:35:11.633 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 39/50, Train Loss: 0.03695342732327325, Val Loss: 0.03863159487290042 +2024-07-23 06:35:15.039 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 40/50, Train Loss: 0.03701325811977897, Val Loss: 0.03896760168884482 +2024-07-23 06:35:18.426 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 41/50, Train Loss: 0.0367004417149084, Val Loss: 0.04180780670472554 +2024-07-23 06:35:21.867 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 42/50, Train Loss: 0.03711953902883189, Val Loss: 0.03884813423667635 +2024-07-23 06:35:25.275 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 43/50, Train Loss: 0.03652910691286836, Val Loss: 0.03796486375587327 +2024-07-23 06:35:28.680 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 44/50, Train Loss: 0.03641581282551799, Val Loss: 0.03859056899590152 +2024-07-23 06:35:32.103 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 45/50, Train Loss: 0.03650604438568864, Val Loss: 0.03981440242912088 +2024-07-23 06:35:35.513 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 46/50, Train Loss: 0.03630550030086722, Val Loss: 0.03920862445873874 +2024-07-23 06:35:38.933 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 47/50, Train Loss: 0.03651335383100169, Val Loss: 0.037751565660749165 +2024-07-23 06:35:42.361 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 48/50, Train Loss: 0.036525071438934124, Val Loss: 0.03863939983504159 +2024-07-23 06:35:45.755 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 49/50, Train Loss: 0.036223896433200155, Val Loss: 0.0386743609394346 +2024-07-23 06:35:49.158 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 50/50, Train Loss: 0.03627225293644837, Val Loss: 0.04082592725753784 +2024-07-23 06:35:49.158 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Fold 1, MAPE: 3.25% +2024-07-23 06:35:49.274 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_200001_500000_LSTM//train_f1_bgd_education_200001_500000_LSTM.png +2024-07-23 06:35:54.207 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 1/50, Train Loss: 0.03565286139312845, Val Loss: 0.041767541532005584 +2024-07-23 06:35:54.207 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:35:54.207 No tasks are waiting in the queue. +2024-07-23 06:35:54.207 4 steps have not started: log_model, validate_model, model_scores, end. +2024-07-23 06:35:59.077 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 2/50, Train Loss: 0.03546009239597389, Val Loss: 0.041729312709399634 +2024-07-23 06:36:03.958 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 3/50, Train Loss: 0.03486151575970535, Val Loss: 0.040794909745454785 +2024-07-23 06:36:08.817 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 4/50, Train Loss: 0.035169240176820986, Val Loss: 0.042372489560927665 +2024-07-23 06:36:13.709 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 5/50, Train Loss: 0.03515606971744161, Val Loss: 0.04067851805261203 +2024-07-23 06:36:18.578 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 6/50, Train Loss: 0.03480543137098161, Val Loss: 0.04142964546169554 +2024-07-23 06:36:23.498 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 7/50, Train Loss: 0.03547383277103878, Val Loss: 0.04151075514299529 +2024-07-23 06:36:28.358 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 8/50, Train Loss: 0.03532497203335739, Val Loss: 0.0418536301702261 +2024-07-23 06:36:33.232 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 9/50, Train Loss: 0.034827050126086063, Val Loss: 0.0408975928489651 +2024-07-23 06:36:38.123 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 10/50, Train Loss: 0.03484723604140946, Val Loss: 0.040780185801642284 +2024-07-23 06:36:43.033 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 11/50, Train Loss: 0.034255456268930666, Val Loss: 0.04159812389739922 +2024-07-23 06:36:47.915 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 12/50, Train Loss: 0.03416087499891336, Val Loss: 0.04387086044464793 +2024-07-23 06:36:52.824 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 13/50, Train Loss: 0.03466684716896942, Val Loss: 0.04108922460249492 +2024-07-23 06:36:57.722 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 14/50, Train Loss: 0.034326220235715695, Val Loss: 0.04149742589465209 +2024-07-23 06:37:02.636 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 15/50, Train Loss: 0.03426094928111594, Val Loss: 0.04106366474713598 +2024-07-23 06:37:07.530 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 16/50, Train Loss: 0.03434076729732064, Val Loss: 0.04081480902220522 +2024-07-23 06:37:12.474 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 17/50, Train Loss: 0.033975285495846316, Val Loss: 0.04188690802880696 +2024-07-23 06:37:17.369 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 18/50, Train Loss: 0.03437844685350473, Val Loss: 0.04038740620017052 +2024-07-23 06:37:22.276 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 19/50, Train Loss: 0.03354897513054311, Val Loss: 0.04167212865182331 +2024-07-23 06:37:27.120 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 20/50, Train Loss: 0.033799526013004094, Val Loss: 0.04054119831749371 +2024-07-23 06:37:32.026 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 21/50, Train Loss: 0.03355426941281901, Val Loss: 0.04233901362333979 +2024-07-23 06:37:36.916 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 22/50, Train Loss: 0.03403526763073527, Val Loss: 0.040844244084187915 +2024-07-23 06:37:41.822 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 23/50, Train Loss: 0.03361254672591503, Val Loss: 0.04126848551843847 +2024-07-23 06:37:46.729 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 24/50, Train Loss: 0.03350816821106351, Val Loss: 0.04103331651006426 +2024-07-23 06:37:51.628 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 25/50, Train Loss: 0.03367141179310588, Val Loss: 0.04019697095666613 +2024-07-23 06:37:56.596 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 26/50, Train Loss: 0.033130503456609756, Val Loss: 0.041616970832858764 +2024-07-23 06:38:01.473 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 27/50, Train Loss: 0.03335283170096003, Val Loss: 0.04108180643192359 +2024-07-23 06:38:06.396 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 28/50, Train Loss: 0.03305543230201762, Val Loss: 0.040686641952821186 +2024-07-23 06:38:11.305 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 29/50, Train Loss: 0.03304337337613106, Val Loss: 0.04190362058579922 +2024-07-23 06:38:16.227 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 30/50, Train Loss: 0.03340455839553705, Val Loss: 0.041628233822328706 +2024-07-23 06:38:21.091 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 31/50, Train Loss: 0.033147214338756524, Val Loss: 0.041544654699308535 +2024-07-23 06:38:25.999 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 32/50, Train Loss: 0.033180831268859595, Val Loss: 0.04156617516917842 +2024-07-23 06:38:30.912 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 33/50, Train Loss: 0.03316721511789812, Val Loss: 0.040076483466795515 +2024-07-23 06:38:35.862 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 34/50, Train Loss: 0.032588164017607384, Val Loss: 0.041066325668777735 +2024-07-23 06:38:40.814 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 35/50, Train Loss: 0.03285815307977968, Val Loss: 0.04075812745307173 +2024-07-23 06:38:45.731 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 36/50, Train Loss: 0.03245791298552202, Val Loss: 0.04081822165421077 +2024-07-23 06:38:50.656 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 37/50, Train Loss: 0.032238708182166405, Val Loss: 0.04132780400770051 +2024-07-23 06:38:55.556 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 38/50, Train Loss: 0.032577763830956355, Val Loss: 0.04042840451002121 +2024-07-23 06:39:00.442 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 39/50, Train Loss: 0.03244411708930364, Val Loss: 0.039924397372773715 +2024-07-23 06:39:05.365 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 40/50, Train Loss: 0.03246224505934291, Val Loss: 0.04041989073157311 +2024-07-23 06:39:10.297 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 41/50, Train Loss: 0.03222557705325576, Val Loss: 0.040274023903267724 +2024-07-23 06:39:15.258 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 42/50, Train Loss: 0.03201463643927127, Val Loss: 0.04153762039329324 +2024-07-23 06:39:20.164 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 43/50, Train Loss: 0.03318715067759443, Val Loss: 0.0407343221030065 +2024-07-23 06:39:25.088 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 44/50, Train Loss: 0.03269640890021737, Val Loss: 0.04155339055827686 +2024-07-23 06:39:30.014 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 45/50, Train Loss: 0.0328814778297853, Val Loss: 0.04032938443124294 +2024-07-23 06:39:34.931 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 46/50, Train Loss: 0.0326734908695261, Val Loss: 0.04051341957279614 +2024-07-23 06:39:39.815 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 47/50, Train Loss: 0.03270467934915079, Val Loss: 0.040860072736229214 +2024-07-23 06:39:44.732 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 48/50, Train Loss: 0.0323998040268914, Val Loss: 0.04106347534273352 +2024-07-23 06:39:49.678 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 49/50, Train Loss: 0.03245817525133204, Val Loss: 0.04045246365879263 +2024-07-23 06:39:54.641 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 50/50, Train Loss: 0.03235251646345624, Val Loss: 0.040536496309297426 +2024-07-23 06:39:54.641 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Fold 2, MAPE: 3.55% +2024-07-23 06:39:54.754 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_200001_500000_LSTM//train_f2_bgd_education_200001_500000_LSTM.png +2024-07-23 06:40:01.123 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 1/50, Train Loss: 0.03376168553322125, Val Loss: 0.042165306955575944 +2024-07-23 06:40:07.489 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 2/50, Train Loss: 0.03449261266228964, Val Loss: 0.041631823458841866 +2024-07-23 06:40:13.893 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 3/50, Train Loss: 0.034782411316208704, Val Loss: 0.042284971794911794 +2024-07-23 06:40:20.253 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 4/50, Train Loss: 0.03449568219429298, Val Loss: 0.04053828051047666 +2024-07-23 06:40:26.573 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 5/50, Train Loss: 0.03471655106480173, Val Loss: 0.04106583653816155 +2024-07-23 06:40:32.928 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 6/50, Train Loss: 0.0343962524005835, Val Loss: 0.04151043029768126 +2024-07-23 06:40:39.279 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 7/50, Train Loss: 0.0345755344886574, Val Loss: 0.04183123250092779 +2024-07-23 06:40:45.666 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 8/50, Train Loss: 0.034611282066153964, Val Loss: 0.04239039123058319 +2024-07-23 06:40:52.055 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 9/50, Train Loss: 0.03474831413611663, Val Loss: 0.043346695069755824 +2024-07-23 06:40:58.389 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 10/50, Train Loss: 0.03473129162310268, Val Loss: 0.04268752027835165 +2024-07-23 06:40:58.390 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:40:58.390 No tasks are waiting in the queue. +2024-07-23 06:40:58.390 4 steps have not started: log_model, validate_model, model_scores, end. +2024-07-23 06:41:04.757 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 11/50, Train Loss: 0.034326079174233, Val Loss: 0.04204058732305254 +2024-07-23 06:41:11.120 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 12/50, Train Loss: 0.034404288334168975, Val Loss: 0.04329576811620167 +2024-07-23 06:41:17.512 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 13/50, Train Loss: 0.034233327874605604, Val Loss: 0.042566754562514166 +2024-07-23 06:41:23.900 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 14/50, Train Loss: 0.03441038140826088, Val Loss: 0.042637932407004496 +2024-07-23 06:41:30.254 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 15/50, Train Loss: 0.034601181839331446, Val Loss: 0.04251238756946155 +2024-07-23 06:41:36.648 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 16/50, Train Loss: 0.034234356711343894, Val Loss: 0.042695577016898564 +2024-07-23 06:41:43.025 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 17/50, Train Loss: 0.034263236113160636, Val Loss: 0.04254079455775874 +2024-07-23 06:41:49.405 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 18/50, Train Loss: 0.034087851978570435, Val Loss: 0.04067123058651175 +2024-07-23 06:41:55.793 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 19/50, Train Loss: 0.03402058347362837, Val Loss: 0.04182692633143493 +2024-07-23 06:42:02.197 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 20/50, Train Loss: 0.0337899341214475, Val Loss: 0.041739458537527495 +2024-07-23 06:42:08.545 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 21/50, Train Loss: 0.033688954231764774, Val Loss: 0.042827572779996055 +2024-07-23 06:42:14.955 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 22/50, Train Loss: 0.03404530389703435, Val Loss: 0.042144672253302165 +2024-07-23 06:42:21.325 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 23/50, Train Loss: 0.03408323056835065, Val Loss: 0.04170160591602325 +2024-07-23 06:42:27.720 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 24/50, Train Loss: 0.03367696273669922, Val Loss: 0.042119022245918 +2024-07-23 06:42:34.070 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 25/50, Train Loss: 0.0338515169087717, Val Loss: 0.04278337636164257 +2024-07-23 06:42:40.419 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 26/50, Train Loss: 0.033493475579797365, Val Loss: 0.041680979090077536 +2024-07-23 06:42:46.815 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 27/50, Train Loss: 0.03305699875270077, Val Loss: 0.0419326628957476 +2024-07-23 06:42:53.194 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 28/50, Train Loss: 0.03410435304474488, Val Loss: 0.0438801078924111 +2024-07-23 06:42:59.554 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 29/50, Train Loss: 0.033734341286015594, Val Loss: 0.04277803227305412 +2024-07-23 06:43:05.960 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 30/50, Train Loss: 0.03327456682170038, Val Loss: 0.04277765921183995 +2024-07-23 06:43:12.361 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 31/50, Train Loss: 0.03367587769899866, Val Loss: 0.042199334715093885 +2024-07-23 06:43:18.728 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 32/50, Train Loss: 0.033668457135129316, Val Loss: 0.041206100423421176 +2024-07-23 06:43:25.088 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 33/50, Train Loss: 0.033493305804382124, Val Loss: 0.04298426051224981 +2024-07-23 06:43:31.437 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 34/50, Train Loss: 0.03393801800879857, Val Loss: 0.04259291605225631 +2024-07-23 06:43:37.824 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 35/50, Train Loss: 0.03402211802522484, Val Loss: 0.04229967173721109 +2024-07-23 06:43:44.283 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 36/50, Train Loss: 0.03357409990707533, Val Loss: 0.04282844439148903 +2024-07-23 06:43:50.671 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 37/50, Train Loss: 0.03399497442108264, Val Loss: 0.04164854809641838 +2024-07-23 06:43:57.040 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 38/50, Train Loss: 0.03332825361503114, Val Loss: 0.042748610994645525 +2024-07-23 06:44:03.390 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 39/50, Train Loss: 0.03356292346666614, Val Loss: 0.04198591091803142 +2024-07-23 06:44:09.715 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 40/50, Train Loss: 0.03395401699830302, Val Loss: 0.042381685546466284 +2024-07-23 06:44:16.110 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 41/50, Train Loss: 0.033052834139453424, Val Loss: 0.041977282613515854 +2024-07-23 06:44:22.504 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 42/50, Train Loss: 0.033347826270158774, Val Loss: 0.042516947856971195 +2024-07-23 06:44:28.870 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 43/50, Train Loss: 0.0343469652152962, Val Loss: 0.04290518366864749 +2024-07-23 06:44:35.200 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 44/50, Train Loss: 0.032918784392180205, Val Loss: 0.04295355187995093 +2024-07-23 06:44:41.537 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 45/50, Train Loss: 0.03347626294967511, Val Loss: 0.04220784822744983 +2024-07-23 06:44:47.923 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 46/50, Train Loss: 0.03348743506177938, Val Loss: 0.04319444192307336 +2024-07-23 06:44:54.335 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 47/50, Train Loss: 0.033350243521251266, Val Loss: 0.041925760358572005 +2024-07-23 06:45:00.693 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 48/50, Train Loss: 0.033589199319374645, Val Loss: 0.04162861172642027 +2024-07-23 06:45:07.054 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 49/50, Train Loss: 0.0327817937158209, Val Loss: 0.03953629114798137 +2024-07-23 06:45:13.464 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 50/50, Train Loss: 0.033443013547832585, Val Loss: 0.0411834112235478 +2024-07-23 06:45:13.464 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Fold 3, MAPE: 3.59% +2024-07-23 06:45:13.575 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_200001_500000_LSTM//train_f3_bgd_education_200001_500000_LSTM.png +2024-07-23 06:45:21.382 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 1/50, Train Loss: 0.033875442688064326, Val Loss: 0.04266606132899012 +2024-07-23 06:45:29.230 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 2/50, Train Loss: 0.03303866935144553, Val Loss: 0.03839704096317291 +2024-07-23 06:45:37.003 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 3/50, Train Loss: 0.03314055231581817, Val Loss: 0.038126206664102415 +2024-07-23 06:45:44.782 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 4/50, Train Loss: 0.033124616369605064, Val Loss: 0.044906741167817794 +2024-07-23 06:45:52.666 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 5/50, Train Loss: 0.032994944067008196, Val Loss: 0.04406914274607386 +2024-07-23 06:46:00.479 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 6/50, Train Loss: 0.033409177673573806, Val Loss: 0.03633888188217368 +2024-07-23 06:46:00.479 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:46:00.479 No tasks are waiting in the queue. +2024-07-23 06:46:00.479 4 steps have not started: log_model, validate_model, model_scores, end. +2024-07-23 06:46:08.305 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 7/50, Train Loss: 0.032857640785561214, Val Loss: 0.03986265920102596 +2024-07-23 06:46:16.139 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 8/50, Train Loss: 0.032502665730385946, Val Loss: 0.039159764402679036 +2024-07-23 06:46:23.964 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 9/50, Train Loss: 0.032780558256239725, Val Loss: 0.03969125215496336 +2024-07-23 06:46:31.739 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 10/50, Train Loss: 0.03273610440457518, Val Loss: 0.03425337336957455 +2024-07-23 06:46:39.569 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 11/50, Train Loss: 0.03300567313857462, Val Loss: 0.037550123780965804 +2024-07-23 06:46:47.378 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 12/50, Train Loss: 0.033045644368762256, Val Loss: 0.04157683168138777 +2024-07-23 06:46:55.208 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 13/50, Train Loss: 0.03265682738488433, Val Loss: 0.03799473446394716 +2024-07-23 06:47:03.025 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 14/50, Train Loss: 0.03241490210866791, Val Loss: 0.03774224317499569 +2024-07-23 06:47:10.843 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 15/50, Train Loss: 0.03272029935200324, Val Loss: 0.03839403092861175 +2024-07-23 06:47:18.684 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 16/50, Train Loss: 0.03238301453362594, Val Loss: 0.040388690094862664 +2024-07-23 06:47:26.496 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 17/50, Train Loss: 0.03237300406841711, Val Loss: 0.04230976445334298 +2024-07-23 06:47:34.310 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 18/50, Train Loss: 0.03253230261991079, Val Loss: 0.044239292506660734 +2024-07-23 06:47:42.164 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 19/50, Train Loss: 0.0321023347412889, Val Loss: 0.04232153142137187 +2024-07-23 06:47:49.988 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 20/50, Train Loss: 0.03205712278234376, Val Loss: 0.0386039854160377 +2024-07-23 06:47:57.838 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 21/50, Train Loss: 0.032163235123387014, Val Loss: 0.03919817214565618 +2024-07-23 06:48:05.749 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 22/50, Train Loss: 0.032072997057874655, Val Loss: 0.0378571339483772 +2024-07-23 06:48:13.723 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 23/50, Train Loss: 0.032238411470905115, Val Loss: 0.03560213851077216 +2024-07-23 06:48:21.554 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 24/50, Train Loss: 0.03216922211450064, Val Loss: 0.03992296899003642 +2024-07-23 06:48:29.390 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 25/50, Train Loss: 0.03208687744135487, Val Loss: 0.037616584396788055 +2024-07-23 06:48:37.271 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 26/50, Train Loss: 0.03236171877247163, Val Loss: 0.035950112342834475 +2024-07-23 06:48:45.134 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 27/50, Train Loss: 0.031971676671213804, Val Loss: 0.038058784284761976 +2024-07-23 06:48:52.989 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 28/50, Train Loss: 0.03185681678654476, Val Loss: 0.0404156535331692 +2024-07-23 06:49:00.809 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 29/50, Train Loss: 0.03225595924211131, Val Loss: 0.037586528169257304 +2024-07-23 06:49:08.630 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 30/50, Train Loss: 0.03213292497863201, Val Loss: 0.03725372866860458 +2024-07-23 06:49:16.529 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 31/50, Train Loss: 0.031577374513164676, Val Loss: 0.03468202884708132 +2024-07-23 06:49:24.385 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 32/50, Train Loss: 0.03190836554457401, Val Loss: 0.03516879566013813 +2024-07-23 06:49:32.307 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 33/50, Train Loss: 0.03218451739642127, Val Loss: 0.034539381840399334 +2024-07-23 06:49:40.121 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 34/50, Train Loss: 0.03162047081766115, Val Loss: 0.036674131878784724 +2024-07-23 06:49:48.008 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 35/50, Train Loss: 0.03257245934386363, Val Loss: 0.03888306064265115 +2024-07-23 06:49:55.871 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 36/50, Train Loss: 0.03171256124630742, Val Loss: 0.03542592520160334 +2024-07-23 06:50:03.760 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 37/50, Train Loss: 0.031537100062545, Val Loss: 0.033908059341566904 +2024-07-23 06:50:11.629 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 38/50, Train Loss: 0.0321184266358614, Val Loss: 0.03406452041651521 +2024-07-23 06:50:19.532 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 39/50, Train Loss: 0.03160775831804193, Val Loss: 0.03521947669131415 +2024-07-23 06:50:27.457 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 40/50, Train Loss: 0.03195184520606337, Val Loss: 0.03273361511528492 +2024-07-23 06:50:35.318 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 41/50, Train Loss: 0.03162369690835476, Val Loss: 0.034279035670416694 +2024-07-23 06:50:43.234 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 42/50, Train Loss: 0.03138372781632961, Val Loss: 0.034583827959639685 +2024-07-23 06:50:51.127 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 43/50, Train Loss: 0.031776572160165883, Val Loss: 0.03392272415970053 +2024-07-23 06:50:58.979 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 44/50, Train Loss: 0.0314041282767537, Val Loss: 0.03566177221281188 +2024-07-23 06:51:06.824 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 45/50, Train Loss: 0.03178948172014849, Val Loss: 0.03730248750320503 +2024-07-23 06:51:06.825 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:51:06.825 No tasks are waiting in the queue. +2024-07-23 06:51:06.825 4 steps have not started: log_model, validate_model, model_scores, end. +2024-07-23 06:51:14.692 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 46/50, Train Loss: 0.03204221085741602, Val Loss: 0.032664275222590994 +2024-07-23 06:51:22.550 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 47/50, Train Loss: 0.031485849295625055, Val Loss: 0.03418483132762568 +2024-07-23 06:51:30.369 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 48/50, Train Loss: 0.031501387470755086, Val Loss: 0.03277634658983775 +2024-07-23 06:51:38.217 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 49/50, Train Loss: 0.03147551839122142, Val Loss: 0.03364566138812474 +2024-07-23 06:51:46.092 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 50/50, Train Loss: 0.03157473201381749, Val Loss: 0.033698948100209236 +2024-07-23 06:51:46.092 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Fold 4, MAPE: 2.97% +2024-07-23 06:51:46.201 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_200001_500000_LSTM//train_f4_bgd_education_200001_500000_LSTM.png +2024-07-23 06:51:50.480 [53/cross_validate_train/569 (pid 82420)] Task finished successfully. +2024-07-23 06:51:50.511 [53/model_scores/570 (pid 87124)] Task is starting. +2024-07-23 06:51:51.995 [53/model_scores/570 (pid 87124)] INFO:__main__:Average Train Loss across all folds: 0.037476284473372604 +2024-07-23 06:51:55.919 [53/model_scores/570 (pid 87124)] INFO:__main__:Average Validation Loss across all folds: 0.04335166051983833 +2024-07-23 06:51:55.919 [53/model_scores/570 (pid 87124)] INFO:__main__:Average MAPE across all folds: 3.39% +2024-07-23 06:51:55.920 [53/model_scores/570 (pid 87124)] Task finished successfully. +2024-07-23 06:51:55.949 [53/validate_model/571 (pid 87155)] Task is starting. +2024-07-23 06:51:57.410 [53/validate_model/571 (pid 87155)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 06:51:58.193 [53/validate_model/571 (pid 87155)] INFO:__main__:Test Set MAPE: 3.31% +2024-07-23 06:51:58.546 [53/validate_model/571 (pid 87155)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_education_200001_500000_LSTM//test_bgd_education_200001_500000_LSTM.png +2024-07-23 06:51:58.986 [53/validate_model/571 (pid 87155)] Task finished successfully. +2024-07-23 06:51:59.015 [53/log_model/572 (pid 87173)] Task is starting. +2024-07-23 06:52:00.476 [53/log_model/572 (pid 87173)] INFO:__main__:Logging model bgd_education_200001_500000_LSTM +2024-07-23 06:52:00.477 [53/log_model/572 (pid 87173)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_education_200001_500000_LSTM//bgd_education_200001_500000_LSTM.pth +2024-07-23 06:52:04.421 [53/log_model/572 (pid 87173)] Task finished successfully. +2024-07-23 06:52:04.454 [53/end/573 (pid 87200)] Task is starting. +2024-07-23 06:52:05.935 [53/end/573 (pid 87200)] INFO:__main__:Pipeline end. +2024-07-23 06:52:06.241 [53/end/573 (pid 87200)] Task finished successfully. +2024-07-23 06:52:06.241 Done! +✅ Run('BGD_LinearFlow/53') succeeded: +-- stdout -- +2024-07-23 06:30:52.976 Workflow starting (run-id 53): +2024-07-23 06:30:53.042 [53/start/561 (pid 82270)] Task is starting. +2024-07-23 06:30:54.514 [53/start/561 (pid 82270)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 06:30:54.811 [53/start/561 (pid 82270)] Task finished successfully. +2024-07-23 06:30:54.840 [53/ingest/562 (pid 82281)] Task is starting. +2024-07-23 06:30:56.369 [53/ingest/562 (pid 82281)] INFO:__main__:Fetching dataframe.. +2024-07-23 06:30:56.395 [53/ingest/562 (pid 82281)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 06:31:00.255 [53/ingest/562 (pid 82281)] Task finished successfully. +2024-07-23 06:31:00.284 [53/pick_2017_data/563 (pid 82314)] Task is starting. +2024-07-23 06:31:01.715 [53/pick_2017_data/563 (pid 82314)] INFO:__main__:Picking 2017 data.. +2024-07-23 06:31:02.039 [53/pick_2017_data/563 (pid 82314)] Task finished successfully. +2024-07-23 06:31:02.070 [53/fill_missing_data/564 (pid 82326)] Task is starting. +2024-07-23 06:31:03.552 [53/fill_missing_data/564 (pid 82326)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 06:31:03.565 [53/fill_missing_data/564 (pid 82326)] INFO:__main__:NaN counts per column: +2024-07-23 06:31:03.565 [53/fill_missing_data/564 (pid 82326)] INFO:__main__:Fox_education_Melinda 1 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Fox_education_Otilia 15 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Fox_education_Maureen 2 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Fox_education_Leona 2 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Fox_education_Wendell 4 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Rat_education_Lee 1 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Rat_education_Kathryn 1 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Rat_education_Conrad 99 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Rat_education_Beverly 2 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Rat_education_Elsie 48 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Rat_education_Tania 202 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Bear_education_Bulah 36 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Bear_education_Wilton 8 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Moose_education_Florence 32 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Cockatoo_education_Brigitte 114 +2024-07-23 06:31:03.566 [53/fill_missing_data/564 (pid 82326)] Cockatoo_education_Terrence 126 +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] Cockatoo_education_Janet 113 +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] Cockatoo_education_Tyler 114 +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] dtype: int64 +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] --- Logging error --- +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] Traceback (most recent call last): +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] msg = self.format(record) +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] return fmt.format(record) +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] record.message = record.getMessage() +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] msg = msg % self.args +2024-07-23 06:31:03.567 [53/fill_missing_data/564 (pid 82326)] TypeError: not all arguments converted during string formatting +2024-07-23 06:31:03.568 [53/fill_missing_data/564 (pid 82326)] Call stack: +2024-07-23 06:31:03.568 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 06:31:04.469 [53/fill_missing_data/564 (pid 82326)] BGD_LinearFlow() +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] cli.main(self) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] return func(*args, **kwargs) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] return self.main(*args, **kwargs) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] rv = self.invoke(ctx) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] return callback(*args, **kwargs) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] return f(get_current_context(), *args, **kwargs) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] task.run_step( +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] self._exec_step_function(step_func) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] step_function() +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] self.missing_values = find_nan_counts(self.df) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 06:31:04.470 [53/fill_missing_data/564 (pid 82326)] Arguments: (920,) +2024-07-23 06:31:04.471 [53/fill_missing_data/564 (pid 82326)] Task finished successfully. +2024-07-23 06:31:04.502 [53/find_median/565 (pid 82337)] Task is starting. +2024-07-23 06:31:05.948 [53/find_median/565 (pid 82337)] INFO:__main__:Computing and using median.. +2024-07-23 06:31:06.473 [53/find_median/565 (pid 82337)] Task finished successfully. +2024-07-23 06:31:06.503 [53/aggregate_data/566 (pid 82348)] Task is starting. +2024-07-23 06:31:07.970 [53/aggregate_data/566 (pid 82348)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 06:31:11.861 [53/aggregate_data/566 (pid 82348)] Task finished successfully. +2024-07-23 06:31:11.889 [53/split_data/567 (pid 82376)] Task is starting. +2024-07-23 06:31:13.361 [53/split_data/567 (pid 82376)] INFO:__main__:Splitting data into test and train... +2024-07-23 06:31:17.195 [53/split_data/567 (pid 82376)] Task finished successfully. +2024-07-23 06:31:17.227 [53/make_x_y/568 (pid 82407)] Task is starting. +2024-07-23 06:31:19.028 [53/make_x_y/568 (pid 82407)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 06:31:19.426 [53/make_x_y/568 (pid 82407)] Shape of y_train: (6648, 1) +2024-07-23 06:31:19.426 [53/make_x_y/568 (pid 82407)] Shape of X_test: (1392, 360, 1) +2024-07-23 06:31:19.426 [53/make_x_y/568 (pid 82407)] Shape of y_test: (1392, 1) +2024-07-23 06:31:19.427 [53/make_x_y/568 (pid 82407)] Task finished successfully. +2024-07-23 06:31:19.458 [53/cross_validate_train/569 (pid 82420)] Task is starting. +2024-07-23 06:31:20.918 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Creating bgd_education_200001_500000_LSTM +2024-07-23 06:31:20.919 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Performing cross validation.. +2024-07-23 06:31:23.402 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 1/50, Train Loss: 0.2931846869843347, Val Loss: 0.2356158618416105 +2024-07-23 06:31:25.280 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 2/50, Train Loss: 0.21336559568132674, Val Loss: 0.21285719211612428 +2024-07-23 06:31:27.197 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 3/50, Train Loss: 0.1815904398049627, Val Loss: 0.14310754942042486 +2024-07-23 06:31:29.116 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 4/50, Train Loss: 0.11655992014067514, Val Loss: 0.10903373743806566 +2024-07-23 06:31:31.026 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 5/50, Train Loss: 0.10418041348457337, Val Loss: 0.09841924969639097 +2024-07-23 06:31:32.956 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 6/50, Train Loss: 0.09943507143429348, Val Loss: 0.09418841110808508 +2024-07-23 06:31:34.873 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 7/50, Train Loss: 0.09806099981069565, Val Loss: 0.09378543730293001 +2024-07-23 06:31:36.798 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 8/50, Train Loss: 0.09833468986409051, Val Loss: 0.09455367646047047 +2024-07-23 06:31:38.711 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 9/50, Train Loss: 0.09225019429411208, Val Loss: 0.090434601690088 +2024-07-23 06:31:40.653 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 10/50, Train Loss: 0.08806583774941308, Val Loss: 0.0892255248767989 +2024-07-23 06:31:42.600 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 11/50, Train Loss: 0.08685887604951859, Val Loss: 0.09578325620719365 +2024-07-23 06:31:44.525 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 12/50, Train Loss: 0.086441884296281, Val Loss: 0.09087377062865666 +2024-07-23 06:31:46.453 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 13/50, Train Loss: 0.08216054226670946, Val Loss: 0.08805969016892569 +2024-07-23 06:31:48.394 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 14/50, Train Loss: 0.07895769051143102, Val Loss: 0.08652703889778682 +2024-07-23 06:31:50.320 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 15/50, Train Loss: 0.0756925639297281, Val Loss: 0.08290374960218157 +2024-07-23 06:31:52.274 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 16/50, Train Loss: 0.07388057623590742, Val Loss: 0.08280622788837978 +2024-07-23 06:31:54.204 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 17/50, Train Loss: 0.07181485944560596, Val Loss: 0.07744642687695368 +2024-07-23 06:31:56.147 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 18/50, Train Loss: 0.0678231948188373, Val Loss: 0.07277991973928043 +2024-07-23 06:31:58.087 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 19/50, Train Loss: 0.06739177735788482, Val Loss: 0.07518124931624957 +2024-07-23 06:32:00.046 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 20/50, Train Loss: 0.06540748210889953, Val Loss: 0.07201618392552649 +2024-07-23 06:32:01.993 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 21/50, Train Loss: 0.06487172661083085, Val Loss: 0.07191302201577596 +2024-07-23 06:32:03.931 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 22/50, Train Loss: 0.06367171928286552, Val Loss: 0.07036021990435463 +2024-07-23 06:32:05.858 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 23/50, Train Loss: 0.06422835226569856, Val Loss: 0.06973599993756839 +2024-07-23 06:32:07.793 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 24/50, Train Loss: 0.06363873077290398, Val Loss: 0.06831075538481984 +2024-07-23 06:32:09.727 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 25/50, Train Loss: 0.061793734239680424, Val Loss: 0.06787852389471871 +2024-07-23 06:32:11.712 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 26/50, Train Loss: 0.06199963816574642, Val Loss: 0.0672924822994641 +2024-07-23 06:32:13.653 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 27/50, Train Loss: 0.0611384925033365, Val Loss: 0.06665609351226262 +2024-07-23 06:32:15.596 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 28/50, Train Loss: 0.06101419712815966, Val Loss: 0.07004098679338183 +2024-07-23 06:32:17.527 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 29/50, Train Loss: 0.05980004008327212, Val Loss: 0.06563973682267325 +2024-07-23 06:32:19.469 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 30/50, Train Loss: 0.05983312151261738, Val Loss: 0.0663305054817881 +2024-07-23 06:32:21.402 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 31/50, Train Loss: 0.05887234870876585, Val Loss: 0.06627116597124509 +2024-07-23 06:32:23.347 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 32/50, Train Loss: 0.05898657590150833, Val Loss: 0.06493858726961273 +2024-07-23 06:32:25.276 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 33/50, Train Loss: 0.05762061114822115, Val Loss: 0.06598136691110475 +2024-07-23 06:32:27.201 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 34/50, Train Loss: 0.0577747245984418, Val Loss: 0.06459762762699808 +2024-07-23 06:32:29.127 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 35/50, Train Loss: 0.05741517139332635, Val Loss: 0.06381235186542783 +2024-07-23 06:32:31.077 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 36/50, Train Loss: 0.05716598214847701, Val Loss: 0.06454261136906488 +2024-07-23 06:32:33.050 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 37/50, Train Loss: 0.05655300532068525, Val Loss: 0.06478135202612195 +2024-07-23 06:32:34.990 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 38/50, Train Loss: 0.056893359124660495, Val Loss: 0.06443402160491263 +2024-07-23 06:32:36.916 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 39/50, Train Loss: 0.056331367577825274, Val Loss: 0.06299003809690476 +2024-07-23 06:32:38.845 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 40/50, Train Loss: 0.05526718220540455, Val Loss: 0.06193936073354312 +2024-07-23 06:32:40.786 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 41/50, Train Loss: 0.055702255559819086, Val Loss: 0.06553158600415503 +2024-07-23 06:32:42.730 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 42/50, Train Loss: 0.05537918039730617, Val Loss: 0.062054855270045145 +2024-07-23 06:32:44.675 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 43/50, Train Loss: 0.05495700410434178, Val Loss: 0.062206249364784784 +2024-07-23 06:32:46.608 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 44/50, Train Loss: 0.05489419134599822, Val Loss: 0.06179385568414416 +2024-07-23 06:32:48.535 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 45/50, Train Loss: 0.0549073943070003, Val Loss: 0.062394092551299504 +2024-07-23 06:32:50.475 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 46/50, Train Loss: 0.0542687785412584, Val Loss: 0.0620409760091986 +2024-07-23 06:32:52.441 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 47/50, Train Loss: 0.054821524130446574, Val Loss: 0.0626456893980503 +2024-07-23 06:32:54.388 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 48/50, Train Loss: 0.053795794610466276, Val Loss: 0.0605634517967701 +2024-07-23 06:32:56.343 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 49/50, Train Loss: 0.0539094440639019, Val Loss: 0.061043324640819005 +2024-07-23 06:32:58.286 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 50/50, Train Loss: 0.05373890740530832, Val Loss: 0.06051351970859936 +2024-07-23 06:32:58.286 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Fold 0, MAPE: 3.57% +2024-07-23 06:32:58.614 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_200001_500000_LSTM//train_f0_bgd_education_200001_500000_LSTM.png +2024-07-23 06:33:02.116 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 1/50, Train Loss: 0.04459742446030889, Val Loss: 0.036853198068482536 +2024-07-23 06:33:05.487 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 2/50, Train Loss: 0.04070289036525147, Val Loss: 0.04035822701241289 +2024-07-23 06:33:08.893 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 3/50, Train Loss: 0.03996643251074212, Val Loss: 0.037234033910291536 +2024-07-23 06:33:12.339 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 4/50, Train Loss: 0.04007398531373058, Val Loss: 0.041917316509144646 +2024-07-23 06:33:15.727 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 5/50, Train Loss: 0.04019101397799594, Val Loss: 0.040634045430592125 +2024-07-23 06:33:19.099 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 6/50, Train Loss: 0.039900046613599575, Val Loss: 0.03990379912512643 +2024-07-23 06:33:22.505 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 7/50, Train Loss: 0.03956319612583944, Val Loss: 0.037777887125100405 +2024-07-23 06:33:25.900 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 8/50, Train Loss: 0.03925129718014172, Val Loss: 0.03928126538438456 +2024-07-23 06:33:29.289 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 9/50, Train Loss: 0.03926748133131436, Val Loss: 0.03884371492479529 +2024-07-23 06:33:32.703 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 10/50, Train Loss: 0.03839530069380999, Val Loss: 0.03931940464036805 +2024-07-23 06:33:36.109 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 11/50, Train Loss: 0.03867984592382397, Val Loss: 0.03823947161436081 +2024-07-23 06:33:39.506 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 12/50, Train Loss: 0.038425245002976484, Val Loss: 0.038281208276748656 +2024-07-23 06:33:42.905 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 13/50, Train Loss: 0.03821553795465401, Val Loss: 0.03801602614777429 +2024-07-23 06:33:46.307 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 14/50, Train Loss: 0.038275244326463766, Val Loss: 0.037987614689128736 +2024-07-23 06:33:49.713 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 15/50, Train Loss: 0.0382511026092938, Val Loss: 0.03777937016316823 +2024-07-23 06:33:53.146 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 16/50, Train Loss: 0.03793979095561164, Val Loss: 0.037939730712345666 +2024-07-23 06:33:56.540 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 17/50, Train Loss: 0.03840637691318989, Val Loss: 0.03875497265585831 +2024-07-23 06:33:59.955 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 18/50, Train Loss: 0.03857958731906755, Val Loss: 0.03781678197639329 +2024-07-23 06:34:03.382 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 19/50, Train Loss: 0.037579817830451896, Val Loss: 0.03814658985606262 +2024-07-23 06:34:06.780 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 20/50, Train Loss: 0.037932680919766426, Val Loss: 0.03771916936550822 +2024-07-23 06:34:10.189 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 21/50, Train Loss: 0.03775286278022187, Val Loss: 0.03830743453332356 +2024-07-23 06:34:13.638 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 22/50, Train Loss: 0.03778443450906447, Val Loss: 0.03713155963591167 +2024-07-23 06:34:17.059 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 23/50, Train Loss: 0.03724108817321914, Val Loss: 0.03819600412888186 +2024-07-23 06:34:20.464 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 24/50, Train Loss: 0.037443473456161364, Val Loss: 0.03932046645453998 +2024-07-23 06:34:23.860 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 25/50, Train Loss: 0.03708649764635733, Val Loss: 0.04039735533297062 +2024-07-23 06:34:27.259 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 26/50, Train Loss: 0.03722459812249456, Val Loss: 0.03807787863271577 +2024-07-23 06:34:30.667 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 27/50, Train Loss: 0.03722575165863548, Val Loss: 0.03901361376047134 +2024-07-23 06:34:34.075 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 28/50, Train Loss: 0.037302585425121444, Val Loss: 0.03905039424342768 +2024-07-23 06:34:37.468 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 29/50, Train Loss: 0.0374914662912488, Val Loss: 0.03813816479274205 +2024-07-23 06:34:40.860 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 30/50, Train Loss: 0.03714829816349915, Val Loss: 0.03936898883964334 +2024-07-23 06:34:44.284 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 31/50, Train Loss: 0.037129316266093934, Val Loss: 0.03929929110620703 +2024-07-23 06:34:47.708 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 32/50, Train Loss: 0.03761820652123008, Val Loss: 0.03888864703476429 +2024-07-23 06:34:51.116 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 33/50, Train Loss: 0.03722772590283837, Val Loss: 0.03963653913566045 +2024-07-23 06:34:54.541 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 34/50, Train Loss: 0.03721564726105758, Val Loss: 0.037438321911862915 +2024-07-23 06:34:57.946 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 35/50, Train Loss: 0.0369414639792272, Val Loss: 0.038796911601509367 +2024-07-23 06:35:01.362 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 36/50, Train Loss: 0.03697996174118349, Val Loss: 0.03839609138667584 +2024-07-23 06:35:04.790 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 37/50, Train Loss: 0.036906300698007856, Val Loss: 0.038883061494146075 +2024-07-23 06:35:08.199 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 38/50, Train Loss: 0.03660383823194674, Val Loss: 0.038076040095516614 +2024-07-23 06:35:11.633 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 39/50, Train Loss: 0.03695342732327325, Val Loss: 0.03863159487290042 +2024-07-23 06:35:15.039 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 40/50, Train Loss: 0.03701325811977897, Val Loss: 0.03896760168884482 +2024-07-23 06:35:18.426 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 41/50, Train Loss: 0.0367004417149084, Val Loss: 0.04180780670472554 +2024-07-23 06:35:21.867 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 42/50, Train Loss: 0.03711953902883189, Val Loss: 0.03884813423667635 +2024-07-23 06:35:25.275 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 43/50, Train Loss: 0.03652910691286836, Val Loss: 0.03796486375587327 +2024-07-23 06:35:28.680 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 44/50, Train Loss: 0.03641581282551799, Val Loss: 0.03859056899590152 +2024-07-23 06:35:32.103 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 45/50, Train Loss: 0.03650604438568864, Val Loss: 0.03981440242912088 +2024-07-23 06:35:35.513 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 46/50, Train Loss: 0.03630550030086722, Val Loss: 0.03920862445873874 +2024-07-23 06:35:38.933 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 47/50, Train Loss: 0.03651335383100169, Val Loss: 0.037751565660749165 +2024-07-23 06:35:42.361 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 48/50, Train Loss: 0.036525071438934124, Val Loss: 0.03863939983504159 +2024-07-23 06:35:45.755 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 49/50, Train Loss: 0.036223896433200155, Val Loss: 0.0386743609394346 +2024-07-23 06:35:49.158 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 50/50, Train Loss: 0.03627225293644837, Val Loss: 0.04082592725753784 +2024-07-23 06:35:49.158 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Fold 1, MAPE: 3.25% +2024-07-23 06:35:49.274 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_200001_500000_LSTM//train_f1_bgd_education_200001_500000_LSTM.png +2024-07-23 06:35:54.207 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 1/50, Train Loss: 0.03565286139312845, Val Loss: 0.041767541532005584 +2024-07-23 06:35:54.207 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:35:54.207 No tasks are waiting in the queue. +2024-07-23 06:35:54.207 4 steps have not started: log_model, validate_model, model_scores, end. +2024-07-23 06:35:59.077 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 2/50, Train Loss: 0.03546009239597389, Val Loss: 0.041729312709399634 +2024-07-23 06:36:03.958 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 3/50, Train Loss: 0.03486151575970535, Val Loss: 0.040794909745454785 +2024-07-23 06:36:08.817 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 4/50, Train Loss: 0.035169240176820986, Val Loss: 0.042372489560927665 +2024-07-23 06:36:13.709 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 5/50, Train Loss: 0.03515606971744161, Val Loss: 0.04067851805261203 +2024-07-23 06:36:18.578 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 6/50, Train Loss: 0.03480543137098161, Val Loss: 0.04142964546169554 +2024-07-23 06:36:23.498 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 7/50, Train Loss: 0.03547383277103878, Val Loss: 0.04151075514299529 +2024-07-23 06:36:28.358 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 8/50, Train Loss: 0.03532497203335739, Val Loss: 0.0418536301702261 +2024-07-23 06:36:33.232 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 9/50, Train Loss: 0.034827050126086063, Val Loss: 0.0408975928489651 +2024-07-23 06:36:38.123 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 10/50, Train Loss: 0.03484723604140946, Val Loss: 0.040780185801642284 +2024-07-23 06:36:43.033 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 11/50, Train Loss: 0.034255456268930666, Val Loss: 0.04159812389739922 +2024-07-23 06:36:47.915 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 12/50, Train Loss: 0.03416087499891336, Val Loss: 0.04387086044464793 +2024-07-23 06:36:52.824 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 13/50, Train Loss: 0.03466684716896942, Val Loss: 0.04108922460249492 +2024-07-23 06:36:57.722 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 14/50, Train Loss: 0.034326220235715695, Val Loss: 0.04149742589465209 +2024-07-23 06:37:02.636 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 15/50, Train Loss: 0.03426094928111594, Val Loss: 0.04106366474713598 +2024-07-23 06:37:07.530 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 16/50, Train Loss: 0.03434076729732064, Val Loss: 0.04081480902220522 +2024-07-23 06:37:12.474 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 17/50, Train Loss: 0.033975285495846316, Val Loss: 0.04188690802880696 +2024-07-23 06:37:17.369 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 18/50, Train Loss: 0.03437844685350473, Val Loss: 0.04038740620017052 +2024-07-23 06:37:22.276 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 19/50, Train Loss: 0.03354897513054311, Val Loss: 0.04167212865182331 +2024-07-23 06:37:27.120 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 20/50, Train Loss: 0.033799526013004094, Val Loss: 0.04054119831749371 +2024-07-23 06:37:32.026 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 21/50, Train Loss: 0.03355426941281901, Val Loss: 0.04233901362333979 +2024-07-23 06:37:36.916 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 22/50, Train Loss: 0.03403526763073527, Val Loss: 0.040844244084187915 +2024-07-23 06:37:41.822 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 23/50, Train Loss: 0.03361254672591503, Val Loss: 0.04126848551843847 +2024-07-23 06:37:46.729 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 24/50, Train Loss: 0.03350816821106351, Val Loss: 0.04103331651006426 +2024-07-23 06:37:51.628 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 25/50, Train Loss: 0.03367141179310588, Val Loss: 0.04019697095666613 +2024-07-23 06:37:56.596 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 26/50, Train Loss: 0.033130503456609756, Val Loss: 0.041616970832858764 +2024-07-23 06:38:01.473 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 27/50, Train Loss: 0.03335283170096003, Val Loss: 0.04108180643192359 +2024-07-23 06:38:06.396 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 28/50, Train Loss: 0.03305543230201762, Val Loss: 0.040686641952821186 +2024-07-23 06:38:11.305 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 29/50, Train Loss: 0.03304337337613106, Val Loss: 0.04190362058579922 +2024-07-23 06:38:16.227 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 30/50, Train Loss: 0.03340455839553705, Val Loss: 0.041628233822328706 +2024-07-23 06:38:21.091 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 31/50, Train Loss: 0.033147214338756524, Val Loss: 0.041544654699308535 +2024-07-23 06:38:25.999 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 32/50, Train Loss: 0.033180831268859595, Val Loss: 0.04156617516917842 +2024-07-23 06:38:30.912 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 33/50, Train Loss: 0.03316721511789812, Val Loss: 0.040076483466795515 +2024-07-23 06:38:35.862 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 34/50, Train Loss: 0.032588164017607384, Val Loss: 0.041066325668777735 +2024-07-23 06:38:40.814 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 35/50, Train Loss: 0.03285815307977968, Val Loss: 0.04075812745307173 +2024-07-23 06:38:45.731 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 36/50, Train Loss: 0.03245791298552202, Val Loss: 0.04081822165421077 +2024-07-23 06:38:50.656 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 37/50, Train Loss: 0.032238708182166405, Val Loss: 0.04132780400770051 +2024-07-23 06:38:55.556 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 38/50, Train Loss: 0.032577763830956355, Val Loss: 0.04042840451002121 +2024-07-23 06:39:00.442 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 39/50, Train Loss: 0.03244411708930364, Val Loss: 0.039924397372773715 +2024-07-23 06:39:05.365 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 40/50, Train Loss: 0.03246224505934291, Val Loss: 0.04041989073157311 +2024-07-23 06:39:10.297 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 41/50, Train Loss: 0.03222557705325576, Val Loss: 0.040274023903267724 +2024-07-23 06:39:15.258 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 42/50, Train Loss: 0.03201463643927127, Val Loss: 0.04153762039329324 +2024-07-23 06:39:20.164 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 43/50, Train Loss: 0.03318715067759443, Val Loss: 0.0407343221030065 +2024-07-23 06:39:25.088 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 44/50, Train Loss: 0.03269640890021737, Val Loss: 0.04155339055827686 +2024-07-23 06:39:30.014 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 45/50, Train Loss: 0.0328814778297853, Val Loss: 0.04032938443124294 +2024-07-23 06:39:34.931 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 46/50, Train Loss: 0.0326734908695261, Val Loss: 0.04051341957279614 +2024-07-23 06:39:39.815 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 47/50, Train Loss: 0.03270467934915079, Val Loss: 0.040860072736229214 +2024-07-23 06:39:44.732 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 48/50, Train Loss: 0.0323998040268914, Val Loss: 0.04106347534273352 +2024-07-23 06:39:49.678 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 49/50, Train Loss: 0.03245817525133204, Val Loss: 0.04045246365879263 +2024-07-23 06:39:54.641 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 50/50, Train Loss: 0.03235251646345624, Val Loss: 0.040536496309297426 +2024-07-23 06:39:54.641 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Fold 2, MAPE: 3.55% +2024-07-23 06:39:54.754 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_200001_500000_LSTM//train_f2_bgd_education_200001_500000_LSTM.png +2024-07-23 06:40:01.123 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 1/50, Train Loss: 0.03376168553322125, Val Loss: 0.042165306955575944 +2024-07-23 06:40:07.489 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 2/50, Train Loss: 0.03449261266228964, Val Loss: 0.041631823458841866 +2024-07-23 06:40:13.893 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 3/50, Train Loss: 0.034782411316208704, Val Loss: 0.042284971794911794 +2024-07-23 06:40:20.253 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 4/50, Train Loss: 0.03449568219429298, Val Loss: 0.04053828051047666 +2024-07-23 06:40:26.573 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 5/50, Train Loss: 0.03471655106480173, Val Loss: 0.04106583653816155 +2024-07-23 06:40:32.928 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 6/50, Train Loss: 0.0343962524005835, Val Loss: 0.04151043029768126 +2024-07-23 06:40:39.279 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 7/50, Train Loss: 0.0345755344886574, Val Loss: 0.04183123250092779 +2024-07-23 06:40:45.666 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 8/50, Train Loss: 0.034611282066153964, Val Loss: 0.04239039123058319 +2024-07-23 06:40:52.055 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 9/50, Train Loss: 0.03474831413611663, Val Loss: 0.043346695069755824 +2024-07-23 06:40:58.389 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 10/50, Train Loss: 0.03473129162310268, Val Loss: 0.04268752027835165 +2024-07-23 06:40:58.390 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:40:58.390 No tasks are waiting in the queue. +2024-07-23 06:40:58.390 4 steps have not started: log_model, validate_model, model_scores, end. +2024-07-23 06:41:04.757 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 11/50, Train Loss: 0.034326079174233, Val Loss: 0.04204058732305254 +2024-07-23 06:41:11.120 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 12/50, Train Loss: 0.034404288334168975, Val Loss: 0.04329576811620167 +2024-07-23 06:41:17.512 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 13/50, Train Loss: 0.034233327874605604, Val Loss: 0.042566754562514166 +2024-07-23 06:41:23.900 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 14/50, Train Loss: 0.03441038140826088, Val Loss: 0.042637932407004496 +2024-07-23 06:41:30.254 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 15/50, Train Loss: 0.034601181839331446, Val Loss: 0.04251238756946155 +2024-07-23 06:41:36.648 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 16/50, Train Loss: 0.034234356711343894, Val Loss: 0.042695577016898564 +2024-07-23 06:41:43.025 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 17/50, Train Loss: 0.034263236113160636, Val Loss: 0.04254079455775874 +2024-07-23 06:41:49.405 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 18/50, Train Loss: 0.034087851978570435, Val Loss: 0.04067123058651175 +2024-07-23 06:41:55.793 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 19/50, Train Loss: 0.03402058347362837, Val Loss: 0.04182692633143493 +2024-07-23 06:42:02.197 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 20/50, Train Loss: 0.0337899341214475, Val Loss: 0.041739458537527495 +2024-07-23 06:42:08.545 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 21/50, Train Loss: 0.033688954231764774, Val Loss: 0.042827572779996055 +2024-07-23 06:42:14.955 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 22/50, Train Loss: 0.03404530389703435, Val Loss: 0.042144672253302165 +2024-07-23 06:42:21.325 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 23/50, Train Loss: 0.03408323056835065, Val Loss: 0.04170160591602325 +2024-07-23 06:42:27.720 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 24/50, Train Loss: 0.03367696273669922, Val Loss: 0.042119022245918 +2024-07-23 06:42:34.070 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 25/50, Train Loss: 0.0338515169087717, Val Loss: 0.04278337636164257 +2024-07-23 06:42:40.419 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 26/50, Train Loss: 0.033493475579797365, Val Loss: 0.041680979090077536 +2024-07-23 06:42:46.815 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 27/50, Train Loss: 0.03305699875270077, Val Loss: 0.0419326628957476 +2024-07-23 06:42:53.194 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 28/50, Train Loss: 0.03410435304474488, Val Loss: 0.0438801078924111 +2024-07-23 06:42:59.554 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 29/50, Train Loss: 0.033734341286015594, Val Loss: 0.04277803227305412 +2024-07-23 06:43:05.960 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 30/50, Train Loss: 0.03327456682170038, Val Loss: 0.04277765921183995 +2024-07-23 06:43:12.361 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 31/50, Train Loss: 0.03367587769899866, Val Loss: 0.042199334715093885 +2024-07-23 06:43:18.728 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 32/50, Train Loss: 0.033668457135129316, Val Loss: 0.041206100423421176 +2024-07-23 06:43:25.088 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 33/50, Train Loss: 0.033493305804382124, Val Loss: 0.04298426051224981 +2024-07-23 06:43:31.437 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 34/50, Train Loss: 0.03393801800879857, Val Loss: 0.04259291605225631 +2024-07-23 06:43:37.824 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 35/50, Train Loss: 0.03402211802522484, Val Loss: 0.04229967173721109 +2024-07-23 06:43:44.283 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 36/50, Train Loss: 0.03357409990707533, Val Loss: 0.04282844439148903 +2024-07-23 06:43:50.671 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 37/50, Train Loss: 0.03399497442108264, Val Loss: 0.04164854809641838 +2024-07-23 06:43:57.040 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 38/50, Train Loss: 0.03332825361503114, Val Loss: 0.042748610994645525 +2024-07-23 06:44:03.390 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 39/50, Train Loss: 0.03356292346666614, Val Loss: 0.04198591091803142 +2024-07-23 06:44:09.715 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 40/50, Train Loss: 0.03395401699830302, Val Loss: 0.042381685546466284 +2024-07-23 06:44:16.110 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 41/50, Train Loss: 0.033052834139453424, Val Loss: 0.041977282613515854 +2024-07-23 06:44:22.504 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 42/50, Train Loss: 0.033347826270158774, Val Loss: 0.042516947856971195 +2024-07-23 06:44:28.870 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 43/50, Train Loss: 0.0343469652152962, Val Loss: 0.04290518366864749 +2024-07-23 06:44:35.200 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 44/50, Train Loss: 0.032918784392180205, Val Loss: 0.04295355187995093 +2024-07-23 06:44:41.537 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 45/50, Train Loss: 0.03347626294967511, Val Loss: 0.04220784822744983 +2024-07-23 06:44:47.923 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 46/50, Train Loss: 0.03348743506177938, Val Loss: 0.04319444192307336 +2024-07-23 06:44:54.335 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 47/50, Train Loss: 0.033350243521251266, Val Loss: 0.041925760358572005 +2024-07-23 06:45:00.693 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 48/50, Train Loss: 0.033589199319374645, Val Loss: 0.04162861172642027 +2024-07-23 06:45:07.054 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 49/50, Train Loss: 0.0327817937158209, Val Loss: 0.03953629114798137 +2024-07-23 06:45:13.464 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 50/50, Train Loss: 0.033443013547832585, Val Loss: 0.0411834112235478 +2024-07-23 06:45:13.464 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Fold 3, MAPE: 3.59% +2024-07-23 06:45:13.575 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_200001_500000_LSTM//train_f3_bgd_education_200001_500000_LSTM.png +2024-07-23 06:45:21.382 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 1/50, Train Loss: 0.033875442688064326, Val Loss: 0.04266606132899012 +2024-07-23 06:45:29.230 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 2/50, Train Loss: 0.03303866935144553, Val Loss: 0.03839704096317291 +2024-07-23 06:45:37.003 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 3/50, Train Loss: 0.03314055231581817, Val Loss: 0.038126206664102415 +2024-07-23 06:45:44.782 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 4/50, Train Loss: 0.033124616369605064, Val Loss: 0.044906741167817794 +2024-07-23 06:45:52.666 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 5/50, Train Loss: 0.032994944067008196, Val Loss: 0.04406914274607386 +2024-07-23 06:46:00.479 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 6/50, Train Loss: 0.033409177673573806, Val Loss: 0.03633888188217368 +2024-07-23 06:46:00.479 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:46:00.479 No tasks are waiting in the queue. +2024-07-23 06:46:00.479 4 steps have not started: log_model, validate_model, model_scores, end. +2024-07-23 06:46:08.305 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 7/50, Train Loss: 0.032857640785561214, Val Loss: 0.03986265920102596 +2024-07-23 06:46:16.139 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 8/50, Train Loss: 0.032502665730385946, Val Loss: 0.039159764402679036 +2024-07-23 06:46:23.964 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 9/50, Train Loss: 0.032780558256239725, Val Loss: 0.03969125215496336 +2024-07-23 06:46:31.739 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 10/50, Train Loss: 0.03273610440457518, Val Loss: 0.03425337336957455 +2024-07-23 06:46:39.569 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 11/50, Train Loss: 0.03300567313857462, Val Loss: 0.037550123780965804 +2024-07-23 06:46:47.378 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 12/50, Train Loss: 0.033045644368762256, Val Loss: 0.04157683168138777 +2024-07-23 06:46:55.208 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 13/50, Train Loss: 0.03265682738488433, Val Loss: 0.03799473446394716 +2024-07-23 06:47:03.025 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 14/50, Train Loss: 0.03241490210866791, Val Loss: 0.03774224317499569 +2024-07-23 06:47:10.843 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 15/50, Train Loss: 0.03272029935200324, Val Loss: 0.03839403092861175 +2024-07-23 06:47:18.684 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 16/50, Train Loss: 0.03238301453362594, Val Loss: 0.040388690094862664 +2024-07-23 06:47:26.496 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 17/50, Train Loss: 0.03237300406841711, Val Loss: 0.04230976445334298 +2024-07-23 06:47:34.310 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 18/50, Train Loss: 0.03253230261991079, Val Loss: 0.044239292506660734 +2024-07-23 06:47:42.164 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 19/50, Train Loss: 0.0321023347412889, Val Loss: 0.04232153142137187 +2024-07-23 06:47:49.988 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 20/50, Train Loss: 0.03205712278234376, Val Loss: 0.0386039854160377 +2024-07-23 06:47:57.838 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 21/50, Train Loss: 0.032163235123387014, Val Loss: 0.03919817214565618 +2024-07-23 06:48:05.749 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 22/50, Train Loss: 0.032072997057874655, Val Loss: 0.0378571339483772 +2024-07-23 06:48:13.723 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 23/50, Train Loss: 0.032238411470905115, Val Loss: 0.03560213851077216 +2024-07-23 06:48:21.554 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 24/50, Train Loss: 0.03216922211450064, Val Loss: 0.03992296899003642 +2024-07-23 06:48:29.390 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 25/50, Train Loss: 0.03208687744135487, Val Loss: 0.037616584396788055 +2024-07-23 06:48:37.271 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 26/50, Train Loss: 0.03236171877247163, Val Loss: 0.035950112342834475 +2024-07-23 06:48:45.134 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 27/50, Train Loss: 0.031971676671213804, Val Loss: 0.038058784284761976 +2024-07-23 06:48:52.989 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 28/50, Train Loss: 0.03185681678654476, Val Loss: 0.0404156535331692 +2024-07-23 06:49:00.809 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 29/50, Train Loss: 0.03225595924211131, Val Loss: 0.037586528169257304 +2024-07-23 06:49:08.630 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 30/50, Train Loss: 0.03213292497863201, Val Loss: 0.03725372866860458 +2024-07-23 06:49:16.529 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 31/50, Train Loss: 0.031577374513164676, Val Loss: 0.03468202884708132 +2024-07-23 06:49:24.385 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 32/50, Train Loss: 0.03190836554457401, Val Loss: 0.03516879566013813 +2024-07-23 06:49:32.307 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 33/50, Train Loss: 0.03218451739642127, Val Loss: 0.034539381840399334 +2024-07-23 06:49:40.121 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 34/50, Train Loss: 0.03162047081766115, Val Loss: 0.036674131878784724 +2024-07-23 06:49:48.008 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 35/50, Train Loss: 0.03257245934386363, Val Loss: 0.03888306064265115 +2024-07-23 06:49:55.871 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 36/50, Train Loss: 0.03171256124630742, Val Loss: 0.03542592520160334 +2024-07-23 06:50:03.760 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 37/50, Train Loss: 0.031537100062545, Val Loss: 0.033908059341566904 +2024-07-23 06:50:11.629 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 38/50, Train Loss: 0.0321184266358614, Val Loss: 0.03406452041651521 +2024-07-23 06:50:19.532 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 39/50, Train Loss: 0.03160775831804193, Val Loss: 0.03521947669131415 +2024-07-23 06:50:27.457 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 40/50, Train Loss: 0.03195184520606337, Val Loss: 0.03273361511528492 +2024-07-23 06:50:35.318 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 41/50, Train Loss: 0.03162369690835476, Val Loss: 0.034279035670416694 +2024-07-23 06:50:43.234 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 42/50, Train Loss: 0.03138372781632961, Val Loss: 0.034583827959639685 +2024-07-23 06:50:51.127 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 43/50, Train Loss: 0.031776572160165883, Val Loss: 0.03392272415970053 +2024-07-23 06:50:58.979 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 44/50, Train Loss: 0.0314041282767537, Val Loss: 0.03566177221281188 +2024-07-23 06:51:06.824 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 45/50, Train Loss: 0.03178948172014849, Val Loss: 0.03730248750320503 +2024-07-23 06:51:06.825 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:51:06.825 No tasks are waiting in the queue. +2024-07-23 06:51:06.825 4 steps have not started: log_model, validate_model, model_scores, end. +2024-07-23 06:51:14.692 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 46/50, Train Loss: 0.03204221085741602, Val Loss: 0.032664275222590994 +2024-07-23 06:51:22.550 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 47/50, Train Loss: 0.031485849295625055, Val Loss: 0.03418483132762568 +2024-07-23 06:51:30.369 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 48/50, Train Loss: 0.031501387470755086, Val Loss: 0.03277634658983775 +2024-07-23 06:51:38.217 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 49/50, Train Loss: 0.03147551839122142, Val Loss: 0.03364566138812474 +2024-07-23 06:51:46.092 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Epoch 50/50, Train Loss: 0.03157473201381749, Val Loss: 0.033698948100209236 +2024-07-23 06:51:46.092 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Fold 4, MAPE: 2.97% +2024-07-23 06:51:46.201 [53/cross_validate_train/569 (pid 82420)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_200001_500000_LSTM//train_f4_bgd_education_200001_500000_LSTM.png +2024-07-23 06:51:50.480 [53/cross_validate_train/569 (pid 82420)] Task finished successfully. +2024-07-23 06:51:50.511 [53/model_scores/570 (pid 87124)] Task is starting. +2024-07-23 06:51:51.995 [53/model_scores/570 (pid 87124)] INFO:__main__:Average Train Loss across all folds: 0.037476284473372604 +2024-07-23 06:51:55.919 [53/model_scores/570 (pid 87124)] INFO:__main__:Average Validation Loss across all folds: 0.04335166051983833 +2024-07-23 06:51:55.919 [53/model_scores/570 (pid 87124)] INFO:__main__:Average MAPE across all folds: 3.39% +2024-07-23 06:51:55.920 [53/model_scores/570 (pid 87124)] Task finished successfully. +2024-07-23 06:51:55.949 [53/validate_model/571 (pid 87155)] Task is starting. +2024-07-23 06:51:57.410 [53/validate_model/571 (pid 87155)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 06:51:58.193 [53/validate_model/571 (pid 87155)] INFO:__main__:Test Set MAPE: 3.31% +2024-07-23 06:51:58.546 [53/validate_model/571 (pid 87155)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_education_200001_500000_LSTM//test_bgd_education_200001_500000_LSTM.png +2024-07-23 06:51:58.986 [53/validate_model/571 (pid 87155)] Task finished successfully. +2024-07-23 06:51:59.015 [53/log_model/572 (pid 87173)] Task is starting. +2024-07-23 06:52:00.476 [53/log_model/572 (pid 87173)] INFO:__main__:Logging model bgd_education_200001_500000_LSTM +2024-07-23 06:52:00.477 [53/log_model/572 (pid 87173)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_education_200001_500000_LSTM//bgd_education_200001_500000_LSTM.pth +2024-07-23 06:52:04.421 [53/log_model/572 (pid 87173)] Task finished successfully. +2024-07-23 06:52:04.454 [53/end/573 (pid 87200)] Task is starting. +2024-07-23 06:52:05.935 [53/end/573 (pid 87200)] INFO:__main__:Pipeline end. +2024-07-23 06:52:06.241 [53/end/573 (pid 87200)] Task finished successfully. +2024-07-23 06:52:06.241 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/scaler_bgd_education_200001_500000_LSTM.pkl b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/scaler_bgd_education_200001_500000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..72cc63c574a84821ced43a42e8713608199d6419 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/scaler_bgd_education_200001_500000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017915b599d31e3ba9aed168c7fc1fda619c4c092d962b5520aa0a4975c67bc2 +size 557 diff --git a/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/test_bgd_education_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/test_bgd_education_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..ba088d1ae2f3f2f62467ae23bd44536a2050ebae Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/test_bgd_education_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f0_bgd_education_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f0_bgd_education_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..055a731ba656980a73585997f35e605c35942944 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f0_bgd_education_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f1_bgd_education_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f1_bgd_education_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..4dd3690291523a91f5652cee0dc8b02fb4d6033e Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f1_bgd_education_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f2_bgd_education_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f2_bgd_education_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..a75a75bb7ea3cbcd94bb64fb6a1a38cb29168bfc Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f2_bgd_education_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f3_bgd_education_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f3_bgd_education_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..53d4fa31c2bc57a7a922117cc19ebc3454af9115 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f3_bgd_education_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f4_bgd_education_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f4_bgd_education_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..f3b57cc387660e8df40358c3ebf5ef59fb76c0d3 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_200001_500000_LSTM/train_f4_bgd_education_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/bgd_education_25001_50000_LSTM.pth b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/bgd_education_25001_50000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..1ca3becb51e236fcb6281ff1f7c2465b86642a22 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/bgd_education_25001_50000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a65426d95368146fed452c9ee43fdac1026a4938298261c2f101ffd51991fe +size 46766 diff --git a/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/output.txt b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..564bfe116ef00d3d718fe447d3b0e10b2511bb86 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/output.txt @@ -0,0 +1,763 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-23 05:48:57.920 Workflow starting (run-id 51): +2024-07-23 05:48:57.989 [51/start/533 (pid 72519)] Task is starting. +2024-07-23 05:48:59.460 [51/start/533 (pid 72519)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 05:48:59.757 [51/start/533 (pid 72519)] Task finished successfully. +2024-07-23 05:48:59.788 [51/ingest/534 (pid 72537)] Task is starting. +2024-07-23 05:49:01.258 [51/ingest/534 (pid 72537)] INFO:__main__:Fetching dataframe.. +2024-07-23 05:49:01.275 [51/ingest/534 (pid 72537)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 05:49:05.126 [51/ingest/534 (pid 72537)] Task finished successfully. +2024-07-23 05:49:05.156 [51/pick_2017_data/535 (pid 72570)] Task is starting. +2024-07-23 05:49:06.607 [51/pick_2017_data/535 (pid 72570)] INFO:__main__:Picking 2017 data.. +2024-07-23 05:49:06.914 [51/pick_2017_data/535 (pid 72570)] Task finished successfully. +2024-07-23 05:49:06.945 [51/fill_missing_data/536 (pid 72581)] Task is starting. +2024-07-23 05:49:08.455 [51/fill_missing_data/536 (pid 72581)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] INFO:__main__:NaN counts per column: +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] INFO:__main__:Robin_education_Audrea 0 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] Rat_education_Carmela 50 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] Rat_education_Salvatore 50 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] Rat_education_Candida 50 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] Bear_education_Merrill 129 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] Cockatoo_education_Melanie 117 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] Cockatoo_education_Julia 128 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] dtype: int64 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] --- Logging error --- +2024-07-23 05:49:08.463 [51/fill_missing_data/536 (pid 72581)] Traceback (most recent call last): +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] msg = self.format(record) +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] return fmt.format(record) +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] record.message = record.getMessage() +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] msg = msg % self.args +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] TypeError: not all arguments converted during string formatting +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] Call stack: +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] BGD_LinearFlow() +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] cli.main(self) +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] return func(*args, **kwargs) +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] return self.main(*args, **kwargs) +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] rv = self.invoke(ctx) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] return callback(*args, **kwargs) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] return f(get_current_context(), *args, **kwargs) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] task.run_step( +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] self._exec_step_function(step_func) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] step_function() +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] self.missing_values = find_nan_counts(self.df) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] Arguments: (524,) +2024-07-23 05:49:09.100 [51/fill_missing_data/536 (pid 72581)] Task finished successfully. +2024-07-23 05:49:09.130 [51/find_median/537 (pid 72595)] Task is starting. +2024-07-23 05:49:10.598 [51/find_median/537 (pid 72595)] INFO:__main__:Computing and using median.. +2024-07-23 05:49:11.100 [51/find_median/537 (pid 72595)] Task finished successfully. +2024-07-23 05:49:11.129 [51/aggregate_data/538 (pid 72606)] Task is starting. +2024-07-23 05:49:12.607 [51/aggregate_data/538 (pid 72606)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 05:49:16.465 [51/aggregate_data/538 (pid 72606)] Task finished successfully. +2024-07-23 05:49:16.496 [51/split_data/539 (pid 72631)] Task is starting. +2024-07-23 05:49:17.976 [51/split_data/539 (pid 72631)] INFO:__main__:Splitting data into test and train... +2024-07-23 05:49:21.846 [51/split_data/539 (pid 72631)] Task finished successfully. +2024-07-23 05:49:21.876 [51/make_x_y/540 (pid 72664)] Task is starting. +2024-07-23 05:49:23.677 [51/make_x_y/540 (pid 72664)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 05:49:24.074 [51/make_x_y/540 (pid 72664)] Shape of y_train: (6648, 1) +2024-07-23 05:49:24.074 [51/make_x_y/540 (pid 72664)] Shape of X_test: (1392, 360, 1) +2024-07-23 05:49:24.074 [51/make_x_y/540 (pid 72664)] Shape of y_test: (1392, 1) +2024-07-23 05:49:24.075 [51/make_x_y/540 (pid 72664)] Task finished successfully. +2024-07-23 05:49:24.102 [51/cross_validate_train/541 (pid 72675)] Task is starting. +2024-07-23 05:49:25.547 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Creating bgd_education_25001_50000_LSTM +2024-07-23 05:49:25.547 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Performing cross validation.. +2024-07-23 05:49:27.993 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 1/50, Train Loss: 0.1591644705406257, Val Loss: 0.1584344908595085 +2024-07-23 05:49:29.852 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 2/50, Train Loss: 0.12236314852322851, Val Loss: 0.13839374402804033 +2024-07-23 05:49:31.730 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 3/50, Train Loss: 0.10906212042484964, Val Loss: 0.1216906651854515 +2024-07-23 05:49:33.614 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 4/50, Train Loss: 0.08961662996028151, Val Loss: 0.09611103300537382 +2024-07-23 05:49:35.497 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 5/50, Train Loss: 0.06729891092649527, Val Loss: 0.06703501056347574 +2024-07-23 05:49:37.391 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 6/50, Train Loss: 0.06461380230528968, Val Loss: 0.06308778237019266 +2024-07-23 05:49:39.267 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 7/50, Train Loss: 0.05942900297897202, Val Loss: 0.061772238463163376 +2024-07-23 05:49:41.149 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 8/50, Train Loss: 0.05742273453090872, Val Loss: 0.059385111927986144 +2024-07-23 05:49:43.025 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 9/50, Train Loss: 0.05531968575503145, Val Loss: 0.058457632416060994 +2024-07-23 05:49:44.895 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 10/50, Train Loss: 0.05448319943887847, Val Loss: 0.05722643344530037 +2024-07-23 05:49:46.763 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 11/50, Train Loss: 0.05303540155291557, Val Loss: 0.05526896257485662 +2024-07-23 05:49:48.662 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 12/50, Train Loss: 0.05133722972656999, Val Loss: 0.05416720631931509 +2024-07-23 05:49:50.551 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 13/50, Train Loss: 0.05011466480791569, Val Loss: 0.05332982550774302 +2024-07-23 05:49:52.420 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 14/50, Train Loss: 0.04938831377242293, Val Loss: 0.05221074590725558 +2024-07-23 05:49:54.288 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 15/50, Train Loss: 0.049092025735548564, Val Loss: 0.05021420222307955 +2024-07-23 05:49:56.157 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 16/50, Train Loss: 0.04789730863911765, Val Loss: 0.049331896592463766 +2024-07-23 05:49:58.032 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 17/50, Train Loss: 0.04694089767123972, Val Loss: 0.048231913309012144 +2024-07-23 05:49:59.900 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 18/50, Train Loss: 0.04602329555366721, Val Loss: 0.046627786116940635 +2024-07-23 05:50:01.825 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 19/50, Train Loss: 0.04515573153538363, Val Loss: 0.045691299172384396 +2024-07-23 05:50:03.700 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 20/50, Train Loss: 0.043933951801487375, Val Loss: 0.045716814856444084 +2024-07-23 05:50:05.563 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 21/50, Train Loss: 0.043169537718806945, Val Loss: 0.04473464105810438 +2024-07-23 05:50:07.434 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 22/50, Train Loss: 0.04308748772101743, Val Loss: 0.043658865935036116 +2024-07-23 05:50:09.331 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 23/50, Train Loss: 0.041837342296327865, Val Loss: 0.04275608706687178 +2024-07-23 05:50:11.217 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 24/50, Train Loss: 0.041112635657191275, Val Loss: 0.0421080619096756 +2024-07-23 05:50:13.091 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 25/50, Train Loss: 0.040504534116813116, Val Loss: 0.040607384592294696 +2024-07-23 05:50:14.989 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 26/50, Train Loss: 0.039956996430243766, Val Loss: 0.03973174691200256 +2024-07-23 05:50:16.865 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 27/50, Train Loss: 0.03938595178936209, Val Loss: 0.03941646175725119 +2024-07-23 05:50:18.755 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 28/50, Train Loss: 0.0389603785106114, Val Loss: 0.03842852685068335 +2024-07-23 05:50:20.658 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 29/50, Train Loss: 0.03841748168425901, Val Loss: 0.037869821754949434 +2024-07-23 05:50:22.566 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 30/50, Train Loss: 0.037958437417234696, Val Loss: 0.03741647712886333 +2024-07-23 05:50:24.451 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 31/50, Train Loss: 0.03772987270993846, Val Loss: 0.03712606435375554 +2024-07-23 05:50:26.346 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 32/50, Train Loss: 0.037514099585158486, Val Loss: 0.036417021708829066 +2024-07-23 05:50:28.247 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 33/50, Train Loss: 0.03724594142820154, Val Loss: 0.03673878152455602 +2024-07-23 05:50:30.155 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 34/50, Train Loss: 0.03758740127086639, Val Loss: 0.03688804752060345 +2024-07-23 05:50:32.059 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 35/50, Train Loss: 0.03736576661467552, Val Loss: 0.03678169569798878 +2024-07-23 05:50:33.962 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 36/50, Train Loss: 0.0371771830533232, Val Loss: 0.035937333585960525 +2024-07-23 05:50:35.858 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 37/50, Train Loss: 0.03684287284101759, Val Loss: 0.03614498781306403 +2024-07-23 05:50:37.767 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 38/50, Train Loss: 0.03651847099619252, Val Loss: 0.035558924664344106 +2024-07-23 05:50:39.668 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 39/50, Train Loss: 0.03642594670610769, Val Loss: 0.03548079590712275 +2024-07-23 05:50:41.594 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 40/50, Train Loss: 0.03612672739795276, Val Loss: 0.0355321218924863 +2024-07-23 05:50:43.504 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 41/50, Train Loss: 0.03646589161029884, Val Loss: 0.03554399630853108 +2024-07-23 05:50:45.409 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 42/50, Train Loss: 0.03610123906816755, Val Loss: 0.036014210166675706 +2024-07-23 05:50:47.337 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 43/50, Train Loss: 0.036270829609462193, Val Loss: 0.03587382967982974 +2024-07-23 05:50:49.240 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 44/50, Train Loss: 0.03607576026448182, Val Loss: 0.03562383747526578 +2024-07-23 05:50:51.188 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 45/50, Train Loss: 0.03631714933684894, Val Loss: 0.036194931396416254 +2024-07-23 05:50:53.089 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 46/50, Train Loss: 0.036377587754811556, Val Loss: 0.03633200978594167 +2024-07-23 05:50:54.992 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 47/50, Train Loss: 0.03634563237428665, Val Loss: 0.03566970181252275 +2024-07-23 05:50:56.887 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 48/50, Train Loss: 0.036238552896039826, Val Loss: 0.036105661573154584 +2024-07-23 05:50:58.781 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 49/50, Train Loss: 0.03648464466844286, Val Loss: 0.036176475297127454 +2024-07-23 05:51:00.686 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 50/50, Train Loss: 0.03591911159455776, Val Loss: 0.03568053447774478 +2024-07-23 05:51:00.686 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Fold 0, MAPE: 6.12% +2024-07-23 05:51:00.989 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_25001_50000_LSTM//train_f0_bgd_education_25001_50000_LSTM.png +2024-07-23 05:51:04.412 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 1/50, Train Loss: 0.035756885353475806, Val Loss: 0.03950574656150171 +2024-07-23 05:51:07.743 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 2/50, Train Loss: 0.03525874641324792, Val Loss: 0.03929324900465352 +2024-07-23 05:51:11.134 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 3/50, Train Loss: 0.034990659542381765, Val Loss: 0.03851991247917925 +2024-07-23 05:51:14.486 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 4/50, Train Loss: 0.034669993032834356, Val Loss: 0.03887799980917147 +2024-07-23 05:51:17.851 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 5/50, Train Loss: 0.034823466651141645, Val Loss: 0.03868092641766582 +2024-07-23 05:51:21.244 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 6/50, Train Loss: 0.03466368942920651, Val Loss: 0.03975040337869099 +2024-07-23 05:51:24.613 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 7/50, Train Loss: 0.03457880866314684, Val Loss: 0.03899303424571242 +2024-07-23 05:51:27.981 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 8/50, Train Loss: 0.034415646988366334, Val Loss: 0.040065354055591994 +2024-07-23 05:51:31.354 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 9/50, Train Loss: 0.03438472553555454, Val Loss: 0.03878961905304875 +2024-07-23 05:51:34.710 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 10/50, Train Loss: 0.03426251879760197, Val Loss: 0.038992016443184445 +2024-07-23 05:51:38.073 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 11/50, Train Loss: 0.03418662023863622, Val Loss: 0.04029826708137989 +2024-07-23 05:51:41.449 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 12/50, Train Loss: 0.033999262816671816, Val Loss: 0.03931291023535388 +2024-07-23 05:51:44.799 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 13/50, Train Loss: 0.034268251274313245, Val Loss: 0.03878892617566245 +2024-07-23 05:51:48.205 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 14/50, Train Loss: 0.03396579156230603, Val Loss: 0.04026895857283047 +2024-07-23 05:51:51.597 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 15/50, Train Loss: 0.03375592774578503, Val Loss: 0.03774858433753252 +2024-07-23 05:51:54.965 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 16/50, Train Loss: 0.03436771929264069, Val Loss: 0.040565726959279604 +2024-07-23 05:51:58.316 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 17/50, Train Loss: 0.03381581515339868, Val Loss: 0.04072947347802775 +2024-07-23 05:52:01.707 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 18/50, Train Loss: 0.033723924841199605, Val Loss: 0.040263068463121145 +2024-07-23 05:52:05.047 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 19/50, Train Loss: 0.0338045310229063, Val Loss: 0.0378561867667096 +2024-07-23 05:52:08.424 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 20/50, Train Loss: 0.03368535663134285, Val Loss: 0.037697562708386353 +2024-07-23 05:52:11.803 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 21/50, Train Loss: 0.033674298665885415, Val Loss: 0.0377781803054469 +2024-07-23 05:52:15.160 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 22/50, Train Loss: 0.033722822141966646, Val Loss: 0.03801994241241898 +2024-07-23 05:52:18.496 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 23/50, Train Loss: 0.033591371974242584, Val Loss: 0.03835702961576837 +2024-07-23 05:52:21.867 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 24/50, Train Loss: 0.0339327291585505, Val Loss: 0.03885780285511698 +2024-07-23 05:52:25.216 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 25/50, Train Loss: 0.03400592452713421, Val Loss: 0.03758356954370226 +2024-07-23 05:52:28.594 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 26/50, Train Loss: 0.03387252786861999, Val Loss: 0.03946593880121197 +2024-07-23 05:52:31.953 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 27/50, Train Loss: 0.03380487527964371, Val Loss: 0.03792609516531229 +2024-07-23 05:52:35.293 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 28/50, Train Loss: 0.033711157885513134, Val Loss: 0.03815797955862114 +2024-07-23 05:52:38.643 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 29/50, Train Loss: 0.03380663535956826, Val Loss: 0.0377881933003664 +2024-07-23 05:52:42.025 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 30/50, Train Loss: 0.033568225361938986, Val Loss: 0.03754137669290815 +2024-07-23 05:52:45.360 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 31/50, Train Loss: 0.03375982461231095, Val Loss: 0.03762878520148141 +2024-07-23 05:52:48.700 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 32/50, Train Loss: 0.033965031682912795, Val Loss: 0.03763000871986151 +2024-07-23 05:52:52.052 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 33/50, Train Loss: 0.03353210112878254, Val Loss: 0.03788182118109294 +2024-07-23 05:52:55.390 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 34/50, Train Loss: 0.03378971086016723, Val Loss: 0.03759146098579679 +2024-07-23 05:52:58.736 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 35/50, Train Loss: 0.03385217892272132, Val Loss: 0.03818343271102224 +2024-07-23 05:53:02.139 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 36/50, Train Loss: 0.03385075684636831, Val Loss: 0.037542048549013475 +2024-07-23 05:53:05.488 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 37/50, Train Loss: 0.03366279386516128, Val Loss: 0.03991206381469965 +2024-07-23 05:53:08.862 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 38/50, Train Loss: 0.033917517920157736, Val Loss: 0.037759218364953995 +2024-07-23 05:53:12.234 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 39/50, Train Loss: 0.03354064835501569, Val Loss: 0.03897151409515313 +2024-07-23 05:53:15.570 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 40/50, Train Loss: 0.033452253229916094, Val Loss: 0.03763829126421894 +2024-07-23 05:53:18.919 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 41/50, Train Loss: 0.03337109288466828, Val Loss: 0.03754536009260586 +2024-07-23 05:53:22.257 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 42/50, Train Loss: 0.033387618378869124, Val Loss: 0.03871520598019872 +2024-07-23 05:53:25.604 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 43/50, Train Loss: 0.03342461351837431, Val Loss: 0.03716898885156427 +2024-07-23 05:53:28.947 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 44/50, Train Loss: 0.03336096459201404, Val Loss: 0.039253956558448926 +2024-07-23 05:53:32.292 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 45/50, Train Loss: 0.033475832122245, Val Loss: 0.03776568781052317 +2024-07-23 05:53:35.666 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 46/50, Train Loss: 0.03326958528320704, Val Loss: 0.03797449403043304 +2024-07-23 05:53:39.022 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 47/50, Train Loss: 0.033139041571744854, Val Loss: 0.03756888325193099 +2024-07-23 05:53:42.375 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 48/50, Train Loss: 0.033186426386237144, Val Loss: 0.03766712820423501 +2024-07-23 05:53:45.712 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 49/50, Train Loss: 0.033280868149761646, Val Loss: 0.038192584578480036 +2024-07-23 05:53:49.044 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 50/50, Train Loss: 0.033418395050934385, Val Loss: 0.03790386944477047 +2024-07-23 05:53:49.044 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Fold 1, MAPE: 6.20% +2024-07-23 05:53:49.147 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_25001_50000_LSTM//train_f1_bgd_education_25001_50000_LSTM.png +2024-07-23 05:53:53.924 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 1/50, Train Loss: 0.027426580110421546, Val Loss: 0.03932378773710558 +2024-07-23 05:53:58.676 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 2/50, Train Loss: 0.026991741982503578, Val Loss: 0.03966513592749834 +2024-07-23 05:53:58.676 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:53:58.676 No tasks are waiting in the queue. +2024-07-23 05:53:58.676 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 05:54:03.435 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 3/50, Train Loss: 0.027043097643539883, Val Loss: 0.03907068323876176 +2024-07-23 05:54:08.199 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 4/50, Train Loss: 0.026853721221694007, Val Loss: 0.038640052186591285 +2024-07-23 05:54:12.979 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 5/50, Train Loss: 0.026897917609088697, Val Loss: 0.03954289265509162 +2024-07-23 05:54:17.744 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 6/50, Train Loss: 0.026761514618276402, Val Loss: 0.03834260127374104 +2024-07-23 05:54:22.513 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 7/50, Train Loss: 0.02681086930589607, Val Loss: 0.038011592919273036 +2024-07-23 05:54:27.301 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 8/50, Train Loss: 0.026847082808112297, Val Loss: 0.03778574716831957 +2024-07-23 05:54:32.076 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 9/50, Train Loss: 0.026807414018549025, Val Loss: 0.038510116056672164 +2024-07-23 05:54:36.823 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 10/50, Train Loss: 0.026755515969573304, Val Loss: 0.03747794633465154 +2024-07-23 05:54:41.598 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 11/50, Train Loss: 0.026703835151588116, Val Loss: 0.037785236191536696 +2024-07-23 05:54:46.362 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 12/50, Train Loss: 0.02670175383368937, Val Loss: 0.03765591486756291 +2024-07-23 05:54:51.184 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 13/50, Train Loss: 0.0267350099927101, Val Loss: 0.03852350227534771 +2024-07-23 05:54:55.942 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 14/50, Train Loss: 0.02666180786819985, Val Loss: 0.038070330076983995 +2024-07-23 05:55:00.726 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 15/50, Train Loss: 0.026631702498819392, Val Loss: 0.038375854146267686 +2024-07-23 05:55:05.506 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 16/50, Train Loss: 0.02656925565455682, Val Loss: 0.03863834696156638 +2024-07-23 05:55:10.266 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 17/50, Train Loss: 0.026599930903802697, Val Loss: 0.03809054767979043 +2024-07-23 05:55:15.032 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 18/50, Train Loss: 0.02662331288537154, Val Loss: 0.038407707374010766 +2024-07-23 05:55:19.837 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 19/50, Train Loss: 0.026586355408653617, Val Loss: 0.038344106716769084 +2024-07-23 05:55:24.585 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 20/50, Train Loss: 0.02657703946953496, Val Loss: 0.0377054040985448 +2024-07-23 05:55:29.337 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 21/50, Train Loss: 0.026459670249516003, Val Loss: 0.03829089416457074 +2024-07-23 05:55:34.104 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 22/50, Train Loss: 0.026434756063211422, Val Loss: 0.03815296164580754 +2024-07-23 05:55:38.875 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 23/50, Train Loss: 0.026448569466503195, Val Loss: 0.03820227938038962 +2024-07-23 05:55:43.677 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 24/50, Train Loss: 0.02644628641876177, Val Loss: 0.03811908790043422 +2024-07-23 05:55:48.436 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 25/50, Train Loss: 0.026328611644343115, Val Loss: 0.037719088207398145 +2024-07-23 05:55:53.236 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 26/50, Train Loss: 0.026467659627087414, Val Loss: 0.03848035058804921 +2024-07-23 05:55:58.002 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 27/50, Train Loss: 0.026331424238518454, Val Loss: 0.03791765919221299 +2024-07-23 05:56:02.784 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 28/50, Train Loss: 0.026345663068171304, Val Loss: 0.038299221066491945 +2024-07-23 05:56:07.515 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 29/50, Train Loss: 0.026306671887421265, Val Loss: 0.03810256376330342 +2024-07-23 05:56:12.321 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 30/50, Train Loss: 0.026299286499404564, Val Loss: 0.0381384117262704 +2024-07-23 05:56:17.105 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 31/50, Train Loss: 0.026344237392410062, Val Loss: 0.038986613787710664 +2024-07-23 05:56:21.862 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 32/50, Train Loss: 0.026252727194402654, Val Loss: 0.03809145715619836 +2024-07-23 05:56:26.611 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 33/50, Train Loss: 0.026407351260646604, Val Loss: 0.0375911287431206 +2024-07-23 05:56:31.385 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 34/50, Train Loss: 0.026336780597025957, Val Loss: 0.03860928051705871 +2024-07-23 05:56:36.132 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 35/50, Train Loss: 0.02626373648392753, Val Loss: 0.03794955438269036 +2024-07-23 05:56:40.914 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 36/50, Train Loss: 0.026241459937479634, Val Loss: 0.03813495779676097 +2024-07-23 05:56:45.671 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 37/50, Train Loss: 0.02629041355640556, Val Loss: 0.03825679485286985 +2024-07-23 05:56:50.457 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 38/50, Train Loss: 0.026258274796418846, Val Loss: 0.037767252698540685 +2024-07-23 05:56:55.203 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 39/50, Train Loss: 0.026263358456512485, Val Loss: 0.038155020560537066 +2024-07-23 05:56:59.963 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 40/50, Train Loss: 0.026377415329289552, Val Loss: 0.038032991306058 +2024-07-23 05:57:04.752 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 41/50, Train Loss: 0.026201024445561834, Val Loss: 0.03812845753771918 +2024-07-23 05:57:09.546 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 42/50, Train Loss: 0.02621753016809145, Val Loss: 0.03785811457782984 +2024-07-23 05:57:14.331 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 43/50, Train Loss: 0.026185584836639464, Val Loss: 0.03866565929991858 +2024-07-23 05:57:19.083 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 44/50, Train Loss: 0.0263374256901443, Val Loss: 0.03816700362201248 +2024-07-23 05:57:23.868 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 45/50, Train Loss: 0.026228504721075296, Val Loss: 0.038435608707368375 +2024-07-23 05:57:28.642 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 46/50, Train Loss: 0.026233136779270493, Val Loss: 0.03837038667074272 +2024-07-23 05:57:33.435 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 47/50, Train Loss: 0.026123629041159384, Val Loss: 0.03863357560975211 +2024-07-23 05:57:38.226 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 48/50, Train Loss: 0.026100915390998125, Val Loss: 0.03943549594176667 +2024-07-23 05:57:43.007 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 49/50, Train Loss: 0.02611339819402649, Val Loss: 0.03841310670333249 +2024-07-23 05:57:47.762 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 50/50, Train Loss: 0.02606034468716154, Val Loss: 0.03876342430178608 +2024-07-23 05:57:47.762 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Fold 2, MAPE: 7.12% +2024-07-23 05:57:47.868 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_25001_50000_LSTM//train_f2_bgd_education_25001_50000_LSTM.png +2024-07-23 05:57:54.060 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 1/50, Train Loss: 0.02876815378746326, Val Loss: 0.03726673610508442 +2024-07-23 05:58:00.257 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 2/50, Train Loss: 0.02901190904592224, Val Loss: 0.03762672333312886 +2024-07-23 05:58:06.452 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 3/50, Train Loss: 0.029058184883416556, Val Loss: 0.037252840027213095 +2024-07-23 05:58:12.679 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 4/50, Train Loss: 0.02904333607729176, Val Loss: 0.0403579981731517 +2024-07-23 05:58:18.889 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 5/50, Train Loss: 0.028906660777576965, Val Loss: 0.03856735530176333 +2024-07-23 05:58:25.085 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 6/50, Train Loss: 0.02904161530138134, Val Loss: 0.040005233511328696 +2024-07-23 05:58:31.310 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 7/50, Train Loss: 0.02879691268015894, Val Loss: 0.039292763067143306 +2024-07-23 05:58:37.512 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 8/50, Train Loss: 0.02884173288056962, Val Loss: 0.03898688336568219 +2024-07-23 05:58:43.704 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 9/50, Train Loss: 0.028890673533457218, Val Loss: 0.039875841992242 +2024-07-23 05:58:49.856 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 10/50, Train Loss: 0.028932985648673644, Val Loss: 0.0399847276242716 +2024-07-23 05:58:56.034 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 11/50, Train Loss: 0.02884246390178907, Val Loss: 0.04234526503298964 +2024-07-23 05:59:02.250 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 12/50, Train Loss: 0.028880218117625166, Val Loss: 0.04110754744282791 +2024-07-23 05:59:02.250 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:59:02.250 No tasks are waiting in the queue. +2024-07-23 05:59:02.250 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 05:59:08.469 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 13/50, Train Loss: 0.02889536158349231, Val Loss: 0.040701553864138464 +2024-07-23 05:59:14.686 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 14/50, Train Loss: 0.028864754873106805, Val Loss: 0.04143037034996918 +2024-07-23 05:59:20.897 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 15/50, Train Loss: 0.028867081826110537, Val Loss: 0.042949333786964417 +2024-07-23 05:59:27.090 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 16/50, Train Loss: 0.028987061875544007, Val Loss: 0.041513785161077975 +2024-07-23 05:59:33.294 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 17/50, Train Loss: 0.028955205993579446, Val Loss: 0.03898147038583245 +2024-07-23 05:59:39.511 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 18/50, Train Loss: 0.028779371246266706, Val Loss: 0.04009182993322611 +2024-07-23 05:59:45.712 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 19/50, Train Loss: 0.028752500479437892, Val Loss: 0.04350117120359625 +2024-07-23 05:59:51.917 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 20/50, Train Loss: 0.029011991987232682, Val Loss: 0.037379421879138265 +2024-07-23 05:59:58.105 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 21/50, Train Loss: 0.028826536624122868, Val Loss: 0.03962138566587652 +2024-07-23 06:00:04.351 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 22/50, Train Loss: 0.02880450471458461, Val Loss: 0.03753923406558377 +2024-07-23 06:00:10.595 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 23/50, Train Loss: 0.028594310167614077, Val Loss: 0.038380450223173414 +2024-07-23 06:00:16.824 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 24/50, Train Loss: 0.028747660590322327, Val Loss: 0.037940675712057524 +2024-07-23 06:00:23.034 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 25/50, Train Loss: 0.02875498403533757, Val Loss: 0.03801835884473154 +2024-07-23 06:00:29.239 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 26/50, Train Loss: 0.02872820120144019, Val Loss: 0.03839261276381356 +2024-07-23 06:00:35.461 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 27/50, Train Loss: 0.02863996316471117, Val Loss: 0.03746463717626674 +2024-07-23 06:00:41.698 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 28/50, Train Loss: 0.028717074925146944, Val Loss: 0.03776452094316483 +2024-07-23 06:00:47.880 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 29/50, Train Loss: 0.028634876160205696, Val Loss: 0.037488156903002945 +2024-07-23 06:00:54.084 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 30/50, Train Loss: 0.02869079721649345, Val Loss: 0.0392433762550354 +2024-07-23 06:01:00.273 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 31/50, Train Loss: 0.02864074467835452, Val Loss: 0.0385071385917919 +2024-07-23 06:01:06.495 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 32/50, Train Loss: 0.02846580020842149, Val Loss: 0.03860858157277107 +2024-07-23 06:01:12.768 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 33/50, Train Loss: 0.02846744093749163, Val Loss: 0.040611965847866874 +2024-07-23 06:01:18.988 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 34/50, Train Loss: 0.028521219844655166, Val Loss: 0.03681419497089727 +2024-07-23 06:01:25.195 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 35/50, Train Loss: 0.028428558863217025, Val Loss: 0.036492411978542805 +2024-07-23 06:01:31.425 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 36/50, Train Loss: 0.02821781344229369, Val Loss: 0.040044612916452546 +2024-07-23 06:01:37.618 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 37/50, Train Loss: 0.028259516753953138, Val Loss: 0.0381747944014413 +2024-07-23 06:01:43.826 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 38/50, Train Loss: 0.028380852058637055, Val Loss: 0.03768634194774287 +2024-07-23 06:01:50.040 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 39/50, Train Loss: 0.02830209771988632, Val Loss: 0.03759394655270236 +2024-07-23 06:01:56.291 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 40/50, Train Loss: 0.028174566024606176, Val Loss: 0.03725236020982266 +2024-07-23 06:02:02.507 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 41/50, Train Loss: 0.028288044115836672, Val Loss: 0.03680387405412538 +2024-07-23 06:02:08.692 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 42/50, Train Loss: 0.028289859732545965, Val Loss: 0.037242980780346054 +2024-07-23 06:02:14.952 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 43/50, Train Loss: 0.028526427485584784, Val Loss: 0.036637883793030464 +2024-07-23 06:02:21.182 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 44/50, Train Loss: 0.02816276539036696, Val Loss: 0.03805814034172467 +2024-07-23 06:02:27.376 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 45/50, Train Loss: 0.028368909823165523, Val Loss: 0.03792281866605793 +2024-07-23 06:02:33.594 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 46/50, Train Loss: 0.02826009284731724, Val Loss: 0.0373400306063039 +2024-07-23 06:02:39.807 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 47/50, Train Loss: 0.02829228944594054, Val Loss: 0.03737855154488768 +2024-07-23 06:02:46.072 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 48/50, Train Loss: 0.027930748226831285, Val Loss: 0.03728807076279606 +2024-07-23 06:02:52.346 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 49/50, Train Loss: 0.028266522986479373, Val Loss: 0.03798595318304641 +2024-07-23 06:02:58.557 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 50/50, Train Loss: 0.02783621664045097, Val Loss: 0.03699061553925276 +2024-07-23 06:02:58.557 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Fold 3, MAPE: 6.72% +2024-07-23 06:02:58.663 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_25001_50000_LSTM//train_f3_bgd_education_25001_50000_LSTM.png +2024-07-23 06:03:06.342 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 1/50, Train Loss: 0.02596932561832598, Val Loss: 0.029175683989056518 +2024-07-23 06:03:14.002 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 2/50, Train Loss: 0.025795881454458183, Val Loss: 0.029208118095993996 +2024-07-23 06:03:21.704 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 3/50, Train Loss: 0.025752221335838925, Val Loss: 0.029523552821150847 +2024-07-23 06:03:29.391 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 4/50, Train Loss: 0.025986593227362496, Val Loss: 0.030970389395952223 +2024-07-23 06:03:37.040 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 5/50, Train Loss: 0.026021786499768496, Val Loss: 0.02883291609053101 +2024-07-23 06:03:44.729 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 6/50, Train Loss: 0.025660679375902676, Val Loss: 0.02840154053909438 +2024-07-23 06:03:52.403 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 7/50, Train Loss: 0.025723436676051425, Val Loss: 0.029697455971368723 +2024-07-23 06:04:00.071 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 8/50, Train Loss: 0.025859506238765758, Val Loss: 0.030520314297505787 +2024-07-23 06:04:07.754 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 9/50, Train Loss: 0.025703691770376146, Val Loss: 0.028727435240788118 +2024-07-23 06:04:07.755 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:04:07.755 No tasks are waiting in the queue. +2024-07-23 06:04:07.755 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 06:04:15.426 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 10/50, Train Loss: 0.02564711276249125, Val Loss: 0.02868876584938594 +2024-07-23 06:04:23.137 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 11/50, Train Loss: 0.025716755474949705, Val Loss: 0.029352935643068383 +2024-07-23 06:04:30.805 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 12/50, Train Loss: 0.0257475348724716, Val Loss: 0.03104939412857805 +2024-07-23 06:04:38.468 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 13/50, Train Loss: 0.025845587408790987, Val Loss: 0.02838972248136997 +2024-07-23 06:04:46.147 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 14/50, Train Loss: 0.025692841102337015, Val Loss: 0.029685597334589277 +2024-07-23 06:04:53.839 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 15/50, Train Loss: 0.02580376051837343, Val Loss: 0.030629484089357513 +2024-07-23 06:05:01.548 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 16/50, Train Loss: 0.025527893469251436, Val Loss: 0.028351095638104847 +2024-07-23 06:05:09.207 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 17/50, Train Loss: 0.025715948291251373, Val Loss: 0.029180534237197468 +2024-07-23 06:05:16.892 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 18/50, Train Loss: 0.02559667531850523, Val Loss: 0.028777047246694564 +2024-07-23 06:05:24.588 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 19/50, Train Loss: 0.025575147749021136, Val Loss: 0.028359271186803068 +2024-07-23 06:05:32.303 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 20/50, Train Loss: 0.025534904069513423, Val Loss: 0.028302178478666715 +2024-07-23 06:05:40.040 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 21/50, Train Loss: 0.02564572469577536, Val Loss: 0.02915116628365857 +2024-07-23 06:05:47.746 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 22/50, Train Loss: 0.02558295603777314, Val Loss: 0.028694604017904825 +2024-07-23 06:05:55.436 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 23/50, Train Loss: 0.025747321224932014, Val Loss: 0.028255982643791606 +2024-07-23 06:06:03.146 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 24/50, Train Loss: 0.02563932571217589, Val Loss: 0.028490684154842582 +2024-07-23 06:06:10.906 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 25/50, Train Loss: 0.02537593926870446, Val Loss: 0.027989287142242705 +2024-07-23 06:06:18.624 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 26/50, Train Loss: 0.025721205617889934, Val Loss: 0.029571229884667056 +2024-07-23 06:06:26.329 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 27/50, Train Loss: 0.025492184190614813, Val Loss: 0.028300492465496062 +2024-07-23 06:06:34.048 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 28/50, Train Loss: 0.025493177906449498, Val Loss: 0.02817469303097044 +2024-07-23 06:06:41.827 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 29/50, Train Loss: 0.025468412957999897, Val Loss: 0.02919354345649481 +2024-07-23 06:06:49.516 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 30/50, Train Loss: 0.02540700208802504, Val Loss: 0.028240968526474067 +2024-07-23 06:06:57.224 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 31/50, Train Loss: 0.025447136904487664, Val Loss: 0.029064037331512995 +2024-07-23 06:07:04.946 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 32/50, Train Loss: 0.02533080398329887, Val Loss: 0.02851566392928362 +2024-07-23 06:07:12.676 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 33/50, Train Loss: 0.025300781488761134, Val Loss: 0.028603595734706947 +2024-07-23 06:07:20.378 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 34/50, Train Loss: 0.02538758036198801, Val Loss: 0.027438412447060856 +2024-07-23 06:07:28.087 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 35/50, Train Loss: 0.02522811858283206, Val Loss: 0.028479188866913318 +2024-07-23 06:07:35.838 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 36/50, Train Loss: 0.025148332274208467, Val Loss: 0.027108269929885864 +2024-07-23 06:07:43.679 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 37/50, Train Loss: 0.024934835111101467, Val Loss: 0.02761183524770396 +2024-07-23 06:07:51.447 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 38/50, Train Loss: 0.025612701324681783, Val Loss: 0.02865751867315599 +2024-07-23 06:07:59.156 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 39/50, Train Loss: 0.025122034143999047, Val Loss: 0.02806939815304109 +2024-07-23 06:08:06.901 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 40/50, Train Loss: 0.02499784759363566, Val Loss: 0.02795274012855121 +2024-07-23 06:08:14.647 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 41/50, Train Loss: 0.025114656361783373, Val Loss: 0.030735751347882406 +2024-07-23 06:08:22.423 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 42/50, Train Loss: 0.025063405857132428, Val Loss: 0.028136785461434295 +2024-07-23 06:08:30.142 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 43/50, Train Loss: 0.024818407034437204, Val Loss: 0.02821677249989339 +2024-07-23 06:08:37.883 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 44/50, Train Loss: 0.025316674374686234, Val Loss: 0.027151573023625784 +2024-07-23 06:08:45.659 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 45/50, Train Loss: 0.024796762364520424, Val Loss: 0.027706865859883172 +2024-07-23 06:08:53.458 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 46/50, Train Loss: 0.025337744686195905, Val Loss: 0.02748095922704254 +2024-07-23 06:09:01.201 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 47/50, Train Loss: 0.024961078250459557, Val Loss: 0.02693653649517468 +2024-07-23 06:09:08.955 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 48/50, Train Loss: 0.025235264117818797, Val Loss: 0.026995683461427687 +2024-07-23 06:09:08.955 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:09:08.955 No tasks are waiting in the queue. +2024-07-23 06:09:08.955 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 06:09:16.698 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 49/50, Train Loss: 0.024986252247559272, Val Loss: 0.02711261207503932 +2024-07-23 06:09:24.428 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 50/50, Train Loss: 0.024958414512675726, Val Loss: 0.025903334761304516 +2024-07-23 06:09:24.429 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Fold 4, MAPE: 5.54% +2024-07-23 06:09:24.534 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_25001_50000_LSTM//train_f4_bgd_education_25001_50000_LSTM.png +2024-07-23 06:09:28.740 [51/cross_validate_train/541 (pid 72675)] Task finished successfully. +2024-07-23 06:09:28.771 [51/model_scores/542 (pid 77246)] Task is starting. +2024-07-23 06:09:30.240 [51/model_scores/542 (pid 77246)] INFO:__main__:Average Train Loss across all folds: 0.029638496497156074 +2024-07-23 06:09:34.121 [51/model_scores/542 (pid 77246)] INFO:__main__:Average Validation Loss across all folds: 0.03504835570497172 +2024-07-23 06:09:34.121 [51/model_scores/542 (pid 77246)] INFO:__main__:Average MAPE across all folds: 6.34% +2024-07-23 06:09:34.122 [51/model_scores/542 (pid 77246)] Task finished successfully. +2024-07-23 06:09:34.150 [51/validate_model/543 (pid 77277)] Task is starting. +2024-07-23 06:09:35.627 [51/validate_model/543 (pid 77277)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 06:09:36.422 [51/validate_model/543 (pid 77277)] INFO:__main__:Test Set MAPE: 5.93% +2024-07-23 06:09:36.783 [51/validate_model/543 (pid 77277)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_education_25001_50000_LSTM//test_bgd_education_25001_50000_LSTM.png +2024-07-23 06:09:37.204 [51/validate_model/543 (pid 77277)] Task finished successfully. +2024-07-23 06:09:37.236 [51/log_model/544 (pid 77289)] Task is starting. +2024-07-23 06:09:38.705 [51/log_model/544 (pid 77289)] INFO:__main__:Logging model bgd_education_25001_50000_LSTM +2024-07-23 06:09:38.707 [51/log_model/544 (pid 77289)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_education_25001_50000_LSTM//bgd_education_25001_50000_LSTM.pth +2024-07-23 06:09:42.588 [51/log_model/544 (pid 77289)] Task finished successfully. +2024-07-23 06:09:42.618 [51/end/545 (pid 77323)] Task is starting. +2024-07-23 06:09:44.092 [51/end/545 (pid 77323)] INFO:__main__:Pipeline end. +2024-07-23 06:09:44.401 [51/end/545 (pid 77323)] Task finished successfully. +2024-07-23 06:09:44.402 Done! +✅ Run('BGD_LinearFlow/51') succeeded: +-- stdout -- +2024-07-23 05:48:57.920 Workflow starting (run-id 51): +2024-07-23 05:48:57.989 [51/start/533 (pid 72519)] Task is starting. +2024-07-23 05:48:59.460 [51/start/533 (pid 72519)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 05:48:59.757 [51/start/533 (pid 72519)] Task finished successfully. +2024-07-23 05:48:59.788 [51/ingest/534 (pid 72537)] Task is starting. +2024-07-23 05:49:01.258 [51/ingest/534 (pid 72537)] INFO:__main__:Fetching dataframe.. +2024-07-23 05:49:01.275 [51/ingest/534 (pid 72537)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 05:49:05.126 [51/ingest/534 (pid 72537)] Task finished successfully. +2024-07-23 05:49:05.156 [51/pick_2017_data/535 (pid 72570)] Task is starting. +2024-07-23 05:49:06.607 [51/pick_2017_data/535 (pid 72570)] INFO:__main__:Picking 2017 data.. +2024-07-23 05:49:06.914 [51/pick_2017_data/535 (pid 72570)] Task finished successfully. +2024-07-23 05:49:06.945 [51/fill_missing_data/536 (pid 72581)] Task is starting. +2024-07-23 05:49:08.455 [51/fill_missing_data/536 (pid 72581)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] INFO:__main__:NaN counts per column: +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] INFO:__main__:Robin_education_Audrea 0 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] Rat_education_Carmela 50 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] Rat_education_Salvatore 50 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] Rat_education_Candida 50 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] Bear_education_Merrill 129 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] Cockatoo_education_Melanie 117 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] Cockatoo_education_Julia 128 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] dtype: int64 +2024-07-23 05:49:08.462 [51/fill_missing_data/536 (pid 72581)] --- Logging error --- +2024-07-23 05:49:08.463 [51/fill_missing_data/536 (pid 72581)] Traceback (most recent call last): +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] msg = self.format(record) +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] return fmt.format(record) +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] record.message = record.getMessage() +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] msg = msg % self.args +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] TypeError: not all arguments converted during string formatting +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] Call stack: +2024-07-23 05:49:08.464 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] BGD_LinearFlow() +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] cli.main(self) +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] return func(*args, **kwargs) +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] return self.main(*args, **kwargs) +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 05:49:09.098 [51/fill_missing_data/536 (pid 72581)] rv = self.invoke(ctx) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] return callback(*args, **kwargs) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] return f(get_current_context(), *args, **kwargs) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] task.run_step( +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] self._exec_step_function(step_func) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] step_function() +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] self.missing_values = find_nan_counts(self.df) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 05:49:09.099 [51/fill_missing_data/536 (pid 72581)] Arguments: (524,) +2024-07-23 05:49:09.100 [51/fill_missing_data/536 (pid 72581)] Task finished successfully. +2024-07-23 05:49:09.130 [51/find_median/537 (pid 72595)] Task is starting. +2024-07-23 05:49:10.598 [51/find_median/537 (pid 72595)] INFO:__main__:Computing and using median.. +2024-07-23 05:49:11.100 [51/find_median/537 (pid 72595)] Task finished successfully. +2024-07-23 05:49:11.129 [51/aggregate_data/538 (pid 72606)] Task is starting. +2024-07-23 05:49:12.607 [51/aggregate_data/538 (pid 72606)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 05:49:16.465 [51/aggregate_data/538 (pid 72606)] Task finished successfully. +2024-07-23 05:49:16.496 [51/split_data/539 (pid 72631)] Task is starting. +2024-07-23 05:49:17.976 [51/split_data/539 (pid 72631)] INFO:__main__:Splitting data into test and train... +2024-07-23 05:49:21.846 [51/split_data/539 (pid 72631)] Task finished successfully. +2024-07-23 05:49:21.876 [51/make_x_y/540 (pid 72664)] Task is starting. +2024-07-23 05:49:23.677 [51/make_x_y/540 (pid 72664)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 05:49:24.074 [51/make_x_y/540 (pid 72664)] Shape of y_train: (6648, 1) +2024-07-23 05:49:24.074 [51/make_x_y/540 (pid 72664)] Shape of X_test: (1392, 360, 1) +2024-07-23 05:49:24.074 [51/make_x_y/540 (pid 72664)] Shape of y_test: (1392, 1) +2024-07-23 05:49:24.075 [51/make_x_y/540 (pid 72664)] Task finished successfully. +2024-07-23 05:49:24.102 [51/cross_validate_train/541 (pid 72675)] Task is starting. +2024-07-23 05:49:25.547 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Creating bgd_education_25001_50000_LSTM +2024-07-23 05:49:25.547 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Performing cross validation.. +2024-07-23 05:49:27.993 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 1/50, Train Loss: 0.1591644705406257, Val Loss: 0.1584344908595085 +2024-07-23 05:49:29.852 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 2/50, Train Loss: 0.12236314852322851, Val Loss: 0.13839374402804033 +2024-07-23 05:49:31.730 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 3/50, Train Loss: 0.10906212042484964, Val Loss: 0.1216906651854515 +2024-07-23 05:49:33.614 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 4/50, Train Loss: 0.08961662996028151, Val Loss: 0.09611103300537382 +2024-07-23 05:49:35.497 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 5/50, Train Loss: 0.06729891092649527, Val Loss: 0.06703501056347574 +2024-07-23 05:49:37.391 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 6/50, Train Loss: 0.06461380230528968, Val Loss: 0.06308778237019266 +2024-07-23 05:49:39.267 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 7/50, Train Loss: 0.05942900297897202, Val Loss: 0.061772238463163376 +2024-07-23 05:49:41.149 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 8/50, Train Loss: 0.05742273453090872, Val Loss: 0.059385111927986144 +2024-07-23 05:49:43.025 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 9/50, Train Loss: 0.05531968575503145, Val Loss: 0.058457632416060994 +2024-07-23 05:49:44.895 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 10/50, Train Loss: 0.05448319943887847, Val Loss: 0.05722643344530037 +2024-07-23 05:49:46.763 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 11/50, Train Loss: 0.05303540155291557, Val Loss: 0.05526896257485662 +2024-07-23 05:49:48.662 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 12/50, Train Loss: 0.05133722972656999, Val Loss: 0.05416720631931509 +2024-07-23 05:49:50.551 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 13/50, Train Loss: 0.05011466480791569, Val Loss: 0.05332982550774302 +2024-07-23 05:49:52.420 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 14/50, Train Loss: 0.04938831377242293, Val Loss: 0.05221074590725558 +2024-07-23 05:49:54.288 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 15/50, Train Loss: 0.049092025735548564, Val Loss: 0.05021420222307955 +2024-07-23 05:49:56.157 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 16/50, Train Loss: 0.04789730863911765, Val Loss: 0.049331896592463766 +2024-07-23 05:49:58.032 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 17/50, Train Loss: 0.04694089767123972, Val Loss: 0.048231913309012144 +2024-07-23 05:49:59.900 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 18/50, Train Loss: 0.04602329555366721, Val Loss: 0.046627786116940635 +2024-07-23 05:50:01.825 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 19/50, Train Loss: 0.04515573153538363, Val Loss: 0.045691299172384396 +2024-07-23 05:50:03.700 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 20/50, Train Loss: 0.043933951801487375, Val Loss: 0.045716814856444084 +2024-07-23 05:50:05.563 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 21/50, Train Loss: 0.043169537718806945, Val Loss: 0.04473464105810438 +2024-07-23 05:50:07.434 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 22/50, Train Loss: 0.04308748772101743, Val Loss: 0.043658865935036116 +2024-07-23 05:50:09.331 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 23/50, Train Loss: 0.041837342296327865, Val Loss: 0.04275608706687178 +2024-07-23 05:50:11.217 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 24/50, Train Loss: 0.041112635657191275, Val Loss: 0.0421080619096756 +2024-07-23 05:50:13.091 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 25/50, Train Loss: 0.040504534116813116, Val Loss: 0.040607384592294696 +2024-07-23 05:50:14.989 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 26/50, Train Loss: 0.039956996430243766, Val Loss: 0.03973174691200256 +2024-07-23 05:50:16.865 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 27/50, Train Loss: 0.03938595178936209, Val Loss: 0.03941646175725119 +2024-07-23 05:50:18.755 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 28/50, Train Loss: 0.0389603785106114, Val Loss: 0.03842852685068335 +2024-07-23 05:50:20.658 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 29/50, Train Loss: 0.03841748168425901, Val Loss: 0.037869821754949434 +2024-07-23 05:50:22.566 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 30/50, Train Loss: 0.037958437417234696, Val Loss: 0.03741647712886333 +2024-07-23 05:50:24.451 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 31/50, Train Loss: 0.03772987270993846, Val Loss: 0.03712606435375554 +2024-07-23 05:50:26.346 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 32/50, Train Loss: 0.037514099585158486, Val Loss: 0.036417021708829066 +2024-07-23 05:50:28.247 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 33/50, Train Loss: 0.03724594142820154, Val Loss: 0.03673878152455602 +2024-07-23 05:50:30.155 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 34/50, Train Loss: 0.03758740127086639, Val Loss: 0.03688804752060345 +2024-07-23 05:50:32.059 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 35/50, Train Loss: 0.03736576661467552, Val Loss: 0.03678169569798878 +2024-07-23 05:50:33.962 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 36/50, Train Loss: 0.0371771830533232, Val Loss: 0.035937333585960525 +2024-07-23 05:50:35.858 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 37/50, Train Loss: 0.03684287284101759, Val Loss: 0.03614498781306403 +2024-07-23 05:50:37.767 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 38/50, Train Loss: 0.03651847099619252, Val Loss: 0.035558924664344106 +2024-07-23 05:50:39.668 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 39/50, Train Loss: 0.03642594670610769, Val Loss: 0.03548079590712275 +2024-07-23 05:50:41.594 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 40/50, Train Loss: 0.03612672739795276, Val Loss: 0.0355321218924863 +2024-07-23 05:50:43.504 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 41/50, Train Loss: 0.03646589161029884, Val Loss: 0.03554399630853108 +2024-07-23 05:50:45.409 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 42/50, Train Loss: 0.03610123906816755, Val Loss: 0.036014210166675706 +2024-07-23 05:50:47.337 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 43/50, Train Loss: 0.036270829609462193, Val Loss: 0.03587382967982974 +2024-07-23 05:50:49.240 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 44/50, Train Loss: 0.03607576026448182, Val Loss: 0.03562383747526578 +2024-07-23 05:50:51.188 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 45/50, Train Loss: 0.03631714933684894, Val Loss: 0.036194931396416254 +2024-07-23 05:50:53.089 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 46/50, Train Loss: 0.036377587754811556, Val Loss: 0.03633200978594167 +2024-07-23 05:50:54.992 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 47/50, Train Loss: 0.03634563237428665, Val Loss: 0.03566970181252275 +2024-07-23 05:50:56.887 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 48/50, Train Loss: 0.036238552896039826, Val Loss: 0.036105661573154584 +2024-07-23 05:50:58.781 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 49/50, Train Loss: 0.03648464466844286, Val Loss: 0.036176475297127454 +2024-07-23 05:51:00.686 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 50/50, Train Loss: 0.03591911159455776, Val Loss: 0.03568053447774478 +2024-07-23 05:51:00.686 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Fold 0, MAPE: 6.12% +2024-07-23 05:51:00.989 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_25001_50000_LSTM//train_f0_bgd_education_25001_50000_LSTM.png +2024-07-23 05:51:04.412 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 1/50, Train Loss: 0.035756885353475806, Val Loss: 0.03950574656150171 +2024-07-23 05:51:07.743 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 2/50, Train Loss: 0.03525874641324792, Val Loss: 0.03929324900465352 +2024-07-23 05:51:11.134 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 3/50, Train Loss: 0.034990659542381765, Val Loss: 0.03851991247917925 +2024-07-23 05:51:14.486 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 4/50, Train Loss: 0.034669993032834356, Val Loss: 0.03887799980917147 +2024-07-23 05:51:17.851 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 5/50, Train Loss: 0.034823466651141645, Val Loss: 0.03868092641766582 +2024-07-23 05:51:21.244 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 6/50, Train Loss: 0.03466368942920651, Val Loss: 0.03975040337869099 +2024-07-23 05:51:24.613 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 7/50, Train Loss: 0.03457880866314684, Val Loss: 0.03899303424571242 +2024-07-23 05:51:27.981 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 8/50, Train Loss: 0.034415646988366334, Val Loss: 0.040065354055591994 +2024-07-23 05:51:31.354 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 9/50, Train Loss: 0.03438472553555454, Val Loss: 0.03878961905304875 +2024-07-23 05:51:34.710 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 10/50, Train Loss: 0.03426251879760197, Val Loss: 0.038992016443184445 +2024-07-23 05:51:38.073 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 11/50, Train Loss: 0.03418662023863622, Val Loss: 0.04029826708137989 +2024-07-23 05:51:41.449 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 12/50, Train Loss: 0.033999262816671816, Val Loss: 0.03931291023535388 +2024-07-23 05:51:44.799 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 13/50, Train Loss: 0.034268251274313245, Val Loss: 0.03878892617566245 +2024-07-23 05:51:48.205 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 14/50, Train Loss: 0.03396579156230603, Val Loss: 0.04026895857283047 +2024-07-23 05:51:51.597 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 15/50, Train Loss: 0.03375592774578503, Val Loss: 0.03774858433753252 +2024-07-23 05:51:54.965 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 16/50, Train Loss: 0.03436771929264069, Val Loss: 0.040565726959279604 +2024-07-23 05:51:58.316 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 17/50, Train Loss: 0.03381581515339868, Val Loss: 0.04072947347802775 +2024-07-23 05:52:01.707 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 18/50, Train Loss: 0.033723924841199605, Val Loss: 0.040263068463121145 +2024-07-23 05:52:05.047 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 19/50, Train Loss: 0.0338045310229063, Val Loss: 0.0378561867667096 +2024-07-23 05:52:08.424 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 20/50, Train Loss: 0.03368535663134285, Val Loss: 0.037697562708386353 +2024-07-23 05:52:11.803 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 21/50, Train Loss: 0.033674298665885415, Val Loss: 0.0377781803054469 +2024-07-23 05:52:15.160 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 22/50, Train Loss: 0.033722822141966646, Val Loss: 0.03801994241241898 +2024-07-23 05:52:18.496 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 23/50, Train Loss: 0.033591371974242584, Val Loss: 0.03835702961576837 +2024-07-23 05:52:21.867 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 24/50, Train Loss: 0.0339327291585505, Val Loss: 0.03885780285511698 +2024-07-23 05:52:25.216 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 25/50, Train Loss: 0.03400592452713421, Val Loss: 0.03758356954370226 +2024-07-23 05:52:28.594 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 26/50, Train Loss: 0.03387252786861999, Val Loss: 0.03946593880121197 +2024-07-23 05:52:31.953 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 27/50, Train Loss: 0.03380487527964371, Val Loss: 0.03792609516531229 +2024-07-23 05:52:35.293 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 28/50, Train Loss: 0.033711157885513134, Val Loss: 0.03815797955862114 +2024-07-23 05:52:38.643 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 29/50, Train Loss: 0.03380663535956826, Val Loss: 0.0377881933003664 +2024-07-23 05:52:42.025 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 30/50, Train Loss: 0.033568225361938986, Val Loss: 0.03754137669290815 +2024-07-23 05:52:45.360 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 31/50, Train Loss: 0.03375982461231095, Val Loss: 0.03762878520148141 +2024-07-23 05:52:48.700 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 32/50, Train Loss: 0.033965031682912795, Val Loss: 0.03763000871986151 +2024-07-23 05:52:52.052 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 33/50, Train Loss: 0.03353210112878254, Val Loss: 0.03788182118109294 +2024-07-23 05:52:55.390 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 34/50, Train Loss: 0.03378971086016723, Val Loss: 0.03759146098579679 +2024-07-23 05:52:58.736 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 35/50, Train Loss: 0.03385217892272132, Val Loss: 0.03818343271102224 +2024-07-23 05:53:02.139 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 36/50, Train Loss: 0.03385075684636831, Val Loss: 0.037542048549013475 +2024-07-23 05:53:05.488 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 37/50, Train Loss: 0.03366279386516128, Val Loss: 0.03991206381469965 +2024-07-23 05:53:08.862 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 38/50, Train Loss: 0.033917517920157736, Val Loss: 0.037759218364953995 +2024-07-23 05:53:12.234 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 39/50, Train Loss: 0.03354064835501569, Val Loss: 0.03897151409515313 +2024-07-23 05:53:15.570 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 40/50, Train Loss: 0.033452253229916094, Val Loss: 0.03763829126421894 +2024-07-23 05:53:18.919 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 41/50, Train Loss: 0.03337109288466828, Val Loss: 0.03754536009260586 +2024-07-23 05:53:22.257 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 42/50, Train Loss: 0.033387618378869124, Val Loss: 0.03871520598019872 +2024-07-23 05:53:25.604 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 43/50, Train Loss: 0.03342461351837431, Val Loss: 0.03716898885156427 +2024-07-23 05:53:28.947 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 44/50, Train Loss: 0.03336096459201404, Val Loss: 0.039253956558448926 +2024-07-23 05:53:32.292 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 45/50, Train Loss: 0.033475832122245, Val Loss: 0.03776568781052317 +2024-07-23 05:53:35.666 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 46/50, Train Loss: 0.03326958528320704, Val Loss: 0.03797449403043304 +2024-07-23 05:53:39.022 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 47/50, Train Loss: 0.033139041571744854, Val Loss: 0.03756888325193099 +2024-07-23 05:53:42.375 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 48/50, Train Loss: 0.033186426386237144, Val Loss: 0.03766712820423501 +2024-07-23 05:53:45.712 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 49/50, Train Loss: 0.033280868149761646, Val Loss: 0.038192584578480036 +2024-07-23 05:53:49.044 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 50/50, Train Loss: 0.033418395050934385, Val Loss: 0.03790386944477047 +2024-07-23 05:53:49.044 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Fold 1, MAPE: 6.20% +2024-07-23 05:53:49.147 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_25001_50000_LSTM//train_f1_bgd_education_25001_50000_LSTM.png +2024-07-23 05:53:53.924 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 1/50, Train Loss: 0.027426580110421546, Val Loss: 0.03932378773710558 +2024-07-23 05:53:58.676 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 2/50, Train Loss: 0.026991741982503578, Val Loss: 0.03966513592749834 +2024-07-23 05:53:58.676 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:53:58.676 No tasks are waiting in the queue. +2024-07-23 05:53:58.676 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 05:54:03.435 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 3/50, Train Loss: 0.027043097643539883, Val Loss: 0.03907068323876176 +2024-07-23 05:54:08.199 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 4/50, Train Loss: 0.026853721221694007, Val Loss: 0.038640052186591285 +2024-07-23 05:54:12.979 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 5/50, Train Loss: 0.026897917609088697, Val Loss: 0.03954289265509162 +2024-07-23 05:54:17.744 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 6/50, Train Loss: 0.026761514618276402, Val Loss: 0.03834260127374104 +2024-07-23 05:54:22.513 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 7/50, Train Loss: 0.02681086930589607, Val Loss: 0.038011592919273036 +2024-07-23 05:54:27.301 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 8/50, Train Loss: 0.026847082808112297, Val Loss: 0.03778574716831957 +2024-07-23 05:54:32.076 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 9/50, Train Loss: 0.026807414018549025, Val Loss: 0.038510116056672164 +2024-07-23 05:54:36.823 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 10/50, Train Loss: 0.026755515969573304, Val Loss: 0.03747794633465154 +2024-07-23 05:54:41.598 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 11/50, Train Loss: 0.026703835151588116, Val Loss: 0.037785236191536696 +2024-07-23 05:54:46.362 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 12/50, Train Loss: 0.02670175383368937, Val Loss: 0.03765591486756291 +2024-07-23 05:54:51.184 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 13/50, Train Loss: 0.0267350099927101, Val Loss: 0.03852350227534771 +2024-07-23 05:54:55.942 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 14/50, Train Loss: 0.02666180786819985, Val Loss: 0.038070330076983995 +2024-07-23 05:55:00.726 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 15/50, Train Loss: 0.026631702498819392, Val Loss: 0.038375854146267686 +2024-07-23 05:55:05.506 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 16/50, Train Loss: 0.02656925565455682, Val Loss: 0.03863834696156638 +2024-07-23 05:55:10.266 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 17/50, Train Loss: 0.026599930903802697, Val Loss: 0.03809054767979043 +2024-07-23 05:55:15.032 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 18/50, Train Loss: 0.02662331288537154, Val Loss: 0.038407707374010766 +2024-07-23 05:55:19.837 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 19/50, Train Loss: 0.026586355408653617, Val Loss: 0.038344106716769084 +2024-07-23 05:55:24.585 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 20/50, Train Loss: 0.02657703946953496, Val Loss: 0.0377054040985448 +2024-07-23 05:55:29.337 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 21/50, Train Loss: 0.026459670249516003, Val Loss: 0.03829089416457074 +2024-07-23 05:55:34.104 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 22/50, Train Loss: 0.026434756063211422, Val Loss: 0.03815296164580754 +2024-07-23 05:55:38.875 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 23/50, Train Loss: 0.026448569466503195, Val Loss: 0.03820227938038962 +2024-07-23 05:55:43.677 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 24/50, Train Loss: 0.02644628641876177, Val Loss: 0.03811908790043422 +2024-07-23 05:55:48.436 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 25/50, Train Loss: 0.026328611644343115, Val Loss: 0.037719088207398145 +2024-07-23 05:55:53.236 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 26/50, Train Loss: 0.026467659627087414, Val Loss: 0.03848035058804921 +2024-07-23 05:55:58.002 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 27/50, Train Loss: 0.026331424238518454, Val Loss: 0.03791765919221299 +2024-07-23 05:56:02.784 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 28/50, Train Loss: 0.026345663068171304, Val Loss: 0.038299221066491945 +2024-07-23 05:56:07.515 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 29/50, Train Loss: 0.026306671887421265, Val Loss: 0.03810256376330342 +2024-07-23 05:56:12.321 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 30/50, Train Loss: 0.026299286499404564, Val Loss: 0.0381384117262704 +2024-07-23 05:56:17.105 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 31/50, Train Loss: 0.026344237392410062, Val Loss: 0.038986613787710664 +2024-07-23 05:56:21.862 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 32/50, Train Loss: 0.026252727194402654, Val Loss: 0.03809145715619836 +2024-07-23 05:56:26.611 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 33/50, Train Loss: 0.026407351260646604, Val Loss: 0.0375911287431206 +2024-07-23 05:56:31.385 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 34/50, Train Loss: 0.026336780597025957, Val Loss: 0.03860928051705871 +2024-07-23 05:56:36.132 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 35/50, Train Loss: 0.02626373648392753, Val Loss: 0.03794955438269036 +2024-07-23 05:56:40.914 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 36/50, Train Loss: 0.026241459937479634, Val Loss: 0.03813495779676097 +2024-07-23 05:56:45.671 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 37/50, Train Loss: 0.02629041355640556, Val Loss: 0.03825679485286985 +2024-07-23 05:56:50.457 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 38/50, Train Loss: 0.026258274796418846, Val Loss: 0.037767252698540685 +2024-07-23 05:56:55.203 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 39/50, Train Loss: 0.026263358456512485, Val Loss: 0.038155020560537066 +2024-07-23 05:56:59.963 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 40/50, Train Loss: 0.026377415329289552, Val Loss: 0.038032991306058 +2024-07-23 05:57:04.752 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 41/50, Train Loss: 0.026201024445561834, Val Loss: 0.03812845753771918 +2024-07-23 05:57:09.546 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 42/50, Train Loss: 0.02621753016809145, Val Loss: 0.03785811457782984 +2024-07-23 05:57:14.331 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 43/50, Train Loss: 0.026185584836639464, Val Loss: 0.03866565929991858 +2024-07-23 05:57:19.083 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 44/50, Train Loss: 0.0263374256901443, Val Loss: 0.03816700362201248 +2024-07-23 05:57:23.868 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 45/50, Train Loss: 0.026228504721075296, Val Loss: 0.038435608707368375 +2024-07-23 05:57:28.642 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 46/50, Train Loss: 0.026233136779270493, Val Loss: 0.03837038667074272 +2024-07-23 05:57:33.435 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 47/50, Train Loss: 0.026123629041159384, Val Loss: 0.03863357560975211 +2024-07-23 05:57:38.226 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 48/50, Train Loss: 0.026100915390998125, Val Loss: 0.03943549594176667 +2024-07-23 05:57:43.007 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 49/50, Train Loss: 0.02611339819402649, Val Loss: 0.03841310670333249 +2024-07-23 05:57:47.762 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 50/50, Train Loss: 0.02606034468716154, Val Loss: 0.03876342430178608 +2024-07-23 05:57:47.762 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Fold 2, MAPE: 7.12% +2024-07-23 05:57:47.868 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_25001_50000_LSTM//train_f2_bgd_education_25001_50000_LSTM.png +2024-07-23 05:57:54.060 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 1/50, Train Loss: 0.02876815378746326, Val Loss: 0.03726673610508442 +2024-07-23 05:58:00.257 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 2/50, Train Loss: 0.02901190904592224, Val Loss: 0.03762672333312886 +2024-07-23 05:58:06.452 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 3/50, Train Loss: 0.029058184883416556, Val Loss: 0.037252840027213095 +2024-07-23 05:58:12.679 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 4/50, Train Loss: 0.02904333607729176, Val Loss: 0.0403579981731517 +2024-07-23 05:58:18.889 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 5/50, Train Loss: 0.028906660777576965, Val Loss: 0.03856735530176333 +2024-07-23 05:58:25.085 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 6/50, Train Loss: 0.02904161530138134, Val Loss: 0.040005233511328696 +2024-07-23 05:58:31.310 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 7/50, Train Loss: 0.02879691268015894, Val Loss: 0.039292763067143306 +2024-07-23 05:58:37.512 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 8/50, Train Loss: 0.02884173288056962, Val Loss: 0.03898688336568219 +2024-07-23 05:58:43.704 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 9/50, Train Loss: 0.028890673533457218, Val Loss: 0.039875841992242 +2024-07-23 05:58:49.856 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 10/50, Train Loss: 0.028932985648673644, Val Loss: 0.0399847276242716 +2024-07-23 05:58:56.034 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 11/50, Train Loss: 0.02884246390178907, Val Loss: 0.04234526503298964 +2024-07-23 05:59:02.250 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 12/50, Train Loss: 0.028880218117625166, Val Loss: 0.04110754744282791 +2024-07-23 05:59:02.250 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:59:02.250 No tasks are waiting in the queue. +2024-07-23 05:59:02.250 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 05:59:08.469 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 13/50, Train Loss: 0.02889536158349231, Val Loss: 0.040701553864138464 +2024-07-23 05:59:14.686 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 14/50, Train Loss: 0.028864754873106805, Val Loss: 0.04143037034996918 +2024-07-23 05:59:20.897 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 15/50, Train Loss: 0.028867081826110537, Val Loss: 0.042949333786964417 +2024-07-23 05:59:27.090 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 16/50, Train Loss: 0.028987061875544007, Val Loss: 0.041513785161077975 +2024-07-23 05:59:33.294 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 17/50, Train Loss: 0.028955205993579446, Val Loss: 0.03898147038583245 +2024-07-23 05:59:39.511 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 18/50, Train Loss: 0.028779371246266706, Val Loss: 0.04009182993322611 +2024-07-23 05:59:45.712 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 19/50, Train Loss: 0.028752500479437892, Val Loss: 0.04350117120359625 +2024-07-23 05:59:51.917 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 20/50, Train Loss: 0.029011991987232682, Val Loss: 0.037379421879138265 +2024-07-23 05:59:58.105 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 21/50, Train Loss: 0.028826536624122868, Val Loss: 0.03962138566587652 +2024-07-23 06:00:04.351 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 22/50, Train Loss: 0.02880450471458461, Val Loss: 0.03753923406558377 +2024-07-23 06:00:10.595 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 23/50, Train Loss: 0.028594310167614077, Val Loss: 0.038380450223173414 +2024-07-23 06:00:16.824 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 24/50, Train Loss: 0.028747660590322327, Val Loss: 0.037940675712057524 +2024-07-23 06:00:23.034 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 25/50, Train Loss: 0.02875498403533757, Val Loss: 0.03801835884473154 +2024-07-23 06:00:29.239 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 26/50, Train Loss: 0.02872820120144019, Val Loss: 0.03839261276381356 +2024-07-23 06:00:35.461 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 27/50, Train Loss: 0.02863996316471117, Val Loss: 0.03746463717626674 +2024-07-23 06:00:41.698 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 28/50, Train Loss: 0.028717074925146944, Val Loss: 0.03776452094316483 +2024-07-23 06:00:47.880 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 29/50, Train Loss: 0.028634876160205696, Val Loss: 0.037488156903002945 +2024-07-23 06:00:54.084 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 30/50, Train Loss: 0.02869079721649345, Val Loss: 0.0392433762550354 +2024-07-23 06:01:00.273 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 31/50, Train Loss: 0.02864074467835452, Val Loss: 0.0385071385917919 +2024-07-23 06:01:06.495 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 32/50, Train Loss: 0.02846580020842149, Val Loss: 0.03860858157277107 +2024-07-23 06:01:12.768 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 33/50, Train Loss: 0.02846744093749163, Val Loss: 0.040611965847866874 +2024-07-23 06:01:18.988 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 34/50, Train Loss: 0.028521219844655166, Val Loss: 0.03681419497089727 +2024-07-23 06:01:25.195 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 35/50, Train Loss: 0.028428558863217025, Val Loss: 0.036492411978542805 +2024-07-23 06:01:31.425 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 36/50, Train Loss: 0.02821781344229369, Val Loss: 0.040044612916452546 +2024-07-23 06:01:37.618 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 37/50, Train Loss: 0.028259516753953138, Val Loss: 0.0381747944014413 +2024-07-23 06:01:43.826 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 38/50, Train Loss: 0.028380852058637055, Val Loss: 0.03768634194774287 +2024-07-23 06:01:50.040 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 39/50, Train Loss: 0.02830209771988632, Val Loss: 0.03759394655270236 +2024-07-23 06:01:56.291 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 40/50, Train Loss: 0.028174566024606176, Val Loss: 0.03725236020982266 +2024-07-23 06:02:02.507 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 41/50, Train Loss: 0.028288044115836672, Val Loss: 0.03680387405412538 +2024-07-23 06:02:08.692 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 42/50, Train Loss: 0.028289859732545965, Val Loss: 0.037242980780346054 +2024-07-23 06:02:14.952 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 43/50, Train Loss: 0.028526427485584784, Val Loss: 0.036637883793030464 +2024-07-23 06:02:21.182 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 44/50, Train Loss: 0.02816276539036696, Val Loss: 0.03805814034172467 +2024-07-23 06:02:27.376 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 45/50, Train Loss: 0.028368909823165523, Val Loss: 0.03792281866605793 +2024-07-23 06:02:33.594 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 46/50, Train Loss: 0.02826009284731724, Val Loss: 0.0373400306063039 +2024-07-23 06:02:39.807 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 47/50, Train Loss: 0.02829228944594054, Val Loss: 0.03737855154488768 +2024-07-23 06:02:46.072 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 48/50, Train Loss: 0.027930748226831285, Val Loss: 0.03728807076279606 +2024-07-23 06:02:52.346 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 49/50, Train Loss: 0.028266522986479373, Val Loss: 0.03798595318304641 +2024-07-23 06:02:58.557 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 50/50, Train Loss: 0.02783621664045097, Val Loss: 0.03699061553925276 +2024-07-23 06:02:58.557 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Fold 3, MAPE: 6.72% +2024-07-23 06:02:58.663 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_25001_50000_LSTM//train_f3_bgd_education_25001_50000_LSTM.png +2024-07-23 06:03:06.342 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 1/50, Train Loss: 0.02596932561832598, Val Loss: 0.029175683989056518 +2024-07-23 06:03:14.002 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 2/50, Train Loss: 0.025795881454458183, Val Loss: 0.029208118095993996 +2024-07-23 06:03:21.704 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 3/50, Train Loss: 0.025752221335838925, Val Loss: 0.029523552821150847 +2024-07-23 06:03:29.391 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 4/50, Train Loss: 0.025986593227362496, Val Loss: 0.030970389395952223 +2024-07-23 06:03:37.040 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 5/50, Train Loss: 0.026021786499768496, Val Loss: 0.02883291609053101 +2024-07-23 06:03:44.729 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 6/50, Train Loss: 0.025660679375902676, Val Loss: 0.02840154053909438 +2024-07-23 06:03:52.403 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 7/50, Train Loss: 0.025723436676051425, Val Loss: 0.029697455971368723 +2024-07-23 06:04:00.071 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 8/50, Train Loss: 0.025859506238765758, Val Loss: 0.030520314297505787 +2024-07-23 06:04:07.754 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 9/50, Train Loss: 0.025703691770376146, Val Loss: 0.028727435240788118 +2024-07-23 06:04:07.755 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:04:07.755 No tasks are waiting in the queue. +2024-07-23 06:04:07.755 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 06:04:15.426 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 10/50, Train Loss: 0.02564711276249125, Val Loss: 0.02868876584938594 +2024-07-23 06:04:23.137 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 11/50, Train Loss: 0.025716755474949705, Val Loss: 0.029352935643068383 +2024-07-23 06:04:30.805 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 12/50, Train Loss: 0.0257475348724716, Val Loss: 0.03104939412857805 +2024-07-23 06:04:38.468 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 13/50, Train Loss: 0.025845587408790987, Val Loss: 0.02838972248136997 +2024-07-23 06:04:46.147 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 14/50, Train Loss: 0.025692841102337015, Val Loss: 0.029685597334589277 +2024-07-23 06:04:53.839 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 15/50, Train Loss: 0.02580376051837343, Val Loss: 0.030629484089357513 +2024-07-23 06:05:01.548 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 16/50, Train Loss: 0.025527893469251436, Val Loss: 0.028351095638104847 +2024-07-23 06:05:09.207 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 17/50, Train Loss: 0.025715948291251373, Val Loss: 0.029180534237197468 +2024-07-23 06:05:16.892 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 18/50, Train Loss: 0.02559667531850523, Val Loss: 0.028777047246694564 +2024-07-23 06:05:24.588 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 19/50, Train Loss: 0.025575147749021136, Val Loss: 0.028359271186803068 +2024-07-23 06:05:32.303 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 20/50, Train Loss: 0.025534904069513423, Val Loss: 0.028302178478666715 +2024-07-23 06:05:40.040 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 21/50, Train Loss: 0.02564572469577536, Val Loss: 0.02915116628365857 +2024-07-23 06:05:47.746 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 22/50, Train Loss: 0.02558295603777314, Val Loss: 0.028694604017904825 +2024-07-23 06:05:55.436 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 23/50, Train Loss: 0.025747321224932014, Val Loss: 0.028255982643791606 +2024-07-23 06:06:03.146 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 24/50, Train Loss: 0.02563932571217589, Val Loss: 0.028490684154842582 +2024-07-23 06:06:10.906 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 25/50, Train Loss: 0.02537593926870446, Val Loss: 0.027989287142242705 +2024-07-23 06:06:18.624 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 26/50, Train Loss: 0.025721205617889934, Val Loss: 0.029571229884667056 +2024-07-23 06:06:26.329 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 27/50, Train Loss: 0.025492184190614813, Val Loss: 0.028300492465496062 +2024-07-23 06:06:34.048 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 28/50, Train Loss: 0.025493177906449498, Val Loss: 0.02817469303097044 +2024-07-23 06:06:41.827 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 29/50, Train Loss: 0.025468412957999897, Val Loss: 0.02919354345649481 +2024-07-23 06:06:49.516 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 30/50, Train Loss: 0.02540700208802504, Val Loss: 0.028240968526474067 +2024-07-23 06:06:57.224 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 31/50, Train Loss: 0.025447136904487664, Val Loss: 0.029064037331512995 +2024-07-23 06:07:04.946 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 32/50, Train Loss: 0.02533080398329887, Val Loss: 0.02851566392928362 +2024-07-23 06:07:12.676 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 33/50, Train Loss: 0.025300781488761134, Val Loss: 0.028603595734706947 +2024-07-23 06:07:20.378 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 34/50, Train Loss: 0.02538758036198801, Val Loss: 0.027438412447060856 +2024-07-23 06:07:28.087 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 35/50, Train Loss: 0.02522811858283206, Val Loss: 0.028479188866913318 +2024-07-23 06:07:35.838 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 36/50, Train Loss: 0.025148332274208467, Val Loss: 0.027108269929885864 +2024-07-23 06:07:43.679 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 37/50, Train Loss: 0.024934835111101467, Val Loss: 0.02761183524770396 +2024-07-23 06:07:51.447 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 38/50, Train Loss: 0.025612701324681783, Val Loss: 0.02865751867315599 +2024-07-23 06:07:59.156 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 39/50, Train Loss: 0.025122034143999047, Val Loss: 0.02806939815304109 +2024-07-23 06:08:06.901 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 40/50, Train Loss: 0.02499784759363566, Val Loss: 0.02795274012855121 +2024-07-23 06:08:14.647 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 41/50, Train Loss: 0.025114656361783373, Val Loss: 0.030735751347882406 +2024-07-23 06:08:22.423 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 42/50, Train Loss: 0.025063405857132428, Val Loss: 0.028136785461434295 +2024-07-23 06:08:30.142 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 43/50, Train Loss: 0.024818407034437204, Val Loss: 0.02821677249989339 +2024-07-23 06:08:37.883 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 44/50, Train Loss: 0.025316674374686234, Val Loss: 0.027151573023625784 +2024-07-23 06:08:45.659 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 45/50, Train Loss: 0.024796762364520424, Val Loss: 0.027706865859883172 +2024-07-23 06:08:53.458 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 46/50, Train Loss: 0.025337744686195905, Val Loss: 0.02748095922704254 +2024-07-23 06:09:01.201 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 47/50, Train Loss: 0.024961078250459557, Val Loss: 0.02693653649517468 +2024-07-23 06:09:08.955 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 48/50, Train Loss: 0.025235264117818797, Val Loss: 0.026995683461427687 +2024-07-23 06:09:08.955 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:09:08.955 No tasks are waiting in the queue. +2024-07-23 06:09:08.955 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 06:09:16.698 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 49/50, Train Loss: 0.024986252247559272, Val Loss: 0.02711261207503932 +2024-07-23 06:09:24.428 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Epoch 50/50, Train Loss: 0.024958414512675726, Val Loss: 0.025903334761304516 +2024-07-23 06:09:24.429 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Fold 4, MAPE: 5.54% +2024-07-23 06:09:24.534 [51/cross_validate_train/541 (pid 72675)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_25001_50000_LSTM//train_f4_bgd_education_25001_50000_LSTM.png +2024-07-23 06:09:28.740 [51/cross_validate_train/541 (pid 72675)] Task finished successfully. +2024-07-23 06:09:28.771 [51/model_scores/542 (pid 77246)] Task is starting. +2024-07-23 06:09:30.240 [51/model_scores/542 (pid 77246)] INFO:__main__:Average Train Loss across all folds: 0.029638496497156074 +2024-07-23 06:09:34.121 [51/model_scores/542 (pid 77246)] INFO:__main__:Average Validation Loss across all folds: 0.03504835570497172 +2024-07-23 06:09:34.121 [51/model_scores/542 (pid 77246)] INFO:__main__:Average MAPE across all folds: 6.34% +2024-07-23 06:09:34.122 [51/model_scores/542 (pid 77246)] Task finished successfully. +2024-07-23 06:09:34.150 [51/validate_model/543 (pid 77277)] Task is starting. +2024-07-23 06:09:35.627 [51/validate_model/543 (pid 77277)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 06:09:36.422 [51/validate_model/543 (pid 77277)] INFO:__main__:Test Set MAPE: 5.93% +2024-07-23 06:09:36.783 [51/validate_model/543 (pid 77277)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_education_25001_50000_LSTM//test_bgd_education_25001_50000_LSTM.png +2024-07-23 06:09:37.204 [51/validate_model/543 (pid 77277)] Task finished successfully. +2024-07-23 06:09:37.236 [51/log_model/544 (pid 77289)] Task is starting. +2024-07-23 06:09:38.705 [51/log_model/544 (pid 77289)] INFO:__main__:Logging model bgd_education_25001_50000_LSTM +2024-07-23 06:09:38.707 [51/log_model/544 (pid 77289)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_education_25001_50000_LSTM//bgd_education_25001_50000_LSTM.pth +2024-07-23 06:09:42.588 [51/log_model/544 (pid 77289)] Task finished successfully. +2024-07-23 06:09:42.618 [51/end/545 (pid 77323)] Task is starting. +2024-07-23 06:09:44.092 [51/end/545 (pid 77323)] INFO:__main__:Pipeline end. +2024-07-23 06:09:44.401 [51/end/545 (pid 77323)] Task finished successfully. +2024-07-23 06:09:44.402 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/scaler_bgd_education_25001_50000_LSTM.pkl b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/scaler_bgd_education_25001_50000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..f86f2b0b474587b9ed34aafcdc1dab9ac55863f4 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/scaler_bgd_education_25001_50000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bf44233c0fe49408720821c71d4f3d0a22dc3a7694cf21119923f87b70cd1fc +size 557 diff --git a/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/test_bgd_education_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/test_bgd_education_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..50c2499b465d5e3152ffbe3d0384e67537b08f65 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/test_bgd_education_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f0_bgd_education_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f0_bgd_education_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..78db2d82ddb22efe65538d62dde7791f333d272c Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f0_bgd_education_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f1_bgd_education_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f1_bgd_education_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..0b57d7dac353ed95a72623212e3feacd1203f6b4 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f1_bgd_education_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f2_bgd_education_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f2_bgd_education_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..1da982aeaa82b88a89b43b13db6072b99ba9992a Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f2_bgd_education_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f3_bgd_education_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f3_bgd_education_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..609c36dff7d1a2ab869a844f5613b026a5849039 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f3_bgd_education_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f4_bgd_education_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f4_bgd_education_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..7ced8459e1184c98aeb54c235f573b0d3213e684 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_25001_50000_LSTM/train_f4_bgd_education_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/bgd_education_50001_100000_LSTM.pth b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/bgd_education_50001_100000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..bff6fe770852659e5935424003b4bcf03cf8a115 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/bgd_education_50001_100000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67a483c2c63db0f8549c04274e967b4ae5531700f30edcd9cf6564bbf5a20197 +size 46776 diff --git a/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/output.txt b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..33e29f9e87904569de0b493fb0e6f39c0c786cc9 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/output.txt @@ -0,0 +1,825 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-23 01:37:01.804 Workflow starting (run-id 46): +2024-07-23 01:37:01.867 [46/start/463 (pid 47494)] Task is starting. +2024-07-23 01:37:03.242 [46/start/463 (pid 47494)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 01:37:03.534 [46/start/463 (pid 47494)] Task finished successfully. +2024-07-23 01:37:03.562 [46/ingest/464 (pid 47506)] Task is starting. +2024-07-23 01:37:04.932 [46/ingest/464 (pid 47506)] INFO:__main__:Fetching dataframe.. +2024-07-23 01:37:04.964 [46/ingest/464 (pid 47506)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 01:37:08.667 [46/ingest/464 (pid 47506)] Task finished successfully. +2024-07-23 01:37:08.695 [46/pick_2017_data/465 (pid 47530)] Task is starting. +2024-07-23 01:37:10.090 [46/pick_2017_data/465 (pid 47530)] INFO:__main__:Picking 2017 data.. +2024-07-23 01:37:10.400 [46/pick_2017_data/465 (pid 47530)] Task finished successfully. +2024-07-23 01:37:10.432 [46/fill_missing_data/466 (pid 47543)] Task is starting. +2024-07-23 01:37:11.813 [46/fill_missing_data/466 (pid 47543)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 01:37:11.828 [46/fill_missing_data/466 (pid 47543)] INFO:__main__:NaN counts per column: +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] INFO:__main__:Panther_education_Teofila 11 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Annetta 10 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Ivan 12 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Neal 10 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Enriqueta 41 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Shelton 12 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Aurora 10 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Emily 12 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Zelda 12 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Karri 333 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Robin_education_Lashandra 0 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Robin_education_Terrance 0 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Robin_education_Margarito 0 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Robin_education_Kristopher 0 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Fox_education_Jaclyn 13 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Rat_education_Penny 8760 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Rat_education_Calvin 26 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Rat_education_Jacob 50 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Rat_education_Rogelio 50 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Rat_education_Kristie 8760 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Rat_education_Cinthia 5531 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Bear_education_Nanette 38 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Bear_education_Pattie 42 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Bear_education_Leonel 1 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Cockatoo_education_Nelda 113 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Cockatoo_education_Julio 113 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] dtype: int64 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] --- Logging error --- +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Traceback (most recent call last): +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] msg = self.format(record) +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] return fmt.format(record) +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] record.message = record.getMessage() +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] msg = msg % self.args +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] TypeError: not all arguments converted during string formatting +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] Call stack: +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 01:37:23.956 [46/fill_missing_data/466 (pid 47543)] BGD_LinearFlow() +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] cli.main(self) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] return func(*args, **kwargs) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] return self.main(*args, **kwargs) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] rv = self.invoke(ctx) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] return callback(*args, **kwargs) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] return f(get_current_context(), *args, **kwargs) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] task.run_step( +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] self._exec_step_function(step_func) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] step_function() +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] self.missing_values = find_nan_counts(self.df) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] Arguments: (23960,) +2024-07-23 01:37:23.958 [46/fill_missing_data/466 (pid 47543)] Task finished successfully. +2024-07-23 01:37:23.988 [46/find_median/467 (pid 47599)] Task is starting. +2024-07-23 01:37:25.367 [46/find_median/467 (pid 47599)] INFO:__main__:Computing and using median.. +2024-07-23 01:37:25.882 [46/find_median/467 (pid 47599)] Task finished successfully. +2024-07-23 01:37:25.912 [46/aggregate_data/468 (pid 47610)] Task is starting. +2024-07-23 01:37:27.278 [46/aggregate_data/468 (pid 47610)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 01:37:30.891 [46/aggregate_data/468 (pid 47610)] Task finished successfully. +2024-07-23 01:37:30.921 [46/split_data/469 (pid 47636)] Task is starting. +2024-07-23 01:37:32.305 [46/split_data/469 (pid 47636)] INFO:__main__:Splitting data into test and train... +2024-07-23 01:37:35.932 [46/split_data/469 (pid 47636)] Task finished successfully. +2024-07-23 01:37:35.961 [46/make_x_y/470 (pid 47667)] Task is starting. +2024-07-23 01:37:37.656 [46/make_x_y/470 (pid 47667)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 01:37:38.042 [46/make_x_y/470 (pid 47667)] Shape of y_train: (6648, 1) +2024-07-23 01:37:38.042 [46/make_x_y/470 (pid 47667)] Shape of X_test: (1392, 360, 1) +2024-07-23 01:37:38.042 [46/make_x_y/470 (pid 47667)] Shape of y_test: (1392, 1) +2024-07-23 01:37:38.043 [46/make_x_y/470 (pid 47667)] Task finished successfully. +2024-07-23 01:37:38.075 [46/cross_validate_train/471 (pid 47678)] Task is starting. +2024-07-23 01:37:39.442 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Creating bgd_education_50001_100000_LSTM +2024-07-23 01:37:39.442 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Performing cross validation.. +2024-07-23 01:37:41.933 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 1/50, Train Loss: 0.21290308449949538, Val Loss: 0.16478609229837146 +2024-07-23 01:44:02.743 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 2/50, Train Loss: 0.1670327731541225, Val Loss: 0.15538343084709985 +2024-07-23 01:44:02.744 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 01:44:02.744 No tasks are waiting in the queue. +2024-07-23 01:44:02.744 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 01:44:04.635 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 3/50, Train Loss: 0.1537386721798352, Val Loss: 0.13831492917878288 +2024-07-23 01:44:06.530 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 4/50, Train Loss: 0.13228499868086407, Val Loss: 0.11072315871715546 +2024-07-23 01:44:08.477 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 5/50, Train Loss: 0.09638779610395432, Val Loss: 0.07767425573297909 +2024-07-23 01:44:10.417 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 6/50, Train Loss: 0.09303967665348734, Val Loss: 0.08348894236343248 +2024-07-23 01:44:12.379 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 7/50, Train Loss: 0.08643959505217416, Val Loss: 0.07457755154797009 +2024-07-23 01:44:14.298 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 8/50, Train Loss: 0.08341758666293962, Val Loss: 0.07589159544025148 +2024-07-23 01:44:16.233 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 9/50, Train Loss: 0.07958704009652137, Val Loss: 0.06889768838882446 +2024-07-23 01:44:18.162 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 10/50, Train Loss: 0.07469396985002927, Val Loss: 0.06677966841629573 +2024-07-23 01:44:20.125 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 11/50, Train Loss: 0.0701542851115976, Val Loss: 0.06387786503349031 +2024-07-23 01:44:22.074 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 12/50, Train Loss: 0.06715007882033075, Val Loss: 0.05990346457277026 +2024-07-23 01:44:24.026 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 13/50, Train Loss: 0.0615037342267377, Val Loss: 0.058451460408312936 +2024-07-23 01:44:25.980 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 14/50, Train Loss: 0.05962098560162953, Val Loss: 0.056413610598870685 +2024-07-23 01:44:27.922 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 15/50, Train Loss: 0.05803918763995171, Val Loss: 0.0557857950351068 +2024-07-23 01:44:29.874 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 16/50, Train Loss: 0.057099829135196546, Val Loss: 0.056207500185285295 +2024-07-23 01:44:31.864 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 17/50, Train Loss: 0.056599275448492595, Val Loss: 0.055348764679261614 +2024-07-23 01:44:33.809 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 18/50, Train Loss: 0.05608527516680104, Val Loss: 0.054189352584736686 +2024-07-23 01:44:35.832 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 19/50, Train Loss: 0.05582824328116008, Val Loss: 0.05340941814439637 +2024-07-23 01:44:37.730 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 20/50, Train Loss: 0.05567200151937349, Val Loss: 0.05107046057071005 +2024-07-23 01:44:39.650 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 21/50, Train Loss: 0.056409094695534026, Val Loss: 0.05191617671932493 +2024-07-23 01:44:41.600 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 22/50, Train Loss: 0.057209429038422445, Val Loss: 0.05328843327505248 +2024-07-23 01:44:43.552 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 23/50, Train Loss: 0.05479629241994449, Val Loss: 0.05179117971232959 +2024-07-23 01:44:45.500 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 24/50, Train Loss: 0.054375790804624555, Val Loss: 0.05067174551742418 +2024-07-23 01:44:47.432 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 25/50, Train Loss: 0.05383485523717744, Val Loss: 0.05147198619587081 +2024-07-23 01:44:49.356 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 26/50, Train Loss: 0.05343528272850173, Val Loss: 0.05056923425623349 +2024-07-23 01:44:51.303 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 27/50, Train Loss: 0.053030573150941306, Val Loss: 0.04965111230100904 +2024-07-23 01:44:53.247 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 28/50, Train Loss: 0.0522270136645862, Val Loss: 0.049105776101350786 +2024-07-23 01:44:55.145 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 29/50, Train Loss: 0.051857129271541326, Val Loss: 0.04867015837558678 +2024-07-23 01:44:57.040 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 30/50, Train Loss: 0.051122852095535826, Val Loss: 0.04815856048039028 +2024-07-23 01:44:58.930 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 31/50, Train Loss: 0.05045263373426029, Val Loss: 0.04726880027779511 +2024-07-23 01:45:00.907 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 32/50, Train Loss: 0.04905903477753912, Val Loss: 0.04739833644458226 +2024-07-23 01:45:02.910 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 33/50, Train Loss: 0.04858871070402009, Val Loss: 0.049624865874648094 +2024-07-23 01:45:04.864 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 34/50, Train Loss: 0.048288387379476, Val Loss: 0.050558245394911085 +2024-07-23 01:45:06.856 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 35/50, Train Loss: 0.04819780566862651, Val Loss: 0.0491572767496109 +2024-07-23 01:45:08.812 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 36/50, Train Loss: 0.04742646435541766, Val Loss: 0.047721952732120244 +2024-07-23 01:45:10.763 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 37/50, Train Loss: 0.04561157034976142, Val Loss: 0.04388363010116986 +2024-07-23 01:45:12.711 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 38/50, Train Loss: 0.04440719543823174, Val Loss: 0.04461517621363912 +2024-07-23 01:45:14.688 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 39/50, Train Loss: 0.0434855291885989, Val Loss: 0.04314800357179982 +2024-07-23 01:45:16.660 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 40/50, Train Loss: 0.046520697538341794, Val Loss: 0.04761199046458517 +2024-07-23 01:45:18.622 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 41/50, Train Loss: 0.045564818222607884, Val Loss: 0.041548343960727964 +2024-07-23 01:45:20.601 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 42/50, Train Loss: 0.04276792721024581, Val Loss: 0.041076678676264626 +2024-07-23 01:45:22.567 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 43/50, Train Loss: 0.041594090578811506, Val Loss: 0.042230247067553656 +2024-07-23 01:45:24.536 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 44/50, Train Loss: 0.04130337115909372, Val Loss: 0.04171408138104848 +2024-07-23 01:45:26.524 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 45/50, Train Loss: 0.04118933177420071, Val Loss: 0.04234197416475841 +2024-07-23 01:45:28.498 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 46/50, Train Loss: 0.04169260843523911, Val Loss: 0.049629343726805275 +2024-07-23 01:45:30.457 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 47/50, Train Loss: 0.04444012365170887, Val Loss: 0.040926061357770646 +2024-07-23 01:45:32.440 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 48/50, Train Loss: 0.04156403445771762, Val Loss: 0.0407905139029026 +2024-07-23 01:45:34.418 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 49/50, Train Loss: 0.039888863478388104, Val Loss: 0.040206617595893994 +2024-07-23 01:45:36.381 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 50/50, Train Loss: 0.039171640255621504, Val Loss: 0.039098683318921496 +2024-07-23 01:45:36.381 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Fold 0, MAPE: 4.05% +2024-07-23 01:45:36.704 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_50001_100000_LSTM//train_f0_bgd_education_50001_100000_LSTM.png +2024-07-23 01:45:40.223 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 1/50, Train Loss: 0.040796782768198425, Val Loss: 0.03791570748601641 +2024-07-23 01:45:43.698 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 2/50, Train Loss: 0.038794962263533045, Val Loss: 0.035237872866647584 +2024-07-23 01:45:47.148 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 3/50, Train Loss: 0.03848251407699926, Val Loss: 0.03667900918849877 +2024-07-23 01:45:50.573 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 4/50, Train Loss: 0.03901375271379948, Val Loss: 0.03712221479841641 +2024-07-23 01:45:54.039 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 5/50, Train Loss: 0.038957653221275125, Val Loss: 0.03660084924527577 +2024-07-23 01:45:57.497 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 6/50, Train Loss: 0.0388819303895746, Val Loss: 0.036338171788624356 +2024-07-23 01:46:00.913 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 7/50, Train Loss: 0.03871031509978431, Val Loss: 0.03581572297428336 +2024-07-23 01:46:04.356 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 8/50, Train Loss: 0.03867989581610475, Val Loss: 0.03698601696108069 +2024-07-23 01:46:07.815 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 9/50, Train Loss: 0.03870658704212734, Val Loss: 0.03433363272675446 +2024-07-23 01:46:11.279 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 10/50, Train Loss: 0.03906837121716567, Val Loss: 0.035275860982281824 +2024-07-23 01:46:14.712 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 11/50, Train Loss: 0.03821691790861743, Val Loss: 0.033662521626268115 +2024-07-23 01:46:18.154 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 12/50, Train Loss: 0.03789476728332894, Val Loss: 0.033876777599964825 +2024-07-23 01:46:21.624 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 13/50, Train Loss: 0.037533726090831415, Val Loss: 0.03349944491471563 +2024-07-23 01:46:25.101 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 14/50, Train Loss: 0.03777455080832754, Val Loss: 0.034155382162758284 +2024-07-23 01:46:28.538 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 15/50, Train Loss: 0.03797534004385982, Val Loss: 0.03361845500767231 +2024-07-23 01:46:32.026 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 16/50, Train Loss: 0.03728640457349164, Val Loss: 0.03482069399740015 +2024-07-23 01:46:35.518 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 17/50, Train Loss: 0.037645456354532925, Val Loss: 0.03417024500668049 +2024-07-23 01:46:38.970 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 18/50, Train Loss: 0.03716855639857905, Val Loss: 0.03391078135796956 +2024-07-23 01:46:42.438 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 19/50, Train Loss: 0.03761959419186626, Val Loss: 0.03475185281464032 +2024-07-23 01:46:45.958 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 20/50, Train Loss: 0.03753240645996162, Val Loss: 0.035480914318135805 +2024-07-23 01:46:49.391 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 21/50, Train Loss: 0.03708464905087437, Val Loss: 0.03458063703562532 +2024-07-23 01:46:52.849 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 22/50, Train Loss: 0.03661802097090653, Val Loss: 0.034345491443361555 +2024-07-23 01:46:56.374 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 23/50, Train Loss: 0.036589843779802324, Val Loss: 0.034121661526816234 +2024-07-23 01:46:59.822 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 24/50, Train Loss: 0.03690545032066958, Val Loss: 0.03386753909289837 +2024-07-23 01:47:03.343 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 25/50, Train Loss: 0.03684363322598594, Val Loss: 0.03448638628636088 +2024-07-23 01:47:06.857 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 26/50, Train Loss: 0.03751147932239941, Val Loss: 0.03446765600570611 +2024-07-23 01:47:10.425 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 27/50, Train Loss: 0.03772189303168229, Val Loss: 0.03554132128400462 +2024-07-23 01:47:13.961 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 28/50, Train Loss: 0.03709496017545462, Val Loss: 0.03444551016603197 +2024-07-23 01:47:17.512 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 29/50, Train Loss: 0.03711763753422669, Val Loss: 0.03391552796321256 +2024-07-23 01:47:21.006 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 30/50, Train Loss: 0.03713053765573672, Val Loss: 0.0354958747114454 +2024-07-23 01:47:24.571 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 31/50, Train Loss: 0.03676531546350036, Val Loss: 0.03404993021062442 +2024-07-23 01:47:28.132 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 32/50, Train Loss: 0.03643688176359449, Val Loss: 0.03468276906226363 +2024-07-23 01:47:31.695 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 33/50, Train Loss: 0.036257601928498064, Val Loss: 0.03427071667143277 +2024-07-23 01:47:35.269 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 34/50, Train Loss: 0.03580280366752829, Val Loss: 0.03440016758229051 +2024-07-23 01:47:38.799 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 35/50, Train Loss: 0.0365350393312318, Val Loss: 0.033933056305561746 +2024-07-23 01:47:42.352 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 36/50, Train Loss: 0.03539407870599202, Val Loss: 0.03428364364164216 +2024-07-23 01:47:45.959 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 37/50, Train Loss: 0.035493668088955536, Val Loss: 0.03444757610559464 +2024-07-23 01:47:49.496 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 38/50, Train Loss: 0.03518724933798824, Val Loss: 0.034207487691726005 +2024-07-23 01:47:53.061 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 39/50, Train Loss: 0.03493882369782243, Val Loss: 0.03320657967456749 +2024-07-23 01:47:56.672 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 40/50, Train Loss: 0.03549058325588703, Val Loss: 0.03322336875966617 +2024-07-23 01:48:00.254 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 41/50, Train Loss: 0.034475718465234555, Val Loss: 0.03337450761880193 +2024-07-23 01:48:03.911 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 42/50, Train Loss: 0.034295602435512204, Val Loss: 0.03259804749063083 +2024-07-23 01:48:07.515 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 43/50, Train Loss: 0.0353404820763639, Val Loss: 0.03320412726274558 +2024-07-23 01:48:11.141 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 44/50, Train Loss: 0.03443778231739998, Val Loss: 0.03301103689840862 +2024-07-23 01:48:14.857 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 45/50, Train Loss: 0.033993163066250935, Val Loss: 0.03265812253313405 +2024-07-23 01:48:18.498 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 46/50, Train Loss: 0.0342456229031086, Val Loss: 0.03264533834797995 +2024-07-23 01:48:22.118 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 47/50, Train Loss: 0.03408696422619479, Val Loss: 0.033398352882691794 +2024-07-23 01:48:25.770 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 48/50, Train Loss: 0.0338782866618463, Val Loss: 0.03390307953315122 +2024-07-23 01:48:29.456 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 49/50, Train Loss: 0.03391752346817936, Val Loss: 0.032433777462158885 +2024-07-23 01:48:33.209 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 50/50, Train Loss: 0.03368524826530899, Val Loss: 0.03314293905028275 +2024-07-23 01:48:33.209 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Fold 1, MAPE: 3.94% +2024-07-23 01:48:33.338 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_50001_100000_LSTM//train_f1_bgd_education_50001_100000_LSTM.png +2024-07-23 01:48:38.581 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 1/50, Train Loss: 0.03131453707241095, Val Loss: 0.03375550189188548 +2024-07-23 01:48:43.834 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 2/50, Train Loss: 0.031425495309611924, Val Loss: 0.03341377329613481 +2024-07-23 01:48:49.132 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 3/50, Train Loss: 0.031178111353745826, Val Loss: 0.03326471400048051 +2024-07-23 01:48:54.452 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 4/50, Train Loss: 0.03166744095058395, Val Loss: 0.03362757084625108 +2024-07-23 01:49:19.819 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 5/50, Train Loss: 0.0321430208412214, Val Loss: 0.03327855084623609 +2024-07-23 01:49:19.819 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 01:49:19.819 No tasks are waiting in the queue. +2024-07-23 01:49:19.819 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 01:49:24.706 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 6/50, Train Loss: 0.031146116089075804, Val Loss: 0.03397665933838912 +2024-07-23 01:49:29.458 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 7/50, Train Loss: 0.0323045349930628, Val Loss: 0.03314711073679583 +2024-07-23 01:49:34.441 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 8/50, Train Loss: 0.031109998951880977, Val Loss: 0.0334620049489396 +2024-07-23 01:49:39.370 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 9/50, Train Loss: 0.03126520948269619, Val Loss: 0.03372215064508574 +2024-07-23 01:49:44.279 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 10/50, Train Loss: 0.0316270504039354, Val Loss: 0.03336721786430904 +2024-07-23 01:49:49.192 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 11/50, Train Loss: 0.03122406381254013, Val Loss: 0.03297125393790858 +2024-07-23 01:49:54.176 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 12/50, Train Loss: 0.03115682167789111, Val Loss: 0.03285755068063736 +2024-07-23 01:49:59.157 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 13/50, Train Loss: 0.03125765403875938, Val Loss: 0.03329010009765625 +2024-07-23 01:50:04.160 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 14/50, Train Loss: 0.031332179151761994, Val Loss: 0.032771123253873415 +2024-07-23 01:50:09.177 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 15/50, Train Loss: 0.030900596032062404, Val Loss: 0.03269043570118291 +2024-07-23 01:50:14.263 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 16/50, Train Loss: 0.03074407735123084, Val Loss: 0.03377779136810984 +2024-07-23 01:50:19.342 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 17/50, Train Loss: 0.03113976396763554, Val Loss: 0.03285959256546838 +2024-07-23 01:50:24.424 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 18/50, Train Loss: 0.03057353816424998, Val Loss: 0.032598564827016424 +2024-07-23 01:50:29.555 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 19/50, Train Loss: 0.0306966295824028, Val Loss: 0.0327215845563582 +2024-07-23 01:50:34.694 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 20/50, Train Loss: 0.030718980070490103, Val Loss: 0.03293641699211938 +2024-07-23 01:50:39.901 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 21/50, Train Loss: 0.031010371865704656, Val Loss: 0.033113349229097366 +2024-07-23 01:50:45.144 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 22/50, Train Loss: 0.0305875891712136, Val Loss: 0.03293049862342221 +2024-07-23 01:50:50.408 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 23/50, Train Loss: 0.03025952114078861, Val Loss: 0.03270820879510471 +2024-07-23 01:50:55.667 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 24/50, Train Loss: 0.03025996475480497, Val Loss: 0.03241574514125075 +2024-07-23 01:51:01.051 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 25/50, Train Loss: 0.03038780210324778, Val Loss: 0.03355582457567964 +2024-07-23 01:51:06.347 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 26/50, Train Loss: 0.030515845435170028, Val Loss: 0.03350380121597222 +2024-07-23 01:51:11.711 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 27/50, Train Loss: 0.030174226518003985, Val Loss: 0.032785268713321006 +2024-07-23 01:51:16.999 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 28/50, Train Loss: 0.03003366139287559, Val Loss: 0.032699328288435935 +2024-07-23 01:51:22.376 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 29/50, Train Loss: 0.03036395227536559, Val Loss: 0.0323984512260982 +2024-07-23 02:01:40.107 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 30/50, Train Loss: 0.03040536815443864, Val Loss: 0.032967826777270864 +2024-07-23 02:01:40.107 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:01:40.107 No tasks are waiting in the queue. +2024-07-23 02:01:40.107 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 02:01:45.205 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 31/50, Train Loss: 0.030183172766835645, Val Loss: 0.03286746431674276 +2024-07-23 02:01:50.038 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 32/50, Train Loss: 0.030271422798530415, Val Loss: 0.032899538001843864 +2024-07-23 02:01:54.968 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 33/50, Train Loss: 0.03002248056089649, Val Loss: 0.032341357533420836 +2024-07-23 02:01:59.960 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 34/50, Train Loss: 0.029997391966529764, Val Loss: 0.03264333329030446 +2024-07-23 02:02:04.868 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 35/50, Train Loss: 0.02979870341145075, Val Loss: 0.03282282001205853 +2024-07-23 02:02:09.692 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 36/50, Train Loss: 0.03033162012266425, Val Loss: 0.03337413035333157 +2024-07-23 02:02:14.674 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 37/50, Train Loss: 0.029823659668461636, Val Loss: 0.033120963403156824 +2024-07-23 02:02:19.633 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 38/50, Train Loss: 0.029581580525980547, Val Loss: 0.03381471357175282 +2024-07-23 02:02:24.443 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 39/50, Train Loss: 0.030199247430293605, Val Loss: 0.03249013663402626 +2024-07-23 02:02:29.354 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 40/50, Train Loss: 0.029914595258350555, Val Loss: 0.0331631459827934 +2024-07-23 02:02:34.320 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 41/50, Train Loss: 0.030062219880234737, Val Loss: 0.03314245428357806 +2024-07-23 02:02:39.257 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 42/50, Train Loss: 0.029332531884742472, Val Loss: 0.03526931857424123 +2024-07-23 02:02:44.249 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 43/50, Train Loss: 0.03065158693621365, Val Loss: 0.032606812406863486 +2024-07-23 02:02:49.153 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 44/50, Train Loss: 0.029638108188429706, Val Loss: 0.033662577771714754 +2024-07-23 02:02:54.155 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 45/50, Train Loss: 0.029334232605134066, Val Loss: 0.03205470756760665 +2024-07-23 02:02:59.117 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 46/50, Train Loss: 0.029572266870393202, Val Loss: 0.03259738406964711 +2024-07-23 02:03:04.129 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 47/50, Train Loss: 0.029710166818963792, Val Loss: 0.03230045522962298 +2024-07-23 02:03:09.103 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 48/50, Train Loss: 0.02942908540941202, Val Loss: 0.03424802071281842 +2024-07-23 02:03:14.141 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 49/50, Train Loss: 0.029599468367030986, Val Loss: 0.03277992574231965 +2024-07-23 02:03:19.133 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 50/50, Train Loss: 0.03059506521990093, Val Loss: 0.03267397066312177 +2024-07-23 02:03:19.133 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Fold 2, MAPE: 3.85% +2024-07-23 02:03:19.239 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_50001_100000_LSTM//train_f2_bgd_education_50001_100000_LSTM.png +2024-07-23 02:03:25.774 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 1/50, Train Loss: 0.030791008107953793, Val Loss: 0.03640946048711027 +2024-07-23 02:03:32.274 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 2/50, Train Loss: 0.031091431785616085, Val Loss: 0.03737275589789663 +2024-07-23 02:03:38.740 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 3/50, Train Loss: 0.03069641935578782, Val Loss: 0.03546737554882254 +2024-07-23 02:03:45.224 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 4/50, Train Loss: 0.030455464162200473, Val Loss: 0.035715538901942116 +2024-07-23 02:03:51.700 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 5/50, Train Loss: 0.03078109331482606, Val Loss: 0.035871640965342524 +2024-07-23 02:03:58.188 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 6/50, Train Loss: 0.03031126679115587, Val Loss: 0.03588070906698704 +2024-07-23 02:04:04.683 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 7/50, Train Loss: 0.030375362568193204, Val Loss: 0.03527849678482328 +2024-07-23 02:04:11.100 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 8/50, Train Loss: 0.030574448781905416, Val Loss: 0.03560016730001995 +2024-07-23 02:04:17.583 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 9/50, Train Loss: 0.030419455492775218, Val Loss: 0.03545774120305266 +2024-07-23 02:07:41.041 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 10/50, Train Loss: 0.030190084772787507, Val Loss: 0.03445164603846414 +2024-07-23 02:07:41.041 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:07:41.041 No tasks are waiting in the queue. +2024-07-23 02:07:41.041 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 02:07:47.443 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 11/50, Train Loss: 0.03030414776139551, Val Loss: 0.03581033466117722 +2024-07-23 02:07:53.884 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 12/50, Train Loss: 0.030403093294166832, Val Loss: 0.035986598687512535 +2024-07-23 02:08:00.297 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 13/50, Train Loss: 0.030114210659651447, Val Loss: 0.03508293037968022 +2024-07-23 02:08:06.732 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 14/50, Train Loss: 0.030248556205694624, Val Loss: 0.0357818929212434 +2024-07-23 02:08:13.167 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 15/50, Train Loss: 0.030611985141960837, Val Loss: 0.03531277467097555 +2024-07-23 02:08:19.578 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 16/50, Train Loss: 0.03035508246301747, Val Loss: 0.0356937794813088 +2024-07-23 02:08:26.045 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 17/50, Train Loss: 0.03053817348621732, Val Loss: 0.03471151867083141 +2024-07-23 02:08:32.493 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 18/50, Train Loss: 0.030399467045669076, Val Loss: 0.03400434335427625 +2024-07-23 02:08:38.910 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 19/50, Train Loss: 0.030393988564074468, Val Loss: 0.03473343700170517 +2024-07-23 02:08:45.388 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 20/50, Train Loss: 0.030266740902079096, Val Loss: 0.034394800290465356 +2024-07-23 02:08:51.868 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 21/50, Train Loss: 0.029984452071592962, Val Loss: 0.03534512126020023 +2024-07-23 02:08:58.312 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 22/50, Train Loss: 0.03009992679782051, Val Loss: 0.03585654481181077 +2024-07-23 02:09:04.817 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 23/50, Train Loss: 0.030014374822699766, Val Loss: 0.0354547272835459 +2024-07-23 02:09:11.268 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 24/50, Train Loss: 0.029821897354378974, Val Loss: 0.03514332255082471 +2024-07-23 02:09:17.714 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 25/50, Train Loss: 0.02994986335418636, Val Loss: 0.03381873933332307 +2024-07-23 02:09:24.219 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 26/50, Train Loss: 0.030080505653465393, Val Loss: 0.03458032251468727 +2024-07-23 02:09:30.636 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 27/50, Train Loss: 0.029891614728479933, Val Loss: 0.035782065615057944 +2024-07-23 02:09:37.060 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 28/50, Train Loss: 0.029821465180503378, Val Loss: 0.03502338438161782 +2024-07-23 02:09:43.520 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 29/50, Train Loss: 0.02967905304763171, Val Loss: 0.03484492653182575 +2024-07-23 02:09:50.038 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 30/50, Train Loss: 0.029705441992381496, Val Loss: 0.0350758822368724 +2024-07-23 02:09:56.578 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 31/50, Train Loss: 0.029657091328994835, Val Loss: 0.03503913166267531 +2024-07-23 02:10:03.113 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 32/50, Train Loss: 0.03028803740849169, Val Loss: 0.03437507557017463 +2024-07-23 02:10:09.720 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 33/50, Train Loss: 0.029650170423036856, Val Loss: 0.03470292831105845 +2024-07-23 02:26:37.485 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 34/50, Train Loss: 0.029844184131395043, Val Loss: 0.03418977207371167 +2024-07-23 02:26:37.485 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:26:37.485 No tasks are waiting in the queue. +2024-07-23 02:26:37.485 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 02:26:43.897 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 35/50, Train Loss: 0.02986991223242643, Val Loss: 0.03532051513237613 +2024-07-23 02:26:50.383 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 36/50, Train Loss: 0.03002461851339975, Val Loss: 0.03457015848585537 +2024-07-23 02:26:56.826 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 37/50, Train Loss: 0.029619028155269813, Val Loss: 0.0337602363633258 +2024-07-23 02:27:03.225 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 38/50, Train Loss: 0.029472576467682133, Val Loss: 0.03467165966119085 +2024-07-23 02:27:09.677 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 39/50, Train Loss: 0.02993347336330431, Val Loss: 0.03370756006666592 +2024-07-23 02:27:16.140 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 40/50, Train Loss: 0.029825548634683487, Val Loss: 0.03417928724416665 +2024-07-23 02:28:34.068 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 41/50, Train Loss: 0.029744635329400894, Val Loss: 0.03529671840369701 +2024-07-23 02:28:40.462 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 42/50, Train Loss: 0.0297053781130331, Val Loss: 0.03339286978755678 +2024-07-23 02:28:46.988 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 43/50, Train Loss: 0.029453662793627745, Val Loss: 0.034613143439803803 +2024-07-23 02:28:53.338 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 44/50, Train Loss: 0.029652313751389655, Val Loss: 0.03375476864831788 +2024-07-23 02:28:59.692 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 45/50, Train Loss: 0.029461081267046413, Val Loss: 0.03407398834824562 +2024-07-23 02:29:06.183 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 46/50, Train Loss: 0.02955540478658333, Val Loss: 0.035002869846565386 +2024-07-23 02:29:12.607 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 47/50, Train Loss: 0.029586098190370225, Val Loss: 0.03437725630189691 +2024-07-23 02:29:19.044 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 48/50, Train Loss: 0.029753400642666027, Val Loss: 0.034069407571639336 +2024-07-23 02:29:25.491 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 49/50, Train Loss: 0.029481220253401524, Val Loss: 0.034999486591134756 +2024-07-23 02:29:31.955 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 50/50, Train Loss: 0.029570034343293673, Val Loss: 0.034826686180063654 +2024-07-23 02:29:31.955 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Fold 3, MAPE: 4.03% +2024-07-23 02:29:32.066 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_50001_100000_LSTM//train_f3_bgd_education_50001_100000_LSTM.png +2024-07-23 02:29:40.038 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 1/50, Train Loss: 0.03031014053193831, Val Loss: 0.030052267121417182 +2024-07-23 02:29:47.929 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 2/50, Train Loss: 0.030157792082206272, Val Loss: 0.028655576333403588 +2024-07-23 02:29:55.846 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 3/50, Train Loss: 0.030044457650390165, Val Loss: 0.02872361833495753 +2024-07-23 02:30:03.752 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 4/50, Train Loss: 0.03011270165015226, Val Loss: 0.029150323303682463 +2024-07-23 02:30:11.623 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 5/50, Train Loss: 0.030415275059212214, Val Loss: 0.028544489028198377 +2024-07-23 02:30:19.591 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 6/50, Train Loss: 0.03046582824411406, Val Loss: 0.02904986829629966 +2024-07-23 02:30:27.488 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 7/50, Train Loss: 0.030290575184184928, Val Loss: 0.031046677167926515 +2024-07-23 02:30:35.378 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 8/50, Train Loss: 0.030596183430960124, Val Loss: 0.029035000609500067 +2024-07-23 02:30:43.316 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 9/50, Train Loss: 0.03020633626515153, Val Loss: 0.02855896061020238 +2024-07-23 02:30:51.173 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 10/50, Train Loss: 0.030032942756667905, Val Loss: 0.02919482359928744 +2024-07-23 02:31:16.596 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 11/50, Train Loss: 0.03039032452065369, Val Loss: 0.028573857141392572 +2024-07-23 02:31:24.560 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 12/50, Train Loss: 0.030200504451647573, Val Loss: 0.028793146780558995 +2024-07-23 02:31:32.346 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 13/50, Train Loss: 0.03035333217389282, Val Loss: 0.02859861675117697 +2024-07-23 02:31:40.226 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 14/50, Train Loss: 0.030319995771365606, Val Loss: 0.029351987636515073 +2024-07-23 02:31:40.227 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:31:40.227 No tasks are waiting in the queue. +2024-07-23 02:31:40.227 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 02:31:48.156 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 15/50, Train Loss: 0.030119355543163317, Val Loss: 0.02893989309668541 +2024-07-23 02:31:56.152 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 16/50, Train Loss: 0.03002117116047048, Val Loss: 0.03076484783419541 +2024-07-23 02:32:04.119 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 17/50, Train Loss: 0.030107841248913057, Val Loss: 0.029021095963461058 +2024-07-23 02:32:12.121 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 18/50, Train Loss: 0.030066878770360315, Val Loss: 0.029175962880253793 +2024-07-23 02:32:20.119 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 19/50, Train Loss: 0.030261505352354598, Val Loss: 0.029429579047220093 +2024-07-23 02:32:28.202 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 20/50, Train Loss: 0.030299587464281196, Val Loss: 0.029935584962368013 +2024-07-23 02:32:36.341 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 21/50, Train Loss: 0.029900952242314816, Val Loss: 0.029770645179918835 +2024-07-23 02:32:44.487 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 22/50, Train Loss: 0.02977782384032148, Val Loss: 0.028549260326794217 +2024-07-23 02:32:52.633 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 23/50, Train Loss: 0.029945895311304892, Val Loss: 0.029446255415678024 +2024-07-23 02:33:00.837 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 24/50, Train Loss: 0.029786700297189855, Val Loss: 0.028957625744598252 +2024-07-23 02:33:09.009 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 25/50, Train Loss: 0.029668879727351254, Val Loss: 0.029444629858647074 +2024-07-23 02:33:17.225 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 26/50, Train Loss: 0.029564808069289416, Val Loss: 0.03020655544740813 +2024-07-23 02:35:49.697 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 27/50, Train Loss: 0.0296091639019292, Val Loss: 0.02891113678259509 +2024-07-23 02:35:57.672 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 28/50, Train Loss: 0.02966225904080717, Val Loss: 0.028618450516036578 +2024-07-23 02:36:05.450 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 29/50, Train Loss: 0.029476922867155964, Val Loss: 0.028763175329991748 +2024-07-23 02:36:13.387 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 30/50, Train Loss: 0.029693471085836833, Val Loss: 0.02863179136599813 +2024-07-23 02:36:21.288 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 31/50, Train Loss: 0.029450958969349832, Val Loss: 0.02804326627935682 +2024-07-23 02:36:29.228 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 32/50, Train Loss: 0.0296939920055969, Val Loss: 0.029372959903308325 +2024-07-23 02:36:37.182 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 33/50, Train Loss: 0.029528376223498035, Val Loss: 0.029237635167581693 +2024-07-23 02:36:45.107 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 34/50, Train Loss: 0.02992168396454433, Val Loss: 0.030418079612510546 +2024-07-23 02:36:45.107 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:36:45.107 No tasks are waiting in the queue. +2024-07-23 02:36:45.107 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 02:36:53.082 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 35/50, Train Loss: 0.02975005015259844, Val Loss: 0.030267317699534554 +2024-07-23 02:37:01.053 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 36/50, Train Loss: 0.02955639897578064, Val Loss: 0.028390263393521308 +2024-07-23 02:37:09.106 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 37/50, Train Loss: 0.029752952935195517, Val Loss: 0.028956166761262076 +2024-07-23 02:37:17.034 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 38/50, Train Loss: 0.029462501342440474, Val Loss: 0.028373431148273603 +2024-07-23 02:37:24.970 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 39/50, Train Loss: 0.02985658207587127, Val Loss: 0.02923454184617315 +2024-07-23 02:37:32.900 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 40/50, Train Loss: 0.029702386936579627, Val Loss: 0.028528125850217682 +2024-07-23 02:37:40.902 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 41/50, Train Loss: 0.029160894555221688, Val Loss: 0.028267406512584005 +2024-07-23 02:37:48.956 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 42/50, Train Loss: 0.029941924810195447, Val Loss: 0.029542666460786546 +2024-07-23 02:37:57.008 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 43/50, Train Loss: 0.029706032390053243, Val Loss: 0.02979030598487173 +2024-07-23 02:43:51.269 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 44/50, Train Loss: 0.030140258254076558, Val Loss: 0.02968654377119882 +2024-07-23 02:43:51.269 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:43:51.269 No tasks are waiting in the queue. +2024-07-23 02:43:51.269 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 02:43:59.148 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 45/50, Train Loss: 0.029647745149231505, Val Loss: 0.029645113593765666 +2024-07-23 02:44:07.140 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 46/50, Train Loss: 0.029519908751050632, Val Loss: 0.028468623331614904 +2024-07-23 02:44:15.050 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 47/50, Train Loss: 0.02963692967876278, Val Loss: 0.028889913803764752 +2024-07-23 02:44:23.025 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 48/50, Train Loss: 0.029192356489084918, Val Loss: 0.028653594425746373 +2024-07-23 02:44:30.943 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 49/50, Train Loss: 0.029247098837861384, Val Loss: 0.028845289402774404 +2024-07-23 02:44:38.868 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 50/50, Train Loss: 0.029287509470321667, Val Loss: 0.028998781527791704 +2024-07-23 02:44:38.868 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Fold 4, MAPE: 3.23% +2024-07-23 02:44:38.975 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_50001_100000_LSTM//train_f4_bgd_education_50001_100000_LSTM.png +2024-07-23 02:44:43.277 [46/cross_validate_train/471 (pid 47678)] Task finished successfully. +2024-07-23 02:44:43.304 [46/model_scores/472 (pid 52496)] Task is starting. +2024-07-23 02:44:44.702 [46/model_scores/472 (pid 52496)] INFO:__main__:Average Train Loss across all folds: 0.032461899510889354 +2024-07-23 02:44:48.364 [46/model_scores/472 (pid 52496)] INFO:__main__:Average Validation Loss across all folds: 0.03374821214803628 +2024-07-23 02:44:48.364 [46/model_scores/472 (pid 52496)] INFO:__main__:Average MAPE across all folds: 3.82% +2024-07-23 02:44:48.365 [46/model_scores/472 (pid 52496)] Task finished successfully. +2024-07-23 02:44:48.394 [46/validate_model/473 (pid 52522)] Task is starting. +2024-07-23 02:44:49.764 [46/validate_model/473 (pid 52522)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 02:44:50.511 [46/validate_model/473 (pid 52522)] INFO:__main__:Test Set MAPE: 4.99% +2024-07-23 02:44:50.862 [46/validate_model/473 (pid 52522)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_education_50001_100000_LSTM//test_bgd_education_50001_100000_LSTM.png +2024-07-23 02:44:51.286 [46/validate_model/473 (pid 52522)] Task finished successfully. +2024-07-23 02:44:51.314 [46/log_model/474 (pid 52540)] Task is starting. +2024-07-23 02:44:52.684 [46/log_model/474 (pid 52540)] INFO:__main__:Logging model bgd_education_50001_100000_LSTM +2024-07-23 02:44:52.686 [46/log_model/474 (pid 52540)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_education_50001_100000_LSTM//bgd_education_50001_100000_LSTM.pth +2024-07-23 02:44:56.372 [46/log_model/474 (pid 52540)] Task finished successfully. +2024-07-23 02:44:56.401 [46/end/475 (pid 52565)] Task is starting. +2024-07-23 02:44:57.800 [46/end/475 (pid 52565)] INFO:__main__:Pipeline end. +2024-07-23 02:44:58.112 [46/end/475 (pid 52565)] Task finished successfully. +2024-07-23 02:44:58.113 Done! +✅ Run('BGD_LinearFlow/46') succeeded: +-- stdout -- +2024-07-23 01:37:01.804 Workflow starting (run-id 46): +2024-07-23 01:37:01.867 [46/start/463 (pid 47494)] Task is starting. +2024-07-23 01:37:03.242 [46/start/463 (pid 47494)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 01:37:03.534 [46/start/463 (pid 47494)] Task finished successfully. +2024-07-23 01:37:03.562 [46/ingest/464 (pid 47506)] Task is starting. +2024-07-23 01:37:04.932 [46/ingest/464 (pid 47506)] INFO:__main__:Fetching dataframe.. +2024-07-23 01:37:04.964 [46/ingest/464 (pid 47506)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 01:37:08.667 [46/ingest/464 (pid 47506)] Task finished successfully. +2024-07-23 01:37:08.695 [46/pick_2017_data/465 (pid 47530)] Task is starting. +2024-07-23 01:37:10.090 [46/pick_2017_data/465 (pid 47530)] INFO:__main__:Picking 2017 data.. +2024-07-23 01:37:10.400 [46/pick_2017_data/465 (pid 47530)] Task finished successfully. +2024-07-23 01:37:10.432 [46/fill_missing_data/466 (pid 47543)] Task is starting. +2024-07-23 01:37:11.813 [46/fill_missing_data/466 (pid 47543)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 01:37:11.828 [46/fill_missing_data/466 (pid 47543)] INFO:__main__:NaN counts per column: +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] INFO:__main__:Panther_education_Teofila 11 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Annetta 10 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Ivan 12 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Neal 10 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Enriqueta 41 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Shelton 12 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Aurora 10 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Emily 12 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Zelda 12 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Panther_education_Karri 333 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Robin_education_Lashandra 0 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Robin_education_Terrance 0 +2024-07-23 01:37:11.829 [46/fill_missing_data/466 (pid 47543)] Robin_education_Margarito 0 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Robin_education_Kristopher 0 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Fox_education_Jaclyn 13 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Rat_education_Penny 8760 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Rat_education_Calvin 26 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Rat_education_Jacob 50 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Rat_education_Rogelio 50 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Rat_education_Kristie 8760 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Rat_education_Cinthia 5531 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Bear_education_Nanette 38 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Bear_education_Pattie 42 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Bear_education_Leonel 1 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Cockatoo_education_Nelda 113 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Cockatoo_education_Julio 113 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] dtype: int64 +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] --- Logging error --- +2024-07-23 01:37:11.830 [46/fill_missing_data/466 (pid 47543)] Traceback (most recent call last): +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] msg = self.format(record) +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] return fmt.format(record) +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] record.message = record.getMessage() +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] msg = msg % self.args +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] TypeError: not all arguments converted during string formatting +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] Call stack: +2024-07-23 01:37:11.831 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 01:37:23.956 [46/fill_missing_data/466 (pid 47543)] BGD_LinearFlow() +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] cli.main(self) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] return func(*args, **kwargs) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] return self.main(*args, **kwargs) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] rv = self.invoke(ctx) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] return callback(*args, **kwargs) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] return f(get_current_context(), *args, **kwargs) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] task.run_step( +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] self._exec_step_function(step_func) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] step_function() +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] self.missing_values = find_nan_counts(self.df) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 01:37:23.957 [46/fill_missing_data/466 (pid 47543)] Arguments: (23960,) +2024-07-23 01:37:23.958 [46/fill_missing_data/466 (pid 47543)] Task finished successfully. +2024-07-23 01:37:23.988 [46/find_median/467 (pid 47599)] Task is starting. +2024-07-23 01:37:25.367 [46/find_median/467 (pid 47599)] INFO:__main__:Computing and using median.. +2024-07-23 01:37:25.882 [46/find_median/467 (pid 47599)] Task finished successfully. +2024-07-23 01:37:25.912 [46/aggregate_data/468 (pid 47610)] Task is starting. +2024-07-23 01:37:27.278 [46/aggregate_data/468 (pid 47610)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 01:37:30.891 [46/aggregate_data/468 (pid 47610)] Task finished successfully. +2024-07-23 01:37:30.921 [46/split_data/469 (pid 47636)] Task is starting. +2024-07-23 01:37:32.305 [46/split_data/469 (pid 47636)] INFO:__main__:Splitting data into test and train... +2024-07-23 01:37:35.932 [46/split_data/469 (pid 47636)] Task finished successfully. +2024-07-23 01:37:35.961 [46/make_x_y/470 (pid 47667)] Task is starting. +2024-07-23 01:37:37.656 [46/make_x_y/470 (pid 47667)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 01:37:38.042 [46/make_x_y/470 (pid 47667)] Shape of y_train: (6648, 1) +2024-07-23 01:37:38.042 [46/make_x_y/470 (pid 47667)] Shape of X_test: (1392, 360, 1) +2024-07-23 01:37:38.042 [46/make_x_y/470 (pid 47667)] Shape of y_test: (1392, 1) +2024-07-23 01:37:38.043 [46/make_x_y/470 (pid 47667)] Task finished successfully. +2024-07-23 01:37:38.075 [46/cross_validate_train/471 (pid 47678)] Task is starting. +2024-07-23 01:37:39.442 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Creating bgd_education_50001_100000_LSTM +2024-07-23 01:37:39.442 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Performing cross validation.. +2024-07-23 01:37:41.933 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 1/50, Train Loss: 0.21290308449949538, Val Loss: 0.16478609229837146 +2024-07-23 01:44:02.743 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 2/50, Train Loss: 0.1670327731541225, Val Loss: 0.15538343084709985 +2024-07-23 01:44:02.744 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 01:44:02.744 No tasks are waiting in the queue. +2024-07-23 01:44:02.744 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 01:44:04.635 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 3/50, Train Loss: 0.1537386721798352, Val Loss: 0.13831492917878288 +2024-07-23 01:44:06.530 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 4/50, Train Loss: 0.13228499868086407, Val Loss: 0.11072315871715546 +2024-07-23 01:44:08.477 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 5/50, Train Loss: 0.09638779610395432, Val Loss: 0.07767425573297909 +2024-07-23 01:44:10.417 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 6/50, Train Loss: 0.09303967665348734, Val Loss: 0.08348894236343248 +2024-07-23 01:44:12.379 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 7/50, Train Loss: 0.08643959505217416, Val Loss: 0.07457755154797009 +2024-07-23 01:44:14.298 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 8/50, Train Loss: 0.08341758666293962, Val Loss: 0.07589159544025148 +2024-07-23 01:44:16.233 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 9/50, Train Loss: 0.07958704009652137, Val Loss: 0.06889768838882446 +2024-07-23 01:44:18.162 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 10/50, Train Loss: 0.07469396985002927, Val Loss: 0.06677966841629573 +2024-07-23 01:44:20.125 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 11/50, Train Loss: 0.0701542851115976, Val Loss: 0.06387786503349031 +2024-07-23 01:44:22.074 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 12/50, Train Loss: 0.06715007882033075, Val Loss: 0.05990346457277026 +2024-07-23 01:44:24.026 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 13/50, Train Loss: 0.0615037342267377, Val Loss: 0.058451460408312936 +2024-07-23 01:44:25.980 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 14/50, Train Loss: 0.05962098560162953, Val Loss: 0.056413610598870685 +2024-07-23 01:44:27.922 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 15/50, Train Loss: 0.05803918763995171, Val Loss: 0.0557857950351068 +2024-07-23 01:44:29.874 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 16/50, Train Loss: 0.057099829135196546, Val Loss: 0.056207500185285295 +2024-07-23 01:44:31.864 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 17/50, Train Loss: 0.056599275448492595, Val Loss: 0.055348764679261614 +2024-07-23 01:44:33.809 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 18/50, Train Loss: 0.05608527516680104, Val Loss: 0.054189352584736686 +2024-07-23 01:44:35.832 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 19/50, Train Loss: 0.05582824328116008, Val Loss: 0.05340941814439637 +2024-07-23 01:44:37.730 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 20/50, Train Loss: 0.05567200151937349, Val Loss: 0.05107046057071005 +2024-07-23 01:44:39.650 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 21/50, Train Loss: 0.056409094695534026, Val Loss: 0.05191617671932493 +2024-07-23 01:44:41.600 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 22/50, Train Loss: 0.057209429038422445, Val Loss: 0.05328843327505248 +2024-07-23 01:44:43.552 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 23/50, Train Loss: 0.05479629241994449, Val Loss: 0.05179117971232959 +2024-07-23 01:44:45.500 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 24/50, Train Loss: 0.054375790804624555, Val Loss: 0.05067174551742418 +2024-07-23 01:44:47.432 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 25/50, Train Loss: 0.05383485523717744, Val Loss: 0.05147198619587081 +2024-07-23 01:44:49.356 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 26/50, Train Loss: 0.05343528272850173, Val Loss: 0.05056923425623349 +2024-07-23 01:44:51.303 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 27/50, Train Loss: 0.053030573150941306, Val Loss: 0.04965111230100904 +2024-07-23 01:44:53.247 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 28/50, Train Loss: 0.0522270136645862, Val Loss: 0.049105776101350786 +2024-07-23 01:44:55.145 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 29/50, Train Loss: 0.051857129271541326, Val Loss: 0.04867015837558678 +2024-07-23 01:44:57.040 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 30/50, Train Loss: 0.051122852095535826, Val Loss: 0.04815856048039028 +2024-07-23 01:44:58.930 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 31/50, Train Loss: 0.05045263373426029, Val Loss: 0.04726880027779511 +2024-07-23 01:45:00.907 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 32/50, Train Loss: 0.04905903477753912, Val Loss: 0.04739833644458226 +2024-07-23 01:45:02.910 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 33/50, Train Loss: 0.04858871070402009, Val Loss: 0.049624865874648094 +2024-07-23 01:45:04.864 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 34/50, Train Loss: 0.048288387379476, Val Loss: 0.050558245394911085 +2024-07-23 01:45:06.856 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 35/50, Train Loss: 0.04819780566862651, Val Loss: 0.0491572767496109 +2024-07-23 01:45:08.812 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 36/50, Train Loss: 0.04742646435541766, Val Loss: 0.047721952732120244 +2024-07-23 01:45:10.763 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 37/50, Train Loss: 0.04561157034976142, Val Loss: 0.04388363010116986 +2024-07-23 01:45:12.711 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 38/50, Train Loss: 0.04440719543823174, Val Loss: 0.04461517621363912 +2024-07-23 01:45:14.688 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 39/50, Train Loss: 0.0434855291885989, Val Loss: 0.04314800357179982 +2024-07-23 01:45:16.660 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 40/50, Train Loss: 0.046520697538341794, Val Loss: 0.04761199046458517 +2024-07-23 01:45:18.622 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 41/50, Train Loss: 0.045564818222607884, Val Loss: 0.041548343960727964 +2024-07-23 01:45:20.601 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 42/50, Train Loss: 0.04276792721024581, Val Loss: 0.041076678676264626 +2024-07-23 01:45:22.567 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 43/50, Train Loss: 0.041594090578811506, Val Loss: 0.042230247067553656 +2024-07-23 01:45:24.536 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 44/50, Train Loss: 0.04130337115909372, Val Loss: 0.04171408138104848 +2024-07-23 01:45:26.524 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 45/50, Train Loss: 0.04118933177420071, Val Loss: 0.04234197416475841 +2024-07-23 01:45:28.498 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 46/50, Train Loss: 0.04169260843523911, Val Loss: 0.049629343726805275 +2024-07-23 01:45:30.457 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 47/50, Train Loss: 0.04444012365170887, Val Loss: 0.040926061357770646 +2024-07-23 01:45:32.440 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 48/50, Train Loss: 0.04156403445771762, Val Loss: 0.0407905139029026 +2024-07-23 01:45:34.418 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 49/50, Train Loss: 0.039888863478388104, Val Loss: 0.040206617595893994 +2024-07-23 01:45:36.381 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 50/50, Train Loss: 0.039171640255621504, Val Loss: 0.039098683318921496 +2024-07-23 01:45:36.381 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Fold 0, MAPE: 4.05% +2024-07-23 01:45:36.704 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_50001_100000_LSTM//train_f0_bgd_education_50001_100000_LSTM.png +2024-07-23 01:45:40.223 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 1/50, Train Loss: 0.040796782768198425, Val Loss: 0.03791570748601641 +2024-07-23 01:45:43.698 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 2/50, Train Loss: 0.038794962263533045, Val Loss: 0.035237872866647584 +2024-07-23 01:45:47.148 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 3/50, Train Loss: 0.03848251407699926, Val Loss: 0.03667900918849877 +2024-07-23 01:45:50.573 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 4/50, Train Loss: 0.03901375271379948, Val Loss: 0.03712221479841641 +2024-07-23 01:45:54.039 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 5/50, Train Loss: 0.038957653221275125, Val Loss: 0.03660084924527577 +2024-07-23 01:45:57.497 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 6/50, Train Loss: 0.0388819303895746, Val Loss: 0.036338171788624356 +2024-07-23 01:46:00.913 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 7/50, Train Loss: 0.03871031509978431, Val Loss: 0.03581572297428336 +2024-07-23 01:46:04.356 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 8/50, Train Loss: 0.03867989581610475, Val Loss: 0.03698601696108069 +2024-07-23 01:46:07.815 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 9/50, Train Loss: 0.03870658704212734, Val Loss: 0.03433363272675446 +2024-07-23 01:46:11.279 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 10/50, Train Loss: 0.03906837121716567, Val Loss: 0.035275860982281824 +2024-07-23 01:46:14.712 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 11/50, Train Loss: 0.03821691790861743, Val Loss: 0.033662521626268115 +2024-07-23 01:46:18.154 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 12/50, Train Loss: 0.03789476728332894, Val Loss: 0.033876777599964825 +2024-07-23 01:46:21.624 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 13/50, Train Loss: 0.037533726090831415, Val Loss: 0.03349944491471563 +2024-07-23 01:46:25.101 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 14/50, Train Loss: 0.03777455080832754, Val Loss: 0.034155382162758284 +2024-07-23 01:46:28.538 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 15/50, Train Loss: 0.03797534004385982, Val Loss: 0.03361845500767231 +2024-07-23 01:46:32.026 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 16/50, Train Loss: 0.03728640457349164, Val Loss: 0.03482069399740015 +2024-07-23 01:46:35.518 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 17/50, Train Loss: 0.037645456354532925, Val Loss: 0.03417024500668049 +2024-07-23 01:46:38.970 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 18/50, Train Loss: 0.03716855639857905, Val Loss: 0.03391078135796956 +2024-07-23 01:46:42.438 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 19/50, Train Loss: 0.03761959419186626, Val Loss: 0.03475185281464032 +2024-07-23 01:46:45.958 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 20/50, Train Loss: 0.03753240645996162, Val Loss: 0.035480914318135805 +2024-07-23 01:46:49.391 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 21/50, Train Loss: 0.03708464905087437, Val Loss: 0.03458063703562532 +2024-07-23 01:46:52.849 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 22/50, Train Loss: 0.03661802097090653, Val Loss: 0.034345491443361555 +2024-07-23 01:46:56.374 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 23/50, Train Loss: 0.036589843779802324, Val Loss: 0.034121661526816234 +2024-07-23 01:46:59.822 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 24/50, Train Loss: 0.03690545032066958, Val Loss: 0.03386753909289837 +2024-07-23 01:47:03.343 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 25/50, Train Loss: 0.03684363322598594, Val Loss: 0.03448638628636088 +2024-07-23 01:47:06.857 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 26/50, Train Loss: 0.03751147932239941, Val Loss: 0.03446765600570611 +2024-07-23 01:47:10.425 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 27/50, Train Loss: 0.03772189303168229, Val Loss: 0.03554132128400462 +2024-07-23 01:47:13.961 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 28/50, Train Loss: 0.03709496017545462, Val Loss: 0.03444551016603197 +2024-07-23 01:47:17.512 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 29/50, Train Loss: 0.03711763753422669, Val Loss: 0.03391552796321256 +2024-07-23 01:47:21.006 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 30/50, Train Loss: 0.03713053765573672, Val Loss: 0.0354958747114454 +2024-07-23 01:47:24.571 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 31/50, Train Loss: 0.03676531546350036, Val Loss: 0.03404993021062442 +2024-07-23 01:47:28.132 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 32/50, Train Loss: 0.03643688176359449, Val Loss: 0.03468276906226363 +2024-07-23 01:47:31.695 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 33/50, Train Loss: 0.036257601928498064, Val Loss: 0.03427071667143277 +2024-07-23 01:47:35.269 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 34/50, Train Loss: 0.03580280366752829, Val Loss: 0.03440016758229051 +2024-07-23 01:47:38.799 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 35/50, Train Loss: 0.0365350393312318, Val Loss: 0.033933056305561746 +2024-07-23 01:47:42.352 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 36/50, Train Loss: 0.03539407870599202, Val Loss: 0.03428364364164216 +2024-07-23 01:47:45.959 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 37/50, Train Loss: 0.035493668088955536, Val Loss: 0.03444757610559464 +2024-07-23 01:47:49.496 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 38/50, Train Loss: 0.03518724933798824, Val Loss: 0.034207487691726005 +2024-07-23 01:47:53.061 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 39/50, Train Loss: 0.03493882369782243, Val Loss: 0.03320657967456749 +2024-07-23 01:47:56.672 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 40/50, Train Loss: 0.03549058325588703, Val Loss: 0.03322336875966617 +2024-07-23 01:48:00.254 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 41/50, Train Loss: 0.034475718465234555, Val Loss: 0.03337450761880193 +2024-07-23 01:48:03.911 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 42/50, Train Loss: 0.034295602435512204, Val Loss: 0.03259804749063083 +2024-07-23 01:48:07.515 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 43/50, Train Loss: 0.0353404820763639, Val Loss: 0.03320412726274558 +2024-07-23 01:48:11.141 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 44/50, Train Loss: 0.03443778231739998, Val Loss: 0.03301103689840862 +2024-07-23 01:48:14.857 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 45/50, Train Loss: 0.033993163066250935, Val Loss: 0.03265812253313405 +2024-07-23 01:48:18.498 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 46/50, Train Loss: 0.0342456229031086, Val Loss: 0.03264533834797995 +2024-07-23 01:48:22.118 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 47/50, Train Loss: 0.03408696422619479, Val Loss: 0.033398352882691794 +2024-07-23 01:48:25.770 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 48/50, Train Loss: 0.0338782866618463, Val Loss: 0.03390307953315122 +2024-07-23 01:48:29.456 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 49/50, Train Loss: 0.03391752346817936, Val Loss: 0.032433777462158885 +2024-07-23 01:48:33.209 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 50/50, Train Loss: 0.03368524826530899, Val Loss: 0.03314293905028275 +2024-07-23 01:48:33.209 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Fold 1, MAPE: 3.94% +2024-07-23 01:48:33.338 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_50001_100000_LSTM//train_f1_bgd_education_50001_100000_LSTM.png +2024-07-23 01:48:38.581 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 1/50, Train Loss: 0.03131453707241095, Val Loss: 0.03375550189188548 +2024-07-23 01:48:43.834 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 2/50, Train Loss: 0.031425495309611924, Val Loss: 0.03341377329613481 +2024-07-23 01:48:49.132 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 3/50, Train Loss: 0.031178111353745826, Val Loss: 0.03326471400048051 +2024-07-23 01:48:54.452 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 4/50, Train Loss: 0.03166744095058395, Val Loss: 0.03362757084625108 +2024-07-23 01:49:19.819 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 5/50, Train Loss: 0.0321430208412214, Val Loss: 0.03327855084623609 +2024-07-23 01:49:19.819 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 01:49:19.819 No tasks are waiting in the queue. +2024-07-23 01:49:19.819 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 01:49:24.706 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 6/50, Train Loss: 0.031146116089075804, Val Loss: 0.03397665933838912 +2024-07-23 01:49:29.458 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 7/50, Train Loss: 0.0323045349930628, Val Loss: 0.03314711073679583 +2024-07-23 01:49:34.441 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 8/50, Train Loss: 0.031109998951880977, Val Loss: 0.0334620049489396 +2024-07-23 01:49:39.370 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 9/50, Train Loss: 0.03126520948269619, Val Loss: 0.03372215064508574 +2024-07-23 01:49:44.279 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 10/50, Train Loss: 0.0316270504039354, Val Loss: 0.03336721786430904 +2024-07-23 01:49:49.192 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 11/50, Train Loss: 0.03122406381254013, Val Loss: 0.03297125393790858 +2024-07-23 01:49:54.176 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 12/50, Train Loss: 0.03115682167789111, Val Loss: 0.03285755068063736 +2024-07-23 01:49:59.157 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 13/50, Train Loss: 0.03125765403875938, Val Loss: 0.03329010009765625 +2024-07-23 01:50:04.160 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 14/50, Train Loss: 0.031332179151761994, Val Loss: 0.032771123253873415 +2024-07-23 01:50:09.177 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 15/50, Train Loss: 0.030900596032062404, Val Loss: 0.03269043570118291 +2024-07-23 01:50:14.263 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 16/50, Train Loss: 0.03074407735123084, Val Loss: 0.03377779136810984 +2024-07-23 01:50:19.342 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 17/50, Train Loss: 0.03113976396763554, Val Loss: 0.03285959256546838 +2024-07-23 01:50:24.424 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 18/50, Train Loss: 0.03057353816424998, Val Loss: 0.032598564827016424 +2024-07-23 01:50:29.555 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 19/50, Train Loss: 0.0306966295824028, Val Loss: 0.0327215845563582 +2024-07-23 01:50:34.694 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 20/50, Train Loss: 0.030718980070490103, Val Loss: 0.03293641699211938 +2024-07-23 01:50:39.901 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 21/50, Train Loss: 0.031010371865704656, Val Loss: 0.033113349229097366 +2024-07-23 01:50:45.144 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 22/50, Train Loss: 0.0305875891712136, Val Loss: 0.03293049862342221 +2024-07-23 01:50:50.408 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 23/50, Train Loss: 0.03025952114078861, Val Loss: 0.03270820879510471 +2024-07-23 01:50:55.667 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 24/50, Train Loss: 0.03025996475480497, Val Loss: 0.03241574514125075 +2024-07-23 01:51:01.051 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 25/50, Train Loss: 0.03038780210324778, Val Loss: 0.03355582457567964 +2024-07-23 01:51:06.347 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 26/50, Train Loss: 0.030515845435170028, Val Loss: 0.03350380121597222 +2024-07-23 01:51:11.711 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 27/50, Train Loss: 0.030174226518003985, Val Loss: 0.032785268713321006 +2024-07-23 01:51:16.999 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 28/50, Train Loss: 0.03003366139287559, Val Loss: 0.032699328288435935 +2024-07-23 01:51:22.376 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 29/50, Train Loss: 0.03036395227536559, Val Loss: 0.0323984512260982 +2024-07-23 02:01:40.107 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 30/50, Train Loss: 0.03040536815443864, Val Loss: 0.032967826777270864 +2024-07-23 02:01:40.107 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:01:40.107 No tasks are waiting in the queue. +2024-07-23 02:01:40.107 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 02:01:45.205 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 31/50, Train Loss: 0.030183172766835645, Val Loss: 0.03286746431674276 +2024-07-23 02:01:50.038 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 32/50, Train Loss: 0.030271422798530415, Val Loss: 0.032899538001843864 +2024-07-23 02:01:54.968 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 33/50, Train Loss: 0.03002248056089649, Val Loss: 0.032341357533420836 +2024-07-23 02:01:59.960 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 34/50, Train Loss: 0.029997391966529764, Val Loss: 0.03264333329030446 +2024-07-23 02:02:04.868 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 35/50, Train Loss: 0.02979870341145075, Val Loss: 0.03282282001205853 +2024-07-23 02:02:09.692 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 36/50, Train Loss: 0.03033162012266425, Val Loss: 0.03337413035333157 +2024-07-23 02:02:14.674 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 37/50, Train Loss: 0.029823659668461636, Val Loss: 0.033120963403156824 +2024-07-23 02:02:19.633 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 38/50, Train Loss: 0.029581580525980547, Val Loss: 0.03381471357175282 +2024-07-23 02:02:24.443 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 39/50, Train Loss: 0.030199247430293605, Val Loss: 0.03249013663402626 +2024-07-23 02:02:29.354 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 40/50, Train Loss: 0.029914595258350555, Val Loss: 0.0331631459827934 +2024-07-23 02:02:34.320 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 41/50, Train Loss: 0.030062219880234737, Val Loss: 0.03314245428357806 +2024-07-23 02:02:39.257 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 42/50, Train Loss: 0.029332531884742472, Val Loss: 0.03526931857424123 +2024-07-23 02:02:44.249 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 43/50, Train Loss: 0.03065158693621365, Val Loss: 0.032606812406863486 +2024-07-23 02:02:49.153 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 44/50, Train Loss: 0.029638108188429706, Val Loss: 0.033662577771714754 +2024-07-23 02:02:54.155 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 45/50, Train Loss: 0.029334232605134066, Val Loss: 0.03205470756760665 +2024-07-23 02:02:59.117 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 46/50, Train Loss: 0.029572266870393202, Val Loss: 0.03259738406964711 +2024-07-23 02:03:04.129 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 47/50, Train Loss: 0.029710166818963792, Val Loss: 0.03230045522962298 +2024-07-23 02:03:09.103 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 48/50, Train Loss: 0.02942908540941202, Val Loss: 0.03424802071281842 +2024-07-23 02:03:14.141 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 49/50, Train Loss: 0.029599468367030986, Val Loss: 0.03277992574231965 +2024-07-23 02:03:19.133 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 50/50, Train Loss: 0.03059506521990093, Val Loss: 0.03267397066312177 +2024-07-23 02:03:19.133 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Fold 2, MAPE: 3.85% +2024-07-23 02:03:19.239 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_50001_100000_LSTM//train_f2_bgd_education_50001_100000_LSTM.png +2024-07-23 02:03:25.774 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 1/50, Train Loss: 0.030791008107953793, Val Loss: 0.03640946048711027 +2024-07-23 02:03:32.274 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 2/50, Train Loss: 0.031091431785616085, Val Loss: 0.03737275589789663 +2024-07-23 02:03:38.740 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 3/50, Train Loss: 0.03069641935578782, Val Loss: 0.03546737554882254 +2024-07-23 02:03:45.224 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 4/50, Train Loss: 0.030455464162200473, Val Loss: 0.035715538901942116 +2024-07-23 02:03:51.700 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 5/50, Train Loss: 0.03078109331482606, Val Loss: 0.035871640965342524 +2024-07-23 02:03:58.188 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 6/50, Train Loss: 0.03031126679115587, Val Loss: 0.03588070906698704 +2024-07-23 02:04:04.683 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 7/50, Train Loss: 0.030375362568193204, Val Loss: 0.03527849678482328 +2024-07-23 02:04:11.100 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 8/50, Train Loss: 0.030574448781905416, Val Loss: 0.03560016730001995 +2024-07-23 02:04:17.583 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 9/50, Train Loss: 0.030419455492775218, Val Loss: 0.03545774120305266 +2024-07-23 02:07:41.041 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 10/50, Train Loss: 0.030190084772787507, Val Loss: 0.03445164603846414 +2024-07-23 02:07:41.041 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:07:41.041 No tasks are waiting in the queue. +2024-07-23 02:07:41.041 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 02:07:47.443 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 11/50, Train Loss: 0.03030414776139551, Val Loss: 0.03581033466117722 +2024-07-23 02:07:53.884 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 12/50, Train Loss: 0.030403093294166832, Val Loss: 0.035986598687512535 +2024-07-23 02:08:00.297 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 13/50, Train Loss: 0.030114210659651447, Val Loss: 0.03508293037968022 +2024-07-23 02:08:06.732 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 14/50, Train Loss: 0.030248556205694624, Val Loss: 0.0357818929212434 +2024-07-23 02:08:13.167 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 15/50, Train Loss: 0.030611985141960837, Val Loss: 0.03531277467097555 +2024-07-23 02:08:19.578 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 16/50, Train Loss: 0.03035508246301747, Val Loss: 0.0356937794813088 +2024-07-23 02:08:26.045 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 17/50, Train Loss: 0.03053817348621732, Val Loss: 0.03471151867083141 +2024-07-23 02:08:32.493 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 18/50, Train Loss: 0.030399467045669076, Val Loss: 0.03400434335427625 +2024-07-23 02:08:38.910 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 19/50, Train Loss: 0.030393988564074468, Val Loss: 0.03473343700170517 +2024-07-23 02:08:45.388 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 20/50, Train Loss: 0.030266740902079096, Val Loss: 0.034394800290465356 +2024-07-23 02:08:51.868 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 21/50, Train Loss: 0.029984452071592962, Val Loss: 0.03534512126020023 +2024-07-23 02:08:58.312 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 22/50, Train Loss: 0.03009992679782051, Val Loss: 0.03585654481181077 +2024-07-23 02:09:04.817 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 23/50, Train Loss: 0.030014374822699766, Val Loss: 0.0354547272835459 +2024-07-23 02:09:11.268 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 24/50, Train Loss: 0.029821897354378974, Val Loss: 0.03514332255082471 +2024-07-23 02:09:17.714 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 25/50, Train Loss: 0.02994986335418636, Val Loss: 0.03381873933332307 +2024-07-23 02:09:24.219 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 26/50, Train Loss: 0.030080505653465393, Val Loss: 0.03458032251468727 +2024-07-23 02:09:30.636 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 27/50, Train Loss: 0.029891614728479933, Val Loss: 0.035782065615057944 +2024-07-23 02:09:37.060 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 28/50, Train Loss: 0.029821465180503378, Val Loss: 0.03502338438161782 +2024-07-23 02:09:43.520 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 29/50, Train Loss: 0.02967905304763171, Val Loss: 0.03484492653182575 +2024-07-23 02:09:50.038 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 30/50, Train Loss: 0.029705441992381496, Val Loss: 0.0350758822368724 +2024-07-23 02:09:56.578 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 31/50, Train Loss: 0.029657091328994835, Val Loss: 0.03503913166267531 +2024-07-23 02:10:03.113 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 32/50, Train Loss: 0.03028803740849169, Val Loss: 0.03437507557017463 +2024-07-23 02:10:09.720 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 33/50, Train Loss: 0.029650170423036856, Val Loss: 0.03470292831105845 +2024-07-23 02:26:37.485 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 34/50, Train Loss: 0.029844184131395043, Val Loss: 0.03418977207371167 +2024-07-23 02:26:37.485 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:26:37.485 No tasks are waiting in the queue. +2024-07-23 02:26:37.485 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 02:26:43.897 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 35/50, Train Loss: 0.02986991223242643, Val Loss: 0.03532051513237613 +2024-07-23 02:26:50.383 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 36/50, Train Loss: 0.03002461851339975, Val Loss: 0.03457015848585537 +2024-07-23 02:26:56.826 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 37/50, Train Loss: 0.029619028155269813, Val Loss: 0.0337602363633258 +2024-07-23 02:27:03.225 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 38/50, Train Loss: 0.029472576467682133, Val Loss: 0.03467165966119085 +2024-07-23 02:27:09.677 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 39/50, Train Loss: 0.02993347336330431, Val Loss: 0.03370756006666592 +2024-07-23 02:27:16.140 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 40/50, Train Loss: 0.029825548634683487, Val Loss: 0.03417928724416665 +2024-07-23 02:28:34.068 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 41/50, Train Loss: 0.029744635329400894, Val Loss: 0.03529671840369701 +2024-07-23 02:28:40.462 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 42/50, Train Loss: 0.0297053781130331, Val Loss: 0.03339286978755678 +2024-07-23 02:28:46.988 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 43/50, Train Loss: 0.029453662793627745, Val Loss: 0.034613143439803803 +2024-07-23 02:28:53.338 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 44/50, Train Loss: 0.029652313751389655, Val Loss: 0.03375476864831788 +2024-07-23 02:28:59.692 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 45/50, Train Loss: 0.029461081267046413, Val Loss: 0.03407398834824562 +2024-07-23 02:29:06.183 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 46/50, Train Loss: 0.02955540478658333, Val Loss: 0.035002869846565386 +2024-07-23 02:29:12.607 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 47/50, Train Loss: 0.029586098190370225, Val Loss: 0.03437725630189691 +2024-07-23 02:29:19.044 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 48/50, Train Loss: 0.029753400642666027, Val Loss: 0.034069407571639336 +2024-07-23 02:29:25.491 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 49/50, Train Loss: 0.029481220253401524, Val Loss: 0.034999486591134756 +2024-07-23 02:29:31.955 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 50/50, Train Loss: 0.029570034343293673, Val Loss: 0.034826686180063654 +2024-07-23 02:29:31.955 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Fold 3, MAPE: 4.03% +2024-07-23 02:29:32.066 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_50001_100000_LSTM//train_f3_bgd_education_50001_100000_LSTM.png +2024-07-23 02:29:40.038 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 1/50, Train Loss: 0.03031014053193831, Val Loss: 0.030052267121417182 +2024-07-23 02:29:47.929 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 2/50, Train Loss: 0.030157792082206272, Val Loss: 0.028655576333403588 +2024-07-23 02:29:55.846 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 3/50, Train Loss: 0.030044457650390165, Val Loss: 0.02872361833495753 +2024-07-23 02:30:03.752 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 4/50, Train Loss: 0.03011270165015226, Val Loss: 0.029150323303682463 +2024-07-23 02:30:11.623 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 5/50, Train Loss: 0.030415275059212214, Val Loss: 0.028544489028198377 +2024-07-23 02:30:19.591 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 6/50, Train Loss: 0.03046582824411406, Val Loss: 0.02904986829629966 +2024-07-23 02:30:27.488 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 7/50, Train Loss: 0.030290575184184928, Val Loss: 0.031046677167926515 +2024-07-23 02:30:35.378 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 8/50, Train Loss: 0.030596183430960124, Val Loss: 0.029035000609500067 +2024-07-23 02:30:43.316 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 9/50, Train Loss: 0.03020633626515153, Val Loss: 0.02855896061020238 +2024-07-23 02:30:51.173 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 10/50, Train Loss: 0.030032942756667905, Val Loss: 0.02919482359928744 +2024-07-23 02:31:16.596 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 11/50, Train Loss: 0.03039032452065369, Val Loss: 0.028573857141392572 +2024-07-23 02:31:24.560 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 12/50, Train Loss: 0.030200504451647573, Val Loss: 0.028793146780558995 +2024-07-23 02:31:32.346 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 13/50, Train Loss: 0.03035333217389282, Val Loss: 0.02859861675117697 +2024-07-23 02:31:40.226 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 14/50, Train Loss: 0.030319995771365606, Val Loss: 0.029351987636515073 +2024-07-23 02:31:40.227 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:31:40.227 No tasks are waiting in the queue. +2024-07-23 02:31:40.227 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 02:31:48.156 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 15/50, Train Loss: 0.030119355543163317, Val Loss: 0.02893989309668541 +2024-07-23 02:31:56.152 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 16/50, Train Loss: 0.03002117116047048, Val Loss: 0.03076484783419541 +2024-07-23 02:32:04.119 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 17/50, Train Loss: 0.030107841248913057, Val Loss: 0.029021095963461058 +2024-07-23 02:32:12.121 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 18/50, Train Loss: 0.030066878770360315, Val Loss: 0.029175962880253793 +2024-07-23 02:32:20.119 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 19/50, Train Loss: 0.030261505352354598, Val Loss: 0.029429579047220093 +2024-07-23 02:32:28.202 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 20/50, Train Loss: 0.030299587464281196, Val Loss: 0.029935584962368013 +2024-07-23 02:32:36.341 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 21/50, Train Loss: 0.029900952242314816, Val Loss: 0.029770645179918835 +2024-07-23 02:32:44.487 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 22/50, Train Loss: 0.02977782384032148, Val Loss: 0.028549260326794217 +2024-07-23 02:32:52.633 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 23/50, Train Loss: 0.029945895311304892, Val Loss: 0.029446255415678024 +2024-07-23 02:33:00.837 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 24/50, Train Loss: 0.029786700297189855, Val Loss: 0.028957625744598252 +2024-07-23 02:33:09.009 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 25/50, Train Loss: 0.029668879727351254, Val Loss: 0.029444629858647074 +2024-07-23 02:33:17.225 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 26/50, Train Loss: 0.029564808069289416, Val Loss: 0.03020655544740813 +2024-07-23 02:35:49.697 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 27/50, Train Loss: 0.0296091639019292, Val Loss: 0.02891113678259509 +2024-07-23 02:35:57.672 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 28/50, Train Loss: 0.02966225904080717, Val Loss: 0.028618450516036578 +2024-07-23 02:36:05.450 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 29/50, Train Loss: 0.029476922867155964, Val Loss: 0.028763175329991748 +2024-07-23 02:36:13.387 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 30/50, Train Loss: 0.029693471085836833, Val Loss: 0.02863179136599813 +2024-07-23 02:36:21.288 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 31/50, Train Loss: 0.029450958969349832, Val Loss: 0.02804326627935682 +2024-07-23 02:36:29.228 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 32/50, Train Loss: 0.0296939920055969, Val Loss: 0.029372959903308325 +2024-07-23 02:36:37.182 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 33/50, Train Loss: 0.029528376223498035, Val Loss: 0.029237635167581693 +2024-07-23 02:36:45.107 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 34/50, Train Loss: 0.02992168396454433, Val Loss: 0.030418079612510546 +2024-07-23 02:36:45.107 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:36:45.107 No tasks are waiting in the queue. +2024-07-23 02:36:45.107 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 02:36:53.082 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 35/50, Train Loss: 0.02975005015259844, Val Loss: 0.030267317699534554 +2024-07-23 02:37:01.053 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 36/50, Train Loss: 0.02955639897578064, Val Loss: 0.028390263393521308 +2024-07-23 02:37:09.106 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 37/50, Train Loss: 0.029752952935195517, Val Loss: 0.028956166761262076 +2024-07-23 02:37:17.034 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 38/50, Train Loss: 0.029462501342440474, Val Loss: 0.028373431148273603 +2024-07-23 02:37:24.970 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 39/50, Train Loss: 0.02985658207587127, Val Loss: 0.02923454184617315 +2024-07-23 02:37:32.900 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 40/50, Train Loss: 0.029702386936579627, Val Loss: 0.028528125850217682 +2024-07-23 02:37:40.902 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 41/50, Train Loss: 0.029160894555221688, Val Loss: 0.028267406512584005 +2024-07-23 02:37:48.956 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 42/50, Train Loss: 0.029941924810195447, Val Loss: 0.029542666460786546 +2024-07-23 02:37:57.008 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 43/50, Train Loss: 0.029706032390053243, Val Loss: 0.02979030598487173 +2024-07-23 02:43:51.269 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 44/50, Train Loss: 0.030140258254076558, Val Loss: 0.02968654377119882 +2024-07-23 02:43:51.269 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:43:51.269 No tasks are waiting in the queue. +2024-07-23 02:43:51.269 4 steps have not started: end, log_model, model_scores, validate_model. +2024-07-23 02:43:59.148 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 45/50, Train Loss: 0.029647745149231505, Val Loss: 0.029645113593765666 +2024-07-23 02:44:07.140 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 46/50, Train Loss: 0.029519908751050632, Val Loss: 0.028468623331614904 +2024-07-23 02:44:15.050 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 47/50, Train Loss: 0.02963692967876278, Val Loss: 0.028889913803764752 +2024-07-23 02:44:23.025 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 48/50, Train Loss: 0.029192356489084918, Val Loss: 0.028653594425746373 +2024-07-23 02:44:30.943 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 49/50, Train Loss: 0.029247098837861384, Val Loss: 0.028845289402774404 +2024-07-23 02:44:38.868 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Epoch 50/50, Train Loss: 0.029287509470321667, Val Loss: 0.028998781527791704 +2024-07-23 02:44:38.868 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Fold 4, MAPE: 3.23% +2024-07-23 02:44:38.975 [46/cross_validate_train/471 (pid 47678)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_50001_100000_LSTM//train_f4_bgd_education_50001_100000_LSTM.png +2024-07-23 02:44:43.277 [46/cross_validate_train/471 (pid 47678)] Task finished successfully. +2024-07-23 02:44:43.304 [46/model_scores/472 (pid 52496)] Task is starting. +2024-07-23 02:44:44.702 [46/model_scores/472 (pid 52496)] INFO:__main__:Average Train Loss across all folds: 0.032461899510889354 +2024-07-23 02:44:48.364 [46/model_scores/472 (pid 52496)] INFO:__main__:Average Validation Loss across all folds: 0.03374821214803628 +2024-07-23 02:44:48.364 [46/model_scores/472 (pid 52496)] INFO:__main__:Average MAPE across all folds: 3.82% +2024-07-23 02:44:48.365 [46/model_scores/472 (pid 52496)] Task finished successfully. +2024-07-23 02:44:48.394 [46/validate_model/473 (pid 52522)] Task is starting. +2024-07-23 02:44:49.764 [46/validate_model/473 (pid 52522)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 02:44:50.511 [46/validate_model/473 (pid 52522)] INFO:__main__:Test Set MAPE: 4.99% +2024-07-23 02:44:50.862 [46/validate_model/473 (pid 52522)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_education_50001_100000_LSTM//test_bgd_education_50001_100000_LSTM.png +2024-07-23 02:44:51.286 [46/validate_model/473 (pid 52522)] Task finished successfully. +2024-07-23 02:44:51.314 [46/log_model/474 (pid 52540)] Task is starting. +2024-07-23 02:44:52.684 [46/log_model/474 (pid 52540)] INFO:__main__:Logging model bgd_education_50001_100000_LSTM +2024-07-23 02:44:52.686 [46/log_model/474 (pid 52540)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_education_50001_100000_LSTM//bgd_education_50001_100000_LSTM.pth +2024-07-23 02:44:56.372 [46/log_model/474 (pid 52540)] Task finished successfully. +2024-07-23 02:44:56.401 [46/end/475 (pid 52565)] Task is starting. +2024-07-23 02:44:57.800 [46/end/475 (pid 52565)] INFO:__main__:Pipeline end. +2024-07-23 02:44:58.112 [46/end/475 (pid 52565)] Task finished successfully. +2024-07-23 02:44:58.113 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/scaler_bgd_education_50001_100000_LSTM.pkl b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/scaler_bgd_education_50001_100000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..0b677b8b6707d38030d98963385d2fcb526e5472 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/scaler_bgd_education_50001_100000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a392657ffeb80f90ecac3e991dc4fd57ab4c99465916ed842f6da76a6a9a77 +size 557 diff --git a/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/test_bgd_education_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/test_bgd_education_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..7697cbef64be1a32a074a4ac6c62636aff363717 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/test_bgd_education_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f0_bgd_education_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f0_bgd_education_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..f52b75d948d707fe2b9deab63429fa119749f10d Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f0_bgd_education_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f1_bgd_education_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f1_bgd_education_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..21e6b037d8364de93dd88c381541a003da968ade Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f1_bgd_education_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f2_bgd_education_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f2_bgd_education_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..733b190f850b9504fe84bf4d98897da8ee169b1e Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f2_bgd_education_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f3_bgd_education_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f3_bgd_education_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..ff6e80de71d3a44dcf224b840b968c1bc4169fb0 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f3_bgd_education_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f4_bgd_education_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f4_bgd_education_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..90dce376f06047290db3a96530751a091744a914 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_50001_100000_LSTM/train_f4_bgd_education_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/bgd_education_5001_10000_LSTM.pth b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/bgd_education_5001_10000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..ceecf7cf43a54dfbe6e4e18ae3c4208c7bf146d6 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/bgd_education_5001_10000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:189498f042cea0907dc60bb78e4f8292b9a009dbe5556325a5d03a72b374818b +size 46756 diff --git a/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/output.txt b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2642f3f3e3742364412816214dafa946d601d7f --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/output.txt @@ -0,0 +1,757 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-23 07:34:51.173 Workflow starting (run-id 56): +2024-07-23 07:34:51.254 [56/start/603 (pid 97131)] Task is starting. +2024-07-23 07:34:52.713 [56/start/603 (pid 97131)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 07:34:53.006 [56/start/603 (pid 97131)] Task finished successfully. +2024-07-23 07:34:53.036 [56/ingest/604 (pid 97144)] Task is starting. +2024-07-23 07:34:54.536 [56/ingest/604 (pid 97144)] INFO:__main__:Fetching dataframe.. +2024-07-23 07:34:54.551 [56/ingest/604 (pid 97144)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 07:34:58.382 [56/ingest/604 (pid 97144)] Task finished successfully. +2024-07-23 07:34:58.411 [56/pick_2017_data/605 (pid 97168)] Task is starting. +2024-07-23 07:34:59.899 [56/pick_2017_data/605 (pid 97168)] INFO:__main__:Picking 2017 data.. +2024-07-23 07:35:00.199 [56/pick_2017_data/605 (pid 97168)] Task finished successfully. +2024-07-23 07:35:00.231 [56/fill_missing_data/606 (pid 97179)] Task is starting. +2024-07-23 07:35:01.705 [56/fill_missing_data/606 (pid 97179)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 07:35:01.710 [56/fill_missing_data/606 (pid 97179)] INFO:__main__:NaN counts per column: +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] INFO:__main__:Panther_education_Tina 10 +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] Panther_education_Violet 12 +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] Panther_education_Rosalie 20 +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] Panther_education_Mattie 12 +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] dtype: int64 +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] --- Logging error --- +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] Traceback (most recent call last): +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] msg = self.format(record) +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] return fmt.format(record) +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] record.message = record.getMessage() +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] msg = msg % self.args +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] TypeError: not all arguments converted during string formatting +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] Call stack: +2024-07-23 07:35:01.713 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] BGD_LinearFlow() +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] cli.main(self) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] return func(*args, **kwargs) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] return self.main(*args, **kwargs) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] rv = self.invoke(ctx) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] return callback(*args, **kwargs) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] return f(get_current_context(), *args, **kwargs) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] task.run_step( +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] self._exec_step_function(step_func) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] step_function() +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] self.missing_values = find_nan_counts(self.df) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 07:35:02.050 [56/fill_missing_data/606 (pid 97179)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 07:35:02.050 [56/fill_missing_data/606 (pid 97179)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 07:35:02.050 [56/fill_missing_data/606 (pid 97179)] Arguments: (54,) +2024-07-23 07:35:02.050 [56/fill_missing_data/606 (pid 97179)] Task finished successfully. +2024-07-23 07:35:02.082 [56/find_median/607 (pid 97193)] Task is starting. +2024-07-23 07:35:03.551 [56/find_median/607 (pid 97193)] INFO:__main__:Computing and using median.. +2024-07-23 07:35:04.051 [56/find_median/607 (pid 97193)] Task finished successfully. +2024-07-23 07:35:04.079 [56/aggregate_data/608 (pid 97204)] Task is starting. +2024-07-23 07:35:05.554 [56/aggregate_data/608 (pid 97204)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 07:35:09.352 [56/aggregate_data/608 (pid 97204)] Task finished successfully. +2024-07-23 07:35:09.386 [56/split_data/609 (pid 97235)] Task is starting. +2024-07-23 07:35:10.831 [56/split_data/609 (pid 97235)] INFO:__main__:Splitting data into test and train... +2024-07-23 07:35:14.674 [56/split_data/609 (pid 97235)] Task finished successfully. +2024-07-23 07:35:14.704 [56/make_x_y/610 (pid 97261)] Task is starting. +2024-07-23 07:35:16.522 [56/make_x_y/610 (pid 97261)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 07:35:16.923 [56/make_x_y/610 (pid 97261)] Shape of y_train: (6648, 1) +2024-07-23 07:35:16.923 [56/make_x_y/610 (pid 97261)] Shape of X_test: (1392, 360, 1) +2024-07-23 07:35:16.923 [56/make_x_y/610 (pid 97261)] Shape of y_test: (1392, 1) +2024-07-23 07:35:16.924 [56/make_x_y/610 (pid 97261)] Task finished successfully. +2024-07-23 07:35:16.957 [56/cross_validate_train/611 (pid 97273)] Task is starting. +2024-07-23 07:35:18.412 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Creating bgd_education_5001_10000_LSTM +2024-07-23 07:35:18.413 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Performing cross validation.. +2024-07-23 07:35:20.897 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 1/50, Train Loss: 0.48076083468539377, Val Loss: 0.16867615218673435 +2024-07-23 07:35:22.794 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 2/50, Train Loss: 0.08942299000918866, Val Loss: 0.11463769472071103 +2024-07-23 07:35:24.691 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 3/50, Train Loss: 0.07920923488480704, Val Loss: 0.11226975353700774 +2024-07-23 07:35:26.581 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 4/50, Train Loss: 0.07887697113411767, Val Loss: 0.110907715346132 +2024-07-23 07:35:28.475 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 5/50, Train Loss: 0.07877919322678022, Val Loss: 0.11189003959298134 +2024-07-23 07:35:30.377 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 6/50, Train Loss: 0.07776118335979325, Val Loss: 0.10715399320636476 +2024-07-23 07:35:32.266 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 7/50, Train Loss: 0.07745313282523836, Val Loss: 0.10772169934851783 +2024-07-23 07:35:34.164 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 8/50, Train Loss: 0.07646501777427538, Val Loss: 0.10486931524106434 +2024-07-23 07:35:36.056 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 9/50, Train Loss: 0.07549112598810877, Val Loss: 0.10328034545694079 +2024-07-23 07:35:37.943 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 10/50, Train Loss: 0.07523505932518414, Val Loss: 0.1041029019015176 +2024-07-23 07:35:39.842 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 11/50, Train Loss: 0.07405397083078112, Val Loss: 0.10063828825950623 +2024-07-23 07:35:41.748 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 12/50, Train Loss: 0.07323899556483542, Val Loss: 0.09911290502973966 +2024-07-23 07:35:43.681 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 13/50, Train Loss: 0.07223991411072868, Val Loss: 0.09640037236469133 +2024-07-23 07:35:45.596 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 14/50, Train Loss: 0.0709394739142486, Val Loss: 0.09471265194671495 +2024-07-23 07:35:47.484 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 15/50, Train Loss: 0.0702260006751333, Val Loss: 0.09256516077688762 +2024-07-23 07:35:49.365 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 16/50, Train Loss: 0.06911031359008381, Val Loss: 0.09024184591003827 +2024-07-23 07:35:51.271 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 17/50, Train Loss: 0.06825992092490196, Val Loss: 0.08950774680290903 +2024-07-23 07:35:53.169 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 18/50, Train Loss: 0.06708824240735599, Val Loss: 0.08657031506299973 +2024-07-23 07:35:55.082 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 19/50, Train Loss: 0.06584454029798507, Val Loss: 0.08452352806925774 +2024-07-23 07:35:56.978 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 20/50, Train Loss: 0.06465545041220529, Val Loss: 0.08338407107761928 +2024-07-23 07:35:58.860 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 21/50, Train Loss: 0.06384432603205953, Val Loss: 0.08192849510482379 +2024-07-23 07:36:00.772 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 22/50, Train Loss: 0.0629291866506849, Val Loss: 0.08004146207656179 +2024-07-23 07:36:02.688 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 23/50, Train Loss: 0.06186485641769, Val Loss: 0.07864527202078274 +2024-07-23 07:36:04.601 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 24/50, Train Loss: 0.06097001507878304, Val Loss: 0.07690087258815766 +2024-07-23 07:36:06.506 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 25/50, Train Loss: 0.059890843502112795, Val Loss: 0.07526988057153565 +2024-07-23 07:36:08.408 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 26/50, Train Loss: 0.05852177084556648, Val Loss: 0.07266499485288347 +2024-07-23 07:36:10.315 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 27/50, Train Loss: 0.05689051976161344, Val Loss: 0.069016536165561 +2024-07-23 07:36:12.239 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 28/50, Train Loss: 0.05552504600158759, Val Loss: 0.06762062832713127 +2024-07-23 07:36:14.160 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 29/50, Train Loss: 0.054470027876751766, Val Loss: 0.06646745965949126 +2024-07-23 07:36:16.099 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 30/50, Train Loss: 0.05351480932107994, Val Loss: 0.0655307081661054 +2024-07-23 07:36:17.999 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 31/50, Train Loss: 0.05320336212004934, Val Loss: 0.06445910632610322 +2024-07-23 07:36:19.909 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 32/50, Train Loss: 0.05246010848454067, Val Loss: 0.06479387240750449 +2024-07-23 07:36:21.817 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 33/50, Train Loss: 0.05243701386664595, Val Loss: 0.06319402504180159 +2024-07-23 07:36:23.727 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 34/50, Train Loss: 0.051644371237073626, Val Loss: 0.06296887371156897 +2024-07-23 07:36:25.644 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 35/50, Train Loss: 0.05164587540285928, Val Loss: 0.06233981879694121 +2024-07-23 07:36:27.562 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 36/50, Train Loss: 0.051081319472619464, Val Loss: 0.06243701662336077 +2024-07-23 07:36:29.471 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 37/50, Train Loss: 0.05084220176296575, Val Loss: 0.06215546657996518 +2024-07-23 07:36:31.369 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 38/50, Train Loss: 0.05050500322665487, Val Loss: 0.06110473940415042 +2024-07-23 07:36:33.288 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 39/50, Train Loss: 0.050336738835488046, Val Loss: 0.05988729250218187 +2024-07-23 07:36:35.207 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 40/50, Train Loss: 0.049713804945349695, Val Loss: 0.05939780558858599 +2024-07-23 07:36:37.115 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 41/50, Train Loss: 0.04962959374700274, Val Loss: 0.05909528136253357 +2024-07-23 07:36:39.020 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 42/50, Train Loss: 0.048756378782647, Val Loss: 0.05903671554156712 +2024-07-23 07:36:40.934 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 43/50, Train Loss: 0.04937153628894261, Val Loss: 0.05821863386247839 +2024-07-23 07:36:42.843 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 44/50, Train Loss: 0.04829907172492572, Val Loss: 0.058289757849914685 +2024-07-23 07:36:44.771 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 45/50, Train Loss: 0.04813257498400552, Val Loss: 0.05789064419056688 +2024-07-23 07:36:46.692 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 46/50, Train Loss: 0.048154299440128466, Val Loss: 0.05795305067939418 +2024-07-23 07:36:48.601 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 47/50, Train Loss: 0.04770721356783594, Val Loss: 0.05774501429072448 +2024-07-23 07:36:50.542 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 48/50, Train Loss: 0.04823167441146714, Val Loss: 0.05814871420817716 +2024-07-23 07:36:52.451 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 49/50, Train Loss: 0.047720755743128916, Val Loss: 0.05728416746216161 +2024-07-23 07:36:54.369 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 50/50, Train Loss: 0.04731248074344226, Val Loss: 0.05751927186335836 +2024-07-23 07:36:54.369 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Fold 0, MAPE: 6.49% +2024-07-23 07:36:54.701 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_5001_10000_LSTM//train_f0_bgd_education_5001_10000_LSTM.png +2024-07-23 07:36:58.085 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 1/50, Train Loss: 0.044982841398034774, Val Loss: 0.041478531169039864 +2024-07-23 07:37:01.446 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 2/50, Train Loss: 0.044347173986690386, Val Loss: 0.04063379998717989 +2024-07-23 07:37:04.818 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 3/50, Train Loss: 0.04395802712866238, Val Loss: 0.04082913111363139 +2024-07-23 07:37:08.174 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 4/50, Train Loss: 0.043943706154823306, Val Loss: 0.04082479514181614 +2024-07-23 07:37:11.539 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 5/50, Train Loss: 0.04398015977016517, Val Loss: 0.04106922570083823 +2024-07-23 07:37:14.903 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 6/50, Train Loss: 0.043331984670034476, Val Loss: 0.041148398284401214 +2024-07-23 07:37:18.309 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 7/50, Train Loss: 0.043758566597742694, Val Loss: 0.04124349510031087 +2024-07-23 07:37:21.678 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 8/50, Train Loss: 0.04354817287198135, Val Loss: 0.041168771790606636 +2024-07-23 07:37:25.049 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 9/50, Train Loss: 0.04361104739031622, Val Loss: 0.041596479501043046 +2024-07-23 07:37:28.397 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 10/50, Train Loss: 0.043365635563220296, Val Loss: 0.04194459079631737 +2024-07-23 07:37:31.752 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 11/50, Train Loss: 0.04382260995251792, Val Loss: 0.04165342833314623 +2024-07-23 07:37:35.108 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 12/50, Train Loss: 0.04348702941622053, Val Loss: 0.04165311508945056 +2024-07-23 07:37:38.460 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 13/50, Train Loss: 0.043372862519962446, Val Loss: 0.041795103145497184 +2024-07-23 07:37:41.822 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 14/50, Train Loss: 0.0436657825750964, Val Loss: 0.04211143675659384 +2024-07-23 07:37:45.193 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 15/50, Train Loss: 0.04348982899848904, Val Loss: 0.04213189472045217 +2024-07-23 07:37:48.530 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 16/50, Train Loss: 0.043703250932906355, Val Loss: 0.043489767877118925 +2024-07-23 07:37:51.879 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 17/50, Train Loss: 0.043839881223227295, Val Loss: 0.043643006735614366 +2024-07-23 07:37:55.240 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 18/50, Train Loss: 0.043753154043640406, Val Loss: 0.044338031113147734 +2024-07-23 07:37:58.610 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 19/50, Train Loss: 0.044006949503506934, Val Loss: 0.045471411358032905 +2024-07-23 07:38:01.963 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 20/50, Train Loss: 0.04411013858126742, Val Loss: 0.045949978328176905 +2024-07-23 07:38:05.313 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 21/50, Train Loss: 0.044406908191740514, Val Loss: 0.045831466519406866 +2024-07-23 07:38:08.671 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 22/50, Train Loss: 0.04448503588459322, Val Loss: 0.050202129994119916 +2024-07-23 07:38:12.034 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 23/50, Train Loss: 0.044377581615533145, Val Loss: 0.04963649053658758 +2024-07-23 07:38:15.410 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 24/50, Train Loss: 0.044195297839386125, Val Loss: 0.04858569284634931 +2024-07-23 07:38:18.809 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 25/50, Train Loss: 0.04388944099524191, Val Loss: 0.049505285013999256 +2024-07-23 07:38:22.155 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 26/50, Train Loss: 0.044172568459595954, Val Loss: 0.0499047796108893 +2024-07-23 07:38:25.571 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 27/50, Train Loss: 0.04417937922158412, Val Loss: 0.049341338447162084 +2024-07-23 07:38:28.897 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 28/50, Train Loss: 0.043872635598693574, Val Loss: 0.04916497729718685 +2024-07-23 07:38:32.266 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 29/50, Train Loss: 0.043461766732590536, Val Loss: 0.04744538686105183 +2024-07-23 07:38:35.652 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 30/50, Train Loss: 0.04331539515405893, Val Loss: 0.04676975597228323 +2024-07-23 07:38:39.012 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 31/50, Train Loss: 0.0433173230183976, Val Loss: 0.04833551256784371 +2024-07-23 07:38:42.393 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 32/50, Train Loss: 0.043732130633933206, Val Loss: 0.04847559870353767 +2024-07-23 07:38:45.761 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 33/50, Train Loss: 0.043181786393480644, Val Loss: 0.05100870920079095 +2024-07-23 07:38:49.112 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 34/50, Train Loss: 0.04395388790539333, Val Loss: 0.04721596507089479 +2024-07-23 07:38:52.470 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 35/50, Train Loss: 0.04313635544053146, Val Loss: 0.04615886131567615 +2024-07-23 07:38:55.848 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 36/50, Train Loss: 0.04291007252676146, Val Loss: 0.04549098312854767 +2024-07-23 07:38:59.204 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 37/50, Train Loss: 0.04295129736087152, Val Loss: 0.04641377776861191 +2024-07-23 07:39:02.569 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 38/50, Train Loss: 0.04303066493677241, Val Loss: 0.04772367578532014 +2024-07-23 07:39:05.977 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 39/50, Train Loss: 0.04293573948421649, Val Loss: 0.04786613195070199 +2024-07-23 07:39:09.336 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 40/50, Train Loss: 0.042886482871004515, Val Loss: 0.04891697902764593 +2024-07-23 07:39:12.715 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 41/50, Train Loss: 0.042605808989277905, Val Loss: 0.04581031905753272 +2024-07-23 07:39:16.079 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 42/50, Train Loss: 0.04263988946165357, Val Loss: 0.045851879460471014 +2024-07-23 07:39:19.459 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 43/50, Train Loss: 0.042851365517292704, Val Loss: 0.045249308007104055 +2024-07-23 07:39:22.862 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 44/50, Train Loss: 0.042831388488411906, Val Loss: 0.04926234803029469 +2024-07-23 07:39:26.238 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 45/50, Train Loss: 0.04307752334113632, Val Loss: 0.04677144219832761 +2024-07-23 07:39:29.605 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 46/50, Train Loss: 0.042827549975897584, Val Loss: 0.04913784217621599 +2024-07-23 07:39:32.997 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 47/50, Train Loss: 0.04240900948643685, Val Loss: 0.04537711324436324 +2024-07-23 07:39:36.383 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 48/50, Train Loss: 0.042155644324209006, Val Loss: 0.04541684532804149 +2024-07-23 07:39:39.769 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 49/50, Train Loss: 0.043170534446835516, Val Loss: 0.04459258397775037 +2024-07-23 07:39:43.126 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 50/50, Train Loss: 0.043545783257910184, Val Loss: 0.047016423035945214 +2024-07-23 07:39:43.126 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Fold 1, MAPE: 6.01% +2024-07-23 07:39:43.229 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_5001_10000_LSTM//train_f1_bgd_education_5001_10000_LSTM.png +2024-07-23 07:39:48.008 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 1/50, Train Loss: 0.04448249370146256, Val Loss: 0.04705473605011191 +2024-07-23 07:39:52.802 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 2/50, Train Loss: 0.04350449469012137, Val Loss: 0.047264189113463674 +2024-07-23 07:39:52.802 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:39:52.802 No tasks are waiting in the queue. +2024-07-23 07:39:52.802 4 steps have not started: end, model_scores, validate_model, log_model. +2024-07-23 07:39:57.616 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 3/50, Train Loss: 0.043351052794605494, Val Loss: 0.045756311608212336 +2024-07-23 07:40:02.394 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 4/50, Train Loss: 0.04300426580728246, Val Loss: 0.046005223797900334 +2024-07-23 07:40:07.156 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 5/50, Train Loss: 0.04276864563759703, Val Loss: 0.04489079729786941 +2024-07-23 07:40:11.946 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 6/50, Train Loss: 0.04276264005770477, Val Loss: 0.043762875774077004 +2024-07-23 07:40:16.775 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 7/50, Train Loss: 0.04294183257465752, Val Loss: 0.04287076917077814 +2024-07-23 07:40:21.517 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 8/50, Train Loss: 0.0426596961915493, Val Loss: 0.04203530273267201 +2024-07-23 07:40:26.302 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 9/50, Train Loss: 0.042627558255424865, Val Loss: 0.04270523584314755 +2024-07-23 07:40:31.069 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 10/50, Train Loss: 0.04237227691695667, Val Loss: 0.04148446624832494 +2024-07-23 07:40:35.850 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 11/50, Train Loss: 0.04259009870628898, Val Loss: 0.0418932386807033 +2024-07-23 07:40:40.658 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 12/50, Train Loss: 0.04253699261551866, Val Loss: 0.04081468417176178 +2024-07-23 07:40:45.440 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 13/50, Train Loss: 0.042437295930889934, Val Loss: 0.04182265374277319 +2024-07-23 07:40:50.206 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 14/50, Train Loss: 0.04240207655283694, Val Loss: 0.03984450202967439 +2024-07-23 07:40:54.981 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 15/50, Train Loss: 0.04234654019371821, Val Loss: 0.03991294678832803 +2024-07-23 07:40:59.736 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 16/50, Train Loss: 0.04236742632033733, Val Loss: 0.04284824468195438 +2024-07-23 07:41:04.555 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 17/50, Train Loss: 0.04282472021161364, Val Loss: 0.041568533810121676 +2024-07-23 07:41:09.334 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 18/50, Train Loss: 0.042596563875961765, Val Loss: 0.03983162694743701 +2024-07-23 07:41:14.140 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 19/50, Train Loss: 0.04246187700818364, Val Loss: 0.03856342291193349 +2024-07-23 07:41:18.959 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 20/50, Train Loss: 0.042249082730939753, Val Loss: 0.03735763824411801 +2024-07-23 07:41:23.738 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 21/50, Train Loss: 0.04226364505190689, Val Loss: 0.03776003324559757 +2024-07-23 07:41:28.529 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 22/50, Train Loss: 0.042427075596956104, Val Loss: 0.03743255101144314 +2024-07-23 07:41:33.293 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 23/50, Train Loss: 0.04224782043065016, Val Loss: 0.03726442897958415 +2024-07-23 07:41:38.084 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 24/50, Train Loss: 0.042203046524753936, Val Loss: 0.03716215783996241 +2024-07-23 07:41:42.859 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 25/50, Train Loss: 0.042208421223152146, Val Loss: 0.037547839911920684 +2024-07-23 07:41:47.660 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 26/50, Train Loss: 0.042177228776451484, Val Loss: 0.037237683364323204 +2024-07-23 07:41:52.430 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 27/50, Train Loss: 0.04216601472133054, Val Loss: 0.0374796879610845 +2024-07-23 07:41:57.203 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 28/50, Train Loss: 0.04216641141101718, Val Loss: 0.037638120300003464 +2024-07-23 07:42:01.954 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 29/50, Train Loss: 0.04226171305904595, Val Loss: 0.03778557953025614 +2024-07-23 07:42:06.733 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 30/50, Train Loss: 0.042069114296912, Val Loss: 0.03798212196145739 +2024-07-23 07:42:11.513 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 31/50, Train Loss: 0.04206221905322029, Val Loss: 0.03833028067435537 +2024-07-23 07:42:16.290 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 32/50, Train Loss: 0.042082230363471, Val Loss: 0.038116895407438275 +2024-07-23 07:42:21.086 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 33/50, Train Loss: 0.04226833049995968, Val Loss: 0.038545975035854746 +2024-07-23 07:42:25.876 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 34/50, Train Loss: 0.04206302545319956, Val Loss: 0.03931009769439697 +2024-07-23 07:42:30.641 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 35/50, Train Loss: 0.04198176874062763, Val Loss: 0.03977007477411202 +2024-07-23 07:42:35.415 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 36/50, Train Loss: 0.042137318559420794, Val Loss: 0.039691368064710075 +2024-07-23 07:42:40.218 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 37/50, Train Loss: 0.04194496593509729, Val Loss: 0.04295830817094871 +2024-07-23 07:42:44.993 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 38/50, Train Loss: 0.04217233035999995, Val Loss: 0.03955961854330131 +2024-07-23 07:42:49.749 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 39/50, Train Loss: 0.041941226997341104, Val Loss: 0.04859537647238799 +2024-07-23 07:42:54.588 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 40/50, Train Loss: 0.04223450858933994, Val Loss: 0.039019406054701125 +2024-07-23 07:42:59.372 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 41/50, Train Loss: 0.04213592703812397, Val Loss: 0.04157849928098065 +2024-07-23 07:43:04.185 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 42/50, Train Loss: 0.042179030975183614, Val Loss: 0.042789422401360105 +2024-07-23 07:43:08.965 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 43/50, Train Loss: 0.04205573414667295, Val Loss: 0.041507337508457046 +2024-07-23 07:43:13.760 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 44/50, Train Loss: 0.04195767028543811, Val Loss: 0.04666944561260087 +2024-07-23 07:43:18.592 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 45/50, Train Loss: 0.04198193109522645, Val Loss: 0.04269770889409951 +2024-07-23 07:43:23.375 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 46/50, Train Loss: 0.041737954651650325, Val Loss: 0.04627199439065797 +2024-07-23 07:43:28.199 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 47/50, Train Loss: 0.041981667620488085, Val Loss: 0.04601320938340255 +2024-07-23 07:43:32.984 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 48/50, Train Loss: 0.041700792427246385, Val Loss: 0.04162570121032851 +2024-07-23 07:43:37.796 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 49/50, Train Loss: 0.04184934068829394, Val Loss: 0.04310662858188152 +2024-07-23 07:43:42.592 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 50/50, Train Loss: 0.04181376642260987, Val Loss: 0.04623556876821178 +2024-07-23 07:43:42.592 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Fold 2, MAPE: 5.10% +2024-07-23 07:43:42.701 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_5001_10000_LSTM//train_f2_bgd_education_5001_10000_LSTM.png +2024-07-23 07:43:48.953 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 1/50, Train Loss: 0.04079500691657015, Val Loss: 0.03445083647966385 +2024-07-23 07:43:55.177 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 2/50, Train Loss: 0.040695046523599315, Val Loss: 0.034289220081908364 +2024-07-23 07:44:01.398 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 3/50, Train Loss: 0.040353620036257254, Val Loss: 0.03446262798139027 +2024-07-23 07:44:07.605 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 4/50, Train Loss: 0.04020828592905895, Val Loss: 0.03451268481356757 +2024-07-23 07:44:13.824 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 5/50, Train Loss: 0.040227540507376626, Val Loss: 0.03461926787027291 +2024-07-23 07:44:20.102 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 6/50, Train Loss: 0.04023920964422843, Val Loss: 0.034719348007014816 +2024-07-23 07:44:26.313 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 7/50, Train Loss: 0.04031134868482891, Val Loss: 0.03426364149366106 +2024-07-23 07:44:32.523 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 8/50, Train Loss: 0.04021843825634435, Val Loss: 0.03456732433821474 +2024-07-23 07:44:38.780 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 9/50, Train Loss: 0.04024205110270342, Val Loss: 0.03444996625185013 +2024-07-23 07:44:45.031 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 10/50, Train Loss: 0.04023544649801237, Val Loss: 0.03439588775592191 +2024-07-23 07:44:51.258 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 11/50, Train Loss: 0.04022002929030991, Val Loss: 0.03444394011582647 +2024-07-23 07:44:57.505 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 12/50, Train Loss: 0.04014383023269742, Val Loss: 0.034308479460222384 +2024-07-23 07:44:57.505 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:44:57.505 No tasks are waiting in the queue. +2024-07-23 07:44:57.505 4 steps have not started: end, model_scores, validate_model, log_model. +2024-07-23 07:45:03.745 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 13/50, Train Loss: 0.04002060774686954, Val Loss: 0.0345660004232611 +2024-07-23 07:45:09.972 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 14/50, Train Loss: 0.040918739164154304, Val Loss: 0.03432963165853705 +2024-07-23 07:45:16.237 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 15/50, Train Loss: 0.04043974705951677, Val Loss: 0.03438126764127186 +2024-07-23 07:45:22.477 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 16/50, Train Loss: 0.0402975475562991, Val Loss: 0.03451871345085757 +2024-07-23 07:45:28.698 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 17/50, Train Loss: 0.04028028556608039, Val Loss: 0.03474018972899232 +2024-07-23 07:45:34.982 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 18/50, Train Loss: 0.04024834591868541, Val Loss: 0.03460413478314876 +2024-07-23 07:45:41.224 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 19/50, Train Loss: 0.04023270176308189, Val Loss: 0.03439955423985209 +2024-07-23 07:45:47.446 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 20/50, Train Loss: 0.04014400651397036, Val Loss: 0.03446742572954723 +2024-07-23 07:45:53.679 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 21/50, Train Loss: 0.04002223439889846, Val Loss: 0.03434951848217419 +2024-07-23 07:45:59.919 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 22/50, Train Loss: 0.04000960547718213, Val Loss: 0.03440038599073887 +2024-07-23 07:46:06.182 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 23/50, Train Loss: 0.03997793596693509, Val Loss: 0.03459165601858071 +2024-07-23 07:46:12.433 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 24/50, Train Loss: 0.03988595406035725, Val Loss: 0.03447412396115916 +2024-07-23 07:46:18.730 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 25/50, Train Loss: 0.039815470469083715, Val Loss: 0.03457103776080268 +2024-07-23 07:46:24.965 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 26/50, Train Loss: 0.03977881708323098, Val Loss: 0.03450938846383776 +2024-07-23 07:46:31.209 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 27/50, Train Loss: 0.039733666886421416, Val Loss: 0.034418223691838126 +2024-07-23 07:46:37.465 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 28/50, Train Loss: 0.03973875852743927, Val Loss: 0.0344450622264828 +2024-07-23 07:46:43.728 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 29/50, Train Loss: 0.03979545787459226, Val Loss: 0.034580258546131 +2024-07-23 07:46:49.987 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 30/50, Train Loss: 0.03976865497370847, Val Loss: 0.03455377114670617 +2024-07-23 07:46:56.290 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 31/50, Train Loss: 0.03984264174489666, Val Loss: 0.03459019501294409 +2024-07-23 07:47:02.492 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 32/50, Train Loss: 0.039812621184819035, Val Loss: 0.03451526473675456 +2024-07-23 07:47:08.727 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 33/50, Train Loss: 0.03991866972056224, Val Loss: 0.03451295532286167 +2024-07-23 07:47:14.957 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 34/50, Train Loss: 0.0397787651971733, Val Loss: 0.0343826380691358 +2024-07-23 07:47:21.206 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 35/50, Train Loss: 0.039751447777417924, Val Loss: 0.034456870545234 +2024-07-23 07:47:27.424 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 36/50, Train Loss: 0.039782597864274495, Val Loss: 0.03436305969953537 +2024-07-23 07:47:33.688 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 37/50, Train Loss: 0.03979362481736022, Val Loss: 0.03444066675645965 +2024-07-23 07:47:39.927 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 38/50, Train Loss: 0.03968907828382451, Val Loss: 0.03442495396094663 +2024-07-23 07:47:46.195 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 39/50, Train Loss: 0.03973726372120621, Val Loss: 0.034347159149391314 +2024-07-23 07:47:52.455 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 40/50, Train Loss: 0.03972156777334728, Val Loss: 0.03451169771807534 +2024-07-23 07:47:58.704 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 41/50, Train Loss: 0.03977699387523768, Val Loss: 0.03456112130412033 +2024-07-23 07:48:04.972 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 42/50, Train Loss: 0.03965580813157901, Val Loss: 0.03403407936649663 +2024-07-23 07:48:11.210 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 43/50, Train Loss: 0.03969645737368855, Val Loss: 0.034444987986768996 +2024-07-23 07:48:17.521 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 44/50, Train Loss: 0.03958149030536628, Val Loss: 0.034035408071109226 +2024-07-23 07:48:23.792 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 45/50, Train Loss: 0.039651689488145944, Val Loss: 0.034251686824219564 +2024-07-23 07:48:30.069 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 46/50, Train Loss: 0.03953664503294787, Val Loss: 0.03405884270157133 +2024-07-23 07:48:36.373 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 47/50, Train Loss: 0.03967876994995762, Val Loss: 0.03432385953409331 +2024-07-23 07:48:42.608 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 48/50, Train Loss: 0.039559308064284086, Val Loss: 0.03409240256462778 +2024-07-23 07:48:48.854 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 49/50, Train Loss: 0.03961947761315236, Val Loss: 0.03446256603513445 +2024-07-23 07:48:55.075 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 50/50, Train Loss: 0.03957211143142885, Val Loss: 0.034458529097693306 +2024-07-23 07:48:55.076 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Fold 3, MAPE: 3.71% +2024-07-23 07:48:55.181 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_5001_10000_LSTM//train_f3_bgd_education_5001_10000_LSTM.png +2024-07-23 07:49:02.901 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 1/50, Train Loss: 0.038311349345777915, Val Loss: 0.042068661217178616 +2024-07-23 07:49:10.604 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 2/50, Train Loss: 0.038363169514756094, Val Loss: 0.043288273523960794 +2024-07-23 07:49:18.366 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 3/50, Train Loss: 0.03849139726110574, Val Loss: 0.0427882726171187 +2024-07-23 07:49:26.078 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 4/50, Train Loss: 0.03832889430695909, Val Loss: 0.041330715641379356 +2024-07-23 07:49:33.762 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 5/50, Train Loss: 0.03823702446259986, Val Loss: 0.04179349339434079 +2024-07-23 07:49:41.484 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 6/50, Train Loss: 0.03831507221677865, Val Loss: 0.04211914832038539 +2024-07-23 07:49:49.225 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 7/50, Train Loss: 0.03834099249764421, Val Loss: 0.042674354357378826 +2024-07-23 07:49:56.974 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 8/50, Train Loss: 0.03829037769558443, Val Loss: 0.04344752196754728 +2024-07-23 07:50:04.702 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 9/50, Train Loss: 0.0383022367290553, Val Loss: 0.04200671820768288 +2024-07-23 07:50:04.702 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:50:04.702 No tasks are waiting in the queue. +2024-07-23 07:50:04.702 4 steps have not started: end, model_scores, validate_model, log_model. +2024-07-23 07:50:12.372 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 10/50, Train Loss: 0.038190040170033086, Val Loss: 0.04200767337211541 +2024-07-23 07:50:20.086 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 11/50, Train Loss: 0.03819038984419285, Val Loss: 0.042967391972030915 +2024-07-23 07:50:27.788 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 12/50, Train Loss: 0.03810083021506153, Val Loss: 0.042235118789332254 +2024-07-23 07:50:35.529 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 13/50, Train Loss: 0.038175704054020605, Val Loss: 0.04308141863771847 +2024-07-23 07:50:43.242 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 14/50, Train Loss: 0.03825953409032917, Val Loss: 0.041916504661951744 +2024-07-23 07:50:50.974 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 15/50, Train Loss: 0.038219225603616104, Val Loss: 0.041989152027027944 +2024-07-23 07:50:58.686 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 16/50, Train Loss: 0.038185769874045906, Val Loss: 0.04281527080706188 +2024-07-23 07:51:06.452 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 17/50, Train Loss: 0.03813638431073605, Val Loss: 0.04246861221534865 +2024-07-23 07:51:14.132 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 18/50, Train Loss: 0.03815435966070013, Val Loss: 0.04579628227012498 +2024-07-23 07:51:21.896 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 19/50, Train Loss: 0.03834981691820183, Val Loss: 0.042798091524413655 +2024-07-23 07:51:29.630 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 20/50, Train Loss: 0.03817215439831388, Val Loss: 0.041976920036332944 +2024-07-23 07:51:37.351 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 21/50, Train Loss: 0.03806481757682973, Val Loss: 0.04239552170038223 +2024-07-23 07:51:45.087 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 22/50, Train Loss: 0.03806707893508947, Val Loss: 0.043413314808692254 +2024-07-23 07:51:52.808 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 23/50, Train Loss: 0.038127949761076904, Val Loss: 0.04554497317544052 +2024-07-23 07:52:00.558 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 24/50, Train Loss: 0.03835416012497126, Val Loss: 0.042236236961824554 +2024-07-23 07:52:08.281 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 25/50, Train Loss: 0.03814196185176742, Val Loss: 0.04138561960841928 +2024-07-23 07:52:16.024 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 26/50, Train Loss: 0.03807573083616879, Val Loss: 0.039942799455353194 +2024-07-23 07:52:23.740 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 27/50, Train Loss: 0.03811497335461365, Val Loss: 0.04262966657323497 +2024-07-23 07:52:31.463 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 28/50, Train Loss: 0.038234209063751946, Val Loss: 0.04075783565640449 +2024-07-23 07:52:39.205 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 29/50, Train Loss: 0.03797962457669535, Val Loss: 0.04160590427262442 +2024-07-23 07:52:46.967 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 30/50, Train Loss: 0.03788812190893738, Val Loss: 0.04245853078152452 +2024-07-23 07:52:54.709 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 31/50, Train Loss: 0.037953386522144424, Val Loss: 0.04028715012328965 +2024-07-23 07:53:02.416 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 32/50, Train Loss: 0.038143439346860195, Val Loss: 0.04821923955210618 +2024-07-23 07:53:10.166 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 33/50, Train Loss: 0.03815398537607371, Val Loss: 0.039750793097274646 +2024-07-23 07:53:17.906 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 34/50, Train Loss: 0.03788517300981557, Val Loss: 0.04071807164166655 +2024-07-23 07:53:25.715 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 35/50, Train Loss: 0.037996206218483805, Val Loss: 0.04541367159358093 +2024-07-23 07:53:33.411 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 36/50, Train Loss: 0.038050633223577476, Val Loss: 0.04425976643604892 +2024-07-23 07:53:41.143 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 37/50, Train Loss: 0.037879597202971065, Val Loss: 0.042773425259760446 +2024-07-23 07:53:48.891 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 38/50, Train Loss: 0.03801517378025014, Val Loss: 0.04324403910764626 +2024-07-23 07:53:56.670 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 39/50, Train Loss: 0.03780481879781375, Val Loss: 0.042750009255749837 +2024-07-23 07:54:04.412 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 40/50, Train Loss: 0.03788383937729844, Val Loss: 0.043346680594342095 +2024-07-23 07:54:12.195 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 41/50, Train Loss: 0.03790580736066418, Val Loss: 0.040907905729753634 +2024-07-23 07:54:19.957 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 42/50, Train Loss: 0.03784475215421668, Val Loss: 0.04463969160403524 +2024-07-23 07:54:27.737 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 43/50, Train Loss: 0.037804616690110204, Val Loss: 0.04155301664556776 +2024-07-23 07:54:35.479 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 44/50, Train Loss: 0.03783412682342118, Val Loss: 0.041423964340771946 +2024-07-23 07:54:43.204 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 45/50, Train Loss: 0.037714590264976706, Val Loss: 0.04078300377087934 +2024-07-23 07:54:50.947 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 46/50, Train Loss: 0.03777241395336801, Val Loss: 0.04056989199348859 +2024-07-23 07:54:58.711 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 47/50, Train Loss: 0.03767638966098599, Val Loss: 0.04494901725224086 +2024-07-23 07:55:06.482 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 48/50, Train Loss: 0.03786553098852265, Val Loss: 0.044453542307019235 +2024-07-23 07:55:06.482 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:55:06.482 No tasks are waiting in the queue. +2024-07-23 07:55:06.482 4 steps have not started: end, model_scores, validate_model, log_model. +2024-07-23 07:55:14.176 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 49/50, Train Loss: 0.0378336774549265, Val Loss: 0.0472774799913168 +2024-07-23 07:55:21.916 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 50/50, Train Loss: 0.03758946479694254, Val Loss: 0.049808256062013764 +2024-07-23 07:55:21.917 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Fold 4, MAPE: 7.01% +2024-07-23 07:55:22.010 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_5001_10000_LSTM//train_f4_bgd_education_5001_10000_LSTM.png +2024-07-23 07:55:26.355 [56/cross_validate_train/611 (pid 97273)] Task finished successfully. +2024-07-23 07:55:26.387 [56/model_scores/612 (pid 2135)] Task is starting. +2024-07-23 07:55:27.879 [56/model_scores/612 (pid 2135)] INFO:__main__:Average Train Loss across all folds: 0.041966721330466736 +2024-07-23 07:55:31.765 [56/model_scores/612 (pid 2135)] INFO:__main__:Average Validation Loss across all folds: 0.04700760976544449 +2024-07-23 07:55:31.765 [56/model_scores/612 (pid 2135)] INFO:__main__:Average MAPE across all folds: 5.66% +2024-07-23 07:55:31.766 [56/model_scores/612 (pid 2135)] Task finished successfully. +2024-07-23 07:55:31.803 [56/validate_model/613 (pid 2167)] Task is starting. +2024-07-23 07:55:33.283 [56/validate_model/613 (pid 2167)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 07:55:34.023 [56/validate_model/613 (pid 2167)] INFO:__main__:Test Set MAPE: 4.91% +2024-07-23 07:55:34.383 [56/validate_model/613 (pid 2167)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_education_5001_10000_LSTM//test_bgd_education_5001_10000_LSTM.png +2024-07-23 07:55:34.825 [56/validate_model/613 (pid 2167)] Task finished successfully. +2024-07-23 07:55:34.851 [56/log_model/614 (pid 2181)] Task is starting. +2024-07-23 07:55:36.340 [56/log_model/614 (pid 2181)] INFO:__main__:Logging model bgd_education_5001_10000_LSTM +2024-07-23 07:55:36.341 [56/log_model/614 (pid 2181)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_education_5001_10000_LSTM//bgd_education_5001_10000_LSTM.pth +2024-07-23 07:55:40.215 [56/log_model/614 (pid 2181)] Task finished successfully. +2024-07-23 07:55:40.244 [56/end/615 (pid 2213)] Task is starting. +2024-07-23 07:55:41.713 [56/end/615 (pid 2213)] INFO:__main__:Pipeline end. +2024-07-23 07:55:42.020 [56/end/615 (pid 2213)] Task finished successfully. +2024-07-23 07:55:42.021 Done! +✅ Run('BGD_LinearFlow/56') succeeded: +-- stdout -- +2024-07-23 07:34:51.173 Workflow starting (run-id 56): +2024-07-23 07:34:51.254 [56/start/603 (pid 97131)] Task is starting. +2024-07-23 07:34:52.713 [56/start/603 (pid 97131)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 07:34:53.006 [56/start/603 (pid 97131)] Task finished successfully. +2024-07-23 07:34:53.036 [56/ingest/604 (pid 97144)] Task is starting. +2024-07-23 07:34:54.536 [56/ingest/604 (pid 97144)] INFO:__main__:Fetching dataframe.. +2024-07-23 07:34:54.551 [56/ingest/604 (pid 97144)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 07:34:58.382 [56/ingest/604 (pid 97144)] Task finished successfully. +2024-07-23 07:34:58.411 [56/pick_2017_data/605 (pid 97168)] Task is starting. +2024-07-23 07:34:59.899 [56/pick_2017_data/605 (pid 97168)] INFO:__main__:Picking 2017 data.. +2024-07-23 07:35:00.199 [56/pick_2017_data/605 (pid 97168)] Task finished successfully. +2024-07-23 07:35:00.231 [56/fill_missing_data/606 (pid 97179)] Task is starting. +2024-07-23 07:35:01.705 [56/fill_missing_data/606 (pid 97179)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 07:35:01.710 [56/fill_missing_data/606 (pid 97179)] INFO:__main__:NaN counts per column: +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] INFO:__main__:Panther_education_Tina 10 +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] Panther_education_Violet 12 +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] Panther_education_Rosalie 20 +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] Panther_education_Mattie 12 +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] dtype: int64 +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] --- Logging error --- +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] Traceback (most recent call last): +2024-07-23 07:35:01.711 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] msg = self.format(record) +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] return fmt.format(record) +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] record.message = record.getMessage() +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] msg = msg % self.args +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] TypeError: not all arguments converted during string formatting +2024-07-23 07:35:01.712 [56/fill_missing_data/606 (pid 97179)] Call stack: +2024-07-23 07:35:01.713 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] BGD_LinearFlow() +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] cli.main(self) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] return func(*args, **kwargs) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] return self.main(*args, **kwargs) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] rv = self.invoke(ctx) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] return callback(*args, **kwargs) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] return f(get_current_context(), *args, **kwargs) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] task.run_step( +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] self._exec_step_function(step_func) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] step_function() +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] self.missing_values = find_nan_counts(self.df) +2024-07-23 07:35:02.049 [56/fill_missing_data/606 (pid 97179)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 07:35:02.050 [56/fill_missing_data/606 (pid 97179)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 07:35:02.050 [56/fill_missing_data/606 (pid 97179)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 07:35:02.050 [56/fill_missing_data/606 (pid 97179)] Arguments: (54,) +2024-07-23 07:35:02.050 [56/fill_missing_data/606 (pid 97179)] Task finished successfully. +2024-07-23 07:35:02.082 [56/find_median/607 (pid 97193)] Task is starting. +2024-07-23 07:35:03.551 [56/find_median/607 (pid 97193)] INFO:__main__:Computing and using median.. +2024-07-23 07:35:04.051 [56/find_median/607 (pid 97193)] Task finished successfully. +2024-07-23 07:35:04.079 [56/aggregate_data/608 (pid 97204)] Task is starting. +2024-07-23 07:35:05.554 [56/aggregate_data/608 (pid 97204)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 07:35:09.352 [56/aggregate_data/608 (pid 97204)] Task finished successfully. +2024-07-23 07:35:09.386 [56/split_data/609 (pid 97235)] Task is starting. +2024-07-23 07:35:10.831 [56/split_data/609 (pid 97235)] INFO:__main__:Splitting data into test and train... +2024-07-23 07:35:14.674 [56/split_data/609 (pid 97235)] Task finished successfully. +2024-07-23 07:35:14.704 [56/make_x_y/610 (pid 97261)] Task is starting. +2024-07-23 07:35:16.522 [56/make_x_y/610 (pid 97261)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 07:35:16.923 [56/make_x_y/610 (pid 97261)] Shape of y_train: (6648, 1) +2024-07-23 07:35:16.923 [56/make_x_y/610 (pid 97261)] Shape of X_test: (1392, 360, 1) +2024-07-23 07:35:16.923 [56/make_x_y/610 (pid 97261)] Shape of y_test: (1392, 1) +2024-07-23 07:35:16.924 [56/make_x_y/610 (pid 97261)] Task finished successfully. +2024-07-23 07:35:16.957 [56/cross_validate_train/611 (pid 97273)] Task is starting. +2024-07-23 07:35:18.412 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Creating bgd_education_5001_10000_LSTM +2024-07-23 07:35:18.413 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Performing cross validation.. +2024-07-23 07:35:20.897 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 1/50, Train Loss: 0.48076083468539377, Val Loss: 0.16867615218673435 +2024-07-23 07:35:22.794 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 2/50, Train Loss: 0.08942299000918866, Val Loss: 0.11463769472071103 +2024-07-23 07:35:24.691 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 3/50, Train Loss: 0.07920923488480704, Val Loss: 0.11226975353700774 +2024-07-23 07:35:26.581 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 4/50, Train Loss: 0.07887697113411767, Val Loss: 0.110907715346132 +2024-07-23 07:35:28.475 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 5/50, Train Loss: 0.07877919322678022, Val Loss: 0.11189003959298134 +2024-07-23 07:35:30.377 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 6/50, Train Loss: 0.07776118335979325, Val Loss: 0.10715399320636476 +2024-07-23 07:35:32.266 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 7/50, Train Loss: 0.07745313282523836, Val Loss: 0.10772169934851783 +2024-07-23 07:35:34.164 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 8/50, Train Loss: 0.07646501777427538, Val Loss: 0.10486931524106434 +2024-07-23 07:35:36.056 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 9/50, Train Loss: 0.07549112598810877, Val Loss: 0.10328034545694079 +2024-07-23 07:35:37.943 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 10/50, Train Loss: 0.07523505932518414, Val Loss: 0.1041029019015176 +2024-07-23 07:35:39.842 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 11/50, Train Loss: 0.07405397083078112, Val Loss: 0.10063828825950623 +2024-07-23 07:35:41.748 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 12/50, Train Loss: 0.07323899556483542, Val Loss: 0.09911290502973966 +2024-07-23 07:35:43.681 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 13/50, Train Loss: 0.07223991411072868, Val Loss: 0.09640037236469133 +2024-07-23 07:35:45.596 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 14/50, Train Loss: 0.0709394739142486, Val Loss: 0.09471265194671495 +2024-07-23 07:35:47.484 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 15/50, Train Loss: 0.0702260006751333, Val Loss: 0.09256516077688762 +2024-07-23 07:35:49.365 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 16/50, Train Loss: 0.06911031359008381, Val Loss: 0.09024184591003827 +2024-07-23 07:35:51.271 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 17/50, Train Loss: 0.06825992092490196, Val Loss: 0.08950774680290903 +2024-07-23 07:35:53.169 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 18/50, Train Loss: 0.06708824240735599, Val Loss: 0.08657031506299973 +2024-07-23 07:35:55.082 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 19/50, Train Loss: 0.06584454029798507, Val Loss: 0.08452352806925774 +2024-07-23 07:35:56.978 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 20/50, Train Loss: 0.06465545041220529, Val Loss: 0.08338407107761928 +2024-07-23 07:35:58.860 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 21/50, Train Loss: 0.06384432603205953, Val Loss: 0.08192849510482379 +2024-07-23 07:36:00.772 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 22/50, Train Loss: 0.0629291866506849, Val Loss: 0.08004146207656179 +2024-07-23 07:36:02.688 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 23/50, Train Loss: 0.06186485641769, Val Loss: 0.07864527202078274 +2024-07-23 07:36:04.601 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 24/50, Train Loss: 0.06097001507878304, Val Loss: 0.07690087258815766 +2024-07-23 07:36:06.506 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 25/50, Train Loss: 0.059890843502112795, Val Loss: 0.07526988057153565 +2024-07-23 07:36:08.408 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 26/50, Train Loss: 0.05852177084556648, Val Loss: 0.07266499485288347 +2024-07-23 07:36:10.315 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 27/50, Train Loss: 0.05689051976161344, Val Loss: 0.069016536165561 +2024-07-23 07:36:12.239 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 28/50, Train Loss: 0.05552504600158759, Val Loss: 0.06762062832713127 +2024-07-23 07:36:14.160 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 29/50, Train Loss: 0.054470027876751766, Val Loss: 0.06646745965949126 +2024-07-23 07:36:16.099 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 30/50, Train Loss: 0.05351480932107994, Val Loss: 0.0655307081661054 +2024-07-23 07:36:17.999 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 31/50, Train Loss: 0.05320336212004934, Val Loss: 0.06445910632610322 +2024-07-23 07:36:19.909 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 32/50, Train Loss: 0.05246010848454067, Val Loss: 0.06479387240750449 +2024-07-23 07:36:21.817 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 33/50, Train Loss: 0.05243701386664595, Val Loss: 0.06319402504180159 +2024-07-23 07:36:23.727 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 34/50, Train Loss: 0.051644371237073626, Val Loss: 0.06296887371156897 +2024-07-23 07:36:25.644 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 35/50, Train Loss: 0.05164587540285928, Val Loss: 0.06233981879694121 +2024-07-23 07:36:27.562 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 36/50, Train Loss: 0.051081319472619464, Val Loss: 0.06243701662336077 +2024-07-23 07:36:29.471 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 37/50, Train Loss: 0.05084220176296575, Val Loss: 0.06215546657996518 +2024-07-23 07:36:31.369 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 38/50, Train Loss: 0.05050500322665487, Val Loss: 0.06110473940415042 +2024-07-23 07:36:33.288 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 39/50, Train Loss: 0.050336738835488046, Val Loss: 0.05988729250218187 +2024-07-23 07:36:35.207 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 40/50, Train Loss: 0.049713804945349695, Val Loss: 0.05939780558858599 +2024-07-23 07:36:37.115 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 41/50, Train Loss: 0.04962959374700274, Val Loss: 0.05909528136253357 +2024-07-23 07:36:39.020 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 42/50, Train Loss: 0.048756378782647, Val Loss: 0.05903671554156712 +2024-07-23 07:36:40.934 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 43/50, Train Loss: 0.04937153628894261, Val Loss: 0.05821863386247839 +2024-07-23 07:36:42.843 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 44/50, Train Loss: 0.04829907172492572, Val Loss: 0.058289757849914685 +2024-07-23 07:36:44.771 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 45/50, Train Loss: 0.04813257498400552, Val Loss: 0.05789064419056688 +2024-07-23 07:36:46.692 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 46/50, Train Loss: 0.048154299440128466, Val Loss: 0.05795305067939418 +2024-07-23 07:36:48.601 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 47/50, Train Loss: 0.04770721356783594, Val Loss: 0.05774501429072448 +2024-07-23 07:36:50.542 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 48/50, Train Loss: 0.04823167441146714, Val Loss: 0.05814871420817716 +2024-07-23 07:36:52.451 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 49/50, Train Loss: 0.047720755743128916, Val Loss: 0.05728416746216161 +2024-07-23 07:36:54.369 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 50/50, Train Loss: 0.04731248074344226, Val Loss: 0.05751927186335836 +2024-07-23 07:36:54.369 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Fold 0, MAPE: 6.49% +2024-07-23 07:36:54.701 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_5001_10000_LSTM//train_f0_bgd_education_5001_10000_LSTM.png +2024-07-23 07:36:58.085 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 1/50, Train Loss: 0.044982841398034774, Val Loss: 0.041478531169039864 +2024-07-23 07:37:01.446 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 2/50, Train Loss: 0.044347173986690386, Val Loss: 0.04063379998717989 +2024-07-23 07:37:04.818 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 3/50, Train Loss: 0.04395802712866238, Val Loss: 0.04082913111363139 +2024-07-23 07:37:08.174 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 4/50, Train Loss: 0.043943706154823306, Val Loss: 0.04082479514181614 +2024-07-23 07:37:11.539 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 5/50, Train Loss: 0.04398015977016517, Val Loss: 0.04106922570083823 +2024-07-23 07:37:14.903 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 6/50, Train Loss: 0.043331984670034476, Val Loss: 0.041148398284401214 +2024-07-23 07:37:18.309 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 7/50, Train Loss: 0.043758566597742694, Val Loss: 0.04124349510031087 +2024-07-23 07:37:21.678 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 8/50, Train Loss: 0.04354817287198135, Val Loss: 0.041168771790606636 +2024-07-23 07:37:25.049 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 9/50, Train Loss: 0.04361104739031622, Val Loss: 0.041596479501043046 +2024-07-23 07:37:28.397 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 10/50, Train Loss: 0.043365635563220296, Val Loss: 0.04194459079631737 +2024-07-23 07:37:31.752 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 11/50, Train Loss: 0.04382260995251792, Val Loss: 0.04165342833314623 +2024-07-23 07:37:35.108 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 12/50, Train Loss: 0.04348702941622053, Val Loss: 0.04165311508945056 +2024-07-23 07:37:38.460 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 13/50, Train Loss: 0.043372862519962446, Val Loss: 0.041795103145497184 +2024-07-23 07:37:41.822 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 14/50, Train Loss: 0.0436657825750964, Val Loss: 0.04211143675659384 +2024-07-23 07:37:45.193 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 15/50, Train Loss: 0.04348982899848904, Val Loss: 0.04213189472045217 +2024-07-23 07:37:48.530 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 16/50, Train Loss: 0.043703250932906355, Val Loss: 0.043489767877118925 +2024-07-23 07:37:51.879 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 17/50, Train Loss: 0.043839881223227295, Val Loss: 0.043643006735614366 +2024-07-23 07:37:55.240 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 18/50, Train Loss: 0.043753154043640406, Val Loss: 0.044338031113147734 +2024-07-23 07:37:58.610 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 19/50, Train Loss: 0.044006949503506934, Val Loss: 0.045471411358032905 +2024-07-23 07:38:01.963 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 20/50, Train Loss: 0.04411013858126742, Val Loss: 0.045949978328176905 +2024-07-23 07:38:05.313 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 21/50, Train Loss: 0.044406908191740514, Val Loss: 0.045831466519406866 +2024-07-23 07:38:08.671 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 22/50, Train Loss: 0.04448503588459322, Val Loss: 0.050202129994119916 +2024-07-23 07:38:12.034 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 23/50, Train Loss: 0.044377581615533145, Val Loss: 0.04963649053658758 +2024-07-23 07:38:15.410 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 24/50, Train Loss: 0.044195297839386125, Val Loss: 0.04858569284634931 +2024-07-23 07:38:18.809 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 25/50, Train Loss: 0.04388944099524191, Val Loss: 0.049505285013999256 +2024-07-23 07:38:22.155 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 26/50, Train Loss: 0.044172568459595954, Val Loss: 0.0499047796108893 +2024-07-23 07:38:25.571 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 27/50, Train Loss: 0.04417937922158412, Val Loss: 0.049341338447162084 +2024-07-23 07:38:28.897 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 28/50, Train Loss: 0.043872635598693574, Val Loss: 0.04916497729718685 +2024-07-23 07:38:32.266 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 29/50, Train Loss: 0.043461766732590536, Val Loss: 0.04744538686105183 +2024-07-23 07:38:35.652 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 30/50, Train Loss: 0.04331539515405893, Val Loss: 0.04676975597228323 +2024-07-23 07:38:39.012 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 31/50, Train Loss: 0.0433173230183976, Val Loss: 0.04833551256784371 +2024-07-23 07:38:42.393 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 32/50, Train Loss: 0.043732130633933206, Val Loss: 0.04847559870353767 +2024-07-23 07:38:45.761 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 33/50, Train Loss: 0.043181786393480644, Val Loss: 0.05100870920079095 +2024-07-23 07:38:49.112 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 34/50, Train Loss: 0.04395388790539333, Val Loss: 0.04721596507089479 +2024-07-23 07:38:52.470 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 35/50, Train Loss: 0.04313635544053146, Val Loss: 0.04615886131567615 +2024-07-23 07:38:55.848 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 36/50, Train Loss: 0.04291007252676146, Val Loss: 0.04549098312854767 +2024-07-23 07:38:59.204 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 37/50, Train Loss: 0.04295129736087152, Val Loss: 0.04641377776861191 +2024-07-23 07:39:02.569 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 38/50, Train Loss: 0.04303066493677241, Val Loss: 0.04772367578532014 +2024-07-23 07:39:05.977 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 39/50, Train Loss: 0.04293573948421649, Val Loss: 0.04786613195070199 +2024-07-23 07:39:09.336 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 40/50, Train Loss: 0.042886482871004515, Val Loss: 0.04891697902764593 +2024-07-23 07:39:12.715 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 41/50, Train Loss: 0.042605808989277905, Val Loss: 0.04581031905753272 +2024-07-23 07:39:16.079 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 42/50, Train Loss: 0.04263988946165357, Val Loss: 0.045851879460471014 +2024-07-23 07:39:19.459 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 43/50, Train Loss: 0.042851365517292704, Val Loss: 0.045249308007104055 +2024-07-23 07:39:22.862 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 44/50, Train Loss: 0.042831388488411906, Val Loss: 0.04926234803029469 +2024-07-23 07:39:26.238 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 45/50, Train Loss: 0.04307752334113632, Val Loss: 0.04677144219832761 +2024-07-23 07:39:29.605 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 46/50, Train Loss: 0.042827549975897584, Val Loss: 0.04913784217621599 +2024-07-23 07:39:32.997 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 47/50, Train Loss: 0.04240900948643685, Val Loss: 0.04537711324436324 +2024-07-23 07:39:36.383 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 48/50, Train Loss: 0.042155644324209006, Val Loss: 0.04541684532804149 +2024-07-23 07:39:39.769 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 49/50, Train Loss: 0.043170534446835516, Val Loss: 0.04459258397775037 +2024-07-23 07:39:43.126 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 50/50, Train Loss: 0.043545783257910184, Val Loss: 0.047016423035945214 +2024-07-23 07:39:43.126 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Fold 1, MAPE: 6.01% +2024-07-23 07:39:43.229 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_5001_10000_LSTM//train_f1_bgd_education_5001_10000_LSTM.png +2024-07-23 07:39:48.008 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 1/50, Train Loss: 0.04448249370146256, Val Loss: 0.04705473605011191 +2024-07-23 07:39:52.802 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 2/50, Train Loss: 0.04350449469012137, Val Loss: 0.047264189113463674 +2024-07-23 07:39:52.802 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:39:52.802 No tasks are waiting in the queue. +2024-07-23 07:39:52.802 4 steps have not started: end, model_scores, validate_model, log_model. +2024-07-23 07:39:57.616 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 3/50, Train Loss: 0.043351052794605494, Val Loss: 0.045756311608212336 +2024-07-23 07:40:02.394 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 4/50, Train Loss: 0.04300426580728246, Val Loss: 0.046005223797900334 +2024-07-23 07:40:07.156 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 5/50, Train Loss: 0.04276864563759703, Val Loss: 0.04489079729786941 +2024-07-23 07:40:11.946 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 6/50, Train Loss: 0.04276264005770477, Val Loss: 0.043762875774077004 +2024-07-23 07:40:16.775 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 7/50, Train Loss: 0.04294183257465752, Val Loss: 0.04287076917077814 +2024-07-23 07:40:21.517 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 8/50, Train Loss: 0.0426596961915493, Val Loss: 0.04203530273267201 +2024-07-23 07:40:26.302 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 9/50, Train Loss: 0.042627558255424865, Val Loss: 0.04270523584314755 +2024-07-23 07:40:31.069 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 10/50, Train Loss: 0.04237227691695667, Val Loss: 0.04148446624832494 +2024-07-23 07:40:35.850 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 11/50, Train Loss: 0.04259009870628898, Val Loss: 0.0418932386807033 +2024-07-23 07:40:40.658 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 12/50, Train Loss: 0.04253699261551866, Val Loss: 0.04081468417176178 +2024-07-23 07:40:45.440 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 13/50, Train Loss: 0.042437295930889934, Val Loss: 0.04182265374277319 +2024-07-23 07:40:50.206 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 14/50, Train Loss: 0.04240207655283694, Val Loss: 0.03984450202967439 +2024-07-23 07:40:54.981 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 15/50, Train Loss: 0.04234654019371821, Val Loss: 0.03991294678832803 +2024-07-23 07:40:59.736 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 16/50, Train Loss: 0.04236742632033733, Val Loss: 0.04284824468195438 +2024-07-23 07:41:04.555 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 17/50, Train Loss: 0.04282472021161364, Val Loss: 0.041568533810121676 +2024-07-23 07:41:09.334 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 18/50, Train Loss: 0.042596563875961765, Val Loss: 0.03983162694743701 +2024-07-23 07:41:14.140 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 19/50, Train Loss: 0.04246187700818364, Val Loss: 0.03856342291193349 +2024-07-23 07:41:18.959 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 20/50, Train Loss: 0.042249082730939753, Val Loss: 0.03735763824411801 +2024-07-23 07:41:23.738 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 21/50, Train Loss: 0.04226364505190689, Val Loss: 0.03776003324559757 +2024-07-23 07:41:28.529 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 22/50, Train Loss: 0.042427075596956104, Val Loss: 0.03743255101144314 +2024-07-23 07:41:33.293 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 23/50, Train Loss: 0.04224782043065016, Val Loss: 0.03726442897958415 +2024-07-23 07:41:38.084 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 24/50, Train Loss: 0.042203046524753936, Val Loss: 0.03716215783996241 +2024-07-23 07:41:42.859 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 25/50, Train Loss: 0.042208421223152146, Val Loss: 0.037547839911920684 +2024-07-23 07:41:47.660 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 26/50, Train Loss: 0.042177228776451484, Val Loss: 0.037237683364323204 +2024-07-23 07:41:52.430 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 27/50, Train Loss: 0.04216601472133054, Val Loss: 0.0374796879610845 +2024-07-23 07:41:57.203 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 28/50, Train Loss: 0.04216641141101718, Val Loss: 0.037638120300003464 +2024-07-23 07:42:01.954 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 29/50, Train Loss: 0.04226171305904595, Val Loss: 0.03778557953025614 +2024-07-23 07:42:06.733 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 30/50, Train Loss: 0.042069114296912, Val Loss: 0.03798212196145739 +2024-07-23 07:42:11.513 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 31/50, Train Loss: 0.04206221905322029, Val Loss: 0.03833028067435537 +2024-07-23 07:42:16.290 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 32/50, Train Loss: 0.042082230363471, Val Loss: 0.038116895407438275 +2024-07-23 07:42:21.086 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 33/50, Train Loss: 0.04226833049995968, Val Loss: 0.038545975035854746 +2024-07-23 07:42:25.876 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 34/50, Train Loss: 0.04206302545319956, Val Loss: 0.03931009769439697 +2024-07-23 07:42:30.641 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 35/50, Train Loss: 0.04198176874062763, Val Loss: 0.03977007477411202 +2024-07-23 07:42:35.415 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 36/50, Train Loss: 0.042137318559420794, Val Loss: 0.039691368064710075 +2024-07-23 07:42:40.218 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 37/50, Train Loss: 0.04194496593509729, Val Loss: 0.04295830817094871 +2024-07-23 07:42:44.993 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 38/50, Train Loss: 0.04217233035999995, Val Loss: 0.03955961854330131 +2024-07-23 07:42:49.749 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 39/50, Train Loss: 0.041941226997341104, Val Loss: 0.04859537647238799 +2024-07-23 07:42:54.588 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 40/50, Train Loss: 0.04223450858933994, Val Loss: 0.039019406054701125 +2024-07-23 07:42:59.372 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 41/50, Train Loss: 0.04213592703812397, Val Loss: 0.04157849928098065 +2024-07-23 07:43:04.185 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 42/50, Train Loss: 0.042179030975183614, Val Loss: 0.042789422401360105 +2024-07-23 07:43:08.965 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 43/50, Train Loss: 0.04205573414667295, Val Loss: 0.041507337508457046 +2024-07-23 07:43:13.760 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 44/50, Train Loss: 0.04195767028543811, Val Loss: 0.04666944561260087 +2024-07-23 07:43:18.592 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 45/50, Train Loss: 0.04198193109522645, Val Loss: 0.04269770889409951 +2024-07-23 07:43:23.375 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 46/50, Train Loss: 0.041737954651650325, Val Loss: 0.04627199439065797 +2024-07-23 07:43:28.199 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 47/50, Train Loss: 0.041981667620488085, Val Loss: 0.04601320938340255 +2024-07-23 07:43:32.984 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 48/50, Train Loss: 0.041700792427246385, Val Loss: 0.04162570121032851 +2024-07-23 07:43:37.796 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 49/50, Train Loss: 0.04184934068829394, Val Loss: 0.04310662858188152 +2024-07-23 07:43:42.592 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 50/50, Train Loss: 0.04181376642260987, Val Loss: 0.04623556876821178 +2024-07-23 07:43:42.592 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Fold 2, MAPE: 5.10% +2024-07-23 07:43:42.701 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_5001_10000_LSTM//train_f2_bgd_education_5001_10000_LSTM.png +2024-07-23 07:43:48.953 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 1/50, Train Loss: 0.04079500691657015, Val Loss: 0.03445083647966385 +2024-07-23 07:43:55.177 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 2/50, Train Loss: 0.040695046523599315, Val Loss: 0.034289220081908364 +2024-07-23 07:44:01.398 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 3/50, Train Loss: 0.040353620036257254, Val Loss: 0.03446262798139027 +2024-07-23 07:44:07.605 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 4/50, Train Loss: 0.04020828592905895, Val Loss: 0.03451268481356757 +2024-07-23 07:44:13.824 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 5/50, Train Loss: 0.040227540507376626, Val Loss: 0.03461926787027291 +2024-07-23 07:44:20.102 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 6/50, Train Loss: 0.04023920964422843, Val Loss: 0.034719348007014816 +2024-07-23 07:44:26.313 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 7/50, Train Loss: 0.04031134868482891, Val Loss: 0.03426364149366106 +2024-07-23 07:44:32.523 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 8/50, Train Loss: 0.04021843825634435, Val Loss: 0.03456732433821474 +2024-07-23 07:44:38.780 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 9/50, Train Loss: 0.04024205110270342, Val Loss: 0.03444996625185013 +2024-07-23 07:44:45.031 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 10/50, Train Loss: 0.04023544649801237, Val Loss: 0.03439588775592191 +2024-07-23 07:44:51.258 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 11/50, Train Loss: 0.04022002929030991, Val Loss: 0.03444394011582647 +2024-07-23 07:44:57.505 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 12/50, Train Loss: 0.04014383023269742, Val Loss: 0.034308479460222384 +2024-07-23 07:44:57.505 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:44:57.505 No tasks are waiting in the queue. +2024-07-23 07:44:57.505 4 steps have not started: end, model_scores, validate_model, log_model. +2024-07-23 07:45:03.745 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 13/50, Train Loss: 0.04002060774686954, Val Loss: 0.0345660004232611 +2024-07-23 07:45:09.972 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 14/50, Train Loss: 0.040918739164154304, Val Loss: 0.03432963165853705 +2024-07-23 07:45:16.237 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 15/50, Train Loss: 0.04043974705951677, Val Loss: 0.03438126764127186 +2024-07-23 07:45:22.477 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 16/50, Train Loss: 0.0402975475562991, Val Loss: 0.03451871345085757 +2024-07-23 07:45:28.698 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 17/50, Train Loss: 0.04028028556608039, Val Loss: 0.03474018972899232 +2024-07-23 07:45:34.982 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 18/50, Train Loss: 0.04024834591868541, Val Loss: 0.03460413478314876 +2024-07-23 07:45:41.224 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 19/50, Train Loss: 0.04023270176308189, Val Loss: 0.03439955423985209 +2024-07-23 07:45:47.446 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 20/50, Train Loss: 0.04014400651397036, Val Loss: 0.03446742572954723 +2024-07-23 07:45:53.679 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 21/50, Train Loss: 0.04002223439889846, Val Loss: 0.03434951848217419 +2024-07-23 07:45:59.919 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 22/50, Train Loss: 0.04000960547718213, Val Loss: 0.03440038599073887 +2024-07-23 07:46:06.182 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 23/50, Train Loss: 0.03997793596693509, Val Loss: 0.03459165601858071 +2024-07-23 07:46:12.433 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 24/50, Train Loss: 0.03988595406035725, Val Loss: 0.03447412396115916 +2024-07-23 07:46:18.730 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 25/50, Train Loss: 0.039815470469083715, Val Loss: 0.03457103776080268 +2024-07-23 07:46:24.965 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 26/50, Train Loss: 0.03977881708323098, Val Loss: 0.03450938846383776 +2024-07-23 07:46:31.209 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 27/50, Train Loss: 0.039733666886421416, Val Loss: 0.034418223691838126 +2024-07-23 07:46:37.465 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 28/50, Train Loss: 0.03973875852743927, Val Loss: 0.0344450622264828 +2024-07-23 07:46:43.728 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 29/50, Train Loss: 0.03979545787459226, Val Loss: 0.034580258546131 +2024-07-23 07:46:49.987 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 30/50, Train Loss: 0.03976865497370847, Val Loss: 0.03455377114670617 +2024-07-23 07:46:56.290 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 31/50, Train Loss: 0.03984264174489666, Val Loss: 0.03459019501294409 +2024-07-23 07:47:02.492 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 32/50, Train Loss: 0.039812621184819035, Val Loss: 0.03451526473675456 +2024-07-23 07:47:08.727 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 33/50, Train Loss: 0.03991866972056224, Val Loss: 0.03451295532286167 +2024-07-23 07:47:14.957 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 34/50, Train Loss: 0.0397787651971733, Val Loss: 0.0343826380691358 +2024-07-23 07:47:21.206 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 35/50, Train Loss: 0.039751447777417924, Val Loss: 0.034456870545234 +2024-07-23 07:47:27.424 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 36/50, Train Loss: 0.039782597864274495, Val Loss: 0.03436305969953537 +2024-07-23 07:47:33.688 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 37/50, Train Loss: 0.03979362481736022, Val Loss: 0.03444066675645965 +2024-07-23 07:47:39.927 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 38/50, Train Loss: 0.03968907828382451, Val Loss: 0.03442495396094663 +2024-07-23 07:47:46.195 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 39/50, Train Loss: 0.03973726372120621, Val Loss: 0.034347159149391314 +2024-07-23 07:47:52.455 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 40/50, Train Loss: 0.03972156777334728, Val Loss: 0.03451169771807534 +2024-07-23 07:47:58.704 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 41/50, Train Loss: 0.03977699387523768, Val Loss: 0.03456112130412033 +2024-07-23 07:48:04.972 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 42/50, Train Loss: 0.03965580813157901, Val Loss: 0.03403407936649663 +2024-07-23 07:48:11.210 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 43/50, Train Loss: 0.03969645737368855, Val Loss: 0.034444987986768996 +2024-07-23 07:48:17.521 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 44/50, Train Loss: 0.03958149030536628, Val Loss: 0.034035408071109226 +2024-07-23 07:48:23.792 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 45/50, Train Loss: 0.039651689488145944, Val Loss: 0.034251686824219564 +2024-07-23 07:48:30.069 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 46/50, Train Loss: 0.03953664503294787, Val Loss: 0.03405884270157133 +2024-07-23 07:48:36.373 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 47/50, Train Loss: 0.03967876994995762, Val Loss: 0.03432385953409331 +2024-07-23 07:48:42.608 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 48/50, Train Loss: 0.039559308064284086, Val Loss: 0.03409240256462778 +2024-07-23 07:48:48.854 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 49/50, Train Loss: 0.03961947761315236, Val Loss: 0.03446256603513445 +2024-07-23 07:48:55.075 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 50/50, Train Loss: 0.03957211143142885, Val Loss: 0.034458529097693306 +2024-07-23 07:48:55.076 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Fold 3, MAPE: 3.71% +2024-07-23 07:48:55.181 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_5001_10000_LSTM//train_f3_bgd_education_5001_10000_LSTM.png +2024-07-23 07:49:02.901 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 1/50, Train Loss: 0.038311349345777915, Val Loss: 0.042068661217178616 +2024-07-23 07:49:10.604 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 2/50, Train Loss: 0.038363169514756094, Val Loss: 0.043288273523960794 +2024-07-23 07:49:18.366 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 3/50, Train Loss: 0.03849139726110574, Val Loss: 0.0427882726171187 +2024-07-23 07:49:26.078 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 4/50, Train Loss: 0.03832889430695909, Val Loss: 0.041330715641379356 +2024-07-23 07:49:33.762 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 5/50, Train Loss: 0.03823702446259986, Val Loss: 0.04179349339434079 +2024-07-23 07:49:41.484 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 6/50, Train Loss: 0.03831507221677865, Val Loss: 0.04211914832038539 +2024-07-23 07:49:49.225 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 7/50, Train Loss: 0.03834099249764421, Val Loss: 0.042674354357378826 +2024-07-23 07:49:56.974 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 8/50, Train Loss: 0.03829037769558443, Val Loss: 0.04344752196754728 +2024-07-23 07:50:04.702 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 9/50, Train Loss: 0.0383022367290553, Val Loss: 0.04200671820768288 +2024-07-23 07:50:04.702 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:50:04.702 No tasks are waiting in the queue. +2024-07-23 07:50:04.702 4 steps have not started: end, model_scores, validate_model, log_model. +2024-07-23 07:50:12.372 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 10/50, Train Loss: 0.038190040170033086, Val Loss: 0.04200767337211541 +2024-07-23 07:50:20.086 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 11/50, Train Loss: 0.03819038984419285, Val Loss: 0.042967391972030915 +2024-07-23 07:50:27.788 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 12/50, Train Loss: 0.03810083021506153, Val Loss: 0.042235118789332254 +2024-07-23 07:50:35.529 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 13/50, Train Loss: 0.038175704054020605, Val Loss: 0.04308141863771847 +2024-07-23 07:50:43.242 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 14/50, Train Loss: 0.03825953409032917, Val Loss: 0.041916504661951744 +2024-07-23 07:50:50.974 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 15/50, Train Loss: 0.038219225603616104, Val Loss: 0.041989152027027944 +2024-07-23 07:50:58.686 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 16/50, Train Loss: 0.038185769874045906, Val Loss: 0.04281527080706188 +2024-07-23 07:51:06.452 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 17/50, Train Loss: 0.03813638431073605, Val Loss: 0.04246861221534865 +2024-07-23 07:51:14.132 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 18/50, Train Loss: 0.03815435966070013, Val Loss: 0.04579628227012498 +2024-07-23 07:51:21.896 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 19/50, Train Loss: 0.03834981691820183, Val Loss: 0.042798091524413655 +2024-07-23 07:51:29.630 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 20/50, Train Loss: 0.03817215439831388, Val Loss: 0.041976920036332944 +2024-07-23 07:51:37.351 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 21/50, Train Loss: 0.03806481757682973, Val Loss: 0.04239552170038223 +2024-07-23 07:51:45.087 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 22/50, Train Loss: 0.03806707893508947, Val Loss: 0.043413314808692254 +2024-07-23 07:51:52.808 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 23/50, Train Loss: 0.038127949761076904, Val Loss: 0.04554497317544052 +2024-07-23 07:52:00.558 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 24/50, Train Loss: 0.03835416012497126, Val Loss: 0.042236236961824554 +2024-07-23 07:52:08.281 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 25/50, Train Loss: 0.03814196185176742, Val Loss: 0.04138561960841928 +2024-07-23 07:52:16.024 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 26/50, Train Loss: 0.03807573083616879, Val Loss: 0.039942799455353194 +2024-07-23 07:52:23.740 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 27/50, Train Loss: 0.03811497335461365, Val Loss: 0.04262966657323497 +2024-07-23 07:52:31.463 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 28/50, Train Loss: 0.038234209063751946, Val Loss: 0.04075783565640449 +2024-07-23 07:52:39.205 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 29/50, Train Loss: 0.03797962457669535, Val Loss: 0.04160590427262442 +2024-07-23 07:52:46.967 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 30/50, Train Loss: 0.03788812190893738, Val Loss: 0.04245853078152452 +2024-07-23 07:52:54.709 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 31/50, Train Loss: 0.037953386522144424, Val Loss: 0.04028715012328965 +2024-07-23 07:53:02.416 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 32/50, Train Loss: 0.038143439346860195, Val Loss: 0.04821923955210618 +2024-07-23 07:53:10.166 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 33/50, Train Loss: 0.03815398537607371, Val Loss: 0.039750793097274646 +2024-07-23 07:53:17.906 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 34/50, Train Loss: 0.03788517300981557, Val Loss: 0.04071807164166655 +2024-07-23 07:53:25.715 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 35/50, Train Loss: 0.037996206218483805, Val Loss: 0.04541367159358093 +2024-07-23 07:53:33.411 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 36/50, Train Loss: 0.038050633223577476, Val Loss: 0.04425976643604892 +2024-07-23 07:53:41.143 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 37/50, Train Loss: 0.037879597202971065, Val Loss: 0.042773425259760446 +2024-07-23 07:53:48.891 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 38/50, Train Loss: 0.03801517378025014, Val Loss: 0.04324403910764626 +2024-07-23 07:53:56.670 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 39/50, Train Loss: 0.03780481879781375, Val Loss: 0.042750009255749837 +2024-07-23 07:54:04.412 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 40/50, Train Loss: 0.03788383937729844, Val Loss: 0.043346680594342095 +2024-07-23 07:54:12.195 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 41/50, Train Loss: 0.03790580736066418, Val Loss: 0.040907905729753634 +2024-07-23 07:54:19.957 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 42/50, Train Loss: 0.03784475215421668, Val Loss: 0.04463969160403524 +2024-07-23 07:54:27.737 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 43/50, Train Loss: 0.037804616690110204, Val Loss: 0.04155301664556776 +2024-07-23 07:54:35.479 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 44/50, Train Loss: 0.03783412682342118, Val Loss: 0.041423964340771946 +2024-07-23 07:54:43.204 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 45/50, Train Loss: 0.037714590264976706, Val Loss: 0.04078300377087934 +2024-07-23 07:54:50.947 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 46/50, Train Loss: 0.03777241395336801, Val Loss: 0.04056989199348859 +2024-07-23 07:54:58.711 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 47/50, Train Loss: 0.03767638966098599, Val Loss: 0.04494901725224086 +2024-07-23 07:55:06.482 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 48/50, Train Loss: 0.03786553098852265, Val Loss: 0.044453542307019235 +2024-07-23 07:55:06.482 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:55:06.482 No tasks are waiting in the queue. +2024-07-23 07:55:06.482 4 steps have not started: end, model_scores, validate_model, log_model. +2024-07-23 07:55:14.176 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 49/50, Train Loss: 0.0378336774549265, Val Loss: 0.0472774799913168 +2024-07-23 07:55:21.916 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Epoch 50/50, Train Loss: 0.03758946479694254, Val Loss: 0.049808256062013764 +2024-07-23 07:55:21.917 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Fold 4, MAPE: 7.01% +2024-07-23 07:55:22.010 [56/cross_validate_train/611 (pid 97273)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_education_5001_10000_LSTM//train_f4_bgd_education_5001_10000_LSTM.png +2024-07-23 07:55:26.355 [56/cross_validate_train/611 (pid 97273)] Task finished successfully. +2024-07-23 07:55:26.387 [56/model_scores/612 (pid 2135)] Task is starting. +2024-07-23 07:55:27.879 [56/model_scores/612 (pid 2135)] INFO:__main__:Average Train Loss across all folds: 0.041966721330466736 +2024-07-23 07:55:31.765 [56/model_scores/612 (pid 2135)] INFO:__main__:Average Validation Loss across all folds: 0.04700760976544449 +2024-07-23 07:55:31.765 [56/model_scores/612 (pid 2135)] INFO:__main__:Average MAPE across all folds: 5.66% +2024-07-23 07:55:31.766 [56/model_scores/612 (pid 2135)] Task finished successfully. +2024-07-23 07:55:31.803 [56/validate_model/613 (pid 2167)] Task is starting. +2024-07-23 07:55:33.283 [56/validate_model/613 (pid 2167)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 07:55:34.023 [56/validate_model/613 (pid 2167)] INFO:__main__:Test Set MAPE: 4.91% +2024-07-23 07:55:34.383 [56/validate_model/613 (pid 2167)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_education_5001_10000_LSTM//test_bgd_education_5001_10000_LSTM.png +2024-07-23 07:55:34.825 [56/validate_model/613 (pid 2167)] Task finished successfully. +2024-07-23 07:55:34.851 [56/log_model/614 (pid 2181)] Task is starting. +2024-07-23 07:55:36.340 [56/log_model/614 (pid 2181)] INFO:__main__:Logging model bgd_education_5001_10000_LSTM +2024-07-23 07:55:36.341 [56/log_model/614 (pid 2181)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_education_5001_10000_LSTM//bgd_education_5001_10000_LSTM.pth +2024-07-23 07:55:40.215 [56/log_model/614 (pid 2181)] Task finished successfully. +2024-07-23 07:55:40.244 [56/end/615 (pid 2213)] Task is starting. +2024-07-23 07:55:41.713 [56/end/615 (pid 2213)] INFO:__main__:Pipeline end. +2024-07-23 07:55:42.020 [56/end/615 (pid 2213)] Task finished successfully. +2024-07-23 07:55:42.021 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/scaler_bgd_education_5001_10000_LSTM.pkl b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/scaler_bgd_education_5001_10000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..5d0f23dca6e9d7ce94b6072389ad3dd10b7e9da1 --- /dev/null +++ b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/scaler_bgd_education_5001_10000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef9ece9b79b09029b9917e5924df3e994b9045925e111325c03b3391f3346c9 +size 557 diff --git a/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/test_bgd_education_5001_10000_LSTM.png b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/test_bgd_education_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..f72e1be5f7eefe2a591ee771b13db5bf4a6e769b Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/test_bgd_education_5001_10000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f0_bgd_education_5001_10000_LSTM.png b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f0_bgd_education_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..ec8e1fae6516cc57c77a0ece75f399292d5ff363 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f0_bgd_education_5001_10000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f1_bgd_education_5001_10000_LSTM.png b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f1_bgd_education_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..2689464f7a0033c7e28eb01db1f33648fb200ed3 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f1_bgd_education_5001_10000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f2_bgd_education_5001_10000_LSTM.png b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f2_bgd_education_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..87bc9367294373084a4a0d271036858eb86e4881 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f2_bgd_education_5001_10000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f3_bgd_education_5001_10000_LSTM.png b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f3_bgd_education_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..e3eb1278721a380e39f1c1d6732a0876d938edd3 Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f3_bgd_education_5001_10000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f4_bgd_education_5001_10000_LSTM.png b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f4_bgd_education_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..26ea6d1c52c5f6895a2d539ee10d77db811aa21b Binary files /dev/null and b/metaflow_models_360hrs/bgd_education_5001_10000_LSTM/train_f4_bgd_education_5001_10000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/bgd_lodging_residential_100001_200000_LSTM.pth b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/bgd_lodging_residential_100001_200000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..147da01b0becc70f827aa8e4dc851ad54547dbcd --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/bgd_lodging_residential_100001_200000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:410bf7f90b0c8d6d35a374f87dcb423f57f7ac53f8f40c7cf3a657b499dc7502 +size 47078 diff --git a/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/output.txt b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..4325b19fd86b4cec064f56d3ed932b1ff45fe13b --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/output.txt @@ -0,0 +1,759 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-23 00:27:59.007 Workflow starting (run-id 44): +2024-07-23 00:27:59.076 [44/start/435 (pid 37548)] Task is starting. +2024-07-23 00:28:00.581 [44/start/435 (pid 37548)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 00:28:00.871 [44/start/435 (pid 37548)] Task finished successfully. +2024-07-23 00:28:00.902 [44/ingest/436 (pid 37561)] Task is starting. +2024-07-23 00:28:02.368 [44/ingest/436 (pid 37561)] INFO:__main__:Fetching dataframe.. +2024-07-23 00:28:02.383 [44/ingest/436 (pid 37561)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 00:28:06.214 [44/ingest/436 (pid 37561)] Task finished successfully. +2024-07-23 00:28:06.242 [44/pick_2017_data/437 (pid 37585)] Task is starting. +2024-07-23 00:28:07.698 [44/pick_2017_data/437 (pid 37585)] INFO:__main__:Picking 2017 data.. +2024-07-23 00:28:08.003 [44/pick_2017_data/437 (pid 37585)] Task finished successfully. +2024-07-23 00:28:08.034 [44/fill_missing_data/438 (pid 37596)] Task is starting. +2024-07-23 00:28:09.512 [44/fill_missing_data/438 (pid 37596)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 00:28:09.517 [44/fill_missing_data/438 (pid 37596)] INFO:__main__:NaN counts per column: +2024-07-23 00:28:09.517 [44/fill_missing_data/438 (pid 37596)] INFO:__main__:Panther_lodging_Cora 11 +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] Cockatoo_lodging_Kyle 113 +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] Cockatoo_lodging_Lynne 113 +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] Cockatoo_lodging_Tessie 116 +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] Cockatoo_lodging_Elvia 113 +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] dtype: int64 +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] --- Logging error --- +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] Traceback (most recent call last): +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] msg = self.format(record) +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] return fmt.format(record) +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] record.message = record.getMessage() +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] msg = msg % self.args +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] TypeError: not all arguments converted during string formatting +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] Call stack: +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 00:28:10.105 [44/fill_missing_data/438 (pid 37596)] BGD_LinearFlow() +2024-07-23 00:28:10.105 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 00:28:10.105 [44/fill_missing_data/438 (pid 37596)] cli.main(self) +2024-07-23 00:28:10.105 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 00:28:10.105 [44/fill_missing_data/438 (pid 37596)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] return func(*args, **kwargs) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] return self.main(*args, **kwargs) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] rv = self.invoke(ctx) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] return callback(*args, **kwargs) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] return f(get_current_context(), *args, **kwargs) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] task.run_step( +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] self._exec_step_function(step_func) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] step_function() +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] self.missing_values = find_nan_counts(self.df) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] Arguments: (466,) +2024-07-23 00:28:10.107 [44/fill_missing_data/438 (pid 37596)] Task finished successfully. +2024-07-23 00:28:10.137 [44/find_median/439 (pid 37607)] Task is starting. +2024-07-23 00:28:11.614 [44/find_median/439 (pid 37607)] INFO:__main__:Computing and using median.. +2024-07-23 00:28:12.117 [44/find_median/439 (pid 37607)] Task finished successfully. +2024-07-23 00:28:12.146 [44/aggregate_data/440 (pid 37620)] Task is starting. +2024-07-23 00:28:13.602 [44/aggregate_data/440 (pid 37620)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 00:28:17.422 [44/aggregate_data/440 (pid 37620)] Task finished successfully. +2024-07-23 00:28:17.452 [44/split_data/441 (pid 37651)] Task is starting. +2024-07-23 00:28:18.925 [44/split_data/441 (pid 37651)] INFO:__main__:Splitting data into test and train... +2024-07-23 00:28:22.746 [44/split_data/441 (pid 37651)] Task finished successfully. +2024-07-23 00:28:22.774 [44/make_x_y/442 (pid 37684)] Task is starting. +2024-07-23 00:28:24.591 [44/make_x_y/442 (pid 37684)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 00:28:24.981 [44/make_x_y/442 (pid 37684)] Shape of y_train: (6648, 1) +2024-07-23 00:28:24.981 [44/make_x_y/442 (pid 37684)] Shape of X_test: (1392, 360, 1) +2024-07-23 00:28:24.981 [44/make_x_y/442 (pid 37684)] Shape of y_test: (1392, 1) +2024-07-23 00:28:24.982 [44/make_x_y/442 (pid 37684)] Task finished successfully. +2024-07-23 00:28:25.015 [44/cross_validate_train/443 (pid 37695)] Task is starting. +2024-07-23 00:28:26.475 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Creating bgd_lodging_residential_100001_200000_LSTM +2024-07-23 00:28:26.476 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Performing cross validation.. +2024-07-23 00:28:28.958 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 1/50, Train Loss: 0.3459966642516, Val Loss: 0.19717885681561062 +2024-07-23 00:28:30.854 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 2/50, Train Loss: 0.20126631472791945, Val Loss: 0.1890545572553362 +2024-07-23 00:28:32.769 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 3/50, Train Loss: 0.18677168275628772, Val Loss: 0.177579356942858 +2024-07-23 00:28:34.713 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 4/50, Train Loss: 0.17120065561362674, Val Loss: 0.15639394564288003 +2024-07-23 00:28:36.643 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 5/50, Train Loss: 0.13405560084751675, Val Loss: 0.10019257313438824 +2024-07-23 00:28:38.567 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 6/50, Train Loss: 0.10900031455925532, Val Loss: 0.09551700992243631 +2024-07-23 00:28:40.496 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 7/50, Train Loss: 0.09722104391881398, Val Loss: 0.08774374648928643 +2024-07-23 00:28:42.438 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 8/50, Train Loss: 0.09533371818917138, Val Loss: 0.08571664190718106 +2024-07-23 00:28:44.381 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 9/50, Train Loss: 0.09295136438948767, Val Loss: 0.08417142629623413 +2024-07-23 00:28:46.335 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 10/50, Train Loss: 0.09087197929620743, Val Loss: 0.08267553661550794 +2024-07-23 00:28:48.263 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 11/50, Train Loss: 0.08851655540721758, Val Loss: 0.08016666748694011 +2024-07-23 00:28:50.180 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 12/50, Train Loss: 0.08656442750777517, Val Loss: 0.07826668598822185 +2024-07-23 00:28:52.122 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 13/50, Train Loss: 0.0853209162397044, Val Loss: 0.07632108437163489 +2024-07-23 00:28:54.045 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 14/50, Train Loss: 0.08323214181831905, Val Loss: 0.07433736994862557 +2024-07-23 00:28:55.977 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 15/50, Train Loss: 0.08000477658850806, Val Loss: 0.07271936503904207 +2024-07-23 00:28:57.902 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 16/50, Train Loss: 0.07913128520761217, Val Loss: 0.07054115161299705 +2024-07-23 00:28:59.837 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 17/50, Train Loss: 0.0771119397665773, Val Loss: 0.06956669124109405 +2024-07-23 00:29:01.825 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 18/50, Train Loss: 0.07513364787612642, Val Loss: 0.06610727682709694 +2024-07-23 00:29:03.777 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 19/50, Train Loss: 0.07263460329600743, Val Loss: 0.0685857079923153 +2024-07-23 00:29:05.727 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 20/50, Train Loss: 0.06976895374911173, Val Loss: 0.06006059731755938 +2024-07-23 00:29:07.688 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 21/50, Train Loss: 0.06419456505349704, Val Loss: 0.058399144666535514 +2024-07-23 00:29:09.634 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 22/50, Train Loss: 0.06388453181300845, Val Loss: 0.05355039787079607 +2024-07-23 00:29:11.587 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 23/50, Train Loss: 0.06129963791796139, Val Loss: 0.0512492158051048 +2024-07-23 00:29:13.559 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 24/50, Train Loss: 0.060819382752691, Val Loss: 0.05910225925701005 +2024-07-23 00:29:15.517 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 25/50, Train Loss: 0.05996984498841422, Val Loss: 0.048420858755707744 +2024-07-23 00:29:17.469 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 26/50, Train Loss: 0.05632462602640901, Val Loss: 0.05293248577841691 +2024-07-23 00:29:19.424 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 27/50, Train Loss: 0.05660305214779718, Val Loss: 0.05032824123544352 +2024-07-23 00:29:21.390 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 28/50, Train Loss: 0.05604915209114551, Val Loss: 0.047452818868415694 +2024-07-23 00:29:23.354 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 29/50, Train Loss: 0.0543449802590268, Val Loss: 0.04979367431785379 +2024-07-23 00:29:25.311 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 30/50, Train Loss: 0.05455825233033725, Val Loss: 0.04660781430346625 +2024-07-23 00:29:27.263 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 31/50, Train Loss: 0.05263397651059287, Val Loss: 0.04788900837302208 +2024-07-23 00:29:29.220 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 32/50, Train Loss: 0.05326050030333655, Val Loss: 0.04771836261664118 +2024-07-23 00:29:31.169 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 33/50, Train Loss: 0.05250756958765643, Val Loss: 0.04644756114908627 +2024-07-23 00:29:33.130 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 34/50, Train Loss: 0.05166574759142739, Val Loss: 0.047828546432512144 +2024-07-23 00:29:35.095 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 35/50, Train Loss: 0.05239212481038911, Val Loss: 0.046977909122194565 +2024-07-23 00:29:37.071 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 36/50, Train Loss: 0.05107432923146656, Val Loss: 0.04797105294253145 +2024-07-23 00:29:39.021 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 37/50, Train Loss: 0.05298545413783618, Val Loss: 0.04551001015518393 +2024-07-23 00:29:40.990 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 38/50, Train Loss: 0.0509728872350284, Val Loss: 0.04990212411752769 +2024-07-23 00:29:42.945 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 39/50, Train Loss: 0.05166038242833955, Val Loss: 0.046929628029465674 +2024-07-23 00:29:44.911 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 40/50, Train Loss: 0.05051049041960921, Val Loss: 0.047989590359585624 +2024-07-23 00:29:46.890 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 41/50, Train Loss: 0.05264822372368404, Val Loss: 0.049589045345783234 +2024-07-23 00:29:48.830 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 42/50, Train Loss: 0.0507182491677148, Val Loss: 0.05263057702354022 +2024-07-23 00:29:50.793 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 43/50, Train Loss: 0.05411679946950504, Val Loss: 0.04728133061102458 +2024-07-23 00:29:52.756 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 44/50, Train Loss: 0.04952931297676904, Val Loss: 0.04514156846063477 +2024-07-23 00:29:54.734 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 45/50, Train Loss: 0.05097143740526267, Val Loss: 0.04834979149912085 +2024-07-23 00:29:56.700 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 46/50, Train Loss: 0.049824719769614084, Val Loss: 0.049261392333677836 +2024-07-23 00:29:58.643 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 47/50, Train Loss: 0.05345504837376731, Val Loss: 0.049406677590949195 +2024-07-23 00:30:00.612 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 48/50, Train Loss: 0.04943416853036199, Val Loss: 0.04788824798805373 +2024-07-23 00:30:02.569 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 49/50, Train Loss: 0.0522900392966611, Val Loss: 0.04810332501573222 +2024-07-23 00:30:04.542 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 50/50, Train Loss: 0.048642898936356815, Val Loss: 0.046126022349510874 +2024-07-23 00:30:04.543 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Fold 0, MAPE: 4.10% +2024-07-23 00:30:04.860 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_100001_200000_LSTM//train_f0_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-23 00:30:08.349 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 1/50, Train Loss: 0.048125023075512474, Val Loss: 0.05187878417117255 +2024-07-23 00:30:11.842 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 2/50, Train Loss: 0.04838719429182155, Val Loss: 0.04967119864055088 +2024-07-23 00:30:15.282 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 3/50, Train Loss: 0.048835647265825954, Val Loss: 0.047828744245427 +2024-07-23 00:30:18.711 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 4/50, Train Loss: 0.04736619676862444, Val Loss: 0.04780764664922442 +2024-07-23 00:30:22.130 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 5/50, Train Loss: 0.048425260558724405, Val Loss: 0.04608221181801387 +2024-07-23 00:30:25.569 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 6/50, Train Loss: 0.04703062075589384, Val Loss: 0.04521575761692864 +2024-07-23 00:30:29.002 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 7/50, Train Loss: 0.04633225657578025, Val Loss: 0.044581688887306625 +2024-07-23 00:30:32.444 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 8/50, Train Loss: 0.046656493283808234, Val Loss: 0.0468702392918723 +2024-07-23 00:30:35.876 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 9/50, Train Loss: 0.046676569378801755, Val Loss: 0.047581260544913156 +2024-07-23 00:30:39.292 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 10/50, Train Loss: 0.04666482423033033, Val Loss: 0.04511961920985154 +2024-07-23 00:30:42.732 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 11/50, Train Loss: 0.046332591293113574, Val Loss: 0.04536828489175865 +2024-07-23 00:30:46.172 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 12/50, Train Loss: 0.04634837486914226, Val Loss: 0.04417269969625132 +2024-07-23 00:30:49.582 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 13/50, Train Loss: 0.046238840131887365, Val Loss: 0.04426424891820976 +2024-07-23 00:30:52.998 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 14/50, Train Loss: 0.04594779395099197, Val Loss: 0.04615372344851494 +2024-07-23 00:30:56.423 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 15/50, Train Loss: 0.04640298507043294, Val Loss: 0.050834930901016505 +2024-07-23 00:30:59.843 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 16/50, Train Loss: 0.04672510799552713, Val Loss: 0.044301778344171386 +2024-07-23 00:31:03.280 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 17/50, Train Loss: 0.04575531602438007, Val Loss: 0.04566175187272685 +2024-07-23 00:31:06.694 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 18/50, Train Loss: 0.04618488222892795, Val Loss: 0.04625377463442939 +2024-07-23 00:31:10.104 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 19/50, Train Loss: 0.04603456359888826, Val Loss: 0.04428253104644162 +2024-07-23 00:31:13.570 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 20/50, Train Loss: 0.04586769502077784, Val Loss: 0.04685455342488629 +2024-07-23 00:31:17.021 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 21/50, Train Loss: 0.04573421345225402, Val Loss: 0.045002589906964985 +2024-07-23 00:31:20.472 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 22/50, Train Loss: 0.045805558216358934, Val Loss: 0.0485201963356563 +2024-07-23 00:31:23.970 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 23/50, Train Loss: 0.045896324887871744, Val Loss: 0.04375508832080024 +2024-07-23 00:31:27.399 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 24/50, Train Loss: 0.04557081665843725, Val Loss: 0.046757551176207404 +2024-07-23 00:31:30.846 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 25/50, Train Loss: 0.0457221794873476, Val Loss: 0.04383005672799689 +2024-07-23 00:31:34.272 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 26/50, Train Loss: 0.04547567040260349, Val Loss: 0.04513187823551042 +2024-07-23 00:31:37.705 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 27/50, Train Loss: 0.04558333842349904, Val Loss: 0.04750159702130726 +2024-07-23 00:31:41.136 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 28/50, Train Loss: 0.04591944321457829, Val Loss: 0.04511636745716844 +2024-07-23 00:31:44.546 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 29/50, Train Loss: 0.04559939820319414, Val Loss: 0.04543512538075447 +2024-07-23 00:31:47.996 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 30/50, Train Loss: 0.04559376138661589, Val Loss: 0.04680884379361357 +2024-07-23 00:31:51.407 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 31/50, Train Loss: 0.045408741730664455, Val Loss: 0.0446627039462328 +2024-07-23 00:31:54.853 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 32/50, Train Loss: 0.04567307470632451, Val Loss: 0.0440082173794508 +2024-07-23 00:31:58.253 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 33/50, Train Loss: 0.04541890607880694, Val Loss: 0.045273695939353535 +2024-07-23 00:32:01.670 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 34/50, Train Loss: 0.04525692835450172, Val Loss: 0.044280660578182765 +2024-07-23 00:32:05.094 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 35/50, Train Loss: 0.04554784002580813, Val Loss: 0.04443085997232369 +2024-07-23 00:32:08.508 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 36/50, Train Loss: 0.045556954161397045, Val Loss: 0.04605731304202761 +2024-07-23 00:32:11.927 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 37/50, Train Loss: 0.045328484555440286, Val Loss: 0.046232962741383485 +2024-07-23 00:32:15.361 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 38/50, Train Loss: 0.04537722670606204, Val Loss: 0.04432756437786988 +2024-07-23 00:32:18.755 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 39/50, Train Loss: 0.045576396132154126, Val Loss: 0.044263924392206326 +2024-07-23 00:32:22.181 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 40/50, Train Loss: 0.04502438107239348, Val Loss: 0.04491789833243404 +2024-07-23 00:32:25.637 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 41/50, Train Loss: 0.045409816184214184, Val Loss: 0.04489329952214446 +2024-07-23 00:32:29.057 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 42/50, Train Loss: 0.045558071642049724, Val Loss: 0.04422429560550622 +2024-07-23 00:32:32.505 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 43/50, Train Loss: 0.04535350158278431, Val Loss: 0.04610386724982943 +2024-07-23 00:32:35.931 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 44/50, Train Loss: 0.04536954731281315, Val Loss: 0.04283727458012956 +2024-07-23 00:32:39.345 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 45/50, Train Loss: 0.04504685644060373, Val Loss: 0.043197742822979175 +2024-07-23 00:32:42.745 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 46/50, Train Loss: 0.045421269509409154, Val Loss: 0.04411530537264688 +2024-07-23 00:32:46.195 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 47/50, Train Loss: 0.04564294085970947, Val Loss: 0.04485854365463768 +2024-07-23 00:32:49.590 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 48/50, Train Loss: 0.045178107571388994, Val Loss: 0.04362873389784779 +2024-07-23 00:32:53.001 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 49/50, Train Loss: 0.04551337952060359, Val Loss: 0.04417115058749914 +2024-07-23 00:32:56.462 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 50/50, Train Loss: 0.045206597979579655, Val Loss: 0.04395381145711456 +2024-07-23 00:32:56.462 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Fold 1, MAPE: 4.36% +2024-07-23 00:32:56.576 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_100001_200000_LSTM//train_f1_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-23 00:33:01.465 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 1/50, Train Loss: 0.04563181738082606, Val Loss: 0.028181830500917774 +2024-07-23 00:33:01.465 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:33:01.465 No tasks are waiting in the queue. +2024-07-23 00:33:01.465 4 steps have not started: model_scores, end, log_model, validate_model. +2024-07-23 00:33:06.328 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 2/50, Train Loss: 0.048204880458517715, Val Loss: 0.030228056838469845 +2024-07-23 00:33:11.190 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 3/50, Train Loss: 0.04622053919145121, Val Loss: 0.028475774877837725 +2024-07-23 00:33:16.032 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 4/50, Train Loss: 0.045985995299326114, Val Loss: 0.02798993034022195 +2024-07-23 00:33:20.897 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 5/50, Train Loss: 0.045613035291003495, Val Loss: 0.02795763672994716 +2024-07-23 00:33:25.802 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 6/50, Train Loss: 0.045678996660101875, Val Loss: 0.02801465533141579 +2024-07-23 00:33:30.688 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 7/50, Train Loss: 0.04564240379617191, Val Loss: 0.02808126930945686 +2024-07-23 00:33:35.549 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 8/50, Train Loss: 0.04593515232241211, Val Loss: 0.027965391161186355 +2024-07-23 00:33:40.394 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 9/50, Train Loss: 0.04516439791768789, Val Loss: 0.028107623915587153 +2024-07-23 00:33:45.259 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 10/50, Train Loss: 0.045481853831845984, Val Loss: 0.028177350147494246 +2024-07-23 00:33:50.101 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 11/50, Train Loss: 0.04494714227397568, Val Loss: 0.028252054937183857 +2024-07-23 00:33:54.936 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 12/50, Train Loss: 0.04552404027288923, Val Loss: 0.02814122401177883 +2024-07-23 00:33:59.815 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 13/50, Train Loss: 0.045060377138165325, Val Loss: 0.028212318356548038 +2024-07-23 00:34:04.691 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 14/50, Train Loss: 0.045027476036921144, Val Loss: 0.0282847011461854 +2024-07-23 00:34:09.526 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 15/50, Train Loss: 0.044814895175827235, Val Loss: 0.028300270877246347 +2024-07-23 00:34:14.372 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 16/50, Train Loss: 0.04536137520335615, Val Loss: 0.028238878904708792 +2024-07-23 00:34:19.200 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 17/50, Train Loss: 0.04495350977119345, Val Loss: 0.028213094999747616 +2024-07-23 00:34:24.043 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 18/50, Train Loss: 0.044943305323473536, Val Loss: 0.028258653756763254 +2024-07-23 00:34:28.885 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 19/50, Train Loss: 0.04427362690106607, Val Loss: 0.028571424180907863 +2024-07-23 00:34:33.791 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 20/50, Train Loss: 0.045293990683813505, Val Loss: 0.028238630374627455 +2024-07-23 00:34:38.643 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 21/50, Train Loss: 0.04444822749624459, Val Loss: 0.028295641472297055 +2024-07-23 00:34:43.481 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 22/50, Train Loss: 0.04477745066217791, Val Loss: 0.02839238593088729 +2024-07-23 00:34:48.325 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 23/50, Train Loss: 0.04498778108973056, Val Loss: 0.02837652699755771 +2024-07-23 00:34:53.145 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 24/50, Train Loss: 0.044422654748464435, Val Loss: 0.028332590205328804 +2024-07-23 00:34:57.997 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 25/50, Train Loss: 0.04463055382411067, Val Loss: 0.02834156256701265 +2024-07-23 00:35:02.853 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 26/50, Train Loss: 0.044687080779112875, Val Loss: 0.0284555068771754 +2024-07-23 00:35:07.745 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 27/50, Train Loss: 0.04453857361267392, Val Loss: 0.028534179446952683 +2024-07-23 00:35:12.667 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 28/50, Train Loss: 0.04469570542614047, Val Loss: 0.02835702302732638 +2024-07-23 00:35:17.499 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 29/50, Train Loss: 0.04421047135614432, Val Loss: 0.02847007050045899 +2024-07-23 00:35:22.363 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 30/50, Train Loss: 0.04475883705219111, Val Loss: 0.028490667710346834 +2024-07-23 00:35:27.203 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 31/50, Train Loss: 0.044595153232176714, Val Loss: 0.028549940298710552 +2024-07-23 00:35:32.033 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 32/50, Train Loss: 0.04424927552015735, Val Loss: 0.02861483766298209 +2024-07-23 00:35:36.866 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 33/50, Train Loss: 0.04450549679593398, Val Loss: 0.02861975378223828 +2024-07-23 00:35:41.736 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 34/50, Train Loss: 0.04416245729841579, Val Loss: 0.0286629194393754 +2024-07-23 00:35:46.612 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 35/50, Train Loss: 0.0443468471415914, Val Loss: 0.02859086146844285 +2024-07-23 00:35:51.472 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 36/50, Train Loss: 0.044403207139112055, Val Loss: 0.028525405856115477 +2024-07-23 00:35:56.316 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 37/50, Train Loss: 0.04407454570397162, Val Loss: 0.028558507987431116 +2024-07-23 00:36:01.203 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 38/50, Train Loss: 0.04464528430253267, Val Loss: 0.028608465434185097 +2024-07-23 00:36:06.069 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 39/50, Train Loss: 0.04422004410746293, Val Loss: 0.02886324737753187 +2024-07-23 00:36:10.926 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 40/50, Train Loss: 0.04417961663029228, Val Loss: 0.028871055000594684 +2024-07-23 00:36:15.848 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 41/50, Train Loss: 0.043864625568788215, Val Loss: 0.028848230173545226 +2024-07-23 00:36:20.748 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 42/50, Train Loss: 0.04410454586972124, Val Loss: 0.02892606058823211 +2024-07-23 00:36:25.617 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 43/50, Train Loss: 0.04410852227682391, Val Loss: 0.02904831434467009 +2024-07-23 00:36:30.490 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 44/50, Train Loss: 0.04408602319801083, Val Loss: 0.02908123252647264 +2024-07-23 00:36:35.366 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 45/50, Train Loss: 0.04408753890759097, Val Loss: 0.029380786791443826 +2024-07-23 00:36:40.215 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 46/50, Train Loss: 0.044255394891549185, Val Loss: 0.028861249637390885 +2024-07-23 00:36:45.130 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 47/50, Train Loss: 0.0434409615297157, Val Loss: 0.02933151913540704 +2024-07-23 00:36:50.022 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 48/50, Train Loss: 0.04381891993734126, Val Loss: 0.02885977141559124 +2024-07-23 00:36:54.936 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 49/50, Train Loss: 0.04368876456283033, Val Loss: 0.028960262797772883 +2024-07-23 00:36:59.846 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 50/50, Train Loss: 0.04395151283377065, Val Loss: 0.028847417714340347 +2024-07-23 00:36:59.847 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Fold 2, MAPE: 3.87% +2024-07-23 00:36:59.951 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_100001_200000_LSTM//train_f2_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-23 00:37:06.323 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 1/50, Train Loss: 0.03913688749450145, Val Loss: 0.03811882260654654 +2024-07-23 00:37:12.649 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 2/50, Train Loss: 0.03850714191660392, Val Loss: 0.03964627475610801 +2024-07-23 00:37:19.008 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 3/50, Train Loss: 0.039213833432617806, Val Loss: 0.03851606728775161 +2024-07-23 00:37:25.393 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 4/50, Train Loss: 0.03864560561696831, Val Loss: 0.03896697057144982 +2024-07-23 00:37:31.727 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 5/50, Train Loss: 0.03889034817785882, Val Loss: 0.03856667620795114 +2024-07-23 00:37:38.052 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 6/50, Train Loss: 0.03871287054402365, Val Loss: 0.0386680715318237 +2024-07-23 00:37:44.351 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 7/50, Train Loss: 0.03868008662926422, Val Loss: 0.038327598039593014 +2024-07-23 00:37:50.663 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 8/50, Train Loss: 0.038873849945853085, Val Loss: 0.0375462820487363 +2024-07-23 00:37:57.028 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 9/50, Train Loss: 0.03825281684373995, Val Loss: 0.03734073165271964 +2024-07-23 00:38:03.364 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 10/50, Train Loss: 0.03814052221559578, Val Loss: 0.037613557598420555 +2024-07-23 00:38:03.364 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:38:03.364 No tasks are waiting in the queue. +2024-07-23 00:38:03.364 4 steps have not started: model_scores, end, log_model, validate_model. +2024-07-23 00:38:09.688 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 11/50, Train Loss: 0.03839854231412462, Val Loss: 0.037329256587794846 +2024-07-23 00:38:16.037 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 12/50, Train Loss: 0.038242821172951795, Val Loss: 0.038209121195333345 +2024-07-23 00:38:22.351 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 13/50, Train Loss: 0.03842256354878275, Val Loss: 0.03802446834743023 +2024-07-23 00:38:28.702 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 14/50, Train Loss: 0.038388372914825414, Val Loss: 0.03715444324272019 +2024-07-23 00:38:35.069 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 15/50, Train Loss: 0.038108240746015265, Val Loss: 0.03731174080499581 +2024-07-23 00:38:41.389 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 16/50, Train Loss: 0.038448096487483534, Val Loss: 0.03813508791582925 +2024-07-23 00:38:47.719 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 17/50, Train Loss: 0.0384106742311939, Val Loss: 0.03740949189024312 +2024-07-23 00:38:54.042 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 18/50, Train Loss: 0.03799698436833757, Val Loss: 0.03865609589431967 +2024-07-23 00:39:00.390 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 19/50, Train Loss: 0.03832870196524284, Val Loss: 0.036938180774450304 +2024-07-23 00:39:06.752 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 20/50, Train Loss: 0.03814463411866546, Val Loss: 0.03786630678389754 +2024-07-23 00:39:13.094 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 21/50, Train Loss: 0.03816663808852649, Val Loss: 0.03800925027046885 +2024-07-23 00:39:19.461 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 22/50, Train Loss: 0.038277320423089775, Val Loss: 0.03698077696774687 +2024-07-23 00:39:25.807 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 23/50, Train Loss: 0.03795412382472762, Val Loss: 0.03736210923109736 +2024-07-23 00:39:32.156 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 24/50, Train Loss: 0.038108073322357036, Val Loss: 0.037196361433182445 +2024-07-23 00:39:38.498 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 25/50, Train Loss: 0.037909060783630655, Val Loss: 0.03779072639133249 +2024-07-23 00:39:44.850 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 26/50, Train Loss: 0.038092382480021864, Val Loss: 0.03722196865294661 +2024-07-23 00:39:51.222 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 27/50, Train Loss: 0.03802251721323609, Val Loss: 0.03665194820080485 +2024-07-23 00:39:57.560 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 28/50, Train Loss: 0.03780738314573499, Val Loss: 0.03700968069689614 +2024-07-23 00:40:03.961 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 29/50, Train Loss: 0.03775968818704216, Val Loss: 0.03764887430838176 +2024-07-23 00:40:10.277 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 30/50, Train Loss: 0.03798016822702593, Val Loss: 0.036945701869470736 +2024-07-23 00:40:16.620 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 31/50, Train Loss: 0.03801593561020258, Val Loss: 0.037129415518471175 +2024-07-23 00:40:22.957 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 32/50, Train Loss: 0.038152811284974324, Val Loss: 0.037600230744906836 +2024-07-23 00:40:29.317 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 33/50, Train Loss: 0.038091443204354467, Val Loss: 0.036934433983904974 +2024-07-23 00:40:35.725 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 34/50, Train Loss: 0.038038986353136656, Val Loss: 0.03726142070123128 +2024-07-23 00:40:42.096 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 35/50, Train Loss: 0.037948589591081626, Val Loss: 0.03702503245856081 +2024-07-23 00:40:48.455 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 36/50, Train Loss: 0.03803223787585823, Val Loss: 0.03765773810446262 +2024-07-23 00:40:54.830 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 37/50, Train Loss: 0.0382324796531805, Val Loss: 0.03727139516600541 +2024-07-23 00:41:01.147 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 38/50, Train Loss: 0.037837952623317996, Val Loss: 0.038380443091903416 +2024-07-23 00:41:07.486 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 39/50, Train Loss: 0.03846784397664902, Val Loss: 0.03626852086079972 +2024-07-23 00:41:13.866 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 40/50, Train Loss: 0.03764138426363683, Val Loss: 0.03731704902436052 +2024-07-23 00:41:20.228 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 41/50, Train Loss: 0.03785027432918763, Val Loss: 0.03717885544257504 +2024-07-23 00:41:26.609 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 42/50, Train Loss: 0.03774335158975433, Val Loss: 0.036626565775700975 +2024-07-23 00:41:33.006 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 43/50, Train Loss: 0.0375016328724597, Val Loss: 0.03696119779986995 +2024-07-23 00:41:39.359 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 44/50, Train Loss: 0.037509304216707784, Val Loss: 0.03691447962607656 +2024-07-23 00:41:45.783 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 45/50, Train Loss: 0.037393094040453434, Val Loss: 0.03681880155844348 +2024-07-23 00:41:52.160 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 46/50, Train Loss: 0.03707850223286546, Val Loss: 0.036203949525952336 +2024-07-23 00:41:58.529 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 47/50, Train Loss: 0.037250075201175625, Val Loss: 0.03689475416072777 +2024-07-23 00:42:04.933 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 48/50, Train Loss: 0.03741806445361899, Val Loss: 0.03593347902808871 +2024-07-23 00:42:11.284 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 49/50, Train Loss: 0.036950821680077114, Val Loss: 0.03562356276171548 +2024-07-23 00:42:17.700 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 50/50, Train Loss: 0.037162478041681025, Val Loss: 0.035697768894689424 +2024-07-23 00:42:17.700 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Fold 3, MAPE: 4.12% +2024-07-23 00:42:17.795 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_100001_200000_LSTM//train_f3_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-23 00:42:25.659 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 1/50, Train Loss: 0.03666004119976156, Val Loss: 0.042794304979699 +2024-07-23 00:42:33.511 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 2/50, Train Loss: 0.036305359682475016, Val Loss: 0.042549908959439824 +2024-07-23 00:42:41.345 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 3/50, Train Loss: 0.03630585266791027, Val Loss: 0.043647401886326924 +2024-07-23 00:42:49.228 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 4/50, Train Loss: 0.03628953136289599, Val Loss: 0.04303287895662444 +2024-07-23 00:42:57.131 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 5/50, Train Loss: 0.03591569563395333, Val Loss: 0.042793556728533334 +2024-07-23 00:43:04.977 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 6/50, Train Loss: 0.03606858931417609, Val Loss: 0.04324697181582451 +2024-07-23 00:43:04.978 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:43:04.978 No tasks are waiting in the queue. +2024-07-23 00:43:04.978 4 steps have not started: model_scores, end, log_model, validate_model. +2024-07-23 00:43:12.868 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 7/50, Train Loss: 0.03597789355714259, Val Loss: 0.043374264878886085 +2024-07-23 00:43:20.754 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 8/50, Train Loss: 0.03583691806007905, Val Loss: 0.042552628368139264 +2024-07-23 00:43:28.746 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 9/50, Train Loss: 0.03587858087179818, Val Loss: 0.042739901478801454 +2024-07-23 00:43:36.762 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 10/50, Train Loss: 0.03616865440111222, Val Loss: 0.04289310308439391 +2024-07-23 00:43:44.664 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 11/50, Train Loss: 0.03610865537334105, Val Loss: 0.043429393534149444 +2024-07-23 00:43:52.553 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 12/50, Train Loss: 0.03579923383698895, Val Loss: 0.0433408511536462 +2024-07-23 00:44:00.475 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 13/50, Train Loss: 0.035615896720482015, Val Loss: 0.042693551257252695 +2024-07-23 00:44:08.386 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 14/50, Train Loss: 0.035503020622478475, Val Loss: 0.04346771341349397 +2024-07-23 00:44:16.301 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 15/50, Train Loss: 0.03576464057718029, Val Loss: 0.04267599646534238 +2024-07-23 00:44:24.199 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 16/50, Train Loss: 0.03561441933779025, Val Loss: 0.043807605015380044 +2024-07-23 00:44:32.108 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 17/50, Train Loss: 0.03558556166552435, Val Loss: 0.042922422609158926 +2024-07-23 00:44:40.006 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 18/50, Train Loss: 0.03562628191456884, Val Loss: 0.04292015736656529 +2024-07-23 00:44:47.944 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 19/50, Train Loss: 0.0360266180741119, Val Loss: 0.042576333986861364 +2024-07-23 00:44:55.862 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 20/50, Train Loss: 0.03510540611399659, Val Loss: 0.04246381723455021 +2024-07-23 00:45:03.787 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 21/50, Train Loss: 0.035077754873782396, Val Loss: 0.04234218182308333 +2024-07-23 00:45:11.715 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 22/50, Train Loss: 0.03549975139656286, Val Loss: 0.04290845234479223 +2024-07-23 00:45:19.628 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 23/50, Train Loss: 0.03500484193450418, Val Loss: 0.04315986686519214 +2024-07-23 00:45:27.591 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 24/50, Train Loss: 0.03521216874299892, Val Loss: 0.041839727919016564 +2024-07-23 00:45:35.528 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 25/50, Train Loss: 0.03589454545350424, Val Loss: 0.04339671635201999 +2024-07-23 00:45:43.567 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 26/50, Train Loss: 0.03596090684355847, Val Loss: 0.04377324144755091 +2024-07-23 00:45:51.522 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 27/50, Train Loss: 0.03539362835066243, Val Loss: 0.04237906453864915 +2024-07-23 00:45:59.453 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 28/50, Train Loss: 0.03515797538747047, Val Loss: 0.0415542120380061 +2024-07-23 00:46:07.417 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 29/50, Train Loss: 0.03567908614895296, Val Loss: 0.04363565327865737 +2024-07-23 00:46:15.387 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 30/50, Train Loss: 0.035327373072505, Val Loss: 0.04180121384561062 +2024-07-23 00:46:23.344 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 31/50, Train Loss: 0.03535079732323172, Val Loss: 0.0417839024748121 +2024-07-23 00:49:40.589 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 32/50, Train Loss: 0.035078786388467786, Val Loss: 0.042111227129186905 +2024-07-23 00:49:40.589 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:49:40.589 No tasks are waiting in the queue. +2024-07-23 00:49:40.589 4 steps have not started: model_scores, end, log_model, validate_model. +2024-07-23 00:49:48.608 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 33/50, Train Loss: 0.03502045060111873, Val Loss: 0.042538289725780484 +2024-07-23 00:49:56.592 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 34/50, Train Loss: 0.034851934557416656, Val Loss: 0.04168435462883541 +2024-07-23 00:50:04.580 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 35/50, Train Loss: 0.03521515301096885, Val Loss: 0.0423871850328786 +2024-07-23 00:50:12.561 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 36/50, Train Loss: 0.03533992522406852, Val Loss: 0.04179749158876283 +2024-07-23 00:50:20.505 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 37/50, Train Loss: 0.034843599926894425, Val Loss: 0.04245133389319692 +2024-07-23 00:50:28.492 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 38/50, Train Loss: 0.035376895566995456, Val Loss: 0.043104266268866404 +2024-07-23 00:50:36.414 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 39/50, Train Loss: 0.035588435277385616, Val Loss: 0.04139366368097919 +2024-07-23 00:50:44.369 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 40/50, Train Loss: 0.03500724814553884, Val Loss: 0.04308900290301868 +2024-07-23 00:50:52.300 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 41/50, Train Loss: 0.034741977663261106, Val Loss: 0.04127759997333799 +2024-07-23 00:51:00.289 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 42/50, Train Loss: 0.03493463186996764, Val Loss: 0.041840319707989695 +2024-07-23 00:51:08.281 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 43/50, Train Loss: 0.03508611694620601, Val Loss: 0.04358538836240768 +2024-07-23 00:51:16.206 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 44/50, Train Loss: 0.035291970482674136, Val Loss: 0.041560012527874536 +2024-07-23 00:51:24.178 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 45/50, Train Loss: 0.03483428520782069, Val Loss: 0.042187455243297985 +2024-07-23 00:51:32.139 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 46/50, Train Loss: 0.034751054092214025, Val Loss: 0.04255512686712401 +2024-07-23 00:51:40.099 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 47/50, Train Loss: 0.034949076795500925, Val Loss: 0.04222160577774048 +2024-07-23 00:51:48.052 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 48/50, Train Loss: 0.03482970221225044, Val Loss: 0.041050751081534796 +2024-07-23 00:51:55.990 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 49/50, Train Loss: 0.035223146702494774, Val Loss: 0.043023385639701574 +2024-07-23 00:52:03.942 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 50/50, Train Loss: 0.03552121399291631, Val Loss: 0.04171250175152506 +2024-07-23 00:52:03.942 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Fold 4, MAPE: 3.99% +2024-07-23 00:52:04.062 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_100001_200000_LSTM//train_f4_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-23 00:52:08.446 [44/cross_validate_train/443 (pid 37695)] Task finished successfully. +2024-07-23 00:52:08.479 [44/model_scores/444 (pid 42398)] Task is starting. +2024-07-23 00:52:09.937 [44/model_scores/444 (pid 42398)] INFO:__main__:Average Train Loss across all folds: 0.04209694035686089 +2024-07-23 00:52:13.795 [44/model_scores/444 (pid 42398)] INFO:__main__:Average Validation Loss across all folds: 0.03926750443343605 +2024-07-23 00:52:13.795 [44/model_scores/444 (pid 42398)] INFO:__main__:Average MAPE across all folds: 4.09% +2024-07-23 00:52:13.796 [44/model_scores/444 (pid 42398)] Task finished successfully. +2024-07-23 00:52:13.824 [44/validate_model/445 (pid 42429)] Task is starting. +2024-07-23 00:52:15.261 [44/validate_model/445 (pid 42429)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 00:52:15.990 [44/validate_model/445 (pid 42429)] INFO:__main__:Test Set MAPE: 4.61% +2024-07-23 00:52:16.364 [44/validate_model/445 (pid 42429)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_lodging_residential_100001_200000_LSTM//test_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-23 00:52:16.779 [44/validate_model/445 (pid 42429)] Task finished successfully. +2024-07-23 00:52:16.809 [44/log_model/446 (pid 42440)] Task is starting. +2024-07-23 00:52:18.263 [44/log_model/446 (pid 42440)] INFO:__main__:Logging model bgd_lodging_residential_100001_200000_LSTM +2024-07-23 00:52:18.265 [44/log_model/446 (pid 42440)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_lodging_residential_100001_200000_LSTM//bgd_lodging_residential_100001_200000_LSTM.pth +2024-07-23 00:52:22.126 [44/log_model/446 (pid 42440)] Task finished successfully. +2024-07-23 00:52:22.156 [44/end/447 (pid 42473)] Task is starting. +2024-07-23 00:52:23.599 [44/end/447 (pid 42473)] INFO:__main__:Pipeline end. +2024-07-23 00:52:23.907 [44/end/447 (pid 42473)] Task finished successfully. +2024-07-23 00:52:23.908 Done! +✅ Run('BGD_LinearFlow/44') succeeded: +-- stdout -- +2024-07-23 00:27:59.007 Workflow starting (run-id 44): +2024-07-23 00:27:59.076 [44/start/435 (pid 37548)] Task is starting. +2024-07-23 00:28:00.581 [44/start/435 (pid 37548)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 00:28:00.871 [44/start/435 (pid 37548)] Task finished successfully. +2024-07-23 00:28:00.902 [44/ingest/436 (pid 37561)] Task is starting. +2024-07-23 00:28:02.368 [44/ingest/436 (pid 37561)] INFO:__main__:Fetching dataframe.. +2024-07-23 00:28:02.383 [44/ingest/436 (pid 37561)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 00:28:06.214 [44/ingest/436 (pid 37561)] Task finished successfully. +2024-07-23 00:28:06.242 [44/pick_2017_data/437 (pid 37585)] Task is starting. +2024-07-23 00:28:07.698 [44/pick_2017_data/437 (pid 37585)] INFO:__main__:Picking 2017 data.. +2024-07-23 00:28:08.003 [44/pick_2017_data/437 (pid 37585)] Task finished successfully. +2024-07-23 00:28:08.034 [44/fill_missing_data/438 (pid 37596)] Task is starting. +2024-07-23 00:28:09.512 [44/fill_missing_data/438 (pid 37596)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 00:28:09.517 [44/fill_missing_data/438 (pid 37596)] INFO:__main__:NaN counts per column: +2024-07-23 00:28:09.517 [44/fill_missing_data/438 (pid 37596)] INFO:__main__:Panther_lodging_Cora 11 +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] Cockatoo_lodging_Kyle 113 +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] Cockatoo_lodging_Lynne 113 +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] Cockatoo_lodging_Tessie 116 +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] Cockatoo_lodging_Elvia 113 +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] dtype: int64 +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] --- Logging error --- +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] Traceback (most recent call last): +2024-07-23 00:28:09.518 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] msg = self.format(record) +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] return fmt.format(record) +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] record.message = record.getMessage() +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] msg = msg % self.args +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] TypeError: not all arguments converted during string formatting +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] Call stack: +2024-07-23 00:28:09.519 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 00:28:10.105 [44/fill_missing_data/438 (pid 37596)] BGD_LinearFlow() +2024-07-23 00:28:10.105 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 00:28:10.105 [44/fill_missing_data/438 (pid 37596)] cli.main(self) +2024-07-23 00:28:10.105 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 00:28:10.105 [44/fill_missing_data/438 (pid 37596)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] return func(*args, **kwargs) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] return self.main(*args, **kwargs) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] rv = self.invoke(ctx) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] return callback(*args, **kwargs) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] return f(get_current_context(), *args, **kwargs) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] task.run_step( +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] self._exec_step_function(step_func) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] step_function() +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] self.missing_values = find_nan_counts(self.df) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 00:28:10.106 [44/fill_missing_data/438 (pid 37596)] Arguments: (466,) +2024-07-23 00:28:10.107 [44/fill_missing_data/438 (pid 37596)] Task finished successfully. +2024-07-23 00:28:10.137 [44/find_median/439 (pid 37607)] Task is starting. +2024-07-23 00:28:11.614 [44/find_median/439 (pid 37607)] INFO:__main__:Computing and using median.. +2024-07-23 00:28:12.117 [44/find_median/439 (pid 37607)] Task finished successfully. +2024-07-23 00:28:12.146 [44/aggregate_data/440 (pid 37620)] Task is starting. +2024-07-23 00:28:13.602 [44/aggregate_data/440 (pid 37620)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 00:28:17.422 [44/aggregate_data/440 (pid 37620)] Task finished successfully. +2024-07-23 00:28:17.452 [44/split_data/441 (pid 37651)] Task is starting. +2024-07-23 00:28:18.925 [44/split_data/441 (pid 37651)] INFO:__main__:Splitting data into test and train... +2024-07-23 00:28:22.746 [44/split_data/441 (pid 37651)] Task finished successfully. +2024-07-23 00:28:22.774 [44/make_x_y/442 (pid 37684)] Task is starting. +2024-07-23 00:28:24.591 [44/make_x_y/442 (pid 37684)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 00:28:24.981 [44/make_x_y/442 (pid 37684)] Shape of y_train: (6648, 1) +2024-07-23 00:28:24.981 [44/make_x_y/442 (pid 37684)] Shape of X_test: (1392, 360, 1) +2024-07-23 00:28:24.981 [44/make_x_y/442 (pid 37684)] Shape of y_test: (1392, 1) +2024-07-23 00:28:24.982 [44/make_x_y/442 (pid 37684)] Task finished successfully. +2024-07-23 00:28:25.015 [44/cross_validate_train/443 (pid 37695)] Task is starting. +2024-07-23 00:28:26.475 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Creating bgd_lodging_residential_100001_200000_LSTM +2024-07-23 00:28:26.476 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Performing cross validation.. +2024-07-23 00:28:28.958 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 1/50, Train Loss: 0.3459966642516, Val Loss: 0.19717885681561062 +2024-07-23 00:28:30.854 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 2/50, Train Loss: 0.20126631472791945, Val Loss: 0.1890545572553362 +2024-07-23 00:28:32.769 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 3/50, Train Loss: 0.18677168275628772, Val Loss: 0.177579356942858 +2024-07-23 00:28:34.713 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 4/50, Train Loss: 0.17120065561362674, Val Loss: 0.15639394564288003 +2024-07-23 00:28:36.643 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 5/50, Train Loss: 0.13405560084751675, Val Loss: 0.10019257313438824 +2024-07-23 00:28:38.567 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 6/50, Train Loss: 0.10900031455925532, Val Loss: 0.09551700992243631 +2024-07-23 00:28:40.496 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 7/50, Train Loss: 0.09722104391881398, Val Loss: 0.08774374648928643 +2024-07-23 00:28:42.438 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 8/50, Train Loss: 0.09533371818917138, Val Loss: 0.08571664190718106 +2024-07-23 00:28:44.381 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 9/50, Train Loss: 0.09295136438948767, Val Loss: 0.08417142629623413 +2024-07-23 00:28:46.335 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 10/50, Train Loss: 0.09087197929620743, Val Loss: 0.08267553661550794 +2024-07-23 00:28:48.263 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 11/50, Train Loss: 0.08851655540721758, Val Loss: 0.08016666748694011 +2024-07-23 00:28:50.180 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 12/50, Train Loss: 0.08656442750777517, Val Loss: 0.07826668598822185 +2024-07-23 00:28:52.122 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 13/50, Train Loss: 0.0853209162397044, Val Loss: 0.07632108437163489 +2024-07-23 00:28:54.045 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 14/50, Train Loss: 0.08323214181831905, Val Loss: 0.07433736994862557 +2024-07-23 00:28:55.977 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 15/50, Train Loss: 0.08000477658850806, Val Loss: 0.07271936503904207 +2024-07-23 00:28:57.902 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 16/50, Train Loss: 0.07913128520761217, Val Loss: 0.07054115161299705 +2024-07-23 00:28:59.837 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 17/50, Train Loss: 0.0771119397665773, Val Loss: 0.06956669124109405 +2024-07-23 00:29:01.825 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 18/50, Train Loss: 0.07513364787612642, Val Loss: 0.06610727682709694 +2024-07-23 00:29:03.777 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 19/50, Train Loss: 0.07263460329600743, Val Loss: 0.0685857079923153 +2024-07-23 00:29:05.727 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 20/50, Train Loss: 0.06976895374911173, Val Loss: 0.06006059731755938 +2024-07-23 00:29:07.688 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 21/50, Train Loss: 0.06419456505349704, Val Loss: 0.058399144666535514 +2024-07-23 00:29:09.634 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 22/50, Train Loss: 0.06388453181300845, Val Loss: 0.05355039787079607 +2024-07-23 00:29:11.587 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 23/50, Train Loss: 0.06129963791796139, Val Loss: 0.0512492158051048 +2024-07-23 00:29:13.559 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 24/50, Train Loss: 0.060819382752691, Val Loss: 0.05910225925701005 +2024-07-23 00:29:15.517 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 25/50, Train Loss: 0.05996984498841422, Val Loss: 0.048420858755707744 +2024-07-23 00:29:17.469 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 26/50, Train Loss: 0.05632462602640901, Val Loss: 0.05293248577841691 +2024-07-23 00:29:19.424 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 27/50, Train Loss: 0.05660305214779718, Val Loss: 0.05032824123544352 +2024-07-23 00:29:21.390 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 28/50, Train Loss: 0.05604915209114551, Val Loss: 0.047452818868415694 +2024-07-23 00:29:23.354 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 29/50, Train Loss: 0.0543449802590268, Val Loss: 0.04979367431785379 +2024-07-23 00:29:25.311 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 30/50, Train Loss: 0.05455825233033725, Val Loss: 0.04660781430346625 +2024-07-23 00:29:27.263 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 31/50, Train Loss: 0.05263397651059287, Val Loss: 0.04788900837302208 +2024-07-23 00:29:29.220 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 32/50, Train Loss: 0.05326050030333655, Val Loss: 0.04771836261664118 +2024-07-23 00:29:31.169 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 33/50, Train Loss: 0.05250756958765643, Val Loss: 0.04644756114908627 +2024-07-23 00:29:33.130 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 34/50, Train Loss: 0.05166574759142739, Val Loss: 0.047828546432512144 +2024-07-23 00:29:35.095 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 35/50, Train Loss: 0.05239212481038911, Val Loss: 0.046977909122194565 +2024-07-23 00:29:37.071 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 36/50, Train Loss: 0.05107432923146656, Val Loss: 0.04797105294253145 +2024-07-23 00:29:39.021 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 37/50, Train Loss: 0.05298545413783618, Val Loss: 0.04551001015518393 +2024-07-23 00:29:40.990 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 38/50, Train Loss: 0.0509728872350284, Val Loss: 0.04990212411752769 +2024-07-23 00:29:42.945 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 39/50, Train Loss: 0.05166038242833955, Val Loss: 0.046929628029465674 +2024-07-23 00:29:44.911 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 40/50, Train Loss: 0.05051049041960921, Val Loss: 0.047989590359585624 +2024-07-23 00:29:46.890 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 41/50, Train Loss: 0.05264822372368404, Val Loss: 0.049589045345783234 +2024-07-23 00:29:48.830 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 42/50, Train Loss: 0.0507182491677148, Val Loss: 0.05263057702354022 +2024-07-23 00:29:50.793 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 43/50, Train Loss: 0.05411679946950504, Val Loss: 0.04728133061102458 +2024-07-23 00:29:52.756 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 44/50, Train Loss: 0.04952931297676904, Val Loss: 0.04514156846063477 +2024-07-23 00:29:54.734 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 45/50, Train Loss: 0.05097143740526267, Val Loss: 0.04834979149912085 +2024-07-23 00:29:56.700 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 46/50, Train Loss: 0.049824719769614084, Val Loss: 0.049261392333677836 +2024-07-23 00:29:58.643 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 47/50, Train Loss: 0.05345504837376731, Val Loss: 0.049406677590949195 +2024-07-23 00:30:00.612 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 48/50, Train Loss: 0.04943416853036199, Val Loss: 0.04788824798805373 +2024-07-23 00:30:02.569 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 49/50, Train Loss: 0.0522900392966611, Val Loss: 0.04810332501573222 +2024-07-23 00:30:04.542 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 50/50, Train Loss: 0.048642898936356815, Val Loss: 0.046126022349510874 +2024-07-23 00:30:04.543 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Fold 0, MAPE: 4.10% +2024-07-23 00:30:04.860 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_100001_200000_LSTM//train_f0_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-23 00:30:08.349 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 1/50, Train Loss: 0.048125023075512474, Val Loss: 0.05187878417117255 +2024-07-23 00:30:11.842 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 2/50, Train Loss: 0.04838719429182155, Val Loss: 0.04967119864055088 +2024-07-23 00:30:15.282 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 3/50, Train Loss: 0.048835647265825954, Val Loss: 0.047828744245427 +2024-07-23 00:30:18.711 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 4/50, Train Loss: 0.04736619676862444, Val Loss: 0.04780764664922442 +2024-07-23 00:30:22.130 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 5/50, Train Loss: 0.048425260558724405, Val Loss: 0.04608221181801387 +2024-07-23 00:30:25.569 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 6/50, Train Loss: 0.04703062075589384, Val Loss: 0.04521575761692864 +2024-07-23 00:30:29.002 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 7/50, Train Loss: 0.04633225657578025, Val Loss: 0.044581688887306625 +2024-07-23 00:30:32.444 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 8/50, Train Loss: 0.046656493283808234, Val Loss: 0.0468702392918723 +2024-07-23 00:30:35.876 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 9/50, Train Loss: 0.046676569378801755, Val Loss: 0.047581260544913156 +2024-07-23 00:30:39.292 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 10/50, Train Loss: 0.04666482423033033, Val Loss: 0.04511961920985154 +2024-07-23 00:30:42.732 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 11/50, Train Loss: 0.046332591293113574, Val Loss: 0.04536828489175865 +2024-07-23 00:30:46.172 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 12/50, Train Loss: 0.04634837486914226, Val Loss: 0.04417269969625132 +2024-07-23 00:30:49.582 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 13/50, Train Loss: 0.046238840131887365, Val Loss: 0.04426424891820976 +2024-07-23 00:30:52.998 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 14/50, Train Loss: 0.04594779395099197, Val Loss: 0.04615372344851494 +2024-07-23 00:30:56.423 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 15/50, Train Loss: 0.04640298507043294, Val Loss: 0.050834930901016505 +2024-07-23 00:30:59.843 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 16/50, Train Loss: 0.04672510799552713, Val Loss: 0.044301778344171386 +2024-07-23 00:31:03.280 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 17/50, Train Loss: 0.04575531602438007, Val Loss: 0.04566175187272685 +2024-07-23 00:31:06.694 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 18/50, Train Loss: 0.04618488222892795, Val Loss: 0.04625377463442939 +2024-07-23 00:31:10.104 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 19/50, Train Loss: 0.04603456359888826, Val Loss: 0.04428253104644162 +2024-07-23 00:31:13.570 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 20/50, Train Loss: 0.04586769502077784, Val Loss: 0.04685455342488629 +2024-07-23 00:31:17.021 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 21/50, Train Loss: 0.04573421345225402, Val Loss: 0.045002589906964985 +2024-07-23 00:31:20.472 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 22/50, Train Loss: 0.045805558216358934, Val Loss: 0.0485201963356563 +2024-07-23 00:31:23.970 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 23/50, Train Loss: 0.045896324887871744, Val Loss: 0.04375508832080024 +2024-07-23 00:31:27.399 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 24/50, Train Loss: 0.04557081665843725, Val Loss: 0.046757551176207404 +2024-07-23 00:31:30.846 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 25/50, Train Loss: 0.0457221794873476, Val Loss: 0.04383005672799689 +2024-07-23 00:31:34.272 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 26/50, Train Loss: 0.04547567040260349, Val Loss: 0.04513187823551042 +2024-07-23 00:31:37.705 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 27/50, Train Loss: 0.04558333842349904, Val Loss: 0.04750159702130726 +2024-07-23 00:31:41.136 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 28/50, Train Loss: 0.04591944321457829, Val Loss: 0.04511636745716844 +2024-07-23 00:31:44.546 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 29/50, Train Loss: 0.04559939820319414, Val Loss: 0.04543512538075447 +2024-07-23 00:31:47.996 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 30/50, Train Loss: 0.04559376138661589, Val Loss: 0.04680884379361357 +2024-07-23 00:31:51.407 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 31/50, Train Loss: 0.045408741730664455, Val Loss: 0.0446627039462328 +2024-07-23 00:31:54.853 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 32/50, Train Loss: 0.04567307470632451, Val Loss: 0.0440082173794508 +2024-07-23 00:31:58.253 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 33/50, Train Loss: 0.04541890607880694, Val Loss: 0.045273695939353535 +2024-07-23 00:32:01.670 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 34/50, Train Loss: 0.04525692835450172, Val Loss: 0.044280660578182765 +2024-07-23 00:32:05.094 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 35/50, Train Loss: 0.04554784002580813, Val Loss: 0.04443085997232369 +2024-07-23 00:32:08.508 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 36/50, Train Loss: 0.045556954161397045, Val Loss: 0.04605731304202761 +2024-07-23 00:32:11.927 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 37/50, Train Loss: 0.045328484555440286, Val Loss: 0.046232962741383485 +2024-07-23 00:32:15.361 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 38/50, Train Loss: 0.04537722670606204, Val Loss: 0.04432756437786988 +2024-07-23 00:32:18.755 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 39/50, Train Loss: 0.045576396132154126, Val Loss: 0.044263924392206326 +2024-07-23 00:32:22.181 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 40/50, Train Loss: 0.04502438107239348, Val Loss: 0.04491789833243404 +2024-07-23 00:32:25.637 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 41/50, Train Loss: 0.045409816184214184, Val Loss: 0.04489329952214446 +2024-07-23 00:32:29.057 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 42/50, Train Loss: 0.045558071642049724, Val Loss: 0.04422429560550622 +2024-07-23 00:32:32.505 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 43/50, Train Loss: 0.04535350158278431, Val Loss: 0.04610386724982943 +2024-07-23 00:32:35.931 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 44/50, Train Loss: 0.04536954731281315, Val Loss: 0.04283727458012956 +2024-07-23 00:32:39.345 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 45/50, Train Loss: 0.04504685644060373, Val Loss: 0.043197742822979175 +2024-07-23 00:32:42.745 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 46/50, Train Loss: 0.045421269509409154, Val Loss: 0.04411530537264688 +2024-07-23 00:32:46.195 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 47/50, Train Loss: 0.04564294085970947, Val Loss: 0.04485854365463768 +2024-07-23 00:32:49.590 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 48/50, Train Loss: 0.045178107571388994, Val Loss: 0.04362873389784779 +2024-07-23 00:32:53.001 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 49/50, Train Loss: 0.04551337952060359, Val Loss: 0.04417115058749914 +2024-07-23 00:32:56.462 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 50/50, Train Loss: 0.045206597979579655, Val Loss: 0.04395381145711456 +2024-07-23 00:32:56.462 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Fold 1, MAPE: 4.36% +2024-07-23 00:32:56.576 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_100001_200000_LSTM//train_f1_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-23 00:33:01.465 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 1/50, Train Loss: 0.04563181738082606, Val Loss: 0.028181830500917774 +2024-07-23 00:33:01.465 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:33:01.465 No tasks are waiting in the queue. +2024-07-23 00:33:01.465 4 steps have not started: model_scores, end, log_model, validate_model. +2024-07-23 00:33:06.328 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 2/50, Train Loss: 0.048204880458517715, Val Loss: 0.030228056838469845 +2024-07-23 00:33:11.190 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 3/50, Train Loss: 0.04622053919145121, Val Loss: 0.028475774877837725 +2024-07-23 00:33:16.032 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 4/50, Train Loss: 0.045985995299326114, Val Loss: 0.02798993034022195 +2024-07-23 00:33:20.897 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 5/50, Train Loss: 0.045613035291003495, Val Loss: 0.02795763672994716 +2024-07-23 00:33:25.802 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 6/50, Train Loss: 0.045678996660101875, Val Loss: 0.02801465533141579 +2024-07-23 00:33:30.688 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 7/50, Train Loss: 0.04564240379617191, Val Loss: 0.02808126930945686 +2024-07-23 00:33:35.549 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 8/50, Train Loss: 0.04593515232241211, Val Loss: 0.027965391161186355 +2024-07-23 00:33:40.394 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 9/50, Train Loss: 0.04516439791768789, Val Loss: 0.028107623915587153 +2024-07-23 00:33:45.259 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 10/50, Train Loss: 0.045481853831845984, Val Loss: 0.028177350147494246 +2024-07-23 00:33:50.101 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 11/50, Train Loss: 0.04494714227397568, Val Loss: 0.028252054937183857 +2024-07-23 00:33:54.936 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 12/50, Train Loss: 0.04552404027288923, Val Loss: 0.02814122401177883 +2024-07-23 00:33:59.815 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 13/50, Train Loss: 0.045060377138165325, Val Loss: 0.028212318356548038 +2024-07-23 00:34:04.691 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 14/50, Train Loss: 0.045027476036921144, Val Loss: 0.0282847011461854 +2024-07-23 00:34:09.526 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 15/50, Train Loss: 0.044814895175827235, Val Loss: 0.028300270877246347 +2024-07-23 00:34:14.372 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 16/50, Train Loss: 0.04536137520335615, Val Loss: 0.028238878904708792 +2024-07-23 00:34:19.200 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 17/50, Train Loss: 0.04495350977119345, Val Loss: 0.028213094999747616 +2024-07-23 00:34:24.043 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 18/50, Train Loss: 0.044943305323473536, Val Loss: 0.028258653756763254 +2024-07-23 00:34:28.885 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 19/50, Train Loss: 0.04427362690106607, Val Loss: 0.028571424180907863 +2024-07-23 00:34:33.791 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 20/50, Train Loss: 0.045293990683813505, Val Loss: 0.028238630374627455 +2024-07-23 00:34:38.643 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 21/50, Train Loss: 0.04444822749624459, Val Loss: 0.028295641472297055 +2024-07-23 00:34:43.481 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 22/50, Train Loss: 0.04477745066217791, Val Loss: 0.02839238593088729 +2024-07-23 00:34:48.325 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 23/50, Train Loss: 0.04498778108973056, Val Loss: 0.02837652699755771 +2024-07-23 00:34:53.145 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 24/50, Train Loss: 0.044422654748464435, Val Loss: 0.028332590205328804 +2024-07-23 00:34:57.997 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 25/50, Train Loss: 0.04463055382411067, Val Loss: 0.02834156256701265 +2024-07-23 00:35:02.853 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 26/50, Train Loss: 0.044687080779112875, Val Loss: 0.0284555068771754 +2024-07-23 00:35:07.745 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 27/50, Train Loss: 0.04453857361267392, Val Loss: 0.028534179446952683 +2024-07-23 00:35:12.667 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 28/50, Train Loss: 0.04469570542614047, Val Loss: 0.02835702302732638 +2024-07-23 00:35:17.499 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 29/50, Train Loss: 0.04421047135614432, Val Loss: 0.02847007050045899 +2024-07-23 00:35:22.363 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 30/50, Train Loss: 0.04475883705219111, Val Loss: 0.028490667710346834 +2024-07-23 00:35:27.203 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 31/50, Train Loss: 0.044595153232176714, Val Loss: 0.028549940298710552 +2024-07-23 00:35:32.033 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 32/50, Train Loss: 0.04424927552015735, Val Loss: 0.02861483766298209 +2024-07-23 00:35:36.866 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 33/50, Train Loss: 0.04450549679593398, Val Loss: 0.02861975378223828 +2024-07-23 00:35:41.736 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 34/50, Train Loss: 0.04416245729841579, Val Loss: 0.0286629194393754 +2024-07-23 00:35:46.612 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 35/50, Train Loss: 0.0443468471415914, Val Loss: 0.02859086146844285 +2024-07-23 00:35:51.472 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 36/50, Train Loss: 0.044403207139112055, Val Loss: 0.028525405856115477 +2024-07-23 00:35:56.316 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 37/50, Train Loss: 0.04407454570397162, Val Loss: 0.028558507987431116 +2024-07-23 00:36:01.203 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 38/50, Train Loss: 0.04464528430253267, Val Loss: 0.028608465434185097 +2024-07-23 00:36:06.069 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 39/50, Train Loss: 0.04422004410746293, Val Loss: 0.02886324737753187 +2024-07-23 00:36:10.926 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 40/50, Train Loss: 0.04417961663029228, Val Loss: 0.028871055000594684 +2024-07-23 00:36:15.848 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 41/50, Train Loss: 0.043864625568788215, Val Loss: 0.028848230173545226 +2024-07-23 00:36:20.748 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 42/50, Train Loss: 0.04410454586972124, Val Loss: 0.02892606058823211 +2024-07-23 00:36:25.617 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 43/50, Train Loss: 0.04410852227682391, Val Loss: 0.02904831434467009 +2024-07-23 00:36:30.490 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 44/50, Train Loss: 0.04408602319801083, Val Loss: 0.02908123252647264 +2024-07-23 00:36:35.366 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 45/50, Train Loss: 0.04408753890759097, Val Loss: 0.029380786791443826 +2024-07-23 00:36:40.215 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 46/50, Train Loss: 0.044255394891549185, Val Loss: 0.028861249637390885 +2024-07-23 00:36:45.130 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 47/50, Train Loss: 0.0434409615297157, Val Loss: 0.02933151913540704 +2024-07-23 00:36:50.022 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 48/50, Train Loss: 0.04381891993734126, Val Loss: 0.02885977141559124 +2024-07-23 00:36:54.936 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 49/50, Train Loss: 0.04368876456283033, Val Loss: 0.028960262797772883 +2024-07-23 00:36:59.846 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 50/50, Train Loss: 0.04395151283377065, Val Loss: 0.028847417714340347 +2024-07-23 00:36:59.847 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Fold 2, MAPE: 3.87% +2024-07-23 00:36:59.951 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_100001_200000_LSTM//train_f2_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-23 00:37:06.323 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 1/50, Train Loss: 0.03913688749450145, Val Loss: 0.03811882260654654 +2024-07-23 00:37:12.649 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 2/50, Train Loss: 0.03850714191660392, Val Loss: 0.03964627475610801 +2024-07-23 00:37:19.008 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 3/50, Train Loss: 0.039213833432617806, Val Loss: 0.03851606728775161 +2024-07-23 00:37:25.393 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 4/50, Train Loss: 0.03864560561696831, Val Loss: 0.03896697057144982 +2024-07-23 00:37:31.727 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 5/50, Train Loss: 0.03889034817785882, Val Loss: 0.03856667620795114 +2024-07-23 00:37:38.052 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 6/50, Train Loss: 0.03871287054402365, Val Loss: 0.0386680715318237 +2024-07-23 00:37:44.351 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 7/50, Train Loss: 0.03868008662926422, Val Loss: 0.038327598039593014 +2024-07-23 00:37:50.663 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 8/50, Train Loss: 0.038873849945853085, Val Loss: 0.0375462820487363 +2024-07-23 00:37:57.028 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 9/50, Train Loss: 0.03825281684373995, Val Loss: 0.03734073165271964 +2024-07-23 00:38:03.364 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 10/50, Train Loss: 0.03814052221559578, Val Loss: 0.037613557598420555 +2024-07-23 00:38:03.364 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:38:03.364 No tasks are waiting in the queue. +2024-07-23 00:38:03.364 4 steps have not started: model_scores, end, log_model, validate_model. +2024-07-23 00:38:09.688 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 11/50, Train Loss: 0.03839854231412462, Val Loss: 0.037329256587794846 +2024-07-23 00:38:16.037 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 12/50, Train Loss: 0.038242821172951795, Val Loss: 0.038209121195333345 +2024-07-23 00:38:22.351 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 13/50, Train Loss: 0.03842256354878275, Val Loss: 0.03802446834743023 +2024-07-23 00:38:28.702 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 14/50, Train Loss: 0.038388372914825414, Val Loss: 0.03715444324272019 +2024-07-23 00:38:35.069 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 15/50, Train Loss: 0.038108240746015265, Val Loss: 0.03731174080499581 +2024-07-23 00:38:41.389 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 16/50, Train Loss: 0.038448096487483534, Val Loss: 0.03813508791582925 +2024-07-23 00:38:47.719 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 17/50, Train Loss: 0.0384106742311939, Val Loss: 0.03740949189024312 +2024-07-23 00:38:54.042 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 18/50, Train Loss: 0.03799698436833757, Val Loss: 0.03865609589431967 +2024-07-23 00:39:00.390 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 19/50, Train Loss: 0.03832870196524284, Val Loss: 0.036938180774450304 +2024-07-23 00:39:06.752 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 20/50, Train Loss: 0.03814463411866546, Val Loss: 0.03786630678389754 +2024-07-23 00:39:13.094 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 21/50, Train Loss: 0.03816663808852649, Val Loss: 0.03800925027046885 +2024-07-23 00:39:19.461 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 22/50, Train Loss: 0.038277320423089775, Val Loss: 0.03698077696774687 +2024-07-23 00:39:25.807 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 23/50, Train Loss: 0.03795412382472762, Val Loss: 0.03736210923109736 +2024-07-23 00:39:32.156 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 24/50, Train Loss: 0.038108073322357036, Val Loss: 0.037196361433182445 +2024-07-23 00:39:38.498 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 25/50, Train Loss: 0.037909060783630655, Val Loss: 0.03779072639133249 +2024-07-23 00:39:44.850 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 26/50, Train Loss: 0.038092382480021864, Val Loss: 0.03722196865294661 +2024-07-23 00:39:51.222 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 27/50, Train Loss: 0.03802251721323609, Val Loss: 0.03665194820080485 +2024-07-23 00:39:57.560 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 28/50, Train Loss: 0.03780738314573499, Val Loss: 0.03700968069689614 +2024-07-23 00:40:03.961 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 29/50, Train Loss: 0.03775968818704216, Val Loss: 0.03764887430838176 +2024-07-23 00:40:10.277 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 30/50, Train Loss: 0.03798016822702593, Val Loss: 0.036945701869470736 +2024-07-23 00:40:16.620 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 31/50, Train Loss: 0.03801593561020258, Val Loss: 0.037129415518471175 +2024-07-23 00:40:22.957 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 32/50, Train Loss: 0.038152811284974324, Val Loss: 0.037600230744906836 +2024-07-23 00:40:29.317 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 33/50, Train Loss: 0.038091443204354467, Val Loss: 0.036934433983904974 +2024-07-23 00:40:35.725 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 34/50, Train Loss: 0.038038986353136656, Val Loss: 0.03726142070123128 +2024-07-23 00:40:42.096 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 35/50, Train Loss: 0.037948589591081626, Val Loss: 0.03702503245856081 +2024-07-23 00:40:48.455 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 36/50, Train Loss: 0.03803223787585823, Val Loss: 0.03765773810446262 +2024-07-23 00:40:54.830 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 37/50, Train Loss: 0.0382324796531805, Val Loss: 0.03727139516600541 +2024-07-23 00:41:01.147 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 38/50, Train Loss: 0.037837952623317996, Val Loss: 0.038380443091903416 +2024-07-23 00:41:07.486 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 39/50, Train Loss: 0.03846784397664902, Val Loss: 0.03626852086079972 +2024-07-23 00:41:13.866 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 40/50, Train Loss: 0.03764138426363683, Val Loss: 0.03731704902436052 +2024-07-23 00:41:20.228 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 41/50, Train Loss: 0.03785027432918763, Val Loss: 0.03717885544257504 +2024-07-23 00:41:26.609 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 42/50, Train Loss: 0.03774335158975433, Val Loss: 0.036626565775700975 +2024-07-23 00:41:33.006 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 43/50, Train Loss: 0.0375016328724597, Val Loss: 0.03696119779986995 +2024-07-23 00:41:39.359 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 44/50, Train Loss: 0.037509304216707784, Val Loss: 0.03691447962607656 +2024-07-23 00:41:45.783 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 45/50, Train Loss: 0.037393094040453434, Val Loss: 0.03681880155844348 +2024-07-23 00:41:52.160 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 46/50, Train Loss: 0.03707850223286546, Val Loss: 0.036203949525952336 +2024-07-23 00:41:58.529 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 47/50, Train Loss: 0.037250075201175625, Val Loss: 0.03689475416072777 +2024-07-23 00:42:04.933 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 48/50, Train Loss: 0.03741806445361899, Val Loss: 0.03593347902808871 +2024-07-23 00:42:11.284 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 49/50, Train Loss: 0.036950821680077114, Val Loss: 0.03562356276171548 +2024-07-23 00:42:17.700 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 50/50, Train Loss: 0.037162478041681025, Val Loss: 0.035697768894689424 +2024-07-23 00:42:17.700 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Fold 3, MAPE: 4.12% +2024-07-23 00:42:17.795 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_100001_200000_LSTM//train_f3_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-23 00:42:25.659 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 1/50, Train Loss: 0.03666004119976156, Val Loss: 0.042794304979699 +2024-07-23 00:42:33.511 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 2/50, Train Loss: 0.036305359682475016, Val Loss: 0.042549908959439824 +2024-07-23 00:42:41.345 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 3/50, Train Loss: 0.03630585266791027, Val Loss: 0.043647401886326924 +2024-07-23 00:42:49.228 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 4/50, Train Loss: 0.03628953136289599, Val Loss: 0.04303287895662444 +2024-07-23 00:42:57.131 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 5/50, Train Loss: 0.03591569563395333, Val Loss: 0.042793556728533334 +2024-07-23 00:43:04.977 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 6/50, Train Loss: 0.03606858931417609, Val Loss: 0.04324697181582451 +2024-07-23 00:43:04.978 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:43:04.978 No tasks are waiting in the queue. +2024-07-23 00:43:04.978 4 steps have not started: model_scores, end, log_model, validate_model. +2024-07-23 00:43:12.868 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 7/50, Train Loss: 0.03597789355714259, Val Loss: 0.043374264878886085 +2024-07-23 00:43:20.754 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 8/50, Train Loss: 0.03583691806007905, Val Loss: 0.042552628368139264 +2024-07-23 00:43:28.746 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 9/50, Train Loss: 0.03587858087179818, Val Loss: 0.042739901478801454 +2024-07-23 00:43:36.762 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 10/50, Train Loss: 0.03616865440111222, Val Loss: 0.04289310308439391 +2024-07-23 00:43:44.664 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 11/50, Train Loss: 0.03610865537334105, Val Loss: 0.043429393534149444 +2024-07-23 00:43:52.553 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 12/50, Train Loss: 0.03579923383698895, Val Loss: 0.0433408511536462 +2024-07-23 00:44:00.475 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 13/50, Train Loss: 0.035615896720482015, Val Loss: 0.042693551257252695 +2024-07-23 00:44:08.386 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 14/50, Train Loss: 0.035503020622478475, Val Loss: 0.04346771341349397 +2024-07-23 00:44:16.301 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 15/50, Train Loss: 0.03576464057718029, Val Loss: 0.04267599646534238 +2024-07-23 00:44:24.199 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 16/50, Train Loss: 0.03561441933779025, Val Loss: 0.043807605015380044 +2024-07-23 00:44:32.108 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 17/50, Train Loss: 0.03558556166552435, Val Loss: 0.042922422609158926 +2024-07-23 00:44:40.006 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 18/50, Train Loss: 0.03562628191456884, Val Loss: 0.04292015736656529 +2024-07-23 00:44:47.944 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 19/50, Train Loss: 0.0360266180741119, Val Loss: 0.042576333986861364 +2024-07-23 00:44:55.862 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 20/50, Train Loss: 0.03510540611399659, Val Loss: 0.04246381723455021 +2024-07-23 00:45:03.787 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 21/50, Train Loss: 0.035077754873782396, Val Loss: 0.04234218182308333 +2024-07-23 00:45:11.715 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 22/50, Train Loss: 0.03549975139656286, Val Loss: 0.04290845234479223 +2024-07-23 00:45:19.628 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 23/50, Train Loss: 0.03500484193450418, Val Loss: 0.04315986686519214 +2024-07-23 00:45:27.591 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 24/50, Train Loss: 0.03521216874299892, Val Loss: 0.041839727919016564 +2024-07-23 00:45:35.528 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 25/50, Train Loss: 0.03589454545350424, Val Loss: 0.04339671635201999 +2024-07-23 00:45:43.567 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 26/50, Train Loss: 0.03596090684355847, Val Loss: 0.04377324144755091 +2024-07-23 00:45:51.522 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 27/50, Train Loss: 0.03539362835066243, Val Loss: 0.04237906453864915 +2024-07-23 00:45:59.453 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 28/50, Train Loss: 0.03515797538747047, Val Loss: 0.0415542120380061 +2024-07-23 00:46:07.417 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 29/50, Train Loss: 0.03567908614895296, Val Loss: 0.04363565327865737 +2024-07-23 00:46:15.387 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 30/50, Train Loss: 0.035327373072505, Val Loss: 0.04180121384561062 +2024-07-23 00:46:23.344 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 31/50, Train Loss: 0.03535079732323172, Val Loss: 0.0417839024748121 +2024-07-23 00:49:40.589 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 32/50, Train Loss: 0.035078786388467786, Val Loss: 0.042111227129186905 +2024-07-23 00:49:40.589 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:49:40.589 No tasks are waiting in the queue. +2024-07-23 00:49:40.589 4 steps have not started: model_scores, end, log_model, validate_model. +2024-07-23 00:49:48.608 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 33/50, Train Loss: 0.03502045060111873, Val Loss: 0.042538289725780484 +2024-07-23 00:49:56.592 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 34/50, Train Loss: 0.034851934557416656, Val Loss: 0.04168435462883541 +2024-07-23 00:50:04.580 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 35/50, Train Loss: 0.03521515301096885, Val Loss: 0.0423871850328786 +2024-07-23 00:50:12.561 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 36/50, Train Loss: 0.03533992522406852, Val Loss: 0.04179749158876283 +2024-07-23 00:50:20.505 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 37/50, Train Loss: 0.034843599926894425, Val Loss: 0.04245133389319692 +2024-07-23 00:50:28.492 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 38/50, Train Loss: 0.035376895566995456, Val Loss: 0.043104266268866404 +2024-07-23 00:50:36.414 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 39/50, Train Loss: 0.035588435277385616, Val Loss: 0.04139366368097919 +2024-07-23 00:50:44.369 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 40/50, Train Loss: 0.03500724814553884, Val Loss: 0.04308900290301868 +2024-07-23 00:50:52.300 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 41/50, Train Loss: 0.034741977663261106, Val Loss: 0.04127759997333799 +2024-07-23 00:51:00.289 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 42/50, Train Loss: 0.03493463186996764, Val Loss: 0.041840319707989695 +2024-07-23 00:51:08.281 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 43/50, Train Loss: 0.03508611694620601, Val Loss: 0.04358538836240768 +2024-07-23 00:51:16.206 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 44/50, Train Loss: 0.035291970482674136, Val Loss: 0.041560012527874536 +2024-07-23 00:51:24.178 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 45/50, Train Loss: 0.03483428520782069, Val Loss: 0.042187455243297985 +2024-07-23 00:51:32.139 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 46/50, Train Loss: 0.034751054092214025, Val Loss: 0.04255512686712401 +2024-07-23 00:51:40.099 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 47/50, Train Loss: 0.034949076795500925, Val Loss: 0.04222160577774048 +2024-07-23 00:51:48.052 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 48/50, Train Loss: 0.03482970221225044, Val Loss: 0.041050751081534796 +2024-07-23 00:51:55.990 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 49/50, Train Loss: 0.035223146702494774, Val Loss: 0.043023385639701574 +2024-07-23 00:52:03.942 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Epoch 50/50, Train Loss: 0.03552121399291631, Val Loss: 0.04171250175152506 +2024-07-23 00:52:03.942 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Fold 4, MAPE: 3.99% +2024-07-23 00:52:04.062 [44/cross_validate_train/443 (pid 37695)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_100001_200000_LSTM//train_f4_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-23 00:52:08.446 [44/cross_validate_train/443 (pid 37695)] Task finished successfully. +2024-07-23 00:52:08.479 [44/model_scores/444 (pid 42398)] Task is starting. +2024-07-23 00:52:09.937 [44/model_scores/444 (pid 42398)] INFO:__main__:Average Train Loss across all folds: 0.04209694035686089 +2024-07-23 00:52:13.795 [44/model_scores/444 (pid 42398)] INFO:__main__:Average Validation Loss across all folds: 0.03926750443343605 +2024-07-23 00:52:13.795 [44/model_scores/444 (pid 42398)] INFO:__main__:Average MAPE across all folds: 4.09% +2024-07-23 00:52:13.796 [44/model_scores/444 (pid 42398)] Task finished successfully. +2024-07-23 00:52:13.824 [44/validate_model/445 (pid 42429)] Task is starting. +2024-07-23 00:52:15.261 [44/validate_model/445 (pid 42429)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 00:52:15.990 [44/validate_model/445 (pid 42429)] INFO:__main__:Test Set MAPE: 4.61% +2024-07-23 00:52:16.364 [44/validate_model/445 (pid 42429)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_lodging_residential_100001_200000_LSTM//test_bgd_lodging_residential_100001_200000_LSTM.png +2024-07-23 00:52:16.779 [44/validate_model/445 (pid 42429)] Task finished successfully. +2024-07-23 00:52:16.809 [44/log_model/446 (pid 42440)] Task is starting. +2024-07-23 00:52:18.263 [44/log_model/446 (pid 42440)] INFO:__main__:Logging model bgd_lodging_residential_100001_200000_LSTM +2024-07-23 00:52:18.265 [44/log_model/446 (pid 42440)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_lodging_residential_100001_200000_LSTM//bgd_lodging_residential_100001_200000_LSTM.pth +2024-07-23 00:52:22.126 [44/log_model/446 (pid 42440)] Task finished successfully. +2024-07-23 00:52:22.156 [44/end/447 (pid 42473)] Task is starting. +2024-07-23 00:52:23.599 [44/end/447 (pid 42473)] INFO:__main__:Pipeline end. +2024-07-23 00:52:23.907 [44/end/447 (pid 42473)] Task finished successfully. +2024-07-23 00:52:23.908 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/scaler_bgd_lodging_residential_100001_200000_LSTM.pkl b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/scaler_bgd_lodging_residential_100001_200000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..91dec81b441d153c8afa1d76517ef1581d484e71 --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/scaler_bgd_lodging_residential_100001_200000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f95a7407fca4fc87c91100cdae965f83d8aa1fa1aa39ee0264131af2a2587e5 +size 557 diff --git a/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/test_bgd_lodging_residential_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/test_bgd_lodging_residential_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..e604bb99cad11037d74a5e3e8a701e862604b7aa Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/test_bgd_lodging_residential_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f0_bgd_lodging_residential_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f0_bgd_lodging_residential_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..dc277a502ca4ce6974ec3767577c7ac5c5406542 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f0_bgd_lodging_residential_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f1_bgd_lodging_residential_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f1_bgd_lodging_residential_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..f6b6d913fa2eb845f20ebc98762b7751d4c2ddf5 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f1_bgd_lodging_residential_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f2_bgd_lodging_residential_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f2_bgd_lodging_residential_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..7acdc19d73287ff41fd5817d87c9eaf6ba60c44b Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f2_bgd_lodging_residential_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f3_bgd_lodging_residential_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f3_bgd_lodging_residential_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..128d03d7e04f276267bd07e9d550d5616744106c Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f3_bgd_lodging_residential_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f4_bgd_lodging_residential_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f4_bgd_lodging_residential_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..8ed4ace0ae59b5749a8d383605f57c3e68b76599 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_100001_200000_LSTM/train_f4_bgd_lodging_residential_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/bgd_lodging_residential_1001_5000_LSTM.pth b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/bgd_lodging_residential_1001_5000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..109f410a7e152db8ec16df74ac1ca64d5d4cecbb --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/bgd_lodging_residential_1001_5000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4e1c95d6191e0f56dc4a1f2466358deb7e0bdd8f8030ab0051719162bc0dc7 +size 46846 diff --git a/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/output.txt b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf66443bf6724fcf33adb1afef8cdb16c0eaf662 --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/output.txt @@ -0,0 +1,751 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-22 23:43:14.228 Workflow starting (run-id 42): +2024-07-22 23:43:14.295 [42/start/407 (pid 27663)] Task is starting. +2024-07-22 23:43:15.763 [42/start/407 (pid 27663)] INFO:__main__:Starting BGD linear flow.. +2024-07-22 23:43:16.052 [42/start/407 (pid 27663)] Task finished successfully. +2024-07-22 23:43:16.085 [42/ingest/408 (pid 27674)] Task is starting. +2024-07-22 23:43:17.540 [42/ingest/408 (pid 27674)] INFO:__main__:Fetching dataframe.. +2024-07-22 23:43:17.553 [42/ingest/408 (pid 27674)] INFO:__main__:Dataframe fetching complete.. +2024-07-22 23:43:21.400 [42/ingest/408 (pid 27674)] Task finished successfully. +2024-07-22 23:43:21.432 [42/pick_2017_data/409 (pid 27708)] Task is starting. +2024-07-22 23:43:22.875 [42/pick_2017_data/409 (pid 27708)] INFO:__main__:Picking 2017 data.. +2024-07-22 23:43:23.173 [42/pick_2017_data/409 (pid 27708)] Task finished successfully. +2024-07-22 23:43:23.204 [42/fill_missing_data/410 (pid 27713)] Task is starting. +2024-07-22 23:43:24.655 [42/fill_missing_data/410 (pid 27713)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-22 23:43:24.659 [42/fill_missing_data/410 (pid 27713)] INFO:__main__:NaN counts per column: +2024-07-22 23:43:24.659 [42/fill_missing_data/410 (pid 27713)] INFO:__main__:Rat_lodging_Jeannette 27 +2024-07-22 23:43:24.659 [42/fill_missing_data/410 (pid 27713)] dtype: int64 +2024-07-22 23:43:24.660 [42/fill_missing_data/410 (pid 27713)] --- Logging error --- +2024-07-22 23:43:24.660 [42/fill_missing_data/410 (pid 27713)] Traceback (most recent call last): +2024-07-22 23:43:24.660 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] msg = self.format(record) +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] return fmt.format(record) +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] record.message = record.getMessage() +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] msg = msg % self.args +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] TypeError: not all arguments converted during string formatting +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] Call stack: +2024-07-22 23:43:24.662 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-22 23:43:24.973 [42/fill_missing_data/410 (pid 27713)] BGD_LinearFlow() +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] cli.main(self) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] return func(*args, **kwargs) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] return self.main(*args, **kwargs) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] rv = self.invoke(ctx) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] return ctx.invoke(self.callback, **ctx.params) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] return callback(*args, **kwargs) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] return f(get_current_context(), *args, **kwargs) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] task.run_step( +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] self._exec_step_function(step_func) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] step_function() +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] self.missing_values = find_nan_counts(self.df) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] Arguments: (27,) +2024-07-22 23:43:24.975 [42/fill_missing_data/410 (pid 27713)] Task finished successfully. +2024-07-22 23:43:25.003 [42/find_median/411 (pid 27724)] Task is starting. +2024-07-22 23:43:26.472 [42/find_median/411 (pid 27724)] INFO:__main__:Computing and using median.. +2024-07-22 23:43:26.966 [42/find_median/411 (pid 27724)] Task finished successfully. +2024-07-22 23:43:26.997 [42/aggregate_data/412 (pid 27735)] Task is starting. +2024-07-22 23:43:28.452 [42/aggregate_data/412 (pid 27735)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-22 23:43:32.256 [42/aggregate_data/412 (pid 27735)] Task finished successfully. +2024-07-22 23:43:32.285 [42/split_data/413 (pid 27768)] Task is starting. +2024-07-22 23:43:33.762 [42/split_data/413 (pid 27768)] INFO:__main__:Splitting data into test and train... +2024-07-22 23:43:37.605 [42/split_data/413 (pid 27768)] Task finished successfully. +2024-07-22 23:43:37.639 [42/make_x_y/414 (pid 27800)] Task is starting. +2024-07-22 23:43:39.450 [42/make_x_y/414 (pid 27800)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-22 23:43:39.845 [42/make_x_y/414 (pid 27800)] Shape of y_train: (6648, 1) +2024-07-22 23:43:39.845 [42/make_x_y/414 (pid 27800)] Shape of X_test: (1392, 360, 1) +2024-07-22 23:43:39.845 [42/make_x_y/414 (pid 27800)] Shape of y_test: (1392, 1) +2024-07-22 23:43:39.846 [42/make_x_y/414 (pid 27800)] Task finished successfully. +2024-07-22 23:43:39.879 [42/cross_validate_train/415 (pid 27813)] Task is starting. +2024-07-22 23:43:41.339 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Creating bgd_lodging_residential_1001_5000_LSTM +2024-07-22 23:43:41.339 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Performing cross validation.. +2024-07-22 23:43:43.778 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 1/50, Train Loss: 0.3524668201804161, Val Loss: 0.13015833571553231 +2024-07-22 23:43:45.657 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 2/50, Train Loss: 0.17754611883844648, Val Loss: 0.12846132154975617 +2024-07-22 23:43:47.534 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 3/50, Train Loss: 0.18646402869905745, Val Loss: 0.12297810273511069 +2024-07-22 23:43:49.416 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 4/50, Train Loss: 0.15385678048644746, Val Loss: 0.1176933371594974 +2024-07-22 23:43:51.305 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 5/50, Train Loss: 0.15474367418459484, Val Loss: 0.11565197237900325 +2024-07-22 23:43:53.178 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 6/50, Train Loss: 0.14662244085754667, Val Loss: 0.11228422011647905 +2024-07-22 23:43:55.048 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 7/50, Train Loss: 0.14274190344980786, Val Loss: 0.10917527228593826 +2024-07-22 23:43:56.915 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 8/50, Train Loss: 0.13746470766408103, Val Loss: 0.10540330058762006 +2024-07-22 23:43:58.801 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 9/50, Train Loss: 0.13350305408239366, Val Loss: 0.10191900666270937 +2024-07-22 23:44:00.676 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 10/50, Train Loss: 0.12908085052456175, Val Loss: 0.09821293982011932 +2024-07-22 23:44:02.562 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 11/50, Train Loss: 0.12420027362448828, Val Loss: 0.09447674431971141 +2024-07-22 23:44:04.497 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 12/50, Train Loss: 0.11899357948984418, Val Loss: 0.09123385750821658 +2024-07-22 23:44:06.371 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 13/50, Train Loss: 0.11563684514590672, Val Loss: 0.08776932475822312 +2024-07-22 23:44:08.251 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 14/50, Train Loss: 0.10986484863928386, Val Loss: 0.08592620598418373 +2024-07-22 23:44:10.124 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 15/50, Train Loss: 0.10917066484689712, Val Loss: 0.08212267362645694 +2024-07-22 23:44:12.006 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 16/50, Train Loss: 0.1044677554496697, Val Loss: 0.07956489335213389 +2024-07-22 23:44:13.871 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 17/50, Train Loss: 0.10185459064585822, Val Loss: 0.07678528380181109 +2024-07-22 23:44:15.732 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 18/50, Train Loss: 0.09850931593350001, Val Loss: 0.07508514363850866 +2024-07-22 23:44:17.604 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 19/50, Train Loss: 0.09529898688197136, Val Loss: 0.07293513199048383 +2024-07-22 23:44:19.472 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 20/50, Train Loss: 0.09132719039916992, Val Loss: 0.07147326112857887 +2024-07-22 23:44:21.365 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 21/50, Train Loss: 0.08818443683641297, Val Loss: 0.07097640889031546 +2024-07-22 23:44:23.239 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 22/50, Train Loss: 0.08775545348014151, Val Loss: 0.06965976219092096 +2024-07-22 23:44:25.113 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 23/50, Train Loss: 0.08543569179517882, Val Loss: 0.06821918562054634 +2024-07-22 23:44:26.988 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 24/50, Train Loss: 0.08144640039120402, Val Loss: 0.06645704827138356 +2024-07-22 23:44:28.845 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 25/50, Train Loss: 0.07843536798443113, Val Loss: 0.06585239470005036 +2024-07-22 23:44:30.722 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 26/50, Train Loss: 0.07806271921311106, Val Loss: 0.06395074773047651 +2024-07-22 23:44:32.601 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 27/50, Train Loss: 0.07552050000854901, Val Loss: 0.06344683431088924 +2024-07-22 23:44:34.503 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 28/50, Train Loss: 0.0744602087352957, Val Loss: 0.06278005508439881 +2024-07-22 23:44:36.404 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 29/50, Train Loss: 0.07325580673558371, Val Loss: 0.06133045894759042 +2024-07-22 23:44:38.292 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 30/50, Train Loss: 0.07183881710682596, Val Loss: 0.060491676894681795 +2024-07-22 23:44:40.173 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 31/50, Train Loss: 0.07043972707220486, Val Loss: 0.0592092220804521 +2024-07-22 23:44:42.057 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 32/50, Train Loss: 0.0687018704201494, Val Loss: 0.058591641911438536 +2024-07-22 23:44:43.937 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 33/50, Train Loss: 0.06791564130357333, Val Loss: 0.058020375349691934 +2024-07-22 23:44:45.827 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 34/50, Train Loss: 0.06681983662503106, Val Loss: 0.05714476177734988 +2024-07-22 23:44:47.696 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 35/50, Train Loss: 0.06596715386424745, Val Loss: 0.05678394527307579 +2024-07-22 23:44:49.570 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 36/50, Train Loss: 0.0654520717050348, Val Loss: 0.05649458579719067 +2024-07-22 23:44:51.453 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 37/50, Train Loss: 0.0647666164806911, Val Loss: 0.0559580492654017 +2024-07-22 23:44:53.329 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 38/50, Train Loss: 0.0638556216444288, Val Loss: 0.055638134532741135 +2024-07-22 23:44:55.192 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 39/50, Train Loss: 0.06315005006534713, Val Loss: 0.05476073037300791 +2024-07-22 23:44:57.076 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 40/50, Train Loss: 0.062135007551738196, Val Loss: 0.05444208245192255 +2024-07-22 23:44:58.948 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 41/50, Train Loss: 0.06165343299508095, Val Loss: 0.05364989723478045 +2024-07-22 23:45:00.825 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 42/50, Train Loss: 0.06046258008905819, Val Loss: 0.052934742452842846 +2024-07-22 23:45:02.723 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 43/50, Train Loss: 0.059587457403540614, Val Loss: 0.05128589320395674 +2024-07-22 23:45:04.596 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 44/50, Train Loss: 0.05793397703341075, Val Loss: 0.05143936068883964 +2024-07-22 23:45:06.501 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 45/50, Train Loss: 0.05810270942747593, Val Loss: 0.05024612476783139 +2024-07-22 23:45:08.384 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 46/50, Train Loss: 0.05720698631235532, Val Loss: 0.05142405379031386 +2024-07-22 23:45:10.304 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 47/50, Train Loss: 0.05832794329949788, Val Loss: 0.050504099045481 +2024-07-22 23:45:12.200 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 48/50, Train Loss: 0.05775197244116238, Val Loss: 0.05207076466509274 +2024-07-22 23:45:14.082 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 49/50, Train Loss: 0.058991514518857, Val Loss: 0.051245825099093575 +2024-07-22 23:45:15.961 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 50/50, Train Loss: 0.05844681566315038, Val Loss: 0.052316115690129145 +2024-07-22 23:45:15.961 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Fold 0, MAPE: 11.49% +2024-07-22 23:45:16.250 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_1001_5000_LSTM//train_f0_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-22 23:45:19.611 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 1/50, Train Loss: 0.04991955823664154, Val Loss: 0.050795703434518405 +2024-07-22 23:45:22.953 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 2/50, Train Loss: 0.048862169017749174, Val Loss: 0.04908069627625602 +2024-07-22 23:45:26.305 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 3/50, Train Loss: 0.04801460084106241, Val Loss: 0.04947084113955498 +2024-07-22 23:45:29.602 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 4/50, Train Loss: 0.048080440823520934, Val Loss: 0.049321231192776135 +2024-07-22 23:45:32.896 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 5/50, Train Loss: 0.04797017760574818, Val Loss: 0.04875337119613375 +2024-07-22 23:45:36.201 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 6/50, Train Loss: 0.047888123723013064, Val Loss: 0.04918471234185355 +2024-07-22 23:45:39.535 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 7/50, Train Loss: 0.04798153982098614, Val Loss: 0.04865931831300259 +2024-07-22 23:45:42.853 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 8/50, Train Loss: 0.04798062542187316, Val Loss: 0.048818000459245274 +2024-07-22 23:45:46.161 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 9/50, Train Loss: 0.0479498383722135, Val Loss: 0.04867588702057089 +2024-07-22 23:45:49.499 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 10/50, Train Loss: 0.0478151532422219, Val Loss: 0.048815808817744256 +2024-07-22 23:45:52.819 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 11/50, Train Loss: 0.0478604060996856, Val Loss: 0.04854511123682771 +2024-07-22 23:45:56.103 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 12/50, Train Loss: 0.04776174162647554, Val Loss: 0.04862957112491131 +2024-07-22 23:45:59.386 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 13/50, Train Loss: 0.047784981956439355, Val Loss: 0.04827554327036653 +2024-07-22 23:46:02.711 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 14/50, Train Loss: 0.04772211249385561, Val Loss: 0.048408848739096094 +2024-07-22 23:46:06.104 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 15/50, Train Loss: 0.047703627284084046, Val Loss: 0.04833788818546704 +2024-07-22 23:46:09.455 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 16/50, Train Loss: 0.04772015647696597, Val Loss: 0.048346288023250444 +2024-07-22 23:46:12.866 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 17/50, Train Loss: 0.04763037831123386, Val Loss: 0.04809663737458842 +2024-07-22 23:46:16.190 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 18/50, Train Loss: 0.04766339505357402, Val Loss: 0.04832544667380197 +2024-07-22 23:46:19.550 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 19/50, Train Loss: 0.04763825535774231, Val Loss: 0.04805415283356394 +2024-07-22 23:46:22.899 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 20/50, Train Loss: 0.0476399929661836, Val Loss: 0.04823212495871953 +2024-07-22 23:46:26.180 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 21/50, Train Loss: 0.04759497001234974, Val Loss: 0.04821420663169452 +2024-07-22 23:46:29.490 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 22/50, Train Loss: 0.047560089587100916, Val Loss: 0.04818136771874768 +2024-07-22 23:46:32.792 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 23/50, Train Loss: 0.047597237969083446, Val Loss: 0.04829348661005497 +2024-07-22 23:46:36.150 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 24/50, Train Loss: 0.04753762289349522, Val Loss: 0.04825551525822708 +2024-07-22 23:46:39.471 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 25/50, Train Loss: 0.04750514727618013, Val Loss: 0.04811575125370707 +2024-07-22 23:46:42.791 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 26/50, Train Loss: 0.04761061907878944, Val Loss: 0.048186845598476274 +2024-07-22 23:46:46.122 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 27/50, Train Loss: 0.04760361566607441, Val Loss: 0.04811624857996191 +2024-07-22 23:46:49.450 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 28/50, Train Loss: 0.04757148721920593, Val Loss: 0.04795187387083258 +2024-07-22 23:46:52.777 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 29/50, Train Loss: 0.04743186645209789, Val Loss: 0.04819340631365776 +2024-07-22 23:46:56.076 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 30/50, Train Loss: 0.0476282517558762, Val Loss: 0.04815486972885472 +2024-07-22 23:46:59.414 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 31/50, Train Loss: 0.04750378456498895, Val Loss: 0.0479858117976359 +2024-07-22 23:47:02.730 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 32/50, Train Loss: 0.04749628095222371, Val Loss: 0.047925710624882156 +2024-07-22 23:47:06.025 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 33/50, Train Loss: 0.04751037369881358, Val Loss: 0.04802959385727133 +2024-07-22 23:47:09.359 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 34/50, Train Loss: 0.04746242104364293, Val Loss: 0.048008552033986365 +2024-07-22 23:47:12.699 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 35/50, Train Loss: 0.047443585550146446, Val Loss: 0.04799985960125923 +2024-07-22 23:47:15.987 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 36/50, Train Loss: 0.04747328635837351, Val Loss: 0.04814712543572698 +2024-07-22 23:47:19.326 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 37/50, Train Loss: 0.04750190419810159, Val Loss: 0.04796547000961644 +2024-07-22 23:47:22.663 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 38/50, Train Loss: 0.04750332018094403, Val Loss: 0.047867846967918536 +2024-07-22 23:47:25.977 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 39/50, Train Loss: 0.04733036958745548, Val Loss: 0.047913977982742446 +2024-07-22 23:47:29.295 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 40/50, Train Loss: 0.0474608731589147, Val Loss: 0.0479273154267243 +2024-07-22 23:47:32.621 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 41/50, Train Loss: 0.04745372882378953, Val Loss: 0.047900792849915365 +2024-07-22 23:47:35.929 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 42/50, Train Loss: 0.047386307668473036, Val Loss: 0.04791747863803591 +2024-07-22 23:47:39.241 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 43/50, Train Loss: 0.04739912857434579, Val Loss: 0.04784807749092579 +2024-07-22 23:47:42.537 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 44/50, Train Loss: 0.047392941186470645, Val Loss: 0.04787584367607321 +2024-07-22 23:47:45.820 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 45/50, Train Loss: 0.04745934312897069, Val Loss: 0.04773955563349383 +2024-07-22 23:47:49.122 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 46/50, Train Loss: 0.047410204474415095, Val Loss: 0.04768558251006263 +2024-07-22 23:47:52.453 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 47/50, Train Loss: 0.04732102948640074, Val Loss: 0.047986575216054914 +2024-07-22 23:47:55.749 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 48/50, Train Loss: 0.04738442440118108, Val Loss: 0.047801331749984195 +2024-07-22 23:47:59.047 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 49/50, Train Loss: 0.047381910708333766, Val Loss: 0.047753052413463594 +2024-07-22 23:48:02.345 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 50/50, Train Loss: 0.04734752665140799, Val Loss: 0.04774609064417226 +2024-07-22 23:48:02.345 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Fold 1, MAPE: 11.80% +2024-07-22 23:48:02.454 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_1001_5000_LSTM//train_f1_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-22 23:48:07.293 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 1/50, Train Loss: 0.04757763185681632, Val Loss: 0.05063056120915072 +2024-07-22 23:48:12.012 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 2/50, Train Loss: 0.047417342877731875, Val Loss: 0.05057485428239618 +2024-07-22 23:48:16.687 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 3/50, Train Loss: 0.04751287857428766, Val Loss: 0.050561950196112905 +2024-07-22 23:48:16.687 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:48:16.687 No tasks are waiting in the queue. +2024-07-22 23:48:16.687 4 steps have not started: log_model, model_scores, validate_model, end. +2024-07-22 23:48:21.447 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 4/50, Train Loss: 0.047587239720786996, Val Loss: 0.050578571110963824 +2024-07-22 23:48:26.176 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 5/50, Train Loss: 0.04749828573459616, Val Loss: 0.05057017755295549 +2024-07-22 23:48:30.877 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 6/50, Train Loss: 0.047413682260622196, Val Loss: 0.050562716328672 +2024-07-22 23:48:35.603 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 7/50, Train Loss: 0.04739352860129797, Val Loss: 0.05055886363344533 +2024-07-22 23:48:40.311 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 8/50, Train Loss: 0.04744030576414214, Val Loss: 0.050570901855826376 +2024-07-22 23:48:45.013 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 9/50, Train Loss: 0.047474529003151335, Val Loss: 0.05057504336748805 +2024-07-22 23:48:49.730 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 10/50, Train Loss: 0.04731079217834541, Val Loss: 0.05058993420430592 +2024-07-22 23:48:54.444 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 11/50, Train Loss: 0.04733568467558003, Val Loss: 0.05056351652102811 +2024-07-22 23:48:59.187 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 12/50, Train Loss: 0.047305262074447595, Val Loss: 0.050565952701228004 +2024-07-22 23:49:03.906 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 13/50, Train Loss: 0.04732868669984432, Val Loss: 0.05055317101734025 +2024-07-22 23:49:08.635 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 14/50, Train Loss: 0.047314455678973064, Val Loss: 0.05051220767199993 +2024-07-22 23:49:13.416 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 15/50, Train Loss: 0.047400624598734654, Val Loss: 0.05052861145564488 +2024-07-22 23:49:18.115 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 16/50, Train Loss: 0.047321839920746595, Val Loss: 0.050495235675147604 +2024-07-22 23:49:22.881 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 17/50, Train Loss: 0.04738788573572842, Val Loss: 0.050515292584896086 +2024-07-22 23:49:27.596 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 18/50, Train Loss: 0.04734582994849636, Val Loss: 0.05044955041791711 +2024-07-22 23:49:32.352 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 19/50, Train Loss: 0.04735623778273853, Val Loss: 0.05047054189656462 +2024-07-22 23:49:37.072 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 20/50, Train Loss: 0.047319493668440446, Val Loss: 0.0504474758037499 +2024-07-22 23:49:41.836 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 21/50, Train Loss: 0.047418920090422034, Val Loss: 0.05047893364514623 +2024-07-22 23:49:46.538 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 22/50, Train Loss: 0.04737794829102663, Val Loss: 0.05047096370586327 +2024-07-22 23:49:51.301 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 23/50, Train Loss: 0.047296534811791316, Val Loss: 0.05046032129653862 +2024-07-22 23:49:56.012 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 24/50, Train Loss: 0.047308225686160416, Val Loss: 0.05049591160246304 +2024-07-22 23:50:00.740 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 25/50, Train Loss: 0.04715336873554266, Val Loss: 0.05049786503825869 +2024-07-22 23:50:05.520 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 26/50, Train Loss: 0.047145540915572874, Val Loss: 0.05045936799475125 +2024-07-22 23:50:10.355 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 27/50, Train Loss: 0.04702877287323085, Val Loss: 0.050475044548511504 +2024-07-22 23:50:15.185 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 28/50, Train Loss: 0.04699527543897812, Val Loss: 0.05044858061841556 +2024-07-22 23:50:19.967 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 29/50, Train Loss: 0.047087917050633296, Val Loss: 0.05045699264322009 +2024-07-22 23:50:24.782 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 30/50, Train Loss: 0.0471373399755416, Val Loss: 0.050454266635434966 +2024-07-22 23:50:29.587 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 31/50, Train Loss: 0.04710119285692389, Val Loss: 0.05049300635499614 +2024-07-22 23:50:34.450 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 32/50, Train Loss: 0.04702225134063225, Val Loss: 0.0503376236983708 +2024-07-22 23:50:39.201 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 33/50, Train Loss: 0.047000950041155405, Val Loss: 0.05042723145868097 +2024-07-22 23:50:43.984 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 34/50, Train Loss: 0.04707683612091037, Val Loss: 0.05044165216386318 +2024-07-22 23:50:48.763 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 35/50, Train Loss: 0.04698326533588652, Val Loss: 0.050406329067690034 +2024-07-22 23:50:53.731 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 36/50, Train Loss: 0.04699378080952626, Val Loss: 0.05021618099084922 +2024-07-22 23:50:58.647 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 37/50, Train Loss: 0.04692221712321043, Val Loss: 0.0502757442849023 +2024-07-22 23:51:03.457 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 38/50, Train Loss: 0.046892115488075294, Val Loss: 0.0502330268067973 +2024-07-22 23:51:08.317 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 39/50, Train Loss: 0.046934317295941025, Val Loss: 0.05027514084109238 +2024-07-22 23:51:13.299 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 40/50, Train Loss: 0.04692319755514081, Val Loss: 0.050284953308956964 +2024-07-22 23:51:18.094 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 41/50, Train Loss: 0.04702901413950782, Val Loss: 0.05031945753310408 +2024-07-22 23:51:23.049 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 42/50, Train Loss: 0.046843798007242955, Val Loss: 0.05022542630987508 +2024-07-22 23:51:27.876 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 43/50, Train Loss: 0.0467717272336953, Val Loss: 0.05024280734360218 +2024-07-22 23:51:32.629 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 44/50, Train Loss: 0.046780967726730384, Val Loss: 0.05025112618293081 +2024-07-22 23:51:37.360 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 45/50, Train Loss: 0.04674900874782067, Val Loss: 0.0502414558082819 +2024-07-22 23:51:42.121 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 46/50, Train Loss: 0.04667758477780108, Val Loss: 0.050186322576233316 +2024-07-22 23:51:46.849 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 47/50, Train Loss: 0.04680552204641012, Val Loss: 0.05031056718102523 +2024-07-22 23:51:51.601 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 48/50, Train Loss: 0.04685362774090698, Val Loss: 0.050234061000602584 +2024-07-22 23:51:56.324 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 49/50, Train Loss: 0.04664660555023987, Val Loss: 0.05022660100034305 +2024-07-22 23:52:01.062 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 50/50, Train Loss: 0.04669317420428762, Val Loss: 0.050184243811028345 +2024-07-22 23:52:01.063 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Fold 2, MAPE: 11.70% +2024-07-22 23:52:01.176 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_1001_5000_LSTM//train_f2_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-22 23:52:07.374 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 1/50, Train Loss: 0.04799370525284208, Val Loss: 0.05653683447412082 +2024-07-22 23:52:13.545 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 2/50, Train Loss: 0.0477461226740115, Val Loss: 0.0565456862960543 +2024-07-22 23:52:19.750 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 3/50, Train Loss: 0.04777100632677404, Val Loss: 0.0565648723925863 +2024-07-22 23:52:25.953 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 4/50, Train Loss: 0.047707532391809734, Val Loss: 0.056565222250563756 +2024-07-22 23:52:32.169 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 5/50, Train Loss: 0.0477204553166525, Val Loss: 0.0565716806266989 +2024-07-22 23:52:38.334 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 6/50, Train Loss: 0.04761103907827851, Val Loss: 0.05648389405437878 +2024-07-22 23:52:44.496 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 7/50, Train Loss: 0.047583289833055986, Val Loss: 0.0564719771700246 +2024-07-22 23:52:50.674 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 8/50, Train Loss: 0.04762412793934345, Val Loss: 0.056356057737554824 +2024-07-22 23:52:56.816 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 9/50, Train Loss: 0.04762170068490848, Val Loss: 0.056531902828386854 +2024-07-22 23:53:03.004 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 10/50, Train Loss: 0.047553305668260555, Val Loss: 0.05635764652064868 +2024-07-22 23:53:09.176 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 11/50, Train Loss: 0.04756952150852131, Val Loss: 0.05636816674045154 +2024-07-22 23:53:15.334 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 12/50, Train Loss: 0.04760635893443506, Val Loss: 0.05626142248511314 +2024-07-22 23:53:21.541 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 13/50, Train Loss: 0.047544036368779144, Val Loss: 0.05646355833326067 +2024-07-22 23:53:21.541 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:53:21.541 No tasks are waiting in the queue. +2024-07-22 23:53:21.541 4 steps have not started: log_model, model_scores, validate_model, end. +2024-07-22 23:53:27.665 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 14/50, Train Loss: 0.04754103513823139, Val Loss: 0.05640533311026437 +2024-07-22 23:53:33.817 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 15/50, Train Loss: 0.047483089601071615, Val Loss: 0.05648829681532724 +2024-07-22 23:53:39.994 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 16/50, Train Loss: 0.04743863099502574, Val Loss: 0.056302490723984584 +2024-07-22 23:53:46.140 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 17/50, Train Loss: 0.04749006605137595, Val Loss: 0.05624313152262143 +2024-07-22 23:53:52.305 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 18/50, Train Loss: 0.04753086209404383, Val Loss: 0.05622751712799072 +2024-07-22 23:53:58.513 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 19/50, Train Loss: 0.04751854151380148, Val Loss: 0.056535911240748 +2024-07-22 23:54:04.665 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 20/50, Train Loss: 0.04746368839639983, Val Loss: 0.05642426354544503 +2024-07-22 23:54:10.872 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 21/50, Train Loss: 0.04744120333477748, Val Loss: 0.056196366144078115 +2024-07-22 23:54:17.015 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 22/50, Train Loss: 0.04758195609872719, Val Loss: 0.05635180281741278 +2024-07-22 23:54:23.181 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 23/50, Train Loss: 0.0474785320031986, Val Loss: 0.056554609217814036 +2024-07-22 23:54:29.360 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 24/50, Train Loss: 0.04751911126881195, Val Loss: 0.05629972645214626 +2024-07-22 23:54:35.522 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 25/50, Train Loss: 0.04752533163258926, Val Loss: 0.05632507854274341 +2024-07-22 23:54:41.716 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 26/50, Train Loss: 0.04749337361334897, Val Loss: 0.056289090641907284 +2024-07-22 23:54:47.860 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 27/50, Train Loss: 0.04752401900377205, Val Loss: 0.05624775737524033 +2024-07-22 23:54:54.023 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 28/50, Train Loss: 0.04751941695702162, Val Loss: 0.05635733710868018 +2024-07-22 23:55:00.162 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 29/50, Train Loss: 0.047481526345979394, Val Loss: 0.05634504950472287 +2024-07-22 23:55:06.348 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 30/50, Train Loss: 0.04739821205089847, Val Loss: 0.05616831119571413 +2024-07-22 23:55:12.554 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 31/50, Train Loss: 0.047522855386566774, Val Loss: 0.05628377561058317 +2024-07-22 23:55:18.721 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 32/50, Train Loss: 0.047492004515562986, Val Loss: 0.05626445849026952 +2024-07-22 23:55:24.926 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 33/50, Train Loss: 0.04749704093384228, Val Loss: 0.056295356899499896 +2024-07-22 23:55:31.138 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 34/50, Train Loss: 0.04753167980866466, Val Loss: 0.05653665417007037 +2024-07-22 23:55:37.346 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 35/50, Train Loss: 0.0474718114320966, Val Loss: 0.05630412282688277 +2024-07-22 23:55:43.547 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 36/50, Train Loss: 0.047464135190029795, Val Loss: 0.05636007764509746 +2024-07-22 23:55:49.736 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 37/50, Train Loss: 0.047530100473182665, Val Loss: 0.05616645344666072 +2024-07-22 23:55:55.923 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 38/50, Train Loss: 0.047517473373910504, Val Loss: 0.056152838255677906 +2024-07-22 23:56:02.135 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 39/50, Train Loss: 0.047499397193356385, Val Loss: 0.05621093873466764 +2024-07-22 23:56:08.310 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 40/50, Train Loss: 0.047393353655934334, Val Loss: 0.05619015970400402 +2024-07-22 23:56:14.519 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 41/50, Train Loss: 0.04748563526077665, Val Loss: 0.05617948376706668 +2024-07-22 23:56:20.752 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 42/50, Train Loss: 0.047417045725013714, Val Loss: 0.056639629921742846 +2024-07-22 23:56:26.976 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 43/50, Train Loss: 0.04758943583843091, Val Loss: 0.05625671563403947 +2024-07-22 23:56:33.197 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 44/50, Train Loss: 0.04755954295664811, Val Loss: 0.056297704577445984 +2024-07-22 23:56:39.419 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 45/50, Train Loss: 0.04741873987447873, Val Loss: 0.056301080754825046 +2024-07-22 23:56:45.610 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 46/50, Train Loss: 0.04744283473052138, Val Loss: 0.05624291981969561 +2024-07-22 23:56:51.800 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 47/50, Train Loss: 0.04742964142732483, Val Loss: 0.056212575946535386 +2024-07-22 23:56:57.985 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 48/50, Train Loss: 0.047401475458801225, Val Loss: 0.05626839857016291 +2024-07-22 23:57:04.215 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 49/50, Train Loss: 0.047366495036499964, Val Loss: 0.05624175146222114 +2024-07-22 23:57:10.400 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 50/50, Train Loss: 0.04737417835393827, Val Loss: 0.05636282722864832 +2024-07-22 23:57:10.400 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Fold 3, MAPE: 13.75% +2024-07-22 23:57:10.510 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_1001_5000_LSTM//train_f3_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-22 23:57:18.210 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 1/50, Train Loss: 0.049803426157383396, Val Loss: 0.04762636125087738 +2024-07-22 23:57:25.871 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 2/50, Train Loss: 0.04965415893486519, Val Loss: 0.04794802761503628 +2024-07-22 23:57:33.525 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 3/50, Train Loss: 0.0496314016074456, Val Loss: 0.04793239736131259 +2024-07-22 23:57:41.168 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 4/50, Train Loss: 0.05003143569732877, Val Loss: 0.12252544036933354 +2024-07-22 23:57:48.810 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 5/50, Train Loss: 0.05324486809001229, Val Loss: 0.05162736821387495 +2024-07-22 23:57:56.420 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 6/50, Train Loss: 0.05088197539464153, Val Loss: 0.06597300044127873 +2024-07-22 23:58:04.028 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 7/50, Train Loss: 0.05122073811489618, Val Loss: 0.06097006068697997 +2024-07-22 23:58:11.645 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 8/50, Train Loss: 0.052164134323254396, Val Loss: 0.047936906718782014 +2024-07-22 23:58:19.238 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 9/50, Train Loss: 0.05099413182115418, Val Loss: 0.04747348087174552 +2024-07-22 23:58:26.848 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 10/50, Train Loss: 0.051028772664053, Val Loss: 0.047464544432503836 +2024-07-22 23:58:26.848 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:58:26.848 No tasks are waiting in the queue. +2024-07-22 23:58:26.848 4 steps have not started: log_model, model_scores, validate_model, end. +2024-07-22 23:58:34.582 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 11/50, Train Loss: 0.05112798924118966, Val Loss: 0.04735029589916979 +2024-07-22 23:58:42.547 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 12/50, Train Loss: 0.05114050872152907, Val Loss: 0.04734746803130422 +2024-07-22 23:58:50.449 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 13/50, Train Loss: 0.05098704190860535, Val Loss: 0.04735112844833306 +2024-07-22 23:58:58.392 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 14/50, Train Loss: 0.05070018531733203, Val Loss: 0.0505925181720938 +2024-07-22 23:59:06.235 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 15/50, Train Loss: 0.0511771277363958, Val Loss: 0.04762204528919288 +2024-07-22 23:59:14.067 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 16/50, Train Loss: 0.0505641079668341, Val Loss: 0.04763644715504987 +2024-07-22 23:59:22.011 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 17/50, Train Loss: 0.050528028605227496, Val Loss: 0.04736279536570821 +2024-07-22 23:59:29.916 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 18/50, Train Loss: 0.0506193687946632, Val Loss: 0.04753261309649263 +2024-07-22 23:59:37.845 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 19/50, Train Loss: 0.05032079782465409, Val Loss: 0.04754432583493846 +2024-07-22 23:59:45.713 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 20/50, Train Loss: 0.05040247438625357, Val Loss: 0.04746251313814095 +2024-07-22 23:59:53.430 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 21/50, Train Loss: 0.05028901303765075, Val Loss: 0.04754493566496032 +2024-07-23 00:00:01.137 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 22/50, Train Loss: 0.050241860346975684, Val Loss: 0.04748927551720824 +2024-07-23 00:00:08.859 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 23/50, Train Loss: 0.05027841222097819, Val Loss: 0.04727983059627669 +2024-07-23 00:00:16.518 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 24/50, Train Loss: 0.050145174986843406, Val Loss: 0.04741747044026852 +2024-07-23 00:00:24.222 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 25/50, Train Loss: 0.050086997727724326, Val Loss: 0.04767421542533806 +2024-07-23 00:00:31.901 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 26/50, Train Loss: 0.04995569785864189, Val Loss: 0.04754315816930362 +2024-07-23 00:00:39.583 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 27/50, Train Loss: 0.04993773421979156, Val Loss: 0.047856191598943304 +2024-07-23 00:00:47.272 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 28/50, Train Loss: 0.04976179380098294, Val Loss: 0.048001248549137794 +2024-07-23 00:00:54.987 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 29/50, Train Loss: 0.04968501799793421, Val Loss: 0.04807154195649283 +2024-07-23 00:01:02.689 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 30/50, Train Loss: 0.049831783013611006, Val Loss: 0.04782257511147431 +2024-07-23 00:01:10.395 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 31/50, Train Loss: 0.04982941259426632, Val Loss: 0.04813204987772873 +2024-07-23 00:01:18.130 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 32/50, Train Loss: 0.04976916357061301, Val Loss: 0.04793216623365879 +2024-07-23 00:01:25.861 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 33/50, Train Loss: 0.049715054489072714, Val Loss: 0.04768106995948723 +2024-07-23 00:01:33.554 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 34/50, Train Loss: 0.04971013511477531, Val Loss: 0.0477440068764346 +2024-07-23 00:01:41.229 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 35/50, Train Loss: 0.04978197240324198, Val Loss: 0.04777630477079323 +2024-07-23 00:01:48.911 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 36/50, Train Loss: 0.049760588005870236, Val Loss: 0.04795274122485093 +2024-07-23 00:01:56.619 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 37/50, Train Loss: 0.049738106574734736, Val Loss: 0.047685881331563 +2024-07-23 00:02:04.327 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 38/50, Train Loss: 0.049792684464790356, Val Loss: 0.04784752396600587 +2024-07-23 00:02:12.021 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 39/50, Train Loss: 0.049773863730845094, Val Loss: 0.048035630211234095 +2024-07-23 00:02:19.663 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 40/50, Train Loss: 0.04990964914918288, Val Loss: 0.04773264303803444 +2024-07-23 00:02:27.328 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 41/50, Train Loss: 0.04960362726672628, Val Loss: 0.048093094250985555 +2024-07-23 00:02:35.034 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 42/50, Train Loss: 0.04963817755723822, Val Loss: 0.04826801105269364 +2024-07-23 00:02:42.726 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 43/50, Train Loss: 0.049725770104633665, Val Loss: 0.048029546599302975 +2024-07-23 00:02:50.565 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 44/50, Train Loss: 0.04980520759548607, Val Loss: 0.04827804443027292 +2024-07-23 00:02:58.252 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 45/50, Train Loss: 0.04968095665005432, Val Loss: 0.04805863041962896 +2024-07-23 00:03:05.962 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 46/50, Train Loss: 0.049659984593076266, Val Loss: 0.04863482899963856 +2024-07-23 00:03:13.638 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 47/50, Train Loss: 0.04958592767388314, Val Loss: 0.04833764455148152 +2024-07-23 00:03:21.301 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 48/50, Train Loss: 0.04980384511337883, Val Loss: 0.04850479704993112 +2024-07-23 00:03:28.997 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 49/50, Train Loss: 0.04964211674128798, Val Loss: 0.04861677257078034 +2024-07-23 00:03:28.998 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:03:28.998 No tasks are waiting in the queue. +2024-07-23 00:03:28.998 4 steps have not started: log_model, model_scores, validate_model, end. +2024-07-23 00:03:36.673 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 50/50, Train Loss: 0.0496238191001888, Val Loss: 0.04850702775376184 +2024-07-23 00:03:36.674 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Fold 4, MAPE: 13.95% +2024-07-23 00:03:36.782 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_1001_5000_LSTM//train_f4_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-23 00:03:41.328 [42/cross_validate_train/415 (pid 27813)] Task finished successfully. +2024-07-23 00:03:41.361 [42/model_scores/416 (pid 32412)] Task is starting. +2024-07-23 00:03:42.854 [42/model_scores/416 (pid 32412)] INFO:__main__:Average Train Loss across all folds: 0.04989710279459462 +2024-07-23 00:03:46.742 [42/model_scores/416 (pid 32412)] INFO:__main__:Average Validation Loss across all folds: 0.05102326102554798 +2024-07-23 00:03:46.742 [42/model_scores/416 (pid 32412)] INFO:__main__:Average MAPE across all folds: 12.54% +2024-07-23 00:03:46.743 [42/model_scores/416 (pid 32412)] Task finished successfully. +2024-07-23 00:03:46.777 [42/validate_model/417 (pid 32440)] Task is starting. +2024-07-23 00:03:48.241 [42/validate_model/417 (pid 32440)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 00:03:49.114 [42/validate_model/417 (pid 32440)] INFO:__main__:Test Set MAPE: 10.22% +2024-07-23 00:03:49.495 [42/validate_model/417 (pid 32440)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_lodging_residential_1001_5000_LSTM//test_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-23 00:03:49.919 [42/validate_model/417 (pid 32440)] Task finished successfully. +2024-07-23 00:03:49.950 [42/log_model/418 (pid 32460)] Task is starting. +2024-07-23 00:03:51.447 [42/log_model/418 (pid 32460)] INFO:__main__:Logging model bgd_lodging_residential_1001_5000_LSTM +2024-07-23 00:03:51.448 [42/log_model/418 (pid 32460)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_lodging_residential_1001_5000_LSTM//bgd_lodging_residential_1001_5000_LSTM.pth +2024-07-23 00:03:55.307 [42/log_model/418 (pid 32460)] Task finished successfully. +2024-07-23 00:03:55.337 [42/end/419 (pid 32484)] Task is starting. +2024-07-23 00:03:56.814 [42/end/419 (pid 32484)] INFO:__main__:Pipeline end. +2024-07-23 00:03:57.120 [42/end/419 (pid 32484)] Task finished successfully. +2024-07-23 00:03:57.121 Done! +✅ Run('BGD_LinearFlow/42') succeeded: +-- stdout -- +2024-07-22 23:43:14.228 Workflow starting (run-id 42): +2024-07-22 23:43:14.295 [42/start/407 (pid 27663)] Task is starting. +2024-07-22 23:43:15.763 [42/start/407 (pid 27663)] INFO:__main__:Starting BGD linear flow.. +2024-07-22 23:43:16.052 [42/start/407 (pid 27663)] Task finished successfully. +2024-07-22 23:43:16.085 [42/ingest/408 (pid 27674)] Task is starting. +2024-07-22 23:43:17.540 [42/ingest/408 (pid 27674)] INFO:__main__:Fetching dataframe.. +2024-07-22 23:43:17.553 [42/ingest/408 (pid 27674)] INFO:__main__:Dataframe fetching complete.. +2024-07-22 23:43:21.400 [42/ingest/408 (pid 27674)] Task finished successfully. +2024-07-22 23:43:21.432 [42/pick_2017_data/409 (pid 27708)] Task is starting. +2024-07-22 23:43:22.875 [42/pick_2017_data/409 (pid 27708)] INFO:__main__:Picking 2017 data.. +2024-07-22 23:43:23.173 [42/pick_2017_data/409 (pid 27708)] Task finished successfully. +2024-07-22 23:43:23.204 [42/fill_missing_data/410 (pid 27713)] Task is starting. +2024-07-22 23:43:24.655 [42/fill_missing_data/410 (pid 27713)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-22 23:43:24.659 [42/fill_missing_data/410 (pid 27713)] INFO:__main__:NaN counts per column: +2024-07-22 23:43:24.659 [42/fill_missing_data/410 (pid 27713)] INFO:__main__:Rat_lodging_Jeannette 27 +2024-07-22 23:43:24.659 [42/fill_missing_data/410 (pid 27713)] dtype: int64 +2024-07-22 23:43:24.660 [42/fill_missing_data/410 (pid 27713)] --- Logging error --- +2024-07-22 23:43:24.660 [42/fill_missing_data/410 (pid 27713)] Traceback (most recent call last): +2024-07-22 23:43:24.660 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] msg = self.format(record) +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] return fmt.format(record) +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] record.message = record.getMessage() +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] msg = msg % self.args +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] TypeError: not all arguments converted during string formatting +2024-07-22 23:43:24.661 [42/fill_missing_data/410 (pid 27713)] Call stack: +2024-07-22 23:43:24.662 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-22 23:43:24.973 [42/fill_missing_data/410 (pid 27713)] BGD_LinearFlow() +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] cli.main(self) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] return func(*args, **kwargs) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] return self.main(*args, **kwargs) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] rv = self.invoke(ctx) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] return ctx.invoke(self.callback, **ctx.params) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] return callback(*args, **kwargs) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] return f(get_current_context(), *args, **kwargs) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] task.run_step( +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] self._exec_step_function(step_func) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] step_function() +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] self.missing_values = find_nan_counts(self.df) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-22 23:43:24.974 [42/fill_missing_data/410 (pid 27713)] Arguments: (27,) +2024-07-22 23:43:24.975 [42/fill_missing_data/410 (pid 27713)] Task finished successfully. +2024-07-22 23:43:25.003 [42/find_median/411 (pid 27724)] Task is starting. +2024-07-22 23:43:26.472 [42/find_median/411 (pid 27724)] INFO:__main__:Computing and using median.. +2024-07-22 23:43:26.966 [42/find_median/411 (pid 27724)] Task finished successfully. +2024-07-22 23:43:26.997 [42/aggregate_data/412 (pid 27735)] Task is starting. +2024-07-22 23:43:28.452 [42/aggregate_data/412 (pid 27735)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-22 23:43:32.256 [42/aggregate_data/412 (pid 27735)] Task finished successfully. +2024-07-22 23:43:32.285 [42/split_data/413 (pid 27768)] Task is starting. +2024-07-22 23:43:33.762 [42/split_data/413 (pid 27768)] INFO:__main__:Splitting data into test and train... +2024-07-22 23:43:37.605 [42/split_data/413 (pid 27768)] Task finished successfully. +2024-07-22 23:43:37.639 [42/make_x_y/414 (pid 27800)] Task is starting. +2024-07-22 23:43:39.450 [42/make_x_y/414 (pid 27800)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-22 23:43:39.845 [42/make_x_y/414 (pid 27800)] Shape of y_train: (6648, 1) +2024-07-22 23:43:39.845 [42/make_x_y/414 (pid 27800)] Shape of X_test: (1392, 360, 1) +2024-07-22 23:43:39.845 [42/make_x_y/414 (pid 27800)] Shape of y_test: (1392, 1) +2024-07-22 23:43:39.846 [42/make_x_y/414 (pid 27800)] Task finished successfully. +2024-07-22 23:43:39.879 [42/cross_validate_train/415 (pid 27813)] Task is starting. +2024-07-22 23:43:41.339 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Creating bgd_lodging_residential_1001_5000_LSTM +2024-07-22 23:43:41.339 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Performing cross validation.. +2024-07-22 23:43:43.778 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 1/50, Train Loss: 0.3524668201804161, Val Loss: 0.13015833571553231 +2024-07-22 23:43:45.657 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 2/50, Train Loss: 0.17754611883844648, Val Loss: 0.12846132154975617 +2024-07-22 23:43:47.534 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 3/50, Train Loss: 0.18646402869905745, Val Loss: 0.12297810273511069 +2024-07-22 23:43:49.416 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 4/50, Train Loss: 0.15385678048644746, Val Loss: 0.1176933371594974 +2024-07-22 23:43:51.305 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 5/50, Train Loss: 0.15474367418459484, Val Loss: 0.11565197237900325 +2024-07-22 23:43:53.178 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 6/50, Train Loss: 0.14662244085754667, Val Loss: 0.11228422011647905 +2024-07-22 23:43:55.048 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 7/50, Train Loss: 0.14274190344980786, Val Loss: 0.10917527228593826 +2024-07-22 23:43:56.915 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 8/50, Train Loss: 0.13746470766408103, Val Loss: 0.10540330058762006 +2024-07-22 23:43:58.801 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 9/50, Train Loss: 0.13350305408239366, Val Loss: 0.10191900666270937 +2024-07-22 23:44:00.676 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 10/50, Train Loss: 0.12908085052456175, Val Loss: 0.09821293982011932 +2024-07-22 23:44:02.562 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 11/50, Train Loss: 0.12420027362448828, Val Loss: 0.09447674431971141 +2024-07-22 23:44:04.497 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 12/50, Train Loss: 0.11899357948984418, Val Loss: 0.09123385750821658 +2024-07-22 23:44:06.371 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 13/50, Train Loss: 0.11563684514590672, Val Loss: 0.08776932475822312 +2024-07-22 23:44:08.251 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 14/50, Train Loss: 0.10986484863928386, Val Loss: 0.08592620598418373 +2024-07-22 23:44:10.124 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 15/50, Train Loss: 0.10917066484689712, Val Loss: 0.08212267362645694 +2024-07-22 23:44:12.006 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 16/50, Train Loss: 0.1044677554496697, Val Loss: 0.07956489335213389 +2024-07-22 23:44:13.871 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 17/50, Train Loss: 0.10185459064585822, Val Loss: 0.07678528380181109 +2024-07-22 23:44:15.732 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 18/50, Train Loss: 0.09850931593350001, Val Loss: 0.07508514363850866 +2024-07-22 23:44:17.604 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 19/50, Train Loss: 0.09529898688197136, Val Loss: 0.07293513199048383 +2024-07-22 23:44:19.472 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 20/50, Train Loss: 0.09132719039916992, Val Loss: 0.07147326112857887 +2024-07-22 23:44:21.365 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 21/50, Train Loss: 0.08818443683641297, Val Loss: 0.07097640889031546 +2024-07-22 23:44:23.239 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 22/50, Train Loss: 0.08775545348014151, Val Loss: 0.06965976219092096 +2024-07-22 23:44:25.113 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 23/50, Train Loss: 0.08543569179517882, Val Loss: 0.06821918562054634 +2024-07-22 23:44:26.988 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 24/50, Train Loss: 0.08144640039120402, Val Loss: 0.06645704827138356 +2024-07-22 23:44:28.845 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 25/50, Train Loss: 0.07843536798443113, Val Loss: 0.06585239470005036 +2024-07-22 23:44:30.722 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 26/50, Train Loss: 0.07806271921311106, Val Loss: 0.06395074773047651 +2024-07-22 23:44:32.601 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 27/50, Train Loss: 0.07552050000854901, Val Loss: 0.06344683431088924 +2024-07-22 23:44:34.503 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 28/50, Train Loss: 0.0744602087352957, Val Loss: 0.06278005508439881 +2024-07-22 23:44:36.404 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 29/50, Train Loss: 0.07325580673558371, Val Loss: 0.06133045894759042 +2024-07-22 23:44:38.292 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 30/50, Train Loss: 0.07183881710682596, Val Loss: 0.060491676894681795 +2024-07-22 23:44:40.173 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 31/50, Train Loss: 0.07043972707220486, Val Loss: 0.0592092220804521 +2024-07-22 23:44:42.057 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 32/50, Train Loss: 0.0687018704201494, Val Loss: 0.058591641911438536 +2024-07-22 23:44:43.937 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 33/50, Train Loss: 0.06791564130357333, Val Loss: 0.058020375349691934 +2024-07-22 23:44:45.827 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 34/50, Train Loss: 0.06681983662503106, Val Loss: 0.05714476177734988 +2024-07-22 23:44:47.696 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 35/50, Train Loss: 0.06596715386424745, Val Loss: 0.05678394527307579 +2024-07-22 23:44:49.570 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 36/50, Train Loss: 0.0654520717050348, Val Loss: 0.05649458579719067 +2024-07-22 23:44:51.453 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 37/50, Train Loss: 0.0647666164806911, Val Loss: 0.0559580492654017 +2024-07-22 23:44:53.329 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 38/50, Train Loss: 0.0638556216444288, Val Loss: 0.055638134532741135 +2024-07-22 23:44:55.192 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 39/50, Train Loss: 0.06315005006534713, Val Loss: 0.05476073037300791 +2024-07-22 23:44:57.076 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 40/50, Train Loss: 0.062135007551738196, Val Loss: 0.05444208245192255 +2024-07-22 23:44:58.948 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 41/50, Train Loss: 0.06165343299508095, Val Loss: 0.05364989723478045 +2024-07-22 23:45:00.825 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 42/50, Train Loss: 0.06046258008905819, Val Loss: 0.052934742452842846 +2024-07-22 23:45:02.723 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 43/50, Train Loss: 0.059587457403540614, Val Loss: 0.05128589320395674 +2024-07-22 23:45:04.596 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 44/50, Train Loss: 0.05793397703341075, Val Loss: 0.05143936068883964 +2024-07-22 23:45:06.501 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 45/50, Train Loss: 0.05810270942747593, Val Loss: 0.05024612476783139 +2024-07-22 23:45:08.384 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 46/50, Train Loss: 0.05720698631235532, Val Loss: 0.05142405379031386 +2024-07-22 23:45:10.304 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 47/50, Train Loss: 0.05832794329949788, Val Loss: 0.050504099045481 +2024-07-22 23:45:12.200 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 48/50, Train Loss: 0.05775197244116238, Val Loss: 0.05207076466509274 +2024-07-22 23:45:14.082 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 49/50, Train Loss: 0.058991514518857, Val Loss: 0.051245825099093575 +2024-07-22 23:45:15.961 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 50/50, Train Loss: 0.05844681566315038, Val Loss: 0.052316115690129145 +2024-07-22 23:45:15.961 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Fold 0, MAPE: 11.49% +2024-07-22 23:45:16.250 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_1001_5000_LSTM//train_f0_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-22 23:45:19.611 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 1/50, Train Loss: 0.04991955823664154, Val Loss: 0.050795703434518405 +2024-07-22 23:45:22.953 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 2/50, Train Loss: 0.048862169017749174, Val Loss: 0.04908069627625602 +2024-07-22 23:45:26.305 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 3/50, Train Loss: 0.04801460084106241, Val Loss: 0.04947084113955498 +2024-07-22 23:45:29.602 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 4/50, Train Loss: 0.048080440823520934, Val Loss: 0.049321231192776135 +2024-07-22 23:45:32.896 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 5/50, Train Loss: 0.04797017760574818, Val Loss: 0.04875337119613375 +2024-07-22 23:45:36.201 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 6/50, Train Loss: 0.047888123723013064, Val Loss: 0.04918471234185355 +2024-07-22 23:45:39.535 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 7/50, Train Loss: 0.04798153982098614, Val Loss: 0.04865931831300259 +2024-07-22 23:45:42.853 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 8/50, Train Loss: 0.04798062542187316, Val Loss: 0.048818000459245274 +2024-07-22 23:45:46.161 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 9/50, Train Loss: 0.0479498383722135, Val Loss: 0.04867588702057089 +2024-07-22 23:45:49.499 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 10/50, Train Loss: 0.0478151532422219, Val Loss: 0.048815808817744256 +2024-07-22 23:45:52.819 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 11/50, Train Loss: 0.0478604060996856, Val Loss: 0.04854511123682771 +2024-07-22 23:45:56.103 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 12/50, Train Loss: 0.04776174162647554, Val Loss: 0.04862957112491131 +2024-07-22 23:45:59.386 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 13/50, Train Loss: 0.047784981956439355, Val Loss: 0.04827554327036653 +2024-07-22 23:46:02.711 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 14/50, Train Loss: 0.04772211249385561, Val Loss: 0.048408848739096094 +2024-07-22 23:46:06.104 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 15/50, Train Loss: 0.047703627284084046, Val Loss: 0.04833788818546704 +2024-07-22 23:46:09.455 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 16/50, Train Loss: 0.04772015647696597, Val Loss: 0.048346288023250444 +2024-07-22 23:46:12.866 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 17/50, Train Loss: 0.04763037831123386, Val Loss: 0.04809663737458842 +2024-07-22 23:46:16.190 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 18/50, Train Loss: 0.04766339505357402, Val Loss: 0.04832544667380197 +2024-07-22 23:46:19.550 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 19/50, Train Loss: 0.04763825535774231, Val Loss: 0.04805415283356394 +2024-07-22 23:46:22.899 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 20/50, Train Loss: 0.0476399929661836, Val Loss: 0.04823212495871953 +2024-07-22 23:46:26.180 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 21/50, Train Loss: 0.04759497001234974, Val Loss: 0.04821420663169452 +2024-07-22 23:46:29.490 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 22/50, Train Loss: 0.047560089587100916, Val Loss: 0.04818136771874768 +2024-07-22 23:46:32.792 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 23/50, Train Loss: 0.047597237969083446, Val Loss: 0.04829348661005497 +2024-07-22 23:46:36.150 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 24/50, Train Loss: 0.04753762289349522, Val Loss: 0.04825551525822708 +2024-07-22 23:46:39.471 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 25/50, Train Loss: 0.04750514727618013, Val Loss: 0.04811575125370707 +2024-07-22 23:46:42.791 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 26/50, Train Loss: 0.04761061907878944, Val Loss: 0.048186845598476274 +2024-07-22 23:46:46.122 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 27/50, Train Loss: 0.04760361566607441, Val Loss: 0.04811624857996191 +2024-07-22 23:46:49.450 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 28/50, Train Loss: 0.04757148721920593, Val Loss: 0.04795187387083258 +2024-07-22 23:46:52.777 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 29/50, Train Loss: 0.04743186645209789, Val Loss: 0.04819340631365776 +2024-07-22 23:46:56.076 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 30/50, Train Loss: 0.0476282517558762, Val Loss: 0.04815486972885472 +2024-07-22 23:46:59.414 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 31/50, Train Loss: 0.04750378456498895, Val Loss: 0.0479858117976359 +2024-07-22 23:47:02.730 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 32/50, Train Loss: 0.04749628095222371, Val Loss: 0.047925710624882156 +2024-07-22 23:47:06.025 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 33/50, Train Loss: 0.04751037369881358, Val Loss: 0.04802959385727133 +2024-07-22 23:47:09.359 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 34/50, Train Loss: 0.04746242104364293, Val Loss: 0.048008552033986365 +2024-07-22 23:47:12.699 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 35/50, Train Loss: 0.047443585550146446, Val Loss: 0.04799985960125923 +2024-07-22 23:47:15.987 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 36/50, Train Loss: 0.04747328635837351, Val Loss: 0.04814712543572698 +2024-07-22 23:47:19.326 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 37/50, Train Loss: 0.04750190419810159, Val Loss: 0.04796547000961644 +2024-07-22 23:47:22.663 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 38/50, Train Loss: 0.04750332018094403, Val Loss: 0.047867846967918536 +2024-07-22 23:47:25.977 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 39/50, Train Loss: 0.04733036958745548, Val Loss: 0.047913977982742446 +2024-07-22 23:47:29.295 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 40/50, Train Loss: 0.0474608731589147, Val Loss: 0.0479273154267243 +2024-07-22 23:47:32.621 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 41/50, Train Loss: 0.04745372882378953, Val Loss: 0.047900792849915365 +2024-07-22 23:47:35.929 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 42/50, Train Loss: 0.047386307668473036, Val Loss: 0.04791747863803591 +2024-07-22 23:47:39.241 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 43/50, Train Loss: 0.04739912857434579, Val Loss: 0.04784807749092579 +2024-07-22 23:47:42.537 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 44/50, Train Loss: 0.047392941186470645, Val Loss: 0.04787584367607321 +2024-07-22 23:47:45.820 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 45/50, Train Loss: 0.04745934312897069, Val Loss: 0.04773955563349383 +2024-07-22 23:47:49.122 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 46/50, Train Loss: 0.047410204474415095, Val Loss: 0.04768558251006263 +2024-07-22 23:47:52.453 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 47/50, Train Loss: 0.04732102948640074, Val Loss: 0.047986575216054914 +2024-07-22 23:47:55.749 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 48/50, Train Loss: 0.04738442440118108, Val Loss: 0.047801331749984195 +2024-07-22 23:47:59.047 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 49/50, Train Loss: 0.047381910708333766, Val Loss: 0.047753052413463594 +2024-07-22 23:48:02.345 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 50/50, Train Loss: 0.04734752665140799, Val Loss: 0.04774609064417226 +2024-07-22 23:48:02.345 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Fold 1, MAPE: 11.80% +2024-07-22 23:48:02.454 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_1001_5000_LSTM//train_f1_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-22 23:48:07.293 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 1/50, Train Loss: 0.04757763185681632, Val Loss: 0.05063056120915072 +2024-07-22 23:48:12.012 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 2/50, Train Loss: 0.047417342877731875, Val Loss: 0.05057485428239618 +2024-07-22 23:48:16.687 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 3/50, Train Loss: 0.04751287857428766, Val Loss: 0.050561950196112905 +2024-07-22 23:48:16.687 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:48:16.687 No tasks are waiting in the queue. +2024-07-22 23:48:16.687 4 steps have not started: log_model, model_scores, validate_model, end. +2024-07-22 23:48:21.447 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 4/50, Train Loss: 0.047587239720786996, Val Loss: 0.050578571110963824 +2024-07-22 23:48:26.176 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 5/50, Train Loss: 0.04749828573459616, Val Loss: 0.05057017755295549 +2024-07-22 23:48:30.877 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 6/50, Train Loss: 0.047413682260622196, Val Loss: 0.050562716328672 +2024-07-22 23:48:35.603 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 7/50, Train Loss: 0.04739352860129797, Val Loss: 0.05055886363344533 +2024-07-22 23:48:40.311 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 8/50, Train Loss: 0.04744030576414214, Val Loss: 0.050570901855826376 +2024-07-22 23:48:45.013 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 9/50, Train Loss: 0.047474529003151335, Val Loss: 0.05057504336748805 +2024-07-22 23:48:49.730 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 10/50, Train Loss: 0.04731079217834541, Val Loss: 0.05058993420430592 +2024-07-22 23:48:54.444 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 11/50, Train Loss: 0.04733568467558003, Val Loss: 0.05056351652102811 +2024-07-22 23:48:59.187 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 12/50, Train Loss: 0.047305262074447595, Val Loss: 0.050565952701228004 +2024-07-22 23:49:03.906 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 13/50, Train Loss: 0.04732868669984432, Val Loss: 0.05055317101734025 +2024-07-22 23:49:08.635 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 14/50, Train Loss: 0.047314455678973064, Val Loss: 0.05051220767199993 +2024-07-22 23:49:13.416 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 15/50, Train Loss: 0.047400624598734654, Val Loss: 0.05052861145564488 +2024-07-22 23:49:18.115 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 16/50, Train Loss: 0.047321839920746595, Val Loss: 0.050495235675147604 +2024-07-22 23:49:22.881 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 17/50, Train Loss: 0.04738788573572842, Val Loss: 0.050515292584896086 +2024-07-22 23:49:27.596 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 18/50, Train Loss: 0.04734582994849636, Val Loss: 0.05044955041791711 +2024-07-22 23:49:32.352 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 19/50, Train Loss: 0.04735623778273853, Val Loss: 0.05047054189656462 +2024-07-22 23:49:37.072 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 20/50, Train Loss: 0.047319493668440446, Val Loss: 0.0504474758037499 +2024-07-22 23:49:41.836 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 21/50, Train Loss: 0.047418920090422034, Val Loss: 0.05047893364514623 +2024-07-22 23:49:46.538 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 22/50, Train Loss: 0.04737794829102663, Val Loss: 0.05047096370586327 +2024-07-22 23:49:51.301 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 23/50, Train Loss: 0.047296534811791316, Val Loss: 0.05046032129653862 +2024-07-22 23:49:56.012 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 24/50, Train Loss: 0.047308225686160416, Val Loss: 0.05049591160246304 +2024-07-22 23:50:00.740 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 25/50, Train Loss: 0.04715336873554266, Val Loss: 0.05049786503825869 +2024-07-22 23:50:05.520 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 26/50, Train Loss: 0.047145540915572874, Val Loss: 0.05045936799475125 +2024-07-22 23:50:10.355 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 27/50, Train Loss: 0.04702877287323085, Val Loss: 0.050475044548511504 +2024-07-22 23:50:15.185 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 28/50, Train Loss: 0.04699527543897812, Val Loss: 0.05044858061841556 +2024-07-22 23:50:19.967 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 29/50, Train Loss: 0.047087917050633296, Val Loss: 0.05045699264322009 +2024-07-22 23:50:24.782 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 30/50, Train Loss: 0.0471373399755416, Val Loss: 0.050454266635434966 +2024-07-22 23:50:29.587 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 31/50, Train Loss: 0.04710119285692389, Val Loss: 0.05049300635499614 +2024-07-22 23:50:34.450 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 32/50, Train Loss: 0.04702225134063225, Val Loss: 0.0503376236983708 +2024-07-22 23:50:39.201 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 33/50, Train Loss: 0.047000950041155405, Val Loss: 0.05042723145868097 +2024-07-22 23:50:43.984 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 34/50, Train Loss: 0.04707683612091037, Val Loss: 0.05044165216386318 +2024-07-22 23:50:48.763 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 35/50, Train Loss: 0.04698326533588652, Val Loss: 0.050406329067690034 +2024-07-22 23:50:53.731 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 36/50, Train Loss: 0.04699378080952626, Val Loss: 0.05021618099084922 +2024-07-22 23:50:58.647 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 37/50, Train Loss: 0.04692221712321043, Val Loss: 0.0502757442849023 +2024-07-22 23:51:03.457 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 38/50, Train Loss: 0.046892115488075294, Val Loss: 0.0502330268067973 +2024-07-22 23:51:08.317 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 39/50, Train Loss: 0.046934317295941025, Val Loss: 0.05027514084109238 +2024-07-22 23:51:13.299 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 40/50, Train Loss: 0.04692319755514081, Val Loss: 0.050284953308956964 +2024-07-22 23:51:18.094 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 41/50, Train Loss: 0.04702901413950782, Val Loss: 0.05031945753310408 +2024-07-22 23:51:23.049 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 42/50, Train Loss: 0.046843798007242955, Val Loss: 0.05022542630987508 +2024-07-22 23:51:27.876 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 43/50, Train Loss: 0.0467717272336953, Val Loss: 0.05024280734360218 +2024-07-22 23:51:32.629 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 44/50, Train Loss: 0.046780967726730384, Val Loss: 0.05025112618293081 +2024-07-22 23:51:37.360 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 45/50, Train Loss: 0.04674900874782067, Val Loss: 0.0502414558082819 +2024-07-22 23:51:42.121 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 46/50, Train Loss: 0.04667758477780108, Val Loss: 0.050186322576233316 +2024-07-22 23:51:46.849 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 47/50, Train Loss: 0.04680552204641012, Val Loss: 0.05031056718102523 +2024-07-22 23:51:51.601 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 48/50, Train Loss: 0.04685362774090698, Val Loss: 0.050234061000602584 +2024-07-22 23:51:56.324 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 49/50, Train Loss: 0.04664660555023987, Val Loss: 0.05022660100034305 +2024-07-22 23:52:01.062 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 50/50, Train Loss: 0.04669317420428762, Val Loss: 0.050184243811028345 +2024-07-22 23:52:01.063 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Fold 2, MAPE: 11.70% +2024-07-22 23:52:01.176 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_1001_5000_LSTM//train_f2_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-22 23:52:07.374 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 1/50, Train Loss: 0.04799370525284208, Val Loss: 0.05653683447412082 +2024-07-22 23:52:13.545 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 2/50, Train Loss: 0.0477461226740115, Val Loss: 0.0565456862960543 +2024-07-22 23:52:19.750 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 3/50, Train Loss: 0.04777100632677404, Val Loss: 0.0565648723925863 +2024-07-22 23:52:25.953 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 4/50, Train Loss: 0.047707532391809734, Val Loss: 0.056565222250563756 +2024-07-22 23:52:32.169 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 5/50, Train Loss: 0.0477204553166525, Val Loss: 0.0565716806266989 +2024-07-22 23:52:38.334 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 6/50, Train Loss: 0.04761103907827851, Val Loss: 0.05648389405437878 +2024-07-22 23:52:44.496 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 7/50, Train Loss: 0.047583289833055986, Val Loss: 0.0564719771700246 +2024-07-22 23:52:50.674 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 8/50, Train Loss: 0.04762412793934345, Val Loss: 0.056356057737554824 +2024-07-22 23:52:56.816 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 9/50, Train Loss: 0.04762170068490848, Val Loss: 0.056531902828386854 +2024-07-22 23:53:03.004 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 10/50, Train Loss: 0.047553305668260555, Val Loss: 0.05635764652064868 +2024-07-22 23:53:09.176 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 11/50, Train Loss: 0.04756952150852131, Val Loss: 0.05636816674045154 +2024-07-22 23:53:15.334 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 12/50, Train Loss: 0.04760635893443506, Val Loss: 0.05626142248511314 +2024-07-22 23:53:21.541 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 13/50, Train Loss: 0.047544036368779144, Val Loss: 0.05646355833326067 +2024-07-22 23:53:21.541 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:53:21.541 No tasks are waiting in the queue. +2024-07-22 23:53:21.541 4 steps have not started: log_model, model_scores, validate_model, end. +2024-07-22 23:53:27.665 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 14/50, Train Loss: 0.04754103513823139, Val Loss: 0.05640533311026437 +2024-07-22 23:53:33.817 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 15/50, Train Loss: 0.047483089601071615, Val Loss: 0.05648829681532724 +2024-07-22 23:53:39.994 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 16/50, Train Loss: 0.04743863099502574, Val Loss: 0.056302490723984584 +2024-07-22 23:53:46.140 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 17/50, Train Loss: 0.04749006605137595, Val Loss: 0.05624313152262143 +2024-07-22 23:53:52.305 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 18/50, Train Loss: 0.04753086209404383, Val Loss: 0.05622751712799072 +2024-07-22 23:53:58.513 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 19/50, Train Loss: 0.04751854151380148, Val Loss: 0.056535911240748 +2024-07-22 23:54:04.665 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 20/50, Train Loss: 0.04746368839639983, Val Loss: 0.05642426354544503 +2024-07-22 23:54:10.872 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 21/50, Train Loss: 0.04744120333477748, Val Loss: 0.056196366144078115 +2024-07-22 23:54:17.015 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 22/50, Train Loss: 0.04758195609872719, Val Loss: 0.05635180281741278 +2024-07-22 23:54:23.181 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 23/50, Train Loss: 0.0474785320031986, Val Loss: 0.056554609217814036 +2024-07-22 23:54:29.360 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 24/50, Train Loss: 0.04751911126881195, Val Loss: 0.05629972645214626 +2024-07-22 23:54:35.522 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 25/50, Train Loss: 0.04752533163258926, Val Loss: 0.05632507854274341 +2024-07-22 23:54:41.716 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 26/50, Train Loss: 0.04749337361334897, Val Loss: 0.056289090641907284 +2024-07-22 23:54:47.860 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 27/50, Train Loss: 0.04752401900377205, Val Loss: 0.05624775737524033 +2024-07-22 23:54:54.023 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 28/50, Train Loss: 0.04751941695702162, Val Loss: 0.05635733710868018 +2024-07-22 23:55:00.162 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 29/50, Train Loss: 0.047481526345979394, Val Loss: 0.05634504950472287 +2024-07-22 23:55:06.348 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 30/50, Train Loss: 0.04739821205089847, Val Loss: 0.05616831119571413 +2024-07-22 23:55:12.554 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 31/50, Train Loss: 0.047522855386566774, Val Loss: 0.05628377561058317 +2024-07-22 23:55:18.721 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 32/50, Train Loss: 0.047492004515562986, Val Loss: 0.05626445849026952 +2024-07-22 23:55:24.926 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 33/50, Train Loss: 0.04749704093384228, Val Loss: 0.056295356899499896 +2024-07-22 23:55:31.138 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 34/50, Train Loss: 0.04753167980866466, Val Loss: 0.05653665417007037 +2024-07-22 23:55:37.346 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 35/50, Train Loss: 0.0474718114320966, Val Loss: 0.05630412282688277 +2024-07-22 23:55:43.547 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 36/50, Train Loss: 0.047464135190029795, Val Loss: 0.05636007764509746 +2024-07-22 23:55:49.736 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 37/50, Train Loss: 0.047530100473182665, Val Loss: 0.05616645344666072 +2024-07-22 23:55:55.923 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 38/50, Train Loss: 0.047517473373910504, Val Loss: 0.056152838255677906 +2024-07-22 23:56:02.135 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 39/50, Train Loss: 0.047499397193356385, Val Loss: 0.05621093873466764 +2024-07-22 23:56:08.310 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 40/50, Train Loss: 0.047393353655934334, Val Loss: 0.05619015970400402 +2024-07-22 23:56:14.519 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 41/50, Train Loss: 0.04748563526077665, Val Loss: 0.05617948376706668 +2024-07-22 23:56:20.752 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 42/50, Train Loss: 0.047417045725013714, Val Loss: 0.056639629921742846 +2024-07-22 23:56:26.976 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 43/50, Train Loss: 0.04758943583843091, Val Loss: 0.05625671563403947 +2024-07-22 23:56:33.197 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 44/50, Train Loss: 0.04755954295664811, Val Loss: 0.056297704577445984 +2024-07-22 23:56:39.419 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 45/50, Train Loss: 0.04741873987447873, Val Loss: 0.056301080754825046 +2024-07-22 23:56:45.610 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 46/50, Train Loss: 0.04744283473052138, Val Loss: 0.05624291981969561 +2024-07-22 23:56:51.800 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 47/50, Train Loss: 0.04742964142732483, Val Loss: 0.056212575946535386 +2024-07-22 23:56:57.985 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 48/50, Train Loss: 0.047401475458801225, Val Loss: 0.05626839857016291 +2024-07-22 23:57:04.215 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 49/50, Train Loss: 0.047366495036499964, Val Loss: 0.05624175146222114 +2024-07-22 23:57:10.400 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 50/50, Train Loss: 0.04737417835393827, Val Loss: 0.05636282722864832 +2024-07-22 23:57:10.400 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Fold 3, MAPE: 13.75% +2024-07-22 23:57:10.510 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_1001_5000_LSTM//train_f3_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-22 23:57:18.210 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 1/50, Train Loss: 0.049803426157383396, Val Loss: 0.04762636125087738 +2024-07-22 23:57:25.871 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 2/50, Train Loss: 0.04965415893486519, Val Loss: 0.04794802761503628 +2024-07-22 23:57:33.525 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 3/50, Train Loss: 0.0496314016074456, Val Loss: 0.04793239736131259 +2024-07-22 23:57:41.168 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 4/50, Train Loss: 0.05003143569732877, Val Loss: 0.12252544036933354 +2024-07-22 23:57:48.810 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 5/50, Train Loss: 0.05324486809001229, Val Loss: 0.05162736821387495 +2024-07-22 23:57:56.420 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 6/50, Train Loss: 0.05088197539464153, Val Loss: 0.06597300044127873 +2024-07-22 23:58:04.028 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 7/50, Train Loss: 0.05122073811489618, Val Loss: 0.06097006068697997 +2024-07-22 23:58:11.645 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 8/50, Train Loss: 0.052164134323254396, Val Loss: 0.047936906718782014 +2024-07-22 23:58:19.238 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 9/50, Train Loss: 0.05099413182115418, Val Loss: 0.04747348087174552 +2024-07-22 23:58:26.848 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 10/50, Train Loss: 0.051028772664053, Val Loss: 0.047464544432503836 +2024-07-22 23:58:26.848 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 23:58:26.848 No tasks are waiting in the queue. +2024-07-22 23:58:26.848 4 steps have not started: log_model, model_scores, validate_model, end. +2024-07-22 23:58:34.582 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 11/50, Train Loss: 0.05112798924118966, Val Loss: 0.04735029589916979 +2024-07-22 23:58:42.547 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 12/50, Train Loss: 0.05114050872152907, Val Loss: 0.04734746803130422 +2024-07-22 23:58:50.449 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 13/50, Train Loss: 0.05098704190860535, Val Loss: 0.04735112844833306 +2024-07-22 23:58:58.392 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 14/50, Train Loss: 0.05070018531733203, Val Loss: 0.0505925181720938 +2024-07-22 23:59:06.235 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 15/50, Train Loss: 0.0511771277363958, Val Loss: 0.04762204528919288 +2024-07-22 23:59:14.067 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 16/50, Train Loss: 0.0505641079668341, Val Loss: 0.04763644715504987 +2024-07-22 23:59:22.011 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 17/50, Train Loss: 0.050528028605227496, Val Loss: 0.04736279536570821 +2024-07-22 23:59:29.916 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 18/50, Train Loss: 0.0506193687946632, Val Loss: 0.04753261309649263 +2024-07-22 23:59:37.845 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 19/50, Train Loss: 0.05032079782465409, Val Loss: 0.04754432583493846 +2024-07-22 23:59:45.713 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 20/50, Train Loss: 0.05040247438625357, Val Loss: 0.04746251313814095 +2024-07-22 23:59:53.430 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 21/50, Train Loss: 0.05028901303765075, Val Loss: 0.04754493566496032 +2024-07-23 00:00:01.137 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 22/50, Train Loss: 0.050241860346975684, Val Loss: 0.04748927551720824 +2024-07-23 00:00:08.859 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 23/50, Train Loss: 0.05027841222097819, Val Loss: 0.04727983059627669 +2024-07-23 00:00:16.518 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 24/50, Train Loss: 0.050145174986843406, Val Loss: 0.04741747044026852 +2024-07-23 00:00:24.222 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 25/50, Train Loss: 0.050086997727724326, Val Loss: 0.04767421542533806 +2024-07-23 00:00:31.901 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 26/50, Train Loss: 0.04995569785864189, Val Loss: 0.04754315816930362 +2024-07-23 00:00:39.583 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 27/50, Train Loss: 0.04993773421979156, Val Loss: 0.047856191598943304 +2024-07-23 00:00:47.272 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 28/50, Train Loss: 0.04976179380098294, Val Loss: 0.048001248549137794 +2024-07-23 00:00:54.987 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 29/50, Train Loss: 0.04968501799793421, Val Loss: 0.04807154195649283 +2024-07-23 00:01:02.689 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 30/50, Train Loss: 0.049831783013611006, Val Loss: 0.04782257511147431 +2024-07-23 00:01:10.395 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 31/50, Train Loss: 0.04982941259426632, Val Loss: 0.04813204987772873 +2024-07-23 00:01:18.130 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 32/50, Train Loss: 0.04976916357061301, Val Loss: 0.04793216623365879 +2024-07-23 00:01:25.861 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 33/50, Train Loss: 0.049715054489072714, Val Loss: 0.04768106995948723 +2024-07-23 00:01:33.554 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 34/50, Train Loss: 0.04971013511477531, Val Loss: 0.0477440068764346 +2024-07-23 00:01:41.229 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 35/50, Train Loss: 0.04978197240324198, Val Loss: 0.04777630477079323 +2024-07-23 00:01:48.911 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 36/50, Train Loss: 0.049760588005870236, Val Loss: 0.04795274122485093 +2024-07-23 00:01:56.619 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 37/50, Train Loss: 0.049738106574734736, Val Loss: 0.047685881331563 +2024-07-23 00:02:04.327 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 38/50, Train Loss: 0.049792684464790356, Val Loss: 0.04784752396600587 +2024-07-23 00:02:12.021 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 39/50, Train Loss: 0.049773863730845094, Val Loss: 0.048035630211234095 +2024-07-23 00:02:19.663 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 40/50, Train Loss: 0.04990964914918288, Val Loss: 0.04773264303803444 +2024-07-23 00:02:27.328 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 41/50, Train Loss: 0.04960362726672628, Val Loss: 0.048093094250985555 +2024-07-23 00:02:35.034 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 42/50, Train Loss: 0.04963817755723822, Val Loss: 0.04826801105269364 +2024-07-23 00:02:42.726 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 43/50, Train Loss: 0.049725770104633665, Val Loss: 0.048029546599302975 +2024-07-23 00:02:50.565 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 44/50, Train Loss: 0.04980520759548607, Val Loss: 0.04827804443027292 +2024-07-23 00:02:58.252 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 45/50, Train Loss: 0.04968095665005432, Val Loss: 0.04805863041962896 +2024-07-23 00:03:05.962 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 46/50, Train Loss: 0.049659984593076266, Val Loss: 0.04863482899963856 +2024-07-23 00:03:13.638 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 47/50, Train Loss: 0.04958592767388314, Val Loss: 0.04833764455148152 +2024-07-23 00:03:21.301 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 48/50, Train Loss: 0.04980384511337883, Val Loss: 0.04850479704993112 +2024-07-23 00:03:28.997 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 49/50, Train Loss: 0.04964211674128798, Val Loss: 0.04861677257078034 +2024-07-23 00:03:28.998 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:03:28.998 No tasks are waiting in the queue. +2024-07-23 00:03:28.998 4 steps have not started: log_model, model_scores, validate_model, end. +2024-07-23 00:03:36.673 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Epoch 50/50, Train Loss: 0.0496238191001888, Val Loss: 0.04850702775376184 +2024-07-23 00:03:36.674 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Fold 4, MAPE: 13.95% +2024-07-23 00:03:36.782 [42/cross_validate_train/415 (pid 27813)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_1001_5000_LSTM//train_f4_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-23 00:03:41.328 [42/cross_validate_train/415 (pid 27813)] Task finished successfully. +2024-07-23 00:03:41.361 [42/model_scores/416 (pid 32412)] Task is starting. +2024-07-23 00:03:42.854 [42/model_scores/416 (pid 32412)] INFO:__main__:Average Train Loss across all folds: 0.04989710279459462 +2024-07-23 00:03:46.742 [42/model_scores/416 (pid 32412)] INFO:__main__:Average Validation Loss across all folds: 0.05102326102554798 +2024-07-23 00:03:46.742 [42/model_scores/416 (pid 32412)] INFO:__main__:Average MAPE across all folds: 12.54% +2024-07-23 00:03:46.743 [42/model_scores/416 (pid 32412)] Task finished successfully. +2024-07-23 00:03:46.777 [42/validate_model/417 (pid 32440)] Task is starting. +2024-07-23 00:03:48.241 [42/validate_model/417 (pid 32440)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 00:03:49.114 [42/validate_model/417 (pid 32440)] INFO:__main__:Test Set MAPE: 10.22% +2024-07-23 00:03:49.495 [42/validate_model/417 (pid 32440)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_lodging_residential_1001_5000_LSTM//test_bgd_lodging_residential_1001_5000_LSTM.png +2024-07-23 00:03:49.919 [42/validate_model/417 (pid 32440)] Task finished successfully. +2024-07-23 00:03:49.950 [42/log_model/418 (pid 32460)] Task is starting. +2024-07-23 00:03:51.447 [42/log_model/418 (pid 32460)] INFO:__main__:Logging model bgd_lodging_residential_1001_5000_LSTM +2024-07-23 00:03:51.448 [42/log_model/418 (pid 32460)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_lodging_residential_1001_5000_LSTM//bgd_lodging_residential_1001_5000_LSTM.pth +2024-07-23 00:03:55.307 [42/log_model/418 (pid 32460)] Task finished successfully. +2024-07-23 00:03:55.337 [42/end/419 (pid 32484)] Task is starting. +2024-07-23 00:03:56.814 [42/end/419 (pid 32484)] INFO:__main__:Pipeline end. +2024-07-23 00:03:57.120 [42/end/419 (pid 32484)] Task finished successfully. +2024-07-23 00:03:57.121 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/scaler_bgd_lodging_residential_1001_5000_LSTM.pkl b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/scaler_bgd_lodging_residential_1001_5000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..b24823a4b453c68c6501dc995aefda1531bd8711 --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/scaler_bgd_lodging_residential_1001_5000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c975d21fddba5a1dbc7a41efce664681aeadfd60d49280bc06c15c608ca5ba +size 557 diff --git a/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/test_bgd_lodging_residential_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/test_bgd_lodging_residential_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..7d32056fbffe9d733b732733565f21e2f5eda9bf Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/test_bgd_lodging_residential_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f0_bgd_lodging_residential_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f0_bgd_lodging_residential_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..13fade71c5aa8db3330b8b7e5739ee59a2131e84 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f0_bgd_lodging_residential_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f1_bgd_lodging_residential_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f1_bgd_lodging_residential_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..73fc74e46a250302eeb6d428ccb28f88fab8df3a Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f1_bgd_lodging_residential_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f2_bgd_lodging_residential_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f2_bgd_lodging_residential_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..2b60b5b8dadca29bbd163f6220c6de65f0b9f4c3 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f2_bgd_lodging_residential_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f3_bgd_lodging_residential_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f3_bgd_lodging_residential_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..59c3e35bcce98c91870b836c18d12ec87189f4bf Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f3_bgd_lodging_residential_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f4_bgd_lodging_residential_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f4_bgd_lodging_residential_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..bce3f00ee917fc4500517b625a950e9032ae441f Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_1001_5000_LSTM/train_f4_bgd_lodging_residential_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/bgd_lodging_residential_200001_500000_LSTM.pth b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/bgd_lodging_residential_200001_500000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..9b50af625893d61c5615d534e6683350982185a6 --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/bgd_lodging_residential_200001_500000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12f865c4f3fe78984f7a4f6b8a9eb165e74212660f88e8646a8ebc99596824df +size 47078 diff --git a/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/output.txt b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..90a43610dcdf9ead85549c4410b4d3e1bdeb88f4 --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/output.txt @@ -0,0 +1,755 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-23 05:27:42.646 Workflow starting (run-id 50): +2024-07-23 05:27:42.721 [50/start/519 (pid 67585)] Task is starting. +2024-07-23 05:27:44.211 [50/start/519 (pid 67585)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 05:27:44.503 [50/start/519 (pid 67585)] Task finished successfully. +2024-07-23 05:27:44.532 [50/ingest/520 (pid 67597)] Task is starting. +2024-07-23 05:27:45.983 [50/ingest/520 (pid 67597)] INFO:__main__:Fetching dataframe.. +2024-07-23 05:27:45.998 [50/ingest/520 (pid 67597)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 05:27:49.813 [50/ingest/520 (pid 67597)] Task finished successfully. +2024-07-23 05:27:49.850 [50/pick_2017_data/521 (pid 67625)] Task is starting. +2024-07-23 05:27:51.314 [50/pick_2017_data/521 (pid 67625)] INFO:__main__:Picking 2017 data.. +2024-07-23 05:27:51.617 [50/pick_2017_data/521 (pid 67625)] Task finished successfully. +2024-07-23 05:27:51.650 [50/fill_missing_data/522 (pid 67636)] Task is starting. +2024-07-23 05:27:53.082 [50/fill_missing_data/522 (pid 67636)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 05:27:53.087 [50/fill_missing_data/522 (pid 67636)] INFO:__main__:NaN counts per column: +2024-07-23 05:27:53.087 [50/fill_missing_data/522 (pid 67636)] INFO:__main__:Panther_lodging_Kara 12 +2024-07-23 05:27:53.087 [50/fill_missing_data/522 (pid 67636)] Panther_lodging_Marisol 10 +2024-07-23 05:27:53.087 [50/fill_missing_data/522 (pid 67636)] Panther_lodging_Kirk 12 +2024-07-23 05:27:53.087 [50/fill_missing_data/522 (pid 67636)] dtype: int64 +2024-07-23 05:27:53.087 [50/fill_missing_data/522 (pid 67636)] --- Logging error --- +2024-07-23 05:27:53.088 [50/fill_missing_data/522 (pid 67636)] Traceback (most recent call last): +2024-07-23 05:27:53.088 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] msg = self.format(record) +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] return fmt.format(record) +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] record.message = record.getMessage() +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] msg = msg % self.args +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] TypeError: not all arguments converted during string formatting +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] Call stack: +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 05:27:53.414 [50/fill_missing_data/522 (pid 67636)] BGD_LinearFlow() +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] cli.main(self) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] return func(*args, **kwargs) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] return self.main(*args, **kwargs) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] rv = self.invoke(ctx) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] return callback(*args, **kwargs) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] return f(get_current_context(), *args, **kwargs) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] task.run_step( +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] self._exec_step_function(step_func) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] step_function() +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] self.missing_values = find_nan_counts(self.df) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] Arguments: (34,) +2024-07-23 05:27:53.416 [50/fill_missing_data/522 (pid 67636)] Task finished successfully. +2024-07-23 05:27:53.452 [50/find_median/523 (pid 67647)] Task is starting. +2024-07-23 05:27:54.931 [50/find_median/523 (pid 67647)] INFO:__main__:Computing and using median.. +2024-07-23 05:27:55.439 [50/find_median/523 (pid 67647)] Task finished successfully. +2024-07-23 05:27:55.471 [50/aggregate_data/524 (pid 67658)] Task is starting. +2024-07-23 05:27:56.930 [50/aggregate_data/524 (pid 67658)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 05:28:00.711 [50/aggregate_data/524 (pid 67658)] Task finished successfully. +2024-07-23 05:28:00.748 [50/split_data/525 (pid 67691)] Task is starting. +2024-07-23 05:28:02.176 [50/split_data/525 (pid 67691)] INFO:__main__:Splitting data into test and train... +2024-07-23 05:28:05.947 [50/split_data/525 (pid 67691)] Task finished successfully. +2024-07-23 05:28:05.978 [50/make_x_y/526 (pid 67715)] Task is starting. +2024-07-23 05:28:07.764 [50/make_x_y/526 (pid 67715)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 05:28:08.166 [50/make_x_y/526 (pid 67715)] Shape of y_train: (6648, 1) +2024-07-23 05:28:08.166 [50/make_x_y/526 (pid 67715)] Shape of X_test: (1392, 360, 1) +2024-07-23 05:28:08.166 [50/make_x_y/526 (pid 67715)] Shape of y_test: (1392, 1) +2024-07-23 05:28:08.167 [50/make_x_y/526 (pid 67715)] Task finished successfully. +2024-07-23 05:28:08.197 [50/cross_validate_train/527 (pid 67736)] Task is starting. +2024-07-23 05:28:09.666 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Creating bgd_lodging_residential_200001_500000_LSTM +2024-07-23 05:28:09.667 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Performing cross validation.. +2024-07-23 05:28:12.213 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 1/50, Train Loss: 0.27512797266244887, Val Loss: 0.15633502091680254 +2024-07-23 05:28:14.116 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 2/50, Train Loss: 0.1424804659826415, Val Loss: 0.13125820330211094 +2024-07-23 05:28:16.018 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 3/50, Train Loss: 0.1399661870939391, Val Loss: 0.12841741144657134 +2024-07-23 05:28:17.926 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 4/50, Train Loss: 0.13644320368766785, Val Loss: 0.12539179027080535 +2024-07-23 05:28:19.848 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 5/50, Train Loss: 0.13176845014095306, Val Loss: 0.12063988596200943 +2024-07-23 05:28:21.763 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 6/50, Train Loss: 0.12445679881743023, Val Loss: 0.11330464673893792 +2024-07-23 05:28:23.683 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 7/50, Train Loss: 0.10679031802075249, Val Loss: 0.09992868921586445 +2024-07-23 05:28:25.609 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 8/50, Train Loss: 0.09759204377021108, Val Loss: 0.09653950876423291 +2024-07-23 05:28:27.525 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 9/50, Train Loss: 0.0916857594890254, Val Loss: 0.09044453193034445 +2024-07-23 05:28:29.452 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 10/50, Train Loss: 0.08899217194744519, Val Loss: 0.09131701939872333 +2024-07-23 05:28:31.377 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 11/50, Train Loss: 0.08716412772025381, Val Loss: 0.08613010155303137 +2024-07-23 05:28:33.301 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 12/50, Train Loss: 0.08648057856730053, Val Loss: 0.08444901736719268 +2024-07-23 05:28:35.233 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 13/50, Train Loss: 0.08629469126462937, Val Loss: 0.08507515649710383 +2024-07-23 05:28:37.184 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 14/50, Train Loss: 0.08429079066429819, Val Loss: 0.08008096920592445 +2024-07-23 05:28:39.114 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 15/50, Train Loss: 0.0836443162390164, Val Loss: 0.08245472397123065 +2024-07-23 05:28:41.074 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 16/50, Train Loss: 0.08204418154699462, Val Loss: 0.0813841703747 +2024-07-23 05:28:43.020 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 17/50, Train Loss: 0.08062408438750676, Val Loss: 0.07685598592673029 +2024-07-23 05:28:44.962 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 18/50, Train Loss: 0.08008393325975963, Val Loss: 0.07770378802503858 +2024-07-23 05:28:46.942 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 19/50, Train Loss: 0.07930335221546037, Val Loss: 0.07695174227867807 +2024-07-23 05:28:48.894 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 20/50, Train Loss: 0.0771599292755127, Val Loss: 0.07676565072366169 +2024-07-23 05:28:50.868 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 21/50, Train Loss: 0.07622185998729297, Val Loss: 0.07634809900607381 +2024-07-23 05:28:52.830 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 22/50, Train Loss: 0.07622363099030086, Val Loss: 0.07577094052519118 +2024-07-23 05:28:54.785 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 23/50, Train Loss: 0.07493482210806438, Val Loss: 0.07477443069219589 +2024-07-23 05:28:56.736 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 24/50, Train Loss: 0.0746663197875023, Val Loss: 0.07462926038673946 +2024-07-23 05:28:58.700 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 25/50, Train Loss: 0.07429550034659249, Val Loss: 0.07416484270777021 +2024-07-23 05:29:00.675 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 26/50, Train Loss: 0.0736737738762583, Val Loss: 0.07133501203996795 +2024-07-23 05:29:02.643 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 27/50, Train Loss: 0.07327231881873948, Val Loss: 0.0711704541529928 +2024-07-23 05:29:04.603 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 28/50, Train Loss: 0.07287833850298608, Val Loss: 0.06949073459420885 +2024-07-23 05:29:06.590 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 29/50, Train Loss: 0.0720788120159081, Val Loss: 0.0692599703158651 +2024-07-23 05:29:08.562 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 30/50, Train Loss: 0.07169131838849613, Val Loss: 0.06881882154515812 +2024-07-23 05:29:10.542 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 31/50, Train Loss: 0.0708132310637406, Val Loss: 0.0682576376412596 +2024-07-23 05:29:12.493 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 32/50, Train Loss: 0.0707164891064167, Val Loss: 0.06688805658902441 +2024-07-23 05:29:14.492 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 33/50, Train Loss: 0.07041522072894232, Val Loss: 0.06551043220928737 +2024-07-23 05:29:16.472 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 34/50, Train Loss: 0.06932589731046132, Val Loss: 0.06529413323317255 +2024-07-23 05:29:18.439 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 35/50, Train Loss: 0.0683939203619957, Val Loss: 0.06581310427614621 +2024-07-23 05:29:20.447 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 36/50, Train Loss: 0.06824762874415942, Val Loss: 0.06378226120557104 +2024-07-23 05:29:22.397 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 37/50, Train Loss: 0.06780934344444955, Val Loss: 0.06352890399949891 +2024-07-23 05:29:24.361 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 38/50, Train Loss: 0.06696650481649807, Val Loss: 0.06257013582757541 +2024-07-23 05:29:26.327 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 39/50, Train Loss: 0.06630147557173456, Val Loss: 0.06259310362594468 +2024-07-23 05:29:28.296 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 40/50, Train Loss: 0.06588310546108654, Val Loss: 0.06211109778710774 +2024-07-23 05:29:30.276 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 41/50, Train Loss: 0.06535701432398387, Val Loss: 0.06202052970017705 +2024-07-23 05:29:32.246 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 42/50, Train Loss: 0.06463307568005153, Val Loss: 0.062195870812450135 +2024-07-23 05:29:34.207 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 43/50, Train Loss: 0.06392061391047069, Val Loss: 0.061640150738613946 +2024-07-23 05:29:36.165 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 44/50, Train Loss: 0.06347576124327524, Val Loss: 0.06075163558125496 +2024-07-23 05:29:38.135 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 45/50, Train Loss: 0.06307865562183516, Val Loss: 0.060092920809984206 +2024-07-23 05:29:40.118 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 46/50, Train Loss: 0.062328343519142695, Val Loss: 0.060475529517446246 +2024-07-23 05:29:42.085 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 47/50, Train Loss: 0.06305002399853298, Val Loss: 0.059514553525618144 +2024-07-23 05:29:44.047 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 48/50, Train Loss: 0.06173625992877143, Val Loss: 0.061491147535187855 +2024-07-23 05:29:46.018 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 49/50, Train Loss: 0.06268466902630669, Val Loss: 0.05800144704324858 +2024-07-23 05:29:47.992 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 50/50, Train Loss: 0.06077757786427226, Val Loss: 0.06036571998681341 +2024-07-23 05:29:47.992 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Fold 0, MAPE: 3.98% +2024-07-23 05:29:48.281 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_200001_500000_LSTM//train_f0_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-23 05:29:51.797 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 1/50, Train Loss: 0.05609791262873581, Val Loss: 0.05447422393730709 +2024-07-23 05:29:55.253 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 2/50, Train Loss: 0.053604825586080554, Val Loss: 0.052817375851528986 +2024-07-23 05:29:58.675 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 3/50, Train Loss: 0.053705078682729175, Val Loss: 0.051064848686967576 +2024-07-23 05:30:02.112 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 4/50, Train Loss: 0.05319207353251321, Val Loss: 0.050678186384694915 +2024-07-23 05:30:05.521 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 5/50, Train Loss: 0.05239675295140062, Val Loss: 0.04979226450834955 +2024-07-23 05:30:08.965 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 6/50, Train Loss: 0.05222971652235304, Val Loss: 0.04948744268289634 +2024-07-23 05:30:12.395 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 7/50, Train Loss: 0.05230854893369334, Val Loss: 0.048445374518632886 +2024-07-23 05:30:15.827 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 8/50, Train Loss: 0.05199075958558491, Val Loss: 0.04836882145277092 +2024-07-23 05:30:19.285 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 9/50, Train Loss: 0.05174848735332489, Val Loss: 0.04790496224803584 +2024-07-23 05:30:22.738 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 10/50, Train Loss: 0.05135206271495138, Val Loss: 0.04882734614823546 +2024-07-23 05:30:26.167 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 11/50, Train Loss: 0.051368046605161255, Val Loss: 0.04911491189684187 +2024-07-23 05:30:29.632 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 12/50, Train Loss: 0.05102021736758096, Val Loss: 0.04803378305264882 +2024-07-23 05:30:33.053 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 13/50, Train Loss: 0.05144710077771119, Val Loss: 0.04815450204270227 +2024-07-23 05:30:36.480 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 14/50, Train Loss: 0.05108485493276801, Val Loss: 0.04812788963317871 +2024-07-23 05:30:39.937 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 15/50, Train Loss: 0.050650964358023236, Val Loss: 0.04884582757949829 +2024-07-23 05:30:43.365 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 16/50, Train Loss: 0.05041093357971736, Val Loss: 0.04986180939844676 +2024-07-23 05:30:46.806 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 17/50, Train Loss: 0.05042768535869462, Val Loss: 0.04848692768386432 +2024-07-23 05:30:50.259 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 18/50, Train Loss: 0.0503467358648777, Val Loss: 0.04886556704129492 +2024-07-23 05:30:53.698 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 19/50, Train Loss: 0.0505276805055993, Val Loss: 0.04857754334807396 +2024-07-23 05:30:57.162 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 20/50, Train Loss: 0.05070779249072075, Val Loss: 0.04771044179797172 +2024-07-23 05:31:00.616 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 21/50, Train Loss: 0.050300737523606844, Val Loss: 0.04861403426953725 +2024-07-23 05:31:04.066 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 22/50, Train Loss: 0.05035582897918565, Val Loss: 0.0486818895808288 +2024-07-23 05:31:07.542 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 23/50, Train Loss: 0.05044243506022862, Val Loss: 0.04805545657873154 +2024-07-23 05:31:10.999 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 24/50, Train Loss: 0.05008809209934303, Val Loss: 0.04745441877416202 +2024-07-23 05:31:14.451 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 25/50, Train Loss: 0.050349916464516094, Val Loss: 0.04773654160755021 +2024-07-23 05:31:17.906 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 26/50, Train Loss: 0.05009284876286983, Val Loss: 0.04794714003801346 +2024-07-23 05:31:21.359 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 27/50, Train Loss: 0.05019262619316578, Val Loss: 0.047800170949527196 +2024-07-23 05:31:24.805 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 28/50, Train Loss: 0.04988573486251491, Val Loss: 0.0480672367981502 +2024-07-23 05:31:28.279 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 29/50, Train Loss: 0.04978979953697749, Val Loss: 0.048583715728351046 +2024-07-23 05:31:31.744 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 30/50, Train Loss: 0.04962310381233692, Val Loss: 0.047854895676885334 +2024-07-23 05:31:35.178 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 31/50, Train Loss: 0.049468976525323734, Val Loss: 0.048556194880178996 +2024-07-23 05:31:38.620 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 32/50, Train Loss: 0.04993474973099572, Val Loss: 0.04839253723621369 +2024-07-23 05:31:42.092 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 33/50, Train Loss: 0.049465709392513546, Val Loss: 0.0475172686789717 +2024-07-23 05:31:45.517 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 34/50, Train Loss: 0.049473257309624125, Val Loss: 0.04837669453450612 +2024-07-23 05:31:48.996 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 35/50, Train Loss: 0.04957458515252386, Val Loss: 0.04821224393589156 +2024-07-23 05:31:52.449 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 36/50, Train Loss: 0.04942670288894858, Val Loss: 0.04815138770001275 +2024-07-23 05:31:55.866 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 37/50, Train Loss: 0.0495394552392619, Val Loss: 0.04778222218155861 +2024-07-23 05:31:59.306 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 38/50, Train Loss: 0.049453542062214445, Val Loss: 0.04758332329136985 +2024-07-23 05:32:02.752 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 39/50, Train Loss: 0.049240009167364665, Val Loss: 0.049103694941316334 +2024-07-23 05:32:06.230 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 40/50, Train Loss: 0.04947027095726558, Val Loss: 0.047496041336229866 +2024-07-23 05:32:09.678 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 41/50, Train Loss: 0.04912494303924697, Val Loss: 0.047791734231369835 +2024-07-23 05:32:13.127 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 42/50, Train Loss: 0.0492811633007867, Val Loss: 0.0478010461798736 +2024-07-23 05:32:16.564 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 43/50, Train Loss: 0.04916110634803772, Val Loss: 0.04721089101263455 +2024-07-23 05:32:20.025 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 44/50, Train Loss: 0.04924575824822698, Val Loss: 0.04725875822561128 +2024-07-23 05:32:23.464 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 45/50, Train Loss: 0.04908087934766497, Val Loss: 0.04664911074297769 +2024-07-23 05:32:26.906 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 46/50, Train Loss: 0.0488517486091171, Val Loss: 0.04676249378493854 +2024-07-23 05:32:30.357 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 47/50, Train Loss: 0.04898870055164609, Val Loss: 0.04650801452142852 +2024-07-23 05:32:33.785 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 48/50, Train Loss: 0.04887579131339278, Val Loss: 0.046988878931318014 +2024-07-23 05:32:37.258 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 49/50, Train Loss: 0.04884356430598668, Val Loss: 0.046880569734743666 +2024-07-23 05:32:40.730 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 50/50, Train Loss: 0.048899068630167415, Val Loss: 0.046548582507031304 +2024-07-23 05:32:40.731 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Fold 1, MAPE: 3.40% +2024-07-23 05:32:40.831 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_200001_500000_LSTM//train_f1_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-23 05:32:45.719 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 1/50, Train Loss: 0.046437163676063604, Val Loss: 0.035848152371389524 +2024-07-23 05:32:45.719 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:32:45.719 No tasks are waiting in the queue. +2024-07-23 05:32:45.719 4 steps have not started: end, validate_model, log_model, model_scores. +2024-07-23 05:32:50.626 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 2/50, Train Loss: 0.045701373189401165, Val Loss: 0.03593540793018682 +2024-07-23 05:32:55.478 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 3/50, Train Loss: 0.04588571240982184, Val Loss: 0.03547456115484238 +2024-07-23 05:33:00.371 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 4/50, Train Loss: 0.045563933511192985, Val Loss: 0.035681947373918124 +2024-07-23 05:33:05.227 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 5/50, Train Loss: 0.04586864226999191, Val Loss: 0.0355080994112151 +2024-07-23 05:33:10.139 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 6/50, Train Loss: 0.04563912477057714, Val Loss: 0.03577239774167538 +2024-07-23 05:33:15.036 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 7/50, Train Loss: 0.04583149113190862, Val Loss: 0.03577677841697421 +2024-07-23 05:33:19.936 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 8/50, Train Loss: 0.04598426045133518, Val Loss: 0.03644995939518724 +2024-07-23 05:33:24.793 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 9/50, Train Loss: 0.04570959168128096, Val Loss: 0.03612702164266791 +2024-07-23 05:33:29.668 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 10/50, Train Loss: 0.04576702716831978, Val Loss: 0.035674333944916724 +2024-07-23 05:33:34.531 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 11/50, Train Loss: 0.04545399618263428, Val Loss: 0.035507158190011975 +2024-07-23 05:33:39.402 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 12/50, Train Loss: 0.0458341297836831, Val Loss: 0.03649725296667644 +2024-07-23 05:33:44.280 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 13/50, Train Loss: 0.045448812584464364, Val Loss: 0.03539670104426997 +2024-07-23 05:33:49.139 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 14/50, Train Loss: 0.04544667833341429, Val Loss: 0.03599800632468292 +2024-07-23 05:33:54.020 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 15/50, Train Loss: 0.04548197995441464, Val Loss: 0.035460454278758595 +2024-07-23 05:33:58.868 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 16/50, Train Loss: 0.04539617815484794, Val Loss: 0.03555699714592525 +2024-07-23 05:34:03.749 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 17/50, Train Loss: 0.0451702439906792, Val Loss: 0.03556476421654224 +2024-07-23 05:34:08.615 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 18/50, Train Loss: 0.045283909510964386, Val Loss: 0.035867737286857194 +2024-07-23 05:34:13.480 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 19/50, Train Loss: 0.04521917856226747, Val Loss: 0.03568641229399613 +2024-07-23 05:34:18.373 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 20/50, Train Loss: 0.04537967613969858, Val Loss: 0.036096798735005514 +2024-07-23 05:34:23.266 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 21/50, Train Loss: 0.04512803569937555, Val Loss: 0.03615541197359562 +2024-07-23 05:34:28.123 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 22/50, Train Loss: 0.04538650459681566, Val Loss: 0.036354071221181325 +2024-07-23 05:34:33.036 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 23/50, Train Loss: 0.0454675922027001, Val Loss: 0.03643002728266376 +2024-07-23 05:34:37.922 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 24/50, Train Loss: 0.04538804915948556, Val Loss: 0.0366560379841498 +2024-07-23 05:34:42.776 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 25/50, Train Loss: 0.0451335095657179, Val Loss: 0.03598209161843572 +2024-07-23 05:34:47.656 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 26/50, Train Loss: 0.045354090828018695, Val Loss: 0.03605694957077503 +2024-07-23 05:34:52.624 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 27/50, Train Loss: 0.04513134570935598, Val Loss: 0.03572754668337958 +2024-07-23 05:34:57.505 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 28/50, Train Loss: 0.04500844143331051, Val Loss: 0.035818428652627125 +2024-07-23 05:35:02.401 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 29/50, Train Loss: 0.045001398700361066, Val Loss: 0.0355763599808727 +2024-07-23 05:35:07.294 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 30/50, Train Loss: 0.04538686491119174, Val Loss: 0.03664190157183579 +2024-07-23 05:35:12.195 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 31/50, Train Loss: 0.04511334811552213, Val Loss: 0.03691941324089255 +2024-07-23 05:35:17.080 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 32/50, Train Loss: 0.045550319724358045, Val Loss: 0.037662190997174806 +2024-07-23 05:35:21.977 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 33/50, Train Loss: 0.04520452961039085, Val Loss: 0.0367861946778638 +2024-07-23 05:35:26.913 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 34/50, Train Loss: 0.045130540939191215, Val Loss: 0.03725221210292407 +2024-07-23 05:35:31.803 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 35/50, Train Loss: 0.04546202998608351, Val Loss: 0.03751364211950983 +2024-07-23 05:35:36.691 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 36/50, Train Loss: 0.04506944653649743, Val Loss: 0.036766074438180245 +2024-07-23 05:35:41.586 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 37/50, Train Loss: 0.045211262499483734, Val Loss: 0.03637042678892612 +2024-07-23 05:35:46.453 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 38/50, Train Loss: 0.04509847589696829, Val Loss: 0.03624310099652835 +2024-07-23 05:35:51.358 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 39/50, Train Loss: 0.04552387845559189, Val Loss: 0.038253050563590865 +2024-07-23 05:35:56.231 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 40/50, Train Loss: 0.0451572945413108, Val Loss: 0.03615187688597611 +2024-07-23 05:36:01.121 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 41/50, Train Loss: 0.04477201266070971, Val Loss: 0.03638223180813449 +2024-07-23 05:36:06.006 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 42/50, Train Loss: 0.04478111304342747, Val Loss: 0.035968807765415736 +2024-07-23 05:36:10.927 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 43/50, Train Loss: 0.044882868971818916, Val Loss: 0.03585100546479225 +2024-07-23 05:36:15.800 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 44/50, Train Loss: 0.04466660963729597, Val Loss: 0.03603553926306111 +2024-07-23 05:36:20.684 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 45/50, Train Loss: 0.045328265557495445, Val Loss: 0.03571476542523929 +2024-07-23 05:36:25.569 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 46/50, Train Loss: 0.0449990015835143, Val Loss: 0.036936447396874426 +2024-07-23 05:36:30.489 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 47/50, Train Loss: 0.045374731766059995, Val Loss: 0.036970498732158116 +2024-07-23 05:36:35.370 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 48/50, Train Loss: 0.04483121377415955, Val Loss: 0.036858696011560305 +2024-07-23 05:36:40.272 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 49/50, Train Loss: 0.045034373770109735, Val Loss: 0.036554126228604995 +2024-07-23 05:36:45.152 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 50/50, Train Loss: 0.0447358693032024, Val Loss: 0.03622584295059953 +2024-07-23 05:36:45.152 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Fold 2, MAPE: 2.86% +2024-07-23 05:36:45.262 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_200001_500000_LSTM//train_f2_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-23 05:36:51.657 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 1/50, Train Loss: 0.040793428961321605, Val Loss: 0.03541629117514406 +2024-07-23 05:36:57.981 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 2/50, Train Loss: 0.04110658226414121, Val Loss: 0.03520843040730272 +2024-07-23 05:37:04.353 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 3/50, Train Loss: 0.04162546004698002, Val Loss: 0.03553671171622617 +2024-07-23 05:37:10.723 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 4/50, Train Loss: 0.041023537355790035, Val Loss: 0.035407446378043717 +2024-07-23 05:37:17.058 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 5/50, Train Loss: 0.041398253131041424, Val Loss: 0.035336318026695936 +2024-07-23 05:37:23.426 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 6/50, Train Loss: 0.04089309437294229, Val Loss: 0.035049959431801524 +2024-07-23 05:37:29.782 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 7/50, Train Loss: 0.041074765685329334, Val Loss: 0.03489368089607784 +2024-07-23 05:37:36.098 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 8/50, Train Loss: 0.04112189642334585, Val Loss: 0.035358657900776184 +2024-07-23 05:37:42.508 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 9/50, Train Loss: 0.04100521888396294, Val Loss: 0.03501588845891612 +2024-07-23 05:37:48.823 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 10/50, Train Loss: 0.04099340045409237, Val Loss: 0.03505237789026328 +2024-07-23 05:37:48.823 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:37:48.823 No tasks are waiting in the queue. +2024-07-23 05:37:48.823 4 steps have not started: end, validate_model, log_model, model_scores. +2024-07-23 05:37:55.169 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 11/50, Train Loss: 0.04088781428315657, Val Loss: 0.03502652240650994 +2024-07-23 05:38:01.556 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 12/50, Train Loss: 0.040927454668412105, Val Loss: 0.03546475847916944 +2024-07-23 05:38:07.938 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 13/50, Train Loss: 0.04098358491717054, Val Loss: 0.03520965538918972 +2024-07-23 05:38:14.313 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 14/50, Train Loss: 0.041233611835850226, Val Loss: 0.03500020003744534 +2024-07-23 05:38:20.640 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 15/50, Train Loss: 0.040926878079235986, Val Loss: 0.035046950301953726 +2024-07-23 05:38:26.965 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 16/50, Train Loss: 0.040968207910442526, Val Loss: 0.03590996371848243 +2024-07-23 05:38:33.305 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 17/50, Train Loss: 0.04125612009343484, Val Loss: 0.03479580661015851 +2024-07-23 05:38:39.645 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 18/50, Train Loss: 0.04133996327253554, Val Loss: 0.03477349233414446 +2024-07-23 05:38:46.016 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 19/50, Train Loss: 0.04089867414759218, Val Loss: 0.03543484418519906 +2024-07-23 05:38:52.437 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 20/50, Train Loss: 0.04104126451148404, Val Loss: 0.035594021901488304 +2024-07-23 05:38:58.762 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 21/50, Train Loss: 0.041319376273120906, Val Loss: 0.035019000726086755 +2024-07-23 05:39:05.151 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 22/50, Train Loss: 0.040898118248517565, Val Loss: 0.035987018580947605 +2024-07-23 05:39:11.534 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 23/50, Train Loss: 0.0410358314301899, Val Loss: 0.0354012877281223 +2024-07-23 05:39:17.910 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 24/50, Train Loss: 0.040786969401746344, Val Loss: 0.035281115557466235 +2024-07-23 05:39:24.260 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 25/50, Train Loss: 0.040794713556659305, Val Loss: 0.035362697126609936 +2024-07-23 05:39:30.606 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 26/50, Train Loss: 0.04083640701908002, Val Loss: 0.03499044472617763 +2024-07-23 05:39:36.924 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 27/50, Train Loss: 0.04100853579936268, Val Loss: 0.035927847080997055 +2024-07-23 05:39:43.294 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 28/50, Train Loss: 0.04090403967784892, Val Loss: 0.03558177772377218 +2024-07-23 05:39:49.714 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 29/50, Train Loss: 0.0409365718340059, Val Loss: 0.03502137692911284 +2024-07-23 05:39:56.077 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 30/50, Train Loss: 0.040644183795121934, Val Loss: 0.035416873225143974 +2024-07-23 05:40:02.447 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 31/50, Train Loss: 0.04098910384094544, Val Loss: 0.034844108298420905 +2024-07-23 05:40:08.798 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 32/50, Train Loss: 0.04058586655975246, Val Loss: 0.03698975289506572 +2024-07-23 05:40:15.203 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 33/50, Train Loss: 0.04086154659124587, Val Loss: 0.035490485174315314 +2024-07-23 05:40:21.566 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 34/50, Train Loss: 0.040758641543898654, Val Loss: 0.03646886135850634 +2024-07-23 05:40:27.935 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 35/50, Train Loss: 0.040610824597718045, Val Loss: 0.03514854817518166 +2024-07-23 05:40:34.323 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 36/50, Train Loss: 0.040578769144716025, Val Loss: 0.035508958037410464 +2024-07-23 05:40:40.703 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 37/50, Train Loss: 0.04083724102849583, Val Loss: 0.037271468022039955 +2024-07-23 05:40:47.063 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 38/50, Train Loss: 0.040713076727639, Val Loss: 0.03553094533937318 +2024-07-23 05:40:53.427 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 39/50, Train Loss: 0.04083098913375422, Val Loss: 0.03573074846395424 +2024-07-23 05:40:59.831 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 40/50, Train Loss: 0.040798084059957974, Val Loss: 0.03548508690936225 +2024-07-23 05:41:06.184 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 41/50, Train Loss: 0.040627315372443025, Val Loss: 0.03526004260139806 +2024-07-23 05:41:12.583 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 42/50, Train Loss: 0.04059542340340374, Val Loss: 0.03567972284342561 +2024-07-23 05:41:18.939 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 43/50, Train Loss: 0.04063599567404754, Val Loss: 0.03504312804767064 +2024-07-23 05:41:25.349 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 44/50, Train Loss: 0.04046932756632781, Val Loss: 0.03604748653514045 +2024-07-23 05:41:31.747 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 45/50, Train Loss: 0.04055763029312487, Val Loss: 0.035441803932189944 +2024-07-23 05:41:38.059 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 46/50, Train Loss: 0.04046637495215848, Val Loss: 0.035810748381274085 +2024-07-23 05:41:44.414 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 47/50, Train Loss: 0.04067316327056439, Val Loss: 0.03527548499405384 +2024-07-23 05:41:50.854 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 48/50, Train Loss: 0.040425709669860144, Val Loss: 0.03699594544512885 +2024-07-23 05:41:57.208 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 49/50, Train Loss: 0.04054286213015481, Val Loss: 0.035627572664192746 +2024-07-23 05:42:03.662 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 50/50, Train Loss: 0.04043492154894973, Val Loss: 0.03826302391077791 +2024-07-23 05:42:03.662 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Fold 3, MAPE: 3.24% +2024-07-23 05:42:03.764 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_200001_500000_LSTM//train_f3_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-23 05:42:11.601 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 1/50, Train Loss: 0.03758714200350745, Val Loss: 0.03658145714019026 +2024-07-23 05:42:19.381 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 2/50, Train Loss: 0.037920612766910555, Val Loss: 0.03707819634250232 +2024-07-23 05:42:27.198 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 3/50, Train Loss: 0.03781077029162097, Val Loss: 0.036684548375861985 +2024-07-23 05:42:35.002 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 4/50, Train Loss: 0.03799339070188246, Val Loss: 0.0371470714786223 +2024-07-23 05:42:42.862 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 5/50, Train Loss: 0.03782558676668967, Val Loss: 0.0362214525363275 +2024-07-23 05:42:50.655 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 6/50, Train Loss: 0.03779259452532078, Val Loss: 0.03578613102436066 +2024-07-23 05:42:50.655 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:42:50.655 No tasks are waiting in the queue. +2024-07-23 05:42:50.655 4 steps have not started: end, validate_model, log_model, model_scores. +2024-07-23 05:42:58.446 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 7/50, Train Loss: 0.03784476449691701, Val Loss: 0.03654053168637412 +2024-07-23 05:43:06.312 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 8/50, Train Loss: 0.03772639538878682, Val Loss: 0.03661900678915637 +2024-07-23 05:43:14.230 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 9/50, Train Loss: 0.03778522054868183, Val Loss: 0.03655765519610473 +2024-07-23 05:43:22.071 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 10/50, Train Loss: 0.0377525524075689, Val Loss: 0.0367983307157244 +2024-07-23 05:43:29.870 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 11/50, Train Loss: 0.037684734396893405, Val Loss: 0.036490057462028096 +2024-07-23 05:43:37.693 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 12/50, Train Loss: 0.037627814305496624, Val Loss: 0.03646236732602119 +2024-07-23 05:43:45.543 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 13/50, Train Loss: 0.03761733556701534, Val Loss: 0.03691211688731398 +2024-07-23 05:43:53.423 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 14/50, Train Loss: 0.03772978686952386, Val Loss: 0.03673783370426723 +2024-07-23 05:44:01.246 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 15/50, Train Loss: 0.037624199564258255, Val Loss: 0.036327794566750525 +2024-07-23 05:44:09.103 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 16/50, Train Loss: 0.03748560025645741, Val Loss: 0.03687485914145197 +2024-07-23 05:44:16.964 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 17/50, Train Loss: 0.037686885291731906, Val Loss: 0.036161285425935476 +2024-07-23 05:44:24.820 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 18/50, Train Loss: 0.03767322995111175, Val Loss: 0.036788189890129226 +2024-07-23 05:44:32.665 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 19/50, Train Loss: 0.03764798381933193, Val Loss: 0.03647064375025885 +2024-07-23 05:44:40.498 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 20/50, Train Loss: 0.03766205455123008, Val Loss: 0.035683938169053624 +2024-07-23 05:44:48.318 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 21/50, Train Loss: 0.03765629664406009, Val Loss: 0.036684198305010796 +2024-07-23 05:44:56.179 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 22/50, Train Loss: 0.03766432509425728, Val Loss: 0.03628679194620677 +2024-07-23 05:45:04.031 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 23/50, Train Loss: 0.037674029582533346, Val Loss: 0.03516067537878241 +2024-07-23 05:45:11.885 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 24/50, Train Loss: 0.037462636121901975, Val Loss: 0.036041180257286344 +2024-07-23 05:45:19.706 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 25/50, Train Loss: 0.037405195935019134, Val Loss: 0.036104153149894305 +2024-07-23 05:45:27.572 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 26/50, Train Loss: 0.03739886743755176, Val Loss: 0.036167108320764134 +2024-07-23 05:45:35.410 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 27/50, Train Loss: 0.03742002180895244, Val Loss: 0.035932995857936995 +2024-07-23 05:45:43.257 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 28/50, Train Loss: 0.03757716107299958, Val Loss: 0.03541345356830529 +2024-07-23 05:45:51.070 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 29/50, Train Loss: 0.0374432117303555, Val Loss: 0.03568819207804544 +2024-07-23 05:45:58.909 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 30/50, Train Loss: 0.03743840424322534, Val Loss: 0.03609686940908432 +2024-07-23 05:46:06.726 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 31/50, Train Loss: 0.03773543282529746, Val Loss: 0.035648992444787704 +2024-07-23 05:46:14.540 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 32/50, Train Loss: 0.03754960070096556, Val Loss: 0.03571893892117909 +2024-07-23 05:46:22.368 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 33/50, Train Loss: 0.037469692132168116, Val Loss: 0.03525964074901172 +2024-07-23 05:46:30.219 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 34/50, Train Loss: 0.03744272688596413, Val Loss: 0.03561422058514186 +2024-07-23 05:46:38.060 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 35/50, Train Loss: 0.03739503297911978, Val Loss: 0.03563542855637414 +2024-07-23 05:46:45.875 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 36/50, Train Loss: 0.037458943235206196, Val Loss: 0.03660690736557756 +2024-07-23 05:46:53.712 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 37/50, Train Loss: 0.03748117832616828, Val Loss: 0.03620848213987691 +2024-07-23 05:47:01.534 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 38/50, Train Loss: 0.03771802231712246, Val Loss: 0.036047956613557676 +2024-07-23 05:47:09.385 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 39/50, Train Loss: 0.037337191338683, Val Loss: 0.03497850059398583 +2024-07-23 05:47:17.209 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 40/50, Train Loss: 0.037347604467094626, Val Loss: 0.03547666535845825 +2024-07-23 05:47:25.042 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 41/50, Train Loss: 0.03740435770188255, Val Loss: 0.035469506201999526 +2024-07-23 05:47:32.923 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 42/50, Train Loss: 0.03739856879344617, Val Loss: 0.035287024240408624 +2024-07-23 05:47:40.770 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 43/50, Train Loss: 0.037454141560813475, Val Loss: 0.03577030945037093 +2024-07-23 05:47:48.610 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 44/50, Train Loss: 0.037536707524766864, Val Loss: 0.03562333136796951 +2024-07-23 05:47:56.443 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 45/50, Train Loss: 0.03752138168047899, Val Loss: 0.0352905735373497 +2024-07-23 05:47:56.443 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:47:56.443 No tasks are waiting in the queue. +2024-07-23 05:47:56.443 4 steps have not started: end, validate_model, log_model, model_scores. +2024-07-23 05:48:04.321 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 46/50, Train Loss: 0.03740579334098375, Val Loss: 0.03474454496588026 +2024-07-23 05:48:12.240 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 47/50, Train Loss: 0.0373978383796311, Val Loss: 0.03651290147432259 +2024-07-23 05:48:20.075 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 48/50, Train Loss: 0.0374938426004059, Val Loss: 0.03473764663296086 +2024-07-23 05:48:27.855 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 49/50, Train Loss: 0.03733384356587783, Val Loss: 0.035498855422650064 +2024-07-23 05:48:35.680 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 50/50, Train Loss: 0.03727490301832728, Val Loss: 0.03511977387326104 +2024-07-23 05:48:35.680 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Fold 4, MAPE: 3.00% +2024-07-23 05:48:35.788 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_200001_500000_LSTM//train_f4_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-23 05:48:40.294 [50/cross_validate_train/527 (pid 67736)] Task finished successfully. +2024-07-23 05:48:40.325 [50/model_scores/528 (pid 72415)] Task is starting. +2024-07-23 05:48:41.763 [50/model_scores/528 (pid 72415)] INFO:__main__:Average Train Loss across all folds: 0.04642446807298382 +2024-07-23 05:48:45.687 [50/model_scores/528 (pid 72415)] INFO:__main__:Average Validation Loss across all folds: 0.04330458864569663 +2024-07-23 05:48:45.687 [50/model_scores/528 (pid 72415)] INFO:__main__:Average MAPE across all folds: 3.29% +2024-07-23 05:48:45.688 [50/model_scores/528 (pid 72415)] Task finished successfully. +2024-07-23 05:48:45.718 [50/validate_model/529 (pid 72446)] Task is starting. +2024-07-23 05:48:47.176 [50/validate_model/529 (pid 72446)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 05:48:47.977 [50/validate_model/529 (pid 72446)] INFO:__main__:Test Set MAPE: 11.79% +2024-07-23 05:48:48.320 [50/validate_model/529 (pid 72446)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_lodging_residential_200001_500000_LSTM//test_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-23 05:48:48.767 [50/validate_model/529 (pid 72446)] Task finished successfully. +2024-07-23 05:48:48.798 [50/log_model/530 (pid 72468)] Task is starting. +2024-07-23 05:48:50.291 [50/log_model/530 (pid 72468)] INFO:__main__:Logging model bgd_lodging_residential_200001_500000_LSTM +2024-07-23 05:48:50.293 [50/log_model/530 (pid 72468)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_lodging_residential_200001_500000_LSTM//bgd_lodging_residential_200001_500000_LSTM.pth +2024-07-23 05:48:54.158 [50/log_model/530 (pid 72468)] Task finished successfully. +2024-07-23 05:48:54.188 [50/end/531 (pid 72492)] Task is starting. +2024-07-23 05:48:55.652 [50/end/531 (pid 72492)] INFO:__main__:Pipeline end. +2024-07-23 05:48:55.962 [50/end/531 (pid 72492)] Task finished successfully. +2024-07-23 05:48:55.963 Done! +✅ Run('BGD_LinearFlow/50') succeeded: +-- stdout -- +2024-07-23 05:27:42.646 Workflow starting (run-id 50): +2024-07-23 05:27:42.721 [50/start/519 (pid 67585)] Task is starting. +2024-07-23 05:27:44.211 [50/start/519 (pid 67585)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 05:27:44.503 [50/start/519 (pid 67585)] Task finished successfully. +2024-07-23 05:27:44.532 [50/ingest/520 (pid 67597)] Task is starting. +2024-07-23 05:27:45.983 [50/ingest/520 (pid 67597)] INFO:__main__:Fetching dataframe.. +2024-07-23 05:27:45.998 [50/ingest/520 (pid 67597)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 05:27:49.813 [50/ingest/520 (pid 67597)] Task finished successfully. +2024-07-23 05:27:49.850 [50/pick_2017_data/521 (pid 67625)] Task is starting. +2024-07-23 05:27:51.314 [50/pick_2017_data/521 (pid 67625)] INFO:__main__:Picking 2017 data.. +2024-07-23 05:27:51.617 [50/pick_2017_data/521 (pid 67625)] Task finished successfully. +2024-07-23 05:27:51.650 [50/fill_missing_data/522 (pid 67636)] Task is starting. +2024-07-23 05:27:53.082 [50/fill_missing_data/522 (pid 67636)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 05:27:53.087 [50/fill_missing_data/522 (pid 67636)] INFO:__main__:NaN counts per column: +2024-07-23 05:27:53.087 [50/fill_missing_data/522 (pid 67636)] INFO:__main__:Panther_lodging_Kara 12 +2024-07-23 05:27:53.087 [50/fill_missing_data/522 (pid 67636)] Panther_lodging_Marisol 10 +2024-07-23 05:27:53.087 [50/fill_missing_data/522 (pid 67636)] Panther_lodging_Kirk 12 +2024-07-23 05:27:53.087 [50/fill_missing_data/522 (pid 67636)] dtype: int64 +2024-07-23 05:27:53.087 [50/fill_missing_data/522 (pid 67636)] --- Logging error --- +2024-07-23 05:27:53.088 [50/fill_missing_data/522 (pid 67636)] Traceback (most recent call last): +2024-07-23 05:27:53.088 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] msg = self.format(record) +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] return fmt.format(record) +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] record.message = record.getMessage() +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] msg = msg % self.args +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] TypeError: not all arguments converted during string formatting +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] Call stack: +2024-07-23 05:27:53.089 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 05:27:53.414 [50/fill_missing_data/522 (pid 67636)] BGD_LinearFlow() +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] cli.main(self) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] return func(*args, **kwargs) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] return self.main(*args, **kwargs) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] rv = self.invoke(ctx) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] return callback(*args, **kwargs) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] return f(get_current_context(), *args, **kwargs) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] task.run_step( +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] self._exec_step_function(step_func) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] step_function() +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] self.missing_values = find_nan_counts(self.df) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 05:27:53.415 [50/fill_missing_data/522 (pid 67636)] Arguments: (34,) +2024-07-23 05:27:53.416 [50/fill_missing_data/522 (pid 67636)] Task finished successfully. +2024-07-23 05:27:53.452 [50/find_median/523 (pid 67647)] Task is starting. +2024-07-23 05:27:54.931 [50/find_median/523 (pid 67647)] INFO:__main__:Computing and using median.. +2024-07-23 05:27:55.439 [50/find_median/523 (pid 67647)] Task finished successfully. +2024-07-23 05:27:55.471 [50/aggregate_data/524 (pid 67658)] Task is starting. +2024-07-23 05:27:56.930 [50/aggregate_data/524 (pid 67658)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 05:28:00.711 [50/aggregate_data/524 (pid 67658)] Task finished successfully. +2024-07-23 05:28:00.748 [50/split_data/525 (pid 67691)] Task is starting. +2024-07-23 05:28:02.176 [50/split_data/525 (pid 67691)] INFO:__main__:Splitting data into test and train... +2024-07-23 05:28:05.947 [50/split_data/525 (pid 67691)] Task finished successfully. +2024-07-23 05:28:05.978 [50/make_x_y/526 (pid 67715)] Task is starting. +2024-07-23 05:28:07.764 [50/make_x_y/526 (pid 67715)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 05:28:08.166 [50/make_x_y/526 (pid 67715)] Shape of y_train: (6648, 1) +2024-07-23 05:28:08.166 [50/make_x_y/526 (pid 67715)] Shape of X_test: (1392, 360, 1) +2024-07-23 05:28:08.166 [50/make_x_y/526 (pid 67715)] Shape of y_test: (1392, 1) +2024-07-23 05:28:08.167 [50/make_x_y/526 (pid 67715)] Task finished successfully. +2024-07-23 05:28:08.197 [50/cross_validate_train/527 (pid 67736)] Task is starting. +2024-07-23 05:28:09.666 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Creating bgd_lodging_residential_200001_500000_LSTM +2024-07-23 05:28:09.667 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Performing cross validation.. +2024-07-23 05:28:12.213 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 1/50, Train Loss: 0.27512797266244887, Val Loss: 0.15633502091680254 +2024-07-23 05:28:14.116 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 2/50, Train Loss: 0.1424804659826415, Val Loss: 0.13125820330211094 +2024-07-23 05:28:16.018 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 3/50, Train Loss: 0.1399661870939391, Val Loss: 0.12841741144657134 +2024-07-23 05:28:17.926 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 4/50, Train Loss: 0.13644320368766785, Val Loss: 0.12539179027080535 +2024-07-23 05:28:19.848 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 5/50, Train Loss: 0.13176845014095306, Val Loss: 0.12063988596200943 +2024-07-23 05:28:21.763 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 6/50, Train Loss: 0.12445679881743023, Val Loss: 0.11330464673893792 +2024-07-23 05:28:23.683 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 7/50, Train Loss: 0.10679031802075249, Val Loss: 0.09992868921586445 +2024-07-23 05:28:25.609 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 8/50, Train Loss: 0.09759204377021108, Val Loss: 0.09653950876423291 +2024-07-23 05:28:27.525 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 9/50, Train Loss: 0.0916857594890254, Val Loss: 0.09044453193034445 +2024-07-23 05:28:29.452 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 10/50, Train Loss: 0.08899217194744519, Val Loss: 0.09131701939872333 +2024-07-23 05:28:31.377 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 11/50, Train Loss: 0.08716412772025381, Val Loss: 0.08613010155303137 +2024-07-23 05:28:33.301 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 12/50, Train Loss: 0.08648057856730053, Val Loss: 0.08444901736719268 +2024-07-23 05:28:35.233 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 13/50, Train Loss: 0.08629469126462937, Val Loss: 0.08507515649710383 +2024-07-23 05:28:37.184 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 14/50, Train Loss: 0.08429079066429819, Val Loss: 0.08008096920592445 +2024-07-23 05:28:39.114 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 15/50, Train Loss: 0.0836443162390164, Val Loss: 0.08245472397123065 +2024-07-23 05:28:41.074 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 16/50, Train Loss: 0.08204418154699462, Val Loss: 0.0813841703747 +2024-07-23 05:28:43.020 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 17/50, Train Loss: 0.08062408438750676, Val Loss: 0.07685598592673029 +2024-07-23 05:28:44.962 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 18/50, Train Loss: 0.08008393325975963, Val Loss: 0.07770378802503858 +2024-07-23 05:28:46.942 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 19/50, Train Loss: 0.07930335221546037, Val Loss: 0.07695174227867807 +2024-07-23 05:28:48.894 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 20/50, Train Loss: 0.0771599292755127, Val Loss: 0.07676565072366169 +2024-07-23 05:28:50.868 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 21/50, Train Loss: 0.07622185998729297, Val Loss: 0.07634809900607381 +2024-07-23 05:28:52.830 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 22/50, Train Loss: 0.07622363099030086, Val Loss: 0.07577094052519118 +2024-07-23 05:28:54.785 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 23/50, Train Loss: 0.07493482210806438, Val Loss: 0.07477443069219589 +2024-07-23 05:28:56.736 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 24/50, Train Loss: 0.0746663197875023, Val Loss: 0.07462926038673946 +2024-07-23 05:28:58.700 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 25/50, Train Loss: 0.07429550034659249, Val Loss: 0.07416484270777021 +2024-07-23 05:29:00.675 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 26/50, Train Loss: 0.0736737738762583, Val Loss: 0.07133501203996795 +2024-07-23 05:29:02.643 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 27/50, Train Loss: 0.07327231881873948, Val Loss: 0.0711704541529928 +2024-07-23 05:29:04.603 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 28/50, Train Loss: 0.07287833850298608, Val Loss: 0.06949073459420885 +2024-07-23 05:29:06.590 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 29/50, Train Loss: 0.0720788120159081, Val Loss: 0.0692599703158651 +2024-07-23 05:29:08.562 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 30/50, Train Loss: 0.07169131838849613, Val Loss: 0.06881882154515812 +2024-07-23 05:29:10.542 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 31/50, Train Loss: 0.0708132310637406, Val Loss: 0.0682576376412596 +2024-07-23 05:29:12.493 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 32/50, Train Loss: 0.0707164891064167, Val Loss: 0.06688805658902441 +2024-07-23 05:29:14.492 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 33/50, Train Loss: 0.07041522072894232, Val Loss: 0.06551043220928737 +2024-07-23 05:29:16.472 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 34/50, Train Loss: 0.06932589731046132, Val Loss: 0.06529413323317255 +2024-07-23 05:29:18.439 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 35/50, Train Loss: 0.0683939203619957, Val Loss: 0.06581310427614621 +2024-07-23 05:29:20.447 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 36/50, Train Loss: 0.06824762874415942, Val Loss: 0.06378226120557104 +2024-07-23 05:29:22.397 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 37/50, Train Loss: 0.06780934344444955, Val Loss: 0.06352890399949891 +2024-07-23 05:29:24.361 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 38/50, Train Loss: 0.06696650481649807, Val Loss: 0.06257013582757541 +2024-07-23 05:29:26.327 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 39/50, Train Loss: 0.06630147557173456, Val Loss: 0.06259310362594468 +2024-07-23 05:29:28.296 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 40/50, Train Loss: 0.06588310546108654, Val Loss: 0.06211109778710774 +2024-07-23 05:29:30.276 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 41/50, Train Loss: 0.06535701432398387, Val Loss: 0.06202052970017705 +2024-07-23 05:29:32.246 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 42/50, Train Loss: 0.06463307568005153, Val Loss: 0.062195870812450135 +2024-07-23 05:29:34.207 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 43/50, Train Loss: 0.06392061391047069, Val Loss: 0.061640150738613946 +2024-07-23 05:29:36.165 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 44/50, Train Loss: 0.06347576124327524, Val Loss: 0.06075163558125496 +2024-07-23 05:29:38.135 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 45/50, Train Loss: 0.06307865562183516, Val Loss: 0.060092920809984206 +2024-07-23 05:29:40.118 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 46/50, Train Loss: 0.062328343519142695, Val Loss: 0.060475529517446246 +2024-07-23 05:29:42.085 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 47/50, Train Loss: 0.06305002399853298, Val Loss: 0.059514553525618144 +2024-07-23 05:29:44.047 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 48/50, Train Loss: 0.06173625992877143, Val Loss: 0.061491147535187855 +2024-07-23 05:29:46.018 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 49/50, Train Loss: 0.06268466902630669, Val Loss: 0.05800144704324858 +2024-07-23 05:29:47.992 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 50/50, Train Loss: 0.06077757786427226, Val Loss: 0.06036571998681341 +2024-07-23 05:29:47.992 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Fold 0, MAPE: 3.98% +2024-07-23 05:29:48.281 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_200001_500000_LSTM//train_f0_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-23 05:29:51.797 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 1/50, Train Loss: 0.05609791262873581, Val Loss: 0.05447422393730709 +2024-07-23 05:29:55.253 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 2/50, Train Loss: 0.053604825586080554, Val Loss: 0.052817375851528986 +2024-07-23 05:29:58.675 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 3/50, Train Loss: 0.053705078682729175, Val Loss: 0.051064848686967576 +2024-07-23 05:30:02.112 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 4/50, Train Loss: 0.05319207353251321, Val Loss: 0.050678186384694915 +2024-07-23 05:30:05.521 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 5/50, Train Loss: 0.05239675295140062, Val Loss: 0.04979226450834955 +2024-07-23 05:30:08.965 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 6/50, Train Loss: 0.05222971652235304, Val Loss: 0.04948744268289634 +2024-07-23 05:30:12.395 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 7/50, Train Loss: 0.05230854893369334, Val Loss: 0.048445374518632886 +2024-07-23 05:30:15.827 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 8/50, Train Loss: 0.05199075958558491, Val Loss: 0.04836882145277092 +2024-07-23 05:30:19.285 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 9/50, Train Loss: 0.05174848735332489, Val Loss: 0.04790496224803584 +2024-07-23 05:30:22.738 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 10/50, Train Loss: 0.05135206271495138, Val Loss: 0.04882734614823546 +2024-07-23 05:30:26.167 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 11/50, Train Loss: 0.051368046605161255, Val Loss: 0.04911491189684187 +2024-07-23 05:30:29.632 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 12/50, Train Loss: 0.05102021736758096, Val Loss: 0.04803378305264882 +2024-07-23 05:30:33.053 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 13/50, Train Loss: 0.05144710077771119, Val Loss: 0.04815450204270227 +2024-07-23 05:30:36.480 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 14/50, Train Loss: 0.05108485493276801, Val Loss: 0.04812788963317871 +2024-07-23 05:30:39.937 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 15/50, Train Loss: 0.050650964358023236, Val Loss: 0.04884582757949829 +2024-07-23 05:30:43.365 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 16/50, Train Loss: 0.05041093357971736, Val Loss: 0.04986180939844676 +2024-07-23 05:30:46.806 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 17/50, Train Loss: 0.05042768535869462, Val Loss: 0.04848692768386432 +2024-07-23 05:30:50.259 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 18/50, Train Loss: 0.0503467358648777, Val Loss: 0.04886556704129492 +2024-07-23 05:30:53.698 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 19/50, Train Loss: 0.0505276805055993, Val Loss: 0.04857754334807396 +2024-07-23 05:30:57.162 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 20/50, Train Loss: 0.05070779249072075, Val Loss: 0.04771044179797172 +2024-07-23 05:31:00.616 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 21/50, Train Loss: 0.050300737523606844, Val Loss: 0.04861403426953725 +2024-07-23 05:31:04.066 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 22/50, Train Loss: 0.05035582897918565, Val Loss: 0.0486818895808288 +2024-07-23 05:31:07.542 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 23/50, Train Loss: 0.05044243506022862, Val Loss: 0.04805545657873154 +2024-07-23 05:31:10.999 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 24/50, Train Loss: 0.05008809209934303, Val Loss: 0.04745441877416202 +2024-07-23 05:31:14.451 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 25/50, Train Loss: 0.050349916464516094, Val Loss: 0.04773654160755021 +2024-07-23 05:31:17.906 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 26/50, Train Loss: 0.05009284876286983, Val Loss: 0.04794714003801346 +2024-07-23 05:31:21.359 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 27/50, Train Loss: 0.05019262619316578, Val Loss: 0.047800170949527196 +2024-07-23 05:31:24.805 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 28/50, Train Loss: 0.04988573486251491, Val Loss: 0.0480672367981502 +2024-07-23 05:31:28.279 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 29/50, Train Loss: 0.04978979953697749, Val Loss: 0.048583715728351046 +2024-07-23 05:31:31.744 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 30/50, Train Loss: 0.04962310381233692, Val Loss: 0.047854895676885334 +2024-07-23 05:31:35.178 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 31/50, Train Loss: 0.049468976525323734, Val Loss: 0.048556194880178996 +2024-07-23 05:31:38.620 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 32/50, Train Loss: 0.04993474973099572, Val Loss: 0.04839253723621369 +2024-07-23 05:31:42.092 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 33/50, Train Loss: 0.049465709392513546, Val Loss: 0.0475172686789717 +2024-07-23 05:31:45.517 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 34/50, Train Loss: 0.049473257309624125, Val Loss: 0.04837669453450612 +2024-07-23 05:31:48.996 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 35/50, Train Loss: 0.04957458515252386, Val Loss: 0.04821224393589156 +2024-07-23 05:31:52.449 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 36/50, Train Loss: 0.04942670288894858, Val Loss: 0.04815138770001275 +2024-07-23 05:31:55.866 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 37/50, Train Loss: 0.0495394552392619, Val Loss: 0.04778222218155861 +2024-07-23 05:31:59.306 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 38/50, Train Loss: 0.049453542062214445, Val Loss: 0.04758332329136985 +2024-07-23 05:32:02.752 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 39/50, Train Loss: 0.049240009167364665, Val Loss: 0.049103694941316334 +2024-07-23 05:32:06.230 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 40/50, Train Loss: 0.04947027095726558, Val Loss: 0.047496041336229866 +2024-07-23 05:32:09.678 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 41/50, Train Loss: 0.04912494303924697, Val Loss: 0.047791734231369835 +2024-07-23 05:32:13.127 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 42/50, Train Loss: 0.0492811633007867, Val Loss: 0.0478010461798736 +2024-07-23 05:32:16.564 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 43/50, Train Loss: 0.04916110634803772, Val Loss: 0.04721089101263455 +2024-07-23 05:32:20.025 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 44/50, Train Loss: 0.04924575824822698, Val Loss: 0.04725875822561128 +2024-07-23 05:32:23.464 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 45/50, Train Loss: 0.04908087934766497, Val Loss: 0.04664911074297769 +2024-07-23 05:32:26.906 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 46/50, Train Loss: 0.0488517486091171, Val Loss: 0.04676249378493854 +2024-07-23 05:32:30.357 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 47/50, Train Loss: 0.04898870055164609, Val Loss: 0.04650801452142852 +2024-07-23 05:32:33.785 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 48/50, Train Loss: 0.04887579131339278, Val Loss: 0.046988878931318014 +2024-07-23 05:32:37.258 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 49/50, Train Loss: 0.04884356430598668, Val Loss: 0.046880569734743666 +2024-07-23 05:32:40.730 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 50/50, Train Loss: 0.048899068630167415, Val Loss: 0.046548582507031304 +2024-07-23 05:32:40.731 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Fold 1, MAPE: 3.40% +2024-07-23 05:32:40.831 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_200001_500000_LSTM//train_f1_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-23 05:32:45.719 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 1/50, Train Loss: 0.046437163676063604, Val Loss: 0.035848152371389524 +2024-07-23 05:32:45.719 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:32:45.719 No tasks are waiting in the queue. +2024-07-23 05:32:45.719 4 steps have not started: end, validate_model, log_model, model_scores. +2024-07-23 05:32:50.626 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 2/50, Train Loss: 0.045701373189401165, Val Loss: 0.03593540793018682 +2024-07-23 05:32:55.478 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 3/50, Train Loss: 0.04588571240982184, Val Loss: 0.03547456115484238 +2024-07-23 05:33:00.371 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 4/50, Train Loss: 0.045563933511192985, Val Loss: 0.035681947373918124 +2024-07-23 05:33:05.227 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 5/50, Train Loss: 0.04586864226999191, Val Loss: 0.0355080994112151 +2024-07-23 05:33:10.139 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 6/50, Train Loss: 0.04563912477057714, Val Loss: 0.03577239774167538 +2024-07-23 05:33:15.036 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 7/50, Train Loss: 0.04583149113190862, Val Loss: 0.03577677841697421 +2024-07-23 05:33:19.936 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 8/50, Train Loss: 0.04598426045133518, Val Loss: 0.03644995939518724 +2024-07-23 05:33:24.793 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 9/50, Train Loss: 0.04570959168128096, Val Loss: 0.03612702164266791 +2024-07-23 05:33:29.668 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 10/50, Train Loss: 0.04576702716831978, Val Loss: 0.035674333944916724 +2024-07-23 05:33:34.531 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 11/50, Train Loss: 0.04545399618263428, Val Loss: 0.035507158190011975 +2024-07-23 05:33:39.402 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 12/50, Train Loss: 0.0458341297836831, Val Loss: 0.03649725296667644 +2024-07-23 05:33:44.280 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 13/50, Train Loss: 0.045448812584464364, Val Loss: 0.03539670104426997 +2024-07-23 05:33:49.139 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 14/50, Train Loss: 0.04544667833341429, Val Loss: 0.03599800632468292 +2024-07-23 05:33:54.020 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 15/50, Train Loss: 0.04548197995441464, Val Loss: 0.035460454278758595 +2024-07-23 05:33:58.868 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 16/50, Train Loss: 0.04539617815484794, Val Loss: 0.03555699714592525 +2024-07-23 05:34:03.749 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 17/50, Train Loss: 0.0451702439906792, Val Loss: 0.03556476421654224 +2024-07-23 05:34:08.615 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 18/50, Train Loss: 0.045283909510964386, Val Loss: 0.035867737286857194 +2024-07-23 05:34:13.480 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 19/50, Train Loss: 0.04521917856226747, Val Loss: 0.03568641229399613 +2024-07-23 05:34:18.373 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 20/50, Train Loss: 0.04537967613969858, Val Loss: 0.036096798735005514 +2024-07-23 05:34:23.266 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 21/50, Train Loss: 0.04512803569937555, Val Loss: 0.03615541197359562 +2024-07-23 05:34:28.123 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 22/50, Train Loss: 0.04538650459681566, Val Loss: 0.036354071221181325 +2024-07-23 05:34:33.036 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 23/50, Train Loss: 0.0454675922027001, Val Loss: 0.03643002728266376 +2024-07-23 05:34:37.922 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 24/50, Train Loss: 0.04538804915948556, Val Loss: 0.0366560379841498 +2024-07-23 05:34:42.776 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 25/50, Train Loss: 0.0451335095657179, Val Loss: 0.03598209161843572 +2024-07-23 05:34:47.656 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 26/50, Train Loss: 0.045354090828018695, Val Loss: 0.03605694957077503 +2024-07-23 05:34:52.624 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 27/50, Train Loss: 0.04513134570935598, Val Loss: 0.03572754668337958 +2024-07-23 05:34:57.505 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 28/50, Train Loss: 0.04500844143331051, Val Loss: 0.035818428652627125 +2024-07-23 05:35:02.401 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 29/50, Train Loss: 0.045001398700361066, Val Loss: 0.0355763599808727 +2024-07-23 05:35:07.294 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 30/50, Train Loss: 0.04538686491119174, Val Loss: 0.03664190157183579 +2024-07-23 05:35:12.195 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 31/50, Train Loss: 0.04511334811552213, Val Loss: 0.03691941324089255 +2024-07-23 05:35:17.080 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 32/50, Train Loss: 0.045550319724358045, Val Loss: 0.037662190997174806 +2024-07-23 05:35:21.977 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 33/50, Train Loss: 0.04520452961039085, Val Loss: 0.0367861946778638 +2024-07-23 05:35:26.913 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 34/50, Train Loss: 0.045130540939191215, Val Loss: 0.03725221210292407 +2024-07-23 05:35:31.803 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 35/50, Train Loss: 0.04546202998608351, Val Loss: 0.03751364211950983 +2024-07-23 05:35:36.691 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 36/50, Train Loss: 0.04506944653649743, Val Loss: 0.036766074438180245 +2024-07-23 05:35:41.586 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 37/50, Train Loss: 0.045211262499483734, Val Loss: 0.03637042678892612 +2024-07-23 05:35:46.453 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 38/50, Train Loss: 0.04509847589696829, Val Loss: 0.03624310099652835 +2024-07-23 05:35:51.358 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 39/50, Train Loss: 0.04552387845559189, Val Loss: 0.038253050563590865 +2024-07-23 05:35:56.231 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 40/50, Train Loss: 0.0451572945413108, Val Loss: 0.03615187688597611 +2024-07-23 05:36:01.121 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 41/50, Train Loss: 0.04477201266070971, Val Loss: 0.03638223180813449 +2024-07-23 05:36:06.006 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 42/50, Train Loss: 0.04478111304342747, Val Loss: 0.035968807765415736 +2024-07-23 05:36:10.927 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 43/50, Train Loss: 0.044882868971818916, Val Loss: 0.03585100546479225 +2024-07-23 05:36:15.800 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 44/50, Train Loss: 0.04466660963729597, Val Loss: 0.03603553926306111 +2024-07-23 05:36:20.684 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 45/50, Train Loss: 0.045328265557495445, Val Loss: 0.03571476542523929 +2024-07-23 05:36:25.569 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 46/50, Train Loss: 0.0449990015835143, Val Loss: 0.036936447396874426 +2024-07-23 05:36:30.489 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 47/50, Train Loss: 0.045374731766059995, Val Loss: 0.036970498732158116 +2024-07-23 05:36:35.370 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 48/50, Train Loss: 0.04483121377415955, Val Loss: 0.036858696011560305 +2024-07-23 05:36:40.272 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 49/50, Train Loss: 0.045034373770109735, Val Loss: 0.036554126228604995 +2024-07-23 05:36:45.152 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 50/50, Train Loss: 0.0447358693032024, Val Loss: 0.03622584295059953 +2024-07-23 05:36:45.152 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Fold 2, MAPE: 2.86% +2024-07-23 05:36:45.262 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_200001_500000_LSTM//train_f2_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-23 05:36:51.657 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 1/50, Train Loss: 0.040793428961321605, Val Loss: 0.03541629117514406 +2024-07-23 05:36:57.981 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 2/50, Train Loss: 0.04110658226414121, Val Loss: 0.03520843040730272 +2024-07-23 05:37:04.353 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 3/50, Train Loss: 0.04162546004698002, Val Loss: 0.03553671171622617 +2024-07-23 05:37:10.723 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 4/50, Train Loss: 0.041023537355790035, Val Loss: 0.035407446378043717 +2024-07-23 05:37:17.058 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 5/50, Train Loss: 0.041398253131041424, Val Loss: 0.035336318026695936 +2024-07-23 05:37:23.426 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 6/50, Train Loss: 0.04089309437294229, Val Loss: 0.035049959431801524 +2024-07-23 05:37:29.782 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 7/50, Train Loss: 0.041074765685329334, Val Loss: 0.03489368089607784 +2024-07-23 05:37:36.098 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 8/50, Train Loss: 0.04112189642334585, Val Loss: 0.035358657900776184 +2024-07-23 05:37:42.508 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 9/50, Train Loss: 0.04100521888396294, Val Loss: 0.03501588845891612 +2024-07-23 05:37:48.823 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 10/50, Train Loss: 0.04099340045409237, Val Loss: 0.03505237789026328 +2024-07-23 05:37:48.823 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:37:48.823 No tasks are waiting in the queue. +2024-07-23 05:37:48.823 4 steps have not started: end, validate_model, log_model, model_scores. +2024-07-23 05:37:55.169 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 11/50, Train Loss: 0.04088781428315657, Val Loss: 0.03502652240650994 +2024-07-23 05:38:01.556 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 12/50, Train Loss: 0.040927454668412105, Val Loss: 0.03546475847916944 +2024-07-23 05:38:07.938 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 13/50, Train Loss: 0.04098358491717054, Val Loss: 0.03520965538918972 +2024-07-23 05:38:14.313 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 14/50, Train Loss: 0.041233611835850226, Val Loss: 0.03500020003744534 +2024-07-23 05:38:20.640 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 15/50, Train Loss: 0.040926878079235986, Val Loss: 0.035046950301953726 +2024-07-23 05:38:26.965 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 16/50, Train Loss: 0.040968207910442526, Val Loss: 0.03590996371848243 +2024-07-23 05:38:33.305 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 17/50, Train Loss: 0.04125612009343484, Val Loss: 0.03479580661015851 +2024-07-23 05:38:39.645 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 18/50, Train Loss: 0.04133996327253554, Val Loss: 0.03477349233414446 +2024-07-23 05:38:46.016 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 19/50, Train Loss: 0.04089867414759218, Val Loss: 0.03543484418519906 +2024-07-23 05:38:52.437 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 20/50, Train Loss: 0.04104126451148404, Val Loss: 0.035594021901488304 +2024-07-23 05:38:58.762 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 21/50, Train Loss: 0.041319376273120906, Val Loss: 0.035019000726086755 +2024-07-23 05:39:05.151 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 22/50, Train Loss: 0.040898118248517565, Val Loss: 0.035987018580947605 +2024-07-23 05:39:11.534 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 23/50, Train Loss: 0.0410358314301899, Val Loss: 0.0354012877281223 +2024-07-23 05:39:17.910 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 24/50, Train Loss: 0.040786969401746344, Val Loss: 0.035281115557466235 +2024-07-23 05:39:24.260 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 25/50, Train Loss: 0.040794713556659305, Val Loss: 0.035362697126609936 +2024-07-23 05:39:30.606 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 26/50, Train Loss: 0.04083640701908002, Val Loss: 0.03499044472617763 +2024-07-23 05:39:36.924 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 27/50, Train Loss: 0.04100853579936268, Val Loss: 0.035927847080997055 +2024-07-23 05:39:43.294 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 28/50, Train Loss: 0.04090403967784892, Val Loss: 0.03558177772377218 +2024-07-23 05:39:49.714 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 29/50, Train Loss: 0.0409365718340059, Val Loss: 0.03502137692911284 +2024-07-23 05:39:56.077 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 30/50, Train Loss: 0.040644183795121934, Val Loss: 0.035416873225143974 +2024-07-23 05:40:02.447 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 31/50, Train Loss: 0.04098910384094544, Val Loss: 0.034844108298420905 +2024-07-23 05:40:08.798 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 32/50, Train Loss: 0.04058586655975246, Val Loss: 0.03698975289506572 +2024-07-23 05:40:15.203 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 33/50, Train Loss: 0.04086154659124587, Val Loss: 0.035490485174315314 +2024-07-23 05:40:21.566 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 34/50, Train Loss: 0.040758641543898654, Val Loss: 0.03646886135850634 +2024-07-23 05:40:27.935 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 35/50, Train Loss: 0.040610824597718045, Val Loss: 0.03514854817518166 +2024-07-23 05:40:34.323 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 36/50, Train Loss: 0.040578769144716025, Val Loss: 0.035508958037410464 +2024-07-23 05:40:40.703 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 37/50, Train Loss: 0.04083724102849583, Val Loss: 0.037271468022039955 +2024-07-23 05:40:47.063 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 38/50, Train Loss: 0.040713076727639, Val Loss: 0.03553094533937318 +2024-07-23 05:40:53.427 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 39/50, Train Loss: 0.04083098913375422, Val Loss: 0.03573074846395424 +2024-07-23 05:40:59.831 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 40/50, Train Loss: 0.040798084059957974, Val Loss: 0.03548508690936225 +2024-07-23 05:41:06.184 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 41/50, Train Loss: 0.040627315372443025, Val Loss: 0.03526004260139806 +2024-07-23 05:41:12.583 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 42/50, Train Loss: 0.04059542340340374, Val Loss: 0.03567972284342561 +2024-07-23 05:41:18.939 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 43/50, Train Loss: 0.04063599567404754, Val Loss: 0.03504312804767064 +2024-07-23 05:41:25.349 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 44/50, Train Loss: 0.04046932756632781, Val Loss: 0.03604748653514045 +2024-07-23 05:41:31.747 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 45/50, Train Loss: 0.04055763029312487, Val Loss: 0.035441803932189944 +2024-07-23 05:41:38.059 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 46/50, Train Loss: 0.04046637495215848, Val Loss: 0.035810748381274085 +2024-07-23 05:41:44.414 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 47/50, Train Loss: 0.04067316327056439, Val Loss: 0.03527548499405384 +2024-07-23 05:41:50.854 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 48/50, Train Loss: 0.040425709669860144, Val Loss: 0.03699594544512885 +2024-07-23 05:41:57.208 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 49/50, Train Loss: 0.04054286213015481, Val Loss: 0.035627572664192746 +2024-07-23 05:42:03.662 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 50/50, Train Loss: 0.04043492154894973, Val Loss: 0.03826302391077791 +2024-07-23 05:42:03.662 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Fold 3, MAPE: 3.24% +2024-07-23 05:42:03.764 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_200001_500000_LSTM//train_f3_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-23 05:42:11.601 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 1/50, Train Loss: 0.03758714200350745, Val Loss: 0.03658145714019026 +2024-07-23 05:42:19.381 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 2/50, Train Loss: 0.037920612766910555, Val Loss: 0.03707819634250232 +2024-07-23 05:42:27.198 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 3/50, Train Loss: 0.03781077029162097, Val Loss: 0.036684548375861985 +2024-07-23 05:42:35.002 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 4/50, Train Loss: 0.03799339070188246, Val Loss: 0.0371470714786223 +2024-07-23 05:42:42.862 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 5/50, Train Loss: 0.03782558676668967, Val Loss: 0.0362214525363275 +2024-07-23 05:42:50.655 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 6/50, Train Loss: 0.03779259452532078, Val Loss: 0.03578613102436066 +2024-07-23 05:42:50.655 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:42:50.655 No tasks are waiting in the queue. +2024-07-23 05:42:50.655 4 steps have not started: end, validate_model, log_model, model_scores. +2024-07-23 05:42:58.446 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 7/50, Train Loss: 0.03784476449691701, Val Loss: 0.03654053168637412 +2024-07-23 05:43:06.312 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 8/50, Train Loss: 0.03772639538878682, Val Loss: 0.03661900678915637 +2024-07-23 05:43:14.230 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 9/50, Train Loss: 0.03778522054868183, Val Loss: 0.03655765519610473 +2024-07-23 05:43:22.071 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 10/50, Train Loss: 0.0377525524075689, Val Loss: 0.0367983307157244 +2024-07-23 05:43:29.870 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 11/50, Train Loss: 0.037684734396893405, Val Loss: 0.036490057462028096 +2024-07-23 05:43:37.693 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 12/50, Train Loss: 0.037627814305496624, Val Loss: 0.03646236732602119 +2024-07-23 05:43:45.543 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 13/50, Train Loss: 0.03761733556701534, Val Loss: 0.03691211688731398 +2024-07-23 05:43:53.423 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 14/50, Train Loss: 0.03772978686952386, Val Loss: 0.03673783370426723 +2024-07-23 05:44:01.246 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 15/50, Train Loss: 0.037624199564258255, Val Loss: 0.036327794566750525 +2024-07-23 05:44:09.103 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 16/50, Train Loss: 0.03748560025645741, Val Loss: 0.03687485914145197 +2024-07-23 05:44:16.964 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 17/50, Train Loss: 0.037686885291731906, Val Loss: 0.036161285425935476 +2024-07-23 05:44:24.820 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 18/50, Train Loss: 0.03767322995111175, Val Loss: 0.036788189890129226 +2024-07-23 05:44:32.665 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 19/50, Train Loss: 0.03764798381933193, Val Loss: 0.03647064375025885 +2024-07-23 05:44:40.498 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 20/50, Train Loss: 0.03766205455123008, Val Loss: 0.035683938169053624 +2024-07-23 05:44:48.318 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 21/50, Train Loss: 0.03765629664406009, Val Loss: 0.036684198305010796 +2024-07-23 05:44:56.179 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 22/50, Train Loss: 0.03766432509425728, Val Loss: 0.03628679194620677 +2024-07-23 05:45:04.031 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 23/50, Train Loss: 0.037674029582533346, Val Loss: 0.03516067537878241 +2024-07-23 05:45:11.885 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 24/50, Train Loss: 0.037462636121901975, Val Loss: 0.036041180257286344 +2024-07-23 05:45:19.706 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 25/50, Train Loss: 0.037405195935019134, Val Loss: 0.036104153149894305 +2024-07-23 05:45:27.572 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 26/50, Train Loss: 0.03739886743755176, Val Loss: 0.036167108320764134 +2024-07-23 05:45:35.410 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 27/50, Train Loss: 0.03742002180895244, Val Loss: 0.035932995857936995 +2024-07-23 05:45:43.257 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 28/50, Train Loss: 0.03757716107299958, Val Loss: 0.03541345356830529 +2024-07-23 05:45:51.070 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 29/50, Train Loss: 0.0374432117303555, Val Loss: 0.03568819207804544 +2024-07-23 05:45:58.909 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 30/50, Train Loss: 0.03743840424322534, Val Loss: 0.03609686940908432 +2024-07-23 05:46:06.726 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 31/50, Train Loss: 0.03773543282529746, Val Loss: 0.035648992444787704 +2024-07-23 05:46:14.540 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 32/50, Train Loss: 0.03754960070096556, Val Loss: 0.03571893892117909 +2024-07-23 05:46:22.368 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 33/50, Train Loss: 0.037469692132168116, Val Loss: 0.03525964074901172 +2024-07-23 05:46:30.219 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 34/50, Train Loss: 0.03744272688596413, Val Loss: 0.03561422058514186 +2024-07-23 05:46:38.060 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 35/50, Train Loss: 0.03739503297911978, Val Loss: 0.03563542855637414 +2024-07-23 05:46:45.875 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 36/50, Train Loss: 0.037458943235206196, Val Loss: 0.03660690736557756 +2024-07-23 05:46:53.712 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 37/50, Train Loss: 0.03748117832616828, Val Loss: 0.03620848213987691 +2024-07-23 05:47:01.534 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 38/50, Train Loss: 0.03771802231712246, Val Loss: 0.036047956613557676 +2024-07-23 05:47:09.385 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 39/50, Train Loss: 0.037337191338683, Val Loss: 0.03497850059398583 +2024-07-23 05:47:17.209 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 40/50, Train Loss: 0.037347604467094626, Val Loss: 0.03547666535845825 +2024-07-23 05:47:25.042 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 41/50, Train Loss: 0.03740435770188255, Val Loss: 0.035469506201999526 +2024-07-23 05:47:32.923 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 42/50, Train Loss: 0.03739856879344617, Val Loss: 0.035287024240408624 +2024-07-23 05:47:40.770 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 43/50, Train Loss: 0.037454141560813475, Val Loss: 0.03577030945037093 +2024-07-23 05:47:48.610 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 44/50, Train Loss: 0.037536707524766864, Val Loss: 0.03562333136796951 +2024-07-23 05:47:56.443 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 45/50, Train Loss: 0.03752138168047899, Val Loss: 0.0352905735373497 +2024-07-23 05:47:56.443 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:47:56.443 No tasks are waiting in the queue. +2024-07-23 05:47:56.443 4 steps have not started: end, validate_model, log_model, model_scores. +2024-07-23 05:48:04.321 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 46/50, Train Loss: 0.03740579334098375, Val Loss: 0.03474454496588026 +2024-07-23 05:48:12.240 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 47/50, Train Loss: 0.0373978383796311, Val Loss: 0.03651290147432259 +2024-07-23 05:48:20.075 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 48/50, Train Loss: 0.0374938426004059, Val Loss: 0.03473764663296086 +2024-07-23 05:48:27.855 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 49/50, Train Loss: 0.03733384356587783, Val Loss: 0.035498855422650064 +2024-07-23 05:48:35.680 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Epoch 50/50, Train Loss: 0.03727490301832728, Val Loss: 0.03511977387326104 +2024-07-23 05:48:35.680 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Fold 4, MAPE: 3.00% +2024-07-23 05:48:35.788 [50/cross_validate_train/527 (pid 67736)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_200001_500000_LSTM//train_f4_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-23 05:48:40.294 [50/cross_validate_train/527 (pid 67736)] Task finished successfully. +2024-07-23 05:48:40.325 [50/model_scores/528 (pid 72415)] Task is starting. +2024-07-23 05:48:41.763 [50/model_scores/528 (pid 72415)] INFO:__main__:Average Train Loss across all folds: 0.04642446807298382 +2024-07-23 05:48:45.687 [50/model_scores/528 (pid 72415)] INFO:__main__:Average Validation Loss across all folds: 0.04330458864569663 +2024-07-23 05:48:45.687 [50/model_scores/528 (pid 72415)] INFO:__main__:Average MAPE across all folds: 3.29% +2024-07-23 05:48:45.688 [50/model_scores/528 (pid 72415)] Task finished successfully. +2024-07-23 05:48:45.718 [50/validate_model/529 (pid 72446)] Task is starting. +2024-07-23 05:48:47.176 [50/validate_model/529 (pid 72446)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 05:48:47.977 [50/validate_model/529 (pid 72446)] INFO:__main__:Test Set MAPE: 11.79% +2024-07-23 05:48:48.320 [50/validate_model/529 (pid 72446)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_lodging_residential_200001_500000_LSTM//test_bgd_lodging_residential_200001_500000_LSTM.png +2024-07-23 05:48:48.767 [50/validate_model/529 (pid 72446)] Task finished successfully. +2024-07-23 05:48:48.798 [50/log_model/530 (pid 72468)] Task is starting. +2024-07-23 05:48:50.291 [50/log_model/530 (pid 72468)] INFO:__main__:Logging model bgd_lodging_residential_200001_500000_LSTM +2024-07-23 05:48:50.293 [50/log_model/530 (pid 72468)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_lodging_residential_200001_500000_LSTM//bgd_lodging_residential_200001_500000_LSTM.pth +2024-07-23 05:48:54.158 [50/log_model/530 (pid 72468)] Task finished successfully. +2024-07-23 05:48:54.188 [50/end/531 (pid 72492)] Task is starting. +2024-07-23 05:48:55.652 [50/end/531 (pid 72492)] INFO:__main__:Pipeline end. +2024-07-23 05:48:55.962 [50/end/531 (pid 72492)] Task finished successfully. +2024-07-23 05:48:55.963 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/scaler_bgd_lodging_residential_200001_500000_LSTM.pkl b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/scaler_bgd_lodging_residential_200001_500000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..fc3aa51e7d6a8b4f001c35ad770025421e477085 --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/scaler_bgd_lodging_residential_200001_500000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a76dfcef2f1f3370e0a7be7cbd1829a7662eabbfedaf9d023639061ea6b4f18 +size 557 diff --git a/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/test_bgd_lodging_residential_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/test_bgd_lodging_residential_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..2d16cdd55d42bf28ea80c5efd4a211a19e9e934c Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/test_bgd_lodging_residential_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f0_bgd_lodging_residential_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f0_bgd_lodging_residential_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..880538a50dd194c2c3b1d3e7a71815b52c045a19 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f0_bgd_lodging_residential_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f1_bgd_lodging_residential_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f1_bgd_lodging_residential_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..f4d1f942639d2f97bd622273fe9e9ffec01c2616 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f1_bgd_lodging_residential_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f2_bgd_lodging_residential_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f2_bgd_lodging_residential_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..7b2883ac911509cd5d2215821e67f5da273ff0f0 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f2_bgd_lodging_residential_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f3_bgd_lodging_residential_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f3_bgd_lodging_residential_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..52f90443f117d4868bcd172e9603e549b86e016e Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f3_bgd_lodging_residential_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f4_bgd_lodging_residential_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f4_bgd_lodging_residential_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..f82ae58eea9b0cd33d9dfb3d69c35cf5b39b55f6 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_200001_500000_LSTM/train_f4_bgd_lodging_residential_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/bgd_lodging_residential_25001_50000_LSTM.pth b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/bgd_lodging_residential_25001_50000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..be77172ebdeb55bcfe1bda26515f60d82a4ab227 --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/bgd_lodging_residential_25001_50000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb0466e7da659dd06c950430f64857bbe2bf04897e690c892b7a49b7725ace1 +size 47058 diff --git a/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/output.txt b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6a4da8556ba71458c20014f0ea5e9deeac944ee --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/output.txt @@ -0,0 +1,781 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-23 04:47:15.486 Workflow starting (run-id 49): +2024-07-23 04:47:15.557 [49/start/505 (pid 62638)] Task is starting. +2024-07-23 04:47:16.905 [49/start/505 (pid 62638)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 04:47:17.193 [49/start/505 (pid 62638)] Task finished successfully. +2024-07-23 04:47:17.222 [49/ingest/506 (pid 62650)] Task is starting. +2024-07-23 04:47:18.667 [49/ingest/506 (pid 62650)] INFO:__main__:Fetching dataframe.. +2024-07-23 04:47:18.688 [49/ingest/506 (pid 62650)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 04:47:22.440 [49/ingest/506 (pid 62650)] Task finished successfully. +2024-07-23 04:47:22.468 [49/pick_2017_data/507 (pid 62685)] Task is starting. +2024-07-23 04:47:23.850 [49/pick_2017_data/507 (pid 62685)] INFO:__main__:Picking 2017 data.. +2024-07-23 04:47:24.150 [49/pick_2017_data/507 (pid 62685)] Task finished successfully. +2024-07-23 04:47:24.180 [49/fill_missing_data/508 (pid 62697)] Task is starting. +2024-07-23 04:47:25.568 [49/fill_missing_data/508 (pid 62697)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] INFO:__main__:NaN counts per column: +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] INFO:__main__:Panther_lodging_Hattie 12 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Blaine 12 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Jorge 11 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Jana 10 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Else 10 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Russell 10 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Fausto 10 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Willa 11 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Floyd 11 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Teresita 12 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Robin_lodging_Pricilla 2 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Cockatoo_lodging_Jimmie 1014 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Mouse_lodging_Vicente 1656 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] dtype: int64 +2024-07-23 04:47:25.579 [49/fill_missing_data/508 (pid 62697)] --- Logging error --- +2024-07-23 04:47:25.579 [49/fill_missing_data/508 (pid 62697)] Traceback (most recent call last): +2024-07-23 04:47:25.579 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 04:47:25.580 [49/fill_missing_data/508 (pid 62697)] msg = self.format(record) +2024-07-23 04:47:25.580 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 04:47:25.580 [49/fill_missing_data/508 (pid 62697)] return fmt.format(record) +2024-07-23 04:47:25.580 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 04:47:25.580 [49/fill_missing_data/508 (pid 62697)] record.message = record.getMessage() +2024-07-23 04:47:25.580 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 04:47:25.580 [49/fill_missing_data/508 (pid 62697)] msg = msg % self.args +2024-07-23 04:47:25.581 [49/fill_missing_data/508 (pid 62697)] TypeError: not all arguments converted during string formatting +2024-07-23 04:47:25.581 [49/fill_missing_data/508 (pid 62697)] Call stack: +2024-07-23 04:47:25.581 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] BGD_LinearFlow() +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] cli.main(self) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] return func(*args, **kwargs) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] return self.main(*args, **kwargs) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] rv = self.invoke(ctx) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] return callback(*args, **kwargs) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] return f(get_current_context(), *args, **kwargs) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] task.run_step( +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] self._exec_step_function(step_func) +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] step_function() +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] self.missing_values = find_nan_counts(self.df) +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] Arguments: (2781,) +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] Task finished successfully. +2024-07-23 04:47:27.536 [49/find_median/509 (pid 62721)] Task is starting. +2024-07-23 04:47:28.939 [49/find_median/509 (pid 62721)] INFO:__main__:Computing and using median.. +2024-07-23 04:47:29.431 [49/find_median/509 (pid 62721)] Task finished successfully. +2024-07-23 04:47:29.461 [49/aggregate_data/510 (pid 62734)] Task is starting. +2024-07-23 04:47:30.855 [49/aggregate_data/510 (pid 62734)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 04:47:34.638 [49/aggregate_data/510 (pid 62734)] Task finished successfully. +2024-07-23 04:47:34.667 [49/split_data/511 (pid 62759)] Task is starting. +2024-07-23 04:47:36.085 [49/split_data/511 (pid 62759)] INFO:__main__:Splitting data into test and train... +2024-07-23 04:47:39.889 [49/split_data/511 (pid 62759)] Task finished successfully. +2024-07-23 04:47:39.921 [49/make_x_y/512 (pid 62796)] Task is starting. +2024-07-23 04:47:41.661 [49/make_x_y/512 (pid 62796)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 04:47:42.047 [49/make_x_y/512 (pid 62796)] Shape of y_train: (6648, 1) +2024-07-23 04:47:42.047 [49/make_x_y/512 (pid 62796)] Shape of X_test: (1392, 360, 1) +2024-07-23 04:47:42.047 [49/make_x_y/512 (pid 62796)] Shape of y_test: (1392, 1) +2024-07-23 04:47:42.048 [49/make_x_y/512 (pid 62796)] Task finished successfully. +2024-07-23 04:47:42.079 [49/cross_validate_train/513 (pid 62808)] Task is starting. +2024-07-23 04:47:43.501 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Creating bgd_lodging_residential_25001_50000_LSTM +2024-07-23 04:47:43.502 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Performing cross validation.. +2024-07-23 04:47:45.940 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 1/50, Train Loss: 0.2713651446359498, Val Loss: 0.1505321334515299 +2024-07-23 04:47:47.893 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 2/50, Train Loss: 0.1577985880630357, Val Loss: 0.12402798192841666 +2024-07-23 04:47:49.756 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 3/50, Train Loss: 0.152859970501491, Val Loss: 0.11974364881004607 +2024-07-23 04:47:51.603 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 4/50, Train Loss: 0.14412856910909924, Val Loss: 0.11392334422894887 +2024-07-23 04:47:53.478 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 5/50, Train Loss: 0.13279913791588374, Val Loss: 0.10336121363299233 +2024-07-23 04:47:55.427 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 6/50, Train Loss: 0.11658686154655047, Val Loss: 0.0842223516532353 +2024-07-23 04:47:57.383 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 7/50, Train Loss: 0.10415380139436041, Val Loss: 0.0827808352453368 +2024-07-23 04:47:59.284 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 8/50, Train Loss: 0.09692438542842866, Val Loss: 0.06732762732676097 +2024-07-23 04:48:01.209 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 9/50, Train Loss: 0.08944462122661727, Val Loss: 0.06670178792306355 +2024-07-23 04:48:03.125 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 10/50, Train Loss: 0.08623320290020534, Val Loss: 0.06439502909779549 +2024-07-23 04:48:05.036 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 11/50, Train Loss: 0.08542328476905822, Val Loss: 0.06408244392701558 +2024-07-23 04:48:06.946 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 12/50, Train Loss: 0.08405350648931094, Val Loss: 0.06270331059183393 +2024-07-23 04:48:08.873 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 13/50, Train Loss: 0.08260811386363846, Val Loss: 0.0616904154419899 +2024-07-23 04:48:10.774 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 14/50, Train Loss: 0.08135097463216101, Val Loss: 0.06038366279431752 +2024-07-23 04:48:12.705 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 15/50, Train Loss: 0.07933623333062445, Val Loss: 0.058967390869344986 +2024-07-23 04:48:14.628 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 16/50, Train Loss: 0.07769725375941822, Val Loss: 0.056113124106611525 +2024-07-23 04:48:16.543 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 17/50, Train Loss: 0.07529269957116672, Val Loss: 0.05439291298389435 +2024-07-23 04:48:18.578 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 18/50, Train Loss: 0.0728466799216611, Val Loss: 0.05197636517030852 +2024-07-23 04:48:20.443 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 19/50, Train Loss: 0.07138261816331319, Val Loss: 0.05080061906150409 +2024-07-23 04:48:22.339 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 20/50, Train Loss: 0.06885320820978709, Val Loss: 0.04892975831670421 +2024-07-23 04:48:24.279 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 21/50, Train Loss: 0.06798091690455164, Val Loss: 0.0476300308746951 +2024-07-23 04:48:26.192 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 22/50, Train Loss: 0.06613981532199043, Val Loss: 0.047113925750766485 +2024-07-23 04:48:28.133 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 23/50, Train Loss: 0.06535181999206544, Val Loss: 0.04640632846525737 +2024-07-23 04:48:30.079 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 24/50, Train Loss: 0.0642980059342725, Val Loss: 0.0460761091538838 +2024-07-23 04:48:32.050 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 25/50, Train Loss: 0.06356855960828918, Val Loss: 0.04598458292228835 +2024-07-23 04:48:34.007 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 26/50, Train Loss: 0.06320783581052508, Val Loss: 0.045249926884259495 +2024-07-23 04:48:35.943 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 27/50, Train Loss: 0.06213524416089058, Val Loss: 0.04482417990054403 +2024-07-23 04:48:37.888 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 28/50, Train Loss: 0.06106372103095055, Val Loss: 0.04442604891955852 +2024-07-23 04:48:39.840 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 29/50, Train Loss: 0.06011335551738739, Val Loss: 0.04440676287880966 +2024-07-23 04:48:41.789 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 30/50, Train Loss: 0.05988175251654216, Val Loss: 0.04376827962696552 +2024-07-23 04:48:43.731 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 31/50, Train Loss: 0.05876397394708225, Val Loss: 0.043950044363737104 +2024-07-23 04:48:45.670 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 32/50, Train Loss: 0.0583385526069573, Val Loss: 0.04337125899536269 +2024-07-23 04:48:47.616 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 33/50, Train Loss: 0.05786505075437682, Val Loss: 0.04346705350492682 +2024-07-23 04:48:49.546 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 34/50, Train Loss: 0.0586642864559378, Val Loss: 0.04297009765037468 +2024-07-23 04:48:51.507 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 35/50, Train Loss: 0.057358361461332864, Val Loss: 0.042921610442655425 +2024-07-23 04:48:53.434 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 36/50, Train Loss: 0.057505497975008826, Val Loss: 0.04249835557171277 +2024-07-23 04:48:55.345 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 37/50, Train Loss: 0.056930314430168695, Val Loss: 0.04254926294088364 +2024-07-23 04:48:57.255 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 38/50, Train Loss: 0.05747742227145604, Val Loss: 0.042871073633432386 +2024-07-23 04:48:59.210 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 39/50, Train Loss: 0.05646747159106391, Val Loss: 0.04163456160042967 +2024-07-23 04:49:01.134 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 40/50, Train Loss: 0.055542776414326256, Val Loss: 0.04216004120452063 +2024-07-23 04:49:03.094 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 41/50, Train Loss: 0.05647248434168952, Val Loss: 0.04245719537138939 +2024-07-23 04:49:05.031 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 42/50, Train Loss: 0.05556626117655209, Val Loss: 0.04171634151467255 +2024-07-23 04:49:06.961 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 43/50, Train Loss: 0.05559280078325953, Val Loss: 0.04145687004285199 +2024-07-23 04:49:08.915 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 44/50, Train Loss: 0.05477383477347238, Val Loss: 0.041659563673394066 +2024-07-23 04:49:10.876 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 45/50, Train Loss: 0.054996925805296214, Val Loss: 0.04142352459686143 +2024-07-23 04:49:12.830 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 46/50, Train Loss: 0.05446052551269531, Val Loss: 0.04135099069348403 +2024-07-23 04:49:14.781 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 47/50, Train Loss: 0.054544667899608615, Val Loss: 0.04120120347610542 +2024-07-23 04:49:16.728 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 48/50, Train Loss: 0.05407586938568524, Val Loss: 0.04096524667526994 +2024-07-23 04:49:18.658 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 49/50, Train Loss: 0.0540637985936233, Val Loss: 0.041608119064143724 +2024-07-23 04:49:20.579 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 50/50, Train Loss: 0.05397698538643973, Val Loss: 0.041027057064431056 +2024-07-23 04:49:20.580 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Fold 0, MAPE: 3.38% +2024-07-23 04:49:20.945 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_25001_50000_LSTM//train_f0_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-23 04:49:24.407 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 1/50, Train Loss: 0.04713468038077865, Val Loss: 0.043628954142332074 +2024-07-23 04:49:27.783 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 2/50, Train Loss: 0.0484639546168702, Val Loss: 0.047667445774589264 +2024-07-23 04:49:31.149 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 3/50, Train Loss: 0.047762038851422925, Val Loss: 0.044314603986484666 +2024-07-23 04:49:34.549 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 4/50, Train Loss: 0.04635564855166844, Val Loss: 0.04297897735876696 +2024-07-23 04:49:37.949 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 5/50, Train Loss: 0.04557416870125702, Val Loss: 0.04262638102684702 +2024-07-23 04:49:41.335 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 6/50, Train Loss: 0.04489123158689056, Val Loss: 0.04076730188514505 +2024-07-23 04:49:44.779 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 7/50, Train Loss: 0.04466901147472007, Val Loss: 0.04040228272122996 +2024-07-23 04:49:48.167 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 8/50, Train Loss: 0.04460238548261779, Val Loss: 0.04101395702787808 +2024-07-23 04:49:51.555 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 9/50, Train Loss: 0.044376271164843016, Val Loss: 0.04049725825233119 +2024-07-23 04:49:54.927 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 10/50, Train Loss: 0.04440358416842563, Val Loss: 0.04117887472467763 +2024-07-23 04:49:58.290 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 11/50, Train Loss: 0.04449601415544748, Val Loss: 0.03981318351413522 +2024-07-23 04:50:01.659 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 12/50, Train Loss: 0.04434090453599181, Val Loss: 0.04002994841762952 +2024-07-23 04:50:05.080 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 13/50, Train Loss: 0.04408170426530497, Val Loss: 0.040145728258149965 +2024-07-23 04:50:08.488 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 14/50, Train Loss: 0.04410611657159669, Val Loss: 0.04025852520551 +2024-07-23 04:50:11.913 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 15/50, Train Loss: 0.044030691630073955, Val Loss: 0.03930840715765953 +2024-07-23 04:50:15.306 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 16/50, Train Loss: 0.04396026842296123, Val Loss: 0.03992184049316815 +2024-07-23 04:50:18.700 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 17/50, Train Loss: 0.043810438551008704, Val Loss: 0.040115750793899806 +2024-07-23 04:52:42.507 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 18/50, Train Loss: 0.04398901204445532, Val Loss: 0.03932711710887296 +2024-07-23 04:52:42.508 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 04:52:42.508 No tasks are waiting in the queue. +2024-07-23 04:52:42.508 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 04:52:45.776 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 19/50, Train Loss: 0.04403520090771573, Val Loss: 0.040009212706770214 +2024-07-23 04:52:49.153 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 20/50, Train Loss: 0.04423390400729009, Val Loss: 0.04078819788992405 +2024-07-23 04:52:52.545 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 21/50, Train Loss: 0.04443187676370144, Val Loss: 0.04235093455229487 +2024-07-23 04:52:55.937 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 22/50, Train Loss: 0.04406940851892744, Val Loss: 0.03898843308644635 +2024-07-23 04:52:59.326 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 23/50, Train Loss: 0.04362914865570409, Val Loss: 0.03924218959042004 +2024-07-23 04:53:02.704 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 24/50, Train Loss: 0.04373355590339218, Val Loss: 0.039119256128157885 +2024-07-23 04:53:06.073 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 25/50, Train Loss: 0.044016813380377634, Val Loss: 0.04022336149854319 +2024-07-23 04:53:09.458 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 26/50, Train Loss: 0.04392420008246388, Val Loss: 0.04031736414347376 +2024-07-23 04:53:12.866 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 27/50, Train Loss: 0.04381717882518257, Val Loss: 0.03989251112299306 +2024-07-23 04:53:16.268 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 28/50, Train Loss: 0.04383493398449251, Val Loss: 0.039371367011751444 +2024-07-23 04:53:19.649 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 29/50, Train Loss: 0.04360191194074495, Val Loss: 0.039204448089003564 +2024-07-23 04:53:23.043 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 30/50, Train Loss: 0.04344741885683366, Val Loss: 0.03945142232945987 +2024-07-23 04:53:26.431 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 31/50, Train Loss: 0.043699589744210246, Val Loss: 0.03955000234501702 +2024-07-23 04:55:17.191 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 32/50, Train Loss: 0.04349931026143687, Val Loss: 0.03971929363906383 +2024-07-23 04:55:20.574 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 33/50, Train Loss: 0.043981573810534816, Val Loss: 0.039295584335923193 +2024-07-23 04:55:23.976 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 34/50, Train Loss: 0.04362524412572384, Val Loss: 0.03961865870015962 +2024-07-23 04:55:27.368 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 35/50, Train Loss: 0.04344058156545673, Val Loss: 0.039407312870025635 +2024-07-23 04:55:30.770 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 36/50, Train Loss: 0.0435653533254351, Val Loss: 0.03984769077173301 +2024-07-23 04:55:34.144 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 37/50, Train Loss: 0.04374311741973672, Val Loss: 0.03985815559114728 +2024-07-23 04:55:37.523 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 38/50, Train Loss: 0.04381894112697669, Val Loss: 0.03883646348757403 +2024-07-23 04:55:40.899 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 39/50, Train Loss: 0.043404414744249414, Val Loss: 0.039359029488904136 +2024-07-23 04:55:44.272 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 40/50, Train Loss: 0.0433572308825595, Val Loss: 0.03958230061190469 +2024-07-23 04:55:47.633 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 41/50, Train Loss: 0.043594834102051595, Val Loss: 0.03945010884531907 +2024-07-23 04:55:51.027 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 42/50, Train Loss: 0.043916108778544835, Val Loss: 0.04085872167987483 +2024-07-23 04:55:54.421 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 43/50, Train Loss: 0.043887990739728724, Val Loss: 0.038872127554246357 +2024-07-23 04:55:57.841 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 44/50, Train Loss: 0.043149666355124544, Val Loss: 0.03888295479118824 +2024-07-23 04:56:18.466 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 45/50, Train Loss: 0.04319140333682299, Val Loss: 0.03931129196924823 +2024-07-23 04:56:21.863 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 46/50, Train Loss: 0.04339690823107958, Val Loss: 0.03911510540970734 +2024-07-23 04:56:25.227 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 47/50, Train Loss: 0.043352158447461465, Val Loss: 0.0397519661379712 +2024-07-23 04:56:28.613 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 48/50, Train Loss: 0.043294479697942735, Val Loss: 0.0392058155898537 +2024-07-23 04:56:32.023 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 49/50, Train Loss: 0.043446565392826285, Val Loss: 0.03965462169476918 +2024-07-23 04:56:35.395 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 50/50, Train Loss: 0.04311846372272287, Val Loss: 0.039454844647220204 +2024-07-23 04:56:35.395 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Fold 1, MAPE: 3.39% +2024-07-23 04:56:35.492 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_25001_50000_LSTM//train_f1_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-23 04:56:40.264 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 1/50, Train Loss: 0.037551248929678246, Val Loss: 0.039952120876738 +2024-07-23 04:56:45.108 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 2/50, Train Loss: 0.03867324400478257, Val Loss: 0.03933217280677387 +2024-07-23 04:56:49.952 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 3/50, Train Loss: 0.03833576037476842, Val Loss: 0.03826360521571977 +2024-07-23 04:56:54.775 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 4/50, Train Loss: 0.03814256775121276, Val Loss: 0.03702706151774952 +2024-07-23 04:56:59.608 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 5/50, Train Loss: 0.03788620944564732, Val Loss: 0.037985535019210405 +2024-07-23 04:57:04.446 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 6/50, Train Loss: 0.03827913671445388, Val Loss: 0.0365233306906053 +2024-07-23 05:04:19.758 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 7/50, Train Loss: 0.03779144583341594, Val Loss: 0.03777732737362385 +2024-07-23 05:04:19.758 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:04:19.758 No tasks are waiting in the queue. +2024-07-23 05:04:19.758 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 05:04:24.577 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 8/50, Train Loss: 0.03803991105479117, Val Loss: 0.037464393143142975 +2024-07-23 05:04:29.429 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 9/50, Train Loss: 0.03798455109175008, Val Loss: 0.03624036636735712 +2024-07-23 05:04:34.240 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 10/50, Train Loss: 0.03777756151528312, Val Loss: 0.037113761955073904 +2024-07-23 05:04:39.040 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 11/50, Train Loss: 0.037698678905144334, Val Loss: 0.03663243539631367 +2024-07-23 05:04:43.824 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 12/50, Train Loss: 0.037797787674487784, Val Loss: 0.03654260417180402 +2024-07-23 05:04:48.661 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 13/50, Train Loss: 0.03773370463974201, Val Loss: 0.03813266647713525 +2024-07-23 05:04:53.464 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 14/50, Train Loss: 0.038165036839647934, Val Loss: 0.035607038225446426 +2024-07-23 05:04:58.307 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 15/50, Train Loss: 0.03762939328757616, Val Loss: 0.037403336593082974 +2024-07-23 05:12:44.074 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 16/50, Train Loss: 0.03777825402525755, Val Loss: 0.0364676549498524 +2024-07-23 05:12:44.074 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:12:44.074 No tasks are waiting in the queue. +2024-07-23 05:12:44.074 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 05:12:48.934 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 17/50, Train Loss: 0.03794555819163529, Val Loss: 0.03584257401525974 +2024-07-23 05:12:53.772 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 18/50, Train Loss: 0.03765662507010767, Val Loss: 0.036421489236610274 +2024-07-23 05:12:58.636 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 19/50, Train Loss: 0.03777613218587179, Val Loss: 0.03625452608934471 +2024-07-23 05:13:03.513 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 20/50, Train Loss: 0.03762341129521911, Val Loss: 0.036803164279886655 +2024-07-23 05:13:08.372 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 21/50, Train Loss: 0.03771796969410319, Val Loss: 0.03623984440096787 +2024-07-23 05:13:13.208 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 22/50, Train Loss: 0.03753437268404433, Val Loss: 0.037237216798322544 +2024-07-23 05:13:18.000 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 23/50, Train Loss: 0.037538898517735876, Val Loss: 0.03603262369121824 +2024-07-23 05:13:22.807 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 24/50, Train Loss: 0.037492390077274576, Val Loss: 0.036547981894442014 +2024-07-23 05:13:27.605 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 25/50, Train Loss: 0.03737931720052774, Val Loss: 0.036312990901725635 +2024-07-23 05:13:32.412 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 26/50, Train Loss: 0.03741483913304714, Val Loss: 0.03568786872284753 +2024-07-23 05:13:37.259 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 27/50, Train Loss: 0.037431565686487235, Val Loss: 0.03709820727152484 +2024-07-23 05:13:42.112 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 28/50, Train Loss: 0.037504273072744794, Val Loss: 0.03605337861393179 +2024-07-23 05:13:46.932 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 29/50, Train Loss: 0.037282269716692656, Val Loss: 0.037240768277219366 +2024-07-23 05:13:51.793 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 30/50, Train Loss: 0.03758266029091409, Val Loss: 0.03675276621111802 +2024-07-23 05:13:56.604 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 31/50, Train Loss: 0.03729145780492287, Val Loss: 0.036185773728149274 +2024-07-23 05:14:01.472 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 32/50, Train Loss: 0.03741108377177555, Val Loss: 0.03654617550117629 +2024-07-23 05:14:06.366 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 33/50, Train Loss: 0.037450957380665034, Val Loss: 0.036526521401745934 +2024-07-23 05:14:11.217 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 34/50, Train Loss: 0.037374130163628325, Val Loss: 0.036528094485402104 +2024-07-23 05:14:16.045 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 35/50, Train Loss: 0.03748734200444932, Val Loss: 0.03598531724086829 +2024-07-23 05:14:20.912 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 36/50, Train Loss: 0.037238849309058145, Val Loss: 0.0356909019606454 +2024-07-23 05:14:25.680 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 37/50, Train Loss: 0.03728837322873565, Val Loss: 0.036135596728750635 +2024-07-23 05:14:30.545 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 38/50, Train Loss: 0.03744858413791427, Val Loss: 0.03541900808257716 +2024-07-23 05:14:35.371 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 39/50, Train Loss: 0.03724229484438323, Val Loss: 0.03551289817052228 +2024-07-23 05:14:40.210 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 40/50, Train Loss: 0.03723731848339622, Val Loss: 0.03584188941333975 +2024-07-23 05:14:44.999 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 41/50, Train Loss: 0.037294039592290155, Val Loss: 0.03647007431302752 +2024-07-23 05:14:49.869 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 42/50, Train Loss: 0.03721742034674837, Val Loss: 0.03654303726341043 +2024-07-23 05:14:54.693 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 43/50, Train Loss: 0.037188755276684575, Val Loss: 0.03581712022423744 +2024-07-23 05:14:59.505 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 44/50, Train Loss: 0.03727032727776812, Val Loss: 0.03510333661522184 +2024-07-23 05:15:04.337 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 45/50, Train Loss: 0.0372030446664072, Val Loss: 0.03574552035757474 +2024-07-23 05:15:09.231 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 46/50, Train Loss: 0.0371778470893892, Val Loss: 0.03618437051773071 +2024-07-23 05:15:14.014 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 47/50, Train Loss: 0.03708105960574288, Val Loss: 0.03536088887069907 +2024-07-23 05:15:18.873 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 48/50, Train Loss: 0.037131385125506386, Val Loss: 0.03705112024077347 +2024-07-23 05:15:23.671 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 49/50, Train Loss: 0.037245049624918744, Val Loss: 0.03449207389993327 +2024-07-23 05:15:28.468 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 50/50, Train Loss: 0.036886421408360966, Val Loss: 0.03646834833281381 +2024-07-23 05:15:28.469 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Fold 2, MAPE: 2.97% +2024-07-23 05:15:28.569 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_25001_50000_LSTM//train_f2_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-23 05:15:34.932 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 1/50, Train Loss: 0.033224025674217894, Val Loss: 0.034688637991036685 +2024-07-23 05:15:41.297 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 2/50, Train Loss: 0.033626674774953784, Val Loss: 0.033377498335071976 +2024-07-23 05:15:47.622 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 3/50, Train Loss: 0.03348089412203152, Val Loss: 0.03391933728541647 +2024-07-23 05:15:53.978 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 4/50, Train Loss: 0.03346813243659709, Val Loss: 0.033993784870420186 +2024-07-23 05:16:00.425 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 5/50, Train Loss: 0.03331775779721977, Val Loss: 0.036021234254751885 +2024-07-23 05:16:06.798 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 6/50, Train Loss: 0.03333306703180503, Val Loss: 0.03620969993727548 +2024-07-23 05:16:13.285 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 7/50, Train Loss: 0.03341686501831031, Val Loss: 0.03679884815854686 +2024-07-23 05:16:19.751 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 8/50, Train Loss: 0.03330812648126333, Val Loss: 0.03647391056375844 +2024-07-23 05:16:26.164 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 9/50, Train Loss: 0.033243550664390165, Val Loss: 0.036972845771483014 +2024-07-23 05:16:32.651 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 10/50, Train Loss: 0.033438604680164685, Val Loss: 0.03672529448355947 +2024-07-23 05:16:39.142 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 11/50, Train Loss: 0.0335564596256871, Val Loss: 0.03658240240599428 +2024-07-23 05:16:45.636 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 12/50, Train Loss: 0.033556765092791416, Val Loss: 0.03648036111678396 +2024-07-23 05:16:52.230 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 13/50, Train Loss: 0.033570215608522615, Val Loss: 0.03509960680135659 +2024-07-23 05:16:58.798 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 14/50, Train Loss: 0.03346611545320681, Val Loss: 0.03475401784692492 +2024-07-23 05:17:05.334 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 15/50, Train Loss: 0.03322138395428443, Val Loss: 0.03466553719980376 +2024-07-23 05:17:11.916 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 16/50, Train Loss: 0.03323024167618949, Val Loss: 0.035342126180018696 +2024-07-23 05:17:18.608 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 17/50, Train Loss: 0.033394727634815435, Val Loss: 0.03400335157556193 +2024-07-23 05:17:25.198 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 18/50, Train Loss: 0.0332912831573928, Val Loss: 0.03397816866636276 +2024-07-23 05:17:31.943 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 19/50, Train Loss: 0.03329421204628704, Val Loss: 0.03450670162481921 +2024-07-23 05:17:38.653 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 20/50, Train Loss: 0.03326312409673663, Val Loss: 0.03445634788700513 +2024-07-23 05:17:45.392 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 21/50, Train Loss: 0.033211299707349255, Val Loss: 0.034302129702908656 +2024-07-23 05:17:45.392 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:17:45.392 No tasks are waiting in the queue. +2024-07-23 05:17:45.392 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 05:17:52.230 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 22/50, Train Loss: 0.03315022870523038, Val Loss: 0.03392379645790373 +2024-07-23 05:17:59.024 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 23/50, Train Loss: 0.03315463430321903, Val Loss: 0.03380180262029171 +2024-07-23 05:18:05.889 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 24/50, Train Loss: 0.03322180808126498, Val Loss: 0.03376207644385951 +2024-07-23 05:18:12.939 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 25/50, Train Loss: 0.033292345206836146, Val Loss: 0.03328515317823206 +2024-07-23 05:18:20.038 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 26/50, Train Loss: 0.03312342192495255, Val Loss: 0.03422456734946796 +2024-07-23 05:18:26.971 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 27/50, Train Loss: 0.03320220127540956, Val Loss: 0.035007561690040996 +2024-07-23 05:18:34.020 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 28/50, Train Loss: 0.03325152537189156, Val Loss: 0.03363923696534974 +2024-07-23 05:18:40.857 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 29/50, Train Loss: 0.033104729617563944, Val Loss: 0.03430391709719385 +2024-07-23 05:18:47.723 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 30/50, Train Loss: 0.033262143025456145, Val Loss: 0.03329804662082877 +2024-07-23 05:18:54.478 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 31/50, Train Loss: 0.03315835860189345, Val Loss: 0.033228778306927 +2024-07-23 05:19:00.923 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 32/50, Train Loss: 0.033155382604157325, Val Loss: 0.033434249141386575 +2024-07-23 05:19:07.172 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 33/50, Train Loss: 0.033058624922317995, Val Loss: 0.03339752820985658 +2024-07-23 05:19:13.416 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 34/50, Train Loss: 0.033060239105344676, Val Loss: 0.033295798195259914 +2024-07-23 05:19:19.681 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 35/50, Train Loss: 0.03304332177818036, Val Loss: 0.03403554329914706 +2024-07-23 05:19:25.908 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 36/50, Train Loss: 0.03297069030244359, Val Loss: 0.03456796955849443 +2024-07-23 05:19:32.186 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 37/50, Train Loss: 0.0331112663697103, Val Loss: 0.03320860399731568 +2024-07-23 05:19:38.418 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 38/50, Train Loss: 0.03313687402862225, Val Loss: 0.03334953391126224 +2024-07-23 05:19:44.689 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 39/50, Train Loss: 0.03308161031186795, Val Loss: 0.032738012820482255 +2024-07-23 05:19:50.932 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 40/50, Train Loss: 0.03309576605319334, Val Loss: 0.03403290483568396 +2024-07-23 05:19:57.154 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 41/50, Train Loss: 0.033040410282907724, Val Loss: 0.03345265010637896 +2024-07-23 05:20:03.415 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 42/50, Train Loss: 0.03289401974770234, Val Loss: 0.03392146506479808 +2024-07-23 05:20:09.674 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 43/50, Train Loss: 0.03312486317008734, Val Loss: 0.03372298361999648 +2024-07-23 05:20:15.922 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 44/50, Train Loss: 0.03287849916989426, Val Loss: 0.03357848956116608 +2024-07-23 05:20:22.170 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 45/50, Train Loss: 0.03309560200641695, Val Loss: 0.033257983518498284 +2024-07-23 05:20:28.589 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 46/50, Train Loss: 0.03289092793095884, Val Loss: 0.033501922126327244 +2024-07-23 05:20:35.042 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 47/50, Train Loss: 0.03292772151100978, Val Loss: 0.03294515215924808 +2024-07-23 05:20:41.374 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 48/50, Train Loss: 0.0330577842261401, Val Loss: 0.033170616147773606 +2024-07-23 05:20:47.670 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 49/50, Train Loss: 0.033101872842517685, Val Loss: 0.032584372056382045 +2024-07-23 05:20:53.967 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 50/50, Train Loss: 0.032988503669127284, Val Loss: 0.032970206865242546 +2024-07-23 05:20:53.967 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Fold 3, MAPE: 2.84% +2024-07-23 05:20:54.068 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_25001_50000_LSTM//train_f3_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-23 05:21:01.744 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 1/50, Train Loss: 0.0333360946127053, Val Loss: 0.026882684603333474 +2024-07-23 05:21:09.512 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 2/50, Train Loss: 0.03406126195586276, Val Loss: 0.027456862373011454 +2024-07-23 05:21:17.202 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 3/50, Train Loss: 0.034239180605516006, Val Loss: 0.029262216708489826 +2024-07-23 05:21:24.909 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 4/50, Train Loss: 0.03401748902410611, Val Loss: 0.029540286319596428 +2024-07-23 05:21:32.589 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 5/50, Train Loss: 0.03406583791834184, Val Loss: 0.029342350736260413 +2024-07-23 05:21:40.336 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 6/50, Train Loss: 0.03356063271733536, Val Loss: 0.028167894908360074 +2024-07-23 05:21:48.107 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 7/50, Train Loss: 0.0335674084851454, Val Loss: 0.028341806307435036 +2024-07-23 05:21:55.871 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 8/50, Train Loss: 0.03360708374744174, Val Loss: 0.027905783003994395 +2024-07-23 05:22:03.570 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 9/50, Train Loss: 0.03372786057599146, Val Loss: 0.02966459872467177 +2024-07-23 05:22:11.307 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 10/50, Train Loss: 0.03350193435112121, Val Loss: 0.027917803025671414 +2024-07-23 05:22:19.026 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 11/50, Train Loss: 0.0334734918239216, Val Loss: 0.027508744597435 +2024-07-23 05:22:26.678 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 12/50, Train Loss: 0.03348471447504286, Val Loss: 0.027506921866110392 +2024-07-23 05:22:34.393 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 13/50, Train Loss: 0.03354761485096024, Val Loss: 0.028276390369449345 +2024-07-23 05:22:42.125 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 14/50, Train Loss: 0.03345565478606471, Val Loss: 0.02817113489976951 +2024-07-23 05:22:49.853 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 15/50, Train Loss: 0.03336901031969779, Val Loss: 0.02778556336249624 +2024-07-23 05:22:49.853 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:22:49.853 No tasks are waiting in the queue. +2024-07-23 05:22:49.853 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 05:22:57.564 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 16/50, Train Loss: 0.03357222268422102, Val Loss: 0.02841998285480908 +2024-07-23 05:23:05.229 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 17/50, Train Loss: 0.03351113006965011, Val Loss: 0.0284843630024365 +2024-07-23 05:23:12.937 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 18/50, Train Loss: 0.033325687404079686, Val Loss: 0.028422035223671368 +2024-07-23 05:23:20.656 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 19/50, Train Loss: 0.033405611120250034, Val Loss: 0.02769625559449196 +2024-07-23 05:23:28.347 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 20/50, Train Loss: 0.03325772582521212, Val Loss: 0.027333789691329 +2024-07-23 05:23:36.045 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 21/50, Train Loss: 0.03328462968441261, Val Loss: 0.028095351159572603 +2024-07-23 05:23:43.791 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 22/50, Train Loss: 0.033237854532640554, Val Loss: 0.028607128081577164 +2024-07-23 05:23:51.506 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 23/50, Train Loss: 0.033506656167279374, Val Loss: 0.029978298342653684 +2024-07-23 05:23:59.254 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 24/50, Train Loss: 0.033401718127659, Val Loss: 0.029464105889201165 +2024-07-23 05:24:06.984 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 25/50, Train Loss: 0.03332849345758729, Val Loss: 0.028077466519815582 +2024-07-23 05:24:14.722 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 26/50, Train Loss: 0.03352905707647917, Val Loss: 0.03069419605391366 +2024-07-23 05:24:22.416 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 27/50, Train Loss: 0.0333141538036195, Val Loss: 0.02804708954479013 +2024-07-23 05:24:30.122 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 28/50, Train Loss: 0.03340832679264847, Val Loss: 0.029804878469024385 +2024-07-23 05:24:37.848 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 29/50, Train Loss: 0.0333929677365412, Val Loss: 0.02969427247132574 +2024-07-23 05:24:45.551 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 30/50, Train Loss: 0.03321907255563072, Val Loss: 0.02878393376512187 +2024-07-23 05:24:53.258 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 31/50, Train Loss: 0.03330809444767134, Val Loss: 0.02956908190889018 +2024-07-23 05:25:01.042 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 32/50, Train Loss: 0.03353014811017047, Val Loss: 0.03031199409493378 +2024-07-23 05:25:08.763 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 33/50, Train Loss: 0.033525428038904036, Val Loss: 0.028170773865921157 +2024-07-23 05:25:16.536 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 34/50, Train Loss: 0.03325051910661418, Val Loss: 0.028769605127828463 +2024-07-23 05:25:24.249 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 35/50, Train Loss: 0.03337499744997456, Val Loss: 0.028993980746184075 +2024-07-23 05:25:32.007 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 36/50, Train Loss: 0.03319083566338509, Val Loss: 0.028541755729487965 +2024-07-23 05:25:39.701 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 37/50, Train Loss: 0.03332541728841847, Val Loss: 0.028624927518623215 +2024-07-23 05:25:47.451 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 38/50, Train Loss: 0.033213968105057536, Val Loss: 0.029135769499199732 +2024-07-23 05:25:55.177 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 39/50, Train Loss: 0.033231185952565453, Val Loss: 0.02777904128389699 +2024-07-23 05:26:02.927 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 40/50, Train Loss: 0.03314498726321363, Val Loss: 0.027443502790161542 +2024-07-23 05:26:10.664 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 41/50, Train Loss: 0.033325421115404916, Val Loss: 0.028413220707859312 +2024-07-23 05:26:18.386 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 42/50, Train Loss: 0.03288130761370405, Val Loss: 0.028155694689069477 +2024-07-23 05:26:26.088 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 43/50, Train Loss: 0.033059097789013864, Val Loss: 0.028540040818708284 +2024-07-23 05:26:33.852 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 44/50, Train Loss: 0.032865287179405664, Val Loss: 0.028085416236094066 +2024-07-23 05:26:41.598 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 45/50, Train Loss: 0.03322081453562982, Val Loss: 0.027087658696940967 +2024-07-23 05:26:49.336 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 46/50, Train Loss: 0.03299308755574213, Val Loss: 0.028760513184326035 +2024-07-23 05:26:57.059 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 47/50, Train Loss: 0.03312837603319993, Val Loss: 0.028274591799293244 +2024-07-23 05:27:04.799 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 48/50, Train Loss: 0.03289979562998332, Val Loss: 0.027074854767748287 +2024-07-23 05:27:12.572 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 49/50, Train Loss: 0.03312468735886545, Val Loss: 0.028239990824035235 +2024-07-23 05:27:20.334 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 50/50, Train Loss: 0.03275123777553097, Val Loss: 0.027157396131328174 +2024-07-23 05:27:20.334 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Fold 4, MAPE: 2.39% +2024-07-23 05:27:20.436 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_25001_50000_LSTM//train_f4_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-23 05:27:24.924 [49/cross_validate_train/513 (pid 62808)] Task finished successfully. +2024-07-23 05:27:24.956 [49/model_scores/514 (pid 67484)] Task is starting. +2024-07-23 05:27:26.430 [49/model_scores/514 (pid 67484)] INFO:__main__:Average Train Loss across all folds: 0.03994432239243636 +2024-07-23 05:27:30.351 [49/model_scores/514 (pid 67484)] INFO:__main__:Average Validation Loss across all folds: 0.03541557060820716 +2024-07-23 05:27:30.351 [49/model_scores/514 (pid 67484)] INFO:__main__:Average MAPE across all folds: 2.99% +2024-07-23 05:27:30.352 [49/model_scores/514 (pid 67484)] Task finished successfully. +2024-07-23 05:27:30.379 [49/validate_model/515 (pid 67517)] Task is starting. +2024-07-23 05:27:31.841 [49/validate_model/515 (pid 67517)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 05:27:32.552 [49/validate_model/515 (pid 67517)] INFO:__main__:Test Set MAPE: 3.47% +2024-07-23 05:27:32.925 [49/validate_model/515 (pid 67517)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_lodging_residential_25001_50000_LSTM//test_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-23 05:27:33.354 [49/validate_model/515 (pid 67517)] Task finished successfully. +2024-07-23 05:27:33.384 [49/log_model/516 (pid 67528)] Task is starting. +2024-07-23 05:27:34.870 [49/log_model/516 (pid 67528)] INFO:__main__:Logging model bgd_lodging_residential_25001_50000_LSTM +2024-07-23 05:27:34.871 [49/log_model/516 (pid 67528)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_lodging_residential_25001_50000_LSTM//bgd_lodging_residential_25001_50000_LSTM.pth +2024-07-23 05:27:38.772 [49/log_model/516 (pid 67528)] Task finished successfully. +2024-07-23 05:27:38.801 [49/end/517 (pid 67563)] Task is starting. +2024-07-23 05:27:40.276 [49/end/517 (pid 67563)] INFO:__main__:Pipeline end. +2024-07-23 05:27:40.581 [49/end/517 (pid 67563)] Task finished successfully. +2024-07-23 05:27:40.582 Done! +✅ Run('BGD_LinearFlow/49') succeeded: +-- stdout -- +2024-07-23 04:47:15.486 Workflow starting (run-id 49): +2024-07-23 04:47:15.557 [49/start/505 (pid 62638)] Task is starting. +2024-07-23 04:47:16.905 [49/start/505 (pid 62638)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 04:47:17.193 [49/start/505 (pid 62638)] Task finished successfully. +2024-07-23 04:47:17.222 [49/ingest/506 (pid 62650)] Task is starting. +2024-07-23 04:47:18.667 [49/ingest/506 (pid 62650)] INFO:__main__:Fetching dataframe.. +2024-07-23 04:47:18.688 [49/ingest/506 (pid 62650)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 04:47:22.440 [49/ingest/506 (pid 62650)] Task finished successfully. +2024-07-23 04:47:22.468 [49/pick_2017_data/507 (pid 62685)] Task is starting. +2024-07-23 04:47:23.850 [49/pick_2017_data/507 (pid 62685)] INFO:__main__:Picking 2017 data.. +2024-07-23 04:47:24.150 [49/pick_2017_data/507 (pid 62685)] Task finished successfully. +2024-07-23 04:47:24.180 [49/fill_missing_data/508 (pid 62697)] Task is starting. +2024-07-23 04:47:25.568 [49/fill_missing_data/508 (pid 62697)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] INFO:__main__:NaN counts per column: +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] INFO:__main__:Panther_lodging_Hattie 12 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Blaine 12 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Jorge 11 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Jana 10 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Else 10 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Russell 10 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Fausto 10 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Willa 11 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Floyd 11 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Panther_lodging_Teresita 12 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Robin_lodging_Pricilla 2 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Cockatoo_lodging_Jimmie 1014 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] Mouse_lodging_Vicente 1656 +2024-07-23 04:47:25.578 [49/fill_missing_data/508 (pid 62697)] dtype: int64 +2024-07-23 04:47:25.579 [49/fill_missing_data/508 (pid 62697)] --- Logging error --- +2024-07-23 04:47:25.579 [49/fill_missing_data/508 (pid 62697)] Traceback (most recent call last): +2024-07-23 04:47:25.579 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 04:47:25.580 [49/fill_missing_data/508 (pid 62697)] msg = self.format(record) +2024-07-23 04:47:25.580 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 04:47:25.580 [49/fill_missing_data/508 (pid 62697)] return fmt.format(record) +2024-07-23 04:47:25.580 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 04:47:25.580 [49/fill_missing_data/508 (pid 62697)] record.message = record.getMessage() +2024-07-23 04:47:25.580 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 04:47:25.580 [49/fill_missing_data/508 (pid 62697)] msg = msg % self.args +2024-07-23 04:47:25.581 [49/fill_missing_data/508 (pid 62697)] TypeError: not all arguments converted during string formatting +2024-07-23 04:47:25.581 [49/fill_missing_data/508 (pid 62697)] Call stack: +2024-07-23 04:47:25.581 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] BGD_LinearFlow() +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] cli.main(self) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] return func(*args, **kwargs) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] return self.main(*args, **kwargs) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] rv = self.invoke(ctx) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] return callback(*args, **kwargs) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] return f(get_current_context(), *args, **kwargs) +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 04:47:27.503 [49/fill_missing_data/508 (pid 62697)] task.run_step( +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] self._exec_step_function(step_func) +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] step_function() +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] self.missing_values = find_nan_counts(self.df) +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] Arguments: (2781,) +2024-07-23 04:47:27.504 [49/fill_missing_data/508 (pid 62697)] Task finished successfully. +2024-07-23 04:47:27.536 [49/find_median/509 (pid 62721)] Task is starting. +2024-07-23 04:47:28.939 [49/find_median/509 (pid 62721)] INFO:__main__:Computing and using median.. +2024-07-23 04:47:29.431 [49/find_median/509 (pid 62721)] Task finished successfully. +2024-07-23 04:47:29.461 [49/aggregate_data/510 (pid 62734)] Task is starting. +2024-07-23 04:47:30.855 [49/aggregate_data/510 (pid 62734)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 04:47:34.638 [49/aggregate_data/510 (pid 62734)] Task finished successfully. +2024-07-23 04:47:34.667 [49/split_data/511 (pid 62759)] Task is starting. +2024-07-23 04:47:36.085 [49/split_data/511 (pid 62759)] INFO:__main__:Splitting data into test and train... +2024-07-23 04:47:39.889 [49/split_data/511 (pid 62759)] Task finished successfully. +2024-07-23 04:47:39.921 [49/make_x_y/512 (pid 62796)] Task is starting. +2024-07-23 04:47:41.661 [49/make_x_y/512 (pid 62796)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 04:47:42.047 [49/make_x_y/512 (pid 62796)] Shape of y_train: (6648, 1) +2024-07-23 04:47:42.047 [49/make_x_y/512 (pid 62796)] Shape of X_test: (1392, 360, 1) +2024-07-23 04:47:42.047 [49/make_x_y/512 (pid 62796)] Shape of y_test: (1392, 1) +2024-07-23 04:47:42.048 [49/make_x_y/512 (pid 62796)] Task finished successfully. +2024-07-23 04:47:42.079 [49/cross_validate_train/513 (pid 62808)] Task is starting. +2024-07-23 04:47:43.501 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Creating bgd_lodging_residential_25001_50000_LSTM +2024-07-23 04:47:43.502 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Performing cross validation.. +2024-07-23 04:47:45.940 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 1/50, Train Loss: 0.2713651446359498, Val Loss: 0.1505321334515299 +2024-07-23 04:47:47.893 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 2/50, Train Loss: 0.1577985880630357, Val Loss: 0.12402798192841666 +2024-07-23 04:47:49.756 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 3/50, Train Loss: 0.152859970501491, Val Loss: 0.11974364881004607 +2024-07-23 04:47:51.603 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 4/50, Train Loss: 0.14412856910909924, Val Loss: 0.11392334422894887 +2024-07-23 04:47:53.478 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 5/50, Train Loss: 0.13279913791588374, Val Loss: 0.10336121363299233 +2024-07-23 04:47:55.427 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 6/50, Train Loss: 0.11658686154655047, Val Loss: 0.0842223516532353 +2024-07-23 04:47:57.383 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 7/50, Train Loss: 0.10415380139436041, Val Loss: 0.0827808352453368 +2024-07-23 04:47:59.284 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 8/50, Train Loss: 0.09692438542842866, Val Loss: 0.06732762732676097 +2024-07-23 04:48:01.209 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 9/50, Train Loss: 0.08944462122661727, Val Loss: 0.06670178792306355 +2024-07-23 04:48:03.125 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 10/50, Train Loss: 0.08623320290020534, Val Loss: 0.06439502909779549 +2024-07-23 04:48:05.036 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 11/50, Train Loss: 0.08542328476905822, Val Loss: 0.06408244392701558 +2024-07-23 04:48:06.946 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 12/50, Train Loss: 0.08405350648931094, Val Loss: 0.06270331059183393 +2024-07-23 04:48:08.873 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 13/50, Train Loss: 0.08260811386363846, Val Loss: 0.0616904154419899 +2024-07-23 04:48:10.774 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 14/50, Train Loss: 0.08135097463216101, Val Loss: 0.06038366279431752 +2024-07-23 04:48:12.705 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 15/50, Train Loss: 0.07933623333062445, Val Loss: 0.058967390869344986 +2024-07-23 04:48:14.628 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 16/50, Train Loss: 0.07769725375941822, Val Loss: 0.056113124106611525 +2024-07-23 04:48:16.543 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 17/50, Train Loss: 0.07529269957116672, Val Loss: 0.05439291298389435 +2024-07-23 04:48:18.578 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 18/50, Train Loss: 0.0728466799216611, Val Loss: 0.05197636517030852 +2024-07-23 04:48:20.443 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 19/50, Train Loss: 0.07138261816331319, Val Loss: 0.05080061906150409 +2024-07-23 04:48:22.339 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 20/50, Train Loss: 0.06885320820978709, Val Loss: 0.04892975831670421 +2024-07-23 04:48:24.279 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 21/50, Train Loss: 0.06798091690455164, Val Loss: 0.0476300308746951 +2024-07-23 04:48:26.192 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 22/50, Train Loss: 0.06613981532199043, Val Loss: 0.047113925750766485 +2024-07-23 04:48:28.133 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 23/50, Train Loss: 0.06535181999206544, Val Loss: 0.04640632846525737 +2024-07-23 04:48:30.079 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 24/50, Train Loss: 0.0642980059342725, Val Loss: 0.0460761091538838 +2024-07-23 04:48:32.050 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 25/50, Train Loss: 0.06356855960828918, Val Loss: 0.04598458292228835 +2024-07-23 04:48:34.007 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 26/50, Train Loss: 0.06320783581052508, Val Loss: 0.045249926884259495 +2024-07-23 04:48:35.943 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 27/50, Train Loss: 0.06213524416089058, Val Loss: 0.04482417990054403 +2024-07-23 04:48:37.888 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 28/50, Train Loss: 0.06106372103095055, Val Loss: 0.04442604891955852 +2024-07-23 04:48:39.840 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 29/50, Train Loss: 0.06011335551738739, Val Loss: 0.04440676287880966 +2024-07-23 04:48:41.789 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 30/50, Train Loss: 0.05988175251654216, Val Loss: 0.04376827962696552 +2024-07-23 04:48:43.731 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 31/50, Train Loss: 0.05876397394708225, Val Loss: 0.043950044363737104 +2024-07-23 04:48:45.670 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 32/50, Train Loss: 0.0583385526069573, Val Loss: 0.04337125899536269 +2024-07-23 04:48:47.616 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 33/50, Train Loss: 0.05786505075437682, Val Loss: 0.04346705350492682 +2024-07-23 04:48:49.546 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 34/50, Train Loss: 0.0586642864559378, Val Loss: 0.04297009765037468 +2024-07-23 04:48:51.507 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 35/50, Train Loss: 0.057358361461332864, Val Loss: 0.042921610442655425 +2024-07-23 04:48:53.434 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 36/50, Train Loss: 0.057505497975008826, Val Loss: 0.04249835557171277 +2024-07-23 04:48:55.345 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 37/50, Train Loss: 0.056930314430168695, Val Loss: 0.04254926294088364 +2024-07-23 04:48:57.255 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 38/50, Train Loss: 0.05747742227145604, Val Loss: 0.042871073633432386 +2024-07-23 04:48:59.210 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 39/50, Train Loss: 0.05646747159106391, Val Loss: 0.04163456160042967 +2024-07-23 04:49:01.134 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 40/50, Train Loss: 0.055542776414326256, Val Loss: 0.04216004120452063 +2024-07-23 04:49:03.094 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 41/50, Train Loss: 0.05647248434168952, Val Loss: 0.04245719537138939 +2024-07-23 04:49:05.031 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 42/50, Train Loss: 0.05556626117655209, Val Loss: 0.04171634151467255 +2024-07-23 04:49:06.961 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 43/50, Train Loss: 0.05559280078325953, Val Loss: 0.04145687004285199 +2024-07-23 04:49:08.915 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 44/50, Train Loss: 0.05477383477347238, Val Loss: 0.041659563673394066 +2024-07-23 04:49:10.876 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 45/50, Train Loss: 0.054996925805296214, Val Loss: 0.04142352459686143 +2024-07-23 04:49:12.830 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 46/50, Train Loss: 0.05446052551269531, Val Loss: 0.04135099069348403 +2024-07-23 04:49:14.781 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 47/50, Train Loss: 0.054544667899608615, Val Loss: 0.04120120347610542 +2024-07-23 04:49:16.728 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 48/50, Train Loss: 0.05407586938568524, Val Loss: 0.04096524667526994 +2024-07-23 04:49:18.658 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 49/50, Train Loss: 0.0540637985936233, Val Loss: 0.041608119064143724 +2024-07-23 04:49:20.579 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 50/50, Train Loss: 0.05397698538643973, Val Loss: 0.041027057064431056 +2024-07-23 04:49:20.580 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Fold 0, MAPE: 3.38% +2024-07-23 04:49:20.945 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_25001_50000_LSTM//train_f0_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-23 04:49:24.407 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 1/50, Train Loss: 0.04713468038077865, Val Loss: 0.043628954142332074 +2024-07-23 04:49:27.783 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 2/50, Train Loss: 0.0484639546168702, Val Loss: 0.047667445774589264 +2024-07-23 04:49:31.149 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 3/50, Train Loss: 0.047762038851422925, Val Loss: 0.044314603986484666 +2024-07-23 04:49:34.549 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 4/50, Train Loss: 0.04635564855166844, Val Loss: 0.04297897735876696 +2024-07-23 04:49:37.949 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 5/50, Train Loss: 0.04557416870125702, Val Loss: 0.04262638102684702 +2024-07-23 04:49:41.335 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 6/50, Train Loss: 0.04489123158689056, Val Loss: 0.04076730188514505 +2024-07-23 04:49:44.779 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 7/50, Train Loss: 0.04466901147472007, Val Loss: 0.04040228272122996 +2024-07-23 04:49:48.167 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 8/50, Train Loss: 0.04460238548261779, Val Loss: 0.04101395702787808 +2024-07-23 04:49:51.555 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 9/50, Train Loss: 0.044376271164843016, Val Loss: 0.04049725825233119 +2024-07-23 04:49:54.927 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 10/50, Train Loss: 0.04440358416842563, Val Loss: 0.04117887472467763 +2024-07-23 04:49:58.290 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 11/50, Train Loss: 0.04449601415544748, Val Loss: 0.03981318351413522 +2024-07-23 04:50:01.659 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 12/50, Train Loss: 0.04434090453599181, Val Loss: 0.04002994841762952 +2024-07-23 04:50:05.080 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 13/50, Train Loss: 0.04408170426530497, Val Loss: 0.040145728258149965 +2024-07-23 04:50:08.488 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 14/50, Train Loss: 0.04410611657159669, Val Loss: 0.04025852520551 +2024-07-23 04:50:11.913 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 15/50, Train Loss: 0.044030691630073955, Val Loss: 0.03930840715765953 +2024-07-23 04:50:15.306 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 16/50, Train Loss: 0.04396026842296123, Val Loss: 0.03992184049316815 +2024-07-23 04:50:18.700 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 17/50, Train Loss: 0.043810438551008704, Val Loss: 0.040115750793899806 +2024-07-23 04:52:42.507 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 18/50, Train Loss: 0.04398901204445532, Val Loss: 0.03932711710887296 +2024-07-23 04:52:42.508 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 04:52:42.508 No tasks are waiting in the queue. +2024-07-23 04:52:42.508 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 04:52:45.776 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 19/50, Train Loss: 0.04403520090771573, Val Loss: 0.040009212706770214 +2024-07-23 04:52:49.153 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 20/50, Train Loss: 0.04423390400729009, Val Loss: 0.04078819788992405 +2024-07-23 04:52:52.545 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 21/50, Train Loss: 0.04443187676370144, Val Loss: 0.04235093455229487 +2024-07-23 04:52:55.937 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 22/50, Train Loss: 0.04406940851892744, Val Loss: 0.03898843308644635 +2024-07-23 04:52:59.326 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 23/50, Train Loss: 0.04362914865570409, Val Loss: 0.03924218959042004 +2024-07-23 04:53:02.704 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 24/50, Train Loss: 0.04373355590339218, Val Loss: 0.039119256128157885 +2024-07-23 04:53:06.073 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 25/50, Train Loss: 0.044016813380377634, Val Loss: 0.04022336149854319 +2024-07-23 04:53:09.458 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 26/50, Train Loss: 0.04392420008246388, Val Loss: 0.04031736414347376 +2024-07-23 04:53:12.866 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 27/50, Train Loss: 0.04381717882518257, Val Loss: 0.03989251112299306 +2024-07-23 04:53:16.268 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 28/50, Train Loss: 0.04383493398449251, Val Loss: 0.039371367011751444 +2024-07-23 04:53:19.649 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 29/50, Train Loss: 0.04360191194074495, Val Loss: 0.039204448089003564 +2024-07-23 04:53:23.043 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 30/50, Train Loss: 0.04344741885683366, Val Loss: 0.03945142232945987 +2024-07-23 04:53:26.431 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 31/50, Train Loss: 0.043699589744210246, Val Loss: 0.03955000234501702 +2024-07-23 04:55:17.191 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 32/50, Train Loss: 0.04349931026143687, Val Loss: 0.03971929363906383 +2024-07-23 04:55:20.574 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 33/50, Train Loss: 0.043981573810534816, Val Loss: 0.039295584335923193 +2024-07-23 04:55:23.976 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 34/50, Train Loss: 0.04362524412572384, Val Loss: 0.03961865870015962 +2024-07-23 04:55:27.368 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 35/50, Train Loss: 0.04344058156545673, Val Loss: 0.039407312870025635 +2024-07-23 04:55:30.770 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 36/50, Train Loss: 0.0435653533254351, Val Loss: 0.03984769077173301 +2024-07-23 04:55:34.144 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 37/50, Train Loss: 0.04374311741973672, Val Loss: 0.03985815559114728 +2024-07-23 04:55:37.523 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 38/50, Train Loss: 0.04381894112697669, Val Loss: 0.03883646348757403 +2024-07-23 04:55:40.899 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 39/50, Train Loss: 0.043404414744249414, Val Loss: 0.039359029488904136 +2024-07-23 04:55:44.272 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 40/50, Train Loss: 0.0433572308825595, Val Loss: 0.03958230061190469 +2024-07-23 04:55:47.633 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 41/50, Train Loss: 0.043594834102051595, Val Loss: 0.03945010884531907 +2024-07-23 04:55:51.027 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 42/50, Train Loss: 0.043916108778544835, Val Loss: 0.04085872167987483 +2024-07-23 04:55:54.421 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 43/50, Train Loss: 0.043887990739728724, Val Loss: 0.038872127554246357 +2024-07-23 04:55:57.841 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 44/50, Train Loss: 0.043149666355124544, Val Loss: 0.03888295479118824 +2024-07-23 04:56:18.466 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 45/50, Train Loss: 0.04319140333682299, Val Loss: 0.03931129196924823 +2024-07-23 04:56:21.863 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 46/50, Train Loss: 0.04339690823107958, Val Loss: 0.03911510540970734 +2024-07-23 04:56:25.227 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 47/50, Train Loss: 0.043352158447461465, Val Loss: 0.0397519661379712 +2024-07-23 04:56:28.613 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 48/50, Train Loss: 0.043294479697942735, Val Loss: 0.0392058155898537 +2024-07-23 04:56:32.023 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 49/50, Train Loss: 0.043446565392826285, Val Loss: 0.03965462169476918 +2024-07-23 04:56:35.395 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 50/50, Train Loss: 0.04311846372272287, Val Loss: 0.039454844647220204 +2024-07-23 04:56:35.395 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Fold 1, MAPE: 3.39% +2024-07-23 04:56:35.492 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_25001_50000_LSTM//train_f1_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-23 04:56:40.264 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 1/50, Train Loss: 0.037551248929678246, Val Loss: 0.039952120876738 +2024-07-23 04:56:45.108 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 2/50, Train Loss: 0.03867324400478257, Val Loss: 0.03933217280677387 +2024-07-23 04:56:49.952 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 3/50, Train Loss: 0.03833576037476842, Val Loss: 0.03826360521571977 +2024-07-23 04:56:54.775 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 4/50, Train Loss: 0.03814256775121276, Val Loss: 0.03702706151774952 +2024-07-23 04:56:59.608 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 5/50, Train Loss: 0.03788620944564732, Val Loss: 0.037985535019210405 +2024-07-23 04:57:04.446 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 6/50, Train Loss: 0.03827913671445388, Val Loss: 0.0365233306906053 +2024-07-23 05:04:19.758 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 7/50, Train Loss: 0.03779144583341594, Val Loss: 0.03777732737362385 +2024-07-23 05:04:19.758 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:04:19.758 No tasks are waiting in the queue. +2024-07-23 05:04:19.758 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 05:04:24.577 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 8/50, Train Loss: 0.03803991105479117, Val Loss: 0.037464393143142975 +2024-07-23 05:04:29.429 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 9/50, Train Loss: 0.03798455109175008, Val Loss: 0.03624036636735712 +2024-07-23 05:04:34.240 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 10/50, Train Loss: 0.03777756151528312, Val Loss: 0.037113761955073904 +2024-07-23 05:04:39.040 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 11/50, Train Loss: 0.037698678905144334, Val Loss: 0.03663243539631367 +2024-07-23 05:04:43.824 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 12/50, Train Loss: 0.037797787674487784, Val Loss: 0.03654260417180402 +2024-07-23 05:04:48.661 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 13/50, Train Loss: 0.03773370463974201, Val Loss: 0.03813266647713525 +2024-07-23 05:04:53.464 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 14/50, Train Loss: 0.038165036839647934, Val Loss: 0.035607038225446426 +2024-07-23 05:04:58.307 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 15/50, Train Loss: 0.03762939328757616, Val Loss: 0.037403336593082974 +2024-07-23 05:12:44.074 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 16/50, Train Loss: 0.03777825402525755, Val Loss: 0.0364676549498524 +2024-07-23 05:12:44.074 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:12:44.074 No tasks are waiting in the queue. +2024-07-23 05:12:44.074 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 05:12:48.934 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 17/50, Train Loss: 0.03794555819163529, Val Loss: 0.03584257401525974 +2024-07-23 05:12:53.772 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 18/50, Train Loss: 0.03765662507010767, Val Loss: 0.036421489236610274 +2024-07-23 05:12:58.636 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 19/50, Train Loss: 0.03777613218587179, Val Loss: 0.03625452608934471 +2024-07-23 05:13:03.513 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 20/50, Train Loss: 0.03762341129521911, Val Loss: 0.036803164279886655 +2024-07-23 05:13:08.372 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 21/50, Train Loss: 0.03771796969410319, Val Loss: 0.03623984440096787 +2024-07-23 05:13:13.208 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 22/50, Train Loss: 0.03753437268404433, Val Loss: 0.037237216798322544 +2024-07-23 05:13:18.000 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 23/50, Train Loss: 0.037538898517735876, Val Loss: 0.03603262369121824 +2024-07-23 05:13:22.807 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 24/50, Train Loss: 0.037492390077274576, Val Loss: 0.036547981894442014 +2024-07-23 05:13:27.605 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 25/50, Train Loss: 0.03737931720052774, Val Loss: 0.036312990901725635 +2024-07-23 05:13:32.412 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 26/50, Train Loss: 0.03741483913304714, Val Loss: 0.03568786872284753 +2024-07-23 05:13:37.259 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 27/50, Train Loss: 0.037431565686487235, Val Loss: 0.03709820727152484 +2024-07-23 05:13:42.112 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 28/50, Train Loss: 0.037504273072744794, Val Loss: 0.03605337861393179 +2024-07-23 05:13:46.932 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 29/50, Train Loss: 0.037282269716692656, Val Loss: 0.037240768277219366 +2024-07-23 05:13:51.793 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 30/50, Train Loss: 0.03758266029091409, Val Loss: 0.03675276621111802 +2024-07-23 05:13:56.604 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 31/50, Train Loss: 0.03729145780492287, Val Loss: 0.036185773728149274 +2024-07-23 05:14:01.472 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 32/50, Train Loss: 0.03741108377177555, Val Loss: 0.03654617550117629 +2024-07-23 05:14:06.366 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 33/50, Train Loss: 0.037450957380665034, Val Loss: 0.036526521401745934 +2024-07-23 05:14:11.217 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 34/50, Train Loss: 0.037374130163628325, Val Loss: 0.036528094485402104 +2024-07-23 05:14:16.045 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 35/50, Train Loss: 0.03748734200444932, Val Loss: 0.03598531724086829 +2024-07-23 05:14:20.912 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 36/50, Train Loss: 0.037238849309058145, Val Loss: 0.0356909019606454 +2024-07-23 05:14:25.680 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 37/50, Train Loss: 0.03728837322873565, Val Loss: 0.036135596728750635 +2024-07-23 05:14:30.545 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 38/50, Train Loss: 0.03744858413791427, Val Loss: 0.03541900808257716 +2024-07-23 05:14:35.371 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 39/50, Train Loss: 0.03724229484438323, Val Loss: 0.03551289817052228 +2024-07-23 05:14:40.210 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 40/50, Train Loss: 0.03723731848339622, Val Loss: 0.03584188941333975 +2024-07-23 05:14:44.999 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 41/50, Train Loss: 0.037294039592290155, Val Loss: 0.03647007431302752 +2024-07-23 05:14:49.869 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 42/50, Train Loss: 0.03721742034674837, Val Loss: 0.03654303726341043 +2024-07-23 05:14:54.693 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 43/50, Train Loss: 0.037188755276684575, Val Loss: 0.03581712022423744 +2024-07-23 05:14:59.505 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 44/50, Train Loss: 0.03727032727776812, Val Loss: 0.03510333661522184 +2024-07-23 05:15:04.337 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 45/50, Train Loss: 0.0372030446664072, Val Loss: 0.03574552035757474 +2024-07-23 05:15:09.231 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 46/50, Train Loss: 0.0371778470893892, Val Loss: 0.03618437051773071 +2024-07-23 05:15:14.014 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 47/50, Train Loss: 0.03708105960574288, Val Loss: 0.03536088887069907 +2024-07-23 05:15:18.873 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 48/50, Train Loss: 0.037131385125506386, Val Loss: 0.03705112024077347 +2024-07-23 05:15:23.671 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 49/50, Train Loss: 0.037245049624918744, Val Loss: 0.03449207389993327 +2024-07-23 05:15:28.468 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 50/50, Train Loss: 0.036886421408360966, Val Loss: 0.03646834833281381 +2024-07-23 05:15:28.469 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Fold 2, MAPE: 2.97% +2024-07-23 05:15:28.569 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_25001_50000_LSTM//train_f2_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-23 05:15:34.932 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 1/50, Train Loss: 0.033224025674217894, Val Loss: 0.034688637991036685 +2024-07-23 05:15:41.297 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 2/50, Train Loss: 0.033626674774953784, Val Loss: 0.033377498335071976 +2024-07-23 05:15:47.622 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 3/50, Train Loss: 0.03348089412203152, Val Loss: 0.03391933728541647 +2024-07-23 05:15:53.978 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 4/50, Train Loss: 0.03346813243659709, Val Loss: 0.033993784870420186 +2024-07-23 05:16:00.425 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 5/50, Train Loss: 0.03331775779721977, Val Loss: 0.036021234254751885 +2024-07-23 05:16:06.798 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 6/50, Train Loss: 0.03333306703180503, Val Loss: 0.03620969993727548 +2024-07-23 05:16:13.285 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 7/50, Train Loss: 0.03341686501831031, Val Loss: 0.03679884815854686 +2024-07-23 05:16:19.751 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 8/50, Train Loss: 0.03330812648126333, Val Loss: 0.03647391056375844 +2024-07-23 05:16:26.164 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 9/50, Train Loss: 0.033243550664390165, Val Loss: 0.036972845771483014 +2024-07-23 05:16:32.651 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 10/50, Train Loss: 0.033438604680164685, Val Loss: 0.03672529448355947 +2024-07-23 05:16:39.142 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 11/50, Train Loss: 0.0335564596256871, Val Loss: 0.03658240240599428 +2024-07-23 05:16:45.636 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 12/50, Train Loss: 0.033556765092791416, Val Loss: 0.03648036111678396 +2024-07-23 05:16:52.230 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 13/50, Train Loss: 0.033570215608522615, Val Loss: 0.03509960680135659 +2024-07-23 05:16:58.798 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 14/50, Train Loss: 0.03346611545320681, Val Loss: 0.03475401784692492 +2024-07-23 05:17:05.334 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 15/50, Train Loss: 0.03322138395428443, Val Loss: 0.03466553719980376 +2024-07-23 05:17:11.916 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 16/50, Train Loss: 0.03323024167618949, Val Loss: 0.035342126180018696 +2024-07-23 05:17:18.608 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 17/50, Train Loss: 0.033394727634815435, Val Loss: 0.03400335157556193 +2024-07-23 05:17:25.198 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 18/50, Train Loss: 0.0332912831573928, Val Loss: 0.03397816866636276 +2024-07-23 05:17:31.943 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 19/50, Train Loss: 0.03329421204628704, Val Loss: 0.03450670162481921 +2024-07-23 05:17:38.653 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 20/50, Train Loss: 0.03326312409673663, Val Loss: 0.03445634788700513 +2024-07-23 05:17:45.392 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 21/50, Train Loss: 0.033211299707349255, Val Loss: 0.034302129702908656 +2024-07-23 05:17:45.392 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:17:45.392 No tasks are waiting in the queue. +2024-07-23 05:17:45.392 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 05:17:52.230 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 22/50, Train Loss: 0.03315022870523038, Val Loss: 0.03392379645790373 +2024-07-23 05:17:59.024 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 23/50, Train Loss: 0.03315463430321903, Val Loss: 0.03380180262029171 +2024-07-23 05:18:05.889 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 24/50, Train Loss: 0.03322180808126498, Val Loss: 0.03376207644385951 +2024-07-23 05:18:12.939 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 25/50, Train Loss: 0.033292345206836146, Val Loss: 0.03328515317823206 +2024-07-23 05:18:20.038 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 26/50, Train Loss: 0.03312342192495255, Val Loss: 0.03422456734946796 +2024-07-23 05:18:26.971 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 27/50, Train Loss: 0.03320220127540956, Val Loss: 0.035007561690040996 +2024-07-23 05:18:34.020 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 28/50, Train Loss: 0.03325152537189156, Val Loss: 0.03363923696534974 +2024-07-23 05:18:40.857 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 29/50, Train Loss: 0.033104729617563944, Val Loss: 0.03430391709719385 +2024-07-23 05:18:47.723 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 30/50, Train Loss: 0.033262143025456145, Val Loss: 0.03329804662082877 +2024-07-23 05:18:54.478 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 31/50, Train Loss: 0.03315835860189345, Val Loss: 0.033228778306927 +2024-07-23 05:19:00.923 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 32/50, Train Loss: 0.033155382604157325, Val Loss: 0.033434249141386575 +2024-07-23 05:19:07.172 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 33/50, Train Loss: 0.033058624922317995, Val Loss: 0.03339752820985658 +2024-07-23 05:19:13.416 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 34/50, Train Loss: 0.033060239105344676, Val Loss: 0.033295798195259914 +2024-07-23 05:19:19.681 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 35/50, Train Loss: 0.03304332177818036, Val Loss: 0.03403554329914706 +2024-07-23 05:19:25.908 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 36/50, Train Loss: 0.03297069030244359, Val Loss: 0.03456796955849443 +2024-07-23 05:19:32.186 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 37/50, Train Loss: 0.0331112663697103, Val Loss: 0.03320860399731568 +2024-07-23 05:19:38.418 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 38/50, Train Loss: 0.03313687402862225, Val Loss: 0.03334953391126224 +2024-07-23 05:19:44.689 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 39/50, Train Loss: 0.03308161031186795, Val Loss: 0.032738012820482255 +2024-07-23 05:19:50.932 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 40/50, Train Loss: 0.03309576605319334, Val Loss: 0.03403290483568396 +2024-07-23 05:19:57.154 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 41/50, Train Loss: 0.033040410282907724, Val Loss: 0.03345265010637896 +2024-07-23 05:20:03.415 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 42/50, Train Loss: 0.03289401974770234, Val Loss: 0.03392146506479808 +2024-07-23 05:20:09.674 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 43/50, Train Loss: 0.03312486317008734, Val Loss: 0.03372298361999648 +2024-07-23 05:20:15.922 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 44/50, Train Loss: 0.03287849916989426, Val Loss: 0.03357848956116608 +2024-07-23 05:20:22.170 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 45/50, Train Loss: 0.03309560200641695, Val Loss: 0.033257983518498284 +2024-07-23 05:20:28.589 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 46/50, Train Loss: 0.03289092793095884, Val Loss: 0.033501922126327244 +2024-07-23 05:20:35.042 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 47/50, Train Loss: 0.03292772151100978, Val Loss: 0.03294515215924808 +2024-07-23 05:20:41.374 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 48/50, Train Loss: 0.0330577842261401, Val Loss: 0.033170616147773606 +2024-07-23 05:20:47.670 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 49/50, Train Loss: 0.033101872842517685, Val Loss: 0.032584372056382045 +2024-07-23 05:20:53.967 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 50/50, Train Loss: 0.032988503669127284, Val Loss: 0.032970206865242546 +2024-07-23 05:20:53.967 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Fold 3, MAPE: 2.84% +2024-07-23 05:20:54.068 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_25001_50000_LSTM//train_f3_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-23 05:21:01.744 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 1/50, Train Loss: 0.0333360946127053, Val Loss: 0.026882684603333474 +2024-07-23 05:21:09.512 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 2/50, Train Loss: 0.03406126195586276, Val Loss: 0.027456862373011454 +2024-07-23 05:21:17.202 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 3/50, Train Loss: 0.034239180605516006, Val Loss: 0.029262216708489826 +2024-07-23 05:21:24.909 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 4/50, Train Loss: 0.03401748902410611, Val Loss: 0.029540286319596428 +2024-07-23 05:21:32.589 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 5/50, Train Loss: 0.03406583791834184, Val Loss: 0.029342350736260413 +2024-07-23 05:21:40.336 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 6/50, Train Loss: 0.03356063271733536, Val Loss: 0.028167894908360074 +2024-07-23 05:21:48.107 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 7/50, Train Loss: 0.0335674084851454, Val Loss: 0.028341806307435036 +2024-07-23 05:21:55.871 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 8/50, Train Loss: 0.03360708374744174, Val Loss: 0.027905783003994395 +2024-07-23 05:22:03.570 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 9/50, Train Loss: 0.03372786057599146, Val Loss: 0.02966459872467177 +2024-07-23 05:22:11.307 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 10/50, Train Loss: 0.03350193435112121, Val Loss: 0.027917803025671414 +2024-07-23 05:22:19.026 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 11/50, Train Loss: 0.0334734918239216, Val Loss: 0.027508744597435 +2024-07-23 05:22:26.678 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 12/50, Train Loss: 0.03348471447504286, Val Loss: 0.027506921866110392 +2024-07-23 05:22:34.393 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 13/50, Train Loss: 0.03354761485096024, Val Loss: 0.028276390369449345 +2024-07-23 05:22:42.125 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 14/50, Train Loss: 0.03345565478606471, Val Loss: 0.02817113489976951 +2024-07-23 05:22:49.853 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 15/50, Train Loss: 0.03336901031969779, Val Loss: 0.02778556336249624 +2024-07-23 05:22:49.853 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 05:22:49.853 No tasks are waiting in the queue. +2024-07-23 05:22:49.853 4 steps have not started: validate_model, model_scores, end, log_model. +2024-07-23 05:22:57.564 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 16/50, Train Loss: 0.03357222268422102, Val Loss: 0.02841998285480908 +2024-07-23 05:23:05.229 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 17/50, Train Loss: 0.03351113006965011, Val Loss: 0.0284843630024365 +2024-07-23 05:23:12.937 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 18/50, Train Loss: 0.033325687404079686, Val Loss: 0.028422035223671368 +2024-07-23 05:23:20.656 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 19/50, Train Loss: 0.033405611120250034, Val Loss: 0.02769625559449196 +2024-07-23 05:23:28.347 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 20/50, Train Loss: 0.03325772582521212, Val Loss: 0.027333789691329 +2024-07-23 05:23:36.045 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 21/50, Train Loss: 0.03328462968441261, Val Loss: 0.028095351159572603 +2024-07-23 05:23:43.791 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 22/50, Train Loss: 0.033237854532640554, Val Loss: 0.028607128081577164 +2024-07-23 05:23:51.506 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 23/50, Train Loss: 0.033506656167279374, Val Loss: 0.029978298342653684 +2024-07-23 05:23:59.254 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 24/50, Train Loss: 0.033401718127659, Val Loss: 0.029464105889201165 +2024-07-23 05:24:06.984 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 25/50, Train Loss: 0.03332849345758729, Val Loss: 0.028077466519815582 +2024-07-23 05:24:14.722 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 26/50, Train Loss: 0.03352905707647917, Val Loss: 0.03069419605391366 +2024-07-23 05:24:22.416 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 27/50, Train Loss: 0.0333141538036195, Val Loss: 0.02804708954479013 +2024-07-23 05:24:30.122 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 28/50, Train Loss: 0.03340832679264847, Val Loss: 0.029804878469024385 +2024-07-23 05:24:37.848 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 29/50, Train Loss: 0.0333929677365412, Val Loss: 0.02969427247132574 +2024-07-23 05:24:45.551 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 30/50, Train Loss: 0.03321907255563072, Val Loss: 0.02878393376512187 +2024-07-23 05:24:53.258 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 31/50, Train Loss: 0.03330809444767134, Val Loss: 0.02956908190889018 +2024-07-23 05:25:01.042 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 32/50, Train Loss: 0.03353014811017047, Val Loss: 0.03031199409493378 +2024-07-23 05:25:08.763 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 33/50, Train Loss: 0.033525428038904036, Val Loss: 0.028170773865921157 +2024-07-23 05:25:16.536 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 34/50, Train Loss: 0.03325051910661418, Val Loss: 0.028769605127828463 +2024-07-23 05:25:24.249 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 35/50, Train Loss: 0.03337499744997456, Val Loss: 0.028993980746184075 +2024-07-23 05:25:32.007 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 36/50, Train Loss: 0.03319083566338509, Val Loss: 0.028541755729487965 +2024-07-23 05:25:39.701 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 37/50, Train Loss: 0.03332541728841847, Val Loss: 0.028624927518623215 +2024-07-23 05:25:47.451 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 38/50, Train Loss: 0.033213968105057536, Val Loss: 0.029135769499199732 +2024-07-23 05:25:55.177 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 39/50, Train Loss: 0.033231185952565453, Val Loss: 0.02777904128389699 +2024-07-23 05:26:02.927 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 40/50, Train Loss: 0.03314498726321363, Val Loss: 0.027443502790161542 +2024-07-23 05:26:10.664 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 41/50, Train Loss: 0.033325421115404916, Val Loss: 0.028413220707859312 +2024-07-23 05:26:18.386 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 42/50, Train Loss: 0.03288130761370405, Val Loss: 0.028155694689069477 +2024-07-23 05:26:26.088 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 43/50, Train Loss: 0.033059097789013864, Val Loss: 0.028540040818708284 +2024-07-23 05:26:33.852 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 44/50, Train Loss: 0.032865287179405664, Val Loss: 0.028085416236094066 +2024-07-23 05:26:41.598 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 45/50, Train Loss: 0.03322081453562982, Val Loss: 0.027087658696940967 +2024-07-23 05:26:49.336 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 46/50, Train Loss: 0.03299308755574213, Val Loss: 0.028760513184326035 +2024-07-23 05:26:57.059 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 47/50, Train Loss: 0.03312837603319993, Val Loss: 0.028274591799293244 +2024-07-23 05:27:04.799 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 48/50, Train Loss: 0.03289979562998332, Val Loss: 0.027074854767748287 +2024-07-23 05:27:12.572 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 49/50, Train Loss: 0.03312468735886545, Val Loss: 0.028239990824035235 +2024-07-23 05:27:20.334 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Epoch 50/50, Train Loss: 0.03275123777553097, Val Loss: 0.027157396131328174 +2024-07-23 05:27:20.334 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Fold 4, MAPE: 2.39% +2024-07-23 05:27:20.436 [49/cross_validate_train/513 (pid 62808)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_25001_50000_LSTM//train_f4_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-23 05:27:24.924 [49/cross_validate_train/513 (pid 62808)] Task finished successfully. +2024-07-23 05:27:24.956 [49/model_scores/514 (pid 67484)] Task is starting. +2024-07-23 05:27:26.430 [49/model_scores/514 (pid 67484)] INFO:__main__:Average Train Loss across all folds: 0.03994432239243636 +2024-07-23 05:27:30.351 [49/model_scores/514 (pid 67484)] INFO:__main__:Average Validation Loss across all folds: 0.03541557060820716 +2024-07-23 05:27:30.351 [49/model_scores/514 (pid 67484)] INFO:__main__:Average MAPE across all folds: 2.99% +2024-07-23 05:27:30.352 [49/model_scores/514 (pid 67484)] Task finished successfully. +2024-07-23 05:27:30.379 [49/validate_model/515 (pid 67517)] Task is starting. +2024-07-23 05:27:31.841 [49/validate_model/515 (pid 67517)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 05:27:32.552 [49/validate_model/515 (pid 67517)] INFO:__main__:Test Set MAPE: 3.47% +2024-07-23 05:27:32.925 [49/validate_model/515 (pid 67517)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_lodging_residential_25001_50000_LSTM//test_bgd_lodging_residential_25001_50000_LSTM.png +2024-07-23 05:27:33.354 [49/validate_model/515 (pid 67517)] Task finished successfully. +2024-07-23 05:27:33.384 [49/log_model/516 (pid 67528)] Task is starting. +2024-07-23 05:27:34.870 [49/log_model/516 (pid 67528)] INFO:__main__:Logging model bgd_lodging_residential_25001_50000_LSTM +2024-07-23 05:27:34.871 [49/log_model/516 (pid 67528)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_lodging_residential_25001_50000_LSTM//bgd_lodging_residential_25001_50000_LSTM.pth +2024-07-23 05:27:38.772 [49/log_model/516 (pid 67528)] Task finished successfully. +2024-07-23 05:27:38.801 [49/end/517 (pid 67563)] Task is starting. +2024-07-23 05:27:40.276 [49/end/517 (pid 67563)] INFO:__main__:Pipeline end. +2024-07-23 05:27:40.581 [49/end/517 (pid 67563)] Task finished successfully. +2024-07-23 05:27:40.582 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/scaler_bgd_lodging_residential_25001_50000_LSTM.pkl b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/scaler_bgd_lodging_residential_25001_50000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..e8f4674e71faceb37f22fed1808d8043cf43bb53 --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/scaler_bgd_lodging_residential_25001_50000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d723759d030a1ff02f18e8e3340e4ccd3c17721054f6479d1db21b206443300 +size 557 diff --git a/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/test_bgd_lodging_residential_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/test_bgd_lodging_residential_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..95cbeab2480051cd12b9eae01e83e6777e9486d4 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/test_bgd_lodging_residential_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f0_bgd_lodging_residential_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f0_bgd_lodging_residential_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..2c1601fada0013d4f34824ead8de5670403c4045 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f0_bgd_lodging_residential_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f1_bgd_lodging_residential_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f1_bgd_lodging_residential_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..5af2912e702bca147a203445efca25c3e9a67cd5 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f1_bgd_lodging_residential_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f2_bgd_lodging_residential_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f2_bgd_lodging_residential_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..7334b25c922dc2238ef75b5212cbd5b635c1bbbc Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f2_bgd_lodging_residential_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f3_bgd_lodging_residential_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f3_bgd_lodging_residential_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..20f2c4c68df128a740dbbd5c738f9617cf29729e Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f3_bgd_lodging_residential_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f4_bgd_lodging_residential_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f4_bgd_lodging_residential_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..bc1757e657aa8a53a1e14bdda9a23d98f03fda46 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_25001_50000_LSTM/train_f4_bgd_lodging_residential_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/bgd_lodging_residential_50001_100000_LSTM.pth b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/bgd_lodging_residential_50001_100000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..e9f55564fba715a99112ac3394384b335f4029bb --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/bgd_lodging_residential_50001_100000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:503ef6913899c9a9ccd9d28acd0cfbb0b3a4cf2101c42e98b7cdc2b23d29784c +size 47068 diff --git a/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/output.txt b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f79b04788319a1f602a85dc18525c0fddd84d17 --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/output.txt @@ -0,0 +1,781 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-23 07:13:39.133 Workflow starting (run-id 55): +2024-07-23 07:13:39.201 [55/start/589 (pid 92211)] Task is starting. +2024-07-23 07:13:40.676 [55/start/589 (pid 92211)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 07:13:40.966 [55/start/589 (pid 92211)] Task finished successfully. +2024-07-23 07:13:40.995 [55/ingest/590 (pid 92224)] Task is starting. +2024-07-23 07:13:42.478 [55/ingest/590 (pid 92224)] INFO:__main__:Fetching dataframe.. +2024-07-23 07:13:42.502 [55/ingest/590 (pid 92224)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 07:13:46.353 [55/ingest/590 (pid 92224)] Task finished successfully. +2024-07-23 07:13:46.387 [55/pick_2017_data/591 (pid 92255)] Task is starting. +2024-07-23 07:13:47.864 [55/pick_2017_data/591 (pid 92255)] INFO:__main__:Picking 2017 data.. +2024-07-23 07:13:48.186 [55/pick_2017_data/591 (pid 92255)] Task finished successfully. +2024-07-23 07:13:48.217 [55/fill_missing_data/592 (pid 92266)] Task is starting. +2024-07-23 07:13:49.695 [55/fill_missing_data/592 (pid 92266)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] INFO:__main__:NaN counts per column: +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] INFO:__main__:Panther_lodging_Edison 11 +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Awilda 12 +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Gale 11 +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Cornelia 11 +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Alita 11 +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Sonja 12 +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Kaitlin 12 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Edmond 11 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Tracie 11 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Robin_lodging_Celia 0 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Fox_lodging_Wallace 1 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Fox_lodging_Alana 1 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Fox_lodging_Winifred 1 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Bear_lodging_Erick 38 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Cockatoo_lodging_Raphael 113 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Cockatoo_lodging_Josephine 121 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] dtype: int64 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] --- Logging error --- +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Traceback (most recent call last): +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] msg = self.format(record) +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] return fmt.format(record) +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] record.message = record.getMessage() +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] msg = msg % self.args +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] TypeError: not all arguments converted during string formatting +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] Call stack: +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] BGD_LinearFlow() +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] cli.main(self) +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] return func(*args, **kwargs) +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] return self.main(*args, **kwargs) +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] rv = self.invoke(ctx) +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] return callback(*args, **kwargs) +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] return f(get_current_context(), *args, **kwargs) +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] task.run_step( +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] self._exec_step_function(step_func) +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] step_function() +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] self.missing_values = find_nan_counts(self.df) +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] Arguments: (377,) +2024-07-23 07:13:50.266 [55/fill_missing_data/592 (pid 92266)] Task finished successfully. +2024-07-23 07:13:50.298 [55/find_median/593 (pid 92278)] Task is starting. +2024-07-23 07:13:51.743 [55/find_median/593 (pid 92278)] INFO:__main__:Computing and using median.. +2024-07-23 07:13:52.250 [55/find_median/593 (pid 92278)] Task finished successfully. +2024-07-23 07:13:52.279 [55/aggregate_data/594 (pid 92291)] Task is starting. +2024-07-23 07:13:53.782 [55/aggregate_data/594 (pid 92291)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 07:13:57.623 [55/aggregate_data/594 (pid 92291)] Task finished successfully. +2024-07-23 07:13:57.655 [55/split_data/595 (pid 92315)] Task is starting. +2024-07-23 07:13:59.167 [55/split_data/595 (pid 92315)] INFO:__main__:Splitting data into test and train... +2024-07-23 07:14:03.009 [55/split_data/595 (pid 92315)] Task finished successfully. +2024-07-23 07:14:03.039 [55/make_x_y/596 (pid 92348)] Task is starting. +2024-07-23 07:14:04.851 [55/make_x_y/596 (pid 92348)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 07:14:05.252 [55/make_x_y/596 (pid 92348)] Shape of y_train: (6648, 1) +2024-07-23 07:14:05.252 [55/make_x_y/596 (pid 92348)] Shape of X_test: (1392, 360, 1) +2024-07-23 07:14:05.252 [55/make_x_y/596 (pid 92348)] Shape of y_test: (1392, 1) +2024-07-23 07:14:05.253 [55/make_x_y/596 (pid 92348)] Task finished successfully. +2024-07-23 07:14:05.283 [55/cross_validate_train/597 (pid 92359)] Task is starting. +2024-07-23 07:14:06.730 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Creating bgd_lodging_residential_50001_100000_LSTM +2024-07-23 07:14:06.731 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Performing cross validation.. +2024-07-23 07:14:09.219 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 1/50, Train Loss: 0.2750466140253203, Val Loss: 0.16362840575831278 +2024-07-23 07:14:11.125 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 2/50, Train Loss: 0.15992521068879537, Val Loss: 0.16075990008456367 +2024-07-23 07:14:13.028 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 3/50, Train Loss: 0.15811555108853748, Val Loss: 0.1554612274680819 +2024-07-23 07:14:14.995 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 4/50, Train Loss: 0.15371661526816233, Val Loss: 0.14480336265904561 +2024-07-23 07:14:16.903 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 5/50, Train Loss: 0.14522296605365617, Val Loss: 0.13705410041979382 +2024-07-23 07:14:18.811 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 6/50, Train Loss: 0.13227508334176882, Val Loss: 0.12325920122010367 +2024-07-23 07:14:20.757 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 7/50, Train Loss: 0.10334023290446827, Val Loss: 0.09234401008912495 +2024-07-23 07:14:22.682 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 8/50, Train Loss: 0.09104892856308393, Val Loss: 0.09008497042315347 +2024-07-23 07:14:24.633 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 9/50, Train Loss: 0.08962301281946046, Val Loss: 0.07982259392738342 +2024-07-23 07:14:26.562 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 10/50, Train Loss: 0.08202612314905439, Val Loss: 0.08155338391661644 +2024-07-23 07:14:28.492 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 11/50, Train Loss: 0.07796468010970524, Val Loss: 0.0850327838744436 +2024-07-23 07:14:30.445 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 12/50, Train Loss: 0.07778605318495206, Val Loss: 0.08653087530817305 +2024-07-23 07:14:32.381 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 13/50, Train Loss: 0.07889100323830332, Val Loss: 0.08941621567521776 +2024-07-23 07:14:34.348 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 14/50, Train Loss: 0.08200886451772281, Val Loss: 0.08793579606073243 +2024-07-23 07:14:36.293 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 15/50, Train Loss: 0.08232505491801671, Val Loss: 0.08738569329891886 +2024-07-23 07:14:38.230 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 16/50, Train Loss: 0.08289678139345986, Val Loss: 0.08510395927088601 +2024-07-23 07:14:40.181 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 17/50, Train Loss: 0.08126851618289947, Val Loss: 0.08295342262302126 +2024-07-23 07:14:42.112 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 18/50, Train Loss: 0.07875788775937898, Val Loss: 0.08058426869767053 +2024-07-23 07:14:44.063 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 19/50, Train Loss: 0.07744617898549352, Val Loss: 0.08049337746841567 +2024-07-23 07:14:45.999 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 20/50, Train Loss: 0.07658539382474763, Val Loss: 0.07993021990571703 +2024-07-23 07:14:47.968 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 21/50, Train Loss: 0.07639714788113322, Val Loss: 0.07767619799290384 +2024-07-23 07:14:49.920 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 22/50, Train Loss: 0.07518594892961639, Val Loss: 0.07790539850081717 +2024-07-23 07:14:51.867 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 23/50, Train Loss: 0.07411189824342727, Val Loss: 0.07660761028528214 +2024-07-23 07:14:53.826 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 24/50, Train Loss: 0.0733119907123702, Val Loss: 0.07606589166181428 +2024-07-23 07:14:55.769 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 25/50, Train Loss: 0.07250848774399077, Val Loss: 0.0754816720528262 +2024-07-23 07:14:57.708 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 26/50, Train Loss: 0.07144135417682784, Val Loss: 0.07284349777868816 +2024-07-23 07:14:59.638 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 27/50, Train Loss: 0.07064350034509387, Val Loss: 0.07286941951939038 +2024-07-23 07:15:01.593 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 28/50, Train Loss: 0.06991787563477243, Val Loss: 0.07255158509526934 +2024-07-23 07:15:03.537 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 29/50, Train Loss: 0.06902735946433884, Val Loss: 0.07130632145064218 +2024-07-23 07:15:05.512 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 30/50, Train Loss: 0.06759285383990833, Val Loss: 0.07315950255308833 +2024-07-23 07:15:07.460 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 31/50, Train Loss: 0.06764282690627234, Val Loss: 0.07508367778999465 +2024-07-23 07:15:09.408 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 32/50, Train Loss: 0.06736527500408036, Val Loss: 0.0736490969147001 +2024-07-23 07:15:11.374 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 33/50, Train Loss: 0.06639431757586343, Val Loss: 0.07343398470963751 +2024-07-23 07:15:13.326 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 34/50, Train Loss: 0.06591901459864208, Val Loss: 0.07315922336918967 +2024-07-23 07:15:15.307 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 35/50, Train Loss: 0.06541633776256016, Val Loss: 0.07243496552109718 +2024-07-23 07:15:17.254 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 36/50, Train Loss: 0.06433684570448739, Val Loss: 0.0696635365486145 +2024-07-23 07:15:19.193 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 37/50, Train Loss: 0.06239504643848964, Val Loss: 0.06731068864464759 +2024-07-23 07:15:21.178 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 38/50, Train Loss: 0.060275290374244964, Val Loss: 0.06664508708885737 +2024-07-23 07:15:23.120 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 39/50, Train Loss: 0.0590494735964707, Val Loss: 0.06365312848772321 +2024-07-23 07:15:25.068 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 40/50, Train Loss: 0.0577707653599126, Val Loss: 0.06136795431375504 +2024-07-23 07:15:27.016 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 41/50, Train Loss: 0.05595525545733315, Val Loss: 0.057803935664040705 +2024-07-23 07:15:28.962 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 42/50, Train Loss: 0.054129798178161895, Val Loss: 0.05579403904931886 +2024-07-23 07:15:30.905 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 43/50, Train Loss: 0.052800829708576205, Val Loss: 0.053313959922109334 +2024-07-23 07:15:32.866 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 44/50, Train Loss: 0.05132472664117813, Val Loss: 0.05090291808758463 +2024-07-23 07:15:34.840 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 45/50, Train Loss: 0.0499338122350829, Val Loss: 0.047927499136754446 +2024-07-23 07:15:36.791 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 46/50, Train Loss: 0.04869845137000084, Val Loss: 0.047382100032908575 +2024-07-23 07:15:38.751 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 47/50, Train Loss: 0.04832937424736364, Val Loss: 0.047387714684009555 +2024-07-23 07:15:40.727 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 48/50, Train Loss: 0.048205624307904926, Val Loss: 0.0466770595737866 +2024-07-23 07:15:42.687 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 49/50, Train Loss: 0.04797225562589509, Val Loss: 0.04615028617637498 +2024-07-23 07:15:44.676 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 50/50, Train Loss: 0.0470842289605311, Val Loss: 0.04656975833433015 +2024-07-23 07:15:44.676 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Fold 0, MAPE: 3.28% +2024-07-23 07:15:44.973 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_50001_100000_LSTM//train_f0_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-23 07:15:48.486 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 1/50, Train Loss: 0.04869660181658608, Val Loss: 0.041496424110872406 +2024-07-23 07:15:51.960 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 2/50, Train Loss: 0.04582382690693651, Val Loss: 0.04150276216013091 +2024-07-23 07:15:55.402 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 3/50, Train Loss: 0.045390153011041025, Val Loss: 0.03992212776626859 +2024-07-23 07:15:58.833 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 4/50, Train Loss: 0.044583247814859665, Val Loss: 0.04197603166103363 +2024-07-23 07:16:02.275 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 5/50, Train Loss: 0.044702463410794736, Val Loss: 0.03557260584618364 +2024-07-23 07:16:05.720 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 6/50, Train Loss: 0.044072818064263886, Val Loss: 0.038012756354042464 +2024-07-23 07:16:09.150 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 7/50, Train Loss: 0.04430443487529244, Val Loss: 0.03516907984656947 +2024-07-23 07:16:12.602 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 8/50, Train Loss: 0.04321833944746426, Val Loss: 0.03696128337510995 +2024-07-23 07:16:16.034 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 9/50, Train Loss: 0.04333611787962062, Val Loss: 0.03652564329760415 +2024-07-23 07:16:19.453 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 10/50, Train Loss: 0.04343703540840319, Val Loss: 0.03564535879663059 +2024-07-23 07:16:22.887 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 11/50, Train Loss: 0.043403810528772215, Val Loss: 0.03295802814619882 +2024-07-23 07:16:26.341 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 12/50, Train Loss: 0.04276345071515867, Val Loss: 0.03491480728345258 +2024-07-23 07:16:29.750 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 13/50, Train Loss: 0.042584201720144065, Val Loss: 0.03408498279750347 +2024-07-23 07:16:33.171 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 14/50, Train Loss: 0.04277947212436369, Val Loss: 0.03417398567710604 +2024-07-23 07:16:36.603 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 15/50, Train Loss: 0.04236290598554271, Val Loss: 0.034020764167819705 +2024-07-23 07:16:40.032 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 16/50, Train Loss: 0.04229321950780494, Val Loss: 0.03341976249856608 +2024-07-23 07:16:43.471 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 17/50, Train Loss: 0.04246496188321284, Val Loss: 0.032083142602017944 +2024-07-23 07:16:46.893 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 18/50, Train Loss: 0.04224628923194749, Val Loss: 0.03319616551910128 +2024-07-23 07:16:50.343 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 19/50, Train Loss: 0.04224669691175222, Val Loss: 0.03528997333986419 +2024-07-23 07:16:53.790 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 20/50, Train Loss: 0.04186601018799203, Val Loss: 0.03198297992348671 +2024-07-23 07:16:57.204 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 21/50, Train Loss: 0.042464722879230976, Val Loss: 0.03226982019841671 +2024-07-23 07:17:00.684 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 22/50, Train Loss: 0.04220309060599123, Val Loss: 0.032202287444046566 +2024-07-23 07:17:04.132 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 23/50, Train Loss: 0.04249962342104741, Val Loss: 0.032638993806072644 +2024-07-23 07:17:07.568 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 24/50, Train Loss: 0.04212029741278717, Val Loss: 0.03251329607197217 +2024-07-23 07:17:11.008 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 25/50, Train Loss: 0.042476151271590164, Val Loss: 0.032477918905871254 +2024-07-23 07:17:14.458 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 26/50, Train Loss: 0.04228098605360304, Val Loss: 0.03440133817493916 +2024-07-23 07:17:17.910 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 27/50, Train Loss: 0.04211397743118661, Val Loss: 0.033624088604535377 +2024-07-23 07:17:21.343 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 28/50, Train Loss: 0.04165830944797822, Val Loss: 0.03378232238548143 +2024-07-23 07:17:24.791 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 29/50, Train Loss: 0.041891965669180665, Val Loss: 0.03248498072581632 +2024-07-23 07:17:28.215 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 30/50, Train Loss: 0.04189585282334259, Val Loss: 0.03286519050598145 +2024-07-23 07:17:31.669 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 31/50, Train Loss: 0.04209829018052135, Val Loss: 0.031699385972959654 +2024-07-23 07:17:35.116 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 32/50, Train Loss: 0.04198708600763764, Val Loss: 0.03220725149980613 +2024-07-23 07:17:38.561 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 33/50, Train Loss: 0.04182325077376196, Val Loss: 0.03259876828108515 +2024-07-23 07:17:41.998 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 34/50, Train Loss: 0.04153968239469188, Val Loss: 0.03298519546432155 +2024-07-23 07:17:45.450 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 35/50, Train Loss: 0.041589845663734845, Val Loss: 0.03403290451637336 +2024-07-23 07:17:48.903 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 36/50, Train Loss: 0.04154360906354019, Val Loss: 0.032082649320364 +2024-07-23 07:17:52.326 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 37/50, Train Loss: 0.04191706587693521, Val Loss: 0.03434985897370747 +2024-07-23 07:17:55.759 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 38/50, Train Loss: 0.04197772863720144, Val Loss: 0.032175099583608764 +2024-07-23 07:17:59.178 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 39/50, Train Loss: 0.04217475046004568, Val Loss: 0.03258795780794961 +2024-07-23 07:18:02.607 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 40/50, Train Loss: 0.042217483770634445, Val Loss: 0.03310827554336616 +2024-07-23 07:18:06.062 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 41/50, Train Loss: 0.04175316768565348, Val Loss: 0.032966746389865874 +2024-07-23 07:18:09.488 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 42/50, Train Loss: 0.04167623272431748, Val Loss: 0.03263964695589883 +2024-07-23 07:18:12.929 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 43/50, Train Loss: 0.04228508451155254, Val Loss: 0.03214540848774569 +2024-07-23 07:18:16.453 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 44/50, Train Loss: 0.04211818336376122, Val Loss: 0.03270903325506619 +2024-07-23 07:18:19.863 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 45/50, Train Loss: 0.04192706575351102, Val Loss: 0.03284123337694577 +2024-07-23 07:18:23.305 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 46/50, Train Loss: 0.04201551947210516, Val Loss: 0.03275109673185008 +2024-07-23 07:18:26.738 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 47/50, Train Loss: 0.041803163449679104, Val Loss: 0.03474044640149389 +2024-07-23 07:18:30.176 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 48/50, Train Loss: 0.04166008622518608, Val Loss: 0.033958999227200234 +2024-07-23 07:18:33.599 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 49/50, Train Loss: 0.04176682691488947, Val Loss: 0.033440544243369785 +2024-07-23 07:18:37.032 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 50/50, Train Loss: 0.0417952660471201, Val Loss: 0.03238402312355382 +2024-07-23 07:18:37.033 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Fold 1, MAPE: 2.51% +2024-07-23 07:18:37.131 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_50001_100000_LSTM//train_f1_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-23 07:18:42.017 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 1/50, Train Loss: 0.03999104947209931, Val Loss: 0.05667202259813036 +2024-07-23 07:18:42.017 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:18:42.017 No tasks are waiting in the queue. +2024-07-23 07:18:42.017 4 steps have not started: model_scores, end, validate_model, log_model. +2024-07-23 07:18:46.877 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 2/50, Train Loss: 0.04224197752773762, Val Loss: 0.04672278027449336 +2024-07-23 07:18:51.713 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 3/50, Train Loss: 0.04127998148592619, Val Loss: 0.043641232645937375 +2024-07-23 07:18:56.563 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 4/50, Train Loss: 0.04097357793496205, Val Loss: 0.04222537912428379 +2024-07-23 07:19:01.444 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 5/50, Train Loss: 0.040515260538086295, Val Loss: 0.04180148978318487 +2024-07-23 07:19:06.312 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 6/50, Train Loss: 0.040484826223781474, Val Loss: 0.04058895244130067 +2024-07-23 07:19:11.189 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 7/50, Train Loss: 0.04029046647393933, Val Loss: 0.040947205520101955 +2024-07-23 07:19:16.082 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 8/50, Train Loss: 0.040415276415072955, Val Loss: 0.04176743440330029 +2024-07-23 07:19:20.925 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 9/50, Train Loss: 0.04037047585902306, Val Loss: 0.040759617888501715 +2024-07-23 07:19:25.779 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 10/50, Train Loss: 0.04045911496863342, Val Loss: 0.042348167566316465 +2024-07-23 07:19:30.712 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 11/50, Train Loss: 0.04030558477657346, Val Loss: 0.04120654415871416 +2024-07-23 07:19:35.581 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 12/50, Train Loss: 0.04023737938573154, Val Loss: 0.04126865666891847 +2024-07-23 07:19:40.430 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 13/50, Train Loss: 0.040302325828144185, Val Loss: 0.03995167948305607 +2024-07-23 07:19:45.292 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 14/50, Train Loss: 0.04049652603526528, Val Loss: 0.04088867200272424 +2024-07-23 07:19:50.160 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 15/50, Train Loss: 0.04028929470895001, Val Loss: 0.037848868540355136 +2024-07-23 07:19:55.022 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 16/50, Train Loss: 0.03914310915682178, Val Loss: 0.03859615517514092 +2024-07-23 07:19:59.861 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 17/50, Train Loss: 0.03924878052650736, Val Loss: 0.03820170616464955 +2024-07-23 07:20:04.742 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 18/50, Train Loss: 0.039582226801520355, Val Loss: 0.03881040284676211 +2024-07-23 07:20:09.601 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 19/50, Train Loss: 0.0393763582329624, Val Loss: 0.040224877638476236 +2024-07-23 07:20:14.460 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 20/50, Train Loss: 0.03983325487934053, Val Loss: 0.04158953492130552 +2024-07-23 07:20:19.294 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 21/50, Train Loss: 0.039672322965298705, Val Loss: 0.03821830009775502 +2024-07-23 07:20:24.200 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 22/50, Train Loss: 0.03929423931269692, Val Loss: 0.04127307928034237 +2024-07-23 07:20:29.031 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 23/50, Train Loss: 0.03972557636622626, Val Loss: 0.03858831822872162 +2024-07-23 07:20:33.879 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 24/50, Train Loss: 0.039325541171890036, Val Loss: 0.0404629148542881 +2024-07-23 07:20:38.720 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 25/50, Train Loss: 0.039689285591101416, Val Loss: 0.0392514592302697 +2024-07-23 07:20:43.585 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 26/50, Train Loss: 0.03964464645832777, Val Loss: 0.03951618634164333 +2024-07-23 07:20:48.431 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 27/50, Train Loss: 0.03970524923016246, Val Loss: 0.03896901894892965 +2024-07-23 07:20:53.301 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 28/50, Train Loss: 0.03969552480758956, Val Loss: 0.0406832680106163 +2024-07-23 07:20:58.144 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 29/50, Train Loss: 0.039449536975903005, Val Loss: 0.038912802987865036 +2024-07-23 07:21:02.997 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 30/50, Train Loss: 0.03957166483339209, Val Loss: 0.03806017275367465 +2024-07-23 07:21:07.848 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 31/50, Train Loss: 0.03933343946790466, Val Loss: 0.03946278196360384 +2024-07-23 07:21:12.668 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 32/50, Train Loss: 0.03977868899416465, Val Loss: 0.039598230432186805 +2024-07-23 07:21:17.559 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 33/50, Train Loss: 0.039565917426863544, Val Loss: 0.0384478112416608 +2024-07-23 07:21:22.377 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 34/50, Train Loss: 0.03971665331090872, Val Loss: 0.03931442089378834 +2024-07-23 07:21:27.234 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 35/50, Train Loss: 0.03946565612792396, Val Loss: 0.03890195632619517 +2024-07-23 07:21:32.048 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 36/50, Train Loss: 0.03946414208397842, Val Loss: 0.03884171763701098 +2024-07-23 07:21:36.891 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 37/50, Train Loss: 0.039252764240910225, Val Loss: 0.0394632383116654 +2024-07-23 07:21:41.744 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 38/50, Train Loss: 0.03961159962301071, Val Loss: 0.03980131138648305 +2024-07-23 07:21:46.584 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 39/50, Train Loss: 0.03959085124258239, Val Loss: 0.038786617506827624 +2024-07-23 07:21:51.436 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 40/50, Train Loss: 0.03957259217993571, Val Loss: 0.03921829398189272 +2024-07-23 07:21:56.274 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 41/50, Train Loss: 0.03958618904177386, Val Loss: 0.03898273573390075 +2024-07-23 07:22:01.128 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 42/50, Train Loss: 0.03935279770610997, Val Loss: 0.03857599768255438 +2024-07-23 07:22:05.975 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 43/50, Train Loss: 0.039560684361136876, Val Loss: 0.038022745241011895 +2024-07-23 07:22:10.805 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 44/50, Train Loss: 0.03935702388676313, Val Loss: 0.03805360112871443 +2024-07-23 07:22:15.656 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 45/50, Train Loss: 0.03933999936382931, Val Loss: 0.038671087792941504 +2024-07-23 07:22:20.506 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 46/50, Train Loss: 0.03957470355985256, Val Loss: 0.03819537189389978 +2024-07-23 07:22:25.357 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 47/50, Train Loss: 0.03952096676668869, Val Loss: 0.03687641482268061 +2024-07-23 07:22:30.238 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 48/50, Train Loss: 0.03948675687066638, Val Loss: 0.03718815791819777 +2024-07-23 07:22:35.088 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 49/50, Train Loss: 0.03956419548306327, Val Loss: 0.03690657631627151 +2024-07-23 07:22:39.953 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 50/50, Train Loss: 0.0393842698719639, Val Loss: 0.03729979044624737 +2024-07-23 07:22:39.953 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Fold 2, MAPE: 2.86% +2024-07-23 07:22:40.051 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_50001_100000_LSTM//train_f2_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-23 07:22:46.370 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 1/50, Train Loss: 0.035735916198907994, Val Loss: 0.04062034775103841 +2024-07-23 07:22:52.695 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 2/50, Train Loss: 0.03469993270558419, Val Loss: 0.03965780447636332 +2024-07-23 07:22:59.023 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 3/50, Train Loss: 0.034592931044937894, Val Loss: 0.04128070154360362 +2024-07-23 07:23:05.400 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 4/50, Train Loss: 0.03481738704839628, Val Loss: 0.039783144901905744 +2024-07-23 07:23:11.753 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 5/50, Train Loss: 0.034554852990152166, Val Loss: 0.041232044249773024 +2024-07-23 07:23:18.076 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 6/50, Train Loss: 0.03472051082058347, Val Loss: 0.04038953371345997 +2024-07-23 07:23:24.405 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 7/50, Train Loss: 0.03454672432631897, Val Loss: 0.03920383346932275 +2024-07-23 07:23:30.741 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 8/50, Train Loss: 0.03443403432159115, Val Loss: 0.039217821827956606 +2024-07-23 07:23:37.061 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 9/50, Train Loss: 0.03463114944132541, Val Loss: 0.03967319125575679 +2024-07-23 07:23:43.387 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 10/50, Train Loss: 0.03442414703933026, Val Loss: 0.04033875167369842 +2024-07-23 07:23:43.387 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:23:43.387 No tasks are waiting in the queue. +2024-07-23 07:23:43.387 4 steps have not started: model_scores, end, validate_model, log_model. +2024-07-23 07:23:49.718 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 11/50, Train Loss: 0.03451136200816082, Val Loss: 0.03973467200994492 +2024-07-23 07:23:56.038 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 12/50, Train Loss: 0.03437687626791944, Val Loss: 0.0387929167598486 +2024-07-23 07:24:02.370 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 13/50, Train Loss: 0.03425083672560805, Val Loss: 0.03954245719526495 +2024-07-23 07:24:08.735 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 14/50, Train Loss: 0.034260008108916044, Val Loss: 0.03915123492479324 +2024-07-23 07:24:15.097 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 15/50, Train Loss: 0.03432152475223696, Val Loss: 0.039289730787277224 +2024-07-23 07:24:21.445 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 16/50, Train Loss: 0.03431841516666275, Val Loss: 0.03879785585616316 +2024-07-23 07:24:27.760 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 17/50, Train Loss: 0.03414159789413428, Val Loss: 0.03930940808994429 +2024-07-23 07:24:34.131 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 18/50, Train Loss: 0.03420689739554906, Val Loss: 0.03886303172579834 +2024-07-23 07:24:40.468 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 19/50, Train Loss: 0.034218077125737996, Val Loss: 0.039634050961051666 +2024-07-23 07:24:46.817 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 20/50, Train Loss: 0.03409014178587378, Val Loss: 0.03916365387184279 +2024-07-23 07:24:53.150 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 21/50, Train Loss: 0.034267397852038306, Val Loss: 0.03948307755802359 +2024-07-23 07:24:59.498 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 22/50, Train Loss: 0.034170066508993825, Val Loss: 0.03936774347509656 +2024-07-23 07:25:05.848 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 23/50, Train Loss: 0.034186119401304844, Val Loss: 0.039788228433047024 +2024-07-23 07:25:12.192 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 24/50, Train Loss: 0.03410456884357569, Val Loss: 0.039180368717227666 +2024-07-23 07:25:18.569 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 25/50, Train Loss: 0.03405116029458938, Val Loss: 0.039117417058774404 +2024-07-23 07:25:24.938 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 26/50, Train Loss: 0.03413213165007907, Val Loss: 0.03890638292900154 +2024-07-23 07:25:31.269 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 27/50, Train Loss: 0.03385767873993023, Val Loss: 0.039698680596692223 +2024-07-23 07:25:37.601 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 28/50, Train Loss: 0.03395722369603116, Val Loss: 0.03949299539838518 +2024-07-23 07:25:43.956 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 29/50, Train Loss: 0.033851955903412626, Val Loss: 0.03940283762557166 +2024-07-23 07:25:50.318 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 30/50, Train Loss: 0.03399487964058523, Val Loss: 0.03879292463617665 +2024-07-23 07:25:56.652 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 31/50, Train Loss: 0.033864377160295306, Val Loss: 0.03914998642035893 +2024-07-23 07:26:02.996 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 32/50, Train Loss: 0.03391060298777741, Val Loss: 0.03885069760893072 +2024-07-23 07:26:09.317 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 33/50, Train Loss: 0.03404170899189633, Val Loss: 0.03961064671831471 +2024-07-23 07:26:15.701 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 34/50, Train Loss: 0.0339218291902928, Val Loss: 0.03872655922813075 +2024-07-23 07:26:22.034 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 35/50, Train Loss: 0.033961810774618774, Val Loss: 0.03825496302119323 +2024-07-23 07:26:28.401 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 36/50, Train Loss: 0.03377706005418901, Val Loss: 0.038413654267787936 +2024-07-23 07:26:34.745 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 37/50, Train Loss: 0.03362883072641256, Val Loss: 0.039049603044986725 +2024-07-23 07:26:41.093 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 38/50, Train Loss: 0.03391023478705248, Val Loss: 0.03849626077072961 +2024-07-23 07:26:47.468 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 39/50, Train Loss: 0.03380456615051777, Val Loss: 0.03848233228283269 +2024-07-23 07:26:53.806 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 40/50, Train Loss: 0.033561867735475946, Val Loss: 0.03891541313912187 +2024-07-23 07:27:00.146 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 41/50, Train Loss: 0.03374656978592598, Val Loss: 0.03889631762036255 +2024-07-23 07:27:06.520 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 42/50, Train Loss: 0.03391474733303348, Val Loss: 0.03870575699423041 +2024-07-23 07:27:12.865 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 43/50, Train Loss: 0.033738150093838466, Val Loss: 0.038220189884305 +2024-07-23 07:27:19.244 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 44/50, Train Loss: 0.03364822342187809, Val Loss: 0.038426951106105535 +2024-07-23 07:27:25.589 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 45/50, Train Loss: 0.03372636724183028, Val Loss: 0.03825807752353805 +2024-07-23 07:27:31.964 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 46/50, Train Loss: 0.03355597219557213, Val Loss: 0.03899875778172698 +2024-07-23 07:27:38.315 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 47/50, Train Loss: 0.03368073352110043, Val Loss: 0.03795532014753137 +2024-07-23 07:27:44.685 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 48/50, Train Loss: 0.033457818675598654, Val Loss: 0.03818686551281384 +2024-07-23 07:27:51.022 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 49/50, Train Loss: 0.03350184711781766, Val Loss: 0.038216632870691165 +2024-07-23 07:27:57.377 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 50/50, Train Loss: 0.03353530346757645, Val Loss: 0.037599005656582966 +2024-07-23 07:27:57.377 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Fold 3, MAPE: 2.98% +2024-07-23 07:27:57.476 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_50001_100000_LSTM//train_f3_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-23 07:28:05.361 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 1/50, Train Loss: 0.034533843740649606, Val Loss: 0.03834984589900289 +2024-07-23 07:28:13.169 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 2/50, Train Loss: 0.034979950315479576, Val Loss: 0.041529558120029314 +2024-07-23 07:28:21.111 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 3/50, Train Loss: 0.034577788902853415, Val Loss: 0.041081816170896804 +2024-07-23 07:28:28.910 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 4/50, Train Loss: 0.034548136373532226, Val Loss: 0.040841008243816236 +2024-07-23 07:28:36.689 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 5/50, Train Loss: 0.0341578752508965, Val Loss: 0.039865072869828766 +2024-07-23 07:28:44.538 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 6/50, Train Loss: 0.034119196204019, Val Loss: 0.04006996974349022 +2024-07-23 07:28:44.538 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:28:44.538 No tasks are waiting in the queue. +2024-07-23 07:28:44.538 4 steps have not started: model_scores, end, validate_model, log_model. +2024-07-23 07:28:52.350 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 7/50, Train Loss: 0.034202446914866735, Val Loss: 0.038177741106067385 +2024-07-23 07:29:00.150 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 8/50, Train Loss: 0.03399103492412759, Val Loss: 0.039044147729873656 +2024-07-23 07:29:08.011 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 9/50, Train Loss: 0.034078275399475264, Val Loss: 0.03796936294862202 +2024-07-23 07:29:15.860 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 10/50, Train Loss: 0.034309028658544884, Val Loss: 0.04116228957261358 +2024-07-23 07:29:23.642 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 11/50, Train Loss: 0.03412340188548825, Val Loss: 0.03983228116163186 +2024-07-23 07:29:31.462 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 12/50, Train Loss: 0.03396589611924585, Val Loss: 0.0390600497169154 +2024-07-23 07:29:39.281 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 13/50, Train Loss: 0.03382282114277283, Val Loss: 0.03873604424297809 +2024-07-23 07:29:47.097 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 14/50, Train Loss: 0.0339578619847695, Val Loss: 0.03896280575011458 +2024-07-23 07:29:54.938 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 15/50, Train Loss: 0.03404149213998482, Val Loss: 0.039524325409105845 +2024-07-23 07:30:02.746 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 16/50, Train Loss: 0.03405340580034188, Val Loss: 0.03997027522751263 +2024-07-23 07:30:10.547 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 17/50, Train Loss: 0.03392398639999587, Val Loss: 0.03861089577632291 +2024-07-23 07:30:18.387 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 18/50, Train Loss: 0.03388285890606971, Val Loss: 0.04048781490751675 +2024-07-23 07:30:26.225 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 19/50, Train Loss: 0.03370605074083326, Val Loss: 0.0381606004600014 +2024-07-23 07:30:34.045 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 20/50, Train Loss: 0.033666894781863556, Val Loss: 0.03873705438205174 +2024-07-23 07:30:41.816 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 21/50, Train Loss: 0.033810725778170014, Val Loss: 0.04005808436444828 +2024-07-23 07:30:49.667 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 22/50, Train Loss: 0.03375965512047211, Val Loss: 0.039110267162323 +2024-07-23 07:30:57.474 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 23/50, Train Loss: 0.033774605202863274, Val Loss: 0.03875488213130406 +2024-07-23 07:31:05.286 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 24/50, Train Loss: 0.03382835286701548, Val Loss: 0.0411932926092829 +2024-07-23 07:31:13.121 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 25/50, Train Loss: 0.03385223891457607, Val Loss: 0.03865375678454127 +2024-07-23 07:31:20.953 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 26/50, Train Loss: 0.033717282962096834, Val Loss: 0.040316597159419744 +2024-07-23 07:31:28.791 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 27/50, Train Loss: 0.03370948328540243, Val Loss: 0.04083778240850994 +2024-07-23 07:31:36.600 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 28/50, Train Loss: 0.03382555595545591, Val Loss: 0.03997183505977903 +2024-07-23 07:31:44.430 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 29/50, Train Loss: 0.03367903047166337, Val Loss: 0.041480840423277446 +2024-07-23 07:31:52.299 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 30/50, Train Loss: 0.03406897460206829, Val Loss: 0.04233342174972807 +2024-07-23 07:32:00.171 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 31/50, Train Loss: 0.03397356167478466, Val Loss: 0.04051063156553677 +2024-07-23 07:32:08.038 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 32/50, Train Loss: 0.03374784421603912, Val Loss: 0.040040420527969085 +2024-07-23 07:32:15.870 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 33/50, Train Loss: 0.03372062644225427, Val Loss: 0.0423105061586414 +2024-07-23 07:32:23.644 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 34/50, Train Loss: 0.03401098893848301, Val Loss: 0.04188990092703274 +2024-07-23 07:32:31.473 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 35/50, Train Loss: 0.03392483651552392, Val Loss: 0.042156935163906645 +2024-07-23 07:32:39.272 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 36/50, Train Loss: 0.03369544036472323, Val Loss: 0.03942990239177432 +2024-07-23 07:32:47.094 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 37/50, Train Loss: 0.033490302565710985, Val Loss: 0.039179020800760814 +2024-07-23 07:32:54.929 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 38/50, Train Loss: 0.033659130227805555, Val Loss: 0.04242907650768757 +2024-07-23 07:33:02.744 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 39/50, Train Loss: 0.03404088648057532, Val Loss: 0.040324268490076066 +2024-07-23 07:33:10.570 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 40/50, Train Loss: 0.03378288745451933, Val Loss: 0.04248502616371427 +2024-07-23 07:33:18.407 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 41/50, Train Loss: 0.03400697974466729, Val Loss: 0.041762004047632216 +2024-07-23 07:33:26.234 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 42/50, Train Loss: 0.03413247112612957, Val Loss: 0.04267200518931661 +2024-07-23 07:33:34.033 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 43/50, Train Loss: 0.03400605687892985, Val Loss: 0.04228537061384746 +2024-07-23 07:33:41.836 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 44/50, Train Loss: 0.0336862174558571, Val Loss: 0.04154054394790104 +2024-07-23 07:33:49.640 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 45/50, Train Loss: 0.03371287769927033, Val Loss: 0.043151364262614934 +2024-07-23 07:33:49.640 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:33:49.640 No tasks are waiting in the queue. +2024-07-23 07:33:49.640 4 steps have not started: model_scores, end, validate_model, log_model. +2024-07-23 07:33:57.491 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 46/50, Train Loss: 0.03362578099015458, Val Loss: 0.04114578297095639 +2024-07-23 07:34:05.320 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 47/50, Train Loss: 0.033374439111386225, Val Loss: 0.038651440026504655 +2024-07-23 07:34:13.196 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 48/50, Train Loss: 0.03312824193345404, Val Loss: 0.0392499778419733 +2024-07-23 07:34:21.017 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 49/50, Train Loss: 0.033221449820731566, Val Loss: 0.03922071818794523 +2024-07-23 07:34:28.837 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 50/50, Train Loss: 0.033182994655237115, Val Loss: 0.03920293801597186 +2024-07-23 07:34:28.837 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Fold 4, MAPE: 2.87% +2024-07-23 07:34:28.945 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_50001_100000_LSTM//train_f4_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-23 07:34:33.426 [55/cross_validate_train/597 (pid 92359)] Task finished successfully. +2024-07-23 07:34:33.457 [55/model_scores/598 (pid 97031)] Task is starting. +2024-07-23 07:34:34.961 [55/model_scores/598 (pid 97031)] INFO:__main__:Average Train Loss across all folds: 0.03899641260048573 +2024-07-23 07:34:38.862 [55/model_scores/598 (pid 97031)] INFO:__main__:Average Validation Loss across all folds: 0.038611103115337234 +2024-07-23 07:34:38.862 [55/model_scores/598 (pid 97031)] INFO:__main__:Average MAPE across all folds: 2.90% +2024-07-23 07:34:38.863 [55/model_scores/598 (pid 97031)] Task finished successfully. +2024-07-23 07:34:38.888 [55/validate_model/599 (pid 97062)] Task is starting. +2024-07-23 07:34:40.374 [55/validate_model/599 (pid 97062)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 07:34:41.173 [55/validate_model/599 (pid 97062)] INFO:__main__:Test Set MAPE: 5.12% +2024-07-23 07:34:41.539 [55/validate_model/599 (pid 97062)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_lodging_residential_50001_100000_LSTM//test_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-23 07:34:41.969 [55/validate_model/599 (pid 97062)] Task finished successfully. +2024-07-23 07:34:41.997 [55/log_model/600 (pid 97075)] Task is starting. +2024-07-23 07:34:43.482 [55/log_model/600 (pid 97075)] INFO:__main__:Logging model bgd_lodging_residential_50001_100000_LSTM +2024-07-23 07:34:43.483 [55/log_model/600 (pid 97075)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_lodging_residential_50001_100000_LSTM//bgd_lodging_residential_50001_100000_LSTM.pth +2024-07-23 07:34:47.436 [55/log_model/600 (pid 97075)] Task finished successfully. +2024-07-23 07:34:47.463 [55/end/601 (pid 97107)] Task is starting. +2024-07-23 07:34:48.907 [55/end/601 (pid 97107)] INFO:__main__:Pipeline end. +2024-07-23 07:34:49.224 [55/end/601 (pid 97107)] Task finished successfully. +2024-07-23 07:34:49.224 Done! +✅ Run('BGD_LinearFlow/55') succeeded: +-- stdout -- +2024-07-23 07:13:39.133 Workflow starting (run-id 55): +2024-07-23 07:13:39.201 [55/start/589 (pid 92211)] Task is starting. +2024-07-23 07:13:40.676 [55/start/589 (pid 92211)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 07:13:40.966 [55/start/589 (pid 92211)] Task finished successfully. +2024-07-23 07:13:40.995 [55/ingest/590 (pid 92224)] Task is starting. +2024-07-23 07:13:42.478 [55/ingest/590 (pid 92224)] INFO:__main__:Fetching dataframe.. +2024-07-23 07:13:42.502 [55/ingest/590 (pid 92224)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 07:13:46.353 [55/ingest/590 (pid 92224)] Task finished successfully. +2024-07-23 07:13:46.387 [55/pick_2017_data/591 (pid 92255)] Task is starting. +2024-07-23 07:13:47.864 [55/pick_2017_data/591 (pid 92255)] INFO:__main__:Picking 2017 data.. +2024-07-23 07:13:48.186 [55/pick_2017_data/591 (pid 92255)] Task finished successfully. +2024-07-23 07:13:48.217 [55/fill_missing_data/592 (pid 92266)] Task is starting. +2024-07-23 07:13:49.695 [55/fill_missing_data/592 (pid 92266)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] INFO:__main__:NaN counts per column: +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] INFO:__main__:Panther_lodging_Edison 11 +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Awilda 12 +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Gale 11 +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Cornelia 11 +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Alita 11 +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Sonja 12 +2024-07-23 07:13:49.707 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Kaitlin 12 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Edmond 11 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Panther_lodging_Tracie 11 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Robin_lodging_Celia 0 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Fox_lodging_Wallace 1 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Fox_lodging_Alana 1 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Fox_lodging_Winifred 1 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Bear_lodging_Erick 38 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Cockatoo_lodging_Raphael 113 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Cockatoo_lodging_Josephine 121 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] dtype: int64 +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] --- Logging error --- +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] Traceback (most recent call last): +2024-07-23 07:13:49.708 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] msg = self.format(record) +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] return fmt.format(record) +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] record.message = record.getMessage() +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] msg = msg % self.args +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] TypeError: not all arguments converted during string formatting +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] Call stack: +2024-07-23 07:13:49.709 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] BGD_LinearFlow() +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] cli.main(self) +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] return func(*args, **kwargs) +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] return self.main(*args, **kwargs) +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] rv = self.invoke(ctx) +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 07:13:50.264 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] return callback(*args, **kwargs) +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] return f(get_current_context(), *args, **kwargs) +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] task.run_step( +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] self._exec_step_function(step_func) +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] step_function() +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] self.missing_values = find_nan_counts(self.df) +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 07:13:50.265 [55/fill_missing_data/592 (pid 92266)] Arguments: (377,) +2024-07-23 07:13:50.266 [55/fill_missing_data/592 (pid 92266)] Task finished successfully. +2024-07-23 07:13:50.298 [55/find_median/593 (pid 92278)] Task is starting. +2024-07-23 07:13:51.743 [55/find_median/593 (pid 92278)] INFO:__main__:Computing and using median.. +2024-07-23 07:13:52.250 [55/find_median/593 (pid 92278)] Task finished successfully. +2024-07-23 07:13:52.279 [55/aggregate_data/594 (pid 92291)] Task is starting. +2024-07-23 07:13:53.782 [55/aggregate_data/594 (pid 92291)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 07:13:57.623 [55/aggregate_data/594 (pid 92291)] Task finished successfully. +2024-07-23 07:13:57.655 [55/split_data/595 (pid 92315)] Task is starting. +2024-07-23 07:13:59.167 [55/split_data/595 (pid 92315)] INFO:__main__:Splitting data into test and train... +2024-07-23 07:14:03.009 [55/split_data/595 (pid 92315)] Task finished successfully. +2024-07-23 07:14:03.039 [55/make_x_y/596 (pid 92348)] Task is starting. +2024-07-23 07:14:04.851 [55/make_x_y/596 (pid 92348)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 07:14:05.252 [55/make_x_y/596 (pid 92348)] Shape of y_train: (6648, 1) +2024-07-23 07:14:05.252 [55/make_x_y/596 (pid 92348)] Shape of X_test: (1392, 360, 1) +2024-07-23 07:14:05.252 [55/make_x_y/596 (pid 92348)] Shape of y_test: (1392, 1) +2024-07-23 07:14:05.253 [55/make_x_y/596 (pid 92348)] Task finished successfully. +2024-07-23 07:14:05.283 [55/cross_validate_train/597 (pid 92359)] Task is starting. +2024-07-23 07:14:06.730 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Creating bgd_lodging_residential_50001_100000_LSTM +2024-07-23 07:14:06.731 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Performing cross validation.. +2024-07-23 07:14:09.219 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 1/50, Train Loss: 0.2750466140253203, Val Loss: 0.16362840575831278 +2024-07-23 07:14:11.125 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 2/50, Train Loss: 0.15992521068879537, Val Loss: 0.16075990008456367 +2024-07-23 07:14:13.028 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 3/50, Train Loss: 0.15811555108853748, Val Loss: 0.1554612274680819 +2024-07-23 07:14:14.995 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 4/50, Train Loss: 0.15371661526816233, Val Loss: 0.14480336265904561 +2024-07-23 07:14:16.903 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 5/50, Train Loss: 0.14522296605365617, Val Loss: 0.13705410041979382 +2024-07-23 07:14:18.811 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 6/50, Train Loss: 0.13227508334176882, Val Loss: 0.12325920122010367 +2024-07-23 07:14:20.757 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 7/50, Train Loss: 0.10334023290446827, Val Loss: 0.09234401008912495 +2024-07-23 07:14:22.682 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 8/50, Train Loss: 0.09104892856308393, Val Loss: 0.09008497042315347 +2024-07-23 07:14:24.633 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 9/50, Train Loss: 0.08962301281946046, Val Loss: 0.07982259392738342 +2024-07-23 07:14:26.562 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 10/50, Train Loss: 0.08202612314905439, Val Loss: 0.08155338391661644 +2024-07-23 07:14:28.492 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 11/50, Train Loss: 0.07796468010970524, Val Loss: 0.0850327838744436 +2024-07-23 07:14:30.445 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 12/50, Train Loss: 0.07778605318495206, Val Loss: 0.08653087530817305 +2024-07-23 07:14:32.381 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 13/50, Train Loss: 0.07889100323830332, Val Loss: 0.08941621567521776 +2024-07-23 07:14:34.348 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 14/50, Train Loss: 0.08200886451772281, Val Loss: 0.08793579606073243 +2024-07-23 07:14:36.293 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 15/50, Train Loss: 0.08232505491801671, Val Loss: 0.08738569329891886 +2024-07-23 07:14:38.230 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 16/50, Train Loss: 0.08289678139345986, Val Loss: 0.08510395927088601 +2024-07-23 07:14:40.181 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 17/50, Train Loss: 0.08126851618289947, Val Loss: 0.08295342262302126 +2024-07-23 07:14:42.112 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 18/50, Train Loss: 0.07875788775937898, Val Loss: 0.08058426869767053 +2024-07-23 07:14:44.063 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 19/50, Train Loss: 0.07744617898549352, Val Loss: 0.08049337746841567 +2024-07-23 07:14:45.999 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 20/50, Train Loss: 0.07658539382474763, Val Loss: 0.07993021990571703 +2024-07-23 07:14:47.968 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 21/50, Train Loss: 0.07639714788113322, Val Loss: 0.07767619799290384 +2024-07-23 07:14:49.920 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 22/50, Train Loss: 0.07518594892961639, Val Loss: 0.07790539850081717 +2024-07-23 07:14:51.867 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 23/50, Train Loss: 0.07411189824342727, Val Loss: 0.07660761028528214 +2024-07-23 07:14:53.826 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 24/50, Train Loss: 0.0733119907123702, Val Loss: 0.07606589166181428 +2024-07-23 07:14:55.769 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 25/50, Train Loss: 0.07250848774399077, Val Loss: 0.0754816720528262 +2024-07-23 07:14:57.708 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 26/50, Train Loss: 0.07144135417682784, Val Loss: 0.07284349777868816 +2024-07-23 07:14:59.638 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 27/50, Train Loss: 0.07064350034509387, Val Loss: 0.07286941951939038 +2024-07-23 07:15:01.593 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 28/50, Train Loss: 0.06991787563477243, Val Loss: 0.07255158509526934 +2024-07-23 07:15:03.537 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 29/50, Train Loss: 0.06902735946433884, Val Loss: 0.07130632145064218 +2024-07-23 07:15:05.512 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 30/50, Train Loss: 0.06759285383990833, Val Loss: 0.07315950255308833 +2024-07-23 07:15:07.460 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 31/50, Train Loss: 0.06764282690627234, Val Loss: 0.07508367778999465 +2024-07-23 07:15:09.408 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 32/50, Train Loss: 0.06736527500408036, Val Loss: 0.0736490969147001 +2024-07-23 07:15:11.374 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 33/50, Train Loss: 0.06639431757586343, Val Loss: 0.07343398470963751 +2024-07-23 07:15:13.326 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 34/50, Train Loss: 0.06591901459864208, Val Loss: 0.07315922336918967 +2024-07-23 07:15:15.307 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 35/50, Train Loss: 0.06541633776256016, Val Loss: 0.07243496552109718 +2024-07-23 07:15:17.254 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 36/50, Train Loss: 0.06433684570448739, Val Loss: 0.0696635365486145 +2024-07-23 07:15:19.193 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 37/50, Train Loss: 0.06239504643848964, Val Loss: 0.06731068864464759 +2024-07-23 07:15:21.178 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 38/50, Train Loss: 0.060275290374244964, Val Loss: 0.06664508708885737 +2024-07-23 07:15:23.120 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 39/50, Train Loss: 0.0590494735964707, Val Loss: 0.06365312848772321 +2024-07-23 07:15:25.068 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 40/50, Train Loss: 0.0577707653599126, Val Loss: 0.06136795431375504 +2024-07-23 07:15:27.016 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 41/50, Train Loss: 0.05595525545733315, Val Loss: 0.057803935664040705 +2024-07-23 07:15:28.962 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 42/50, Train Loss: 0.054129798178161895, Val Loss: 0.05579403904931886 +2024-07-23 07:15:30.905 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 43/50, Train Loss: 0.052800829708576205, Val Loss: 0.053313959922109334 +2024-07-23 07:15:32.866 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 44/50, Train Loss: 0.05132472664117813, Val Loss: 0.05090291808758463 +2024-07-23 07:15:34.840 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 45/50, Train Loss: 0.0499338122350829, Val Loss: 0.047927499136754446 +2024-07-23 07:15:36.791 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 46/50, Train Loss: 0.04869845137000084, Val Loss: 0.047382100032908575 +2024-07-23 07:15:38.751 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 47/50, Train Loss: 0.04832937424736364, Val Loss: 0.047387714684009555 +2024-07-23 07:15:40.727 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 48/50, Train Loss: 0.048205624307904926, Val Loss: 0.0466770595737866 +2024-07-23 07:15:42.687 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 49/50, Train Loss: 0.04797225562589509, Val Loss: 0.04615028617637498 +2024-07-23 07:15:44.676 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 50/50, Train Loss: 0.0470842289605311, Val Loss: 0.04656975833433015 +2024-07-23 07:15:44.676 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Fold 0, MAPE: 3.28% +2024-07-23 07:15:44.973 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_50001_100000_LSTM//train_f0_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-23 07:15:48.486 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 1/50, Train Loss: 0.04869660181658608, Val Loss: 0.041496424110872406 +2024-07-23 07:15:51.960 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 2/50, Train Loss: 0.04582382690693651, Val Loss: 0.04150276216013091 +2024-07-23 07:15:55.402 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 3/50, Train Loss: 0.045390153011041025, Val Loss: 0.03992212776626859 +2024-07-23 07:15:58.833 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 4/50, Train Loss: 0.044583247814859665, Val Loss: 0.04197603166103363 +2024-07-23 07:16:02.275 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 5/50, Train Loss: 0.044702463410794736, Val Loss: 0.03557260584618364 +2024-07-23 07:16:05.720 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 6/50, Train Loss: 0.044072818064263886, Val Loss: 0.038012756354042464 +2024-07-23 07:16:09.150 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 7/50, Train Loss: 0.04430443487529244, Val Loss: 0.03516907984656947 +2024-07-23 07:16:12.602 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 8/50, Train Loss: 0.04321833944746426, Val Loss: 0.03696128337510995 +2024-07-23 07:16:16.034 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 9/50, Train Loss: 0.04333611787962062, Val Loss: 0.03652564329760415 +2024-07-23 07:16:19.453 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 10/50, Train Loss: 0.04343703540840319, Val Loss: 0.03564535879663059 +2024-07-23 07:16:22.887 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 11/50, Train Loss: 0.043403810528772215, Val Loss: 0.03295802814619882 +2024-07-23 07:16:26.341 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 12/50, Train Loss: 0.04276345071515867, Val Loss: 0.03491480728345258 +2024-07-23 07:16:29.750 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 13/50, Train Loss: 0.042584201720144065, Val Loss: 0.03408498279750347 +2024-07-23 07:16:33.171 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 14/50, Train Loss: 0.04277947212436369, Val Loss: 0.03417398567710604 +2024-07-23 07:16:36.603 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 15/50, Train Loss: 0.04236290598554271, Val Loss: 0.034020764167819705 +2024-07-23 07:16:40.032 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 16/50, Train Loss: 0.04229321950780494, Val Loss: 0.03341976249856608 +2024-07-23 07:16:43.471 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 17/50, Train Loss: 0.04246496188321284, Val Loss: 0.032083142602017944 +2024-07-23 07:16:46.893 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 18/50, Train Loss: 0.04224628923194749, Val Loss: 0.03319616551910128 +2024-07-23 07:16:50.343 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 19/50, Train Loss: 0.04224669691175222, Val Loss: 0.03528997333986419 +2024-07-23 07:16:53.790 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 20/50, Train Loss: 0.04186601018799203, Val Loss: 0.03198297992348671 +2024-07-23 07:16:57.204 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 21/50, Train Loss: 0.042464722879230976, Val Loss: 0.03226982019841671 +2024-07-23 07:17:00.684 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 22/50, Train Loss: 0.04220309060599123, Val Loss: 0.032202287444046566 +2024-07-23 07:17:04.132 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 23/50, Train Loss: 0.04249962342104741, Val Loss: 0.032638993806072644 +2024-07-23 07:17:07.568 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 24/50, Train Loss: 0.04212029741278717, Val Loss: 0.03251329607197217 +2024-07-23 07:17:11.008 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 25/50, Train Loss: 0.042476151271590164, Val Loss: 0.032477918905871254 +2024-07-23 07:17:14.458 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 26/50, Train Loss: 0.04228098605360304, Val Loss: 0.03440133817493916 +2024-07-23 07:17:17.910 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 27/50, Train Loss: 0.04211397743118661, Val Loss: 0.033624088604535377 +2024-07-23 07:17:21.343 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 28/50, Train Loss: 0.04165830944797822, Val Loss: 0.03378232238548143 +2024-07-23 07:17:24.791 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 29/50, Train Loss: 0.041891965669180665, Val Loss: 0.03248498072581632 +2024-07-23 07:17:28.215 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 30/50, Train Loss: 0.04189585282334259, Val Loss: 0.03286519050598145 +2024-07-23 07:17:31.669 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 31/50, Train Loss: 0.04209829018052135, Val Loss: 0.031699385972959654 +2024-07-23 07:17:35.116 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 32/50, Train Loss: 0.04198708600763764, Val Loss: 0.03220725149980613 +2024-07-23 07:17:38.561 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 33/50, Train Loss: 0.04182325077376196, Val Loss: 0.03259876828108515 +2024-07-23 07:17:41.998 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 34/50, Train Loss: 0.04153968239469188, Val Loss: 0.03298519546432155 +2024-07-23 07:17:45.450 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 35/50, Train Loss: 0.041589845663734845, Val Loss: 0.03403290451637336 +2024-07-23 07:17:48.903 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 36/50, Train Loss: 0.04154360906354019, Val Loss: 0.032082649320364 +2024-07-23 07:17:52.326 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 37/50, Train Loss: 0.04191706587693521, Val Loss: 0.03434985897370747 +2024-07-23 07:17:55.759 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 38/50, Train Loss: 0.04197772863720144, Val Loss: 0.032175099583608764 +2024-07-23 07:17:59.178 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 39/50, Train Loss: 0.04217475046004568, Val Loss: 0.03258795780794961 +2024-07-23 07:18:02.607 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 40/50, Train Loss: 0.042217483770634445, Val Loss: 0.03310827554336616 +2024-07-23 07:18:06.062 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 41/50, Train Loss: 0.04175316768565348, Val Loss: 0.032966746389865874 +2024-07-23 07:18:09.488 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 42/50, Train Loss: 0.04167623272431748, Val Loss: 0.03263964695589883 +2024-07-23 07:18:12.929 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 43/50, Train Loss: 0.04228508451155254, Val Loss: 0.03214540848774569 +2024-07-23 07:18:16.453 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 44/50, Train Loss: 0.04211818336376122, Val Loss: 0.03270903325506619 +2024-07-23 07:18:19.863 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 45/50, Train Loss: 0.04192706575351102, Val Loss: 0.03284123337694577 +2024-07-23 07:18:23.305 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 46/50, Train Loss: 0.04201551947210516, Val Loss: 0.03275109673185008 +2024-07-23 07:18:26.738 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 47/50, Train Loss: 0.041803163449679104, Val Loss: 0.03474044640149389 +2024-07-23 07:18:30.176 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 48/50, Train Loss: 0.04166008622518608, Val Loss: 0.033958999227200234 +2024-07-23 07:18:33.599 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 49/50, Train Loss: 0.04176682691488947, Val Loss: 0.033440544243369785 +2024-07-23 07:18:37.032 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 50/50, Train Loss: 0.0417952660471201, Val Loss: 0.03238402312355382 +2024-07-23 07:18:37.033 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Fold 1, MAPE: 2.51% +2024-07-23 07:18:37.131 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_50001_100000_LSTM//train_f1_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-23 07:18:42.017 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 1/50, Train Loss: 0.03999104947209931, Val Loss: 0.05667202259813036 +2024-07-23 07:18:42.017 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:18:42.017 No tasks are waiting in the queue. +2024-07-23 07:18:42.017 4 steps have not started: model_scores, end, validate_model, log_model. +2024-07-23 07:18:46.877 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 2/50, Train Loss: 0.04224197752773762, Val Loss: 0.04672278027449336 +2024-07-23 07:18:51.713 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 3/50, Train Loss: 0.04127998148592619, Val Loss: 0.043641232645937375 +2024-07-23 07:18:56.563 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 4/50, Train Loss: 0.04097357793496205, Val Loss: 0.04222537912428379 +2024-07-23 07:19:01.444 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 5/50, Train Loss: 0.040515260538086295, Val Loss: 0.04180148978318487 +2024-07-23 07:19:06.312 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 6/50, Train Loss: 0.040484826223781474, Val Loss: 0.04058895244130067 +2024-07-23 07:19:11.189 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 7/50, Train Loss: 0.04029046647393933, Val Loss: 0.040947205520101955 +2024-07-23 07:19:16.082 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 8/50, Train Loss: 0.040415276415072955, Val Loss: 0.04176743440330029 +2024-07-23 07:19:20.925 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 9/50, Train Loss: 0.04037047585902306, Val Loss: 0.040759617888501715 +2024-07-23 07:19:25.779 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 10/50, Train Loss: 0.04045911496863342, Val Loss: 0.042348167566316465 +2024-07-23 07:19:30.712 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 11/50, Train Loss: 0.04030558477657346, Val Loss: 0.04120654415871416 +2024-07-23 07:19:35.581 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 12/50, Train Loss: 0.04023737938573154, Val Loss: 0.04126865666891847 +2024-07-23 07:19:40.430 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 13/50, Train Loss: 0.040302325828144185, Val Loss: 0.03995167948305607 +2024-07-23 07:19:45.292 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 14/50, Train Loss: 0.04049652603526528, Val Loss: 0.04088867200272424 +2024-07-23 07:19:50.160 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 15/50, Train Loss: 0.04028929470895001, Val Loss: 0.037848868540355136 +2024-07-23 07:19:55.022 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 16/50, Train Loss: 0.03914310915682178, Val Loss: 0.03859615517514092 +2024-07-23 07:19:59.861 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 17/50, Train Loss: 0.03924878052650736, Val Loss: 0.03820170616464955 +2024-07-23 07:20:04.742 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 18/50, Train Loss: 0.039582226801520355, Val Loss: 0.03881040284676211 +2024-07-23 07:20:09.601 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 19/50, Train Loss: 0.0393763582329624, Val Loss: 0.040224877638476236 +2024-07-23 07:20:14.460 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 20/50, Train Loss: 0.03983325487934053, Val Loss: 0.04158953492130552 +2024-07-23 07:20:19.294 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 21/50, Train Loss: 0.039672322965298705, Val Loss: 0.03821830009775502 +2024-07-23 07:20:24.200 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 22/50, Train Loss: 0.03929423931269692, Val Loss: 0.04127307928034237 +2024-07-23 07:20:29.031 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 23/50, Train Loss: 0.03972557636622626, Val Loss: 0.03858831822872162 +2024-07-23 07:20:33.879 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 24/50, Train Loss: 0.039325541171890036, Val Loss: 0.0404629148542881 +2024-07-23 07:20:38.720 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 25/50, Train Loss: 0.039689285591101416, Val Loss: 0.0392514592302697 +2024-07-23 07:20:43.585 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 26/50, Train Loss: 0.03964464645832777, Val Loss: 0.03951618634164333 +2024-07-23 07:20:48.431 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 27/50, Train Loss: 0.03970524923016246, Val Loss: 0.03896901894892965 +2024-07-23 07:20:53.301 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 28/50, Train Loss: 0.03969552480758956, Val Loss: 0.0406832680106163 +2024-07-23 07:20:58.144 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 29/50, Train Loss: 0.039449536975903005, Val Loss: 0.038912802987865036 +2024-07-23 07:21:02.997 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 30/50, Train Loss: 0.03957166483339209, Val Loss: 0.03806017275367465 +2024-07-23 07:21:07.848 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 31/50, Train Loss: 0.03933343946790466, Val Loss: 0.03946278196360384 +2024-07-23 07:21:12.668 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 32/50, Train Loss: 0.03977868899416465, Val Loss: 0.039598230432186805 +2024-07-23 07:21:17.559 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 33/50, Train Loss: 0.039565917426863544, Val Loss: 0.0384478112416608 +2024-07-23 07:21:22.377 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 34/50, Train Loss: 0.03971665331090872, Val Loss: 0.03931442089378834 +2024-07-23 07:21:27.234 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 35/50, Train Loss: 0.03946565612792396, Val Loss: 0.03890195632619517 +2024-07-23 07:21:32.048 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 36/50, Train Loss: 0.03946414208397842, Val Loss: 0.03884171763701098 +2024-07-23 07:21:36.891 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 37/50, Train Loss: 0.039252764240910225, Val Loss: 0.0394632383116654 +2024-07-23 07:21:41.744 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 38/50, Train Loss: 0.03961159962301071, Val Loss: 0.03980131138648305 +2024-07-23 07:21:46.584 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 39/50, Train Loss: 0.03959085124258239, Val Loss: 0.038786617506827624 +2024-07-23 07:21:51.436 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 40/50, Train Loss: 0.03957259217993571, Val Loss: 0.03921829398189272 +2024-07-23 07:21:56.274 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 41/50, Train Loss: 0.03958618904177386, Val Loss: 0.03898273573390075 +2024-07-23 07:22:01.128 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 42/50, Train Loss: 0.03935279770610997, Val Loss: 0.03857599768255438 +2024-07-23 07:22:05.975 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 43/50, Train Loss: 0.039560684361136876, Val Loss: 0.038022745241011895 +2024-07-23 07:22:10.805 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 44/50, Train Loss: 0.03935702388676313, Val Loss: 0.03805360112871443 +2024-07-23 07:22:15.656 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 45/50, Train Loss: 0.03933999936382931, Val Loss: 0.038671087792941504 +2024-07-23 07:22:20.506 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 46/50, Train Loss: 0.03957470355985256, Val Loss: 0.03819537189389978 +2024-07-23 07:22:25.357 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 47/50, Train Loss: 0.03952096676668869, Val Loss: 0.03687641482268061 +2024-07-23 07:22:30.238 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 48/50, Train Loss: 0.03948675687066638, Val Loss: 0.03718815791819777 +2024-07-23 07:22:35.088 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 49/50, Train Loss: 0.03956419548306327, Val Loss: 0.03690657631627151 +2024-07-23 07:22:39.953 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 50/50, Train Loss: 0.0393842698719639, Val Loss: 0.03729979044624737 +2024-07-23 07:22:39.953 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Fold 2, MAPE: 2.86% +2024-07-23 07:22:40.051 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_50001_100000_LSTM//train_f2_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-23 07:22:46.370 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 1/50, Train Loss: 0.035735916198907994, Val Loss: 0.04062034775103841 +2024-07-23 07:22:52.695 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 2/50, Train Loss: 0.03469993270558419, Val Loss: 0.03965780447636332 +2024-07-23 07:22:59.023 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 3/50, Train Loss: 0.034592931044937894, Val Loss: 0.04128070154360362 +2024-07-23 07:23:05.400 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 4/50, Train Loss: 0.03481738704839628, Val Loss: 0.039783144901905744 +2024-07-23 07:23:11.753 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 5/50, Train Loss: 0.034554852990152166, Val Loss: 0.041232044249773024 +2024-07-23 07:23:18.076 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 6/50, Train Loss: 0.03472051082058347, Val Loss: 0.04038953371345997 +2024-07-23 07:23:24.405 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 7/50, Train Loss: 0.03454672432631897, Val Loss: 0.03920383346932275 +2024-07-23 07:23:30.741 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 8/50, Train Loss: 0.03443403432159115, Val Loss: 0.039217821827956606 +2024-07-23 07:23:37.061 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 9/50, Train Loss: 0.03463114944132541, Val Loss: 0.03967319125575679 +2024-07-23 07:23:43.387 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 10/50, Train Loss: 0.03442414703933026, Val Loss: 0.04033875167369842 +2024-07-23 07:23:43.387 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:23:43.387 No tasks are waiting in the queue. +2024-07-23 07:23:43.387 4 steps have not started: model_scores, end, validate_model, log_model. +2024-07-23 07:23:49.718 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 11/50, Train Loss: 0.03451136200816082, Val Loss: 0.03973467200994492 +2024-07-23 07:23:56.038 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 12/50, Train Loss: 0.03437687626791944, Val Loss: 0.0387929167598486 +2024-07-23 07:24:02.370 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 13/50, Train Loss: 0.03425083672560805, Val Loss: 0.03954245719526495 +2024-07-23 07:24:08.735 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 14/50, Train Loss: 0.034260008108916044, Val Loss: 0.03915123492479324 +2024-07-23 07:24:15.097 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 15/50, Train Loss: 0.03432152475223696, Val Loss: 0.039289730787277224 +2024-07-23 07:24:21.445 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 16/50, Train Loss: 0.03431841516666275, Val Loss: 0.03879785585616316 +2024-07-23 07:24:27.760 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 17/50, Train Loss: 0.03414159789413428, Val Loss: 0.03930940808994429 +2024-07-23 07:24:34.131 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 18/50, Train Loss: 0.03420689739554906, Val Loss: 0.03886303172579834 +2024-07-23 07:24:40.468 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 19/50, Train Loss: 0.034218077125737996, Val Loss: 0.039634050961051666 +2024-07-23 07:24:46.817 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 20/50, Train Loss: 0.03409014178587378, Val Loss: 0.03916365387184279 +2024-07-23 07:24:53.150 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 21/50, Train Loss: 0.034267397852038306, Val Loss: 0.03948307755802359 +2024-07-23 07:24:59.498 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 22/50, Train Loss: 0.034170066508993825, Val Loss: 0.03936774347509656 +2024-07-23 07:25:05.848 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 23/50, Train Loss: 0.034186119401304844, Val Loss: 0.039788228433047024 +2024-07-23 07:25:12.192 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 24/50, Train Loss: 0.03410456884357569, Val Loss: 0.039180368717227666 +2024-07-23 07:25:18.569 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 25/50, Train Loss: 0.03405116029458938, Val Loss: 0.039117417058774404 +2024-07-23 07:25:24.938 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 26/50, Train Loss: 0.03413213165007907, Val Loss: 0.03890638292900154 +2024-07-23 07:25:31.269 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 27/50, Train Loss: 0.03385767873993023, Val Loss: 0.039698680596692223 +2024-07-23 07:25:37.601 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 28/50, Train Loss: 0.03395722369603116, Val Loss: 0.03949299539838518 +2024-07-23 07:25:43.956 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 29/50, Train Loss: 0.033851955903412626, Val Loss: 0.03940283762557166 +2024-07-23 07:25:50.318 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 30/50, Train Loss: 0.03399487964058523, Val Loss: 0.03879292463617665 +2024-07-23 07:25:56.652 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 31/50, Train Loss: 0.033864377160295306, Val Loss: 0.03914998642035893 +2024-07-23 07:26:02.996 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 32/50, Train Loss: 0.03391060298777741, Val Loss: 0.03885069760893072 +2024-07-23 07:26:09.317 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 33/50, Train Loss: 0.03404170899189633, Val Loss: 0.03961064671831471 +2024-07-23 07:26:15.701 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 34/50, Train Loss: 0.0339218291902928, Val Loss: 0.03872655922813075 +2024-07-23 07:26:22.034 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 35/50, Train Loss: 0.033961810774618774, Val Loss: 0.03825496302119323 +2024-07-23 07:26:28.401 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 36/50, Train Loss: 0.03377706005418901, Val Loss: 0.038413654267787936 +2024-07-23 07:26:34.745 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 37/50, Train Loss: 0.03362883072641256, Val Loss: 0.039049603044986725 +2024-07-23 07:26:41.093 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 38/50, Train Loss: 0.03391023478705248, Val Loss: 0.03849626077072961 +2024-07-23 07:26:47.468 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 39/50, Train Loss: 0.03380456615051777, Val Loss: 0.03848233228283269 +2024-07-23 07:26:53.806 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 40/50, Train Loss: 0.033561867735475946, Val Loss: 0.03891541313912187 +2024-07-23 07:27:00.146 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 41/50, Train Loss: 0.03374656978592598, Val Loss: 0.03889631762036255 +2024-07-23 07:27:06.520 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 42/50, Train Loss: 0.03391474733303348, Val Loss: 0.03870575699423041 +2024-07-23 07:27:12.865 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 43/50, Train Loss: 0.033738150093838466, Val Loss: 0.038220189884305 +2024-07-23 07:27:19.244 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 44/50, Train Loss: 0.03364822342187809, Val Loss: 0.038426951106105535 +2024-07-23 07:27:25.589 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 45/50, Train Loss: 0.03372636724183028, Val Loss: 0.03825807752353805 +2024-07-23 07:27:31.964 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 46/50, Train Loss: 0.03355597219557213, Val Loss: 0.03899875778172698 +2024-07-23 07:27:38.315 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 47/50, Train Loss: 0.03368073352110043, Val Loss: 0.03795532014753137 +2024-07-23 07:27:44.685 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 48/50, Train Loss: 0.033457818675598654, Val Loss: 0.03818686551281384 +2024-07-23 07:27:51.022 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 49/50, Train Loss: 0.03350184711781766, Val Loss: 0.038216632870691165 +2024-07-23 07:27:57.377 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 50/50, Train Loss: 0.03353530346757645, Val Loss: 0.037599005656582966 +2024-07-23 07:27:57.377 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Fold 3, MAPE: 2.98% +2024-07-23 07:27:57.476 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_50001_100000_LSTM//train_f3_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-23 07:28:05.361 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 1/50, Train Loss: 0.034533843740649606, Val Loss: 0.03834984589900289 +2024-07-23 07:28:13.169 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 2/50, Train Loss: 0.034979950315479576, Val Loss: 0.041529558120029314 +2024-07-23 07:28:21.111 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 3/50, Train Loss: 0.034577788902853415, Val Loss: 0.041081816170896804 +2024-07-23 07:28:28.910 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 4/50, Train Loss: 0.034548136373532226, Val Loss: 0.040841008243816236 +2024-07-23 07:28:36.689 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 5/50, Train Loss: 0.0341578752508965, Val Loss: 0.039865072869828766 +2024-07-23 07:28:44.538 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 6/50, Train Loss: 0.034119196204019, Val Loss: 0.04006996974349022 +2024-07-23 07:28:44.538 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:28:44.538 No tasks are waiting in the queue. +2024-07-23 07:28:44.538 4 steps have not started: model_scores, end, validate_model, log_model. +2024-07-23 07:28:52.350 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 7/50, Train Loss: 0.034202446914866735, Val Loss: 0.038177741106067385 +2024-07-23 07:29:00.150 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 8/50, Train Loss: 0.03399103492412759, Val Loss: 0.039044147729873656 +2024-07-23 07:29:08.011 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 9/50, Train Loss: 0.034078275399475264, Val Loss: 0.03796936294862202 +2024-07-23 07:29:15.860 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 10/50, Train Loss: 0.034309028658544884, Val Loss: 0.04116228957261358 +2024-07-23 07:29:23.642 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 11/50, Train Loss: 0.03412340188548825, Val Loss: 0.03983228116163186 +2024-07-23 07:29:31.462 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 12/50, Train Loss: 0.03396589611924585, Val Loss: 0.0390600497169154 +2024-07-23 07:29:39.281 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 13/50, Train Loss: 0.03382282114277283, Val Loss: 0.03873604424297809 +2024-07-23 07:29:47.097 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 14/50, Train Loss: 0.0339578619847695, Val Loss: 0.03896280575011458 +2024-07-23 07:29:54.938 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 15/50, Train Loss: 0.03404149213998482, Val Loss: 0.039524325409105845 +2024-07-23 07:30:02.746 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 16/50, Train Loss: 0.03405340580034188, Val Loss: 0.03997027522751263 +2024-07-23 07:30:10.547 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 17/50, Train Loss: 0.03392398639999587, Val Loss: 0.03861089577632291 +2024-07-23 07:30:18.387 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 18/50, Train Loss: 0.03388285890606971, Val Loss: 0.04048781490751675 +2024-07-23 07:30:26.225 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 19/50, Train Loss: 0.03370605074083326, Val Loss: 0.0381606004600014 +2024-07-23 07:30:34.045 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 20/50, Train Loss: 0.033666894781863556, Val Loss: 0.03873705438205174 +2024-07-23 07:30:41.816 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 21/50, Train Loss: 0.033810725778170014, Val Loss: 0.04005808436444828 +2024-07-23 07:30:49.667 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 22/50, Train Loss: 0.03375965512047211, Val Loss: 0.039110267162323 +2024-07-23 07:30:57.474 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 23/50, Train Loss: 0.033774605202863274, Val Loss: 0.03875488213130406 +2024-07-23 07:31:05.286 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 24/50, Train Loss: 0.03382835286701548, Val Loss: 0.0411932926092829 +2024-07-23 07:31:13.121 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 25/50, Train Loss: 0.03385223891457607, Val Loss: 0.03865375678454127 +2024-07-23 07:31:20.953 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 26/50, Train Loss: 0.033717282962096834, Val Loss: 0.040316597159419744 +2024-07-23 07:31:28.791 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 27/50, Train Loss: 0.03370948328540243, Val Loss: 0.04083778240850994 +2024-07-23 07:31:36.600 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 28/50, Train Loss: 0.03382555595545591, Val Loss: 0.03997183505977903 +2024-07-23 07:31:44.430 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 29/50, Train Loss: 0.03367903047166337, Val Loss: 0.041480840423277446 +2024-07-23 07:31:52.299 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 30/50, Train Loss: 0.03406897460206829, Val Loss: 0.04233342174972807 +2024-07-23 07:32:00.171 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 31/50, Train Loss: 0.03397356167478466, Val Loss: 0.04051063156553677 +2024-07-23 07:32:08.038 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 32/50, Train Loss: 0.03374784421603912, Val Loss: 0.040040420527969085 +2024-07-23 07:32:15.870 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 33/50, Train Loss: 0.03372062644225427, Val Loss: 0.0423105061586414 +2024-07-23 07:32:23.644 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 34/50, Train Loss: 0.03401098893848301, Val Loss: 0.04188990092703274 +2024-07-23 07:32:31.473 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 35/50, Train Loss: 0.03392483651552392, Val Loss: 0.042156935163906645 +2024-07-23 07:32:39.272 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 36/50, Train Loss: 0.03369544036472323, Val Loss: 0.03942990239177432 +2024-07-23 07:32:47.094 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 37/50, Train Loss: 0.033490302565710985, Val Loss: 0.039179020800760814 +2024-07-23 07:32:54.929 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 38/50, Train Loss: 0.033659130227805555, Val Loss: 0.04242907650768757 +2024-07-23 07:33:02.744 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 39/50, Train Loss: 0.03404088648057532, Val Loss: 0.040324268490076066 +2024-07-23 07:33:10.570 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 40/50, Train Loss: 0.03378288745451933, Val Loss: 0.04248502616371427 +2024-07-23 07:33:18.407 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 41/50, Train Loss: 0.03400697974466729, Val Loss: 0.041762004047632216 +2024-07-23 07:33:26.234 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 42/50, Train Loss: 0.03413247112612957, Val Loss: 0.04267200518931661 +2024-07-23 07:33:34.033 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 43/50, Train Loss: 0.03400605687892985, Val Loss: 0.04228537061384746 +2024-07-23 07:33:41.836 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 44/50, Train Loss: 0.0336862174558571, Val Loss: 0.04154054394790104 +2024-07-23 07:33:49.640 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 45/50, Train Loss: 0.03371287769927033, Val Loss: 0.043151364262614934 +2024-07-23 07:33:49.640 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:33:49.640 No tasks are waiting in the queue. +2024-07-23 07:33:49.640 4 steps have not started: model_scores, end, validate_model, log_model. +2024-07-23 07:33:57.491 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 46/50, Train Loss: 0.03362578099015458, Val Loss: 0.04114578297095639 +2024-07-23 07:34:05.320 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 47/50, Train Loss: 0.033374439111386225, Val Loss: 0.038651440026504655 +2024-07-23 07:34:13.196 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 48/50, Train Loss: 0.03312824193345404, Val Loss: 0.0392499778419733 +2024-07-23 07:34:21.017 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 49/50, Train Loss: 0.033221449820731566, Val Loss: 0.03922071818794523 +2024-07-23 07:34:28.837 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Epoch 50/50, Train Loss: 0.033182994655237115, Val Loss: 0.03920293801597186 +2024-07-23 07:34:28.837 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Fold 4, MAPE: 2.87% +2024-07-23 07:34:28.945 [55/cross_validate_train/597 (pid 92359)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_lodging_residential_50001_100000_LSTM//train_f4_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-23 07:34:33.426 [55/cross_validate_train/597 (pid 92359)] Task finished successfully. +2024-07-23 07:34:33.457 [55/model_scores/598 (pid 97031)] Task is starting. +2024-07-23 07:34:34.961 [55/model_scores/598 (pid 97031)] INFO:__main__:Average Train Loss across all folds: 0.03899641260048573 +2024-07-23 07:34:38.862 [55/model_scores/598 (pid 97031)] INFO:__main__:Average Validation Loss across all folds: 0.038611103115337234 +2024-07-23 07:34:38.862 [55/model_scores/598 (pid 97031)] INFO:__main__:Average MAPE across all folds: 2.90% +2024-07-23 07:34:38.863 [55/model_scores/598 (pid 97031)] Task finished successfully. +2024-07-23 07:34:38.888 [55/validate_model/599 (pid 97062)] Task is starting. +2024-07-23 07:34:40.374 [55/validate_model/599 (pid 97062)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 07:34:41.173 [55/validate_model/599 (pid 97062)] INFO:__main__:Test Set MAPE: 5.12% +2024-07-23 07:34:41.539 [55/validate_model/599 (pid 97062)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_lodging_residential_50001_100000_LSTM//test_bgd_lodging_residential_50001_100000_LSTM.png +2024-07-23 07:34:41.969 [55/validate_model/599 (pid 97062)] Task finished successfully. +2024-07-23 07:34:41.997 [55/log_model/600 (pid 97075)] Task is starting. +2024-07-23 07:34:43.482 [55/log_model/600 (pid 97075)] INFO:__main__:Logging model bgd_lodging_residential_50001_100000_LSTM +2024-07-23 07:34:43.483 [55/log_model/600 (pid 97075)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_lodging_residential_50001_100000_LSTM//bgd_lodging_residential_50001_100000_LSTM.pth +2024-07-23 07:34:47.436 [55/log_model/600 (pid 97075)] Task finished successfully. +2024-07-23 07:34:47.463 [55/end/601 (pid 97107)] Task is starting. +2024-07-23 07:34:48.907 [55/end/601 (pid 97107)] INFO:__main__:Pipeline end. +2024-07-23 07:34:49.224 [55/end/601 (pid 97107)] Task finished successfully. +2024-07-23 07:34:49.224 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/scaler_bgd_lodging_residential_50001_100000_LSTM.pkl b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/scaler_bgd_lodging_residential_50001_100000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..d071776dea531ab7f7f56de41744ea593a6cb9d1 --- /dev/null +++ b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/scaler_bgd_lodging_residential_50001_100000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a032e06d65174499b67e278d0c1cc56ded5fbbfd054a9df53b0927d4736fc35 +size 557 diff --git a/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/test_bgd_lodging_residential_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/test_bgd_lodging_residential_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..3749e19aaf70f364edaf0bcd94656a2daa84a258 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/test_bgd_lodging_residential_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f0_bgd_lodging_residential_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f0_bgd_lodging_residential_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..486b347360c7a836ba0dee11b5487da316a9a972 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f0_bgd_lodging_residential_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f1_bgd_lodging_residential_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f1_bgd_lodging_residential_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..cac4bdb14f9178a15b9049e261b852a94a36f250 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f1_bgd_lodging_residential_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f2_bgd_lodging_residential_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f2_bgd_lodging_residential_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..fbdd6b31c3789e7875af235905ded959db0ed75d Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f2_bgd_lodging_residential_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f3_bgd_lodging_residential_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f3_bgd_lodging_residential_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..2f68d81d5c0102a70303fa3cb4b8f8cb715cec74 Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f3_bgd_lodging_residential_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f4_bgd_lodging_residential_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f4_bgd_lodging_residential_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..4a75e581721924cb0f51cbbdc5b929ee93b81f0b Binary files /dev/null and b/metaflow_models_360hrs/bgd_lodging_residential_50001_100000_LSTM/train_f4_bgd_lodging_residential_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/bgd_office_100001_200000_LSTM.pth b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/bgd_office_100001_200000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..478e37434f2d9109b709d288065c117651c41da0 --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/bgd_office_100001_200000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a29c9cd14b6d35472aeb9ba8149259443c5305a415980476eee5196e43b7ae1 +size 46756 diff --git a/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/output.txt b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..56f9ba8b8ed06d2cd21def11c61a5aae441563de --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/output.txt @@ -0,0 +1,761 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-23 06:52:08.202 Workflow starting (run-id 54): +2024-07-23 06:52:08.284 [54/start/575 (pid 87225)] Task is starting. +2024-07-23 06:52:09.764 [54/start/575 (pid 87225)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 06:52:10.059 [54/start/575 (pid 87225)] Task finished successfully. +2024-07-23 06:52:10.097 [54/ingest/576 (pid 87238)] Task is starting. +2024-07-23 06:52:11.561 [54/ingest/576 (pid 87238)] INFO:__main__:Fetching dataframe.. +2024-07-23 06:52:11.576 [54/ingest/576 (pid 87238)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 06:52:15.459 [54/ingest/576 (pid 87238)] Task finished successfully. +2024-07-23 06:52:15.488 [54/pick_2017_data/577 (pid 87271)] Task is starting. +2024-07-23 06:52:16.937 [54/pick_2017_data/577 (pid 87271)] INFO:__main__:Picking 2017 data.. +2024-07-23 06:52:17.240 [54/pick_2017_data/577 (pid 87271)] Task finished successfully. +2024-07-23 06:52:17.274 [54/fill_missing_data/578 (pid 87282)] Task is starting. +2024-07-23 06:52:18.729 [54/fill_missing_data/578 (pid 87282)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 06:52:18.735 [54/fill_missing_data/578 (pid 87282)] INFO:__main__:NaN counts per column: +2024-07-23 06:52:18.735 [54/fill_missing_data/578 (pid 87282)] INFO:__main__:Panther_office_Patti 12 +2024-07-23 06:52:18.735 [54/fill_missing_data/578 (pid 87282)] Fox_office_Israel 2 +2024-07-23 06:52:18.735 [54/fill_missing_data/578 (pid 87282)] Fox_office_Thelma 1 +2024-07-23 06:52:18.735 [54/fill_missing_data/578 (pid 87282)] Fox_office_Yong 1 +2024-07-23 06:52:18.735 [54/fill_missing_data/578 (pid 87282)] Shrew_office_Sherill 8160 +2024-07-23 06:52:18.736 [54/fill_missing_data/578 (pid 87282)] Cockatoo_office_Laila 113 +2024-07-23 06:52:18.736 [54/fill_missing_data/578 (pid 87282)] dtype: int64 +2024-07-23 06:52:18.736 [54/fill_missing_data/578 (pid 87282)] --- Logging error --- +2024-07-23 06:52:18.736 [54/fill_missing_data/578 (pid 87282)] Traceback (most recent call last): +2024-07-23 06:52:18.736 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] msg = self.format(record) +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] return fmt.format(record) +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] record.message = record.getMessage() +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] msg = msg % self.args +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] TypeError: not all arguments converted during string formatting +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] Call stack: +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] BGD_LinearFlow() +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] cli.main(self) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] return func(*args, **kwargs) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] return self.main(*args, **kwargs) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] rv = self.invoke(ctx) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] return callback(*args, **kwargs) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] return f(get_current_context(), *args, **kwargs) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] task.run_step( +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] self._exec_step_function(step_func) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] step_function() +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] self.missing_values = find_nan_counts(self.df) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] Arguments: (8289,) +2024-07-23 06:52:24.025 [54/fill_missing_data/578 (pid 87282)] Task finished successfully. +2024-07-23 06:52:24.057 [54/find_median/579 (pid 87315)] Task is starting. +2024-07-23 06:52:25.510 [54/find_median/579 (pid 87315)] INFO:__main__:Computing and using median.. +2024-07-23 06:52:26.015 [54/find_median/579 (pid 87315)] Task finished successfully. +2024-07-23 06:52:26.045 [54/aggregate_data/580 (pid 87326)] Task is starting. +2024-07-23 06:52:27.486 [54/aggregate_data/580 (pid 87326)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 06:52:31.264 [54/aggregate_data/580 (pid 87326)] Task finished successfully. +2024-07-23 06:52:31.292 [54/split_data/581 (pid 87359)] Task is starting. +2024-07-23 06:52:32.746 [54/split_data/581 (pid 87359)] INFO:__main__:Splitting data into test and train... +2024-07-23 06:52:36.555 [54/split_data/581 (pid 87359)] Task finished successfully. +2024-07-23 06:52:36.588 [54/make_x_y/582 (pid 87383)] Task is starting. +2024-07-23 06:52:38.413 [54/make_x_y/582 (pid 87383)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 06:52:38.804 [54/make_x_y/582 (pid 87383)] Shape of y_train: (6648, 1) +2024-07-23 06:52:38.804 [54/make_x_y/582 (pid 87383)] Shape of X_test: (1392, 360, 1) +2024-07-23 06:52:38.804 [54/make_x_y/582 (pid 87383)] Shape of y_test: (1392, 1) +2024-07-23 06:52:38.805 [54/make_x_y/582 (pid 87383)] Task finished successfully. +2024-07-23 06:52:38.836 [54/cross_validate_train/583 (pid 87394)] Task is starting. +2024-07-23 06:52:40.314 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Creating bgd_office_100001_200000_LSTM +2024-07-23 06:52:40.315 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Performing cross validation.. +2024-07-23 06:52:42.810 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 1/50, Train Loss: 0.252840866787093, Val Loss: 0.21428587521825518 +2024-07-23 06:52:44.725 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 2/50, Train Loss: 0.17557114894901002, Val Loss: 0.19874309599399567 +2024-07-23 06:52:46.636 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 3/50, Train Loss: 0.17440403997898102, Val Loss: 0.20076852015086583 +2024-07-23 06:52:48.530 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 4/50, Train Loss: 0.16249786423785345, Val Loss: 0.19078844955989294 +2024-07-23 06:52:50.435 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 5/50, Train Loss: 0.1529794414128576, Val Loss: 0.17441440650394985 +2024-07-23 06:52:52.329 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 6/50, Train Loss: 0.13825340356145585, Val Loss: 0.14931060820817948 +2024-07-23 06:52:54.255 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 7/50, Train Loss: 0.11745526332940374, Val Loss: 0.13368296772241592 +2024-07-23 06:52:56.189 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 8/50, Train Loss: 0.10962401958448546, Val Loss: 0.12165975698402949 +2024-07-23 06:52:58.105 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 9/50, Train Loss: 0.1009529682142394, Val Loss: 0.11213109684841974 +2024-07-23 06:53:00.030 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 10/50, Train Loss: 0.09463658854365349, Val Loss: 0.10674702056816646 +2024-07-23 06:53:01.954 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 11/50, Train Loss: 0.08989361141409193, Val Loss: 0.1020225201334272 +2024-07-23 06:53:03.872 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 12/50, Train Loss: 0.08570567752633776, Val Loss: 0.09734562443835394 +2024-07-23 06:53:05.785 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 13/50, Train Loss: 0.08219096139073372, Val Loss: 0.09526331233126777 +2024-07-23 06:53:07.701 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 14/50, Train Loss: 0.08003714797752244, Val Loss: 0.09133875668048859 +2024-07-23 06:53:09.619 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 15/50, Train Loss: 0.0776118495634624, Val Loss: 0.08864144799964768 +2024-07-23 06:53:11.546 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 16/50, Train Loss: 0.0761810339987278, Val Loss: 0.08708237100924765 +2024-07-23 06:53:13.516 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 17/50, Train Loss: 0.07522592917084694, Val Loss: 0.08458858941282545 +2024-07-23 06:53:15.433 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 18/50, Train Loss: 0.07462769885148321, Val Loss: 0.08274128351892744 +2024-07-23 06:53:17.339 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 19/50, Train Loss: 0.07292015573808125, Val Loss: 0.08104710174458367 +2024-07-23 06:53:19.246 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 20/50, Train Loss: 0.07058439467634474, Val Loss: 0.07909890349422183 +2024-07-23 06:53:21.158 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 21/50, Train Loss: 0.06763256649885858, Val Loss: 0.07767893757138933 +2024-07-23 06:53:23.066 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 22/50, Train Loss: 0.06577006982905524, Val Loss: 0.07662062059555735 +2024-07-23 06:53:24.975 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 23/50, Train Loss: 0.06426788153392927, Val Loss: 0.0754877789744309 +2024-07-23 06:53:26.895 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 24/50, Train Loss: 0.06267769443137305, Val Loss: 0.0743036755493709 +2024-07-23 06:53:28.844 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 25/50, Train Loss: 0.06111568595681872, Val Loss: 0.07291104931916509 +2024-07-23 06:53:30.773 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 26/50, Train Loss: 0.05907252164823668, Val Loss: 0.0718620563192027 +2024-07-23 06:53:32.717 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 27/50, Train Loss: 0.057553002131836756, Val Loss: 0.07074936564479556 +2024-07-23 06:53:34.686 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 28/50, Train Loss: 0.05610037499240467, Val Loss: 0.06924350591642515 +2024-07-23 06:53:36.609 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 29/50, Train Loss: 0.05485122597643307, Val Loss: 0.06738026386925153 +2024-07-23 06:53:38.548 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 30/50, Train Loss: 0.05334740419472967, Val Loss: 0.06606377948607717 +2024-07-23 06:53:40.486 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 31/50, Train Loss: 0.05220679406608854, Val Loss: 0.06391824526446206 +2024-07-23 06:53:42.462 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 32/50, Train Loss: 0.051483752472060065, Val Loss: 0.061964159246001925 +2024-07-23 06:53:44.404 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 33/50, Train Loss: 0.05101689866610936, Val Loss: 0.0607499537723405 +2024-07-23 06:53:46.350 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 34/50, Train Loss: 0.05053588769265584, Val Loss: 0.05924389117530414 +2024-07-23 06:53:48.301 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 35/50, Train Loss: 0.04959987487111773, Val Loss: 0.05831247057233538 +2024-07-23 06:53:50.230 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 36/50, Train Loss: 0.049579725787043574, Val Loss: 0.05671470686793327 +2024-07-23 06:53:52.185 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 37/50, Train Loss: 0.04874153680035046, Val Loss: 0.05575591623783112 +2024-07-23 06:53:54.135 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 38/50, Train Loss: 0.04881635148610387, Val Loss: 0.05554958177464349 +2024-07-23 06:53:56.075 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 39/50, Train Loss: 0.04877953167472567, Val Loss: 0.05510047732719353 +2024-07-23 06:53:58.008 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 40/50, Train Loss: 0.047942706836121424, Val Loss: 0.054065140656062535 +2024-07-23 06:53:59.951 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 41/50, Train Loss: 0.0479269092636449, Val Loss: 0.05340289819453444 +2024-07-23 06:54:01.921 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 42/50, Train Loss: 0.048081712531191964, Val Loss: 0.053298230575663706 +2024-07-23 06:54:03.874 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 43/50, Train Loss: 0.04787134964551244, Val Loss: 0.052887720455016406 +2024-07-23 06:54:05.810 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 44/50, Train Loss: 0.04827836560351508, Val Loss: 0.05324237075235162 +2024-07-23 06:54:07.746 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 45/50, Train Loss: 0.04777423686214856, Val Loss: 0.05282900306795325 +2024-07-23 06:54:09.690 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 46/50, Train Loss: 0.04723497118268694, Val Loss: 0.05257627580847059 +2024-07-23 06:54:11.639 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 47/50, Train Loss: 0.04720967199121203, Val Loss: 0.052800655897174566 +2024-07-23 06:54:13.590 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 48/50, Train Loss: 0.04722764108862196, Val Loss: 0.05185954086482525 +2024-07-23 06:54:15.538 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 49/50, Train Loss: 0.0473843586231981, Val Loss: 0.053332600529704774 +2024-07-23 06:54:17.479 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 50/50, Train Loss: 0.04677669139845031, Val Loss: 0.05256114261490958 +2024-07-23 06:54:17.480 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Fold 0, MAPE: 3.40% +2024-07-23 06:54:17.768 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_100001_200000_LSTM//train_f0_bgd_office_100001_200000_LSTM.png +2024-07-23 06:54:21.244 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 1/50, Train Loss: 0.042296780566019675, Val Loss: 0.03945992487881865 +2024-07-23 06:54:24.653 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 2/50, Train Loss: 0.03640598106597151, Val Loss: 0.03863883880632264 +2024-07-23 06:54:28.055 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 3/50, Train Loss: 0.03596579166395324, Val Loss: 0.03724217335028308 +2024-07-23 06:54:31.476 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 4/50, Train Loss: 0.03607544451951981, Val Loss: 0.03741080526794706 +2024-07-23 06:54:34.905 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 5/50, Train Loss: 0.03597944189927408, Val Loss: 0.0368483379483223 +2024-07-23 06:54:38.336 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 6/50, Train Loss: 0.035891481222850935, Val Loss: 0.036559022696954865 +2024-07-23 06:54:41.753 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 7/50, Train Loss: 0.035858330157186306, Val Loss: 0.03588185805295195 +2024-07-23 06:54:45.172 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 8/50, Train Loss: 0.03592264354228973, Val Loss: 0.03667424757565771 +2024-07-23 06:54:48.578 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 9/50, Train Loss: 0.03570968548634223, Val Loss: 0.037696291665945736 +2024-07-23 06:54:51.996 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 10/50, Train Loss: 0.03567791770079306, Val Loss: 0.03661389175270285 +2024-07-23 06:54:55.402 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 11/50, Train Loss: 0.03616571945271322, Val Loss: 0.035321395897439545 +2024-07-23 06:54:58.809 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 12/50, Train Loss: 0.035729808573211945, Val Loss: 0.0360358859279326 +2024-07-23 06:55:02.216 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 13/50, Train Loss: 0.035933424319539754, Val Loss: 0.0353864310575383 +2024-07-23 06:55:05.640 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 14/50, Train Loss: 0.035873055191976685, Val Loss: 0.0357568268265043 +2024-07-23 06:55:09.051 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 15/50, Train Loss: 0.03603173725839172, Val Loss: 0.03581218778022698 +2024-07-23 06:55:12.505 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 16/50, Train Loss: 0.03596337190163987, Val Loss: 0.03651630585747106 +2024-07-23 06:55:15.903 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 17/50, Train Loss: 0.03614944365939924, Val Loss: 0.03485537820628711 +2024-07-23 06:55:19.324 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 18/50, Train Loss: 0.03607158682176045, Val Loss: 0.03340751507452556 +2024-07-23 06:55:22.756 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 19/50, Train Loss: 0.03564113902726344, Val Loss: 0.033799637321914947 +2024-07-23 06:55:26.180 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 20/50, Train Loss: 0.03580373283475637, Val Loss: 0.03361778541335038 +2024-07-23 06:55:29.608 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 21/50, Train Loss: 0.03566659196679081, Val Loss: 0.03389127791992256 +2024-07-23 06:55:33.069 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 22/50, Train Loss: 0.03542616817035845, Val Loss: 0.033340074494481085 +2024-07-23 06:55:36.479 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 23/50, Train Loss: 0.03533965615289552, Val Loss: 0.03300141053540366 +2024-07-23 06:55:39.932 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 24/50, Train Loss: 0.035506121681204865, Val Loss: 0.033519500919750755 +2024-07-23 06:55:43.383 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 25/50, Train Loss: 0.035409292073122094, Val Loss: 0.03509662002325058 +2024-07-23 06:55:46.806 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 26/50, Train Loss: 0.03583611005118915, Val Loss: 0.035396419305886544 +2024-07-23 06:55:50.271 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 27/50, Train Loss: 0.03536923940160445, Val Loss: 0.03411816672555038 +2024-07-23 06:55:53.728 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 28/50, Train Loss: 0.035314423005495754, Val Loss: 0.032948833171810424 +2024-07-23 06:55:57.151 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 29/50, Train Loss: 0.03535505482660872, Val Loss: 0.03487387847687517 +2024-07-23 06:56:00.586 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 30/50, Train Loss: 0.035623274291200296, Val Loss: 0.03532327642398221 +2024-07-23 06:56:04.032 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 31/50, Train Loss: 0.03523998220584222, Val Loss: 0.036243950628808565 +2024-07-23 06:56:07.464 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 32/50, Train Loss: 0.03529050265039716, Val Loss: 0.03325243459216186 +2024-07-23 06:56:10.944 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 33/50, Train Loss: 0.03496173641511372, Val Loss: 0.03303290382027626 +2024-07-23 06:56:14.411 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 34/50, Train Loss: 0.035032710752316884, Val Loss: 0.03290831026222025 +2024-07-23 06:56:17.846 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 35/50, Train Loss: 0.03466951879007476, Val Loss: 0.0328616342906441 +2024-07-23 06:56:21.290 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 36/50, Train Loss: 0.03491459832127605, Val Loss: 0.03563751567687307 +2024-07-23 06:56:24.725 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 37/50, Train Loss: 0.03467365971633366, Val Loss: 0.03537186895098005 +2024-07-23 06:56:28.155 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 38/50, Train Loss: 0.03478443045169115, Val Loss: 0.03352655012692724 +2024-07-23 06:56:31.591 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 39/50, Train Loss: 0.03493140635213682, Val Loss: 0.034444703906774524 +2024-07-23 06:56:35.046 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 40/50, Train Loss: 0.034743745997548106, Val Loss: 0.03255580317761217 +2024-07-23 06:56:38.511 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 41/50, Train Loss: 0.03475785274058581, Val Loss: 0.03416499766920294 +2024-07-23 06:56:41.963 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 42/50, Train Loss: 0.03456777677472148, Val Loss: 0.034040926503283636 +2024-07-23 06:56:45.416 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 43/50, Train Loss: 0.03436198899788516, Val Loss: 0.03303710781037807 +2024-07-23 06:56:48.844 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 44/50, Train Loss: 0.034428961601640495, Val Loss: 0.03293536555554186 +2024-07-23 06:56:52.287 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 45/50, Train Loss: 0.034620102122426034, Val Loss: 0.033174030323113717 +2024-07-23 06:56:55.718 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 46/50, Train Loss: 0.03447067732257503, Val Loss: 0.03325705640017986 +2024-07-23 06:56:59.147 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 47/50, Train Loss: 0.03432046193629503, Val Loss: 0.03329276575573853 +2024-07-23 06:57:02.615 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 48/50, Train Loss: 0.03454731282378946, Val Loss: 0.03321693161768573 +2024-07-23 06:57:06.035 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 49/50, Train Loss: 0.034354922228625843, Val Loss: 0.03287818522325584 +2024-07-23 06:57:09.470 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 50/50, Train Loss: 0.034283898584544656, Val Loss: 0.033055354708007405 +2024-07-23 06:57:09.470 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:57:09.470 No tasks are waiting in the queue. +2024-07-23 06:57:09.470 4 steps have not started: validate_model, end, log_model, model_scores. +2024-07-23 06:57:09.470 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Fold 1, MAPE: 2.82% +2024-07-23 06:57:09.579 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_100001_200000_LSTM//train_f1_bgd_office_100001_200000_LSTM.png +2024-07-23 06:57:14.519 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 1/50, Train Loss: 0.03401596539725478, Val Loss: 0.03514870516955852 +2024-07-23 06:57:19.440 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 2/50, Train Loss: 0.03397796046920121, Val Loss: 0.03465929622096675 +2024-07-23 06:57:24.346 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 3/50, Train Loss: 0.033988477053264014, Val Loss: 0.0345931743404695 +2024-07-23 06:57:29.263 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 4/50, Train Loss: 0.03365886127218031, Val Loss: 0.033778523919837815 +2024-07-23 06:57:34.173 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 5/50, Train Loss: 0.03382514092999582, Val Loss: 0.034099329369408744 +2024-07-23 06:57:39.052 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 6/50, Train Loss: 0.03400634850661915, Val Loss: 0.03457093712474619 +2024-07-23 06:57:43.947 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 7/50, Train Loss: 0.03375980879466694, Val Loss: 0.03484067278248923 +2024-07-23 06:57:48.829 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 8/50, Train Loss: 0.03394710104196118, Val Loss: 0.033141435044152394 +2024-07-23 06:57:53.765 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 9/50, Train Loss: 0.0336793687624427, Val Loss: 0.03367016528333936 +2024-07-23 06:57:58.698 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 10/50, Train Loss: 0.03399909307392171, Val Loss: 0.034801644991551126 +2024-07-23 06:58:03.626 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 11/50, Train Loss: 0.033857657896498076, Val Loss: 0.03339251998279776 +2024-07-23 06:58:08.537 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 12/50, Train Loss: 0.033729985857812256, Val Loss: 0.03387515539569514 +2024-07-23 06:58:13.441 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 13/50, Train Loss: 0.03394346254376265, Val Loss: 0.034215780720114705 +2024-07-23 06:58:18.341 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 14/50, Train Loss: 0.03391837622397221, Val Loss: 0.03338783170495715 +2024-07-23 06:58:23.247 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 15/50, Train Loss: 0.03362555907537731, Val Loss: 0.03391672175909791 +2024-07-23 06:58:28.154 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 16/50, Train Loss: 0.033680052030831575, Val Loss: 0.034235854500106404 +2024-07-23 06:58:33.045 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 17/50, Train Loss: 0.03369260126223358, Val Loss: 0.03326385234083448 +2024-07-23 06:58:37.917 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 18/50, Train Loss: 0.033724130399955005, Val Loss: 0.03342030335749899 +2024-07-23 06:58:42.823 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 19/50, Train Loss: 0.03377416029644127, Val Loss: 0.033427680603095464 +2024-07-23 06:58:47.707 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 20/50, Train Loss: 0.0335954947468753, Val Loss: 0.0330884472067867 +2024-07-23 06:58:52.645 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 21/50, Train Loss: 0.03346482053614007, Val Loss: 0.03249275524701391 +2024-07-23 06:58:57.526 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 22/50, Train Loss: 0.03337467979424848, Val Loss: 0.03272983783057758 +2024-07-23 06:59:02.438 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 23/50, Train Loss: 0.03335200624468808, Val Loss: 0.032300500997475216 +2024-07-23 06:59:07.320 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 24/50, Train Loss: 0.033400436773752935, Val Loss: 0.03277873253183705 +2024-07-23 06:59:12.212 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 25/50, Train Loss: 0.033420816547452256, Val Loss: 0.033499736338853836 +2024-07-23 06:59:17.147 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 26/50, Train Loss: 0.033415317499580294, Val Loss: 0.03343155320201601 +2024-07-23 06:59:22.046 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 27/50, Train Loss: 0.03333160177303048, Val Loss: 0.032598465521420754 +2024-07-23 06:59:26.963 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 28/50, Train Loss: 0.033152436873374075, Val Loss: 0.0326039478714977 +2024-07-23 06:59:31.857 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 29/50, Train Loss: 0.03307112922462133, Val Loss: 0.032847614426698 +2024-07-23 06:59:36.773 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 30/50, Train Loss: 0.033242658317948766, Val Loss: 0.032901619587625774 +2024-07-23 06:59:41.669 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 31/50, Train Loss: 0.03310111596678885, Val Loss: 0.03220453661467348 +2024-07-23 06:59:46.571 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 32/50, Train Loss: 0.033163749863608524, Val Loss: 0.032574116438627246 +2024-07-23 06:59:51.528 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 33/50, Train Loss: 0.03300786450003775, Val Loss: 0.031984211451240946 +2024-07-23 06:59:56.428 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 34/50, Train Loss: 0.03294297044451993, Val Loss: 0.032542649603315765 +2024-07-23 07:00:01.320 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 35/50, Train Loss: 0.03296916982015738, Val Loss: 0.032867407266582764 +2024-07-23 07:00:06.717 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 36/50, Train Loss: 0.03320773155428469, Val Loss: 0.03282782036278929 +2024-07-23 07:00:11.611 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 37/50, Train Loss: 0.033062955078024134, Val Loss: 0.03271822519600391 +2024-07-23 07:00:16.498 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 38/50, Train Loss: 0.03285999144785679, Val Loss: 0.032418977256332124 +2024-07-23 07:00:21.388 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 39/50, Train Loss: 0.032940901045759134, Val Loss: 0.03201344721019268 +2024-07-23 07:00:26.326 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 40/50, Train Loss: 0.03267147513822867, Val Loss: 0.03234430934701647 +2024-07-23 07:00:31.225 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 41/50, Train Loss: 0.033000488246146306, Val Loss: 0.03435008344905717 +2024-07-23 07:00:36.133 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 42/50, Train Loss: 0.033115747384727, Val Loss: 0.03270338039313044 +2024-07-23 07:00:41.058 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 43/50, Train Loss: 0.03283438340832408, Val Loss: 0.03199961994375501 +2024-07-23 07:00:45.974 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 44/50, Train Loss: 0.03269426873885095, Val Loss: 0.031336599907704765 +2024-07-23 07:00:50.898 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 45/50, Train Loss: 0.032739826782534905, Val Loss: 0.032719955274036955 +2024-07-23 07:00:55.811 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 46/50, Train Loss: 0.03289436550739293, Val Loss: 0.03188951372035912 +2024-07-23 07:01:00.739 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 47/50, Train Loss: 0.03287350875325501, Val Loss: 0.03188561398003783 +2024-07-23 07:01:05.650 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 48/50, Train Loss: 0.03289952852691595, Val Loss: 0.03178073354065418 +2024-07-23 07:01:10.558 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 49/50, Train Loss: 0.03308301479913867, Val Loss: 0.03209599293768406 +2024-07-23 07:01:15.481 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 50/50, Train Loss: 0.032979048448256575, Val Loss: 0.031538771678294455 +2024-07-23 07:01:15.482 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Fold 2, MAPE: 2.69% +2024-07-23 07:01:15.595 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_100001_200000_LSTM//train_f2_bgd_office_100001_200000_LSTM.png +2024-07-23 07:01:22.004 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 1/50, Train Loss: 0.03265724000152495, Val Loss: 0.03417672073202474 +2024-07-23 07:01:28.376 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 2/50, Train Loss: 0.03254600582148531, Val Loss: 0.034878523488129885 +2024-07-23 07:01:34.780 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 3/50, Train Loss: 0.032694761098610414, Val Loss: 0.03510648336793695 +2024-07-23 07:01:41.176 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 4/50, Train Loss: 0.03306101349671539, Val Loss: 0.03408014492264816 +2024-07-23 07:01:47.572 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 5/50, Train Loss: 0.033073927778348645, Val Loss: 0.034946227392980034 +2024-07-23 07:01:53.965 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 6/50, Train Loss: 0.03313274818251459, Val Loss: 0.034630845646773066 +2024-07-23 07:02:00.328 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 7/50, Train Loss: 0.03323600837867037, Val Loss: 0.034901576276336395 +2024-07-23 07:02:06.752 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 8/50, Train Loss: 0.03306718109001359, Val Loss: 0.03494507420275893 +2024-07-23 07:02:13.160 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 9/50, Train Loss: 0.03297293817343043, Val Loss: 0.03633372437741075 +2024-07-23 07:02:13.160 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:02:13.160 No tasks are waiting in the queue. +2024-07-23 07:02:13.160 4 steps have not started: validate_model, end, log_model, model_scores. +2024-07-23 07:02:19.559 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 10/50, Train Loss: 0.03324368673798849, Val Loss: 0.034721460193395615 +2024-07-23 07:02:25.963 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 11/50, Train Loss: 0.03333835108138675, Val Loss: 0.03572226273162024 +2024-07-23 07:02:32.393 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 12/50, Train Loss: 0.033167760832597024, Val Loss: 0.034669380102838786 +2024-07-23 07:02:38.801 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 13/50, Train Loss: 0.03323055140459709, Val Loss: 0.03513599378722054 +2024-07-23 07:02:45.272 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 14/50, Train Loss: 0.03295421049588447, Val Loss: 0.0348141109836953 +2024-07-23 07:02:51.683 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 15/50, Train Loss: 0.03279072615793712, Val Loss: 0.03592643407838685 +2024-07-23 07:02:58.118 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 16/50, Train Loss: 0.03302044629139437, Val Loss: 0.034780304080673625 +2024-07-23 07:03:04.531 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 17/50, Train Loss: 0.032953927708829905, Val Loss: 0.03598676499511514 +2024-07-23 07:03:10.949 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 18/50, Train Loss: 0.03278694581910432, Val Loss: 0.03466964167143617 +2024-07-23 07:03:17.429 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 19/50, Train Loss: 0.03262695210496727, Val Loss: 0.03535232341715268 +2024-07-23 07:03:23.850 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 20/50, Train Loss: 0.03258841693830147, Val Loss: 0.03474529784704958 +2024-07-23 07:03:30.253 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 21/50, Train Loss: 0.03271756440454678, Val Loss: 0.03453784457274846 +2024-07-23 07:03:36.685 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 22/50, Train Loss: 0.03233102848418325, Val Loss: 0.034124146401882174 +2024-07-23 07:03:43.164 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 23/50, Train Loss: 0.032583577531597595, Val Loss: 0.03586643918284348 +2024-07-23 07:03:49.603 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 24/50, Train Loss: 0.03240722188685866, Val Loss: 0.03508700994508607 +2024-07-23 07:03:56.060 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 25/50, Train Loss: 0.03255223004455618, Val Loss: 0.03369138262101582 +2024-07-23 07:04:02.526 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 26/50, Train Loss: 0.03263238076415422, Val Loss: 0.03422408311494759 +2024-07-23 07:04:08.967 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 27/50, Train Loss: 0.032448132435302084, Val Loss: 0.034791649611932894 +2024-07-23 07:04:15.413 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 28/50, Train Loss: 0.03243436298514013, Val Loss: 0.03498243375548295 +2024-07-23 07:04:21.864 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 29/50, Train Loss: 0.03237588867116317, Val Loss: 0.03359618974583489 +2024-07-23 07:04:28.274 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 30/50, Train Loss: 0.03220087362171935, Val Loss: 0.03393071724900178 +2024-07-23 07:04:34.716 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 31/50, Train Loss: 0.03249685357746889, Val Loss: 0.03415244040744645 +2024-07-23 07:04:41.124 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 32/50, Train Loss: 0.03248354574169615, Val Loss: 0.03421902805566788 +2024-07-23 07:04:47.552 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 33/50, Train Loss: 0.032485009432375, Val Loss: 0.03396596876638276 +2024-07-23 07:04:53.978 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 34/50, Train Loss: 0.032523629758105, Val Loss: 0.03382333623511451 +2024-07-23 07:05:00.453 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 35/50, Train Loss: 0.03217503870669886, Val Loss: 0.034174688160419464 +2024-07-23 07:05:06.905 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 36/50, Train Loss: 0.032424814905301275, Val Loss: 0.03384921226118292 +2024-07-23 07:05:13.347 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 37/50, Train Loss: 0.032577380872994874, Val Loss: 0.035067827520625934 +2024-07-23 07:05:19.817 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 38/50, Train Loss: 0.03233054667550454, Val Loss: 0.03455613505627428 +2024-07-23 07:05:26.291 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 39/50, Train Loss: 0.032219908126502585, Val Loss: 0.03563612092818533 +2024-07-23 07:05:32.742 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 40/50, Train Loss: 0.03212669605670644, Val Loss: 0.03455615804663726 +2024-07-23 07:05:39.172 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 41/50, Train Loss: 0.03230716045543873, Val Loss: 0.03445912296218531 +2024-07-23 07:05:45.624 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 42/50, Train Loss: 0.03213949912904407, Val Loss: 0.034156856153692516 +2024-07-23 07:05:52.112 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 43/50, Train Loss: 0.03220642380845204, Val Loss: 0.03468618749507836 +2024-07-23 07:05:58.593 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 44/50, Train Loss: 0.032122596012924214, Val Loss: 0.034708477609923905 +2024-07-23 07:06:05.080 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 45/50, Train Loss: 0.031958754073908864, Val Loss: 0.034046931458371024 +2024-07-23 07:06:11.531 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 46/50, Train Loss: 0.03197038339839565, Val Loss: 0.034715345874428746 +2024-07-23 07:06:18.012 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 47/50, Train Loss: 0.03196605812195394, Val Loss: 0.03430350710238729 +2024-07-23 07:06:24.502 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 48/50, Train Loss: 0.031979619706277364, Val Loss: 0.03410235813685826 +2024-07-23 07:06:30.963 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 49/50, Train Loss: 0.031886925719839206, Val Loss: 0.03468564275119986 +2024-07-23 07:06:37.409 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 50/50, Train Loss: 0.032264001680899865, Val Loss: 0.03504462077149323 +2024-07-23 07:06:37.409 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Fold 3, MAPE: 3.05% +2024-07-23 07:06:37.518 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_100001_200000_LSTM//train_f3_bgd_office_100001_200000_LSTM.png +2024-07-23 07:06:45.456 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 1/50, Train Loss: 0.03221467646887933, Val Loss: 0.0341631717979908 +2024-07-23 07:06:53.415 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 2/50, Train Loss: 0.032192832201548005, Val Loss: 0.033606353508574625 +2024-07-23 07:07:01.302 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 3/50, Train Loss: 0.031955349119915356, Val Loss: 0.034377358587724824 +2024-07-23 07:07:09.306 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 4/50, Train Loss: 0.03215645643315096, Val Loss: 0.033315849623509815 +2024-07-23 07:07:17.259 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 5/50, Train Loss: 0.03207397864510616, Val Loss: 0.032555035554936954 +2024-07-23 07:07:17.259 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:07:17.259 No tasks are waiting in the queue. +2024-07-23 07:07:17.259 4 steps have not started: validate_model, end, log_model, model_scores. +2024-07-23 07:07:25.215 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 6/50, Train Loss: 0.031962923566414704, Val Loss: 0.03274159340986184 +2024-07-23 07:07:33.164 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 7/50, Train Loss: 0.03205105814354858, Val Loss: 0.032960017397999766 +2024-07-23 07:07:41.132 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 8/50, Train Loss: 0.031947175565379106, Val Loss: 0.03241662707711969 +2024-07-23 07:07:49.080 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 9/50, Train Loss: 0.03182153554697489, Val Loss: 0.03243973861847605 +2024-07-23 07:07:57.054 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 10/50, Train Loss: 0.031883775556310154, Val Loss: 0.03248399416250842 +2024-07-23 07:08:05.038 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 11/50, Train Loss: 0.032109243227918256, Val Loss: 0.03211761164878096 +2024-07-23 07:08:13.104 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 12/50, Train Loss: 0.03214750170236689, Val Loss: 0.03193930414106164 +2024-07-23 07:08:21.102 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 13/50, Train Loss: 0.0317256019461429, Val Loss: 0.031507919409445355 +2024-07-23 07:08:29.009 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 14/50, Train Loss: 0.03209813340599167, Val Loss: 0.0320462883583137 +2024-07-23 07:08:36.948 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 15/50, Train Loss: 0.03154112912457565, Val Loss: 0.031219795984881265 +2024-07-23 07:08:44.881 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 16/50, Train Loss: 0.03161753487141653, Val Loss: 0.031090874278119632 +2024-07-23 07:08:52.901 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 17/50, Train Loss: 0.03145634439698924, Val Loss: 0.03164645843207836 +2024-07-23 07:09:00.893 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 18/50, Train Loss: 0.031260872323965204, Val Loss: 0.03053084324513163 +2024-07-23 07:09:08.828 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 19/50, Train Loss: 0.031392225481826685, Val Loss: 0.03104445141341005 +2024-07-23 07:09:16.823 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 20/50, Train Loss: 0.03145174064470091, Val Loss: 0.03043017637516771 +2024-07-23 07:09:24.777 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 21/50, Train Loss: 0.03178292633858563, Val Loss: 0.030730107479861806 +2024-07-23 07:09:32.726 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 22/50, Train Loss: 0.031429938757899165, Val Loss: 0.031022705190948078 +2024-07-23 07:09:40.676 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 23/50, Train Loss: 0.03208949546404611, Val Loss: 0.030855933310730117 +2024-07-23 07:09:48.656 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 24/50, Train Loss: 0.031036869430079543, Val Loss: 0.03022401210452829 +2024-07-23 07:09:56.694 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 25/50, Train Loss: 0.03105324766887673, Val Loss: 0.030384223642093793 +2024-07-23 07:10:04.629 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 26/50, Train Loss: 0.031119856244788087, Val Loss: 0.03026412645620959 +2024-07-23 07:10:12.582 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 27/50, Train Loss: 0.031160054407243072, Val Loss: 0.030124216420309883 +2024-07-23 07:10:20.561 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 28/50, Train Loss: 0.031068804138607676, Val Loss: 0.030644250341824122 +2024-07-23 07:10:28.566 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 29/50, Train Loss: 0.030923409366059577, Val Loss: 0.0306265438241618 +2024-07-23 07:10:36.595 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 30/50, Train Loss: 0.031052849630172224, Val Loss: 0.03021935245820454 +2024-07-23 07:10:44.601 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 31/50, Train Loss: 0.030889619505782236, Val Loss: 0.030984248699886457 +2024-07-23 07:10:52.586 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 32/50, Train Loss: 0.03077616647485344, Val Loss: 0.03032374009490013 +2024-07-23 07:11:00.593 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 33/50, Train Loss: 0.030612637481555856, Val Loss: 0.03111414510224547 +2024-07-23 07:11:08.599 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 34/50, Train Loss: 0.030780037426143544, Val Loss: 0.029987106791564397 +2024-07-23 07:11:16.664 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 35/50, Train Loss: 0.03039856554790475, Val Loss: 0.030478543947849955 +2024-07-23 07:11:24.671 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 36/50, Train Loss: 0.030716974823468034, Val Loss: 0.03068844931466239 +2024-07-23 07:11:32.690 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 37/50, Train Loss: 0.030460206160171963, Val Loss: 0.03018070789320128 +2024-07-23 07:11:40.687 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 38/50, Train Loss: 0.030141198911286634, Val Loss: 0.030498117421354567 +2024-07-23 07:11:48.694 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 39/50, Train Loss: 0.030253278262827588, Val Loss: 0.03006247931293079 +2024-07-23 07:11:56.727 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 40/50, Train Loss: 0.03027466928650593, Val Loss: 0.03037768660911492 +2024-07-23 07:12:04.772 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 41/50, Train Loss: 0.030217959427799302, Val Loss: 0.030159645367945943 +2024-07-23 07:12:12.755 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 42/50, Train Loss: 0.030783830927791953, Val Loss: 0.030905787167804583 +2024-07-23 07:12:20.813 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 43/50, Train Loss: 0.03008111116701159, Val Loss: 0.03148777335882187 +2024-07-23 07:12:20.813 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:12:20.813 No tasks are waiting in the queue. +2024-07-23 07:12:20.813 4 steps have not started: validate_model, end, log_model, model_scores. +2024-07-23 07:12:28.815 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 44/50, Train Loss: 0.030342967795400785, Val Loss: 0.03207286447286606 +2024-07-23 07:12:36.839 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 45/50, Train Loss: 0.030198168459123577, Val Loss: 0.030804341126765524 +2024-07-23 07:12:44.881 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 46/50, Train Loss: 0.030093806710137033, Val Loss: 0.031340354681015016 +2024-07-23 07:12:52.904 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 47/50, Train Loss: 0.029913990372984575, Val Loss: 0.030431282147765158 +2024-07-23 07:13:00.939 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 48/50, Train Loss: 0.030262325151727117, Val Loss: 0.030450493044086865 +2024-07-23 07:13:08.917 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 49/50, Train Loss: 0.03043467357711888, Val Loss: 0.030311675635831696 +2024-07-23 07:13:16.955 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 50/50, Train Loss: 0.030220204536085843, Val Loss: 0.030584178226334708 +2024-07-23 07:13:16.955 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Fold 4, MAPE: 2.61% +2024-07-23 07:13:17.066 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_100001_200000_LSTM//train_f4_bgd_office_100001_200000_LSTM.png +2024-07-23 07:13:21.523 [54/cross_validate_train/583 (pid 87394)] Task finished successfully. +2024-07-23 07:13:21.555 [54/model_scores/584 (pid 92110)] Task is starting. +2024-07-23 07:13:23.020 [54/model_scores/584 (pid 92110)] INFO:__main__:Average Train Loss across all folds: 0.03530476892964745 +2024-07-23 07:13:26.940 [54/model_scores/584 (pid 92110)] INFO:__main__:Average Validation Loss across all folds: 0.03655681359980788 +2024-07-23 07:13:26.940 [54/model_scores/584 (pid 92110)] INFO:__main__:Average MAPE across all folds: 2.91% +2024-07-23 07:13:26.941 [54/model_scores/584 (pid 92110)] Task finished successfully. +2024-07-23 07:13:26.969 [54/validate_model/585 (pid 92142)] Task is starting. +2024-07-23 07:13:28.430 [54/validate_model/585 (pid 92142)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 07:13:29.200 [54/validate_model/585 (pid 92142)] INFO:__main__:Test Set MAPE: 3.12% +2024-07-23 07:13:29.557 [54/validate_model/585 (pid 92142)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_office_100001_200000_LSTM//test_bgd_office_100001_200000_LSTM.png +2024-07-23 07:13:29.990 [54/validate_model/585 (pid 92142)] Task finished successfully. +2024-07-23 07:13:30.018 [54/log_model/586 (pid 92153)] Task is starting. +2024-07-23 07:13:31.484 [54/log_model/586 (pid 92153)] INFO:__main__:Logging model bgd_office_100001_200000_LSTM +2024-07-23 07:13:31.486 [54/log_model/586 (pid 92153)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_office_100001_200000_LSTM//bgd_office_100001_200000_LSTM.pth +2024-07-23 07:13:35.385 [54/log_model/586 (pid 92153)] Task finished successfully. +2024-07-23 07:13:35.416 [54/end/587 (pid 92188)] Task is starting. +2024-07-23 07:13:36.885 [54/end/587 (pid 92188)] INFO:__main__:Pipeline end. +2024-07-23 07:13:37.194 [54/end/587 (pid 92188)] Task finished successfully. +2024-07-23 07:13:37.194 Done! +✅ Run('BGD_LinearFlow/54') succeeded: +-- stdout -- +2024-07-23 06:52:08.202 Workflow starting (run-id 54): +2024-07-23 06:52:08.284 [54/start/575 (pid 87225)] Task is starting. +2024-07-23 06:52:09.764 [54/start/575 (pid 87225)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 06:52:10.059 [54/start/575 (pid 87225)] Task finished successfully. +2024-07-23 06:52:10.097 [54/ingest/576 (pid 87238)] Task is starting. +2024-07-23 06:52:11.561 [54/ingest/576 (pid 87238)] INFO:__main__:Fetching dataframe.. +2024-07-23 06:52:11.576 [54/ingest/576 (pid 87238)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 06:52:15.459 [54/ingest/576 (pid 87238)] Task finished successfully. +2024-07-23 06:52:15.488 [54/pick_2017_data/577 (pid 87271)] Task is starting. +2024-07-23 06:52:16.937 [54/pick_2017_data/577 (pid 87271)] INFO:__main__:Picking 2017 data.. +2024-07-23 06:52:17.240 [54/pick_2017_data/577 (pid 87271)] Task finished successfully. +2024-07-23 06:52:17.274 [54/fill_missing_data/578 (pid 87282)] Task is starting. +2024-07-23 06:52:18.729 [54/fill_missing_data/578 (pid 87282)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 06:52:18.735 [54/fill_missing_data/578 (pid 87282)] INFO:__main__:NaN counts per column: +2024-07-23 06:52:18.735 [54/fill_missing_data/578 (pid 87282)] INFO:__main__:Panther_office_Patti 12 +2024-07-23 06:52:18.735 [54/fill_missing_data/578 (pid 87282)] Fox_office_Israel 2 +2024-07-23 06:52:18.735 [54/fill_missing_data/578 (pid 87282)] Fox_office_Thelma 1 +2024-07-23 06:52:18.735 [54/fill_missing_data/578 (pid 87282)] Fox_office_Yong 1 +2024-07-23 06:52:18.735 [54/fill_missing_data/578 (pid 87282)] Shrew_office_Sherill 8160 +2024-07-23 06:52:18.736 [54/fill_missing_data/578 (pid 87282)] Cockatoo_office_Laila 113 +2024-07-23 06:52:18.736 [54/fill_missing_data/578 (pid 87282)] dtype: int64 +2024-07-23 06:52:18.736 [54/fill_missing_data/578 (pid 87282)] --- Logging error --- +2024-07-23 06:52:18.736 [54/fill_missing_data/578 (pid 87282)] Traceback (most recent call last): +2024-07-23 06:52:18.736 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] msg = self.format(record) +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] return fmt.format(record) +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] record.message = record.getMessage() +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] msg = msg % self.args +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] TypeError: not all arguments converted during string formatting +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] Call stack: +2024-07-23 06:52:18.737 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] BGD_LinearFlow() +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] cli.main(self) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] return func(*args, **kwargs) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] return self.main(*args, **kwargs) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] rv = self.invoke(ctx) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] return callback(*args, **kwargs) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] return f(get_current_context(), *args, **kwargs) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] task.run_step( +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] self._exec_step_function(step_func) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] step_function() +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] self.missing_values = find_nan_counts(self.df) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 06:52:24.024 [54/fill_missing_data/578 (pid 87282)] Arguments: (8289,) +2024-07-23 06:52:24.025 [54/fill_missing_data/578 (pid 87282)] Task finished successfully. +2024-07-23 06:52:24.057 [54/find_median/579 (pid 87315)] Task is starting. +2024-07-23 06:52:25.510 [54/find_median/579 (pid 87315)] INFO:__main__:Computing and using median.. +2024-07-23 06:52:26.015 [54/find_median/579 (pid 87315)] Task finished successfully. +2024-07-23 06:52:26.045 [54/aggregate_data/580 (pid 87326)] Task is starting. +2024-07-23 06:52:27.486 [54/aggregate_data/580 (pid 87326)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 06:52:31.264 [54/aggregate_data/580 (pid 87326)] Task finished successfully. +2024-07-23 06:52:31.292 [54/split_data/581 (pid 87359)] Task is starting. +2024-07-23 06:52:32.746 [54/split_data/581 (pid 87359)] INFO:__main__:Splitting data into test and train... +2024-07-23 06:52:36.555 [54/split_data/581 (pid 87359)] Task finished successfully. +2024-07-23 06:52:36.588 [54/make_x_y/582 (pid 87383)] Task is starting. +2024-07-23 06:52:38.413 [54/make_x_y/582 (pid 87383)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 06:52:38.804 [54/make_x_y/582 (pid 87383)] Shape of y_train: (6648, 1) +2024-07-23 06:52:38.804 [54/make_x_y/582 (pid 87383)] Shape of X_test: (1392, 360, 1) +2024-07-23 06:52:38.804 [54/make_x_y/582 (pid 87383)] Shape of y_test: (1392, 1) +2024-07-23 06:52:38.805 [54/make_x_y/582 (pid 87383)] Task finished successfully. +2024-07-23 06:52:38.836 [54/cross_validate_train/583 (pid 87394)] Task is starting. +2024-07-23 06:52:40.314 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Creating bgd_office_100001_200000_LSTM +2024-07-23 06:52:40.315 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Performing cross validation.. +2024-07-23 06:52:42.810 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 1/50, Train Loss: 0.252840866787093, Val Loss: 0.21428587521825518 +2024-07-23 06:52:44.725 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 2/50, Train Loss: 0.17557114894901002, Val Loss: 0.19874309599399567 +2024-07-23 06:52:46.636 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 3/50, Train Loss: 0.17440403997898102, Val Loss: 0.20076852015086583 +2024-07-23 06:52:48.530 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 4/50, Train Loss: 0.16249786423785345, Val Loss: 0.19078844955989294 +2024-07-23 06:52:50.435 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 5/50, Train Loss: 0.1529794414128576, Val Loss: 0.17441440650394985 +2024-07-23 06:52:52.329 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 6/50, Train Loss: 0.13825340356145585, Val Loss: 0.14931060820817948 +2024-07-23 06:52:54.255 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 7/50, Train Loss: 0.11745526332940374, Val Loss: 0.13368296772241592 +2024-07-23 06:52:56.189 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 8/50, Train Loss: 0.10962401958448546, Val Loss: 0.12165975698402949 +2024-07-23 06:52:58.105 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 9/50, Train Loss: 0.1009529682142394, Val Loss: 0.11213109684841974 +2024-07-23 06:53:00.030 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 10/50, Train Loss: 0.09463658854365349, Val Loss: 0.10674702056816646 +2024-07-23 06:53:01.954 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 11/50, Train Loss: 0.08989361141409193, Val Loss: 0.1020225201334272 +2024-07-23 06:53:03.872 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 12/50, Train Loss: 0.08570567752633776, Val Loss: 0.09734562443835394 +2024-07-23 06:53:05.785 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 13/50, Train Loss: 0.08219096139073372, Val Loss: 0.09526331233126777 +2024-07-23 06:53:07.701 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 14/50, Train Loss: 0.08003714797752244, Val Loss: 0.09133875668048859 +2024-07-23 06:53:09.619 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 15/50, Train Loss: 0.0776118495634624, Val Loss: 0.08864144799964768 +2024-07-23 06:53:11.546 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 16/50, Train Loss: 0.0761810339987278, Val Loss: 0.08708237100924765 +2024-07-23 06:53:13.516 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 17/50, Train Loss: 0.07522592917084694, Val Loss: 0.08458858941282545 +2024-07-23 06:53:15.433 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 18/50, Train Loss: 0.07462769885148321, Val Loss: 0.08274128351892744 +2024-07-23 06:53:17.339 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 19/50, Train Loss: 0.07292015573808125, Val Loss: 0.08104710174458367 +2024-07-23 06:53:19.246 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 20/50, Train Loss: 0.07058439467634474, Val Loss: 0.07909890349422183 +2024-07-23 06:53:21.158 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 21/50, Train Loss: 0.06763256649885858, Val Loss: 0.07767893757138933 +2024-07-23 06:53:23.066 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 22/50, Train Loss: 0.06577006982905524, Val Loss: 0.07662062059555735 +2024-07-23 06:53:24.975 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 23/50, Train Loss: 0.06426788153392927, Val Loss: 0.0754877789744309 +2024-07-23 06:53:26.895 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 24/50, Train Loss: 0.06267769443137305, Val Loss: 0.0743036755493709 +2024-07-23 06:53:28.844 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 25/50, Train Loss: 0.06111568595681872, Val Loss: 0.07291104931916509 +2024-07-23 06:53:30.773 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 26/50, Train Loss: 0.05907252164823668, Val Loss: 0.0718620563192027 +2024-07-23 06:53:32.717 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 27/50, Train Loss: 0.057553002131836756, Val Loss: 0.07074936564479556 +2024-07-23 06:53:34.686 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 28/50, Train Loss: 0.05610037499240467, Val Loss: 0.06924350591642515 +2024-07-23 06:53:36.609 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 29/50, Train Loss: 0.05485122597643307, Val Loss: 0.06738026386925153 +2024-07-23 06:53:38.548 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 30/50, Train Loss: 0.05334740419472967, Val Loss: 0.06606377948607717 +2024-07-23 06:53:40.486 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 31/50, Train Loss: 0.05220679406608854, Val Loss: 0.06391824526446206 +2024-07-23 06:53:42.462 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 32/50, Train Loss: 0.051483752472060065, Val Loss: 0.061964159246001925 +2024-07-23 06:53:44.404 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 33/50, Train Loss: 0.05101689866610936, Val Loss: 0.0607499537723405 +2024-07-23 06:53:46.350 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 34/50, Train Loss: 0.05053588769265584, Val Loss: 0.05924389117530414 +2024-07-23 06:53:48.301 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 35/50, Train Loss: 0.04959987487111773, Val Loss: 0.05831247057233538 +2024-07-23 06:53:50.230 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 36/50, Train Loss: 0.049579725787043574, Val Loss: 0.05671470686793327 +2024-07-23 06:53:52.185 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 37/50, Train Loss: 0.04874153680035046, Val Loss: 0.05575591623783112 +2024-07-23 06:53:54.135 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 38/50, Train Loss: 0.04881635148610387, Val Loss: 0.05554958177464349 +2024-07-23 06:53:56.075 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 39/50, Train Loss: 0.04877953167472567, Val Loss: 0.05510047732719353 +2024-07-23 06:53:58.008 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 40/50, Train Loss: 0.047942706836121424, Val Loss: 0.054065140656062535 +2024-07-23 06:53:59.951 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 41/50, Train Loss: 0.0479269092636449, Val Loss: 0.05340289819453444 +2024-07-23 06:54:01.921 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 42/50, Train Loss: 0.048081712531191964, Val Loss: 0.053298230575663706 +2024-07-23 06:54:03.874 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 43/50, Train Loss: 0.04787134964551244, Val Loss: 0.052887720455016406 +2024-07-23 06:54:05.810 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 44/50, Train Loss: 0.04827836560351508, Val Loss: 0.05324237075235162 +2024-07-23 06:54:07.746 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 45/50, Train Loss: 0.04777423686214856, Val Loss: 0.05282900306795325 +2024-07-23 06:54:09.690 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 46/50, Train Loss: 0.04723497118268694, Val Loss: 0.05257627580847059 +2024-07-23 06:54:11.639 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 47/50, Train Loss: 0.04720967199121203, Val Loss: 0.052800655897174566 +2024-07-23 06:54:13.590 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 48/50, Train Loss: 0.04722764108862196, Val Loss: 0.05185954086482525 +2024-07-23 06:54:15.538 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 49/50, Train Loss: 0.0473843586231981, Val Loss: 0.053332600529704774 +2024-07-23 06:54:17.479 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 50/50, Train Loss: 0.04677669139845031, Val Loss: 0.05256114261490958 +2024-07-23 06:54:17.480 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Fold 0, MAPE: 3.40% +2024-07-23 06:54:17.768 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_100001_200000_LSTM//train_f0_bgd_office_100001_200000_LSTM.png +2024-07-23 06:54:21.244 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 1/50, Train Loss: 0.042296780566019675, Val Loss: 0.03945992487881865 +2024-07-23 06:54:24.653 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 2/50, Train Loss: 0.03640598106597151, Val Loss: 0.03863883880632264 +2024-07-23 06:54:28.055 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 3/50, Train Loss: 0.03596579166395324, Val Loss: 0.03724217335028308 +2024-07-23 06:54:31.476 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 4/50, Train Loss: 0.03607544451951981, Val Loss: 0.03741080526794706 +2024-07-23 06:54:34.905 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 5/50, Train Loss: 0.03597944189927408, Val Loss: 0.0368483379483223 +2024-07-23 06:54:38.336 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 6/50, Train Loss: 0.035891481222850935, Val Loss: 0.036559022696954865 +2024-07-23 06:54:41.753 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 7/50, Train Loss: 0.035858330157186306, Val Loss: 0.03588185805295195 +2024-07-23 06:54:45.172 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 8/50, Train Loss: 0.03592264354228973, Val Loss: 0.03667424757565771 +2024-07-23 06:54:48.578 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 9/50, Train Loss: 0.03570968548634223, Val Loss: 0.037696291665945736 +2024-07-23 06:54:51.996 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 10/50, Train Loss: 0.03567791770079306, Val Loss: 0.03661389175270285 +2024-07-23 06:54:55.402 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 11/50, Train Loss: 0.03616571945271322, Val Loss: 0.035321395897439545 +2024-07-23 06:54:58.809 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 12/50, Train Loss: 0.035729808573211945, Val Loss: 0.0360358859279326 +2024-07-23 06:55:02.216 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 13/50, Train Loss: 0.035933424319539754, Val Loss: 0.0353864310575383 +2024-07-23 06:55:05.640 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 14/50, Train Loss: 0.035873055191976685, Val Loss: 0.0357568268265043 +2024-07-23 06:55:09.051 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 15/50, Train Loss: 0.03603173725839172, Val Loss: 0.03581218778022698 +2024-07-23 06:55:12.505 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 16/50, Train Loss: 0.03596337190163987, Val Loss: 0.03651630585747106 +2024-07-23 06:55:15.903 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 17/50, Train Loss: 0.03614944365939924, Val Loss: 0.03485537820628711 +2024-07-23 06:55:19.324 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 18/50, Train Loss: 0.03607158682176045, Val Loss: 0.03340751507452556 +2024-07-23 06:55:22.756 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 19/50, Train Loss: 0.03564113902726344, Val Loss: 0.033799637321914947 +2024-07-23 06:55:26.180 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 20/50, Train Loss: 0.03580373283475637, Val Loss: 0.03361778541335038 +2024-07-23 06:55:29.608 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 21/50, Train Loss: 0.03566659196679081, Val Loss: 0.03389127791992256 +2024-07-23 06:55:33.069 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 22/50, Train Loss: 0.03542616817035845, Val Loss: 0.033340074494481085 +2024-07-23 06:55:36.479 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 23/50, Train Loss: 0.03533965615289552, Val Loss: 0.03300141053540366 +2024-07-23 06:55:39.932 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 24/50, Train Loss: 0.035506121681204865, Val Loss: 0.033519500919750755 +2024-07-23 06:55:43.383 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 25/50, Train Loss: 0.035409292073122094, Val Loss: 0.03509662002325058 +2024-07-23 06:55:46.806 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 26/50, Train Loss: 0.03583611005118915, Val Loss: 0.035396419305886544 +2024-07-23 06:55:50.271 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 27/50, Train Loss: 0.03536923940160445, Val Loss: 0.03411816672555038 +2024-07-23 06:55:53.728 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 28/50, Train Loss: 0.035314423005495754, Val Loss: 0.032948833171810424 +2024-07-23 06:55:57.151 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 29/50, Train Loss: 0.03535505482660872, Val Loss: 0.03487387847687517 +2024-07-23 06:56:00.586 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 30/50, Train Loss: 0.035623274291200296, Val Loss: 0.03532327642398221 +2024-07-23 06:56:04.032 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 31/50, Train Loss: 0.03523998220584222, Val Loss: 0.036243950628808565 +2024-07-23 06:56:07.464 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 32/50, Train Loss: 0.03529050265039716, Val Loss: 0.03325243459216186 +2024-07-23 06:56:10.944 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 33/50, Train Loss: 0.03496173641511372, Val Loss: 0.03303290382027626 +2024-07-23 06:56:14.411 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 34/50, Train Loss: 0.035032710752316884, Val Loss: 0.03290831026222025 +2024-07-23 06:56:17.846 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 35/50, Train Loss: 0.03466951879007476, Val Loss: 0.0328616342906441 +2024-07-23 06:56:21.290 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 36/50, Train Loss: 0.03491459832127605, Val Loss: 0.03563751567687307 +2024-07-23 06:56:24.725 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 37/50, Train Loss: 0.03467365971633366, Val Loss: 0.03537186895098005 +2024-07-23 06:56:28.155 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 38/50, Train Loss: 0.03478443045169115, Val Loss: 0.03352655012692724 +2024-07-23 06:56:31.591 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 39/50, Train Loss: 0.03493140635213682, Val Loss: 0.034444703906774524 +2024-07-23 06:56:35.046 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 40/50, Train Loss: 0.034743745997548106, Val Loss: 0.03255580317761217 +2024-07-23 06:56:38.511 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 41/50, Train Loss: 0.03475785274058581, Val Loss: 0.03416499766920294 +2024-07-23 06:56:41.963 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 42/50, Train Loss: 0.03456777677472148, Val Loss: 0.034040926503283636 +2024-07-23 06:56:45.416 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 43/50, Train Loss: 0.03436198899788516, Val Loss: 0.03303710781037807 +2024-07-23 06:56:48.844 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 44/50, Train Loss: 0.034428961601640495, Val Loss: 0.03293536555554186 +2024-07-23 06:56:52.287 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 45/50, Train Loss: 0.034620102122426034, Val Loss: 0.033174030323113717 +2024-07-23 06:56:55.718 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 46/50, Train Loss: 0.03447067732257503, Val Loss: 0.03325705640017986 +2024-07-23 06:56:59.147 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 47/50, Train Loss: 0.03432046193629503, Val Loss: 0.03329276575573853 +2024-07-23 06:57:02.615 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 48/50, Train Loss: 0.03454731282378946, Val Loss: 0.03321693161768573 +2024-07-23 06:57:06.035 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 49/50, Train Loss: 0.034354922228625843, Val Loss: 0.03287818522325584 +2024-07-23 06:57:09.470 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 50/50, Train Loss: 0.034283898584544656, Val Loss: 0.033055354708007405 +2024-07-23 06:57:09.470 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:57:09.470 No tasks are waiting in the queue. +2024-07-23 06:57:09.470 4 steps have not started: validate_model, end, log_model, model_scores. +2024-07-23 06:57:09.470 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Fold 1, MAPE: 2.82% +2024-07-23 06:57:09.579 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_100001_200000_LSTM//train_f1_bgd_office_100001_200000_LSTM.png +2024-07-23 06:57:14.519 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 1/50, Train Loss: 0.03401596539725478, Val Loss: 0.03514870516955852 +2024-07-23 06:57:19.440 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 2/50, Train Loss: 0.03397796046920121, Val Loss: 0.03465929622096675 +2024-07-23 06:57:24.346 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 3/50, Train Loss: 0.033988477053264014, Val Loss: 0.0345931743404695 +2024-07-23 06:57:29.263 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 4/50, Train Loss: 0.03365886127218031, Val Loss: 0.033778523919837815 +2024-07-23 06:57:34.173 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 5/50, Train Loss: 0.03382514092999582, Val Loss: 0.034099329369408744 +2024-07-23 06:57:39.052 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 6/50, Train Loss: 0.03400634850661915, Val Loss: 0.03457093712474619 +2024-07-23 06:57:43.947 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 7/50, Train Loss: 0.03375980879466694, Val Loss: 0.03484067278248923 +2024-07-23 06:57:48.829 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 8/50, Train Loss: 0.03394710104196118, Val Loss: 0.033141435044152394 +2024-07-23 06:57:53.765 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 9/50, Train Loss: 0.0336793687624427, Val Loss: 0.03367016528333936 +2024-07-23 06:57:58.698 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 10/50, Train Loss: 0.03399909307392171, Val Loss: 0.034801644991551126 +2024-07-23 06:58:03.626 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 11/50, Train Loss: 0.033857657896498076, Val Loss: 0.03339251998279776 +2024-07-23 06:58:08.537 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 12/50, Train Loss: 0.033729985857812256, Val Loss: 0.03387515539569514 +2024-07-23 06:58:13.441 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 13/50, Train Loss: 0.03394346254376265, Val Loss: 0.034215780720114705 +2024-07-23 06:58:18.341 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 14/50, Train Loss: 0.03391837622397221, Val Loss: 0.03338783170495715 +2024-07-23 06:58:23.247 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 15/50, Train Loss: 0.03362555907537731, Val Loss: 0.03391672175909791 +2024-07-23 06:58:28.154 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 16/50, Train Loss: 0.033680052030831575, Val Loss: 0.034235854500106404 +2024-07-23 06:58:33.045 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 17/50, Train Loss: 0.03369260126223358, Val Loss: 0.03326385234083448 +2024-07-23 06:58:37.917 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 18/50, Train Loss: 0.033724130399955005, Val Loss: 0.03342030335749899 +2024-07-23 06:58:42.823 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 19/50, Train Loss: 0.03377416029644127, Val Loss: 0.033427680603095464 +2024-07-23 06:58:47.707 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 20/50, Train Loss: 0.0335954947468753, Val Loss: 0.0330884472067867 +2024-07-23 06:58:52.645 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 21/50, Train Loss: 0.03346482053614007, Val Loss: 0.03249275524701391 +2024-07-23 06:58:57.526 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 22/50, Train Loss: 0.03337467979424848, Val Loss: 0.03272983783057758 +2024-07-23 06:59:02.438 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 23/50, Train Loss: 0.03335200624468808, Val Loss: 0.032300500997475216 +2024-07-23 06:59:07.320 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 24/50, Train Loss: 0.033400436773752935, Val Loss: 0.03277873253183705 +2024-07-23 06:59:12.212 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 25/50, Train Loss: 0.033420816547452256, Val Loss: 0.033499736338853836 +2024-07-23 06:59:17.147 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 26/50, Train Loss: 0.033415317499580294, Val Loss: 0.03343155320201601 +2024-07-23 06:59:22.046 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 27/50, Train Loss: 0.03333160177303048, Val Loss: 0.032598465521420754 +2024-07-23 06:59:26.963 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 28/50, Train Loss: 0.033152436873374075, Val Loss: 0.0326039478714977 +2024-07-23 06:59:31.857 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 29/50, Train Loss: 0.03307112922462133, Val Loss: 0.032847614426698 +2024-07-23 06:59:36.773 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 30/50, Train Loss: 0.033242658317948766, Val Loss: 0.032901619587625774 +2024-07-23 06:59:41.669 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 31/50, Train Loss: 0.03310111596678885, Val Loss: 0.03220453661467348 +2024-07-23 06:59:46.571 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 32/50, Train Loss: 0.033163749863608524, Val Loss: 0.032574116438627246 +2024-07-23 06:59:51.528 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 33/50, Train Loss: 0.03300786450003775, Val Loss: 0.031984211451240946 +2024-07-23 06:59:56.428 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 34/50, Train Loss: 0.03294297044451993, Val Loss: 0.032542649603315765 +2024-07-23 07:00:01.320 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 35/50, Train Loss: 0.03296916982015738, Val Loss: 0.032867407266582764 +2024-07-23 07:00:06.717 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 36/50, Train Loss: 0.03320773155428469, Val Loss: 0.03282782036278929 +2024-07-23 07:00:11.611 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 37/50, Train Loss: 0.033062955078024134, Val Loss: 0.03271822519600391 +2024-07-23 07:00:16.498 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 38/50, Train Loss: 0.03285999144785679, Val Loss: 0.032418977256332124 +2024-07-23 07:00:21.388 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 39/50, Train Loss: 0.032940901045759134, Val Loss: 0.03201344721019268 +2024-07-23 07:00:26.326 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 40/50, Train Loss: 0.03267147513822867, Val Loss: 0.03234430934701647 +2024-07-23 07:00:31.225 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 41/50, Train Loss: 0.033000488246146306, Val Loss: 0.03435008344905717 +2024-07-23 07:00:36.133 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 42/50, Train Loss: 0.033115747384727, Val Loss: 0.03270338039313044 +2024-07-23 07:00:41.058 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 43/50, Train Loss: 0.03283438340832408, Val Loss: 0.03199961994375501 +2024-07-23 07:00:45.974 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 44/50, Train Loss: 0.03269426873885095, Val Loss: 0.031336599907704765 +2024-07-23 07:00:50.898 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 45/50, Train Loss: 0.032739826782534905, Val Loss: 0.032719955274036955 +2024-07-23 07:00:55.811 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 46/50, Train Loss: 0.03289436550739293, Val Loss: 0.03188951372035912 +2024-07-23 07:01:00.739 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 47/50, Train Loss: 0.03287350875325501, Val Loss: 0.03188561398003783 +2024-07-23 07:01:05.650 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 48/50, Train Loss: 0.03289952852691595, Val Loss: 0.03178073354065418 +2024-07-23 07:01:10.558 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 49/50, Train Loss: 0.03308301479913867, Val Loss: 0.03209599293768406 +2024-07-23 07:01:15.481 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 50/50, Train Loss: 0.032979048448256575, Val Loss: 0.031538771678294455 +2024-07-23 07:01:15.482 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Fold 2, MAPE: 2.69% +2024-07-23 07:01:15.595 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_100001_200000_LSTM//train_f2_bgd_office_100001_200000_LSTM.png +2024-07-23 07:01:22.004 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 1/50, Train Loss: 0.03265724000152495, Val Loss: 0.03417672073202474 +2024-07-23 07:01:28.376 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 2/50, Train Loss: 0.03254600582148531, Val Loss: 0.034878523488129885 +2024-07-23 07:01:34.780 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 3/50, Train Loss: 0.032694761098610414, Val Loss: 0.03510648336793695 +2024-07-23 07:01:41.176 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 4/50, Train Loss: 0.03306101349671539, Val Loss: 0.03408014492264816 +2024-07-23 07:01:47.572 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 5/50, Train Loss: 0.033073927778348645, Val Loss: 0.034946227392980034 +2024-07-23 07:01:53.965 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 6/50, Train Loss: 0.03313274818251459, Val Loss: 0.034630845646773066 +2024-07-23 07:02:00.328 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 7/50, Train Loss: 0.03323600837867037, Val Loss: 0.034901576276336395 +2024-07-23 07:02:06.752 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 8/50, Train Loss: 0.03306718109001359, Val Loss: 0.03494507420275893 +2024-07-23 07:02:13.160 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 9/50, Train Loss: 0.03297293817343043, Val Loss: 0.03633372437741075 +2024-07-23 07:02:13.160 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:02:13.160 No tasks are waiting in the queue. +2024-07-23 07:02:13.160 4 steps have not started: validate_model, end, log_model, model_scores. +2024-07-23 07:02:19.559 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 10/50, Train Loss: 0.03324368673798849, Val Loss: 0.034721460193395615 +2024-07-23 07:02:25.963 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 11/50, Train Loss: 0.03333835108138675, Val Loss: 0.03572226273162024 +2024-07-23 07:02:32.393 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 12/50, Train Loss: 0.033167760832597024, Val Loss: 0.034669380102838786 +2024-07-23 07:02:38.801 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 13/50, Train Loss: 0.03323055140459709, Val Loss: 0.03513599378722054 +2024-07-23 07:02:45.272 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 14/50, Train Loss: 0.03295421049588447, Val Loss: 0.0348141109836953 +2024-07-23 07:02:51.683 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 15/50, Train Loss: 0.03279072615793712, Val Loss: 0.03592643407838685 +2024-07-23 07:02:58.118 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 16/50, Train Loss: 0.03302044629139437, Val Loss: 0.034780304080673625 +2024-07-23 07:03:04.531 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 17/50, Train Loss: 0.032953927708829905, Val Loss: 0.03598676499511514 +2024-07-23 07:03:10.949 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 18/50, Train Loss: 0.03278694581910432, Val Loss: 0.03466964167143617 +2024-07-23 07:03:17.429 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 19/50, Train Loss: 0.03262695210496727, Val Loss: 0.03535232341715268 +2024-07-23 07:03:23.850 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 20/50, Train Loss: 0.03258841693830147, Val Loss: 0.03474529784704958 +2024-07-23 07:03:30.253 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 21/50, Train Loss: 0.03271756440454678, Val Loss: 0.03453784457274846 +2024-07-23 07:03:36.685 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 22/50, Train Loss: 0.03233102848418325, Val Loss: 0.034124146401882174 +2024-07-23 07:03:43.164 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 23/50, Train Loss: 0.032583577531597595, Val Loss: 0.03586643918284348 +2024-07-23 07:03:49.603 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 24/50, Train Loss: 0.03240722188685866, Val Loss: 0.03508700994508607 +2024-07-23 07:03:56.060 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 25/50, Train Loss: 0.03255223004455618, Val Loss: 0.03369138262101582 +2024-07-23 07:04:02.526 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 26/50, Train Loss: 0.03263238076415422, Val Loss: 0.03422408311494759 +2024-07-23 07:04:08.967 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 27/50, Train Loss: 0.032448132435302084, Val Loss: 0.034791649611932894 +2024-07-23 07:04:15.413 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 28/50, Train Loss: 0.03243436298514013, Val Loss: 0.03498243375548295 +2024-07-23 07:04:21.864 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 29/50, Train Loss: 0.03237588867116317, Val Loss: 0.03359618974583489 +2024-07-23 07:04:28.274 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 30/50, Train Loss: 0.03220087362171935, Val Loss: 0.03393071724900178 +2024-07-23 07:04:34.716 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 31/50, Train Loss: 0.03249685357746889, Val Loss: 0.03415244040744645 +2024-07-23 07:04:41.124 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 32/50, Train Loss: 0.03248354574169615, Val Loss: 0.03421902805566788 +2024-07-23 07:04:47.552 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 33/50, Train Loss: 0.032485009432375, Val Loss: 0.03396596876638276 +2024-07-23 07:04:53.978 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 34/50, Train Loss: 0.032523629758105, Val Loss: 0.03382333623511451 +2024-07-23 07:05:00.453 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 35/50, Train Loss: 0.03217503870669886, Val Loss: 0.034174688160419464 +2024-07-23 07:05:06.905 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 36/50, Train Loss: 0.032424814905301275, Val Loss: 0.03384921226118292 +2024-07-23 07:05:13.347 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 37/50, Train Loss: 0.032577380872994874, Val Loss: 0.035067827520625934 +2024-07-23 07:05:19.817 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 38/50, Train Loss: 0.03233054667550454, Val Loss: 0.03455613505627428 +2024-07-23 07:05:26.291 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 39/50, Train Loss: 0.032219908126502585, Val Loss: 0.03563612092818533 +2024-07-23 07:05:32.742 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 40/50, Train Loss: 0.03212669605670644, Val Loss: 0.03455615804663726 +2024-07-23 07:05:39.172 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 41/50, Train Loss: 0.03230716045543873, Val Loss: 0.03445912296218531 +2024-07-23 07:05:45.624 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 42/50, Train Loss: 0.03213949912904407, Val Loss: 0.034156856153692516 +2024-07-23 07:05:52.112 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 43/50, Train Loss: 0.03220642380845204, Val Loss: 0.03468618749507836 +2024-07-23 07:05:58.593 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 44/50, Train Loss: 0.032122596012924214, Val Loss: 0.034708477609923905 +2024-07-23 07:06:05.080 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 45/50, Train Loss: 0.031958754073908864, Val Loss: 0.034046931458371024 +2024-07-23 07:06:11.531 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 46/50, Train Loss: 0.03197038339839565, Val Loss: 0.034715345874428746 +2024-07-23 07:06:18.012 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 47/50, Train Loss: 0.03196605812195394, Val Loss: 0.03430350710238729 +2024-07-23 07:06:24.502 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 48/50, Train Loss: 0.031979619706277364, Val Loss: 0.03410235813685826 +2024-07-23 07:06:30.963 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 49/50, Train Loss: 0.031886925719839206, Val Loss: 0.03468564275119986 +2024-07-23 07:06:37.409 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 50/50, Train Loss: 0.032264001680899865, Val Loss: 0.03504462077149323 +2024-07-23 07:06:37.409 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Fold 3, MAPE: 3.05% +2024-07-23 07:06:37.518 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_100001_200000_LSTM//train_f3_bgd_office_100001_200000_LSTM.png +2024-07-23 07:06:45.456 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 1/50, Train Loss: 0.03221467646887933, Val Loss: 0.0341631717979908 +2024-07-23 07:06:53.415 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 2/50, Train Loss: 0.032192832201548005, Val Loss: 0.033606353508574625 +2024-07-23 07:07:01.302 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 3/50, Train Loss: 0.031955349119915356, Val Loss: 0.034377358587724824 +2024-07-23 07:07:09.306 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 4/50, Train Loss: 0.03215645643315096, Val Loss: 0.033315849623509815 +2024-07-23 07:07:17.259 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 5/50, Train Loss: 0.03207397864510616, Val Loss: 0.032555035554936954 +2024-07-23 07:07:17.259 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:07:17.259 No tasks are waiting in the queue. +2024-07-23 07:07:17.259 4 steps have not started: validate_model, end, log_model, model_scores. +2024-07-23 07:07:25.215 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 6/50, Train Loss: 0.031962923566414704, Val Loss: 0.03274159340986184 +2024-07-23 07:07:33.164 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 7/50, Train Loss: 0.03205105814354858, Val Loss: 0.032960017397999766 +2024-07-23 07:07:41.132 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 8/50, Train Loss: 0.031947175565379106, Val Loss: 0.03241662707711969 +2024-07-23 07:07:49.080 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 9/50, Train Loss: 0.03182153554697489, Val Loss: 0.03243973861847605 +2024-07-23 07:07:57.054 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 10/50, Train Loss: 0.031883775556310154, Val Loss: 0.03248399416250842 +2024-07-23 07:08:05.038 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 11/50, Train Loss: 0.032109243227918256, Val Loss: 0.03211761164878096 +2024-07-23 07:08:13.104 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 12/50, Train Loss: 0.03214750170236689, Val Loss: 0.03193930414106164 +2024-07-23 07:08:21.102 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 13/50, Train Loss: 0.0317256019461429, Val Loss: 0.031507919409445355 +2024-07-23 07:08:29.009 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 14/50, Train Loss: 0.03209813340599167, Val Loss: 0.0320462883583137 +2024-07-23 07:08:36.948 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 15/50, Train Loss: 0.03154112912457565, Val Loss: 0.031219795984881265 +2024-07-23 07:08:44.881 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 16/50, Train Loss: 0.03161753487141653, Val Loss: 0.031090874278119632 +2024-07-23 07:08:52.901 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 17/50, Train Loss: 0.03145634439698924, Val Loss: 0.03164645843207836 +2024-07-23 07:09:00.893 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 18/50, Train Loss: 0.031260872323965204, Val Loss: 0.03053084324513163 +2024-07-23 07:09:08.828 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 19/50, Train Loss: 0.031392225481826685, Val Loss: 0.03104445141341005 +2024-07-23 07:09:16.823 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 20/50, Train Loss: 0.03145174064470091, Val Loss: 0.03043017637516771 +2024-07-23 07:09:24.777 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 21/50, Train Loss: 0.03178292633858563, Val Loss: 0.030730107479861806 +2024-07-23 07:09:32.726 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 22/50, Train Loss: 0.031429938757899165, Val Loss: 0.031022705190948078 +2024-07-23 07:09:40.676 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 23/50, Train Loss: 0.03208949546404611, Val Loss: 0.030855933310730117 +2024-07-23 07:09:48.656 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 24/50, Train Loss: 0.031036869430079543, Val Loss: 0.03022401210452829 +2024-07-23 07:09:56.694 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 25/50, Train Loss: 0.03105324766887673, Val Loss: 0.030384223642093793 +2024-07-23 07:10:04.629 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 26/50, Train Loss: 0.031119856244788087, Val Loss: 0.03026412645620959 +2024-07-23 07:10:12.582 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 27/50, Train Loss: 0.031160054407243072, Val Loss: 0.030124216420309883 +2024-07-23 07:10:20.561 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 28/50, Train Loss: 0.031068804138607676, Val Loss: 0.030644250341824122 +2024-07-23 07:10:28.566 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 29/50, Train Loss: 0.030923409366059577, Val Loss: 0.0306265438241618 +2024-07-23 07:10:36.595 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 30/50, Train Loss: 0.031052849630172224, Val Loss: 0.03021935245820454 +2024-07-23 07:10:44.601 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 31/50, Train Loss: 0.030889619505782236, Val Loss: 0.030984248699886457 +2024-07-23 07:10:52.586 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 32/50, Train Loss: 0.03077616647485344, Val Loss: 0.03032374009490013 +2024-07-23 07:11:00.593 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 33/50, Train Loss: 0.030612637481555856, Val Loss: 0.03111414510224547 +2024-07-23 07:11:08.599 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 34/50, Train Loss: 0.030780037426143544, Val Loss: 0.029987106791564397 +2024-07-23 07:11:16.664 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 35/50, Train Loss: 0.03039856554790475, Val Loss: 0.030478543947849955 +2024-07-23 07:11:24.671 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 36/50, Train Loss: 0.030716974823468034, Val Loss: 0.03068844931466239 +2024-07-23 07:11:32.690 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 37/50, Train Loss: 0.030460206160171963, Val Loss: 0.03018070789320128 +2024-07-23 07:11:40.687 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 38/50, Train Loss: 0.030141198911286634, Val Loss: 0.030498117421354567 +2024-07-23 07:11:48.694 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 39/50, Train Loss: 0.030253278262827588, Val Loss: 0.03006247931293079 +2024-07-23 07:11:56.727 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 40/50, Train Loss: 0.03027466928650593, Val Loss: 0.03037768660911492 +2024-07-23 07:12:04.772 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 41/50, Train Loss: 0.030217959427799302, Val Loss: 0.030159645367945943 +2024-07-23 07:12:12.755 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 42/50, Train Loss: 0.030783830927791953, Val Loss: 0.030905787167804583 +2024-07-23 07:12:20.813 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 43/50, Train Loss: 0.03008111116701159, Val Loss: 0.03148777335882187 +2024-07-23 07:12:20.813 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 07:12:20.813 No tasks are waiting in the queue. +2024-07-23 07:12:20.813 4 steps have not started: validate_model, end, log_model, model_scores. +2024-07-23 07:12:28.815 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 44/50, Train Loss: 0.030342967795400785, Val Loss: 0.03207286447286606 +2024-07-23 07:12:36.839 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 45/50, Train Loss: 0.030198168459123577, Val Loss: 0.030804341126765524 +2024-07-23 07:12:44.881 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 46/50, Train Loss: 0.030093806710137033, Val Loss: 0.031340354681015016 +2024-07-23 07:12:52.904 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 47/50, Train Loss: 0.029913990372984575, Val Loss: 0.030431282147765158 +2024-07-23 07:13:00.939 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 48/50, Train Loss: 0.030262325151727117, Val Loss: 0.030450493044086865 +2024-07-23 07:13:08.917 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 49/50, Train Loss: 0.03043467357711888, Val Loss: 0.030311675635831696 +2024-07-23 07:13:16.955 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Epoch 50/50, Train Loss: 0.030220204536085843, Val Loss: 0.030584178226334708 +2024-07-23 07:13:16.955 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Fold 4, MAPE: 2.61% +2024-07-23 07:13:17.066 [54/cross_validate_train/583 (pid 87394)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_100001_200000_LSTM//train_f4_bgd_office_100001_200000_LSTM.png +2024-07-23 07:13:21.523 [54/cross_validate_train/583 (pid 87394)] Task finished successfully. +2024-07-23 07:13:21.555 [54/model_scores/584 (pid 92110)] Task is starting. +2024-07-23 07:13:23.020 [54/model_scores/584 (pid 92110)] INFO:__main__:Average Train Loss across all folds: 0.03530476892964745 +2024-07-23 07:13:26.940 [54/model_scores/584 (pid 92110)] INFO:__main__:Average Validation Loss across all folds: 0.03655681359980788 +2024-07-23 07:13:26.940 [54/model_scores/584 (pid 92110)] INFO:__main__:Average MAPE across all folds: 2.91% +2024-07-23 07:13:26.941 [54/model_scores/584 (pid 92110)] Task finished successfully. +2024-07-23 07:13:26.969 [54/validate_model/585 (pid 92142)] Task is starting. +2024-07-23 07:13:28.430 [54/validate_model/585 (pid 92142)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 07:13:29.200 [54/validate_model/585 (pid 92142)] INFO:__main__:Test Set MAPE: 3.12% +2024-07-23 07:13:29.557 [54/validate_model/585 (pid 92142)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_office_100001_200000_LSTM//test_bgd_office_100001_200000_LSTM.png +2024-07-23 07:13:29.990 [54/validate_model/585 (pid 92142)] Task finished successfully. +2024-07-23 07:13:30.018 [54/log_model/586 (pid 92153)] Task is starting. +2024-07-23 07:13:31.484 [54/log_model/586 (pid 92153)] INFO:__main__:Logging model bgd_office_100001_200000_LSTM +2024-07-23 07:13:31.486 [54/log_model/586 (pid 92153)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_office_100001_200000_LSTM//bgd_office_100001_200000_LSTM.pth +2024-07-23 07:13:35.385 [54/log_model/586 (pid 92153)] Task finished successfully. +2024-07-23 07:13:35.416 [54/end/587 (pid 92188)] Task is starting. +2024-07-23 07:13:36.885 [54/end/587 (pid 92188)] INFO:__main__:Pipeline end. +2024-07-23 07:13:37.194 [54/end/587 (pid 92188)] Task finished successfully. +2024-07-23 07:13:37.194 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/scaler_bgd_office_100001_200000_LSTM.pkl b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/scaler_bgd_office_100001_200000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..eb36d42c7ae84310205498457ec62fb94085239f --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/scaler_bgd_office_100001_200000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ac75c36eae42ffc559dc82f6371c86568ffe289384240db780777a83b7a42c +size 557 diff --git a/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/test_bgd_office_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/test_bgd_office_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..1a0ff85a38dcfc5391b4263470639e235d5d338a Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/test_bgd_office_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f0_bgd_office_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f0_bgd_office_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..d95f8d5819910fd7c9aa16be3d53274320dd0f77 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f0_bgd_office_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f1_bgd_office_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f1_bgd_office_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..5499ab399c27a418262230845236c53ca23ecc9c Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f1_bgd_office_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f2_bgd_office_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f2_bgd_office_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb857e78bf34fd476184f33f894a51df53c9c6a Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f2_bgd_office_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f3_bgd_office_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f3_bgd_office_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..cad9a3625fc3a6107a38fd2c4b97fbe52ae9a726 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f3_bgd_office_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f4_bgd_office_100001_200000_LSTM.png b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f4_bgd_office_100001_200000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..74120b4b62d31107652b45ecfece81a31ed40a25 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_100001_200000_LSTM/train_f4_bgd_office_100001_200000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/bgd_office_10001_25000_LSTM.pth b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/bgd_office_10001_25000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..563c43a29b728d54270d343842041bd63397d03b --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/bgd_office_10001_25000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fa89c1607081c8e5860cf7fe4c0c4f119692f803aab9cadb92e7fe5170c7ec7 +size 46736 diff --git a/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/output.txt b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..aeed51b5a3ca3e2c6f71af14d863a7ed18b09910 --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/output.txt @@ -0,0 +1,761 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-23 06:09:46.321 Workflow starting (run-id 52): +2024-07-23 06:09:46.389 [52/start/547 (pid 77349)] Task is starting. +2024-07-23 06:09:47.850 [52/start/547 (pid 77349)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 06:09:48.148 [52/start/547 (pid 77349)] Task finished successfully. +2024-07-23 06:09:48.181 [52/ingest/548 (pid 77364)] Task is starting. +2024-07-23 06:09:49.637 [52/ingest/548 (pid 77364)] INFO:__main__:Fetching dataframe.. +2024-07-23 06:09:49.653 [52/ingest/548 (pid 77364)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 06:09:53.500 [52/ingest/548 (pid 77364)] Task finished successfully. +2024-07-23 06:09:53.529 [52/pick_2017_data/549 (pid 77397)] Task is starting. +2024-07-23 06:09:54.986 [52/pick_2017_data/549 (pid 77397)] INFO:__main__:Picking 2017 data.. +2024-07-23 06:09:55.287 [52/pick_2017_data/549 (pid 77397)] Task finished successfully. +2024-07-23 06:09:55.318 [52/fill_missing_data/550 (pid 77401)] Task is starting. +2024-07-23 06:09:56.813 [52/fill_missing_data/550 (pid 77401)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 06:09:56.819 [52/fill_missing_data/550 (pid 77401)] INFO:__main__:NaN counts per column: +2024-07-23 06:09:56.819 [52/fill_missing_data/550 (pid 77401)] INFO:__main__:Panther_office_Larry 12 +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] Panther_office_Christian 12 +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] Panther_office_Christin 586 +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] Panther_office_Antonette 11 +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] Panther_office_Lois 11 +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] Cockatoo_office_Lorraine 127 +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] dtype: int64 +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] --- Logging error --- +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] Traceback (most recent call last): +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] msg = self.format(record) +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] return fmt.format(record) +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] record.message = record.getMessage() +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] msg = msg % self.args +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] TypeError: not all arguments converted during string formatting +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] Call stack: +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] BGD_LinearFlow() +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] cli.main(self) +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] return func(*args, **kwargs) +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] return self.main(*args, **kwargs) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] rv = self.invoke(ctx) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] return callback(*args, **kwargs) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] return f(get_current_context(), *args, **kwargs) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] task.run_step( +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] self._exec_step_function(step_func) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] step_function() +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] self.missing_values = find_nan_counts(self.df) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] Arguments: (759,) +2024-07-23 06:09:57.585 [52/fill_missing_data/550 (pid 77401)] Task finished successfully. +2024-07-23 06:09:57.617 [52/find_median/551 (pid 77420)] Task is starting. +2024-07-23 06:09:59.060 [52/find_median/551 (pid 77420)] INFO:__main__:Computing and using median.. +2024-07-23 06:09:59.557 [52/find_median/551 (pid 77420)] Task finished successfully. +2024-07-23 06:09:59.589 [52/aggregate_data/552 (pid 77433)] Task is starting. +2024-07-23 06:10:01.092 [52/aggregate_data/552 (pid 77433)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 06:10:04.907 [52/aggregate_data/552 (pid 77433)] Task finished successfully. +2024-07-23 06:10:04.937 [52/split_data/553 (pid 77457)] Task is starting. +2024-07-23 06:10:06.417 [52/split_data/553 (pid 77457)] INFO:__main__:Splitting data into test and train... +2024-07-23 06:10:10.268 [52/split_data/553 (pid 77457)] Task finished successfully. +2024-07-23 06:10:10.297 [52/make_x_y/554 (pid 77491)] Task is starting. +2024-07-23 06:10:12.102 [52/make_x_y/554 (pid 77491)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 06:10:12.502 [52/make_x_y/554 (pid 77491)] Shape of y_train: (6648, 1) +2024-07-23 06:10:12.502 [52/make_x_y/554 (pid 77491)] Shape of X_test: (1392, 360, 1) +2024-07-23 06:10:12.502 [52/make_x_y/554 (pid 77491)] Shape of y_test: (1392, 1) +2024-07-23 06:10:12.503 [52/make_x_y/554 (pid 77491)] Task finished successfully. +2024-07-23 06:10:12.532 [52/cross_validate_train/555 (pid 77502)] Task is starting. +2024-07-23 06:10:13.979 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Creating bgd_office_10001_25000_LSTM +2024-07-23 06:10:13.979 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Performing cross validation.. +2024-07-23 06:10:16.431 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 1/50, Train Loss: 0.3283811105149133, Val Loss: 0.2334502935409546 +2024-07-23 06:10:18.307 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 2/50, Train Loss: 0.18604708037206105, Val Loss: 0.19218752256461552 +2024-07-23 06:10:20.177 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 3/50, Train Loss: 0.1820324352809361, Val Loss: 0.1852754688688687 +2024-07-23 06:10:22.113 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 4/50, Train Loss: 0.17465226245777948, Val Loss: 0.1789770728775433 +2024-07-23 06:10:23.992 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 5/50, Train Loss: 0.16209749643291746, Val Loss: 0.16681971060378212 +2024-07-23 06:10:25.935 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 6/50, Train Loss: 0.14461982186351505, Val Loss: 0.1761472665837833 +2024-07-23 06:10:27.854 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 7/50, Train Loss: 0.13406049183436802, Val Loss: 0.1794852893267359 +2024-07-23 06:10:29.772 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 8/50, Train Loss: 0.12415156066417694, Val Loss: 0.16730481684207915 +2024-07-23 06:10:31.706 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 9/50, Train Loss: 0.11923315163169589, Val Loss: 0.1605790859886578 +2024-07-23 06:10:33.633 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 10/50, Train Loss: 0.1135223565357072, Val Loss: 0.16145144466842923 +2024-07-23 06:10:35.554 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 11/50, Train Loss: 0.10743337869644165, Val Loss: 0.15265662223100662 +2024-07-23 06:10:37.494 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 12/50, Train Loss: 0.105156673597438, Val Loss: 0.1438071363738605 +2024-07-23 06:10:39.438 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 13/50, Train Loss: 0.10005942710808345, Val Loss: 0.13834406031029564 +2024-07-23 06:10:41.389 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 14/50, Train Loss: 0.09597869206752097, Val Loss: 0.12842401670558112 +2024-07-23 06:10:43.329 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 15/50, Train Loss: 0.09336301961115429, Val Loss: 0.12524693033524922 +2024-07-23 06:10:45.277 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 16/50, Train Loss: 0.08841445360864912, Val Loss: 0.12668206500155585 +2024-07-23 06:10:47.226 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 17/50, Train Loss: 0.0872233271598816, Val Loss: 0.12536321537835257 +2024-07-23 06:10:49.194 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 18/50, Train Loss: 0.12581110405070442, Val Loss: 0.12896148030247007 +2024-07-23 06:10:51.232 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 19/50, Train Loss: 0.1586152174643108, Val Loss: 0.1473173731139728 +2024-07-23 06:10:53.212 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 20/50, Train Loss: 0.14097685856478556, Val Loss: 0.14917159378528594 +2024-07-23 06:10:55.220 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 21/50, Train Loss: 0.13377002647944858, Val Loss: 0.14460732404674803 +2024-07-23 06:10:57.227 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 22/50, Train Loss: 0.1445432741727148, Val Loss: 0.14603024550846644 +2024-07-23 06:10:59.184 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 23/50, Train Loss: 0.12723327023642403, Val Loss: 0.1825240005339895 +2024-07-23 06:11:01.071 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 24/50, Train Loss: 0.1514921241572925, Val Loss: 0.14476177181516375 +2024-07-23 06:11:02.950 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 25/50, Train Loss: 0.153168486058712, Val Loss: 0.13742468463523047 +2024-07-23 06:11:04.808 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 26/50, Train Loss: 0.1477652398603303, Val Loss: 0.1319618997829301 +2024-07-23 06:11:06.695 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 27/50, Train Loss: 0.14341531225613185, Val Loss: 0.12674446552991867 +2024-07-23 06:11:08.578 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 28/50, Train Loss: 0.13842112677437918, Val Loss: 0.12310135556118829 +2024-07-23 06:11:10.473 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 29/50, Train Loss: 0.13297135468040194, Val Loss: 0.11861323692968913 +2024-07-23 06:11:12.375 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 30/50, Train Loss: 0.12697538435459138, Val Loss: 0.11445296513182776 +2024-07-23 06:11:14.250 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 31/50, Train Loss: 0.12145055213144847, Val Loss: 0.11071620753833226 +2024-07-23 06:11:16.130 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 32/50, Train Loss: 0.11568338296243123, Val Loss: 0.10785087027720043 +2024-07-23 06:11:18.002 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 33/50, Train Loss: 0.11038040880646025, Val Loss: 0.10560500643083028 +2024-07-23 06:11:19.887 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 34/50, Train Loss: 0.10479616267340523, Val Loss: 0.10996266731194088 +2024-07-23 06:11:21.787 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 35/50, Train Loss: 0.10030457100697926, Val Loss: 0.11475431706224169 +2024-07-23 06:11:23.657 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 36/50, Train Loss: 0.09852058227573122, Val Loss: 0.11557095391409737 +2024-07-23 06:11:25.559 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 37/50, Train Loss: 0.09602961114474705, Val Loss: 0.11683025785854885 +2024-07-23 06:11:27.453 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 38/50, Train Loss: 0.09572292928184782, Val Loss: 0.12301327841622489 +2024-07-23 06:11:29.354 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 39/50, Train Loss: 0.09638291533504213, Val Loss: 0.11869788255010333 +2024-07-23 06:11:31.270 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 40/50, Train Loss: 0.0945311712367194, Val Loss: 0.11994715673582894 +2024-07-23 06:11:33.149 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 41/50, Train Loss: 0.09379179733140128, Val Loss: 0.11736646103007453 +2024-07-23 06:11:35.025 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 42/50, Train Loss: 0.09315310652766909, Val Loss: 0.1177054260458265 +2024-07-23 06:11:36.921 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 43/50, Train Loss: 0.09263443435941424, Val Loss: 0.11041641852685384 +2024-07-23 06:11:38.808 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 44/50, Train Loss: 0.09077078806502478, Val Loss: 0.1126813143491745 +2024-07-23 06:11:40.702 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 45/50, Train Loss: 0.09082265581403459, Val Loss: 0.11023047225815909 +2024-07-23 06:11:42.595 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 46/50, Train Loss: 0.09010426423379353, Val Loss: 0.11228199686322893 +2024-07-23 06:11:44.488 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 47/50, Train Loss: 0.08949873234544481, Val Loss: 0.10727694141013282 +2024-07-23 06:11:46.359 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 48/50, Train Loss: 0.08896614164113999, Val Loss: 0.11091466822794506 +2024-07-23 06:11:48.280 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 49/50, Train Loss: 0.08876615507262094, Val Loss: 0.10702412469046456 +2024-07-23 06:11:50.174 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 50/50, Train Loss: 0.08758938589266368, Val Loss: 0.1075439670256206 +2024-07-23 06:11:50.174 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Fold 0, MAPE: 15.06% +2024-07-23 06:11:50.482 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_10001_25000_LSTM//train_f0_bgd_office_10001_25000_LSTM.png +2024-07-23 06:11:53.880 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 1/50, Train Loss: 0.07561683787831239, Val Loss: 0.06105837087546076 +2024-07-23 06:11:57.214 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 2/50, Train Loss: 0.07346465710018363, Val Loss: 0.05898297152348927 +2024-07-23 06:12:00.520 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 3/50, Train Loss: 0.07384371869266033, Val Loss: 0.06040537825652531 +2024-07-23 06:12:03.849 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 4/50, Train Loss: 0.07315128727683, Val Loss: 0.05867938303521701 +2024-07-23 06:12:07.189 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 5/50, Train Loss: 0.07217743535126958, Val Loss: 0.0584552879844393 +2024-07-23 06:12:10.526 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 6/50, Train Loss: 0.07307020542877062, Val Loss: 0.05745567455887794 +2024-07-23 06:12:13.852 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 7/50, Train Loss: 0.07266014010778495, Val Loss: 0.056484026568276544 +2024-07-23 06:12:17.151 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 8/50, Train Loss: 0.07295414544641972, Val Loss: 0.05713618706379618 +2024-07-23 06:12:20.449 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 9/50, Train Loss: 0.0729751391602414, Val Loss: 0.06163530871272087 +2024-07-23 06:12:23.770 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 10/50, Train Loss: 0.07333795183471271, Val Loss: 0.06263923261846815 +2024-07-23 06:12:27.060 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 11/50, Train Loss: 0.07140642271510192, Val Loss: 0.0621925705245563 +2024-07-23 06:12:30.399 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 12/50, Train Loss: 0.0702817590641124, Val Loss: 0.06235020224537168 +2024-07-23 06:12:33.702 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 13/50, Train Loss: 0.0703189939792667, Val Loss: 0.06304830983281136 +2024-07-23 06:12:37.024 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 14/50, Train Loss: 0.07004584659423146, Val Loss: 0.06235458361251014 +2024-07-23 06:12:40.381 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 15/50, Train Loss: 0.07007694127304213, Val Loss: 0.0626123675278255 +2024-07-23 06:12:43.754 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 16/50, Train Loss: 0.06862711991582598, Val Loss: 0.06328425673501832 +2024-07-23 06:12:47.094 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 17/50, Train Loss: 0.06983718616621835, Val Loss: 0.06156952923962048 +2024-07-23 06:12:50.506 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 18/50, Train Loss: 0.06703907315220152, Val Loss: 0.05843442029186657 +2024-07-23 06:12:53.980 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 19/50, Train Loss: 0.0660226047039032, Val Loss: 0.05781126490661076 +2024-07-23 06:12:57.437 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 20/50, Train Loss: 0.06808810425656182, Val Loss: 0.0576004181589399 +2024-07-23 06:13:00.864 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 21/50, Train Loss: 0.06559602155217102, Val Loss: 0.05602032595447132 +2024-07-23 06:13:04.258 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 22/50, Train Loss: 0.06916635068399565, Val Loss: 0.059462097925799234 +2024-07-23 06:13:07.640 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 23/50, Train Loss: 0.06725423878857067, Val Loss: 0.05807579532265663 +2024-07-23 06:13:11.100 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 24/50, Train Loss: 0.06471445422087396, Val Loss: 0.05614117447819029 +2024-07-23 06:13:14.543 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 25/50, Train Loss: 0.06437044223504407, Val Loss: 0.05768805497459003 +2024-07-23 06:13:17.969 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 26/50, Train Loss: 0.06418422412659441, Val Loss: 0.05677933277828353 +2024-07-23 06:13:21.430 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 27/50, Train Loss: 0.06351896402026926, Val Loss: 0.057893032048429764 +2024-07-23 06:13:24.857 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 28/50, Train Loss: 0.0631170216947794, Val Loss: 0.05613576290862901 +2024-07-23 06:13:28.296 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 29/50, Train Loss: 0.06175933549446719, Val Loss: 0.05476762865270887 +2024-07-23 06:13:31.746 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 30/50, Train Loss: 0.06148617837045874, Val Loss: 0.05408101475664547 +2024-07-23 06:13:35.126 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 31/50, Train Loss: 0.0680387835417475, Val Loss: 0.059893826182399475 +2024-07-23 06:13:38.507 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 32/50, Train Loss: 0.06725216598383017, Val Loss: 0.06000187716313771 +2024-07-23 06:13:41.916 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 33/50, Train Loss: 0.06693323839988027, Val Loss: 0.06087240246789796 +2024-07-23 06:13:45.347 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 34/50, Train Loss: 0.06618450129670757, Val Loss: 0.06107923707791737 +2024-07-23 06:13:48.793 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 35/50, Train Loss: 0.0654230967696224, Val Loss: 0.059727976045438225 +2024-07-23 06:13:52.236 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 36/50, Train Loss: 0.06318239910261972, Val Loss: 0.05628686004451343 +2024-07-23 06:13:55.667 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 37/50, Train Loss: 0.061029891084347455, Val Loss: 0.05372202109013285 +2024-07-23 06:13:59.122 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 38/50, Train Loss: 0.06016803953264441, Val Loss: 0.05327487492135593 +2024-07-23 06:14:02.610 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 39/50, Train Loss: 0.0595511758433921, Val Loss: 0.05225429013371467 +2024-07-23 06:14:06.046 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 40/50, Train Loss: 0.0591570890375546, Val Loss: 0.05050442750964846 +2024-07-23 06:14:09.486 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 41/50, Train Loss: 0.05858231735016618, Val Loss: 0.05137100453887667 +2024-07-23 06:14:12.973 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 42/50, Train Loss: 0.05877751883651529, Val Loss: 0.05217142190252032 +2024-07-23 06:14:16.423 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 43/50, Train Loss: 0.058417772661362374, Val Loss: 0.050933794783694405 +2024-07-23 06:14:19.901 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 44/50, Train Loss: 0.05782571504158633, Val Loss: 0.05039536814604487 +2024-07-23 06:14:23.371 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 45/50, Train Loss: 0.057984275849802154, Val Loss: 0.052179379016160966 +2024-07-23 06:14:26.813 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 46/50, Train Loss: 0.05686068902058261, Val Loss: 0.05145415514707565 +2024-07-23 06:14:30.261 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 47/50, Train Loss: 0.057601733558944296, Val Loss: 0.05176238481487547 +2024-07-23 06:14:33.697 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 48/50, Train Loss: 0.05687794046742575, Val Loss: 0.050526067720992225 +2024-07-23 06:14:37.148 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 49/50, Train Loss: 0.057750299466507775, Val Loss: 0.051549139299563 +2024-07-23 06:14:40.594 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 50/50, Train Loss: 0.0573556728128876, Val Loss: 0.05232451632618904 +2024-07-23 06:14:40.594 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Fold 1, MAPE: 7.09% +2024-07-23 06:14:40.707 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_10001_25000_LSTM//train_f1_bgd_office_10001_25000_LSTM.png +2024-07-23 06:14:45.611 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 1/50, Train Loss: 0.0527505914394099, Val Loss: 0.04804180807300976 +2024-07-23 06:14:50.502 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 2/50, Train Loss: 0.0550186955011808, Val Loss: 0.04812606402805873 +2024-07-23 06:14:50.502 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:14:50.502 No tasks are waiting in the queue. +2024-07-23 06:14:50.502 4 steps have not started: model_scores, log_model, validate_model, end. +2024-07-23 06:14:55.399 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 3/50, Train Loss: 0.054746742790135056, Val Loss: 0.04802478637014117 +2024-07-23 06:15:00.231 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 4/50, Train Loss: 0.053476158887721024, Val Loss: 0.04764839091471263 +2024-07-23 06:15:05.108 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 5/50, Train Loss: 0.05461718220836841, Val Loss: 0.04813926070928574 +2024-07-23 06:15:09.970 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 6/50, Train Loss: 0.053477273537562445, Val Loss: 0.04740275346807071 +2024-07-23 06:15:14.846 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 7/50, Train Loss: 0.05286262263185703, Val Loss: 0.047474365681409836 +2024-07-23 06:15:19.670 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 8/50, Train Loss: 0.05528492487680454, Val Loss: 0.048355904540845325 +2024-07-23 06:15:24.542 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 9/50, Train Loss: 0.052577034301626, Val Loss: 0.047587732332093374 +2024-07-23 06:15:29.409 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 10/50, Train Loss: 0.052420099516614124, Val Loss: 0.04740227705665997 +2024-07-23 06:15:34.270 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 11/50, Train Loss: 0.05205698021186086, Val Loss: 0.04750534775001662 +2024-07-23 06:15:39.118 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 12/50, Train Loss: 0.05317799147003545, Val Loss: 0.04717827354158674 +2024-07-23 06:15:43.992 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 13/50, Train Loss: 0.05261444210862884, Val Loss: 0.04819607734680176 +2024-07-23 06:15:48.842 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 14/50, Train Loss: 0.05234297320175056, Val Loss: 0.04688460145677839 +2024-07-23 06:15:53.715 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 15/50, Train Loss: 0.05187815366885983, Val Loss: 0.047068318937505994 +2024-07-23 06:15:58.578 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 16/50, Train Loss: 0.052121517821573295, Val Loss: 0.046683265481676374 +2024-07-23 06:16:03.470 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 17/50, Train Loss: 0.05196130383186615, Val Loss: 0.046545085098062246 +2024-07-23 06:16:08.308 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 18/50, Train Loss: 0.05183173673084149, Val Loss: 0.046576872042247225 +2024-07-23 06:16:13.170 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 19/50, Train Loss: 0.051550892360795006, Val Loss: 0.04610039293766022 +2024-07-23 06:16:17.988 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 20/50, Train Loss: 0.05261921076677167, Val Loss: 0.04711852765509061 +2024-07-23 06:16:22.865 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 21/50, Train Loss: 0.05165389731812935, Val Loss: 0.045929040121180674 +2024-07-23 06:16:27.731 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 22/50, Train Loss: 0.05157080840749236, Val Loss: 0.04655763219509806 +2024-07-23 06:16:32.628 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 23/50, Train Loss: 0.05176707538059698, Val Loss: 0.04753993856055396 +2024-07-23 06:16:37.476 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 24/50, Train Loss: 0.05090071800021598, Val Loss: 0.04557557606271335 +2024-07-23 06:16:42.345 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 25/50, Train Loss: 0.05143116479023145, Val Loss: 0.04580830399479185 +2024-07-23 06:16:47.202 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 26/50, Train Loss: 0.051069042609574705, Val Loss: 0.04584866144827434 +2024-07-23 06:16:52.114 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 27/50, Train Loss: 0.05077049128997784, Val Loss: 0.045486876794270104 +2024-07-23 06:16:56.979 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 28/50, Train Loss: 0.05066512784777352, Val Loss: 0.0453351086803845 +2024-07-23 06:17:01.879 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 29/50, Train Loss: 0.05073704728140281, Val Loss: 0.045606912991830284 +2024-07-23 06:17:06.816 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 30/50, Train Loss: 0.05051475258257527, Val Loss: 0.04537792674132756 +2024-07-23 06:17:11.781 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 31/50, Train Loss: 0.050311218660611376, Val Loss: 0.0448544901396547 +2024-07-23 06:17:16.686 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 32/50, Train Loss: 0.050777026505854264, Val Loss: 0.045515886268445424 +2024-07-23 06:17:21.505 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 33/50, Train Loss: 0.050644543344298236, Val Loss: 0.0457502615238939 +2024-07-23 06:17:26.370 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 34/50, Train Loss: 0.051583185738239154, Val Loss: 0.046222937532833644 +2024-07-23 06:17:31.235 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 35/50, Train Loss: 0.05009230167175142, Val Loss: 0.04513167824063982 +2024-07-23 06:17:36.097 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 36/50, Train Loss: 0.05061912162301059, Val Loss: 0.04598203344004495 +2024-07-23 06:17:40.969 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 37/50, Train Loss: 0.050591437181887716, Val Loss: 0.04584929166095597 +2024-07-23 06:17:45.917 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 38/50, Train Loss: 0.04952846963603336, Val Loss: 0.04494847261479923 +2024-07-23 06:17:50.782 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 39/50, Train Loss: 0.05024899970381879, Val Loss: 0.04580267242022923 +2024-07-23 06:17:55.660 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 40/50, Train Loss: 0.04965773874965425, Val Loss: 0.04517268283026559 +2024-07-23 06:18:00.563 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 41/50, Train Loss: 0.04915269512611513, Val Loss: 0.04538577347993851 +2024-07-23 06:18:05.457 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 42/50, Train Loss: 0.05067015826128996, Val Loss: 0.04619737640023232 +2024-07-23 06:18:10.379 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 43/50, Train Loss: 0.049528203546427764, Val Loss: 0.04550330532448632 +2024-07-23 06:18:15.264 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 44/50, Train Loss: 0.048622728450796925, Val Loss: 0.04441952630877495 +2024-07-23 06:18:20.143 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 45/50, Train Loss: 0.0494322322237377, Val Loss: 0.045631753972598485 +2024-07-23 06:18:25.073 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 46/50, Train Loss: 0.04863076008713016, Val Loss: 0.04523653153862272 +2024-07-23 06:18:29.967 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 47/50, Train Loss: 0.048146853115982734, Val Loss: 0.04535264213170324 +2024-07-23 06:18:34.848 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 48/50, Train Loss: 0.0487892387721401, Val Loss: 0.04564754313656262 +2024-07-23 06:18:39.743 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 49/50, Train Loss: 0.04860523375324332, Val Loss: 0.0463214673101902 +2024-07-23 06:18:44.675 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 50/50, Train Loss: 0.04792093627083187, Val Loss: 0.04437736145087651 +2024-07-23 06:18:44.675 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Fold 2, MAPE: 6.56% +2024-07-23 06:18:44.784 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_10001_25000_LSTM//train_f2_bgd_office_10001_25000_LSTM.png +2024-07-23 06:18:51.090 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 1/50, Train Loss: 0.05126896362564118, Val Loss: 0.03818139801067966 +2024-07-23 06:18:57.404 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 2/50, Train Loss: 0.04576264654132102, Val Loss: 0.03633786429251943 +2024-07-23 06:19:03.709 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 3/50, Train Loss: 0.046884701821765455, Val Loss: 0.03934221560401576 +2024-07-23 06:19:10.040 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 4/50, Train Loss: 0.04555281866743839, Val Loss: 0.03578052552683013 +2024-07-23 06:19:16.412 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 5/50, Train Loss: 0.04550296446080688, Val Loss: 0.03580909616180829 +2024-07-23 06:19:22.856 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 6/50, Train Loss: 0.048860799400604886, Val Loss: 0.0394439415207931 +2024-07-23 06:19:29.236 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 7/50, Train Loss: 0.04637728301848439, Val Loss: 0.035522639804652756 +2024-07-23 06:19:35.525 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 8/50, Train Loss: 0.05014206824167598, Val Loss: 0.038364952909094946 +2024-07-23 06:19:41.861 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 9/50, Train Loss: 0.04556985357575279, Val Loss: 0.03570004025740283 +2024-07-23 06:19:48.194 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 10/50, Train Loss: 0.04562966524214625, Val Loss: 0.03570256318364825 +2024-07-23 06:19:54.474 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 11/50, Train Loss: 0.054143270625056125, Val Loss: 0.03938670211604663 +2024-07-23 06:19:54.474 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:19:54.474 No tasks are waiting in the queue. +2024-07-23 06:19:54.474 4 steps have not started: model_scores, log_model, validate_model, end. +2024-07-23 06:20:00.752 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 12/50, Train Loss: 0.05378318150534475, Val Loss: 0.03839560268180711 +2024-07-23 06:20:07.072 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 13/50, Train Loss: 0.05149375345799134, Val Loss: 0.037394465506076814 +2024-07-23 06:20:13.386 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 14/50, Train Loss: 0.049890737189985004, Val Loss: 0.03731013163924217 +2024-07-23 06:20:19.673 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 15/50, Train Loss: 0.0479280285992854, Val Loss: 0.036765823087521965 +2024-07-23 06:20:25.985 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 16/50, Train Loss: 0.047371473404572165, Val Loss: 0.03648078782217843 +2024-07-23 06:20:32.297 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 17/50, Train Loss: 0.04619251933994053, Val Loss: 0.03608876285808427 +2024-07-23 06:20:38.632 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 18/50, Train Loss: 0.04614546907087453, Val Loss: 0.03571367881127766 +2024-07-23 06:20:44.940 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 19/50, Train Loss: 0.04592378777887324, Val Loss: 0.0356151277997664 +2024-07-23 06:20:51.281 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 20/50, Train Loss: 0.045886853294406865, Val Loss: 0.03557380134505885 +2024-07-23 06:20:57.619 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 21/50, Train Loss: 0.04586565139428746, Val Loss: 0.035407745465636256 +2024-07-23 06:21:03.979 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 22/50, Train Loss: 0.04574709364192949, Val Loss: 0.03515084210251059 +2024-07-23 06:21:10.342 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 23/50, Train Loss: 0.04560521214181999, Val Loss: 0.03536355969096933 +2024-07-23 06:21:16.671 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 24/50, Train Loss: 0.04570255228887788, Val Loss: 0.035315530427864616 +2024-07-23 06:21:23.045 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 25/50, Train Loss: 0.04486370073269597, Val Loss: 0.03519356612648283 +2024-07-23 06:21:29.405 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 26/50, Train Loss: 0.04479936561245713, Val Loss: 0.03553512846784932 +2024-07-23 06:21:35.632 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 27/50, Train Loss: 0.05753624428519242, Val Loss: 0.0399394796362945 +2024-07-23 06:21:41.883 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 28/50, Train Loss: 0.055310062688889265, Val Loss: 0.03917929492890835 +2024-07-23 06:21:48.180 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 29/50, Train Loss: 0.05029931423261011, Val Loss: 0.03721210685159479 +2024-07-23 06:21:54.541 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 30/50, Train Loss: 0.046159189140839545, Val Loss: 0.03603079169988632 +2024-07-23 06:22:00.895 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 31/50, Train Loss: 0.04501610636550317, Val Loss: 0.03547654332859176 +2024-07-23 06:22:07.266 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 32/50, Train Loss: 0.044411486175527676, Val Loss: 0.03493891081639699 +2024-07-23 06:22:13.626 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 33/50, Train Loss: 0.045158269754845465, Val Loss: 0.035301911139062475 +2024-07-23 06:22:19.987 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 34/50, Train Loss: 0.043859538494897404, Val Loss: 0.03466634415090084 +2024-07-23 06:22:26.341 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 35/50, Train Loss: 0.04398359272548621, Val Loss: 0.03464786788182599 +2024-07-23 06:22:32.711 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 36/50, Train Loss: 0.04553342756661151, Val Loss: 0.03525765240192413 +2024-07-23 06:22:39.109 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 37/50, Train Loss: 0.043613483499494385, Val Loss: 0.03473076889557498 +2024-07-23 06:22:45.524 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 38/50, Train Loss: 0.04376515185983061, Val Loss: 0.03419374908719744 +2024-07-23 06:22:51.910 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 39/50, Train Loss: 0.04573579166057727, Val Loss: 0.03489750900438854 +2024-07-23 06:22:58.279 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 40/50, Train Loss: 0.04378840446525769, Val Loss: 0.03421663264078753 +2024-07-23 06:23:04.607 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 41/50, Train Loss: 0.055161534252462625, Val Loss: 0.03999290019273758 +2024-07-23 06:23:11.033 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 42/50, Train Loss: 0.05616273542048691, Val Loss: 0.03757529556751251 +2024-07-23 06:23:17.479 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 43/50, Train Loss: 0.047333643108391936, Val Loss: 0.035588315608245984 +2024-07-23 06:23:23.916 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 44/50, Train Loss: 0.04602719141210584, Val Loss: 0.036086248233914375 +2024-07-23 06:23:30.403 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 45/50, Train Loss: 0.04484628805582472, Val Loss: 0.03550765477120876 +2024-07-23 06:23:36.830 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 46/50, Train Loss: 0.04421932357463905, Val Loss: 0.03563781870262964 +2024-07-23 06:23:43.242 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 47/50, Train Loss: 0.044134741247021894, Val Loss: 0.03539412154683045 +2024-07-23 06:23:49.740 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 48/50, Train Loss: 0.04400490415986064, Val Loss: 0.03526882417500019 +2024-07-23 06:23:56.153 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 49/50, Train Loss: 0.043698854369225264, Val Loss: 0.0346562391945294 +2024-07-23 06:24:02.572 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 50/50, Train Loss: 0.04343444059381811, Val Loss: 0.03411499070269721 +2024-07-23 06:24:02.572 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Fold 3, MAPE: 5.48% +2024-07-23 06:24:02.682 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_10001_25000_LSTM//train_f3_bgd_office_10001_25000_LSTM.png +2024-07-23 06:24:10.559 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 1/50, Train Loss: 0.04104081762890364, Val Loss: 0.037010580780250685 +2024-07-23 06:24:18.489 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 2/50, Train Loss: 0.04228890679733849, Val Loss: 0.04217671693435737 +2024-07-23 06:24:26.387 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 3/50, Train Loss: 0.04929744819414684, Val Loss: 0.03896169327199459 +2024-07-23 06:24:34.093 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 4/50, Train Loss: 0.05089060978257451, Val Loss: 0.03758511782756874 +2024-07-23 06:24:41.936 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 5/50, Train Loss: 0.046997463523313916, Val Loss: 0.03650400516177927 +2024-07-23 06:24:49.790 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 6/50, Train Loss: 0.04392188553023955, Val Loss: 0.0376240392348596 +2024-07-23 06:24:57.694 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 7/50, Train Loss: 0.04297405712563416, Val Loss: 0.0364802893783365 +2024-07-23 06:24:57.694 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:24:57.694 No tasks are waiting in the queue. +2024-07-23 06:24:57.694 4 steps have not started: model_scores, log_model, validate_model, end. +2024-07-23 06:25:05.563 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 8/50, Train Loss: 0.041770110185118926, Val Loss: 0.03797885397715228 +2024-07-23 06:25:13.420 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 9/50, Train Loss: 0.04217522346211233, Val Loss: 0.03758296381149973 +2024-07-23 06:25:21.293 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 10/50, Train Loss: 0.041250160317225705, Val Loss: 0.03736480314816747 +2024-07-23 06:25:29.194 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 11/50, Train Loss: 0.04109922639126408, Val Loss: 0.04283394510192531 +2024-07-23 06:25:36.889 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 12/50, Train Loss: 0.04938004557685605, Val Loss: 0.0389944462371724 +2024-07-23 06:25:44.656 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 13/50, Train Loss: 0.047543143221958614, Val Loss: 0.03747051948947566 +2024-07-23 06:25:52.502 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 14/50, Train Loss: 0.04215747310683645, Val Loss: 0.04031258975820882 +2024-07-23 06:26:00.386 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 15/50, Train Loss: 0.04166289532407262, Val Loss: 0.04280602484941483 +2024-07-23 06:26:08.191 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 16/50, Train Loss: 0.041706432427825596, Val Loss: 0.04195903603519712 +2024-07-23 06:26:16.065 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 17/50, Train Loss: 0.04132810434133842, Val Loss: 0.045127038551228384 +2024-07-23 06:26:23.868 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 18/50, Train Loss: 0.04679707701093164, Val Loss: 0.03905800708702632 +2024-07-23 06:26:31.731 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 19/50, Train Loss: 0.04061417549249084, Val Loss: 0.03820027272616114 +2024-07-23 06:26:39.572 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 20/50, Train Loss: 0.040772366508755875, Val Loss: 0.03778903745114803 +2024-07-23 06:26:47.404 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 21/50, Train Loss: 0.04094364605415827, Val Loss: 0.04471311244581427 +2024-07-23 06:26:55.066 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 22/50, Train Loss: 0.05382844208386438, Val Loss: 0.03831051907369069 +2024-07-23 06:27:02.786 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 23/50, Train Loss: 0.051086946668895496, Val Loss: 0.03840895257890224 +2024-07-23 06:27:10.494 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 24/50, Train Loss: 0.04966507527720312, Val Loss: 0.038218647933432034 +2024-07-23 06:27:18.246 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 25/50, Train Loss: 0.04789502799896331, Val Loss: 0.03718930658485208 +2024-07-23 06:27:26.102 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 26/50, Train Loss: 0.043623890963265265, Val Loss: 0.03664010145834514 +2024-07-23 06:27:34.009 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 27/50, Train Loss: 0.0409658244093773, Val Loss: 0.03605037698788302 +2024-07-23 06:27:41.915 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 28/50, Train Loss: 0.04090457500611571, Val Loss: 0.03878471590578556 +2024-07-23 06:27:49.788 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 29/50, Train Loss: 0.041197984383024015, Val Loss: 0.03805351246680532 +2024-07-23 06:27:57.681 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 30/50, Train Loss: 0.0407053507736017, Val Loss: 0.03881877080670425 +2024-07-23 06:28:05.533 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 31/50, Train Loss: 0.04038206031867143, Val Loss: 0.03660271806376321 +2024-07-23 06:28:13.481 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 32/50, Train Loss: 0.04445538868934944, Val Loss: 0.03969076451446329 +2024-07-23 06:28:21.300 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 33/50, Train Loss: 0.04811095264365618, Val Loss: 0.03990153116839273 +2024-07-23 06:28:28.943 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 34/50, Train Loss: 0.05527447510896058, Val Loss: 0.0389531355883394 +2024-07-23 06:28:36.615 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 35/50, Train Loss: 0.05225010699025173, Val Loss: 0.03897045691098486 +2024-07-23 06:28:44.246 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 36/50, Train Loss: 0.05220126887333804, Val Loss: 0.038995427691510744 +2024-07-23 06:28:51.882 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 37/50, Train Loss: 0.052125515373445105, Val Loss: 0.039006885034697396 +2024-07-23 06:28:59.432 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 38/50, Train Loss: 0.05210345454685304, Val Loss: 0.03900671782238143 +2024-07-23 06:29:07.076 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 39/50, Train Loss: 0.05216040477242278, Val Loss: 0.03899438929344926 +2024-07-23 06:29:14.724 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 40/50, Train Loss: 0.05217790099438922, Val Loss: 0.03902013732918671 +2024-07-23 06:29:22.372 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 41/50, Train Loss: 0.0521152839599841, Val Loss: 0.03902226079787527 +2024-07-23 06:29:29.992 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 42/50, Train Loss: 0.052169820315193856, Val Loss: 0.03899283228175981 +2024-07-23 06:29:37.610 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 43/50, Train Loss: 0.052190627924155915, Val Loss: 0.039011706784367564 +2024-07-23 06:29:45.215 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 44/50, Train Loss: 0.05218871827397881, Val Loss: 0.03897282465228013 +2024-07-23 06:29:52.870 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 45/50, Train Loss: 0.05211203490737183, Val Loss: 0.03894763509077685 +2024-07-23 06:30:00.478 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 46/50, Train Loss: 0.05222203569679425, Val Loss: 0.03897109989609037 +2024-07-23 06:30:00.478 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:30:00.478 No tasks are waiting in the queue. +2024-07-23 06:30:00.478 4 steps have not started: model_scores, log_model, validate_model, end. +2024-07-23 06:30:08.107 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 47/50, Train Loss: 0.05218257084917063, Val Loss: 0.0389543356107814 +2024-07-23 06:30:15.716 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 48/50, Train Loss: 0.052033978428734445, Val Loss: 0.03891183105962617 +2024-07-23 06:30:23.366 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 49/50, Train Loss: 0.051977841344116066, Val Loss: 0.03885491900146008 +2024-07-23 06:30:30.993 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 50/50, Train Loss: 0.051835795329219995, Val Loss: 0.03872173056006432 +2024-07-23 06:30:30.993 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Fold 4, MAPE: 5.82% +2024-07-23 06:30:31.102 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_10001_25000_LSTM//train_f4_bgd_office_10001_25000_LSTM.png +2024-07-23 06:30:35.312 [52/cross_validate_train/555 (pid 77502)] Task finished successfully. +2024-07-23 06:30:35.343 [52/model_scores/556 (pid 82168)] Task is starting. +2024-07-23 06:30:36.831 [52/model_scores/556 (pid 82168)] INFO:__main__:Average Train Loss across all folds: 0.05762724617988426 +2024-07-23 06:30:40.716 [52/model_scores/556 (pid 82168)] INFO:__main__:Average Validation Loss across all folds: 0.05541651321308953 +2024-07-23 06:30:40.717 [52/model_scores/556 (pid 82168)] INFO:__main__:Average MAPE across all folds: 8.00% +2024-07-23 06:30:40.718 [52/model_scores/556 (pid 82168)] Task finished successfully. +2024-07-23 06:30:40.746 [52/validate_model/557 (pid 82201)] Task is starting. +2024-07-23 06:30:42.225 [52/validate_model/557 (pid 82201)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 06:30:42.998 [52/validate_model/557 (pid 82201)] INFO:__main__:Test Set MAPE: 7.93% +2024-07-23 06:30:43.379 [52/validate_model/557 (pid 82201)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_office_10001_25000_LSTM//test_bgd_office_10001_25000_LSTM.png +2024-07-23 06:30:43.793 [52/validate_model/557 (pid 82201)] Task finished successfully. +2024-07-23 06:30:43.823 [52/log_model/558 (pid 82212)] Task is starting. +2024-07-23 06:30:45.319 [52/log_model/558 (pid 82212)] INFO:__main__:Logging model bgd_office_10001_25000_LSTM +2024-07-23 06:30:45.321 [52/log_model/558 (pid 82212)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_office_10001_25000_LSTM//bgd_office_10001_25000_LSTM.pth +2024-07-23 06:30:49.205 [52/log_model/558 (pid 82212)] Task finished successfully. +2024-07-23 06:30:49.234 [52/end/559 (pid 82247)] Task is starting. +2024-07-23 06:30:50.704 [52/end/559 (pid 82247)] INFO:__main__:Pipeline end. +2024-07-23 06:30:51.024 [52/end/559 (pid 82247)] Task finished successfully. +2024-07-23 06:30:51.024 Done! +✅ Run('BGD_LinearFlow/52') succeeded: +-- stdout -- +2024-07-23 06:09:46.321 Workflow starting (run-id 52): +2024-07-23 06:09:46.389 [52/start/547 (pid 77349)] Task is starting. +2024-07-23 06:09:47.850 [52/start/547 (pid 77349)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 06:09:48.148 [52/start/547 (pid 77349)] Task finished successfully. +2024-07-23 06:09:48.181 [52/ingest/548 (pid 77364)] Task is starting. +2024-07-23 06:09:49.637 [52/ingest/548 (pid 77364)] INFO:__main__:Fetching dataframe.. +2024-07-23 06:09:49.653 [52/ingest/548 (pid 77364)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 06:09:53.500 [52/ingest/548 (pid 77364)] Task finished successfully. +2024-07-23 06:09:53.529 [52/pick_2017_data/549 (pid 77397)] Task is starting. +2024-07-23 06:09:54.986 [52/pick_2017_data/549 (pid 77397)] INFO:__main__:Picking 2017 data.. +2024-07-23 06:09:55.287 [52/pick_2017_data/549 (pid 77397)] Task finished successfully. +2024-07-23 06:09:55.318 [52/fill_missing_data/550 (pid 77401)] Task is starting. +2024-07-23 06:09:56.813 [52/fill_missing_data/550 (pid 77401)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 06:09:56.819 [52/fill_missing_data/550 (pid 77401)] INFO:__main__:NaN counts per column: +2024-07-23 06:09:56.819 [52/fill_missing_data/550 (pid 77401)] INFO:__main__:Panther_office_Larry 12 +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] Panther_office_Christian 12 +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] Panther_office_Christin 586 +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] Panther_office_Antonette 11 +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] Panther_office_Lois 11 +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] Cockatoo_office_Lorraine 127 +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] dtype: int64 +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] --- Logging error --- +2024-07-23 06:09:56.820 [52/fill_missing_data/550 (pid 77401)] Traceback (most recent call last): +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] msg = self.format(record) +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] return fmt.format(record) +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] record.message = record.getMessage() +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] msg = msg % self.args +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] TypeError: not all arguments converted during string formatting +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] Call stack: +2024-07-23 06:09:56.821 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] BGD_LinearFlow() +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] cli.main(self) +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] return func(*args, **kwargs) +2024-07-23 06:09:57.583 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] return self.main(*args, **kwargs) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] rv = self.invoke(ctx) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] return callback(*args, **kwargs) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] return f(get_current_context(), *args, **kwargs) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] task.run_step( +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] self._exec_step_function(step_func) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] step_function() +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] self.missing_values = find_nan_counts(self.df) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 06:09:57.584 [52/fill_missing_data/550 (pid 77401)] Arguments: (759,) +2024-07-23 06:09:57.585 [52/fill_missing_data/550 (pid 77401)] Task finished successfully. +2024-07-23 06:09:57.617 [52/find_median/551 (pid 77420)] Task is starting. +2024-07-23 06:09:59.060 [52/find_median/551 (pid 77420)] INFO:__main__:Computing and using median.. +2024-07-23 06:09:59.557 [52/find_median/551 (pid 77420)] Task finished successfully. +2024-07-23 06:09:59.589 [52/aggregate_data/552 (pid 77433)] Task is starting. +2024-07-23 06:10:01.092 [52/aggregate_data/552 (pid 77433)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 06:10:04.907 [52/aggregate_data/552 (pid 77433)] Task finished successfully. +2024-07-23 06:10:04.937 [52/split_data/553 (pid 77457)] Task is starting. +2024-07-23 06:10:06.417 [52/split_data/553 (pid 77457)] INFO:__main__:Splitting data into test and train... +2024-07-23 06:10:10.268 [52/split_data/553 (pid 77457)] Task finished successfully. +2024-07-23 06:10:10.297 [52/make_x_y/554 (pid 77491)] Task is starting. +2024-07-23 06:10:12.102 [52/make_x_y/554 (pid 77491)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 06:10:12.502 [52/make_x_y/554 (pid 77491)] Shape of y_train: (6648, 1) +2024-07-23 06:10:12.502 [52/make_x_y/554 (pid 77491)] Shape of X_test: (1392, 360, 1) +2024-07-23 06:10:12.502 [52/make_x_y/554 (pid 77491)] Shape of y_test: (1392, 1) +2024-07-23 06:10:12.503 [52/make_x_y/554 (pid 77491)] Task finished successfully. +2024-07-23 06:10:12.532 [52/cross_validate_train/555 (pid 77502)] Task is starting. +2024-07-23 06:10:13.979 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Creating bgd_office_10001_25000_LSTM +2024-07-23 06:10:13.979 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Performing cross validation.. +2024-07-23 06:10:16.431 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 1/50, Train Loss: 0.3283811105149133, Val Loss: 0.2334502935409546 +2024-07-23 06:10:18.307 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 2/50, Train Loss: 0.18604708037206105, Val Loss: 0.19218752256461552 +2024-07-23 06:10:20.177 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 3/50, Train Loss: 0.1820324352809361, Val Loss: 0.1852754688688687 +2024-07-23 06:10:22.113 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 4/50, Train Loss: 0.17465226245777948, Val Loss: 0.1789770728775433 +2024-07-23 06:10:23.992 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 5/50, Train Loss: 0.16209749643291746, Val Loss: 0.16681971060378212 +2024-07-23 06:10:25.935 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 6/50, Train Loss: 0.14461982186351505, Val Loss: 0.1761472665837833 +2024-07-23 06:10:27.854 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 7/50, Train Loss: 0.13406049183436802, Val Loss: 0.1794852893267359 +2024-07-23 06:10:29.772 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 8/50, Train Loss: 0.12415156066417694, Val Loss: 0.16730481684207915 +2024-07-23 06:10:31.706 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 9/50, Train Loss: 0.11923315163169589, Val Loss: 0.1605790859886578 +2024-07-23 06:10:33.633 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 10/50, Train Loss: 0.1135223565357072, Val Loss: 0.16145144466842923 +2024-07-23 06:10:35.554 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 11/50, Train Loss: 0.10743337869644165, Val Loss: 0.15265662223100662 +2024-07-23 06:10:37.494 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 12/50, Train Loss: 0.105156673597438, Val Loss: 0.1438071363738605 +2024-07-23 06:10:39.438 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 13/50, Train Loss: 0.10005942710808345, Val Loss: 0.13834406031029564 +2024-07-23 06:10:41.389 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 14/50, Train Loss: 0.09597869206752097, Val Loss: 0.12842401670558112 +2024-07-23 06:10:43.329 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 15/50, Train Loss: 0.09336301961115429, Val Loss: 0.12524693033524922 +2024-07-23 06:10:45.277 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 16/50, Train Loss: 0.08841445360864912, Val Loss: 0.12668206500155585 +2024-07-23 06:10:47.226 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 17/50, Train Loss: 0.0872233271598816, Val Loss: 0.12536321537835257 +2024-07-23 06:10:49.194 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 18/50, Train Loss: 0.12581110405070442, Val Loss: 0.12896148030247007 +2024-07-23 06:10:51.232 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 19/50, Train Loss: 0.1586152174643108, Val Loss: 0.1473173731139728 +2024-07-23 06:10:53.212 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 20/50, Train Loss: 0.14097685856478556, Val Loss: 0.14917159378528594 +2024-07-23 06:10:55.220 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 21/50, Train Loss: 0.13377002647944858, Val Loss: 0.14460732404674803 +2024-07-23 06:10:57.227 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 22/50, Train Loss: 0.1445432741727148, Val Loss: 0.14603024550846644 +2024-07-23 06:10:59.184 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 23/50, Train Loss: 0.12723327023642403, Val Loss: 0.1825240005339895 +2024-07-23 06:11:01.071 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 24/50, Train Loss: 0.1514921241572925, Val Loss: 0.14476177181516375 +2024-07-23 06:11:02.950 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 25/50, Train Loss: 0.153168486058712, Val Loss: 0.13742468463523047 +2024-07-23 06:11:04.808 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 26/50, Train Loss: 0.1477652398603303, Val Loss: 0.1319618997829301 +2024-07-23 06:11:06.695 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 27/50, Train Loss: 0.14341531225613185, Val Loss: 0.12674446552991867 +2024-07-23 06:11:08.578 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 28/50, Train Loss: 0.13842112677437918, Val Loss: 0.12310135556118829 +2024-07-23 06:11:10.473 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 29/50, Train Loss: 0.13297135468040194, Val Loss: 0.11861323692968913 +2024-07-23 06:11:12.375 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 30/50, Train Loss: 0.12697538435459138, Val Loss: 0.11445296513182776 +2024-07-23 06:11:14.250 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 31/50, Train Loss: 0.12145055213144847, Val Loss: 0.11071620753833226 +2024-07-23 06:11:16.130 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 32/50, Train Loss: 0.11568338296243123, Val Loss: 0.10785087027720043 +2024-07-23 06:11:18.002 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 33/50, Train Loss: 0.11038040880646025, Val Loss: 0.10560500643083028 +2024-07-23 06:11:19.887 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 34/50, Train Loss: 0.10479616267340523, Val Loss: 0.10996266731194088 +2024-07-23 06:11:21.787 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 35/50, Train Loss: 0.10030457100697926, Val Loss: 0.11475431706224169 +2024-07-23 06:11:23.657 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 36/50, Train Loss: 0.09852058227573122, Val Loss: 0.11557095391409737 +2024-07-23 06:11:25.559 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 37/50, Train Loss: 0.09602961114474705, Val Loss: 0.11683025785854885 +2024-07-23 06:11:27.453 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 38/50, Train Loss: 0.09572292928184782, Val Loss: 0.12301327841622489 +2024-07-23 06:11:29.354 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 39/50, Train Loss: 0.09638291533504213, Val Loss: 0.11869788255010333 +2024-07-23 06:11:31.270 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 40/50, Train Loss: 0.0945311712367194, Val Loss: 0.11994715673582894 +2024-07-23 06:11:33.149 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 41/50, Train Loss: 0.09379179733140128, Val Loss: 0.11736646103007453 +2024-07-23 06:11:35.025 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 42/50, Train Loss: 0.09315310652766909, Val Loss: 0.1177054260458265 +2024-07-23 06:11:36.921 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 43/50, Train Loss: 0.09263443435941424, Val Loss: 0.11041641852685384 +2024-07-23 06:11:38.808 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 44/50, Train Loss: 0.09077078806502478, Val Loss: 0.1126813143491745 +2024-07-23 06:11:40.702 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 45/50, Train Loss: 0.09082265581403459, Val Loss: 0.11023047225815909 +2024-07-23 06:11:42.595 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 46/50, Train Loss: 0.09010426423379353, Val Loss: 0.11228199686322893 +2024-07-23 06:11:44.488 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 47/50, Train Loss: 0.08949873234544481, Val Loss: 0.10727694141013282 +2024-07-23 06:11:46.359 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 48/50, Train Loss: 0.08896614164113999, Val Loss: 0.11091466822794506 +2024-07-23 06:11:48.280 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 49/50, Train Loss: 0.08876615507262094, Val Loss: 0.10702412469046456 +2024-07-23 06:11:50.174 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 50/50, Train Loss: 0.08758938589266368, Val Loss: 0.1075439670256206 +2024-07-23 06:11:50.174 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Fold 0, MAPE: 15.06% +2024-07-23 06:11:50.482 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_10001_25000_LSTM//train_f0_bgd_office_10001_25000_LSTM.png +2024-07-23 06:11:53.880 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 1/50, Train Loss: 0.07561683787831239, Val Loss: 0.06105837087546076 +2024-07-23 06:11:57.214 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 2/50, Train Loss: 0.07346465710018363, Val Loss: 0.05898297152348927 +2024-07-23 06:12:00.520 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 3/50, Train Loss: 0.07384371869266033, Val Loss: 0.06040537825652531 +2024-07-23 06:12:03.849 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 4/50, Train Loss: 0.07315128727683, Val Loss: 0.05867938303521701 +2024-07-23 06:12:07.189 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 5/50, Train Loss: 0.07217743535126958, Val Loss: 0.0584552879844393 +2024-07-23 06:12:10.526 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 6/50, Train Loss: 0.07307020542877062, Val Loss: 0.05745567455887794 +2024-07-23 06:12:13.852 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 7/50, Train Loss: 0.07266014010778495, Val Loss: 0.056484026568276544 +2024-07-23 06:12:17.151 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 8/50, Train Loss: 0.07295414544641972, Val Loss: 0.05713618706379618 +2024-07-23 06:12:20.449 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 9/50, Train Loss: 0.0729751391602414, Val Loss: 0.06163530871272087 +2024-07-23 06:12:23.770 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 10/50, Train Loss: 0.07333795183471271, Val Loss: 0.06263923261846815 +2024-07-23 06:12:27.060 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 11/50, Train Loss: 0.07140642271510192, Val Loss: 0.0621925705245563 +2024-07-23 06:12:30.399 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 12/50, Train Loss: 0.0702817590641124, Val Loss: 0.06235020224537168 +2024-07-23 06:12:33.702 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 13/50, Train Loss: 0.0703189939792667, Val Loss: 0.06304830983281136 +2024-07-23 06:12:37.024 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 14/50, Train Loss: 0.07004584659423146, Val Loss: 0.06235458361251014 +2024-07-23 06:12:40.381 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 15/50, Train Loss: 0.07007694127304213, Val Loss: 0.0626123675278255 +2024-07-23 06:12:43.754 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 16/50, Train Loss: 0.06862711991582598, Val Loss: 0.06328425673501832 +2024-07-23 06:12:47.094 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 17/50, Train Loss: 0.06983718616621835, Val Loss: 0.06156952923962048 +2024-07-23 06:12:50.506 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 18/50, Train Loss: 0.06703907315220152, Val Loss: 0.05843442029186657 +2024-07-23 06:12:53.980 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 19/50, Train Loss: 0.0660226047039032, Val Loss: 0.05781126490661076 +2024-07-23 06:12:57.437 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 20/50, Train Loss: 0.06808810425656182, Val Loss: 0.0576004181589399 +2024-07-23 06:13:00.864 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 21/50, Train Loss: 0.06559602155217102, Val Loss: 0.05602032595447132 +2024-07-23 06:13:04.258 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 22/50, Train Loss: 0.06916635068399565, Val Loss: 0.059462097925799234 +2024-07-23 06:13:07.640 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 23/50, Train Loss: 0.06725423878857067, Val Loss: 0.05807579532265663 +2024-07-23 06:13:11.100 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 24/50, Train Loss: 0.06471445422087396, Val Loss: 0.05614117447819029 +2024-07-23 06:13:14.543 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 25/50, Train Loss: 0.06437044223504407, Val Loss: 0.05768805497459003 +2024-07-23 06:13:17.969 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 26/50, Train Loss: 0.06418422412659441, Val Loss: 0.05677933277828353 +2024-07-23 06:13:21.430 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 27/50, Train Loss: 0.06351896402026926, Val Loss: 0.057893032048429764 +2024-07-23 06:13:24.857 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 28/50, Train Loss: 0.0631170216947794, Val Loss: 0.05613576290862901 +2024-07-23 06:13:28.296 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 29/50, Train Loss: 0.06175933549446719, Val Loss: 0.05476762865270887 +2024-07-23 06:13:31.746 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 30/50, Train Loss: 0.06148617837045874, Val Loss: 0.05408101475664547 +2024-07-23 06:13:35.126 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 31/50, Train Loss: 0.0680387835417475, Val Loss: 0.059893826182399475 +2024-07-23 06:13:38.507 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 32/50, Train Loss: 0.06725216598383017, Val Loss: 0.06000187716313771 +2024-07-23 06:13:41.916 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 33/50, Train Loss: 0.06693323839988027, Val Loss: 0.06087240246789796 +2024-07-23 06:13:45.347 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 34/50, Train Loss: 0.06618450129670757, Val Loss: 0.06107923707791737 +2024-07-23 06:13:48.793 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 35/50, Train Loss: 0.0654230967696224, Val Loss: 0.059727976045438225 +2024-07-23 06:13:52.236 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 36/50, Train Loss: 0.06318239910261972, Val Loss: 0.05628686004451343 +2024-07-23 06:13:55.667 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 37/50, Train Loss: 0.061029891084347455, Val Loss: 0.05372202109013285 +2024-07-23 06:13:59.122 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 38/50, Train Loss: 0.06016803953264441, Val Loss: 0.05327487492135593 +2024-07-23 06:14:02.610 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 39/50, Train Loss: 0.0595511758433921, Val Loss: 0.05225429013371467 +2024-07-23 06:14:06.046 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 40/50, Train Loss: 0.0591570890375546, Val Loss: 0.05050442750964846 +2024-07-23 06:14:09.486 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 41/50, Train Loss: 0.05858231735016618, Val Loss: 0.05137100453887667 +2024-07-23 06:14:12.973 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 42/50, Train Loss: 0.05877751883651529, Val Loss: 0.05217142190252032 +2024-07-23 06:14:16.423 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 43/50, Train Loss: 0.058417772661362374, Val Loss: 0.050933794783694405 +2024-07-23 06:14:19.901 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 44/50, Train Loss: 0.05782571504158633, Val Loss: 0.05039536814604487 +2024-07-23 06:14:23.371 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 45/50, Train Loss: 0.057984275849802154, Val Loss: 0.052179379016160966 +2024-07-23 06:14:26.813 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 46/50, Train Loss: 0.05686068902058261, Val Loss: 0.05145415514707565 +2024-07-23 06:14:30.261 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 47/50, Train Loss: 0.057601733558944296, Val Loss: 0.05176238481487547 +2024-07-23 06:14:33.697 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 48/50, Train Loss: 0.05687794046742575, Val Loss: 0.050526067720992225 +2024-07-23 06:14:37.148 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 49/50, Train Loss: 0.057750299466507775, Val Loss: 0.051549139299563 +2024-07-23 06:14:40.594 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 50/50, Train Loss: 0.0573556728128876, Val Loss: 0.05232451632618904 +2024-07-23 06:14:40.594 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Fold 1, MAPE: 7.09% +2024-07-23 06:14:40.707 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_10001_25000_LSTM//train_f1_bgd_office_10001_25000_LSTM.png +2024-07-23 06:14:45.611 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 1/50, Train Loss: 0.0527505914394099, Val Loss: 0.04804180807300976 +2024-07-23 06:14:50.502 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 2/50, Train Loss: 0.0550186955011808, Val Loss: 0.04812606402805873 +2024-07-23 06:14:50.502 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:14:50.502 No tasks are waiting in the queue. +2024-07-23 06:14:50.502 4 steps have not started: model_scores, log_model, validate_model, end. +2024-07-23 06:14:55.399 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 3/50, Train Loss: 0.054746742790135056, Val Loss: 0.04802478637014117 +2024-07-23 06:15:00.231 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 4/50, Train Loss: 0.053476158887721024, Val Loss: 0.04764839091471263 +2024-07-23 06:15:05.108 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 5/50, Train Loss: 0.05461718220836841, Val Loss: 0.04813926070928574 +2024-07-23 06:15:09.970 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 6/50, Train Loss: 0.053477273537562445, Val Loss: 0.04740275346807071 +2024-07-23 06:15:14.846 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 7/50, Train Loss: 0.05286262263185703, Val Loss: 0.047474365681409836 +2024-07-23 06:15:19.670 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 8/50, Train Loss: 0.05528492487680454, Val Loss: 0.048355904540845325 +2024-07-23 06:15:24.542 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 9/50, Train Loss: 0.052577034301626, Val Loss: 0.047587732332093374 +2024-07-23 06:15:29.409 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 10/50, Train Loss: 0.052420099516614124, Val Loss: 0.04740227705665997 +2024-07-23 06:15:34.270 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 11/50, Train Loss: 0.05205698021186086, Val Loss: 0.04750534775001662 +2024-07-23 06:15:39.118 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 12/50, Train Loss: 0.05317799147003545, Val Loss: 0.04717827354158674 +2024-07-23 06:15:43.992 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 13/50, Train Loss: 0.05261444210862884, Val Loss: 0.04819607734680176 +2024-07-23 06:15:48.842 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 14/50, Train Loss: 0.05234297320175056, Val Loss: 0.04688460145677839 +2024-07-23 06:15:53.715 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 15/50, Train Loss: 0.05187815366885983, Val Loss: 0.047068318937505994 +2024-07-23 06:15:58.578 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 16/50, Train Loss: 0.052121517821573295, Val Loss: 0.046683265481676374 +2024-07-23 06:16:03.470 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 17/50, Train Loss: 0.05196130383186615, Val Loss: 0.046545085098062246 +2024-07-23 06:16:08.308 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 18/50, Train Loss: 0.05183173673084149, Val Loss: 0.046576872042247225 +2024-07-23 06:16:13.170 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 19/50, Train Loss: 0.051550892360795006, Val Loss: 0.04610039293766022 +2024-07-23 06:16:17.988 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 20/50, Train Loss: 0.05261921076677167, Val Loss: 0.04711852765509061 +2024-07-23 06:16:22.865 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 21/50, Train Loss: 0.05165389731812935, Val Loss: 0.045929040121180674 +2024-07-23 06:16:27.731 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 22/50, Train Loss: 0.05157080840749236, Val Loss: 0.04655763219509806 +2024-07-23 06:16:32.628 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 23/50, Train Loss: 0.05176707538059698, Val Loss: 0.04753993856055396 +2024-07-23 06:16:37.476 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 24/50, Train Loss: 0.05090071800021598, Val Loss: 0.04557557606271335 +2024-07-23 06:16:42.345 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 25/50, Train Loss: 0.05143116479023145, Val Loss: 0.04580830399479185 +2024-07-23 06:16:47.202 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 26/50, Train Loss: 0.051069042609574705, Val Loss: 0.04584866144827434 +2024-07-23 06:16:52.114 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 27/50, Train Loss: 0.05077049128997784, Val Loss: 0.045486876794270104 +2024-07-23 06:16:56.979 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 28/50, Train Loss: 0.05066512784777352, Val Loss: 0.0453351086803845 +2024-07-23 06:17:01.879 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 29/50, Train Loss: 0.05073704728140281, Val Loss: 0.045606912991830284 +2024-07-23 06:17:06.816 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 30/50, Train Loss: 0.05051475258257527, Val Loss: 0.04537792674132756 +2024-07-23 06:17:11.781 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 31/50, Train Loss: 0.050311218660611376, Val Loss: 0.0448544901396547 +2024-07-23 06:17:16.686 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 32/50, Train Loss: 0.050777026505854264, Val Loss: 0.045515886268445424 +2024-07-23 06:17:21.505 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 33/50, Train Loss: 0.050644543344298236, Val Loss: 0.0457502615238939 +2024-07-23 06:17:26.370 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 34/50, Train Loss: 0.051583185738239154, Val Loss: 0.046222937532833644 +2024-07-23 06:17:31.235 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 35/50, Train Loss: 0.05009230167175142, Val Loss: 0.04513167824063982 +2024-07-23 06:17:36.097 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 36/50, Train Loss: 0.05061912162301059, Val Loss: 0.04598203344004495 +2024-07-23 06:17:40.969 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 37/50, Train Loss: 0.050591437181887716, Val Loss: 0.04584929166095597 +2024-07-23 06:17:45.917 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 38/50, Train Loss: 0.04952846963603336, Val Loss: 0.04494847261479923 +2024-07-23 06:17:50.782 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 39/50, Train Loss: 0.05024899970381879, Val Loss: 0.04580267242022923 +2024-07-23 06:17:55.660 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 40/50, Train Loss: 0.04965773874965425, Val Loss: 0.04517268283026559 +2024-07-23 06:18:00.563 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 41/50, Train Loss: 0.04915269512611513, Val Loss: 0.04538577347993851 +2024-07-23 06:18:05.457 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 42/50, Train Loss: 0.05067015826128996, Val Loss: 0.04619737640023232 +2024-07-23 06:18:10.379 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 43/50, Train Loss: 0.049528203546427764, Val Loss: 0.04550330532448632 +2024-07-23 06:18:15.264 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 44/50, Train Loss: 0.048622728450796925, Val Loss: 0.04441952630877495 +2024-07-23 06:18:20.143 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 45/50, Train Loss: 0.0494322322237377, Val Loss: 0.045631753972598485 +2024-07-23 06:18:25.073 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 46/50, Train Loss: 0.04863076008713016, Val Loss: 0.04523653153862272 +2024-07-23 06:18:29.967 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 47/50, Train Loss: 0.048146853115982734, Val Loss: 0.04535264213170324 +2024-07-23 06:18:34.848 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 48/50, Train Loss: 0.0487892387721401, Val Loss: 0.04564754313656262 +2024-07-23 06:18:39.743 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 49/50, Train Loss: 0.04860523375324332, Val Loss: 0.0463214673101902 +2024-07-23 06:18:44.675 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 50/50, Train Loss: 0.04792093627083187, Val Loss: 0.04437736145087651 +2024-07-23 06:18:44.675 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Fold 2, MAPE: 6.56% +2024-07-23 06:18:44.784 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_10001_25000_LSTM//train_f2_bgd_office_10001_25000_LSTM.png +2024-07-23 06:18:51.090 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 1/50, Train Loss: 0.05126896362564118, Val Loss: 0.03818139801067966 +2024-07-23 06:18:57.404 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 2/50, Train Loss: 0.04576264654132102, Val Loss: 0.03633786429251943 +2024-07-23 06:19:03.709 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 3/50, Train Loss: 0.046884701821765455, Val Loss: 0.03934221560401576 +2024-07-23 06:19:10.040 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 4/50, Train Loss: 0.04555281866743839, Val Loss: 0.03578052552683013 +2024-07-23 06:19:16.412 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 5/50, Train Loss: 0.04550296446080688, Val Loss: 0.03580909616180829 +2024-07-23 06:19:22.856 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 6/50, Train Loss: 0.048860799400604886, Val Loss: 0.0394439415207931 +2024-07-23 06:19:29.236 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 7/50, Train Loss: 0.04637728301848439, Val Loss: 0.035522639804652756 +2024-07-23 06:19:35.525 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 8/50, Train Loss: 0.05014206824167598, Val Loss: 0.038364952909094946 +2024-07-23 06:19:41.861 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 9/50, Train Loss: 0.04556985357575279, Val Loss: 0.03570004025740283 +2024-07-23 06:19:48.194 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 10/50, Train Loss: 0.04562966524214625, Val Loss: 0.03570256318364825 +2024-07-23 06:19:54.474 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 11/50, Train Loss: 0.054143270625056125, Val Loss: 0.03938670211604663 +2024-07-23 06:19:54.474 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:19:54.474 No tasks are waiting in the queue. +2024-07-23 06:19:54.474 4 steps have not started: model_scores, log_model, validate_model, end. +2024-07-23 06:20:00.752 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 12/50, Train Loss: 0.05378318150534475, Val Loss: 0.03839560268180711 +2024-07-23 06:20:07.072 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 13/50, Train Loss: 0.05149375345799134, Val Loss: 0.037394465506076814 +2024-07-23 06:20:13.386 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 14/50, Train Loss: 0.049890737189985004, Val Loss: 0.03731013163924217 +2024-07-23 06:20:19.673 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 15/50, Train Loss: 0.0479280285992854, Val Loss: 0.036765823087521965 +2024-07-23 06:20:25.985 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 16/50, Train Loss: 0.047371473404572165, Val Loss: 0.03648078782217843 +2024-07-23 06:20:32.297 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 17/50, Train Loss: 0.04619251933994053, Val Loss: 0.03608876285808427 +2024-07-23 06:20:38.632 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 18/50, Train Loss: 0.04614546907087453, Val Loss: 0.03571367881127766 +2024-07-23 06:20:44.940 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 19/50, Train Loss: 0.04592378777887324, Val Loss: 0.0356151277997664 +2024-07-23 06:20:51.281 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 20/50, Train Loss: 0.045886853294406865, Val Loss: 0.03557380134505885 +2024-07-23 06:20:57.619 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 21/50, Train Loss: 0.04586565139428746, Val Loss: 0.035407745465636256 +2024-07-23 06:21:03.979 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 22/50, Train Loss: 0.04574709364192949, Val Loss: 0.03515084210251059 +2024-07-23 06:21:10.342 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 23/50, Train Loss: 0.04560521214181999, Val Loss: 0.03536355969096933 +2024-07-23 06:21:16.671 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 24/50, Train Loss: 0.04570255228887788, Val Loss: 0.035315530427864616 +2024-07-23 06:21:23.045 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 25/50, Train Loss: 0.04486370073269597, Val Loss: 0.03519356612648283 +2024-07-23 06:21:29.405 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 26/50, Train Loss: 0.04479936561245713, Val Loss: 0.03553512846784932 +2024-07-23 06:21:35.632 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 27/50, Train Loss: 0.05753624428519242, Val Loss: 0.0399394796362945 +2024-07-23 06:21:41.883 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 28/50, Train Loss: 0.055310062688889265, Val Loss: 0.03917929492890835 +2024-07-23 06:21:48.180 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 29/50, Train Loss: 0.05029931423261011, Val Loss: 0.03721210685159479 +2024-07-23 06:21:54.541 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 30/50, Train Loss: 0.046159189140839545, Val Loss: 0.03603079169988632 +2024-07-23 06:22:00.895 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 31/50, Train Loss: 0.04501610636550317, Val Loss: 0.03547654332859176 +2024-07-23 06:22:07.266 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 32/50, Train Loss: 0.044411486175527676, Val Loss: 0.03493891081639699 +2024-07-23 06:22:13.626 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 33/50, Train Loss: 0.045158269754845465, Val Loss: 0.035301911139062475 +2024-07-23 06:22:19.987 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 34/50, Train Loss: 0.043859538494897404, Val Loss: 0.03466634415090084 +2024-07-23 06:22:26.341 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 35/50, Train Loss: 0.04398359272548621, Val Loss: 0.03464786788182599 +2024-07-23 06:22:32.711 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 36/50, Train Loss: 0.04553342756661151, Val Loss: 0.03525765240192413 +2024-07-23 06:22:39.109 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 37/50, Train Loss: 0.043613483499494385, Val Loss: 0.03473076889557498 +2024-07-23 06:22:45.524 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 38/50, Train Loss: 0.04376515185983061, Val Loss: 0.03419374908719744 +2024-07-23 06:22:51.910 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 39/50, Train Loss: 0.04573579166057727, Val Loss: 0.03489750900438854 +2024-07-23 06:22:58.279 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 40/50, Train Loss: 0.04378840446525769, Val Loss: 0.03421663264078753 +2024-07-23 06:23:04.607 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 41/50, Train Loss: 0.055161534252462625, Val Loss: 0.03999290019273758 +2024-07-23 06:23:11.033 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 42/50, Train Loss: 0.05616273542048691, Val Loss: 0.03757529556751251 +2024-07-23 06:23:17.479 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 43/50, Train Loss: 0.047333643108391936, Val Loss: 0.035588315608245984 +2024-07-23 06:23:23.916 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 44/50, Train Loss: 0.04602719141210584, Val Loss: 0.036086248233914375 +2024-07-23 06:23:30.403 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 45/50, Train Loss: 0.04484628805582472, Val Loss: 0.03550765477120876 +2024-07-23 06:23:36.830 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 46/50, Train Loss: 0.04421932357463905, Val Loss: 0.03563781870262964 +2024-07-23 06:23:43.242 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 47/50, Train Loss: 0.044134741247021894, Val Loss: 0.03539412154683045 +2024-07-23 06:23:49.740 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 48/50, Train Loss: 0.04400490415986064, Val Loss: 0.03526882417500019 +2024-07-23 06:23:56.153 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 49/50, Train Loss: 0.043698854369225264, Val Loss: 0.0346562391945294 +2024-07-23 06:24:02.572 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 50/50, Train Loss: 0.04343444059381811, Val Loss: 0.03411499070269721 +2024-07-23 06:24:02.572 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Fold 3, MAPE: 5.48% +2024-07-23 06:24:02.682 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_10001_25000_LSTM//train_f3_bgd_office_10001_25000_LSTM.png +2024-07-23 06:24:10.559 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 1/50, Train Loss: 0.04104081762890364, Val Loss: 0.037010580780250685 +2024-07-23 06:24:18.489 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 2/50, Train Loss: 0.04228890679733849, Val Loss: 0.04217671693435737 +2024-07-23 06:24:26.387 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 3/50, Train Loss: 0.04929744819414684, Val Loss: 0.03896169327199459 +2024-07-23 06:24:34.093 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 4/50, Train Loss: 0.05089060978257451, Val Loss: 0.03758511782756874 +2024-07-23 06:24:41.936 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 5/50, Train Loss: 0.046997463523313916, Val Loss: 0.03650400516177927 +2024-07-23 06:24:49.790 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 6/50, Train Loss: 0.04392188553023955, Val Loss: 0.0376240392348596 +2024-07-23 06:24:57.694 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 7/50, Train Loss: 0.04297405712563416, Val Loss: 0.0364802893783365 +2024-07-23 06:24:57.694 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:24:57.694 No tasks are waiting in the queue. +2024-07-23 06:24:57.694 4 steps have not started: model_scores, log_model, validate_model, end. +2024-07-23 06:25:05.563 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 8/50, Train Loss: 0.041770110185118926, Val Loss: 0.03797885397715228 +2024-07-23 06:25:13.420 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 9/50, Train Loss: 0.04217522346211233, Val Loss: 0.03758296381149973 +2024-07-23 06:25:21.293 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 10/50, Train Loss: 0.041250160317225705, Val Loss: 0.03736480314816747 +2024-07-23 06:25:29.194 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 11/50, Train Loss: 0.04109922639126408, Val Loss: 0.04283394510192531 +2024-07-23 06:25:36.889 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 12/50, Train Loss: 0.04938004557685605, Val Loss: 0.0389944462371724 +2024-07-23 06:25:44.656 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 13/50, Train Loss: 0.047543143221958614, Val Loss: 0.03747051948947566 +2024-07-23 06:25:52.502 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 14/50, Train Loss: 0.04215747310683645, Val Loss: 0.04031258975820882 +2024-07-23 06:26:00.386 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 15/50, Train Loss: 0.04166289532407262, Val Loss: 0.04280602484941483 +2024-07-23 06:26:08.191 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 16/50, Train Loss: 0.041706432427825596, Val Loss: 0.04195903603519712 +2024-07-23 06:26:16.065 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 17/50, Train Loss: 0.04132810434133842, Val Loss: 0.045127038551228384 +2024-07-23 06:26:23.868 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 18/50, Train Loss: 0.04679707701093164, Val Loss: 0.03905800708702632 +2024-07-23 06:26:31.731 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 19/50, Train Loss: 0.04061417549249084, Val Loss: 0.03820027272616114 +2024-07-23 06:26:39.572 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 20/50, Train Loss: 0.040772366508755875, Val Loss: 0.03778903745114803 +2024-07-23 06:26:47.404 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 21/50, Train Loss: 0.04094364605415827, Val Loss: 0.04471311244581427 +2024-07-23 06:26:55.066 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 22/50, Train Loss: 0.05382844208386438, Val Loss: 0.03831051907369069 +2024-07-23 06:27:02.786 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 23/50, Train Loss: 0.051086946668895496, Val Loss: 0.03840895257890224 +2024-07-23 06:27:10.494 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 24/50, Train Loss: 0.04966507527720312, Val Loss: 0.038218647933432034 +2024-07-23 06:27:18.246 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 25/50, Train Loss: 0.04789502799896331, Val Loss: 0.03718930658485208 +2024-07-23 06:27:26.102 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 26/50, Train Loss: 0.043623890963265265, Val Loss: 0.03664010145834514 +2024-07-23 06:27:34.009 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 27/50, Train Loss: 0.0409658244093773, Val Loss: 0.03605037698788302 +2024-07-23 06:27:41.915 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 28/50, Train Loss: 0.04090457500611571, Val Loss: 0.03878471590578556 +2024-07-23 06:27:49.788 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 29/50, Train Loss: 0.041197984383024015, Val Loss: 0.03805351246680532 +2024-07-23 06:27:57.681 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 30/50, Train Loss: 0.0407053507736017, Val Loss: 0.03881877080670425 +2024-07-23 06:28:05.533 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 31/50, Train Loss: 0.04038206031867143, Val Loss: 0.03660271806376321 +2024-07-23 06:28:13.481 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 32/50, Train Loss: 0.04445538868934944, Val Loss: 0.03969076451446329 +2024-07-23 06:28:21.300 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 33/50, Train Loss: 0.04811095264365618, Val Loss: 0.03990153116839273 +2024-07-23 06:28:28.943 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 34/50, Train Loss: 0.05527447510896058, Val Loss: 0.0389531355883394 +2024-07-23 06:28:36.615 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 35/50, Train Loss: 0.05225010699025173, Val Loss: 0.03897045691098486 +2024-07-23 06:28:44.246 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 36/50, Train Loss: 0.05220126887333804, Val Loss: 0.038995427691510744 +2024-07-23 06:28:51.882 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 37/50, Train Loss: 0.052125515373445105, Val Loss: 0.039006885034697396 +2024-07-23 06:28:59.432 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 38/50, Train Loss: 0.05210345454685304, Val Loss: 0.03900671782238143 +2024-07-23 06:29:07.076 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 39/50, Train Loss: 0.05216040477242278, Val Loss: 0.03899438929344926 +2024-07-23 06:29:14.724 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 40/50, Train Loss: 0.05217790099438922, Val Loss: 0.03902013732918671 +2024-07-23 06:29:22.372 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 41/50, Train Loss: 0.0521152839599841, Val Loss: 0.03902226079787527 +2024-07-23 06:29:29.992 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 42/50, Train Loss: 0.052169820315193856, Val Loss: 0.03899283228175981 +2024-07-23 06:29:37.610 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 43/50, Train Loss: 0.052190627924155915, Val Loss: 0.039011706784367564 +2024-07-23 06:29:45.215 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 44/50, Train Loss: 0.05218871827397881, Val Loss: 0.03897282465228013 +2024-07-23 06:29:52.870 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 45/50, Train Loss: 0.05211203490737183, Val Loss: 0.03894763509077685 +2024-07-23 06:30:00.478 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 46/50, Train Loss: 0.05222203569679425, Val Loss: 0.03897109989609037 +2024-07-23 06:30:00.478 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 06:30:00.478 No tasks are waiting in the queue. +2024-07-23 06:30:00.478 4 steps have not started: model_scores, log_model, validate_model, end. +2024-07-23 06:30:08.107 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 47/50, Train Loss: 0.05218257084917063, Val Loss: 0.0389543356107814 +2024-07-23 06:30:15.716 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 48/50, Train Loss: 0.052033978428734445, Val Loss: 0.03891183105962617 +2024-07-23 06:30:23.366 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 49/50, Train Loss: 0.051977841344116066, Val Loss: 0.03885491900146008 +2024-07-23 06:30:30.993 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Epoch 50/50, Train Loss: 0.051835795329219995, Val Loss: 0.03872173056006432 +2024-07-23 06:30:30.993 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Fold 4, MAPE: 5.82% +2024-07-23 06:30:31.102 [52/cross_validate_train/555 (pid 77502)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_10001_25000_LSTM//train_f4_bgd_office_10001_25000_LSTM.png +2024-07-23 06:30:35.312 [52/cross_validate_train/555 (pid 77502)] Task finished successfully. +2024-07-23 06:30:35.343 [52/model_scores/556 (pid 82168)] Task is starting. +2024-07-23 06:30:36.831 [52/model_scores/556 (pid 82168)] INFO:__main__:Average Train Loss across all folds: 0.05762724617988426 +2024-07-23 06:30:40.716 [52/model_scores/556 (pid 82168)] INFO:__main__:Average Validation Loss across all folds: 0.05541651321308953 +2024-07-23 06:30:40.717 [52/model_scores/556 (pid 82168)] INFO:__main__:Average MAPE across all folds: 8.00% +2024-07-23 06:30:40.718 [52/model_scores/556 (pid 82168)] Task finished successfully. +2024-07-23 06:30:40.746 [52/validate_model/557 (pid 82201)] Task is starting. +2024-07-23 06:30:42.225 [52/validate_model/557 (pid 82201)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 06:30:42.998 [52/validate_model/557 (pid 82201)] INFO:__main__:Test Set MAPE: 7.93% +2024-07-23 06:30:43.379 [52/validate_model/557 (pid 82201)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_office_10001_25000_LSTM//test_bgd_office_10001_25000_LSTM.png +2024-07-23 06:30:43.793 [52/validate_model/557 (pid 82201)] Task finished successfully. +2024-07-23 06:30:43.823 [52/log_model/558 (pid 82212)] Task is starting. +2024-07-23 06:30:45.319 [52/log_model/558 (pid 82212)] INFO:__main__:Logging model bgd_office_10001_25000_LSTM +2024-07-23 06:30:45.321 [52/log_model/558 (pid 82212)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_office_10001_25000_LSTM//bgd_office_10001_25000_LSTM.pth +2024-07-23 06:30:49.205 [52/log_model/558 (pid 82212)] Task finished successfully. +2024-07-23 06:30:49.234 [52/end/559 (pid 82247)] Task is starting. +2024-07-23 06:30:50.704 [52/end/559 (pid 82247)] INFO:__main__:Pipeline end. +2024-07-23 06:30:51.024 [52/end/559 (pid 82247)] Task finished successfully. +2024-07-23 06:30:51.024 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/scaler_bgd_office_10001_25000_LSTM.pkl b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/scaler_bgd_office_10001_25000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..e45ba590460aa6ddaedd8d9b7cd02e649bfe1a1e --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/scaler_bgd_office_10001_25000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64cb28a7850f3201a2c470f8dcc8143d0a7a9afe919d001d4d4b57c1050c5899 +size 557 diff --git a/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/test_bgd_office_10001_25000_LSTM.png b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/test_bgd_office_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..64b48d5289e409a91521241fafcfb348f79d87fd Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/test_bgd_office_10001_25000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f0_bgd_office_10001_25000_LSTM.png b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f0_bgd_office_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..ab0ca3155373f20984adeaedd118a2b3431833ed Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f0_bgd_office_10001_25000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f1_bgd_office_10001_25000_LSTM.png b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f1_bgd_office_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..a3fb53b1da9c55ac1af9d4f1fef907fd0c3df586 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f1_bgd_office_10001_25000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f2_bgd_office_10001_25000_LSTM.png b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f2_bgd_office_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..0f88d3334bdb5cb66fb62049ccfede8ac3b99128 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f2_bgd_office_10001_25000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f3_bgd_office_10001_25000_LSTM.png b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f3_bgd_office_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..1e6c05891d9dfeef2fb3284e0250553ad07fd532 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f3_bgd_office_10001_25000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f4_bgd_office_10001_25000_LSTM.png b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f4_bgd_office_10001_25000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..e7aabd8dba3ef557e079f4976683e0006293ad5d Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_10001_25000_LSTM/train_f4_bgd_office_10001_25000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/bgd_office_1001_5000_LSTM.pth b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/bgd_office_1001_5000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..1f8be2989495d50b7faf28ab9ff4ac802216691a --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/bgd_office_1001_5000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b54a9115c67169532ba3bd677b283fff1a16a5410aa7067204f8fcddbae630f +size 46652 diff --git a/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/output.txt b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..b84bd2f55cc1b10c7662b56ff7ebc613caf5923f --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/output.txt @@ -0,0 +1,765 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-23 03:56:20.226 Workflow starting (run-id 48): +2024-07-23 03:56:20.292 [48/start/491 (pid 57575)] Task is starting. +2024-07-23 03:56:21.676 [48/start/491 (pid 57575)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 03:56:21.962 [48/start/491 (pid 57575)] Task finished successfully. +2024-07-23 03:56:21.990 [48/ingest/492 (pid 57581)] Task is starting. +2024-07-23 03:56:23.367 [48/ingest/492 (pid 57581)] INFO:__main__:Fetching dataframe.. +2024-07-23 03:56:23.380 [48/ingest/492 (pid 57581)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 03:56:26.965 [48/ingest/492 (pid 57581)] Task finished successfully. +2024-07-23 03:56:26.997 [48/pick_2017_data/493 (pid 57612)] Task is starting. +2024-07-23 03:56:28.384 [48/pick_2017_data/493 (pid 57612)] INFO:__main__:Picking 2017 data.. +2024-07-23 03:56:28.675 [48/pick_2017_data/493 (pid 57612)] Task finished successfully. +2024-07-23 03:56:28.705 [48/fill_missing_data/494 (pid 57624)] Task is starting. +2024-07-23 03:56:30.071 [48/fill_missing_data/494 (pid 57624)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 03:56:30.075 [48/fill_missing_data/494 (pid 57624)] INFO:__main__:NaN counts per column: +2024-07-23 03:56:30.076 [48/fill_missing_data/494 (pid 57624)] INFO:__main__:Panther_office_Hannah 12 +2024-07-23 03:56:30.076 [48/fill_missing_data/494 (pid 57624)] Panther_office_Danica 10 +2024-07-23 03:56:30.076 [48/fill_missing_data/494 (pid 57624)] dtype: int64 +2024-07-23 03:56:30.076 [48/fill_missing_data/494 (pid 57624)] --- Logging error --- +2024-07-23 03:56:30.076 [48/fill_missing_data/494 (pid 57624)] Traceback (most recent call last): +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] msg = self.format(record) +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] return fmt.format(record) +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] record.message = record.getMessage() +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] msg = msg % self.args +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] TypeError: not all arguments converted during string formatting +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] Call stack: +2024-07-23 03:56:30.078 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 03:56:30.377 [48/fill_missing_data/494 (pid 57624)] BGD_LinearFlow() +2024-07-23 03:56:30.377 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] cli.main(self) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] return func(*args, **kwargs) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] return self.main(*args, **kwargs) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] rv = self.invoke(ctx) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] return callback(*args, **kwargs) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] return f(get_current_context(), *args, **kwargs) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] task.run_step( +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] self._exec_step_function(step_func) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] step_function() +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] self.missing_values = find_nan_counts(self.df) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] Arguments: (22,) +2024-07-23 03:56:30.379 [48/fill_missing_data/494 (pid 57624)] Task finished successfully. +2024-07-23 03:56:30.408 [48/find_median/495 (pid 57635)] Task is starting. +2024-07-23 03:56:31.800 [48/find_median/495 (pid 57635)] INFO:__main__:Computing and using median.. +2024-07-23 03:56:32.281 [48/find_median/495 (pid 57635)] Task finished successfully. +2024-07-23 03:56:32.310 [48/aggregate_data/496 (pid 57641)] Task is starting. +2024-07-23 03:56:33.724 [48/aggregate_data/496 (pid 57641)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 03:56:37.261 [48/aggregate_data/496 (pid 57641)] Task finished successfully. +2024-07-23 03:56:37.293 [48/split_data/497 (pid 57673)] Task is starting. +2024-07-23 03:56:38.703 [48/split_data/497 (pid 57673)] INFO:__main__:Splitting data into test and train... +2024-07-23 03:56:42.304 [48/split_data/497 (pid 57673)] Task finished successfully. +2024-07-23 03:56:42.332 [48/make_x_y/498 (pid 57699)] Task is starting. +2024-07-23 03:56:44.043 [48/make_x_y/498 (pid 57699)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 03:56:44.434 [48/make_x_y/498 (pid 57699)] Shape of y_train: (6648, 1) +2024-07-23 03:56:44.435 [48/make_x_y/498 (pid 57699)] Shape of X_test: (1392, 360, 1) +2024-07-23 03:56:44.435 [48/make_x_y/498 (pid 57699)] Shape of y_test: (1392, 1) +2024-07-23 03:56:44.436 [48/make_x_y/498 (pid 57699)] Task finished successfully. +2024-07-23 03:56:44.462 [48/cross_validate_train/499 (pid 57710)] Task is starting. +2024-07-23 03:56:45.840 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Creating bgd_office_1001_5000_LSTM +2024-07-23 03:56:45.840 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Performing cross validation.. +2024-07-23 03:56:48.300 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 1/50, Train Loss: 0.1250585433627878, Val Loss: 0.10966158871139799 +2024-07-23 03:56:50.200 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 2/50, Train Loss: 0.11459411254950932, Val Loss: 0.09866259012903486 +2024-07-23 03:56:52.089 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 3/50, Train Loss: 0.09835433661937713, Val Loss: 0.08169703355857304 +2024-07-23 03:56:54.014 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 4/50, Train Loss: 0.07676746036325183, Val Loss: 0.0849078196500029 +2024-07-23 03:56:55.926 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 5/50, Train Loss: 0.07900317917977061, Val Loss: 0.06434796484453338 +2024-07-23 03:56:57.832 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 6/50, Train Loss: 0.07223126462527683, Val Loss: 0.0626121318766049 +2024-07-23 03:56:59.745 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 7/50, Train Loss: 0.06949671443019595, Val Loss: 0.06116581708192825 +2024-07-23 03:57:01.663 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 8/50, Train Loss: 0.06758548000029155, Val Loss: 0.06016884435500417 +2024-07-23 03:57:03.616 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 9/50, Train Loss: 0.06626978484647615, Val Loss: 0.05962371847459248 +2024-07-23 03:57:05.558 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 10/50, Train Loss: 0.0653562000819615, Val Loss: 0.059008614931787766 +2024-07-23 03:57:07.490 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 11/50, Train Loss: 0.06377727761864663, Val Loss: 0.05844444526093347 +2024-07-23 03:57:09.380 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 12/50, Train Loss: 0.0630404888519219, Val Loss: 0.058710160957915446 +2024-07-23 03:57:11.323 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 13/50, Train Loss: 0.0626598209142685, Val Loss: 0.05725493079849652 +2024-07-23 03:57:13.235 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 14/50, Train Loss: 0.061291169481618064, Val Loss: 0.05677535235881805 +2024-07-23 03:57:15.189 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 15/50, Train Loss: 0.06012192517518997, Val Loss: 0.055788816192320415 +2024-07-23 03:57:17.123 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 16/50, Train Loss: 0.058877879913364135, Val Loss: 0.05550401285290718 +2024-07-23 03:57:19.063 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 17/50, Train Loss: 0.05775149049503463, Val Loss: 0.05498425183551652 +2024-07-23 03:57:20.981 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 18/50, Train Loss: 0.05649830496736935, Val Loss: 0.05427695033805711 +2024-07-23 03:57:22.926 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 19/50, Train Loss: 0.05559367441705295, Val Loss: 0.05212801481996264 +2024-07-23 03:57:24.866 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 20/50, Train Loss: 0.05477999544569424, Val Loss: 0.05095805483204978 +2024-07-23 03:57:26.802 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 21/50, Train Loss: 0.053845952664102824, Val Loss: 0.05004738233983517 +2024-07-23 03:57:28.776 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 22/50, Train Loss: 0.05301257845546518, Val Loss: 0.04923980118972915 +2024-07-23 03:57:30.702 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 23/50, Train Loss: 0.05223867222666741, Val Loss: 0.0488450859274183 +2024-07-23 03:57:32.618 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 24/50, Train Loss: 0.05182671270200184, Val Loss: 0.04877647071012429 +2024-07-23 03:57:34.567 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 25/50, Train Loss: 0.051313418735350884, Val Loss: 0.048674302335296356 +2024-07-23 03:57:36.484 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 26/50, Train Loss: 0.051107829968844144, Val Loss: 0.048375910307679855 +2024-07-23 03:57:38.413 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 27/50, Train Loss: 0.05048209471361978, Val Loss: 0.04786287620663643 +2024-07-23 03:57:40.327 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 28/50, Train Loss: 0.050201754857386864, Val Loss: 0.04802689477801323 +2024-07-23 03:57:42.229 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 29/50, Train Loss: 0.050467360551868165, Val Loss: 0.0478057968297175 +2024-07-23 03:57:44.164 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 30/50, Train Loss: 0.05031683189528329, Val Loss: 0.047873995985303605 +2024-07-23 03:57:46.085 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 31/50, Train Loss: 0.04961203687957355, Val Loss: 0.048285468987056185 +2024-07-23 03:57:47.994 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 32/50, Train Loss: 0.04955925302846091, Val Loss: 0.04749776715678828 +2024-07-23 03:57:49.933 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 33/50, Train Loss: 0.049066360773784776, Val Loss: 0.04760486302631242 +2024-07-23 03:57:51.833 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 34/50, Train Loss: 0.049546976281063894, Val Loss: 0.04752450202192579 +2024-07-23 03:57:53.748 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 35/50, Train Loss: 0.04896119992647852, Val Loss: 0.04750940294138023 +2024-07-23 03:57:55.684 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 36/50, Train Loss: 0.04926568892385278, Val Loss: 0.04773368963173458 +2024-07-23 03:57:57.597 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 37/50, Train Loss: 0.04868596739002636, Val Loss: 0.048099433577486445 +2024-07-23 03:57:59.528 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 38/50, Train Loss: 0.04885695699070181, Val Loss: 0.04773487241140434 +2024-07-23 03:58:01.456 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 39/50, Train Loss: 0.04919621949749334, Val Loss: 0.047515733646495 +2024-07-23 03:58:03.376 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 40/50, Train Loss: 0.04845631213060447, Val Loss: 0.047563232481479645 +2024-07-23 03:58:05.302 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 41/50, Train Loss: 0.048999069737536566, Val Loss: 0.04754291304520198 +2024-07-23 03:58:07.246 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 42/50, Train Loss: 0.048919887468218806, Val Loss: 0.04762256613799504 +2024-07-23 03:58:09.177 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 43/50, Train Loss: 0.048916435294917654, Val Loss: 0.047409803526742116 +2024-07-23 03:58:11.117 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 44/50, Train Loss: 0.048913708914603504, Val Loss: 0.04764206095465592 +2024-07-23 03:58:13.051 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 45/50, Train Loss: 0.048813011390822274, Val Loss: 0.04752216514732156 +2024-07-23 03:58:15.015 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 46/50, Train Loss: 0.048594648124916213, Val Loss: 0.04762987212410995 +2024-07-23 03:58:16.960 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 47/50, Train Loss: 0.04837592254791941, Val Loss: 0.04760787758444037 +2024-07-23 03:58:18.931 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 48/50, Train Loss: 0.04849607114280973, Val Loss: 0.04736537560820579 +2024-07-23 03:58:20.876 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 49/50, Train Loss: 0.04830930845013687, Val Loss: 0.04747148895902293 +2024-07-23 03:58:22.878 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 50/50, Train Loss: 0.04862506128847599, Val Loss: 0.04733462243207864 +2024-07-23 03:58:22.878 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Fold 0, MAPE: 13.66% +2024-07-23 03:58:23.188 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_1001_5000_LSTM//train_f0_bgd_office_1001_5000_LSTM.png +2024-07-23 03:58:26.790 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 1/50, Train Loss: 0.048424913388277806, Val Loss: 0.06028033101132938 +2024-07-23 03:58:30.291 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 2/50, Train Loss: 0.04758543393441609, Val Loss: 0.05952591917344502 +2024-07-23 03:58:33.786 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 3/50, Train Loss: 0.04778554793447256, Val Loss: 0.059053778222629 +2024-07-23 04:00:48.232 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 4/50, Train Loss: 0.04758034609258175, Val Loss: 0.05897110647388867 +2024-07-23 04:00:51.539 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 5/50, Train Loss: 0.047566982172429564, Val Loss: 0.05907560735940933 +2024-07-23 04:00:54.936 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 6/50, Train Loss: 0.04753687128956829, Val Loss: 0.059060875326395035 +2024-07-23 04:00:58.213 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 7/50, Train Loss: 0.04748595072222608, Val Loss: 0.058703600402389255 +2024-07-23 04:01:01.575 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 8/50, Train Loss: 0.04717438109219074, Val Loss: 0.05902472138404846 +2024-07-23 04:01:04.982 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 9/50, Train Loss: 0.0473728584125638, Val Loss: 0.05846716942531722 +2024-07-23 04:01:08.382 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 10/50, Train Loss: 0.047310941400272505, Val Loss: 0.05879912269966943 +2024-07-23 04:01:11.779 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 11/50, Train Loss: 0.04721824399062565, Val Loss: 0.05816503667405674 +2024-07-23 04:01:15.183 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 12/50, Train Loss: 0.04694835389299052, Val Loss: 0.058812046902520315 +2024-07-23 04:01:18.585 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 13/50, Train Loss: 0.047250381191926344, Val Loss: 0.059498218872717445 +2024-07-23 04:01:22.019 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 14/50, Train Loss: 0.047314287243144855, Val Loss: 0.059499378395932064 +2024-07-23 04:01:22.020 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 04:01:22.020 No tasks are waiting in the queue. +2024-07-23 04:01:22.020 4 steps have not started: end, model_scores, log_model, validate_model. +2024-07-23 04:01:25.414 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 15/50, Train Loss: 0.047129791309790954, Val Loss: 0.060130169349057336 +2024-07-23 04:01:28.808 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 16/50, Train Loss: 0.04714822537664856, Val Loss: 0.05894480273127556 +2024-07-23 04:01:32.188 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 17/50, Train Loss: 0.04709449764341116, Val Loss: 0.058837240721498214 +2024-07-23 04:01:35.646 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 18/50, Train Loss: 0.04699565430304834, Val Loss: 0.058548854717186516 +2024-07-23 04:01:39.096 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 19/50, Train Loss: 0.046910761695887364, Val Loss: 0.05867315573351724 +2024-07-23 04:01:42.543 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 20/50, Train Loss: 0.04678291744951691, Val Loss: 0.05854500862104552 +2024-07-23 04:01:45.946 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 21/50, Train Loss: 0.04660914771791015, Val Loss: 0.05861867038266999 +2024-07-23 04:01:49.372 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 22/50, Train Loss: 0.04662626992378916, Val Loss: 0.05899793665323939 +2024-07-23 04:01:52.797 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 23/50, Train Loss: 0.04680736323020288, Val Loss: 0.05903227105736732 +2024-07-23 04:01:56.199 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 24/50, Train Loss: 0.04684143319193806, Val Loss: 0.05846572145819664 +2024-07-23 04:01:59.634 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 25/50, Train Loss: 0.04680201549615179, Val Loss: 0.0589940074299063 +2024-07-23 04:02:03.040 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 26/50, Train Loss: 0.04675177053681442, Val Loss: 0.058711534844977514 +2024-07-23 04:02:06.448 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 27/50, Train Loss: 0.046687240499470914, Val Loss: 0.05849709021193641 +2024-07-23 04:02:09.872 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 28/50, Train Loss: 0.0465891709285123, Val Loss: 0.058670037133353094 +2024-07-23 04:02:13.261 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 29/50, Train Loss: 0.046693954590175835, Val Loss: 0.05873583917106901 +2024-07-23 04:02:16.674 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 30/50, Train Loss: 0.04662771408579179, Val Loss: 0.058065796111311234 +2024-07-23 04:02:20.103 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 31/50, Train Loss: 0.04649228786251375, Val Loss: 0.0585144759288856 +2024-07-23 04:02:23.493 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 32/50, Train Loss: 0.046417412560965335, Val Loss: 0.05859563254884311 +2024-07-23 04:02:26.921 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 33/50, Train Loss: 0.04648920696760927, Val Loss: 0.05877182196293559 +2024-07-23 04:02:30.354 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 34/50, Train Loss: 0.0464364442974329, Val Loss: 0.058961183152028494 +2024-07-23 04:02:33.766 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 35/50, Train Loss: 0.046496882901660035, Val Loss: 0.058572062849998476 +2024-07-23 04:02:37.146 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 36/50, Train Loss: 0.04639493873608964, Val Loss: 0.05875157490372658 +2024-07-23 04:02:40.610 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 37/50, Train Loss: 0.046254057570227554, Val Loss: 0.05838119238615036 +2024-07-23 04:02:44.068 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 38/50, Train Loss: 0.04639656557036298, Val Loss: 0.058859284328562876 +2024-07-23 04:02:47.492 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 39/50, Train Loss: 0.04619619106607778, Val Loss: 0.058891311287879944 +2024-07-23 04:02:50.941 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 40/50, Train Loss: 0.04622637453888144, Val Loss: 0.058625621029308864 +2024-07-23 04:02:54.389 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 41/50, Train Loss: 0.04622925506638629, Val Loss: 0.058814102624143876 +2024-07-23 04:07:29.021 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 42/50, Train Loss: 0.04626076144299337, Val Loss: 0.05850111735718591 +2024-07-23 04:07:29.021 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 04:07:29.021 No tasks are waiting in the queue. +2024-07-23 04:07:29.021 4 steps have not started: end, model_scores, log_model, validate_model. +2024-07-23 04:07:32.350 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 43/50, Train Loss: 0.04620074313133955, Val Loss: 0.05854207820125989 +2024-07-23 04:07:35.730 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 44/50, Train Loss: 0.04627434331923723, Val Loss: 0.058154291340282986 +2024-07-23 04:07:39.039 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 45/50, Train Loss: 0.04615982063114643, Val Loss: 0.05863463921206338 +2024-07-23 04:07:42.323 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 46/50, Train Loss: 0.046244991304618975, Val Loss: 0.058988790107624874 +2024-07-23 04:07:45.762 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 47/50, Train Loss: 0.04631090076374156, Val Loss: 0.05905474243419511 +2024-07-23 04:07:49.210 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 48/50, Train Loss: 0.0464036406150886, Val Loss: 0.05945434080702918 +2024-07-23 04:07:52.583 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 49/50, Train Loss: 0.046421365173799654, Val Loss: 0.05849955752491951 +2024-07-23 04:07:55.831 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 50/50, Train Loss: 0.046250845944242815, Val Loss: 0.057795551951442446 +2024-07-23 04:07:55.831 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Fold 1, MAPE: 13.72% +2024-07-23 04:07:55.938 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_1001_5000_LSTM//train_f1_bgd_office_1001_5000_LSTM.png +2024-07-23 04:08:00.788 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 1/50, Train Loss: 0.05054924909311991, Val Loss: 0.0634476438164711 +2024-07-23 04:08:05.668 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 2/50, Train Loss: 0.05036550394904155, Val Loss: 0.06462788251893861 +2024-07-23 04:08:10.502 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 3/50, Train Loss: 0.05043232593183907, Val Loss: 0.06611410400697164 +2024-07-23 04:08:15.265 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 4/50, Train Loss: 0.050241324316280395, Val Loss: 0.06582807621785573 +2024-07-23 04:08:20.123 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 5/50, Train Loss: 0.05062268758550859, Val Loss: 0.06487031706741878 +2024-07-23 04:08:24.989 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 6/50, Train Loss: 0.050212145514356404, Val Loss: 0.06421957196933882 +2024-07-23 04:08:29.875 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 7/50, Train Loss: 0.05030547008992961, Val Loss: 0.06577478625944683 +2024-07-23 04:08:34.718 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 8/50, Train Loss: 0.05019007915129455, Val Loss: 0.06389037328107017 +2024-07-23 04:08:39.564 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 9/50, Train Loss: 0.0501676808612851, Val Loss: 0.06484342845422882 +2024-07-23 04:08:44.462 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 10/50, Train Loss: 0.050134993212010995, Val Loss: 0.06410055703350476 +2024-07-23 04:08:49.312 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 11/50, Train Loss: 0.050027143532553546, Val Loss: 0.06275953629187175 +2024-07-23 04:08:54.208 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 12/50, Train Loss: 0.05009207340817039, Val Loss: 0.0656127284680094 +2024-07-23 04:08:59.050 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 13/50, Train Loss: 0.04995259628272974, Val Loss: 0.06480437623603004 +2024-07-23 04:09:03.980 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 14/50, Train Loss: 0.04992931049603682, Val Loss: 0.06487862467765808 +2024-07-23 04:09:08.876 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 15/50, Train Loss: 0.04990288867758444, Val Loss: 0.06385289920227868 +2024-07-23 04:09:13.805 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 16/50, Train Loss: 0.049982255790382624, Val Loss: 0.06419614904693195 +2024-07-23 04:09:18.681 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 17/50, Train Loss: 0.04986491229814979, Val Loss: 0.06313678664820535 +2024-07-23 04:09:23.592 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 18/50, Train Loss: 0.0497299071508818, Val Loss: 0.06301205924579076 +2024-07-23 04:09:28.494 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 19/50, Train Loss: 0.049846140381235346, Val Loss: 0.06290276529533523 +2024-07-23 04:09:33.382 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 20/50, Train Loss: 0.04981292820034119, Val Loss: 0.06236846649221012 +2024-07-23 04:09:38.224 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 21/50, Train Loss: 0.04973755615691726, Val Loss: 0.06317136521850314 +2024-07-23 04:09:43.117 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 22/50, Train Loss: 0.04962772772145959, Val Loss: 0.06198671885899135 +2024-07-23 04:09:48.030 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 23/50, Train Loss: 0.04954166097853046, Val Loss: 0.06270506903529167 +2024-07-23 04:09:52.952 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 24/50, Train Loss: 0.04960217258821313, Val Loss: 0.061798999458551405 +2024-07-23 04:09:57.866 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 25/50, Train Loss: 0.04962130610902722, Val Loss: 0.0635739697941712 +2024-07-23 04:10:02.861 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 26/50, Train Loss: 0.049429246511023775, Val Loss: 0.06317618382828576 +2024-07-23 04:10:07.799 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 27/50, Train Loss: 0.04950835829815613, Val Loss: 0.06202765862856593 +2024-07-23 04:10:16.767 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 28/50, Train Loss: 0.04949602543806227, Val Loss: 0.06222858045782362 +2024-07-23 04:10:21.533 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 29/50, Train Loss: 0.049367886466475636, Val Loss: 0.06197008298976081 +2024-07-23 04:10:26.387 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 30/50, Train Loss: 0.0493271137193705, Val Loss: 0.062246223645550866 +2024-07-23 04:10:31.343 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 31/50, Train Loss: 0.049408403726724476, Val Loss: 0.06307335102132389 +2024-07-23 04:10:36.348 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 32/50, Train Loss: 0.049337885073887616, Val Loss: 0.06284316873976163 +2024-07-23 04:10:41.322 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 33/50, Train Loss: 0.04937498323404445, Val Loss: 0.06252898871898652 +2024-07-23 04:10:46.312 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 34/50, Train Loss: 0.04919318079303663, Val Loss: 0.062125162993158616 +2024-07-23 04:10:51.283 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 35/50, Train Loss: 0.04943570260030146, Val Loss: 0.062009135953017644 +2024-07-23 04:10:56.407 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 36/50, Train Loss: 0.04921831444908793, Val Loss: 0.06268079589520181 +2024-07-23 04:11:01.438 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 37/50, Train Loss: 0.04933116796354835, Val Loss: 0.06197079994848796 +2024-07-23 04:11:06.539 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 38/50, Train Loss: 0.049410415884967036, Val Loss: 0.06127590441278049 +2024-07-23 04:11:11.606 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 39/50, Train Loss: 0.04936381567341204, Val Loss: 0.062486156821250916 +2024-07-23 04:11:16.719 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 40/50, Train Loss: 0.049211109827200956, Val Loss: 0.06315653866955212 +2024-07-23 04:11:21.780 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 41/50, Train Loss: 0.04909468836222704, Val Loss: 0.06233381416116442 +2024-07-23 04:11:26.892 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 42/50, Train Loss: 0.049037460291471616, Val Loss: 0.06227357802646501 +2024-07-23 04:11:32.073 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 43/50, Train Loss: 0.04896276737921513, Val Loss: 0.06255854144692422 +2024-07-23 04:11:37.274 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 44/50, Train Loss: 0.04897567284150192, Val Loss: 0.06418677334274564 +2024-07-23 04:11:42.464 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 45/50, Train Loss: 0.04918456097276738, Val Loss: 0.06118504617895399 +2024-07-23 04:11:47.683 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 46/50, Train Loss: 0.04899447364732623, Val Loss: 0.062272459587880545 +2024-07-23 04:11:52.907 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 47/50, Train Loss: 0.048730640224396035, Val Loss: 0.0634540614272867 +2024-07-23 04:11:58.183 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 48/50, Train Loss: 0.04880099779424759, Val Loss: 0.062479084304400856 +2024-07-23 04:12:03.544 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 49/50, Train Loss: 0.04850616678595543, Val Loss: 0.06235321685671806 +2024-07-23 04:12:08.998 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 50/50, Train Loss: 0.04858922310030231, Val Loss: 0.06311006269284657 +2024-07-23 04:12:08.998 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Fold 2, MAPE: 13.56% +2024-07-23 04:12:09.130 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_1001_5000_LSTM//train_f2_bgd_office_1001_5000_LSTM.png +2024-07-23 04:12:16.141 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 1/50, Train Loss: 0.0509818460953107, Val Loss: 0.06351324617862701 +2024-07-23 04:12:23.083 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 2/50, Train Loss: 0.05093505036541455, Val Loss: 0.06228552918348994 +2024-07-23 04:15:02.567 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 3/50, Train Loss: 0.0509064806585046, Val Loss: 0.06274886759264128 +2024-07-23 04:15:02.567 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 04:15:02.567 No tasks are waiting in the queue. +2024-07-23 04:15:02.567 4 steps have not started: end, model_scores, log_model, validate_model. +2024-07-23 04:15:08.848 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 4/50, Train Loss: 0.05076350565168926, Val Loss: 0.06270181015133858 +2024-07-23 04:15:15.213 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 5/50, Train Loss: 0.05070290801604446, Val Loss: 0.06298520416021347 +2024-07-23 04:15:21.633 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 6/50, Train Loss: 0.05074539503230036, Val Loss: 0.06328250105891908 +2024-07-23 04:15:27.985 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 7/50, Train Loss: 0.05057139399883558, Val Loss: 0.06315105057188443 +2024-07-23 04:15:34.430 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 8/50, Train Loss: 0.05086376978982267, Val Loss: 0.06326402532202857 +2024-07-23 04:15:40.915 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 9/50, Train Loss: 0.050427539408099735, Val Loss: 0.06254424122827394 +2024-07-23 04:15:47.332 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 10/50, Train Loss: 0.05089821135826248, Val Loss: 0.06247738652995655 +2024-07-23 04:15:53.749 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 11/50, Train Loss: 0.050875924822452255, Val Loss: 0.0634412950703076 +2024-07-23 04:16:00.221 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 12/50, Train Loss: 0.05045041356155341, Val Loss: 0.06298919139163835 +2024-07-23 04:16:06.692 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 13/50, Train Loss: 0.05096011334132376, Val Loss: 0.06327643064515931 +2024-07-23 04:16:13.158 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 14/50, Train Loss: 0.05038808560896692, Val Loss: 0.06348766897405897 +2024-07-23 04:16:19.584 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 15/50, Train Loss: 0.05044994248653487, Val Loss: 0.06304792548928942 +2024-07-23 04:16:26.000 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 16/50, Train Loss: 0.050486501587702216, Val Loss: 0.0626328852559839 +2024-07-23 04:16:32.424 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 17/50, Train Loss: 0.050429807480076236, Val Loss: 0.06383735569460051 +2024-07-23 04:16:38.890 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 18/50, Train Loss: 0.05031932492425545, Val Loss: 0.06336757561990193 +2024-07-23 04:16:45.384 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 19/50, Train Loss: 0.05034506878406882, Val Loss: 0.06449631218399321 +2024-07-23 04:16:51.962 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 20/50, Train Loss: 0.05030765546579584, Val Loss: 0.06288240317787443 +2024-07-23 04:16:58.539 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 21/50, Train Loss: 0.0501954723685551, Val Loss: 0.06253361403942108 +2024-07-23 04:17:05.111 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 22/50, Train Loss: 0.04997411655704323, Val Loss: 0.06312348853264536 +2024-07-23 04:32:16.925 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 23/50, Train Loss: 0.05021821302797297, Val Loss: 0.06271565077560289 +2024-07-23 04:32:16.925 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 04:32:16.925 No tasks are waiting in the queue. +2024-07-23 04:32:16.925 4 steps have not started: end, model_scores, log_model, validate_model. +2024-07-23 04:32:23.311 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 24/50, Train Loss: 0.05022061637622847, Val Loss: 0.06244996041059494 +2024-07-23 04:32:29.751 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 25/50, Train Loss: 0.04995827083375386, Val Loss: 0.062215738317796164 +2024-07-23 04:32:36.060 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 26/50, Train Loss: 0.05029133507620088, Val Loss: 0.06205758590783392 +2024-07-23 04:32:42.449 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 27/50, Train Loss: 0.049993067564402555, Val Loss: 0.06216844511883599 +2024-07-23 04:32:48.922 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 28/50, Train Loss: 0.04975335025262061, Val Loss: 0.06217742477144514 +2024-07-23 04:32:55.398 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 29/50, Train Loss: 0.050022782489871805, Val Loss: 0.062182169088295526 +2024-07-23 04:33:01.823 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 30/50, Train Loss: 0.049984365232664044, Val Loss: 0.06167129735861506 +2024-07-23 04:33:08.270 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 31/50, Train Loss: 0.04985369861179547, Val Loss: 0.061850609949656896 +2024-07-23 04:33:14.713 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 32/50, Train Loss: 0.049900490174190605, Val Loss: 0.06237625671284539 +2024-07-23 04:33:21.196 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 33/50, Train Loss: 0.04972215828974899, Val Loss: 0.0614700480231217 +2024-07-23 04:33:27.685 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 34/50, Train Loss: 0.04987652973680616, Val Loss: 0.06254107153841428 +2024-07-23 04:33:34.150 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 35/50, Train Loss: 0.04954823030145477, Val Loss: 0.06191095262765885 +2024-07-23 04:33:40.580 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 36/50, Train Loss: 0.04977013972058571, Val Loss: 0.06224180119378226 +2024-07-23 04:33:47.064 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 37/50, Train Loss: 0.04948109324029881, Val Loss: 0.062159394579274316 +2024-07-23 04:33:53.538 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 38/50, Train Loss: 0.04947797509191705, Val Loss: 0.0623463260275977 +2024-07-23 04:34:00.041 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 39/50, Train Loss: 0.04948101443298858, Val Loss: 0.06235910483769008 +2024-07-23 04:34:06.554 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 40/50, Train Loss: 0.04939986043107167, Val Loss: 0.06274461767503194 +2024-07-23 04:34:13.027 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 41/50, Train Loss: 0.049229791870327305, Val Loss: 0.062067508165325434 +2024-07-23 04:34:19.543 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 42/50, Train Loss: 0.049373462729209616, Val Loss: 0.06172036464725222 +2024-07-23 04:34:26.071 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 43/50, Train Loss: 0.049215367506090686, Val Loss: 0.061704154525484355 +2024-07-23 04:36:06.143 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 44/50, Train Loss: 0.04925308238527329, Val Loss: 0.06282430067658425 +2024-07-23 04:36:12.557 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 45/50, Train Loss: 0.04912939722643053, Val Loss: 0.06102668313043458 +2024-07-23 04:36:18.909 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 46/50, Train Loss: 0.04922318958389244, Val Loss: 0.06194408738187381 +2024-07-23 04:36:25.363 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 47/50, Train Loss: 0.04925210468417449, Val Loss: 0.06064115070870944 +2024-07-23 04:36:31.847 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 48/50, Train Loss: 0.04905589263913014, Val Loss: 0.061657939212662834 +2024-07-23 04:36:38.376 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 49/50, Train Loss: 0.0490067963816708, Val Loss: 0.061221550085714886 +2024-07-23 04:36:44.857 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 50/50, Train Loss: 0.049269845360796226, Val Loss: 0.060048069166285654 +2024-07-23 04:36:44.857 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Fold 3, MAPE: 12.70% +2024-07-23 04:36:44.963 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_1001_5000_LSTM//train_f3_bgd_office_1001_5000_LSTM.png +2024-07-23 04:36:52.995 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 1/50, Train Loss: 0.048779999312741316, Val Loss: 0.054164324328303336 +2024-07-23 04:37:00.990 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 2/50, Train Loss: 0.04824346338195362, Val Loss: 0.05600937338812011 +2024-07-23 04:37:08.984 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 3/50, Train Loss: 0.04819723672565372, Val Loss: 0.05439294145575591 +2024-07-23 04:37:16.979 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 4/50, Train Loss: 0.04813276030037595, Val Loss: 0.05467193158609526 +2024-07-23 04:37:16.980 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 04:37:16.980 No tasks are waiting in the queue. +2024-07-23 04:37:16.980 4 steps have not started: end, model_scores, log_model, validate_model. +2024-07-23 04:37:24.943 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 5/50, Train Loss: 0.048173440470435154, Val Loss: 0.05571071526833943 +2024-07-23 04:37:32.935 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 6/50, Train Loss: 0.048381464759251855, Val Loss: 0.05527843087911606 +2024-07-23 04:37:40.944 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 7/50, Train Loss: 0.048155479411455406, Val Loss: 0.053752432710358074 +2024-07-23 04:37:48.972 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 8/50, Train Loss: 0.048271045088768005, Val Loss: 0.05448825029390199 +2024-07-23 04:37:56.959 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 9/50, Train Loss: 0.04812093783469721, Val Loss: 0.05488722579819816 +2024-07-23 04:38:05.015 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 10/50, Train Loss: 0.04814416614371812, Val Loss: 0.054777464802776066 +2024-07-23 04:38:13.100 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 11/50, Train Loss: 0.04789913861059594, Val Loss: 0.05370098863329206 +2024-07-23 04:40:11.743 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 12/50, Train Loss: 0.048191359159590184, Val Loss: 0.05423767289945058 +2024-07-23 04:40:19.647 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 13/50, Train Loss: 0.047940096186324097, Val Loss: 0.05316902250051499 +2024-07-23 04:40:27.664 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 14/50, Train Loss: 0.04776241715954638, Val Loss: 0.05423504944358553 +2024-07-23 04:40:35.628 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 15/50, Train Loss: 0.04787155067355468, Val Loss: 0.053770803127970015 +2024-07-23 04:40:43.705 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 16/50, Train Loss: 0.04777573448359624, Val Loss: 0.05350050287587302 +2024-07-23 04:40:51.737 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 17/50, Train Loss: 0.04780079913593229, Val Loss: 0.05429611301847866 +2024-07-23 04:40:59.712 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 18/50, Train Loss: 0.047751055623608075, Val Loss: 0.05378106534481049 +2024-07-23 04:41:07.720 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 19/50, Train Loss: 0.04755819031176554, Val Loss: 0.05694987896297659 +2024-07-23 04:41:15.779 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 20/50, Train Loss: 0.04789183089702294, Val Loss: 0.05435833436037813 +2024-07-23 04:41:23.797 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 21/50, Train Loss: 0.04743595627917983, Val Loss: 0.0531816623040608 +2024-07-23 04:41:31.879 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 22/50, Train Loss: 0.0474995829528947, Val Loss: 0.05340206250548363 +2024-07-23 04:41:39.891 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 23/50, Train Loss: 0.047535223265488945, Val Loss: 0.053571497861828125 +2024-07-23 04:41:47.888 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 24/50, Train Loss: 0.04734086882237388, Val Loss: 0.053150667569467 +2024-07-23 04:41:55.973 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 25/50, Train Loss: 0.047364097206328795, Val Loss: 0.05320149319512504 +2024-07-23 04:42:04.103 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 26/50, Train Loss: 0.047367241030194976, Val Loss: 0.053604279458522794 +2024-07-23 04:42:12.226 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 27/50, Train Loss: 0.047456471399329174, Val Loss: 0.05334619294319834 +2024-07-23 04:43:35.128 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 28/50, Train Loss: 0.04724201592135018, Val Loss: 0.05322616898587772 +2024-07-23 04:43:35.128 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 04:43:35.128 No tasks are waiting in the queue. +2024-07-23 04:43:35.129 4 steps have not started: end, model_scores, log_model, validate_model. +2024-07-23 04:43:43.196 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 29/50, Train Loss: 0.04731702189036142, Val Loss: 0.052702290671212335 +2024-07-23 04:43:51.075 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 30/50, Train Loss: 0.04714885920328998, Val Loss: 0.05438813758747918 +2024-07-23 04:43:59.009 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 31/50, Train Loss: 0.047586773233167054, Val Loss: 0.054635391597236904 +2024-07-23 04:44:07.041 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 32/50, Train Loss: 0.04704522328643963, Val Loss: 0.05321907273360661 +2024-07-23 04:44:15.075 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 33/50, Train Loss: 0.04726553625887495, Val Loss: 0.054042465133326396 +2024-07-23 04:44:23.102 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 34/50, Train Loss: 0.04753580514941065, Val Loss: 0.055148611217737196 +2024-07-23 04:44:31.109 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 35/50, Train Loss: 0.04712293467259612, Val Loss: 0.053640478742974146 +2024-07-23 04:44:39.129 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 36/50, Train Loss: 0.04708703600897871, Val Loss: 0.05373606990490641 +2024-07-23 04:44:47.149 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 37/50, Train Loss: 0.04690200789435499, Val Loss: 0.05456709808536938 +2024-07-23 04:44:55.260 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 38/50, Train Loss: 0.04696443777574205, Val Loss: 0.05334824589746339 +2024-07-23 04:45:03.345 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 39/50, Train Loss: 0.04704338298232733, Val Loss: 0.05334423216325896 +2024-07-23 04:45:11.484 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 40/50, Train Loss: 0.04691465794183742, Val Loss: 0.05368700442569596 +2024-07-23 04:45:19.704 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 41/50, Train Loss: 0.046790885289424454, Val Loss: 0.053744342284543174 +2024-07-23 04:45:27.971 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 42/50, Train Loss: 0.04716426340713241, Val Loss: 0.05377994839634214 +2024-07-23 04:45:36.315 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 43/50, Train Loss: 0.04692482068363962, Val Loss: 0.05449686231357711 +2024-07-23 04:45:44.695 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 44/50, Train Loss: 0.046948507652971254, Val Loss: 0.053689749113151004 +2024-07-23 04:46:13.794 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 45/50, Train Loss: 0.046862805208683696, Val Loss: 0.05400656142405101 +2024-07-23 04:46:21.668 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 46/50, Train Loss: 0.04713195887790329, Val Loss: 0.05317102340715272 +2024-07-23 04:46:29.746 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 47/50, Train Loss: 0.04651431678312606, Val Loss: 0.053140126488038474 +2024-07-23 04:46:37.793 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 48/50, Train Loss: 0.04669177143609729, Val Loss: 0.05309537585292544 +2024-07-23 04:46:45.997 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 49/50, Train Loss: 0.046705138559142746, Val Loss: 0.053238442965916226 +2024-07-23 04:46:54.229 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 50/50, Train Loss: 0.046644814237524035, Val Loss: 0.054594732714550835 +2024-07-23 04:46:54.229 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Fold 4, MAPE: 13.86% +2024-07-23 04:46:54.350 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_1001_5000_LSTM//train_f4_bgd_office_1001_5000_LSTM.png +2024-07-23 04:46:58.606 [48/cross_validate_train/499 (pid 57710)] Task finished successfully. +2024-07-23 04:46:58.633 [48/model_scores/500 (pid 62473)] Task is starting. +2024-07-23 04:47:00.044 [48/model_scores/500 (pid 62473)] INFO:__main__:Average Train Loss across all folds: 0.04787595798626827 +2024-07-23 04:47:03.749 [48/model_scores/500 (pid 62473)] INFO:__main__:Average Validation Loss across all folds: 0.056576607791440824 +2024-07-23 04:47:03.749 [48/model_scores/500 (pid 62473)] INFO:__main__:Average MAPE across all folds: 13.50% +2024-07-23 04:47:03.750 [48/model_scores/500 (pid 62473)] Task finished successfully. +2024-07-23 04:47:03.781 [48/validate_model/501 (pid 62525)] Task is starting. +2024-07-23 04:47:05.154 [48/validate_model/501 (pid 62525)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 04:47:05.881 [48/validate_model/501 (pid 62525)] INFO:__main__:Test Set MAPE: 25.98% +2024-07-23 04:47:06.240 [48/validate_model/501 (pid 62525)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_office_1001_5000_LSTM//test_bgd_office_1001_5000_LSTM.png +2024-07-23 04:47:06.666 [48/validate_model/501 (pid 62525)] Task finished successfully. +2024-07-23 04:47:06.695 [48/log_model/502 (pid 62553)] Task is starting. +2024-07-23 04:47:08.090 [48/log_model/502 (pid 62553)] INFO:__main__:Logging model bgd_office_1001_5000_LSTM +2024-07-23 04:47:08.092 [48/log_model/502 (pid 62553)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_office_1001_5000_LSTM//bgd_office_1001_5000_LSTM.pth +2024-07-23 04:47:11.824 [48/log_model/502 (pid 62553)] Task finished successfully. +2024-07-23 04:47:11.849 [48/end/503 (pid 62604)] Task is starting. +2024-07-23 04:47:13.239 [48/end/503 (pid 62604)] INFO:__main__:Pipeline end. +2024-07-23 04:47:13.543 [48/end/503 (pid 62604)] Task finished successfully. +2024-07-23 04:47:13.544 Done! +✅ Run('BGD_LinearFlow/48') succeeded: +-- stdout -- +2024-07-23 03:56:20.226 Workflow starting (run-id 48): +2024-07-23 03:56:20.292 [48/start/491 (pid 57575)] Task is starting. +2024-07-23 03:56:21.676 [48/start/491 (pid 57575)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 03:56:21.962 [48/start/491 (pid 57575)] Task finished successfully. +2024-07-23 03:56:21.990 [48/ingest/492 (pid 57581)] Task is starting. +2024-07-23 03:56:23.367 [48/ingest/492 (pid 57581)] INFO:__main__:Fetching dataframe.. +2024-07-23 03:56:23.380 [48/ingest/492 (pid 57581)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 03:56:26.965 [48/ingest/492 (pid 57581)] Task finished successfully. +2024-07-23 03:56:26.997 [48/pick_2017_data/493 (pid 57612)] Task is starting. +2024-07-23 03:56:28.384 [48/pick_2017_data/493 (pid 57612)] INFO:__main__:Picking 2017 data.. +2024-07-23 03:56:28.675 [48/pick_2017_data/493 (pid 57612)] Task finished successfully. +2024-07-23 03:56:28.705 [48/fill_missing_data/494 (pid 57624)] Task is starting. +2024-07-23 03:56:30.071 [48/fill_missing_data/494 (pid 57624)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 03:56:30.075 [48/fill_missing_data/494 (pid 57624)] INFO:__main__:NaN counts per column: +2024-07-23 03:56:30.076 [48/fill_missing_data/494 (pid 57624)] INFO:__main__:Panther_office_Hannah 12 +2024-07-23 03:56:30.076 [48/fill_missing_data/494 (pid 57624)] Panther_office_Danica 10 +2024-07-23 03:56:30.076 [48/fill_missing_data/494 (pid 57624)] dtype: int64 +2024-07-23 03:56:30.076 [48/fill_missing_data/494 (pid 57624)] --- Logging error --- +2024-07-23 03:56:30.076 [48/fill_missing_data/494 (pid 57624)] Traceback (most recent call last): +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] msg = self.format(record) +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] return fmt.format(record) +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] record.message = record.getMessage() +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] msg = msg % self.args +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] TypeError: not all arguments converted during string formatting +2024-07-23 03:56:30.077 [48/fill_missing_data/494 (pid 57624)] Call stack: +2024-07-23 03:56:30.078 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 03:56:30.377 [48/fill_missing_data/494 (pid 57624)] BGD_LinearFlow() +2024-07-23 03:56:30.377 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] cli.main(self) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] return func(*args, **kwargs) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] return self.main(*args, **kwargs) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] rv = self.invoke(ctx) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] return callback(*args, **kwargs) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] return f(get_current_context(), *args, **kwargs) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] task.run_step( +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] self._exec_step_function(step_func) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] step_function() +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] self.missing_values = find_nan_counts(self.df) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 03:56:30.378 [48/fill_missing_data/494 (pid 57624)] Arguments: (22,) +2024-07-23 03:56:30.379 [48/fill_missing_data/494 (pid 57624)] Task finished successfully. +2024-07-23 03:56:30.408 [48/find_median/495 (pid 57635)] Task is starting. +2024-07-23 03:56:31.800 [48/find_median/495 (pid 57635)] INFO:__main__:Computing and using median.. +2024-07-23 03:56:32.281 [48/find_median/495 (pid 57635)] Task finished successfully. +2024-07-23 03:56:32.310 [48/aggregate_data/496 (pid 57641)] Task is starting. +2024-07-23 03:56:33.724 [48/aggregate_data/496 (pid 57641)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 03:56:37.261 [48/aggregate_data/496 (pid 57641)] Task finished successfully. +2024-07-23 03:56:37.293 [48/split_data/497 (pid 57673)] Task is starting. +2024-07-23 03:56:38.703 [48/split_data/497 (pid 57673)] INFO:__main__:Splitting data into test and train... +2024-07-23 03:56:42.304 [48/split_data/497 (pid 57673)] Task finished successfully. +2024-07-23 03:56:42.332 [48/make_x_y/498 (pid 57699)] Task is starting. +2024-07-23 03:56:44.043 [48/make_x_y/498 (pid 57699)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 03:56:44.434 [48/make_x_y/498 (pid 57699)] Shape of y_train: (6648, 1) +2024-07-23 03:56:44.435 [48/make_x_y/498 (pid 57699)] Shape of X_test: (1392, 360, 1) +2024-07-23 03:56:44.435 [48/make_x_y/498 (pid 57699)] Shape of y_test: (1392, 1) +2024-07-23 03:56:44.436 [48/make_x_y/498 (pid 57699)] Task finished successfully. +2024-07-23 03:56:44.462 [48/cross_validate_train/499 (pid 57710)] Task is starting. +2024-07-23 03:56:45.840 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Creating bgd_office_1001_5000_LSTM +2024-07-23 03:56:45.840 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Performing cross validation.. +2024-07-23 03:56:48.300 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 1/50, Train Loss: 0.1250585433627878, Val Loss: 0.10966158871139799 +2024-07-23 03:56:50.200 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 2/50, Train Loss: 0.11459411254950932, Val Loss: 0.09866259012903486 +2024-07-23 03:56:52.089 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 3/50, Train Loss: 0.09835433661937713, Val Loss: 0.08169703355857304 +2024-07-23 03:56:54.014 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 4/50, Train Loss: 0.07676746036325183, Val Loss: 0.0849078196500029 +2024-07-23 03:56:55.926 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 5/50, Train Loss: 0.07900317917977061, Val Loss: 0.06434796484453338 +2024-07-23 03:56:57.832 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 6/50, Train Loss: 0.07223126462527683, Val Loss: 0.0626121318766049 +2024-07-23 03:56:59.745 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 7/50, Train Loss: 0.06949671443019595, Val Loss: 0.06116581708192825 +2024-07-23 03:57:01.663 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 8/50, Train Loss: 0.06758548000029155, Val Loss: 0.06016884435500417 +2024-07-23 03:57:03.616 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 9/50, Train Loss: 0.06626978484647615, Val Loss: 0.05962371847459248 +2024-07-23 03:57:05.558 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 10/50, Train Loss: 0.0653562000819615, Val Loss: 0.059008614931787766 +2024-07-23 03:57:07.490 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 11/50, Train Loss: 0.06377727761864663, Val Loss: 0.05844444526093347 +2024-07-23 03:57:09.380 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 12/50, Train Loss: 0.0630404888519219, Val Loss: 0.058710160957915446 +2024-07-23 03:57:11.323 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 13/50, Train Loss: 0.0626598209142685, Val Loss: 0.05725493079849652 +2024-07-23 03:57:13.235 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 14/50, Train Loss: 0.061291169481618064, Val Loss: 0.05677535235881805 +2024-07-23 03:57:15.189 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 15/50, Train Loss: 0.06012192517518997, Val Loss: 0.055788816192320415 +2024-07-23 03:57:17.123 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 16/50, Train Loss: 0.058877879913364135, Val Loss: 0.05550401285290718 +2024-07-23 03:57:19.063 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 17/50, Train Loss: 0.05775149049503463, Val Loss: 0.05498425183551652 +2024-07-23 03:57:20.981 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 18/50, Train Loss: 0.05649830496736935, Val Loss: 0.05427695033805711 +2024-07-23 03:57:22.926 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 19/50, Train Loss: 0.05559367441705295, Val Loss: 0.05212801481996264 +2024-07-23 03:57:24.866 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 20/50, Train Loss: 0.05477999544569424, Val Loss: 0.05095805483204978 +2024-07-23 03:57:26.802 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 21/50, Train Loss: 0.053845952664102824, Val Loss: 0.05004738233983517 +2024-07-23 03:57:28.776 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 22/50, Train Loss: 0.05301257845546518, Val Loss: 0.04923980118972915 +2024-07-23 03:57:30.702 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 23/50, Train Loss: 0.05223867222666741, Val Loss: 0.0488450859274183 +2024-07-23 03:57:32.618 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 24/50, Train Loss: 0.05182671270200184, Val Loss: 0.04877647071012429 +2024-07-23 03:57:34.567 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 25/50, Train Loss: 0.051313418735350884, Val Loss: 0.048674302335296356 +2024-07-23 03:57:36.484 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 26/50, Train Loss: 0.051107829968844144, Val Loss: 0.048375910307679855 +2024-07-23 03:57:38.413 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 27/50, Train Loss: 0.05048209471361978, Val Loss: 0.04786287620663643 +2024-07-23 03:57:40.327 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 28/50, Train Loss: 0.050201754857386864, Val Loss: 0.04802689477801323 +2024-07-23 03:57:42.229 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 29/50, Train Loss: 0.050467360551868165, Val Loss: 0.0478057968297175 +2024-07-23 03:57:44.164 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 30/50, Train Loss: 0.05031683189528329, Val Loss: 0.047873995985303605 +2024-07-23 03:57:46.085 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 31/50, Train Loss: 0.04961203687957355, Val Loss: 0.048285468987056185 +2024-07-23 03:57:47.994 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 32/50, Train Loss: 0.04955925302846091, Val Loss: 0.04749776715678828 +2024-07-23 03:57:49.933 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 33/50, Train Loss: 0.049066360773784776, Val Loss: 0.04760486302631242 +2024-07-23 03:57:51.833 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 34/50, Train Loss: 0.049546976281063894, Val Loss: 0.04752450202192579 +2024-07-23 03:57:53.748 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 35/50, Train Loss: 0.04896119992647852, Val Loss: 0.04750940294138023 +2024-07-23 03:57:55.684 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 36/50, Train Loss: 0.04926568892385278, Val Loss: 0.04773368963173458 +2024-07-23 03:57:57.597 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 37/50, Train Loss: 0.04868596739002636, Val Loss: 0.048099433577486445 +2024-07-23 03:57:59.528 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 38/50, Train Loss: 0.04885695699070181, Val Loss: 0.04773487241140434 +2024-07-23 03:58:01.456 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 39/50, Train Loss: 0.04919621949749334, Val Loss: 0.047515733646495 +2024-07-23 03:58:03.376 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 40/50, Train Loss: 0.04845631213060447, Val Loss: 0.047563232481479645 +2024-07-23 03:58:05.302 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 41/50, Train Loss: 0.048999069737536566, Val Loss: 0.04754291304520198 +2024-07-23 03:58:07.246 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 42/50, Train Loss: 0.048919887468218806, Val Loss: 0.04762256613799504 +2024-07-23 03:58:09.177 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 43/50, Train Loss: 0.048916435294917654, Val Loss: 0.047409803526742116 +2024-07-23 03:58:11.117 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 44/50, Train Loss: 0.048913708914603504, Val Loss: 0.04764206095465592 +2024-07-23 03:58:13.051 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 45/50, Train Loss: 0.048813011390822274, Val Loss: 0.04752216514732156 +2024-07-23 03:58:15.015 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 46/50, Train Loss: 0.048594648124916213, Val Loss: 0.04762987212410995 +2024-07-23 03:58:16.960 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 47/50, Train Loss: 0.04837592254791941, Val Loss: 0.04760787758444037 +2024-07-23 03:58:18.931 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 48/50, Train Loss: 0.04849607114280973, Val Loss: 0.04736537560820579 +2024-07-23 03:58:20.876 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 49/50, Train Loss: 0.04830930845013687, Val Loss: 0.04747148895902293 +2024-07-23 03:58:22.878 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 50/50, Train Loss: 0.04862506128847599, Val Loss: 0.04733462243207864 +2024-07-23 03:58:22.878 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Fold 0, MAPE: 13.66% +2024-07-23 03:58:23.188 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_1001_5000_LSTM//train_f0_bgd_office_1001_5000_LSTM.png +2024-07-23 03:58:26.790 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 1/50, Train Loss: 0.048424913388277806, Val Loss: 0.06028033101132938 +2024-07-23 03:58:30.291 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 2/50, Train Loss: 0.04758543393441609, Val Loss: 0.05952591917344502 +2024-07-23 03:58:33.786 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 3/50, Train Loss: 0.04778554793447256, Val Loss: 0.059053778222629 +2024-07-23 04:00:48.232 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 4/50, Train Loss: 0.04758034609258175, Val Loss: 0.05897110647388867 +2024-07-23 04:00:51.539 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 5/50, Train Loss: 0.047566982172429564, Val Loss: 0.05907560735940933 +2024-07-23 04:00:54.936 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 6/50, Train Loss: 0.04753687128956829, Val Loss: 0.059060875326395035 +2024-07-23 04:00:58.213 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 7/50, Train Loss: 0.04748595072222608, Val Loss: 0.058703600402389255 +2024-07-23 04:01:01.575 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 8/50, Train Loss: 0.04717438109219074, Val Loss: 0.05902472138404846 +2024-07-23 04:01:04.982 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 9/50, Train Loss: 0.0473728584125638, Val Loss: 0.05846716942531722 +2024-07-23 04:01:08.382 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 10/50, Train Loss: 0.047310941400272505, Val Loss: 0.05879912269966943 +2024-07-23 04:01:11.779 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 11/50, Train Loss: 0.04721824399062565, Val Loss: 0.05816503667405674 +2024-07-23 04:01:15.183 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 12/50, Train Loss: 0.04694835389299052, Val Loss: 0.058812046902520315 +2024-07-23 04:01:18.585 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 13/50, Train Loss: 0.047250381191926344, Val Loss: 0.059498218872717445 +2024-07-23 04:01:22.019 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 14/50, Train Loss: 0.047314287243144855, Val Loss: 0.059499378395932064 +2024-07-23 04:01:22.020 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 04:01:22.020 No tasks are waiting in the queue. +2024-07-23 04:01:22.020 4 steps have not started: end, model_scores, log_model, validate_model. +2024-07-23 04:01:25.414 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 15/50, Train Loss: 0.047129791309790954, Val Loss: 0.060130169349057336 +2024-07-23 04:01:28.808 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 16/50, Train Loss: 0.04714822537664856, Val Loss: 0.05894480273127556 +2024-07-23 04:01:32.188 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 17/50, Train Loss: 0.04709449764341116, Val Loss: 0.058837240721498214 +2024-07-23 04:01:35.646 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 18/50, Train Loss: 0.04699565430304834, Val Loss: 0.058548854717186516 +2024-07-23 04:01:39.096 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 19/50, Train Loss: 0.046910761695887364, Val Loss: 0.05867315573351724 +2024-07-23 04:01:42.543 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 20/50, Train Loss: 0.04678291744951691, Val Loss: 0.05854500862104552 +2024-07-23 04:01:45.946 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 21/50, Train Loss: 0.04660914771791015, Val Loss: 0.05861867038266999 +2024-07-23 04:01:49.372 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 22/50, Train Loss: 0.04662626992378916, Val Loss: 0.05899793665323939 +2024-07-23 04:01:52.797 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 23/50, Train Loss: 0.04680736323020288, Val Loss: 0.05903227105736732 +2024-07-23 04:01:56.199 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 24/50, Train Loss: 0.04684143319193806, Val Loss: 0.05846572145819664 +2024-07-23 04:01:59.634 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 25/50, Train Loss: 0.04680201549615179, Val Loss: 0.0589940074299063 +2024-07-23 04:02:03.040 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 26/50, Train Loss: 0.04675177053681442, Val Loss: 0.058711534844977514 +2024-07-23 04:02:06.448 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 27/50, Train Loss: 0.046687240499470914, Val Loss: 0.05849709021193641 +2024-07-23 04:02:09.872 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 28/50, Train Loss: 0.0465891709285123, Val Loss: 0.058670037133353094 +2024-07-23 04:02:13.261 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 29/50, Train Loss: 0.046693954590175835, Val Loss: 0.05873583917106901 +2024-07-23 04:02:16.674 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 30/50, Train Loss: 0.04662771408579179, Val Loss: 0.058065796111311234 +2024-07-23 04:02:20.103 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 31/50, Train Loss: 0.04649228786251375, Val Loss: 0.0585144759288856 +2024-07-23 04:02:23.493 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 32/50, Train Loss: 0.046417412560965335, Val Loss: 0.05859563254884311 +2024-07-23 04:02:26.921 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 33/50, Train Loss: 0.04648920696760927, Val Loss: 0.05877182196293559 +2024-07-23 04:02:30.354 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 34/50, Train Loss: 0.0464364442974329, Val Loss: 0.058961183152028494 +2024-07-23 04:02:33.766 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 35/50, Train Loss: 0.046496882901660035, Val Loss: 0.058572062849998476 +2024-07-23 04:02:37.146 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 36/50, Train Loss: 0.04639493873608964, Val Loss: 0.05875157490372658 +2024-07-23 04:02:40.610 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 37/50, Train Loss: 0.046254057570227554, Val Loss: 0.05838119238615036 +2024-07-23 04:02:44.068 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 38/50, Train Loss: 0.04639656557036298, Val Loss: 0.058859284328562876 +2024-07-23 04:02:47.492 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 39/50, Train Loss: 0.04619619106607778, Val Loss: 0.058891311287879944 +2024-07-23 04:02:50.941 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 40/50, Train Loss: 0.04622637453888144, Val Loss: 0.058625621029308864 +2024-07-23 04:02:54.389 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 41/50, Train Loss: 0.04622925506638629, Val Loss: 0.058814102624143876 +2024-07-23 04:07:29.021 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 42/50, Train Loss: 0.04626076144299337, Val Loss: 0.05850111735718591 +2024-07-23 04:07:29.021 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 04:07:29.021 No tasks are waiting in the queue. +2024-07-23 04:07:29.021 4 steps have not started: end, model_scores, log_model, validate_model. +2024-07-23 04:07:32.350 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 43/50, Train Loss: 0.04620074313133955, Val Loss: 0.05854207820125989 +2024-07-23 04:07:35.730 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 44/50, Train Loss: 0.04627434331923723, Val Loss: 0.058154291340282986 +2024-07-23 04:07:39.039 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 45/50, Train Loss: 0.04615982063114643, Val Loss: 0.05863463921206338 +2024-07-23 04:07:42.323 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 46/50, Train Loss: 0.046244991304618975, Val Loss: 0.058988790107624874 +2024-07-23 04:07:45.762 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 47/50, Train Loss: 0.04631090076374156, Val Loss: 0.05905474243419511 +2024-07-23 04:07:49.210 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 48/50, Train Loss: 0.0464036406150886, Val Loss: 0.05945434080702918 +2024-07-23 04:07:52.583 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 49/50, Train Loss: 0.046421365173799654, Val Loss: 0.05849955752491951 +2024-07-23 04:07:55.831 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 50/50, Train Loss: 0.046250845944242815, Val Loss: 0.057795551951442446 +2024-07-23 04:07:55.831 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Fold 1, MAPE: 13.72% +2024-07-23 04:07:55.938 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_1001_5000_LSTM//train_f1_bgd_office_1001_5000_LSTM.png +2024-07-23 04:08:00.788 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 1/50, Train Loss: 0.05054924909311991, Val Loss: 0.0634476438164711 +2024-07-23 04:08:05.668 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 2/50, Train Loss: 0.05036550394904155, Val Loss: 0.06462788251893861 +2024-07-23 04:08:10.502 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 3/50, Train Loss: 0.05043232593183907, Val Loss: 0.06611410400697164 +2024-07-23 04:08:15.265 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 4/50, Train Loss: 0.050241324316280395, Val Loss: 0.06582807621785573 +2024-07-23 04:08:20.123 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 5/50, Train Loss: 0.05062268758550859, Val Loss: 0.06487031706741878 +2024-07-23 04:08:24.989 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 6/50, Train Loss: 0.050212145514356404, Val Loss: 0.06421957196933882 +2024-07-23 04:08:29.875 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 7/50, Train Loss: 0.05030547008992961, Val Loss: 0.06577478625944683 +2024-07-23 04:08:34.718 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 8/50, Train Loss: 0.05019007915129455, Val Loss: 0.06389037328107017 +2024-07-23 04:08:39.564 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 9/50, Train Loss: 0.0501676808612851, Val Loss: 0.06484342845422882 +2024-07-23 04:08:44.462 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 10/50, Train Loss: 0.050134993212010995, Val Loss: 0.06410055703350476 +2024-07-23 04:08:49.312 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 11/50, Train Loss: 0.050027143532553546, Val Loss: 0.06275953629187175 +2024-07-23 04:08:54.208 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 12/50, Train Loss: 0.05009207340817039, Val Loss: 0.0656127284680094 +2024-07-23 04:08:59.050 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 13/50, Train Loss: 0.04995259628272974, Val Loss: 0.06480437623603004 +2024-07-23 04:09:03.980 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 14/50, Train Loss: 0.04992931049603682, Val Loss: 0.06487862467765808 +2024-07-23 04:09:08.876 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 15/50, Train Loss: 0.04990288867758444, Val Loss: 0.06385289920227868 +2024-07-23 04:09:13.805 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 16/50, Train Loss: 0.049982255790382624, Val Loss: 0.06419614904693195 +2024-07-23 04:09:18.681 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 17/50, Train Loss: 0.04986491229814979, Val Loss: 0.06313678664820535 +2024-07-23 04:09:23.592 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 18/50, Train Loss: 0.0497299071508818, Val Loss: 0.06301205924579076 +2024-07-23 04:09:28.494 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 19/50, Train Loss: 0.049846140381235346, Val Loss: 0.06290276529533523 +2024-07-23 04:09:33.382 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 20/50, Train Loss: 0.04981292820034119, Val Loss: 0.06236846649221012 +2024-07-23 04:09:38.224 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 21/50, Train Loss: 0.04973755615691726, Val Loss: 0.06317136521850314 +2024-07-23 04:09:43.117 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 22/50, Train Loss: 0.04962772772145959, Val Loss: 0.06198671885899135 +2024-07-23 04:09:48.030 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 23/50, Train Loss: 0.04954166097853046, Val Loss: 0.06270506903529167 +2024-07-23 04:09:52.952 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 24/50, Train Loss: 0.04960217258821313, Val Loss: 0.061798999458551405 +2024-07-23 04:09:57.866 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 25/50, Train Loss: 0.04962130610902722, Val Loss: 0.0635739697941712 +2024-07-23 04:10:02.861 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 26/50, Train Loss: 0.049429246511023775, Val Loss: 0.06317618382828576 +2024-07-23 04:10:07.799 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 27/50, Train Loss: 0.04950835829815613, Val Loss: 0.06202765862856593 +2024-07-23 04:10:16.767 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 28/50, Train Loss: 0.04949602543806227, Val Loss: 0.06222858045782362 +2024-07-23 04:10:21.533 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 29/50, Train Loss: 0.049367886466475636, Val Loss: 0.06197008298976081 +2024-07-23 04:10:26.387 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 30/50, Train Loss: 0.0493271137193705, Val Loss: 0.062246223645550866 +2024-07-23 04:10:31.343 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 31/50, Train Loss: 0.049408403726724476, Val Loss: 0.06307335102132389 +2024-07-23 04:10:36.348 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 32/50, Train Loss: 0.049337885073887616, Val Loss: 0.06284316873976163 +2024-07-23 04:10:41.322 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 33/50, Train Loss: 0.04937498323404445, Val Loss: 0.06252898871898652 +2024-07-23 04:10:46.312 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 34/50, Train Loss: 0.04919318079303663, Val Loss: 0.062125162993158616 +2024-07-23 04:10:51.283 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 35/50, Train Loss: 0.04943570260030146, Val Loss: 0.062009135953017644 +2024-07-23 04:10:56.407 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 36/50, Train Loss: 0.04921831444908793, Val Loss: 0.06268079589520181 +2024-07-23 04:11:01.438 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 37/50, Train Loss: 0.04933116796354835, Val Loss: 0.06197079994848796 +2024-07-23 04:11:06.539 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 38/50, Train Loss: 0.049410415884967036, Val Loss: 0.06127590441278049 +2024-07-23 04:11:11.606 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 39/50, Train Loss: 0.04936381567341204, Val Loss: 0.062486156821250916 +2024-07-23 04:11:16.719 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 40/50, Train Loss: 0.049211109827200956, Val Loss: 0.06315653866955212 +2024-07-23 04:11:21.780 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 41/50, Train Loss: 0.04909468836222704, Val Loss: 0.06233381416116442 +2024-07-23 04:11:26.892 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 42/50, Train Loss: 0.049037460291471616, Val Loss: 0.06227357802646501 +2024-07-23 04:11:32.073 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 43/50, Train Loss: 0.04896276737921513, Val Loss: 0.06255854144692422 +2024-07-23 04:11:37.274 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 44/50, Train Loss: 0.04897567284150192, Val Loss: 0.06418677334274564 +2024-07-23 04:11:42.464 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 45/50, Train Loss: 0.04918456097276738, Val Loss: 0.06118504617895399 +2024-07-23 04:11:47.683 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 46/50, Train Loss: 0.04899447364732623, Val Loss: 0.062272459587880545 +2024-07-23 04:11:52.907 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 47/50, Train Loss: 0.048730640224396035, Val Loss: 0.0634540614272867 +2024-07-23 04:11:58.183 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 48/50, Train Loss: 0.04880099779424759, Val Loss: 0.062479084304400856 +2024-07-23 04:12:03.544 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 49/50, Train Loss: 0.04850616678595543, Val Loss: 0.06235321685671806 +2024-07-23 04:12:08.998 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 50/50, Train Loss: 0.04858922310030231, Val Loss: 0.06311006269284657 +2024-07-23 04:12:08.998 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Fold 2, MAPE: 13.56% +2024-07-23 04:12:09.130 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_1001_5000_LSTM//train_f2_bgd_office_1001_5000_LSTM.png +2024-07-23 04:12:16.141 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 1/50, Train Loss: 0.0509818460953107, Val Loss: 0.06351324617862701 +2024-07-23 04:12:23.083 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 2/50, Train Loss: 0.05093505036541455, Val Loss: 0.06228552918348994 +2024-07-23 04:15:02.567 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 3/50, Train Loss: 0.0509064806585046, Val Loss: 0.06274886759264128 +2024-07-23 04:15:02.567 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 04:15:02.567 No tasks are waiting in the queue. +2024-07-23 04:15:02.567 4 steps have not started: end, model_scores, log_model, validate_model. +2024-07-23 04:15:08.848 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 4/50, Train Loss: 0.05076350565168926, Val Loss: 0.06270181015133858 +2024-07-23 04:15:15.213 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 5/50, Train Loss: 0.05070290801604446, Val Loss: 0.06298520416021347 +2024-07-23 04:15:21.633 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 6/50, Train Loss: 0.05074539503230036, Val Loss: 0.06328250105891908 +2024-07-23 04:15:27.985 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 7/50, Train Loss: 0.05057139399883558, Val Loss: 0.06315105057188443 +2024-07-23 04:15:34.430 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 8/50, Train Loss: 0.05086376978982267, Val Loss: 0.06326402532202857 +2024-07-23 04:15:40.915 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 9/50, Train Loss: 0.050427539408099735, Val Loss: 0.06254424122827394 +2024-07-23 04:15:47.332 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 10/50, Train Loss: 0.05089821135826248, Val Loss: 0.06247738652995655 +2024-07-23 04:15:53.749 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 11/50, Train Loss: 0.050875924822452255, Val Loss: 0.0634412950703076 +2024-07-23 04:16:00.221 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 12/50, Train Loss: 0.05045041356155341, Val Loss: 0.06298919139163835 +2024-07-23 04:16:06.692 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 13/50, Train Loss: 0.05096011334132376, Val Loss: 0.06327643064515931 +2024-07-23 04:16:13.158 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 14/50, Train Loss: 0.05038808560896692, Val Loss: 0.06348766897405897 +2024-07-23 04:16:19.584 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 15/50, Train Loss: 0.05044994248653487, Val Loss: 0.06304792548928942 +2024-07-23 04:16:26.000 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 16/50, Train Loss: 0.050486501587702216, Val Loss: 0.0626328852559839 +2024-07-23 04:16:32.424 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 17/50, Train Loss: 0.050429807480076236, Val Loss: 0.06383735569460051 +2024-07-23 04:16:38.890 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 18/50, Train Loss: 0.05031932492425545, Val Loss: 0.06336757561990193 +2024-07-23 04:16:45.384 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 19/50, Train Loss: 0.05034506878406882, Val Loss: 0.06449631218399321 +2024-07-23 04:16:51.962 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 20/50, Train Loss: 0.05030765546579584, Val Loss: 0.06288240317787443 +2024-07-23 04:16:58.539 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 21/50, Train Loss: 0.0501954723685551, Val Loss: 0.06253361403942108 +2024-07-23 04:17:05.111 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 22/50, Train Loss: 0.04997411655704323, Val Loss: 0.06312348853264536 +2024-07-23 04:32:16.925 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 23/50, Train Loss: 0.05021821302797297, Val Loss: 0.06271565077560289 +2024-07-23 04:32:16.925 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 04:32:16.925 No tasks are waiting in the queue. +2024-07-23 04:32:16.925 4 steps have not started: end, model_scores, log_model, validate_model. +2024-07-23 04:32:23.311 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 24/50, Train Loss: 0.05022061637622847, Val Loss: 0.06244996041059494 +2024-07-23 04:32:29.751 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 25/50, Train Loss: 0.04995827083375386, Val Loss: 0.062215738317796164 +2024-07-23 04:32:36.060 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 26/50, Train Loss: 0.05029133507620088, Val Loss: 0.06205758590783392 +2024-07-23 04:32:42.449 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 27/50, Train Loss: 0.049993067564402555, Val Loss: 0.06216844511883599 +2024-07-23 04:32:48.922 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 28/50, Train Loss: 0.04975335025262061, Val Loss: 0.06217742477144514 +2024-07-23 04:32:55.398 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 29/50, Train Loss: 0.050022782489871805, Val Loss: 0.062182169088295526 +2024-07-23 04:33:01.823 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 30/50, Train Loss: 0.049984365232664044, Val Loss: 0.06167129735861506 +2024-07-23 04:33:08.270 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 31/50, Train Loss: 0.04985369861179547, Val Loss: 0.061850609949656896 +2024-07-23 04:33:14.713 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 32/50, Train Loss: 0.049900490174190605, Val Loss: 0.06237625671284539 +2024-07-23 04:33:21.196 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 33/50, Train Loss: 0.04972215828974899, Val Loss: 0.0614700480231217 +2024-07-23 04:33:27.685 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 34/50, Train Loss: 0.04987652973680616, Val Loss: 0.06254107153841428 +2024-07-23 04:33:34.150 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 35/50, Train Loss: 0.04954823030145477, Val Loss: 0.06191095262765885 +2024-07-23 04:33:40.580 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 36/50, Train Loss: 0.04977013972058571, Val Loss: 0.06224180119378226 +2024-07-23 04:33:47.064 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 37/50, Train Loss: 0.04948109324029881, Val Loss: 0.062159394579274316 +2024-07-23 04:33:53.538 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 38/50, Train Loss: 0.04947797509191705, Val Loss: 0.0623463260275977 +2024-07-23 04:34:00.041 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 39/50, Train Loss: 0.04948101443298858, Val Loss: 0.06235910483769008 +2024-07-23 04:34:06.554 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 40/50, Train Loss: 0.04939986043107167, Val Loss: 0.06274461767503194 +2024-07-23 04:34:13.027 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 41/50, Train Loss: 0.049229791870327305, Val Loss: 0.062067508165325434 +2024-07-23 04:34:19.543 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 42/50, Train Loss: 0.049373462729209616, Val Loss: 0.06172036464725222 +2024-07-23 04:34:26.071 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 43/50, Train Loss: 0.049215367506090686, Val Loss: 0.061704154525484355 +2024-07-23 04:36:06.143 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 44/50, Train Loss: 0.04925308238527329, Val Loss: 0.06282430067658425 +2024-07-23 04:36:12.557 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 45/50, Train Loss: 0.04912939722643053, Val Loss: 0.06102668313043458 +2024-07-23 04:36:18.909 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 46/50, Train Loss: 0.04922318958389244, Val Loss: 0.06194408738187381 +2024-07-23 04:36:25.363 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 47/50, Train Loss: 0.04925210468417449, Val Loss: 0.06064115070870944 +2024-07-23 04:36:31.847 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 48/50, Train Loss: 0.04905589263913014, Val Loss: 0.061657939212662834 +2024-07-23 04:36:38.376 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 49/50, Train Loss: 0.0490067963816708, Val Loss: 0.061221550085714886 +2024-07-23 04:36:44.857 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 50/50, Train Loss: 0.049269845360796226, Val Loss: 0.060048069166285654 +2024-07-23 04:36:44.857 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Fold 3, MAPE: 12.70% +2024-07-23 04:36:44.963 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_1001_5000_LSTM//train_f3_bgd_office_1001_5000_LSTM.png +2024-07-23 04:36:52.995 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 1/50, Train Loss: 0.048779999312741316, Val Loss: 0.054164324328303336 +2024-07-23 04:37:00.990 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 2/50, Train Loss: 0.04824346338195362, Val Loss: 0.05600937338812011 +2024-07-23 04:37:08.984 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 3/50, Train Loss: 0.04819723672565372, Val Loss: 0.05439294145575591 +2024-07-23 04:37:16.979 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 4/50, Train Loss: 0.04813276030037595, Val Loss: 0.05467193158609526 +2024-07-23 04:37:16.980 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 04:37:16.980 No tasks are waiting in the queue. +2024-07-23 04:37:16.980 4 steps have not started: end, model_scores, log_model, validate_model. +2024-07-23 04:37:24.943 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 5/50, Train Loss: 0.048173440470435154, Val Loss: 0.05571071526833943 +2024-07-23 04:37:32.935 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 6/50, Train Loss: 0.048381464759251855, Val Loss: 0.05527843087911606 +2024-07-23 04:37:40.944 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 7/50, Train Loss: 0.048155479411455406, Val Loss: 0.053752432710358074 +2024-07-23 04:37:48.972 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 8/50, Train Loss: 0.048271045088768005, Val Loss: 0.05448825029390199 +2024-07-23 04:37:56.959 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 9/50, Train Loss: 0.04812093783469721, Val Loss: 0.05488722579819816 +2024-07-23 04:38:05.015 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 10/50, Train Loss: 0.04814416614371812, Val Loss: 0.054777464802776066 +2024-07-23 04:38:13.100 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 11/50, Train Loss: 0.04789913861059594, Val Loss: 0.05370098863329206 +2024-07-23 04:40:11.743 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 12/50, Train Loss: 0.048191359159590184, Val Loss: 0.05423767289945058 +2024-07-23 04:40:19.647 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 13/50, Train Loss: 0.047940096186324097, Val Loss: 0.05316902250051499 +2024-07-23 04:40:27.664 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 14/50, Train Loss: 0.04776241715954638, Val Loss: 0.05423504944358553 +2024-07-23 04:40:35.628 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 15/50, Train Loss: 0.04787155067355468, Val Loss: 0.053770803127970015 +2024-07-23 04:40:43.705 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 16/50, Train Loss: 0.04777573448359624, Val Loss: 0.05350050287587302 +2024-07-23 04:40:51.737 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 17/50, Train Loss: 0.04780079913593229, Val Loss: 0.05429611301847866 +2024-07-23 04:40:59.712 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 18/50, Train Loss: 0.047751055623608075, Val Loss: 0.05378106534481049 +2024-07-23 04:41:07.720 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 19/50, Train Loss: 0.04755819031176554, Val Loss: 0.05694987896297659 +2024-07-23 04:41:15.779 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 20/50, Train Loss: 0.04789183089702294, Val Loss: 0.05435833436037813 +2024-07-23 04:41:23.797 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 21/50, Train Loss: 0.04743595627917983, Val Loss: 0.0531816623040608 +2024-07-23 04:41:31.879 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 22/50, Train Loss: 0.0474995829528947, Val Loss: 0.05340206250548363 +2024-07-23 04:41:39.891 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 23/50, Train Loss: 0.047535223265488945, Val Loss: 0.053571497861828125 +2024-07-23 04:41:47.888 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 24/50, Train Loss: 0.04734086882237388, Val Loss: 0.053150667569467 +2024-07-23 04:41:55.973 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 25/50, Train Loss: 0.047364097206328795, Val Loss: 0.05320149319512504 +2024-07-23 04:42:04.103 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 26/50, Train Loss: 0.047367241030194976, Val Loss: 0.053604279458522794 +2024-07-23 04:42:12.226 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 27/50, Train Loss: 0.047456471399329174, Val Loss: 0.05334619294319834 +2024-07-23 04:43:35.128 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 28/50, Train Loss: 0.04724201592135018, Val Loss: 0.05322616898587772 +2024-07-23 04:43:35.128 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 04:43:35.128 No tasks are waiting in the queue. +2024-07-23 04:43:35.129 4 steps have not started: end, model_scores, log_model, validate_model. +2024-07-23 04:43:43.196 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 29/50, Train Loss: 0.04731702189036142, Val Loss: 0.052702290671212335 +2024-07-23 04:43:51.075 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 30/50, Train Loss: 0.04714885920328998, Val Loss: 0.05438813758747918 +2024-07-23 04:43:59.009 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 31/50, Train Loss: 0.047586773233167054, Val Loss: 0.054635391597236904 +2024-07-23 04:44:07.041 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 32/50, Train Loss: 0.04704522328643963, Val Loss: 0.05321907273360661 +2024-07-23 04:44:15.075 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 33/50, Train Loss: 0.04726553625887495, Val Loss: 0.054042465133326396 +2024-07-23 04:44:23.102 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 34/50, Train Loss: 0.04753580514941065, Val Loss: 0.055148611217737196 +2024-07-23 04:44:31.109 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 35/50, Train Loss: 0.04712293467259612, Val Loss: 0.053640478742974146 +2024-07-23 04:44:39.129 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 36/50, Train Loss: 0.04708703600897871, Val Loss: 0.05373606990490641 +2024-07-23 04:44:47.149 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 37/50, Train Loss: 0.04690200789435499, Val Loss: 0.05456709808536938 +2024-07-23 04:44:55.260 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 38/50, Train Loss: 0.04696443777574205, Val Loss: 0.05334824589746339 +2024-07-23 04:45:03.345 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 39/50, Train Loss: 0.04704338298232733, Val Loss: 0.05334423216325896 +2024-07-23 04:45:11.484 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 40/50, Train Loss: 0.04691465794183742, Val Loss: 0.05368700442569596 +2024-07-23 04:45:19.704 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 41/50, Train Loss: 0.046790885289424454, Val Loss: 0.053744342284543174 +2024-07-23 04:45:27.971 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 42/50, Train Loss: 0.04716426340713241, Val Loss: 0.05377994839634214 +2024-07-23 04:45:36.315 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 43/50, Train Loss: 0.04692482068363962, Val Loss: 0.05449686231357711 +2024-07-23 04:45:44.695 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 44/50, Train Loss: 0.046948507652971254, Val Loss: 0.053689749113151004 +2024-07-23 04:46:13.794 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 45/50, Train Loss: 0.046862805208683696, Val Loss: 0.05400656142405101 +2024-07-23 04:46:21.668 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 46/50, Train Loss: 0.04713195887790329, Val Loss: 0.05317102340715272 +2024-07-23 04:46:29.746 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 47/50, Train Loss: 0.04651431678312606, Val Loss: 0.053140126488038474 +2024-07-23 04:46:37.793 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 48/50, Train Loss: 0.04669177143609729, Val Loss: 0.05309537585292544 +2024-07-23 04:46:45.997 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 49/50, Train Loss: 0.046705138559142746, Val Loss: 0.053238442965916226 +2024-07-23 04:46:54.229 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Epoch 50/50, Train Loss: 0.046644814237524035, Val Loss: 0.054594732714550835 +2024-07-23 04:46:54.229 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Fold 4, MAPE: 13.86% +2024-07-23 04:46:54.350 [48/cross_validate_train/499 (pid 57710)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_1001_5000_LSTM//train_f4_bgd_office_1001_5000_LSTM.png +2024-07-23 04:46:58.606 [48/cross_validate_train/499 (pid 57710)] Task finished successfully. +2024-07-23 04:46:58.633 [48/model_scores/500 (pid 62473)] Task is starting. +2024-07-23 04:47:00.044 [48/model_scores/500 (pid 62473)] INFO:__main__:Average Train Loss across all folds: 0.04787595798626827 +2024-07-23 04:47:03.749 [48/model_scores/500 (pid 62473)] INFO:__main__:Average Validation Loss across all folds: 0.056576607791440824 +2024-07-23 04:47:03.749 [48/model_scores/500 (pid 62473)] INFO:__main__:Average MAPE across all folds: 13.50% +2024-07-23 04:47:03.750 [48/model_scores/500 (pid 62473)] Task finished successfully. +2024-07-23 04:47:03.781 [48/validate_model/501 (pid 62525)] Task is starting. +2024-07-23 04:47:05.154 [48/validate_model/501 (pid 62525)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 04:47:05.881 [48/validate_model/501 (pid 62525)] INFO:__main__:Test Set MAPE: 25.98% +2024-07-23 04:47:06.240 [48/validate_model/501 (pid 62525)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_office_1001_5000_LSTM//test_bgd_office_1001_5000_LSTM.png +2024-07-23 04:47:06.666 [48/validate_model/501 (pid 62525)] Task finished successfully. +2024-07-23 04:47:06.695 [48/log_model/502 (pid 62553)] Task is starting. +2024-07-23 04:47:08.090 [48/log_model/502 (pid 62553)] INFO:__main__:Logging model bgd_office_1001_5000_LSTM +2024-07-23 04:47:08.092 [48/log_model/502 (pid 62553)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_office_1001_5000_LSTM//bgd_office_1001_5000_LSTM.pth +2024-07-23 04:47:11.824 [48/log_model/502 (pid 62553)] Task finished successfully. +2024-07-23 04:47:11.849 [48/end/503 (pid 62604)] Task is starting. +2024-07-23 04:47:13.239 [48/end/503 (pid 62604)] INFO:__main__:Pipeline end. +2024-07-23 04:47:13.543 [48/end/503 (pid 62604)] Task finished successfully. +2024-07-23 04:47:13.544 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/scaler_bgd_office_1001_5000_LSTM.pkl b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/scaler_bgd_office_1001_5000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..a145d2ad87baa42a1800e1900bd41fe09f0a9329 --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/scaler_bgd_office_1001_5000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a7205fc35dc3aca89c7d038052f0b8fbb1ca43e57df854d84ba31664392a72e +size 557 diff --git a/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/test_bgd_office_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/test_bgd_office_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..cfb050602f36d9478211f169c4552017b0490bde Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/test_bgd_office_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f0_bgd_office_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f0_bgd_office_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..c2989f4c5335d97e501cdfb1b78d3e9ec6b4e0fd Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f0_bgd_office_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f1_bgd_office_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f1_bgd_office_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..b858b9a9b74fe8f4acfe77d4830e356bddddaafc Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f1_bgd_office_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f2_bgd_office_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f2_bgd_office_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..79844c376f3f363b75d777b65478b5184382853a Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f2_bgd_office_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f3_bgd_office_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f3_bgd_office_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..0bf9fa3eb4152972ef058a11bef875615d8d4452 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f3_bgd_office_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f4_bgd_office_1001_5000_LSTM.png b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f4_bgd_office_1001_5000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..cf15604202483768da6a0b228a6077bb718ab65b Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_1001_5000_LSTM/train_f4_bgd_office_1001_5000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/bgd_office_200001_500000_LSTM.pth b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/bgd_office_200001_500000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..553361c028d993c0962bacb2c46e2e0fdfadb19e --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/bgd_office_200001_500000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e746015b9d8819954d025876c616f7f3c09fc49e9afcca65d98c1baf25563bc7 +size 46756 diff --git a/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/scaler_bgd_office_200001_500000_LSTM.pkl b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/scaler_bgd_office_200001_500000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..70043ee454f1452d8fa0e81d36eb11218fca5caf --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/scaler_bgd_office_200001_500000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cccb5ac91c9c0655d0869391cc740c97b6cbcd6929dd73486af164723d8a36e +size 557 diff --git a/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/test_bgd_office_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/test_bgd_office_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..d18121ba527a75a52a17f786e3b42e149dcb8b74 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/test_bgd_office_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f0_bgd_office_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f0_bgd_office_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..1177b933c84424483d4117f7388c99058f39e98d Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f0_bgd_office_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f1_bgd_office_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f1_bgd_office_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..ff1117d694cd6acd7ec48a3e01e4288ecda64f7e Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f1_bgd_office_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f2_bgd_office_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f2_bgd_office_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..7f4964db035bc9b81c31ee096b5cbbb9f6b630c2 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f2_bgd_office_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f3_bgd_office_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f3_bgd_office_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..0c748f97cb06b8a47fbaf3758801ecb4e08720dd Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f3_bgd_office_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f4_bgd_office_200001_500000_LSTM.png b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f4_bgd_office_200001_500000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..f38638de6e4cfaa489ea5125fbaac8d5f3dfba74 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_200001_500000_LSTM/train_f4_bgd_office_200001_500000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/bgd_office_25001_50000_LSTM.pth b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/bgd_office_25001_50000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..156755d5db47b9b44a3dff64dab71ed800859ecf --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/bgd_office_25001_50000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7117ef06ee68075cfeb20062e862c1c587470ddeb472b6643d22e6dbde13db00 +size 46736 diff --git a/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/output.txt b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b6ed9d0259dd7f1ce2dd426a2e042789d8b10a3 --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/output.txt @@ -0,0 +1,767 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-23 00:03:59.131 Workflow starting (run-id 43): +2024-07-23 00:03:59.205 [43/start/421 (pid 32507)] Task is starting. +2024-07-23 00:04:00.674 [43/start/421 (pid 32507)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 00:04:00.969 [43/start/421 (pid 32507)] Task finished successfully. +2024-07-23 00:04:00.999 [43/ingest/422 (pid 32520)] Task is starting. +2024-07-23 00:04:02.507 [43/ingest/422 (pid 32520)] INFO:__main__:Fetching dataframe.. +2024-07-23 00:04:02.525 [43/ingest/422 (pid 32520)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 00:04:06.316 [43/ingest/422 (pid 32520)] Task finished successfully. +2024-07-23 00:04:06.346 [43/pick_2017_data/423 (pid 32551)] Task is starting. +2024-07-23 00:04:07.804 [43/pick_2017_data/423 (pid 32551)] INFO:__main__:Picking 2017 data.. +2024-07-23 00:04:08.127 [43/pick_2017_data/423 (pid 32551)] Task finished successfully. +2024-07-23 00:04:08.158 [43/fill_missing_data/424 (pid 32562)] Task is starting. +2024-07-23 00:04:09.614 [43/fill_missing_data/424 (pid 32562)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] INFO:__main__:NaN counts per column: +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] INFO:__main__:Panther_office_Catherine 12 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Panther_office_Lauretta 11 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Panther_office_Karla 11 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Panther_office_Ruthie 10 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Panther_office_Shauna 12 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Panther_office_Clementine 10 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Robin_office_Serena 0 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Fox_office_Brandy 2 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Rat_office_Loyd 26 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] dtype: int64 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] --- Logging error --- +2024-07-23 00:04:09.624 [43/fill_missing_data/424 (pid 32562)] Traceback (most recent call last): +2024-07-23 00:04:09.624 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 00:04:09.624 [43/fill_missing_data/424 (pid 32562)] msg = self.format(record) +2024-07-23 00:04:09.624 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] return fmt.format(record) +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] record.message = record.getMessage() +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] msg = msg % self.args +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] TypeError: not all arguments converted during string formatting +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] Call stack: +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] BGD_LinearFlow() +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] cli.main(self) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] return func(*args, **kwargs) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] return self.main(*args, **kwargs) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] rv = self.invoke(ctx) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] return callback(*args, **kwargs) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] return f(get_current_context(), *args, **kwargs) +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] task.run_step( +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] self._exec_step_function(step_func) +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] step_function() +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] self.missing_values = find_nan_counts(self.df) +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] Arguments: (94,) +2024-07-23 00:04:09.993 [43/fill_missing_data/424 (pid 32562)] Task finished successfully. +2024-07-23 00:04:10.023 [43/find_median/425 (pid 32575)] Task is starting. +2024-07-23 00:04:11.471 [43/find_median/425 (pid 32575)] INFO:__main__:Computing and using median.. +2024-07-23 00:04:11.987 [43/find_median/425 (pid 32575)] Task finished successfully. +2024-07-23 00:04:12.014 [43/aggregate_data/426 (pid 32586)] Task is starting. +2024-07-23 00:04:13.475 [43/aggregate_data/426 (pid 32586)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 00:04:17.352 [43/aggregate_data/426 (pid 32586)] Task finished successfully. +2024-07-23 00:04:17.382 [43/split_data/427 (pid 32611)] Task is starting. +2024-07-23 00:04:18.856 [43/split_data/427 (pid 32611)] INFO:__main__:Splitting data into test and train... +2024-07-23 00:04:22.710 [43/split_data/427 (pid 32611)] Task finished successfully. +2024-07-23 00:04:22.738 [43/make_x_y/428 (pid 32650)] Task is starting. +2024-07-23 00:04:24.517 [43/make_x_y/428 (pid 32650)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 00:04:24.917 [43/make_x_y/428 (pid 32650)] Shape of y_train: (6648, 1) +2024-07-23 00:04:24.917 [43/make_x_y/428 (pid 32650)] Shape of X_test: (1392, 360, 1) +2024-07-23 00:04:24.917 [43/make_x_y/428 (pid 32650)] Shape of y_test: (1392, 1) +2024-07-23 00:04:24.918 [43/make_x_y/428 (pid 32650)] Task finished successfully. +2024-07-23 00:04:24.948 [43/cross_validate_train/429 (pid 32661)] Task is starting. +2024-07-23 00:04:26.394 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Creating bgd_office_25001_50000_LSTM +2024-07-23 00:04:26.395 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Performing cross validation.. +2024-07-23 00:04:28.903 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 1/50, Train Loss: 0.23792883019362177, Val Loss: 0.21707239001989365 +2024-07-23 00:04:30.808 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 2/50, Train Loss: 0.17758798684392657, Val Loss: 0.2090102527822767 +2024-07-23 00:04:32.719 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 3/50, Train Loss: 0.16381770329816, Val Loss: 0.19065793731382916 +2024-07-23 00:04:34.622 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 4/50, Train Loss: 0.15442178504807608, Val Loss: 0.17359786395515714 +2024-07-23 00:04:36.523 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 5/50, Train Loss: 0.13604039124080114, Val Loss: 0.14546352741973742 +2024-07-23 00:04:38.439 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 6/50, Train Loss: 0.1084159143269062, Val Loss: 0.12169910967350006 +2024-07-23 00:04:40.372 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 7/50, Train Loss: 0.09027004774127688, Val Loss: 0.11457613014749118 +2024-07-23 00:04:42.328 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 8/50, Train Loss: 0.08588938244751522, Val Loss: 0.10833805703691074 +2024-07-23 00:04:44.260 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 9/50, Train Loss: 0.08348475077322551, Val Loss: 0.10098153576254845 +2024-07-23 00:04:46.197 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 10/50, Train Loss: 0.08154750987887383, Val Loss: 0.0979319586285523 +2024-07-23 00:04:48.147 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 11/50, Train Loss: 0.08093443779008729, Val Loss: 0.09551192000508309 +2024-07-23 00:04:50.097 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 12/50, Train Loss: 0.07996671476534435, Val Loss: 0.09215223629559789 +2024-07-23 00:04:52.072 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 13/50, Train Loss: 0.07796556523868016, Val Loss: 0.09005791087235723 +2024-07-23 00:04:54.016 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 14/50, Train Loss: 0.0756565083350454, Val Loss: 0.08805106388671058 +2024-07-23 00:04:55.958 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 15/50, Train Loss: 0.07371882019298417, Val Loss: 0.08570651986769268 +2024-07-23 00:04:57.906 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 16/50, Train Loss: 0.0719887474817889, Val Loss: 0.08404162664498602 +2024-07-23 00:04:59.856 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 17/50, Train Loss: 0.0707446277141571, Val Loss: 0.08254276322466987 +2024-07-23 00:05:01.799 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 18/50, Train Loss: 0.06927961494241441, Val Loss: 0.07988112387912615 +2024-07-23 00:05:03.756 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 19/50, Train Loss: 0.06724020349127906, Val Loss: 0.07780190567885126 +2024-07-23 00:05:05.722 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 20/50, Train Loss: 0.06624776987092836, Val Loss: 0.07591880176748549 +2024-07-23 00:05:07.723 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 21/50, Train Loss: 0.06487234298671996, Val Loss: 0.07391858186040606 +2024-07-23 00:05:09.683 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 22/50, Train Loss: 0.06359164203916277, Val Loss: 0.07238535795892988 +2024-07-23 00:05:11.686 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 23/50, Train Loss: 0.06222334110311099, Val Loss: 0.07117397146565574 +2024-07-23 00:05:13.674 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 24/50, Train Loss: 0.06175079590507916, Val Loss: 0.07023163512349129 +2024-07-23 00:05:15.661 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 25/50, Train Loss: 0.06046797399009977, Val Loss: 0.07086216711572238 +2024-07-23 00:05:17.654 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 26/50, Train Loss: 0.05918815402047975, Val Loss: 0.06912065872124264 +2024-07-23 00:05:19.641 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 27/50, Train Loss: 0.05721981493490083, Val Loss: 0.0664455917264734 +2024-07-23 00:05:21.637 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 28/50, Train Loss: 0.05564608531338828, Val Loss: 0.06453437986118453 +2024-07-23 00:05:23.653 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 29/50, Train Loss: 0.054019337041037424, Val Loss: 0.06418706423469953 +2024-07-23 00:05:25.665 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 30/50, Train Loss: 0.053135782267366136, Val Loss: 0.06358079654829843 +2024-07-23 00:05:27.662 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 31/50, Train Loss: 0.05262901729771069, Val Loss: 0.06126475749271257 +2024-07-23 00:05:29.649 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 32/50, Train Loss: 0.0523163058928081, Val Loss: 0.06097611518842833 +2024-07-23 00:05:31.633 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 33/50, Train Loss: 0.05196049703019006, Val Loss: 0.06134808361530304 +2024-07-23 00:05:33.620 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 34/50, Train Loss: 0.05160993997539793, Val Loss: 0.0611308471432754 +2024-07-23 00:05:35.606 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 35/50, Train Loss: 0.05132144891789981, Val Loss: 0.059441903339965005 +2024-07-23 00:05:37.605 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 36/50, Train Loss: 0.050957244847502026, Val Loss: 0.05915917019758906 +2024-07-23 00:05:39.630 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 37/50, Train Loss: 0.05100553280540875, Val Loss: 0.059138184360095436 +2024-07-23 00:05:41.636 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 38/50, Train Loss: 0.050905027772699084, Val Loss: 0.059172858936446054 +2024-07-23 00:05:43.643 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 39/50, Train Loss: 0.05085746039237295, Val Loss: 0.05854946236525263 +2024-07-23 00:05:45.651 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 40/50, Train Loss: 0.050548538991383146, Val Loss: 0.05725893729499408 +2024-07-23 00:05:47.660 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 41/50, Train Loss: 0.05007270446845463, Val Loss: 0.057338100991078784 +2024-07-23 00:05:49.681 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 42/50, Train Loss: 0.04990008058292525, Val Loss: 0.057660064101219176 +2024-07-23 00:05:51.674 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 43/50, Train Loss: 0.049825745075941084, Val Loss: 0.05772990988833564 +2024-07-23 00:05:53.679 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 44/50, Train Loss: 0.05033862314053944, Val Loss: 0.056503323572022576 +2024-07-23 00:05:55.684 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 45/50, Train Loss: 0.05016461791736739, Val Loss: 0.056300450542143415 +2024-07-23 00:05:57.693 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 46/50, Train Loss: 0.04988931438752583, Val Loss: 0.05682707748242787 +2024-07-23 00:05:59.699 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 47/50, Train Loss: 0.05001123111162867, Val Loss: 0.05668982937932014 +2024-07-23 00:06:01.699 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 48/50, Train Loss: 0.049699009635618754, Val Loss: 0.0562722527555057 +2024-07-23 00:06:03.726 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 49/50, Train Loss: 0.049747996351548605, Val Loss: 0.05601590499281883 +2024-07-23 00:06:05.720 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 50/50, Train Loss: 0.049819197612149375, Val Loss: 0.05643379092216492 +2024-07-23 00:06:05.720 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Fold 0, MAPE: 6.53% +2024-07-23 00:06:06.058 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_25001_50000_LSTM//train_f0_bgd_office_25001_50000_LSTM.png +2024-07-23 00:06:09.590 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 1/50, Train Loss: 0.03685286454856396, Val Loss: 0.04445389738040311 +2024-07-23 00:06:13.072 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 2/50, Train Loss: 0.0367357461048024, Val Loss: 0.04427963798599584 +2024-07-23 00:06:16.584 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 3/50, Train Loss: 0.03669428522033351, Val Loss: 0.0448000291628497 +2024-07-23 00:06:20.037 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 4/50, Train Loss: 0.036654590549213543, Val Loss: 0.04340009348733084 +2024-07-23 00:06:23.549 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 5/50, Train Loss: 0.036329239260937486, Val Loss: 0.04304485720183168 +2024-07-23 00:06:26.996 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 6/50, Train Loss: 0.036151360986488204, Val Loss: 0.043293456360697744 +2024-07-23 00:06:30.439 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 7/50, Train Loss: 0.03643868690622704, Val Loss: 0.04345010401947158 +2024-07-23 00:06:33.922 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 8/50, Train Loss: 0.036188341357878274, Val Loss: 0.042354224835123334 +2024-07-23 00:06:37.353 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 9/50, Train Loss: 0.03635675755462476, Val Loss: 0.04186065244887557 +2024-07-23 00:06:40.816 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 10/50, Train Loss: 0.03578063997306994, Val Loss: 0.04186181473944869 +2024-07-23 00:06:44.273 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 11/50, Train Loss: 0.03583017486546721, Val Loss: 0.04225313690091882 +2024-07-23 00:06:47.711 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 12/50, Train Loss: 0.036015192578945844, Val Loss: 0.04113943300076894 +2024-07-23 00:06:51.168 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 13/50, Train Loss: 0.035506345544542586, Val Loss: 0.04134427553841046 +2024-07-23 00:06:54.611 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 14/50, Train Loss: 0.03604071212134191, Val Loss: 0.041402430672730715 +2024-07-23 00:06:58.056 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 15/50, Train Loss: 0.035862443117158756, Val Loss: 0.04056777054710048 +2024-07-23 00:07:01.546 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 16/50, Train Loss: 0.035481975387249676, Val Loss: 0.04114779249898025 +2024-07-23 00:07:05.019 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 17/50, Train Loss: 0.03551509641110897, Val Loss: 0.04081792591937951 +2024-07-23 00:07:08.481 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 18/50, Train Loss: 0.0354646966659597, Val Loss: 0.0410249472196613 +2024-07-23 00:07:11.983 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 19/50, Train Loss: 0.03552300890109369, Val Loss: 0.04088657998612949 +2024-07-23 00:07:15.428 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 20/50, Train Loss: 0.035320649003343925, Val Loss: 0.04153364428452083 +2024-07-23 00:07:18.874 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 21/50, Train Loss: 0.03568110018968582, Val Loss: 0.04155501042093549 +2024-07-23 00:07:22.348 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 22/50, Train Loss: 0.035538394988647526, Val Loss: 0.041370044542210445 +2024-07-23 00:07:25.768 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 23/50, Train Loss: 0.035396878527743474, Val Loss: 0.04118362643889018 +2024-07-23 00:07:29.187 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 24/50, Train Loss: 0.03532062875373023, Val Loss: 0.04107010018612657 +2024-07-23 00:07:32.645 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 25/50, Train Loss: 0.03561756272933313, Val Loss: 0.04078298466546195 +2024-07-23 00:07:36.108 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 26/50, Train Loss: 0.035271784397108215, Val Loss: 0.0414898690368448 +2024-07-23 00:07:39.539 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 27/50, Train Loss: 0.035203529096075464, Val Loss: 0.04141178120459829 +2024-07-23 00:07:43.010 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 28/50, Train Loss: 0.03524582521723849, Val Loss: 0.041744540844644816 +2024-07-23 00:07:46.465 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 29/50, Train Loss: 0.035125212743878365, Val Loss: 0.041349667310714724 +2024-07-23 00:07:49.910 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 30/50, Train Loss: 0.0353488796257547, Val Loss: 0.040208761287587026 +2024-07-23 00:07:53.352 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 31/50, Train Loss: 0.034961515931146485, Val Loss: 0.04167372100055218 +2024-07-23 00:07:56.780 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 32/50, Train Loss: 0.035158435069024566, Val Loss: 0.04260713218578271 +2024-07-23 00:08:00.232 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 33/50, Train Loss: 0.03518292108284576, Val Loss: 0.0411981568804809 +2024-07-23 00:08:03.698 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 34/50, Train Loss: 0.03510577638766595, Val Loss: 0.03995758603726115 +2024-07-23 00:08:07.157 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 35/50, Train Loss: 0.035563011414238385, Val Loss: 0.040979417519909994 +2024-07-23 00:08:10.642 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 36/50, Train Loss: 0.03512055410870484, Val Loss: 0.04137690514326096 +2024-07-23 00:08:14.091 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 37/50, Train Loss: 0.03514192458242178, Val Loss: 0.040834846986191616 +2024-07-23 00:08:17.532 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 38/50, Train Loss: 0.03539087274777038, Val Loss: 0.04043340209339346 +2024-07-23 00:08:21.006 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 39/50, Train Loss: 0.035675423725375105, Val Loss: 0.04118399204952376 +2024-07-23 00:08:24.478 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 40/50, Train Loss: 0.035562017639832834, Val Loss: 0.04086040322269712 +2024-07-23 00:08:27.917 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 41/50, Train Loss: 0.03567081684512752, Val Loss: 0.0418532492859023 +2024-07-23 00:08:31.364 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 42/50, Train Loss: 0.03571444619446993, Val Loss: 0.043071949162653514 +2024-07-23 00:08:34.833 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 43/50, Train Loss: 0.03561760245689324, Val Loss: 0.04239581690302917 +2024-07-23 00:08:38.274 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 44/50, Train Loss: 0.03592718687972852, Val Loss: 0.04295492150953838 +2024-07-23 00:08:41.748 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 45/50, Train Loss: 0.03651705863220351, Val Loss: 0.044450087047048975 +2024-07-23 00:08:45.185 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 46/50, Train Loss: 0.03653482451502766, Val Loss: 0.04411359674164227 +2024-07-23 00:08:48.612 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 47/50, Train Loss: 0.03676078495170389, Val Loss: 0.046360474079847336 +2024-07-23 00:08:52.038 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 48/50, Train Loss: 0.0372038260102272, Val Loss: 0.043318092184407374 +2024-07-23 00:08:55.473 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 49/50, Train Loss: 0.036921194781150135, Val Loss: 0.04279162298355784 +2024-07-23 00:08:58.897 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 50/50, Train Loss: 0.036578926337616786, Val Loss: 0.04398413742227214 +2024-07-23 00:08:58.897 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Fold 1, MAPE: 7.36% +2024-07-23 00:08:59.009 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_25001_50000_LSTM//train_f1_bgd_office_25001_50000_LSTM.png +2024-07-23 00:09:03.936 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 1/50, Train Loss: 0.037324524914415985, Val Loss: 0.05008101404777595 +2024-07-23 00:09:03.936 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:09:03.936 No tasks are waiting in the queue. +2024-07-23 00:09:03.936 4 steps have not started: validate_model, log_model, end, model_scores. +2024-07-23 00:09:08.830 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 2/50, Train Loss: 0.036518552645037956, Val Loss: 0.0522813117397683 +2024-07-23 00:09:13.747 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 3/50, Train Loss: 0.036391243034114056, Val Loss: 0.05371681031371866 +2024-07-23 00:09:18.660 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 4/50, Train Loss: 0.03640822715197618, Val Loss: 0.055086437719208854 +2024-07-23 00:09:23.607 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 5/50, Train Loss: 0.03646926164555435, Val Loss: 0.05579595076186317 +2024-07-23 00:09:28.528 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 6/50, Train Loss: 0.03647645699003568, Val Loss: 0.05498347426099437 +2024-07-23 00:09:33.447 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 7/50, Train Loss: 0.03626658094043915, Val Loss: 0.05572047031351498 +2024-07-23 00:09:38.357 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 8/50, Train Loss: 0.036253379460854024, Val Loss: 0.05359734126499721 +2024-07-23 00:09:43.313 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 9/50, Train Loss: 0.03607402557435517, Val Loss: 0.054798792036516324 +2024-07-23 00:09:48.323 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 10/50, Train Loss: 0.03625466964709071, Val Loss: 0.055835165722029546 +2024-07-23 00:09:53.307 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 11/50, Train Loss: 0.0363318242956526, Val Loss: 0.05209597546075072 +2024-07-23 00:09:58.221 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 12/50, Train Loss: 0.03581485519400583, Val Loss: 0.05525315877582346 +2024-07-23 00:10:03.184 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 13/50, Train Loss: 0.036077110920674525, Val Loss: 0.05578060107571738 +2024-07-23 00:10:08.117 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 14/50, Train Loss: 0.03628523810766637, Val Loss: 0.05639222046094281 +2024-07-23 00:10:13.071 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 15/50, Train Loss: 0.036429206267572366, Val Loss: 0.05606389514037541 +2024-07-23 00:10:17.996 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 16/50, Train Loss: 0.036352705801478945, Val Loss: 0.05488821624645165 +2024-07-23 00:10:23.025 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 17/50, Train Loss: 0.03621921673990213, Val Loss: 0.05433224434299128 +2024-07-23 00:10:27.947 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 18/50, Train Loss: 0.03596130176447332, Val Loss: 0.05446415320038796 +2024-07-23 00:10:32.880 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 19/50, Train Loss: 0.03606856521219015, Val Loss: 0.05444424194949014 +2024-07-23 00:10:37.808 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 20/50, Train Loss: 0.03633890460388592, Val Loss: 0.05474314019083977 +2024-07-23 00:10:42.774 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 21/50, Train Loss: 0.036013853091460005, Val Loss: 0.05252399572304317 +2024-07-23 00:10:47.696 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 22/50, Train Loss: 0.03577260812744498, Val Loss: 0.05396023217056479 +2024-07-23 00:10:52.687 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 23/50, Train Loss: 0.03587111314901939, Val Loss: 0.05340003850204604 +2024-07-23 00:10:57.649 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 24/50, Train Loss: 0.0358156925604607, Val Loss: 0.053495160809585024 +2024-07-23 00:11:02.561 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 25/50, Train Loss: 0.036142381731993876, Val Loss: 0.053622303849884444 +2024-07-23 00:11:07.507 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 26/50, Train Loss: 0.036108724486369356, Val Loss: 0.05295480479087148 +2024-07-23 00:11:12.498 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 27/50, Train Loss: 0.03574312408454716, Val Loss: 0.05248347313276359 +2024-07-23 00:11:17.464 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 28/50, Train Loss: 0.035863376365831263, Val Loss: 0.05337954041148935 +2024-07-23 00:11:22.459 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 29/50, Train Loss: 0.03591339549837777, Val Loss: 0.05294440995369639 +2024-07-23 00:11:27.395 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 30/50, Train Loss: 0.03592902219567735, Val Loss: 0.052423611655831336 +2024-07-23 00:11:32.404 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 31/50, Train Loss: 0.03575001497609684, Val Loss: 0.052691833728126115 +2024-07-23 00:11:37.333 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 32/50, Train Loss: 0.03602430722318017, Val Loss: 0.052661423704453876 +2024-07-23 00:11:42.421 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 33/50, Train Loss: 0.035602729964571506, Val Loss: 0.053360031491943766 +2024-07-23 00:12:12.314 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 34/50, Train Loss: 0.03569207635994714, Val Loss: 0.05346250416977065 +2024-07-23 00:12:17.311 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 35/50, Train Loss: 0.035586068084320195, Val Loss: 0.051179959039602964 +2024-07-23 00:12:23.646 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 36/50, Train Loss: 0.035384698054538324, Val Loss: 0.053540652671030586 +2024-07-23 00:12:28.602 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 37/50, Train Loss: 0.035442478757781476, Val Loss: 0.05305331769798483 +2024-07-23 00:12:33.594 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 38/50, Train Loss: 0.035539939713019594, Val Loss: 0.054273776497159684 +2024-07-23 00:12:38.617 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 39/50, Train Loss: 0.03578363984035185, Val Loss: 0.052997783731137005 +2024-07-23 00:12:43.629 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 40/50, Train Loss: 0.03562972665979312, Val Loss: 0.053629671835473604 +2024-07-23 00:12:48.690 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 41/50, Train Loss: 0.035774786329756565, Val Loss: 0.05365138900067125 +2024-07-23 00:12:53.659 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 42/50, Train Loss: 0.03561784950299905, Val Loss: 0.053203653916716574 +2024-07-23 00:12:58.629 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 43/50, Train Loss: 0.035249309005359046, Val Loss: 0.054725691889013564 +2024-07-23 00:13:14.350 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 44/50, Train Loss: 0.035281075325866156, Val Loss: 0.0544309674096959 +2024-07-23 00:13:20.724 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 45/50, Train Loss: 0.0350990614746339, Val Loss: 0.054409881894077576 +2024-07-23 00:13:25.721 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 46/50, Train Loss: 0.03537194540079396, Val Loss: 0.0539244252124003 +2024-07-23 00:13:30.843 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 47/50, Train Loss: 0.03529280368596888, Val Loss: 0.053226284576313836 +2024-07-23 00:13:35.902 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 48/50, Train Loss: 0.03534674519099868, Val Loss: 0.05503354977284159 +2024-07-23 00:13:40.967 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 49/50, Train Loss: 0.0353291247648975, Val Loss: 0.0539038068481854 +2024-07-23 00:13:46.024 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 50/50, Train Loss: 0.03535089400023795, Val Loss: 0.05327471787376063 +2024-07-23 00:13:46.024 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Fold 2, MAPE: 7.84% +2024-07-23 00:13:46.127 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_25001_50000_LSTM//train_f2_bgd_office_25001_50000_LSTM.png +2024-07-23 00:13:52.754 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 1/50, Train Loss: 0.03396342328930502, Val Loss: 0.03614119866064617 +2024-07-23 00:14:40.163 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 2/50, Train Loss: 0.03355106365659254, Val Loss: 0.03594101380024638 +2024-07-23 00:14:40.163 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:14:40.163 No tasks are waiting in the queue. +2024-07-23 00:14:40.163 4 steps have not started: validate_model, log_model, end, model_scores. +2024-07-23 00:14:48.152 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 3/50, Train Loss: 0.033496985881984666, Val Loss: 0.03613905161619187 +2024-07-23 00:14:54.700 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 4/50, Train Loss: 0.0337489320487856, Val Loss: 0.037215520547969 +2024-07-23 00:15:01.408 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 5/50, Train Loss: 0.03364329301356841, Val Loss: 0.036954290419816974 +2024-07-23 00:15:07.951 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 6/50, Train Loss: 0.03367938398778867, Val Loss: 0.036418368560927256 +2024-07-23 00:15:14.503 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 7/50, Train Loss: 0.03360426446034325, Val Loss: 0.03604769280978611 +2024-07-23 00:15:21.125 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 8/50, Train Loss: 0.03363181391342295, Val Loss: 0.03645616684641157 +2024-07-23 00:16:34.673 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 9/50, Train Loss: 0.03364794998825025, Val Loss: 0.0366359997008528 +2024-07-23 00:16:41.473 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 10/50, Train Loss: 0.033498445847373215, Val Loss: 0.03621761122984546 +2024-07-23 00:16:47.870 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 11/50, Train Loss: 0.03343793047632245, Val Loss: 0.03593723364174366 +2024-07-23 00:16:54.320 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 12/50, Train Loss: 0.033634674809069086, Val Loss: 0.036613109335303304 +2024-07-23 00:17:00.756 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 13/50, Train Loss: 0.033638497539829434, Val Loss: 0.036589955857821876 +2024-07-23 00:17:07.111 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 14/50, Train Loss: 0.03355923398873575, Val Loss: 0.036684685839074 +2024-07-23 00:17:13.584 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 15/50, Train Loss: 0.03374431917457272, Val Loss: 0.036075337018285476 +2024-07-23 00:17:20.014 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 16/50, Train Loss: 0.033720082496192384, Val Loss: 0.03673337996006012 +2024-07-23 00:17:26.431 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 17/50, Train Loss: 0.033758296162265236, Val Loss: 0.03566566625876086 +2024-07-23 00:17:32.807 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 18/50, Train Loss: 0.033729223695268734, Val Loss: 0.03567728384264878 +2024-07-23 00:17:39.161 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 19/50, Train Loss: 0.03373015563425829, Val Loss: 0.03589040801993438 +2024-07-23 00:17:45.594 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 20/50, Train Loss: 0.03370399681998671, Val Loss: 0.03604243653161185 +2024-07-23 00:17:51.961 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 21/50, Train Loss: 0.03364526881776053, Val Loss: 0.03536336453897612 +2024-07-23 00:17:58.342 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 22/50, Train Loss: 0.03374558599437955, Val Loss: 0.03583267730261598 +2024-07-23 00:18:04.720 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 23/50, Train Loss: 0.033713338367319365, Val Loss: 0.03589038252830505 +2024-07-23 00:18:11.059 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 24/50, Train Loss: 0.03377209412161824, Val Loss: 0.0360596626996994 +2024-07-23 00:18:17.451 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 25/50, Train Loss: 0.0338134095474756, Val Loss: 0.035843491767133986 +2024-07-23 00:18:23.951 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 26/50, Train Loss: 0.03390111439868057, Val Loss: 0.03630682746214526 +2024-07-23 00:18:30.391 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 27/50, Train Loss: 0.03374471900676437, Val Loss: 0.03679615594446659 +2024-07-23 00:18:36.795 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 28/50, Train Loss: 0.03378186374232709, Val Loss: 0.03662774871502604 +2024-07-23 00:18:43.215 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 29/50, Train Loss: 0.033825926020366257, Val Loss: 0.03716468603483268 +2024-07-23 00:18:49.659 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 30/50, Train Loss: 0.03383657716804271, Val Loss: 0.03644443697163037 +2024-07-23 00:18:56.160 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 31/50, Train Loss: 0.03368125232807595, Val Loss: 0.03647076982472624 +2024-07-23 00:19:02.453 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 32/50, Train Loss: 0.03380896483393882, Val Loss: 0.036447450731481826 +2024-07-23 00:19:08.899 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 33/50, Train Loss: 0.033849069661052104, Val Loss: 0.036055970883795196 +2024-07-23 00:19:15.295 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 34/50, Train Loss: 0.03371614254609072, Val Loss: 0.03643185214272567 +2024-07-23 00:19:21.638 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 35/50, Train Loss: 0.03375992355131203, Val Loss: 0.03667644097336701 +2024-07-23 00:19:28.041 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 36/50, Train Loss: 0.033855933287321664, Val Loss: 0.036527375717248234 +2024-07-23 00:19:34.394 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 37/50, Train Loss: 0.0337083808635529, Val Loss: 0.03674489563064916 +2024-07-23 00:19:40.906 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 38/50, Train Loss: 0.03375174230460426, Val Loss: 0.0362317797860929 +2024-07-23 00:19:40.906 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:19:40.906 No tasks are waiting in the queue. +2024-07-23 00:19:40.906 4 steps have not started: validate_model, log_model, end, model_scores. +2024-07-23 00:19:47.315 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 39/50, Train Loss: 0.033629629841382555, Val Loss: 0.03607344872185162 +2024-07-23 00:19:53.730 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 40/50, Train Loss: 0.0336441625472453, Val Loss: 0.03646905816027096 +2024-07-23 00:20:00.131 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 41/50, Train Loss: 0.03360911468110925, Val Loss: 0.03655491524509021 +2024-07-23 00:20:06.586 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 42/50, Train Loss: 0.033654935711579355, Val Loss: 0.036472508098397936 +2024-07-23 00:20:12.950 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 43/50, Train Loss: 0.03354896782569105, Val Loss: 0.035987051682812826 +2024-07-23 00:20:19.359 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 44/50, Train Loss: 0.03347358487466042, Val Loss: 0.035920252544539316 +2024-07-23 00:20:25.978 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 45/50, Train Loss: 0.033445161854406054, Val Loss: 0.03669291968856539 +2024-07-23 00:20:32.471 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 46/50, Train Loss: 0.033368068586418526, Val Loss: 0.03650449471814292 +2024-07-23 00:20:39.039 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 47/50, Train Loss: 0.03353070993003228, Val Loss: 0.03643216176756791 +2024-07-23 00:20:45.511 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 48/50, Train Loss: 0.03341363143283043, Val Loss: 0.036320687724011286 +2024-07-23 00:20:51.940 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 49/50, Train Loss: 0.03337648762859029, Val Loss: 0.03669774202363832 +2024-07-23 00:20:58.477 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 50/50, Train Loss: 0.03357115538000203, Val Loss: 0.03654987003122057 +2024-07-23 00:20:58.477 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Fold 3, MAPE: 6.08% +2024-07-23 00:20:58.579 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_25001_50000_LSTM//train_f3_bgd_office_25001_50000_LSTM.png +2024-07-23 00:21:06.448 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 1/50, Train Loss: 0.03376186592504382, Val Loss: 0.0313176761248282 +2024-07-23 00:21:14.347 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 2/50, Train Loss: 0.03366016178531037, Val Loss: 0.030785478598305157 +2024-07-23 00:21:22.226 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 3/50, Train Loss: 0.03354613706683633, Val Loss: 0.030914495725716862 +2024-07-23 00:21:30.157 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 4/50, Train Loss: 0.03356756882784867, Val Loss: 0.030327912207160676 +2024-07-23 00:21:38.183 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 5/50, Train Loss: 0.033286744985601, Val Loss: 0.03046083248087338 +2024-07-23 00:21:46.351 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 6/50, Train Loss: 0.033317120756482944, Val Loss: 0.030570521897503308 +2024-07-23 00:21:54.385 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 7/50, Train Loss: 0.033388883945928226, Val Loss: 0.030703371071389745 +2024-07-23 00:22:02.365 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 8/50, Train Loss: 0.03320551464526818, Val Loss: 0.030271058050649505 +2024-07-23 00:22:10.263 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 9/50, Train Loss: 0.033082471737616706, Val Loss: 0.030394284959350315 +2024-07-23 00:22:18.208 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 10/50, Train Loss: 0.03336894218863427, Val Loss: 0.03019546094749655 +2024-07-23 00:22:26.144 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 11/50, Train Loss: 0.03308838719352224, Val Loss: 0.030087763071060182 +2024-07-23 00:22:34.020 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 12/50, Train Loss: 0.03304515795075688, Val Loss: 0.0298823497657265 +2024-07-23 00:22:41.932 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 13/50, Train Loss: 0.03309189634740181, Val Loss: 0.02957397337470736 +2024-07-23 00:22:49.803 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 14/50, Train Loss: 0.03301120734634413, Val Loss: 0.02980090177484921 +2024-07-23 00:22:57.644 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 15/50, Train Loss: 0.03295173601986005, Val Loss: 0.029455635962741717 +2024-07-23 00:23:05.480 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 16/50, Train Loss: 0.03291599024301288, Val Loss: 0.029774924208010946 +2024-07-23 00:23:13.428 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 17/50, Train Loss: 0.03321271370454081, Val Loss: 0.02981692659003394 +2024-07-23 00:23:21.388 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 18/50, Train Loss: 0.033075970908006035, Val Loss: 0.029944974343691554 +2024-07-23 00:23:29.330 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 19/50, Train Loss: 0.032860095270149325, Val Loss: 0.029517438103045735 +2024-07-23 00:23:37.243 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 20/50, Train Loss: 0.03284174365516024, Val Loss: 0.029187482010040965 +2024-07-23 00:23:45.155 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 21/50, Train Loss: 0.03269165632282865, Val Loss: 0.02915923542210034 +2024-07-23 00:23:53.053 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 22/50, Train Loss: 0.03256964289593971, Val Loss: 0.029955010807939938 +2024-07-23 00:24:01.025 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 23/50, Train Loss: 0.03275747026648672, Val Loss: 0.029199327155947686 +2024-07-23 00:24:08.928 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 24/50, Train Loss: 0.03265072425142273, Val Loss: 0.029248664102384022 +2024-07-23 00:24:16.859 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 25/50, Train Loss: 0.03282945799566377, Val Loss: 0.029809047068868364 +2024-07-23 00:24:24.787 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 26/50, Train Loss: 0.03260171354544916, Val Loss: 0.029733558850628988 +2024-07-23 00:24:32.656 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 27/50, Train Loss: 0.03253640321714953, Val Loss: 0.029183221555181913 +2024-07-23 00:24:40.580 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 28/50, Train Loss: 0.0324107316675885, Val Loss: 0.029887342346566065 +2024-07-23 00:24:48.585 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 29/50, Train Loss: 0.032449105797314096, Val Loss: 0.029652203300169537 +2024-07-23 00:24:48.585 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:24:48.585 No tasks are waiting in the queue. +2024-07-23 00:24:48.585 4 steps have not started: validate_model, log_model, end, model_scores. +2024-07-23 00:24:56.541 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 30/50, Train Loss: 0.03234063230733248, Val Loss: 0.030228611560804503 +2024-07-23 00:25:04.549 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 31/50, Train Loss: 0.0323090214153816, Val Loss: 0.03002564614372594 +2024-07-23 00:25:12.495 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 32/50, Train Loss: 0.03252223231455033, Val Loss: 0.030102899617382457 +2024-07-23 00:25:20.441 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 33/50, Train Loss: 0.03265869216565257, Val Loss: 0.029992118797131945 +2024-07-23 00:25:28.371 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 34/50, Train Loss: 0.03224325377558326, Val Loss: 0.029410523868032865 +2024-07-23 00:25:36.273 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 35/50, Train Loss: 0.0321054682510252, Val Loss: 0.030121154338121413 +2024-07-23 00:25:44.257 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 36/50, Train Loss: 0.032495541985135996, Val Loss: 0.02948597286428724 +2024-07-23 00:25:52.175 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 37/50, Train Loss: 0.032033871152791486, Val Loss: 0.029576044795768603 +2024-07-23 00:26:00.211 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 38/50, Train Loss: 0.032082526741185405, Val Loss: 0.030304271461708204 +2024-07-23 00:26:08.188 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 39/50, Train Loss: 0.032250124383075486, Val Loss: 0.02979635660137449 +2024-07-23 00:26:16.213 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 40/50, Train Loss: 0.03221499530769799, Val Loss: 0.029935454204678535 +2024-07-23 00:26:24.226 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 41/50, Train Loss: 0.03204454969743203, Val Loss: 0.029950362018176486 +2024-07-23 00:26:32.254 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 42/50, Train Loss: 0.031841953317153046, Val Loss: 0.030276740874562946 +2024-07-23 00:26:40.294 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 43/50, Train Loss: 0.031910575910246576, Val Loss: 0.030334751520838057 +2024-07-23 00:26:48.373 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 44/50, Train Loss: 0.03196524589954094, Val Loss: 0.02996026293507644 +2024-07-23 00:26:56.367 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 45/50, Train Loss: 0.031766127018878855, Val Loss: 0.02995730952492782 +2024-07-23 00:27:04.359 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 46/50, Train Loss: 0.031947151083370734, Val Loss: 0.03021364893232073 +2024-07-23 00:27:12.360 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 47/50, Train Loss: 0.032047563360939765, Val Loss: 0.031403056372489246 +2024-07-23 00:27:20.386 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 48/50, Train Loss: 0.03160290865377448, Val Loss: 0.031014309504202434 +2024-07-23 00:27:28.384 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 49/50, Train Loss: 0.031596069507857504, Val Loss: 0.030600822929825102 +2024-07-23 00:27:36.507 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 50/50, Train Loss: 0.03161840194343835, Val Loss: 0.03102592256452356 +2024-07-23 00:27:36.508 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Fold 4, MAPE: 5.63% +2024-07-23 00:27:36.617 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_25001_50000_LSTM//train_f4_bgd_office_25001_50000_LSTM.png +2024-07-23 00:27:41.148 [43/cross_validate_train/429 (pid 32661)] Task finished successfully. +2024-07-23 00:27:41.182 [43/model_scores/430 (pid 37449)] Task is starting. +2024-07-23 00:27:42.649 [43/model_scores/430 (pid 37449)] INFO:__main__:Average Train Loss across all folds: 0.037387715054688894 +2024-07-23 00:27:46.568 [43/model_scores/430 (pid 37449)] INFO:__main__:Average Validation Loss across all folds: 0.04425368776278836 +2024-07-23 00:27:46.568 [43/model_scores/430 (pid 37449)] INFO:__main__:Average MAPE across all folds: 6.69% +2024-07-23 00:27:46.569 [43/model_scores/430 (pid 37449)] Task finished successfully. +2024-07-23 00:27:46.601 [43/validate_model/431 (pid 37481)] Task is starting. +2024-07-23 00:27:48.078 [43/validate_model/431 (pid 37481)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 00:27:48.825 [43/validate_model/431 (pid 37481)] INFO:__main__:Test Set MAPE: 6.21% +2024-07-23 00:27:49.185 [43/validate_model/431 (pid 37481)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_office_25001_50000_LSTM//test_bgd_office_25001_50000_LSTM.png +2024-07-23 00:27:49.628 [43/validate_model/431 (pid 37481)] Task finished successfully. +2024-07-23 00:27:49.660 [43/log_model/432 (pid 37492)] Task is starting. +2024-07-23 00:27:51.145 [43/log_model/432 (pid 37492)] INFO:__main__:Logging model bgd_office_25001_50000_LSTM +2024-07-23 00:27:51.146 [43/log_model/432 (pid 37492)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_office_25001_50000_LSTM//bgd_office_25001_50000_LSTM.pth +2024-07-23 00:27:55.194 [43/log_model/432 (pid 37492)] Task finished successfully. +2024-07-23 00:27:55.219 [43/end/433 (pid 37525)] Task is starting. +2024-07-23 00:27:56.689 [43/end/433 (pid 37525)] INFO:__main__:Pipeline end. +2024-07-23 00:27:56.996 [43/end/433 (pid 37525)] Task finished successfully. +2024-07-23 00:27:56.996 Done! +✅ Run('BGD_LinearFlow/43') succeeded: +-- stdout -- +2024-07-23 00:03:59.131 Workflow starting (run-id 43): +2024-07-23 00:03:59.205 [43/start/421 (pid 32507)] Task is starting. +2024-07-23 00:04:00.674 [43/start/421 (pid 32507)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 00:04:00.969 [43/start/421 (pid 32507)] Task finished successfully. +2024-07-23 00:04:00.999 [43/ingest/422 (pid 32520)] Task is starting. +2024-07-23 00:04:02.507 [43/ingest/422 (pid 32520)] INFO:__main__:Fetching dataframe.. +2024-07-23 00:04:02.525 [43/ingest/422 (pid 32520)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 00:04:06.316 [43/ingest/422 (pid 32520)] Task finished successfully. +2024-07-23 00:04:06.346 [43/pick_2017_data/423 (pid 32551)] Task is starting. +2024-07-23 00:04:07.804 [43/pick_2017_data/423 (pid 32551)] INFO:__main__:Picking 2017 data.. +2024-07-23 00:04:08.127 [43/pick_2017_data/423 (pid 32551)] Task finished successfully. +2024-07-23 00:04:08.158 [43/fill_missing_data/424 (pid 32562)] Task is starting. +2024-07-23 00:04:09.614 [43/fill_missing_data/424 (pid 32562)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] INFO:__main__:NaN counts per column: +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] INFO:__main__:Panther_office_Catherine 12 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Panther_office_Lauretta 11 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Panther_office_Karla 11 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Panther_office_Ruthie 10 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Panther_office_Shauna 12 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Panther_office_Clementine 10 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Robin_office_Serena 0 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Fox_office_Brandy 2 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] Rat_office_Loyd 26 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] dtype: int64 +2024-07-23 00:04:09.623 [43/fill_missing_data/424 (pid 32562)] --- Logging error --- +2024-07-23 00:04:09.624 [43/fill_missing_data/424 (pid 32562)] Traceback (most recent call last): +2024-07-23 00:04:09.624 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 00:04:09.624 [43/fill_missing_data/424 (pid 32562)] msg = self.format(record) +2024-07-23 00:04:09.624 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] return fmt.format(record) +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] record.message = record.getMessage() +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] msg = msg % self.args +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] TypeError: not all arguments converted during string formatting +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] Call stack: +2024-07-23 00:04:09.625 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] BGD_LinearFlow() +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] cli.main(self) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] return func(*args, **kwargs) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] return self.main(*args, **kwargs) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] rv = self.invoke(ctx) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] return callback(*args, **kwargs) +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 00:04:09.991 [43/fill_missing_data/424 (pid 32562)] return f(get_current_context(), *args, **kwargs) +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] task.run_step( +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] self._exec_step_function(step_func) +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] step_function() +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] self.missing_values = find_nan_counts(self.df) +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 00:04:09.992 [43/fill_missing_data/424 (pid 32562)] Arguments: (94,) +2024-07-23 00:04:09.993 [43/fill_missing_data/424 (pid 32562)] Task finished successfully. +2024-07-23 00:04:10.023 [43/find_median/425 (pid 32575)] Task is starting. +2024-07-23 00:04:11.471 [43/find_median/425 (pid 32575)] INFO:__main__:Computing and using median.. +2024-07-23 00:04:11.987 [43/find_median/425 (pid 32575)] Task finished successfully. +2024-07-23 00:04:12.014 [43/aggregate_data/426 (pid 32586)] Task is starting. +2024-07-23 00:04:13.475 [43/aggregate_data/426 (pid 32586)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 00:04:17.352 [43/aggregate_data/426 (pid 32586)] Task finished successfully. +2024-07-23 00:04:17.382 [43/split_data/427 (pid 32611)] Task is starting. +2024-07-23 00:04:18.856 [43/split_data/427 (pid 32611)] INFO:__main__:Splitting data into test and train... +2024-07-23 00:04:22.710 [43/split_data/427 (pid 32611)] Task finished successfully. +2024-07-23 00:04:22.738 [43/make_x_y/428 (pid 32650)] Task is starting. +2024-07-23 00:04:24.517 [43/make_x_y/428 (pid 32650)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 00:04:24.917 [43/make_x_y/428 (pid 32650)] Shape of y_train: (6648, 1) +2024-07-23 00:04:24.917 [43/make_x_y/428 (pid 32650)] Shape of X_test: (1392, 360, 1) +2024-07-23 00:04:24.917 [43/make_x_y/428 (pid 32650)] Shape of y_test: (1392, 1) +2024-07-23 00:04:24.918 [43/make_x_y/428 (pid 32650)] Task finished successfully. +2024-07-23 00:04:24.948 [43/cross_validate_train/429 (pid 32661)] Task is starting. +2024-07-23 00:04:26.394 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Creating bgd_office_25001_50000_LSTM +2024-07-23 00:04:26.395 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Performing cross validation.. +2024-07-23 00:04:28.903 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 1/50, Train Loss: 0.23792883019362177, Val Loss: 0.21707239001989365 +2024-07-23 00:04:30.808 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 2/50, Train Loss: 0.17758798684392657, Val Loss: 0.2090102527822767 +2024-07-23 00:04:32.719 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 3/50, Train Loss: 0.16381770329816, Val Loss: 0.19065793731382916 +2024-07-23 00:04:34.622 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 4/50, Train Loss: 0.15442178504807608, Val Loss: 0.17359786395515714 +2024-07-23 00:04:36.523 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 5/50, Train Loss: 0.13604039124080114, Val Loss: 0.14546352741973742 +2024-07-23 00:04:38.439 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 6/50, Train Loss: 0.1084159143269062, Val Loss: 0.12169910967350006 +2024-07-23 00:04:40.372 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 7/50, Train Loss: 0.09027004774127688, Val Loss: 0.11457613014749118 +2024-07-23 00:04:42.328 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 8/50, Train Loss: 0.08588938244751522, Val Loss: 0.10833805703691074 +2024-07-23 00:04:44.260 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 9/50, Train Loss: 0.08348475077322551, Val Loss: 0.10098153576254845 +2024-07-23 00:04:46.197 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 10/50, Train Loss: 0.08154750987887383, Val Loss: 0.0979319586285523 +2024-07-23 00:04:48.147 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 11/50, Train Loss: 0.08093443779008729, Val Loss: 0.09551192000508309 +2024-07-23 00:04:50.097 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 12/50, Train Loss: 0.07996671476534435, Val Loss: 0.09215223629559789 +2024-07-23 00:04:52.072 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 13/50, Train Loss: 0.07796556523868016, Val Loss: 0.09005791087235723 +2024-07-23 00:04:54.016 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 14/50, Train Loss: 0.0756565083350454, Val Loss: 0.08805106388671058 +2024-07-23 00:04:55.958 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 15/50, Train Loss: 0.07371882019298417, Val Loss: 0.08570651986769268 +2024-07-23 00:04:57.906 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 16/50, Train Loss: 0.0719887474817889, Val Loss: 0.08404162664498602 +2024-07-23 00:04:59.856 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 17/50, Train Loss: 0.0707446277141571, Val Loss: 0.08254276322466987 +2024-07-23 00:05:01.799 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 18/50, Train Loss: 0.06927961494241441, Val Loss: 0.07988112387912615 +2024-07-23 00:05:03.756 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 19/50, Train Loss: 0.06724020349127906, Val Loss: 0.07780190567885126 +2024-07-23 00:05:05.722 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 20/50, Train Loss: 0.06624776987092836, Val Loss: 0.07591880176748549 +2024-07-23 00:05:07.723 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 21/50, Train Loss: 0.06487234298671996, Val Loss: 0.07391858186040606 +2024-07-23 00:05:09.683 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 22/50, Train Loss: 0.06359164203916277, Val Loss: 0.07238535795892988 +2024-07-23 00:05:11.686 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 23/50, Train Loss: 0.06222334110311099, Val Loss: 0.07117397146565574 +2024-07-23 00:05:13.674 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 24/50, Train Loss: 0.06175079590507916, Val Loss: 0.07023163512349129 +2024-07-23 00:05:15.661 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 25/50, Train Loss: 0.06046797399009977, Val Loss: 0.07086216711572238 +2024-07-23 00:05:17.654 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 26/50, Train Loss: 0.05918815402047975, Val Loss: 0.06912065872124264 +2024-07-23 00:05:19.641 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 27/50, Train Loss: 0.05721981493490083, Val Loss: 0.0664455917264734 +2024-07-23 00:05:21.637 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 28/50, Train Loss: 0.05564608531338828, Val Loss: 0.06453437986118453 +2024-07-23 00:05:23.653 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 29/50, Train Loss: 0.054019337041037424, Val Loss: 0.06418706423469953 +2024-07-23 00:05:25.665 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 30/50, Train Loss: 0.053135782267366136, Val Loss: 0.06358079654829843 +2024-07-23 00:05:27.662 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 31/50, Train Loss: 0.05262901729771069, Val Loss: 0.06126475749271257 +2024-07-23 00:05:29.649 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 32/50, Train Loss: 0.0523163058928081, Val Loss: 0.06097611518842833 +2024-07-23 00:05:31.633 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 33/50, Train Loss: 0.05196049703019006, Val Loss: 0.06134808361530304 +2024-07-23 00:05:33.620 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 34/50, Train Loss: 0.05160993997539793, Val Loss: 0.0611308471432754 +2024-07-23 00:05:35.606 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 35/50, Train Loss: 0.05132144891789981, Val Loss: 0.059441903339965005 +2024-07-23 00:05:37.605 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 36/50, Train Loss: 0.050957244847502026, Val Loss: 0.05915917019758906 +2024-07-23 00:05:39.630 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 37/50, Train Loss: 0.05100553280540875, Val Loss: 0.059138184360095436 +2024-07-23 00:05:41.636 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 38/50, Train Loss: 0.050905027772699084, Val Loss: 0.059172858936446054 +2024-07-23 00:05:43.643 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 39/50, Train Loss: 0.05085746039237295, Val Loss: 0.05854946236525263 +2024-07-23 00:05:45.651 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 40/50, Train Loss: 0.050548538991383146, Val Loss: 0.05725893729499408 +2024-07-23 00:05:47.660 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 41/50, Train Loss: 0.05007270446845463, Val Loss: 0.057338100991078784 +2024-07-23 00:05:49.681 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 42/50, Train Loss: 0.04990008058292525, Val Loss: 0.057660064101219176 +2024-07-23 00:05:51.674 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 43/50, Train Loss: 0.049825745075941084, Val Loss: 0.05772990988833564 +2024-07-23 00:05:53.679 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 44/50, Train Loss: 0.05033862314053944, Val Loss: 0.056503323572022576 +2024-07-23 00:05:55.684 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 45/50, Train Loss: 0.05016461791736739, Val Loss: 0.056300450542143415 +2024-07-23 00:05:57.693 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 46/50, Train Loss: 0.04988931438752583, Val Loss: 0.05682707748242787 +2024-07-23 00:05:59.699 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 47/50, Train Loss: 0.05001123111162867, Val Loss: 0.05668982937932014 +2024-07-23 00:06:01.699 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 48/50, Train Loss: 0.049699009635618754, Val Loss: 0.0562722527555057 +2024-07-23 00:06:03.726 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 49/50, Train Loss: 0.049747996351548605, Val Loss: 0.05601590499281883 +2024-07-23 00:06:05.720 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 50/50, Train Loss: 0.049819197612149375, Val Loss: 0.05643379092216492 +2024-07-23 00:06:05.720 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Fold 0, MAPE: 6.53% +2024-07-23 00:06:06.058 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_25001_50000_LSTM//train_f0_bgd_office_25001_50000_LSTM.png +2024-07-23 00:06:09.590 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 1/50, Train Loss: 0.03685286454856396, Val Loss: 0.04445389738040311 +2024-07-23 00:06:13.072 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 2/50, Train Loss: 0.0367357461048024, Val Loss: 0.04427963798599584 +2024-07-23 00:06:16.584 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 3/50, Train Loss: 0.03669428522033351, Val Loss: 0.0448000291628497 +2024-07-23 00:06:20.037 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 4/50, Train Loss: 0.036654590549213543, Val Loss: 0.04340009348733084 +2024-07-23 00:06:23.549 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 5/50, Train Loss: 0.036329239260937486, Val Loss: 0.04304485720183168 +2024-07-23 00:06:26.996 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 6/50, Train Loss: 0.036151360986488204, Val Loss: 0.043293456360697744 +2024-07-23 00:06:30.439 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 7/50, Train Loss: 0.03643868690622704, Val Loss: 0.04345010401947158 +2024-07-23 00:06:33.922 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 8/50, Train Loss: 0.036188341357878274, Val Loss: 0.042354224835123334 +2024-07-23 00:06:37.353 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 9/50, Train Loss: 0.03635675755462476, Val Loss: 0.04186065244887557 +2024-07-23 00:06:40.816 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 10/50, Train Loss: 0.03578063997306994, Val Loss: 0.04186181473944869 +2024-07-23 00:06:44.273 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 11/50, Train Loss: 0.03583017486546721, Val Loss: 0.04225313690091882 +2024-07-23 00:06:47.711 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 12/50, Train Loss: 0.036015192578945844, Val Loss: 0.04113943300076894 +2024-07-23 00:06:51.168 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 13/50, Train Loss: 0.035506345544542586, Val Loss: 0.04134427553841046 +2024-07-23 00:06:54.611 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 14/50, Train Loss: 0.03604071212134191, Val Loss: 0.041402430672730715 +2024-07-23 00:06:58.056 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 15/50, Train Loss: 0.035862443117158756, Val Loss: 0.04056777054710048 +2024-07-23 00:07:01.546 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 16/50, Train Loss: 0.035481975387249676, Val Loss: 0.04114779249898025 +2024-07-23 00:07:05.019 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 17/50, Train Loss: 0.03551509641110897, Val Loss: 0.04081792591937951 +2024-07-23 00:07:08.481 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 18/50, Train Loss: 0.0354646966659597, Val Loss: 0.0410249472196613 +2024-07-23 00:07:11.983 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 19/50, Train Loss: 0.03552300890109369, Val Loss: 0.04088657998612949 +2024-07-23 00:07:15.428 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 20/50, Train Loss: 0.035320649003343925, Val Loss: 0.04153364428452083 +2024-07-23 00:07:18.874 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 21/50, Train Loss: 0.03568110018968582, Val Loss: 0.04155501042093549 +2024-07-23 00:07:22.348 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 22/50, Train Loss: 0.035538394988647526, Val Loss: 0.041370044542210445 +2024-07-23 00:07:25.768 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 23/50, Train Loss: 0.035396878527743474, Val Loss: 0.04118362643889018 +2024-07-23 00:07:29.187 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 24/50, Train Loss: 0.03532062875373023, Val Loss: 0.04107010018612657 +2024-07-23 00:07:32.645 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 25/50, Train Loss: 0.03561756272933313, Val Loss: 0.04078298466546195 +2024-07-23 00:07:36.108 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 26/50, Train Loss: 0.035271784397108215, Val Loss: 0.0414898690368448 +2024-07-23 00:07:39.539 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 27/50, Train Loss: 0.035203529096075464, Val Loss: 0.04141178120459829 +2024-07-23 00:07:43.010 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 28/50, Train Loss: 0.03524582521723849, Val Loss: 0.041744540844644816 +2024-07-23 00:07:46.465 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 29/50, Train Loss: 0.035125212743878365, Val Loss: 0.041349667310714724 +2024-07-23 00:07:49.910 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 30/50, Train Loss: 0.0353488796257547, Val Loss: 0.040208761287587026 +2024-07-23 00:07:53.352 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 31/50, Train Loss: 0.034961515931146485, Val Loss: 0.04167372100055218 +2024-07-23 00:07:56.780 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 32/50, Train Loss: 0.035158435069024566, Val Loss: 0.04260713218578271 +2024-07-23 00:08:00.232 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 33/50, Train Loss: 0.03518292108284576, Val Loss: 0.0411981568804809 +2024-07-23 00:08:03.698 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 34/50, Train Loss: 0.03510577638766595, Val Loss: 0.03995758603726115 +2024-07-23 00:08:07.157 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 35/50, Train Loss: 0.035563011414238385, Val Loss: 0.040979417519909994 +2024-07-23 00:08:10.642 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 36/50, Train Loss: 0.03512055410870484, Val Loss: 0.04137690514326096 +2024-07-23 00:08:14.091 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 37/50, Train Loss: 0.03514192458242178, Val Loss: 0.040834846986191616 +2024-07-23 00:08:17.532 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 38/50, Train Loss: 0.03539087274777038, Val Loss: 0.04043340209339346 +2024-07-23 00:08:21.006 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 39/50, Train Loss: 0.035675423725375105, Val Loss: 0.04118399204952376 +2024-07-23 00:08:24.478 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 40/50, Train Loss: 0.035562017639832834, Val Loss: 0.04086040322269712 +2024-07-23 00:08:27.917 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 41/50, Train Loss: 0.03567081684512752, Val Loss: 0.0418532492859023 +2024-07-23 00:08:31.364 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 42/50, Train Loss: 0.03571444619446993, Val Loss: 0.043071949162653514 +2024-07-23 00:08:34.833 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 43/50, Train Loss: 0.03561760245689324, Val Loss: 0.04239581690302917 +2024-07-23 00:08:38.274 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 44/50, Train Loss: 0.03592718687972852, Val Loss: 0.04295492150953838 +2024-07-23 00:08:41.748 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 45/50, Train Loss: 0.03651705863220351, Val Loss: 0.044450087047048975 +2024-07-23 00:08:45.185 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 46/50, Train Loss: 0.03653482451502766, Val Loss: 0.04411359674164227 +2024-07-23 00:08:48.612 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 47/50, Train Loss: 0.03676078495170389, Val Loss: 0.046360474079847336 +2024-07-23 00:08:52.038 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 48/50, Train Loss: 0.0372038260102272, Val Loss: 0.043318092184407374 +2024-07-23 00:08:55.473 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 49/50, Train Loss: 0.036921194781150135, Val Loss: 0.04279162298355784 +2024-07-23 00:08:58.897 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 50/50, Train Loss: 0.036578926337616786, Val Loss: 0.04398413742227214 +2024-07-23 00:08:58.897 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Fold 1, MAPE: 7.36% +2024-07-23 00:08:59.009 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_25001_50000_LSTM//train_f1_bgd_office_25001_50000_LSTM.png +2024-07-23 00:09:03.936 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 1/50, Train Loss: 0.037324524914415985, Val Loss: 0.05008101404777595 +2024-07-23 00:09:03.936 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:09:03.936 No tasks are waiting in the queue. +2024-07-23 00:09:03.936 4 steps have not started: validate_model, log_model, end, model_scores. +2024-07-23 00:09:08.830 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 2/50, Train Loss: 0.036518552645037956, Val Loss: 0.0522813117397683 +2024-07-23 00:09:13.747 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 3/50, Train Loss: 0.036391243034114056, Val Loss: 0.05371681031371866 +2024-07-23 00:09:18.660 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 4/50, Train Loss: 0.03640822715197618, Val Loss: 0.055086437719208854 +2024-07-23 00:09:23.607 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 5/50, Train Loss: 0.03646926164555435, Val Loss: 0.05579595076186317 +2024-07-23 00:09:28.528 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 6/50, Train Loss: 0.03647645699003568, Val Loss: 0.05498347426099437 +2024-07-23 00:09:33.447 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 7/50, Train Loss: 0.03626658094043915, Val Loss: 0.05572047031351498 +2024-07-23 00:09:38.357 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 8/50, Train Loss: 0.036253379460854024, Val Loss: 0.05359734126499721 +2024-07-23 00:09:43.313 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 9/50, Train Loss: 0.03607402557435517, Val Loss: 0.054798792036516324 +2024-07-23 00:09:48.323 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 10/50, Train Loss: 0.03625466964709071, Val Loss: 0.055835165722029546 +2024-07-23 00:09:53.307 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 11/50, Train Loss: 0.0363318242956526, Val Loss: 0.05209597546075072 +2024-07-23 00:09:58.221 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 12/50, Train Loss: 0.03581485519400583, Val Loss: 0.05525315877582346 +2024-07-23 00:10:03.184 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 13/50, Train Loss: 0.036077110920674525, Val Loss: 0.05578060107571738 +2024-07-23 00:10:08.117 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 14/50, Train Loss: 0.03628523810766637, Val Loss: 0.05639222046094281 +2024-07-23 00:10:13.071 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 15/50, Train Loss: 0.036429206267572366, Val Loss: 0.05606389514037541 +2024-07-23 00:10:17.996 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 16/50, Train Loss: 0.036352705801478945, Val Loss: 0.05488821624645165 +2024-07-23 00:10:23.025 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 17/50, Train Loss: 0.03621921673990213, Val Loss: 0.05433224434299128 +2024-07-23 00:10:27.947 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 18/50, Train Loss: 0.03596130176447332, Val Loss: 0.05446415320038796 +2024-07-23 00:10:32.880 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 19/50, Train Loss: 0.03606856521219015, Val Loss: 0.05444424194949014 +2024-07-23 00:10:37.808 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 20/50, Train Loss: 0.03633890460388592, Val Loss: 0.05474314019083977 +2024-07-23 00:10:42.774 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 21/50, Train Loss: 0.036013853091460005, Val Loss: 0.05252399572304317 +2024-07-23 00:10:47.696 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 22/50, Train Loss: 0.03577260812744498, Val Loss: 0.05396023217056479 +2024-07-23 00:10:52.687 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 23/50, Train Loss: 0.03587111314901939, Val Loss: 0.05340003850204604 +2024-07-23 00:10:57.649 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 24/50, Train Loss: 0.0358156925604607, Val Loss: 0.053495160809585024 +2024-07-23 00:11:02.561 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 25/50, Train Loss: 0.036142381731993876, Val Loss: 0.053622303849884444 +2024-07-23 00:11:07.507 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 26/50, Train Loss: 0.036108724486369356, Val Loss: 0.05295480479087148 +2024-07-23 00:11:12.498 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 27/50, Train Loss: 0.03574312408454716, Val Loss: 0.05248347313276359 +2024-07-23 00:11:17.464 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 28/50, Train Loss: 0.035863376365831263, Val Loss: 0.05337954041148935 +2024-07-23 00:11:22.459 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 29/50, Train Loss: 0.03591339549837777, Val Loss: 0.05294440995369639 +2024-07-23 00:11:27.395 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 30/50, Train Loss: 0.03592902219567735, Val Loss: 0.052423611655831336 +2024-07-23 00:11:32.404 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 31/50, Train Loss: 0.03575001497609684, Val Loss: 0.052691833728126115 +2024-07-23 00:11:37.333 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 32/50, Train Loss: 0.03602430722318017, Val Loss: 0.052661423704453876 +2024-07-23 00:11:42.421 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 33/50, Train Loss: 0.035602729964571506, Val Loss: 0.053360031491943766 +2024-07-23 00:12:12.314 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 34/50, Train Loss: 0.03569207635994714, Val Loss: 0.05346250416977065 +2024-07-23 00:12:17.311 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 35/50, Train Loss: 0.035586068084320195, Val Loss: 0.051179959039602964 +2024-07-23 00:12:23.646 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 36/50, Train Loss: 0.035384698054538324, Val Loss: 0.053540652671030586 +2024-07-23 00:12:28.602 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 37/50, Train Loss: 0.035442478757781476, Val Loss: 0.05305331769798483 +2024-07-23 00:12:33.594 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 38/50, Train Loss: 0.035539939713019594, Val Loss: 0.054273776497159684 +2024-07-23 00:12:38.617 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 39/50, Train Loss: 0.03578363984035185, Val Loss: 0.052997783731137005 +2024-07-23 00:12:43.629 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 40/50, Train Loss: 0.03562972665979312, Val Loss: 0.053629671835473604 +2024-07-23 00:12:48.690 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 41/50, Train Loss: 0.035774786329756565, Val Loss: 0.05365138900067125 +2024-07-23 00:12:53.659 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 42/50, Train Loss: 0.03561784950299905, Val Loss: 0.053203653916716574 +2024-07-23 00:12:58.629 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 43/50, Train Loss: 0.035249309005359046, Val Loss: 0.054725691889013564 +2024-07-23 00:13:14.350 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 44/50, Train Loss: 0.035281075325866156, Val Loss: 0.0544309674096959 +2024-07-23 00:13:20.724 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 45/50, Train Loss: 0.0350990614746339, Val Loss: 0.054409881894077576 +2024-07-23 00:13:25.721 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 46/50, Train Loss: 0.03537194540079396, Val Loss: 0.0539244252124003 +2024-07-23 00:13:30.843 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 47/50, Train Loss: 0.03529280368596888, Val Loss: 0.053226284576313836 +2024-07-23 00:13:35.902 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 48/50, Train Loss: 0.03534674519099868, Val Loss: 0.05503354977284159 +2024-07-23 00:13:40.967 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 49/50, Train Loss: 0.0353291247648975, Val Loss: 0.0539038068481854 +2024-07-23 00:13:46.024 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 50/50, Train Loss: 0.03535089400023795, Val Loss: 0.05327471787376063 +2024-07-23 00:13:46.024 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Fold 2, MAPE: 7.84% +2024-07-23 00:13:46.127 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_25001_50000_LSTM//train_f2_bgd_office_25001_50000_LSTM.png +2024-07-23 00:13:52.754 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 1/50, Train Loss: 0.03396342328930502, Val Loss: 0.03614119866064617 +2024-07-23 00:14:40.163 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 2/50, Train Loss: 0.03355106365659254, Val Loss: 0.03594101380024638 +2024-07-23 00:14:40.163 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:14:40.163 No tasks are waiting in the queue. +2024-07-23 00:14:40.163 4 steps have not started: validate_model, log_model, end, model_scores. +2024-07-23 00:14:48.152 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 3/50, Train Loss: 0.033496985881984666, Val Loss: 0.03613905161619187 +2024-07-23 00:14:54.700 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 4/50, Train Loss: 0.0337489320487856, Val Loss: 0.037215520547969 +2024-07-23 00:15:01.408 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 5/50, Train Loss: 0.03364329301356841, Val Loss: 0.036954290419816974 +2024-07-23 00:15:07.951 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 6/50, Train Loss: 0.03367938398778867, Val Loss: 0.036418368560927256 +2024-07-23 00:15:14.503 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 7/50, Train Loss: 0.03360426446034325, Val Loss: 0.03604769280978611 +2024-07-23 00:15:21.125 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 8/50, Train Loss: 0.03363181391342295, Val Loss: 0.03645616684641157 +2024-07-23 00:16:34.673 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 9/50, Train Loss: 0.03364794998825025, Val Loss: 0.0366359997008528 +2024-07-23 00:16:41.473 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 10/50, Train Loss: 0.033498445847373215, Val Loss: 0.03621761122984546 +2024-07-23 00:16:47.870 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 11/50, Train Loss: 0.03343793047632245, Val Loss: 0.03593723364174366 +2024-07-23 00:16:54.320 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 12/50, Train Loss: 0.033634674809069086, Val Loss: 0.036613109335303304 +2024-07-23 00:17:00.756 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 13/50, Train Loss: 0.033638497539829434, Val Loss: 0.036589955857821876 +2024-07-23 00:17:07.111 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 14/50, Train Loss: 0.03355923398873575, Val Loss: 0.036684685839074 +2024-07-23 00:17:13.584 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 15/50, Train Loss: 0.03374431917457272, Val Loss: 0.036075337018285476 +2024-07-23 00:17:20.014 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 16/50, Train Loss: 0.033720082496192384, Val Loss: 0.03673337996006012 +2024-07-23 00:17:26.431 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 17/50, Train Loss: 0.033758296162265236, Val Loss: 0.03566566625876086 +2024-07-23 00:17:32.807 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 18/50, Train Loss: 0.033729223695268734, Val Loss: 0.03567728384264878 +2024-07-23 00:17:39.161 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 19/50, Train Loss: 0.03373015563425829, Val Loss: 0.03589040801993438 +2024-07-23 00:17:45.594 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 20/50, Train Loss: 0.03370399681998671, Val Loss: 0.03604243653161185 +2024-07-23 00:17:51.961 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 21/50, Train Loss: 0.03364526881776053, Val Loss: 0.03536336453897612 +2024-07-23 00:17:58.342 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 22/50, Train Loss: 0.03374558599437955, Val Loss: 0.03583267730261598 +2024-07-23 00:18:04.720 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 23/50, Train Loss: 0.033713338367319365, Val Loss: 0.03589038252830505 +2024-07-23 00:18:11.059 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 24/50, Train Loss: 0.03377209412161824, Val Loss: 0.0360596626996994 +2024-07-23 00:18:17.451 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 25/50, Train Loss: 0.0338134095474756, Val Loss: 0.035843491767133986 +2024-07-23 00:18:23.951 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 26/50, Train Loss: 0.03390111439868057, Val Loss: 0.03630682746214526 +2024-07-23 00:18:30.391 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 27/50, Train Loss: 0.03374471900676437, Val Loss: 0.03679615594446659 +2024-07-23 00:18:36.795 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 28/50, Train Loss: 0.03378186374232709, Val Loss: 0.03662774871502604 +2024-07-23 00:18:43.215 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 29/50, Train Loss: 0.033825926020366257, Val Loss: 0.03716468603483268 +2024-07-23 00:18:49.659 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 30/50, Train Loss: 0.03383657716804271, Val Loss: 0.03644443697163037 +2024-07-23 00:18:56.160 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 31/50, Train Loss: 0.03368125232807595, Val Loss: 0.03647076982472624 +2024-07-23 00:19:02.453 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 32/50, Train Loss: 0.03380896483393882, Val Loss: 0.036447450731481826 +2024-07-23 00:19:08.899 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 33/50, Train Loss: 0.033849069661052104, Val Loss: 0.036055970883795196 +2024-07-23 00:19:15.295 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 34/50, Train Loss: 0.03371614254609072, Val Loss: 0.03643185214272567 +2024-07-23 00:19:21.638 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 35/50, Train Loss: 0.03375992355131203, Val Loss: 0.03667644097336701 +2024-07-23 00:19:28.041 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 36/50, Train Loss: 0.033855933287321664, Val Loss: 0.036527375717248234 +2024-07-23 00:19:34.394 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 37/50, Train Loss: 0.0337083808635529, Val Loss: 0.03674489563064916 +2024-07-23 00:19:40.906 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 38/50, Train Loss: 0.03375174230460426, Val Loss: 0.0362317797860929 +2024-07-23 00:19:40.906 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:19:40.906 No tasks are waiting in the queue. +2024-07-23 00:19:40.906 4 steps have not started: validate_model, log_model, end, model_scores. +2024-07-23 00:19:47.315 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 39/50, Train Loss: 0.033629629841382555, Val Loss: 0.03607344872185162 +2024-07-23 00:19:53.730 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 40/50, Train Loss: 0.0336441625472453, Val Loss: 0.03646905816027096 +2024-07-23 00:20:00.131 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 41/50, Train Loss: 0.03360911468110925, Val Loss: 0.03655491524509021 +2024-07-23 00:20:06.586 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 42/50, Train Loss: 0.033654935711579355, Val Loss: 0.036472508098397936 +2024-07-23 00:20:12.950 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 43/50, Train Loss: 0.03354896782569105, Val Loss: 0.035987051682812826 +2024-07-23 00:20:19.359 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 44/50, Train Loss: 0.03347358487466042, Val Loss: 0.035920252544539316 +2024-07-23 00:20:25.978 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 45/50, Train Loss: 0.033445161854406054, Val Loss: 0.03669291968856539 +2024-07-23 00:20:32.471 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 46/50, Train Loss: 0.033368068586418526, Val Loss: 0.03650449471814292 +2024-07-23 00:20:39.039 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 47/50, Train Loss: 0.03353070993003228, Val Loss: 0.03643216176756791 +2024-07-23 00:20:45.511 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 48/50, Train Loss: 0.03341363143283043, Val Loss: 0.036320687724011286 +2024-07-23 00:20:51.940 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 49/50, Train Loss: 0.03337648762859029, Val Loss: 0.03669774202363832 +2024-07-23 00:20:58.477 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 50/50, Train Loss: 0.03357115538000203, Val Loss: 0.03654987003122057 +2024-07-23 00:20:58.477 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Fold 3, MAPE: 6.08% +2024-07-23 00:20:58.579 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_25001_50000_LSTM//train_f3_bgd_office_25001_50000_LSTM.png +2024-07-23 00:21:06.448 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 1/50, Train Loss: 0.03376186592504382, Val Loss: 0.0313176761248282 +2024-07-23 00:21:14.347 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 2/50, Train Loss: 0.03366016178531037, Val Loss: 0.030785478598305157 +2024-07-23 00:21:22.226 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 3/50, Train Loss: 0.03354613706683633, Val Loss: 0.030914495725716862 +2024-07-23 00:21:30.157 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 4/50, Train Loss: 0.03356756882784867, Val Loss: 0.030327912207160676 +2024-07-23 00:21:38.183 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 5/50, Train Loss: 0.033286744985601, Val Loss: 0.03046083248087338 +2024-07-23 00:21:46.351 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 6/50, Train Loss: 0.033317120756482944, Val Loss: 0.030570521897503308 +2024-07-23 00:21:54.385 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 7/50, Train Loss: 0.033388883945928226, Val Loss: 0.030703371071389745 +2024-07-23 00:22:02.365 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 8/50, Train Loss: 0.03320551464526818, Val Loss: 0.030271058050649505 +2024-07-23 00:22:10.263 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 9/50, Train Loss: 0.033082471737616706, Val Loss: 0.030394284959350315 +2024-07-23 00:22:18.208 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 10/50, Train Loss: 0.03336894218863427, Val Loss: 0.03019546094749655 +2024-07-23 00:22:26.144 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 11/50, Train Loss: 0.03308838719352224, Val Loss: 0.030087763071060182 +2024-07-23 00:22:34.020 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 12/50, Train Loss: 0.03304515795075688, Val Loss: 0.0298823497657265 +2024-07-23 00:22:41.932 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 13/50, Train Loss: 0.03309189634740181, Val Loss: 0.02957397337470736 +2024-07-23 00:22:49.803 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 14/50, Train Loss: 0.03301120734634413, Val Loss: 0.02980090177484921 +2024-07-23 00:22:57.644 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 15/50, Train Loss: 0.03295173601986005, Val Loss: 0.029455635962741717 +2024-07-23 00:23:05.480 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 16/50, Train Loss: 0.03291599024301288, Val Loss: 0.029774924208010946 +2024-07-23 00:23:13.428 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 17/50, Train Loss: 0.03321271370454081, Val Loss: 0.02981692659003394 +2024-07-23 00:23:21.388 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 18/50, Train Loss: 0.033075970908006035, Val Loss: 0.029944974343691554 +2024-07-23 00:23:29.330 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 19/50, Train Loss: 0.032860095270149325, Val Loss: 0.029517438103045735 +2024-07-23 00:23:37.243 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 20/50, Train Loss: 0.03284174365516024, Val Loss: 0.029187482010040965 +2024-07-23 00:23:45.155 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 21/50, Train Loss: 0.03269165632282865, Val Loss: 0.02915923542210034 +2024-07-23 00:23:53.053 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 22/50, Train Loss: 0.03256964289593971, Val Loss: 0.029955010807939938 +2024-07-23 00:24:01.025 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 23/50, Train Loss: 0.03275747026648672, Val Loss: 0.029199327155947686 +2024-07-23 00:24:08.928 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 24/50, Train Loss: 0.03265072425142273, Val Loss: 0.029248664102384022 +2024-07-23 00:24:16.859 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 25/50, Train Loss: 0.03282945799566377, Val Loss: 0.029809047068868364 +2024-07-23 00:24:24.787 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 26/50, Train Loss: 0.03260171354544916, Val Loss: 0.029733558850628988 +2024-07-23 00:24:32.656 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 27/50, Train Loss: 0.03253640321714953, Val Loss: 0.029183221555181913 +2024-07-23 00:24:40.580 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 28/50, Train Loss: 0.0324107316675885, Val Loss: 0.029887342346566065 +2024-07-23 00:24:48.585 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 29/50, Train Loss: 0.032449105797314096, Val Loss: 0.029652203300169537 +2024-07-23 00:24:48.585 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 00:24:48.585 No tasks are waiting in the queue. +2024-07-23 00:24:48.585 4 steps have not started: validate_model, log_model, end, model_scores. +2024-07-23 00:24:56.541 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 30/50, Train Loss: 0.03234063230733248, Val Loss: 0.030228611560804503 +2024-07-23 00:25:04.549 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 31/50, Train Loss: 0.0323090214153816, Val Loss: 0.03002564614372594 +2024-07-23 00:25:12.495 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 32/50, Train Loss: 0.03252223231455033, Val Loss: 0.030102899617382457 +2024-07-23 00:25:20.441 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 33/50, Train Loss: 0.03265869216565257, Val Loss: 0.029992118797131945 +2024-07-23 00:25:28.371 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 34/50, Train Loss: 0.03224325377558326, Val Loss: 0.029410523868032865 +2024-07-23 00:25:36.273 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 35/50, Train Loss: 0.0321054682510252, Val Loss: 0.030121154338121413 +2024-07-23 00:25:44.257 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 36/50, Train Loss: 0.032495541985135996, Val Loss: 0.02948597286428724 +2024-07-23 00:25:52.175 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 37/50, Train Loss: 0.032033871152791486, Val Loss: 0.029576044795768603 +2024-07-23 00:26:00.211 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 38/50, Train Loss: 0.032082526741185405, Val Loss: 0.030304271461708204 +2024-07-23 00:26:08.188 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 39/50, Train Loss: 0.032250124383075486, Val Loss: 0.02979635660137449 +2024-07-23 00:26:16.213 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 40/50, Train Loss: 0.03221499530769799, Val Loss: 0.029935454204678535 +2024-07-23 00:26:24.226 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 41/50, Train Loss: 0.03204454969743203, Val Loss: 0.029950362018176486 +2024-07-23 00:26:32.254 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 42/50, Train Loss: 0.031841953317153046, Val Loss: 0.030276740874562946 +2024-07-23 00:26:40.294 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 43/50, Train Loss: 0.031910575910246576, Val Loss: 0.030334751520838057 +2024-07-23 00:26:48.373 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 44/50, Train Loss: 0.03196524589954094, Val Loss: 0.02996026293507644 +2024-07-23 00:26:56.367 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 45/50, Train Loss: 0.031766127018878855, Val Loss: 0.02995730952492782 +2024-07-23 00:27:04.359 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 46/50, Train Loss: 0.031947151083370734, Val Loss: 0.03021364893232073 +2024-07-23 00:27:12.360 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 47/50, Train Loss: 0.032047563360939765, Val Loss: 0.031403056372489246 +2024-07-23 00:27:20.386 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 48/50, Train Loss: 0.03160290865377448, Val Loss: 0.031014309504202434 +2024-07-23 00:27:28.384 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 49/50, Train Loss: 0.031596069507857504, Val Loss: 0.030600822929825102 +2024-07-23 00:27:36.507 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Epoch 50/50, Train Loss: 0.03161840194343835, Val Loss: 0.03102592256452356 +2024-07-23 00:27:36.508 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Fold 4, MAPE: 5.63% +2024-07-23 00:27:36.617 [43/cross_validate_train/429 (pid 32661)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_25001_50000_LSTM//train_f4_bgd_office_25001_50000_LSTM.png +2024-07-23 00:27:41.148 [43/cross_validate_train/429 (pid 32661)] Task finished successfully. +2024-07-23 00:27:41.182 [43/model_scores/430 (pid 37449)] Task is starting. +2024-07-23 00:27:42.649 [43/model_scores/430 (pid 37449)] INFO:__main__:Average Train Loss across all folds: 0.037387715054688894 +2024-07-23 00:27:46.568 [43/model_scores/430 (pid 37449)] INFO:__main__:Average Validation Loss across all folds: 0.04425368776278836 +2024-07-23 00:27:46.568 [43/model_scores/430 (pid 37449)] INFO:__main__:Average MAPE across all folds: 6.69% +2024-07-23 00:27:46.569 [43/model_scores/430 (pid 37449)] Task finished successfully. +2024-07-23 00:27:46.601 [43/validate_model/431 (pid 37481)] Task is starting. +2024-07-23 00:27:48.078 [43/validate_model/431 (pid 37481)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 00:27:48.825 [43/validate_model/431 (pid 37481)] INFO:__main__:Test Set MAPE: 6.21% +2024-07-23 00:27:49.185 [43/validate_model/431 (pid 37481)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_office_25001_50000_LSTM//test_bgd_office_25001_50000_LSTM.png +2024-07-23 00:27:49.628 [43/validate_model/431 (pid 37481)] Task finished successfully. +2024-07-23 00:27:49.660 [43/log_model/432 (pid 37492)] Task is starting. +2024-07-23 00:27:51.145 [43/log_model/432 (pid 37492)] INFO:__main__:Logging model bgd_office_25001_50000_LSTM +2024-07-23 00:27:51.146 [43/log_model/432 (pid 37492)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_office_25001_50000_LSTM//bgd_office_25001_50000_LSTM.pth +2024-07-23 00:27:55.194 [43/log_model/432 (pid 37492)] Task finished successfully. +2024-07-23 00:27:55.219 [43/end/433 (pid 37525)] Task is starting. +2024-07-23 00:27:56.689 [43/end/433 (pid 37525)] INFO:__main__:Pipeline end. +2024-07-23 00:27:56.996 [43/end/433 (pid 37525)] Task finished successfully. +2024-07-23 00:27:56.996 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/scaler_bgd_office_25001_50000_LSTM.pkl b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/scaler_bgd_office_25001_50000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..0d130d6f7a5a7984bcca453ea05924e1fa36f79e --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/scaler_bgd_office_25001_50000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c128182e652832e3ec937c6342fa8ba3ae2ccf13430826b8090a5b57cdbb4291 +size 557 diff --git a/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/test_bgd_office_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/test_bgd_office_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..a093bab52ef6b5f8c6aac2bec1c5f0574fb27bbe Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/test_bgd_office_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f0_bgd_office_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f0_bgd_office_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..dedbce4e86c692dc9cfcca8aae63e90aabfbb3ff Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f0_bgd_office_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f1_bgd_office_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f1_bgd_office_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..d9b055c4d9a005c81e76f2ffd40b43ac43f20140 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f1_bgd_office_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f2_bgd_office_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f2_bgd_office_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..638b1c6ab07851b7686129b1a74af6c9b3bb73f0 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f2_bgd_office_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f3_bgd_office_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f3_bgd_office_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..ed6af109ac632fca6c22316ee725a8c9ac42ca0f Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f3_bgd_office_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f4_bgd_office_25001_50000_LSTM.png b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f4_bgd_office_25001_50000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..3582db5a75ff50dc3a1ff70db558fb744e100b53 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_25001_50000_LSTM/train_f4_bgd_office_25001_50000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/bgd_office_50001_100000_LSTM.pth b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/bgd_office_50001_100000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..27a5bb6c8a8dfe6d135e86f0125238987294e3a7 --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/bgd_office_50001_100000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ed8acaf6970fd635cc8d1856b39e5ed11808fd956e1303341027d1ba20a741 +size 46746 diff --git a/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/output.txt b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..55ed04c865d914ee8f1c1929e39eaffe8f8c44cb --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/output.txt @@ -0,0 +1,783 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-23 02:45:00.033 Workflow starting (run-id 47): +2024-07-23 02:45:00.107 [47/start/477 (pid 52592)] Task is starting. +2024-07-23 02:45:01.491 [47/start/477 (pid 52592)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 02:45:01.769 [47/start/477 (pid 52592)] Task finished successfully. +2024-07-23 02:45:01.798 [47/ingest/478 (pid 52603)] Task is starting. +2024-07-23 02:45:03.194 [47/ingest/478 (pid 52603)] INFO:__main__:Fetching dataframe.. +2024-07-23 02:45:03.210 [47/ingest/478 (pid 52603)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 02:45:06.851 [47/ingest/478 (pid 52603)] Task finished successfully. +2024-07-23 02:45:06.879 [47/pick_2017_data/479 (pid 52635)] Task is starting. +2024-07-23 02:45:08.247 [47/pick_2017_data/479 (pid 52635)] INFO:__main__:Picking 2017 data.. +2024-07-23 02:45:08.545 [47/pick_2017_data/479 (pid 52635)] Task finished successfully. +2024-07-23 02:45:08.575 [47/fill_missing_data/480 (pid 52641)] Task is starting. +2024-07-23 02:45:09.964 [47/fill_missing_data/480 (pid 52641)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 02:45:09.970 [47/fill_missing_data/480 (pid 52641)] INFO:__main__:NaN counts per column: +2024-07-23 02:45:09.970 [47/fill_missing_data/480 (pid 52641)] INFO:__main__:Panther_office_Garth 11 +2024-07-23 02:45:09.970 [47/fill_missing_data/480 (pid 52641)] Fox_office_Vicki 3 +2024-07-23 02:45:09.970 [47/fill_missing_data/480 (pid 52641)] Fox_office_Joy 1 +2024-07-23 02:45:09.970 [47/fill_missing_data/480 (pid 52641)] Cockatoo_office_Margaret 112 +2024-07-23 02:45:09.970 [47/fill_missing_data/480 (pid 52641)] Cockatoo_office_Ada 359 +2024-07-23 02:45:09.971 [47/fill_missing_data/480 (pid 52641)] dtype: int64 +2024-07-23 02:45:09.971 [47/fill_missing_data/480 (pid 52641)] --- Logging error --- +2024-07-23 02:45:09.971 [47/fill_missing_data/480 (pid 52641)] Traceback (most recent call last): +2024-07-23 02:45:09.971 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] msg = self.format(record) +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] return fmt.format(record) +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] record.message = record.getMessage() +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] msg = msg % self.args +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] TypeError: not all arguments converted during string formatting +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] Call stack: +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] BGD_LinearFlow() +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] cli.main(self) +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] return func(*args, **kwargs) +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] return self.main(*args, **kwargs) +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] rv = self.invoke(ctx) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] return callback(*args, **kwargs) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] return f(get_current_context(), *args, **kwargs) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] task.run_step( +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] self._exec_step_function(step_func) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] step_function() +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] self.missing_values = find_nan_counts(self.df) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] Arguments: (486,) +2024-07-23 02:45:10.520 [47/fill_missing_data/480 (pid 52641)] Task finished successfully. +2024-07-23 02:45:10.548 [47/find_median/481 (pid 52653)] Task is starting. +2024-07-23 02:45:11.933 [47/find_median/481 (pid 52653)] INFO:__main__:Computing and using median.. +2024-07-23 02:45:12.421 [47/find_median/481 (pid 52653)] Task finished successfully. +2024-07-23 02:45:12.448 [47/aggregate_data/482 (pid 52664)] Task is starting. +2024-07-23 02:45:13.836 [47/aggregate_data/482 (pid 52664)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 02:45:17.453 [47/aggregate_data/482 (pid 52664)] Task finished successfully. +2024-07-23 02:45:17.482 [47/split_data/483 (pid 52695)] Task is starting. +2024-07-23 02:45:18.867 [47/split_data/483 (pid 52695)] INFO:__main__:Splitting data into test and train... +2024-07-23 02:45:22.480 [47/split_data/483 (pid 52695)] Task finished successfully. +2024-07-23 02:45:22.509 [47/make_x_y/484 (pid 52722)] Task is starting. +2024-07-23 02:45:24.236 [47/make_x_y/484 (pid 52722)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 02:45:24.613 [47/make_x_y/484 (pid 52722)] Shape of y_train: (6648, 1) +2024-07-23 02:45:24.613 [47/make_x_y/484 (pid 52722)] Shape of X_test: (1392, 360, 1) +2024-07-23 02:45:24.613 [47/make_x_y/484 (pid 52722)] Shape of y_test: (1392, 1) +2024-07-23 02:45:24.614 [47/make_x_y/484 (pid 52722)] Task finished successfully. +2024-07-23 02:45:24.642 [47/cross_validate_train/485 (pid 52733)] Task is starting. +2024-07-23 02:45:26.021 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Creating bgd_office_50001_100000_LSTM +2024-07-23 02:45:26.022 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Performing cross validation.. +2024-07-23 02:45:28.487 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 1/50, Train Loss: 0.26115653003965106, Val Loss: 0.21686825092349735 +2024-07-23 02:45:30.400 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 2/50, Train Loss: 0.16604788697191647, Val Loss: 0.20608823043959482 +2024-07-23 02:45:32.283 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 3/50, Train Loss: 0.15686888567038945, Val Loss: 0.19746364951133727 +2024-07-23 02:45:34.163 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 4/50, Train Loss: 0.1467161616044385, Val Loss: 0.1909678239907537 +2024-07-23 02:45:36.060 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 5/50, Train Loss: 0.13421776943973132, Val Loss: 0.18153415875775472 +2024-07-23 02:45:37.950 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 6/50, Train Loss: 0.11800254647220884, Val Loss: 0.14783414602279663 +2024-07-23 02:45:39.879 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 7/50, Train Loss: 0.10318521325077329, Val Loss: 0.11804880776575634 +2024-07-23 02:45:41.820 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 8/50, Train Loss: 0.08982695011155946, Val Loss: 0.10249105819634029 +2024-07-23 02:45:43.738 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 9/50, Train Loss: 0.07693612011415618, Val Loss: 0.09674745388329029 +2024-07-23 02:45:45.667 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 10/50, Train Loss: 0.07570268107312066, Val Loss: 0.08928335484649454 +2024-07-23 02:45:47.630 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 11/50, Train Loss: 0.06790149318320411, Val Loss: 0.0931605976074934 +2024-07-23 02:45:49.537 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 12/50, Train Loss: 0.06569433361291885, Val Loss: 0.08703427804367883 +2024-07-23 02:45:51.425 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 13/50, Train Loss: 0.062426710980279104, Val Loss: 0.09008305950888566 +2024-07-23 02:45:53.316 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 14/50, Train Loss: 0.060151691415480206, Val Loss: 0.08407814827348505 +2024-07-23 02:45:55.243 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 15/50, Train Loss: 0.05780451207288674, Val Loss: 0.08401654825678893 +2024-07-23 02:45:57.176 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 16/50, Train Loss: 0.05633734320955617, Val Loss: 0.07993436083197594 +2024-07-23 02:45:59.106 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 17/50, Train Loss: 0.05659387888652938, Val Loss: 0.07966171338089875 +2024-07-23 02:46:01.073 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 18/50, Train Loss: 0.0556842354791505, Val Loss: 0.07899521812796592 +2024-07-23 02:46:03.003 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 19/50, Train Loss: 0.05387340395578316, Val Loss: 0.07723641283810138 +2024-07-23 02:46:04.948 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 20/50, Train Loss: 0.053594059337462696, Val Loss: 0.07558958519782338 +2024-07-23 02:46:06.884 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 21/50, Train Loss: 0.0534615303256682, Val Loss: 0.07536610732121127 +2024-07-23 02:46:08.857 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 22/50, Train Loss: 0.05303630429719176, Val Loss: 0.0747390023299626 +2024-07-23 02:46:10.880 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 23/50, Train Loss: 0.05167746245861053, Val Loss: 0.07256996679518904 +2024-07-23 02:46:12.834 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 24/50, Train Loss: 0.05152905099093914, Val Loss: 0.07327090166509151 +2024-07-23 02:46:14.780 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 25/50, Train Loss: 0.05078479147383145, Val Loss: 0.07089346460998058 +2024-07-23 02:46:16.735 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 26/50, Train Loss: 0.049944632553628514, Val Loss: 0.06859462995614324 +2024-07-23 02:46:18.682 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 27/50, Train Loss: 0.05048726344747203, Val Loss: 0.07111854132797037 +2024-07-23 02:46:20.670 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 28/50, Train Loss: 0.04896777836339814, Val Loss: 0.06701443386929376 +2024-07-23 02:46:22.603 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 29/50, Train Loss: 0.048896306806377, Val Loss: 0.06715906390122005 +2024-07-23 02:46:24.526 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 30/50, Train Loss: 0.048395140841603276, Val Loss: 0.06695195000086512 +2024-07-23 02:46:26.480 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 31/50, Train Loss: 0.04713375536458833, Val Loss: 0.06369285530277662 +2024-07-23 02:46:28.406 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 32/50, Train Loss: 0.04691060861306531, Val Loss: 0.06732689147549016 +2024-07-23 02:46:30.376 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 33/50, Train Loss: 0.04615929467337472, Val Loss: 0.06661780029535294 +2024-07-23 02:46:32.308 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 34/50, Train Loss: 0.04554076104291848, Val Loss: 0.06537375229277781 +2024-07-23 02:46:34.263 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 35/50, Train Loss: 0.0449810978025198, Val Loss: 0.06505272266055856 +2024-07-23 02:46:36.202 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 36/50, Train Loss: 0.04349040522107056, Val Loss: 0.06652715429663658 +2024-07-23 02:46:38.156 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 37/50, Train Loss: 0.04377394238752978, Val Loss: 0.06929348260164261 +2024-07-23 02:46:40.112 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 38/50, Train Loss: 0.04243701600602695, Val Loss: 0.06432813634829862 +2024-07-23 02:46:42.061 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 39/50, Train Loss: 0.04285223281809262, Val Loss: 0.0653841354485069 +2024-07-23 02:46:44.015 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 40/50, Train Loss: 0.0418533907937152, Val Loss: 0.06952769431684698 +2024-07-23 02:46:45.955 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 41/50, Train Loss: 0.04181926128055368, Val Loss: 0.06574484072625637 +2024-07-23 02:46:47.896 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 42/50, Train Loss: 0.041073146728532656, Val Loss: 0.06666670808834689 +2024-07-23 02:46:49.824 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 43/50, Train Loss: 0.03807830198534897, Val Loss: 0.05738479303462165 +2024-07-23 02:46:51.811 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 44/50, Train Loss: 0.039456919474261144, Val Loss: 0.05684926717409066 +2024-07-23 02:46:53.785 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 45/50, Train Loss: 0.039620043975966315, Val Loss: 0.064408631463136 +2024-07-23 02:46:55.775 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 46/50, Train Loss: 0.03770867591457708, Val Loss: 0.058380722999572754 +2024-07-23 02:46:57.748 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 47/50, Train Loss: 0.037326886930635995, Val Loss: 0.05717715732753277 +2024-07-23 02:46:59.703 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 48/50, Train Loss: 0.038040530042988914, Val Loss: 0.061454471200704575 +2024-07-23 02:47:01.700 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 49/50, Train Loss: 0.03711904542786734, Val Loss: 0.055856105046612876 +2024-07-23 02:47:03.673 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 50/50, Train Loss: 0.03750605774777276, Val Loss: 0.05668540272329535 +2024-07-23 02:47:03.674 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Fold 0, MAPE: 4.91% +2024-07-23 02:47:04.028 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_50001_100000_LSTM//train_f0_bgd_office_50001_100000_LSTM.png +2024-07-23 02:47:07.493 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 1/50, Train Loss: 0.030573032423853876, Val Loss: 0.0315312816628388 +2024-07-23 02:47:10.988 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 2/50, Train Loss: 0.028129500948957036, Val Loss: 0.029542749587978635 +2024-07-23 02:47:14.457 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 3/50, Train Loss: 0.028828011559588567, Val Loss: 0.029137214166777475 +2024-07-23 02:47:17.958 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 4/50, Train Loss: 0.02835785656103066, Val Loss: 0.030652561943445886 +2024-07-23 02:47:21.484 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 5/50, Train Loss: 0.027387722861021757, Val Loss: 0.028754553890654018 +2024-07-23 02:47:24.967 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 6/50, Train Loss: 0.027319316393030542, Val Loss: 0.031299424384321484 +2024-07-23 02:47:28.422 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 7/50, Train Loss: 0.027164975979498455, Val Loss: 0.026275477771248137 +2024-07-23 02:47:31.925 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 8/50, Train Loss: 0.027401173247822694, Val Loss: 0.025875769981316157 +2024-07-23 02:47:35.447 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 9/50, Train Loss: 0.026558206589626415, Val Loss: 0.025335963230047907 +2024-07-23 02:47:38.969 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 10/50, Train Loss: 0.02697996465223176, Val Loss: 0.02446043078920671 +2024-07-23 02:47:42.537 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 11/50, Train Loss: 0.02586149639849152, Val Loss: 0.025202612898179464 +2024-07-23 02:47:46.043 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 12/50, Train Loss: 0.02686539183237723, Val Loss: 0.026917286909052304 +2024-07-23 02:47:49.595 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 13/50, Train Loss: 0.024957820373986448, Val Loss: 0.024024000950157644 +2024-07-23 02:49:57.301 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 14/50, Train Loss: 0.025896477779107436, Val Loss: 0.028778783338410514 +2024-07-23 02:50:00.629 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 15/50, Train Loss: 0.02501614716436182, Val Loss: 0.023780786778245654 +2024-07-23 02:50:00.629 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:50:00.629 No tasks are waiting in the queue. +2024-07-23 02:50:00.629 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 02:50:04.011 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 16/50, Train Loss: 0.025501269128705775, Val Loss: 0.024271835439971516 +2024-07-23 02:50:07.327 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 17/50, Train Loss: 0.02548615163458245, Val Loss: 0.0278410513486181 +2024-07-23 02:50:10.730 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 18/50, Train Loss: 0.025724305784595863, Val Loss: 0.026782960258424283 +2024-07-23 02:50:14.230 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 19/50, Train Loss: 0.024882080139858383, Val Loss: 0.02417599391192198 +2024-07-23 02:50:17.637 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 20/50, Train Loss: 0.02499886824350272, Val Loss: 0.023956216153289592 +2024-07-23 02:50:21.015 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 21/50, Train Loss: 0.025338670052587987, Val Loss: 0.02554409195269857 +2024-07-23 02:50:24.442 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 22/50, Train Loss: 0.02593171065673232, Val Loss: 0.02472882332014186 +2024-07-23 02:50:27.900 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 23/50, Train Loss: 0.0248608467169106, Val Loss: 0.024774939034666335 +2024-07-23 02:50:31.274 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 24/50, Train Loss: 0.025197851218815362, Val Loss: 0.025875139076794895 +2024-07-23 02:50:34.673 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 25/50, Train Loss: 0.02443606395806585, Val Loss: 0.025162849468844277 +2024-07-23 02:50:38.064 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 26/50, Train Loss: 0.0259566282587392, Val Loss: 0.02403892491544996 +2024-07-23 02:50:41.479 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 27/50, Train Loss: 0.02487869829471622, Val Loss: 0.02563302144408226 +2024-07-23 02:50:44.894 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 28/50, Train Loss: 0.02439476347395352, Val Loss: 0.024037821617509638 +2024-07-23 02:50:48.319 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 29/50, Train Loss: 0.025261536799371244, Val Loss: 0.025621498695441655 +2024-07-23 02:50:51.710 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 30/50, Train Loss: 0.02511945974880031, Val Loss: 0.025163484205092703 +2024-07-23 02:50:55.136 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 31/50, Train Loss: 0.024539660103619097, Val Loss: 0.024699701422027178 +2024-07-23 02:50:58.603 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 32/50, Train Loss: 0.025072079231696468, Val Loss: 0.024271655029484203 +2024-07-23 02:51:02.040 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 33/50, Train Loss: 0.02445938271869506, Val Loss: 0.022970062254795007 +2024-07-23 02:51:05.444 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 34/50, Train Loss: 0.024708511494100093, Val Loss: 0.024657214911920685 +2024-07-23 02:51:08.871 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 35/50, Train Loss: 0.02475629740261606, Val Loss: 0.023343606905213424 +2024-07-23 02:51:12.245 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 36/50, Train Loss: 0.02501069304666349, Val Loss: 0.024763562796371322 +2024-07-23 02:51:15.661 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 37/50, Train Loss: 0.024782249304865087, Val Loss: 0.025341775534408435 +2024-07-23 02:51:19.064 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 38/50, Train Loss: 0.026078335222389018, Val Loss: 0.02498729715922049 +2024-07-23 02:51:22.452 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 39/50, Train Loss: 0.025025230406650476, Val Loss: 0.02346279661038092 +2024-07-23 02:51:25.853 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 40/50, Train Loss: 0.024547630881092377, Val Loss: 0.022527521369712693 +2024-07-23 02:51:29.260 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 41/50, Train Loss: 0.024546687065490656, Val Loss: 0.023657820134290627 +2024-07-23 02:51:32.623 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 42/50, Train Loss: 0.02449100986123085, Val Loss: 0.023810303370867456 +2024-07-23 02:51:36.080 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 43/50, Train Loss: 0.024555056049887624, Val Loss: 0.023357862500207764 +2024-07-23 02:51:39.530 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 44/50, Train Loss: 0.024346207614455904, Val Loss: 0.024207871753190245 +2024-07-23 02:51:42.963 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 45/50, Train Loss: 0.024208197995488134, Val Loss: 0.022882889583706857 +2024-07-23 02:51:46.436 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 46/50, Train Loss: 0.024334390115525042, Val Loss: 0.02507713357252734 +2024-07-23 02:51:49.957 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 47/50, Train Loss: 0.024157848900982312, Val Loss: 0.023472600935825278 +2024-07-23 02:51:53.421 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 48/50, Train Loss: 0.024487675646586077, Val Loss: 0.02387466606284891 +2024-07-23 02:51:56.911 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 49/50, Train Loss: 0.024188834841230085, Val Loss: 0.02662739333297525 +2024-07-23 02:52:00.403 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 50/50, Train Loss: 0.02402097832943712, Val Loss: 0.026704319779361996 +2024-07-23 02:52:00.404 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Fold 1, MAPE: 2.67% +2024-07-23 02:52:00.520 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_50001_100000_LSTM//train_f1_bgd_office_50001_100000_LSTM.png +2024-07-23 02:55:41.763 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 1/50, Train Loss: 0.02114001855863115, Val Loss: 0.02186042759567499 +2024-07-23 02:55:41.764 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:55:41.764 No tasks are waiting in the queue. +2024-07-23 02:55:41.764 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 02:55:46.527 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 2/50, Train Loss: 0.021453135521509327, Val Loss: 0.022419274731406143 +2024-07-23 02:55:51.323 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 3/50, Train Loss: 0.021152597672950763, Val Loss: 0.021038996614515783 +2024-07-23 02:55:56.051 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 4/50, Train Loss: 0.02101516480056139, Val Loss: 0.020025671220251492 +2024-07-23 02:56:01.003 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 5/50, Train Loss: 0.02077968548446034, Val Loss: 0.020810930563935213 +2024-07-23 02:56:05.850 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 6/50, Train Loss: 0.020778537718937375, Val Loss: 0.0221931732658829 +2024-07-23 02:56:10.654 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 7/50, Train Loss: 0.020885199308395386, Val Loss: 0.022201245251510824 +2024-07-23 02:56:15.507 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 8/50, Train Loss: 0.020268312834489804, Val Loss: 0.02051667355533157 +2024-07-23 02:56:20.371 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 9/50, Train Loss: 0.020374982384964824, Val Loss: 0.0220017549980964 +2024-07-23 02:56:25.232 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 10/50, Train Loss: 0.02074489442524142, Val Loss: 0.021134881622024943 +2024-07-23 02:56:30.052 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 11/50, Train Loss: 0.020473155228850935, Val Loss: 0.019707026119743076 +2024-07-23 02:56:34.880 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 12/50, Train Loss: 0.020239833885660537, Val Loss: 0.0195645985858781 +2024-07-23 02:56:39.710 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 13/50, Train Loss: 0.02062036597635597, Val Loss: 0.0211891073467476 +2024-07-23 02:56:44.576 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 14/50, Train Loss: 0.020399384693099328, Val Loss: 0.020572017558983396 +2024-07-23 02:56:49.424 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 15/50, Train Loss: 0.020232073380611837, Val Loss: 0.022745697971965587 +2024-07-23 02:56:54.255 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 16/50, Train Loss: 0.020742654281023603, Val Loss: 0.022386752468134676 +2024-07-23 02:56:59.123 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 17/50, Train Loss: 0.02023637330589386, Val Loss: 0.023073062859475614 +2024-07-23 02:57:03.989 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 18/50, Train Loss: 0.02073736872094182, Val Loss: 0.024897660900439534 +2024-07-23 02:57:08.850 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 19/50, Train Loss: 0.020465951583061654, Val Loss: 0.02536515657390867 +2024-07-23 02:57:13.685 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 20/50, Train Loss: 0.020531388071294013, Val Loss: 0.021135692564504486 +2024-07-23 02:57:18.574 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 21/50, Train Loss: 0.02007666797054788, Val Loss: 0.02171924923147474 +2024-07-23 02:57:23.429 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 22/50, Train Loss: 0.02015774046930556, Val Loss: 0.022235803359321186 +2024-07-23 02:57:28.324 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 23/50, Train Loss: 0.02049482287839055, Val Loss: 0.02201993146112987 +2024-07-23 02:57:33.198 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 24/50, Train Loss: 0.020100948561985906, Val Loss: 0.020440555922687054 +2024-07-23 02:57:38.082 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 25/50, Train Loss: 0.02032019978818985, Val Loss: 0.021120382259999 +2024-07-23 02:57:42.982 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 26/50, Train Loss: 0.0199827032092099, Val Loss: 0.02185614558735064 +2024-07-23 02:57:47.911 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 27/50, Train Loss: 0.020025655448150177, Val Loss: 0.02261511619601931 +2024-07-23 03:04:22.459 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 28/50, Train Loss: 0.02000189630780369, Val Loss: 0.021319180567349705 +2024-07-23 03:04:22.460 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 03:04:22.460 No tasks are waiting in the queue. +2024-07-23 03:04:22.460 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 03:04:27.205 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 29/50, Train Loss: 0.020207495742047634, Val Loss: 0.0221145361661911 +2024-07-23 03:04:32.054 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 30/50, Train Loss: 0.019861571750460334, Val Loss: 0.021054584027401037 +2024-07-23 03:04:36.853 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 31/50, Train Loss: 0.020263597440834228, Val Loss: 0.022921907076878207 +2024-07-23 03:04:41.755 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 32/50, Train Loss: 0.019879786011118155, Val Loss: 0.023001743320907864 +2024-07-23 03:04:46.493 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 33/50, Train Loss: 0.019883064400906172, Val Loss: 0.021193936467170715 +2024-07-23 03:04:51.187 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 34/50, Train Loss: 0.02001812604542535, Val Loss: 0.024304485986275333 +2024-07-23 03:04:56.063 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 35/50, Train Loss: 0.019875147953056373, Val Loss: 0.022838078439235687 +2024-07-23 03:05:00.926 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 36/50, Train Loss: 0.020046939589799598, Val Loss: 0.024241721470441138 +2024-07-23 03:05:05.721 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 37/50, Train Loss: 0.019830494662388586, Val Loss: 0.02167488730379513 +2024-07-23 03:05:10.667 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 38/50, Train Loss: 0.019718733705723517, Val Loss: 0.020509698215339864 +2024-07-23 03:05:15.575 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 39/50, Train Loss: 0.020003047100125022, Val Loss: 0.02316968289336988 +2024-07-23 03:05:20.432 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 40/50, Train Loss: 0.019807208633910004, Val Loss: 0.023481476519789015 +2024-07-23 03:05:25.318 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 41/50, Train Loss: 0.019917096718787573, Val Loss: 0.025345081623111453 +2024-07-23 03:05:30.168 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 42/50, Train Loss: 0.019834593439904544, Val Loss: 0.024531094889555658 +2024-07-23 03:05:35.030 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 43/50, Train Loss: 0.019819709687278822, Val Loss: 0.022700467838772706 +2024-07-23 03:05:39.861 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 44/50, Train Loss: 0.01975586965608482, Val Loss: 0.023383149770753724 +2024-07-23 03:05:44.739 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 45/50, Train Loss: 0.01963248654591063, Val Loss: 0.024267794830458506 +2024-07-23 03:05:49.621 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 46/50, Train Loss: 0.019749089878482316, Val Loss: 0.023531496711075305 +2024-07-23 03:05:54.517 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 47/50, Train Loss: 0.019832911220594093, Val Loss: 0.0263257446033614 +2024-07-23 03:05:59.386 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 48/50, Train Loss: 0.019612604868598282, Val Loss: 0.02440189767096724 +2024-07-23 03:06:04.279 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 49/50, Train Loss: 0.019820963354924552, Val Loss: 0.02437698833112206 +2024-07-23 03:06:09.120 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 50/50, Train Loss: 0.019873640786569852, Val Loss: 0.023437639166201864 +2024-07-23 03:06:09.120 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Fold 2, MAPE: 2.41% +2024-07-23 03:06:09.226 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_50001_100000_LSTM//train_f2_bgd_office_50001_100000_LSTM.png +2024-07-23 03:06:15.586 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 1/50, Train Loss: 0.01813896088157412, Val Loss: 0.021240712782101972 +2024-07-23 03:06:21.912 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 2/50, Train Loss: 0.018106039305277866, Val Loss: 0.020710757640855653 +2024-07-23 03:06:28.209 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 3/50, Train Loss: 0.018159901669664347, Val Loss: 0.02055400474263089 +2024-07-23 03:06:34.597 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 4/50, Train Loss: 0.01806159626370926, Val Loss: 0.02067794789161001 +2024-07-23 03:06:40.889 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 5/50, Train Loss: 0.018044423955164368, Val Loss: 0.02164711555732148 +2024-07-23 03:06:47.261 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 6/50, Train Loss: 0.018029927651283983, Val Loss: 0.020700802627418722 +2024-07-23 03:06:53.657 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 7/50, Train Loss: 0.01809957068708303, Val Loss: 0.02053494754114321 +2024-07-23 03:07:00.120 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 8/50, Train Loss: 0.018163631361969513, Val Loss: 0.020520071658704963 +2024-07-23 03:12:49.220 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 9/50, Train Loss: 0.017940691102751725, Val Loss: 0.02086866849235126 +2024-07-23 03:12:49.220 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 03:12:49.220 No tasks are waiting in the queue. +2024-07-23 03:12:49.220 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 03:12:55.432 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 10/50, Train Loss: 0.018116170305946318, Val Loss: 0.020168852327125415 +2024-07-23 03:13:01.587 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 11/50, Train Loss: 0.017980423059126886, Val Loss: 0.020785116617168697 +2024-07-23 03:13:07.936 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 12/50, Train Loss: 0.018068873430702754, Val Loss: 0.020467088211859975 +2024-07-23 03:13:14.281 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 13/50, Train Loss: 0.017959642438419004, Val Loss: 0.02219041186783995 +2024-07-23 03:13:20.610 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 14/50, Train Loss: 0.01804490220605684, Val Loss: 0.02148833740502596 +2024-07-23 03:13:26.915 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 15/50, Train Loss: 0.017939992362914756, Val Loss: 0.020799584846411433 +2024-07-23 03:13:33.265 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 16/50, Train Loss: 0.018105914843060986, Val Loss: 0.020395987906626292 +2024-07-23 03:13:39.598 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 17/50, Train Loss: 0.01789072115751479, Val Loss: 0.020701164486152786 +2024-07-23 03:13:45.901 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 18/50, Train Loss: 0.017770933201737543, Val Loss: 0.022352538417492594 +2024-07-23 03:13:52.246 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 19/50, Train Loss: 0.01787272792497127, Val Loss: 0.02137654096420322 +2024-07-23 03:13:58.575 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 20/50, Train Loss: 0.01782027664828858, Val Loss: 0.021328603236802985 +2024-07-23 03:14:04.894 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 21/50, Train Loss: 0.018020627443953385, Val Loss: 0.021264835234199253 +2024-07-23 03:14:11.235 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 22/50, Train Loss: 0.01779425014882422, Val Loss: 0.021146366479141372 +2024-07-23 03:14:17.513 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 23/50, Train Loss: 0.01791343833286342, Val Loss: 0.020692764941070762 +2024-07-23 03:14:23.868 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 24/50, Train Loss: 0.017795271816388736, Val Loss: 0.02227798349090985 +2024-07-23 03:14:30.251 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 25/50, Train Loss: 0.017827114525834006, Val Loss: 0.021052026003599168 +2024-07-23 03:14:36.573 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 26/50, Train Loss: 0.01775056973314114, Val Loss: 0.021345297220562186 +2024-07-23 03:14:42.897 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 27/50, Train Loss: 0.017684888784780348, Val Loss: 0.021184476518205233 +2024-07-23 03:14:49.168 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 28/50, Train Loss: 0.01771884412243426, Val Loss: 0.02170197098915066 +2024-07-23 03:14:55.505 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 29/50, Train Loss: 0.017568950936627047, Val Loss: 0.021015785528080803 +2024-07-23 03:25:25.082 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 30/50, Train Loss: 0.017825867371003834, Val Loss: 0.020745064823755197 +2024-07-23 03:25:25.083 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 03:25:25.083 No tasks are waiting in the queue. +2024-07-23 03:25:25.083 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 03:25:31.377 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 31/50, Train Loss: 0.017683952236079055, Val Loss: 0.02114139154021229 +2024-07-23 03:25:37.512 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 32/50, Train Loss: 0.017484858364081212, Val Loss: 0.02174915434526546 +2024-07-23 03:25:43.804 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 33/50, Train Loss: 0.017690854053274332, Val Loss: 0.021168177734528268 +2024-07-23 03:25:50.070 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 34/50, Train Loss: 0.01758330442654572, Val Loss: 0.02098192721605301 +2024-07-23 03:25:56.456 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 35/50, Train Loss: 0.0174540064813529, Val Loss: 0.021651711368135044 +2024-07-23 03:26:02.809 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 36/50, Train Loss: 0.017501512689770553, Val Loss: 0.02071720412267106 +2024-07-23 03:26:09.141 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 37/50, Train Loss: 0.017484304341052075, Val Loss: 0.020870121781315122 +2024-07-23 03:26:15.490 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 38/50, Train Loss: 0.017643757620089347, Val Loss: 0.021809463389217854 +2024-07-23 03:26:21.831 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 39/50, Train Loss: 0.017445629181192933, Val Loss: 0.021034934877284934 +2024-07-23 03:26:28.162 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 40/50, Train Loss: 0.017410990976386792, Val Loss: 0.02142793107777834 +2024-07-23 03:26:34.566 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 41/50, Train Loss: 0.01736438491468807, Val Loss: 0.02115365421133382 +2024-07-23 03:26:40.850 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 42/50, Train Loss: 0.01741671822831142, Val Loss: 0.02171020624893052 +2024-07-23 03:26:47.192 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 43/50, Train Loss: 0.017408269531220842, Val Loss: 0.02150866804378373 +2024-07-23 03:26:53.531 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 44/50, Train Loss: 0.017431565975810557, Val Loss: 0.021510216567133155 +2024-07-23 03:26:59.849 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 45/50, Train Loss: 0.017222877544947238, Val Loss: 0.02166225252939122 +2024-07-23 03:27:06.221 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 46/50, Train Loss: 0.017305494286119938, Val Loss: 0.021259583133671964 +2024-07-23 03:27:12.601 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 47/50, Train Loss: 0.01730744836168538, Val Loss: 0.02123798339494637 +2024-07-23 03:27:18.922 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 48/50, Train Loss: 0.0171398331994097, Val Loss: 0.021085094554083687 +2024-07-23 03:27:25.278 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 49/50, Train Loss: 0.017083563647574657, Val Loss: 0.021939278127891676 +2024-07-23 03:27:31.596 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 50/50, Train Loss: 0.01723267650566727, Val Loss: 0.02104732913098165 +2024-07-23 03:27:31.597 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Fold 3, MAPE: 2.79% +2024-07-23 03:27:31.696 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_50001_100000_LSTM//train_f3_bgd_office_50001_100000_LSTM.png +2024-07-23 03:30:51.863 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 1/50, Train Loss: 0.017250558580860668, Val Loss: 0.01810719333589077 +2024-07-23 03:30:51.863 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 03:30:51.863 No tasks are waiting in the queue. +2024-07-23 03:30:51.863 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 03:30:59.649 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 2/50, Train Loss: 0.017267767698557555, Val Loss: 0.01827637981623411 +2024-07-23 03:31:07.248 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 3/50, Train Loss: 0.017166719846855635, Val Loss: 0.01753814100686993 +2024-07-23 03:31:15.000 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 4/50, Train Loss: 0.017168142254753358, Val Loss: 0.01695390913103308 +2024-07-23 03:31:22.774 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 5/50, Train Loss: 0.01708722286375946, Val Loss: 0.017158063873648644 +2024-07-23 03:31:30.639 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 6/50, Train Loss: 0.017025737359520347, Val Loss: 0.017111002068434442 +2024-07-23 03:31:38.425 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 7/50, Train Loss: 0.017070924392205544, Val Loss: 0.017369129615170616 +2024-07-23 03:31:46.200 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 8/50, Train Loss: 0.01697920217853168, Val Loss: 0.016801105732364315 +2024-07-23 03:31:54.034 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 9/50, Train Loss: 0.01680029110833146, Val Loss: 0.017291910919759956 +2024-07-23 03:32:01.812 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 10/50, Train Loss: 0.016924555531178397, Val Loss: 0.016411808425826686 +2024-07-23 03:32:09.619 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 11/50, Train Loss: 0.017118385302480953, Val Loss: 0.016554347611963748 +2024-07-23 03:32:17.364 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 12/50, Train Loss: 0.01688203116579131, Val Loss: 0.015922720517430988 +2024-07-23 03:32:25.163 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 13/50, Train Loss: 0.016991527633334714, Val Loss: 0.017734763425375735 +2024-07-23 03:32:32.965 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 14/50, Train Loss: 0.0169725244297464, Val Loss: 0.016429382748901843 +2024-07-23 03:32:40.836 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 15/50, Train Loss: 0.016896102711258607, Val Loss: 0.016534090973436832 +2024-07-23 03:32:48.645 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 16/50, Train Loss: 0.016922312740493436, Val Loss: 0.016114837117493154 +2024-07-23 03:32:56.424 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 17/50, Train Loss: 0.01688349644128961, Val Loss: 0.017071316497666494 +2024-07-23 03:33:04.235 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 18/50, Train Loss: 0.016792991300295483, Val Loss: 0.01601519337190049 +2024-07-23 03:33:11.910 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 19/50, Train Loss: 0.016749523644303453, Val Loss: 0.016865513154438565 +2024-07-23 03:33:19.648 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 20/50, Train Loss: 0.01665893402592889, Val Loss: 0.01595090444066695 +2024-07-23 03:33:27.376 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 21/50, Train Loss: 0.01663284924352306, Val Loss: 0.016399918656264032 +2024-07-23 03:33:35.270 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 22/50, Train Loss: 0.016847792798760294, Val Loss: 0.01610460997159992 +2024-07-23 03:33:43.227 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 23/50, Train Loss: 0.01678010060227123, Val Loss: 0.01655074187687465 +2024-07-23 03:33:51.288 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 24/50, Train Loss: 0.01678072588368394, Val Loss: 0.016655549327177662 +2024-07-23 03:33:59.326 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 25/50, Train Loss: 0.016690047928827934, Val Loss: 0.01617513338902167 +2024-07-23 03:34:07.371 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 26/50, Train Loss: 0.01669009317825923, Val Loss: 0.016061814262398652 +2024-07-23 03:34:15.414 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 27/50, Train Loss: 0.016864622097419596, Val Loss: 0.016363800609750408 +2024-07-23 03:34:23.517 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 28/50, Train Loss: 0.016565974726844793, Val Loss: 0.01641528888472489 +2024-07-23 03:34:31.612 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 29/50, Train Loss: 0.01652963455209787, Val Loss: 0.017005692315953117 +2024-07-23 03:34:39.789 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 30/50, Train Loss: 0.016685014606678282, Val Loss: 0.016947399798248497 +2024-07-23 03:34:48.078 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 31/50, Train Loss: 0.016754874831129765, Val Loss: 0.01688652363206659 +2024-07-23 03:34:56.388 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 32/50, Train Loss: 0.016509115053661937, Val Loss: 0.016498231807989733 +2024-07-23 03:49:08.496 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 33/50, Train Loss: 0.016644550021737814, Val Loss: 0.015745601457144532 +2024-07-23 03:49:08.496 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 03:49:08.496 No tasks are waiting in the queue. +2024-07-23 03:49:08.496 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 03:49:16.242 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 34/50, Train Loss: 0.016648293226614767, Val Loss: 0.01588935756257602 +2024-07-23 03:49:24.058 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 35/50, Train Loss: 0.016588791401992584, Val Loss: 0.016931002054895672 +2024-07-23 03:49:31.817 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 36/50, Train Loss: 0.01665922532650246, Val Loss: 0.01652773552175079 +2024-07-23 03:49:39.696 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 37/50, Train Loss: 0.01659180459448661, Val Loss: 0.01633628098560231 +2024-07-23 03:49:47.553 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 38/50, Train Loss: 0.01661970295632879, Val Loss: 0.015511399480913367 +2024-07-23 03:54:33.560 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 39/50, Train Loss: 0.016707194621150178, Val Loss: 0.01612543226884944 +2024-07-23 03:54:33.560 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 03:54:33.560 No tasks are waiting in the queue. +2024-07-23 03:54:33.560 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 03:54:41.187 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 40/50, Train Loss: 0.016460461327913165, Val Loss: 0.01696093590664012 +2024-07-23 03:54:49.036 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 41/50, Train Loss: 0.016507522947015775, Val Loss: 0.016726997547916005 +2024-07-23 03:54:56.833 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 42/50, Train Loss: 0.016429603790286285, Val Loss: 0.016862371138163974 +2024-07-23 03:55:04.632 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 43/50, Train Loss: 0.016734254257432347, Val Loss: 0.01711514326078551 +2024-07-23 03:55:12.397 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 44/50, Train Loss: 0.016422670008079416, Val Loss: 0.018739175557025842 +2024-07-23 03:55:20.216 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 45/50, Train Loss: 0.016681662070211666, Val Loss: 0.01649114013250385 +2024-07-23 03:55:28.045 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 46/50, Train Loss: 0.01653916309534133, Val Loss: 0.016741055835570607 +2024-07-23 03:55:35.877 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 47/50, Train Loss: 0.01647775880885364, Val Loss: 0.016761843008654458 +2024-07-23 03:55:43.657 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 48/50, Train Loss: 0.01658908410490244, Val Loss: 0.015971159136721067 +2024-07-23 03:55:51.492 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 49/50, Train Loss: 0.016539334704906775, Val Loss: 0.017646801391882554 +2024-07-23 03:55:59.327 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 50/50, Train Loss: 0.016529171368984998, Val Loss: 0.01670178627329213 +2024-07-23 03:55:59.328 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Fold 4, MAPE: 2.26% +2024-07-23 03:55:59.431 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_50001_100000_LSTM//train_f4_bgd_office_50001_100000_LSTM.png +2024-07-23 03:56:03.571 [47/cross_validate_train/485 (pid 52733)] Task finished successfully. +2024-07-23 03:56:03.599 [47/model_scores/486 (pid 57472)] Task is starting. +2024-07-23 03:56:05.009 [47/model_scores/486 (pid 57472)] INFO:__main__:Average Train Loss across all folds: 0.0230325049476864 +2024-07-23 03:56:08.651 [47/model_scores/486 (pid 57472)] INFO:__main__:Average Validation Loss across all folds: 0.0289152954146266 +2024-07-23 03:56:08.651 [47/model_scores/486 (pid 57472)] INFO:__main__:Average MAPE across all folds: 3.01% +2024-07-23 03:56:08.652 [47/model_scores/486 (pid 57472)] Task finished successfully. +2024-07-23 03:56:08.681 [47/validate_model/487 (pid 57503)] Task is starting. +2024-07-23 03:56:10.065 [47/validate_model/487 (pid 57503)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 03:56:10.776 [47/validate_model/487 (pid 57503)] INFO:__main__:Test Set MAPE: 3.88% +2024-07-23 03:56:11.135 [47/validate_model/487 (pid 57503)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_office_50001_100000_LSTM//test_bgd_office_50001_100000_LSTM.png +2024-07-23 03:56:11.572 [47/validate_model/487 (pid 57503)] Task finished successfully. +2024-07-23 03:56:11.602 [47/log_model/488 (pid 57518)] Task is starting. +2024-07-23 03:56:12.989 [47/log_model/488 (pid 57518)] INFO:__main__:Logging model bgd_office_50001_100000_LSTM +2024-07-23 03:56:12.990 [47/log_model/488 (pid 57518)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_office_50001_100000_LSTM//bgd_office_50001_100000_LSTM.pth +2024-07-23 03:56:16.680 [47/log_model/488 (pid 57518)] Task finished successfully. +2024-07-23 03:56:16.709 [47/end/489 (pid 57551)] Task is starting. +2024-07-23 03:56:18.092 [47/end/489 (pid 57551)] INFO:__main__:Pipeline end. +2024-07-23 03:56:18.395 [47/end/489 (pid 57551)] Task finished successfully. +2024-07-23 03:56:18.396 Done! +✅ Run('BGD_LinearFlow/47') succeeded: +-- stdout -- +2024-07-23 02:45:00.033 Workflow starting (run-id 47): +2024-07-23 02:45:00.107 [47/start/477 (pid 52592)] Task is starting. +2024-07-23 02:45:01.491 [47/start/477 (pid 52592)] INFO:__main__:Starting BGD linear flow.. +2024-07-23 02:45:01.769 [47/start/477 (pid 52592)] Task finished successfully. +2024-07-23 02:45:01.798 [47/ingest/478 (pid 52603)] Task is starting. +2024-07-23 02:45:03.194 [47/ingest/478 (pid 52603)] INFO:__main__:Fetching dataframe.. +2024-07-23 02:45:03.210 [47/ingest/478 (pid 52603)] INFO:__main__:Dataframe fetching complete.. +2024-07-23 02:45:06.851 [47/ingest/478 (pid 52603)] Task finished successfully. +2024-07-23 02:45:06.879 [47/pick_2017_data/479 (pid 52635)] Task is starting. +2024-07-23 02:45:08.247 [47/pick_2017_data/479 (pid 52635)] INFO:__main__:Picking 2017 data.. +2024-07-23 02:45:08.545 [47/pick_2017_data/479 (pid 52635)] Task finished successfully. +2024-07-23 02:45:08.575 [47/fill_missing_data/480 (pid 52641)] Task is starting. +2024-07-23 02:45:09.964 [47/fill_missing_data/480 (pid 52641)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-23 02:45:09.970 [47/fill_missing_data/480 (pid 52641)] INFO:__main__:NaN counts per column: +2024-07-23 02:45:09.970 [47/fill_missing_data/480 (pid 52641)] INFO:__main__:Panther_office_Garth 11 +2024-07-23 02:45:09.970 [47/fill_missing_data/480 (pid 52641)] Fox_office_Vicki 3 +2024-07-23 02:45:09.970 [47/fill_missing_data/480 (pid 52641)] Fox_office_Joy 1 +2024-07-23 02:45:09.970 [47/fill_missing_data/480 (pid 52641)] Cockatoo_office_Margaret 112 +2024-07-23 02:45:09.970 [47/fill_missing_data/480 (pid 52641)] Cockatoo_office_Ada 359 +2024-07-23 02:45:09.971 [47/fill_missing_data/480 (pid 52641)] dtype: int64 +2024-07-23 02:45:09.971 [47/fill_missing_data/480 (pid 52641)] --- Logging error --- +2024-07-23 02:45:09.971 [47/fill_missing_data/480 (pid 52641)] Traceback (most recent call last): +2024-07-23 02:45:09.971 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] msg = self.format(record) +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] return fmt.format(record) +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] record.message = record.getMessage() +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] msg = msg % self.args +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] TypeError: not all arguments converted during string formatting +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] Call stack: +2024-07-23 02:45:09.972 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] BGD_LinearFlow() +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] cli.main(self) +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] return func(*args, **kwargs) +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] return self.main(*args, **kwargs) +2024-07-23 02:45:10.518 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] rv = self.invoke(ctx) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] return ctx.invoke(self.callback, **ctx.params) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] return callback(*args, **kwargs) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] return f(get_current_context(), *args, **kwargs) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] task.run_step( +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] self._exec_step_function(step_func) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] step_function() +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] self.missing_values = find_nan_counts(self.df) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-23 02:45:10.519 [47/fill_missing_data/480 (pid 52641)] Arguments: (486,) +2024-07-23 02:45:10.520 [47/fill_missing_data/480 (pid 52641)] Task finished successfully. +2024-07-23 02:45:10.548 [47/find_median/481 (pid 52653)] Task is starting. +2024-07-23 02:45:11.933 [47/find_median/481 (pid 52653)] INFO:__main__:Computing and using median.. +2024-07-23 02:45:12.421 [47/find_median/481 (pid 52653)] Task finished successfully. +2024-07-23 02:45:12.448 [47/aggregate_data/482 (pid 52664)] Task is starting. +2024-07-23 02:45:13.836 [47/aggregate_data/482 (pid 52664)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-23 02:45:17.453 [47/aggregate_data/482 (pid 52664)] Task finished successfully. +2024-07-23 02:45:17.482 [47/split_data/483 (pid 52695)] Task is starting. +2024-07-23 02:45:18.867 [47/split_data/483 (pid 52695)] INFO:__main__:Splitting data into test and train... +2024-07-23 02:45:22.480 [47/split_data/483 (pid 52695)] Task finished successfully. +2024-07-23 02:45:22.509 [47/make_x_y/484 (pid 52722)] Task is starting. +2024-07-23 02:45:24.236 [47/make_x_y/484 (pid 52722)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-23 02:45:24.613 [47/make_x_y/484 (pid 52722)] Shape of y_train: (6648, 1) +2024-07-23 02:45:24.613 [47/make_x_y/484 (pid 52722)] Shape of X_test: (1392, 360, 1) +2024-07-23 02:45:24.613 [47/make_x_y/484 (pid 52722)] Shape of y_test: (1392, 1) +2024-07-23 02:45:24.614 [47/make_x_y/484 (pid 52722)] Task finished successfully. +2024-07-23 02:45:24.642 [47/cross_validate_train/485 (pid 52733)] Task is starting. +2024-07-23 02:45:26.021 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Creating bgd_office_50001_100000_LSTM +2024-07-23 02:45:26.022 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Performing cross validation.. +2024-07-23 02:45:28.487 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 1/50, Train Loss: 0.26115653003965106, Val Loss: 0.21686825092349735 +2024-07-23 02:45:30.400 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 2/50, Train Loss: 0.16604788697191647, Val Loss: 0.20608823043959482 +2024-07-23 02:45:32.283 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 3/50, Train Loss: 0.15686888567038945, Val Loss: 0.19746364951133727 +2024-07-23 02:45:34.163 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 4/50, Train Loss: 0.1467161616044385, Val Loss: 0.1909678239907537 +2024-07-23 02:45:36.060 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 5/50, Train Loss: 0.13421776943973132, Val Loss: 0.18153415875775472 +2024-07-23 02:45:37.950 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 6/50, Train Loss: 0.11800254647220884, Val Loss: 0.14783414602279663 +2024-07-23 02:45:39.879 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 7/50, Train Loss: 0.10318521325077329, Val Loss: 0.11804880776575634 +2024-07-23 02:45:41.820 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 8/50, Train Loss: 0.08982695011155946, Val Loss: 0.10249105819634029 +2024-07-23 02:45:43.738 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 9/50, Train Loss: 0.07693612011415618, Val Loss: 0.09674745388329029 +2024-07-23 02:45:45.667 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 10/50, Train Loss: 0.07570268107312066, Val Loss: 0.08928335484649454 +2024-07-23 02:45:47.630 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 11/50, Train Loss: 0.06790149318320411, Val Loss: 0.0931605976074934 +2024-07-23 02:45:49.537 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 12/50, Train Loss: 0.06569433361291885, Val Loss: 0.08703427804367883 +2024-07-23 02:45:51.425 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 13/50, Train Loss: 0.062426710980279104, Val Loss: 0.09008305950888566 +2024-07-23 02:45:53.316 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 14/50, Train Loss: 0.060151691415480206, Val Loss: 0.08407814827348505 +2024-07-23 02:45:55.243 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 15/50, Train Loss: 0.05780451207288674, Val Loss: 0.08401654825678893 +2024-07-23 02:45:57.176 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 16/50, Train Loss: 0.05633734320955617, Val Loss: 0.07993436083197594 +2024-07-23 02:45:59.106 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 17/50, Train Loss: 0.05659387888652938, Val Loss: 0.07966171338089875 +2024-07-23 02:46:01.073 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 18/50, Train Loss: 0.0556842354791505, Val Loss: 0.07899521812796592 +2024-07-23 02:46:03.003 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 19/50, Train Loss: 0.05387340395578316, Val Loss: 0.07723641283810138 +2024-07-23 02:46:04.948 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 20/50, Train Loss: 0.053594059337462696, Val Loss: 0.07558958519782338 +2024-07-23 02:46:06.884 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 21/50, Train Loss: 0.0534615303256682, Val Loss: 0.07536610732121127 +2024-07-23 02:46:08.857 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 22/50, Train Loss: 0.05303630429719176, Val Loss: 0.0747390023299626 +2024-07-23 02:46:10.880 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 23/50, Train Loss: 0.05167746245861053, Val Loss: 0.07256996679518904 +2024-07-23 02:46:12.834 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 24/50, Train Loss: 0.05152905099093914, Val Loss: 0.07327090166509151 +2024-07-23 02:46:14.780 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 25/50, Train Loss: 0.05078479147383145, Val Loss: 0.07089346460998058 +2024-07-23 02:46:16.735 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 26/50, Train Loss: 0.049944632553628514, Val Loss: 0.06859462995614324 +2024-07-23 02:46:18.682 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 27/50, Train Loss: 0.05048726344747203, Val Loss: 0.07111854132797037 +2024-07-23 02:46:20.670 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 28/50, Train Loss: 0.04896777836339814, Val Loss: 0.06701443386929376 +2024-07-23 02:46:22.603 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 29/50, Train Loss: 0.048896306806377, Val Loss: 0.06715906390122005 +2024-07-23 02:46:24.526 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 30/50, Train Loss: 0.048395140841603276, Val Loss: 0.06695195000086512 +2024-07-23 02:46:26.480 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 31/50, Train Loss: 0.04713375536458833, Val Loss: 0.06369285530277662 +2024-07-23 02:46:28.406 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 32/50, Train Loss: 0.04691060861306531, Val Loss: 0.06732689147549016 +2024-07-23 02:46:30.376 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 33/50, Train Loss: 0.04615929467337472, Val Loss: 0.06661780029535294 +2024-07-23 02:46:32.308 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 34/50, Train Loss: 0.04554076104291848, Val Loss: 0.06537375229277781 +2024-07-23 02:46:34.263 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 35/50, Train Loss: 0.0449810978025198, Val Loss: 0.06505272266055856 +2024-07-23 02:46:36.202 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 36/50, Train Loss: 0.04349040522107056, Val Loss: 0.06652715429663658 +2024-07-23 02:46:38.156 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 37/50, Train Loss: 0.04377394238752978, Val Loss: 0.06929348260164261 +2024-07-23 02:46:40.112 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 38/50, Train Loss: 0.04243701600602695, Val Loss: 0.06432813634829862 +2024-07-23 02:46:42.061 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 39/50, Train Loss: 0.04285223281809262, Val Loss: 0.0653841354485069 +2024-07-23 02:46:44.015 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 40/50, Train Loss: 0.0418533907937152, Val Loss: 0.06952769431684698 +2024-07-23 02:46:45.955 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 41/50, Train Loss: 0.04181926128055368, Val Loss: 0.06574484072625637 +2024-07-23 02:46:47.896 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 42/50, Train Loss: 0.041073146728532656, Val Loss: 0.06666670808834689 +2024-07-23 02:46:49.824 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 43/50, Train Loss: 0.03807830198534897, Val Loss: 0.05738479303462165 +2024-07-23 02:46:51.811 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 44/50, Train Loss: 0.039456919474261144, Val Loss: 0.05684926717409066 +2024-07-23 02:46:53.785 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 45/50, Train Loss: 0.039620043975966315, Val Loss: 0.064408631463136 +2024-07-23 02:46:55.775 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 46/50, Train Loss: 0.03770867591457708, Val Loss: 0.058380722999572754 +2024-07-23 02:46:57.748 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 47/50, Train Loss: 0.037326886930635995, Val Loss: 0.05717715732753277 +2024-07-23 02:46:59.703 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 48/50, Train Loss: 0.038040530042988914, Val Loss: 0.061454471200704575 +2024-07-23 02:47:01.700 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 49/50, Train Loss: 0.03711904542786734, Val Loss: 0.055856105046612876 +2024-07-23 02:47:03.673 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 50/50, Train Loss: 0.03750605774777276, Val Loss: 0.05668540272329535 +2024-07-23 02:47:03.674 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Fold 0, MAPE: 4.91% +2024-07-23 02:47:04.028 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_50001_100000_LSTM//train_f0_bgd_office_50001_100000_LSTM.png +2024-07-23 02:47:07.493 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 1/50, Train Loss: 0.030573032423853876, Val Loss: 0.0315312816628388 +2024-07-23 02:47:10.988 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 2/50, Train Loss: 0.028129500948957036, Val Loss: 0.029542749587978635 +2024-07-23 02:47:14.457 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 3/50, Train Loss: 0.028828011559588567, Val Loss: 0.029137214166777475 +2024-07-23 02:47:17.958 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 4/50, Train Loss: 0.02835785656103066, Val Loss: 0.030652561943445886 +2024-07-23 02:47:21.484 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 5/50, Train Loss: 0.027387722861021757, Val Loss: 0.028754553890654018 +2024-07-23 02:47:24.967 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 6/50, Train Loss: 0.027319316393030542, Val Loss: 0.031299424384321484 +2024-07-23 02:47:28.422 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 7/50, Train Loss: 0.027164975979498455, Val Loss: 0.026275477771248137 +2024-07-23 02:47:31.925 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 8/50, Train Loss: 0.027401173247822694, Val Loss: 0.025875769981316157 +2024-07-23 02:47:35.447 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 9/50, Train Loss: 0.026558206589626415, Val Loss: 0.025335963230047907 +2024-07-23 02:47:38.969 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 10/50, Train Loss: 0.02697996465223176, Val Loss: 0.02446043078920671 +2024-07-23 02:47:42.537 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 11/50, Train Loss: 0.02586149639849152, Val Loss: 0.025202612898179464 +2024-07-23 02:47:46.043 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 12/50, Train Loss: 0.02686539183237723, Val Loss: 0.026917286909052304 +2024-07-23 02:47:49.595 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 13/50, Train Loss: 0.024957820373986448, Val Loss: 0.024024000950157644 +2024-07-23 02:49:57.301 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 14/50, Train Loss: 0.025896477779107436, Val Loss: 0.028778783338410514 +2024-07-23 02:50:00.629 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 15/50, Train Loss: 0.02501614716436182, Val Loss: 0.023780786778245654 +2024-07-23 02:50:00.629 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:50:00.629 No tasks are waiting in the queue. +2024-07-23 02:50:00.629 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 02:50:04.011 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 16/50, Train Loss: 0.025501269128705775, Val Loss: 0.024271835439971516 +2024-07-23 02:50:07.327 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 17/50, Train Loss: 0.02548615163458245, Val Loss: 0.0278410513486181 +2024-07-23 02:50:10.730 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 18/50, Train Loss: 0.025724305784595863, Val Loss: 0.026782960258424283 +2024-07-23 02:50:14.230 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 19/50, Train Loss: 0.024882080139858383, Val Loss: 0.02417599391192198 +2024-07-23 02:50:17.637 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 20/50, Train Loss: 0.02499886824350272, Val Loss: 0.023956216153289592 +2024-07-23 02:50:21.015 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 21/50, Train Loss: 0.025338670052587987, Val Loss: 0.02554409195269857 +2024-07-23 02:50:24.442 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 22/50, Train Loss: 0.02593171065673232, Val Loss: 0.02472882332014186 +2024-07-23 02:50:27.900 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 23/50, Train Loss: 0.0248608467169106, Val Loss: 0.024774939034666335 +2024-07-23 02:50:31.274 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 24/50, Train Loss: 0.025197851218815362, Val Loss: 0.025875139076794895 +2024-07-23 02:50:34.673 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 25/50, Train Loss: 0.02443606395806585, Val Loss: 0.025162849468844277 +2024-07-23 02:50:38.064 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 26/50, Train Loss: 0.0259566282587392, Val Loss: 0.02403892491544996 +2024-07-23 02:50:41.479 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 27/50, Train Loss: 0.02487869829471622, Val Loss: 0.02563302144408226 +2024-07-23 02:50:44.894 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 28/50, Train Loss: 0.02439476347395352, Val Loss: 0.024037821617509638 +2024-07-23 02:50:48.319 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 29/50, Train Loss: 0.025261536799371244, Val Loss: 0.025621498695441655 +2024-07-23 02:50:51.710 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 30/50, Train Loss: 0.02511945974880031, Val Loss: 0.025163484205092703 +2024-07-23 02:50:55.136 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 31/50, Train Loss: 0.024539660103619097, Val Loss: 0.024699701422027178 +2024-07-23 02:50:58.603 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 32/50, Train Loss: 0.025072079231696468, Val Loss: 0.024271655029484203 +2024-07-23 02:51:02.040 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 33/50, Train Loss: 0.02445938271869506, Val Loss: 0.022970062254795007 +2024-07-23 02:51:05.444 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 34/50, Train Loss: 0.024708511494100093, Val Loss: 0.024657214911920685 +2024-07-23 02:51:08.871 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 35/50, Train Loss: 0.02475629740261606, Val Loss: 0.023343606905213424 +2024-07-23 02:51:12.245 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 36/50, Train Loss: 0.02501069304666349, Val Loss: 0.024763562796371322 +2024-07-23 02:51:15.661 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 37/50, Train Loss: 0.024782249304865087, Val Loss: 0.025341775534408435 +2024-07-23 02:51:19.064 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 38/50, Train Loss: 0.026078335222389018, Val Loss: 0.02498729715922049 +2024-07-23 02:51:22.452 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 39/50, Train Loss: 0.025025230406650476, Val Loss: 0.02346279661038092 +2024-07-23 02:51:25.853 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 40/50, Train Loss: 0.024547630881092377, Val Loss: 0.022527521369712693 +2024-07-23 02:51:29.260 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 41/50, Train Loss: 0.024546687065490656, Val Loss: 0.023657820134290627 +2024-07-23 02:51:32.623 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 42/50, Train Loss: 0.02449100986123085, Val Loss: 0.023810303370867456 +2024-07-23 02:51:36.080 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 43/50, Train Loss: 0.024555056049887624, Val Loss: 0.023357862500207764 +2024-07-23 02:51:39.530 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 44/50, Train Loss: 0.024346207614455904, Val Loss: 0.024207871753190245 +2024-07-23 02:51:42.963 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 45/50, Train Loss: 0.024208197995488134, Val Loss: 0.022882889583706857 +2024-07-23 02:51:46.436 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 46/50, Train Loss: 0.024334390115525042, Val Loss: 0.02507713357252734 +2024-07-23 02:51:49.957 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 47/50, Train Loss: 0.024157848900982312, Val Loss: 0.023472600935825278 +2024-07-23 02:51:53.421 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 48/50, Train Loss: 0.024487675646586077, Val Loss: 0.02387466606284891 +2024-07-23 02:51:56.911 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 49/50, Train Loss: 0.024188834841230085, Val Loss: 0.02662739333297525 +2024-07-23 02:52:00.403 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 50/50, Train Loss: 0.02402097832943712, Val Loss: 0.026704319779361996 +2024-07-23 02:52:00.404 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Fold 1, MAPE: 2.67% +2024-07-23 02:52:00.520 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_50001_100000_LSTM//train_f1_bgd_office_50001_100000_LSTM.png +2024-07-23 02:55:41.763 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 1/50, Train Loss: 0.02114001855863115, Val Loss: 0.02186042759567499 +2024-07-23 02:55:41.764 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 02:55:41.764 No tasks are waiting in the queue. +2024-07-23 02:55:41.764 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 02:55:46.527 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 2/50, Train Loss: 0.021453135521509327, Val Loss: 0.022419274731406143 +2024-07-23 02:55:51.323 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 3/50, Train Loss: 0.021152597672950763, Val Loss: 0.021038996614515783 +2024-07-23 02:55:56.051 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 4/50, Train Loss: 0.02101516480056139, Val Loss: 0.020025671220251492 +2024-07-23 02:56:01.003 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 5/50, Train Loss: 0.02077968548446034, Val Loss: 0.020810930563935213 +2024-07-23 02:56:05.850 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 6/50, Train Loss: 0.020778537718937375, Val Loss: 0.0221931732658829 +2024-07-23 02:56:10.654 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 7/50, Train Loss: 0.020885199308395386, Val Loss: 0.022201245251510824 +2024-07-23 02:56:15.507 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 8/50, Train Loss: 0.020268312834489804, Val Loss: 0.02051667355533157 +2024-07-23 02:56:20.371 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 9/50, Train Loss: 0.020374982384964824, Val Loss: 0.0220017549980964 +2024-07-23 02:56:25.232 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 10/50, Train Loss: 0.02074489442524142, Val Loss: 0.021134881622024943 +2024-07-23 02:56:30.052 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 11/50, Train Loss: 0.020473155228850935, Val Loss: 0.019707026119743076 +2024-07-23 02:56:34.880 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 12/50, Train Loss: 0.020239833885660537, Val Loss: 0.0195645985858781 +2024-07-23 02:56:39.710 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 13/50, Train Loss: 0.02062036597635597, Val Loss: 0.0211891073467476 +2024-07-23 02:56:44.576 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 14/50, Train Loss: 0.020399384693099328, Val Loss: 0.020572017558983396 +2024-07-23 02:56:49.424 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 15/50, Train Loss: 0.020232073380611837, Val Loss: 0.022745697971965587 +2024-07-23 02:56:54.255 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 16/50, Train Loss: 0.020742654281023603, Val Loss: 0.022386752468134676 +2024-07-23 02:56:59.123 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 17/50, Train Loss: 0.02023637330589386, Val Loss: 0.023073062859475614 +2024-07-23 02:57:03.989 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 18/50, Train Loss: 0.02073736872094182, Val Loss: 0.024897660900439534 +2024-07-23 02:57:08.850 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 19/50, Train Loss: 0.020465951583061654, Val Loss: 0.02536515657390867 +2024-07-23 02:57:13.685 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 20/50, Train Loss: 0.020531388071294013, Val Loss: 0.021135692564504486 +2024-07-23 02:57:18.574 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 21/50, Train Loss: 0.02007666797054788, Val Loss: 0.02171924923147474 +2024-07-23 02:57:23.429 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 22/50, Train Loss: 0.02015774046930556, Val Loss: 0.022235803359321186 +2024-07-23 02:57:28.324 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 23/50, Train Loss: 0.02049482287839055, Val Loss: 0.02201993146112987 +2024-07-23 02:57:33.198 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 24/50, Train Loss: 0.020100948561985906, Val Loss: 0.020440555922687054 +2024-07-23 02:57:38.082 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 25/50, Train Loss: 0.02032019978818985, Val Loss: 0.021120382259999 +2024-07-23 02:57:42.982 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 26/50, Train Loss: 0.0199827032092099, Val Loss: 0.02185614558735064 +2024-07-23 02:57:47.911 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 27/50, Train Loss: 0.020025655448150177, Val Loss: 0.02261511619601931 +2024-07-23 03:04:22.459 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 28/50, Train Loss: 0.02000189630780369, Val Loss: 0.021319180567349705 +2024-07-23 03:04:22.460 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 03:04:22.460 No tasks are waiting in the queue. +2024-07-23 03:04:22.460 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 03:04:27.205 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 29/50, Train Loss: 0.020207495742047634, Val Loss: 0.0221145361661911 +2024-07-23 03:04:32.054 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 30/50, Train Loss: 0.019861571750460334, Val Loss: 0.021054584027401037 +2024-07-23 03:04:36.853 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 31/50, Train Loss: 0.020263597440834228, Val Loss: 0.022921907076878207 +2024-07-23 03:04:41.755 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 32/50, Train Loss: 0.019879786011118155, Val Loss: 0.023001743320907864 +2024-07-23 03:04:46.493 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 33/50, Train Loss: 0.019883064400906172, Val Loss: 0.021193936467170715 +2024-07-23 03:04:51.187 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 34/50, Train Loss: 0.02001812604542535, Val Loss: 0.024304485986275333 +2024-07-23 03:04:56.063 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 35/50, Train Loss: 0.019875147953056373, Val Loss: 0.022838078439235687 +2024-07-23 03:05:00.926 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 36/50, Train Loss: 0.020046939589799598, Val Loss: 0.024241721470441138 +2024-07-23 03:05:05.721 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 37/50, Train Loss: 0.019830494662388586, Val Loss: 0.02167488730379513 +2024-07-23 03:05:10.667 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 38/50, Train Loss: 0.019718733705723517, Val Loss: 0.020509698215339864 +2024-07-23 03:05:15.575 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 39/50, Train Loss: 0.020003047100125022, Val Loss: 0.02316968289336988 +2024-07-23 03:05:20.432 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 40/50, Train Loss: 0.019807208633910004, Val Loss: 0.023481476519789015 +2024-07-23 03:05:25.318 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 41/50, Train Loss: 0.019917096718787573, Val Loss: 0.025345081623111453 +2024-07-23 03:05:30.168 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 42/50, Train Loss: 0.019834593439904544, Val Loss: 0.024531094889555658 +2024-07-23 03:05:35.030 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 43/50, Train Loss: 0.019819709687278822, Val Loss: 0.022700467838772706 +2024-07-23 03:05:39.861 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 44/50, Train Loss: 0.01975586965608482, Val Loss: 0.023383149770753724 +2024-07-23 03:05:44.739 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 45/50, Train Loss: 0.01963248654591063, Val Loss: 0.024267794830458506 +2024-07-23 03:05:49.621 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 46/50, Train Loss: 0.019749089878482316, Val Loss: 0.023531496711075305 +2024-07-23 03:05:54.517 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 47/50, Train Loss: 0.019832911220594093, Val Loss: 0.0263257446033614 +2024-07-23 03:05:59.386 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 48/50, Train Loss: 0.019612604868598282, Val Loss: 0.02440189767096724 +2024-07-23 03:06:04.279 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 49/50, Train Loss: 0.019820963354924552, Val Loss: 0.02437698833112206 +2024-07-23 03:06:09.120 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 50/50, Train Loss: 0.019873640786569852, Val Loss: 0.023437639166201864 +2024-07-23 03:06:09.120 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Fold 2, MAPE: 2.41% +2024-07-23 03:06:09.226 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_50001_100000_LSTM//train_f2_bgd_office_50001_100000_LSTM.png +2024-07-23 03:06:15.586 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 1/50, Train Loss: 0.01813896088157412, Val Loss: 0.021240712782101972 +2024-07-23 03:06:21.912 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 2/50, Train Loss: 0.018106039305277866, Val Loss: 0.020710757640855653 +2024-07-23 03:06:28.209 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 3/50, Train Loss: 0.018159901669664347, Val Loss: 0.02055400474263089 +2024-07-23 03:06:34.597 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 4/50, Train Loss: 0.01806159626370926, Val Loss: 0.02067794789161001 +2024-07-23 03:06:40.889 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 5/50, Train Loss: 0.018044423955164368, Val Loss: 0.02164711555732148 +2024-07-23 03:06:47.261 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 6/50, Train Loss: 0.018029927651283983, Val Loss: 0.020700802627418722 +2024-07-23 03:06:53.657 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 7/50, Train Loss: 0.01809957068708303, Val Loss: 0.02053494754114321 +2024-07-23 03:07:00.120 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 8/50, Train Loss: 0.018163631361969513, Val Loss: 0.020520071658704963 +2024-07-23 03:12:49.220 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 9/50, Train Loss: 0.017940691102751725, Val Loss: 0.02086866849235126 +2024-07-23 03:12:49.220 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 03:12:49.220 No tasks are waiting in the queue. +2024-07-23 03:12:49.220 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 03:12:55.432 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 10/50, Train Loss: 0.018116170305946318, Val Loss: 0.020168852327125415 +2024-07-23 03:13:01.587 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 11/50, Train Loss: 0.017980423059126886, Val Loss: 0.020785116617168697 +2024-07-23 03:13:07.936 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 12/50, Train Loss: 0.018068873430702754, Val Loss: 0.020467088211859975 +2024-07-23 03:13:14.281 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 13/50, Train Loss: 0.017959642438419004, Val Loss: 0.02219041186783995 +2024-07-23 03:13:20.610 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 14/50, Train Loss: 0.01804490220605684, Val Loss: 0.02148833740502596 +2024-07-23 03:13:26.915 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 15/50, Train Loss: 0.017939992362914756, Val Loss: 0.020799584846411433 +2024-07-23 03:13:33.265 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 16/50, Train Loss: 0.018105914843060986, Val Loss: 0.020395987906626292 +2024-07-23 03:13:39.598 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 17/50, Train Loss: 0.01789072115751479, Val Loss: 0.020701164486152786 +2024-07-23 03:13:45.901 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 18/50, Train Loss: 0.017770933201737543, Val Loss: 0.022352538417492594 +2024-07-23 03:13:52.246 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 19/50, Train Loss: 0.01787272792497127, Val Loss: 0.02137654096420322 +2024-07-23 03:13:58.575 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 20/50, Train Loss: 0.01782027664828858, Val Loss: 0.021328603236802985 +2024-07-23 03:14:04.894 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 21/50, Train Loss: 0.018020627443953385, Val Loss: 0.021264835234199253 +2024-07-23 03:14:11.235 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 22/50, Train Loss: 0.01779425014882422, Val Loss: 0.021146366479141372 +2024-07-23 03:14:17.513 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 23/50, Train Loss: 0.01791343833286342, Val Loss: 0.020692764941070762 +2024-07-23 03:14:23.868 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 24/50, Train Loss: 0.017795271816388736, Val Loss: 0.02227798349090985 +2024-07-23 03:14:30.251 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 25/50, Train Loss: 0.017827114525834006, Val Loss: 0.021052026003599168 +2024-07-23 03:14:36.573 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 26/50, Train Loss: 0.01775056973314114, Val Loss: 0.021345297220562186 +2024-07-23 03:14:42.897 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 27/50, Train Loss: 0.017684888784780348, Val Loss: 0.021184476518205233 +2024-07-23 03:14:49.168 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 28/50, Train Loss: 0.01771884412243426, Val Loss: 0.02170197098915066 +2024-07-23 03:14:55.505 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 29/50, Train Loss: 0.017568950936627047, Val Loss: 0.021015785528080803 +2024-07-23 03:25:25.082 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 30/50, Train Loss: 0.017825867371003834, Val Loss: 0.020745064823755197 +2024-07-23 03:25:25.083 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 03:25:25.083 No tasks are waiting in the queue. +2024-07-23 03:25:25.083 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 03:25:31.377 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 31/50, Train Loss: 0.017683952236079055, Val Loss: 0.02114139154021229 +2024-07-23 03:25:37.512 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 32/50, Train Loss: 0.017484858364081212, Val Loss: 0.02174915434526546 +2024-07-23 03:25:43.804 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 33/50, Train Loss: 0.017690854053274332, Val Loss: 0.021168177734528268 +2024-07-23 03:25:50.070 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 34/50, Train Loss: 0.01758330442654572, Val Loss: 0.02098192721605301 +2024-07-23 03:25:56.456 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 35/50, Train Loss: 0.0174540064813529, Val Loss: 0.021651711368135044 +2024-07-23 03:26:02.809 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 36/50, Train Loss: 0.017501512689770553, Val Loss: 0.02071720412267106 +2024-07-23 03:26:09.141 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 37/50, Train Loss: 0.017484304341052075, Val Loss: 0.020870121781315122 +2024-07-23 03:26:15.490 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 38/50, Train Loss: 0.017643757620089347, Val Loss: 0.021809463389217854 +2024-07-23 03:26:21.831 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 39/50, Train Loss: 0.017445629181192933, Val Loss: 0.021034934877284934 +2024-07-23 03:26:28.162 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 40/50, Train Loss: 0.017410990976386792, Val Loss: 0.02142793107777834 +2024-07-23 03:26:34.566 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 41/50, Train Loss: 0.01736438491468807, Val Loss: 0.02115365421133382 +2024-07-23 03:26:40.850 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 42/50, Train Loss: 0.01741671822831142, Val Loss: 0.02171020624893052 +2024-07-23 03:26:47.192 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 43/50, Train Loss: 0.017408269531220842, Val Loss: 0.02150866804378373 +2024-07-23 03:26:53.531 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 44/50, Train Loss: 0.017431565975810557, Val Loss: 0.021510216567133155 +2024-07-23 03:26:59.849 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 45/50, Train Loss: 0.017222877544947238, Val Loss: 0.02166225252939122 +2024-07-23 03:27:06.221 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 46/50, Train Loss: 0.017305494286119938, Val Loss: 0.021259583133671964 +2024-07-23 03:27:12.601 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 47/50, Train Loss: 0.01730744836168538, Val Loss: 0.02123798339494637 +2024-07-23 03:27:18.922 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 48/50, Train Loss: 0.0171398331994097, Val Loss: 0.021085094554083687 +2024-07-23 03:27:25.278 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 49/50, Train Loss: 0.017083563647574657, Val Loss: 0.021939278127891676 +2024-07-23 03:27:31.596 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 50/50, Train Loss: 0.01723267650566727, Val Loss: 0.02104732913098165 +2024-07-23 03:27:31.597 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Fold 3, MAPE: 2.79% +2024-07-23 03:27:31.696 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_50001_100000_LSTM//train_f3_bgd_office_50001_100000_LSTM.png +2024-07-23 03:30:51.863 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 1/50, Train Loss: 0.017250558580860668, Val Loss: 0.01810719333589077 +2024-07-23 03:30:51.863 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 03:30:51.863 No tasks are waiting in the queue. +2024-07-23 03:30:51.863 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 03:30:59.649 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 2/50, Train Loss: 0.017267767698557555, Val Loss: 0.01827637981623411 +2024-07-23 03:31:07.248 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 3/50, Train Loss: 0.017166719846855635, Val Loss: 0.01753814100686993 +2024-07-23 03:31:15.000 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 4/50, Train Loss: 0.017168142254753358, Val Loss: 0.01695390913103308 +2024-07-23 03:31:22.774 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 5/50, Train Loss: 0.01708722286375946, Val Loss: 0.017158063873648644 +2024-07-23 03:31:30.639 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 6/50, Train Loss: 0.017025737359520347, Val Loss: 0.017111002068434442 +2024-07-23 03:31:38.425 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 7/50, Train Loss: 0.017070924392205544, Val Loss: 0.017369129615170616 +2024-07-23 03:31:46.200 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 8/50, Train Loss: 0.01697920217853168, Val Loss: 0.016801105732364315 +2024-07-23 03:31:54.034 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 9/50, Train Loss: 0.01680029110833146, Val Loss: 0.017291910919759956 +2024-07-23 03:32:01.812 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 10/50, Train Loss: 0.016924555531178397, Val Loss: 0.016411808425826686 +2024-07-23 03:32:09.619 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 11/50, Train Loss: 0.017118385302480953, Val Loss: 0.016554347611963748 +2024-07-23 03:32:17.364 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 12/50, Train Loss: 0.01688203116579131, Val Loss: 0.015922720517430988 +2024-07-23 03:32:25.163 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 13/50, Train Loss: 0.016991527633334714, Val Loss: 0.017734763425375735 +2024-07-23 03:32:32.965 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 14/50, Train Loss: 0.0169725244297464, Val Loss: 0.016429382748901843 +2024-07-23 03:32:40.836 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 15/50, Train Loss: 0.016896102711258607, Val Loss: 0.016534090973436832 +2024-07-23 03:32:48.645 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 16/50, Train Loss: 0.016922312740493436, Val Loss: 0.016114837117493154 +2024-07-23 03:32:56.424 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 17/50, Train Loss: 0.01688349644128961, Val Loss: 0.017071316497666494 +2024-07-23 03:33:04.235 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 18/50, Train Loss: 0.016792991300295483, Val Loss: 0.01601519337190049 +2024-07-23 03:33:11.910 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 19/50, Train Loss: 0.016749523644303453, Val Loss: 0.016865513154438565 +2024-07-23 03:33:19.648 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 20/50, Train Loss: 0.01665893402592889, Val Loss: 0.01595090444066695 +2024-07-23 03:33:27.376 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 21/50, Train Loss: 0.01663284924352306, Val Loss: 0.016399918656264032 +2024-07-23 03:33:35.270 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 22/50, Train Loss: 0.016847792798760294, Val Loss: 0.01610460997159992 +2024-07-23 03:33:43.227 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 23/50, Train Loss: 0.01678010060227123, Val Loss: 0.01655074187687465 +2024-07-23 03:33:51.288 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 24/50, Train Loss: 0.01678072588368394, Val Loss: 0.016655549327177662 +2024-07-23 03:33:59.326 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 25/50, Train Loss: 0.016690047928827934, Val Loss: 0.01617513338902167 +2024-07-23 03:34:07.371 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 26/50, Train Loss: 0.01669009317825923, Val Loss: 0.016061814262398652 +2024-07-23 03:34:15.414 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 27/50, Train Loss: 0.016864622097419596, Val Loss: 0.016363800609750408 +2024-07-23 03:34:23.517 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 28/50, Train Loss: 0.016565974726844793, Val Loss: 0.01641528888472489 +2024-07-23 03:34:31.612 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 29/50, Train Loss: 0.01652963455209787, Val Loss: 0.017005692315953117 +2024-07-23 03:34:39.789 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 30/50, Train Loss: 0.016685014606678282, Val Loss: 0.016947399798248497 +2024-07-23 03:34:48.078 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 31/50, Train Loss: 0.016754874831129765, Val Loss: 0.01688652363206659 +2024-07-23 03:34:56.388 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 32/50, Train Loss: 0.016509115053661937, Val Loss: 0.016498231807989733 +2024-07-23 03:49:08.496 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 33/50, Train Loss: 0.016644550021737814, Val Loss: 0.015745601457144532 +2024-07-23 03:49:08.496 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 03:49:08.496 No tasks are waiting in the queue. +2024-07-23 03:49:08.496 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 03:49:16.242 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 34/50, Train Loss: 0.016648293226614767, Val Loss: 0.01588935756257602 +2024-07-23 03:49:24.058 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 35/50, Train Loss: 0.016588791401992584, Val Loss: 0.016931002054895672 +2024-07-23 03:49:31.817 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 36/50, Train Loss: 0.01665922532650246, Val Loss: 0.01652773552175079 +2024-07-23 03:49:39.696 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 37/50, Train Loss: 0.01659180459448661, Val Loss: 0.01633628098560231 +2024-07-23 03:49:47.553 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 38/50, Train Loss: 0.01661970295632879, Val Loss: 0.015511399480913367 +2024-07-23 03:54:33.560 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 39/50, Train Loss: 0.016707194621150178, Val Loss: 0.01612543226884944 +2024-07-23 03:54:33.560 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-23 03:54:33.560 No tasks are waiting in the queue. +2024-07-23 03:54:33.560 4 steps have not started: validate_model, end, model_scores, log_model. +2024-07-23 03:54:41.187 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 40/50, Train Loss: 0.016460461327913165, Val Loss: 0.01696093590664012 +2024-07-23 03:54:49.036 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 41/50, Train Loss: 0.016507522947015775, Val Loss: 0.016726997547916005 +2024-07-23 03:54:56.833 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 42/50, Train Loss: 0.016429603790286285, Val Loss: 0.016862371138163974 +2024-07-23 03:55:04.632 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 43/50, Train Loss: 0.016734254257432347, Val Loss: 0.01711514326078551 +2024-07-23 03:55:12.397 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 44/50, Train Loss: 0.016422670008079416, Val Loss: 0.018739175557025842 +2024-07-23 03:55:20.216 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 45/50, Train Loss: 0.016681662070211666, Val Loss: 0.01649114013250385 +2024-07-23 03:55:28.045 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 46/50, Train Loss: 0.01653916309534133, Val Loss: 0.016741055835570607 +2024-07-23 03:55:35.877 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 47/50, Train Loss: 0.01647775880885364, Val Loss: 0.016761843008654458 +2024-07-23 03:55:43.657 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 48/50, Train Loss: 0.01658908410490244, Val Loss: 0.015971159136721067 +2024-07-23 03:55:51.492 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 49/50, Train Loss: 0.016539334704906775, Val Loss: 0.017646801391882554 +2024-07-23 03:55:59.327 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Epoch 50/50, Train Loss: 0.016529171368984998, Val Loss: 0.01670178627329213 +2024-07-23 03:55:59.328 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Fold 4, MAPE: 2.26% +2024-07-23 03:55:59.431 [47/cross_validate_train/485 (pid 52733)] INFO:__main__:Training image saved at metaflow_models_360hrs//bgd_office_50001_100000_LSTM//train_f4_bgd_office_50001_100000_LSTM.png +2024-07-23 03:56:03.571 [47/cross_validate_train/485 (pid 52733)] Task finished successfully. +2024-07-23 03:56:03.599 [47/model_scores/486 (pid 57472)] Task is starting. +2024-07-23 03:56:05.009 [47/model_scores/486 (pid 57472)] INFO:__main__:Average Train Loss across all folds: 0.0230325049476864 +2024-07-23 03:56:08.651 [47/model_scores/486 (pid 57472)] INFO:__main__:Average Validation Loss across all folds: 0.0289152954146266 +2024-07-23 03:56:08.651 [47/model_scores/486 (pid 57472)] INFO:__main__:Average MAPE across all folds: 3.01% +2024-07-23 03:56:08.652 [47/model_scores/486 (pid 57472)] Task finished successfully. +2024-07-23 03:56:08.681 [47/validate_model/487 (pid 57503)] Task is starting. +2024-07-23 03:56:10.065 [47/validate_model/487 (pid 57503)] INFO:__main__:Validating LSTM on test set.. +2024-07-23 03:56:10.776 [47/validate_model/487 (pid 57503)] INFO:__main__:Test Set MAPE: 3.88% +2024-07-23 03:56:11.135 [47/validate_model/487 (pid 57503)] INFO:__main__:Test image saved at metaflow_models_360hrs//bgd_office_50001_100000_LSTM//test_bgd_office_50001_100000_LSTM.png +2024-07-23 03:56:11.572 [47/validate_model/487 (pid 57503)] Task finished successfully. +2024-07-23 03:56:11.602 [47/log_model/488 (pid 57518)] Task is starting. +2024-07-23 03:56:12.989 [47/log_model/488 (pid 57518)] INFO:__main__:Logging model bgd_office_50001_100000_LSTM +2024-07-23 03:56:12.990 [47/log_model/488 (pid 57518)] INFO:__main__:Model logged at metaflow_models_360hrs//bgd_office_50001_100000_LSTM//bgd_office_50001_100000_LSTM.pth +2024-07-23 03:56:16.680 [47/log_model/488 (pid 57518)] Task finished successfully. +2024-07-23 03:56:16.709 [47/end/489 (pid 57551)] Task is starting. +2024-07-23 03:56:18.092 [47/end/489 (pid 57551)] INFO:__main__:Pipeline end. +2024-07-23 03:56:18.395 [47/end/489 (pid 57551)] Task finished successfully. +2024-07-23 03:56:18.396 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/scaler_bgd_office_50001_100000_LSTM.pkl b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/scaler_bgd_office_50001_100000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..2d3cfb1ed78e3f6896be0ed05994a056003c4b05 --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/scaler_bgd_office_50001_100000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a196f1eea59769a1eee6a8eb0265fac94e6308474759d34d0e973747b35f707a +size 557 diff --git a/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/test_bgd_office_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/test_bgd_office_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..3129f762d0e76702772733aeae991bfc41d05484 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/test_bgd_office_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f0_bgd_office_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f0_bgd_office_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..e74fe2c9e6ae669cdd1c8e9c507d89967a2d64cb Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f0_bgd_office_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f1_bgd_office_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f1_bgd_office_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..8abea10cc8ffa93e286aec25aeb114d51bbb063b Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f1_bgd_office_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f2_bgd_office_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f2_bgd_office_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..36b52ce2ab280eb69678b28af1481469988a10da Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f2_bgd_office_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f3_bgd_office_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f3_bgd_office_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..801d8b49fd4a31bbbe1d5e780676da3d209072be Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f3_bgd_office_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f4_bgd_office_50001_100000_LSTM.png b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f4_bgd_office_50001_100000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..c76d783174bbee9e0597ed077618138f854ea249 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_50001_100000_LSTM/train_f4_bgd_office_50001_100000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/bgd_office_5001_10000_LSTM.pth b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/bgd_office_5001_10000_LSTM.pth new file mode 100644 index 0000000000000000000000000000000000000000..fd798156ccce5c53f1a4f067affa20a52ff7a966 --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/bgd_office_5001_10000_LSTM.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a945205556c0b696dc0f29c81bbddefa49c95740a62adfec853549b1ed86c374 +size 46726 diff --git a/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/output.txt b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2798d6ed44778585814f1725059559a2e57d3da --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/output.txt @@ -0,0 +1,753 @@ +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! +2024-07-22 21:14:41.793 Workflow starting (run-id 24): +2024-07-22 21:14:41.927 [24/start/287 (pid 69708)] Task is starting. +2024-07-22 21:14:44.046 [24/start/287 (pid 69708)] INFO:__main__:Starting BGD linear flow.. +2024-07-22 21:14:44.501 [24/start/287 (pid 69708)] Task finished successfully. +2024-07-22 21:14:44.542 [24/ingest/288 (pid 69738)] Task is starting. +2024-07-22 21:14:46.527 [24/ingest/288 (pid 69738)] INFO:__main__:Fetching dataframe.. +2024-07-22 21:14:46.546 [24/ingest/288 (pid 69738)] INFO:__main__:Dataframe fetching complete.. +2024-07-22 21:14:51.561 [24/ingest/288 (pid 69738)] Task finished successfully. +2024-07-22 21:14:51.603 [24/pick_2017_data/289 (pid 69809)] Task is starting. +2024-07-22 21:14:53.526 [24/pick_2017_data/289 (pid 69809)] INFO:__main__:Picking 2017 data.. +2024-07-22 21:14:53.896 [24/pick_2017_data/289 (pid 69809)] Task finished successfully. +2024-07-22 21:14:53.931 [24/fill_missing_data/290 (pid 69835)] Task is starting. +2024-07-22 21:14:55.864 [24/fill_missing_data/290 (pid 69835)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-22 21:14:55.870 [24/fill_missing_data/290 (pid 69835)] INFO:__main__:NaN counts per column: +2024-07-22 21:14:55.871 [24/fill_missing_data/290 (pid 69835)] INFO:__main__:Panther_office_Jeane 11 +2024-07-22 21:14:55.871 [24/fill_missing_data/290 (pid 69835)] Fox_office_Molly 14 +2024-07-22 21:14:55.871 [24/fill_missing_data/290 (pid 69835)] dtype: int64 +2024-07-22 21:14:55.871 [24/fill_missing_data/290 (pid 69835)] --- Logging error --- +2024-07-22 21:14:55.872 [24/fill_missing_data/290 (pid 69835)] Traceback (most recent call last): +2024-07-22 21:14:55.872 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] msg = self.format(record) +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] return fmt.format(record) +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] record.message = record.getMessage() +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] msg = msg % self.args +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] TypeError: not all arguments converted during string formatting +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] Call stack: +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-22 21:14:56.270 [24/fill_missing_data/290 (pid 69835)] BGD_LinearFlow() +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] cli.main(self) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] return func(*args, **kwargs) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] return self.main(*args, **kwargs) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] rv = self.invoke(ctx) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] return ctx.invoke(self.callback, **ctx.params) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] return callback(*args, **kwargs) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] return f(get_current_context(), *args, **kwargs) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] task.run_step( +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] self._exec_step_function(step_func) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] step_function() +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-22 21:14:56.272 [24/fill_missing_data/290 (pid 69835)] self.missing_values = find_nan_counts(self.df) +2024-07-22 21:14:56.272 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-22 21:14:56.272 [24/fill_missing_data/290 (pid 69835)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-22 21:14:56.272 [24/fill_missing_data/290 (pid 69835)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-22 21:14:56.272 [24/fill_missing_data/290 (pid 69835)] Arguments: (25,) +2024-07-22 21:14:56.273 [24/fill_missing_data/290 (pid 69835)] Task finished successfully. +2024-07-22 21:14:56.305 [24/find_median/291 (pid 69853)] Task is starting. +2024-07-22 21:14:58.279 [24/find_median/291 (pid 69853)] INFO:__main__:Computing and using median.. +2024-07-22 21:14:58.908 [24/find_median/291 (pid 69853)] Task finished successfully. +2024-07-22 21:14:58.941 [24/aggregate_data/292 (pid 69881)] Task is starting. +2024-07-22 21:15:00.804 [24/aggregate_data/292 (pid 69881)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-22 21:15:05.937 [24/aggregate_data/292 (pid 69881)] Task finished successfully. +2024-07-22 21:15:05.982 [24/split_data/293 (pid 69941)] Task is starting. +2024-07-22 21:15:07.864 [24/split_data/293 (pid 69941)] INFO:__main__:Splitting data into test and train... +2024-07-22 21:15:12.931 [24/split_data/293 (pid 69941)] Task finished successfully. +2024-07-22 21:15:12.970 [24/make_x_y/294 (pid 70002)] Task is starting. +2024-07-22 21:15:15.307 [24/make_x_y/294 (pid 70002)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-22 21:15:15.784 [24/make_x_y/294 (pid 70002)] Shape of y_train: (6648, 1) +2024-07-22 21:15:15.785 [24/make_x_y/294 (pid 70002)] Shape of X_test: (1392, 360, 1) +2024-07-22 21:15:15.785 [24/make_x_y/294 (pid 70002)] Shape of y_test: (1392, 1) +2024-07-22 21:15:15.786 [24/make_x_y/294 (pid 70002)] Task finished successfully. +2024-07-22 21:15:15.825 [24/cross_validate_train/295 (pid 70020)] Task is starting. +2024-07-22 21:15:17.703 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Creating bgd_office_5001_10000_LSTM +2024-07-22 21:15:17.706 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Performing cross validation.. +2024-07-22 21:15:20.852 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 1/50, Train Loss: 0.21204832643270494, Val Loss: 0.18573803710086004 +2024-07-22 21:15:23.104 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 2/50, Train Loss: 0.1536619035261018, Val Loss: 0.1718474805355072 +2024-07-22 21:15:25.327 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 3/50, Train Loss: 0.14412708346332823, Val Loss: 0.15620411134191922 +2024-07-22 21:15:27.643 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 4/50, Train Loss: 0.1301006772688457, Val Loss: 0.1369585492249046 +2024-07-22 21:15:29.905 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 5/50, Train Loss: 0.1139625646173954, Val Loss: 0.11327418466763838 +2024-07-22 21:15:32.148 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 6/50, Train Loss: 0.09742647888404983, Val Loss: 0.09293906124574798 +2024-07-22 21:15:34.453 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 7/50, Train Loss: 0.08954078565750803, Val Loss: 0.08512212000787259 +2024-07-22 21:15:36.730 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 8/50, Train Loss: 0.08306814166052001, Val Loss: 0.08075674974492618 +2024-07-22 21:15:38.984 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 9/50, Train Loss: 0.07882470834468092, Val Loss: 0.07959449488137449 +2024-07-22 21:15:41.248 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 10/50, Train Loss: 0.07605923414230346, Val Loss: 0.07489725026701177 +2024-07-22 21:15:43.511 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 11/50, Train Loss: 0.07338511028460094, Val Loss: 0.0721992174429553 +2024-07-22 21:15:45.771 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 12/50, Train Loss: 0.07134808152914048, Val Loss: 0.06988161222210952 +2024-07-22 21:15:48.073 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 13/50, Train Loss: 0.06976037477808339, Val Loss: 0.0686310691492898 +2024-07-22 21:15:50.717 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 14/50, Train Loss: 0.06945816650986672, Val Loss: 0.06791913956403732 +2024-07-22 21:15:53.001 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 15/50, Train Loss: 0.06831391326018742, Val Loss: 0.06808338601674352 +2024-07-22 21:15:55.134 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 16/50, Train Loss: 0.068651414715818, Val Loss: 0.06737127186996596 +2024-07-22 21:15:57.127 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 17/50, Train Loss: 0.06846380861742156, Val Loss: 0.06576045049088342 +2024-07-22 21:15:59.155 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 18/50, Train Loss: 0.06733113303780555, Val Loss: 0.06536104157567024 +2024-07-22 21:16:01.135 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 19/50, Train Loss: 0.06721731834113598, Val Loss: 0.06497133470007352 +2024-07-22 21:16:03.244 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 20/50, Train Loss: 0.0673837206193379, Val Loss: 0.06485607868858746 +2024-07-22 21:16:05.252 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 21/50, Train Loss: 0.06761745709393706, Val Loss: 0.06502541782600539 +2024-07-22 21:16:07.209 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 22/50, Train Loss: 0.06666209772229195, Val Loss: 0.06458201466926507 +2024-07-22 21:16:09.160 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 23/50, Train Loss: 0.0664617228188685, Val Loss: 0.06441473098737853 +2024-07-22 21:16:11.095 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 24/50, Train Loss: 0.06639807586159024, Val Loss: 0.06427594545696463 +2024-07-22 21:16:13.020 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 25/50, Train Loss: 0.06647903929863658, Val Loss: 0.06437552635158811 +2024-07-22 21:16:14.948 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 26/50, Train Loss: 0.06590219603053162, Val Loss: 0.06398528824959482 +2024-07-22 21:16:16.879 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 27/50, Train Loss: 0.06626963493015085, Val Loss: 0.06404861749282904 +2024-07-22 21:16:18.863 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 28/50, Train Loss: 0.06592682291354451, Val Loss: 0.06387560117457594 +2024-07-22 21:16:20.799 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 29/50, Train Loss: 0.0661049391009978, Val Loss: 0.06383808281804834 +2024-07-22 21:16:22.739 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 30/50, Train Loss: 0.06571660983775343, Val Loss: 0.06376763566264085 +2024-07-22 21:16:24.668 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 31/50, Train Loss: 0.06575286878006799, Val Loss: 0.0637130994349718 +2024-07-22 21:16:26.617 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 32/50, Train Loss: 0.06586761905678681, Val Loss: 0.06373894086905889 +2024-07-22 21:16:28.540 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 33/50, Train Loss: 0.06572852033589567, Val Loss: 0.06359983810356686 +2024-07-22 21:16:30.489 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 34/50, Train Loss: 0.06570370330342225, Val Loss: 0.0636145329368966 +2024-07-22 21:16:32.453 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 35/50, Train Loss: 0.06578129157423973, Val Loss: 0.06353800307427133 +2024-07-22 21:16:34.417 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 36/50, Train Loss: 0.06552605064851898, Val Loss: 0.06351765250521046 +2024-07-22 21:16:36.365 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 37/50, Train Loss: 0.06563243669058595, Val Loss: 0.0634981604559081 +2024-07-22 21:16:38.291 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 38/50, Train Loss: 0.06566629308675016, Val Loss: 0.06347392967769078 +2024-07-22 21:16:40.247 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 39/50, Train Loss: 0.065536722860166, Val Loss: 0.06348510751766819 +2024-07-22 21:16:42.206 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 40/50, Train Loss: 0.06566953063011169, Val Loss: 0.06343817391565867 +2024-07-22 21:16:44.150 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 41/50, Train Loss: 0.06561222768255642, Val Loss: 0.06339973541242735 +2024-07-22 21:16:46.109 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 42/50, Train Loss: 0.06552948797387737, Val Loss: 0.0633318334285702 +2024-07-22 21:16:48.063 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 43/50, Train Loss: 0.06519512528819697, Val Loss: 0.06327263505331107 +2024-07-22 21:16:49.997 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 44/50, Train Loss: 0.06544005157692091, Val Loss: 0.06319163122347422 +2024-07-22 21:16:51.970 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 45/50, Train Loss: 0.06515484819454806, Val Loss: 0.06308014770703656 +2024-07-22 21:16:53.918 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 46/50, Train Loss: 0.06508645729294844, Val Loss: 0.06294748293501991 +2024-07-22 21:16:55.880 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 47/50, Train Loss: 0.06509517622845513, Val Loss: 0.06278636306524277 +2024-07-22 21:16:57.835 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 48/50, Train Loss: 0.06517854662878173, Val Loss: 0.06264215079801423 +2024-07-22 21:16:59.814 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 49/50, Train Loss: 0.06555416413715907, Val Loss: 0.06255767332123859 +2024-07-22 21:17:01.775 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 50/50, Train Loss: 0.06468443146773747, Val Loss: 0.061688517672675 +2024-07-22 21:17:01.776 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Fold 0, MAPE: 12.19% +2024-07-22 21:17:02.217 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Training image saved at metaflow_models_360hrs/bgd_office_5001_10000_LSTM//train_f0_bgd_office_5001_10000_LSTM.png +2024-07-22 21:17:05.784 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 1/50, Train Loss: 0.05904881757284914, Val Loss: 0.08717406823166779 +2024-07-22 21:17:09.233 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 2/50, Train Loss: 0.05801680593618325, Val Loss: 0.08731790658618722 +2024-07-22 21:17:12.706 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 3/50, Train Loss: 0.05806503106973001, Val Loss: 0.08448839054575988 +2024-07-22 21:17:16.138 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 4/50, Train Loss: 0.05782133795853172, Val Loss: 0.08572528873171126 +2024-07-22 21:17:19.578 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 5/50, Train Loss: 0.05779662965131657, Val Loss: 0.08557664368833814 +2024-07-22 21:17:23.272 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 6/50, Train Loss: 0.05779610781797341, Val Loss: 0.0813650416476386 +2024-07-22 21:17:26.796 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 7/50, Train Loss: 0.05788484045437404, Val Loss: 0.088159727198737 +2024-07-22 21:17:30.280 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 8/50, Train Loss: 0.05776482054165431, Val Loss: 0.08322746945278985 +2024-07-22 21:17:33.765 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 9/50, Train Loss: 0.057951209002307484, Val Loss: 0.08548341925655092 +2024-07-22 21:17:37.236 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 10/50, Train Loss: 0.057823913916945455, Val Loss: 0.08373568393290043 +2024-07-22 21:17:40.820 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 11/50, Train Loss: 0.057724330334791116, Val Loss: 0.08271261251398496 +2024-07-22 21:17:44.285 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 12/50, Train Loss: 0.05752236374786922, Val Loss: 0.0835339472762176 +2024-07-22 21:17:47.815 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 13/50, Train Loss: 0.05725645124912262, Val Loss: 0.08561028172927243 +2024-07-22 21:17:51.290 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 14/50, Train Loss: 0.05741990472057036, Val Loss: 0.08533379627125603 +2024-07-22 21:17:54.789 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 15/50, Train Loss: 0.05708405271704708, Val Loss: 0.08528265718902861 +2024-07-22 21:17:58.228 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 16/50, Train Loss: 0.05720131801707404, Val Loss: 0.0847004338566746 +2024-07-22 21:18:01.688 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 17/50, Train Loss: 0.0572180895666991, Val Loss: 0.08196129649877548 +2024-07-22 21:18:05.165 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 18/50, Train Loss: 0.05720685896064554, Val Loss: 0.08654635612453733 +2024-07-22 21:18:08.605 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 19/50, Train Loss: 0.05701704240803208, Val Loss: 0.08495418088776725 +2024-07-22 21:18:12.085 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 20/50, Train Loss: 0.057059603982738086, Val Loss: 0.08422928154468537 +2024-07-22 21:18:15.599 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 21/50, Train Loss: 0.057023335860243864, Val Loss: 0.08635653715048518 +2024-07-22 21:18:19.143 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 22/50, Train Loss: 0.05714378753410918, Val Loss: 0.08452321562383856 +2024-07-22 21:18:22.671 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 23/50, Train Loss: 0.05702100023627281, Val Loss: 0.08531781264713832 +2024-07-22 21:18:26.158 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 24/50, Train Loss: 0.05685728083231619, Val Loss: 0.08410463173474585 +2024-07-22 21:18:29.712 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 25/50, Train Loss: 0.05711891629866191, Val Loss: 0.08270229851560933 +2024-07-22 21:18:33.280 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 26/50, Train Loss: 0.056740100628563335, Val Loss: 0.08410720681505544 +2024-07-22 21:18:36.776 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 27/50, Train Loss: 0.05695025556321655, Val Loss: 0.08220777703183038 +2024-07-22 21:18:40.258 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 28/50, Train Loss: 0.05667515115014144, Val Loss: 0.08364311100116797 +2024-07-22 21:18:43.850 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 29/50, Train Loss: 0.05675612238368818, Val Loss: 0.08462696895003319 +2024-07-22 21:18:47.348 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 30/50, Train Loss: 0.05675140688461917, Val Loss: 0.08518938762801034 +2024-07-22 21:18:50.851 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 31/50, Train Loss: 0.05695346694971834, Val Loss: 0.08209036253392696 +2024-07-22 21:18:54.369 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 32/50, Train Loss: 0.056509762709694246, Val Loss: 0.0825766287211861 +2024-07-22 21:18:57.887 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 33/50, Train Loss: 0.057140826247632504, Val Loss: 0.0868781148322991 +2024-07-22 21:19:01.358 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 34/50, Train Loss: 0.05673892442137003, Val Loss: 0.08040333241224289 +2024-07-22 21:19:04.967 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 35/50, Train Loss: 0.05651531735701221, Val Loss: 0.08292550625545637 +2024-07-22 21:19:08.476 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 36/50, Train Loss: 0.05642014337437493, Val Loss: 0.08821159526705742 +2024-07-22 21:19:11.969 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 37/50, Train Loss: 0.056488244448389326, Val Loss: 0.08227078872067588 +2024-07-22 21:19:15.472 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 38/50, Train Loss: 0.0562927176377603, Val Loss: 0.08077514842152596 +2024-07-22 21:19:18.991 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 39/50, Train Loss: 0.056526904366910456, Val Loss: 0.08330102935433388 +2024-07-22 21:19:22.514 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 40/50, Train Loss: 0.05650646785008056, Val Loss: 0.08000868463090488 +2024-07-22 21:19:26.024 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 41/50, Train Loss: 0.055795188381203585, Val Loss: 0.07657380290329456 +2024-07-22 21:19:29.575 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 42/50, Train Loss: 0.05553419052490166, Val Loss: 0.08067245451467378 +2024-07-22 21:19:33.114 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 43/50, Train Loss: 0.056068322940596514, Val Loss: 0.08498746433428356 +2024-07-22 21:19:36.625 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 44/50, Train Loss: 0.05572708451322147, Val Loss: 0.07859595024159977 +2024-07-22 21:19:40.143 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 45/50, Train Loss: 0.05633003163550581, Val Loss: 0.07791066249566418 +2024-07-22 21:19:43.680 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 46/50, Train Loss: 0.05635946427604982, Val Loss: 0.08277715045426573 +2024-07-22 21:19:43.680 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 21:19:43.680 No tasks are waiting in the queue. +2024-07-22 21:19:43.680 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 21:19:47.238 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 47/50, Train Loss: 0.05595862402447632, Val Loss: 0.07815189766032356 +2024-07-22 21:19:50.784 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 48/50, Train Loss: 0.05608382306194731, Val Loss: 0.08016963292445456 +2024-07-22 21:19:54.313 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 49/50, Train Loss: 0.055445672278957706, Val Loss: 0.07830748983791896 +2024-07-22 21:19:57.841 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 50/50, Train Loss: 0.05540058804409845, Val Loss: 0.07984362031732287 +2024-07-22 21:19:57.842 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Fold 1, MAPE: 14.27% +2024-07-22 21:19:57.969 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Training image saved at metaflow_models_360hrs/bgd_office_5001_10000_LSTM//train_f1_bgd_office_5001_10000_LSTM.png +2024-07-22 21:20:03.030 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 1/50, Train Loss: 0.0464551200499185, Val Loss: 0.06234447705958571 +2024-07-22 21:20:08.047 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 2/50, Train Loss: 0.04695623985026032, Val Loss: 0.06188708341547421 +2024-07-22 21:20:13.074 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 3/50, Train Loss: 0.0462776021225951, Val Loss: 0.06137215218373707 +2024-07-22 21:20:18.093 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 4/50, Train Loss: 0.046109709629000954, Val Loss: 0.06105318628251553 +2024-07-22 21:20:23.118 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 5/50, Train Loss: 0.046099347850451104, Val Loss: 0.060370934435299464 +2024-07-22 21:20:28.074 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 6/50, Train Loss: 0.04576803407130333, Val Loss: 0.061905685386487413 +2024-07-22 21:20:33.092 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 7/50, Train Loss: 0.04577240130255142, Val Loss: 0.060352397763303346 +2024-07-22 21:20:38.082 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 8/50, Train Loss: 0.04578158819976334, Val Loss: 0.059938536158629825 +2024-07-22 21:20:43.077 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 9/50, Train Loss: 0.045422007204391636, Val Loss: 0.0597083962389401 +2024-07-22 21:20:48.095 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 10/50, Train Loss: 0.04555535131098273, Val Loss: 0.059587835893034936 +2024-07-22 21:20:53.132 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 11/50, Train Loss: 0.04561830778570416, Val Loss: 0.05967862834887845 +2024-07-22 21:20:58.112 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 12/50, Train Loss: 0.045427570262780555, Val Loss: 0.05899937163506235 +2024-07-22 21:21:03.177 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 13/50, Train Loss: 0.0453497247877889, Val Loss: 0.060419442398207526 +2024-07-22 21:21:08.251 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 14/50, Train Loss: 0.045592455784432016, Val Loss: 0.059496609919837545 +2024-07-22 21:21:13.322 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 15/50, Train Loss: 0.04574914227347248, Val Loss: 0.05932512022554874 +2024-07-22 21:21:18.285 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 16/50, Train Loss: 0.04652193073147478, Val Loss: 0.05996348027672086 +2024-07-22 21:21:23.465 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 17/50, Train Loss: 0.04564350707313189, Val Loss: 0.05958367463733469 +2024-07-22 21:21:28.778 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 18/50, Train Loss: 0.04562231115638637, Val Loss: 0.059129993564316204 +2024-07-22 21:21:33.858 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 19/50, Train Loss: 0.04531442301455312, Val Loss: 0.05882682113775185 +2024-07-22 21:21:38.899 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 20/50, Train Loss: 0.04517771797971083, Val Loss: 0.059268040422882355 +2024-07-22 21:21:43.857 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 21/50, Train Loss: 0.04512893287644077, Val Loss: 0.05898006090096065 +2024-07-22 21:21:48.853 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 22/50, Train Loss: 0.04528977119256384, Val Loss: 0.05868379489651748 +2024-07-22 21:21:53.770 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 23/50, Train Loss: 0.04513189847616909, Val Loss: 0.05853704027831554 +2024-07-22 21:21:58.601 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 24/50, Train Loss: 0.05228620567896332, Val Loss: 0.06596554954137121 +2024-07-22 21:22:03.451 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 25/50, Train Loss: 0.0473895143950358, Val Loss: 0.06472213140555791 +2024-07-22 21:22:08.302 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 26/50, Train Loss: 0.04651667146334568, Val Loss: 0.06239217769886766 +2024-07-22 21:22:13.245 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 27/50, Train Loss: 0.046276023862167046, Val Loss: 0.061518970504403116 +2024-07-22 21:22:18.208 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 28/50, Train Loss: 0.04602310268315845, Val Loss: 0.06187848060258797 +2024-07-22 21:22:23.117 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 29/50, Train Loss: 0.04542719931879009, Val Loss: 0.061623335842575344 +2024-07-22 21:22:28.045 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 30/50, Train Loss: 0.04543788685427549, Val Loss: 0.06038745625742844 +2024-07-22 21:22:33.033 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 31/50, Train Loss: 0.04529803602669675, Val Loss: 0.05966450518795422 +2024-07-22 21:22:37.990 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 32/50, Train Loss: 0.045399913618054524, Val Loss: 0.05852752120367118 +2024-07-22 21:22:43.186 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 33/50, Train Loss: 0.04540358402300626, Val Loss: 0.058703416798795975 +2024-07-22 21:22:48.180 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 34/50, Train Loss: 0.04519136915377413, Val Loss: 0.0590980952339513 +2024-07-22 21:22:53.146 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 35/50, Train Loss: 0.08721838768822356, Val Loss: 0.08156793548592499 +2024-07-22 21:22:58.050 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 36/50, Train Loss: 0.05509726538394506, Val Loss: 0.08148313654320581 +2024-07-22 21:23:02.945 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 37/50, Train Loss: 0.05341378405081251, Val Loss: 0.0802514795746122 +2024-07-22 21:23:07.857 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 38/50, Train Loss: 0.051371474347363874, Val Loss: 0.06920227967202663 +2024-07-22 21:23:12.732 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 39/50, Train Loss: 0.05364610272674607, Val Loss: 0.06876780066107001 +2024-07-22 21:23:17.608 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 40/50, Train Loss: 0.05159901790858175, Val Loss: 0.06879851376371725 +2024-07-22 21:23:22.477 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 41/50, Train Loss: 0.05127040990807403, Val Loss: 0.06966663205197879 +2024-07-22 21:23:27.413 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 42/50, Train Loss: 0.05087951010164733, Val Loss: 0.07031449542513915 +2024-07-22 21:23:32.318 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 43/50, Train Loss: 0.050439281908508674, Val Loss: 0.0691409314849547 +2024-07-22 21:23:37.207 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 44/50, Train Loss: 0.0501307657149692, Val Loss: 0.06655267865530082 +2024-07-22 21:23:42.126 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 45/50, Train Loss: 0.04948029689526615, Val Loss: 0.07134867927857808 +2024-07-22 21:23:47.041 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 46/50, Train Loss: 0.048864888976542994, Val Loss: 0.07022254254136767 +2024-07-22 21:23:51.969 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 47/50, Train Loss: 0.048402155946510345, Val Loss: 0.07027040810457298 +2024-07-22 21:23:57.015 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 48/50, Train Loss: 0.04804415248620968, Val Loss: 0.06214107424020767 +2024-07-22 21:24:02.067 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 49/50, Train Loss: 0.04788739869120316, Val Loss: 0.06146206850452082 +2024-07-22 21:24:07.033 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 50/50, Train Loss: 0.047746419127529055, Val Loss: 0.06063138379582337 +2024-07-22 21:24:07.033 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Fold 2, MAPE: 11.70% +2024-07-22 21:24:07.155 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Training image saved at metaflow_models_360hrs/bgd_office_5001_10000_LSTM//train_f2_bgd_office_5001_10000_LSTM.png +2024-07-22 21:24:13.612 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 1/50, Train Loss: 0.04578218077101725, Val Loss: 0.05866112778229373 +2024-07-22 21:24:20.076 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 2/50, Train Loss: 0.04509068262368012, Val Loss: 0.06071885260088103 +2024-07-22 21:24:26.675 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 3/50, Train Loss: 0.0446252488269866, Val Loss: 0.058558795814003264 +2024-07-22 21:24:33.260 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 4/50, Train Loss: 0.04471213916624836, Val Loss: 0.06168762594461441 +2024-07-22 21:24:39.782 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 5/50, Train Loss: 0.044009640960277416, Val Loss: 0.059023205882736615 +2024-07-22 21:24:46.362 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 6/50, Train Loss: 0.044195207666686116, Val Loss: 0.05948815042419093 +2024-07-22 21:24:46.362 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 21:24:46.362 No tasks are waiting in the queue. +2024-07-22 21:24:46.362 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 21:24:52.858 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 7/50, Train Loss: 0.04353237713573219, Val Loss: 0.05761218363685267 +2024-07-22 21:24:59.448 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 8/50, Train Loss: 0.043799649408127334, Val Loss: 0.05889086265649114 +2024-07-22 21:25:06.037 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 9/50, Train Loss: 0.04413000037960654, Val Loss: 0.05879472052412374 +2024-07-22 21:25:12.562 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 10/50, Train Loss: 0.043131004087626934, Val Loss: 0.057625513417380196 +2024-07-22 21:25:19.057 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 11/50, Train Loss: 0.0435783844709182, Val Loss: 0.05955786130258015 +2024-07-22 21:25:25.535 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 12/50, Train Loss: 0.0430065374017405, Val Loss: 0.05831877546651023 +2024-07-22 21:25:32.137 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 13/50, Train Loss: 0.04289436469645166, Val Loss: 0.05632759641323771 +2024-07-22 21:25:38.603 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 14/50, Train Loss: 0.04300025876665072, Val Loss: 0.059406436554023195 +2024-07-22 21:25:45.086 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 15/50, Train Loss: 0.042722182656578025, Val Loss: 0.05681184849568776 +2024-07-22 21:25:51.596 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 16/50, Train Loss: 0.042710948969981226, Val Loss: 0.05871581568249634 +2024-07-22 21:25:58.139 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 17/50, Train Loss: 0.04276267569780135, Val Loss: 0.05906161511582988 +2024-07-22 21:26:04.741 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 18/50, Train Loss: 0.047829912050808075, Val Loss: 0.060751963406801224 +2024-07-22 21:26:11.138 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 19/50, Train Loss: 0.045348382762653364, Val Loss: 0.0600409880812679 +2024-07-22 21:26:17.498 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 20/50, Train Loss: 0.04444573575081371, Val Loss: 0.05902517443256719 +2024-07-22 21:26:23.916 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 21/50, Train Loss: 0.04403513945344326, Val Loss: 0.0590904962271452 +2024-07-22 21:26:30.364 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 22/50, Train Loss: 0.04347999243856334, Val Loss: 0.05906743391283921 +2024-07-22 21:26:36.830 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 23/50, Train Loss: 0.04305426107732941, Val Loss: 0.05787976485277925 +2024-07-22 21:26:43.298 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 24/50, Train Loss: 0.042883776047890135, Val Loss: 0.05826798368777548 +2024-07-22 21:26:49.939 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 25/50, Train Loss: 0.04286244218807212, Val Loss: 0.058579789687480247 +2024-07-22 21:26:56.413 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 26/50, Train Loss: 0.0426967822738903, Val Loss: 0.058098912984132764 +2024-07-22 21:27:02.866 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 27/50, Train Loss: 0.04297762989274246, Val Loss: 0.05801172581102167 +2024-07-22 21:27:09.332 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 28/50, Train Loss: 0.042593045454981514, Val Loss: 0.05797400325536728 +2024-07-22 21:27:15.749 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 29/50, Train Loss: 0.04368338241449577, Val Loss: 0.057401693984866144 +2024-07-22 21:27:22.206 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 30/50, Train Loss: 0.04260619089891799, Val Loss: 0.05738046414085797 +2024-07-22 21:27:28.702 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 31/50, Train Loss: 0.042441149396326046, Val Loss: 0.058493174612522125 +2024-07-22 21:27:35.148 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 32/50, Train Loss: 0.042432768531679675, Val Loss: 0.05654945879110268 +2024-07-22 21:27:41.541 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 33/50, Train Loss: 0.04338395068917772, Val Loss: 0.05672450517969472 +2024-07-22 21:27:47.997 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 34/50, Train Loss: 0.04226875910200446, Val Loss: 0.05807374800954546 +2024-07-22 21:27:54.428 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 35/50, Train Loss: 0.04332936455984768, Val Loss: 0.05611611466322627 +2024-07-22 21:28:00.867 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 36/50, Train Loss: 0.042083036717322234, Val Loss: 0.0576795051672629 +2024-07-22 21:28:07.300 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 37/50, Train Loss: 0.04210378767641114, Val Loss: 0.05880943004574094 +2024-07-22 21:28:13.739 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 38/50, Train Loss: 0.04508946353583027, Val Loss: 0.05706754055406366 +2024-07-22 21:28:20.184 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 39/50, Train Loss: 0.04268357207958432, Val Loss: 0.056664237592901505 +2024-07-22 21:28:26.619 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 40/50, Train Loss: 0.04208309462682592, Val Loss: 0.057125549231256754 +2024-07-22 21:28:33.088 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 41/50, Train Loss: 0.041975979043318214, Val Loss: 0.05613590329885483 +2024-07-22 21:28:39.518 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 42/50, Train Loss: 0.05090225721783132, Val Loss: 0.061580128009830204 +2024-07-22 21:28:46.145 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 43/50, Train Loss: 0.04537657694556087, Val Loss: 0.059641280663864954 +2024-07-22 21:28:52.585 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 44/50, Train Loss: 0.04383030732785412, Val Loss: 0.058519431097166875 +2024-07-22 21:28:59.011 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 45/50, Train Loss: 0.04329275946206541, Val Loss: 0.05748150199651718 +2024-07-22 21:29:05.490 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 46/50, Train Loss: 0.04295005827552552, Val Loss: 0.056623004057577676 +2024-07-22 21:29:12.154 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 47/50, Train Loss: 0.042533404334521976, Val Loss: 0.0559961695756231 +2024-07-22 21:29:19.075 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 48/50, Train Loss: 0.042000561269174376, Val Loss: 0.05546057208308152 +2024-07-22 21:29:25.557 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 49/50, Train Loss: 0.04670057349282203, Val Loss: 0.058809708857110565 +2024-07-22 21:29:32.258 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 50/50, Train Loss: 0.04339793467183979, Val Loss: 0.05656881571880409 +2024-07-22 21:29:32.259 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Fold 3, MAPE: 12.04% +2024-07-22 21:29:32.386 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Training image saved at metaflow_models_360hrs/bgd_office_5001_10000_LSTM//train_f3_bgd_office_5001_10000_LSTM.png +2024-07-22 21:29:40.771 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 1/50, Train Loss: 0.04529977442118628, Val Loss: 0.05348622309310096 +2024-07-22 21:29:48.751 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 2/50, Train Loss: 0.04461039003819741, Val Loss: 0.05604357448007379 +2024-07-22 21:29:48.751 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 21:29:48.751 No tasks are waiting in the queue. +2024-07-22 21:29:48.751 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 21:29:56.623 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 3/50, Train Loss: 0.04455729959339931, Val Loss: 0.0550177065389497 +2024-07-22 21:30:04.624 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 4/50, Train Loss: 0.04436871944659058, Val Loss: 0.05232835763267108 +2024-07-22 21:30:12.507 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 5/50, Train Loss: 0.044233640388253774, Val Loss: 0.05479893253317901 +2024-07-22 21:30:20.330 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 6/50, Train Loss: 0.04472262511329576, Val Loss: 0.05367345011660031 +2024-07-22 21:30:28.234 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 7/50, Train Loss: 0.04423622622143948, Val Loss: 0.05473307174231325 +2024-07-22 21:30:36.248 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 8/50, Train Loss: 0.0436703300788656, Val Loss: 0.05432073915643351 +2024-07-22 21:30:44.322 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 9/50, Train Loss: 0.048519767424755396, Val Loss: 0.05057529445205416 +2024-07-22 21:30:52.705 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 10/50, Train Loss: 0.0437918145573516, Val Loss: 0.054608029765742166 +2024-07-22 21:31:00.589 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 11/50, Train Loss: 0.04397308621448518, Val Loss: 0.05392140517277377 +2024-07-22 21:31:08.476 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 12/50, Train Loss: 0.04312933502911494, Val Loss: 0.05366943696779864 +2024-07-22 21:31:16.420 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 13/50, Train Loss: 0.043048405131303716, Val Loss: 0.05538904320980821 +2024-07-22 21:31:24.517 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 14/50, Train Loss: 0.042880627235676025, Val Loss: 0.05471762402781418 +2024-07-22 21:31:32.576 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 15/50, Train Loss: 0.04276128177498949, Val Loss: 0.054754678745354925 +2024-07-22 21:31:40.552 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 16/50, Train Loss: 0.04917165429342067, Val Loss: 0.050936310365796086 +2024-07-22 21:31:48.521 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 17/50, Train Loss: 0.04577479332193047, Val Loss: 0.04991247057914734 +2024-07-22 21:31:57.118 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 18/50, Train Loss: 0.04486904370908936, Val Loss: 0.049607360629098755 +2024-07-22 21:32:05.317 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 19/50, Train Loss: 0.04417351553023889, Val Loss: 0.05285283002470221 +2024-07-22 21:32:13.500 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 20/50, Train Loss: 0.043797683088515685, Val Loss: 0.055068933059062276 +2024-07-22 21:32:21.656 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 21/50, Train Loss: 0.043141126161676716, Val Loss: 0.052416496617453436 +2024-07-22 21:32:29.755 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 22/50, Train Loss: 0.042759718100443996, Val Loss: 0.0549510054822479 +2024-07-22 21:32:37.893 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 23/50, Train Loss: 0.0445809794600582, Val Loss: 0.0559023735246488 +2024-07-22 21:32:46.019 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 24/50, Train Loss: 0.043488622364727246, Val Loss: 0.053428562091929574 +2024-07-22 21:32:54.117 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 25/50, Train Loss: 0.04247972407196274, Val Loss: 0.051715604322297236 +2024-07-22 21:33:02.377 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 26/50, Train Loss: 0.04280072103265202, Val Loss: 0.05349493282181876 +2024-07-22 21:33:10.674 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 27/50, Train Loss: 0.05235569286106647, Val Loss: 0.050312653769339834 +2024-07-22 21:33:18.836 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 28/50, Train Loss: 0.04716862460876676, Val Loss: 0.049944147361176354 +2024-07-22 21:33:27.038 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 29/50, Train Loss: 0.04527235253788959, Val Loss: 0.05166768447629043 +2024-07-22 21:33:35.221 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 30/50, Train Loss: 0.04463986599089942, Val Loss: 0.05099730885454586 +2024-07-22 21:33:43.243 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 31/50, Train Loss: 0.04373664327565281, Val Loss: 0.05090228037110397 +2024-07-22 21:33:51.281 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 32/50, Train Loss: 0.043076709539083574, Val Loss: 0.05385810982968126 +2024-07-22 21:33:59.466 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 33/50, Train Loss: 0.04275074631147001, Val Loss: 0.05345008069915431 +2024-07-22 21:34:07.607 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 34/50, Train Loss: 0.043064243818536914, Val Loss: 0.053954998297350745 +2024-07-22 21:34:15.955 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 35/50, Train Loss: 0.042388318561488524, Val Loss: 0.05252839970801558 +2024-07-22 21:34:24.276 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 36/50, Train Loss: 0.0419512546096725, Val Loss: 0.05277446838361877 +2024-07-22 21:34:32.558 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 37/50, Train Loss: 0.044210667304437734, Val Loss: 0.051234260467546325 +2024-07-22 21:34:40.672 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 38/50, Train Loss: 0.04205588137345581, Val Loss: 0.05249633613441672 +2024-07-22 21:34:48.802 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 39/50, Train Loss: 0.04427489999617482, Val Loss: 0.05065610744059086 +2024-07-22 21:34:48.802 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 21:34:48.802 No tasks are waiting in the queue. +2024-07-22 21:34:48.802 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 21:34:56.901 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 40/50, Train Loss: 0.04215809928745717, Val Loss: 0.0534563346100705 +2024-07-22 21:35:05.025 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 41/50, Train Loss: 0.04200986844498193, Val Loss: 0.053290848646845135 +2024-07-22 21:35:13.112 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 42/50, Train Loss: 0.04962631906971507, Val Loss: 0.049886665865778924 +2024-07-22 21:35:21.203 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 43/50, Train Loss: 0.04266548979406556, Val Loss: 0.05141260714403221 +2024-07-22 21:35:29.310 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 44/50, Train Loss: 0.04156214504063815, Val Loss: 0.05209108841206346 +2024-07-22 21:35:37.393 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 45/50, Train Loss: 0.0421824914231982, Val Loss: 0.05210536079747336 +2024-07-22 21:35:45.531 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 46/50, Train Loss: 0.044366389818104174, Val Loss: 0.050656990174736294 +2024-07-22 21:35:53.650 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 47/50, Train Loss: 0.04145795954712506, Val Loss: 0.051410817833883425 +2024-07-22 21:36:01.793 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 48/50, Train Loss: 0.041389241728974485, Val Loss: 0.05096136629581451 +2024-07-22 21:36:09.877 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 49/50, Train Loss: 0.04205341600202795, Val Loss: 0.05210079045167991 +2024-07-22 21:36:17.941 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 50/50, Train Loss: 0.04266850727920731, Val Loss: 0.05081092528998852 +2024-07-22 21:36:17.942 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Fold 4, MAPE: 12.10% +2024-07-22 21:36:18.057 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Training image saved at metaflow_models_360hrs/bgd_office_5001_10000_LSTM//train_f4_bgd_office_5001_10000_LSTM.png +2024-07-22 21:36:22.835 [24/cross_validate_train/295 (pid 70020)] Task finished successfully. +2024-07-22 21:36:22.869 [24/model_scores/296 (pid 79483)] Task is starting. +2024-07-22 21:36:24.337 [24/model_scores/296 (pid 79483)] INFO:__main__:Average Train Loss across all folds: 0.05077957611808241 +2024-07-22 21:36:28.349 [24/model_scores/296 (pid 79483)] INFO:__main__:Average Validation Loss across all folds: 0.06190865255892277 +2024-07-22 21:36:28.350 [24/model_scores/296 (pid 79483)] INFO:__main__:Average MAPE across all folds: 12.46% +2024-07-22 21:36:28.350 [24/model_scores/296 (pid 79483)] Task finished successfully. +2024-07-22 21:36:28.381 [24/validate_model/297 (pid 79535)] Task is starting. +2024-07-22 21:36:29.881 [24/validate_model/297 (pid 79535)] INFO:__main__:Validating LSTM on test set.. +2024-07-22 21:36:30.808 [24/validate_model/297 (pid 79535)] INFO:__main__:Test Set MAPE: 10.97% +2024-07-22 21:36:31.189 [24/validate_model/297 (pid 79535)] INFO:__main__:Test image saved at metaflow_models_360hrs/bgd_office_5001_10000_LSTM//test_bgd_office_5001_10000_LSTM.png +2024-07-22 21:36:31.651 [24/validate_model/297 (pid 79535)] Task finished successfully. +2024-07-22 21:36:31.680 [24/log_model/298 (pid 79594)] Task is starting. +2024-07-22 21:36:33.177 [24/log_model/298 (pid 79594)] INFO:__main__:Logging model bgd_office_5001_10000_LSTM +2024-07-22 21:36:33.179 [24/log_model/298 (pid 79594)] INFO:__main__:Model logged at metaflow_models_360hrs/bgd_office_5001_10000_LSTM//bgd_office_5001_10000_LSTM.pth +2024-07-22 21:36:37.552 [24/log_model/298 (pid 79594)] Task finished successfully. +2024-07-22 21:36:37.583 [24/end/299 (pid 79654)] Task is starting. +2024-07-22 21:36:39.070 [24/end/299 (pid 79654)] INFO:__main__:Pipeline end. +2024-07-22 21:36:39.396 [24/end/299 (pid 79654)] Task finished successfully. +2024-07-22 21:36:39.396 Done! +✅ Run('BGD_LinearFlow/24') succeeded: +-- stdout -- +2024-07-22 21:14:41.793 Workflow starting (run-id 24): +2024-07-22 21:14:41.927 [24/start/287 (pid 69708)] Task is starting. +2024-07-22 21:14:44.046 [24/start/287 (pid 69708)] INFO:__main__:Starting BGD linear flow.. +2024-07-22 21:14:44.501 [24/start/287 (pid 69708)] Task finished successfully. +2024-07-22 21:14:44.542 [24/ingest/288 (pid 69738)] Task is starting. +2024-07-22 21:14:46.527 [24/ingest/288 (pid 69738)] INFO:__main__:Fetching dataframe.. +2024-07-22 21:14:46.546 [24/ingest/288 (pid 69738)] INFO:__main__:Dataframe fetching complete.. +2024-07-22 21:14:51.561 [24/ingest/288 (pid 69738)] Task finished successfully. +2024-07-22 21:14:51.603 [24/pick_2017_data/289 (pid 69809)] Task is starting. +2024-07-22 21:14:53.526 [24/pick_2017_data/289 (pid 69809)] INFO:__main__:Picking 2017 data.. +2024-07-22 21:14:53.896 [24/pick_2017_data/289 (pid 69809)] Task finished successfully. +2024-07-22 21:14:53.931 [24/fill_missing_data/290 (pid 69835)] Task is starting. +2024-07-22 21:14:55.864 [24/fill_missing_data/290 (pid 69835)] INFO:__main__:Filling missing data points using weighted average.. +2024-07-22 21:14:55.870 [24/fill_missing_data/290 (pid 69835)] INFO:__main__:NaN counts per column: +2024-07-22 21:14:55.871 [24/fill_missing_data/290 (pid 69835)] INFO:__main__:Panther_office_Jeane 11 +2024-07-22 21:14:55.871 [24/fill_missing_data/290 (pid 69835)] Fox_office_Molly 14 +2024-07-22 21:14:55.871 [24/fill_missing_data/290 (pid 69835)] dtype: int64 +2024-07-22 21:14:55.871 [24/fill_missing_data/290 (pid 69835)] --- Logging error --- +2024-07-22 21:14:55.872 [24/fill_missing_data/290 (pid 69835)] Traceback (most recent call last): +2024-07-22 21:14:55.872 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 1100, in emit +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] msg = self.format(record) +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 943, in format +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] return fmt.format(record) +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 678, in format +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] record.message = record.getMessage() +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/logging/__init__.py", line 368, in getMessage +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] msg = msg % self.args +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] TypeError: not all arguments converted during string formatting +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] Call stack: +2024-07-22 21:14:55.874 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 337, in +2024-07-22 21:14:56.270 [24/fill_missing_data/290 (pid 69835)] BGD_LinearFlow() +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/flowspec.py", line 120, in __init__ +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] cli.main(self) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 1126, in main +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] start(auto_envvar_prefix="METAFLOW", obj=state) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/tracing/__init__.py", line 27, in wrapper_func +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] return func(*args, **kwargs) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 829, in __call__ +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] return self.main(*args, **kwargs) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 782, in main +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] rv = self.invoke(ctx) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1259, in invoke +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] return _process_result(sub_ctx.command.invoke(sub_ctx)) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 1066, in invoke +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] return ctx.invoke(self.callback, **ctx.params) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/core.py", line 610, in invoke +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] return callback(*args, **kwargs) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/_vendor/click/decorators.py", line 21, in new_func +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] return f(get_current_context(), *args, **kwargs) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/cli.py", line 468, in step +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] task.run_step( +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 650, in run_step +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] self._exec_step_function(step_func) +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/miniconda3/envs/8903env/lib/python3.10/site-packages/metaflow/task.py", line 62, in _exec_step_function +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] step_function() +2024-07-22 21:14:56.271 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 78, in fill_missing_data +2024-07-22 21:14:56.272 [24/fill_missing_data/290 (pid 69835)] self.missing_values = find_nan_counts(self.df) +2024-07-22 21:14:56.272 [24/fill_missing_data/290 (pid 69835)] File "/Users/nikhilkapila/Developer/lstm-training/bgd_flow.py", line 292, in find_nan_counts +2024-07-22 21:14:56.272 [24/fill_missing_data/290 (pid 69835)] logger.info("\nTotal NaN count in the DataFrame:", total_nan_count) +2024-07-22 21:14:56.272 [24/fill_missing_data/290 (pid 69835)] Message: '\nTotal NaN count in the DataFrame:' +2024-07-22 21:14:56.272 [24/fill_missing_data/290 (pid 69835)] Arguments: (25,) +2024-07-22 21:14:56.273 [24/fill_missing_data/290 (pid 69835)] Task finished successfully. +2024-07-22 21:14:56.305 [24/find_median/291 (pid 69853)] Task is starting. +2024-07-22 21:14:58.279 [24/find_median/291 (pid 69853)] INFO:__main__:Computing and using median.. +2024-07-22 21:14:58.908 [24/find_median/291 (pid 69853)] Task finished successfully. +2024-07-22 21:14:58.941 [24/aggregate_data/292 (pid 69881)] Task is starting. +2024-07-22 21:15:00.804 [24/aggregate_data/292 (pid 69881)] INFO:__main__:Skipping.. data is on hourly basis. +2024-07-22 21:15:05.937 [24/aggregate_data/292 (pid 69881)] Task finished successfully. +2024-07-22 21:15:05.982 [24/split_data/293 (pid 69941)] Task is starting. +2024-07-22 21:15:07.864 [24/split_data/293 (pid 69941)] INFO:__main__:Splitting data into test and train... +2024-07-22 21:15:12.931 [24/split_data/293 (pid 69941)] Task finished successfully. +2024-07-22 21:15:12.970 [24/make_x_y/294 (pid 70002)] Task is starting. +2024-07-22 21:15:15.307 [24/make_x_y/294 (pid 70002)] INFO:__main__:Shape of X_train: (6648, 360, 1) +2024-07-22 21:15:15.784 [24/make_x_y/294 (pid 70002)] Shape of y_train: (6648, 1) +2024-07-22 21:15:15.785 [24/make_x_y/294 (pid 70002)] Shape of X_test: (1392, 360, 1) +2024-07-22 21:15:15.785 [24/make_x_y/294 (pid 70002)] Shape of y_test: (1392, 1) +2024-07-22 21:15:15.786 [24/make_x_y/294 (pid 70002)] Task finished successfully. +2024-07-22 21:15:15.825 [24/cross_validate_train/295 (pid 70020)] Task is starting. +2024-07-22 21:15:17.703 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Creating bgd_office_5001_10000_LSTM +2024-07-22 21:15:17.706 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Performing cross validation.. +2024-07-22 21:15:20.852 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 1/50, Train Loss: 0.21204832643270494, Val Loss: 0.18573803710086004 +2024-07-22 21:15:23.104 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 2/50, Train Loss: 0.1536619035261018, Val Loss: 0.1718474805355072 +2024-07-22 21:15:25.327 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 3/50, Train Loss: 0.14412708346332823, Val Loss: 0.15620411134191922 +2024-07-22 21:15:27.643 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 4/50, Train Loss: 0.1301006772688457, Val Loss: 0.1369585492249046 +2024-07-22 21:15:29.905 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 5/50, Train Loss: 0.1139625646173954, Val Loss: 0.11327418466763838 +2024-07-22 21:15:32.148 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 6/50, Train Loss: 0.09742647888404983, Val Loss: 0.09293906124574798 +2024-07-22 21:15:34.453 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 7/50, Train Loss: 0.08954078565750803, Val Loss: 0.08512212000787259 +2024-07-22 21:15:36.730 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 8/50, Train Loss: 0.08306814166052001, Val Loss: 0.08075674974492618 +2024-07-22 21:15:38.984 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 9/50, Train Loss: 0.07882470834468092, Val Loss: 0.07959449488137449 +2024-07-22 21:15:41.248 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 10/50, Train Loss: 0.07605923414230346, Val Loss: 0.07489725026701177 +2024-07-22 21:15:43.511 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 11/50, Train Loss: 0.07338511028460094, Val Loss: 0.0721992174429553 +2024-07-22 21:15:45.771 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 12/50, Train Loss: 0.07134808152914048, Val Loss: 0.06988161222210952 +2024-07-22 21:15:48.073 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 13/50, Train Loss: 0.06976037477808339, Val Loss: 0.0686310691492898 +2024-07-22 21:15:50.717 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 14/50, Train Loss: 0.06945816650986672, Val Loss: 0.06791913956403732 +2024-07-22 21:15:53.001 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 15/50, Train Loss: 0.06831391326018742, Val Loss: 0.06808338601674352 +2024-07-22 21:15:55.134 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 16/50, Train Loss: 0.068651414715818, Val Loss: 0.06737127186996596 +2024-07-22 21:15:57.127 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 17/50, Train Loss: 0.06846380861742156, Val Loss: 0.06576045049088342 +2024-07-22 21:15:59.155 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 18/50, Train Loss: 0.06733113303780555, Val Loss: 0.06536104157567024 +2024-07-22 21:16:01.135 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 19/50, Train Loss: 0.06721731834113598, Val Loss: 0.06497133470007352 +2024-07-22 21:16:03.244 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 20/50, Train Loss: 0.0673837206193379, Val Loss: 0.06485607868858746 +2024-07-22 21:16:05.252 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 21/50, Train Loss: 0.06761745709393706, Val Loss: 0.06502541782600539 +2024-07-22 21:16:07.209 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 22/50, Train Loss: 0.06666209772229195, Val Loss: 0.06458201466926507 +2024-07-22 21:16:09.160 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 23/50, Train Loss: 0.0664617228188685, Val Loss: 0.06441473098737853 +2024-07-22 21:16:11.095 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 24/50, Train Loss: 0.06639807586159024, Val Loss: 0.06427594545696463 +2024-07-22 21:16:13.020 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 25/50, Train Loss: 0.06647903929863658, Val Loss: 0.06437552635158811 +2024-07-22 21:16:14.948 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 26/50, Train Loss: 0.06590219603053162, Val Loss: 0.06398528824959482 +2024-07-22 21:16:16.879 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 27/50, Train Loss: 0.06626963493015085, Val Loss: 0.06404861749282904 +2024-07-22 21:16:18.863 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 28/50, Train Loss: 0.06592682291354451, Val Loss: 0.06387560117457594 +2024-07-22 21:16:20.799 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 29/50, Train Loss: 0.0661049391009978, Val Loss: 0.06383808281804834 +2024-07-22 21:16:22.739 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 30/50, Train Loss: 0.06571660983775343, Val Loss: 0.06376763566264085 +2024-07-22 21:16:24.668 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 31/50, Train Loss: 0.06575286878006799, Val Loss: 0.0637130994349718 +2024-07-22 21:16:26.617 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 32/50, Train Loss: 0.06586761905678681, Val Loss: 0.06373894086905889 +2024-07-22 21:16:28.540 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 33/50, Train Loss: 0.06572852033589567, Val Loss: 0.06359983810356686 +2024-07-22 21:16:30.489 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 34/50, Train Loss: 0.06570370330342225, Val Loss: 0.0636145329368966 +2024-07-22 21:16:32.453 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 35/50, Train Loss: 0.06578129157423973, Val Loss: 0.06353800307427133 +2024-07-22 21:16:34.417 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 36/50, Train Loss: 0.06552605064851898, Val Loss: 0.06351765250521046 +2024-07-22 21:16:36.365 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 37/50, Train Loss: 0.06563243669058595, Val Loss: 0.0634981604559081 +2024-07-22 21:16:38.291 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 38/50, Train Loss: 0.06566629308675016, Val Loss: 0.06347392967769078 +2024-07-22 21:16:40.247 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 39/50, Train Loss: 0.065536722860166, Val Loss: 0.06348510751766819 +2024-07-22 21:16:42.206 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 40/50, Train Loss: 0.06566953063011169, Val Loss: 0.06343817391565867 +2024-07-22 21:16:44.150 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 41/50, Train Loss: 0.06561222768255642, Val Loss: 0.06339973541242735 +2024-07-22 21:16:46.109 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 42/50, Train Loss: 0.06552948797387737, Val Loss: 0.0633318334285702 +2024-07-22 21:16:48.063 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 43/50, Train Loss: 0.06519512528819697, Val Loss: 0.06327263505331107 +2024-07-22 21:16:49.997 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 44/50, Train Loss: 0.06544005157692091, Val Loss: 0.06319163122347422 +2024-07-22 21:16:51.970 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 45/50, Train Loss: 0.06515484819454806, Val Loss: 0.06308014770703656 +2024-07-22 21:16:53.918 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 46/50, Train Loss: 0.06508645729294844, Val Loss: 0.06294748293501991 +2024-07-22 21:16:55.880 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 47/50, Train Loss: 0.06509517622845513, Val Loss: 0.06278636306524277 +2024-07-22 21:16:57.835 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 48/50, Train Loss: 0.06517854662878173, Val Loss: 0.06264215079801423 +2024-07-22 21:16:59.814 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 49/50, Train Loss: 0.06555416413715907, Val Loss: 0.06255767332123859 +2024-07-22 21:17:01.775 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 50/50, Train Loss: 0.06468443146773747, Val Loss: 0.061688517672675 +2024-07-22 21:17:01.776 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Fold 0, MAPE: 12.19% +2024-07-22 21:17:02.217 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Training image saved at metaflow_models_360hrs/bgd_office_5001_10000_LSTM//train_f0_bgd_office_5001_10000_LSTM.png +2024-07-22 21:17:05.784 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 1/50, Train Loss: 0.05904881757284914, Val Loss: 0.08717406823166779 +2024-07-22 21:17:09.233 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 2/50, Train Loss: 0.05801680593618325, Val Loss: 0.08731790658618722 +2024-07-22 21:17:12.706 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 3/50, Train Loss: 0.05806503106973001, Val Loss: 0.08448839054575988 +2024-07-22 21:17:16.138 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 4/50, Train Loss: 0.05782133795853172, Val Loss: 0.08572528873171126 +2024-07-22 21:17:19.578 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 5/50, Train Loss: 0.05779662965131657, Val Loss: 0.08557664368833814 +2024-07-22 21:17:23.272 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 6/50, Train Loss: 0.05779610781797341, Val Loss: 0.0813650416476386 +2024-07-22 21:17:26.796 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 7/50, Train Loss: 0.05788484045437404, Val Loss: 0.088159727198737 +2024-07-22 21:17:30.280 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 8/50, Train Loss: 0.05776482054165431, Val Loss: 0.08322746945278985 +2024-07-22 21:17:33.765 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 9/50, Train Loss: 0.057951209002307484, Val Loss: 0.08548341925655092 +2024-07-22 21:17:37.236 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 10/50, Train Loss: 0.057823913916945455, Val Loss: 0.08373568393290043 +2024-07-22 21:17:40.820 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 11/50, Train Loss: 0.057724330334791116, Val Loss: 0.08271261251398496 +2024-07-22 21:17:44.285 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 12/50, Train Loss: 0.05752236374786922, Val Loss: 0.0835339472762176 +2024-07-22 21:17:47.815 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 13/50, Train Loss: 0.05725645124912262, Val Loss: 0.08561028172927243 +2024-07-22 21:17:51.290 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 14/50, Train Loss: 0.05741990472057036, Val Loss: 0.08533379627125603 +2024-07-22 21:17:54.789 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 15/50, Train Loss: 0.05708405271704708, Val Loss: 0.08528265718902861 +2024-07-22 21:17:58.228 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 16/50, Train Loss: 0.05720131801707404, Val Loss: 0.0847004338566746 +2024-07-22 21:18:01.688 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 17/50, Train Loss: 0.0572180895666991, Val Loss: 0.08196129649877548 +2024-07-22 21:18:05.165 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 18/50, Train Loss: 0.05720685896064554, Val Loss: 0.08654635612453733 +2024-07-22 21:18:08.605 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 19/50, Train Loss: 0.05701704240803208, Val Loss: 0.08495418088776725 +2024-07-22 21:18:12.085 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 20/50, Train Loss: 0.057059603982738086, Val Loss: 0.08422928154468537 +2024-07-22 21:18:15.599 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 21/50, Train Loss: 0.057023335860243864, Val Loss: 0.08635653715048518 +2024-07-22 21:18:19.143 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 22/50, Train Loss: 0.05714378753410918, Val Loss: 0.08452321562383856 +2024-07-22 21:18:22.671 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 23/50, Train Loss: 0.05702100023627281, Val Loss: 0.08531781264713832 +2024-07-22 21:18:26.158 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 24/50, Train Loss: 0.05685728083231619, Val Loss: 0.08410463173474585 +2024-07-22 21:18:29.712 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 25/50, Train Loss: 0.05711891629866191, Val Loss: 0.08270229851560933 +2024-07-22 21:18:33.280 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 26/50, Train Loss: 0.056740100628563335, Val Loss: 0.08410720681505544 +2024-07-22 21:18:36.776 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 27/50, Train Loss: 0.05695025556321655, Val Loss: 0.08220777703183038 +2024-07-22 21:18:40.258 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 28/50, Train Loss: 0.05667515115014144, Val Loss: 0.08364311100116797 +2024-07-22 21:18:43.850 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 29/50, Train Loss: 0.05675612238368818, Val Loss: 0.08462696895003319 +2024-07-22 21:18:47.348 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 30/50, Train Loss: 0.05675140688461917, Val Loss: 0.08518938762801034 +2024-07-22 21:18:50.851 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 31/50, Train Loss: 0.05695346694971834, Val Loss: 0.08209036253392696 +2024-07-22 21:18:54.369 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 32/50, Train Loss: 0.056509762709694246, Val Loss: 0.0825766287211861 +2024-07-22 21:18:57.887 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 33/50, Train Loss: 0.057140826247632504, Val Loss: 0.0868781148322991 +2024-07-22 21:19:01.358 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 34/50, Train Loss: 0.05673892442137003, Val Loss: 0.08040333241224289 +2024-07-22 21:19:04.967 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 35/50, Train Loss: 0.05651531735701221, Val Loss: 0.08292550625545637 +2024-07-22 21:19:08.476 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 36/50, Train Loss: 0.05642014337437493, Val Loss: 0.08821159526705742 +2024-07-22 21:19:11.969 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 37/50, Train Loss: 0.056488244448389326, Val Loss: 0.08227078872067588 +2024-07-22 21:19:15.472 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 38/50, Train Loss: 0.0562927176377603, Val Loss: 0.08077514842152596 +2024-07-22 21:19:18.991 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 39/50, Train Loss: 0.056526904366910456, Val Loss: 0.08330102935433388 +2024-07-22 21:19:22.514 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 40/50, Train Loss: 0.05650646785008056, Val Loss: 0.08000868463090488 +2024-07-22 21:19:26.024 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 41/50, Train Loss: 0.055795188381203585, Val Loss: 0.07657380290329456 +2024-07-22 21:19:29.575 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 42/50, Train Loss: 0.05553419052490166, Val Loss: 0.08067245451467378 +2024-07-22 21:19:33.114 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 43/50, Train Loss: 0.056068322940596514, Val Loss: 0.08498746433428356 +2024-07-22 21:19:36.625 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 44/50, Train Loss: 0.05572708451322147, Val Loss: 0.07859595024159977 +2024-07-22 21:19:40.143 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 45/50, Train Loss: 0.05633003163550581, Val Loss: 0.07791066249566418 +2024-07-22 21:19:43.680 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 46/50, Train Loss: 0.05635946427604982, Val Loss: 0.08277715045426573 +2024-07-22 21:19:43.680 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 21:19:43.680 No tasks are waiting in the queue. +2024-07-22 21:19:43.680 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 21:19:47.238 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 47/50, Train Loss: 0.05595862402447632, Val Loss: 0.07815189766032356 +2024-07-22 21:19:50.784 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 48/50, Train Loss: 0.05608382306194731, Val Loss: 0.08016963292445456 +2024-07-22 21:19:54.313 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 49/50, Train Loss: 0.055445672278957706, Val Loss: 0.07830748983791896 +2024-07-22 21:19:57.841 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 50/50, Train Loss: 0.05540058804409845, Val Loss: 0.07984362031732287 +2024-07-22 21:19:57.842 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Fold 1, MAPE: 14.27% +2024-07-22 21:19:57.969 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Training image saved at metaflow_models_360hrs/bgd_office_5001_10000_LSTM//train_f1_bgd_office_5001_10000_LSTM.png +2024-07-22 21:20:03.030 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 1/50, Train Loss: 0.0464551200499185, Val Loss: 0.06234447705958571 +2024-07-22 21:20:08.047 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 2/50, Train Loss: 0.04695623985026032, Val Loss: 0.06188708341547421 +2024-07-22 21:20:13.074 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 3/50, Train Loss: 0.0462776021225951, Val Loss: 0.06137215218373707 +2024-07-22 21:20:18.093 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 4/50, Train Loss: 0.046109709629000954, Val Loss: 0.06105318628251553 +2024-07-22 21:20:23.118 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 5/50, Train Loss: 0.046099347850451104, Val Loss: 0.060370934435299464 +2024-07-22 21:20:28.074 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 6/50, Train Loss: 0.04576803407130333, Val Loss: 0.061905685386487413 +2024-07-22 21:20:33.092 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 7/50, Train Loss: 0.04577240130255142, Val Loss: 0.060352397763303346 +2024-07-22 21:20:38.082 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 8/50, Train Loss: 0.04578158819976334, Val Loss: 0.059938536158629825 +2024-07-22 21:20:43.077 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 9/50, Train Loss: 0.045422007204391636, Val Loss: 0.0597083962389401 +2024-07-22 21:20:48.095 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 10/50, Train Loss: 0.04555535131098273, Val Loss: 0.059587835893034936 +2024-07-22 21:20:53.132 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 11/50, Train Loss: 0.04561830778570416, Val Loss: 0.05967862834887845 +2024-07-22 21:20:58.112 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 12/50, Train Loss: 0.045427570262780555, Val Loss: 0.05899937163506235 +2024-07-22 21:21:03.177 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 13/50, Train Loss: 0.0453497247877889, Val Loss: 0.060419442398207526 +2024-07-22 21:21:08.251 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 14/50, Train Loss: 0.045592455784432016, Val Loss: 0.059496609919837545 +2024-07-22 21:21:13.322 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 15/50, Train Loss: 0.04574914227347248, Val Loss: 0.05932512022554874 +2024-07-22 21:21:18.285 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 16/50, Train Loss: 0.04652193073147478, Val Loss: 0.05996348027672086 +2024-07-22 21:21:23.465 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 17/50, Train Loss: 0.04564350707313189, Val Loss: 0.05958367463733469 +2024-07-22 21:21:28.778 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 18/50, Train Loss: 0.04562231115638637, Val Loss: 0.059129993564316204 +2024-07-22 21:21:33.858 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 19/50, Train Loss: 0.04531442301455312, Val Loss: 0.05882682113775185 +2024-07-22 21:21:38.899 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 20/50, Train Loss: 0.04517771797971083, Val Loss: 0.059268040422882355 +2024-07-22 21:21:43.857 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 21/50, Train Loss: 0.04512893287644077, Val Loss: 0.05898006090096065 +2024-07-22 21:21:48.853 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 22/50, Train Loss: 0.04528977119256384, Val Loss: 0.05868379489651748 +2024-07-22 21:21:53.770 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 23/50, Train Loss: 0.04513189847616909, Val Loss: 0.05853704027831554 +2024-07-22 21:21:58.601 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 24/50, Train Loss: 0.05228620567896332, Val Loss: 0.06596554954137121 +2024-07-22 21:22:03.451 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 25/50, Train Loss: 0.0473895143950358, Val Loss: 0.06472213140555791 +2024-07-22 21:22:08.302 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 26/50, Train Loss: 0.04651667146334568, Val Loss: 0.06239217769886766 +2024-07-22 21:22:13.245 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 27/50, Train Loss: 0.046276023862167046, Val Loss: 0.061518970504403116 +2024-07-22 21:22:18.208 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 28/50, Train Loss: 0.04602310268315845, Val Loss: 0.06187848060258797 +2024-07-22 21:22:23.117 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 29/50, Train Loss: 0.04542719931879009, Val Loss: 0.061623335842575344 +2024-07-22 21:22:28.045 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 30/50, Train Loss: 0.04543788685427549, Val Loss: 0.06038745625742844 +2024-07-22 21:22:33.033 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 31/50, Train Loss: 0.04529803602669675, Val Loss: 0.05966450518795422 +2024-07-22 21:22:37.990 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 32/50, Train Loss: 0.045399913618054524, Val Loss: 0.05852752120367118 +2024-07-22 21:22:43.186 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 33/50, Train Loss: 0.04540358402300626, Val Loss: 0.058703416798795975 +2024-07-22 21:22:48.180 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 34/50, Train Loss: 0.04519136915377413, Val Loss: 0.0590980952339513 +2024-07-22 21:22:53.146 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 35/50, Train Loss: 0.08721838768822356, Val Loss: 0.08156793548592499 +2024-07-22 21:22:58.050 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 36/50, Train Loss: 0.05509726538394506, Val Loss: 0.08148313654320581 +2024-07-22 21:23:02.945 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 37/50, Train Loss: 0.05341378405081251, Val Loss: 0.0802514795746122 +2024-07-22 21:23:07.857 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 38/50, Train Loss: 0.051371474347363874, Val Loss: 0.06920227967202663 +2024-07-22 21:23:12.732 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 39/50, Train Loss: 0.05364610272674607, Val Loss: 0.06876780066107001 +2024-07-22 21:23:17.608 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 40/50, Train Loss: 0.05159901790858175, Val Loss: 0.06879851376371725 +2024-07-22 21:23:22.477 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 41/50, Train Loss: 0.05127040990807403, Val Loss: 0.06966663205197879 +2024-07-22 21:23:27.413 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 42/50, Train Loss: 0.05087951010164733, Val Loss: 0.07031449542513915 +2024-07-22 21:23:32.318 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 43/50, Train Loss: 0.050439281908508674, Val Loss: 0.0691409314849547 +2024-07-22 21:23:37.207 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 44/50, Train Loss: 0.0501307657149692, Val Loss: 0.06655267865530082 +2024-07-22 21:23:42.126 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 45/50, Train Loss: 0.04948029689526615, Val Loss: 0.07134867927857808 +2024-07-22 21:23:47.041 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 46/50, Train Loss: 0.048864888976542994, Val Loss: 0.07022254254136767 +2024-07-22 21:23:51.969 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 47/50, Train Loss: 0.048402155946510345, Val Loss: 0.07027040810457298 +2024-07-22 21:23:57.015 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 48/50, Train Loss: 0.04804415248620968, Val Loss: 0.06214107424020767 +2024-07-22 21:24:02.067 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 49/50, Train Loss: 0.04788739869120316, Val Loss: 0.06146206850452082 +2024-07-22 21:24:07.033 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 50/50, Train Loss: 0.047746419127529055, Val Loss: 0.06063138379582337 +2024-07-22 21:24:07.033 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Fold 2, MAPE: 11.70% +2024-07-22 21:24:07.155 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Training image saved at metaflow_models_360hrs/bgd_office_5001_10000_LSTM//train_f2_bgd_office_5001_10000_LSTM.png +2024-07-22 21:24:13.612 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 1/50, Train Loss: 0.04578218077101725, Val Loss: 0.05866112778229373 +2024-07-22 21:24:20.076 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 2/50, Train Loss: 0.04509068262368012, Val Loss: 0.06071885260088103 +2024-07-22 21:24:26.675 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 3/50, Train Loss: 0.0446252488269866, Val Loss: 0.058558795814003264 +2024-07-22 21:24:33.260 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 4/50, Train Loss: 0.04471213916624836, Val Loss: 0.06168762594461441 +2024-07-22 21:24:39.782 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 5/50, Train Loss: 0.044009640960277416, Val Loss: 0.059023205882736615 +2024-07-22 21:24:46.362 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 6/50, Train Loss: 0.044195207666686116, Val Loss: 0.05948815042419093 +2024-07-22 21:24:46.362 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 21:24:46.362 No tasks are waiting in the queue. +2024-07-22 21:24:46.362 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 21:24:52.858 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 7/50, Train Loss: 0.04353237713573219, Val Loss: 0.05761218363685267 +2024-07-22 21:24:59.448 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 8/50, Train Loss: 0.043799649408127334, Val Loss: 0.05889086265649114 +2024-07-22 21:25:06.037 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 9/50, Train Loss: 0.04413000037960654, Val Loss: 0.05879472052412374 +2024-07-22 21:25:12.562 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 10/50, Train Loss: 0.043131004087626934, Val Loss: 0.057625513417380196 +2024-07-22 21:25:19.057 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 11/50, Train Loss: 0.0435783844709182, Val Loss: 0.05955786130258015 +2024-07-22 21:25:25.535 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 12/50, Train Loss: 0.0430065374017405, Val Loss: 0.05831877546651023 +2024-07-22 21:25:32.137 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 13/50, Train Loss: 0.04289436469645166, Val Loss: 0.05632759641323771 +2024-07-22 21:25:38.603 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 14/50, Train Loss: 0.04300025876665072, Val Loss: 0.059406436554023195 +2024-07-22 21:25:45.086 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 15/50, Train Loss: 0.042722182656578025, Val Loss: 0.05681184849568776 +2024-07-22 21:25:51.596 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 16/50, Train Loss: 0.042710948969981226, Val Loss: 0.05871581568249634 +2024-07-22 21:25:58.139 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 17/50, Train Loss: 0.04276267569780135, Val Loss: 0.05906161511582988 +2024-07-22 21:26:04.741 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 18/50, Train Loss: 0.047829912050808075, Val Loss: 0.060751963406801224 +2024-07-22 21:26:11.138 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 19/50, Train Loss: 0.045348382762653364, Val Loss: 0.0600409880812679 +2024-07-22 21:26:17.498 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 20/50, Train Loss: 0.04444573575081371, Val Loss: 0.05902517443256719 +2024-07-22 21:26:23.916 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 21/50, Train Loss: 0.04403513945344326, Val Loss: 0.0590904962271452 +2024-07-22 21:26:30.364 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 22/50, Train Loss: 0.04347999243856334, Val Loss: 0.05906743391283921 +2024-07-22 21:26:36.830 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 23/50, Train Loss: 0.04305426107732941, Val Loss: 0.05787976485277925 +2024-07-22 21:26:43.298 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 24/50, Train Loss: 0.042883776047890135, Val Loss: 0.05826798368777548 +2024-07-22 21:26:49.939 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 25/50, Train Loss: 0.04286244218807212, Val Loss: 0.058579789687480247 +2024-07-22 21:26:56.413 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 26/50, Train Loss: 0.0426967822738903, Val Loss: 0.058098912984132764 +2024-07-22 21:27:02.866 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 27/50, Train Loss: 0.04297762989274246, Val Loss: 0.05801172581102167 +2024-07-22 21:27:09.332 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 28/50, Train Loss: 0.042593045454981514, Val Loss: 0.05797400325536728 +2024-07-22 21:27:15.749 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 29/50, Train Loss: 0.04368338241449577, Val Loss: 0.057401693984866144 +2024-07-22 21:27:22.206 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 30/50, Train Loss: 0.04260619089891799, Val Loss: 0.05738046414085797 +2024-07-22 21:27:28.702 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 31/50, Train Loss: 0.042441149396326046, Val Loss: 0.058493174612522125 +2024-07-22 21:27:35.148 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 32/50, Train Loss: 0.042432768531679675, Val Loss: 0.05654945879110268 +2024-07-22 21:27:41.541 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 33/50, Train Loss: 0.04338395068917772, Val Loss: 0.05672450517969472 +2024-07-22 21:27:47.997 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 34/50, Train Loss: 0.04226875910200446, Val Loss: 0.05807374800954546 +2024-07-22 21:27:54.428 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 35/50, Train Loss: 0.04332936455984768, Val Loss: 0.05611611466322627 +2024-07-22 21:28:00.867 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 36/50, Train Loss: 0.042083036717322234, Val Loss: 0.0576795051672629 +2024-07-22 21:28:07.300 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 37/50, Train Loss: 0.04210378767641114, Val Loss: 0.05880943004574094 +2024-07-22 21:28:13.739 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 38/50, Train Loss: 0.04508946353583027, Val Loss: 0.05706754055406366 +2024-07-22 21:28:20.184 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 39/50, Train Loss: 0.04268357207958432, Val Loss: 0.056664237592901505 +2024-07-22 21:28:26.619 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 40/50, Train Loss: 0.04208309462682592, Val Loss: 0.057125549231256754 +2024-07-22 21:28:33.088 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 41/50, Train Loss: 0.041975979043318214, Val Loss: 0.05613590329885483 +2024-07-22 21:28:39.518 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 42/50, Train Loss: 0.05090225721783132, Val Loss: 0.061580128009830204 +2024-07-22 21:28:46.145 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 43/50, Train Loss: 0.04537657694556087, Val Loss: 0.059641280663864954 +2024-07-22 21:28:52.585 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 44/50, Train Loss: 0.04383030732785412, Val Loss: 0.058519431097166875 +2024-07-22 21:28:59.011 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 45/50, Train Loss: 0.04329275946206541, Val Loss: 0.05748150199651718 +2024-07-22 21:29:05.490 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 46/50, Train Loss: 0.04295005827552552, Val Loss: 0.056623004057577676 +2024-07-22 21:29:12.154 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 47/50, Train Loss: 0.042533404334521976, Val Loss: 0.0559961695756231 +2024-07-22 21:29:19.075 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 48/50, Train Loss: 0.042000561269174376, Val Loss: 0.05546057208308152 +2024-07-22 21:29:25.557 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 49/50, Train Loss: 0.04670057349282203, Val Loss: 0.058809708857110565 +2024-07-22 21:29:32.258 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 50/50, Train Loss: 0.04339793467183979, Val Loss: 0.05656881571880409 +2024-07-22 21:29:32.259 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Fold 3, MAPE: 12.04% +2024-07-22 21:29:32.386 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Training image saved at metaflow_models_360hrs/bgd_office_5001_10000_LSTM//train_f3_bgd_office_5001_10000_LSTM.png +2024-07-22 21:29:40.771 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 1/50, Train Loss: 0.04529977442118628, Val Loss: 0.05348622309310096 +2024-07-22 21:29:48.751 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 2/50, Train Loss: 0.04461039003819741, Val Loss: 0.05604357448007379 +2024-07-22 21:29:48.751 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 21:29:48.751 No tasks are waiting in the queue. +2024-07-22 21:29:48.751 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 21:29:56.623 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 3/50, Train Loss: 0.04455729959339931, Val Loss: 0.0550177065389497 +2024-07-22 21:30:04.624 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 4/50, Train Loss: 0.04436871944659058, Val Loss: 0.05232835763267108 +2024-07-22 21:30:12.507 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 5/50, Train Loss: 0.044233640388253774, Val Loss: 0.05479893253317901 +2024-07-22 21:30:20.330 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 6/50, Train Loss: 0.04472262511329576, Val Loss: 0.05367345011660031 +2024-07-22 21:30:28.234 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 7/50, Train Loss: 0.04423622622143948, Val Loss: 0.05473307174231325 +2024-07-22 21:30:36.248 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 8/50, Train Loss: 0.0436703300788656, Val Loss: 0.05432073915643351 +2024-07-22 21:30:44.322 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 9/50, Train Loss: 0.048519767424755396, Val Loss: 0.05057529445205416 +2024-07-22 21:30:52.705 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 10/50, Train Loss: 0.0437918145573516, Val Loss: 0.054608029765742166 +2024-07-22 21:31:00.589 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 11/50, Train Loss: 0.04397308621448518, Val Loss: 0.05392140517277377 +2024-07-22 21:31:08.476 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 12/50, Train Loss: 0.04312933502911494, Val Loss: 0.05366943696779864 +2024-07-22 21:31:16.420 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 13/50, Train Loss: 0.043048405131303716, Val Loss: 0.05538904320980821 +2024-07-22 21:31:24.517 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 14/50, Train Loss: 0.042880627235676025, Val Loss: 0.05471762402781418 +2024-07-22 21:31:32.576 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 15/50, Train Loss: 0.04276128177498949, Val Loss: 0.054754678745354925 +2024-07-22 21:31:40.552 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 16/50, Train Loss: 0.04917165429342067, Val Loss: 0.050936310365796086 +2024-07-22 21:31:48.521 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 17/50, Train Loss: 0.04577479332193047, Val Loss: 0.04991247057914734 +2024-07-22 21:31:57.118 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 18/50, Train Loss: 0.04486904370908936, Val Loss: 0.049607360629098755 +2024-07-22 21:32:05.317 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 19/50, Train Loss: 0.04417351553023889, Val Loss: 0.05285283002470221 +2024-07-22 21:32:13.500 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 20/50, Train Loss: 0.043797683088515685, Val Loss: 0.055068933059062276 +2024-07-22 21:32:21.656 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 21/50, Train Loss: 0.043141126161676716, Val Loss: 0.052416496617453436 +2024-07-22 21:32:29.755 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 22/50, Train Loss: 0.042759718100443996, Val Loss: 0.0549510054822479 +2024-07-22 21:32:37.893 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 23/50, Train Loss: 0.0445809794600582, Val Loss: 0.0559023735246488 +2024-07-22 21:32:46.019 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 24/50, Train Loss: 0.043488622364727246, Val Loss: 0.053428562091929574 +2024-07-22 21:32:54.117 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 25/50, Train Loss: 0.04247972407196274, Val Loss: 0.051715604322297236 +2024-07-22 21:33:02.377 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 26/50, Train Loss: 0.04280072103265202, Val Loss: 0.05349493282181876 +2024-07-22 21:33:10.674 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 27/50, Train Loss: 0.05235569286106647, Val Loss: 0.050312653769339834 +2024-07-22 21:33:18.836 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 28/50, Train Loss: 0.04716862460876676, Val Loss: 0.049944147361176354 +2024-07-22 21:33:27.038 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 29/50, Train Loss: 0.04527235253788959, Val Loss: 0.05166768447629043 +2024-07-22 21:33:35.221 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 30/50, Train Loss: 0.04463986599089942, Val Loss: 0.05099730885454586 +2024-07-22 21:33:43.243 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 31/50, Train Loss: 0.04373664327565281, Val Loss: 0.05090228037110397 +2024-07-22 21:33:51.281 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 32/50, Train Loss: 0.043076709539083574, Val Loss: 0.05385810982968126 +2024-07-22 21:33:59.466 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 33/50, Train Loss: 0.04275074631147001, Val Loss: 0.05345008069915431 +2024-07-22 21:34:07.607 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 34/50, Train Loss: 0.043064243818536914, Val Loss: 0.053954998297350745 +2024-07-22 21:34:15.955 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 35/50, Train Loss: 0.042388318561488524, Val Loss: 0.05252839970801558 +2024-07-22 21:34:24.276 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 36/50, Train Loss: 0.0419512546096725, Val Loss: 0.05277446838361877 +2024-07-22 21:34:32.558 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 37/50, Train Loss: 0.044210667304437734, Val Loss: 0.051234260467546325 +2024-07-22 21:34:40.672 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 38/50, Train Loss: 0.04205588137345581, Val Loss: 0.05249633613441672 +2024-07-22 21:34:48.802 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 39/50, Train Loss: 0.04427489999617482, Val Loss: 0.05065610744059086 +2024-07-22 21:34:48.802 1 task is running: cross_validate_train (1 running; 0 done). +2024-07-22 21:34:48.802 No tasks are waiting in the queue. +2024-07-22 21:34:48.802 4 steps have not started: model_scores, validate_model, end, log_model. +2024-07-22 21:34:56.901 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 40/50, Train Loss: 0.04215809928745717, Val Loss: 0.0534563346100705 +2024-07-22 21:35:05.025 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 41/50, Train Loss: 0.04200986844498193, Val Loss: 0.053290848646845135 +2024-07-22 21:35:13.112 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 42/50, Train Loss: 0.04962631906971507, Val Loss: 0.049886665865778924 +2024-07-22 21:35:21.203 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 43/50, Train Loss: 0.04266548979406556, Val Loss: 0.05141260714403221 +2024-07-22 21:35:29.310 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 44/50, Train Loss: 0.04156214504063815, Val Loss: 0.05209108841206346 +2024-07-22 21:35:37.393 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 45/50, Train Loss: 0.0421824914231982, Val Loss: 0.05210536079747336 +2024-07-22 21:35:45.531 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 46/50, Train Loss: 0.044366389818104174, Val Loss: 0.050656990174736294 +2024-07-22 21:35:53.650 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 47/50, Train Loss: 0.04145795954712506, Val Loss: 0.051410817833883425 +2024-07-22 21:36:01.793 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 48/50, Train Loss: 0.041389241728974485, Val Loss: 0.05096136629581451 +2024-07-22 21:36:09.877 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 49/50, Train Loss: 0.04205341600202795, Val Loss: 0.05210079045167991 +2024-07-22 21:36:17.941 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Epoch 50/50, Train Loss: 0.04266850727920731, Val Loss: 0.05081092528998852 +2024-07-22 21:36:17.942 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Fold 4, MAPE: 12.10% +2024-07-22 21:36:18.057 [24/cross_validate_train/295 (pid 70020)] INFO:__main__:Training image saved at metaflow_models_360hrs/bgd_office_5001_10000_LSTM//train_f4_bgd_office_5001_10000_LSTM.png +2024-07-22 21:36:22.835 [24/cross_validate_train/295 (pid 70020)] Task finished successfully. +2024-07-22 21:36:22.869 [24/model_scores/296 (pid 79483)] Task is starting. +2024-07-22 21:36:24.337 [24/model_scores/296 (pid 79483)] INFO:__main__:Average Train Loss across all folds: 0.05077957611808241 +2024-07-22 21:36:28.349 [24/model_scores/296 (pid 79483)] INFO:__main__:Average Validation Loss across all folds: 0.06190865255892277 +2024-07-22 21:36:28.350 [24/model_scores/296 (pid 79483)] INFO:__main__:Average MAPE across all folds: 12.46% +2024-07-22 21:36:28.350 [24/model_scores/296 (pid 79483)] Task finished successfully. +2024-07-22 21:36:28.381 [24/validate_model/297 (pid 79535)] Task is starting. +2024-07-22 21:36:29.881 [24/validate_model/297 (pid 79535)] INFO:__main__:Validating LSTM on test set.. +2024-07-22 21:36:30.808 [24/validate_model/297 (pid 79535)] INFO:__main__:Test Set MAPE: 10.97% +2024-07-22 21:36:31.189 [24/validate_model/297 (pid 79535)] INFO:__main__:Test image saved at metaflow_models_360hrs/bgd_office_5001_10000_LSTM//test_bgd_office_5001_10000_LSTM.png +2024-07-22 21:36:31.651 [24/validate_model/297 (pid 79535)] Task finished successfully. +2024-07-22 21:36:31.680 [24/log_model/298 (pid 79594)] Task is starting. +2024-07-22 21:36:33.177 [24/log_model/298 (pid 79594)] INFO:__main__:Logging model bgd_office_5001_10000_LSTM +2024-07-22 21:36:33.179 [24/log_model/298 (pid 79594)] INFO:__main__:Model logged at metaflow_models_360hrs/bgd_office_5001_10000_LSTM//bgd_office_5001_10000_LSTM.pth +2024-07-22 21:36:37.552 [24/log_model/298 (pid 79594)] Task finished successfully. +2024-07-22 21:36:37.583 [24/end/299 (pid 79654)] Task is starting. +2024-07-22 21:36:39.070 [24/end/299 (pid 79654)] INFO:__main__:Pipeline end. +2024-07-22 21:36:39.396 [24/end/299 (pid 79654)] Task finished successfully. +2024-07-22 21:36:39.396 Done! + +-- stderr -- +Metaflow 2.12.8 executing BGD_LinearFlow for user:nikhilkapila +Validating your flow... + The graph looks good! + diff --git a/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/scaler_bgd_office_5001_10000_LSTM.pkl b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/scaler_bgd_office_5001_10000_LSTM.pkl new file mode 100644 index 0000000000000000000000000000000000000000..ece375d2341357de2a3e90cb5a143e014923a948 --- /dev/null +++ b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/scaler_bgd_office_5001_10000_LSTM.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96370387037b498233b165d8995b10cb48e6d5429332b50a279a0946056416a9 +size 557 diff --git a/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/test_bgd_office_5001_10000_LSTM.png b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/test_bgd_office_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..5e52d63be3233dae8370fb0a633369af15115453 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/test_bgd_office_5001_10000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f0_bgd_office_5001_10000_LSTM.png b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f0_bgd_office_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..cb75fe0d07aded90c11c784508715d8be89b67a6 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f0_bgd_office_5001_10000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f1_bgd_office_5001_10000_LSTM.png b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f1_bgd_office_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..b9dfa45f5a83cf3d9c1e5c37fe84025088efd677 Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f1_bgd_office_5001_10000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f2_bgd_office_5001_10000_LSTM.png b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f2_bgd_office_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..49011473fa5f555545f623a57892e7d200951e7a Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f2_bgd_office_5001_10000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f3_bgd_office_5001_10000_LSTM.png b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f3_bgd_office_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..a099a086625ed27a412102488778779cd511d5ac Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f3_bgd_office_5001_10000_LSTM.png differ diff --git a/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f4_bgd_office_5001_10000_LSTM.png b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f4_bgd_office_5001_10000_LSTM.png new file mode 100644 index 0000000000000000000000000000000000000000..68cdd6227012f257fbd6369ea835e82675e1d21d Binary files /dev/null and b/metaflow_models_360hrs/bgd_office_5001_10000_LSTM/train_f4_bgd_office_5001_10000_LSTM.png differ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..36bb900a7d7dafdff00c17ebdd5c8a531458000e --- /dev/null +++ b/requirements.txt @@ -0,0 +1,7 @@ +gradio==4.39.0 +numpy==2.0.1 +pandas==2.2.2 +plotly==5.23.0 +pyod==2.0.1 +scikit_learn==1.5.1 +torch==2.3.1 diff --git a/utils/__init__.py b/utils/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..2b6843796a4e6e0e39f07242abf39237df7a4055 --- /dev/null +++ b/utils/__init__.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on 2024-07-25 00:16:07 Thursday + +@author: Nikhil Kapila +""" \ No newline at end of file diff --git a/utils/__pycache__/__init__.cpython-310.pyc b/utils/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d6a7e5c29fa6d3903c1a4caadd2fc1762105e59a Binary files /dev/null and b/utils/__pycache__/__init__.cpython-310.pyc differ diff --git a/utils/__pycache__/anomaly_detection.cpython-310.pyc b/utils/__pycache__/anomaly_detection.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..86aeadd93c69bc3dee6d15f971becbd4dcbf9107 Binary files /dev/null and b/utils/__pycache__/anomaly_detection.cpython-310.pyc differ diff --git a/utils/__pycache__/fetcher.cpython-310.pyc b/utils/__pycache__/fetcher.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9ca28916557a64284b3e8e157c2bdf505ff0a2fb Binary files /dev/null and b/utils/__pycache__/fetcher.cpython-310.pyc differ diff --git a/utils/__pycache__/forecasting_utils.cpython-310.pyc b/utils/__pycache__/forecasting_utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88a7c62ce7cb378ad062f1825ff96b7225955a43 Binary files /dev/null and b/utils/__pycache__/forecasting_utils.cpython-310.pyc differ diff --git a/utils/__pycache__/plot.cpython-310.pyc b/utils/__pycache__/plot.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..222c124dcca89f5b616d89334220f579907b937b Binary files /dev/null and b/utils/__pycache__/plot.cpython-310.pyc differ diff --git a/utils/__pycache__/plotter.cpython-310.pyc b/utils/__pycache__/plotter.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a522b60b34c8a9741c954cf7d2704dec2afd5b04 Binary files /dev/null and b/utils/__pycache__/plotter.cpython-310.pyc differ diff --git a/utils/__pycache__/prediction.cpython-310.pyc b/utils/__pycache__/prediction.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..80fbdb97ab454edfdff06b59afbfef4dc07e7c96 Binary files /dev/null and b/utils/__pycache__/prediction.cpython-310.pyc differ diff --git a/utils/__pycache__/utils.cpython-310.pyc b/utils/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3f2960caaa2d7c818fa11c36db3a15224640118a Binary files /dev/null and b/utils/__pycache__/utils.cpython-310.pyc differ diff --git a/utils/anomaly_detection.py b/utils/anomaly_detection.py new file mode 100644 index 0000000000000000000000000000000000000000..451790e269569e37cc9657df19be0a36f27c2c55 --- /dev/null +++ b/utils/anomaly_detection.py @@ -0,0 +1,56 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on 2024-07-24 13:04:10 Wednesday + +@author: Nikhil Kapila +""" + +from pyod.models.knn import KNN +import plotly.graph_objects as go +import numpy as np +import pandas as pd + +def sliding_windows(data:pd.DataFrame, lookback:int=30)->tuple[np.array, np.array, pd.Index]: + X, y, timestamps = [], [], [] + for i in range(len(data) - lookback): + X.append(data.iloc[i:i + lookback].values) + y.append(data.iloc[i + lookback]) + timestamps.append(data.index[i + lookback]) + return np.array(X), np.array(y), pd.Index(timestamps) + +def detect_anomalies_with_sliding_windows(data: pd.DataFrame, lookback: int = 30): + X, y, timestamps = sliding_windows(data, lookback) + + X_flat = X.reshape(X.shape[0], -1) + clf = KNN() + clf.fit(X_flat) + + is_anomaly = clf.predict(X_flat) # 0 for normal, 1 for anomaly + anomaly_scores = clf.decision_scores_ + + anomalies = pd.DataFrame({ + 'Timestamp': timestamps, + 'Is_Anomaly': is_anomaly, + 'Anomaly_Score': anomaly_scores, + 'electricity': y.flatten() + }).set_index('Timestamp') + + return anomalies + +def plotly_anomaly(anomalies): + anomaly_filter = anomalies['Is_Anomaly'] == 1 # This should be a boolean series + + fig = go.Figure() + fig.add_trace(go.Scatter(x=anomalies.index, y=anomalies['electricity'], mode='lines', name='Normal')) + fig.add_trace(go.Scatter(x=anomalies[anomaly_filter].index, y=anomalies[anomaly_filter]['electricity'], mode='markers', name='Anomaly', marker=dict(color='red'))) + fig.update_layout( + title='Time Series of Energy Usage with Anomalies Highlighted', + xaxis_title='Time', + yaxis_title='Energy Usage', + legend_title='Legend' + ) + + return fig + + diff --git a/utils/fetcher.py b/utils/fetcher.py new file mode 100644 index 0000000000000000000000000000000000000000..2f135b32ea1d6995c98b215315f4973f2b1276e2 --- /dev/null +++ b/utils/fetcher.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on 2024-07-19 20:25:49 Friday + +@author: Nikhil Kapila +""" + +import torch, pickle + +def model_folder_name(ft, type): + return f'bgd_{type}_{ft}_LSTM' + +def fetch_model(ft, type, dir='metaflow_models'): + file = f'{dir}/{model_folder_name(ft,type)}/{model_folder_name(ft,type)}.pth' + return torch.load(file) + +def fetch_scaler(ft, type, dir='metaflow_models'): + scaler_dir = f'{dir}/{model_folder_name(ft,type)}/scaler_{model_folder_name(ft, type)}.pkl' + print(scaler_dir) + # scaler_dir = f'{dir}/{scaler_name}' + with open(scaler_dir, 'rb') as file: + scaler = pickle.load(file) + return scaler \ No newline at end of file diff --git a/utils/forecasting_utils.py b/utils/forecasting_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..a1cf83a9dda55b2cbad66ea4fc2681053d410d74 --- /dev/null +++ b/utils/forecasting_utils.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on 2024-07-19 20:32:30 Friday + +@author: Nikhil Kapila +""" + +import numpy as np +import pandas as pd + +def sliding_windows(data:pd.DataFrame, lookback:int=30)->tuple[np.array, np.array, pd.Index]: + X, y, timestamps = [], [], [] + for i in range(len(data) - lookback): + X.append(data.iloc[i:i + lookback].values) + y.append(data.iloc[i + lookback]) + timestamps.append(data.index[i + lookback]) + return np.array(X), np.array(y), pd.Index(timestamps) + +def resampler(df, time='h'): + times = ['h', 'm', 'd'] + if time not in times: raise ValueError + return df.resample(time).sum() + +def df_from_np(values, timestamps, value_col='predicted'): + if len(values.shape) == 2: values1 = values.flatten() + return pd.DataFrame({ + 'timestamp': timestamps, + f'{value_col}': values + }) + diff --git a/utils/metrics.py b/utils/metrics.py new file mode 100644 index 0000000000000000000000000000000000000000..2bb1b9f0e0e83e1a9bf5ba44287dd6cd88d47dd0 --- /dev/null +++ b/utils/metrics.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on 2024-07-19 20:26:41 Friday + +@author: Nikhil Kapila +""" + +import sklearn +import sklearn.metrics + +def mape(y_true, y_pred): + mape = sklearn.metrics.mean_absolute_percentage_error(y_true=y_true, y_pred=y_pred)*100 + return mape \ No newline at end of file diff --git a/utils/old_utils.py b/utils/old_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..02fcaa029e1b2e76c5b0b5ede75f5bdfcf1da7d8 --- /dev/null +++ b/utils/old_utils.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on 2024-07-19 19:52:59 Friday + +@author: Nikhil Kapila +""" + +# import os, pickle, torch +# import matplotlib.pyplot as plt +# from sklearn.metrics import mean_absolute_percentage_error + +# def plot_graph(y, predicted): +# plt.figure(figsize=(14, 7)) +# plt.plot(y, label='Actual Values') +# plt.plot(predicted, label='Predicted Values', linestyle='dashed') +# plt.xlabel('Date') +# plt.ylabel('Value') +# plt.title('Actual vs Predicted Values') +# plt.legend() +# # plt.show() +# return plt + +# def model_folder_name(ft, type): +# return f'bgd_{type}_{ft}_LSTM' + +# def fetch_model(ft, type, dir='metaflow_models'): +# file = f'{dir}/{model_folder_name(ft,type)}/{model_folder_name(ft,type)}.pth' +# return torch.load(file) + +# def fetch_scaler(ft, type, dir='metaflow_models'): +# scaler_dir = f'{dir}/{model_folder_name(ft,type)}/scaler_{model_folder_name(ft, type)}.pkl' +# print(scaler_dir) +# # scaler_dir = f'{dir}/{scaler_name}' +# with open(scaler_dir, 'rb') as file: +# scaler = pickle.load(file) +# return scaler + +# def mape(y_true, y_pred): +# return mean_absolute_percentage_error(y_true=y_true, y_pred=y_pred)*100 + + + + + + diff --git a/utils/plot.py b/utils/plot.py new file mode 100644 index 0000000000000000000000000000000000000000..7d8f0085db7250ec46bedf065e7e8a763db54356 --- /dev/null +++ b/utils/plot.py @@ -0,0 +1,45 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on 2024-07-19 20:27:12 Friday + +@author: Nikhil Kapila +""" + +import plotly.express as px +import pandas as pd + +def standard_plotter(timestamp, true, predicted): + return standard_plotly_maker(pd.DataFrame({ + 'Date': timestamp, + 'Actual Values': true.flatten(), + 'Predicted Values': predicted.flatten() + })) + +def lookback_plotter(hourly_data, predicted): + df = pd.concat([pd.DataFrame({'Time': hourly_data.index, 'Values': hourly_data.values.flatten(), 'Type': 'Original Data'}), + pd.DataFrame({'Time': predicted.index, 'Values': predicted.values.flatten(), 'Type': 'Prediction'})]) + + fig = px.line(df, x='Time', y='Values', color='Type', line_dash='Type', + labels={ + 'Values': 'Values', + 'Time': 'Time', + 'Type': 'Series Type' + }, + title='Forecasted Predictions') + + # fig.update_xaxes(range=[hourly_data.index[-100], predicted.index[-1]]) + fig.update_xaxes(range=[hourly_data.index[-10], predicted.index[-2]]) + return fig + +def standard_plotly_maker(df): + fig = px.line(df, x='Date', y=['Actual Values', 'Predicted Values'], + labels={'value': 'Values', 'variable': 'Series'}, + title='Actual vs Predicted Values') + + fig.update_traces(mode='lines', line=dict(dash='solid', width=2), + selector=dict(name='Actual Values')) + + fig.update_traces(line=dict(dash='dash', width=2),selector=dict(name='Predicted Values'),) + + return fig \ No newline at end of file diff --git a/utils/prediction.py b/utils/prediction.py new file mode 100644 index 0000000000000000000000000000000000000000..8d8491b849743d0bfc59340d2ce0f52dbe92157f --- /dev/null +++ b/utils/prediction.py @@ -0,0 +1,51 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on 2024-07-24 22:03:58 Wednesday + +@author: Nikhil Kapila +""" +import torch +import numpy as np +import pandas as pd +from utils.forecasting_utils import sliding_windows +from sklearn.metrics import mean_absolute_percentage_error + +def model_predict_lookback(model, scaler, hourly_data, lookback): + initial_window_X = hourly_data[-lookback:][hourly_data.columns[0]].values.reshape(1, lookback ,1) + initial_window_scaled = scaler.transform(initial_window_X.reshape(-1,1)).reshape(-1, lookback, 1) + initial_window = torch.tensor(initial_window_scaled, dtype=torch.float32) + + future_predictions=[] + model.eval() + current_window = initial_window + + for _ in range(lookback): + with torch.no_grad(): + next_pred = model(current_window) + future_predictions.append(next_pred.item()) + next_pred = next_pred.reshape(1, 1, 1) + current_window = torch.cat((current_window[:, 1:, :], next_pred), dim=1) + + future_dates = pd.date_range(start=hourly_data.index[-1] + pd.Timedelta(hours=1), periods=lookback, freq='h') + future_df = pd.DataFrame(future_predictions, index=future_dates, columns=['Predicted']) + future_df_1 = scaler.inverse_transform(future_df) + predicted = pd.DataFrame({'timestamp': pd.Index(future_df.index), 'Predicted': future_df_1.flatten()}) + predicted.set_index('timestamp', inplace=True) + return predicted + +def model_predict_full_input(model, scaler, hourly_data, lookback): + X, y, timestamp = sliding_windows(hourly_data, lookback) + X_scaled = scaler.transform(X.reshape(-1, 1)).reshape(-1, lookback, 1) + X_tensor = torch.tensor(X_scaled, dtype=torch.float32) + + val_preds = [] + with torch.no_grad(): + output = model(X_tensor) + val_preds.extend(output.view(-1).tolist()) + + val_preds = np.array(val_preds).reshape(-1, 1) + predicted = scaler.inverse_transform(val_preds) + return predicted, mean_absolute_percentage_error(y, predicted)*100 + +